From 746f1fd30080846a29df506e73210614d0922f80 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 07:47:24 +0200 Subject: [PATCH] Auto commit for release 'develop' on 2024-04-02 --- .../UserGroup/UpdateController.php | 4 +- .../Commands/Correction/CorrectDatabase.php | 2 +- .../Correction/MigratePreferences.php | 18 +- .../Integrity/CreateGroupMemberships.php | 14 +- .../Controllers/PreferencesController.php | 54 +- app/Models/Preference.php | 17 +- .../UserGroup/UserGroupRepository.php | 3 +- app/Rules/IsDefaultUserGroupName.php | 16 +- app/Support/Preferences.php | 40 +- app/Transformers/PreferenceTransformer.php | 3 +- composer.lock | 36 +- config/firefly.php | 44 +- ..._04_01_174351_expand_preferences_table.php | 10 +- public/v2/i18n/nl.json | 2 +- public/v2/i18n/nl_NL.json | 2 +- resources/lang/bg_BG/firefly.php | 5110 ++++++++-------- resources/lang/bg_BG/validation.php | 1 + resources/lang/ca_ES/firefly.php | 5110 ++++++++-------- resources/lang/ca_ES/validation.php | 1 + resources/lang/cs_CZ/firefly.php | 5110 ++++++++-------- resources/lang/cs_CZ/validation.php | 1 + resources/lang/da_DK/firefly.php | 5110 ++++++++-------- resources/lang/da_DK/validation.php | 1 + resources/lang/de_DE/firefly.php | 5110 ++++++++-------- resources/lang/de_DE/validation.php | 1 + resources/lang/el_GR/firefly.php | 5110 ++++++++-------- resources/lang/el_GR/validation.php | 1 + resources/lang/en_GB/firefly.php | 5110 ++++++++-------- resources/lang/en_GB/validation.php | 1 + resources/lang/en_US/firefly.php | 5114 ++++++++--------- resources/lang/en_US/validation.php | 2 +- resources/lang/es_ES/firefly.php | 5110 ++++++++-------- resources/lang/es_ES/validation.php | 1 + resources/lang/fi_FI/firefly.php | 5110 ++++++++-------- resources/lang/fi_FI/validation.php | 1 + resources/lang/fr_FR/firefly.php | 5110 ++++++++-------- resources/lang/fr_FR/validation.php | 1 + resources/lang/hu_HU/firefly.php | 5110 ++++++++-------- resources/lang/hu_HU/validation.php | 1 + resources/lang/id_ID/firefly.php | 5110 ++++++++-------- resources/lang/id_ID/validation.php | 1 + resources/lang/it_IT/firefly.php | 5110 ++++++++-------- resources/lang/it_IT/validation.php | 1 + resources/lang/ja_JP/firefly.php | 5110 ++++++++-------- resources/lang/ja_JP/validation.php | 1 + resources/lang/ko_KR/firefly.php | 5110 ++++++++-------- resources/lang/ko_KR/validation.php | 1 + resources/lang/nb_NO/firefly.php | 5110 ++++++++-------- resources/lang/nb_NO/validation.php | 1 + resources/lang/nl_NL/config.php | 2 +- resources/lang/nl_NL/errors.php | 2 +- resources/lang/nl_NL/firefly.php | 5110 ++++++++-------- resources/lang/nl_NL/rules.php | 2 +- resources/lang/nl_NL/validation.php | 7 +- resources/lang/nn_NO/firefly.php | 5110 ++++++++-------- resources/lang/nn_NO/validation.php | 1 + resources/lang/pl_PL/firefly.php | 5110 ++++++++-------- resources/lang/pl_PL/validation.php | 1 + resources/lang/pt_BR/firefly.php | 5110 ++++++++-------- resources/lang/pt_BR/validation.php | 1 + resources/lang/pt_PT/firefly.php | 5110 ++++++++-------- resources/lang/pt_PT/validation.php | 1 + resources/lang/ro_RO/firefly.php | 5110 ++++++++-------- resources/lang/ro_RO/validation.php | 1 + resources/lang/ru_RU/firefly.php | 5110 ++++++++-------- resources/lang/ru_RU/validation.php | 1 + resources/lang/sk_SK/firefly.php | 5110 ++++++++-------- resources/lang/sk_SK/validation.php | 1 + resources/lang/sl_SI/firefly.php | 5110 ++++++++-------- resources/lang/sl_SI/validation.php | 1 + resources/lang/sv_SE/firefly.php | 5110 ++++++++-------- resources/lang/sv_SE/validation.php | 1 + resources/lang/th_TH/firefly.php | 5110 ++++++++-------- resources/lang/th_TH/validation.php | 1 + resources/lang/tr_TR/firefly.php | 5110 ++++++++-------- resources/lang/tr_TR/validation.php | 1 + resources/lang/uk_UA/firefly.php | 5110 ++++++++-------- resources/lang/uk_UA/validation.php | 1 + resources/lang/vi_VN/firefly.php | 5110 ++++++++-------- resources/lang/vi_VN/validation.php | 1 + resources/lang/zh_CN/firefly.php | 5110 ++++++++-------- resources/lang/zh_CN/validation.php | 1 + resources/lang/zh_TW/firefly.php | 5110 ++++++++-------- resources/lang/zh_TW/validation.php | 1 + routes/breadcrumbs.php | 2 +- routes/web.php | 316 +- 86 files changed, 84794 insertions(+), 84469 deletions(-) diff --git a/app/Api/V2/Controllers/UserGroup/UpdateController.php b/app/Api/V2/Controllers/UserGroup/UpdateController.php index 5a19d5fb8b..9fddcb7e26 100644 --- a/app/Api/V2/Controllers/UserGroup/UpdateController.php +++ b/app/Api/V2/Controllers/UserGroup/UpdateController.php @@ -54,9 +54,11 @@ class UpdateController extends Controller ); } - public function useUserGroup(UserGroup $userGroup): JsonResponse { + public function useUserGroup(UserGroup $userGroup): JsonResponse + { // group validation is already in place, so can just update the user. $this->repository->useUserGroup($userGroup); + return response()->json([], 204); } diff --git a/app/Console/Commands/Correction/CorrectDatabase.php b/app/Console/Commands/Correction/CorrectDatabase.php index 1bfcb30c9d..82750c1a9d 100644 --- a/app/Console/Commands/Correction/CorrectDatabase.php +++ b/app/Console/Commands/Correction/CorrectDatabase.php @@ -73,7 +73,7 @@ class CorrectDatabase extends Command // new! 'firefly-iii:unify-group-accounts', 'firefly-iii:trigger-credit-recalculation', - 'firefly-iii:migrate-preferences' + 'firefly-iii:migrate-preferences', ]; foreach ($commands as $command) { $this->friendlyLine(sprintf('Now executing command "%s"', $command)); diff --git a/app/Console/Commands/Correction/MigratePreferences.php b/app/Console/Commands/Correction/MigratePreferences.php index a9f208d402..c1a686c5fa 100644 --- a/app/Console/Commands/Correction/MigratePreferences.php +++ b/app/Console/Commands/Correction/MigratePreferences.php @@ -1,4 +1,6 @@ where('user_id', $user->id)->first(); - if(null === $preference) { + if (null === $preference) { continue; } - if(null !== $preference->user_group_id) { + if (null !== $preference->user_group_id) { $preference->user_group_id = $user->user_group_id; $preference->save(); - $count++; + ++$count; } } - if($count > 0) { + if ($count > 0) { $this->info(sprintf('Migrated %d preference(s) for user #%d ("%s").', $count, $user->id, $user->email)); } } - return CommandAlias::SUCCESS; } } diff --git a/app/Console/Commands/Integrity/CreateGroupMemberships.php b/app/Console/Commands/Integrity/CreateGroupMemberships.php index 2ae2175c88..b5127c2791 100644 --- a/app/Console/Commands/Integrity/CreateGroupMemberships.php +++ b/app/Console/Commands/Integrity/CreateGroupMemberships.php @@ -41,8 +41,8 @@ class CreateGroupMemberships extends Command use ShowsFriendlyMessages; public const string CONFIG_NAME = '560_create_group_memberships'; - protected $description = 'Update group memberships'; - protected $signature = 'firefly-iii:create-group-memberships'; + protected $description = 'Update group memberships'; + protected $signature = 'firefly-iii:create-group-memberships'; /** * Execute the console command. @@ -78,19 +78,20 @@ class CreateGroupMemberships extends Command public static function createGroupMembership(User $user): void { // check if membership exists - $userGroup = UserGroup::where('title', $user->email)->first(); + $userGroup = UserGroup::where('title', $user->email)->first(); if (null === $userGroup) { $userGroup = UserGroup::create(['title' => $user->email, 'default_administration' => true]); } - $userRole = UserRole::where('title', UserRoleEnum::OWNER->value)->first(); + $userRole = UserRole::where('title', UserRoleEnum::OWNER->value)->first(); if (null === $userRole) { throw new FireflyException('Firefly III could not find a user role. Please make sure all migrations have run.'); } $membership = GroupMembership::where('user_id', $user->id) - ->where('user_group_id', $userGroup->id) - ->where('user_role_id', $userRole->id)->first(); + ->where('user_group_id', $userGroup->id) + ->where('user_role_id', $userRole->id)->first() + ; if (null === $membership) { GroupMembership::create( [ @@ -105,5 +106,4 @@ class CreateGroupMemberships extends Command $user->save(); } } - } diff --git a/app/Http/Controllers/PreferencesController.php b/app/Http/Controllers/PreferencesController.php index 77c27abd94..3b05072304 100644 --- a/app/Http/Controllers/PreferencesController.php +++ b/app/Http/Controllers/PreferencesController.php @@ -66,14 +66,14 @@ class PreferencesController extends Controller */ public function index(AccountRepositoryInterface $repository) { - $accounts = $repository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]); - $isDocker = env('IS_DOCKER', false); - $groupedAccounts = []; + $accounts = $repository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]); + $isDocker = env('IS_DOCKER', false); + $groupedAccounts = []; /** @var Account $account */ foreach ($accounts as $account) { - $type = $account->accountType->type; - $role = sprintf('opt_group_%s', $repository->getMetaValue($account, 'account_role')); + $type = $account->accountType->type; + $role = sprintf('opt_group_%s', $repository->getMetaValue($account, 'account_role')); if (in_array($type, [AccountType::MORTGAGE, AccountType::DEBT, AccountType::LOAN], true)) { $role = sprintf('opt_group_l_%s', $type); @@ -94,23 +94,23 @@ class PreferencesController extends Controller if (!is_array($frontpageAccounts)) { $frontpageAccounts = $accountIds; } - $language = app('steam')->getLanguage(); - $languages = config('firefly.languages'); - $locale = app('preferences')->get('locale', config('firefly.default_locale', 'equal'))->data; - $listPageSize = app('preferences')->get('listPageSize', 50)->data; - $darkMode = app('preferences')->get('darkMode', 'browser')->data; - $slackUrl = app('preferences')->get('slack_webhook_url', '')->data; - $customFiscalYear = app('preferences')->get('customFiscalYear', 0)->data; - $fiscalYearStartStr = app('preferences')->get('fiscalYearStart', '01-01')->data; + $language = app('steam')->getLanguage(); + $languages = config('firefly.languages'); + $locale = app('preferences')->get('locale', config('firefly.default_locale', 'equal'))->data; + $listPageSize = app('preferences')->get('listPageSize', 50)->data; + $darkMode = app('preferences')->get('darkMode', 'browser')->data; + $slackUrl = app('preferences')->get('slack_webhook_url', '')->data; + $customFiscalYear = app('preferences')->get('customFiscalYear', 0)->data; + $fiscalYearStartStr = app('preferences')->get('fiscalYearStart', '01-01')->data; if (is_array($fiscalYearStartStr)) { $fiscalYearStartStr = '01-01'; } - $fiscalYearStart = sprintf('%s-%s', date('Y'), (string)$fiscalYearStartStr); - $tjOptionalFields = app('preferences')->get('transaction_journal_optional_fields', [])->data; - $availableDarkModes = config('firefly.available_dark_modes'); + $fiscalYearStart = sprintf('%s-%s', date('Y'), (string)$fiscalYearStartStr); + $tjOptionalFields = app('preferences')->get('transaction_journal_optional_fields', [])->data; + $availableDarkModes = config('firefly.available_dark_modes'); // notification preferences (single value for each): - $notifications = []; + $notifications = []; foreach (config('firefly.available_notifications') as $notification) { $notifications[$notification] = app('preferences')->get(sprintf('notification_%s', $notification), true)->data; } @@ -125,7 +125,7 @@ class PreferencesController extends Controller app('log')->error($e->getMessage()); $locales = []; } - $locales = ['equal' => (string)trans('firefly.equal_to_language')] + $locales; + $locales = ['equal' => (string)trans('firefly.equal_to_language')] + $locales; // an important fallback is that the frontPageAccount array gets refilled automatically // when it turns up empty. if (0 === count($frontpageAccounts)) { @@ -164,7 +164,7 @@ class PreferencesController extends Controller } // extract notifications: - $all = $request->all(); + $all = $request->all(); foreach (config('firefly.available_notifications') as $option) { $key = sprintf('notification_%s', $option); if (array_key_exists($key, $all)) { @@ -194,8 +194,8 @@ class PreferencesController extends Controller } // custom fiscal year - $customFiscalYear = 1 === (int)$request->get('customFiscalYear'); - $string = strtotime((string)$request->get('fiscalYearStart')); + $customFiscalYear = 1 === (int)$request->get('customFiscalYear'); + $string = strtotime((string)$request->get('fiscalYearStart')); if (false !== $string) { $fiscalYearStart = date('m-d', $string); app('preferences')->set('customFiscalYear', $customFiscalYear); @@ -204,15 +204,15 @@ class PreferencesController extends Controller // save page size: app('preferences')->set('listPageSize', 50); - $listPageSize = (int)$request->get('listPageSize'); + $listPageSize = (int)$request->get('listPageSize'); if ($listPageSize > 0 && $listPageSize < 1337) { app('preferences')->set('listPageSize', $listPageSize); } // language: /** @var Preference $currentLang */ - $currentLang = app('preferences')->get('language', 'en_US'); - $lang = $request->get('language'); + $currentLang = app('preferences')->get('language', 'en_US'); + $lang = $request->get('language'); if (array_key_exists($lang, config('firefly.languages'))) { app('preferences')->set('language', $lang); } @@ -229,8 +229,8 @@ class PreferencesController extends Controller } // optional fields for transactions: - $setOptions = $request->get('tj') ?? []; - $optionalTj = [ + $setOptions = $request->get('tj') ?? []; + $optionalTj = [ 'interest_date' => array_key_exists('interest_date', $setOptions), 'book_date' => array_key_exists('book_date', $setOptions), 'process_date' => array_key_exists('process_date', $setOptions), @@ -247,7 +247,7 @@ class PreferencesController extends Controller app('preferences')->set('transaction_journal_optional_fields', $optionalTj); // dark mode - $darkMode = $request->get('darkMode') ?? 'browser'; + $darkMode = $request->get('darkMode') ?? 'browser'; if (in_array($darkMode, config('firefly.available_dark_modes'), true)) { app('preferences')->set('darkMode', $darkMode); } diff --git a/app/Models/Preference.php b/app/Models/Preference.php index 708d6c31ef..2035cd3637 100644 --- a/app/Models/Preference.php +++ b/app/Models/Preference.php @@ -54,7 +54,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; * @method static Builder|Preference whereUpdatedAt($value) * @method static Builder|Preference whereUserId($value) * - * @property mixed $user_group_id + * @property mixed $user_group_id * * @mixin Eloquent */ @@ -64,7 +64,7 @@ class Preference extends Model use ReturnsIntegerUserIdTrait; protected $casts - = [ + = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', 'data' => 'array', @@ -81,15 +81,16 @@ class Preference extends Model { if (auth()->check()) { /** @var User $user */ - $user = auth()->user(); + $user = auth()->user(); // some preferences do not have an administration ID. // some need it, to make sure the correct one is selected. $userGroupId = (int)$user->user_group_id; - $userGroupId = $userGroupId === 0 ? null : $userGroupId; - /** @var Preference|null $preference */ - $preference = null; - $items = config('firefly.admin_specific_prefs'); + $userGroupId = 0 === $userGroupId ? null : $userGroupId; + + /** @var null|Preference $preference */ + $preference = null; + $items = config('firefly.admin_specific_prefs'); if (null !== $userGroupId && in_array($value, $items, true)) { // find a preference with a specific user_group_id $preference = $user->preferences()->where('user_group_id', $userGroupId)->where('name', $value)->first(); @@ -106,7 +107,7 @@ class Preference extends Model if (null !== $preference) { return $preference; } - $default = config('firefly.default_preferences'); + $default = config('firefly.default_preferences'); if (array_key_exists($value, $default)) { $preference = new self(); $preference->name = $value; diff --git a/app/Repositories/UserGroup/UserGroupRepository.php b/app/Repositories/UserGroup/UserGroupRepository.php index e4ceaa386d..fddbd2e90e 100644 --- a/app/Repositories/UserGroup/UserGroupRepository.php +++ b/app/Repositories/UserGroup/UserGroupRepository.php @@ -289,7 +289,8 @@ class UserGroupRepository implements UserGroupRepositoryInterface return $roles; } - #[\Override] public function useUserGroup(UserGroup $userGroup): void + #[\Override] + public function useUserGroup(UserGroup $userGroup): void { $this->user->user_group_id = $userGroup->id; $this->user->save(); diff --git a/app/Rules/IsDefaultUserGroupName.php b/app/Rules/IsDefaultUserGroupName.php index 743f2913c9..09a94329e7 100644 --- a/app/Rules/IsDefaultUserGroupName.php +++ b/app/Rules/IsDefaultUserGroupName.php @@ -24,12 +24,9 @@ declare(strict_types=1); namespace FireflyIII\Rules; -use FireflyIII\Models\TransactionType; use FireflyIII\Models\UserGroup; use FireflyIII\Repositories\User\UserRepositoryInterface; -use FireflyIII\Repositories\UserGroup\UserGroupRepositoryInterface; use FireflyIII\User; -use FireflyIII\Validation\AccountValidator; use Illuminate\Contracts\Validation\ValidationRule; /** @@ -38,8 +35,10 @@ use Illuminate\Contracts\Validation\ValidationRule; class IsDefaultUserGroupName implements ValidationRule { private UserGroup $userGroup; - public function __construct(UserGroup $userGroup) { - $this->userGroup =$userGroup; + + public function __construct(UserGroup $userGroup) + { + $this->userGroup = $userGroup; } /** @@ -51,12 +50,13 @@ class IsDefaultUserGroupName implements ValidationRule // are you owner of this group and the name is the same? fail. /** @var User $user */ - $user = auth()->user(); + $user = auth()->user(); + /** @var UserRepositoryInterface $userRepos */ $userRepos = app(UserRepositoryInterface::class); - $roles = $userRepos->getRolesInGroup($user, $this->userGroup->id); - if($this->userGroup->title === $user->email && in_array('owner', $roles, true)) { + $roles = $userRepos->getRolesInGroup($user, $this->userGroup->id); + if ($this->userGroup->title === $user->email && in_array('owner', $roles, true)) { $fail('validation.administration_owner_rename')->translate(); } } diff --git a/app/Support/Preferences.php b/app/Support/Preferences.php index 63aea0e04f..4a3044ba4d 100644 --- a/app/Support/Preferences.php +++ b/app/Support/Preferences.php @@ -44,14 +44,15 @@ class Preferences } return Preference::where('user_id', $user->id) - ->where(function (Builder $q) use ($user) { - $q->whereNull('user_group_id'); - $q->orWhere('user_group_id', $user->user_group_id); - }) - ->get(); + ->where(function (Builder $q) use ($user): void { + $q->whereNull('user_group_id'); + $q->orWhere('user_group_id', $user->user_group_id); + }) + ->get() + ; } - public function get(string $name, null | array | bool | int | string $default = null): ?Preference + public function get(string $name, null|array|bool|int|string $default = null): ?Preference { /** @var null|User $user */ $user = auth()->user(); @@ -65,11 +66,11 @@ class Preferences return $this->getForUser($user, $name, $default); } - public function getForUser(User $user, string $name, null | array | bool | int | string $default = null): ?Preference + public function getForUser(User $user, string $name, null|array|bool|int|string $default = null): ?Preference { // don't care about user group ID, except for some specific preferences. $userGroupId = $this->getUserGroupId($user, $name); - $preference = Preference::where('user_group_id', $userGroupId)->where('user_id', $user->id)->where('name', $name)->first(['id', 'user_id', 'name', 'data', 'updated_at', 'created_at']); + $preference = Preference::where('user_group_id', $userGroupId)->where('user_id', $user->id)->where('name', $name)->first(['id', 'user_id', 'name', 'data', 'updated_at', 'created_at']); if (null !== $preference && null === $preference->data) { $preference->delete(); @@ -106,14 +107,14 @@ class Preferences Cache::put($key, '', 5); } - public function setForUser(User $user, string $name, null | array | bool | int | string $value): Preference + public function setForUser(User $user, string $name, null|array|bool|int|string $value): Preference { - $fullName = sprintf('preference%s%s', $user->id, $name); - $groupId = $this->getUserGroupId($user, $name); + $fullName = sprintf('preference%s%s', $user->id, $name); + $groupId = $this->getUserGroupId($user, $name); Cache::forget($fullName); /** @var null|Preference $pref */ - $pref = Preference::where('user_group_id', $groupId)->where('user_id', $user->id)->where('name', $name)->first(['id', 'name', 'data', 'updated_at', 'created_at']); + $pref = Preference::where('user_group_id', $groupId)->where('user_id', $user->id)->where('name', $name)->first(['id', 'name', 'data', 'updated_at', 'created_at']); if (null !== $pref && null === $value) { $pref->delete(); @@ -138,7 +139,7 @@ class Preferences public function beginsWith(User $user, string $search): Collection { - return Preference::where('user_id', $user->id)->where('name', 'LIKE', $search . '%')->get(); + return Preference::where('user_id', $user->id)->where('name', 'LIKE', $search.'%')->get(); } /** @@ -152,14 +153,14 @@ class Preferences public function getArrayForUser(User $user, array $list): array { $result = []; - $preferences = Preference - ::where('user_id', $user->id) - ->where(function (Builder $q) use ($user) { + $preferences = Preference::where('user_id', $user->id) + ->where(function (Builder $q) use ($user): void { $q->whereNull('user_group_id'); $q->orWhere('user_group_id', $user->user_group_id); }) ->whereIn('name', $list) - ->get(['id', 'name', 'data']); + ->get(['id', 'name', 'data']) + ; /** @var Preference $preference */ foreach ($preferences as $preference) { @@ -174,7 +175,7 @@ class Preferences return $result; } - public function getFresh(string $name, null | array | bool | int | string $default = null): ?Preference + public function getFresh(string $name, null|array|bool|int|string $default = null): ?Preference { /** @var null|User $user */ $user = auth()->user(); @@ -212,7 +213,7 @@ class Preferences Session::forget('first'); } - public function set(string $name, null | array | bool | int | string $value): Preference + public function set(string $name, null|array|bool|int|string $value): Preference { /** @var User $user */ $user = auth()->user(); @@ -235,6 +236,7 @@ class Preferences if (in_array($preferenceName, $items, true)) { $groupId = (int)$user->user_group_id; } + return $groupId; } } diff --git a/app/Transformers/PreferenceTransformer.php b/app/Transformers/PreferenceTransformer.php index 235ef383c4..10dde2059c 100644 --- a/app/Transformers/PreferenceTransformer.php +++ b/app/Transformers/PreferenceTransformer.php @@ -35,7 +35,8 @@ class PreferenceTransformer extends AbstractTransformer */ public function transform(Preference $preference): array { - $userGroupId = $preference->user_group_id === 0 ? null : $preference->user_group_id; + $userGroupId = 0 === $preference->user_group_id ? null : $preference->user_group_id; + return [ 'id' => $preference->id, 'created_at' => $preference->created_at->toAtomString(), diff --git a/composer.lock b/composer.lock index e253c18cd1..5b684160ed 100644 --- a/composer.lock +++ b/composer.lock @@ -8897,23 +8897,23 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.12.4", + "version": "v3.13.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "e7a9a217512d8f1d07448fd241ce2ac0922ddc2c" + "reference": "354a42f3e0b083cdd6f9da5a9d1c0c63b074547a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/e7a9a217512d8f1d07448fd241ce2ac0922ddc2c", - "reference": "e7a9a217512d8f1d07448fd241ce2ac0922ddc2c", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/354a42f3e0b083cdd6f9da5a9d1c0c63b074547a", + "reference": "354a42f3e0b083cdd6f9da5a9d1c0c63b074547a", "shasum": "" }, "require": { "illuminate/routing": "^9|^10|^11", "illuminate/session": "^9|^10|^11", "illuminate/support": "^9|^10|^11", - "maximebf/debugbar": "~1.21.0", + "maximebf/debugbar": "~1.22.0", "php": "^8.0", "symfony/finder": "^6|^7" }, @@ -8926,7 +8926,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.10-dev" + "dev-master": "3.13-dev" }, "laravel": { "providers": [ @@ -8965,7 +8965,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.12.4" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.13.0" }, "funding": [ { @@ -8977,7 +8977,7 @@ "type": "github" } ], - "time": "2024-04-01T09:14:15+00:00" + "time": "2024-04-01T16:39:30+00:00" }, { "name": "barryvdh/laravel-ide-helper", @@ -9606,25 +9606,27 @@ }, { "name": "maximebf/debugbar", - "version": "v1.21.3", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "0b407703b08ea0cf6ebc61e267cc96ff7000911b" + "reference": "d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0b407703b08ea0cf6ebc61e267cc96ff7000911b", - "reference": "0b407703b08ea0cf6ebc61e267cc96ff7000911b", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc", + "reference": "d7b6e1dc2dc85c01ed63ab158b00a7f46abdebcc", "shasum": "" }, "require": { - "php": "^7.1|^8", + "php": "^7.2|^8", "psr/log": "^1|^2|^3", "symfony/var-dumper": "^4|^5|^6|^7" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20 <10.0", + "dbrekelmans/bdi": "^1", + "phpunit/phpunit": "^8|^9", + "symfony/panther": "^1|^2.1", "twig/twig": "^1.38|^2.7|^3.0" }, "suggest": { @@ -9635,7 +9637,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.21-dev" + "dev-master": "1.22-dev" } }, "autoload": { @@ -9666,9 +9668,9 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.21.3" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.22.1" }, - "time": "2024-03-12T14:23:07+00:00" + "time": "2024-04-01T10:44:20+00:00" }, { "name": "mockery/mockery", diff --git a/config/firefly.php b/config/firefly.php index 8219a4f364..49dd567e5a 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -117,7 +117,7 @@ return [ 'expression_engine' => false, // see cer.php for exchange rates feature flag. ], - 'version' => '6.1.13', + 'version' => 'develop/2024-04-02', 'api_version' => '2.0.13', 'db_version' => 24, @@ -437,7 +437,7 @@ return [ 'transfers' => 'fa-exchange', ], - 'bindables' => [ + 'bindables' => [ // models 'account' => Account::class, 'attachment' => Attachment::class, @@ -495,7 +495,7 @@ return [ 'userGroupBill' => UserGroupBill::class, 'userGroup' => UserGroup::class, ], - 'rule-actions' => [ + 'rule-actions' => [ 'set_category' => SetCategory::class, 'clear_category' => ClearCategory::class, 'set_budget' => SetBudget::class, @@ -529,7 +529,7 @@ return [ // 'set_foreign_amount' => SetForeignAmount::class, // 'set_foreign_currency' => SetForeignCurrency::class, ], - 'context-rule-actions' => [ + 'context-rule-actions' => [ 'set_category', 'set_budget', 'add_tag', @@ -548,13 +548,13 @@ return [ 'convert_transfer', ], - 'test-triggers' => [ + 'test-triggers' => [ 'limit' => 10, 'range' => 200, ], // expected source types for each transaction type, in order of preference. - 'expected_source_types' => [ + 'expected_source_types' => [ 'source' => [ TransactionTypeModel::WITHDRAWAL => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], TransactionTypeEnum::DEPOSIT->value => [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::REVENUE, AccountType::CASH], @@ -599,7 +599,7 @@ return [ TransactionTypeModel::LIABILITY_CREDIT => [AccountType::LIABILITY_CREDIT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], ], ], - 'allowed_opposing_types' => [ + 'allowed_opposing_types' => [ 'source' => [ AccountType::ASSET => [ AccountType::ASSET, @@ -689,7 +689,7 @@ return [ ], ], // depending on the account type, return the allowed transaction types: - 'allowed_transaction_types' => [ + 'allowed_transaction_types' => [ 'source' => [ AccountType::ASSET => [ TransactionTypeModel::WITHDRAWAL, @@ -758,7 +758,7 @@ return [ ], // having the source + dest will tell you the transaction type. - 'account_to_transaction' => [ + 'account_to_transaction' => [ AccountType::ASSET => [ AccountType::ASSET => TransactionTypeModel::TRANSFER, AccountType::CASH => TransactionTypeModel::WITHDRAWAL, @@ -823,7 +823,7 @@ return [ ], // allowed source -> destination accounts. - 'source_dests' => [ + 'source_dests' => [ TransactionTypeModel::WITHDRAWAL => [ AccountType::ASSET => [AccountType::EXPENSE, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, AccountType::CASH], AccountType::LOAN => [AccountType::EXPENSE, AccountType::CASH], @@ -862,7 +862,7 @@ return [ ], ], // if you add fields to this array, don't forget to update the export routine (ExportDataGenerator). - 'journal_meta_fields' => [ + 'journal_meta_fields' => [ // sepa 'sepa_cc', 'sepa_ct_op', @@ -896,33 +896,33 @@ return [ 'recurrence_count', 'recurrence_date', ], - 'webhooks' => [ + 'webhooks' => [ 'max_attempts' => env('WEBHOOK_MAX_ATTEMPTS', 3), ], - 'can_have_virtual_amounts' => [AccountType::ASSET], - 'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], - 'dynamic_creation_allowed' => [ + 'can_have_virtual_amounts' => [AccountType::ASSET], + 'can_have_opening_balance' => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], + 'dynamic_creation_allowed' => [ AccountType::EXPENSE, AccountType::REVENUE, AccountType::INITIAL_BALANCE, AccountType::RECONCILIATION, AccountType::LIABILITY_CREDIT, ], - 'valid_asset_fields' => ['account_role', 'account_number', 'currency_id', 'BIC', 'include_net_worth'], - 'valid_cc_fields' => ['account_role', 'cc_monthly_payment_date', 'cc_type', 'account_number', 'currency_id', 'BIC', 'include_net_worth'], - 'valid_account_fields' => ['account_number', 'currency_id', 'BIC', 'interest', 'interest_period', 'include_net_worth', 'liability_direction'], + 'valid_asset_fields' => ['account_role', 'account_number', 'currency_id', 'BIC', 'include_net_worth'], + 'valid_cc_fields' => ['account_role', 'cc_monthly_payment_date', 'cc_type', 'account_number', 'currency_id', 'BIC', 'include_net_worth'], + 'valid_account_fields' => ['account_number', 'currency_id', 'BIC', 'interest', 'interest_period', 'include_net_worth', 'liability_direction'], // dynamic date ranges are as follows: - 'dynamic_date_ranges' => ['last7', 'last30', 'last90', 'last365', 'MTD', 'QTD', 'YTD'], + 'dynamic_date_ranges' => ['last7', 'last30', 'last90', 'last365', 'MTD', 'QTD', 'YTD'], // only used in v1 - 'allowed_sort_parameters' => ['order', 'name', 'iban'], + 'allowed_sort_parameters' => ['order', 'name', 'iban'], // preselected account lists possibilities: - 'preselected_accounts' => ['all', 'assets', 'liabilities'], + 'preselected_accounts' => ['all', 'assets', 'liabilities'], // allowed sort columns for API's - 'sorting' => [ + 'sorting' => [ 'allowed' => [ 'transactions' => ['description', 'amount'], 'accounts' => ['name', 'active', 'iban', 'balance', 'last_activity'], diff --git a/database/migrations/2024_04_01_174351_expand_preferences_table.php b/database/migrations/2024_04_01_174351_expand_preferences_table.php index debec4fbc8..852c8cb1ef 100644 --- a/database/migrations/2024_04_01_174351_expand_preferences_table.php +++ b/database/migrations/2024_04_01_174351_expand_preferences_table.php @@ -1,12 +1,13 @@ 'Затвори', - 'actions' => 'Действия', - 'edit' => 'Промени', - 'delete' => 'Изтрий', - 'split' => 'Раздели', - 'single_split' => 'Раздел', - 'clone' => 'Дублирай', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => 'Последните седем дни', - 'last_thirty_days' => 'Последните трийсет дни', - 'last_180_days' => 'Последните 180 дни', - 'month_to_date' => 'От началото на месеца', - 'year_to_date' => 'От началото на годината', - 'YTD' => 'YTD', - 'welcome_back' => 'Какво се случва?', - 'everything' => 'Всичко', - 'today' => 'Днес', - 'customRange' => 'Потребителски диапазон', - 'date_range' => 'Период', - 'apply' => 'Приложи', - 'select_date' => 'Изберете дата..', - 'cancel' => 'Отказ', - 'from' => 'От', - 'to' => 'До', - 'structure' => 'Структура', - 'help_translating' => 'Този помощен текст още не е наличен на Вашия език. Ще помогнете ли с превода?', - 'showEverything' => 'Покажи всичко', - 'never' => 'Никога', - 'no_results_for_empty_search' => 'Вашето търсене беше празно и нищо не беше намерено.', - 'removed_amount' => 'Изтрито :amount', - 'added_amount' => 'Добавено :amount', - 'asset_account_role_help' => 'Всички допълнителни опции, получени от вашия избор, могат да бъдат зададени по-късно.', - 'Opening balance' => 'Начално салдо', - 'create_new_stuff' => 'Създайте нови неща', - 'new_withdrawal' => 'Ново теглене', - 'create_new_transaction' => 'Създай нова трансакция', - 'sidebar_frontpage_create' => 'Създай', - 'new_transaction' => 'Нова транзакция', - 'no_rules_for_bill' => 'С тази сметка няма свързани правила.', - 'go_to_asset_accounts' => 'Вижте активите си', - 'go_to_budgets' => 'Вижте бюджетите си', - 'go_to_withdrawals' => 'Вижте тегленията си', - 'clones_journal_x' => 'Тази транзакция е копирана от ":description" (#:id)', - 'go_to_categories' => 'Виж категориите си', - 'go_to_bills' => 'Виж сметките си', - 'go_to_expense_accounts' => 'Виж разходните си сметки', - 'go_to_revenue_accounts' => 'Виж приходните си сметки', - 'go_to_piggies' => 'Виж касичките си', - 'new_deposit' => 'Нов депозит', - 'new_transfer' => 'Ново прехвърляне', - 'new_transfers' => 'Ново прехвърляне', - 'new_asset_account' => 'Нова сметка за активи', - 'new_expense_account' => 'Нова сметка за разходи', - 'new_revenue_account' => 'Нова сметка за приходи', - 'new_liabilities_account' => 'Ново задължение', - 'new_budget' => 'Нов бюджет', - 'new_bill' => 'Нова сметка', - 'block_account_logout' => 'Излезли сте от системата. Блокираните акаунти не могат да използват този сайт. Регистрирахте ли се с валиден имейл адрес?', - 'flash_success' => 'Успех!', - 'flash_info' => 'Съобщение', - 'flash_warning' => 'Внимание!', - 'flash_error' => 'Грешка!', - 'flash_danger' => 'Опасност!', - 'flash_info_multiple' => 'Има ново съобщение| Има :count нови съобщения', - 'flash_error_multiple' => 'Има нова грешка| Има :count нови грешки', - 'net_worth' => 'Нетна стойност', - 'help_for_this_page' => 'Помощ за тази страница', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'Здравейте!', - 'two_factor_enter_code' => 'За да продължите, моля въведете вашия двуфакторен код за удостоверяване. Вашето приложение може да го генерира за вас.', - 'two_factor_code_here' => 'Въведете кода тук', - 'two_factor_title' => 'Двуфакторно удостоверяване', - 'authenticate' => 'Удостоверяване', - 'two_factor_forgot_title' => 'Загубена двуфакторната идентификация', - 'two_factor_forgot' => 'Забравих своето двуфакторно нещо.', - 'two_factor_lost_header' => 'Загубихте вашата двуфакторната идентификация?', - 'two_factor_lost_intro' => 'Ако сте загубили и резервните си кодове, имате лош късмет. Това не е нещо, което можете да поправите от уеб интерфейса. Имате два варианта.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'В противен случай изпратете имейл на собственика на сайта,:site_owner и ги помолете да нулират вашето двуфакторно удостоверяване.', - 'mfa_backup_code' => 'Използвали сте резервен код, за да влезете в Firefly III. Не може да се използва отново, затова го зачеркнете от списъка си.', - 'pref_two_factor_new_backup_codes' => 'Вземете нови резервни кодове', - 'pref_two_factor_backup_code_count' => 'Имате :count валиден резервен код.|Имате :count валидни резервни кодове.', - '2fa_i_have_them' => 'Съхраних ги!', - 'warning_much_data' => ':days дни с данни може да отнеме известно време.', - 'registered' => 'Регистрирахте се успешно!', - 'Default asset account' => 'Сметка за активи по подразбиране', - 'no_budget_pointer' => 'Изглежда все още нямате бюджети. Трябва да създадете някои на страницата Бюджети . Бюджетите могат да ви помогнат да следите разходите си.', - 'no_bill_pointer' => 'Изглежда все още нямате сметки. Трябва да създадете някои на страницата Сметки . Сметките могат да ви помогнат да следите разходите си.', - 'Savings account' => 'Спестовна сметка', - 'Credit card' => 'Кредитна карта', - 'source_accounts' => 'Разходна сметка|Разходни сметки', - 'destination_accounts' => 'Приходна сметка|Приходни сметки', - 'user_id_is' => 'Вашето потребителско ID е :user', - 'field_supports_markdown' => 'Това поле поддържа Markdown.', - 'need_more_help' => 'Ако имате нужда от още помощ за използването на Firefly III, моля отворете билет на Github.', - 'reenable_intro_text' => 'Може също да активирате отново въведението.', - 'intro_boxes_after_refresh' => 'Полетата на въведението ще се появят отново, когато опресните страницата.', - 'show_all_no_filter' => 'Покажи всички транзакции без групиране по дата.', - 'expenses_by_category' => 'Разходи по категории', - 'expenses_by_budget' => 'Разходи по бюджети', - 'income_by_category' => 'Приходи по категория', - 'expenses_by_asset_account' => 'Разходи по сметка за активи', - 'expenses_by_expense_account' => 'Разходи по разходна сметка', - 'cannot_redirect_to_account' => 'Firefly III не може да ви пренасочи към правилната страница. Извиняваме се.', - 'sum_of_expenses' => 'Сума на разходите', - 'sum_of_income' => 'Сума на приходите', - 'liabilities' => 'Задължения', - 'spent_in_specific_budget' => 'Похарчено в бюджет ":budget"', - 'spent_in_specific_double' => 'Похарчено от сметка ":account"', - 'earned_in_specific_double' => 'Получено в сметка ":account"', - 'source_account' => 'Разходна сметка', - 'source_account_reconciliation' => 'Не може да редактирате разходната сметка на транзакция за съгласуване.', - 'destination_account' => 'Приходна сметка', - 'destination_account_reconciliation' => 'Не може да редактирате приходната сметка на транзакция за съгласуване.', - 'sum_of_expenses_in_budget' => 'Общо похарчено в бюджет ":budget"', - 'left_in_budget_limit' => 'Остави да харчи според бюджета', - 'current_period' => 'Текущ период', - 'show_the_current_period_and_overview' => 'Покажи текущия период и обобщение', - 'pref_languages_locale' => 'За да работи език, различен от английския, вашата операционна система трябва да е снабдена с правилната локална информация. Ако няма такава, валутните данни, дати и суми могат да бъдат форматирани погрешно.', - 'budget_in_period' => 'Всички транзакции за бюджет ":name" между :start и :end в :currency', - 'chart_budget_in_period' => 'Графика на всички транзакции за бюджет ":name" между :start и :end в :currency', - 'chart_budget_in_period_only_currency' => 'Сумата, която бюджетирахте беше в :currency, така че тази графика ще показва само транзакции в :currency.', - 'chart_account_in_period' => 'Графика на всички транзакции за сметка ":name" (:balance) между :start и :end', - 'chart_category_in_period' => 'Графика на всички транзакции за категория ":name" между :start и :end', - 'chart_category_all' => 'Графика на всички транзакции за категория ":name"', - 'clone_withdrawal' => 'Копирай това теглене', - 'clone_deposit' => 'Копирай този депозит', - 'clone_transfer' => 'Копирай този трансфер', - 'multi_select_no_selection' => 'Нищо не е избрано', - 'multi_select_select_all' => 'Избери всички', - 'multi_select_n_selected' => 'избрани', - 'multi_select_all_selected' => 'Всички избрани', - 'multi_select_filter_placeholder' => 'Търси..', - 'intro_next_label' => 'Следващ', - 'intro_prev_label' => 'Предишен', - 'intro_skip_label' => 'Пропусни', - 'intro_done_label' => 'Готово', - 'between_dates_breadcrumb' => 'Между :start и :end', - 'all_journals_without_budget' => 'Всички транзакции без бюджет', - 'journals_without_budget' => 'Транзакции без бюджет', - 'all_journals_without_category' => 'Всички транзакции без категория', - 'journals_without_category' => 'Транзакции без категория', - 'all_journals_for_account' => 'Всички транзакции за сметка :name', - 'chart_all_journals_for_account' => 'Графика на всички транзакции за сметка :name', - 'journals_in_period_for_account' => 'Всички транзакции за сметка :name между :start и :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Прехвърлени', - 'all_withdrawal' => 'Всички разходи', - 'all_transactions' => 'Всички транзакции', - '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' => 'Всички транзакции за категория :name между :start и :end', - 'journals_in_period_for_tag' => 'Всички транзакции за етикет :tag между :start и :end', - '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 instructions how to do this.', - 'quickswitch' => 'Бърз ключ', - 'sign_in_to_start' => 'Влезте, за да започнете сесията си', - 'sign_in' => 'Вход', - 'register_new_account' => 'Регистриране на нов профил', - 'forgot_my_password' => 'Забравена парола', - 'problems_with_input' => 'Имаше някои проблеми с вашите данни.', - 'reset_password' => 'Промяна на паролата ви', - 'button_reset_password' => 'Нулиране на паролата', - 'reset_button' => 'Изчисти', - 'want_to_login' => 'Искам да вляза', - 'login_page_title' => 'Влезте в Firefly III', - 'register_page_title' => 'Регистрирайте се в Firefly III', - 'forgot_pw_page_title' => 'Забравихте паролата си за Firefly III', - 'reset_pw_page_title' => 'Нулирайте паролата си за Firefly III', - 'cannot_reset_demo_user' => 'Не можете да нулирате паролата на демо потребителя.', - 'no_att_demo_user' => 'Демо потребителят не може да прикачва документи.', - 'button_register' => 'Регистриране', - 'authorization' => 'Позволение', - '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' => 'Очаквани месечни разходи', - 'per_period_sum_3M' => 'Очаквани тримесечни разходи', - 'per_period_sum_6M' => 'Очаквани разходи за полугодие', - 'per_period_sum_1Y' => 'Очаквани годишни разходи', - 'average_per_bill' => 'средно за сметка', - 'expected_total' => 'общо очаквано', - 'reconciliation_account_name' => ':name съгласуване (:currency)', - 'saved' => 'Записан', - 'advanced_options' => 'Разширени настройки', - 'advanced_options_explain' => 'Някои страници в Firefly III имат разширени опции, скрити зад този бутон. Тази страница няма нищо интересно тук, но проверете останалите!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Затвори', + 'actions' => 'Действия', + 'edit' => 'Промени', + 'delete' => 'Изтрий', + 'split' => 'Раздели', + 'single_split' => 'Раздел', + 'clone' => 'Дублирай', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => 'Последните седем дни', + 'last_thirty_days' => 'Последните трийсет дни', + 'last_180_days' => 'Последните 180 дни', + 'month_to_date' => 'От началото на месеца', + 'year_to_date' => 'От началото на годината', + 'YTD' => 'YTD', + 'welcome_back' => 'Какво се случва?', + 'everything' => 'Всичко', + 'today' => 'Днес', + 'customRange' => 'Потребителски диапазон', + 'date_range' => 'Период', + 'apply' => 'Приложи', + 'select_date' => 'Изберете дата..', + 'cancel' => 'Отказ', + 'from' => 'От', + 'to' => 'До', + 'structure' => 'Структура', + 'help_translating' => 'Този помощен текст още не е наличен на Вашия език. Ще помогнете ли с превода?', + 'showEverything' => 'Покажи всичко', + 'never' => 'Никога', + 'no_results_for_empty_search' => 'Вашето търсене беше празно и нищо не беше намерено.', + 'removed_amount' => 'Изтрито :amount', + 'added_amount' => 'Добавено :amount', + 'asset_account_role_help' => 'Всички допълнителни опции, получени от вашия избор, могат да бъдат зададени по-късно.', + 'Opening balance' => 'Начално салдо', + 'create_new_stuff' => 'Създайте нови неща', + 'new_withdrawal' => 'Ново теглене', + 'create_new_transaction' => 'Създай нова трансакция', + 'sidebar_frontpage_create' => 'Създай', + 'new_transaction' => 'Нова транзакция', + 'no_rules_for_bill' => 'С тази сметка няма свързани правила.', + 'go_to_asset_accounts' => 'Вижте активите си', + 'go_to_budgets' => 'Вижте бюджетите си', + 'go_to_withdrawals' => 'Вижте тегленията си', + 'clones_journal_x' => 'Тази транзакция е копирана от ":description" (#:id)', + 'go_to_categories' => 'Виж категориите си', + 'go_to_bills' => 'Виж сметките си', + 'go_to_expense_accounts' => 'Виж разходните си сметки', + 'go_to_revenue_accounts' => 'Виж приходните си сметки', + 'go_to_piggies' => 'Виж касичките си', + 'new_deposit' => 'Нов депозит', + 'new_transfer' => 'Ново прехвърляне', + 'new_transfers' => 'Ново прехвърляне', + 'new_asset_account' => 'Нова сметка за активи', + 'new_expense_account' => 'Нова сметка за разходи', + 'new_revenue_account' => 'Нова сметка за приходи', + 'new_liabilities_account' => 'Ново задължение', + 'new_budget' => 'Нов бюджет', + 'new_bill' => 'Нова сметка', + 'block_account_logout' => 'Излезли сте от системата. Блокираните акаунти не могат да използват този сайт. Регистрирахте ли се с валиден имейл адрес?', + 'flash_success' => 'Успех!', + 'flash_info' => 'Съобщение', + 'flash_warning' => 'Внимание!', + 'flash_error' => 'Грешка!', + 'flash_danger' => 'Опасност!', + 'flash_info_multiple' => 'Има ново съобщение| Има :count нови съобщения', + 'flash_error_multiple' => 'Има нова грешка| Има :count нови грешки', + 'net_worth' => 'Нетна стойност', + 'help_for_this_page' => 'Помощ за тази страница', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'Здравейте!', + 'two_factor_enter_code' => 'За да продължите, моля въведете вашия двуфакторен код за удостоверяване. Вашето приложение може да го генерира за вас.', + 'two_factor_code_here' => 'Въведете кода тук', + 'two_factor_title' => 'Двуфакторно удостоверяване', + 'authenticate' => 'Удостоверяване', + 'two_factor_forgot_title' => 'Загубена двуфакторната идентификация', + 'two_factor_forgot' => 'Забравих своето двуфакторно нещо.', + 'two_factor_lost_header' => 'Загубихте вашата двуфакторната идентификация?', + 'two_factor_lost_intro' => 'Ако сте загубили и резервните си кодове, имате лош късмет. Това не е нещо, което можете да поправите от уеб интерфейса. Имате два варианта.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'В противен случай изпратете имейл на собственика на сайта,:site_owner и ги помолете да нулират вашето двуфакторно удостоверяване.', + 'mfa_backup_code' => 'Използвали сте резервен код, за да влезете в Firefly III. Не може да се използва отново, затова го зачеркнете от списъка си.', + 'pref_two_factor_new_backup_codes' => 'Вземете нови резервни кодове', + 'pref_two_factor_backup_code_count' => 'Имате :count валиден резервен код.|Имате :count валидни резервни кодове.', + '2fa_i_have_them' => 'Съхраних ги!', + 'warning_much_data' => ':days дни с данни може да отнеме известно време.', + 'registered' => 'Регистрирахте се успешно!', + 'Default asset account' => 'Сметка за активи по подразбиране', + 'no_budget_pointer' => 'Изглежда все още нямате бюджети. Трябва да създадете някои на страницата Бюджети . Бюджетите могат да ви помогнат да следите разходите си.', + 'no_bill_pointer' => 'Изглежда все още нямате сметки. Трябва да създадете някои на страницата Сметки . Сметките могат да ви помогнат да следите разходите си.', + 'Savings account' => 'Спестовна сметка', + 'Credit card' => 'Кредитна карта', + 'source_accounts' => 'Разходна сметка|Разходни сметки', + 'destination_accounts' => 'Приходна сметка|Приходни сметки', + 'user_id_is' => 'Вашето потребителско ID е :user', + 'field_supports_markdown' => 'Това поле поддържа Markdown.', + 'need_more_help' => 'Ако имате нужда от още помощ за използването на Firefly III, моля отворете билет на Github.', + 'reenable_intro_text' => 'Може също да активирате отново въведението.', + 'intro_boxes_after_refresh' => 'Полетата на въведението ще се появят отново, когато опресните страницата.', + 'show_all_no_filter' => 'Покажи всички транзакции без групиране по дата.', + 'expenses_by_category' => 'Разходи по категории', + 'expenses_by_budget' => 'Разходи по бюджети', + 'income_by_category' => 'Приходи по категория', + 'expenses_by_asset_account' => 'Разходи по сметка за активи', + 'expenses_by_expense_account' => 'Разходи по разходна сметка', + 'cannot_redirect_to_account' => 'Firefly III не може да ви пренасочи към правилната страница. Извиняваме се.', + 'sum_of_expenses' => 'Сума на разходите', + 'sum_of_income' => 'Сума на приходите', + 'liabilities' => 'Задължения', + 'spent_in_specific_budget' => 'Похарчено в бюджет ":budget"', + 'spent_in_specific_double' => 'Похарчено от сметка ":account"', + 'earned_in_specific_double' => 'Получено в сметка ":account"', + 'source_account' => 'Разходна сметка', + 'source_account_reconciliation' => 'Не може да редактирате разходната сметка на транзакция за съгласуване.', + 'destination_account' => 'Приходна сметка', + 'destination_account_reconciliation' => 'Не може да редактирате приходната сметка на транзакция за съгласуване.', + 'sum_of_expenses_in_budget' => 'Общо похарчено в бюджет ":budget"', + 'left_in_budget_limit' => 'Остави да харчи според бюджета', + 'current_period' => 'Текущ период', + 'show_the_current_period_and_overview' => 'Покажи текущия период и обобщение', + 'pref_languages_locale' => 'За да работи език, различен от английския, вашата операционна система трябва да е снабдена с правилната локална информация. Ако няма такава, валутните данни, дати и суми могат да бъдат форматирани погрешно.', + 'budget_in_period' => 'Всички транзакции за бюджет ":name" между :start и :end в :currency', + 'chart_budget_in_period' => 'Графика на всички транзакции за бюджет ":name" между :start и :end в :currency', + 'chart_budget_in_period_only_currency' => 'Сумата, която бюджетирахте беше в :currency, така че тази графика ще показва само транзакции в :currency.', + 'chart_account_in_period' => 'Графика на всички транзакции за сметка ":name" (:balance) между :start и :end', + 'chart_category_in_period' => 'Графика на всички транзакции за категория ":name" между :start и :end', + 'chart_category_all' => 'Графика на всички транзакции за категория ":name"', + 'clone_withdrawal' => 'Копирай това теглене', + 'clone_deposit' => 'Копирай този депозит', + 'clone_transfer' => 'Копирай този трансфер', + 'multi_select_no_selection' => 'Нищо не е избрано', + 'multi_select_select_all' => 'Избери всички', + 'multi_select_n_selected' => 'избрани', + 'multi_select_all_selected' => 'Всички избрани', + 'multi_select_filter_placeholder' => 'Търси..', + 'intro_next_label' => 'Следващ', + 'intro_prev_label' => 'Предишен', + 'intro_skip_label' => 'Пропусни', + 'intro_done_label' => 'Готово', + 'between_dates_breadcrumb' => 'Между :start и :end', + 'all_journals_without_budget' => 'Всички транзакции без бюджет', + 'journals_without_budget' => 'Транзакции без бюджет', + 'all_journals_without_category' => 'Всички транзакции без категория', + 'journals_without_category' => 'Транзакции без категория', + 'all_journals_for_account' => 'Всички транзакции за сметка :name', + 'chart_all_journals_for_account' => 'Графика на всички транзакции за сметка :name', + 'journals_in_period_for_account' => 'Всички транзакции за сметка :name между :start и :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Прехвърлени', + 'all_withdrawal' => 'Всички разходи', + 'all_transactions' => 'Всички транзакции', + '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' => 'Всички транзакции за категория :name между :start и :end', + 'journals_in_period_for_tag' => 'Всички транзакции за етикет :tag между :start и :end', + '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 instructions how to do this.', + 'quickswitch' => 'Бърз ключ', + 'sign_in_to_start' => 'Влезте, за да започнете сесията си', + 'sign_in' => 'Вход', + 'register_new_account' => 'Регистриране на нов профил', + 'forgot_my_password' => 'Забравена парола', + 'problems_with_input' => 'Имаше някои проблеми с вашите данни.', + 'reset_password' => 'Промяна на паролата ви', + 'button_reset_password' => 'Нулиране на паролата', + 'reset_button' => 'Изчисти', + 'want_to_login' => 'Искам да вляза', + 'login_page_title' => 'Влезте в Firefly III', + 'register_page_title' => 'Регистрирайте се в Firefly III', + 'forgot_pw_page_title' => 'Забравихте паролата си за Firefly III', + 'reset_pw_page_title' => 'Нулирайте паролата си за Firefly III', + 'cannot_reset_demo_user' => 'Не можете да нулирате паролата на демо потребителя.', + 'no_att_demo_user' => 'Демо потребителят не може да прикачва документи.', + 'button_register' => 'Регистриране', + 'authorization' => 'Позволение', + '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' => 'Очаквани месечни разходи', + 'per_period_sum_3M' => 'Очаквани тримесечни разходи', + 'per_period_sum_6M' => 'Очаквани разходи за полугодие', + 'per_period_sum_1Y' => 'Очаквани годишни разходи', + 'average_per_bill' => 'средно за сметка', + 'expected_total' => 'общо очаквано', + 'reconciliation_account_name' => ':name съгласуване (:currency)', + 'saved' => 'Записан', + 'advanced_options' => 'Разширени настройки', + 'advanced_options_explain' => 'Някои страници в Firefly III имат разширени опции, скрити зад този бутон. Тази страница няма нищо интересно тук, но проверете останалите!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version заявка за потвърждение', - 'authorization_request_intro' => 'Апликацията ":client" иска разрешение за достъп до вашето финансово управление. Искате ли да упълномощите :client за достъп до тези записи?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'Това приложение ще има право да:', - 'button_authorize' => 'Разреши', - 'none_in_select_list' => '(нищо)', - 'no_piggy_bank' => '(без касичка)', - 'name_in_currency' => ':name в :currency', - 'paid_in_currency' => 'Платено в :currency', - 'unpaid_in_currency' => 'Неплатено в :currency', - 'is_alpha_warning' => 'Изпълнявате ALPHA версия. Внимавайте за грешки и проблеми.', - 'is_beta_warning' => 'Изпълнявате BETA версия. Внимавайте за грешки и проблеми.', - 'all_destination_accounts' => 'Приходни сметки', - 'all_source_accounts' => 'Разходни сметки', - 'back_to_index' => 'Обратно към списъка', - 'cant_logout_guard' => 'Firefly III не може да ви отпише.', - 'internal_reference' => 'Вътрешна референция', + 'authorization_request' => 'Firefly III v:version заявка за потвърждение', + 'authorization_request_intro' => 'Апликацията ":client" иска разрешение за достъп до вашето финансово управление. Искате ли да упълномощите :client за достъп до тези записи?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'Това приложение ще има право да:', + 'button_authorize' => 'Разреши', + 'none_in_select_list' => '(нищо)', + 'no_piggy_bank' => '(без касичка)', + 'name_in_currency' => ':name в :currency', + 'paid_in_currency' => 'Платено в :currency', + 'unpaid_in_currency' => 'Неплатено в :currency', + 'is_alpha_warning' => 'Изпълнявате ALPHA версия. Внимавайте за грешки и проблеми.', + 'is_beta_warning' => 'Изпълнявате BETA версия. Внимавайте за грешки и проблеми.', + 'all_destination_accounts' => 'Приходни сметки', + 'all_source_accounts' => 'Разходни сметки', + 'back_to_index' => 'Обратно към списъка', + 'cant_logout_guard' => 'Firefly III не може да ви отпише.', + 'internal_reference' => 'Вътрешна референция', // check for updates: - 'update_check_title' => 'Проверка за обновления', - 'admin_update_check_title' => 'Автоматично проверявай за обновяване', - 'admin_update_check_explain' => 'Firefly III може да проверява за актуализации автоматично. Когато активирате тази настройка, тя ще се свърже със сървъра за актуализиране на Firefly III, за да провери дали е налична нова версия на Firefly III. Когато е налична, ще получите известие. Можете да тествате това известие с помощта на бутона вдясно. Моля, посочете по-долу, ако искате Firefly III да провери за актуализации.', - 'check_for_updates_permission' => 'Firefly III може да проверява за актуализации, но се нуждае от вашето разрешение за това. Моля, отидете на администриране , за да посочите дали искате тази функция да бъде активирана.', - 'updates_ask_me_later' => 'Попитай ме по-късно', - 'updates_do_not_check' => 'Не проверявай за обновления', - 'updates_enable_check' => 'Активирай проверката за обновления', - 'admin_update_check_now_title' => 'Провери за обновления сега', - 'admin_update_check_now_explain' => 'Ако натиснете бутона, Firefly III ще провери дали текущата ви версия е най-новата.', - 'check_for_updates_button' => 'Провери сега!', - 'update_new_version_alert' => 'Налична е нова версия на Firefly III. Вие изпълнявате :your_version, последната версия е :new_version, която беше пусната на :date.', - 'update_version_beta' => 'Това е BETA версия. Може да се натъкнете на проблеми.', - 'update_version_alpha' => 'Това е ALPHA версия. Може да се натъкнете на проблеми.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Изпълнявате :version, която е най-новата налична версия.', - 'update_newer_version_alert' => 'Изпълнявате: :your_version, която е по-нова от последната налична версия: :new_version.', - 'update_check_error' => 'Възникна грешка при проверка за актуализации: :error', - 'unknown_error' => 'Неизвестна грешка. Съжаляваме за това.', - 'disabled_but_check' => 'Деактивирахте проверката за обновления. Затова не забравяйте периодично да проверявате ръчно за актуализации. Благодарим Ви!', - 'admin_update_channel_title' => 'Канал за обновления', - 'admin_update_channel_explain' => 'Firefly III има три "канала" за обновления, които определят искате да доближите кривата на функции, подобрения и грешки. Използвайте "beta" канала, ако сте авантюристични и "alpha", когато обичате да живеете опасно живота.', - 'update_channel_stable' => 'Стабилна. Всичко трябва да работи както се очаква.', - 'update_channel_beta' => 'Beta. Нови функции, но някои нещата могат да бъдат "счупени".', - 'update_channel_alpha' => 'Alpha. Нахвърляме неща тук и използваме каквито "прилепне".', + 'update_check_title' => 'Проверка за обновления', + 'admin_update_check_title' => 'Автоматично проверявай за обновяване', + 'admin_update_check_explain' => 'Firefly III може да проверява за актуализации автоматично. Когато активирате тази настройка, тя ще се свърже със сървъра за актуализиране на Firefly III, за да провери дали е налична нова версия на Firefly III. Когато е налична, ще получите известие. Можете да тествате това известие с помощта на бутона вдясно. Моля, посочете по-долу, ако искате Firefly III да провери за актуализации.', + 'check_for_updates_permission' => 'Firefly III може да проверява за актуализации, но се нуждае от вашето разрешение за това. Моля, отидете на администриране , за да посочите дали искате тази функция да бъде активирана.', + 'updates_ask_me_later' => 'Попитай ме по-късно', + 'updates_do_not_check' => 'Не проверявай за обновления', + 'updates_enable_check' => 'Активирай проверката за обновления', + 'admin_update_check_now_title' => 'Провери за обновления сега', + 'admin_update_check_now_explain' => 'Ако натиснете бутона, Firefly III ще провери дали текущата ви версия е най-новата.', + 'check_for_updates_button' => 'Провери сега!', + 'update_new_version_alert' => 'Налична е нова версия на Firefly III. Вие изпълнявате :your_version, последната версия е :new_version, която беше пусната на :date.', + 'update_version_beta' => 'Това е BETA версия. Може да се натъкнете на проблеми.', + 'update_version_alpha' => 'Това е ALPHA версия. Може да се натъкнете на проблеми.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Изпълнявате :version, която е най-новата налична версия.', + 'update_newer_version_alert' => 'Изпълнявате: :your_version, която е по-нова от последната налична версия: :new_version.', + 'update_check_error' => 'Възникна грешка при проверка за актуализации: :error', + 'unknown_error' => 'Неизвестна грешка. Съжаляваме за това.', + 'disabled_but_check' => 'Деактивирахте проверката за обновления. Затова не забравяйте периодично да проверявате ръчно за актуализации. Благодарим Ви!', + 'admin_update_channel_title' => 'Канал за обновления', + 'admin_update_channel_explain' => 'Firefly III има три "канала" за обновления, които определят искате да доближите кривата на функции, подобрения и грешки. Използвайте "beta" канала, ако сте авантюристични и "alpha", когато обичате да живеете опасно живота.', + 'update_channel_stable' => 'Стабилна. Всичко трябва да работи както се очаква.', + 'update_channel_beta' => 'Beta. Нови функции, но някои нещата могат да бъдат "счупени".', + 'update_channel_alpha' => 'Alpha. Нахвърляме неща тук и използваме каквито "прилепне".', // search - 'search' => 'Търсене', - 'search_query' => 'Заявка', - 'search_found_transactions' => 'Firefly III намери :count транзакция за :time секунди.|Firefly III намери :count транзакции за :time секунди.', - 'search_found_more_transactions' => 'Firefly III намери повече от :count транзакции за :time секунди.', - 'search_for_query' => 'Firefly III търси за транзакции с всички от следните думи в тях::query', - 'invalid_operators_list' => 'Дадените параметрите за търсене не са валидни и ще бъдат пренебрегнати.', + 'search' => 'Търсене', + 'search_query' => 'Заявка', + 'search_found_transactions' => 'Firefly III намери :count транзакция за :time секунди.|Firefly III намери :count транзакции за :time секунди.', + 'search_found_more_transactions' => 'Firefly III намери повече от :count транзакции за :time секунди.', + 'search_for_query' => 'Firefly III търси за транзакции с всички от следните думи в тях::query', + 'invalid_operators_list' => 'Дадените параметрите за търсене не са валидни и ще бъдат пренебрегнати.', // old @@ -351,368 +351,368 @@ 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_id' => 'Индентификатор на транзакцията е ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":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_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Описанието съдържа ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Описанието е точно ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => '(Чуждата) валута на транзакцията е ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Чуждата валута на транзакцията е ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'Транзакцията трябва да има прикачен файл', - 'search_modifier_has_no_category' => 'Транзакцията трябва да няма категория', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'Транзакцията трябва да има (някаква) категория', - 'search_modifier_has_no_budget' => 'Транзакцията трябва да няма бюджет', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'Транзакцията трябва да има (някакъв) бюджет', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'Транзакцията трябва да няма сметка', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'Транзакцията трябва да има (някаква) сметка', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'Транзакцията трябва да няма етикет', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'Транзакцията трябва да има (някакъв) етикет', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Транзакцията няма бележки', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'Транзакцията трябва да има бележки', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Сумата е по-малко или равно на :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Сумата е по-голяма или равна на :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Името на разходната сметка е точно ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Името на разходната сметка съдържа ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Името на разходната сметка започва с ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Името на разходната сметка завършва с ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'ID на разходната сметка е :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Номерът на разходната сметка (IBAN) е ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Номерът на разходната сметка (IBAN) съдържа ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Номерът на разходната сметка (IBAN) започва с ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Името на приходната сметка е точно ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Името на приходната сметка съдържа ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Името на приходната сметка започва с ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'ID на приходната сметка е :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Номерът на приходната сметка (IBAN) е ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Номерът на приходната сметка (IBAN) съдържа ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Номерът на приходната сметка (IBAN) започва с ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Номерът на приходната сметка (IBAN) завършва с ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'ID на разходната или приходната сметка е: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Категорията е ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Бюджетът е ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Сметката е ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Видът на транзакцията е ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Етикетът е ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Транзацията е преди или през ":value" година', - 'search_modifier_date_before_month' => 'Транзацията е преди или през ":value" месец', - 'search_modifier_date_before_day' => 'Транзацията е преди или на ":value" число от месеца', - 'search_modifier_date_after_year' => 'Транзацията е през ":value" година или след нея', - 'search_modifier_date_after_month' => 'Транзацията е през ":value" месец или след него', - 'search_modifier_date_after_day' => 'Транзацията е на ":value" число от месеца или след него', + '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_id' => 'Индентификатор на транзакцията е ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":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_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Описанието съдържа ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Описанието е точно ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => '(Чуждата) валута на транзакцията е ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Чуждата валута на транзакцията е ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'Транзакцията трябва да има прикачен файл', + 'search_modifier_has_no_category' => 'Транзакцията трябва да няма категория', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'Транзакцията трябва да има (някаква) категория', + 'search_modifier_has_no_budget' => 'Транзакцията трябва да няма бюджет', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'Транзакцията трябва да има (някакъв) бюджет', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'Транзакцията трябва да няма сметка', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'Транзакцията трябва да има (някаква) сметка', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'Транзакцията трябва да няма етикет', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'Транзакцията трябва да има (някакъв) етикет', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Транзакцията няма бележки', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'Транзакцията трябва да има бележки', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Сумата е по-малко или равно на :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Сумата е по-голяма или равна на :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Името на разходната сметка е точно ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Името на разходната сметка съдържа ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Името на разходната сметка започва с ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Името на разходната сметка завършва с ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'ID на разходната сметка е :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Номерът на разходната сметка (IBAN) е ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Номерът на разходната сметка (IBAN) съдържа ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Номерът на разходната сметка (IBAN) започва с ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Името на приходната сметка е точно ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Името на приходната сметка съдържа ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Името на приходната сметка започва с ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'ID на приходната сметка е :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Номерът на приходната сметка (IBAN) е ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Номерът на приходната сметка (IBAN) съдържа ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Номерът на приходната сметка (IBAN) започва с ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Номерът на приходната сметка (IBAN) завършва с ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'ID на разходната или приходната сметка е: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Категорията е ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Бюджетът е ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Сметката е ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Видът на транзакцията е ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Етикетът е ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Транзацията е преди или през ":value" година', + 'search_modifier_date_before_month' => 'Транзацията е преди или през ":value" месец', + 'search_modifier_date_before_day' => 'Транзацията е преди или на ":value" число от месеца', + 'search_modifier_date_after_year' => 'Транзацията е през ":value" година или след нея', + 'search_modifier_date_after_month' => 'Транзацията е през ":value" месец или след него', + 'search_modifier_date_after_day' => 'Транзацията е на ":value" число от месеца или след него', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Обновяване на правило ":rule" от низа за търсене', - 'create_rule_from_query' => 'Създай ново правило от низа за търсене', - 'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Обновяване на правило ":rule" от низа за търсене', + 'create_rule_from_query' => 'Създай ново правило от низа за търсене', + 'rule_from_search_words' => 'Механизмът за правила има затруднения с обработката на ":string". Предложеното правило, което отговаря на низа ви за търсене, може да даде различни резултати. Моля проверете внимателно задействанията на правилото.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'И следните модификатори се прилагат към търсенето:', - 'general_search_error' => 'При търсенето възникна грешка. Моля, проверете лог файловете за повече информация.', - 'search_box' => 'Търсене', - 'search_box_intro' => 'Добре дошли във функцията за търсене на Firefly III. Въведете заявката си за търсене в полето. Не забравяйте да разгледате помощния файл, тъй като търсенето е доста развито.', - 'search_error' => 'Грешка при търсене', - 'search_searching' => 'Търсене ...', - 'search_results' => 'Резултати от търсенето', + 'modifiers_applies_are' => 'И следните модификатори се прилагат към търсенето:', + 'general_search_error' => 'При търсенето възникна грешка. Моля, проверете лог файловете за повече информация.', + 'search_box' => 'Търсене', + 'search_box_intro' => 'Добре дошли във функцията за търсене на Firefly III. Въведете заявката си за търсене в полето. Не забравяйте да разгледате помощния файл, тъй като търсенето е доста развито.', + 'search_error' => 'Грешка при търсене', + 'search_searching' => 'Търсене ...', + 'search_results' => 'Резултати от търсенето', // repeat frequencies: - 'repeat_freq_yearly' => 'ежегодно', - 'repeat_freq_half-year' => 'на всеки 6 месеца', - 'repeat_freq_quarterly' => 'тримесечно', - 'repeat_freq_monthly' => 'месечно', - 'repeat_freq_weekly' => 'ежеседмично', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'седмично', - 'quarterly' => 'тримесечно', - 'half-year' => 'на полугодие', - 'yearly' => 'годишно', + 'repeat_freq_yearly' => 'ежегодно', + 'repeat_freq_half-year' => 'на всеки 6 месеца', + 'repeat_freq_quarterly' => 'тримесечно', + 'repeat_freq_monthly' => 'месечно', + 'repeat_freq_weekly' => 'ежеседмично', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'седмично', + 'quarterly' => 'тримесечно', + 'half-year' => 'на полугодие', + 'yearly' => 'годишно', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Не можете да изпълнявате неактивни правила.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Правила', - 'rule_name' => 'Име на правилото', - 'rule_triggers' => 'Правилото се задейства, когато', - 'rule_actions' => 'Правилото ще', - 'new_rule' => 'Ново правило', - 'new_rule_group' => 'Нова група правила', - 'rule_priority_up' => 'Дайте повече приоритет на правилото', - 'rule_priority_down' => 'Дайте по-малко приоритет на правилото', - 'make_new_rule_group' => 'Направете нова група правила', - 'store_new_rule_group' => 'Запаметете новата група правила', - 'created_new_rule_group' => 'Новата група правила ":title" е запаметена!', - 'updated_rule_group' => 'Успешно обновена група правила ":title".', - 'edit_rule_group' => 'Редактирай група правила ":title"', - 'duplicate_rule' => 'Копирайте правило ":title"', - 'rule_copy_of' => 'Копие на ":title"', - 'duplicated_rule' => 'Копирано правило ":title" в ":newTitle"', - 'delete_rule_group' => 'Изтрий група правила ":title"', - 'deleted_rule_group' => 'Изтрита група правила ":title"', - 'update_rule_group' => 'Обнови група правила', - 'no_rules_in_group' => 'Няма правила в тази група', - 'move_rule_group_up' => 'Премести групата правила нагоре', - 'move_rule_group_down' => 'Премести групата правила надолу', - 'save_rules_by_moving' => 'Запазете това правило, като го преместите в друга група правила:|Запазете тези правила, като ги преместите в друга група правила:', - 'make_new_rule' => 'Създайте ново правило в групата правила ":title"', - 'make_new_rule_no_group' => 'Създайте ново правило', - 'instructions_rule_from_bill' => 'За да съпостави транзакциите с новата ви сметка ":name", Firefly III може да създаде правило, което автоматично ще бъде проверявано спрямо всички транзакции, които съхранявате. Моля, проверете подробностите по-долу и съхранете правилото, за да може Firefly III автоматично да съчетава транзакции с новата ви сметка.', - 'instructions_rule_from_journal' => 'Създайте правило въз основа на една от транзакциите си. Попълнете или потвърдете формата по-долу.', - 'rule_is_strict' => 'строго правило', - 'rule_is_not_strict' => 'не строго правило', - 'rule_help_stop_processing' => 'Когато поставите отметка в това поле, следващи правила в тази група няма да бъдат изпълнявани.', - 'rule_help_strict' => 'В строги правила ВСИЧКИ задействания трябва да се случат, за да се изпълни действието. В не строги правила, НЯКОЕ задействане е достатъчно за изпълнението на действията.', - 'rule_help_active' => 'Неактивните правила никога няма да се задействат.', - 'stored_new_rule' => 'Запаметено ново правило с име ":title"', - 'deleted_rule' => 'Изтрито правило с име ":title"', - 'store_new_rule' => 'Запаметете ново правило', - 'updated_rule' => 'Обновено правило с име ":title"', - 'default_rule_group_name' => 'Правила по подразбиране', - 'default_rule_group_description' => 'Всички ваши правила не са в определена група.', - 'trigger' => 'Задействане', - 'trigger_value' => 'Задействане при стойност', - 'stop_processing_other_triggers' => 'Спри да обработваш другите задействания', - 'add_rule_trigger' => 'Добави задействане', - 'action' => 'Действие', - 'action_value' => 'Стойност на действие', - 'stop_executing_other_actions' => 'Спри да изпълняваш другите действия', - 'add_rule_action' => 'Добави ново действие', - 'edit_rule' => 'Редактирай правило ":title"', - 'delete_rule' => 'Изтрии правило ":title"', - 'update_rule' => 'Обнови правило', - 'test_rule_triggers' => 'Вижте съвпадащи транзакции', - 'warning_no_matching_transactions' => 'Няма намерени транзакции.', - 'warning_no_valid_triggers' => 'Не са предоставени валидни задействания.', - 'apply_rule_selection' => 'Приложете правило ":title" към селекция от вашите транзакции', - 'apply_rule_selection_intro' => 'Правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали правило и се нуждаете промените, да се отразят на всички останали транзакции.', - 'include_transactions_from_accounts' => 'Включете транзакции от тези сметки', - 'include' => 'Включи?', - 'applied_rule_selection' => '{0} Няма транзакции в селекцията ти променени от правило ":title".|[1] Една транзакция в селекцията ти променени от правило ":title".|[2,*] :count транзакции в селекцията ти променени от правило ":title".', - 'execute' => 'Изпълни', - 'apply_rule_group_selection' => 'Приложете групата правила ":title" към селекция от вашите транзакции', - 'apply_rule_group_selection_intro' => 'Групи правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали група правила и се нуждаете промените, да се отразят на всички останали транзакции.', - 'applied_rule_group_selection' => 'Групата правила ":title" е приложена към вашия избор.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Не можете да изпълнявате неактивни правила.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Правила', + 'rule_name' => 'Име на правилото', + 'rule_triggers' => 'Правилото се задейства, когато', + 'rule_actions' => 'Правилото ще', + 'new_rule' => 'Ново правило', + 'new_rule_group' => 'Нова група правила', + 'rule_priority_up' => 'Дайте повече приоритет на правилото', + 'rule_priority_down' => 'Дайте по-малко приоритет на правилото', + 'make_new_rule_group' => 'Направете нова група правила', + 'store_new_rule_group' => 'Запаметете новата група правила', + 'created_new_rule_group' => 'Новата група правила ":title" е запаметена!', + 'updated_rule_group' => 'Успешно обновена група правила ":title".', + 'edit_rule_group' => 'Редактирай група правила ":title"', + 'duplicate_rule' => 'Копирайте правило ":title"', + 'rule_copy_of' => 'Копие на ":title"', + 'duplicated_rule' => 'Копирано правило ":title" в ":newTitle"', + 'delete_rule_group' => 'Изтрий група правила ":title"', + 'deleted_rule_group' => 'Изтрита група правила ":title"', + 'update_rule_group' => 'Обнови група правила', + 'no_rules_in_group' => 'Няма правила в тази група', + 'move_rule_group_up' => 'Премести групата правила нагоре', + 'move_rule_group_down' => 'Премести групата правила надолу', + 'save_rules_by_moving' => 'Запазете това правило, като го преместите в друга група правила:|Запазете тези правила, като ги преместите в друга група правила:', + 'make_new_rule' => 'Създайте ново правило в групата правила ":title"', + 'make_new_rule_no_group' => 'Създайте ново правило', + 'instructions_rule_from_bill' => 'За да съпостави транзакциите с новата ви сметка ":name", Firefly III може да създаде правило, което автоматично ще бъде проверявано спрямо всички транзакции, които съхранявате. Моля, проверете подробностите по-долу и съхранете правилото, за да може Firefly III автоматично да съчетава транзакции с новата ви сметка.', + 'instructions_rule_from_journal' => 'Създайте правило въз основа на една от транзакциите си. Попълнете или потвърдете формата по-долу.', + 'rule_is_strict' => 'строго правило', + 'rule_is_not_strict' => 'не строго правило', + 'rule_help_stop_processing' => 'Когато поставите отметка в това поле, следващи правила в тази група няма да бъдат изпълнявани.', + 'rule_help_strict' => 'В строги правила ВСИЧКИ задействания трябва да се случат, за да се изпълни действието. В не строги правила, НЯКОЕ задействане е достатъчно за изпълнението на действията.', + 'rule_help_active' => 'Неактивните правила никога няма да се задействат.', + 'stored_new_rule' => 'Запаметено ново правило с име ":title"', + 'deleted_rule' => 'Изтрито правило с име ":title"', + 'store_new_rule' => 'Запаметете ново правило', + 'updated_rule' => 'Обновено правило с име ":title"', + 'default_rule_group_name' => 'Правила по подразбиране', + 'default_rule_group_description' => 'Всички ваши правила не са в определена група.', + 'trigger' => 'Задействане', + 'trigger_value' => 'Задействане при стойност', + 'stop_processing_other_triggers' => 'Спри да обработваш другите задействания', + 'add_rule_trigger' => 'Добави задействане', + 'action' => 'Действие', + 'action_value' => 'Стойност на действие', + 'stop_executing_other_actions' => 'Спри да изпълняваш другите действия', + 'add_rule_action' => 'Добави ново действие', + 'edit_rule' => 'Редактирай правило ":title"', + 'delete_rule' => 'Изтрии правило ":title"', + 'update_rule' => 'Обнови правило', + 'test_rule_triggers' => 'Вижте съвпадащи транзакции', + 'warning_no_matching_transactions' => 'Няма намерени транзакции.', + 'warning_no_valid_triggers' => 'Не са предоставени валидни задействания.', + 'apply_rule_selection' => 'Приложете правило ":title" към селекция от вашите транзакции', + 'apply_rule_selection_intro' => 'Правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали правило и се нуждаете промените, да се отразят на всички останали транзакции.', + 'include_transactions_from_accounts' => 'Включете транзакции от тези сметки', + 'include' => 'Включи?', + 'applied_rule_selection' => '{0} Няма транзакции в селекцията ти променени от правило ":title".|[1] Една транзакция в селекцията ти променени от правило ":title".|[2,*] :count транзакции в селекцията ти променени от правило ":title".', + 'execute' => 'Изпълни', + 'apply_rule_group_selection' => 'Приложете групата правила ":title" към селекция от вашите транзакции', + 'apply_rule_group_selection_intro' => 'Групи правила като ":title" обикновено се прилагат само за нови или актуализирани транзакции, но можете да кажете на Firefly III да го стартира върху селекция от вашите съществуващи транзакции. Това може да бъде полезно, когато сте актуализирали група правила и се нуждаете промените, да се отразят на всички останали транзакции.', + 'applied_rule_group_selection' => 'Групата правила ":title" е приложена към вашия избор.', // actions and triggers - 'rule_trigger_store_journal' => 'Когато се създава транзакция', - 'rule_trigger_update_journal' => 'Когато се обновява транзакция', - 'rule_trigger_user_action' => 'Действието на потребителя е „:trigger_value“', + 'rule_trigger_store_journal' => 'Когато се създава транзакция', + 'rule_trigger_update_journal' => 'Когато се обновява транзакция', + 'rule_trigger_user_action' => 'Действието на потребителя е „:trigger_value“', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Името на разходната сметка започва с..', - 'rule_trigger_source_account_starts' => 'Името на разходната сметка започва с ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Името на разходната сметка завършва с..', - 'rule_trigger_source_account_ends' => 'Името на разходната сметка завършва с ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Името на разходната сметка е..', - 'rule_trigger_source_account_is' => 'Името на разходната сметка е ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Името на разходната сметка съдържа..', - 'rule_trigger_source_account_contains' => 'Името на разходната сметка съдържа ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID на разходната сметка е точно..', - 'rule_trigger_source_account_id' => 'ID на разходната сметка е точно :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID на приходната сметка е точно..', - 'rule_trigger_destination_account_id' => 'ID на приходната сметка е точно :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Разходната сметка е сметка (в брой)', - 'rule_trigger_source_is_cash' => 'Разходната сметка е сметка (в брой)', - 'rule_trigger_destination_is_cash_choice' => 'Приходната сметка е сметка (в брой)', - 'rule_trigger_destination_is_cash' => 'Приходната сметка е сметка (в брой)', - 'rule_trigger_source_account_nr_starts_choice' => 'Номерът на разходната сметка / IBAN започва с..', - 'rule_trigger_source_account_nr_starts' => 'Номерът на разходната сметка / IBAN започва с ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Номерът на разходната сметка / IBAN завършва с..', - 'rule_trigger_source_account_nr_ends' => 'Номерът на разходната сметка / IBAN завършва с ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Номерът на разходната сметка / IBAN е..', - 'rule_trigger_source_account_nr_is' => 'Номерът на разходната сметка / IBAN е ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Номерът на разходната сметка / IBAN съдържа..', - 'rule_trigger_source_account_nr_contains' => 'Номерът на разходната сметка / IBAN съдържа ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Името на приходната сметка започва с..', - 'rule_trigger_destination_account_starts' => 'Името на приходната сметка започва с ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Името на приходната сметка завършва с..', - 'rule_trigger_destination_account_ends' => 'Името на приходната сметка завършва с ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Името на приходната сметка е..', - 'rule_trigger_destination_account_is' => 'Името на приходната сметка е ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Името на приходната сметка съдържа..', - 'rule_trigger_destination_account_contains' => 'Името на приходната сметка съдържа ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Номерът на приходната сметка / IBAN започва с..', - 'rule_trigger_destination_account_nr_starts' => 'Номерът на приходната сметка / IBAN започва с ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Името на приходната сметка завършва с..', - 'rule_trigger_destination_account_nr_ends' => 'Името на приходната сметка завършва с ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Номерът на приходната сметка / IBAN е..', - 'rule_trigger_destination_account_nr_is' => 'Номерът на приходната сметка / IBAN е ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Номерът на приходната сметка / IBAN съдържа..', - 'rule_trigger_destination_account_nr_contains' => 'Номерът на приходната сметка / IBAN съдържа ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Транзакцията е от тип..', - 'rule_trigger_transaction_type' => 'Транзакцията е от тип ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Категорията е..', - 'rule_trigger_category_is' => 'Категорията е ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Описанието започва с..', - 'rule_trigger_description_starts' => 'Описанието започва с ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Описанието завършва с..', - 'rule_trigger_description_ends' => 'Описанието завършва с ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Описанието съдържа..', - 'rule_trigger_description_contains' => 'Описанието съдържа ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Описанието е..', - 'rule_trigger_description_is' => 'Описанието е ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Датата на транзакцията е преди..', - 'rule_trigger_date_before' => 'Датата на транзакцията е преди ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Датата на транзакцията е след..', - 'rule_trigger_date_after' => 'Датата на транзакцията е след ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Бюджетът е..', - 'rule_trigger_budget_is' => 'Бюджетът е ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Валутата на транзакцията е..', - 'rule_trigger_currency_is' => 'Валутата на транзакцията е ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Чуждата валута на транзакцията е..', - 'rule_trigger_foreign_currency_is' => 'Чуждата валута на транзакцията е ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Има поне толкова прикачени файлове', - 'rule_trigger_has_attachments' => 'Има поне :trigger_value прикачен(и) файл(а)', - 'rule_trigger_has_no_category_choice' => 'Няма категория', - 'rule_trigger_has_no_category' => 'Транзакцията няма категория', - 'rule_trigger_has_any_category_choice' => 'Има (някаква) категория', - 'rule_trigger_has_any_category' => 'Транзакцията има (някаква) категория', - 'rule_trigger_has_no_budget_choice' => 'Няма бюджет', - 'rule_trigger_has_no_budget' => 'Транзакцията няма бюджет', - 'rule_trigger_has_any_budget_choice' => 'Има (някакъв) бюджет', - 'rule_trigger_has_any_budget' => 'Транзакцията има (някакъв) бюджет', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Няма етикет(и)', - 'rule_trigger_has_no_tag' => 'Транзакцията няма етикет(и)', - 'rule_trigger_has_any_tag_choice' => 'Има един или повече (някакви) етикети', - 'rule_trigger_has_any_tag' => 'Транзакцията има един или повече (някакви) етикети', - 'rule_trigger_any_notes_choice' => 'Има (някакви) бележки', - 'rule_trigger_any_notes' => 'Транзакцията има (някакви) бележки', - 'rule_trigger_no_notes_choice' => 'Няма бележки', - 'rule_trigger_no_notes' => 'Транзакцията няма бележки', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Сметката е..', - 'rule_trigger_bill_is' => 'Сметката е ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID на транзакцията е..', - 'rule_trigger_journal_id' => 'ID на транзакцията е ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Името на разходната сметка започва с..', + 'rule_trigger_source_account_starts' => 'Името на разходната сметка започва с ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Името на разходната сметка завършва с..', + 'rule_trigger_source_account_ends' => 'Името на разходната сметка завършва с ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Името на разходната сметка е..', + 'rule_trigger_source_account_is' => 'Името на разходната сметка е ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Името на разходната сметка съдържа..', + 'rule_trigger_source_account_contains' => 'Името на разходната сметка съдържа ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID на разходната сметка е точно..', + 'rule_trigger_source_account_id' => 'ID на разходната сметка е точно :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID на приходната сметка е точно..', + 'rule_trigger_destination_account_id' => 'ID на приходната сметка е точно :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Разходната сметка е сметка (в брой)', + 'rule_trigger_source_is_cash' => 'Разходната сметка е сметка (в брой)', + 'rule_trigger_destination_is_cash_choice' => 'Приходната сметка е сметка (в брой)', + 'rule_trigger_destination_is_cash' => 'Приходната сметка е сметка (в брой)', + 'rule_trigger_source_account_nr_starts_choice' => 'Номерът на разходната сметка / IBAN започва с..', + 'rule_trigger_source_account_nr_starts' => 'Номерът на разходната сметка / IBAN започва с ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Номерът на разходната сметка / IBAN завършва с..', + 'rule_trigger_source_account_nr_ends' => 'Номерът на разходната сметка / IBAN завършва с ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Номерът на разходната сметка / IBAN е..', + 'rule_trigger_source_account_nr_is' => 'Номерът на разходната сметка / IBAN е ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Номерът на разходната сметка / IBAN съдържа..', + 'rule_trigger_source_account_nr_contains' => 'Номерът на разходната сметка / IBAN съдържа ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Името на приходната сметка започва с..', + 'rule_trigger_destination_account_starts' => 'Името на приходната сметка започва с ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Името на приходната сметка завършва с..', + 'rule_trigger_destination_account_ends' => 'Името на приходната сметка завършва с ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Името на приходната сметка е..', + 'rule_trigger_destination_account_is' => 'Името на приходната сметка е ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Името на приходната сметка съдържа..', + 'rule_trigger_destination_account_contains' => 'Името на приходната сметка съдържа ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Номерът на приходната сметка / IBAN започва с..', + 'rule_trigger_destination_account_nr_starts' => 'Номерът на приходната сметка / IBAN започва с ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Името на приходната сметка завършва с..', + 'rule_trigger_destination_account_nr_ends' => 'Името на приходната сметка завършва с ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Номерът на приходната сметка / IBAN е..', + 'rule_trigger_destination_account_nr_is' => 'Номерът на приходната сметка / IBAN е ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Номерът на приходната сметка / IBAN съдържа..', + 'rule_trigger_destination_account_nr_contains' => 'Номерът на приходната сметка / IBAN съдържа ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Транзакцията е от тип..', + 'rule_trigger_transaction_type' => 'Транзакцията е от тип ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Категорията е..', + 'rule_trigger_category_is' => 'Категорията е ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Описанието започва с..', + 'rule_trigger_description_starts' => 'Описанието започва с ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Описанието завършва с..', + 'rule_trigger_description_ends' => 'Описанието завършва с ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Описанието съдържа..', + 'rule_trigger_description_contains' => 'Описанието съдържа ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Описанието е..', + 'rule_trigger_description_is' => 'Описанието е ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Датата на транзакцията е преди..', + 'rule_trigger_date_before' => 'Датата на транзакцията е преди ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Датата на транзакцията е след..', + 'rule_trigger_date_after' => 'Датата на транзакцията е след ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Бюджетът е..', + 'rule_trigger_budget_is' => 'Бюджетът е ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Валутата на транзакцията е..', + 'rule_trigger_currency_is' => 'Валутата на транзакцията е ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Чуждата валута на транзакцията е..', + 'rule_trigger_foreign_currency_is' => 'Чуждата валута на транзакцията е ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Има поне толкова прикачени файлове', + 'rule_trigger_has_attachments' => 'Има поне :trigger_value прикачен(и) файл(а)', + 'rule_trigger_has_no_category_choice' => 'Няма категория', + 'rule_trigger_has_no_category' => 'Транзакцията няма категория', + 'rule_trigger_has_any_category_choice' => 'Има (някаква) категория', + 'rule_trigger_has_any_category' => 'Транзакцията има (някаква) категория', + 'rule_trigger_has_no_budget_choice' => 'Няма бюджет', + 'rule_trigger_has_no_budget' => 'Транзакцията няма бюджет', + 'rule_trigger_has_any_budget_choice' => 'Има (някакъв) бюджет', + 'rule_trigger_has_any_budget' => 'Транзакцията има (някакъв) бюджет', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Няма етикет(и)', + 'rule_trigger_has_no_tag' => 'Транзакцията няма етикет(и)', + 'rule_trigger_has_any_tag_choice' => 'Има един или повече (някакви) етикети', + 'rule_trigger_has_any_tag' => 'Транзакцията има един или повече (някакви) етикети', + 'rule_trigger_any_notes_choice' => 'Има (някакви) бележки', + 'rule_trigger_any_notes' => 'Транзакцията има (някакви) бележки', + 'rule_trigger_no_notes_choice' => 'Няма бележки', + 'rule_trigger_no_notes' => 'Транзакцията няма бележки', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Сметката е..', + 'rule_trigger_bill_is' => 'Сметката е ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID на транзакцията е..', + 'rule_trigger_journal_id' => 'ID на транзакцията е ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Задайте категория на ":action_value"', - 'rule_action_clear_category' => 'Изчисти категорията', - 'rule_action_set_budget' => 'Задайте бюджета на ":action_value"', - 'rule_action_clear_budget' => 'Изчисти бюджета', - 'rule_action_add_tag' => 'Добави етикет ":action_value"', - 'rule_action_remove_tag' => 'Премахни етикет ":action_value"', - 'rule_action_remove_all_tags' => 'Премахни всички етикети', - 'rule_action_set_description' => 'Задайте описание ":action_value"', - 'rule_action_append_description' => 'Допълнете описанието с ":action_value"', - 'rule_action_prepend_description' => 'Започнете описанието с ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Изчисти всички категории', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Изчисти всички бюджети', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Премахни всички етикети', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Задай разходната сметка на ":action_value"', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Задай приходната сметка на :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Добави в бележките ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Започни бележките с ":action_value"', - 'rule_action_clear_notes_choice' => 'Изчисти всички бележки', - 'rule_action_clear_notes' => 'Изчисти всички бележки', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Свържи към сметка ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Задай бележките на ":action_value"', - 'rule_action_convert_deposit_choice' => 'Преобразувайте транзакцията в депозит', - 'rule_action_convert_deposit' => 'Преобразувайте транзакцията в депозит в ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Преобразувайте транзакцията в теглене', - 'rule_action_convert_withdrawal' => 'Преобразувайте транзакцията в теглене от ":action_value"', - 'rule_action_convert_transfer_choice' => 'Преобразувайте транзакцията в трансфер', - 'rule_action_convert_transfer' => 'Преобразувайте транзакцията в трансфер към ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Група правила за сметки', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Създай ново правило за сметка ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Правило за сметка ":name"', - 'new_rule_for_bill_description' => 'Това правило маркира транзакции за сметка ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Задайте категория на ":action_value"', + 'rule_action_clear_category' => 'Изчисти категорията', + 'rule_action_set_budget' => 'Задайте бюджета на ":action_value"', + 'rule_action_clear_budget' => 'Изчисти бюджета', + 'rule_action_add_tag' => 'Добави етикет ":action_value"', + 'rule_action_remove_tag' => 'Премахни етикет ":action_value"', + 'rule_action_remove_all_tags' => 'Премахни всички етикети', + 'rule_action_set_description' => 'Задайте описание ":action_value"', + 'rule_action_append_description' => 'Допълнете описанието с ":action_value"', + 'rule_action_prepend_description' => 'Започнете описанието с ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Изчисти всички категории', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Изчисти всички бюджети', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Премахни всички етикети', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Задай разходната сметка на ":action_value"', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Задай приходната сметка на :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Добави в бележките ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Започни бележките с ":action_value"', + 'rule_action_clear_notes_choice' => 'Изчисти всички бележки', + 'rule_action_clear_notes' => 'Изчисти всички бележки', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Свържи към сметка ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Задай бележките на ":action_value"', + 'rule_action_convert_deposit_choice' => 'Преобразувайте транзакцията в депозит', + 'rule_action_convert_deposit' => 'Преобразувайте транзакцията в депозит в ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Преобразувайте транзакцията в теглене', + 'rule_action_convert_withdrawal' => 'Преобразувайте транзакцията в теглене от ":action_value"', + 'rule_action_convert_transfer_choice' => 'Преобразувайте транзакцията в трансфер', + 'rule_action_convert_transfer' => 'Преобразувайте транзакцията в трансфер към ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Група правила за сметки', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Създай ново правило за сметка ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Правило за сметка ":name"', + 'new_rule_for_bill_description' => 'Това правило маркира транзакции за сметка ":name".', - 'new_rule_for_journal_title' => 'Правило базирано на транзакция ":description"', - 'new_rule_for_journal_description' => 'Това правило е базирано на транзакция ":description". То ще открива транзакции, които са идентични.', + 'new_rule_for_journal_title' => 'Правило базирано на транзакция ":description"', + 'new_rule_for_journal_description' => 'Това правило е базирано на транзакция ":description". То ще открива транзакции, които са идентични.', // tags - 'store_new_tag' => 'Запаметете нов етикет', - 'update_tag' => 'Обновяване на етикет', - 'no_location_set' => 'Не е зададено местоположение.', - 'meta_data' => 'Мета данни', - 'location' => 'Местоположение', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Без дата', - 'result' => 'Резултат', - 'sums_apply_to_range' => 'Всички суми се отнасят към избрания диапазон', - 'mapbox_api_key' => 'За да използвате карта, вземете API ключ от Mapbox . Отворете вашия .env файл и въведете този код след MAPBOX_API_KEY = .', - 'press_object_location' => 'Щракнете с десния бутон или натиснете дълго, за да зададете местоположението на обекта.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Изчисти местоположението', - 'delete_all_selected_tags' => 'Изтрий всички избрани етикети', - 'select_tags_to_delete' => 'Не забравяйте да изберете някои етикети.', - 'deleted_x_tags' => 'Изтрит :count етикет.|Изтрити :count етикети.', - 'create_rule_from_transaction' => 'Създайте правило въз основа на транзакцията', - 'create_recurring_from_transaction' => 'Създай повтаряща се транзакция базирана на транзакция', + 'store_new_tag' => 'Запаметете нов етикет', + 'update_tag' => 'Обновяване на етикет', + 'no_location_set' => 'Не е зададено местоположение.', + 'meta_data' => 'Мета данни', + 'location' => 'Местоположение', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Без дата', + 'result' => 'Резултат', + 'sums_apply_to_range' => 'Всички суми се отнасят към избрания диапазон', + 'mapbox_api_key' => 'За да използвате карта, вземете API ключ от Mapbox . Отворете вашия .env файл и въведете този код след MAPBOX_API_KEY = .', + 'press_object_location' => 'Щракнете с десния бутон или натиснете дълго, за да зададете местоположението на обекта.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Изчисти местоположението', + 'delete_all_selected_tags' => 'Изтрий всички избрани етикети', + 'select_tags_to_delete' => 'Не забравяйте да изберете някои етикети.', + 'deleted_x_tags' => 'Изтрит :count етикет.|Изтрити :count етикети.', + 'create_rule_from_transaction' => 'Създайте правило въз основа на транзакцията', + 'create_recurring_from_transaction' => 'Създай повтаряща се транзакция базирана на транзакция', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(равно на език)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Сметки на началния екран', - 'pref_home_screen_accounts_help' => 'Кои сметки трябва да се виждат на началната страница?', - 'pref_view_range' => 'Виж диапазон', - 'pref_view_range_help' => 'Някои графики се групират автоматично по периоди. Вашите бюджети също ще бъдат групирани по периоди. Какъв период бихте предпочели?', - 'pref_1D' => 'Един ден', - 'pref_1W' => 'Една седмица', - 'pref_1M' => 'Един месец', - 'pref_3M' => 'Три месеца (тримесечие)', - 'pref_6M' => 'Шест месеца', - 'pref_1Y' => 'Една година', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Езици', - 'pref_locale' => 'Локални настройки', - 'pref_languages_help' => 'Firefly III поддържа няколко езика. Кой предпочиташ?', - 'pref_locale_help' => 'Firefly III ви позволява да задавате други локални настройки, например как се форматират валути, числа и дати. Записите в този списък може да не се поддържат от вашата система. Firefly III няма правилните настройки за дата за всеки локал; свържете се с мен за подобрения.', - 'pref_locale_no_demo' => 'Тази функция няма да работи за демо потребителя.', - 'pref_custom_fiscal_year' => 'Настройки за фискалната година', - 'pref_custom_fiscal_year_label' => 'Включено', - 'pref_custom_fiscal_year_help' => 'В страни, които използват финансова година различна от 1 януари до 31 декември, можете да го включите и да определите началните / крайните дати на фискалната година', - 'pref_fiscal_year_start_label' => 'Начална дата на фискалната година', - 'pref_two_factor_auth' => 'Удостоверяване в две стъпки', - 'pref_two_factor_auth_help' => 'Когато активирате потвърждаване в две стъпки (известно също като двуфакторно удостоверяване), добавяте допълнителен слой сигурност към вашия акаунт. Влизате с нещо, което знаете (вашата парола) и нещо, което имате (код за потвърждение). Кодовете за потвърждение се генерират от приложение на вашия телефон, например Authy или Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Включи удостоверяване в две стъпки', - 'pref_two_factor_auth_disabled' => 'Кодът за удостоверяване в две стъпки е премахнат и деактивиран', - 'pref_two_factor_auth_remove_it' => 'Не забравяйте да премахнете профила от приложението си за удостоверяване!', - 'pref_two_factor_auth_code' => 'Код за потвърждение', - 'pref_two_factor_auth_code_help' => 'Сканирайте QR кода с приложение на телефона си като Authy или Google Authenticator и въведете генерирания код.', - 'pref_two_factor_auth_reset_code' => 'Нулирайте кода за потвърждение', - 'pref_two_factor_auth_disable_2fa' => 'Изключване на 2FA', - '2fa_use_secret_instead' => 'Ако не можете да сканирате QR кода, не се колебайте да използвате вместо това тайната::secret .', - '2fa_backup_codes' => 'Съхранявайте тези резервни кодове за достъп в случай, че загубите устройството си.', - '2fa_already_enabled' => 'Удостоверяването в две стъпки е вече включено.', - 'wrong_mfa_code' => 'Този MFA код е невалиден.', - 'pref_save_settings' => 'Запис на настройките', - 'saved_preferences' => 'Настройките са запазени!', - 'preferences_general' => 'Основни', - 'preferences_frontpage' => 'Начален екран', - 'preferences_security' => 'Сигурност', - 'preferences_layout' => 'Оформление', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Покажи депозитите на началния екран', - 'pref_home_show_deposits_info' => 'Началният екран вече показва вашите сметки за разходи. Трябва ли да показва и вашите сметки за приходи?', - 'pref_home_do_show_deposits' => 'Да, покажете ги', - 'successful_count' => 'от които :count успешни', - 'list_page_size_title' => 'Размер на страницата', - 'list_page_size_help' => 'Всеки списък от неща (сметки, транзакции и т.н.) показва най-много толкова на страница.', - 'list_page_size_label' => 'Размер на страницата', - 'between_dates' => '(:start и :end)', - 'pref_optional_fields_transaction' => 'Незадължителни полета за транзакции', - 'pref_optional_fields_transaction_help' => 'По подразбиране не всички полета са активирани при създаване на нова транзакция (поради претрупването). По-долу можете да активирате тези полета, ако смятате че биха могли да бъдат полезни за вас. Разбира се, всяко поле, което е деактивирано но вече попълнено, ще бъде видимо независимо от настройката.', - 'optional_tj_date_fields' => 'Полета за дати', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Полета за прикачени файлове', - 'pref_optional_tj_interest_date' => 'Полета за лихви', - 'pref_optional_tj_book_date' => 'Дата на осчетоводяване', - 'pref_optional_tj_process_date' => 'Дата на обработка', - 'pref_optional_tj_due_date' => 'Дата на падеж', - 'pref_optional_tj_payment_date' => 'Дата на плащане', - 'pref_optional_tj_invoice_date' => 'Дата на фактура', - 'pref_optional_tj_internal_reference' => 'Вътрешна референция', - 'pref_optional_tj_notes' => 'Бележки', - 'pref_optional_tj_attachments' => 'Прикачени файлове', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Дати', - 'optional_field_meta_business' => 'Бизнес', - 'optional_field_attachments' => 'Прикачени файлове', - 'optional_field_meta_data' => 'Незадължителни мета данни', - 'external_url' => 'Външен URL адрес', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(равно на език)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Сметки на началния екран', + 'pref_home_screen_accounts_help' => 'Кои сметки трябва да се виждат на началната страница?', + 'pref_view_range' => 'Виж диапазон', + 'pref_view_range_help' => 'Някои графики се групират автоматично по периоди. Вашите бюджети също ще бъдат групирани по периоди. Какъв период бихте предпочели?', + 'pref_1D' => 'Един ден', + 'pref_1W' => 'Една седмица', + 'pref_1M' => 'Един месец', + 'pref_3M' => 'Три месеца (тримесечие)', + 'pref_6M' => 'Шест месеца', + 'pref_1Y' => 'Една година', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Езици', + 'pref_locale' => 'Локални настройки', + 'pref_languages_help' => 'Firefly III поддържа няколко езика. Кой предпочиташ?', + 'pref_locale_help' => 'Firefly III ви позволява да задавате други локални настройки, например как се форматират валути, числа и дати. Записите в този списък може да не се поддържат от вашата система. Firefly III няма правилните настройки за дата за всеки локал; свържете се с мен за подобрения.', + 'pref_locale_no_demo' => 'Тази функция няма да работи за демо потребителя.', + 'pref_custom_fiscal_year' => 'Настройки за фискалната година', + 'pref_custom_fiscal_year_label' => 'Включено', + 'pref_custom_fiscal_year_help' => 'В страни, които използват финансова година различна от 1 януари до 31 декември, можете да го включите и да определите началните / крайните дати на фискалната година', + 'pref_fiscal_year_start_label' => 'Начална дата на фискалната година', + 'pref_two_factor_auth' => 'Удостоверяване в две стъпки', + 'pref_two_factor_auth_help' => 'Когато активирате потвърждаване в две стъпки (известно също като двуфакторно удостоверяване), добавяте допълнителен слой сигурност към вашия акаунт. Влизате с нещо, което знаете (вашата парола) и нещо, което имате (код за потвърждение). Кодовете за потвърждение се генерират от приложение на вашия телефон, например Authy или Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Включи удостоверяване в две стъпки', + 'pref_two_factor_auth_disabled' => 'Кодът за удостоверяване в две стъпки е премахнат и деактивиран', + 'pref_two_factor_auth_remove_it' => 'Не забравяйте да премахнете профила от приложението си за удостоверяване!', + 'pref_two_factor_auth_code' => 'Код за потвърждение', + 'pref_two_factor_auth_code_help' => 'Сканирайте QR кода с приложение на телефона си като Authy или Google Authenticator и въведете генерирания код.', + 'pref_two_factor_auth_reset_code' => 'Нулирайте кода за потвърждение', + 'pref_two_factor_auth_disable_2fa' => 'Изключване на 2FA', + '2fa_use_secret_instead' => 'Ако не можете да сканирате QR кода, не се колебайте да използвате вместо това тайната::secret .', + '2fa_backup_codes' => 'Съхранявайте тези резервни кодове за достъп в случай, че загубите устройството си.', + '2fa_already_enabled' => 'Удостоверяването в две стъпки е вече включено.', + 'wrong_mfa_code' => 'Този MFA код е невалиден.', + 'pref_save_settings' => 'Запис на настройките', + 'saved_preferences' => 'Настройките са запазени!', + 'preferences_general' => 'Основни', + 'preferences_frontpage' => 'Начален екран', + 'preferences_security' => 'Сигурност', + 'preferences_layout' => 'Оформление', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Покажи депозитите на началния екран', + 'pref_home_show_deposits_info' => 'Началният екран вече показва вашите сметки за разходи. Трябва ли да показва и вашите сметки за приходи?', + 'pref_home_do_show_deposits' => 'Да, покажете ги', + 'successful_count' => 'от които :count успешни', + 'list_page_size_title' => 'Размер на страницата', + 'list_page_size_help' => 'Всеки списък от неща (сметки, транзакции и т.н.) показва най-много толкова на страница.', + 'list_page_size_label' => 'Размер на страницата', + 'between_dates' => '(:start и :end)', + 'pref_optional_fields_transaction' => 'Незадължителни полета за транзакции', + 'pref_optional_fields_transaction_help' => 'По подразбиране не всички полета са активирани при създаване на нова транзакция (поради претрупването). По-долу можете да активирате тези полета, ако смятате че биха могли да бъдат полезни за вас. Разбира се, всяко поле, което е деактивирано но вече попълнено, ще бъде видимо независимо от настройката.', + 'optional_tj_date_fields' => 'Полета за дати', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Полета за прикачени файлове', + 'pref_optional_tj_interest_date' => 'Полета за лихви', + 'pref_optional_tj_book_date' => 'Дата на осчетоводяване', + 'pref_optional_tj_process_date' => 'Дата на обработка', + 'pref_optional_tj_due_date' => 'Дата на падеж', + 'pref_optional_tj_payment_date' => 'Дата на плащане', + 'pref_optional_tj_invoice_date' => 'Дата на фактура', + 'pref_optional_tj_internal_reference' => 'Вътрешна референция', + 'pref_optional_tj_notes' => 'Бележки', + 'pref_optional_tj_attachments' => 'Прикачени файлове', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Дати', + 'optional_field_meta_business' => 'Бизнес', + 'optional_field_attachments' => 'Прикачени файлове', + 'optional_field_meta_data' => 'Незадължителни мета данни', + 'external_url' => 'Външен URL адрес', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Всички други ваши сесии бяха затворени.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Изтрийте ВСИЧКИ ваши бюджети', - 'delete_all_categories' => 'Изтрийте ВСИЧКИ ваши категории', - 'delete_all_tags' => 'Изтрийте ВСИЧКИ ваши етикети', - 'delete_all_bills' => 'Изтрийте ВСИЧКИ ваши сметки', - 'delete_all_piggy_banks' => 'Изтрийте ВСИЧКИ ваши касички', - 'delete_all_rules' => 'Изтрийте ВСИЧКИ ваши правила', - 'delete_all_recurring' => 'Изтрийте ВСИЧКИ ваши повтарящи се транзакции', - 'delete_all_object_groups' => 'Изтрийте ВСИЧКИ ваши групи обекти', - 'delete_all_accounts' => 'Изтрийте ВСИЧКИ ваши сметки', - 'delete_all_asset_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за активи', - 'delete_all_expense_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за разходи', - 'delete_all_revenue_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за приходи', - 'delete_all_liabilities' => 'Изтрийте ВСИЧКИ ваши задължения', - 'delete_all_transactions' => 'Изтрийте ВСИЧКИ ваши транзакции', - 'delete_all_withdrawals' => 'Изтрийте ВСИЧКИ ваши тегления', - 'delete_all_deposits' => 'Изтрийте ВСИЧКИ ваши депозити', - 'delete_all_transfers' => 'Изтрийте ВСИЧКИ ваши прехвърляния', - 'also_delete_transactions' => 'Изтриването на сметки ще изтрие също така и ВСИЧКИ свързани тегления, депозити и прехвърляния!', - 'deleted_all_budgets' => 'Всички бюджети бяха изтрити', - 'deleted_all_categories' => 'Всички категории бяха изтрити', - 'deleted_all_tags' => 'Всички етикети бяха изтрити', - 'deleted_all_bills' => 'Всички сметки бяха изтрити', - 'deleted_all_piggy_banks' => 'Всички касички бяха изтрити', - 'deleted_all_rules' => 'Всички правила и групи правила бяха изтрити', - 'deleted_all_object_groups' => 'Всички групи бяха изтрити', - 'deleted_all_accounts' => 'Всички сметки бяха изтрити', - 'deleted_all_asset_accounts' => 'Всички сметки за активи бяха изтрити', - 'deleted_all_expense_accounts' => 'Всички сметки за разходи бяха изтрити', - 'deleted_all_revenue_accounts' => 'Всички сметки за приходи бяха изтрити', - 'deleted_all_liabilities' => 'Всички задължения бяха изтрити', - 'deleted_all_transactions' => 'Всички транзакции бяха изтрити', - 'deleted_all_withdrawals' => 'Всички тегления бяха изтрити', - 'deleted_all_deposits' => 'Всички депозити бяха изтрити', - 'deleted_all_transfers' => 'Всички прехвърляния бяха изтрити', - 'deleted_all_recurring' => 'Всички повтарящи се транзакции бяха изтрити', - 'change_your_password' => 'Смяна на парола', - 'delete_account' => 'Изтриване на профил', - 'current_password' => 'Текуща парола', - 'new_password' => 'Нова парола', - 'new_password_again' => 'Нова парола (повтори)', - 'delete_your_account' => 'Изтриване на вашият профил', - 'delete_your_account_help' => 'Изтриването на профила ви също ще изтрие всички сметки, транзакции, всичко , което може да сте запазили в Firefly III. Ще бъде МИНАЛО.', - 'delete_your_account_password' => 'Въведете паролата си, за да продължите.', - 'password' => 'Парола', - 'are_you_sure' => 'Сигурен ли сте? Не можете да отмените това.', - 'delete_account_button' => 'ИЗТРИВАНЕ на вашият профил', - 'invalid_current_password' => 'Невалидна текуща парола!', - 'password_changed' => 'Паролата е променена!', - 'should_change' => 'Идеята е да СМЕНИТЕ паролата си.', - 'invalid_password' => 'Невалидна парола!', - 'what_is_pw_security' => 'Какво е "проверете сигурността на паролата"?', - 'secure_pw_title' => 'Как да изберем сигурна парола', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Не минава и седмица без да прочетете в новините за сайт, който губи паролите на своите потребители. Хакерите и крадците използват тези пароли, за да се опитат да откраднат вашата лична информация. Тази информация е ценна.', - 'secure_pw_ff' => 'Използвате ли една и съща парола в Интернет? Ако един сайт загуби паролата ви, хакерите имат достъп до всичките ви данни. Firefly III разчита на вас да изберете силна и уникална парола, за да защитите финансовите си записи.', - 'secure_pw_check_box' => 'За да ви помогне да направите това Firefly III може да провери дали паролата, която искате да използвате, е била открадната в миналото. В такъв случай Firefly III ви съветва да НЕ използвате тази парола.', - 'secure_pw_working_title' => 'Как работи това?', - 'secure_pw_working' => 'Като поставите отметка в квадратчето, Firefly III ще изпрати първите пет знака от хеша на SHA1 на вашата парола до уебсайтът на Troy Hunt , за да се види дали е в списъка. Това ще ви попречи да използвате опасни пароли, както се препоръчва в последната Специална публикация на NIST на тази тема.', - 'secure_pw_should' => 'Трябва ли да маркирам квадратчето?', - 'secure_pw_long_password' => 'Да. Винаги проверявайте дали вашата парола е безопасна.', - 'command_line_token' => 'Маркер за командният ред', - 'explain_command_line_token' => 'Този маркер ще ви е необходим, за да изпълнявате опции на командния ред, като например експортиране на данни. Без него тази чувствителна команда няма да работи. Не споделяйте маркера на вашия команден ред. Никой няма да ви поиска този знак, дори аз. Ако се страхувате, че сте загубили този маркер или ако сте параноик, регенерирайте този маркер с помощта на бутона.', - 'regenerate_command_line_token' => 'Регенерирайте маркера на командния ред', - 'token_regenerated' => 'Беше генериран нов маркер за команден ред', - 'change_your_email' => 'Смяна на имейл адрес', - 'email_verification' => 'Ще бъде изпратено имейл съобщение до вашия стар И нов имейл адрес. За целите на сигурността няма да можете да влезете, докато не потвърдите новия си имейл адрес. Ако не сте сигурни дали вашата инсталация Firefly III може да изпраща имейл, моля не използвайте тази функция. Ако сте администратор, можете да тествате това в Администрация .', - 'email_changed_logout' => 'Докато не потвърдите своя имейл адрес, не можете да влезете.', - 'login_with_new_email' => 'Вече можете да влезете с новия си имейл адрес.', - 'login_with_old_email' => 'Вече можете да влезете отново със стария си имейл адрес.', - 'login_provider_local_only' => 'Това действие не е достъпно при удостоверяване чрез ":login_provider".', - 'external_user_mgt_disabled' => 'Това действие не е достъпно, когато Firefly III не е отговорен за управлението на потребителите или обработката на удостоверяването.', - 'external_auth_disabled' => 'Това действие не е достъпно, когато Firefly III не е отговорен обработката на удостоверяването.', - 'delete_local_info_only' => 'Тъй като Firefly III не е отговорен за управлението на потребителите или обработката на удостоверяването, тази функция ще изтрие само локална информация на Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth клиенти', - 'profile_oauth_no_clients' => 'Не сте създали клиенти на OAuth.', - '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_header' => 'Клиенти', - 'profile_oauth_client_id' => 'ИД (ID) на клиент', - 'profile_oauth_client_name' => 'Име', - 'profile_oauth_client_secret' => 'Тайна', - 'profile_oauth_create_new_client' => 'Създай нов клиент', - 'profile_oauth_create_client' => 'Създай клиент', - 'profile_oauth_edit_client' => 'Редактирай клиент', - 'profile_oauth_name_help' => 'Нещо, което вашите потребители ще разпознаят и ще се доверят.', - 'profile_oauth_redirect_url' => 'Линк на препратката', - 'profile_oauth_redirect_url_help' => 'URL адрес за обратно извикване на оторизацията на вашето приложение.', - 'profile_authorized_apps' => 'Удостоверени приложения', - 'profile_authorized_clients' => 'Удостоверени клиенти', - 'profile_scopes' => 'Сфери', - 'profile_revoke' => 'Анулирай', - 'profile_oauth_client_secret_title' => 'Тайна на клиента', - 'profile_oauth_client_secret_expl' => 'Това е новата ви "тайна на клиента". Това е единственият път, когато ще бъде показана, така че не го губете! Вече можете да използвате този маркер, за да отправяте заявки към API.', - 'profile_personal_access_tokens' => 'Персонални маркери за достъп', - 'profile_personal_access_token' => 'Персонален маркер за достъп', - 'profile_oauth_confidential' => 'Поверително', - 'profile_oauth_confidential_help' => 'Изисквайте клиента да се удостоверява с тайна. Поверителните клиенти могат да притежават идентификационни данни по защитен начин, без да ги излагат на неоторизирани страни. Публичните приложения, като например десктопа или JavaScript SPA приложения, не могат да пазят тайни по сигурен начин.', - 'profile_personal_access_token_explanation' => 'Това е новия ви персонален маркер за достъп. Това е единственият път, когато ще бъде показан, така че не го губете! Вече можете да използвате този маркер, за да отправяте заявки към API.', - 'profile_no_personal_access_token' => 'Не сте създали никакви лични маркери за достъп.', - 'profile_create_new_token' => 'Създай нов маркер', - 'profile_create_token' => 'Създай маркер', - 'profile_create' => 'Създай', - 'profile_save_changes' => 'Запазване на промените', - 'profile_whoops' => 'Опаааа!', - 'profile_something_wrong' => 'Нещо се обърка!', - 'profile_try_again' => 'Нещо се обърка. Моля, опитайте отново.', - 'amounts' => 'Суми', - 'multi_account_warning_unknown' => 'В зависимост от вида на транзакцията която създавате, източникът и / или целевата сметка на следващите разделяния може да бъде променена от това което е дефинирано в първото разделение на транзакцията.', - 'multi_account_warning_withdrawal' => 'Имайте предвид, че разходна сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на тегленето.', - 'multi_account_warning_deposit' => 'Имайте предвид, че приходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на депозита.', - 'multi_account_warning_transfer' => 'Имайте предвид, че приходната + разходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на прехвърлянето.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Всички други ваши сесии бяха затворени.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Изтрийте ВСИЧКИ ваши бюджети', + 'delete_all_categories' => 'Изтрийте ВСИЧКИ ваши категории', + 'delete_all_tags' => 'Изтрийте ВСИЧКИ ваши етикети', + 'delete_all_bills' => 'Изтрийте ВСИЧКИ ваши сметки', + 'delete_all_piggy_banks' => 'Изтрийте ВСИЧКИ ваши касички', + 'delete_all_rules' => 'Изтрийте ВСИЧКИ ваши правила', + 'delete_all_recurring' => 'Изтрийте ВСИЧКИ ваши повтарящи се транзакции', + 'delete_all_object_groups' => 'Изтрийте ВСИЧКИ ваши групи обекти', + 'delete_all_accounts' => 'Изтрийте ВСИЧКИ ваши сметки', + 'delete_all_asset_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за активи', + 'delete_all_expense_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за разходи', + 'delete_all_revenue_accounts' => 'Изтрийте ВСИЧКИ ваши сметки за приходи', + 'delete_all_liabilities' => 'Изтрийте ВСИЧКИ ваши задължения', + 'delete_all_transactions' => 'Изтрийте ВСИЧКИ ваши транзакции', + 'delete_all_withdrawals' => 'Изтрийте ВСИЧКИ ваши тегления', + 'delete_all_deposits' => 'Изтрийте ВСИЧКИ ваши депозити', + 'delete_all_transfers' => 'Изтрийте ВСИЧКИ ваши прехвърляния', + 'also_delete_transactions' => 'Изтриването на сметки ще изтрие също така и ВСИЧКИ свързани тегления, депозити и прехвърляния!', + 'deleted_all_budgets' => 'Всички бюджети бяха изтрити', + 'deleted_all_categories' => 'Всички категории бяха изтрити', + 'deleted_all_tags' => 'Всички етикети бяха изтрити', + 'deleted_all_bills' => 'Всички сметки бяха изтрити', + 'deleted_all_piggy_banks' => 'Всички касички бяха изтрити', + 'deleted_all_rules' => 'Всички правила и групи правила бяха изтрити', + 'deleted_all_object_groups' => 'Всички групи бяха изтрити', + 'deleted_all_accounts' => 'Всички сметки бяха изтрити', + 'deleted_all_asset_accounts' => 'Всички сметки за активи бяха изтрити', + 'deleted_all_expense_accounts' => 'Всички сметки за разходи бяха изтрити', + 'deleted_all_revenue_accounts' => 'Всички сметки за приходи бяха изтрити', + 'deleted_all_liabilities' => 'Всички задължения бяха изтрити', + 'deleted_all_transactions' => 'Всички транзакции бяха изтрити', + 'deleted_all_withdrawals' => 'Всички тегления бяха изтрити', + 'deleted_all_deposits' => 'Всички депозити бяха изтрити', + 'deleted_all_transfers' => 'Всички прехвърляния бяха изтрити', + 'deleted_all_recurring' => 'Всички повтарящи се транзакции бяха изтрити', + 'change_your_password' => 'Смяна на парола', + 'delete_account' => 'Изтриване на профил', + 'current_password' => 'Текуща парола', + 'new_password' => 'Нова парола', + 'new_password_again' => 'Нова парола (повтори)', + 'delete_your_account' => 'Изтриване на вашият профил', + 'delete_your_account_help' => 'Изтриването на профила ви също ще изтрие всички сметки, транзакции, всичко , което може да сте запазили в Firefly III. Ще бъде МИНАЛО.', + 'delete_your_account_password' => 'Въведете паролата си, за да продължите.', + 'password' => 'Парола', + 'are_you_sure' => 'Сигурен ли сте? Не можете да отмените това.', + 'delete_account_button' => 'ИЗТРИВАНЕ на вашият профил', + 'invalid_current_password' => 'Невалидна текуща парола!', + 'password_changed' => 'Паролата е променена!', + 'should_change' => 'Идеята е да СМЕНИТЕ паролата си.', + 'invalid_password' => 'Невалидна парола!', + 'what_is_pw_security' => 'Какво е "проверете сигурността на паролата"?', + 'secure_pw_title' => 'Как да изберем сигурна парола', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Не минава и седмица без да прочетете в новините за сайт, който губи паролите на своите потребители. Хакерите и крадците използват тези пароли, за да се опитат да откраднат вашата лична информация. Тази информация е ценна.', + 'secure_pw_ff' => 'Използвате ли една и съща парола в Интернет? Ако един сайт загуби паролата ви, хакерите имат достъп до всичките ви данни. Firefly III разчита на вас да изберете силна и уникална парола, за да защитите финансовите си записи.', + 'secure_pw_check_box' => 'За да ви помогне да направите това Firefly III може да провери дали паролата, която искате да използвате, е била открадната в миналото. В такъв случай Firefly III ви съветва да НЕ използвате тази парола.', + 'secure_pw_working_title' => 'Как работи това?', + 'secure_pw_working' => 'Като поставите отметка в квадратчето, Firefly III ще изпрати първите пет знака от хеша на SHA1 на вашата парола до уебсайтът на Troy Hunt , за да се види дали е в списъка. Това ще ви попречи да използвате опасни пароли, както се препоръчва в последната Специална публикация на NIST на тази тема.', + 'secure_pw_should' => 'Трябва ли да маркирам квадратчето?', + 'secure_pw_long_password' => 'Да. Винаги проверявайте дали вашата парола е безопасна.', + 'command_line_token' => 'Маркер за командният ред', + 'explain_command_line_token' => 'Този маркер ще ви е необходим, за да изпълнявате опции на командния ред, като например експортиране на данни. Без него тази чувствителна команда няма да работи. Не споделяйте маркера на вашия команден ред. Никой няма да ви поиска този знак, дори аз. Ако се страхувате, че сте загубили този маркер или ако сте параноик, регенерирайте този маркер с помощта на бутона.', + 'regenerate_command_line_token' => 'Регенерирайте маркера на командния ред', + 'token_regenerated' => 'Беше генериран нов маркер за команден ред', + 'change_your_email' => 'Смяна на имейл адрес', + 'email_verification' => 'Ще бъде изпратено имейл съобщение до вашия стар И нов имейл адрес. За целите на сигурността няма да можете да влезете, докато не потвърдите новия си имейл адрес. Ако не сте сигурни дали вашата инсталация Firefly III може да изпраща имейл, моля не използвайте тази функция. Ако сте администратор, можете да тествате това в Администрация .', + 'email_changed_logout' => 'Докато не потвърдите своя имейл адрес, не можете да влезете.', + 'login_with_new_email' => 'Вече можете да влезете с новия си имейл адрес.', + 'login_with_old_email' => 'Вече можете да влезете отново със стария си имейл адрес.', + 'login_provider_local_only' => 'Това действие не е достъпно при удостоверяване чрез ":login_provider".', + 'external_user_mgt_disabled' => 'Това действие не е достъпно, когато Firefly III не е отговорен за управлението на потребителите или обработката на удостоверяването.', + 'external_auth_disabled' => 'Това действие не е достъпно, когато Firefly III не е отговорен обработката на удостоверяването.', + 'delete_local_info_only' => 'Тъй като Firefly III не е отговорен за управлението на потребителите или обработката на удостоверяването, тази функция ще изтрие само локална информация на Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth клиенти', + 'profile_oauth_no_clients' => 'Не сте създали клиенти на OAuth.', + '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_header' => 'Клиенти', + 'profile_oauth_client_id' => 'ИД (ID) на клиент', + 'profile_oauth_client_name' => 'Име', + 'profile_oauth_client_secret' => 'Тайна', + 'profile_oauth_create_new_client' => 'Създай нов клиент', + 'profile_oauth_create_client' => 'Създай клиент', + 'profile_oauth_edit_client' => 'Редактирай клиент', + 'profile_oauth_name_help' => 'Нещо, което вашите потребители ще разпознаят и ще се доверят.', + 'profile_oauth_redirect_url' => 'Линк на препратката', + 'profile_oauth_redirect_url_help' => 'URL адрес за обратно извикване на оторизацията на вашето приложение.', + 'profile_authorized_apps' => 'Удостоверени приложения', + 'profile_authorized_clients' => 'Удостоверени клиенти', + 'profile_scopes' => 'Сфери', + 'profile_revoke' => 'Анулирай', + 'profile_oauth_client_secret_title' => 'Тайна на клиента', + 'profile_oauth_client_secret_expl' => 'Това е новата ви "тайна на клиента". Това е единственият път, когато ще бъде показана, така че не го губете! Вече можете да използвате този маркер, за да отправяте заявки към API.', + 'profile_personal_access_tokens' => 'Персонални маркери за достъп', + 'profile_personal_access_token' => 'Персонален маркер за достъп', + 'profile_oauth_confidential' => 'Поверително', + 'profile_oauth_confidential_help' => 'Изисквайте клиента да се удостоверява с тайна. Поверителните клиенти могат да притежават идентификационни данни по защитен начин, без да ги излагат на неоторизирани страни. Публичните приложения, като например десктопа или JavaScript SPA приложения, не могат да пазят тайни по сигурен начин.', + 'profile_personal_access_token_explanation' => 'Това е новия ви персонален маркер за достъп. Това е единственият път, когато ще бъде показан, така че не го губете! Вече можете да използвате този маркер, за да отправяте заявки към API.', + 'profile_no_personal_access_token' => 'Не сте създали никакви лични маркери за достъп.', + 'profile_create_new_token' => 'Създай нов маркер', + 'profile_create_token' => 'Създай маркер', + 'profile_create' => 'Създай', + 'profile_save_changes' => 'Запазване на промените', + 'profile_whoops' => 'Опаааа!', + 'profile_something_wrong' => 'Нещо се обърка!', + 'profile_try_again' => 'Нещо се обърка. Моля, опитайте отново.', + 'amounts' => 'Суми', + 'multi_account_warning_unknown' => 'В зависимост от вида на транзакцията която създавате, източникът и / или целевата сметка на следващите разделяния може да бъде променена от това което е дефинирано в първото разделение на транзакцията.', + 'multi_account_warning_withdrawal' => 'Имайте предвид, че разходна сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на тегленето.', + 'multi_account_warning_deposit' => 'Имайте предвид, че приходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на депозита.', + 'multi_account_warning_transfer' => 'Имайте предвид, че приходната + разходната сметка на следващите разделяния ще бъде тази която е дефинирана в първия раздел на прехвърлянето.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Експортирайте данни от Firefly III', - 'export_data_menu' => 'Експортирай данни', - 'export_data_bc' => 'Експортирайте данни от Firefly III', - 'export_data_main_title' => 'Експортирайте данни от Firefly III', - 'export_data_expl' => 'Тази връзка ви позволява да експортирате всички транзакции + мета данни от Firefly III. Моля, обърнете се към помощника (горе вдясно (?) - икона) за повече информация за процеса.', - 'export_data_all_transactions' => 'Експортирай всички транзакции', - 'export_data_advanced_expl' => 'Ако имате нужда от по-усъвършенстван или специфичен тип експорт, прочетете помощта за това как да използвате командата на конзолата php artisan help firefly-iii:export-data .', + 'export_data_title' => 'Експортирайте данни от Firefly III', + 'export_data_menu' => 'Експортирай данни', + 'export_data_bc' => 'Експортирайте данни от Firefly III', + 'export_data_main_title' => 'Експортирайте данни от Firefly III', + 'export_data_expl' => 'Тази връзка ви позволява да експортирате всички транзакции + мета данни от Firefly III. Моля, обърнете се към помощника (горе вдясно (?) - икона) за повече информация за процеса.', + 'export_data_all_transactions' => 'Експортирай всички транзакции', + 'export_data_advanced_expl' => 'Ако имате нужда от по-усъвършенстван или специфичен тип експорт, прочетете помощта за това как да използвате командата на конзолата php artisan help firefly-iii:export-data .', // attachments - 'nr_of_attachments' => 'Един прикачен файл|:count прикачени файла', - 'attachments' => 'Прикачени файлове', - 'edit_attachment' => 'Редактирай прикачен файл ":name"', - 'update_attachment' => 'Обнови прикачения файл', - 'delete_attachment' => 'Изтрий прикачен файл ":name"', - 'attachment_deleted' => 'Изтрит прикачен файл ":name"', - 'liabilities_deleted' => 'Изтрито задължение ":name"', - 'attachment_updated' => 'Обновен прикачен файл ":name"', - 'upload_max_file_size' => 'Максимален размер на файла: :size', - 'list_all_attachments' => 'Списък на всички прикачени файлове', + 'nr_of_attachments' => 'Един прикачен файл|:count прикачени файла', + 'attachments' => 'Прикачени файлове', + 'edit_attachment' => 'Редактирай прикачен файл ":name"', + 'update_attachment' => 'Обнови прикачения файл', + 'delete_attachment' => 'Изтрий прикачен файл ":name"', + 'attachment_deleted' => 'Изтрит прикачен файл ":name"', + 'liabilities_deleted' => 'Изтрито задължение ":name"', + 'attachment_updated' => 'Обновен прикачен файл ":name"', + 'upload_max_file_size' => 'Максимален размер на файла: :size', + 'list_all_attachments' => 'Списък на всички прикачени файлове', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Разходи', - 'title_withdrawal' => 'Тегления', - 'title_revenue' => 'Приходи', - 'title_deposit' => 'Депозити', - 'title_transfer' => 'Прехвърляния', - 'title_transfers' => 'Прехвърляния', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Разходи', + 'title_withdrawal' => 'Тегления', + 'title_revenue' => 'Приходи', + 'title_deposit' => 'Депозити', + 'title_transfer' => 'Прехвърляния', + 'title_transfers' => 'Прехвърляния', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Тази транзакция вече е теглене', - 'convert_is_already_type_Deposit' => 'Тази транзакция вече е депозит', - 'convert_is_already_type_Transfer' => 'Тази транзакция вече е прехвърляне', - 'convert_to_Withdrawal' => 'Преобразувайте ":description" в теглене', - 'convert_to_Deposit' => 'Преобразувайте ":description" в депозит', - 'convert_to_Transfer' => 'Преобразувайте ":description" в прехвърляне', - 'convert_options_WithdrawalDeposit' => 'Преобразувайте теглене в депозит', - 'convert_options_WithdrawalTransfer' => 'Преобразувайте теглене в прехвърляне', - 'convert_options_DepositTransfer' => 'Преобразувайте депозит в прехвърляне', - 'convert_options_DepositWithdrawal' => 'Преобразувайте депозит в теглене', - 'convert_options_TransferWithdrawal' => 'Преобразувайте прехвърляне в теглене', - 'convert_options_TransferDeposit' => 'Преобразувайте прехвърляне в депозит', - 'convert_Withdrawal_to_deposit' => 'Преобразувайте това теглене в депозит', - 'convert_Withdrawal_to_transfer' => 'Преобразувайте това теглене в прехвърляне', - 'convert_Deposit_to_withdrawal' => 'Преобразувайте този депозит в теглене', - 'convert_Deposit_to_transfer' => 'Преобразувайте този депозит в прехвърляне', - 'convert_Transfer_to_deposit' => 'Преобразувайте това прехвърляне в депозит', - 'convert_Transfer_to_withdrawal' => 'Преобразувайте това прехвърляне в теглене', - 'convert_please_set_revenue_source' => 'Моля, изберете приходната сметка, откъде ще дойдат парите.', - 'convert_please_set_asset_destination' => 'Моля, изберете сметката за активи, където ще отидат парите.', - 'convert_please_set_expense_destination' => 'Моля изберете разходната сметка, където ще отидат парите.', - 'convert_please_set_asset_source' => 'Моля изберете сметката за активи, откъде ще дойдат парите.', - 'convert_expl_w_d' => 'При конвертиране от теглене в депозит парите ще бъдат депозирани в показаната сметка за активи, вместо да бъдат изтеглени от нея.|При конвертиране от теглене в депозит парите ще бъдат внесени в показаните сметки за активи, вместо да бъдат изтеглени от тях.', - 'convert_expl_w_t' => 'При конвертиране на теглене в трансфер парите ще бъдат прехвърлени от изходната сметка в друга сметка за активи или сметка за задължения, вместо да бъдат изразходвани по първоначалната сметка за разходи.|При конвертиране на теглене в трансфер парите ще бъдат прехвърлени от изходните сметки в други сметки за активи или задължения, вместо да бъдат изразходвани по първоначалните сметки за разходи.', - 'convert_expl_d_w' => 'При конвертиране на депозит в теглене парите ще бъдат изтеглени от показаната изходна сметка, вместо да бъдат внесени в нея.|При конвертиране на депозит в теглене, парите ще бъдат изтеглени от показаните изходни сметки, вместо да бъдат депозирани в тях.', - 'convert_expl_d_t' => 'Когато конвертирате депозит в прехвърляне, парите ще бъдат депозирани в посочената целева сметка от който и да е от вашите активи или пасиви.|Когато конвертирате депозит в прехвърляне, парите ще бъдат депозирани в посочените целеви сметки от която и да е от вашите сметки за активи или пасиви.', - 'convert_expl_t_w' => 'Когато конвертирате трансфер в теглене, парите ще бъдат изразходвани за целевата сметка, която сте задали тук, вместо да бъдат прехвърлени.|Когато конвертирате трансфер в теглене, парите ще бъдат изразходвани за целевите сметки, които сте задали тук, вместо да бъдат прехвърлени.', - 'convert_expl_t_d' => 'Когато преобразувате прехвърляне в депозит, парите ще бъдат депозирани в целевата сметка, която виждате тук, вместо да бъдат прехвърлени.|Когато конвертирате прехвърляне в депозит, парите ще бъдат внесени в целевите сметки, които виждате тук, вместо да бъде прехвърлени в тях.', - 'convert_select_sources' => 'За да завършите преобразуването, моля задайте нова сметка източник по-долу.|За да завършите преобразуването, моля задайте новите сметки източници по-долу.', - 'convert_select_destinations' => 'За да завършите преобразуването, моля изберете новата целева сметка по-долу.|За да завършите преобразуването, моля изберете новите целеви сметки по-долу.', - 'converted_to_Withdrawal' => 'Транзакцията беше преобразувана в теглене', - 'converted_to_Deposit' => 'Транзакцията беше преобразувана в депозит', - 'converted_to_Transfer' => 'Транзакцията беше преобразувана в прехвърляне', - 'invalid_convert_selection' => 'Избраната от Вас сметка вече се използва в тази транзакция или не съществува.', - 'source_or_dest_invalid' => 'Не могат да се намерят правилните данни за транзакцията. Преобразуването не е възможно.', - 'convert_to_withdrawal' => 'Преобразуване в теглене', - 'convert_to_deposit' => 'Преобразуване в депозит', - 'convert_to_transfer' => 'Преобразуване в прехвърляне', + 'convert_is_already_type_Withdrawal' => 'Тази транзакция вече е теглене', + 'convert_is_already_type_Deposit' => 'Тази транзакция вече е депозит', + 'convert_is_already_type_Transfer' => 'Тази транзакция вече е прехвърляне', + 'convert_to_Withdrawal' => 'Преобразувайте ":description" в теглене', + 'convert_to_Deposit' => 'Преобразувайте ":description" в депозит', + 'convert_to_Transfer' => 'Преобразувайте ":description" в прехвърляне', + 'convert_options_WithdrawalDeposit' => 'Преобразувайте теглене в депозит', + 'convert_options_WithdrawalTransfer' => 'Преобразувайте теглене в прехвърляне', + 'convert_options_DepositTransfer' => 'Преобразувайте депозит в прехвърляне', + 'convert_options_DepositWithdrawal' => 'Преобразувайте депозит в теглене', + 'convert_options_TransferWithdrawal' => 'Преобразувайте прехвърляне в теглене', + 'convert_options_TransferDeposit' => 'Преобразувайте прехвърляне в депозит', + 'convert_Withdrawal_to_deposit' => 'Преобразувайте това теглене в депозит', + 'convert_Withdrawal_to_transfer' => 'Преобразувайте това теглене в прехвърляне', + 'convert_Deposit_to_withdrawal' => 'Преобразувайте този депозит в теглене', + 'convert_Deposit_to_transfer' => 'Преобразувайте този депозит в прехвърляне', + 'convert_Transfer_to_deposit' => 'Преобразувайте това прехвърляне в депозит', + 'convert_Transfer_to_withdrawal' => 'Преобразувайте това прехвърляне в теглене', + 'convert_please_set_revenue_source' => 'Моля, изберете приходната сметка, откъде ще дойдат парите.', + 'convert_please_set_asset_destination' => 'Моля, изберете сметката за активи, където ще отидат парите.', + 'convert_please_set_expense_destination' => 'Моля изберете разходната сметка, където ще отидат парите.', + 'convert_please_set_asset_source' => 'Моля изберете сметката за активи, откъде ще дойдат парите.', + 'convert_expl_w_d' => 'При конвертиране от теглене в депозит парите ще бъдат депозирани в показаната сметка за активи, вместо да бъдат изтеглени от нея.|При конвертиране от теглене в депозит парите ще бъдат внесени в показаните сметки за активи, вместо да бъдат изтеглени от тях.', + 'convert_expl_w_t' => 'При конвертиране на теглене в трансфер парите ще бъдат прехвърлени от изходната сметка в друга сметка за активи или сметка за задължения, вместо да бъдат изразходвани по първоначалната сметка за разходи.|При конвертиране на теглене в трансфер парите ще бъдат прехвърлени от изходните сметки в други сметки за активи или задължения, вместо да бъдат изразходвани по първоначалните сметки за разходи.', + 'convert_expl_d_w' => 'При конвертиране на депозит в теглене парите ще бъдат изтеглени от показаната изходна сметка, вместо да бъдат внесени в нея.|При конвертиране на депозит в теглене, парите ще бъдат изтеглени от показаните изходни сметки, вместо да бъдат депозирани в тях.', + 'convert_expl_d_t' => 'Когато конвертирате депозит в прехвърляне, парите ще бъдат депозирани в посочената целева сметка от който и да е от вашите активи или пасиви.|Когато конвертирате депозит в прехвърляне, парите ще бъдат депозирани в посочените целеви сметки от която и да е от вашите сметки за активи или пасиви.', + 'convert_expl_t_w' => 'Когато конвертирате трансфер в теглене, парите ще бъдат изразходвани за целевата сметка, която сте задали тук, вместо да бъдат прехвърлени.|Когато конвертирате трансфер в теглене, парите ще бъдат изразходвани за целевите сметки, които сте задали тук, вместо да бъдат прехвърлени.', + 'convert_expl_t_d' => 'Когато преобразувате прехвърляне в депозит, парите ще бъдат депозирани в целевата сметка, която виждате тук, вместо да бъдат прехвърлени.|Когато конвертирате прехвърляне в депозит, парите ще бъдат внесени в целевите сметки, които виждате тук, вместо да бъде прехвърлени в тях.', + 'convert_select_sources' => 'За да завършите преобразуването, моля задайте нова сметка източник по-долу.|За да завършите преобразуването, моля задайте новите сметки източници по-долу.', + 'convert_select_destinations' => 'За да завършите преобразуването, моля изберете новата целева сметка по-долу.|За да завършите преобразуването, моля изберете новите целеви сметки по-долу.', + 'converted_to_Withdrawal' => 'Транзакцията беше преобразувана в теглене', + 'converted_to_Deposit' => 'Транзакцията беше преобразувана в депозит', + 'converted_to_Transfer' => 'Транзакцията беше преобразувана в прехвърляне', + 'invalid_convert_selection' => 'Избраната от Вас сметка вече се използва в тази транзакция или не съществува.', + 'source_or_dest_invalid' => 'Не могат да се намерят правилните данни за транзакцията. Преобразуването не е възможно.', + 'convert_to_withdrawal' => 'Преобразуване в теглене', + 'convert_to_deposit' => 'Преобразуване в депозит', + 'convert_to_transfer' => 'Преобразуване в прехвърляне', // create new stuff: - 'create_new_withdrawal' => 'Създай ново теглене', - 'create_new_deposit' => 'Създай нов депозит', - 'create_new_transfer' => 'Създай ново прехвърляне', - 'create_new_asset' => 'Създай нова сметка за активи', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Създай нова сметка за разходи', - 'create_new_revenue' => 'Създай нова сметка за приходи', - 'create_new_piggy_bank' => 'Създай нова касичка', - 'create_new_bill' => 'Създай нова сметка', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Създай ново теглене', + 'create_new_deposit' => 'Създай нов депозит', + 'create_new_transfer' => 'Създай ново прехвърляне', + 'create_new_asset' => 'Създай нова сметка за активи', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Създай нова сметка за разходи', + 'create_new_revenue' => 'Създай нова сметка за приходи', + 'create_new_piggy_bank' => 'Създай нова касичка', + 'create_new_bill' => 'Създай нова сметка', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Създай нова валута', - 'store_currency' => 'Запази нова валута', - 'update_currency' => 'Обнови нова валута', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Не може да се изтрие :name, защото все още се използва.', - 'cannot_delete_fallback_currency' => ':name е резервната валута на системата и не може да бъде изтрита.', - 'cannot_disable_currency_journals' => 'Не може да се деактивира :name, защото транзакции все още я използват.', - 'cannot_disable_currency_last_left' => 'Не може да се деактивира :name, защото това е последната активна валута.', - 'cannot_disable_currency_account_meta' => 'Не може да се деактивира :name, защото се използва в сметки за активи.', - 'cannot_disable_currency_bills' => 'Не може да се деактивира :name, защото се използва в сметки.', - 'cannot_disable_currency_recurring' => 'Не може да се деактивира :name, защото се използва в повтарящи се транзакции.', - 'cannot_disable_currency_available_budgets' => 'Не може да се деактивира :name, защото се използва в налични бюджети.', - 'cannot_disable_currency_budget_limits' => 'Не може да се деактивира :name, защото се използва в лимити по бюджети.', - 'cannot_disable_currency_current_default' => 'Не може да се деактивира :name, защото е текущата валута по подразбиране.', - 'cannot_disable_currency_system_fallback' => 'Не може да се деактивира :name, защото е валута по подразбиране за системата.', - 'disable_EUR_side_effects' => 'Еврото е аварийната резервна валутата на системата. Деактивирането му може да има нежелани странични ефекти и може да анулира вашата гаранция.', - 'deleted_currency' => 'Валута :name е изтрита', - 'created_currency' => 'Валута :name е създадена', - 'could_not_store_currency' => 'Новата валута не можа да се запази.', - 'updated_currency' => 'Валута :name е обновена', - 'ask_site_owner' => 'Моля помолете :owner да добави, премахне или редактира валути.', - 'currencies_intro' => 'Firefly III поддържа различни валути, които можете да зададете и активирате тук.', - 'make_default_currency' => 'Направи по подразбиране', - 'default_currency' => 'по подразбиране', - 'currency_is_disabled' => 'Изключено', - 'enable_currency' => 'Включено', - 'disable_currency' => 'Деактивиране', - 'currencies_default_disabled' => 'Повечето от тези валути са деактивирани по подразбиране. За да ги използвате, първо трябва да ги активирате.', - 'currency_is_now_enabled' => 'Валута ":name" беше активирана', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Валута ":name" беше деактивирана', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Създай нова валута', + 'store_currency' => 'Запази нова валута', + 'update_currency' => 'Обнови нова валута', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Не може да се изтрие :name, защото все още се използва.', + 'cannot_delete_fallback_currency' => ':name е резервната валута на системата и не може да бъде изтрита.', + 'cannot_disable_currency_journals' => 'Не може да се деактивира :name, защото транзакции все още я използват.', + 'cannot_disable_currency_last_left' => 'Не може да се деактивира :name, защото това е последната активна валута.', + 'cannot_disable_currency_account_meta' => 'Не може да се деактивира :name, защото се използва в сметки за активи.', + 'cannot_disable_currency_bills' => 'Не може да се деактивира :name, защото се използва в сметки.', + 'cannot_disable_currency_recurring' => 'Не може да се деактивира :name, защото се използва в повтарящи се транзакции.', + 'cannot_disable_currency_available_budgets' => 'Не може да се деактивира :name, защото се използва в налични бюджети.', + 'cannot_disable_currency_budget_limits' => 'Не може да се деактивира :name, защото се използва в лимити по бюджети.', + 'cannot_disable_currency_current_default' => 'Не може да се деактивира :name, защото е текущата валута по подразбиране.', + 'cannot_disable_currency_system_fallback' => 'Не може да се деактивира :name, защото е валута по подразбиране за системата.', + 'disable_EUR_side_effects' => 'Еврото е аварийната резервна валутата на системата. Деактивирането му може да има нежелани странични ефекти и може да анулира вашата гаранция.', + 'deleted_currency' => 'Валута :name е изтрита', + 'created_currency' => 'Валута :name е създадена', + 'could_not_store_currency' => 'Новата валута не можа да се запази.', + 'updated_currency' => 'Валута :name е обновена', + 'ask_site_owner' => 'Моля помолете :owner да добави, премахне или редактира валути.', + 'currencies_intro' => 'Firefly III поддържа различни валути, които можете да зададете и активирате тук.', + 'make_default_currency' => 'Направи по подразбиране', + 'default_currency' => 'по подразбиране', + 'currency_is_disabled' => 'Изключено', + 'enable_currency' => 'Включено', + 'disable_currency' => 'Деактивиране', + 'currencies_default_disabled' => 'Повечето от тези валути са деактивирани по подразбиране. За да ги използвате, първо трябва да ги активирате.', + 'currency_is_now_enabled' => 'Валута ":name" беше активирана', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Валута ":name" беше деактивирана', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Задължителни полета', - 'optionalFields' => 'Незадължителни полета', - 'options' => 'Настройки', + 'mandatoryFields' => 'Задължителни полета', + 'optionalFields' => 'Незадължителни полета', + 'options' => 'Настройки', // budgets: - 'daily_budgets' => 'Дневни бюджети', - 'weekly_budgets' => 'Седмични бюджети', - 'monthly_budgets' => 'Месечни бюджети', - 'quarterly_budgets' => 'Тримесечни бюджети', - 'half_year_budgets' => 'Шестмесечни бюджети', - 'yearly_budgets' => 'Годишни бюджети', - 'other_budgets' => 'Времево персонализирани бюджети', - 'budget_limit_not_in_range' => 'Тази сума се отнася за периода от :start до :end:', - 'total_available_budget' => 'Общ наличен бюджет (между :start и :end)', - 'total_available_budget_in_currency' => 'Общ наличен бюджет в :currency', - 'see_below' => 'виж по-долу', - 'create_new_budget' => 'Създай нов бюджет', - 'store_new_budget' => 'Запази новия бюджет', - 'stored_new_budget' => 'Новия бюджет ":name" е запазен', - 'available_between' => 'Разполагаеми между :start и :end', - 'transactionsWithoutBudget' => 'Разходи без бюджет', - 'transactions_no_budget' => 'Разходи без бюджет между :start и :end', - 'spent_between' => 'Вече похарчени между :start и :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Задайте наличната сума', - 'update_available_amount' => 'Обновете наличната сума', - 'ab_basic_modal_explain' => 'Използвайте тази форма, за да посочите колко очаквате да можете да бюджетирате (общо, във :currency) за посочения период.', - 'createBudget' => 'Нов бюджет', - 'invalid_currency' => 'Това е невалидна валута', - 'invalid_amount' => 'Моля въведете сума', - 'set_ab' => 'Наличната сума на бюджета бе зададена', - 'updated_ab' => 'Наличната сума на бюджета бе обновена', - 'deleted_ab' => 'Наличната сума на бюджета бе изтрита', - 'deleted_bl' => 'Бюджетната сума бе премахната', - 'alt_currency_ab_create' => 'Задайте наличния бюджет в друга валута', - 'bl_create_btn' => 'Задайте бюджет в друга валута', - 'inactiveBudgets' => 'Неактивни бюджети', - 'without_budget_between' => 'Транзакции без бюджет между :start и :end', - 'delete_budget' => 'Изтрий бюджет ":name"', - 'deleted_budget' => 'Бюджет ":name" бе изтрит', - 'edit_budget' => 'Редактирай бюджет ":name"', - 'updated_budget' => 'Бюджет ":name" бе обновен', - 'update_amount' => 'Обнови сумата', - 'update_budget' => 'Обнови бюджет', - 'update_budget_amount_range' => 'Обнови (очакваната) налична сума между :start и :end', - 'set_budget_limit_title' => 'Задайте сума за бюджет :budget между :start и :end', - 'set_budget_limit' => 'Задайте сума за бюджет', - 'budget_period_navigator' => 'Указател за периода', - 'info_on_available_amount' => 'Какво имам на разположение?', - 'available_amount_indication' => 'Използвайте тези суми, за да получите насока какъв може да бъде общият ви бюджет.', - 'suggested' => 'Предложен', - 'average_between' => 'Средно между :start и :end', - 'transferred_in' => 'Прехвърлени (към)', - 'transferred_away' => 'Прехвърлени (от)', - 'auto_budget_none' => 'Няма автоматичен бюджет', - 'auto_budget_reset' => 'Задайте фиксирана сума за всеки период', - 'auto_budget_rollover' => 'Добавете сума за всеки период', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'На ден', - 'auto_budget_period_weekly' => 'На седмица', - 'auto_budget_period_monthly' => 'Месечно', - 'auto_budget_period_quarterly' => 'Тримесечно', - 'auto_budget_period_half_year' => 'На полугодие', - 'auto_budget_period_yearly' => 'Годишно', - 'auto_budget_help' => 'Можете да прочетете повече за тази функция в помощта. Кликнете върху иконата (?) горе вдясно.', - 'auto_budget_reset_icon' => 'Този бюджет ще бъде зададен периодично', - 'auto_budget_rollover_icon' => 'Размерът на бюджета ще се увеличава периодично', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Премахнете сумата на бюджета в :currency', + 'daily_budgets' => 'Дневни бюджети', + 'weekly_budgets' => 'Седмични бюджети', + 'monthly_budgets' => 'Месечни бюджети', + 'quarterly_budgets' => 'Тримесечни бюджети', + 'half_year_budgets' => 'Шестмесечни бюджети', + 'yearly_budgets' => 'Годишни бюджети', + 'other_budgets' => 'Времево персонализирани бюджети', + 'budget_limit_not_in_range' => 'Тази сума се отнася за периода от :start до :end:', + 'total_available_budget' => 'Общ наличен бюджет (между :start и :end)', + 'total_available_budget_in_currency' => 'Общ наличен бюджет в :currency', + 'see_below' => 'виж по-долу', + 'create_new_budget' => 'Създай нов бюджет', + 'store_new_budget' => 'Запази новия бюджет', + 'stored_new_budget' => 'Новия бюджет ":name" е запазен', + 'available_between' => 'Разполагаеми между :start и :end', + 'transactionsWithoutBudget' => 'Разходи без бюджет', + 'transactions_no_budget' => 'Разходи без бюджет между :start и :end', + 'spent_between' => 'Вече похарчени между :start и :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Задайте наличната сума', + 'update_available_amount' => 'Обновете наличната сума', + 'ab_basic_modal_explain' => 'Използвайте тази форма, за да посочите колко очаквате да можете да бюджетирате (общо, във :currency) за посочения период.', + 'createBudget' => 'Нов бюджет', + 'invalid_currency' => 'Това е невалидна валута', + 'invalid_amount' => 'Моля въведете сума', + 'set_ab' => 'Наличната сума на бюджета бе зададена', + 'updated_ab' => 'Наличната сума на бюджета бе обновена', + 'deleted_ab' => 'Наличната сума на бюджета бе изтрита', + 'deleted_bl' => 'Бюджетната сума бе премахната', + 'alt_currency_ab_create' => 'Задайте наличния бюджет в друга валута', + 'bl_create_btn' => 'Задайте бюджет в друга валута', + 'inactiveBudgets' => 'Неактивни бюджети', + 'without_budget_between' => 'Транзакции без бюджет между :start и :end', + 'delete_budget' => 'Изтрий бюджет ":name"', + 'deleted_budget' => 'Бюджет ":name" бе изтрит', + 'edit_budget' => 'Редактирай бюджет ":name"', + 'updated_budget' => 'Бюджет ":name" бе обновен', + 'update_amount' => 'Обнови сумата', + 'update_budget' => 'Обнови бюджет', + 'update_budget_amount_range' => 'Обнови (очакваната) налична сума между :start и :end', + 'set_budget_limit_title' => 'Задайте сума за бюджет :budget между :start и :end', + 'set_budget_limit' => 'Задайте сума за бюджет', + 'budget_period_navigator' => 'Указател за периода', + 'info_on_available_amount' => 'Какво имам на разположение?', + 'available_amount_indication' => 'Използвайте тези суми, за да получите насока какъв може да бъде общият ви бюджет.', + 'suggested' => 'Предложен', + 'average_between' => 'Средно между :start и :end', + 'transferred_in' => 'Прехвърлени (към)', + 'transferred_away' => 'Прехвърлени (от)', + 'auto_budget_none' => 'Няма автоматичен бюджет', + 'auto_budget_reset' => 'Задайте фиксирана сума за всеки период', + 'auto_budget_rollover' => 'Добавете сума за всеки период', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'На ден', + 'auto_budget_period_weekly' => 'На седмица', + 'auto_budget_period_monthly' => 'Месечно', + 'auto_budget_period_quarterly' => 'Тримесечно', + 'auto_budget_period_half_year' => 'На полугодие', + 'auto_budget_period_yearly' => 'Годишно', + 'auto_budget_help' => 'Можете да прочетете повече за тази функция в помощта. Кликнете върху иконата (?) горе вдясно.', + 'auto_budget_reset_icon' => 'Този бюджет ще бъде зададен периодично', + 'auto_budget_rollover_icon' => 'Размерът на бюджета ще се увеличава периодично', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Премахнете сумата на бюджета в :currency', // bills: - 'subscription' => 'Suscripción', - 'not_expected_period' => 'Не се очаква този период', - 'subscriptions_in_group' => 'Suscripciones en el grupo "%{title}"', - 'subscr_expected_x_times' => 'Se debe pagar %{amount} %{times} veces este periodo', - 'not_or_not_yet' => '(Все още) не', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Сметката "търси" транзакции между :low и :high.', - 'running_again_loss' => 'По-рано свързаните транзакции с тази сметка могат да загубят връзката си, ако те (вече не) съвпадат с правилото (правилата).', - 'bill_related_rules' => 'Правила, свързани с тази сметка', - 'repeats' => 'Повторения', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Свързани транзакции', - 'auto_match_on' => 'Автоматично свързани от Firefly III', - 'auto_match_off' => 'Не автоматично свързани от Firefly III', - 'next_expected_match' => 'Следващо очаквано съвпадение', - 'delete_bill' => 'Изтрий сметка ":name"', - 'deleted_bill' => 'Сметка ":name" бе изтрита', - 'edit_bill' => 'Редактирай сметка ":name"', - 'more' => 'Още', - 'rescan_old' => 'Изпълнете отново правилата за всички транзакции', - 'update_bill' => 'Редактирай сметка', - 'updated_bill' => 'Сметка ":name" бе обновена', - 'store_new_bill' => 'Запаметете нова сметка', - 'stored_new_bill' => 'Новата сметка ":name" бе запазена', - 'cannot_scan_inactive_bill' => 'Неактивните сметки не могат да бъдат сканирани.', - 'rescanned_bill' => 'Преразгледахме всичко и свързахме :count транзакция със сметката.|Преразгледахме всичко и свързахме :count транзакциите със сметката.', - 'average_bill_amount_year' => 'Средна сума на сметката (:year)', - 'average_bill_amount_overall' => 'Средна сума на сметката (общо)', - 'bill_is_active' => 'Сметката е активна', - 'bill_expected_between' => 'Очаквано между :start и :end', - 'bill_will_automatch' => 'Сметката автоматично ще бъде свързана със съответстващи транзакции', - 'skips_over' => 'прескача', - 'bill_store_error' => 'Възникна неочаквана грешка при записа на новата ви сметка. Моля проверете лог файловете', - 'list_inactive_rule' => 'неактивно правило', - 'bill_edit_rules' => 'Firefly III ще се опита да редактира и правилото, свързано с тази сметка. Ако сами сте редактирали това правило, Firefly III няма да промени нищо.|Firefly III също ще се опита да редактира и :count правила, свързани с тази сметка. Ако сами сте редактирали тези правила, Firefly III няма да промени нищо.', - 'bill_expected_date' => 'Очаквано :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => 'Importe (Previsto)', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Повтаря се седмично', - 'bill_repeats_monthly' => 'Повтаря се месечно', - 'bill_repeats_quarterly' => 'Повтаря се тримесечно', - 'bill_repeats_half-year' => 'Повтаря се на половин година', - 'bill_repeats_yearly' => 'Повтаря се годишно', - 'bill_repeats_weekly_other' => 'Повтаря се през седмица', - 'bill_repeats_monthly_other' => 'Повтаря се през месец', - 'bill_repeats_quarterly_other' => 'Повтаря се през тримесечие', - 'bill_repeats_half-year_other' => 'Повтаря се годишно', - 'bill_repeats_yearly_other' => 'Повтаря се през година', - 'bill_repeats_weekly_skip' => 'Повтаря се през {skip} седмици', - 'bill_repeats_monthly_skip' => 'Повтаря се през {skip} месеца', - 'bill_repeats_quarterly_skip' => 'Повтаря се през {skip} тримесечия', - 'bill_repeats_half-year_skip' => 'Повтаря се през {skip} половин години', - 'bill_repeats_yearly_skip' => 'Повтаря се през {skip} години', - 'subscriptions' => 'Абонаменти', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Завинаги', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Suscripción', + 'not_expected_period' => 'Не се очаква този период', + 'subscriptions_in_group' => 'Suscripciones en el grupo "%{title}"', + 'subscr_expected_x_times' => 'Se debe pagar %{amount} %{times} veces este periodo', + 'not_or_not_yet' => '(Все още) не', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Сметката "търси" транзакции между :low и :high.', + 'running_again_loss' => 'По-рано свързаните транзакции с тази сметка могат да загубят връзката си, ако те (вече не) съвпадат с правилото (правилата).', + 'bill_related_rules' => 'Правила, свързани с тази сметка', + 'repeats' => 'Повторения', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Свързани транзакции', + 'auto_match_on' => 'Автоматично свързани от Firefly III', + 'auto_match_off' => 'Не автоматично свързани от Firefly III', + 'next_expected_match' => 'Следващо очаквано съвпадение', + 'delete_bill' => 'Изтрий сметка ":name"', + 'deleted_bill' => 'Сметка ":name" бе изтрита', + 'edit_bill' => 'Редактирай сметка ":name"', + 'more' => 'Още', + 'rescan_old' => 'Изпълнете отново правилата за всички транзакции', + 'update_bill' => 'Редактирай сметка', + 'updated_bill' => 'Сметка ":name" бе обновена', + 'store_new_bill' => 'Запаметете нова сметка', + 'stored_new_bill' => 'Новата сметка ":name" бе запазена', + 'cannot_scan_inactive_bill' => 'Неактивните сметки не могат да бъдат сканирани.', + 'rescanned_bill' => 'Преразгледахме всичко и свързахме :count транзакция със сметката.|Преразгледахме всичко и свързахме :count транзакциите със сметката.', + 'average_bill_amount_year' => 'Средна сума на сметката (:year)', + 'average_bill_amount_overall' => 'Средна сума на сметката (общо)', + 'bill_is_active' => 'Сметката е активна', + 'bill_expected_between' => 'Очаквано между :start и :end', + 'bill_will_automatch' => 'Сметката автоматично ще бъде свързана със съответстващи транзакции', + 'skips_over' => 'прескача', + 'bill_store_error' => 'Възникна неочаквана грешка при записа на новата ви сметка. Моля проверете лог файловете', + 'list_inactive_rule' => 'неактивно правило', + 'bill_edit_rules' => 'Firefly III ще се опита да редактира и правилото, свързано с тази сметка. Ако сами сте редактирали това правило, Firefly III няма да промени нищо.|Firefly III също ще се опита да редактира и :count правила, свързани с тази сметка. Ако сами сте редактирали тези правила, Firefly III няма да промени нищо.', + 'bill_expected_date' => 'Очаквано :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => 'Importe (Previsto)', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Повтаря се седмично', + 'bill_repeats_monthly' => 'Повтаря се месечно', + 'bill_repeats_quarterly' => 'Повтаря се тримесечно', + 'bill_repeats_half-year' => 'Повтаря се на половин година', + 'bill_repeats_yearly' => 'Повтаря се годишно', + 'bill_repeats_weekly_other' => 'Повтаря се през седмица', + 'bill_repeats_monthly_other' => 'Повтаря се през месец', + 'bill_repeats_quarterly_other' => 'Повтаря се през тримесечие', + 'bill_repeats_half-year_other' => 'Повтаря се годишно', + 'bill_repeats_yearly_other' => 'Повтаря се през година', + 'bill_repeats_weekly_skip' => 'Повтаря се през {skip} седмици', + 'bill_repeats_monthly_skip' => 'Повтаря се през {skip} месеца', + 'bill_repeats_quarterly_skip' => 'Повтаря се през {skip} тримесечия', + 'bill_repeats_half-year_skip' => 'Повтаря се през {skip} половин години', + 'bill_repeats_yearly_skip' => 'Повтаря се през {skip} години', + 'subscriptions' => 'Абонаменти', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Завинаги', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Имате :count неактивна (архивирана) сметка, която можете да видите на тази отделна страница.|Имате :count неактивни (архивирани) сметки, които можете да видите на тази отделна страница.', - 'all_accounts_inactive' => 'Това са вашите неактивни сметки.', - 'active_account_link' => 'Тази връзка ви връща към активните ви сметки.', - 'account_missing_transaction' => 'Сметка #:id (":name") не може да се вижда директно, но в Firefly липсва информация за пренасочване.', - 'cc_monthly_payment_date_help' => 'Изберете която и да е година и месец, те ще бъдат игнорирани. От значение е само денят от месеца.', - 'details_for_asset' => 'Подробности за сметката за активи ":name"', - 'details_for_expense' => 'Подробности за сметката за разходи ":name"', - 'details_for_revenue' => 'Подробности за сметката за приходи ":name"', - 'details_for_cash' => 'Подробности за касова сметка ":name"', - 'store_new_asset_account' => 'Запамети нова сметка за активи', - 'store_new_expense_account' => 'Запамети нова сметка за разходи', - 'store_new_revenue_account' => 'Запамети нова сметка за приходи', - 'edit_asset_account' => 'Редактирай сметка за активи ":name"', - 'edit_expense_account' => 'Редактирай сметка за разходи ":name"', - 'edit_revenue_account' => 'Редактирай сметка за приходи ":name"', - 'delete_asset_account' => 'Изтрий сметка за активи ":name"', - 'delete_expense_account' => 'Изтрий сметка за разходи ":name"', - 'delete_revenue_account' => 'Изтрий сметка за приходи ":name"', - 'delete_liabilities_account' => 'Изтрий задължение ":name"', - 'asset_deleted' => 'Сметка за активи ":name" е успешно изтрита', - 'account_deleted' => 'Сметка ":name" е успешно изтрита', - 'expense_deleted' => 'Сметка за разходи ":name" е успешно изтрита', - 'revenue_deleted' => 'Сметка за приходи ":name" е успешно изтрита', - 'update_asset_account' => 'Редактирай сметка за активи', - 'update_undefined_account' => 'Актуализиране на сметката', - 'update_liabilities_account' => 'Редактирай задължение', - 'update_expense_account' => 'Редактирай сметка за разходи', - 'update_revenue_account' => 'Редактирай сметка за приходи', - 'make_new_asset_account' => 'Създай нова сметка за активи', - 'make_new_expense_account' => 'Създай нова сметка за разходи', - 'make_new_revenue_account' => 'Създай нова сметка за приходи', - 'make_new_liabilities_account' => 'Създай ново задължение', - 'asset_accounts' => 'Сметки за активи', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Сметки за активи (деактивирани)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Сметки за разходи', - 'expense_accounts_inactive' => 'Сметки за разходи (деактивирани)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Сметки за приходи', - 'revenue_accounts_inactive' => 'Сметки за приходи (деактивирани)', - 'cash_accounts' => 'Касови сметки', - 'Cash account' => 'Касова сметка', - 'liabilities_accounts' => 'Задължения', - 'liabilities_accounts_inactive' => 'Задължения (деактивирани)', - 'reconcile_account' => 'Съгласувай сметка ":account"', - 'overview_of_reconcile_modal' => 'Преглед на съгласуването', - 'delete_reconciliation' => 'Изтрий съгласуването', - 'update_reconciliation' => 'Обнови съгласуването', - 'amount_cannot_be_zero' => 'Сумата не може да е нула', - 'end_of_reconcile_period' => 'Край на периода на съгласуване: :period', - 'start_of_reconcile_period' => 'Начало на периода на съгласуване: :period', - 'start_balance' => 'Начално салдо', - 'end_balance' => 'Крайно салдо', - 'update_balance_dates_instruction' => 'Съпоставете сумите и датите по-горе с банковото си извлечение и натиснете „Започнете съгласуване“', - 'select_transactions_instruction' => 'Изберете транзакциите, които се виждат в банковото ви извлечение.', - 'select_range_and_balance' => 'Първо проверете периода от време и балансите. След това натиснете "Започнете съгласуване"', - 'date_change_instruction' => 'Ако промените периода от време сега, целия напредък ще бъде загубен.', - 'update_selection' => 'Обновяване на избраните', - 'store_reconcile' => 'Запази съгласуването', - 'reconciliation_transaction' => 'Транзакция за съгласуване', - 'Reconciliation' => 'Съгласуване', - 'reconciliation' => 'Съгласуване', - 'reconcile_options' => 'Настройки за съгласуване', - 'reconcile_range' => 'Период за съгласуване', - 'start_reconcile' => 'Започнете съгласуване', - 'cash_account_type' => 'Касова сметка (В брой)', - 'cash' => 'в брой', - 'cant_find_redirect_account' => 'Firefly III се опита да ви пренасочи, но не успя. Съжалявам за това. Обратно към началото.', - 'account_type' => 'Вид на сметка', - 'save_transactions_by_moving' => 'Запазете тази транзакция, като я преместите в друг акаунт:|Запазете тези транзакции, като ги преместите в друг акаунт:', - 'save_transactions_by_moving_js' => 'Няма транзакции|Запазете тази транзакция, като я преместите в друг акаунт. |Запазете тези транзакции, като ги преместите в друг акаунт.', - 'stored_new_account' => 'Новата сметка ":name" бе запаметена!', - 'stored_new_account_js' => 'Нова сметка "{name}" запазена!', - 'updated_account' => 'Сметка ":name" бе обновена', - 'updated_account_js' => 'Актуализирана сметка "{title}".', - 'credit_card_options' => 'Настройки за кредитни карти', - 'no_transactions_account' => 'Няма транзакции (в този период) за сметка за активи ":name".', - 'no_transactions_period' => 'Няма транзакции (в този период).', - 'no_data_for_chart' => 'Няма достатъчно информация (все още) за генериране на тази графика.', - 'select_at_least_one_account' => 'Моля изберете поне една сметка за активи', - 'select_at_least_one_category' => 'Моля изберете поне една категория', - 'select_at_least_one_budget' => 'Моля изберете поне един бюджет', - 'select_at_least_one_tag' => 'Моля изберете поне един етикет', - 'select_at_least_one_expense' => 'Моля изберете поне една комбинация от сметки за разходи / приходи. Ако нямате такива (списъкът е празен), този отчет не е наличен.', - 'account_default_currency' => 'Това ще бъде валутата по подразбиране за тази сметка.', - 'reconcile_has_more' => 'Вашата книга в Firefly III има повече пари, отколкото вашата банка твърди, че трябва да имате. Има няколко варианта. Моля изберете какво да правите. След това натиснете „Потвърждаване на съгласуването“.', - 'reconcile_has_less' => 'Вашата книга в Firefly III има по-малко пари, отколкото вашата банка твърди, че трябва да имате. Има няколко варианта. Моля изберете какво да правите. След това натиснете „Потвърждаване на съгласуването“.', - 'reconcile_is_equal' => 'Вашата книга в Firefly III и вашите банкови извлечения съвпадат. Няма какво да се прави. Моля натиснете „Потвърждаване на съгласуването“, за да потвърдите вашите данни.', - 'create_pos_reconcile_transaction' => 'Изчистете избраните транзакции и създайте корекция, като добавите :amount към тази сметка за активи.', - 'create_neg_reconcile_transaction' => 'Изчистете избраните транзакции и създайте корекция, като извадите :amount от тази сметка за активи.', - 'reconcile_do_nothing' => 'Изчистете избраните транзакции, но не коригирайте.', - 'reconcile_go_back' => 'Винаги можете да редактирате или изтриете корекцията по-късно.', - 'must_be_asset_account' => 'Може да съгласувате само сметки за активи', - 'reconciliation_stored' => 'Съгласуването е запаметено', - 'reconciliation_error' => 'Поради грешка транзакциите бяха маркирани като съгласувани, но корекцията не е запазена: :error.', - 'reconciliation_transaction_title' => 'Съгласуване (:from до :to)', - 'sum_of_reconciliation' => 'Сума на съгласуването', - 'reconcile_this_account' => 'Съгласувай тази сметка', - 'reconcile' => 'Съгласувай', - 'show' => 'Покажи', - 'confirm_reconciliation' => 'Потвърждаване на съгласуването', - 'submitted_start_balance' => 'Въведено начално салдо', - 'selected_transactions' => 'Избрани транзакции (:count)', - 'already_cleared_transactions' => 'Вече приключени транзакции (:count)', - 'submitted_end_balance' => 'Въведено крайно салдо', - 'initial_balance_description' => 'Първоначално салдо за ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'неизвестна', - 'interest_calc_daily' => 'На ден', - 'interest_calc_monthly' => 'На месец', - 'interest_calc_yearly' => 'Годишно', - 'interest_calc_weekly' => 'Седмично', - 'interest_calc_half-year' => 'За половин година', - 'interest_calc_quarterly' => 'За тримесечие', - 'initial_balance_account' => 'Първоначално салдо на сметка ":account"', - 'list_options' => 'Списък на опциите', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Имате :count неактивна (архивирана) сметка, която можете да видите на тази отделна страница.|Имате :count неактивни (архивирани) сметки, които можете да видите на тази отделна страница.', + 'all_accounts_inactive' => 'Това са вашите неактивни сметки.', + 'active_account_link' => 'Тази връзка ви връща към активните ви сметки.', + 'account_missing_transaction' => 'Сметка #:id (":name") не може да се вижда директно, но в Firefly липсва информация за пренасочване.', + 'cc_monthly_payment_date_help' => 'Изберете която и да е година и месец, те ще бъдат игнорирани. От значение е само денят от месеца.', + 'details_for_asset' => 'Подробности за сметката за активи ":name"', + 'details_for_expense' => 'Подробности за сметката за разходи ":name"', + 'details_for_revenue' => 'Подробности за сметката за приходи ":name"', + 'details_for_cash' => 'Подробности за касова сметка ":name"', + 'store_new_asset_account' => 'Запамети нова сметка за активи', + 'store_new_expense_account' => 'Запамети нова сметка за разходи', + 'store_new_revenue_account' => 'Запамети нова сметка за приходи', + 'edit_asset_account' => 'Редактирай сметка за активи ":name"', + 'edit_expense_account' => 'Редактирай сметка за разходи ":name"', + 'edit_revenue_account' => 'Редактирай сметка за приходи ":name"', + 'delete_asset_account' => 'Изтрий сметка за активи ":name"', + 'delete_expense_account' => 'Изтрий сметка за разходи ":name"', + 'delete_revenue_account' => 'Изтрий сметка за приходи ":name"', + 'delete_liabilities_account' => 'Изтрий задължение ":name"', + 'asset_deleted' => 'Сметка за активи ":name" е успешно изтрита', + 'account_deleted' => 'Сметка ":name" е успешно изтрита', + 'expense_deleted' => 'Сметка за разходи ":name" е успешно изтрита', + 'revenue_deleted' => 'Сметка за приходи ":name" е успешно изтрита', + 'update_asset_account' => 'Редактирай сметка за активи', + 'update_undefined_account' => 'Актуализиране на сметката', + 'update_liabilities_account' => 'Редактирай задължение', + 'update_expense_account' => 'Редактирай сметка за разходи', + 'update_revenue_account' => 'Редактирай сметка за приходи', + 'make_new_asset_account' => 'Създай нова сметка за активи', + 'make_new_expense_account' => 'Създай нова сметка за разходи', + 'make_new_revenue_account' => 'Създай нова сметка за приходи', + 'make_new_liabilities_account' => 'Създай ново задължение', + 'asset_accounts' => 'Сметки за активи', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Сметки за активи (деактивирани)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Сметки за разходи', + 'expense_accounts_inactive' => 'Сметки за разходи (деактивирани)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Сметки за приходи', + 'revenue_accounts_inactive' => 'Сметки за приходи (деактивирани)', + 'cash_accounts' => 'Касови сметки', + 'Cash account' => 'Касова сметка', + 'liabilities_accounts' => 'Задължения', + 'liabilities_accounts_inactive' => 'Задължения (деактивирани)', + 'reconcile_account' => 'Съгласувай сметка ":account"', + 'overview_of_reconcile_modal' => 'Преглед на съгласуването', + 'delete_reconciliation' => 'Изтрий съгласуването', + 'update_reconciliation' => 'Обнови съгласуването', + 'amount_cannot_be_zero' => 'Сумата не може да е нула', + 'end_of_reconcile_period' => 'Край на периода на съгласуване: :period', + 'start_of_reconcile_period' => 'Начало на периода на съгласуване: :period', + 'start_balance' => 'Начално салдо', + 'end_balance' => 'Крайно салдо', + 'update_balance_dates_instruction' => 'Съпоставете сумите и датите по-горе с банковото си извлечение и натиснете „Започнете съгласуване“', + 'select_transactions_instruction' => 'Изберете транзакциите, които се виждат в банковото ви извлечение.', + 'select_range_and_balance' => 'Първо проверете периода от време и балансите. След това натиснете "Започнете съгласуване"', + 'date_change_instruction' => 'Ако промените периода от време сега, целия напредък ще бъде загубен.', + 'update_selection' => 'Обновяване на избраните', + 'store_reconcile' => 'Запази съгласуването', + 'reconciliation_transaction' => 'Транзакция за съгласуване', + 'Reconciliation' => 'Съгласуване', + 'reconciliation' => 'Съгласуване', + 'reconcile_options' => 'Настройки за съгласуване', + 'reconcile_range' => 'Период за съгласуване', + 'start_reconcile' => 'Започнете съгласуване', + 'cash_account_type' => 'Касова сметка (В брой)', + 'cash' => 'в брой', + 'cant_find_redirect_account' => 'Firefly III се опита да ви пренасочи, но не успя. Съжалявам за това. Обратно към началото.', + 'account_type' => 'Вид на сметка', + 'save_transactions_by_moving' => 'Запазете тази транзакция, като я преместите в друг акаунт:|Запазете тези транзакции, като ги преместите в друг акаунт:', + 'save_transactions_by_moving_js' => 'Няма транзакции|Запазете тази транзакция, като я преместите в друг акаунт. |Запазете тези транзакции, като ги преместите в друг акаунт.', + 'stored_new_account' => 'Новата сметка ":name" бе запаметена!', + 'stored_new_account_js' => 'Нова сметка "{name}" запазена!', + 'updated_account' => 'Сметка ":name" бе обновена', + 'updated_account_js' => 'Актуализирана сметка "{title}".', + 'credit_card_options' => 'Настройки за кредитни карти', + 'no_transactions_account' => 'Няма транзакции (в този период) за сметка за активи ":name".', + 'no_transactions_period' => 'Няма транзакции (в този период).', + 'no_data_for_chart' => 'Няма достатъчно информация (все още) за генериране на тази графика.', + 'select_at_least_one_account' => 'Моля изберете поне една сметка за активи', + 'select_at_least_one_category' => 'Моля изберете поне една категория', + 'select_at_least_one_budget' => 'Моля изберете поне един бюджет', + 'select_at_least_one_tag' => 'Моля изберете поне един етикет', + 'select_at_least_one_expense' => 'Моля изберете поне една комбинация от сметки за разходи / приходи. Ако нямате такива (списъкът е празен), този отчет не е наличен.', + 'account_default_currency' => 'Това ще бъде валутата по подразбиране за тази сметка.', + 'reconcile_has_more' => 'Вашата книга в Firefly III има повече пари, отколкото вашата банка твърди, че трябва да имате. Има няколко варианта. Моля изберете какво да правите. След това натиснете „Потвърждаване на съгласуването“.', + 'reconcile_has_less' => 'Вашата книга в Firefly III има по-малко пари, отколкото вашата банка твърди, че трябва да имате. Има няколко варианта. Моля изберете какво да правите. След това натиснете „Потвърждаване на съгласуването“.', + 'reconcile_is_equal' => 'Вашата книга в Firefly III и вашите банкови извлечения съвпадат. Няма какво да се прави. Моля натиснете „Потвърждаване на съгласуването“, за да потвърдите вашите данни.', + 'create_pos_reconcile_transaction' => 'Изчистете избраните транзакции и създайте корекция, като добавите :amount към тази сметка за активи.', + 'create_neg_reconcile_transaction' => 'Изчистете избраните транзакции и създайте корекция, като извадите :amount от тази сметка за активи.', + 'reconcile_do_nothing' => 'Изчистете избраните транзакции, но не коригирайте.', + 'reconcile_go_back' => 'Винаги можете да редактирате или изтриете корекцията по-късно.', + 'must_be_asset_account' => 'Може да съгласувате само сметки за активи', + 'reconciliation_stored' => 'Съгласуването е запаметено', + 'reconciliation_error' => 'Поради грешка транзакциите бяха маркирани като съгласувани, но корекцията не е запазена: :error.', + 'reconciliation_transaction_title' => 'Съгласуване (:from до :to)', + 'sum_of_reconciliation' => 'Сума на съгласуването', + 'reconcile_this_account' => 'Съгласувай тази сметка', + 'reconcile' => 'Съгласувай', + 'show' => 'Покажи', + 'confirm_reconciliation' => 'Потвърждаване на съгласуването', + 'submitted_start_balance' => 'Въведено начално салдо', + 'selected_transactions' => 'Избрани транзакции (:count)', + 'already_cleared_transactions' => 'Вече приключени транзакции (:count)', + 'submitted_end_balance' => 'Въведено крайно салдо', + 'initial_balance_description' => 'Първоначално салдо за ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'неизвестна', + 'interest_calc_daily' => 'На ден', + 'interest_calc_monthly' => 'На месец', + 'interest_calc_yearly' => 'Годишно', + 'interest_calc_weekly' => 'Седмично', + 'interest_calc_half-year' => 'За половин година', + 'interest_calc_quarterly' => 'За тримесечие', + 'initial_balance_account' => 'Първоначално салдо на сметка ":account"', + 'list_options' => 'Списък на опциите', // categories: - 'new_category' => 'Нова категория', - 'create_new_category' => 'Създай нова категория', - 'without_category' => 'Без категория', - 'update_category' => 'Обновяване на категория', - 'updated_category' => 'Обновяване на категория ":name"', - 'categories' => 'Категории', - 'edit_category' => 'Обнови категория ":name"', - 'no_category' => '(без категория)', - 'unknown_category_plain' => 'No category', - 'category' => 'Категория', - 'delete_category' => 'Изтрий категория ":name"', - 'deleted_category' => 'Категория ":name" бе изтрита', - 'store_category' => 'Запази нова категория', - 'stored_category' => 'Новата категория ":name" бе запазена', - 'without_category_between' => 'Без категория между :start и :end', + 'new_category' => 'Нова категория', + 'create_new_category' => 'Създай нова категория', + 'without_category' => 'Без категория', + 'update_category' => 'Обновяване на категория', + 'updated_category' => 'Обновяване на категория ":name"', + 'categories' => 'Категории', + 'edit_category' => 'Обнови категория ":name"', + 'no_category' => '(без категория)', + 'unknown_category_plain' => 'No category', + 'category' => 'Категория', + 'delete_category' => 'Изтрий категория ":name"', + 'deleted_category' => 'Категория ":name" бе изтрита', + 'store_category' => 'Запази нова категория', + 'stored_category' => 'Новата категория ":name" бе запазена', + 'without_category_between' => 'Без категория между :start и :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Обнови тегленето', - 'update_deposit' => 'Обнови депозита', - 'update_transaction' => 'Обнови транзакцията', - 'update_transfer' => 'Обнови прехвърлянето', - 'updated_withdrawal' => 'Тегленето ":description" бе обновено', - 'updated_deposit' => 'Депозитът ":description" бе обновен', - 'updated_transfer' => 'Прехвърлянето ":description" бе обновено', - 'no_changes_withdrawal' => 'Теглене ":description" не беше променено.', - 'no_changes_deposit' => 'Депозит ":description" не беше променен.', - 'no_changes_transfer' => 'Прехвърляне ":description" не беше променено.', - 'delete_withdrawal' => 'Изтрий тегленето ":description"', - 'delete_deposit' => 'Изтрий депозита ":description"', - 'delete_transfer' => 'Изтрий прехвърлянето ":description"', - 'deleted_withdrawal' => 'Тегленето ":description" бе успешно изтрито', - 'deleted_deposit' => 'Депозитът ":description" бе успешно изтрит', - 'deleted_transfer' => 'Прехвърлянето ":description" бе успешно изтрито', - 'deleted_reconciliation' => 'Транзакцията за съгласуване ":description" бе успешно изтрита', - 'stored_journal' => 'Успешно създадена нова транзакция ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Новата ви транзакция бе успешно създадена', - 'updated_journal_no_descr' => 'Транзакция бе успешно обновена', - 'select_transactions' => 'Избери транзакции', - 'rule_group_select_transactions' => 'Прилагайте ":title" към транзакции', - 'rule_select_transactions' => 'Прилагайте ":title" към транзакции', - 'stop_selection' => 'Спрете да избирате транзакции', - 'reconcile_selected' => 'Съгласувай', - 'mass_delete_journals' => 'Изтрийте няколко транзакции', - 'mass_edit_journals' => 'Обновете няколко транзакции', - 'mass_bulk_journals' => 'Групова редакция на няколко транзакции', - 'mass_bulk_journals_explain' => 'Тази форма ви позволява да промените свойствата на транзакциите по-долу, в една бърза актуализация. Всички транзакции в таблицата ще се обновят, когато промените параметрите, които виждате тук.', - 'part_of_split' => 'Тази транзакция е част от разделена транзакция. Ако не сте избрали всички разделяния, може да завършите с промяна само на половината транзакция.', - 'bulk_set_new_values' => 'Използвайте полетата по-долу за да зададете нови стойности. Ако ги оставите празни, то всички ще станат празни. Също така имайте предвид, че ще бъде зададен бюджет само за тегленията.', - 'no_bulk_category' => 'Не обновявай категорията', - 'no_bulk_budget' => 'Не обновявай бюджета', - 'no_bulk_tags' => 'Не обновявай етикетите', - 'replace_with_these_tags' => 'Замести с тези етикети', - 'append_these_tags' => 'Допълни тези етикети', - 'mass_edit' => 'Редактирай избраното самостоятелно', - 'bulk_edit' => 'Редактирай избраното групово', - 'mass_delete' => 'Изтрий избраното', - 'cannot_edit_other_fields' => 'Не можете да редактирате групово други полета освен следните, защото няма място за показването им. Моля последвайте връзката и ги редактирайте едно по едно, ако трябва да редактирате тези полета.', - 'cannot_change_amount_reconciled' => 'Не можете да промените сумата на съгласуваните транзакции.', - 'no_budget' => '(без бюджет)', - 'no_bill' => '(няма сметка)', - 'account_per_budget' => 'Сметка по бюджет', - 'account_per_category' => 'Сметка по категория', - 'create_new_object' => 'Създай', - 'empty' => '(празно)', - 'all_other_budgets' => '(всички други бюджети)', - 'all_other_accounts' => '(всички други сметки)', - 'expense_per_source_account' => 'Разходи по разходна сметка', - 'expense_per_destination_account' => 'Разходи по приходна сметка', - 'income_per_destination_account' => 'Приходи по приходна сметка', - 'spent_in_specific_category' => 'Похарчени в категория ":category"', - 'earned_in_specific_category' => 'Получени в категория ":category"', - 'spent_in_specific_tag' => 'Похарчени с етикет ":tag"', - 'earned_in_specific_tag' => 'Получени с етикет ":tag"', - 'income_per_source_account' => 'Приходи по разходна сметка', - 'average_spending_per_destination' => 'Среден разход по приходна сметка', - 'average_spending_per_source' => 'Среден разход по разходна сметка', - 'average_earning_per_source' => 'Среден приход по разходна сметка', - 'average_earning_per_destination' => 'Среден приход по разходна сметка', - 'account_per_tag' => 'Сметка по етикет', - 'tag_report_expenses_listed_once' => 'Разходите и доходите никога не са посочени два пъти. Ако транзакцията има множество етикети, тя може да се показва само под един от нейните етикети. В този списък може да изглежда че липсват данни, но сумите ще бъдат правилни.', - 'double_report_expenses_charted_once' => 'Разходите и доходите никога не са посочени два пъти. Ако транзакцията има множество етикети, тя може да се показва само под един от нейните етикети. В тази графика може да изглежда че липсват данни, но сумите ще бъдат правилни.', - 'tag_report_chart_single_tag' => 'Тази графика се отнася за един етикет. Ако транзакция има множество етикети, това което виждате тук, може да бъде отразено и в графиките на други етикети.', - 'tag' => 'Етикет', - 'no_budget_squared' => '(без бюджет)', - 'perm-delete-many' => 'Изтриването на много елементи с едно действие може да бъде много разрушително. Моля бъдете внимателни. Възможно е да изтриете част от разделена транзакция на тази страница, така че внимавайте.', - 'mass_deleted_transactions_success' => 'Изтрита :count транзакция.|Изтрити :count транзакции.', - 'mass_edited_transactions_success' => 'Обновена :count транзакция.|Обновени :count транзакции.', - 'opt_group_' => '(без тип сметка)', - 'opt_group_no_account_type' => '(без тип сметка)', - 'opt_group_defaultAsset' => 'Сметки за активи по подразбиране', - 'opt_group_savingAsset' => 'Спестовни сметки', - 'opt_group_sharedAsset' => 'Сметки за споделени активи', - 'opt_group_ccAsset' => 'Кредитни карти', - 'opt_group_cashWalletAsset' => 'Парични портфейли', - 'opt_group_expense_account' => 'Сметки за разходи', - 'opt_group_revenue_account' => 'Сметки за приходи', - 'opt_group_l_Loan' => 'Задължение: Заем', - 'opt_group_cash_account' => 'Касова сметка', - 'opt_group_l_Debt' => 'Задължение: Дълг', - 'opt_group_l_Mortgage' => 'Задължение: Ипотека', - 'opt_group_l_Credit card' => 'Задължение: Кредитна карта', - 'notes' => 'Бележки', - 'unknown_journal_error' => 'Транзакцията не можа да се запази. Моля проверете лог файловете.', - 'attachment_not_found' => 'Този прикачен файл не можа да бъде намерен.', - 'journal_link_bill' => 'Тази транзакция е свързана със сметка :name . За да изтриете връзката, премахнете отметката от квадратчето. Използвайте правила, за да я свържете с друга сметка.', - 'transaction_stored_link' => 'Транзакция #{ID}("{title}") беше записана.', - 'transaction_new_stored_link' => 'Транзакция #{ID} беше записана.', - 'transaction_updated_link' => 'Транзакция #{ID} ("{title}") беше обновена.', - 'transaction_updated_no_changes' => 'Транзакция #{ID} ("{title}") не е получила промени.', - 'first_split_decides' => 'Първия раздел определя стойността на това поле', - 'first_split_overrules_source' => 'Първия раздел може да отмени разходната сметка', - 'first_split_overrules_destination' => 'Първия раздел може да отмени приходната сметка', - 'spent_x_of_y' => 'Похарчено е {amount} от {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Обнови тегленето', + 'update_deposit' => 'Обнови депозита', + 'update_transaction' => 'Обнови транзакцията', + 'update_transfer' => 'Обнови прехвърлянето', + 'updated_withdrawal' => 'Тегленето ":description" бе обновено', + 'updated_deposit' => 'Депозитът ":description" бе обновен', + 'updated_transfer' => 'Прехвърлянето ":description" бе обновено', + 'no_changes_withdrawal' => 'Теглене ":description" не беше променено.', + 'no_changes_deposit' => 'Депозит ":description" не беше променен.', + 'no_changes_transfer' => 'Прехвърляне ":description" не беше променено.', + 'delete_withdrawal' => 'Изтрий тегленето ":description"', + 'delete_deposit' => 'Изтрий депозита ":description"', + 'delete_transfer' => 'Изтрий прехвърлянето ":description"', + 'deleted_withdrawal' => 'Тегленето ":description" бе успешно изтрито', + 'deleted_deposit' => 'Депозитът ":description" бе успешно изтрит', + 'deleted_transfer' => 'Прехвърлянето ":description" бе успешно изтрито', + 'deleted_reconciliation' => 'Транзакцията за съгласуване ":description" бе успешно изтрита', + 'stored_journal' => 'Успешно създадена нова транзакция ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Новата ви транзакция бе успешно създадена', + 'updated_journal_no_descr' => 'Транзакция бе успешно обновена', + 'select_transactions' => 'Избери транзакции', + 'rule_group_select_transactions' => 'Прилагайте ":title" към транзакции', + 'rule_select_transactions' => 'Прилагайте ":title" към транзакции', + 'stop_selection' => 'Спрете да избирате транзакции', + 'reconcile_selected' => 'Съгласувай', + 'mass_delete_journals' => 'Изтрийте няколко транзакции', + 'mass_edit_journals' => 'Обновете няколко транзакции', + 'mass_bulk_journals' => 'Групова редакция на няколко транзакции', + 'mass_bulk_journals_explain' => 'Тази форма ви позволява да промените свойствата на транзакциите по-долу, в една бърза актуализация. Всички транзакции в таблицата ще се обновят, когато промените параметрите, които виждате тук.', + 'part_of_split' => 'Тази транзакция е част от разделена транзакция. Ако не сте избрали всички разделяния, може да завършите с промяна само на половината транзакция.', + 'bulk_set_new_values' => 'Използвайте полетата по-долу за да зададете нови стойности. Ако ги оставите празни, то всички ще станат празни. Също така имайте предвид, че ще бъде зададен бюджет само за тегленията.', + 'no_bulk_category' => 'Не обновявай категорията', + 'no_bulk_budget' => 'Не обновявай бюджета', + 'no_bulk_tags' => 'Не обновявай етикетите', + 'replace_with_these_tags' => 'Замести с тези етикети', + 'append_these_tags' => 'Допълни тези етикети', + 'mass_edit' => 'Редактирай избраното самостоятелно', + 'bulk_edit' => 'Редактирай избраното групово', + 'mass_delete' => 'Изтрий избраното', + 'cannot_edit_other_fields' => 'Не можете да редактирате групово други полета освен следните, защото няма място за показването им. Моля последвайте връзката и ги редактирайте едно по едно, ако трябва да редактирате тези полета.', + 'cannot_change_amount_reconciled' => 'Не можете да промените сумата на съгласуваните транзакции.', + 'no_budget' => '(без бюджет)', + 'no_bill' => '(няма сметка)', + 'account_per_budget' => 'Сметка по бюджет', + 'account_per_category' => 'Сметка по категория', + 'create_new_object' => 'Създай', + 'empty' => '(празно)', + 'all_other_budgets' => '(всички други бюджети)', + 'all_other_accounts' => '(всички други сметки)', + 'expense_per_source_account' => 'Разходи по разходна сметка', + 'expense_per_destination_account' => 'Разходи по приходна сметка', + 'income_per_destination_account' => 'Приходи по приходна сметка', + 'spent_in_specific_category' => 'Похарчени в категория ":category"', + 'earned_in_specific_category' => 'Получени в категория ":category"', + 'spent_in_specific_tag' => 'Похарчени с етикет ":tag"', + 'earned_in_specific_tag' => 'Получени с етикет ":tag"', + 'income_per_source_account' => 'Приходи по разходна сметка', + 'average_spending_per_destination' => 'Среден разход по приходна сметка', + 'average_spending_per_source' => 'Среден разход по разходна сметка', + 'average_earning_per_source' => 'Среден приход по разходна сметка', + 'average_earning_per_destination' => 'Среден приход по разходна сметка', + 'account_per_tag' => 'Сметка по етикет', + 'tag_report_expenses_listed_once' => 'Разходите и доходите никога не са посочени два пъти. Ако транзакцията има множество етикети, тя може да се показва само под един от нейните етикети. В този списък може да изглежда че липсват данни, но сумите ще бъдат правилни.', + 'double_report_expenses_charted_once' => 'Разходите и доходите никога не са посочени два пъти. Ако транзакцията има множество етикети, тя може да се показва само под един от нейните етикети. В тази графика може да изглежда че липсват данни, но сумите ще бъдат правилни.', + 'tag_report_chart_single_tag' => 'Тази графика се отнася за един етикет. Ако транзакция има множество етикети, това което виждате тук, може да бъде отразено и в графиките на други етикети.', + 'tag' => 'Етикет', + 'no_budget_squared' => '(без бюджет)', + 'perm-delete-many' => 'Изтриването на много елементи с едно действие може да бъде много разрушително. Моля бъдете внимателни. Възможно е да изтриете част от разделена транзакция на тази страница, така че внимавайте.', + 'mass_deleted_transactions_success' => 'Изтрита :count транзакция.|Изтрити :count транзакции.', + 'mass_edited_transactions_success' => 'Обновена :count транзакция.|Обновени :count транзакции.', + 'opt_group_' => '(без тип сметка)', + 'opt_group_no_account_type' => '(без тип сметка)', + 'opt_group_defaultAsset' => 'Сметки за активи по подразбиране', + 'opt_group_savingAsset' => 'Спестовни сметки', + 'opt_group_sharedAsset' => 'Сметки за споделени активи', + 'opt_group_ccAsset' => 'Кредитни карти', + 'opt_group_cashWalletAsset' => 'Парични портфейли', + 'opt_group_expense_account' => 'Сметки за разходи', + 'opt_group_revenue_account' => 'Сметки за приходи', + 'opt_group_l_Loan' => 'Задължение: Заем', + 'opt_group_cash_account' => 'Касова сметка', + 'opt_group_l_Debt' => 'Задължение: Дълг', + 'opt_group_l_Mortgage' => 'Задължение: Ипотека', + 'opt_group_l_Credit card' => 'Задължение: Кредитна карта', + 'notes' => 'Бележки', + 'unknown_journal_error' => 'Транзакцията не можа да се запази. Моля проверете лог файловете.', + 'attachment_not_found' => 'Този прикачен файл не можа да бъде намерен.', + 'journal_link_bill' => 'Тази транзакция е свързана със сметка :name . За да изтриете връзката, премахнете отметката от квадратчето. Използвайте правила, за да я свържете с друга сметка.', + 'transaction_stored_link' => 'Транзакция #{ID}("{title}") беше записана.', + 'transaction_new_stored_link' => 'Транзакция #{ID} беше записана.', + 'transaction_updated_link' => 'Транзакция #{ID} ("{title}") беше обновена.', + 'transaction_updated_no_changes' => 'Транзакция #{ID} ("{title}") не е получила промени.', + 'first_split_decides' => 'Първия раздел определя стойността на това поле', + 'first_split_overrules_source' => 'Първия раздел може да отмени разходната сметка', + 'first_split_overrules_destination' => 'Първия раздел може да отмени приходната сметка', + 'spent_x_of_y' => 'Похарчено е {amount} от {total}', // new user: - 'welcome' => 'Добре дошли в Firefly III!', - 'submit' => 'Потвърди', - 'submission' => 'Изпращане', - 'submit_yes_really' => 'Потвърди (знам какво правя)', - 'getting_started' => 'Начални стъпки', - 'to_get_started' => 'Хубаво е да видите, че успешно сте инсталирали Firefly III. За да започнете с този инструмент, моля въведете името на вашата банка и салдото на основната си сметка. Не се притеснявайте, ако имате няколко сметки. Можете да ги добавите по-късно. Просто Firefly III се нуждае от нещо, с което да започне.', - 'savings_balance_text' => 'Firefly III автоматично ще ви създаде спестовна сметка. По подразбиране няма да има пари в спестовната ви сметка, но ако кажете на Firefly III салдото, то ще се съхрани като начално.', - 'finish_up_new_user' => 'Това е! Можете да продължите, като натиснете Потвърди. Ще бъдете отведени до индекса на Firefly III.', - 'stored_new_accounts_new_user' => 'Супер! Вашите нови сметки са съхранени.', - 'set_preferred_language' => 'Ако предпочитате да използвате Firefly III на друг език, моля посочете го тук.', - 'language' => 'Език', - 'new_savings_account' => ':bank_name спестовна сметка', - 'cash_wallet' => 'Паричен портфейл', - 'currency_not_present' => 'Не се притеснявайте, ако валутата която обикновено използвате не е посочена. Можете да създадете свои собствени валути в Опции> Валути.', + 'welcome' => 'Добре дошли в Firefly III!', + 'submit' => 'Потвърди', + 'submission' => 'Изпращане', + 'submit_yes_really' => 'Потвърди (знам какво правя)', + 'getting_started' => 'Начални стъпки', + 'to_get_started' => 'Хубаво е да видите, че успешно сте инсталирали Firefly III. За да започнете с този инструмент, моля въведете името на вашата банка и салдото на основната си сметка. Не се притеснявайте, ако имате няколко сметки. Можете да ги добавите по-късно. Просто Firefly III се нуждае от нещо, с което да започне.', + 'savings_balance_text' => 'Firefly III автоматично ще ви създаде спестовна сметка. По подразбиране няма да има пари в спестовната ви сметка, но ако кажете на Firefly III салдото, то ще се съхрани като начално.', + 'finish_up_new_user' => 'Това е! Можете да продължите, като натиснете Потвърди. Ще бъдете отведени до индекса на Firefly III.', + 'stored_new_accounts_new_user' => 'Супер! Вашите нови сметки са съхранени.', + 'set_preferred_language' => 'Ако предпочитате да използвате Firefly III на друг език, моля посочете го тук.', + 'language' => 'Език', + 'new_savings_account' => ':bank_name спестовна сметка', + 'cash_wallet' => 'Паричен портфейл', + 'currency_not_present' => 'Не се притеснявайте, ако валутата която обикновено използвате не е посочена. Можете да създадете свои собствени валути в Опции> Валути.', // home page: - 'transaction_table_description' => 'Таблица съдържаща вашите транзакции', - 'opposing_account' => 'Противоположна сметка', - 'yourAccounts' => 'Вашите сметки', - 'your_accounts' => 'Общ преглед на вашата сметка', - 'category_overview' => 'Общ преглед на категория', - 'expense_overview' => 'Общ преглед на разходна сметка', - 'revenue_overview' => 'Общ преглед на приходна сметка', - 'budgetsAndSpending' => 'Бюджети и разходи', - 'budgets_and_spending' => 'Бюджети и разходи', - 'go_to_budget' => 'Отиди на бюджет "{budget}"', - 'go_to_deposits' => 'Отиди в депозити', - 'go_to_expenses' => 'Отиди в Разходи ', - 'savings' => 'Спестявания', - 'newWithdrawal' => 'Нов разход', - 'newDeposit' => 'Нов депозит', - 'newTransfer' => 'Ново прехвърляне', - 'bills_to_pay' => 'Сметки за плащане', - 'per_day' => 'На ден', - 'left_to_spend_per_day' => 'Остава за разходи на ден', - 'bills_paid' => 'Платени сметки', - 'custom_period' => 'Период по избор', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Избор на период', + 'transaction_table_description' => 'Таблица съдържаща вашите транзакции', + 'opposing_account' => 'Противоположна сметка', + 'yourAccounts' => 'Вашите сметки', + 'your_accounts' => 'Общ преглед на вашата сметка', + 'category_overview' => 'Общ преглед на категория', + 'expense_overview' => 'Общ преглед на разходна сметка', + 'revenue_overview' => 'Общ преглед на приходна сметка', + 'budgetsAndSpending' => 'Бюджети и разходи', + 'budgets_and_spending' => 'Бюджети и разходи', + 'go_to_budget' => 'Отиди на бюджет "{budget}"', + 'go_to_deposits' => 'Отиди в депозити', + 'go_to_expenses' => 'Отиди в Разходи ', + 'savings' => 'Спестявания', + 'newWithdrawal' => 'Нов разход', + 'newDeposit' => 'Нов депозит', + 'newTransfer' => 'Ново прехвърляне', + 'bills_to_pay' => 'Сметки за плащане', + 'per_day' => 'На ден', + 'left_to_spend_per_day' => 'Остава за разходи на ден', + 'bills_paid' => 'Платени сметки', + 'custom_period' => 'Период по избор', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Избор на период', // menu and titles, should be recycled as often as possible: - 'currency' => 'Валута', - 'preferences' => 'Настройки', - 'logout' => 'Изход', - 'logout_other_sessions' => 'Изход от всички други сесии', - 'toggleNavigation' => 'Превключване на навигацията', - 'searchPlaceholder' => 'Търсене...', - 'version' => 'Версия', - 'dashboard' => 'Основно табло', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Наличен бюджет ({currency})', - 'currencies' => 'Валути', - 'activity' => 'Дейност', - 'usage' => 'Използване', - 'accounts' => 'Сметки', - 'Asset account' => 'Сметка за активи', - 'Default account' => 'Сметка за активи', - 'Expense account' => 'Сметка за разходи', - 'Revenue account' => 'Сметка за приходи', - 'Initial balance account' => 'Първоначално салдо на сметка', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Дълг', - 'account_type_Loan' => 'Заем', - 'account_type_Mortgage' => 'Ипотека', - 'account_type_debt' => 'Дълг', - 'account_type_loan' => 'Заем', - 'account_type_mortgage' => 'Ипотека', - 'account_type_Credit card' => 'Кредитна карта', - 'credit_card_type_monthlyFull' => 'Пълно плащане всеки месец', - 'liability_direction_credit' => 'Дължът ми този дълг', - 'liability_direction_debit' => 'Дължа този дълг на някого', - 'liability_direction_credit_short' => 'Дължът ми дълг', - 'liability_direction_debit_short' => 'Дължа дълг', - 'liability_direction__short' => 'Неизвестно', - 'liability_direction_null_short' => 'Неизвестно', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Бюджети', - 'tags' => 'Етикети', - 'reports' => 'Отчети', - 'transactions' => 'Транзакции', - 'expenses' => 'Разходи', - 'income' => 'Приходи', - 'transfers' => 'Прехвърляния', - 'moneyManagement' => 'Управление на финансите', - 'money_management' => 'Управление на финансите', - 'tools' => 'Инструменти', - 'piggyBanks' => 'Касички', - 'piggy_banks' => 'Касички', - 'amount_x_of_y' => '{current} от {total}', - 'bills' => 'Сметки', - 'withdrawal' => 'Теглене', - 'opening_balance' => 'Начално салдо', - 'deposit' => 'Депозит', - 'account' => 'Сметка', - 'transfer' => 'Прехвърляне', - 'Withdrawal' => 'Теглене', - 'Deposit' => 'Депозит', - 'Transfer' => 'Прехвърляне', - 'bill' => 'Сметка', - 'yes' => 'Да', - 'no' => 'Не', - 'amount' => 'Сума', - 'overview' => 'Общ преглед', - 'saveOnAccount' => 'Спести в сметка', - 'unknown' => 'Неизвестно', - 'monthly' => 'Месечно', - 'profile' => 'Профил', - 'errors' => 'Грешки', - 'debt_start_date' => 'Начална дата на дълга', - 'debt_start_amount' => 'Начална сума на дълга', - 'debt_start_amount_help' => 'Винаги е най-добре да зададете тази стойност на отрицателна сума. Прочетете страниците за помощ (горе вдясно (?) - икона) за повече информация.', - 'interest_period_help' => 'Това поле е чисто козметично и няма да бъде изчислено за вас. Както се оказва, банките са много подъл, така че Firefly III никога не се оправя.', - 'store_new_liabilities_account' => 'Запамети ново задължение', - 'edit_liabilities_account' => 'Редактирай задължение ":name"', - 'financial_control' => 'Финансов контрол', - 'accounting' => 'Счетоводство', - 'automation' => 'Автоматизация', - 'others' => 'Други', - 'classification' => 'Класификация', - 'store_transaction' => 'Запазете транзакция', + 'currency' => 'Валута', + 'preferences' => 'Настройки', + 'logout' => 'Изход', + 'logout_other_sessions' => 'Изход от всички други сесии', + 'toggleNavigation' => 'Превключване на навигацията', + 'searchPlaceholder' => 'Търсене...', + 'version' => 'Версия', + 'dashboard' => 'Основно табло', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Наличен бюджет ({currency})', + 'currencies' => 'Валути', + 'activity' => 'Дейност', + 'usage' => 'Използване', + 'accounts' => 'Сметки', + 'Asset account' => 'Сметка за активи', + 'Default account' => 'Сметка за активи', + 'Expense account' => 'Сметка за разходи', + 'Revenue account' => 'Сметка за приходи', + 'Initial balance account' => 'Първоначално салдо на сметка', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Дълг', + 'account_type_Loan' => 'Заем', + 'account_type_Mortgage' => 'Ипотека', + 'account_type_debt' => 'Дълг', + 'account_type_loan' => 'Заем', + 'account_type_mortgage' => 'Ипотека', + 'account_type_Credit card' => 'Кредитна карта', + 'credit_card_type_monthlyFull' => 'Пълно плащане всеки месец', + 'liability_direction_credit' => 'Дължът ми този дълг', + 'liability_direction_debit' => 'Дължа този дълг на някого', + 'liability_direction_credit_short' => 'Дължът ми дълг', + 'liability_direction_debit_short' => 'Дължа дълг', + 'liability_direction__short' => 'Неизвестно', + 'liability_direction_null_short' => 'Неизвестно', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Бюджети', + 'tags' => 'Етикети', + 'reports' => 'Отчети', + 'transactions' => 'Транзакции', + 'expenses' => 'Разходи', + 'income' => 'Приходи', + 'transfers' => 'Прехвърляния', + 'moneyManagement' => 'Управление на финансите', + 'money_management' => 'Управление на финансите', + 'tools' => 'Инструменти', + 'piggyBanks' => 'Касички', + 'piggy_banks' => 'Касички', + 'amount_x_of_y' => '{current} от {total}', + 'bills' => 'Сметки', + 'withdrawal' => 'Теглене', + 'opening_balance' => 'Начално салдо', + 'deposit' => 'Депозит', + 'account' => 'Сметка', + 'transfer' => 'Прехвърляне', + 'Withdrawal' => 'Теглене', + 'Deposit' => 'Депозит', + 'Transfer' => 'Прехвърляне', + 'bill' => 'Сметка', + 'yes' => 'Да', + 'no' => 'Не', + 'amount' => 'Сума', + 'overview' => 'Общ преглед', + 'saveOnAccount' => 'Спести в сметка', + 'unknown' => 'Неизвестно', + 'monthly' => 'Месечно', + 'profile' => 'Профил', + 'errors' => 'Грешки', + 'debt_start_date' => 'Начална дата на дълга', + 'debt_start_amount' => 'Начална сума на дълга', + 'debt_start_amount_help' => 'Винаги е най-добре да зададете тази стойност на отрицателна сума. Прочетете страниците за помощ (горе вдясно (?) - икона) за повече информация.', + 'interest_period_help' => 'Това поле е чисто козметично и няма да бъде изчислено за вас. Както се оказва, банките са много подъл, така че Firefly III никога не се оправя.', + 'store_new_liabilities_account' => 'Запамети ново задължение', + 'edit_liabilities_account' => 'Редактирай задължение ":name"', + 'financial_control' => 'Финансов контрол', + 'accounting' => 'Счетоводство', + 'automation' => 'Автоматизация', + 'others' => 'Други', + 'classification' => 'Класификация', + 'store_transaction' => 'Запазете транзакция', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Финансов отчет по подразбиране между :start и :end', - 'report_audit' => 'Преглед на историята на транзакциите между :start и :end', - 'report_category' => 'Отчет по категория между :start и :end', - 'report_double' => 'Отчет Разходи / Сметка за приходи между :start и :end', - 'report_budget' => 'Отчет по бюджет между :start и :end', - 'report_tag' => 'Отчет по етикет между :start и :end', - 'quick_link_reports' => 'Бързи връзки', - 'quick_link_examples' => 'Това са само някои примерни връзки, за да започнете. Разгледайте страниците за помощ под бутона (?) за информация относно всички отчети и "вълшебните" думи, които можете да използвате.', - 'quick_link_default_report' => 'Финансов отчет по подразбиране', - 'quick_link_audit_report' => 'Преглед на историята на транзакциите', - 'report_this_month_quick' => 'Текущ месец, всички сметки', - 'report_last_month_quick' => 'Миналия месец, всички сметки', - 'report_this_year_quick' => 'Текуща година, всички сметки', - 'report_this_fiscal_year_quick' => 'Текуща финансова година, всички сметки', - 'report_all_time_quick' => 'За цялото време, всички сметки', - 'reports_can_bookmark' => 'Не забравяйте, че на отчетите могат да бъдат поставени отметки.', - 'incomeVsExpenses' => 'Приход срещу разходи', - 'accountBalances' => 'Салда по сметки', - 'balanceStart' => 'Салдо в началото на периода', - 'balanceEnd' => 'Салдо в края на периода', - 'splitByAccount' => 'Раздели по сметка', - 'coveredWithTags' => 'Покрити с етикети', - 'leftInBudget' => 'Останало в бюджета', - 'left_in_debt' => 'Дължима сума', - 'sumOfSums' => 'Сума от суми', - 'noCategory' => '(без категория)', - 'notCharged' => 'Не е таксувано (все още)', - 'inactive' => 'Неактивно', - 'active' => 'Активно', - 'difference' => 'Разлика', - 'money_flowing_in' => 'Входящи', - 'money_flowing_out' => 'Изходящи', - 'topX' => 'топ :number', - 'show_full_list' => 'Показване на целия списък', - 'show_only_top' => 'Покажи само топ :number', - 'report_type' => 'Тип на отчета', - 'report_type_default' => 'Финансов отчет по подразбиране', - 'report_type_audit' => 'Преглед на историята на транзакциите (проверка)', - 'report_type_category' => 'Отчет по категория', - 'report_type_budget' => 'Отчет по бюджет', - 'report_type_tag' => 'Отчет по етикет', - 'report_type_double' => 'Отчет по сметка за разходи / приходи', - 'more_info_help' => 'Повече информация за тези видове отчети можете да намерите в помощните страници. Натиснете иконата (?) в горния десен ъгъл.', - 'report_included_accounts' => 'Включени сметки', - 'report_date_range' => 'Период', - 'report_preset_ranges' => 'Предварително зададени периоди', - 'shared' => 'Споделени', - 'fiscal_year' => 'Фискална година', - 'income_entry' => 'Приход от сметка ":name" между :start и :end', - 'expense_entry' => 'Разход по сметка ":name" между :start и :end', - 'category_entry' => 'Разходи и приходи в категория ":name" между :start и :end', - 'budget_spent_amount' => 'Разходи в бюджет ":budget" между :start и :end', - 'balance_amount' => 'Разходи в бюджет ":budget" платени от сметка ":account" между :start и :end', - 'no_audit_activity' => 'Няма регистрирана активност в сметка :account_name между :start и :end.', - 'audit_end_balance' => 'Салдото по сметка :account_nameв края на :end беше :balance', - 'reports_extra_options' => 'Допълнителни опции', - 'report_has_no_extra_options' => 'Този отчет няма допълнителни опции', - 'reports_submit' => 'Виж отчета', - 'end_after_start_date' => 'Крайната дата на отчета трябва да бъде след началната дата.', - 'select_category' => 'Изберете категория(и)', - 'select_budget' => 'Изберете бюджет(и).', - 'select_tag' => 'Изберете етикет(и).', - 'income_per_category' => 'Приходи по категория', - 'expense_per_category' => 'Разходи по категория', - 'expense_per_budget' => 'Разходи по бюджет', - 'income_per_account' => 'Приходи по сметка', - 'expense_per_account' => 'Разходи по сметка', - 'expense_per_tag' => 'Разходи по етикет', - 'income_per_tag' => 'Приход по етикет', - 'include_expense_not_in_budget' => 'Включени разходи, които не са в избрания(те) бюджет(и)', - 'include_expense_not_in_account' => 'Включени разходи, които не са в избраната(ите) сметка(и)', - 'include_expense_not_in_category' => 'Включени разходи, които не са в избраната(ите) категория(и)', - 'include_income_not_in_category' => 'Включени приходи, които не са в избраната(ите) категория(и)', - 'include_income_not_in_account' => 'Включени приходи, които не са в избраната(ите) сметка(и)', - 'include_income_not_in_tags' => 'Включени приходи, които не са с избрания(те) етикет(и)', - 'include_expense_not_in_tags' => 'Включени разходи, които не са с избрания(те) етикет(и)', - 'everything_else' => 'Други', - 'income_and_expenses' => 'Приходи и разходи', - 'spent_average' => 'Похарчени (средно)', - 'income_average' => 'Доход (средно)', - 'transaction_count' => 'Брой транзакции', - 'average_spending_per_account' => 'Средни разходи по сметка', - 'average_income_per_account' => 'Средни приходи по сметка', - 'total' => 'Общо', - 'description' => 'Описание', - 'sum_of_period' => 'Сума за периода', - 'average_in_period' => 'Средно за периода', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Сметка за активи по подразбиране', - 'account_role_sharedAsset' => 'Сметка за споделени активи', - 'account_role_savingAsset' => 'Спестовна сметка', - 'account_role_ccAsset' => 'Кредитна карта', - 'account_role_cashWalletAsset' => 'Паричен портфейл', - 'budget_chart_click' => 'Моля кликнете върху име на бюджет в таблицата по-горе, за да видите графика.', - 'category_chart_click' => 'Моля кликнете върху име на категория в таблицата по-горе, за да видите графика.', - 'in_out_accounts' => 'Спечелени и похарчени по комбинация', - 'in_out_accounts_per_asset' => 'Спечелени и похарчени (по сметка за активи)', - 'in_out_per_category' => 'Спечелени и похарчени по категория', - 'out_per_budget' => 'Похарчени по бюджет', - 'select_expense_revenue' => 'Изберете сметка за Разходи / Приходи', - 'multi_currency_report_sum' => 'Тъй като този списък съдържа сметки с няколко валути, сумата (ите) която виждате може да няма смисъл. Отчетът винаги ще се връща към вашата валута по подразбиране.', - 'sum_in_default_currency' => 'Сумата винаги ще бъде във вашата валута по подразбиране.', - 'net_filtered_prefs' => 'Тази графика никога няма да включва сметки, при които в опцията „Включи в нетната стойност“ не е поставена отметка.', + 'report_default' => 'Финансов отчет по подразбиране между :start и :end', + 'report_audit' => 'Преглед на историята на транзакциите между :start и :end', + 'report_category' => 'Отчет по категория между :start и :end', + 'report_double' => 'Отчет Разходи / Сметка за приходи между :start и :end', + 'report_budget' => 'Отчет по бюджет между :start и :end', + 'report_tag' => 'Отчет по етикет между :start и :end', + 'quick_link_reports' => 'Бързи връзки', + 'quick_link_examples' => 'Това са само някои примерни връзки, за да започнете. Разгледайте страниците за помощ под бутона (?) за информация относно всички отчети и "вълшебните" думи, които можете да използвате.', + 'quick_link_default_report' => 'Финансов отчет по подразбиране', + 'quick_link_audit_report' => 'Преглед на историята на транзакциите', + 'report_this_month_quick' => 'Текущ месец, всички сметки', + 'report_last_month_quick' => 'Миналия месец, всички сметки', + 'report_this_year_quick' => 'Текуща година, всички сметки', + 'report_this_fiscal_year_quick' => 'Текуща финансова година, всички сметки', + 'report_all_time_quick' => 'За цялото време, всички сметки', + 'reports_can_bookmark' => 'Не забравяйте, че на отчетите могат да бъдат поставени отметки.', + 'incomeVsExpenses' => 'Приход срещу разходи', + 'accountBalances' => 'Салда по сметки', + 'balanceStart' => 'Салдо в началото на периода', + 'balanceEnd' => 'Салдо в края на периода', + 'splitByAccount' => 'Раздели по сметка', + 'coveredWithTags' => 'Покрити с етикети', + 'leftInBudget' => 'Останало в бюджета', + 'left_in_debt' => 'Дължима сума', + 'sumOfSums' => 'Сума от суми', + 'noCategory' => '(без категория)', + 'notCharged' => 'Не е таксувано (все още)', + 'inactive' => 'Неактивно', + 'active' => 'Активно', + 'difference' => 'Разлика', + 'money_flowing_in' => 'Входящи', + 'money_flowing_out' => 'Изходящи', + 'topX' => 'топ :number', + 'show_full_list' => 'Показване на целия списък', + 'show_only_top' => 'Покажи само топ :number', + 'report_type' => 'Тип на отчета', + 'report_type_default' => 'Финансов отчет по подразбиране', + 'report_type_audit' => 'Преглед на историята на транзакциите (проверка)', + 'report_type_category' => 'Отчет по категория', + 'report_type_budget' => 'Отчет по бюджет', + 'report_type_tag' => 'Отчет по етикет', + 'report_type_double' => 'Отчет по сметка за разходи / приходи', + 'more_info_help' => 'Повече информация за тези видове отчети можете да намерите в помощните страници. Натиснете иконата (?) в горния десен ъгъл.', + 'report_included_accounts' => 'Включени сметки', + 'report_date_range' => 'Период', + 'report_preset_ranges' => 'Предварително зададени периоди', + 'shared' => 'Споделени', + 'fiscal_year' => 'Фискална година', + 'income_entry' => 'Приход от сметка ":name" между :start и :end', + 'expense_entry' => 'Разход по сметка ":name" между :start и :end', + 'category_entry' => 'Разходи и приходи в категория ":name" между :start и :end', + 'budget_spent_amount' => 'Разходи в бюджет ":budget" между :start и :end', + 'balance_amount' => 'Разходи в бюджет ":budget" платени от сметка ":account" между :start и :end', + 'no_audit_activity' => 'Няма регистрирана активност в сметка :account_name между :start и :end.', + 'audit_end_balance' => 'Салдото по сметка :account_nameв края на :end беше :balance', + 'reports_extra_options' => 'Допълнителни опции', + 'report_has_no_extra_options' => 'Този отчет няма допълнителни опции', + 'reports_submit' => 'Виж отчета', + 'end_after_start_date' => 'Крайната дата на отчета трябва да бъде след началната дата.', + 'select_category' => 'Изберете категория(и)', + 'select_budget' => 'Изберете бюджет(и).', + 'select_tag' => 'Изберете етикет(и).', + 'income_per_category' => 'Приходи по категория', + 'expense_per_category' => 'Разходи по категория', + 'expense_per_budget' => 'Разходи по бюджет', + 'income_per_account' => 'Приходи по сметка', + 'expense_per_account' => 'Разходи по сметка', + 'expense_per_tag' => 'Разходи по етикет', + 'income_per_tag' => 'Приход по етикет', + 'include_expense_not_in_budget' => 'Включени разходи, които не са в избрания(те) бюджет(и)', + 'include_expense_not_in_account' => 'Включени разходи, които не са в избраната(ите) сметка(и)', + 'include_expense_not_in_category' => 'Включени разходи, които не са в избраната(ите) категория(и)', + 'include_income_not_in_category' => 'Включени приходи, които не са в избраната(ите) категория(и)', + 'include_income_not_in_account' => 'Включени приходи, които не са в избраната(ите) сметка(и)', + 'include_income_not_in_tags' => 'Включени приходи, които не са с избрания(те) етикет(и)', + 'include_expense_not_in_tags' => 'Включени разходи, които не са с избрания(те) етикет(и)', + 'everything_else' => 'Други', + 'income_and_expenses' => 'Приходи и разходи', + 'spent_average' => 'Похарчени (средно)', + 'income_average' => 'Доход (средно)', + 'transaction_count' => 'Брой транзакции', + 'average_spending_per_account' => 'Средни разходи по сметка', + 'average_income_per_account' => 'Средни приходи по сметка', + 'total' => 'Общо', + 'description' => 'Описание', + 'sum_of_period' => 'Сума за периода', + 'average_in_period' => 'Средно за периода', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Сметка за активи по подразбиране', + 'account_role_sharedAsset' => 'Сметка за споделени активи', + 'account_role_savingAsset' => 'Спестовна сметка', + 'account_role_ccAsset' => 'Кредитна карта', + 'account_role_cashWalletAsset' => 'Паричен портфейл', + 'budget_chart_click' => 'Моля кликнете върху име на бюджет в таблицата по-горе, за да видите графика.', + 'category_chart_click' => 'Моля кликнете върху име на категория в таблицата по-горе, за да видите графика.', + 'in_out_accounts' => 'Спечелени и похарчени по комбинация', + 'in_out_accounts_per_asset' => 'Спечелени и похарчени (по сметка за активи)', + 'in_out_per_category' => 'Спечелени и похарчени по категория', + 'out_per_budget' => 'Похарчени по бюджет', + 'select_expense_revenue' => 'Изберете сметка за Разходи / Приходи', + 'multi_currency_report_sum' => 'Тъй като този списък съдържа сметки с няколко валути, сумата (ите) която виждате може да няма смисъл. Отчетът винаги ще се връща към вашата валута по подразбиране.', + 'sum_in_default_currency' => 'Сумата винаги ще бъде във вашата валута по подразбиране.', + 'net_filtered_prefs' => 'Тази графика никога няма да включва сметки, при които в опцията „Включи в нетната стойност“ не е поставена отметка.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Графика', - 'month' => 'Месец', - 'budget' => 'Бюджет', - 'spent' => 'Похарчени', - 'spent_capped' => 'Похарчени (ограничени)', - 'spent_in_budget' => 'Похарчени в бюджет', - 'left_to_spend' => 'Останали за харчене', - 'earned' => 'Спечелени', - 'overspent' => 'Преразход', - 'left' => 'Останали', - 'max-amount' => 'Максимална сума', - 'min-amount' => 'Минимална сума', - 'journal-amount' => 'Текущ запис на сметка', - 'name' => 'Име', - 'date' => 'Дата', - 'date_and_time' => 'Дата и час', - 'time' => 'Време', - 'paid' => 'Платени', - 'unpaid' => 'Неплатени', - 'day' => 'Ден', - 'budgeted' => 'Бюджетирани', - 'period' => 'Период', - 'balance' => 'Салдо', - 'in_out_period' => 'In + out this period', - 'sum' => 'Сума', - 'summary' => 'Обобщение', - 'average' => 'Средно', - 'balanceFor' => 'Салдо за :name', - 'no_tags' => '(без етикети)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Графика', + 'month' => 'Месец', + 'budget' => 'Бюджет', + 'spent' => 'Похарчени', + 'spent_capped' => 'Похарчени (ограничени)', + 'spent_in_budget' => 'Похарчени в бюджет', + 'left_to_spend' => 'Останали за харчене', + 'earned' => 'Спечелени', + 'overspent' => 'Преразход', + 'left' => 'Останали', + 'max-amount' => 'Максимална сума', + 'min-amount' => 'Минимална сума', + 'journal-amount' => 'Текущ запис на сметка', + 'name' => 'Име', + 'date' => 'Дата', + 'date_and_time' => 'Дата и час', + 'time' => 'Време', + 'paid' => 'Платени', + 'unpaid' => 'Неплатени', + 'day' => 'Ден', + 'budgeted' => 'Бюджетирани', + 'period' => 'Период', + 'balance' => 'Салдо', + 'in_out_period' => 'In + out this period', + 'sum' => 'Сума', + 'summary' => 'Обобщение', + 'average' => 'Средно', + 'balanceFor' => 'Салдо за :name', + 'no_tags' => '(без етикети)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Добавете пари към касичка ":name"', - 'piggy_bank' => 'Касичка', - 'new_piggy_bank' => 'Нова касичка', - 'store_piggy_bank' => 'Запази новата касичка', - 'stored_piggy_bank' => 'Запази новата касичка ":name"', - 'account_status' => 'Състояние на сметка', - 'left_for_piggy_banks' => 'Остава за касичките', - 'sum_of_piggy_banks' => 'Сума на касичките', - 'saved_so_far' => 'Спестени до сега', - 'left_to_save' => 'Остава да се спестят', - 'suggested_amount' => 'Предложена месечна сума за спестяване', - 'add_money_to_piggy_title' => 'Добавете пари към касичка ":name"', - 'remove_money_from_piggy_title' => 'Извадете пари от касичка ":name"', - 'add' => 'Добави', - 'no_money_for_piggy' => 'Нямате пари да добавите в тази касичка.', - 'suggested_savings_per_month' => 'Предложено на месец', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Добавете пари към касичка ":name"', + 'piggy_bank' => 'Касичка', + 'new_piggy_bank' => 'Нова касичка', + 'store_piggy_bank' => 'Запази новата касичка', + 'stored_piggy_bank' => 'Запази новата касичка ":name"', + 'account_status' => 'Състояние на сметка', + 'left_for_piggy_banks' => 'Остава за касичките', + 'sum_of_piggy_banks' => 'Сума на касичките', + 'saved_so_far' => 'Спестени до сега', + 'left_to_save' => 'Остава да се спестят', + 'suggested_amount' => 'Предложена месечна сума за спестяване', + 'add_money_to_piggy_title' => 'Добавете пари към касичка ":name"', + 'remove_money_from_piggy_title' => 'Извадете пари от касичка ":name"', + 'add' => 'Добави', + 'no_money_for_piggy' => 'Нямате пари да добавите в тази касичка.', + 'suggested_savings_per_month' => 'Предложено на месец', - 'remove' => 'Премахни', - 'max_amount_add' => 'Максималната сума, която можете да добавите е', - 'max_amount_remove' => 'Максималната сума, която можете да извадите е', - 'update_piggy_button' => 'Редактирай касичка', - 'update_piggy_title' => 'Редактирай касичка ":name"', - 'updated_piggy_bank' => 'Редактирана касичка ":name"', - 'details' => 'Подробности', - 'events' => 'Събития', - 'target_amount' => 'Планирана сума', - 'start_date' => 'Начална дата', - 'no_start_date' => 'Няма начална дата', - 'target_date' => 'Целева дата', - 'no_target_date' => 'Няма целева дата', - 'table' => 'Таблица', - 'delete_piggy_bank' => 'Изтрий касичка ":name"', - 'cannot_add_amount_piggy' => 'Не можа да се добави :amount към ":name".', - 'cannot_remove_from_piggy' => 'Не можа да се извади :amount от ":name".', - 'deleted_piggy_bank' => 'Изтрита касичка ":name"', - 'added_amount_to_piggy' => 'Добавени :amount към ":name"', - 'removed_amount_from_piggy' => 'Извадени :amount към ":name"', - 'piggy_events' => 'Сродни касички', + 'remove' => 'Премахни', + 'max_amount_add' => 'Максималната сума, която можете да добавите е', + 'max_amount_remove' => 'Максималната сума, която можете да извадите е', + 'update_piggy_button' => 'Редактирай касичка', + 'update_piggy_title' => 'Редактирай касичка ":name"', + 'updated_piggy_bank' => 'Редактирана касичка ":name"', + 'details' => 'Подробности', + 'events' => 'Събития', + 'target_amount' => 'Планирана сума', + 'start_date' => 'Начална дата', + 'no_start_date' => 'Няма начална дата', + 'target_date' => 'Целева дата', + 'no_target_date' => 'Няма целева дата', + 'table' => 'Таблица', + 'delete_piggy_bank' => 'Изтрий касичка ":name"', + 'cannot_add_amount_piggy' => 'Не можа да се добави :amount към ":name".', + 'cannot_remove_from_piggy' => 'Не можа да се извади :amount от ":name".', + 'deleted_piggy_bank' => 'Изтрита касичка ":name"', + 'added_amount_to_piggy' => 'Добавени :amount към ":name"', + 'removed_amount_from_piggy' => 'Извадени :amount към ":name"', + 'piggy_events' => 'Сродни касички', // tags - 'delete_tag' => 'Изтрий етикет ":tag"', - 'deleted_tag' => 'Изтрит етикет ":tag"', - 'new_tag' => 'Създай нов етикет', - 'edit_tag' => 'Редактирай етикет ":tag"', - 'updated_tag' => 'Редактиран етикет ":tag"', - 'created_tag' => 'Етикет ":tag" беше създаден!', + 'delete_tag' => 'Изтрий етикет ":tag"', + 'deleted_tag' => 'Изтрит етикет ":tag"', + 'new_tag' => 'Създай нов етикет', + 'edit_tag' => 'Редактирай етикет ":tag"', + 'updated_tag' => 'Редактиран етикет ":tag"', + 'created_tag' => 'Етикет ":tag" беше създаден!', - 'transaction_journal_information' => 'Информация за транзакция', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Мета информация', - 'transaction_journal_more' => 'Повече информация', - 'basic_journal_information' => 'Основна информация за транзакция', - 'transaction_journal_extra' => 'Допълнителна информация', - 'att_part_of_journal' => 'Запазено като ":journal"', - 'total_amount' => 'Обща сума', - 'number_of_decimals' => 'Брой десетични знаци', + 'transaction_journal_information' => 'Информация за транзакция', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Мета информация', + 'transaction_journal_more' => 'Повече информация', + 'basic_journal_information' => 'Основна информация за транзакция', + 'transaction_journal_extra' => 'Допълнителна информация', + 'att_part_of_journal' => 'Запазено като ":journal"', + 'total_amount' => 'Обща сума', + 'number_of_decimals' => 'Брой десетични знаци', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Управление', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Управление на потребители', - 'list_all_users' => 'Всички потребители', - 'all_users' => 'Всички потребители', - 'instance_configuration' => 'Конфигурация', - 'firefly_instance_configuration' => 'Опции за конфигурация на Firefly III', - 'setting_single_user_mode' => 'Режим за един потребител', - 'setting_single_user_mode_explain' => 'По подразбиране Firefly III приема само една (1) регистрация: Вие. Това е мярка за сигурност предотвратяваща други да използват вашата инсталация, освен ако не им разрешите. Бъдещите регистрации са блокирани. Когато премахнете отметката от това поле и други ще могат да използват вашия инсталация, ако приемем че могат да я достигнат (когато е свързана с Интернет).', - 'store_configuration' => 'Запази конфигурацията', - 'single_user_administration' => 'Управление на потребителя за :email', - 'edit_user' => 'Редактиране на потребител :email', - 'hidden_fields_preferences' => 'Можете да активирате повече опции за транзакции във вашите настройки.', - 'user_data_information' => 'Данни на потребителя', - 'user_information' => 'Информация за потребителя', - 'total_size' => 'общ размер', - 'budget_or_budgets' => ':count бюджет|:count бюджети', - 'budgets_with_limits' => ':count бюджет с дефинирана сума|:count бюджети с дефинирани суми', - 'nr_of_rules_in_total_groups' => ':count_rules правило(а) и :count_groups група(и) правила', - 'tag_or_tags' => ':count етикет|:count етикети', - 'configuration_updated' => 'Настройките са обновени', - 'setting_is_demo_site' => 'Демо страница', - 'setting_is_demo_site_explain' => 'Ако поставите отметка в това поле, тази инсталация ще се държи така, сякаш това е демонстрационният сайт, което може да има странни странични ефекти.', - 'block_code_bounced' => 'Имейл съобщение(я) отскочиха', - 'block_code_expired' => 'Демо профилът изтече', - 'no_block_code' => 'Няма причина за блокиране или потребителят не е блокиран', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Потребителят все още не е потвърдил новия имейл адрес', - 'admin_update_email' => 'Противно на страницата на потребителския профил, потребителят НЯМА да бъде уведомен, че имейл адресът им е променен!', - 'update_user' => 'Редактиране на потребител', - 'updated_user' => 'Данните на потребителя бяха променени.', - 'delete_user' => 'Изтрий потребител :email', - 'user_deleted' => 'Този потребител беше изтрит', - 'send_test_email' => 'Изпращане на тестово имейл съобщение', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Изпрати съобщение', - 'send_test_triggered' => 'Тестът се задейства. Проверете входящата си поща и лог файловете.', - 'give_admin_careful' => 'Потребителите, на които са предоставени администраторски права, могат да отнемат вашите права. Бъдете внимателен.', - 'admin_maintanance_title' => 'Поддръжка', - 'admin_maintanance_expl' => 'Няколко изящни бутона за поддръжка на Firefly III', - 'admin_maintenance_clear_cache' => 'Изчисти кеша', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Управление', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Управление на потребители', + 'list_all_users' => 'Всички потребители', + 'all_users' => 'Всички потребители', + 'instance_configuration' => 'Конфигурация', + 'firefly_instance_configuration' => 'Опции за конфигурация на Firefly III', + 'setting_single_user_mode' => 'Режим за един потребител', + 'setting_single_user_mode_explain' => 'По подразбиране Firefly III приема само една (1) регистрация: Вие. Това е мярка за сигурност предотвратяваща други да използват вашата инсталация, освен ако не им разрешите. Бъдещите регистрации са блокирани. Когато премахнете отметката от това поле и други ще могат да използват вашия инсталация, ако приемем че могат да я достигнат (когато е свързана с Интернет).', + 'store_configuration' => 'Запази конфигурацията', + 'single_user_administration' => 'Управление на потребителя за :email', + 'edit_user' => 'Редактиране на потребител :email', + 'hidden_fields_preferences' => 'Можете да активирате повече опции за транзакции във вашите настройки.', + 'user_data_information' => 'Данни на потребителя', + 'user_information' => 'Информация за потребителя', + 'total_size' => 'общ размер', + 'budget_or_budgets' => ':count бюджет|:count бюджети', + 'budgets_with_limits' => ':count бюджет с дефинирана сума|:count бюджети с дефинирани суми', + 'nr_of_rules_in_total_groups' => ':count_rules правило(а) и :count_groups група(и) правила', + 'tag_or_tags' => ':count етикет|:count етикети', + 'configuration_updated' => 'Настройките са обновени', + 'setting_is_demo_site' => 'Демо страница', + 'setting_is_demo_site_explain' => 'Ако поставите отметка в това поле, тази инсталация ще се държи така, сякаш това е демонстрационният сайт, което може да има странни странични ефекти.', + 'block_code_bounced' => 'Имейл съобщение(я) отскочиха', + 'block_code_expired' => 'Демо профилът изтече', + 'no_block_code' => 'Няма причина за блокиране или потребителят не е блокиран', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Потребителят все още не е потвърдил новия имейл адрес', + 'admin_update_email' => 'Противно на страницата на потребителския профил, потребителят НЯМА да бъде уведомен, че имейл адресът им е променен!', + 'update_user' => 'Редактиране на потребител', + 'updated_user' => 'Данните на потребителя бяха променени.', + 'delete_user' => 'Изтрий потребител :email', + 'user_deleted' => 'Този потребител беше изтрит', + 'send_test_email' => 'Изпращане на тестово имейл съобщение', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Изпрати съобщение', + 'send_test_triggered' => 'Тестът се задейства. Проверете входящата си поща и лог файловете.', + 'give_admin_careful' => 'Потребителите, на които са предоставени администраторски права, могат да отнемат вашите права. Бъдете внимателен.', + 'admin_maintanance_title' => 'Поддръжка', + 'admin_maintanance_expl' => 'Няколко изящни бутона за поддръжка на Firefly III', + 'admin_maintenance_clear_cache' => 'Изчисти кеша', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Описание на разделена транзакция', - 'split_transaction_title_help' => 'Ако създадете разделена транзакция, трябва да има глобално описание за всички раздели на транзакцията.', - 'split_title_help' => 'Ако създадете разделена транзакция, трябва да има глобално описание за всички раздели на транзакцията.', - 'you_create_transfer' => 'Създавате прехвърляне.', - 'you_create_withdrawal' => 'Създавате теглене.', - 'you_create_deposit' => 'Създавате депозит.', + 'split_transaction_title' => 'Описание на разделена транзакция', + 'split_transaction_title_help' => 'Ако създадете разделена транзакция, трябва да има глобално описание за всички раздели на транзакцията.', + 'split_title_help' => 'Ако създадете разделена транзакция, трябва да има глобално описание за всички раздели на транзакцията.', + 'you_create_transfer' => 'Създавате прехвърляне.', + 'you_create_withdrawal' => 'Създавате теглене.', + 'you_create_deposit' => 'Създавате депозит.', // links - 'journal_link_configuration' => 'Конфигурация на връзки за транзакции', - 'create_new_link_type' => 'Създаване на нов тип връзка', - 'store_new_link_type' => 'Запамети нов тип връзка', - 'update_link_type' => 'Редактирай тип връзка', - 'edit_link_type' => 'Редактирай тип връзка ":name"', - 'updated_link_type' => 'Редактирана тип връзка ":name"', - 'delete_link_type' => 'Изтрий тип връзка ":name"', - 'deleted_link_type' => 'Изтрита тип връзка ":name"', - 'stored_new_link_type' => 'Запамети нов тип връзка ":name"', - 'cannot_edit_link_type' => 'Невъзможна редакцията на тип връзка ":name"', - 'link_type_help_name' => 'Т.е. "Дубликати"', - 'link_type_help_inward' => 'Т.е. "дубликати"', - 'link_type_help_outward' => 'Т.е. "е дублирана от"', - 'save_connections_by_moving' => 'Запишете връзката между тези транзакции, като ги преместите в друг тип връзка:', - 'do_not_save_connection' => '(не запазвайте връзката)', - 'link_transaction' => 'Свържи транзакция', - 'link_to_other_transaction' => 'Свържете тази транзакция с друга транзакция', - 'select_transaction_to_link' => 'Изберете транзакция с която да свържете тази транзакция. Връзките понастоящем не се използват в Firefly III (освен че са показани), но смятам да променя това в бъдеще. Използвайте полето за търсене, за да изберете транзакция по заглавие или по идентификатор. Ако искате да добавите персонализирани типове връзки, прегледайте секцията за администриране.', - 'this_transaction' => 'Тази транзакция', - 'transaction' => 'Транзакция', - 'comments' => 'Коментари', - 'link_notes' => 'Бележки, които искате да запазите с връзката.', - 'invalid_link_selection' => 'Тези транзакции не могат да се свържат', - 'selected_transaction' => 'Избрани транзакции', - 'journals_linked' => 'Транзакциите са свързани.', - 'journals_error_linked' => 'Тези транзакции са вече свързани.', - 'journals_link_to_self' => 'Не може да свържете транзакция към самата нея', - 'journal_links' => 'Връзки на транзакция', - 'this_withdrawal' => 'Това теглене', - 'this_deposit' => 'Този депозит', - 'this_transfer' => 'Това прехвърляне', - 'overview_for_link' => 'Общ преглед за тип връзка ":name"', - 'source_transaction' => 'Източник транзакция', - 'link_description' => 'Описание на връзка', - 'destination_transaction' => 'Дестинация на транзакция', - 'delete_journal_link' => 'Изтрий връзката между :source и :destination', - 'deleted_link' => 'Изтрита връзка', + 'journal_link_configuration' => 'Конфигурация на връзки за транзакции', + 'create_new_link_type' => 'Създаване на нов тип връзка', + 'store_new_link_type' => 'Запамети нов тип връзка', + 'update_link_type' => 'Редактирай тип връзка', + 'edit_link_type' => 'Редактирай тип връзка ":name"', + 'updated_link_type' => 'Редактирана тип връзка ":name"', + 'delete_link_type' => 'Изтрий тип връзка ":name"', + 'deleted_link_type' => 'Изтрита тип връзка ":name"', + 'stored_new_link_type' => 'Запамети нов тип връзка ":name"', + 'cannot_edit_link_type' => 'Невъзможна редакцията на тип връзка ":name"', + 'link_type_help_name' => 'Т.е. "Дубликати"', + 'link_type_help_inward' => 'Т.е. "дубликати"', + 'link_type_help_outward' => 'Т.е. "е дублирана от"', + 'save_connections_by_moving' => 'Запишете връзката между тези транзакции, като ги преместите в друг тип връзка:', + 'do_not_save_connection' => '(не запазвайте връзката)', + 'link_transaction' => 'Свържи транзакция', + 'link_to_other_transaction' => 'Свържете тази транзакция с друга транзакция', + 'select_transaction_to_link' => 'Изберете транзакция с която да свържете тази транзакция. Връзките понастоящем не се използват в Firefly III (освен че са показани), но смятам да променя това в бъдеще. Използвайте полето за търсене, за да изберете транзакция по заглавие или по идентификатор. Ако искате да добавите персонализирани типове връзки, прегледайте секцията за администриране.', + 'this_transaction' => 'Тази транзакция', + 'transaction' => 'Транзакция', + 'comments' => 'Коментари', + 'link_notes' => 'Бележки, които искате да запазите с връзката.', + 'invalid_link_selection' => 'Тези транзакции не могат да се свържат', + 'selected_transaction' => 'Избрани транзакции', + 'journals_linked' => 'Транзакциите са свързани.', + 'journals_error_linked' => 'Тези транзакции са вече свързани.', + 'journals_link_to_self' => 'Не може да свържете транзакция към самата нея', + 'journal_links' => 'Връзки на транзакция', + 'this_withdrawal' => 'Това теглене', + 'this_deposit' => 'Този депозит', + 'this_transfer' => 'Това прехвърляне', + 'overview_for_link' => 'Общ преглед за тип връзка ":name"', + 'source_transaction' => 'Източник транзакция', + 'link_description' => 'Описание на връзка', + 'destination_transaction' => 'Дестинация на транзакция', + 'delete_journal_link' => 'Изтрий връзката между :source и :destination', + 'deleted_link' => 'Изтрита връзка', // link translations: - 'Paid_name' => 'Платени', - 'Refund_name' => 'Кеш бек', - 'Reimbursement_name' => 'Възстановяване', - 'Related_name' => 'Сродни', - 'relates to_inward' => 'свързано с', - 'is (partially) refunded by_inward' => 'е (частично) възстановено от', - 'is (partially) paid for by_inward' => 'е (частично) платено от', - 'is (partially) reimbursed by_inward' => 'е (частично) възстановено от', - 'inward_transaction' => 'Входяща транзакция', - 'outward_transaction' => 'Изходяща транзакция', - 'relates to_outward' => 'свързано с', - '(partially) refunds_outward' => '(частично) възстановява', - '(partially) pays for_outward' => '(частично) плаща за', - '(partially) reimburses_outward' => '(частично) възстановява', - 'is (partially) refunded by' => 'е (частично) възстановено от', - 'is (partially) paid for by' => 'е (частично) платено от', - 'is (partially) reimbursed by' => 'е (частично) възстановено от', - 'relates to' => 'свързано с', - '(partially) refunds' => '(частично) възстановява', - '(partially) pays for' => '(частично) плаща за', - '(partially) reimburses' => '(частично) възстановява', + 'Paid_name' => 'Платени', + 'Refund_name' => 'Кеш бек', + 'Reimbursement_name' => 'Възстановяване', + 'Related_name' => 'Сродни', + 'relates to_inward' => 'свързано с', + 'is (partially) refunded by_inward' => 'е (частично) възстановено от', + 'is (partially) paid for by_inward' => 'е (частично) платено от', + 'is (partially) reimbursed by_inward' => 'е (частично) възстановено от', + 'inward_transaction' => 'Входяща транзакция', + 'outward_transaction' => 'Изходяща транзакция', + 'relates to_outward' => 'свързано с', + '(partially) refunds_outward' => '(частично) възстановява', + '(partially) pays for_outward' => '(частично) плаща за', + '(partially) reimburses_outward' => '(частично) възстановява', + 'is (partially) refunded by' => 'е (частично) възстановено от', + 'is (partially) paid for by' => 'е (частично) платено от', + 'is (partially) reimbursed by' => 'е (частично) възстановено от', + 'relates to' => 'свързано с', + '(partially) refunds' => '(частично) възстановява', + '(partially) pays for' => '(частично) плаща за', + '(partially) reimburses' => '(частично) възстановява', // split a transaction: - 'splits' => 'Раздели', - 'add_another_split' => 'Добавяне на друг раздел', - 'cannot_edit_opening_balance' => 'Не можете да редактирате началния баланс на сметката.', - 'no_edit_multiple_left' => 'Не сте избрали валидни транзакции, които да редактирате.', - 'breadcrumb_convert_group' => 'Преобразувай транзакция', - 'convert_invalid_source' => 'Информацията за източника е невалидна за транзакция #%d.', - 'convert_invalid_destination' => 'Информацията за дестинацията е невалидна за транзакция #%d.', - 'create_another' => 'След съхраняването се върнете тук, за да създадете нова.', - 'after_update_create_another' => 'След обновяването се върнете тук, за да продължите с редакцията.', - 'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.', - 'reset_after' => 'Изчистване на формуляра след изпращане', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Разшири раздел', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Свий раздел', + 'splits' => 'Раздели', + 'add_another_split' => 'Добавяне на друг раздел', + 'cannot_edit_opening_balance' => 'Не можете да редактирате началния баланс на сметката.', + 'no_edit_multiple_left' => 'Не сте избрали валидни транзакции, които да редактирате.', + 'breadcrumb_convert_group' => 'Преобразувай транзакция', + 'convert_invalid_source' => 'Информацията за източника е невалидна за транзакция #%d.', + 'convert_invalid_destination' => 'Информацията за дестинацията е невалидна за транзакция #%d.', + 'create_another' => 'След съхраняването се върнете тук, за да създадете нова.', + 'after_update_create_another' => 'След обновяването се върнете тук, за да продължите с редакцията.', + 'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.', + 'reset_after' => 'Изчистване на формуляра след изпращане', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Разшири раздел', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Свий раздел', // object groups - 'default_group_title_name' => '(без група)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(без група)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Нека да създадем сметка за активи!', - 'no_accounts_intro_asset' => 'Все още нямате сметки за активи. Сметките за активи са вашите основни сметки: вашата разплащателна сметка, спестовна сметка, споделена сметка или дори вашата кредитна карта.', - 'no_accounts_imperative_asset' => 'За да започнете да използвате Firefly III, трябва да създадете поне една сметка за активи. Нека го направим сега:', - 'no_accounts_create_asset' => 'Създай сметка за активи', - 'no_accounts_title_expense' => 'Нека да създадем сметка за разходи!', - 'no_accounts_intro_expense' => 'Все още нямате сметки за разходи. Сметките за разходи са местата, където харчите пари, като магазини и супермаркети.', - 'no_accounts_imperative_expense' => 'Сметките за разходи се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно, ако искате. Нека сега създадем такава:', - 'no_accounts_create_expense' => 'Създай сметка за разходи', - 'no_accounts_title_revenue' => 'Нека да създадем сметка за приходи!', - 'no_accounts_intro_revenue' => 'Все още нямате сметки за приходи. Приходните сметки са местата, от които получавате пари, например от вашия работодател.', - 'no_accounts_imperative_revenue' => 'Приходните сметки се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно, ако искате. Нека сега създадем такава:', - 'no_accounts_create_revenue' => 'Създай сметка за приходи', - 'no_accounts_title_liabilities' => 'Нека да създадем задължение!', - 'no_accounts_intro_liabilities' => 'Все още нямате задължения. Задължения са сметките, които регистрират вашите (студентски) заеми и други дългове.', - 'no_accounts_imperative_liabilities' => 'Не е необходимо да използвате тази функция, но тя може да бъде полезна, ако искате да следите тези неща.', - 'no_accounts_create_liabilities' => 'Създай задължение', - 'no_budgets_title_default' => 'Нека да създадем бюджет', - 'no_rules_title_default' => 'Нека да създадем правило', - 'no_budgets_intro_default' => 'Все още нямате бюджети. Бюджетите се използват за организиране на разходите ви в логически групи, на които можете да дадете лимит, за да ограничите разходите си.', - 'no_rules_intro_default' => 'Все още нямаш правила. Правилата са силни автоматизации, които могат да управляват транзации за теб.', - 'no_rules_imperative_default' => 'Правилата могат да бъдат много полезни, когато управляваш транзакции. Нека да създадем едно сега:', - 'no_budgets_imperative_default' => 'Бюджетите са основните инструменти на финансовото управление. Нека сега създадем такъв:', - 'no_budgets_create_default' => 'Създай бюджет', - 'no_rules_create_default' => 'Създай правило', - 'no_categories_title_default' => 'Нека да създадем категория!', - 'no_categories_intro_default' => 'Все още нямате категории. Категориите се използват за фина настройка на вашите транзакции и етикетиране с тяхната определена категория.', - 'no_categories_imperative_default' => 'Категориите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такава:', - 'no_categories_create_default' => 'Създай категория', - 'no_tags_title_default' => 'Нека да създадем етикет!', - 'no_tags_intro_default' => 'Все още нямате етикети. Етикетите се използват за фина настройка на вашите транзакции и маркирането им с конкретни ключови думи.', - 'no_tags_imperative_default' => 'Етикетите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такъв:', - 'no_tags_create_default' => 'Създай етикет', - 'no_transactions_title_withdrawal' => 'Нека да създадем разход!', - 'no_transactions_intro_withdrawal' => 'Все още нямате разходи. Трябва да създадете разходи, за да започнете да управлявате финансите си.', - 'no_transactions_imperative_withdrawal' => 'Похарчихте ли някакви пари? След това трябва да го запишете:', - 'no_transactions_create_withdrawal' => 'Създай разход', - 'no_transactions_title_deposit' => 'Нека да създадем приход!', - 'no_transactions_intro_deposit' => 'Все още нямате записан доход. Трябва да създадете записи за доходи, за да започнете да управлявате финансите си.', - 'no_transactions_imperative_deposit' => 'Получихте ли някакви пари? След това трябва да го запишете:', - 'no_transactions_create_deposit' => 'Създай депозит', - 'no_transactions_title_transfers' => 'Нека да създадем прехвърляне!', - 'no_transactions_intro_transfers' => 'Все още нямате прехвърляния. Когато премествате пари между сметки за активи те се записват като прехвърляния.', - 'no_transactions_imperative_transfers' => 'Преместихте ли някакви пари? След това трябва да го запишете:', - 'no_transactions_create_transfers' => 'Създай прехвърляне', - 'no_piggies_title_default' => 'Нека да създадем касичка!', - 'no_piggies_intro_default' => 'Все още нямате касички. Можете да създадете касички, за да разделите спестяванията си и да следите за какво спестявате.', - 'no_piggies_imperative_default' => 'Имате ли неща, за които спестявате пари? Създайте касичка и следете:', - 'no_piggies_create_default' => 'Създай нова касичка', - 'no_bills_title_default' => 'Нека да създадем сметка!', - 'no_bills_intro_default' => 'Все още нямате сметки. Можете да създавате сметки, за да следите редовни разходи, като наема или застраховката си.', - 'no_bills_imperative_default' => 'Имате ли такива редовни сметки? Създайте сметка и следете плащанията си:', - 'no_bills_create_default' => 'Създай сметка', + 'no_accounts_title_asset' => 'Нека да създадем сметка за активи!', + 'no_accounts_intro_asset' => 'Все още нямате сметки за активи. Сметките за активи са вашите основни сметки: вашата разплащателна сметка, спестовна сметка, споделена сметка или дори вашата кредитна карта.', + 'no_accounts_imperative_asset' => 'За да започнете да използвате Firefly III, трябва да създадете поне една сметка за активи. Нека го направим сега:', + 'no_accounts_create_asset' => 'Създай сметка за активи', + 'no_accounts_title_expense' => 'Нека да създадем сметка за разходи!', + 'no_accounts_intro_expense' => 'Все още нямате сметки за разходи. Сметките за разходи са местата, където харчите пари, като магазини и супермаркети.', + 'no_accounts_imperative_expense' => 'Сметките за разходи се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно, ако искате. Нека сега създадем такава:', + 'no_accounts_create_expense' => 'Създай сметка за разходи', + 'no_accounts_title_revenue' => 'Нека да създадем сметка за приходи!', + 'no_accounts_intro_revenue' => 'Все още нямате сметки за приходи. Приходните сметки са местата, от които получавате пари, например от вашия работодател.', + 'no_accounts_imperative_revenue' => 'Приходните сметки се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно, ако искате. Нека сега създадем такава:', + 'no_accounts_create_revenue' => 'Създай сметка за приходи', + 'no_accounts_title_liabilities' => 'Нека да създадем задължение!', + 'no_accounts_intro_liabilities' => 'Все още нямате задължения. Задължения са сметките, които регистрират вашите (студентски) заеми и други дългове.', + 'no_accounts_imperative_liabilities' => 'Не е необходимо да използвате тази функция, но тя може да бъде полезна, ако искате да следите тези неща.', + 'no_accounts_create_liabilities' => 'Създай задължение', + 'no_budgets_title_default' => 'Нека да създадем бюджет', + 'no_rules_title_default' => 'Нека да създадем правило', + 'no_budgets_intro_default' => 'Все още нямате бюджети. Бюджетите се използват за организиране на разходите ви в логически групи, на които можете да дадете лимит, за да ограничите разходите си.', + 'no_rules_intro_default' => 'Все още нямаш правила. Правилата са силни автоматизации, които могат да управляват транзации за теб.', + 'no_rules_imperative_default' => 'Правилата могат да бъдат много полезни, когато управляваш транзакции. Нека да създадем едно сега:', + 'no_budgets_imperative_default' => 'Бюджетите са основните инструменти на финансовото управление. Нека сега създадем такъв:', + 'no_budgets_create_default' => 'Създай бюджет', + 'no_rules_create_default' => 'Създай правило', + 'no_categories_title_default' => 'Нека да създадем категория!', + 'no_categories_intro_default' => 'Все още нямате категории. Категориите се използват за фина настройка на вашите транзакции и етикетиране с тяхната определена категория.', + 'no_categories_imperative_default' => 'Категориите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такава:', + 'no_categories_create_default' => 'Създай категория', + 'no_tags_title_default' => 'Нека да създадем етикет!', + 'no_tags_intro_default' => 'Все още нямате етикети. Етикетите се използват за фина настройка на вашите транзакции и маркирането им с конкретни ключови думи.', + 'no_tags_imperative_default' => 'Етикетите се създават автоматично, когато създавате транзакции, но можете да създадете и ръчно. Нека сега създадем такъв:', + 'no_tags_create_default' => 'Създай етикет', + 'no_transactions_title_withdrawal' => 'Нека да създадем разход!', + 'no_transactions_intro_withdrawal' => 'Все още нямате разходи. Трябва да създадете разходи, за да започнете да управлявате финансите си.', + 'no_transactions_imperative_withdrawal' => 'Похарчихте ли някакви пари? След това трябва да го запишете:', + 'no_transactions_create_withdrawal' => 'Създай разход', + 'no_transactions_title_deposit' => 'Нека да създадем приход!', + 'no_transactions_intro_deposit' => 'Все още нямате записан доход. Трябва да създадете записи за доходи, за да започнете да управлявате финансите си.', + 'no_transactions_imperative_deposit' => 'Получихте ли някакви пари? След това трябва да го запишете:', + 'no_transactions_create_deposit' => 'Създай депозит', + 'no_transactions_title_transfers' => 'Нека да създадем прехвърляне!', + 'no_transactions_intro_transfers' => 'Все още нямате прехвърляния. Когато премествате пари между сметки за активи те се записват като прехвърляния.', + 'no_transactions_imperative_transfers' => 'Преместихте ли някакви пари? След това трябва да го запишете:', + 'no_transactions_create_transfers' => 'Създай прехвърляне', + 'no_piggies_title_default' => 'Нека да създадем касичка!', + 'no_piggies_intro_default' => 'Все още нямате касички. Можете да създадете касички, за да разделите спестяванията си и да следите за какво спестявате.', + 'no_piggies_imperative_default' => 'Имате ли неща, за които спестявате пари? Създайте касичка и следете:', + 'no_piggies_create_default' => 'Създай нова касичка', + 'no_bills_title_default' => 'Нека да създадем сметка!', + 'no_bills_intro_default' => 'Все още нямате сметки. Можете да създавате сметки, за да следите редовни разходи, като наема или застраховката си.', + 'no_bills_imperative_default' => 'Имате ли такива редовни сметки? Създайте сметка и следете плащанията си:', + 'no_bills_create_default' => 'Създай сметка', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Повтарящи се транзакции', - 'repeat_until_in_past' => 'Тази повтаряща се транзакция спря да се повтаря на :date.', - 'recurring_calendar_view' => 'Календар', - 'no_recurring_title_default' => 'Нека да създадем повтаряща се транзакция!', - 'no_recurring_intro_default' => 'Все още нямате повтарящи се транзакции. Можете да ги използвате, за да накарате Firefly III автоматично да създава транзакции за вас.', - 'no_recurring_imperative_default' => 'Това е доста сложна функция, но може да бъде изключително полезна. Уверете се, че сте прочели документацията (?) - иконата в горния десен ъгъл), преди да продължите.', - 'no_recurring_create_default' => 'Създай повтаряща се транзакция', - 'make_new_recurring' => 'Създай повтаряща се транзакция', - 'recurring_daily' => 'Всеки ден', - 'recurring_weekly' => 'Всяка седмица в :weekday', - 'recurring_weekly_skip' => 'Всяка :skip (-ва/-ра/-та) седмица в :weekday', - 'recurring_monthly' => 'Всеки месец на :dayOfMonth -ия ден', - 'recurring_monthly_skip' => 'Всеки :skip (-ви/-ри/-ти) месец на :dayOfMonth -ия ден', - 'recurring_ndom' => 'Всеки месец на :dayOfMonth :weekday', - 'recurring_yearly' => 'Всяка година на :date', - 'overview_for_recurrence' => 'Общ преглед на повтаряща се транзакция ":title"', - 'warning_duplicates_repetitions' => 'В редки случаи датите се появяват два пъти в този списък. Това може да се случи, когато множество повторения се сблъскат. Firefly III винаги ще генерира по една транзакция на ден.', - 'created_transactions' => 'Сродни транзакции', - 'expected_withdrawals' => 'Очаквани тегления', - 'expected_deposits' => 'Очаквани депозити', - 'expected_transfers' => 'Очаквани прехвърляния', - 'created_withdrawals' => 'Създадени тегления', - 'created_deposits' => 'Създадени депозити', - 'created_transfers' => 'Създадени прехвърляния', - 'recurring_info' => 'Повтарящи се транзакции :count / :total', - 'created_from_recurrence' => 'Създадено от повтаряща се транзакция ":title" (#:id)', - 'recurring_never_cron' => 'Изглежда, че задачата на cron, която е необходима за поддържане на повтарящи се транзакции, никога не се е изпълнявала. Това, разбира се, е нормално, когато току-що сте инсталирали Firefly III, но това трябва да е нещо, което да настроите възможно най-скоро. Моля, разгледайте помощните страници, като използвате иконата (?) в горния десен ъгъл на страницата.', - 'recurring_cron_long_ago' => 'Изглежда, че са минали повече от 36 часа, откакто задачата на cron за поддръжка на повтарящи се транзакции е задействана за последен път. Сигурни ли сте, че е настроена правилно? Моля, разгледайте помощните страници, като използвате иконата (?) в горния десен ъгъл на страницата.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Повтарящи се транзакции', + 'repeat_until_in_past' => 'Тази повтаряща се транзакция спря да се повтаря на :date.', + 'recurring_calendar_view' => 'Календар', + 'no_recurring_title_default' => 'Нека да създадем повтаряща се транзакция!', + 'no_recurring_intro_default' => 'Все още нямате повтарящи се транзакции. Можете да ги използвате, за да накарате Firefly III автоматично да създава транзакции за вас.', + 'no_recurring_imperative_default' => 'Това е доста сложна функция, но може да бъде изключително полезна. Уверете се, че сте прочели документацията (?) - иконата в горния десен ъгъл), преди да продължите.', + 'no_recurring_create_default' => 'Създай повтаряща се транзакция', + 'make_new_recurring' => 'Създай повтаряща се транзакция', + 'recurring_daily' => 'Всеки ден', + 'recurring_weekly' => 'Всяка седмица в :weekday', + 'recurring_weekly_skip' => 'Всяка :skip (-ва/-ра/-та) седмица в :weekday', + 'recurring_monthly' => 'Всеки месец на :dayOfMonth -ия ден', + 'recurring_monthly_skip' => 'Всеки :skip (-ви/-ри/-ти) месец на :dayOfMonth -ия ден', + 'recurring_ndom' => 'Всеки месец на :dayOfMonth :weekday', + 'recurring_yearly' => 'Всяка година на :date', + 'overview_for_recurrence' => 'Общ преглед на повтаряща се транзакция ":title"', + 'warning_duplicates_repetitions' => 'В редки случаи датите се появяват два пъти в този списък. Това може да се случи, когато множество повторения се сблъскат. Firefly III винаги ще генерира по една транзакция на ден.', + 'created_transactions' => 'Сродни транзакции', + 'expected_withdrawals' => 'Очаквани тегления', + 'expected_deposits' => 'Очаквани депозити', + 'expected_transfers' => 'Очаквани прехвърляния', + 'created_withdrawals' => 'Създадени тегления', + 'created_deposits' => 'Създадени депозити', + 'created_transfers' => 'Създадени прехвърляния', + 'recurring_info' => 'Повтарящи се транзакции :count / :total', + 'created_from_recurrence' => 'Създадено от повтаряща се транзакция ":title" (#:id)', + 'recurring_never_cron' => 'Изглежда, че задачата на cron, която е необходима за поддържане на повтарящи се транзакции, никога не се е изпълнявала. Това, разбира се, е нормално, когато току-що сте инсталирали Firefly III, но това трябва да е нещо, което да настроите възможно най-скоро. Моля, разгледайте помощните страници, като използвате иконата (?) в горния десен ъгъл на страницата.', + 'recurring_cron_long_ago' => 'Изглежда, че са минали повече от 36 часа, откакто задачата на cron за поддръжка на повтарящи се транзакции е задействана за последен път. Сигурни ли сте, че е настроена правилно? Моля, разгледайте помощните страници, като използвате иконата (?) в горния десен ъгъл на страницата.', - 'create_new_recurrence' => 'Създай нова повтаряща се транзакция', - 'help_first_date' => 'Посочете първото очаквано повторение. Това трябва да бъде в бъдещето.', - 'help_first_date_no_past' => 'Посочете първото очаквано повторение. Firefly III няма да създава транзакции в миналото.', - 'no_currency' => '(без валута)', - 'mandatory_for_recurring' => 'Задължителна информация за повторение', - 'mandatory_for_transaction' => 'Задължителна информация за транзакция', - 'optional_for_recurring' => 'Незадължителна информация за повторение', - 'optional_for_transaction' => 'Незадължителна информация за транзакция', - 'change_date_other_options' => 'Променете "първа дата", за да видите още опции.', - 'mandatory_fields_for_tranaction' => 'Стойностите тук ще влязат в създадената транзакция (и)', - 'click_for_calendar' => 'Кликнете тук за календар, който ви показва кога транзакцията ще се повтори.', - 'repeat_forever' => 'Повтаряй завинаги', - 'repeat_until_date' => 'Повтаряй до дата', - 'repeat_times' => 'Повтаряй определен брой пъти', - 'recurring_skips_one' => 'През едно', - 'recurring_skips_more' => 'Пропусни :count събития', - 'store_new_recurrence' => 'Запамети повтаряща се транзакция', - 'stored_new_recurrence' => 'Повтаряща се транзакция ":title" беше успешно запаметена.', - 'edit_recurrence' => 'Редактирай повтаряща се транзакция ":title"', - 'recurring_repeats_until' => 'Повтаряй до :date', - 'recurring_repeats_forever' => 'Повтаря се завинаги', - 'recurring_repeats_x_times' => 'Повтаря се :count път|Повтаря се :count пъти', - 'update_recurrence' => 'Обнови повтарящата се транзакция', - 'updated_recurrence' => 'Обновена е повтарящата се транзакция ":title"', - 'recurrence_is_inactive' => 'Тази повтаряща се транзакция не е активна и няма да генерира нови транзакции.', - 'delete_recurring' => 'Изтрий повтаряща се транзакция ":title"', - 'new_recurring_transaction' => 'Нова повтаряща се транзакция', - 'help_weekend' => 'Какво трябва да направи Firefly III, когато повтарящата се транзакция се падне в събота или неделя?', - 'do_nothing' => 'Просто създай транзакцията', - 'skip_transaction' => 'Пропусни транзакцията', - 'jump_to_friday' => 'Създай транзакцията на предишния петък', - 'jump_to_monday' => 'Създай транзакцията на следващия понеделник', - 'will_jump_friday' => 'Ще бъде създадена в петък вместо уикендите.', - 'will_jump_monday' => 'Ще бъде създадена в понеделник вместо уикендите.', - 'except_weekends' => 'Освен уикендите', - 'recurrence_deleted' => 'Повтарящата се транзакция ":title" беше изтрита', + 'create_new_recurrence' => 'Създай нова повтаряща се транзакция', + 'help_first_date' => 'Посочете първото очаквано повторение. Това трябва да бъде в бъдещето.', + 'help_first_date_no_past' => 'Посочете първото очаквано повторение. Firefly III няма да създава транзакции в миналото.', + 'no_currency' => '(без валута)', + 'mandatory_for_recurring' => 'Задължителна информация за повторение', + 'mandatory_for_transaction' => 'Задължителна информация за транзакция', + 'optional_for_recurring' => 'Незадължителна информация за повторение', + 'optional_for_transaction' => 'Незадължителна информация за транзакция', + 'change_date_other_options' => 'Променете "първа дата", за да видите още опции.', + 'mandatory_fields_for_tranaction' => 'Стойностите тук ще влязат в създадената транзакция (и)', + 'click_for_calendar' => 'Кликнете тук за календар, който ви показва кога транзакцията ще се повтори.', + 'repeat_forever' => 'Повтаряй завинаги', + 'repeat_until_date' => 'Повтаряй до дата', + 'repeat_times' => 'Повтаряй определен брой пъти', + 'recurring_skips_one' => 'През едно', + 'recurring_skips_more' => 'Пропусни :count събития', + 'store_new_recurrence' => 'Запамети повтаряща се транзакция', + 'stored_new_recurrence' => 'Повтаряща се транзакция ":title" беше успешно запаметена.', + 'edit_recurrence' => 'Редактирай повтаряща се транзакция ":title"', + 'recurring_repeats_until' => 'Повтаряй до :date', + 'recurring_repeats_forever' => 'Повтаря се завинаги', + 'recurring_repeats_x_times' => 'Повтаря се :count път|Повтаря се :count пъти', + 'update_recurrence' => 'Обнови повтарящата се транзакция', + 'updated_recurrence' => 'Обновена е повтарящата се транзакция ":title"', + 'recurrence_is_inactive' => 'Тази повтаряща се транзакция не е активна и няма да генерира нови транзакции.', + 'delete_recurring' => 'Изтрий повтаряща се транзакция ":title"', + 'new_recurring_transaction' => 'Нова повтаряща се транзакция', + 'help_weekend' => 'Какво трябва да направи Firefly III, когато повтарящата се транзакция се падне в събота или неделя?', + 'do_nothing' => 'Просто създай транзакцията', + 'skip_transaction' => 'Пропусни транзакцията', + 'jump_to_friday' => 'Създай транзакцията на предишния петък', + 'jump_to_monday' => 'Създай транзакцията на следващия понеделник', + 'will_jump_friday' => 'Ще бъде създадена в петък вместо уикендите.', + 'will_jump_monday' => 'Ще бъде създадена в понеделник вместо уикендите.', + 'except_weekends' => 'Освен уикендите', + 'recurrence_deleted' => 'Повтарящата се транзакция ":title" беше изтрита', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Баланс (:currency)', - 'box_spent_in_currency' => 'Похарчени (:currency)', - 'box_earned_in_currency' => 'Спечелени (:currency)', - 'box_budgeted_in_currency' => 'Бюджетирани (:currency)', - 'box_bill_paid_in_currency' => 'Платени сметки (:currency)', - 'box_bill_unpaid_in_currency' => 'Неплатени сметки (:currency)', - 'box_left_to_spend_in_currency' => 'Останали за харчене (:currency)', - 'box_net_worth_in_currency' => 'Общо богатство (:currency)', - 'box_spend_per_day' => 'Останали за харчене на ден: :amount', + 'box_balance_in_currency' => 'Баланс (:currency)', + 'box_spent_in_currency' => 'Похарчени (:currency)', + 'box_earned_in_currency' => 'Спечелени (:currency)', + 'box_budgeted_in_currency' => 'Бюджетирани (:currency)', + 'box_bill_paid_in_currency' => 'Платени сметки (:currency)', + 'box_bill_unpaid_in_currency' => 'Неплатени сметки (:currency)', + 'box_left_to_spend_in_currency' => 'Останали за харчене (:currency)', + 'box_net_worth_in_currency' => 'Общо богатство (:currency)', + 'box_spend_per_day' => 'Останали за харчене на ден: :amount', // debug page - 'debug_page' => 'Страница за отстраняване на грешки', - 'debug_submit_instructions' => 'Ако имате проблеми, можете да използвате информацията в това поле като информация за отстраняване на грешки. Моля, копирайте и поставете в нов или съществуващ GitHub issue . Той ще генерира красива таблица, която може да се използва за бързо диагностициране на проблема ви.', - 'debug_pretty_table' => 'Ако копирате / поставите полето по-долу в GitHub issue, той ще генерира таблица. Моля, не обграждайте този текст със кавички.', - 'debug_additional_data' => 'Можете също да споделите съдържанието на полето по-долу. Можете също да копирате и поставите това в нов или съществуващ GitHub issue . Съдържанието на това поле обаче може да съдържа лична информация като имена на сметки, данни за транзакции или имейл адреси.', + 'debug_page' => 'Страница за отстраняване на грешки', + 'debug_submit_instructions' => 'Ако имате проблеми, можете да използвате информацията в това поле като информация за отстраняване на грешки. Моля, копирайте и поставете в нов или съществуващ GitHub issue . Той ще генерира красива таблица, която може да се използва за бързо диагностициране на проблема ви.', + 'debug_pretty_table' => 'Ако копирате / поставите полето по-долу в GitHub issue, той ще генерира таблица. Моля, не обграждайте този текст със кавички.', + 'debug_additional_data' => 'Можете също да споделите съдържанието на полето по-долу. Можете също да копирате и поставите това в нов или съществуващ GitHub issue . Съдържанието на това поле обаче може да съдържа лична информация като имена на сметки, данни за транзакции или имейл адреси.', // object groups - 'object_groups_menu_bar' => 'Групи', - 'object_groups_page_title' => 'Групи', - 'object_groups_breadcrumb' => 'Групи', - 'object_groups_index' => 'Общ преглед', - 'object_groups' => 'Групи', - 'object_groups_empty_explain' => 'Някои неща в Firefly III могат да бъдат разделени на групи. Касичките например разполагат с поле „Група“ в екраните за редактиране и създаване. Когато зададете това поле, можете да редактирате имената и реда на групите на тази страница. За повече информация вижте помощните страници в горния десен ъгъл, под иконата (?).', - 'object_group_title' => 'Заглавие', - 'edit_object_group' => 'Редактирай група ":title"', - 'delete_object_group' => 'Изтрий група ":title"', - 'update_object_group' => 'Обнови група', - 'updated_object_group' => 'Успешно обновена група ":title"', - 'deleted_object_group' => 'Успешно изтрита група ":title"', - 'object_group' => 'Група', + 'object_groups_menu_bar' => 'Групи', + 'object_groups_page_title' => 'Групи', + 'object_groups_breadcrumb' => 'Групи', + 'object_groups_index' => 'Общ преглед', + 'object_groups' => 'Групи', + 'object_groups_empty_explain' => 'Някои неща в Firefly III могат да бъдат разделени на групи. Касичките например разполагат с поле „Група“ в екраните за редактиране и създаване. Когато зададете това поле, можете да редактирате имената и реда на групите на тази страница. За повече информация вижте помощните страници в горния десен ъгъл, под иконата (?).', + 'object_group_title' => 'Заглавие', + 'edit_object_group' => 'Редактирай група ":title"', + 'delete_object_group' => 'Изтрий група ":title"', + 'update_object_group' => 'Обнови група', + 'updated_object_group' => 'Успешно обновена група ":title"', + 'deleted_object_group' => 'Успешно изтрита група ":title"', + 'object_group' => 'Група', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/bg_BG/validation.php b/resources/lang/bg_BG/validation.php index 6b29027512..beac2500f0 100644 --- a/resources/lang/bg_BG/validation.php +++ b/resources/lang/bg_BG/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/ca_ES/firefly.php b/resources/lang/ca_ES/firefly.php index dac346e449..2b9c9c6487 100644 --- a/resources/lang/ca_ES/firefly.php +++ b/resources/lang/ca_ES/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Tancar', - 'actions' => 'Accions', - 'edit' => 'Editar', - 'delete' => 'Eliminar', - 'split' => 'Dividir', - 'single_split' => 'Divisió', - 'clone' => 'Duplicar', - 'clone_and_edit' => 'Clona i edita', - 'confirm_action' => 'Confirmar acció', - 'last_seven_days' => 'Últims set dies', - 'last_thirty_days' => 'Últims trenta dies', - 'last_180_days' => 'Últims 180 dies', - 'month_to_date' => 'Mes en curs', - 'year_to_date' => 'Any en curs', - 'YTD' => 'Any en curs', - 'welcome_back' => 'Què està passant?', - 'everything' => 'Tot', - 'today' => 'avui', - 'customRange' => 'Interval personalitzat', - 'date_range' => 'Interval de dates', - 'apply' => 'Aplicar', - 'select_date' => 'Seleccionar data..', - 'cancel' => 'Cancel·lar', - 'from' => 'De', - 'to' => 'A', - 'structure' => 'Estructura', - 'help_translating' => 'Aquest text d\'ajuda encara no està disponible en el teu idioma. Ens ajudaries a traduir-lo?', - 'showEverything' => 'Mostrar tot', - 'never' => 'Mai', - 'no_results_for_empty_search' => 'La cerca era buida, per la qual cosa no s\'ha trobat res.', - 'removed_amount' => 'Eliminat :amount', - 'added_amount' => 'Afegit :amount', - 'asset_account_role_help' => 'Qualsevol opció addicional resultant de la teva elecció, es pot escollir més endavant.', - 'Opening balance' => 'Saldo inicial', - 'create_new_stuff' => 'Crear coses noves', - 'new_withdrawal' => 'Nova retirada', - 'create_new_transaction' => 'Crear una transacció nova', - 'sidebar_frontpage_create' => 'Crear', - 'new_transaction' => 'Nova transacció', - 'no_rules_for_bill' => 'La factura no té normes associades.', - 'go_to_asset_accounts' => 'Veure el teu compte d\'actius', - 'go_to_budgets' => 'Anar als teus pressupostos', - 'go_to_withdrawals' => 'Anar a les teves retirades', - 'clones_journal_x' => 'Aquesta transacció és duplicada de ":description" (#:id)', - 'go_to_categories' => 'Anar a les teves categories', - 'go_to_bills' => 'Anar a les teves factures', - 'go_to_expense_accounts' => 'Veure els teus comptes de despeses', - 'go_to_revenue_accounts' => 'Veure els teus comptes de beneficis', - 'go_to_piggies' => 'Anar a la teva guardiola', - 'new_deposit' => 'Nou dipòsit', - 'new_transfer' => 'Nova transferència', - 'new_transfers' => 'Nova transferència', - 'new_asset_account' => 'Nou compte d\'actiu', - 'new_expense_account' => 'Nou compte de despeses', - 'new_revenue_account' => 'Nou compte de beneficis', - 'new_liabilities_account' => 'Nou deute', - 'new_budget' => 'Nou pressupost', - 'new_bill' => 'Nova factura', - 'block_account_logout' => 'S\'ha tancat la teva sessió. Els comptes bloquejats no poden utilitzar aquest lloc. T\'has registrat amb una adreça de correu vàlida?', - 'flash_success' => 'Èxit!', - 'flash_info' => 'Missatge', - 'flash_warning' => 'Atenció!', - 'flash_error' => 'Error!', - 'flash_danger' => 'Perill!', - 'flash_info_multiple' => 'Hi ha un missatge|Hi ha :count missatges', - 'flash_error_multiple' => 'Hi ha un error|Hi ha :count errors', - 'net_worth' => 'Valor net', - 'help_for_this_page' => 'Ajuda per aquesta pàgina', - 'help_for_this_page_body' => 'Pots trobar més informació sobre aquesta pàgina a la documentació.', - 'two_factor_welcome' => 'Hola!', - 'two_factor_enter_code' => 'Per continuar, si us plau, introdueix el teu codi d\'autenticació en dues passes. La teva aplicació el pot generar per tu.', - 'two_factor_code_here' => 'Introduir codi aquí', - 'two_factor_title' => 'Autenticació en dues passes', - 'authenticate' => 'Autentificar', - 'two_factor_forgot_title' => 'Autenticació en dues passes perduda', - 'two_factor_forgot' => 'He oblidat la meva cosa de dos factors.', - 'two_factor_lost_header' => 'Has perdut la teva autenticació en dues passes?', - 'two_factor_lost_intro' => 'Si també has perdut els teus codis de seguretat, has tingut mala sort. No hi ha res que puguis fer per arreglar-ho des de la interfície web. Tens dues opcions.', - 'two_factor_lost_fix_self' => 'Si tens la teva pròpia instància de Firefly III, llegeix :site_owner i demana-li que reiniciï la teva autenticació de dues passes.', - 'mfa_backup_code' => 'Has fet servir un codi de seguretat per iniciar sessió a Firefly III. No es pot tornar a utilitzar, així que ratlla\'l de la llista.', - 'pref_two_factor_new_backup_codes' => 'Obtenir nous codis de seguretat', - 'pref_two_factor_backup_code_count' => 'Tens :count codi de seguretat vàlid.|Tens :count codis de seguretat vàlids.', - '2fa_i_have_them' => 'Els he guardat!', - 'warning_much_data' => ':days dies de dades poden tardar a carregar-se.', - 'registered' => 'T\'has registrat satisfactòriament!', - 'Default asset account' => 'Compte d\'actius per defecte', - 'no_budget_pointer' => 'Sembla que encara no tens cap pressupost. N\'hauries de crear alguns a la pàgina de pressuposts. Els pressupostos et poden ajudar a fer el seguiment de les teves despeses.', - 'no_bill_pointer' => 'Sembla que encara no tens cap factura. N\'hauries de crear alguna a la pàgina de factures. Les factures et poden ajudar a fer el seguiment de les teves despeses.', - 'Savings account' => 'Compte d\'estalvis', - 'Credit card' => 'Targeta de crèdit', - 'source_accounts' => 'Compte d\'origen|Comptes d\'origen', - 'destination_accounts' => 'Compte de destí|Comptes de destí', - 'user_id_is' => 'El teu identificador d\'usuari és :user', - 'field_supports_markdown' => 'Aquest camp suporta Markdown.', - 'need_more_help' => 'Si necessites més ajuda per utilitzar Firefly III, si us plau, obre un tiquet a GitHub.', - 'reenable_intro_text' => 'També pots tornar a activar la guia d\'introducció.', - 'intro_boxes_after_refresh' => 'Els quadres d\'introducció tornaran a aparèixer quan actualitzis la pàgina.', - 'show_all_no_filter' => 'Mostrar totes les transaccions sense agrupar-les per data.', - 'expenses_by_category' => 'Despeses per categoria', - 'expenses_by_budget' => 'Despeses per pressupost', - 'income_by_category' => 'Ingressos per categoria', - 'expenses_by_asset_account' => 'Despeses per compte d\'actius', - 'expenses_by_expense_account' => 'Despeses per compte de despeses', - 'cannot_redirect_to_account' => 'Firefly III no et pot redirigir a la pàgina correcta. Disculpes.', - 'sum_of_expenses' => 'Total de despeses', - 'sum_of_income' => 'Total d\'ingressos', - 'liabilities' => 'Passius', - 'spent_in_specific_budget' => 'Gastat del pressupost ":budget"', - 'spent_in_specific_double' => 'Gastat del compte ":account"', - 'earned_in_specific_double' => 'Guanyat al compte ":account"', - 'source_account' => 'Compte d\'origen', - 'source_account_reconciliation' => 'No pots editar el compte d\'origen d\'una transacció de consolidació.', - 'destination_account' => 'Compte de destí', - 'destination_account_reconciliation' => 'No pots editar el compte de destí d\'una transacció de reconciliació.', - 'sum_of_expenses_in_budget' => 'Total gastat del pressupost ":budget"', - 'left_in_budget_limit' => 'Disponible per gastar segons el pressupost', - 'current_period' => 'Període actual', - 'show_the_current_period_and_overview' => 'Mostrar el període actual i la vista general', - 'pref_languages_locale' => 'Perquè una llengua diferent de l\'anglès funcioni correctament, el teu sistema operatiu ha de tenir la informació regional correcta. Si no hi és, les dades de monedes, dates i quantitats podrien formatar-se incorrectament.', - 'budget_in_period' => 'Totes les transaccions del pressupost ":name" entre :start i :end en :currency', - 'chart_budget_in_period' => 'Gràfica de totes les transaccions del pressupost ":name" entre :start i :end en :currency', - 'chart_budget_in_period_only_currency' => 'La quantitat la vas pressupostar en :currency, així que la gràfica només mostrarà transaccions en :currency.', - 'chart_account_in_period' => 'Gràfica de totes les transaccions del compte ":name" (:balance) entre :start i :end', - 'chart_category_in_period' => 'Gràfica de totes les transaccions de la categoria ":name" entre :start i :end', - 'chart_category_all' => 'Gràfica de totes les transaccions de la categoria ":name"', - 'clone_withdrawal' => 'Duplicar aquesta retirada', - 'clone_deposit' => 'Duplicar aquest dipòsit', - 'clone_transfer' => 'Duplicar aquesta transferència', - 'multi_select_no_selection' => 'Res seleccionat', - 'multi_select_select_all' => 'Seleccionar-ho tot', - 'multi_select_n_selected' => 'seleccionat', - 'multi_select_all_selected' => 'Tots seleccionats', - 'multi_select_filter_placeholder' => 'Buscar..', - 'intro_next_label' => 'Següent', - 'intro_prev_label' => 'Anterior', - 'intro_skip_label' => 'Ometre', - 'intro_done_label' => 'Fet', - 'between_dates_breadcrumb' => 'Entre :start i :end', - 'all_journals_without_budget' => 'Totes les transaccions sense pressupost', - 'journals_without_budget' => 'Transaccions sense pressupost', - 'all_journals_without_category' => 'Totes les transaccions sense categoria', - 'journals_without_category' => 'Transaccions sense categoria', - 'all_journals_for_account' => 'Totes les transaccions del compte :name', - 'chart_all_journals_for_account' => 'Gràfica de totes les transaccions del compte :name', - 'journals_in_period_for_account' => 'Totes les transaccions del compte :name entre :start i :end', - 'journals_in_period_for_account_js' => 'Totes les transaccions del compte {title} entre {start} i {end}', - 'transferred' => 'Transferit', - 'all_withdrawal' => 'Totes les despeses', - 'all_transactions' => 'Totes les transaccions', - 'title_withdrawal_between' => 'Totes les despeses entre :start i :end', - 'all_deposit' => 'Tots els beneficis', - 'title_deposit_between' => 'Tots els beneficis entre :start i :end', - 'all_transfers' => 'Totes les transferències', - 'title_transfers_between' => 'Totes les transferències entre :start i :end', - 'all_transfer' => 'Totes les transferències', - 'all_journals_for_tag' => 'Totes les transferències amb l\'etiqueta ":tag"', - 'title_transfer_between' => 'Totes les transferències entre :start i :end', - 'all_journals_for_category' => 'Totes les transaccions amb categoria :name', - 'all_journals_for_budget' => 'Totes les transaccions del pressupost :name', - 'chart_all_journals_for_budget' => 'Gràfica de totes les transaccions del pressupost :name', - 'journals_in_period_for_category' => 'Totes les transaccions de la categoria :name entre :start i :end', - 'journals_in_period_for_tag' => 'Totes les transaccions amb etiqueta :tag entre :start i :end', - 'not_available_demo_user' => 'La característica a la qual intentes accedir no es troba disponible pels usuaris de demostració.', - 'exchange_rate_instructions' => 'El compte d\'actius "@name" només accepta transaccions en @native_currency. Si vols utilitzar @foreign_currency, assegurat que la quantitat en @native_currency també sigui coneguda:', - 'transfer_exchange_rate_instructions' => 'El compte d\'actius d\'origen "@source_name" només accepta transaccions en @source_currency. El compte de destí "@dest_name" només accepta transaccions en @dest_currency. Has d\'indicar la quantitat correcta transferida en ambdues monedes.', - 'transaction_data' => 'Dades de transacció', - 'invalid_server_configuration' => 'Configuració del servidor invàlida', - 'invalid_locale_settings' => 'Firefly III no pot formatar quantitats monetàries perquè el teu servidor no té instal·lats alguns paquets necessaris. Hi ha instruccions sobre com fer-ho.', - 'quickswitch' => 'Canvi ràpid', - 'sign_in_to_start' => 'Inicia sessió per començar', - 'sign_in' => 'Iniciar sessió', - 'register_new_account' => 'Registrar un nou compte', - 'forgot_my_password' => 'He oblidat la meva contrasenya', - 'problems_with_input' => 'Hi ha hagut alguns problemes amb els valors introduïts.', - 'reset_password' => 'Restablir la teva contrasenya', - 'button_reset_password' => 'Restablir contrasenya', - 'reset_button' => 'Restablir', - 'want_to_login' => 'Vull iniciar sessió', - 'login_page_title' => 'Iniciar sessió a Firefly III', - 'register_page_title' => 'Registrar-se a Firefly III', - 'forgot_pw_page_title' => 'Contrasenya de Firefly III oblidada', - 'reset_pw_page_title' => 'Restablir contrasenya de Firefly III', - 'cannot_reset_demo_user' => 'No pots restablir la contrasenya de l\'usuari de demo.', - 'no_att_demo_user' => 'L\'usuari de demostració no pot pujar fitxers adjunts.', - 'button_register' => 'Registrar-se', - 'authorization' => 'Autorització', - 'active_bills_only' => 'només factures actives', - 'active_bills_only_total' => 'totes les factures actives', - 'active_exp_bills_only' => 'només factures actives i esperades', - 'active_exp_bills_only_total' => 'només totes les factures actives esperades', - 'per_period_sum_1D' => 'Costos diaris esperats', - 'per_period_sum_1W' => 'Costos setmanals esperats', - 'per_period_sum_1M' => 'Costos mensuals esperats', - 'per_period_sum_3M' => 'Costos trimestrals esperats', - 'per_period_sum_6M' => 'Costos semestrals esperats', - 'per_period_sum_1Y' => 'Costos anuals esperats', - 'average_per_bill' => 'mitjana per factura', - 'expected_total' => 'total esperat', - 'reconciliation_account_name' => ':name consolidació (:currency)', - 'saved' => 'Guardat', - 'advanced_options' => 'Opcions avançades', - 'advanced_options_explain' => 'Algunes pàgines de Firefly III tenen opcions avançades amagades darrere aquest botó. Aquesta pàgina no té res d\'especial, però pots comprovar les altres!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Tancar', + 'actions' => 'Accions', + 'edit' => 'Editar', + 'delete' => 'Eliminar', + 'split' => 'Dividir', + 'single_split' => 'Divisió', + 'clone' => 'Duplicar', + 'clone_and_edit' => 'Clona i edita', + 'confirm_action' => 'Confirmar acció', + 'last_seven_days' => 'Últims set dies', + 'last_thirty_days' => 'Últims trenta dies', + 'last_180_days' => 'Últims 180 dies', + 'month_to_date' => 'Mes en curs', + 'year_to_date' => 'Any en curs', + 'YTD' => 'Any en curs', + 'welcome_back' => 'Què està passant?', + 'everything' => 'Tot', + 'today' => 'avui', + 'customRange' => 'Interval personalitzat', + 'date_range' => 'Interval de dates', + 'apply' => 'Aplicar', + 'select_date' => 'Seleccionar data..', + 'cancel' => 'Cancel·lar', + 'from' => 'De', + 'to' => 'A', + 'structure' => 'Estructura', + 'help_translating' => 'Aquest text d\'ajuda encara no està disponible en el teu idioma. Ens ajudaries a traduir-lo?', + 'showEverything' => 'Mostrar tot', + 'never' => 'Mai', + 'no_results_for_empty_search' => 'La cerca era buida, per la qual cosa no s\'ha trobat res.', + 'removed_amount' => 'Eliminat :amount', + 'added_amount' => 'Afegit :amount', + 'asset_account_role_help' => 'Qualsevol opció addicional resultant de la teva elecció, es pot escollir més endavant.', + 'Opening balance' => 'Saldo inicial', + 'create_new_stuff' => 'Crear coses noves', + 'new_withdrawal' => 'Nova retirada', + 'create_new_transaction' => 'Crear una transacció nova', + 'sidebar_frontpage_create' => 'Crear', + 'new_transaction' => 'Nova transacció', + 'no_rules_for_bill' => 'La factura no té normes associades.', + 'go_to_asset_accounts' => 'Veure el teu compte d\'actius', + 'go_to_budgets' => 'Anar als teus pressupostos', + 'go_to_withdrawals' => 'Anar a les teves retirades', + 'clones_journal_x' => 'Aquesta transacció és duplicada de ":description" (#:id)', + 'go_to_categories' => 'Anar a les teves categories', + 'go_to_bills' => 'Anar a les teves factures', + 'go_to_expense_accounts' => 'Veure els teus comptes de despeses', + 'go_to_revenue_accounts' => 'Veure els teus comptes de beneficis', + 'go_to_piggies' => 'Anar a la teva guardiola', + 'new_deposit' => 'Nou dipòsit', + 'new_transfer' => 'Nova transferència', + 'new_transfers' => 'Nova transferència', + 'new_asset_account' => 'Nou compte d\'actiu', + 'new_expense_account' => 'Nou compte de despeses', + 'new_revenue_account' => 'Nou compte de beneficis', + 'new_liabilities_account' => 'Nou deute', + 'new_budget' => 'Nou pressupost', + 'new_bill' => 'Nova factura', + 'block_account_logout' => 'S\'ha tancat la teva sessió. Els comptes bloquejats no poden utilitzar aquest lloc. T\'has registrat amb una adreça de correu vàlida?', + 'flash_success' => 'Èxit!', + 'flash_info' => 'Missatge', + 'flash_warning' => 'Atenció!', + 'flash_error' => 'Error!', + 'flash_danger' => 'Perill!', + 'flash_info_multiple' => 'Hi ha un missatge|Hi ha :count missatges', + 'flash_error_multiple' => 'Hi ha un error|Hi ha :count errors', + 'net_worth' => 'Valor net', + 'help_for_this_page' => 'Ajuda per aquesta pàgina', + 'help_for_this_page_body' => 'Pots trobar més informació sobre aquesta pàgina a la documentació.', + 'two_factor_welcome' => 'Hola!', + 'two_factor_enter_code' => 'Per continuar, si us plau, introdueix el teu codi d\'autenticació en dues passes. La teva aplicació el pot generar per tu.', + 'two_factor_code_here' => 'Introduir codi aquí', + 'two_factor_title' => 'Autenticació en dues passes', + 'authenticate' => 'Autentificar', + 'two_factor_forgot_title' => 'Autenticació en dues passes perduda', + 'two_factor_forgot' => 'He oblidat la meva cosa de dos factors.', + 'two_factor_lost_header' => 'Has perdut la teva autenticació en dues passes?', + 'two_factor_lost_intro' => 'Si també has perdut els teus codis de seguretat, has tingut mala sort. No hi ha res que puguis fer per arreglar-ho des de la interfície web. Tens dues opcions.', + 'two_factor_lost_fix_self' => 'Si tens la teva pròpia instància de Firefly III, llegeix :site_owner i demana-li que reiniciï la teva autenticació de dues passes.', + 'mfa_backup_code' => 'Has fet servir un codi de seguretat per iniciar sessió a Firefly III. No es pot tornar a utilitzar, així que ratlla\'l de la llista.', + 'pref_two_factor_new_backup_codes' => 'Obtenir nous codis de seguretat', + 'pref_two_factor_backup_code_count' => 'Tens :count codi de seguretat vàlid.|Tens :count codis de seguretat vàlids.', + '2fa_i_have_them' => 'Els he guardat!', + 'warning_much_data' => ':days dies de dades poden tardar a carregar-se.', + 'registered' => 'T\'has registrat satisfactòriament!', + 'Default asset account' => 'Compte d\'actius per defecte', + 'no_budget_pointer' => 'Sembla que encara no tens cap pressupost. N\'hauries de crear alguns a la pàgina de pressuposts. Els pressupostos et poden ajudar a fer el seguiment de les teves despeses.', + 'no_bill_pointer' => 'Sembla que encara no tens cap factura. N\'hauries de crear alguna a la pàgina de factures. Les factures et poden ajudar a fer el seguiment de les teves despeses.', + 'Savings account' => 'Compte d\'estalvis', + 'Credit card' => 'Targeta de crèdit', + 'source_accounts' => 'Compte d\'origen|Comptes d\'origen', + 'destination_accounts' => 'Compte de destí|Comptes de destí', + 'user_id_is' => 'El teu identificador d\'usuari és :user', + 'field_supports_markdown' => 'Aquest camp suporta Markdown.', + 'need_more_help' => 'Si necessites més ajuda per utilitzar Firefly III, si us plau, obre un tiquet a GitHub.', + 'reenable_intro_text' => 'També pots tornar a activar la guia d\'introducció.', + 'intro_boxes_after_refresh' => 'Els quadres d\'introducció tornaran a aparèixer quan actualitzis la pàgina.', + 'show_all_no_filter' => 'Mostrar totes les transaccions sense agrupar-les per data.', + 'expenses_by_category' => 'Despeses per categoria', + 'expenses_by_budget' => 'Despeses per pressupost', + 'income_by_category' => 'Ingressos per categoria', + 'expenses_by_asset_account' => 'Despeses per compte d\'actius', + 'expenses_by_expense_account' => 'Despeses per compte de despeses', + 'cannot_redirect_to_account' => 'Firefly III no et pot redirigir a la pàgina correcta. Disculpes.', + 'sum_of_expenses' => 'Total de despeses', + 'sum_of_income' => 'Total d\'ingressos', + 'liabilities' => 'Passius', + 'spent_in_specific_budget' => 'Gastat del pressupost ":budget"', + 'spent_in_specific_double' => 'Gastat del compte ":account"', + 'earned_in_specific_double' => 'Guanyat al compte ":account"', + 'source_account' => 'Compte d\'origen', + 'source_account_reconciliation' => 'No pots editar el compte d\'origen d\'una transacció de consolidació.', + 'destination_account' => 'Compte de destí', + 'destination_account_reconciliation' => 'No pots editar el compte de destí d\'una transacció de reconciliació.', + 'sum_of_expenses_in_budget' => 'Total gastat del pressupost ":budget"', + 'left_in_budget_limit' => 'Disponible per gastar segons el pressupost', + 'current_period' => 'Període actual', + 'show_the_current_period_and_overview' => 'Mostrar el període actual i la vista general', + 'pref_languages_locale' => 'Perquè una llengua diferent de l\'anglès funcioni correctament, el teu sistema operatiu ha de tenir la informació regional correcta. Si no hi és, les dades de monedes, dates i quantitats podrien formatar-se incorrectament.', + 'budget_in_period' => 'Totes les transaccions del pressupost ":name" entre :start i :end en :currency', + 'chart_budget_in_period' => 'Gràfica de totes les transaccions del pressupost ":name" entre :start i :end en :currency', + 'chart_budget_in_period_only_currency' => 'La quantitat la vas pressupostar en :currency, així que la gràfica només mostrarà transaccions en :currency.', + 'chart_account_in_period' => 'Gràfica de totes les transaccions del compte ":name" (:balance) entre :start i :end', + 'chart_category_in_period' => 'Gràfica de totes les transaccions de la categoria ":name" entre :start i :end', + 'chart_category_all' => 'Gràfica de totes les transaccions de la categoria ":name"', + 'clone_withdrawal' => 'Duplicar aquesta retirada', + 'clone_deposit' => 'Duplicar aquest dipòsit', + 'clone_transfer' => 'Duplicar aquesta transferència', + 'multi_select_no_selection' => 'Res seleccionat', + 'multi_select_select_all' => 'Seleccionar-ho tot', + 'multi_select_n_selected' => 'seleccionat', + 'multi_select_all_selected' => 'Tots seleccionats', + 'multi_select_filter_placeholder' => 'Buscar..', + 'intro_next_label' => 'Següent', + 'intro_prev_label' => 'Anterior', + 'intro_skip_label' => 'Ometre', + 'intro_done_label' => 'Fet', + 'between_dates_breadcrumb' => 'Entre :start i :end', + 'all_journals_without_budget' => 'Totes les transaccions sense pressupost', + 'journals_without_budget' => 'Transaccions sense pressupost', + 'all_journals_without_category' => 'Totes les transaccions sense categoria', + 'journals_without_category' => 'Transaccions sense categoria', + 'all_journals_for_account' => 'Totes les transaccions del compte :name', + 'chart_all_journals_for_account' => 'Gràfica de totes les transaccions del compte :name', + 'journals_in_period_for_account' => 'Totes les transaccions del compte :name entre :start i :end', + 'journals_in_period_for_account_js' => 'Totes les transaccions del compte {title} entre {start} i {end}', + 'transferred' => 'Transferit', + 'all_withdrawal' => 'Totes les despeses', + 'all_transactions' => 'Totes les transaccions', + 'title_withdrawal_between' => 'Totes les despeses entre :start i :end', + 'all_deposit' => 'Tots els beneficis', + 'title_deposit_between' => 'Tots els beneficis entre :start i :end', + 'all_transfers' => 'Totes les transferències', + 'title_transfers_between' => 'Totes les transferències entre :start i :end', + 'all_transfer' => 'Totes les transferències', + 'all_journals_for_tag' => 'Totes les transferències amb l\'etiqueta ":tag"', + 'title_transfer_between' => 'Totes les transferències entre :start i :end', + 'all_journals_for_category' => 'Totes les transaccions amb categoria :name', + 'all_journals_for_budget' => 'Totes les transaccions del pressupost :name', + 'chart_all_journals_for_budget' => 'Gràfica de totes les transaccions del pressupost :name', + 'journals_in_period_for_category' => 'Totes les transaccions de la categoria :name entre :start i :end', + 'journals_in_period_for_tag' => 'Totes les transaccions amb etiqueta :tag entre :start i :end', + 'not_available_demo_user' => 'La característica a la qual intentes accedir no es troba disponible pels usuaris de demostració.', + 'exchange_rate_instructions' => 'El compte d\'actius "@name" només accepta transaccions en @native_currency. Si vols utilitzar @foreign_currency, assegurat que la quantitat en @native_currency també sigui coneguda:', + 'transfer_exchange_rate_instructions' => 'El compte d\'actius d\'origen "@source_name" només accepta transaccions en @source_currency. El compte de destí "@dest_name" només accepta transaccions en @dest_currency. Has d\'indicar la quantitat correcta transferida en ambdues monedes.', + 'transaction_data' => 'Dades de transacció', + 'invalid_server_configuration' => 'Configuració del servidor invàlida', + 'invalid_locale_settings' => 'Firefly III no pot formatar quantitats monetàries perquè el teu servidor no té instal·lats alguns paquets necessaris. Hi ha instruccions sobre com fer-ho.', + 'quickswitch' => 'Canvi ràpid', + 'sign_in_to_start' => 'Inicia sessió per començar', + 'sign_in' => 'Iniciar sessió', + 'register_new_account' => 'Registrar un nou compte', + 'forgot_my_password' => 'He oblidat la meva contrasenya', + 'problems_with_input' => 'Hi ha hagut alguns problemes amb els valors introduïts.', + 'reset_password' => 'Restablir la teva contrasenya', + 'button_reset_password' => 'Restablir contrasenya', + 'reset_button' => 'Restablir', + 'want_to_login' => 'Vull iniciar sessió', + 'login_page_title' => 'Iniciar sessió a Firefly III', + 'register_page_title' => 'Registrar-se a Firefly III', + 'forgot_pw_page_title' => 'Contrasenya de Firefly III oblidada', + 'reset_pw_page_title' => 'Restablir contrasenya de Firefly III', + 'cannot_reset_demo_user' => 'No pots restablir la contrasenya de l\'usuari de demo.', + 'no_att_demo_user' => 'L\'usuari de demostració no pot pujar fitxers adjunts.', + 'button_register' => 'Registrar-se', + 'authorization' => 'Autorització', + 'active_bills_only' => 'només factures actives', + 'active_bills_only_total' => 'totes les factures actives', + 'active_exp_bills_only' => 'només factures actives i esperades', + 'active_exp_bills_only_total' => 'només totes les factures actives esperades', + 'per_period_sum_1D' => 'Costos diaris esperats', + 'per_period_sum_1W' => 'Costos setmanals esperats', + 'per_period_sum_1M' => 'Costos mensuals esperats', + 'per_period_sum_3M' => 'Costos trimestrals esperats', + 'per_period_sum_6M' => 'Costos semestrals esperats', + 'per_period_sum_1Y' => 'Costos anuals esperats', + 'average_per_bill' => 'mitjana per factura', + 'expected_total' => 'total esperat', + 'reconciliation_account_name' => ':name consolidació (:currency)', + 'saved' => 'Guardat', + 'advanced_options' => 'Opcions avançades', + 'advanced_options_explain' => 'Algunes pàgines de Firefly III tenen opcions avançades amagades darrere aquest botó. Aquesta pàgina no té res d\'especial, però pots comprovar les altres!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'deshabilitat', - 'no_webhook_messages' => 'No hi ha missatges webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Després de crear la transacció', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Després d\'actualitzar la transacció', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Després d\'eliminar la transacció', - 'webhook_response_TRANSACTIONS' => 'Detalls de la transacció', - 'webhook_response_ACCOUNTS' => 'Detalls del compte', - 'webhook_response_none_NONE' => 'Sense detalls', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspeccionar', - 'create_new_webhook' => 'Crear nou webhook', - 'webhooks_create_breadcrumb' => 'Crear nou webhook', - 'webhook_trigger_form_help' => 'Indicar quin esdeveniment activarà el webhook', - 'webhook_response_form_help' => 'Indicar què ha d\'enviar el webhook a l\'URL.', - 'webhook_delivery_form_help' => 'En quin format ha d\'entregar les dades el webhook.', - 'webhook_active_form_help' => 'El wehook ha d\'estar actiu o no es cridarà.', - 'stored_new_webhook' => 'Nou webhook guardat ":title"', - 'delete_webhook' => 'Webhook eliminat', - 'deleted_webhook' => 'Webhook eliminat ":title"', - 'edit_webhook' => 'Editar webhook ":title"', - 'updated_webhook' => 'Webhook actualitzat ":title"', - 'edit_webhook_js' => 'Editar webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'El webhook ha sigut cridat a la transacció indicada. Per favor, espera a que apareguen els resultats.', - 'webhook_messages' => 'Missatge del webhook', - 'view_message' => 'Veure el missatge', - 'view_attempts' => 'Veure intents fallits', - 'message_content_title' => 'Contingut del missatge del webhook', - 'message_content_help' => 'Aquest és el contingut del missatge que s\'ha enviat (o s\'ha intentat) utilitzant aquest webhook.', - 'attempt_content_title' => 'Intents de webhook', - 'attempt_content_help' => 'Aquests han estat tots els intents sense èxit d\'enviar el missatge del webhook a l\'URL configurat. Després de cert temps, Firefly III deixarà de provar-ho.', - 'no_attempts' => 'No hi ha hagut intents sense èxit. Això és bon senyal!', - 'webhook_attempt_at' => 'Intent de {moment}', - 'logs' => 'Registres', - 'response' => 'Resposta', - 'visit_webhook_url' => 'Visitar l\'URL del webhook', - 'reset_webhook_secret' => 'Reiniciar el secret del webhook', - 'webhook_stored_link' => 'S\'ha desat el Webook #{ID} ("{title}") correctament.', - 'webhook_updated_link' => 'S\'ha actualitzat el Webook #{ID} ("{title}").', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'deshabilitat', + 'no_webhook_messages' => 'No hi ha missatges webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Després de crear la transacció', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Després d\'actualitzar la transacció', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Després d\'eliminar la transacció', + 'webhook_response_TRANSACTIONS' => 'Detalls de la transacció', + 'webhook_response_ACCOUNTS' => 'Detalls del compte', + 'webhook_response_none_NONE' => 'Sense detalls', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspeccionar', + 'create_new_webhook' => 'Crear nou webhook', + 'webhooks_create_breadcrumb' => 'Crear nou webhook', + 'webhook_trigger_form_help' => 'Indicar quin esdeveniment activarà el webhook', + 'webhook_response_form_help' => 'Indicar què ha d\'enviar el webhook a l\'URL.', + 'webhook_delivery_form_help' => 'En quin format ha d\'entregar les dades el webhook.', + 'webhook_active_form_help' => 'El wehook ha d\'estar actiu o no es cridarà.', + 'stored_new_webhook' => 'Nou webhook guardat ":title"', + 'delete_webhook' => 'Webhook eliminat', + 'deleted_webhook' => 'Webhook eliminat ":title"', + 'edit_webhook' => 'Editar webhook ":title"', + 'updated_webhook' => 'Webhook actualitzat ":title"', + 'edit_webhook_js' => 'Editar webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'El webhook ha sigut cridat a la transacció indicada. Per favor, espera a que apareguen els resultats.', + 'webhook_messages' => 'Missatge del webhook', + 'view_message' => 'Veure el missatge', + 'view_attempts' => 'Veure intents fallits', + 'message_content_title' => 'Contingut del missatge del webhook', + 'message_content_help' => 'Aquest és el contingut del missatge que s\'ha enviat (o s\'ha intentat) utilitzant aquest webhook.', + 'attempt_content_title' => 'Intents de webhook', + 'attempt_content_help' => 'Aquests han estat tots els intents sense èxit d\'enviar el missatge del webhook a l\'URL configurat. Després de cert temps, Firefly III deixarà de provar-ho.', + 'no_attempts' => 'No hi ha hagut intents sense èxit. Això és bon senyal!', + 'webhook_attempt_at' => 'Intent de {moment}', + 'logs' => 'Registres', + 'response' => 'Resposta', + 'visit_webhook_url' => 'Visitar l\'URL del webhook', + 'reset_webhook_secret' => 'Reiniciar el secret del webhook', + 'webhook_stored_link' => 'S\'ha desat el Webook #{ID} ("{title}") correctament.', + 'webhook_updated_link' => 'S\'ha actualitzat el Webook #{ID} ("{title}").', // API access - 'authorization_request' => 'Firefly III v:version Sol·licitud d\'Autorització', - 'authorization_request_intro' => 'L\'aplicació ":client" està demanant permís per tenir accés a l\'administració de les teves finances. Vols autoritzar a :client a accedir a les dades?', - 'authorization_request_site' => 'Seràs redirigit a :url que podrà accedir a les dades del teu Firefly III.', - 'authorization_request_invalid' => 'Aquesta sol·licitud d\'accés no és vàlida. Si us plau, no tornis a obrir aquest enllaç.', - 'scopes_will_be_able' => 'Aquesta aplicació podrà:', - 'button_authorize' => 'Autoritzar', - 'none_in_select_list' => '(cap)', - 'no_piggy_bank' => '(sense guardiola)', - 'name_in_currency' => ':name en :currency', - 'paid_in_currency' => 'Pagat en :currency', - 'unpaid_in_currency' => 'Pendent de pagament en :currency', - 'is_alpha_warning' => 'Estàs executant una versió ALFA. Ves amb compte amb els errors i problemes.', - 'is_beta_warning' => 'Estàs executant una versió BETA. Ves amb compte amb els errors i problemes.', - 'all_destination_accounts' => 'Comptes de destí', - 'all_source_accounts' => 'Comptes d\'origen', - 'back_to_index' => 'Tornar a l\'índex', - 'cant_logout_guard' => 'Firefly III no pot tancar la sessió.', - 'internal_reference' => 'Referència interna', + 'authorization_request' => 'Firefly III v:version Sol·licitud d\'Autorització', + 'authorization_request_intro' => 'L\'aplicació ":client" està demanant permís per tenir accés a l\'administració de les teves finances. Vols autoritzar a :client a accedir a les dades?', + 'authorization_request_site' => 'Seràs redirigit a :url que podrà accedir a les dades del teu Firefly III.', + 'authorization_request_invalid' => 'Aquesta sol·licitud d\'accés no és vàlida. Si us plau, no tornis a obrir aquest enllaç.', + 'scopes_will_be_able' => 'Aquesta aplicació podrà:', + 'button_authorize' => 'Autoritzar', + 'none_in_select_list' => '(cap)', + 'no_piggy_bank' => '(sense guardiola)', + 'name_in_currency' => ':name en :currency', + 'paid_in_currency' => 'Pagat en :currency', + 'unpaid_in_currency' => 'Pendent de pagament en :currency', + 'is_alpha_warning' => 'Estàs executant una versió ALFA. Ves amb compte amb els errors i problemes.', + 'is_beta_warning' => 'Estàs executant una versió BETA. Ves amb compte amb els errors i problemes.', + 'all_destination_accounts' => 'Comptes de destí', + 'all_source_accounts' => 'Comptes d\'origen', + 'back_to_index' => 'Tornar a l\'índex', + 'cant_logout_guard' => 'Firefly III no pot tancar la sessió.', + 'internal_reference' => 'Referència interna', // check for updates: - 'update_check_title' => 'Buscar actualitzacions', - 'admin_update_check_title' => 'Buscar actualitzacions automàticament', - 'admin_update_check_explain' => 'Firefly III pot buscar actualitzacions automàticament. Quan actives aquesta peferència, contactarà el servidor d\'actualitzacions de Firefly III per comprovar si hi ha una nova versió de Firefly III disponible. Quan hi sigui, se\'t notificarà. Pots provar aquesta notificació utilitzant el botó de la dreta. Si us plau, indica a sota si vols que Firefly III busqui actualitzacions.', - 'check_for_updates_permission' => 'Firefly III pot buscar actualitzacions, però necessita el teu permís per a fer-ho. Si us plau, ves a administració per indicar si vols activar aquesta característica.', - 'updates_ask_me_later' => 'Pregunta\'m més endavant', - 'updates_do_not_check' => 'No busquis actualitzacions', - 'updates_enable_check' => 'Activa el buscador d\'actualitzacions', - 'admin_update_check_now_title' => 'Busca actualitzacions ara', - 'admin_update_check_now_explain' => 'Si prems el botó, Firefly III comprovarà si la versió actual és l\'última.', - 'check_for_updates_button' => 'Comprovar ara!', - 'update_new_version_alert' => 'Hi ha una nova versió de Firefly III disponible. Estàs executant la versió :your_version, i l\'última versió és la :new_version que es va publicar el :date.', - 'update_version_beta' => 'Aquesta és una versió BETA. Podries tenir problemes.', - 'update_version_alpha' => 'Aquesta és una versió ALFA. Podries tenir problemes.', - 'update_current_dev_older' => 'Estàs fent servir la versió de desenvolupament ":version", que és més antiga que l\'última versió disponible :new_version. Per favor, actualitza!', - 'update_current_dev_newer' => 'Estàs fent servir la versió de desenvolupament ":version", que és més nova que l\'última versió disponible :new_version.', - 'update_current_version_alert' => 'Estàs executant :version, que és l\'última versió disponible.', - 'update_newer_version_alert' => 'Estàs executant :your_version, que és més nova que l\'última versió, :new_version.', - 'update_check_error' => 'Ha succeït un error mentre es comprovaven les actualitzacions: :error', - 'unknown_error' => 'Error desconegut. Ho sento.', - 'disabled_but_check' => 'Has desactivat la cerca d\'actualitzacions. Així que no t\'oblidis de comprovar les actualitzacions tu mateix de tant en tant. Gràcies!', - 'admin_update_channel_title' => 'Canal d\'actualitzacions', - 'admin_update_channel_explain' => 'Firefly III té tres "canals" d\'actualització que determinen quant d\'avançat estàs en termes de característiques, millores i errors. Utilitza el canal "beta" si ets un aventurer i "alfa" si t\'agrada viure al límit.', - 'update_channel_stable' => 'Estable. Tot hauria de funcionar com s\'espera.', - 'update_channel_beta' => 'Beta. Noves característiques, però algunes coses podrien fallar.', - 'update_channel_alpha' => 'Alfa. Anem provant coses, i utilitzem el que funcioni.', + 'update_check_title' => 'Buscar actualitzacions', + 'admin_update_check_title' => 'Buscar actualitzacions automàticament', + 'admin_update_check_explain' => 'Firefly III pot buscar actualitzacions automàticament. Quan actives aquesta peferència, contactarà el servidor d\'actualitzacions de Firefly III per comprovar si hi ha una nova versió de Firefly III disponible. Quan hi sigui, se\'t notificarà. Pots provar aquesta notificació utilitzant el botó de la dreta. Si us plau, indica a sota si vols que Firefly III busqui actualitzacions.', + 'check_for_updates_permission' => 'Firefly III pot buscar actualitzacions, però necessita el teu permís per a fer-ho. Si us plau, ves a administració per indicar si vols activar aquesta característica.', + 'updates_ask_me_later' => 'Pregunta\'m més endavant', + 'updates_do_not_check' => 'No busquis actualitzacions', + 'updates_enable_check' => 'Activa el buscador d\'actualitzacions', + 'admin_update_check_now_title' => 'Busca actualitzacions ara', + 'admin_update_check_now_explain' => 'Si prems el botó, Firefly III comprovarà si la versió actual és l\'última.', + 'check_for_updates_button' => 'Comprovar ara!', + 'update_new_version_alert' => 'Hi ha una nova versió de Firefly III disponible. Estàs executant la versió :your_version, i l\'última versió és la :new_version que es va publicar el :date.', + 'update_version_beta' => 'Aquesta és una versió BETA. Podries tenir problemes.', + 'update_version_alpha' => 'Aquesta és una versió ALFA. Podries tenir problemes.', + 'update_current_dev_older' => 'Estàs fent servir la versió de desenvolupament ":version", que és més antiga que l\'última versió disponible :new_version. Per favor, actualitza!', + 'update_current_dev_newer' => 'Estàs fent servir la versió de desenvolupament ":version", que és més nova que l\'última versió disponible :new_version.', + 'update_current_version_alert' => 'Estàs executant :version, que és l\'última versió disponible.', + 'update_newer_version_alert' => 'Estàs executant :your_version, que és més nova que l\'última versió, :new_version.', + 'update_check_error' => 'Ha succeït un error mentre es comprovaven les actualitzacions: :error', + 'unknown_error' => 'Error desconegut. Ho sento.', + 'disabled_but_check' => 'Has desactivat la cerca d\'actualitzacions. Així que no t\'oblidis de comprovar les actualitzacions tu mateix de tant en tant. Gràcies!', + 'admin_update_channel_title' => 'Canal d\'actualitzacions', + 'admin_update_channel_explain' => 'Firefly III té tres "canals" d\'actualització que determinen quant d\'avançat estàs en termes de característiques, millores i errors. Utilitza el canal "beta" si ets un aventurer i "alfa" si t\'agrada viure al límit.', + 'update_channel_stable' => 'Estable. Tot hauria de funcionar com s\'espera.', + 'update_channel_beta' => 'Beta. Noves característiques, però algunes coses podrien fallar.', + 'update_channel_alpha' => 'Alfa. Anem provant coses, i utilitzem el que funcioni.', // search - 'search' => 'Cercar', - 'search_query' => 'Consulta', - 'search_found_transactions' => 'Firefly III ha trobat :count transacció en :time segons.|Firefly III ha trobat :count transaccions en :time segons.', - 'search_found_more_transactions' => 'Firefly III ha trobat més de :count transaccions en :time segons.', - 'search_for_query' => 'Firefly III està cercant transaccions que continguin totes aquestes paraules: :query', - 'invalid_operators_list' => 'Aquests paràmetres de cerca no són vàlids i s\'han ignorat.', + 'search' => 'Cercar', + 'search_query' => 'Consulta', + 'search_found_transactions' => 'Firefly III ha trobat :count transacció en :time segons.|Firefly III ha trobat :count transaccions en :time segons.', + 'search_found_more_transactions' => 'Firefly III ha trobat més de :count transaccions en :time segons.', + 'search_for_query' => 'Firefly III està cercant transaccions que continguin totes aquestes paraules: :query', + 'invalid_operators_list' => 'Aquests paràmetres de cerca no són vàlids i s\'han ignorat.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'La data de la transacció és ":value"', - 'search_modifier_not_date_on' => 'La data de la transacció no és ":value"', - 'search_modifier_reconciled' => 'La transacció s\'ha consolidat', - 'search_modifier_not_reconciled' => 'La transacció no s\'ha consolidat', - 'search_modifier_id' => 'L\'ID de la transacció és ":value"', - 'search_modifier_not_id' => 'L\'ID de la transacció no és ":value"', - 'search_modifier_date_before' => 'La data de la transacció és prèvia a ":value"', - 'search_modifier_date_after' => 'La data de la transacció és posterior a ":value"', - 'search_modifier_external_id_is' => 'L\'ID externa és ":value"', - 'search_modifier_not_external_id_is' => 'L\'ID externa no és ":value"', - 'search_modifier_no_external_url' => 'La transacció no té URL extern', - 'search_modifier_no_external_id' => 'La transacció no té cap ID extern', - 'search_modifier_not_any_external_url' => 'La transacció no té URL extern', - 'search_modifier_not_any_external_id' => 'La transacció no té cap ID extern', - 'search_modifier_any_external_url' => 'La transacció ha de tenir un URL extern (qualsevol)', - 'search_modifier_any_external_id' => 'La transacció ha de tenir almenys un ID extern', - 'search_modifier_not_no_external_url' => 'La transacció ha de tenir un URL extern (qualsevol)', - 'search_modifier_not_no_external_id' => 'La transacció ha de tenir almenys un ID extern', - 'search_modifier_internal_reference_is' => 'La referència interna és ":value"', - 'search_modifier_not_internal_reference_is' => 'La referència interna no és ":value"', - 'search_modifier_description_starts' => 'La descripció comença amb ":value"', - 'search_modifier_not_description_starts' => 'La descripció no comença amb ":value"', - 'search_modifier_description_ends' => 'La descripció acaba amb ":value"', - 'search_modifier_not_description_ends' => 'La descripció no acaba amb ":value"', - 'search_modifier_description_contains' => 'La descripció conté ":value"', - 'search_modifier_not_description_contains' => 'La descripció no conté ":value"', - 'search_modifier_description_is' => 'La descripció és exactament ":value"', - 'search_modifier_not_description_is' => 'La descripció no és exactament ":value"', - 'search_modifier_currency_is' => 'La moneda (estrangera) de la transacció és ":value"', - 'search_modifier_not_currency_is' => 'La moneda (estrangera) de la transacció no és ":value"', - 'search_modifier_foreign_currency_is' => 'La moneda estrangera de la transacció és ":value"', - 'search_modifier_not_foreign_currency_is' => 'La moneda estrangera de la transacció no és ":value"', - 'search_modifier_has_attachments' => 'La transacció ha de tenir un fitxer adjunt', - 'search_modifier_has_no_category' => 'La transacció no pot tenir categoria', - 'search_modifier_not_has_no_category' => 'La transacció ha de tenir categoria (qualsevol)', - 'search_modifier_not_has_any_category' => 'La transacció no pot tenir categoria', - 'search_modifier_has_any_category' => 'La transacció ha de tenir categoria (qualsevol)', - 'search_modifier_has_no_budget' => 'La transacció no pot tenir pressupost', - 'search_modifier_not_has_any_budget' => 'La transacció no pot tenir pressupost', - 'search_modifier_has_any_budget' => 'La transacció ha de tenir pressupost (qualsevol)', - 'search_modifier_not_has_no_budget' => 'La transacció ha de tenir pressupost (qualsevol)', - 'search_modifier_has_no_bill' => 'La transacció no pot tenir factura', - 'search_modifier_not_has_no_bill' => 'La transacció ha de tenir factura (qualsevol)', - 'search_modifier_has_any_bill' => 'La transacció ha de tenir factura (qualsevol)', - 'search_modifier_not_has_any_bill' => 'La transacció no pot tenir factura', - 'search_modifier_has_no_tag' => 'La transacció no pot tenir etiquetes', - 'search_modifier_not_has_any_tag' => 'La transacció no pot tenir etiquetes', - 'search_modifier_not_has_no_tag' => 'La transacció ha de tenir etiqueta (qualsevol)', - 'search_modifier_has_any_tag' => 'La transacció ha de tenir etiqueta (qualsevol)', - 'search_modifier_notes_contains' => 'Les notes de la transacció contenen ":value"', - 'search_modifier_not_notes_contains' => 'Les notes de la transacció no contenen ":value"', - 'search_modifier_notes_starts' => 'Les notes de la transacció comencen per ":value"', - 'search_modifier_not_notes_starts' => 'Les notes de la transacció no comencen per ":value"', - 'search_modifier_notes_ends' => 'Les notes de la transacció acaben amb ":value"', - 'search_modifier_not_notes_ends' => 'Les notes de la transacció no acaben amb ":value"', - 'search_modifier_notes_is' => 'Les notes de la transacció són exactament ":value"', - 'search_modifier_not_notes_is' => 'Les notes de la transacció no són exactament ":value"', - 'search_modifier_no_notes' => 'La transacció no té notes', - 'search_modifier_not_no_notes' => 'La transacció ha de tenir notes', - 'search_modifier_any_notes' => 'La transacció ha de tenir notes', - 'search_modifier_not_any_notes' => 'La transacció no té notes', - 'search_modifier_amount_is' => 'La quantitat és exactament :value', - 'search_modifier_not_amount_is' => 'La quantitat no és :value', - 'search_modifier_amount_less' => 'La quantitat és igual o inferior a :value', - 'search_modifier_not_amount_more' => 'La quantitat és igual o inferior a :value', - 'search_modifier_amount_more' => 'La quantitat és igual o superior a :value', - 'search_modifier_not_amount_less' => 'La quantitat és igual o superior a :value', - 'search_modifier_source_account_is' => 'El nom del compte d\'origen és exactament ":value"', - 'search_modifier_not_source_account_is' => 'El nom del compte d\'origen no és ":value"', - 'search_modifier_source_account_contains' => 'El nom del compte d\'origen conté ":value"', - 'search_modifier_not_source_account_contains' => 'El nom del compte d\'origen no conté ":value"', - 'search_modifier_source_account_starts' => 'El nom del compte d\'origen comença per ":value"', - 'search_modifier_not_source_account_starts' => 'El nom del compte d\'origen no comença per ":value"', - 'search_modifier_source_account_ends' => 'El nom del compte d\'origen acaba amb ":value"', - 'search_modifier_not_source_account_ends' => 'El nom del compte d\'origen no acaba amb ":value"', - 'search_modifier_source_account_id' => 'L\'ID del compte d\'origen és :value', - 'search_modifier_not_source_account_id' => 'L\'ID del compte d\'origen no és :value', - 'search_modifier_source_account_nr_is' => 'El número (IBAN) del compte d\'origen és ":value"', - 'search_modifier_not_source_account_nr_is' => 'El número (IBAN) del compte d\'origen no és ":value"', - 'search_modifier_source_account_nr_contains' => 'El número (IBAN) del compte d\'origen conté ":value"', - 'search_modifier_not_source_account_nr_contains' => 'El número (IBAN) del compte d\'origen no conté ":value"', - 'search_modifier_source_account_nr_starts' => 'El número (IBAN) del compte d\'origen comença per ":value"', - 'search_modifier_not_source_account_nr_starts' => 'El número (IBAN) del compte d\'origen no comença per ":value"', - 'search_modifier_source_account_nr_ends' => 'El número (IBAN) del compte d\'origen acaba amb ":value"', - 'search_modifier_not_source_account_nr_ends' => 'El número (IBAN) del compte d\'origen no acaba amb ":value"', - 'search_modifier_destination_account_is' => 'El nom del compte de destí és exactament ":value"', - 'search_modifier_not_destination_account_is' => 'El nom del compte de destí no és ":value"', - 'search_modifier_destination_account_contains' => 'El nom del compte de destí conté ":value"', - 'search_modifier_not_destination_account_contains' => 'El nom del compte de destí no conté ":value"', - 'search_modifier_destination_account_starts' => 'El nom del compte de destí comença per ":value"', - 'search_modifier_not_destination_account_starts' => 'El nom del compte de destí no comença per ":value"', - 'search_modifier_destination_account_ends' => 'El nom del compte de destí acaba amb ":value"', - 'search_modifier_not_destination_account_ends' => 'El nom del compte de destí no acaba amb ":value"', - 'search_modifier_destination_account_id' => 'L\'ID del compte de destí és :value', - 'search_modifier_not_destination_account_id' => 'L\'ID del compte de destí no és :value', - 'search_modifier_destination_is_cash' => 'El compte de destí és el compte "(efectiu)"', - 'search_modifier_not_destination_is_cash' => 'El compte de destí no és el compte "(efectiu)"', - 'search_modifier_source_is_cash' => 'El compte d\'origen és el compte "(efectiu)"', - 'search_modifier_not_source_is_cash' => 'El compte d\'origen no és el compte "(efectiu)"', - 'search_modifier_destination_account_nr_is' => 'El número (IBAN) del compte de destí és ":value"', - 'search_modifier_not_destination_account_nr_is' => 'El número (IBAN) del compte de destí és ":value"', - 'search_modifier_destination_account_nr_contains' => 'El número (IBAN) del compte de destí conté ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'El número (IBAN) del compte de destí no conté ":value"', - 'search_modifier_destination_account_nr_starts' => 'El número (IBAN) del compte de destí comença per ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'El número (IBAN) del compte de destí no comença per ":value"', - 'search_modifier_destination_account_nr_ends' => 'El número (IBAN) del compte de destí acaba amb ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'El número (IBAN) del compte de destí no acaba amb ":value"', - 'search_modifier_account_id' => 'L\'ID del compte d\'origen o de destí és/són: :value', - 'search_modifier_not_account_id' => 'L\'ID del compte d\'origen o de destí no és/són: :value', - 'search_modifier_category_is' => 'La categoria és ":value"', - 'search_modifier_not_category_is' => 'La categoria no és ":value"', - 'search_modifier_budget_is' => 'El pressupost és ":value"', - 'search_modifier_not_budget_is' => 'El pressupost no és ":value"', - 'search_modifier_bill_is' => 'La factura és ":value"', - 'search_modifier_not_bill_is' => 'La factura no és ":value"', - 'search_modifier_transaction_type' => 'El tipus de transacció és ":value"', - 'search_modifier_not_transaction_type' => 'El tipus de transacció no és ":value"', - 'search_modifier_tag_is' => 'L\'etiqueta és ":value"', - 'search_modifier_tag_contains' => 'L\'etiqueta conté ":value"', - 'search_modifier_not_tag_contains' => 'L\'etiqueta no conté ":value"', - 'search_modifier_tag_ends' => 'L\'etiqueta acaba amb ":value"', - 'search_modifier_tag_starts' => 'L\'etiqueta comença amb ":value"', - 'search_modifier_not_tag_is' => 'Cap etiqueta és ":value"', - 'search_modifier_date_on_year' => 'L\'any de la transacció és ":value"', - 'search_modifier_not_date_on_year' => 'L\'any de la transacció no és ":value"', - 'search_modifier_date_on_month' => 'El mes de la transacció és ":value"', - 'search_modifier_not_date_on_month' => 'El mes de la transacció no és ":value"', - 'search_modifier_date_on_day' => 'La transacció és el dia ":value" del mes', - 'search_modifier_not_date_on_day' => 'La transacció no és el dia ":value" del mes', - 'search_modifier_date_before_year' => 'L\'any de la transacció és anterior o igual a ":value"', - 'search_modifier_date_before_month' => 'El mes de la transacció és anterior o igual a ":value"', - 'search_modifier_date_before_day' => 'El dia del mes de la transacció és anterior o igual a ":value"', - 'search_modifier_date_after_year' => 'L\'any de la transacció és igual o posterior a ":value"', - 'search_modifier_date_after_month' => 'El mes de la transacció és igual o posterior a ":value"', - 'search_modifier_date_after_day' => 'El dia del mes de la transacció és igual o posterior a ":value"', + 'search_modifier_date_on' => 'La data de la transacció és ":value"', + 'search_modifier_not_date_on' => 'La data de la transacció no és ":value"', + 'search_modifier_reconciled' => 'La transacció s\'ha consolidat', + 'search_modifier_not_reconciled' => 'La transacció no s\'ha consolidat', + 'search_modifier_id' => 'L\'ID de la transacció és ":value"', + 'search_modifier_not_id' => 'L\'ID de la transacció no és ":value"', + 'search_modifier_date_before' => 'La data de la transacció és prèvia a ":value"', + 'search_modifier_date_after' => 'La data de la transacció és posterior a ":value"', + 'search_modifier_external_id_is' => 'L\'ID externa és ":value"', + 'search_modifier_not_external_id_is' => 'L\'ID externa no és ":value"', + 'search_modifier_no_external_url' => 'La transacció no té URL extern', + 'search_modifier_no_external_id' => 'La transacció no té cap ID extern', + 'search_modifier_not_any_external_url' => 'La transacció no té URL extern', + 'search_modifier_not_any_external_id' => 'La transacció no té cap ID extern', + 'search_modifier_any_external_url' => 'La transacció ha de tenir un URL extern (qualsevol)', + 'search_modifier_any_external_id' => 'La transacció ha de tenir almenys un ID extern', + 'search_modifier_not_no_external_url' => 'La transacció ha de tenir un URL extern (qualsevol)', + 'search_modifier_not_no_external_id' => 'La transacció ha de tenir almenys un ID extern', + 'search_modifier_internal_reference_is' => 'La referència interna és ":value"', + 'search_modifier_not_internal_reference_is' => 'La referència interna no és ":value"', + 'search_modifier_description_starts' => 'La descripció comença amb ":value"', + 'search_modifier_not_description_starts' => 'La descripció no comença amb ":value"', + 'search_modifier_description_ends' => 'La descripció acaba amb ":value"', + 'search_modifier_not_description_ends' => 'La descripció no acaba amb ":value"', + 'search_modifier_description_contains' => 'La descripció conté ":value"', + 'search_modifier_not_description_contains' => 'La descripció no conté ":value"', + 'search_modifier_description_is' => 'La descripció és exactament ":value"', + 'search_modifier_not_description_is' => 'La descripció no és exactament ":value"', + 'search_modifier_currency_is' => 'La moneda (estrangera) de la transacció és ":value"', + 'search_modifier_not_currency_is' => 'La moneda (estrangera) de la transacció no és ":value"', + 'search_modifier_foreign_currency_is' => 'La moneda estrangera de la transacció és ":value"', + 'search_modifier_not_foreign_currency_is' => 'La moneda estrangera de la transacció no és ":value"', + 'search_modifier_has_attachments' => 'La transacció ha de tenir un fitxer adjunt', + 'search_modifier_has_no_category' => 'La transacció no pot tenir categoria', + 'search_modifier_not_has_no_category' => 'La transacció ha de tenir categoria (qualsevol)', + 'search_modifier_not_has_any_category' => 'La transacció no pot tenir categoria', + 'search_modifier_has_any_category' => 'La transacció ha de tenir categoria (qualsevol)', + 'search_modifier_has_no_budget' => 'La transacció no pot tenir pressupost', + 'search_modifier_not_has_any_budget' => 'La transacció no pot tenir pressupost', + 'search_modifier_has_any_budget' => 'La transacció ha de tenir pressupost (qualsevol)', + 'search_modifier_not_has_no_budget' => 'La transacció ha de tenir pressupost (qualsevol)', + 'search_modifier_has_no_bill' => 'La transacció no pot tenir factura', + 'search_modifier_not_has_no_bill' => 'La transacció ha de tenir factura (qualsevol)', + 'search_modifier_has_any_bill' => 'La transacció ha de tenir factura (qualsevol)', + 'search_modifier_not_has_any_bill' => 'La transacció no pot tenir factura', + 'search_modifier_has_no_tag' => 'La transacció no pot tenir etiquetes', + 'search_modifier_not_has_any_tag' => 'La transacció no pot tenir etiquetes', + 'search_modifier_not_has_no_tag' => 'La transacció ha de tenir etiqueta (qualsevol)', + 'search_modifier_has_any_tag' => 'La transacció ha de tenir etiqueta (qualsevol)', + 'search_modifier_notes_contains' => 'Les notes de la transacció contenen ":value"', + 'search_modifier_not_notes_contains' => 'Les notes de la transacció no contenen ":value"', + 'search_modifier_notes_starts' => 'Les notes de la transacció comencen per ":value"', + 'search_modifier_not_notes_starts' => 'Les notes de la transacció no comencen per ":value"', + 'search_modifier_notes_ends' => 'Les notes de la transacció acaben amb ":value"', + 'search_modifier_not_notes_ends' => 'Les notes de la transacció no acaben amb ":value"', + 'search_modifier_notes_is' => 'Les notes de la transacció són exactament ":value"', + 'search_modifier_not_notes_is' => 'Les notes de la transacció no són exactament ":value"', + 'search_modifier_no_notes' => 'La transacció no té notes', + 'search_modifier_not_no_notes' => 'La transacció ha de tenir notes', + 'search_modifier_any_notes' => 'La transacció ha de tenir notes', + 'search_modifier_not_any_notes' => 'La transacció no té notes', + 'search_modifier_amount_is' => 'La quantitat és exactament :value', + 'search_modifier_not_amount_is' => 'La quantitat no és :value', + 'search_modifier_amount_less' => 'La quantitat és igual o inferior a :value', + 'search_modifier_not_amount_more' => 'La quantitat és igual o inferior a :value', + 'search_modifier_amount_more' => 'La quantitat és igual o superior a :value', + 'search_modifier_not_amount_less' => 'La quantitat és igual o superior a :value', + 'search_modifier_source_account_is' => 'El nom del compte d\'origen és exactament ":value"', + 'search_modifier_not_source_account_is' => 'El nom del compte d\'origen no és ":value"', + 'search_modifier_source_account_contains' => 'El nom del compte d\'origen conté ":value"', + 'search_modifier_not_source_account_contains' => 'El nom del compte d\'origen no conté ":value"', + 'search_modifier_source_account_starts' => 'El nom del compte d\'origen comença per ":value"', + 'search_modifier_not_source_account_starts' => 'El nom del compte d\'origen no comença per ":value"', + 'search_modifier_source_account_ends' => 'El nom del compte d\'origen acaba amb ":value"', + 'search_modifier_not_source_account_ends' => 'El nom del compte d\'origen no acaba amb ":value"', + 'search_modifier_source_account_id' => 'L\'ID del compte d\'origen és :value', + 'search_modifier_not_source_account_id' => 'L\'ID del compte d\'origen no és :value', + 'search_modifier_source_account_nr_is' => 'El número (IBAN) del compte d\'origen és ":value"', + 'search_modifier_not_source_account_nr_is' => 'El número (IBAN) del compte d\'origen no és ":value"', + 'search_modifier_source_account_nr_contains' => 'El número (IBAN) del compte d\'origen conté ":value"', + 'search_modifier_not_source_account_nr_contains' => 'El número (IBAN) del compte d\'origen no conté ":value"', + 'search_modifier_source_account_nr_starts' => 'El número (IBAN) del compte d\'origen comença per ":value"', + 'search_modifier_not_source_account_nr_starts' => 'El número (IBAN) del compte d\'origen no comença per ":value"', + 'search_modifier_source_account_nr_ends' => 'El número (IBAN) del compte d\'origen acaba amb ":value"', + 'search_modifier_not_source_account_nr_ends' => 'El número (IBAN) del compte d\'origen no acaba amb ":value"', + 'search_modifier_destination_account_is' => 'El nom del compte de destí és exactament ":value"', + 'search_modifier_not_destination_account_is' => 'El nom del compte de destí no és ":value"', + 'search_modifier_destination_account_contains' => 'El nom del compte de destí conté ":value"', + 'search_modifier_not_destination_account_contains' => 'El nom del compte de destí no conté ":value"', + 'search_modifier_destination_account_starts' => 'El nom del compte de destí comença per ":value"', + 'search_modifier_not_destination_account_starts' => 'El nom del compte de destí no comença per ":value"', + 'search_modifier_destination_account_ends' => 'El nom del compte de destí acaba amb ":value"', + 'search_modifier_not_destination_account_ends' => 'El nom del compte de destí no acaba amb ":value"', + 'search_modifier_destination_account_id' => 'L\'ID del compte de destí és :value', + 'search_modifier_not_destination_account_id' => 'L\'ID del compte de destí no és :value', + 'search_modifier_destination_is_cash' => 'El compte de destí és el compte "(efectiu)"', + 'search_modifier_not_destination_is_cash' => 'El compte de destí no és el compte "(efectiu)"', + 'search_modifier_source_is_cash' => 'El compte d\'origen és el compte "(efectiu)"', + 'search_modifier_not_source_is_cash' => 'El compte d\'origen no és el compte "(efectiu)"', + 'search_modifier_destination_account_nr_is' => 'El número (IBAN) del compte de destí és ":value"', + 'search_modifier_not_destination_account_nr_is' => 'El número (IBAN) del compte de destí és ":value"', + 'search_modifier_destination_account_nr_contains' => 'El número (IBAN) del compte de destí conté ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'El número (IBAN) del compte de destí no conté ":value"', + 'search_modifier_destination_account_nr_starts' => 'El número (IBAN) del compte de destí comença per ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'El número (IBAN) del compte de destí no comença per ":value"', + 'search_modifier_destination_account_nr_ends' => 'El número (IBAN) del compte de destí acaba amb ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'El número (IBAN) del compte de destí no acaba amb ":value"', + 'search_modifier_account_id' => 'L\'ID del compte d\'origen o de destí és/són: :value', + 'search_modifier_not_account_id' => 'L\'ID del compte d\'origen o de destí no és/són: :value', + 'search_modifier_category_is' => 'La categoria és ":value"', + 'search_modifier_not_category_is' => 'La categoria no és ":value"', + 'search_modifier_budget_is' => 'El pressupost és ":value"', + 'search_modifier_not_budget_is' => 'El pressupost no és ":value"', + 'search_modifier_bill_is' => 'La factura és ":value"', + 'search_modifier_not_bill_is' => 'La factura no és ":value"', + 'search_modifier_transaction_type' => 'El tipus de transacció és ":value"', + 'search_modifier_not_transaction_type' => 'El tipus de transacció no és ":value"', + 'search_modifier_tag_is' => 'L\'etiqueta és ":value"', + 'search_modifier_tag_contains' => 'L\'etiqueta conté ":value"', + 'search_modifier_not_tag_contains' => 'L\'etiqueta no conté ":value"', + 'search_modifier_tag_ends' => 'L\'etiqueta acaba amb ":value"', + 'search_modifier_tag_starts' => 'L\'etiqueta comença amb ":value"', + 'search_modifier_not_tag_is' => 'Cap etiqueta és ":value"', + 'search_modifier_date_on_year' => 'L\'any de la transacció és ":value"', + 'search_modifier_not_date_on_year' => 'L\'any de la transacció no és ":value"', + 'search_modifier_date_on_month' => 'El mes de la transacció és ":value"', + 'search_modifier_not_date_on_month' => 'El mes de la transacció no és ":value"', + 'search_modifier_date_on_day' => 'La transacció és el dia ":value" del mes', + 'search_modifier_not_date_on_day' => 'La transacció no és el dia ":value" del mes', + 'search_modifier_date_before_year' => 'L\'any de la transacció és anterior o igual a ":value"', + 'search_modifier_date_before_month' => 'El mes de la transacció és anterior o igual a ":value"', + 'search_modifier_date_before_day' => 'El dia del mes de la transacció és anterior o igual a ":value"', + 'search_modifier_date_after_year' => 'L\'any de la transacció és igual o posterior a ":value"', + 'search_modifier_date_after_month' => 'El mes de la transacció és igual o posterior a ":value"', + 'search_modifier_date_after_day' => 'El dia del mes de la transacció és igual o posterior a ":value"', // new - 'search_modifier_tag_is_not' => 'Cap etiqueta és ":value"', - 'search_modifier_not_tag_is_not' => 'L\'etiqueta és ":value"', - 'search_modifier_account_is' => 'Un dels comptes és ":value"', - 'search_modifier_not_account_is' => 'Cap dels comptes és ":value"', - 'search_modifier_account_contains' => 'Un dels comptes conté ":value"', - 'search_modifier_not_account_contains' => 'Cap dels comptes conté ":value"', - 'search_modifier_account_ends' => 'Un dels comptes acaba amb ":value"', - 'search_modifier_not_account_ends' => 'Cap dels comptes acaba amb ":value"', - 'search_modifier_account_starts' => 'Un dels comptes comença per ":value"', - 'search_modifier_not_account_starts' => 'Cap dels comptes comença per ":value"', - 'search_modifier_account_nr_is' => 'El número / IBAN d\'un dels comptes és ":value"', - 'search_modifier_not_account_nr_is' => 'Cap número de compte / IBAN és ":value"', - 'search_modifier_account_nr_contains' => 'Qualsevol número de compte / IBAN conté ":value"', - 'search_modifier_not_account_nr_contains' => 'Cap número de compte / IBAN conté ":value"', - 'search_modifier_account_nr_ends' => 'Qualsevol número de compte / IBAN acaba amb ":value"', - 'search_modifier_not_account_nr_ends' => 'Cap número de compte / IBAN acaba amb ":value"', - 'search_modifier_account_nr_starts' => 'Qualsevol número de compte / IBAN comença per ":value"', - 'search_modifier_not_account_nr_starts' => 'Cap número de compte / IBAN comença per ":value"', - 'search_modifier_category_contains' => 'La categoria conté ":value"', - 'search_modifier_not_category_contains' => 'La categoria no conté ":value"', - 'search_modifier_category_ends' => 'La categoria acaba amb ":value"', - 'search_modifier_not_category_ends' => 'La categoria no acaba amb ":value"', - 'search_modifier_category_starts' => 'La categoria comença per ":value"', - 'search_modifier_not_category_starts' => 'La categoria no comença per ":value"', - 'search_modifier_budget_contains' => 'El pressupost conté ":value"', - 'search_modifier_not_budget_contains' => 'El pressupost no conté ":value"', - 'search_modifier_budget_ends' => 'El pressupost acaba amb ":value"', - 'search_modifier_not_budget_ends' => 'El pressupost no acaba amb ":value"', - 'search_modifier_budget_starts' => 'El pressupost comença per ":value"', - 'search_modifier_not_budget_starts' => 'El pressupost no comença per ":value"', - 'search_modifier_bill_contains' => 'La factura conté ":value"', - 'search_modifier_not_bill_contains' => 'La factura no conté ":value"', - 'search_modifier_bill_ends' => 'La factura acaba amb ":value"', - 'search_modifier_not_bill_ends' => 'La factura no acaba amb ":value"', - 'search_modifier_bill_starts' => 'La factura comença per ":value"', - 'search_modifier_not_bill_starts' => 'La factura no comença per ":value"', - 'search_modifier_external_id_contains' => 'L\'ID externa conté ":value"', - 'search_modifier_not_external_id_contains' => 'L\'ID externa no conté ":value"', - 'search_modifier_external_id_ends' => 'L\'ID externa acaba amb ":value"', - 'search_modifier_not_external_id_ends' => 'L\'ID externa no acaba amb ":value"', - 'search_modifier_external_id_starts' => 'L\'ID externa comença per ":value"', - 'search_modifier_not_external_id_starts' => 'L\'ID externa no comença per ":value"', - 'search_modifier_internal_reference_contains' => 'La referència interna conté ":value"', - 'search_modifier_not_internal_reference_contains' => 'La referència interna no conté ":value"', - 'search_modifier_internal_reference_ends' => 'La referència interna acaba amb ":value"', - 'search_modifier_internal_reference_starts' => 'La referència interna comença per ":value"', - 'search_modifier_not_internal_reference_ends' => 'La referència interna no acaba amb ":value"', - 'search_modifier_not_internal_reference_starts' => 'La referència interna no comença per ":value"', - 'search_modifier_external_url_is' => 'L\'URL extern és ":value"', - 'search_modifier_not_external_url_is' => 'L\'URL extern no és ":value"', - 'search_modifier_external_url_contains' => 'L\'URL extern conté ":value"', - 'search_modifier_not_external_url_contains' => 'L\'URL extern no conté ":value"', - 'search_modifier_external_url_ends' => 'L\'URL extern acaba amb ":value"', - 'search_modifier_not_external_url_ends' => 'L\'URL extern no acaba amb ":value"', - 'search_modifier_external_url_starts' => 'L\'URL extern comença per ":value"', - 'search_modifier_not_external_url_starts' => 'L\'URL extern no comença per ":value"', - 'search_modifier_has_no_attachments' => 'La transacció no té fitxers adjunts', - 'search_modifier_not_has_no_attachments' => 'La transacció té fitxers adjunts', - 'search_modifier_not_has_attachments' => 'La transacció no té fitxers adjunts', - 'search_modifier_account_is_cash' => 'Un dels comptes és el compte "(efectiu)".', - 'search_modifier_not_account_is_cash' => 'Cap dels comptes és el compte "(efectiu)".', - 'search_modifier_journal_id' => 'L\'ID del registre és ":value"', - 'search_modifier_not_journal_id' => 'L\'ID del registre no és ":value"', - 'search_modifier_recurrence_id' => 'L\'ID de la transacció periòdica és ":value"', - 'search_modifier_not_recurrence_id' => 'L\'ID de la transacció periòdica no és ":value"', - 'search_modifier_foreign_amount_is' => 'La quantitat en moneda estrangera és ":value"', - 'search_modifier_not_foreign_amount_is' => 'La quantitat en moneda estrangera no és ":value"', - 'search_modifier_foreign_amount_less' => 'La quantitat en moneda estrangera és inferior a ":value"', - 'search_modifier_not_foreign_amount_more' => 'La quantitat en moneda estrangera és inferior a ":value"', - 'search_modifier_not_foreign_amount_less' => 'La quantitat en moneda estrangera és superior a ":value"', - 'search_modifier_foreign_amount_more' => 'La quantitat en moneda estrangera és superior a ":value"', - 'search_modifier_exists' => 'La transacció existeix (qualsevol)', - 'search_modifier_not_exists' => 'La transacció no existeix (cap transacció)', + 'search_modifier_tag_is_not' => 'Cap etiqueta és ":value"', + 'search_modifier_not_tag_is_not' => 'L\'etiqueta és ":value"', + 'search_modifier_account_is' => 'Un dels comptes és ":value"', + 'search_modifier_not_account_is' => 'Cap dels comptes és ":value"', + 'search_modifier_account_contains' => 'Un dels comptes conté ":value"', + 'search_modifier_not_account_contains' => 'Cap dels comptes conté ":value"', + 'search_modifier_account_ends' => 'Un dels comptes acaba amb ":value"', + 'search_modifier_not_account_ends' => 'Cap dels comptes acaba amb ":value"', + 'search_modifier_account_starts' => 'Un dels comptes comença per ":value"', + 'search_modifier_not_account_starts' => 'Cap dels comptes comença per ":value"', + 'search_modifier_account_nr_is' => 'El número / IBAN d\'un dels comptes és ":value"', + 'search_modifier_not_account_nr_is' => 'Cap número de compte / IBAN és ":value"', + 'search_modifier_account_nr_contains' => 'Qualsevol número de compte / IBAN conté ":value"', + 'search_modifier_not_account_nr_contains' => 'Cap número de compte / IBAN conté ":value"', + 'search_modifier_account_nr_ends' => 'Qualsevol número de compte / IBAN acaba amb ":value"', + 'search_modifier_not_account_nr_ends' => 'Cap número de compte / IBAN acaba amb ":value"', + 'search_modifier_account_nr_starts' => 'Qualsevol número de compte / IBAN comença per ":value"', + 'search_modifier_not_account_nr_starts' => 'Cap número de compte / IBAN comença per ":value"', + 'search_modifier_category_contains' => 'La categoria conté ":value"', + 'search_modifier_not_category_contains' => 'La categoria no conté ":value"', + 'search_modifier_category_ends' => 'La categoria acaba amb ":value"', + 'search_modifier_not_category_ends' => 'La categoria no acaba amb ":value"', + 'search_modifier_category_starts' => 'La categoria comença per ":value"', + 'search_modifier_not_category_starts' => 'La categoria no comença per ":value"', + 'search_modifier_budget_contains' => 'El pressupost conté ":value"', + 'search_modifier_not_budget_contains' => 'El pressupost no conté ":value"', + 'search_modifier_budget_ends' => 'El pressupost acaba amb ":value"', + 'search_modifier_not_budget_ends' => 'El pressupost no acaba amb ":value"', + 'search_modifier_budget_starts' => 'El pressupost comença per ":value"', + 'search_modifier_not_budget_starts' => 'El pressupost no comença per ":value"', + 'search_modifier_bill_contains' => 'La factura conté ":value"', + 'search_modifier_not_bill_contains' => 'La factura no conté ":value"', + 'search_modifier_bill_ends' => 'La factura acaba amb ":value"', + 'search_modifier_not_bill_ends' => 'La factura no acaba amb ":value"', + 'search_modifier_bill_starts' => 'La factura comença per ":value"', + 'search_modifier_not_bill_starts' => 'La factura no comença per ":value"', + 'search_modifier_external_id_contains' => 'L\'ID externa conté ":value"', + 'search_modifier_not_external_id_contains' => 'L\'ID externa no conté ":value"', + 'search_modifier_external_id_ends' => 'L\'ID externa acaba amb ":value"', + 'search_modifier_not_external_id_ends' => 'L\'ID externa no acaba amb ":value"', + 'search_modifier_external_id_starts' => 'L\'ID externa comença per ":value"', + 'search_modifier_not_external_id_starts' => 'L\'ID externa no comença per ":value"', + 'search_modifier_internal_reference_contains' => 'La referència interna conté ":value"', + 'search_modifier_not_internal_reference_contains' => 'La referència interna no conté ":value"', + 'search_modifier_internal_reference_ends' => 'La referència interna acaba amb ":value"', + 'search_modifier_internal_reference_starts' => 'La referència interna comença per ":value"', + 'search_modifier_not_internal_reference_ends' => 'La referència interna no acaba amb ":value"', + 'search_modifier_not_internal_reference_starts' => 'La referència interna no comença per ":value"', + 'search_modifier_external_url_is' => 'L\'URL extern és ":value"', + 'search_modifier_not_external_url_is' => 'L\'URL extern no és ":value"', + 'search_modifier_external_url_contains' => 'L\'URL extern conté ":value"', + 'search_modifier_not_external_url_contains' => 'L\'URL extern no conté ":value"', + 'search_modifier_external_url_ends' => 'L\'URL extern acaba amb ":value"', + 'search_modifier_not_external_url_ends' => 'L\'URL extern no acaba amb ":value"', + 'search_modifier_external_url_starts' => 'L\'URL extern comença per ":value"', + 'search_modifier_not_external_url_starts' => 'L\'URL extern no comença per ":value"', + 'search_modifier_has_no_attachments' => 'La transacció no té fitxers adjunts', + 'search_modifier_not_has_no_attachments' => 'La transacció té fitxers adjunts', + 'search_modifier_not_has_attachments' => 'La transacció no té fitxers adjunts', + 'search_modifier_account_is_cash' => 'Un dels comptes és el compte "(efectiu)".', + 'search_modifier_not_account_is_cash' => 'Cap dels comptes és el compte "(efectiu)".', + 'search_modifier_journal_id' => 'L\'ID del registre és ":value"', + 'search_modifier_not_journal_id' => 'L\'ID del registre no és ":value"', + 'search_modifier_recurrence_id' => 'L\'ID de la transacció periòdica és ":value"', + 'search_modifier_not_recurrence_id' => 'L\'ID de la transacció periòdica no és ":value"', + 'search_modifier_foreign_amount_is' => 'La quantitat en moneda estrangera és ":value"', + 'search_modifier_not_foreign_amount_is' => 'La quantitat en moneda estrangera no és ":value"', + 'search_modifier_foreign_amount_less' => 'La quantitat en moneda estrangera és inferior a ":value"', + 'search_modifier_not_foreign_amount_more' => 'La quantitat en moneda estrangera és inferior a ":value"', + 'search_modifier_not_foreign_amount_less' => 'La quantitat en moneda estrangera és superior a ":value"', + 'search_modifier_foreign_amount_more' => 'La quantitat en moneda estrangera és superior a ":value"', + 'search_modifier_exists' => 'La transacció existeix (qualsevol)', + 'search_modifier_not_exists' => 'La transacció no existeix (cap transacció)', // date fields - 'search_modifier_interest_date_on' => 'La data d\'interès de la transacció és ":value"', - 'search_modifier_not_interest_date_on' => 'La data d\'interès de la transacció no és ":value"', - 'search_modifier_interest_date_on_year' => 'La data d\'interès de la transacció és en l\'any ":value"', - 'search_modifier_not_interest_date_on_year' => 'La data d\'interès de la transacció no és en l\'any ":value"', - 'search_modifier_interest_date_on_month' => 'La data d\'interès de la transacció és en el mes ":value"', - 'search_modifier_not_interest_date_on_month' => 'La data d\'interès de la transacció no és en el mes ":value"', - 'search_modifier_interest_date_on_day' => 'La data d\'interès de la transacció és en el dia ":value" del mes', - 'search_modifier_not_interest_date_on_day' => 'La data d\'interès de la transacció no és en el dia ":value" del mes', - 'search_modifier_interest_date_before_year' => 'La data d\'interès de la transacció és prèvia o igual a l\'any ":value"', - 'search_modifier_interest_date_before_month' => 'La data d\'interès de la transacció és prèvia o igual al mes ":value"', - 'search_modifier_interest_date_before_day' => 'La data d\'interès de la transacció és prèvia o igual al dia ":value" del mes', - 'search_modifier_interest_date_after_year' => 'La data d\'interès de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_interest_date_after_month' => 'La data d\'interès de la transacció és igual o posterior al mes ":value"', - 'search_modifier_interest_date_after_day' => 'La data d\'interès de la transacció és igual o posterior al dia ":value" del mes', - 'search_modifier_book_date_on_year' => 'La data de registre de la transacció és en l\'any ":value"', - 'search_modifier_book_date_on_month' => 'La data de registre de la transacció és en el mes ":value"', - 'search_modifier_book_date_on_day' => 'La data de registre de la transacció és en el dia ":value" del mes', - 'search_modifier_not_book_date_on_year' => 'La data de registre de la transacció no és en l\'any ":value"', - 'search_modifier_not_book_date_on_month' => 'La data de registre de la transacció no és en el mes ":value"', - 'search_modifier_not_book_date_on_day' => 'La data de registre de la transacció no és en el dia ":value" del mes', - 'search_modifier_book_date_before_year' => 'La data de registre de la transacció és anterior o igual a l\'any ":value"', - 'search_modifier_book_date_before_month' => 'La data de registre de la transacció és anterior o igual al mes ":value"', - 'search_modifier_book_date_before_day' => 'La data de registre de la transacció és anterior o igual al dia ":value" del mes', - 'search_modifier_book_date_after_year' => 'La data de registre de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_book_date_after_month' => 'La data de registre de la transacció és igual o posterior al mes ":value"', - 'search_modifier_book_date_after_day' => 'La data de registre de la transacció és igual o posterior al dia ":value" del mes', - 'search_modifier_process_date_on_year' => 'La data de processament de la transacció és en l\'any ":value"', - 'search_modifier_process_date_on_month' => 'La data de processament de la transacció és en el mes ":value"', - 'search_modifier_process_date_on_day' => 'La data de processament de la transacció és en el dia ":value" del mes', - 'search_modifier_not_process_date_on_year' => 'La data de processament de la transacció no és en l\'any ":value"', - 'search_modifier_not_process_date_on_month' => 'La data de processament de la transacció no és en el mes ":value"', - 'search_modifier_not_process_date_on_day' => 'La data de processament de la transacció no és en el dia ":value" del mes', - 'search_modifier_process_date_before_year' => 'La data de processament de la transacció és anterior o igual a l\'any ":value"', - 'search_modifier_process_date_before_month' => 'La data de processament de la transacció és anterior o igual al mes ":value"', - 'search_modifier_process_date_before_day' => 'La data de processament de la transacció és anterior o igual al dia ":value" del mes', - 'search_modifier_process_date_after_year' => 'La data de processament de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_process_date_after_month' => 'La data de processament de la transacció és igual o posterior al mes ":value"', - 'search_modifier_process_date_after_day' => 'La data de processament de la transacció és igual o posterior al dia ":value" del mes', - 'search_modifier_due_date_on_year' => 'La data de venciment de la transacció és en l\'any ":value"', - 'search_modifier_due_date_on_month' => 'La data de venciment de la transacció és en el mes ":value"', - 'search_modifier_due_date_on_day' => 'La data de venciment de la transacció és en el dia ":value" del mes', - 'search_modifier_not_due_date_on_year' => 'La data de venciment de la transacció no és en l\'any ":value"', - 'search_modifier_not_due_date_on_month' => 'La data de venciment de la transacció no és en el mes ":value"', - 'search_modifier_not_due_date_on_day' => 'La data de venciment de la transacció no és en el dia ":value" del mes', - 'search_modifier_due_date_before_year' => 'La data de venciment de la transacció és anterior o igual a l\'any ":value"', - 'search_modifier_due_date_before_month' => 'La data de venciment de la transacció és anterior o igual al mes ":value"', - 'search_modifier_due_date_before_day' => 'La data de venciment de la transacció és anterior o igual al dia ":value" del mes', - 'search_modifier_due_date_after_year' => 'La data de venciment de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_due_date_after_month' => 'La data de venciment de la transacció és igual o posterior al mes ":value"', - 'search_modifier_due_date_after_day' => 'La data de venciment de la transacció és igual o posterior al dia ":value" del mes', - 'search_modifier_payment_date_on_year' => 'La data de pagament de la transacció és en l\'any ":value"', - 'search_modifier_payment_date_on_month' => 'La data de pagament de la transacció és en el mes ":value"', - 'search_modifier_payment_date_on_day' => 'La data de pagament de la transacció és en el dia ":value" del mes', - 'search_modifier_not_payment_date_on_year' => 'La data de pagament de la transacció no és en l\'any ":value"', - 'search_modifier_not_payment_date_on_month' => 'La data de pagament de la transacció no és en el mes ":value"', - 'search_modifier_not_payment_date_on_day' => 'La data de pagament de la transacció no és en el dia ":value" del mes', - 'search_modifier_payment_date_before_year' => 'La data de pagament de la transacció és anterior o igual a l\'any ":value"', - 'search_modifier_payment_date_before_month' => 'La data de pagament de la transacció és anterior o igual al mes ":value"', - 'search_modifier_payment_date_before_day' => 'La data de pagament de la transacció és anterior o igual al dia ":value" del mes', - 'search_modifier_payment_date_after_year' => 'La data de pagament de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_payment_date_after_month' => 'La data de pagament de la transacció és igual o posterior al mes ":value"', - 'search_modifier_payment_date_after_day' => 'La data de pagament de la transacció és igual o posterior al dia ":value" del mes', - 'search_modifier_invoice_date_on_year' => 'La data de factura de la transacció és en l\'any ":value"', - 'search_modifier_invoice_date_on_month' => 'La data de factura de la transacció és en el mes ":value"', - 'search_modifier_invoice_date_on_day' => 'La data de factura de la transacció és en el dia ":value" del mes', - 'search_modifier_not_invoice_date_on_year' => 'La data de factura de la transacció no és en l\'any ":value"', - 'search_modifier_not_invoice_date_on_month' => 'La data de factura de la transacció no és en el mes ":value"', - 'search_modifier_not_invoice_date_on_day' => 'La data de factura de la transacció no és en el dia ":value" del mes', - 'search_modifier_invoice_date_before_year' => 'La data de factura de la transacció és prèvia o igual a l\'any ":value"', - 'search_modifier_invoice_date_before_month' => 'La data de factura de la transacció és prèvia o igual al mes ":value"', - 'search_modifier_invoice_date_before_day' => 'La data de factura de la transacció és prèvia o igual al dia ":value" del mes', - 'search_modifier_invoice_date_after_year' => 'La data de factura de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_invoice_date_after_month' => 'La data de factura de la transacció és igual o posterior al mes ":value"', - 'search_modifier_invoice_date_after_day' => 'La data de factura de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_interest_date_on' => 'La data d\'interès de la transacció és ":value"', + 'search_modifier_not_interest_date_on' => 'La data d\'interès de la transacció no és ":value"', + 'search_modifier_interest_date_on_year' => 'La data d\'interès de la transacció és en l\'any ":value"', + 'search_modifier_not_interest_date_on_year' => 'La data d\'interès de la transacció no és en l\'any ":value"', + 'search_modifier_interest_date_on_month' => 'La data d\'interès de la transacció és en el mes ":value"', + 'search_modifier_not_interest_date_on_month' => 'La data d\'interès de la transacció no és en el mes ":value"', + 'search_modifier_interest_date_on_day' => 'La data d\'interès de la transacció és en el dia ":value" del mes', + 'search_modifier_not_interest_date_on_day' => 'La data d\'interès de la transacció no és en el dia ":value" del mes', + 'search_modifier_interest_date_before_year' => 'La data d\'interès de la transacció és prèvia o igual a l\'any ":value"', + 'search_modifier_interest_date_before_month' => 'La data d\'interès de la transacció és prèvia o igual al mes ":value"', + 'search_modifier_interest_date_before_day' => 'La data d\'interès de la transacció és prèvia o igual al dia ":value" del mes', + 'search_modifier_interest_date_after_year' => 'La data d\'interès de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_interest_date_after_month' => 'La data d\'interès de la transacció és igual o posterior al mes ":value"', + 'search_modifier_interest_date_after_day' => 'La data d\'interès de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_book_date_on_year' => 'La data de registre de la transacció és en l\'any ":value"', + 'search_modifier_book_date_on_month' => 'La data de registre de la transacció és en el mes ":value"', + 'search_modifier_book_date_on_day' => 'La data de registre de la transacció és en el dia ":value" del mes', + 'search_modifier_not_book_date_on_year' => 'La data de registre de la transacció no és en l\'any ":value"', + 'search_modifier_not_book_date_on_month' => 'La data de registre de la transacció no és en el mes ":value"', + 'search_modifier_not_book_date_on_day' => 'La data de registre de la transacció no és en el dia ":value" del mes', + 'search_modifier_book_date_before_year' => 'La data de registre de la transacció és anterior o igual a l\'any ":value"', + 'search_modifier_book_date_before_month' => 'La data de registre de la transacció és anterior o igual al mes ":value"', + 'search_modifier_book_date_before_day' => 'La data de registre de la transacció és anterior o igual al dia ":value" del mes', + 'search_modifier_book_date_after_year' => 'La data de registre de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_book_date_after_month' => 'La data de registre de la transacció és igual o posterior al mes ":value"', + 'search_modifier_book_date_after_day' => 'La data de registre de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_process_date_on_year' => 'La data de processament de la transacció és en l\'any ":value"', + 'search_modifier_process_date_on_month' => 'La data de processament de la transacció és en el mes ":value"', + 'search_modifier_process_date_on_day' => 'La data de processament de la transacció és en el dia ":value" del mes', + 'search_modifier_not_process_date_on_year' => 'La data de processament de la transacció no és en l\'any ":value"', + 'search_modifier_not_process_date_on_month' => 'La data de processament de la transacció no és en el mes ":value"', + 'search_modifier_not_process_date_on_day' => 'La data de processament de la transacció no és en el dia ":value" del mes', + 'search_modifier_process_date_before_year' => 'La data de processament de la transacció és anterior o igual a l\'any ":value"', + 'search_modifier_process_date_before_month' => 'La data de processament de la transacció és anterior o igual al mes ":value"', + 'search_modifier_process_date_before_day' => 'La data de processament de la transacció és anterior o igual al dia ":value" del mes', + 'search_modifier_process_date_after_year' => 'La data de processament de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_process_date_after_month' => 'La data de processament de la transacció és igual o posterior al mes ":value"', + 'search_modifier_process_date_after_day' => 'La data de processament de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_due_date_on_year' => 'La data de venciment de la transacció és en l\'any ":value"', + 'search_modifier_due_date_on_month' => 'La data de venciment de la transacció és en el mes ":value"', + 'search_modifier_due_date_on_day' => 'La data de venciment de la transacció és en el dia ":value" del mes', + 'search_modifier_not_due_date_on_year' => 'La data de venciment de la transacció no és en l\'any ":value"', + 'search_modifier_not_due_date_on_month' => 'La data de venciment de la transacció no és en el mes ":value"', + 'search_modifier_not_due_date_on_day' => 'La data de venciment de la transacció no és en el dia ":value" del mes', + 'search_modifier_due_date_before_year' => 'La data de venciment de la transacció és anterior o igual a l\'any ":value"', + 'search_modifier_due_date_before_month' => 'La data de venciment de la transacció és anterior o igual al mes ":value"', + 'search_modifier_due_date_before_day' => 'La data de venciment de la transacció és anterior o igual al dia ":value" del mes', + 'search_modifier_due_date_after_year' => 'La data de venciment de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_due_date_after_month' => 'La data de venciment de la transacció és igual o posterior al mes ":value"', + 'search_modifier_due_date_after_day' => 'La data de venciment de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_payment_date_on_year' => 'La data de pagament de la transacció és en l\'any ":value"', + 'search_modifier_payment_date_on_month' => 'La data de pagament de la transacció és en el mes ":value"', + 'search_modifier_payment_date_on_day' => 'La data de pagament de la transacció és en el dia ":value" del mes', + 'search_modifier_not_payment_date_on_year' => 'La data de pagament de la transacció no és en l\'any ":value"', + 'search_modifier_not_payment_date_on_month' => 'La data de pagament de la transacció no és en el mes ":value"', + 'search_modifier_not_payment_date_on_day' => 'La data de pagament de la transacció no és en el dia ":value" del mes', + 'search_modifier_payment_date_before_year' => 'La data de pagament de la transacció és anterior o igual a l\'any ":value"', + 'search_modifier_payment_date_before_month' => 'La data de pagament de la transacció és anterior o igual al mes ":value"', + 'search_modifier_payment_date_before_day' => 'La data de pagament de la transacció és anterior o igual al dia ":value" del mes', + 'search_modifier_payment_date_after_year' => 'La data de pagament de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_payment_date_after_month' => 'La data de pagament de la transacció és igual o posterior al mes ":value"', + 'search_modifier_payment_date_after_day' => 'La data de pagament de la transacció és igual o posterior al dia ":value" del mes', + 'search_modifier_invoice_date_on_year' => 'La data de factura de la transacció és en l\'any ":value"', + 'search_modifier_invoice_date_on_month' => 'La data de factura de la transacció és en el mes ":value"', + 'search_modifier_invoice_date_on_day' => 'La data de factura de la transacció és en el dia ":value" del mes', + 'search_modifier_not_invoice_date_on_year' => 'La data de factura de la transacció no és en l\'any ":value"', + 'search_modifier_not_invoice_date_on_month' => 'La data de factura de la transacció no és en el mes ":value"', + 'search_modifier_not_invoice_date_on_day' => 'La data de factura de la transacció no és en el dia ":value" del mes', + 'search_modifier_invoice_date_before_year' => 'La data de factura de la transacció és prèvia o igual a l\'any ":value"', + 'search_modifier_invoice_date_before_month' => 'La data de factura de la transacció és prèvia o igual al mes ":value"', + 'search_modifier_invoice_date_before_day' => 'La data de factura de la transacció és prèvia o igual al dia ":value" del mes', + 'search_modifier_invoice_date_after_year' => 'La data de factura de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_invoice_date_after_month' => 'La data de factura de la transacció és igual o posterior al mes ":value"', + 'search_modifier_invoice_date_after_day' => 'La data de factura de la transacció és igual o posterior al dia ":value" del mes', // other dates - 'search_modifier_updated_at_on_year' => 'La transacció es va actualitzar per últim cop l\'any ":value"', - 'search_modifier_updated_at_on_month' => 'La transacció es va actualitzar per últim cop el mes ":value"', - 'search_modifier_updated_at_on_day' => 'La transacció es va actualitzar per últim el dia ":value" del mes', - 'search_modifier_not_updated_at_on_year' => 'La transacció no es va actualitzar per últim cop l\'any ":value"', - 'search_modifier_not_updated_at_on_month' => 'La transacció no es va actualitzar per últim cop el mes ":value"', - 'search_modifier_not_updated_at_on_day' => 'La transacció no es va actualitzar per últim el dia ":value" del mes', - 'search_modifier_updated_at_before_year' => 'L\'última data d\'actualització de la transacció és anterior o igual a l\'any ":value"', - 'search_modifier_updated_at_before_month' => 'La transacció es va actualitzar per últim cop abans o durant el mes ":value"', - 'search_modifier_updated_at_before_day' => 'La transacció es va actualitzar per últim cop abans o durant el dia ":value" del mes', - 'search_modifier_updated_at_after_year' => 'L\'última data d\'actualització de la transacció és igual o posterior a l\'any ":value"', - 'search_modifier_updated_at_after_month' => 'La transacció es va actualitzar per últim cop durant o després del mes ":value"', - 'search_modifier_updated_at_after_day' => 'La transacció es va actualitzar per últim cop durant o després del dia ":value" del mes', - 'search_modifier_created_at_on_year' => 'La transacció es va crear l\'any ":value"', - 'search_modifier_created_at_on_month' => 'La transacció es va crear el mes ":value"', - 'search_modifier_created_at_on_day' => 'La transacció es va crear el dia ":value" del mes', - 'search_modifier_not_created_at_on_year' => 'La transacció no es va crear l\'any ":value"', - 'search_modifier_not_created_at_on_month' => 'La transacció no es va crear el mes ":value"', - 'search_modifier_not_created_at_on_day' => 'La transacció no es va crear el dia ":value" del mes', - 'search_modifier_created_at_before_year' => 'L\'any de creació de la transacció és anterior o igual a ":value"', - 'search_modifier_created_at_before_month' => 'El mes de creació de la transacció és anterior o igual a ":value"', - 'search_modifier_created_at_before_day' => 'El dia del mes de creació de la transacció és anterior o igual a ":value"', - 'search_modifier_created_at_after_year' => 'L\'any de creació de la transacció és igual o posterior a ":value"', - 'search_modifier_created_at_after_month' => 'El mes de creació de la transacció és igual o posterior a ":value"', - 'search_modifier_created_at_after_day' => 'El dia del mes de creació de la transacció és igual o posterior a ":value"', - 'search_modifier_interest_date_before' => 'La data d\'interès de la transacció és anterior o igual a ":value"', - 'search_modifier_interest_date_after' => 'La data d\'interès de la transacció és igual o posterior a ":value"', - 'search_modifier_book_date_on' => 'La data de registre de la transacció és el ":value"', - 'search_modifier_not_book_date_on' => 'La data de registre de la transacció no és el ":value"', - 'search_modifier_book_date_before' => 'La data de registre de la transacció és anterior o igual a ":value"', - 'search_modifier_book_date_after' => 'La data de registre de la transacció és igual o posterior a ":value"', - 'search_modifier_process_date_on' => 'La data de processament de la transacció és el ":value"', - 'search_modifier_not_process_date_on' => 'La data de processament de la transacció no és el ":value"', - 'search_modifier_process_date_before' => 'La data de processament de la transacció és anterior o igual a ":value"', - 'search_modifier_process_date_after' => 'La data de processament de la transacció és igual o posterior a ":value"', - 'search_modifier_due_date_on' => 'La data de venciment de la transacció és el ":value"', - 'search_modifier_not_due_date_on' => 'La data de venciment de la transacció no és el ":value"', - 'search_modifier_due_date_before' => 'La data de venciment de la transacció és anterior o igual a ":value"', - 'search_modifier_due_date_after' => 'La data de venciment de la transacció és igual o posterior a ":value"', - 'search_modifier_payment_date_on' => 'La data de pagament de la transacció és el ":value"', - 'search_modifier_not_payment_date_on' => 'La data de pagament de la transacció no és el ":value"', - 'search_modifier_payment_date_before' => 'La data de pagament de la transacció és anterior o igual a ":value"', - 'search_modifier_payment_date_after' => 'La data de pagament de la transacció és igual o posterior a ":value"', - 'search_modifier_invoice_date_on' => 'La data de facturació de la transacció és el ":value"', - 'search_modifier_not_invoice_date_on' => 'La data de facturació de la transacció no és el ":value"', - 'search_modifier_invoice_date_before' => 'La data de facturació de la transacció és anterior o igual a ":value"', - 'search_modifier_invoice_date_after' => 'La data de facturació de la transacció és igual o posterior a ":value"', - 'search_modifier_created_at_on' => 'La transacció es va crear el ":value"', - 'search_modifier_not_created_at_on' => 'La transacció no es va crear el ":value"', - 'search_modifier_created_at_before' => 'La data de creació de la transacció és anterior o igual a ":value"', - 'search_modifier_created_at_after' => 'La data de creació de la transacció és igual o posterior a ":value"', - 'search_modifier_updated_at_on' => 'La transacció es va actualitzar el ":value"', - 'search_modifier_not_updated_at_on' => 'La transacció no es va actualitzar el ":value"', - 'search_modifier_updated_at_before' => 'La data d\'actualització de la transacció és anterior o igual a ":value"', - 'search_modifier_updated_at_after' => 'La data d\'actualització de la transacció és igual o posterior a ":value"', + 'search_modifier_updated_at_on_year' => 'La transacció es va actualitzar per últim cop l\'any ":value"', + 'search_modifier_updated_at_on_month' => 'La transacció es va actualitzar per últim cop el mes ":value"', + 'search_modifier_updated_at_on_day' => 'La transacció es va actualitzar per últim el dia ":value" del mes', + 'search_modifier_not_updated_at_on_year' => 'La transacció no es va actualitzar per últim cop l\'any ":value"', + 'search_modifier_not_updated_at_on_month' => 'La transacció no es va actualitzar per últim cop el mes ":value"', + 'search_modifier_not_updated_at_on_day' => 'La transacció no es va actualitzar per últim el dia ":value" del mes', + 'search_modifier_updated_at_before_year' => 'L\'última data d\'actualització de la transacció és anterior o igual a l\'any ":value"', + 'search_modifier_updated_at_before_month' => 'La transacció es va actualitzar per últim cop abans o durant el mes ":value"', + 'search_modifier_updated_at_before_day' => 'La transacció es va actualitzar per últim cop abans o durant el dia ":value" del mes', + 'search_modifier_updated_at_after_year' => 'L\'última data d\'actualització de la transacció és igual o posterior a l\'any ":value"', + 'search_modifier_updated_at_after_month' => 'La transacció es va actualitzar per últim cop durant o després del mes ":value"', + 'search_modifier_updated_at_after_day' => 'La transacció es va actualitzar per últim cop durant o després del dia ":value" del mes', + 'search_modifier_created_at_on_year' => 'La transacció es va crear l\'any ":value"', + 'search_modifier_created_at_on_month' => 'La transacció es va crear el mes ":value"', + 'search_modifier_created_at_on_day' => 'La transacció es va crear el dia ":value" del mes', + 'search_modifier_not_created_at_on_year' => 'La transacció no es va crear l\'any ":value"', + 'search_modifier_not_created_at_on_month' => 'La transacció no es va crear el mes ":value"', + 'search_modifier_not_created_at_on_day' => 'La transacció no es va crear el dia ":value" del mes', + 'search_modifier_created_at_before_year' => 'L\'any de creació de la transacció és anterior o igual a ":value"', + 'search_modifier_created_at_before_month' => 'El mes de creació de la transacció és anterior o igual a ":value"', + 'search_modifier_created_at_before_day' => 'El dia del mes de creació de la transacció és anterior o igual a ":value"', + 'search_modifier_created_at_after_year' => 'L\'any de creació de la transacció és igual o posterior a ":value"', + 'search_modifier_created_at_after_month' => 'El mes de creació de la transacció és igual o posterior a ":value"', + 'search_modifier_created_at_after_day' => 'El dia del mes de creació de la transacció és igual o posterior a ":value"', + 'search_modifier_interest_date_before' => 'La data d\'interès de la transacció és anterior o igual a ":value"', + 'search_modifier_interest_date_after' => 'La data d\'interès de la transacció és igual o posterior a ":value"', + 'search_modifier_book_date_on' => 'La data de registre de la transacció és el ":value"', + 'search_modifier_not_book_date_on' => 'La data de registre de la transacció no és el ":value"', + 'search_modifier_book_date_before' => 'La data de registre de la transacció és anterior o igual a ":value"', + 'search_modifier_book_date_after' => 'La data de registre de la transacció és igual o posterior a ":value"', + 'search_modifier_process_date_on' => 'La data de processament de la transacció és el ":value"', + 'search_modifier_not_process_date_on' => 'La data de processament de la transacció no és el ":value"', + 'search_modifier_process_date_before' => 'La data de processament de la transacció és anterior o igual a ":value"', + 'search_modifier_process_date_after' => 'La data de processament de la transacció és igual o posterior a ":value"', + 'search_modifier_due_date_on' => 'La data de venciment de la transacció és el ":value"', + 'search_modifier_not_due_date_on' => 'La data de venciment de la transacció no és el ":value"', + 'search_modifier_due_date_before' => 'La data de venciment de la transacció és anterior o igual a ":value"', + 'search_modifier_due_date_after' => 'La data de venciment de la transacció és igual o posterior a ":value"', + 'search_modifier_payment_date_on' => 'La data de pagament de la transacció és el ":value"', + 'search_modifier_not_payment_date_on' => 'La data de pagament de la transacció no és el ":value"', + 'search_modifier_payment_date_before' => 'La data de pagament de la transacció és anterior o igual a ":value"', + 'search_modifier_payment_date_after' => 'La data de pagament de la transacció és igual o posterior a ":value"', + 'search_modifier_invoice_date_on' => 'La data de facturació de la transacció és el ":value"', + 'search_modifier_not_invoice_date_on' => 'La data de facturació de la transacció no és el ":value"', + 'search_modifier_invoice_date_before' => 'La data de facturació de la transacció és anterior o igual a ":value"', + 'search_modifier_invoice_date_after' => 'La data de facturació de la transacció és igual o posterior a ":value"', + 'search_modifier_created_at_on' => 'La transacció es va crear el ":value"', + 'search_modifier_not_created_at_on' => 'La transacció no es va crear el ":value"', + 'search_modifier_created_at_before' => 'La data de creació de la transacció és anterior o igual a ":value"', + 'search_modifier_created_at_after' => 'La data de creació de la transacció és igual o posterior a ":value"', + 'search_modifier_updated_at_on' => 'La transacció es va actualitzar el ":value"', + 'search_modifier_not_updated_at_on' => 'La transacció no es va actualitzar el ":value"', + 'search_modifier_updated_at_before' => 'La data d\'actualització de la transacció és anterior o igual a ":value"', + 'search_modifier_updated_at_after' => 'La data d\'actualització de la transacció és igual o posterior a ":value"', - 'search_modifier_attachment_name_is' => 'El nom de qualsevol adjunt és ":value"', - 'search_modifier_attachment_name_contains' => 'El nom de qualsevol adjunt conté ":value"', - 'search_modifier_attachment_name_starts' => 'El nom de qualsevol adjunt comença per ":value"', - 'search_modifier_attachment_name_ends' => 'El nom de qualsevol adjunt acaba amb ":value"', - 'search_modifier_attachment_notes_are' => 'Les notes de qualsevol adjunt són ":value"', - 'search_modifier_attachment_notes_contains' => 'Les notes de qualsevol adjunt contenen ":value"', - 'search_modifier_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":value"', - 'search_modifier_attachment_notes_ends' => 'Les notes de qualsevol adjunt acaben amb ":value"', - 'search_modifier_not_attachment_name_is' => 'El nom de qualsevol adjunt no és ":value"', - 'search_modifier_not_attachment_name_contains' => 'El nom de qualsevol adjunt no conté ":value"', - 'search_modifier_not_attachment_name_starts' => 'El nom de qualsevol adjunt no comença per ":value"', - 'search_modifier_not_attachment_name_ends' => 'El nom de qualsevol adjunt no acaba amb ":value"', - 'search_modifier_not_attachment_notes_are' => 'Les notes de qualsevol adjunt no són ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Les notes de qualsevol adjunt no contenen ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Les notes de qualsevol adjunt no acaben amb ":value"', - 'search_modifier_sepa_ct_is' => 'El SEPA CT és ":value"', - 'update_rule_from_query' => 'Actualitzar regla ":rule" de la consulta de la cerca', - 'create_rule_from_query' => 'Crear regla nova a partir de la consulta de la cerca', - 'rule_from_search_words' => 'El motor de regles ha tingut problemes gestionant ":string". La regla suggerida que s\'ajusti a la consulta de cerca pot donar resultats diferents. Si us plau, verifica els activadors de la regla curosament.', + 'search_modifier_attachment_name_is' => 'El nom de qualsevol adjunt és ":value"', + 'search_modifier_attachment_name_contains' => 'El nom de qualsevol adjunt conté ":value"', + 'search_modifier_attachment_name_starts' => 'El nom de qualsevol adjunt comença per ":value"', + 'search_modifier_attachment_name_ends' => 'El nom de qualsevol adjunt acaba amb ":value"', + 'search_modifier_attachment_notes_are' => 'Les notes de qualsevol adjunt són ":value"', + 'search_modifier_attachment_notes_contains' => 'Les notes de qualsevol adjunt contenen ":value"', + 'search_modifier_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":value"', + 'search_modifier_attachment_notes_ends' => 'Les notes de qualsevol adjunt acaben amb ":value"', + 'search_modifier_not_attachment_name_is' => 'El nom de qualsevol adjunt no és ":value"', + 'search_modifier_not_attachment_name_contains' => 'El nom de qualsevol adjunt no conté ":value"', + 'search_modifier_not_attachment_name_starts' => 'El nom de qualsevol adjunt no comença per ":value"', + 'search_modifier_not_attachment_name_ends' => 'El nom de qualsevol adjunt no acaba amb ":value"', + 'search_modifier_not_attachment_notes_are' => 'Les notes de qualsevol adjunt no són ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Les notes de qualsevol adjunt no contenen ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Les notes de qualsevol adjunt no acaben amb ":value"', + 'search_modifier_sepa_ct_is' => 'El SEPA CT és ":value"', + 'update_rule_from_query' => 'Actualitzar regla ":rule" de la consulta de la cerca', + 'create_rule_from_query' => 'Crear regla nova a partir de la consulta de la cerca', + 'rule_from_search_words' => 'El motor de regles ha tingut problemes gestionant ":string". La regla suggerida que s\'ajusti a la consulta de cerca pot donar resultats diferents. Si us plau, verifica els activadors de la regla curosament.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Els següents modificadors també s\'han aplicat a la cerca:', - 'general_search_error' => 'Ha succeït un error durant la cerca. Si us plau, comprova els fitxers de registre per obtenir més informació.', - 'search_box' => 'Cercar', - 'search_box_intro' => 'Benvingut a la funció de cerca de Firefly III. Introdueix la consulta de cerca al requadre. Assegura\'t de comprovar l\'arxiu d\'ajuda, ja que el cercador és bastant avançat.', - 'search_error' => 'Error durant la cerca', - 'search_searching' => 'Cercant ...', - 'search_results' => 'Resultats de la cerca', + 'modifiers_applies_are' => 'Els següents modificadors també s\'han aplicat a la cerca:', + 'general_search_error' => 'Ha succeït un error durant la cerca. Si us plau, comprova els fitxers de registre per obtenir més informació.', + 'search_box' => 'Cercar', + 'search_box_intro' => 'Benvingut a la funció de cerca de Firefly III. Introdueix la consulta de cerca al requadre. Assegura\'t de comprovar l\'arxiu d\'ajuda, ja que el cercador és bastant avançat.', + 'search_error' => 'Error durant la cerca', + 'search_searching' => 'Cercant ...', + 'search_results' => 'Resultats de la cerca', // repeat frequencies: - 'repeat_freq_yearly' => 'anualment', - 'repeat_freq_half-year' => 'cada mig any', - 'repeat_freq_quarterly' => 'trimestralment', - 'repeat_freq_monthly' => 'mensualment', - 'repeat_freq_weekly' => 'setmanalment', - 'repeat_freq_daily' => 'diàriament', - 'daily' => 'diàriament', - 'weekly' => 'setmanalment', - 'quarterly' => 'trimestralment', - 'half-year' => 'cada mig any', - 'yearly' => 'anualment', + 'repeat_freq_yearly' => 'anualment', + 'repeat_freq_half-year' => 'cada mig any', + 'repeat_freq_quarterly' => 'trimestralment', + 'repeat_freq_monthly' => 'mensualment', + 'repeat_freq_weekly' => 'setmanalment', + 'repeat_freq_daily' => 'diàriament', + 'daily' => 'diàriament', + 'weekly' => 'setmanalment', + 'quarterly' => 'trimestralment', + 'half-year' => 'cada mig any', + 'yearly' => 'anualment', // rules - 'is_not_rule_trigger' => 'No', - 'cannot_fire_inactive_rules' => 'No pots executar regles inactives.', - 'show_triggers' => 'Mostra els activadors', - 'show_actions' => 'Mostra les accions', - 'rules' => 'Regles', - 'rule_name' => 'Nom de la regla', - 'rule_triggers' => 'La regla s\'activa quan', - 'rule_actions' => 'La regla serà', - 'new_rule' => 'Nova regla', - 'new_rule_group' => 'Nou grup de regles', - 'rule_priority_up' => 'Donar més prioritat a la regla', - 'rule_priority_down' => 'Donar menys prioritat a la regla', - 'make_new_rule_group' => 'Crear un nou grup de regles', - 'store_new_rule_group' => 'Guardar nou grup de regles', - 'created_new_rule_group' => 'Nou grup de regles ":title" guardat!', - 'updated_rule_group' => 'Grup de regles ":title" actualitzat satisfactòriament.', - 'edit_rule_group' => 'Editar grup de regles ":title"', - 'duplicate_rule' => 'Duplicar regla ":title"', - 'rule_copy_of' => 'Còpia de ":title"', - 'duplicated_rule' => 'Regla ":title" duplicada a ":newTitle"', - 'delete_rule_group' => 'Eliminar grup de regles ":title"', - 'deleted_rule_group' => 'Grup de regles ":title" eliminat', - 'update_rule_group' => 'Actualitzar grup de regles', - 'no_rules_in_group' => 'No hi ha regles en aquest grup', - 'move_rule_group_up' => 'Moure grup de regles amunt', - 'move_rule_group_down' => 'Moure grup de regles avall', - 'save_rules_by_moving' => 'Guardar aquesta regla movent-la a un altre grup de regles:|Guardar aquestes regles movent-les a un altre grup de regles:', - 'make_new_rule' => 'Crea una nova regla al grup de regles ":title"', - 'make_new_rule_no_group' => 'Crea una nova regla', - 'instructions_rule_from_bill' => 'Per tal de fer coincidir les transaccions a la teva nova factura ":name", FIrefly III pot crear una regla que comprovi automàticament totes les transaccions que guardis. Si us plau, verifica els detalls a sota i guarda la regla perque Firefly III faci coincidir automàticament les transaccions a la teva nova factura.', - 'instructions_rule_from_journal' => 'Crea una regla basada en una de les teves transaccions. Complementa o envia el següent formulari.', - 'rule_is_strict' => 'regla estricta', - 'rule_is_not_strict' => 'regla no estricta', - 'rule_help_stop_processing' => 'Quan marques aquesta casella, les regles posteriors d\'aquest grup no s\'executaran.', - 'rule_help_strict' => 'En les regles estrictes TOTS els activadors s\'han d\'activar per tal que la/les acció/ns s\'executin. En les regles no estrictes, QUALSEVOL activador és suficient per executar la/les acció/ns.', - 'rule_help_active' => 'Les regles inactives no s\'activaran mai.', - 'stored_new_rule' => 'S\'ha guardat una nova regla amb títol ":title"', - 'deleted_rule' => 'S\'ha eliminat la regla amb títol ":title"', - 'store_new_rule' => 'Guardar nova regla', - 'updated_rule' => 'S\'ha actualitzat la regla amb títol ":title"', - 'default_rule_group_name' => 'Regles per defecte', - 'default_rule_group_description' => 'Totes les regles sense grup específic.', - 'trigger' => 'Activador', - 'trigger_value' => 'Activador en el valor', - 'stop_processing_other_triggers' => 'Aturar el processament d\'altres activadors', - 'add_rule_trigger' => 'Afegir nou activador', - 'action' => 'Acció', - 'action_value' => 'Valor de l\'acció', - 'stop_executing_other_actions' => 'Aturar l\'execució d\'altres accions', - 'add_rule_action' => 'Afegir nova acció', - 'edit_rule' => 'Editar regla ":title"', - 'delete_rule' => 'Eliminar regla ":title"', - 'update_rule' => 'Actualitzar regla', - 'test_rule_triggers' => 'Mostrar transaccions coincidents', - 'warning_no_matching_transactions' => 'No s\'han trobat transaccions coincidents.', - 'warning_no_valid_triggers' => 'No s\'han proporcionat activadors vàlids.', - 'apply_rule_selection' => 'Aplicar la regla ":title" a una selecció de transaccions', - 'apply_rule_selection_intro' => 'Les regles com ":title" normalment només s\'apliquen a transaccions noves o actualitzades, però li pots indicar a Firefly III que l\'executi en una selecció de transaccions existents. Això pot ser útil quan has actualitzat una regla i necessites que els canvis s\'apliquin a totes les teves transaccions.', - 'include_transactions_from_accounts' => 'Incloure transaccions d\'aquests comptes', - 'include' => 'Incloure?', - 'applied_rule_selection' => '{0} Cap transacció de la teva selecció s\'ha canviat per la regla ":title".|[1] Una transacció de la teva selecció s\'ha canviat per la regla ":title".|[2,*] :count transaccions de la teva selecció s\'han canviat per la regla ":title".', - 'execute' => 'Executar', - 'apply_rule_group_selection' => 'Aplicar el grup de regles ":title" a una selecció de transaccions', - 'apply_rule_group_selection_intro' => 'Els grups de regles com ":title" normalment només s\'aliquen a transaccions noves o actualitzades, però li pots indicar a Firefly III que executi totes les regles d\'aquest grup a una selecció de transaccions existents. Això pot ser útil quan has actualitzat un grup de regles i necessites que els canvis s\'apliquin a totes les teves transaccions.', - 'applied_rule_group_selection' => 'El grup de regles ":title" s\'ha aplicat a la teva selecció.', + 'is_not_rule_trigger' => 'No', + 'cannot_fire_inactive_rules' => 'No pots executar regles inactives.', + 'show_triggers' => 'Mostra els activadors', + 'show_actions' => 'Mostra les accions', + 'rules' => 'Regles', + 'rule_name' => 'Nom de la regla', + 'rule_triggers' => 'La regla s\'activa quan', + 'rule_actions' => 'La regla serà', + 'new_rule' => 'Nova regla', + 'new_rule_group' => 'Nou grup de regles', + 'rule_priority_up' => 'Donar més prioritat a la regla', + 'rule_priority_down' => 'Donar menys prioritat a la regla', + 'make_new_rule_group' => 'Crear un nou grup de regles', + 'store_new_rule_group' => 'Guardar nou grup de regles', + 'created_new_rule_group' => 'Nou grup de regles ":title" guardat!', + 'updated_rule_group' => 'Grup de regles ":title" actualitzat satisfactòriament.', + 'edit_rule_group' => 'Editar grup de regles ":title"', + 'duplicate_rule' => 'Duplicar regla ":title"', + 'rule_copy_of' => 'Còpia de ":title"', + 'duplicated_rule' => 'Regla ":title" duplicada a ":newTitle"', + 'delete_rule_group' => 'Eliminar grup de regles ":title"', + 'deleted_rule_group' => 'Grup de regles ":title" eliminat', + 'update_rule_group' => 'Actualitzar grup de regles', + 'no_rules_in_group' => 'No hi ha regles en aquest grup', + 'move_rule_group_up' => 'Moure grup de regles amunt', + 'move_rule_group_down' => 'Moure grup de regles avall', + 'save_rules_by_moving' => 'Guardar aquesta regla movent-la a un altre grup de regles:|Guardar aquestes regles movent-les a un altre grup de regles:', + 'make_new_rule' => 'Crea una nova regla al grup de regles ":title"', + 'make_new_rule_no_group' => 'Crea una nova regla', + 'instructions_rule_from_bill' => 'Per tal de fer coincidir les transaccions a la teva nova factura ":name", FIrefly III pot crear una regla que comprovi automàticament totes les transaccions que guardis. Si us plau, verifica els detalls a sota i guarda la regla perque Firefly III faci coincidir automàticament les transaccions a la teva nova factura.', + 'instructions_rule_from_journal' => 'Crea una regla basada en una de les teves transaccions. Complementa o envia el següent formulari.', + 'rule_is_strict' => 'regla estricta', + 'rule_is_not_strict' => 'regla no estricta', + 'rule_help_stop_processing' => 'Quan marques aquesta casella, les regles posteriors d\'aquest grup no s\'executaran.', + 'rule_help_strict' => 'En les regles estrictes TOTS els activadors s\'han d\'activar per tal que la/les acció/ns s\'executin. En les regles no estrictes, QUALSEVOL activador és suficient per executar la/les acció/ns.', + 'rule_help_active' => 'Les regles inactives no s\'activaran mai.', + 'stored_new_rule' => 'S\'ha guardat una nova regla amb títol ":title"', + 'deleted_rule' => 'S\'ha eliminat la regla amb títol ":title"', + 'store_new_rule' => 'Guardar nova regla', + 'updated_rule' => 'S\'ha actualitzat la regla amb títol ":title"', + 'default_rule_group_name' => 'Regles per defecte', + 'default_rule_group_description' => 'Totes les regles sense grup específic.', + 'trigger' => 'Activador', + 'trigger_value' => 'Activador en el valor', + 'stop_processing_other_triggers' => 'Aturar el processament d\'altres activadors', + 'add_rule_trigger' => 'Afegir nou activador', + 'action' => 'Acció', + 'action_value' => 'Valor de l\'acció', + 'stop_executing_other_actions' => 'Aturar l\'execució d\'altres accions', + 'add_rule_action' => 'Afegir nova acció', + 'edit_rule' => 'Editar regla ":title"', + 'delete_rule' => 'Eliminar regla ":title"', + 'update_rule' => 'Actualitzar regla', + 'test_rule_triggers' => 'Mostrar transaccions coincidents', + 'warning_no_matching_transactions' => 'No s\'han trobat transaccions coincidents.', + 'warning_no_valid_triggers' => 'No s\'han proporcionat activadors vàlids.', + 'apply_rule_selection' => 'Aplicar la regla ":title" a una selecció de transaccions', + 'apply_rule_selection_intro' => 'Les regles com ":title" normalment només s\'apliquen a transaccions noves o actualitzades, però li pots indicar a Firefly III que l\'executi en una selecció de transaccions existents. Això pot ser útil quan has actualitzat una regla i necessites que els canvis s\'apliquin a totes les teves transaccions.', + 'include_transactions_from_accounts' => 'Incloure transaccions d\'aquests comptes', + 'include' => 'Incloure?', + 'applied_rule_selection' => '{0} Cap transacció de la teva selecció s\'ha canviat per la regla ":title".|[1] Una transacció de la teva selecció s\'ha canviat per la regla ":title".|[2,*] :count transaccions de la teva selecció s\'han canviat per la regla ":title".', + 'execute' => 'Executar', + 'apply_rule_group_selection' => 'Aplicar el grup de regles ":title" a una selecció de transaccions', + 'apply_rule_group_selection_intro' => 'Els grups de regles com ":title" normalment només s\'aliquen a transaccions noves o actualitzades, però li pots indicar a Firefly III que executi totes les regles d\'aquest grup a una selecció de transaccions existents. Això pot ser útil quan has actualitzat un grup de regles i necessites que els canvis s\'apliquin a totes les teves transaccions.', + 'applied_rule_group_selection' => 'El grup de regles ":title" s\'ha aplicat a la teva selecció.', // actions and triggers - 'rule_trigger_store_journal' => 'Quan es crea una transacció', - 'rule_trigger_update_journal' => 'Quan s\'actualitza una transacció', - 'rule_trigger_user_action' => 'L\'acció de l\'usuari és ":trigger_value"', + 'rule_trigger_store_journal' => 'Quan es crea una transacció', + 'rule_trigger_update_journal' => 'Quan s\'actualitza una transacció', + 'rule_trigger_user_action' => 'L\'acció de l\'usuari és ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'El nom del compte d\'origen comença per..', - 'rule_trigger_source_account_starts' => 'El nom del compte d\'origen comença per ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'El nom del compte d\'origen acaba amb..', - 'rule_trigger_source_account_ends' => 'El nom del compte d\'origen acaba amb ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'El nom del compte d\'origen és..', - 'rule_trigger_source_account_is' => 'El nom del compte d\'origen és ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'El nom del compte d\'origen conté..', - 'rule_trigger_source_account_contains' => 'El nom del compte d\'origen conté ":trigger_value"', - 'rule_trigger_account_id_choice' => 'L\'ID d\'un dels comptes és exactament..', - 'rule_trigger_account_id' => 'L\'ID d\'un dels comptes és exactament :trigger_value', - 'rule_trigger_source_account_id_choice' => 'L\'ID del compte d\'origen és exactament..', - 'rule_trigger_source_account_id' => 'L\'ID del compte d\'origen és exactament :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'L\'ID del compte de destí és exactament..', - 'rule_trigger_destination_account_id' => 'L\'ID del compte de destí és exactament :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Un dels comptes és d\'efectiu', - 'rule_trigger_account_is_cash' => 'Un dels comptes és d\'efectiu', - 'rule_trigger_source_is_cash_choice' => 'El compte d\'origen és el compte (efectiu)', - 'rule_trigger_source_is_cash' => 'El compte d\'origen és el compte (efectiu)', - 'rule_trigger_destination_is_cash_choice' => 'El compte de destí és el compte (efectiu)', - 'rule_trigger_destination_is_cash' => 'El compte de destí és el compte (efectiu)', - 'rule_trigger_source_account_nr_starts_choice' => 'El número / IBAN del compte d\'origen comença per..', - 'rule_trigger_source_account_nr_starts' => 'El número / IBAN del compte d\'origen comença per ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'El número / IBAN del compte d\'origen acaba amb..', - 'rule_trigger_source_account_nr_ends' => 'El número / IBAN del compte d\'origen acaba amb ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'El número / IBAN del compte d\'origen és..', - 'rule_trigger_source_account_nr_is' => 'El número / IBAN del compte d\'origen és ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'El número / IBAN del compte d\'origen conté..', - 'rule_trigger_source_account_nr_contains' => 'El número / IBAN del compte d\'origen conté ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'El nom del compte de destí comença per..', - 'rule_trigger_destination_account_starts' => 'El nom del compte de destí comença per ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'El nom del compte de destí acaba amb..', - 'rule_trigger_destination_account_ends' => 'El nom del compte de destí acaba amb ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'El nom del compte de destí és..', - 'rule_trigger_destination_account_is' => 'El nom del compte de destí és ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'El nom del compte de destí conté..', - 'rule_trigger_destination_account_contains' => 'El nom del compte de destí conté ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'El número / IBAN del compte de destí comença per..', - 'rule_trigger_destination_account_nr_starts' => 'El número / IBAN del compte de destí comença per ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'El número / IBAN del compte de destí acaba amb..', - 'rule_trigger_destination_account_nr_ends' => 'El número / IBAN del compte de destí acaba amb ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'El número / IBAN del compte de destí és..', - 'rule_trigger_destination_account_nr_is' => 'El número / IBAN del compte de destí és ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'El número / IBAN del compte de destí conté..', - 'rule_trigger_destination_account_nr_contains' => 'El número / IBAN del compte de destí conté ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'La transacció és del tipus..', - 'rule_trigger_transaction_type' => 'La transacció és del tipus ":trigger_value"', - 'rule_trigger_category_is_choice' => 'La categoria és..', - 'rule_trigger_category_is' => 'La categoria és ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'La quantitat és menor o igual a ..', - 'rule_trigger_amount_less' => 'La quantitat és menor o igual a :trigger_value', - 'rule_trigger_amount_is_choice' => 'La quantitat és..', - 'rule_trigger_amount_is' => 'La quantitat és :trigger_value', - 'rule_trigger_amount_more_choice' => 'La quantitat és major o igual a..', - 'rule_trigger_amount_more' => 'La quantitat és major o igual a :trigger_value', - 'rule_trigger_description_starts_choice' => 'La descripció comença per..', - 'rule_trigger_description_starts' => 'La descripció comença per ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'La descripció acaba amb..', - 'rule_trigger_description_ends' => 'La descripció acaba amb ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'La descripció conté..', - 'rule_trigger_description_contains' => 'La descripció conté ":trigger_value"', - 'rule_trigger_description_is_choice' => 'La descripció és..', - 'rule_trigger_description_is' => 'La descripció és ":trigger_value"', - 'rule_trigger_date_on_choice' => 'La data de la transacció és..', - 'rule_trigger_date_on' => 'La data de la transacció és ":trigger_value"', - 'rule_trigger_date_before_choice' => 'La data de la transacció és anterior a..', - 'rule_trigger_date_before' => 'La data de la transacció és anterior a ":trigger_value"', - 'rule_trigger_date_after_choice' => 'La data de la transacció és posterior a..', - 'rule_trigger_date_after' => 'La data de la transacció és posterior a ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'La transacció es va fer el..', - 'rule_trigger_created_at_on' => 'La transacció es va fer el ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'La transacció es va editar per últim cop el..', - 'rule_trigger_updated_at_on' => 'La transacció es va editar per últim cop el ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'El pressupost és..', - 'rule_trigger_budget_is' => 'El pressupost és ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Qualsevol etiqueta és..', - 'rule_trigger_tag_is' => 'Qualsevol etiqueta és ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Qualsevol etiqueta conté..', - 'rule_trigger_tag_contains' => 'Qualsevol etiqueta conté ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Qualsevol etiqueta acaba amb..', - 'rule_trigger_tag_ends' => 'Qualsevol etiqueta acaba amb ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Qualsevol etiqueta comença amb..', - 'rule_trigger_tag_starts' => 'Qualsevol etiqueta comença amb ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'La moneda de la transacció és..', - 'rule_trigger_currency_is' => 'La moneda de la transacció és ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'La moneda estrangera de la transacció és..', - 'rule_trigger_foreign_currency_is' => 'La moneda estrangera de la transacció és ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Com a mínim té aquest nombre d\'adjunts', - 'rule_trigger_has_attachments' => 'Com a mínim té :trigger_value adjunt(s)', - 'rule_trigger_has_no_category_choice' => 'No té categoria', - 'rule_trigger_has_no_category' => 'La transacció no té categoria', - 'rule_trigger_has_any_category_choice' => 'Té categoria (qualsevol)', - 'rule_trigger_has_any_category' => 'La transacció té almenys una categoria (qualsevol)', - 'rule_trigger_has_no_budget_choice' => 'No té pressupost', - 'rule_trigger_has_no_budget' => 'La transacció no té pressupost', - 'rule_trigger_has_any_budget_choice' => 'Té un pressupost (qualsevol)', - 'rule_trigger_has_any_budget' => 'La transacció té almenys un pressupost (qualsevol)', - 'rule_trigger_has_no_bill_choice' => 'No té factura', - 'rule_trigger_has_no_bill' => 'La transacció no té factura', - 'rule_trigger_has_any_bill_choice' => 'Té una factura (qualsevol)', - 'rule_trigger_has_any_bill' => 'La transacció té almenys una factura (qualsevol)', - 'rule_trigger_has_no_tag_choice' => 'No té etiqueta(es)', - 'rule_trigger_has_no_tag' => 'La transacció no té etiqueta(es)', - 'rule_trigger_has_any_tag_choice' => 'Té una o més etiquetes (qualsevol)', - 'rule_trigger_has_any_tag' => 'La transacció té una o més etiquetes (qualsevol)', - 'rule_trigger_any_notes_choice' => 'Té notes (qualsevol)', - 'rule_trigger_any_notes' => 'La transacció té notes (qualsevol)', - 'rule_trigger_no_notes_choice' => 'No té notes', - 'rule_trigger_no_notes' => 'La transacció no té notes', - 'rule_trigger_notes_is_choice' => 'Les notes són..', - 'rule_trigger_notes_is' => 'Les notes són ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Les notes contenen..', - 'rule_trigger_notes_contains' => 'Les notes contenen ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Les notes comencen per..', - 'rule_trigger_notes_starts' => 'Les notes comencen per ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Les notes acaben amb..', - 'rule_trigger_notes_ends' => 'Les notes acaben amb ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'La factura és..', - 'rule_trigger_bill_is' => 'La factura és ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'L\'ID externa és..', - 'rule_trigger_external_id_is' => 'L\'ID externa és ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'La referència interna és..', - 'rule_trigger_internal_reference_is' => 'La referència interna és ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'L\'ID del llibre de transaccions és..', - 'rule_trigger_journal_id' => 'L\'ID del llibre de transaccions és ":trigger_value"', - 'rule_trigger_any_external_url' => 'La transació té (cap) URL externa', - 'rule_trigger_any_external_url_choice' => 'La transació té (cap) URL externa', - 'rule_trigger_any_external_id' => 'La transació té (cap) ID extern', - 'rule_trigger_any_external_id_choice' => 'La transació té (cap) ID extern', - 'rule_trigger_no_external_url_choice' => 'La transacció no té URL extern', - 'rule_trigger_no_external_url' => 'La transacció no té URL extern', - 'rule_trigger_no_external_id_choice' => 'La transacció no té cap ID extern', - 'rule_trigger_no_external_id' => 'La transacció no té cap ID extern', - 'rule_trigger_id_choice' => 'L\'ID de la transacció és..', - 'rule_trigger_id' => 'L\'ID de la transacció és ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'El SEPA CT és..', - 'rule_trigger_sepa_ct_is' => 'El SEPA CT és ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'El nom del compte d\'origen comença per..', + 'rule_trigger_source_account_starts' => 'El nom del compte d\'origen comença per ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'El nom del compte d\'origen acaba amb..', + 'rule_trigger_source_account_ends' => 'El nom del compte d\'origen acaba amb ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'El nom del compte d\'origen és..', + 'rule_trigger_source_account_is' => 'El nom del compte d\'origen és ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'El nom del compte d\'origen conté..', + 'rule_trigger_source_account_contains' => 'El nom del compte d\'origen conté ":trigger_value"', + 'rule_trigger_account_id_choice' => 'L\'ID d\'un dels comptes és exactament..', + 'rule_trigger_account_id' => 'L\'ID d\'un dels comptes és exactament :trigger_value', + 'rule_trigger_source_account_id_choice' => 'L\'ID del compte d\'origen és exactament..', + 'rule_trigger_source_account_id' => 'L\'ID del compte d\'origen és exactament :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'L\'ID del compte de destí és exactament..', + 'rule_trigger_destination_account_id' => 'L\'ID del compte de destí és exactament :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Un dels comptes és d\'efectiu', + 'rule_trigger_account_is_cash' => 'Un dels comptes és d\'efectiu', + 'rule_trigger_source_is_cash_choice' => 'El compte d\'origen és el compte (efectiu)', + 'rule_trigger_source_is_cash' => 'El compte d\'origen és el compte (efectiu)', + 'rule_trigger_destination_is_cash_choice' => 'El compte de destí és el compte (efectiu)', + 'rule_trigger_destination_is_cash' => 'El compte de destí és el compte (efectiu)', + 'rule_trigger_source_account_nr_starts_choice' => 'El número / IBAN del compte d\'origen comença per..', + 'rule_trigger_source_account_nr_starts' => 'El número / IBAN del compte d\'origen comença per ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'El número / IBAN del compte d\'origen acaba amb..', + 'rule_trigger_source_account_nr_ends' => 'El número / IBAN del compte d\'origen acaba amb ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'El número / IBAN del compte d\'origen és..', + 'rule_trigger_source_account_nr_is' => 'El número / IBAN del compte d\'origen és ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'El número / IBAN del compte d\'origen conté..', + 'rule_trigger_source_account_nr_contains' => 'El número / IBAN del compte d\'origen conté ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'El nom del compte de destí comença per..', + 'rule_trigger_destination_account_starts' => 'El nom del compte de destí comença per ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'El nom del compte de destí acaba amb..', + 'rule_trigger_destination_account_ends' => 'El nom del compte de destí acaba amb ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'El nom del compte de destí és..', + 'rule_trigger_destination_account_is' => 'El nom del compte de destí és ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'El nom del compte de destí conté..', + 'rule_trigger_destination_account_contains' => 'El nom del compte de destí conté ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'El número / IBAN del compte de destí comença per..', + 'rule_trigger_destination_account_nr_starts' => 'El número / IBAN del compte de destí comença per ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'El número / IBAN del compte de destí acaba amb..', + 'rule_trigger_destination_account_nr_ends' => 'El número / IBAN del compte de destí acaba amb ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'El número / IBAN del compte de destí és..', + 'rule_trigger_destination_account_nr_is' => 'El número / IBAN del compte de destí és ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'El número / IBAN del compte de destí conté..', + 'rule_trigger_destination_account_nr_contains' => 'El número / IBAN del compte de destí conté ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'La transacció és del tipus..', + 'rule_trigger_transaction_type' => 'La transacció és del tipus ":trigger_value"', + 'rule_trigger_category_is_choice' => 'La categoria és..', + 'rule_trigger_category_is' => 'La categoria és ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'La quantitat és menor o igual a ..', + 'rule_trigger_amount_less' => 'La quantitat és menor o igual a :trigger_value', + 'rule_trigger_amount_is_choice' => 'La quantitat és..', + 'rule_trigger_amount_is' => 'La quantitat és :trigger_value', + 'rule_trigger_amount_more_choice' => 'La quantitat és major o igual a..', + 'rule_trigger_amount_more' => 'La quantitat és major o igual a :trigger_value', + 'rule_trigger_description_starts_choice' => 'La descripció comença per..', + 'rule_trigger_description_starts' => 'La descripció comença per ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'La descripció acaba amb..', + 'rule_trigger_description_ends' => 'La descripció acaba amb ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'La descripció conté..', + 'rule_trigger_description_contains' => 'La descripció conté ":trigger_value"', + 'rule_trigger_description_is_choice' => 'La descripció és..', + 'rule_trigger_description_is' => 'La descripció és ":trigger_value"', + 'rule_trigger_date_on_choice' => 'La data de la transacció és..', + 'rule_trigger_date_on' => 'La data de la transacció és ":trigger_value"', + 'rule_trigger_date_before_choice' => 'La data de la transacció és anterior a..', + 'rule_trigger_date_before' => 'La data de la transacció és anterior a ":trigger_value"', + 'rule_trigger_date_after_choice' => 'La data de la transacció és posterior a..', + 'rule_trigger_date_after' => 'La data de la transacció és posterior a ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'La transacció es va fer el..', + 'rule_trigger_created_at_on' => 'La transacció es va fer el ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'La transacció es va editar per últim cop el..', + 'rule_trigger_updated_at_on' => 'La transacció es va editar per últim cop el ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'El pressupost és..', + 'rule_trigger_budget_is' => 'El pressupost és ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Qualsevol etiqueta és..', + 'rule_trigger_tag_is' => 'Qualsevol etiqueta és ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Qualsevol etiqueta conté..', + 'rule_trigger_tag_contains' => 'Qualsevol etiqueta conté ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Qualsevol etiqueta acaba amb..', + 'rule_trigger_tag_ends' => 'Qualsevol etiqueta acaba amb ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Qualsevol etiqueta comença amb..', + 'rule_trigger_tag_starts' => 'Qualsevol etiqueta comença amb ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'La moneda de la transacció és..', + 'rule_trigger_currency_is' => 'La moneda de la transacció és ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'La moneda estrangera de la transacció és..', + 'rule_trigger_foreign_currency_is' => 'La moneda estrangera de la transacció és ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Com a mínim té aquest nombre d\'adjunts', + 'rule_trigger_has_attachments' => 'Com a mínim té :trigger_value adjunt(s)', + 'rule_trigger_has_no_category_choice' => 'No té categoria', + 'rule_trigger_has_no_category' => 'La transacció no té categoria', + 'rule_trigger_has_any_category_choice' => 'Té categoria (qualsevol)', + 'rule_trigger_has_any_category' => 'La transacció té almenys una categoria (qualsevol)', + 'rule_trigger_has_no_budget_choice' => 'No té pressupost', + 'rule_trigger_has_no_budget' => 'La transacció no té pressupost', + 'rule_trigger_has_any_budget_choice' => 'Té un pressupost (qualsevol)', + 'rule_trigger_has_any_budget' => 'La transacció té almenys un pressupost (qualsevol)', + 'rule_trigger_has_no_bill_choice' => 'No té factura', + 'rule_trigger_has_no_bill' => 'La transacció no té factura', + 'rule_trigger_has_any_bill_choice' => 'Té una factura (qualsevol)', + 'rule_trigger_has_any_bill' => 'La transacció té almenys una factura (qualsevol)', + 'rule_trigger_has_no_tag_choice' => 'No té etiqueta(es)', + 'rule_trigger_has_no_tag' => 'La transacció no té etiqueta(es)', + 'rule_trigger_has_any_tag_choice' => 'Té una o més etiquetes (qualsevol)', + 'rule_trigger_has_any_tag' => 'La transacció té una o més etiquetes (qualsevol)', + 'rule_trigger_any_notes_choice' => 'Té notes (qualsevol)', + 'rule_trigger_any_notes' => 'La transacció té notes (qualsevol)', + 'rule_trigger_no_notes_choice' => 'No té notes', + 'rule_trigger_no_notes' => 'La transacció no té notes', + 'rule_trigger_notes_is_choice' => 'Les notes són..', + 'rule_trigger_notes_is' => 'Les notes són ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Les notes contenen..', + 'rule_trigger_notes_contains' => 'Les notes contenen ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Les notes comencen per..', + 'rule_trigger_notes_starts' => 'Les notes comencen per ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Les notes acaben amb..', + 'rule_trigger_notes_ends' => 'Les notes acaben amb ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'La factura és..', + 'rule_trigger_bill_is' => 'La factura és ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'L\'ID externa és..', + 'rule_trigger_external_id_is' => 'L\'ID externa és ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'La referència interna és..', + 'rule_trigger_internal_reference_is' => 'La referència interna és ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'L\'ID del llibre de transaccions és..', + 'rule_trigger_journal_id' => 'L\'ID del llibre de transaccions és ":trigger_value"', + 'rule_trigger_any_external_url' => 'La transació té (cap) URL externa', + 'rule_trigger_any_external_url_choice' => 'La transació té (cap) URL externa', + 'rule_trigger_any_external_id' => 'La transació té (cap) ID extern', + 'rule_trigger_any_external_id_choice' => 'La transació té (cap) ID extern', + 'rule_trigger_no_external_url_choice' => 'La transacció no té URL extern', + 'rule_trigger_no_external_url' => 'La transacció no té URL extern', + 'rule_trigger_no_external_id_choice' => 'La transacció no té cap ID extern', + 'rule_trigger_no_external_id' => 'La transacció no té cap ID extern', + 'rule_trigger_id_choice' => 'L\'ID de la transacció és..', + 'rule_trigger_id' => 'L\'ID de la transacció és ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'El SEPA CT és..', + 'rule_trigger_sepa_ct_is' => 'El SEPA CT és ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'L\'acció d\'usuari és ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Cap etiqueta és..', - 'rule_trigger_tag_is_not' => 'Cap etiqueta és ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Un dels comptes és exactament..', - 'rule_trigger_account_is' => 'Un dels comptes és exactament ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Un dels comptes conté..', - 'rule_trigger_account_contains' => 'Un dels comptes conté ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Un dels comptes acaba amb..', - 'rule_trigger_account_ends' => 'Un dels comptes acaba amb ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Un dels comptes comença per..', - 'rule_trigger_account_starts' => 'Un dels comptes comença per ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'El número / IBAN d\'un dels comptes és..', - 'rule_trigger_account_nr_is' => 'El número / IBAN d\'un dels comptes és ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'El número / IBAN d\'un dels comptes conté..', - 'rule_trigger_account_nr_contains' => 'El número / IBAN d\'un dels comptes conté ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'El número / IBAN d\'un dels comptes acaba amb..', - 'rule_trigger_account_nr_ends' => 'El número / IBAN d\'un dels comptes acaba amb ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'El número / IBAN d\'un dels comptes comença per..', - 'rule_trigger_account_nr_starts' => 'El número / IBAN d\'un dels comptes comença per ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'La categoria conté..', - 'rule_trigger_category_contains' => 'La categoria conté ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'La categoria acaba amb..', - 'rule_trigger_category_ends' => 'La categoria acaba amb ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'La categoria comença per..', - 'rule_trigger_category_starts' => 'La categoria comença per ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'El pressupost conté..', - 'rule_trigger_budget_contains' => 'El pressupost conté ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'El pressupost acaba amb..', - 'rule_trigger_budget_ends' => 'El pressupost acaba amb ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'El pressupost comença per..', - 'rule_trigger_budget_starts' => 'El pressupost comença per ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'La factura conté..', - 'rule_trigger_bill_contains' => 'La factura conté ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'La factura acaba amb..', - 'rule_trigger_bill_ends' => 'La factura acaba amb ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'La factura comença per..', - 'rule_trigger_bill_starts' => 'La factura comença per ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'L\'ID externa conté..', - 'rule_trigger_external_id_contains' => 'L\'ID externa conté ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'L\'ID externa acaba amb..', - 'rule_trigger_external_id_ends' => 'L\'ID externa acaba amb ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'L\'ID externa comença per..', - 'rule_trigger_external_id_starts' => 'L\'ID externa comença per ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'La referència interna conté..', - 'rule_trigger_internal_reference_contains' => 'La referència interna conté ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'La referència interna acaba amb..', - 'rule_trigger_internal_reference_ends' => 'La referència interna acaba amb ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'La referència interna comença per..', - 'rule_trigger_internal_reference_starts' => 'La referència interna comença per ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'L\'URL extern és..', - 'rule_trigger_external_url_is' => 'L\'URL extern és ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'L\'URL extern conté..', - 'rule_trigger_external_url_contains' => 'L\'URL extern conté ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'L\'URL extern acaba amb..', - 'rule_trigger_external_url_ends' => 'L\'URL extern acaba amb ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'L\'URL extern comença per..', - 'rule_trigger_external_url_starts' => 'L\'URL extern comença per ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'No té adjunts', - 'rule_trigger_has_no_attachments' => 'La transacció no té fitxers adjunts', - 'rule_trigger_recurrence_id_choice' => 'L\'ID de la transacció periòdica és..', - 'rule_trigger_recurrence_id' => 'L\'ID de la transacció periòdica és ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'La data d\'interès és..', - 'rule_trigger_interest_date_on' => 'La data d\'interès és ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'La data d\'interès és anterior a..', - 'rule_trigger_interest_date_before' => 'La data d\'interès és anterior a ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'La data d\'interès és posterior a..', - 'rule_trigger_interest_date_after' => 'La data d\'interès és posterior a ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'La data de reserva és..', - 'rule_trigger_book_date_on' => 'La data de reserva és ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'La data de reserva és anterior a..', - 'rule_trigger_book_date_before' => 'La data de reserva és anterior a ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'La data de reserva és posterior a..', - 'rule_trigger_book_date_after' => 'La data de reserva és posterior a ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'La data de processament és..', - 'rule_trigger_process_date_on' => 'La data de processament és ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'La data de processament és anterior a..', - 'rule_trigger_process_date_before' => 'La data de processament és anterior a ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'La data de processament és posterior a..', - 'rule_trigger_process_date_after' => 'La data de processament és posterior a ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'La data de venciment és..', - 'rule_trigger_due_date_on' => 'La data de venciment és ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'La data de venciment és anterior a..', - 'rule_trigger_due_date_before' => 'La data de venciment és anterior a ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'La data de venciment és posterior a..', - 'rule_trigger_due_date_after' => 'La data de venciment és posterior a ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'La data de pagament és..', - 'rule_trigger_payment_date_on' => 'La data de pagament és ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'La data de pagament és anterior a..', - 'rule_trigger_payment_date_before' => 'La data de pagament és anterior a ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'La data de pagament és posterior a..', - 'rule_trigger_payment_date_after' => 'La data de pagament és posterior a ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'La data de facturació és..', - 'rule_trigger_invoice_date_on' => 'La data de facturació és ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'La data de facturació és anterior a..', - 'rule_trigger_invoice_date_before' => 'La data de facturació és anterior a ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'La data de facturació és posterior a..', - 'rule_trigger_invoice_date_after' => 'La data de facturació és posterior a ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'La transacció es va crear abans de..', - 'rule_trigger_created_at_before' => 'La transacció es va crear abans de ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'La transacció es va crear després de..', - 'rule_trigger_created_at_after' => 'La transacció es va crear després de ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'La transacció es va actualitzar per últim cop abans de..', - 'rule_trigger_updated_at_before' => 'La transacció es va actualitzar per últim cop abans de ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'La transacció es va actualitzar per últim cop després de..', - 'rule_trigger_updated_at_after' => 'La transacció es va actualitzar per últim cop després de ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'La quantitat en moneda estrangera és exactament..', - 'rule_trigger_foreign_amount_is' => 'La quantitat en moneda estrangera és exactament ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'La quantitat en moneda estrangera és inferior a..', - 'rule_trigger_foreign_amount_less' => 'La quantitat en moneda estrangera és inferior a ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'La quantitat en moneda estrangera és superior a..', - 'rule_trigger_foreign_amount_more' => 'La quantitat en moneda estrangera és superior a ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'El nom de qualsevol adjunt és..', - 'rule_trigger_attachment_name_is' => 'El nom de qualsevol adjunt és ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'El nom de qualsevol adjunt conté..', - 'rule_trigger_attachment_name_contains' => 'El nom de qualsevol adjunt conté ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'El nom de qualsevol adjunt comença per..', - 'rule_trigger_attachment_name_starts' => 'El nom de qualsevol adjunt comença per ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'El nom de qualsevol adjunt acaba amb..', - 'rule_trigger_attachment_name_ends' => 'El nom de qualsevol adjunt acaba amb ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Les notes de qualsevol adjunt són..', - 'rule_trigger_attachment_notes_are' => 'Les notes de qualsevol adjunt són ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Les notes de qualsevol adjunt contenen..', - 'rule_trigger_attachment_notes_contains' => 'Les notes de qualsevol adjunt contenen ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Les notes de qualsevol adjunt comencen per..', - 'rule_trigger_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Les notes de qualsevol adjunt acaben amb..', - 'rule_trigger_attachment_notes_ends' => 'Les notes de qualsevol adjunt acaben amb ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'La transacció s\'ha consolidat', - 'rule_trigger_reconciled' => 'La transacció s\'ha consolidat', - 'rule_trigger_exists_choice' => 'Qualsevol transacció coincideix(!)', - 'rule_trigger_exists' => 'Qualsevol transacció coincideix', + 'rule_trigger_user_action_choice' => 'L\'acció d\'usuari és ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Cap etiqueta és..', + 'rule_trigger_tag_is_not' => 'Cap etiqueta és ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Un dels comptes és exactament..', + 'rule_trigger_account_is' => 'Un dels comptes és exactament ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Un dels comptes conté..', + 'rule_trigger_account_contains' => 'Un dels comptes conté ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Un dels comptes acaba amb..', + 'rule_trigger_account_ends' => 'Un dels comptes acaba amb ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Un dels comptes comença per..', + 'rule_trigger_account_starts' => 'Un dels comptes comença per ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'El número / IBAN d\'un dels comptes és..', + 'rule_trigger_account_nr_is' => 'El número / IBAN d\'un dels comptes és ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'El número / IBAN d\'un dels comptes conté..', + 'rule_trigger_account_nr_contains' => 'El número / IBAN d\'un dels comptes conté ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'El número / IBAN d\'un dels comptes acaba amb..', + 'rule_trigger_account_nr_ends' => 'El número / IBAN d\'un dels comptes acaba amb ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'El número / IBAN d\'un dels comptes comença per..', + 'rule_trigger_account_nr_starts' => 'El número / IBAN d\'un dels comptes comença per ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'La categoria conté..', + 'rule_trigger_category_contains' => 'La categoria conté ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'La categoria acaba amb..', + 'rule_trigger_category_ends' => 'La categoria acaba amb ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'La categoria comença per..', + 'rule_trigger_category_starts' => 'La categoria comença per ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'El pressupost conté..', + 'rule_trigger_budget_contains' => 'El pressupost conté ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'El pressupost acaba amb..', + 'rule_trigger_budget_ends' => 'El pressupost acaba amb ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'El pressupost comença per..', + 'rule_trigger_budget_starts' => 'El pressupost comença per ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'La factura conté..', + 'rule_trigger_bill_contains' => 'La factura conté ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'La factura acaba amb..', + 'rule_trigger_bill_ends' => 'La factura acaba amb ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'La factura comença per..', + 'rule_trigger_bill_starts' => 'La factura comença per ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'L\'ID externa conté..', + 'rule_trigger_external_id_contains' => 'L\'ID externa conté ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'L\'ID externa acaba amb..', + 'rule_trigger_external_id_ends' => 'L\'ID externa acaba amb ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'L\'ID externa comença per..', + 'rule_trigger_external_id_starts' => 'L\'ID externa comença per ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'La referència interna conté..', + 'rule_trigger_internal_reference_contains' => 'La referència interna conté ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'La referència interna acaba amb..', + 'rule_trigger_internal_reference_ends' => 'La referència interna acaba amb ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'La referència interna comença per..', + 'rule_trigger_internal_reference_starts' => 'La referència interna comença per ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'L\'URL extern és..', + 'rule_trigger_external_url_is' => 'L\'URL extern és ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'L\'URL extern conté..', + 'rule_trigger_external_url_contains' => 'L\'URL extern conté ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'L\'URL extern acaba amb..', + 'rule_trigger_external_url_ends' => 'L\'URL extern acaba amb ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'L\'URL extern comença per..', + 'rule_trigger_external_url_starts' => 'L\'URL extern comença per ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'No té adjunts', + 'rule_trigger_has_no_attachments' => 'La transacció no té fitxers adjunts', + 'rule_trigger_recurrence_id_choice' => 'L\'ID de la transacció periòdica és..', + 'rule_trigger_recurrence_id' => 'L\'ID de la transacció periòdica és ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'La data d\'interès és..', + 'rule_trigger_interest_date_on' => 'La data d\'interès és ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'La data d\'interès és anterior a..', + 'rule_trigger_interest_date_before' => 'La data d\'interès és anterior a ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'La data d\'interès és posterior a..', + 'rule_trigger_interest_date_after' => 'La data d\'interès és posterior a ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'La data de reserva és..', + 'rule_trigger_book_date_on' => 'La data de reserva és ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'La data de reserva és anterior a..', + 'rule_trigger_book_date_before' => 'La data de reserva és anterior a ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'La data de reserva és posterior a..', + 'rule_trigger_book_date_after' => 'La data de reserva és posterior a ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'La data de processament és..', + 'rule_trigger_process_date_on' => 'La data de processament és ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'La data de processament és anterior a..', + 'rule_trigger_process_date_before' => 'La data de processament és anterior a ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'La data de processament és posterior a..', + 'rule_trigger_process_date_after' => 'La data de processament és posterior a ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'La data de venciment és..', + 'rule_trigger_due_date_on' => 'La data de venciment és ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'La data de venciment és anterior a..', + 'rule_trigger_due_date_before' => 'La data de venciment és anterior a ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'La data de venciment és posterior a..', + 'rule_trigger_due_date_after' => 'La data de venciment és posterior a ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'La data de pagament és..', + 'rule_trigger_payment_date_on' => 'La data de pagament és ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'La data de pagament és anterior a..', + 'rule_trigger_payment_date_before' => 'La data de pagament és anterior a ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'La data de pagament és posterior a..', + 'rule_trigger_payment_date_after' => 'La data de pagament és posterior a ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'La data de facturació és..', + 'rule_trigger_invoice_date_on' => 'La data de facturació és ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'La data de facturació és anterior a..', + 'rule_trigger_invoice_date_before' => 'La data de facturació és anterior a ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'La data de facturació és posterior a..', + 'rule_trigger_invoice_date_after' => 'La data de facturació és posterior a ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'La transacció es va crear abans de..', + 'rule_trigger_created_at_before' => 'La transacció es va crear abans de ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'La transacció es va crear després de..', + 'rule_trigger_created_at_after' => 'La transacció es va crear després de ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'La transacció es va actualitzar per últim cop abans de..', + 'rule_trigger_updated_at_before' => 'La transacció es va actualitzar per últim cop abans de ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'La transacció es va actualitzar per últim cop després de..', + 'rule_trigger_updated_at_after' => 'La transacció es va actualitzar per últim cop després de ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'La quantitat en moneda estrangera és exactament..', + 'rule_trigger_foreign_amount_is' => 'La quantitat en moneda estrangera és exactament ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'La quantitat en moneda estrangera és inferior a..', + 'rule_trigger_foreign_amount_less' => 'La quantitat en moneda estrangera és inferior a ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'La quantitat en moneda estrangera és superior a..', + 'rule_trigger_foreign_amount_more' => 'La quantitat en moneda estrangera és superior a ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'El nom de qualsevol adjunt és..', + 'rule_trigger_attachment_name_is' => 'El nom de qualsevol adjunt és ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'El nom de qualsevol adjunt conté..', + 'rule_trigger_attachment_name_contains' => 'El nom de qualsevol adjunt conté ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'El nom de qualsevol adjunt comença per..', + 'rule_trigger_attachment_name_starts' => 'El nom de qualsevol adjunt comença per ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'El nom de qualsevol adjunt acaba amb..', + 'rule_trigger_attachment_name_ends' => 'El nom de qualsevol adjunt acaba amb ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Les notes de qualsevol adjunt són..', + 'rule_trigger_attachment_notes_are' => 'Les notes de qualsevol adjunt són ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Les notes de qualsevol adjunt contenen..', + 'rule_trigger_attachment_notes_contains' => 'Les notes de qualsevol adjunt contenen ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Les notes de qualsevol adjunt comencen per..', + 'rule_trigger_attachment_notes_starts' => 'Les notes de qualsevol adjunt comencen per ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Les notes de qualsevol adjunt acaben amb..', + 'rule_trigger_attachment_notes_ends' => 'Les notes de qualsevol adjunt acaben amb ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'La transacció s\'ha consolidat', + 'rule_trigger_reconciled' => 'La transacció s\'ha consolidat', + 'rule_trigger_exists_choice' => 'Qualsevol transacció coincideix(!)', + 'rule_trigger_exists' => 'Qualsevol transacció coincideix', // more values for new types: - 'rule_trigger_not_account_id' => 'L\'ID del compte no és ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'L\'ID del compte d\'origen no és ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'L\'ID del compte de destí no és ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'El tipus de transacció no és ":trigger_value"', - 'rule_trigger_not_tag_is' => 'L\'etiqueta no és ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'L\'etiqueta és ":trigger_value"', - 'rule_trigger_not_description_is' => 'La descripció no és ":trigger_value"', - 'rule_trigger_not_description_contains' => 'La descripció no conté', - 'rule_trigger_not_description_ends' => 'La descripció no acaba amb ":trigger_value"', - 'rule_trigger_not_description_starts' => 'La descripció no comença per ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Les notes no són ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Les notes no contenen ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Les notes no acaben amb ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Les notes no comencen per ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'El compte d\'origen no és ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'El compte d\'origen no conté ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'El compte d\'origen no acaba amb ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'El compte d\'origen no comença per ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'El número / IBAN del compte d\'origen no és ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'El número / IBAN del compte d\'origen no conté ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'El número / IBAN del compte d\'origen no acaba amb ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'El número / IBAN del compte d\'origen no comença per ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'El compte de destí no és ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'El compte de destí no conté ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'El compte de destí no acaba amb ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'El compte de destí no comença per ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'El número / IBAN del compte de destí no és ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'El número / IBAN del compte de destí no conté ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'El número / IBAN del compte de destí no acaba amb ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'El número / IBAN del compte de destí no comença per ":trigger_value"', - 'rule_trigger_not_account_is' => 'Cap dels comptes és ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Cap dels comptes conté ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Cap dels comptes acaba amb ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Cap dels comptes comença per ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Cap número de compte / IBAN és ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Cap número de compte / IBAN conté ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Cap número de compte / IBAN acaba amb ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Cap número de compte / IBAN comença per ":trigger_value"', - 'rule_trigger_not_category_is' => 'La categoria no és ":trigger_value"', - 'rule_trigger_not_category_contains' => 'La categoria no conté ":trigger_value"', - 'rule_trigger_not_category_ends' => 'La categoria no acaba en ":trigger_value"', - 'rule_trigger_not_category_starts' => 'La categoria no comença per ":trigger_value"', - 'rule_trigger_not_budget_is' => 'El pressupost no és ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'El pressupost no conté ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'El pressupost no acaba en ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'El pressupost no comença amb ":trigger_value"', - 'rule_trigger_not_bill_is' => 'La factura no és ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'La factura no conté ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'La factura no acaba amb ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'La factura no acaba amb ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'L\'ID externa no és ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'L\'ID externa no conté ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'L\'ID externa no acaba amb ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'L\'ID externa no comença per ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'La referència interna no és ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'La referència interna no conté ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'La referència interna no acaba amb ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'La referència interna no comença per ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'L\'URL extern no és ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'L\'URL extern no conté ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'L\'URL extern no acaba amb ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'L\'URL extern no comença per ":trigger_value"', - 'rule_trigger_not_currency_is' => 'La moneda no és ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'La moneda estrangera no és ":trigger_value"', - 'rule_trigger_not_id' => 'L\'ID de la transacció no és ":trigger_value"', - 'rule_trigger_not_journal_id' => 'L\'ID del llibre de transaccions no és ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'L\'ID periòdica no és ":trigger_value"', - 'rule_trigger_not_date_on' => 'La data no és ":trigger_value"', - 'rule_trigger_not_date_before' => 'La data no és anterior a ":trigger_value"', - 'rule_trigger_not_date_after' => 'La data no és posterior a ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'La data d\'interès no és ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'La data d\'interès no és anterior a ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'La data d\'interès no és posterior a ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'La data de reserva no és ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'La data de reserva no és anterior a ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'La data de reserva no és posterior a ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'La data de processament no és ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'La data de processament no és anterior a ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'La data de processament no és posterior a ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'La data de venciment no és ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'La data de venciment no és anterior a ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'La data de venciment no és posterior a ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'La data de pagament no és ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'La data de pagament no és anterior a ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'La data de pagament no és posterior a ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'La data de facturació no és ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'La data de facturació no és anterior a ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'La data de facturació no és posterior a ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'La transacció no es va crear el ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'La transacció no es va crear abans de ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'La transacció no es va crear després de ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'La transacció no es va actualitzar el ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'La transacció no es va actualitzar abans de ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'La transacció no es va actualitzar després de ":trigger_value"', - 'rule_trigger_not_amount_is' => 'La quantitat de la transacció no és ":trigger_value"', - 'rule_trigger_not_amount_less' => 'La quantitat de la transacció és superior a ":trigger_value"', - 'rule_trigger_not_amount_more' => 'La quantitat de la transacció és inferior a ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'La quantitat en moneda estrangera no és ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'La quantitat en moneda estrangera és superior a ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'La quantitat en moneda estrangera és inferior a ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Cap adjunt té per nom ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Cap nom d\'adjunt conté ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Cap nom d\'adjunt comença per ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Cap nom d\'adjunt acaba amb ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Cap nota d\'adjunt és ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Cap nota d\'adjunt conté ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Cap nota d\'adjunt comença per ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Cap nota d\'adjunt acaba amb ":trigger_value"', - 'rule_trigger_not_reconciled' => 'La transacció no s\'ha consolidat', - 'rule_trigger_not_exists' => 'La transacció no existeix', - 'rule_trigger_not_has_attachments' => 'La transacció no té fitxers adjunts', - 'rule_trigger_not_has_any_category' => 'La transacció no té categoria', - 'rule_trigger_not_has_any_budget' => 'La transacció no té pressupost', - 'rule_trigger_not_has_any_bill' => 'La transacció no té factura', - 'rule_trigger_not_has_any_tag' => 'La transacció no té etiquetes', - 'rule_trigger_not_any_notes' => 'La transacció no té notes', - 'rule_trigger_not_any_external_url' => 'La transacció no té URL extern', - 'rule_trigger_not_has_no_attachments' => 'La transacció té almenys un fitxer adjunt (qualsevol)', - 'rule_trigger_not_has_no_category' => 'La transacció té almenys una categoria (qualsevol)', - 'rule_trigger_not_has_no_budget' => 'La transacció té almenys un pressupost (qualsevol)', - 'rule_trigger_not_has_no_bill' => 'La transacció té almenys una factura (qualsevol)', - 'rule_trigger_not_has_no_tag' => 'La transacció té almenys una etiqueta (qualsevol)', - 'rule_trigger_not_no_notes' => 'La transacció té almenys una nota', - 'rule_trigger_not_no_external_url' => 'La transacció té un URL extern', - 'rule_trigger_not_source_is_cash' => 'El compte d\'origen no és un compte d\'efectiu', - 'rule_trigger_not_destination_is_cash' => 'El compte de destí no és un compte d\'efectiu', - 'rule_trigger_not_account_is_cash' => 'Cap dels comptes és un compte d\'efectiu', + 'rule_trigger_not_account_id' => 'L\'ID del compte no és ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'L\'ID del compte d\'origen no és ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'L\'ID del compte de destí no és ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'El tipus de transacció no és ":trigger_value"', + 'rule_trigger_not_tag_is' => 'L\'etiqueta no és ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'L\'etiqueta és ":trigger_value"', + 'rule_trigger_not_description_is' => 'La descripció no és ":trigger_value"', + 'rule_trigger_not_description_contains' => 'La descripció no conté', + 'rule_trigger_not_description_ends' => 'La descripció no acaba amb ":trigger_value"', + 'rule_trigger_not_description_starts' => 'La descripció no comença per ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Les notes no són ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Les notes no contenen ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Les notes no acaben amb ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Les notes no comencen per ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'El compte d\'origen no és ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'El compte d\'origen no conté ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'El compte d\'origen no acaba amb ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'El compte d\'origen no comença per ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'El número / IBAN del compte d\'origen no és ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'El número / IBAN del compte d\'origen no conté ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'El número / IBAN del compte d\'origen no acaba amb ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'El número / IBAN del compte d\'origen no comença per ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'El compte de destí no és ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'El compte de destí no conté ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'El compte de destí no acaba amb ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'El compte de destí no comença per ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'El número / IBAN del compte de destí no és ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'El número / IBAN del compte de destí no conté ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'El número / IBAN del compte de destí no acaba amb ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'El número / IBAN del compte de destí no comença per ":trigger_value"', + 'rule_trigger_not_account_is' => 'Cap dels comptes és ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Cap dels comptes conté ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Cap dels comptes acaba amb ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Cap dels comptes comença per ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Cap número de compte / IBAN és ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Cap número de compte / IBAN conté ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Cap número de compte / IBAN acaba amb ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Cap número de compte / IBAN comença per ":trigger_value"', + 'rule_trigger_not_category_is' => 'La categoria no és ":trigger_value"', + 'rule_trigger_not_category_contains' => 'La categoria no conté ":trigger_value"', + 'rule_trigger_not_category_ends' => 'La categoria no acaba en ":trigger_value"', + 'rule_trigger_not_category_starts' => 'La categoria no comença per ":trigger_value"', + 'rule_trigger_not_budget_is' => 'El pressupost no és ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'El pressupost no conté ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'El pressupost no acaba en ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'El pressupost no comença amb ":trigger_value"', + 'rule_trigger_not_bill_is' => 'La factura no és ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'La factura no conté ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'La factura no acaba amb ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'La factura no acaba amb ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'L\'ID externa no és ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'L\'ID externa no conté ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'L\'ID externa no acaba amb ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'L\'ID externa no comença per ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'La referència interna no és ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'La referència interna no conté ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'La referència interna no acaba amb ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'La referència interna no comença per ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'L\'URL extern no és ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'L\'URL extern no conté ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'L\'URL extern no acaba amb ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'L\'URL extern no comença per ":trigger_value"', + 'rule_trigger_not_currency_is' => 'La moneda no és ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'La moneda estrangera no és ":trigger_value"', + 'rule_trigger_not_id' => 'L\'ID de la transacció no és ":trigger_value"', + 'rule_trigger_not_journal_id' => 'L\'ID del llibre de transaccions no és ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'L\'ID periòdica no és ":trigger_value"', + 'rule_trigger_not_date_on' => 'La data no és ":trigger_value"', + 'rule_trigger_not_date_before' => 'La data no és anterior a ":trigger_value"', + 'rule_trigger_not_date_after' => 'La data no és posterior a ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'La data d\'interès no és ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'La data d\'interès no és anterior a ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'La data d\'interès no és posterior a ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'La data de reserva no és ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'La data de reserva no és anterior a ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'La data de reserva no és posterior a ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'La data de processament no és ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'La data de processament no és anterior a ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'La data de processament no és posterior a ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'La data de venciment no és ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'La data de venciment no és anterior a ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'La data de venciment no és posterior a ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'La data de pagament no és ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'La data de pagament no és anterior a ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'La data de pagament no és posterior a ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'La data de facturació no és ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'La data de facturació no és anterior a ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'La data de facturació no és posterior a ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'La transacció no es va crear el ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'La transacció no es va crear abans de ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'La transacció no es va crear després de ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'La transacció no es va actualitzar el ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'La transacció no es va actualitzar abans de ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'La transacció no es va actualitzar després de ":trigger_value"', + 'rule_trigger_not_amount_is' => 'La quantitat de la transacció no és ":trigger_value"', + 'rule_trigger_not_amount_less' => 'La quantitat de la transacció és superior a ":trigger_value"', + 'rule_trigger_not_amount_more' => 'La quantitat de la transacció és inferior a ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'La quantitat en moneda estrangera no és ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'La quantitat en moneda estrangera és superior a ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'La quantitat en moneda estrangera és inferior a ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Cap adjunt té per nom ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Cap nom d\'adjunt conté ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Cap nom d\'adjunt comença per ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Cap nom d\'adjunt acaba amb ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Cap nota d\'adjunt és ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Cap nota d\'adjunt conté ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Cap nota d\'adjunt comença per ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Cap nota d\'adjunt acaba amb ":trigger_value"', + 'rule_trigger_not_reconciled' => 'La transacció no s\'ha consolidat', + 'rule_trigger_not_exists' => 'La transacció no existeix', + 'rule_trigger_not_has_attachments' => 'La transacció no té fitxers adjunts', + 'rule_trigger_not_has_any_category' => 'La transacció no té categoria', + 'rule_trigger_not_has_any_budget' => 'La transacció no té pressupost', + 'rule_trigger_not_has_any_bill' => 'La transacció no té factura', + 'rule_trigger_not_has_any_tag' => 'La transacció no té etiquetes', + 'rule_trigger_not_any_notes' => 'La transacció no té notes', + 'rule_trigger_not_any_external_url' => 'La transacció no té URL extern', + 'rule_trigger_not_has_no_attachments' => 'La transacció té almenys un fitxer adjunt (qualsevol)', + 'rule_trigger_not_has_no_category' => 'La transacció té almenys una categoria (qualsevol)', + 'rule_trigger_not_has_no_budget' => 'La transacció té almenys un pressupost (qualsevol)', + 'rule_trigger_not_has_no_bill' => 'La transacció té almenys una factura (qualsevol)', + 'rule_trigger_not_has_no_tag' => 'La transacció té almenys una etiqueta (qualsevol)', + 'rule_trigger_not_no_notes' => 'La transacció té almenys una nota', + 'rule_trigger_not_no_external_url' => 'La transacció té un URL extern', + 'rule_trigger_not_source_is_cash' => 'El compte d\'origen no és un compte d\'efectiu', + 'rule_trigger_not_destination_is_cash' => 'El compte de destí no és un compte d\'efectiu', + 'rule_trigger_not_account_is_cash' => 'Cap dels comptes és un compte d\'efectiu', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'ELIMINAR transacció(!)', - 'rule_action_delete_transaction' => 'ELIMINAR transacció(!)', - 'rule_action_set_category' => 'Estableix categoria a ":action_value"', - 'rule_action_clear_category' => 'Esborrar categoria', - 'rule_action_set_budget' => 'Establir pressupost a ":action_value"', - 'rule_action_clear_budget' => 'Esborrar pressupost', - 'rule_action_add_tag' => 'Afegir etiqueta ":action_value"', - 'rule_action_remove_tag' => 'Eliminar etiqueta ":action_value"', - 'rule_action_remove_all_tags' => 'Eliminar totes les etiquetes', - 'rule_action_set_description' => 'Establir descripció com ":action_value"', - 'rule_action_append_description' => 'Afegir ":action_value" a la descripció', - 'rule_action_prepend_description' => 'Preposa ":action_value" a la descripció', - 'rule_action_set_category_choice' => 'Establir categoria a ..', - 'rule_action_clear_category_choice' => 'Esborrar qualsevol categoria', - 'rule_action_set_budget_choice' => 'Establir pressupost a ..', - 'rule_action_clear_budget_choice' => 'Esborrar qualsevol pressupost', - 'rule_action_add_tag_choice' => 'Afegir etiqueta ..', - 'rule_action_remove_tag_choice' => 'Eliminar etiqueta ..', - 'rule_action_remove_all_tags_choice' => 'Eliminar totes les etiquetes', - 'rule_action_set_description_choice' => 'Estableix la descripció a ..', - 'rule_action_update_piggy_choice' => 'Afegir/eliminar la quantitat de la transacció a/de la guardiola ..', - 'rule_action_update_piggy' => 'Afegir/eliminar la quantitat de la transacció a/de la guardiola ":action_value"', - 'rule_action_append_description_choice' => 'Afegir a la descripció ..', - 'rule_action_prepend_description_choice' => 'Preposar a la descripció ..', - 'rule_action_set_source_account_choice' => 'Establir el compte d\'origen a ..', - 'rule_action_set_source_account' => 'Establir el compte d\'origen a :action_value', - 'rule_action_set_destination_account_choice' => 'Establir el compte de destí a ..', - 'rule_action_set_destination_account' => 'Establir el compte de destí a :action_value', - 'rule_action_append_notes_choice' => 'Afegir a les notes ..', - 'rule_action_append_notes' => 'Afegir ":action_value" a les notes', - 'rule_action_prepend_notes_choice' => 'Preposar a les notes ..', - 'rule_action_prepend_notes' => 'Preposa ":action_value" a les notes', - 'rule_action_clear_notes_choice' => 'Eliminar qualsevol nota', - 'rule_action_clear_notes' => 'Eliminar qualsevol nota', - 'rule_action_set_notes_choice' => 'Establir les notes a ..', - 'rule_action_link_to_bill_choice' => 'Enllaçar a una factura ..', - 'rule_action_link_to_bill' => 'Enllaçar a la factura ":action_value"', - 'rule_action_switch_accounts_choice' => 'Canvia els comptes font i destí (només transferències!)', - 'rule_action_switch_accounts' => 'Canvia font i destí', - 'rule_action_set_notes' => 'Establir notes a ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convertir la transacció a un dipòsit', - 'rule_action_convert_deposit' => 'Convertir la transacció a un dipòsit de ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convertir la transacció en una retirada', - 'rule_action_convert_withdrawal' => 'Convertir la transacció en una retirada a ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convertir la transacció en una transferència', - 'rule_action_convert_transfer' => 'Convertir la transacció en una transferència a ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Afegir la descripció a les notes de la transacció', - 'rule_action_append_notes_to_descr_choice' => 'Afegir les notes de la transacció a la descripció', - 'rule_action_move_descr_to_notes_choice' => 'Substituir les notes de la transacció actual amb la descripció', - 'rule_action_move_notes_to_descr_choice' => 'Substituir la descripció actual amb les notes de la transacció', - 'rule_action_append_descr_to_notes' => 'Afegir la descripció a les notes', - 'rule_action_append_notes_to_descr' => 'Afegir notes a la descripció', - 'rule_action_move_descr_to_notes' => 'Substituir les notes per la descripció', - 'rule_action_move_notes_to_descr' => 'Substituir la descripció per les notes', - 'rule_action_set_amount_choice' => 'Estableix quantitat a ..', - 'rule_action_set_amount' => 'Estableix quantitat a ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Establir el compte destí a (efectiu)', - 'rule_action_set_source_to_cash_choice' => 'Establir el compte font a (efectiu)', - 'rulegroup_for_bills_title' => 'Grup de regles per factures', - 'rulegroup_for_bills_description' => 'Un grup de regles especial per totes les regles que involucren factures.', - 'rule_for_bill_title' => 'Regla autogenerada per la factura ":name"', - 'rule_for_bill_description' => 'Aquesta regla s\'ha autogenerat per intentar trobar la coincidència amb la factura ":name".', - 'create_rule_for_bill' => 'Crear una regla nova per la factura ":name"', - 'create_rule_for_bill_txt' => 'Acabes de crear una nova factura anomenada ":name", felicitats! Firefly III pot fer correspondre màgicament noves retirades a aquesta factura. Per exemple, quan paguis el lloguer, la factura "lloguer" s\'enllaçarà a la despesa. D\'aquesta manera, Firefly III pot mostrar amb precisió quines factures han vençut i quines no. Per a fer això, s\'ha de crear una nova regla. Firefly III ha omplert alguns valors per tu. Si us plau, comprova que són correctes. Si els valors són correctes, Firefly III enllaçarà automàticament la retirada a la factura correcta. Si us plau, comprova els activadors per veure si són correctes, i afegeix-ne si són incorrectes.', - 'new_rule_for_bill_title' => 'Regla per la factura ":name"', - 'new_rule_for_bill_description' => 'Aquesta regla marca les transaccions per la factura ":name".', + 'rule_action_delete_transaction_choice' => 'ELIMINAR transacció(!)', + 'rule_action_delete_transaction' => 'ELIMINAR transacció(!)', + 'rule_action_set_category' => 'Estableix categoria a ":action_value"', + 'rule_action_clear_category' => 'Esborrar categoria', + 'rule_action_set_budget' => 'Establir pressupost a ":action_value"', + 'rule_action_clear_budget' => 'Esborrar pressupost', + 'rule_action_add_tag' => 'Afegir etiqueta ":action_value"', + 'rule_action_remove_tag' => 'Eliminar etiqueta ":action_value"', + 'rule_action_remove_all_tags' => 'Eliminar totes les etiquetes', + 'rule_action_set_description' => 'Establir descripció com ":action_value"', + 'rule_action_append_description' => 'Afegir ":action_value" a la descripció', + 'rule_action_prepend_description' => 'Preposa ":action_value" a la descripció', + 'rule_action_set_category_choice' => 'Establir categoria a ..', + 'rule_action_clear_category_choice' => 'Esborrar qualsevol categoria', + 'rule_action_set_budget_choice' => 'Establir pressupost a ..', + 'rule_action_clear_budget_choice' => 'Esborrar qualsevol pressupost', + 'rule_action_add_tag_choice' => 'Afegir etiqueta ..', + 'rule_action_remove_tag_choice' => 'Eliminar etiqueta ..', + 'rule_action_remove_all_tags_choice' => 'Eliminar totes les etiquetes', + 'rule_action_set_description_choice' => 'Estableix la descripció a ..', + 'rule_action_update_piggy_choice' => 'Afegir/eliminar la quantitat de la transacció a/de la guardiola ..', + 'rule_action_update_piggy' => 'Afegir/eliminar la quantitat de la transacció a/de la guardiola ":action_value"', + 'rule_action_append_description_choice' => 'Afegir a la descripció ..', + 'rule_action_prepend_description_choice' => 'Preposar a la descripció ..', + 'rule_action_set_source_account_choice' => 'Establir el compte d\'origen a ..', + 'rule_action_set_source_account' => 'Establir el compte d\'origen a :action_value', + 'rule_action_set_destination_account_choice' => 'Establir el compte de destí a ..', + 'rule_action_set_destination_account' => 'Establir el compte de destí a :action_value', + 'rule_action_append_notes_choice' => 'Afegir a les notes ..', + 'rule_action_append_notes' => 'Afegir ":action_value" a les notes', + 'rule_action_prepend_notes_choice' => 'Preposar a les notes ..', + 'rule_action_prepend_notes' => 'Preposa ":action_value" a les notes', + 'rule_action_clear_notes_choice' => 'Eliminar qualsevol nota', + 'rule_action_clear_notes' => 'Eliminar qualsevol nota', + 'rule_action_set_notes_choice' => 'Establir les notes a ..', + 'rule_action_link_to_bill_choice' => 'Enllaçar a una factura ..', + 'rule_action_link_to_bill' => 'Enllaçar a la factura ":action_value"', + 'rule_action_switch_accounts_choice' => 'Canvia els comptes font i destí (només transferències!)', + 'rule_action_switch_accounts' => 'Canvia font i destí', + 'rule_action_set_notes' => 'Establir notes a ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convertir la transacció a un dipòsit', + 'rule_action_convert_deposit' => 'Convertir la transacció a un dipòsit de ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convertir la transacció en una retirada', + 'rule_action_convert_withdrawal' => 'Convertir la transacció en una retirada a ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convertir la transacció en una transferència', + 'rule_action_convert_transfer' => 'Convertir la transacció en una transferència a ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Afegir la descripció a les notes de la transacció', + 'rule_action_append_notes_to_descr_choice' => 'Afegir les notes de la transacció a la descripció', + 'rule_action_move_descr_to_notes_choice' => 'Substituir les notes de la transacció actual amb la descripció', + 'rule_action_move_notes_to_descr_choice' => 'Substituir la descripció actual amb les notes de la transacció', + 'rule_action_append_descr_to_notes' => 'Afegir la descripció a les notes', + 'rule_action_append_notes_to_descr' => 'Afegir notes a la descripció', + 'rule_action_move_descr_to_notes' => 'Substituir les notes per la descripció', + 'rule_action_move_notes_to_descr' => 'Substituir la descripció per les notes', + 'rule_action_set_amount_choice' => 'Estableix quantitat a ..', + 'rule_action_set_amount' => 'Estableix quantitat a ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Establir el compte destí a (efectiu)', + 'rule_action_set_source_to_cash_choice' => 'Establir el compte font a (efectiu)', + 'rulegroup_for_bills_title' => 'Grup de regles per factures', + 'rulegroup_for_bills_description' => 'Un grup de regles especial per totes les regles que involucren factures.', + 'rule_for_bill_title' => 'Regla autogenerada per la factura ":name"', + 'rule_for_bill_description' => 'Aquesta regla s\'ha autogenerat per intentar trobar la coincidència amb la factura ":name".', + 'create_rule_for_bill' => 'Crear una regla nova per la factura ":name"', + 'create_rule_for_bill_txt' => 'Acabes de crear una nova factura anomenada ":name", felicitats! Firefly III pot fer correspondre màgicament noves retirades a aquesta factura. Per exemple, quan paguis el lloguer, la factura "lloguer" s\'enllaçarà a la despesa. D\'aquesta manera, Firefly III pot mostrar amb precisió quines factures han vençut i quines no. Per a fer això, s\'ha de crear una nova regla. Firefly III ha omplert alguns valors per tu. Si us plau, comprova que són correctes. Si els valors són correctes, Firefly III enllaçarà automàticament la retirada a la factura correcta. Si us plau, comprova els activadors per veure si són correctes, i afegeix-ne si són incorrectes.', + 'new_rule_for_bill_title' => 'Regla per la factura ":name"', + 'new_rule_for_bill_description' => 'Aquesta regla marca les transaccions per la factura ":name".', - 'new_rule_for_journal_title' => 'Regla basada en la transacció ":description"', - 'new_rule_for_journal_description' => 'Aquesta regla està basada en la transacció ":description". Farà coincidència amb les transaccions que siguin exactament iguals.', + 'new_rule_for_journal_title' => 'Regla basada en la transacció ":description"', + 'new_rule_for_journal_description' => 'Aquesta regla està basada en la transacció ":description". Farà coincidència amb les transaccions que siguin exactament iguals.', // tags - 'store_new_tag' => 'Guardar nova etiqueta', - 'update_tag' => 'Actualitzar etiqueta', - 'no_location_set' => 'Ubicació no establerta.', - 'meta_data' => 'Meta dades', - 'location' => 'Ubicació', - 'location_first_split' => 'La ubicació d\'aquesta transacció pot ser establerta a la primera divisió de la transacció.', - 'without_date' => 'Sense data', - 'result' => 'Resultat', - 'sums_apply_to_range' => 'Totes les sumes s\'apliquen al rang seleccionat', - 'mapbox_api_key' => 'Per fer servir el mapa, aconsegueix una clau API de Mapbox. Obre el fitxer .env i introdueix-hi el codi després de MAPBOX_API_KEY=.', - 'press_object_location' => 'Botó dret o premi de forma prolongada per definir la ubicació de l\'objecte.', - 'click_tap_location' => 'Fes clic o toca el mapa per afegir una ubicació', - 'clear_location' => 'Netejar ubicació', - 'delete_all_selected_tags' => 'Eliminar totes les etiquetes seleccionades', - 'select_tags_to_delete' => 'No t\'oblidis de seleccionar alguna etiqueta.', - 'deleted_x_tags' => ':count etiqueta eliminada.|:count etiquetes eliminades.', - 'create_rule_from_transaction' => 'Crear regla basada en la transacció', - 'create_recurring_from_transaction' => 'Crear transacció periòdica basada en la transacció', + 'store_new_tag' => 'Guardar nova etiqueta', + 'update_tag' => 'Actualitzar etiqueta', + 'no_location_set' => 'Ubicació no establerta.', + 'meta_data' => 'Meta dades', + 'location' => 'Ubicació', + 'location_first_split' => 'La ubicació d\'aquesta transacció pot ser establerta a la primera divisió de la transacció.', + 'without_date' => 'Sense data', + 'result' => 'Resultat', + 'sums_apply_to_range' => 'Totes les sumes s\'apliquen al rang seleccionat', + 'mapbox_api_key' => 'Per fer servir el mapa, aconsegueix una clau API de Mapbox. Obre el fitxer .env i introdueix-hi el codi després de MAPBOX_API_KEY=.', + 'press_object_location' => 'Botó dret o premi de forma prolongada per definir la ubicació de l\'objecte.', + 'click_tap_location' => 'Fes clic o toca el mapa per afegir una ubicació', + 'clear_location' => 'Netejar ubicació', + 'delete_all_selected_tags' => 'Eliminar totes les etiquetes seleccionades', + 'select_tags_to_delete' => 'No t\'oblidis de seleccionar alguna etiqueta.', + 'deleted_x_tags' => ':count etiqueta eliminada.|:count etiquetes eliminades.', + 'create_rule_from_transaction' => 'Crear regla basada en la transacció', + 'create_recurring_from_transaction' => 'Crear transacció periòdica basada en la transacció', // preferences - 'dark_mode_option_browser' => 'Deixa que el navegador decideixi', - 'dark_mode_option_light' => 'Sempre Clar', - 'dark_mode_option_dark' => 'Sempre fosc', - 'equal_to_language' => '(igual a l\'idioma)', - 'dark_mode_preference' => 'Mode fosc', - 'dark_mode_preference_help' => 'Digues quan vols que Firefly III faci servir el tema fosc.', - 'pref_home_screen_accounts' => 'Comptes a la pantalla d\'inici', - 'pref_home_screen_accounts_help' => 'Quins comptes s\'han de mostrar a la pàgina d\'inici?', - 'pref_view_range' => 'Interval de visió', - 'pref_view_range_help' => 'Algunes gràfiques s\'agrupen automàticament en períodes. Els teus pressuposts també s\'agruparan en períodes. Quin període prefereixes?', - 'pref_1D' => 'Un dia', - 'pref_1W' => 'Una setmana', - 'pref_1M' => 'Un mes', - 'pref_3M' => 'Tres mesos (trimestre)', - 'pref_6M' => 'Sis mesos', - 'pref_1Y' => 'Un any', - 'pref_last365' => 'L\'any passat', - 'pref_last90' => 'Últims 90 dies', - 'pref_last30' => 'Últims 30 dies', - 'pref_last7' => 'Últims 7 dies', - 'pref_YTD' => 'Any en curs', - 'pref_QTD' => 'Trimestre en curs', - 'pref_MTD' => 'Mes en curs', - 'pref_languages' => 'Idiomes', - 'pref_locale' => 'Preferències d\'idioma', - 'pref_languages_help' => 'Firefly III suporta diversos idiomes. Quin prefereixes?', - 'pref_locale_help' => 'Firefly III et permet configurar altres paràmetres locals, com el format de les monedes, números i dates. Algunes entrades de la llista podrien no estar suportades pel teu sistema. Firefly III no té els paràmetres correctes per les dates en tots els idiomes; contacta amb mi per obtenir millores.', - 'pref_locale_no_demo' => 'Aquesta característica no funciona per l\'usuari de demostració.', - 'pref_custom_fiscal_year' => 'Preferències de l\'any fiscal', - 'pref_custom_fiscal_year_label' => 'Activat', - 'pref_custom_fiscal_year_help' => 'Pels països que fan servir anys fiscals diferents de l\'1 de gener al 31 de desembre, pots canviar-ho especificant els dies d\'inici / final de l\'any fiscal', - 'pref_fiscal_year_start_label' => 'Data d\'inici de l\'any fiscal', - 'pref_two_factor_auth' => 'Verificació en dues passes', - 'pref_two_factor_auth_help' => 'Quan actives la verificació en dues passes (també coneguda com a autenticació en dues passes), afegeixes una capa addicional de seguretat al teu compte. Inicies sessió amb una cosa que coneixes (la teva contrasenya) i una cosa que tens (un codi de verificació). Els codis de verificació es generen amb una aplicació al teu telèfon, com per exemple Authy o Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Activar la verificació en dues passes', - 'pref_two_factor_auth_disabled' => 'Codi de verificació en dues passes eliminat i desactivat', - 'pref_two_factor_auth_remove_it' => 'No t\'oblidis d\'eliminar el compte de la teva aplicació d\'autenticació!', - 'pref_two_factor_auth_code' => 'Verificar el codi', - 'pref_two_factor_auth_code_help' => 'Escaneja el codi QR amb una aplicació al teu telèfon com Authy o Google Authenticator i introdueix el codi generat.', - 'pref_two_factor_auth_reset_code' => 'Reiniciar codi de verificació', - 'pref_two_factor_auth_disable_2fa' => 'Desactivar 2FA', - '2fa_use_secret_instead' => 'Si no pots escanejar el codi QR, pots fer servir el codi secret en comptes: :secret.', - '2fa_backup_codes' => 'Guarda aquests codis de seguretat per poder accedir en el cas que perdis el teu dispositiu.', - '2fa_already_enabled' => 'La verificació en dues passes ja està activada.', - 'wrong_mfa_code' => 'Aquest codi MFA no és vàlid.', - 'pref_save_settings' => 'Guardar preferències', - 'saved_preferences' => 'Preferències guardades!', - 'preferences_general' => 'General', - 'preferences_frontpage' => 'Pantalla d\'inici', - 'preferences_security' => 'Seguretat', - 'preferences_layout' => 'Disseny', - 'preferences_notifications' => 'Notificacions', - 'pref_home_show_deposits' => 'Mostrar dipòsits a la pantalla d\'inici', - 'pref_home_show_deposits_info' => 'La pantalla d\'inici ja mostra els teus comptes de despeses. Ha de mostrar també els teus comptes de beneficis?', - 'pref_home_do_show_deposits' => 'Sí, mostra\'ls', - 'successful_count' => 'dels quals :count satisfactoris', - 'list_page_size_title' => 'Mida de pàgina', - 'list_page_size_help' => 'Qualsevol llista de coses (comptes, transaccions, etc) mostra com a màxim aquesta quantitat per pàgina.', - 'list_page_size_label' => 'Mida de pàgina', - 'between_dates' => '(:start i :end)', - 'pref_optional_fields_transaction' => 'Camps opcionals per transaccions', - 'pref_optional_fields_transaction_help' => 'Per defecte no tots els camps són actius quan es crea una nova transacció (pel desordre). A continuació, pots activar aquests camps si creus que et seran útils. Per descomptat, qualsevol camp que es desactivi, però que ja s\'hagi omplert, serà visible tot i aquesta preferència.', - 'optional_tj_date_fields' => 'Camps de data', - 'optional_tj_other_fields' => 'Altres camps', - 'optional_tj_attachment_fields' => 'Camps d\'adjunts', - 'pref_optional_tj_interest_date' => 'Data d\'interès', - 'pref_optional_tj_book_date' => 'Data de registre', - 'pref_optional_tj_process_date' => 'Data de processament', - 'pref_optional_tj_due_date' => 'Data de venciment', - 'pref_optional_tj_payment_date' => 'Data de pagament', - 'pref_optional_tj_invoice_date' => 'Data de facturació', - 'pref_optional_tj_internal_reference' => 'Referència interna', - 'pref_optional_tj_notes' => 'Notes', - 'pref_optional_tj_attachments' => 'Adjunts', - 'pref_optional_tj_external_url' => 'URL extern', - 'pref_optional_tj_location' => 'Ubicació', - 'pref_optional_tj_links' => 'Enllaços de transacció', - 'optional_field_meta_dates' => 'Dates', - 'optional_field_meta_business' => 'Negocis', - 'optional_field_attachments' => 'Adjunts', - 'optional_field_meta_data' => 'Metadades opcionals', - 'external_url' => 'URL extern', - 'pref_notification_bill_reminder' => 'Recordatori de venciment de factures', - 'pref_notification_new_access_token' => 'Avisar quan es creï un nou identificador d\'accés API', - 'pref_notification_transaction_creation' => 'Avisar quan una transacció es creï automàticament', - 'pref_notification_user_login' => 'Avisar quan s\'iniciï sessió des d\'una nova ubicació', - 'pref_notification_rule_action_failures' => 'Alerta quan les accions de la regla no es poden executar (només Slack i Discord)', - 'pref_notifications' => 'Notificacions', - 'pref_notifications_help' => 'Indica si aquestes són notificacions que vols rebre. Algunes notificacions podrien contenir informació financera sensible.', - 'slack_webhook_url' => 'Webhook URL de Slack', - 'slack_webhook_url_help' => 'Si vols que Firefly III et notifiqui utilitzant Slack, introdueix el webhook URL aquí. Altrament, deixa el camp en blanc. Si ets administrador, també has d\'introduir l\'URL a l\'administració.', - 'slack_url_label' => 'URL del webhook entrant de Slack', + 'dark_mode_option_browser' => 'Deixa que el navegador decideixi', + 'dark_mode_option_light' => 'Sempre Clar', + 'dark_mode_option_dark' => 'Sempre fosc', + 'equal_to_language' => '(igual a l\'idioma)', + 'dark_mode_preference' => 'Mode fosc', + 'dark_mode_preference_help' => 'Digues quan vols que Firefly III faci servir el tema fosc.', + 'pref_home_screen_accounts' => 'Comptes a la pantalla d\'inici', + 'pref_home_screen_accounts_help' => 'Quins comptes s\'han de mostrar a la pàgina d\'inici?', + 'pref_view_range' => 'Interval de visió', + 'pref_view_range_help' => 'Algunes gràfiques s\'agrupen automàticament en períodes. Els teus pressuposts també s\'agruparan en períodes. Quin període prefereixes?', + 'pref_1D' => 'Un dia', + 'pref_1W' => 'Una setmana', + 'pref_1M' => 'Un mes', + 'pref_3M' => 'Tres mesos (trimestre)', + 'pref_6M' => 'Sis mesos', + 'pref_1Y' => 'Un any', + 'pref_last365' => 'L\'any passat', + 'pref_last90' => 'Últims 90 dies', + 'pref_last30' => 'Últims 30 dies', + 'pref_last7' => 'Últims 7 dies', + 'pref_YTD' => 'Any en curs', + 'pref_QTD' => 'Trimestre en curs', + 'pref_MTD' => 'Mes en curs', + 'pref_languages' => 'Idiomes', + 'pref_locale' => 'Preferències d\'idioma', + 'pref_languages_help' => 'Firefly III suporta diversos idiomes. Quin prefereixes?', + 'pref_locale_help' => 'Firefly III et permet configurar altres paràmetres locals, com el format de les monedes, números i dates. Algunes entrades de la llista podrien no estar suportades pel teu sistema. Firefly III no té els paràmetres correctes per les dates en tots els idiomes; contacta amb mi per obtenir millores.', + 'pref_locale_no_demo' => 'Aquesta característica no funciona per l\'usuari de demostració.', + 'pref_custom_fiscal_year' => 'Preferències de l\'any fiscal', + 'pref_custom_fiscal_year_label' => 'Activat', + 'pref_custom_fiscal_year_help' => 'Pels països que fan servir anys fiscals diferents de l\'1 de gener al 31 de desembre, pots canviar-ho especificant els dies d\'inici / final de l\'any fiscal', + 'pref_fiscal_year_start_label' => 'Data d\'inici de l\'any fiscal', + 'pref_two_factor_auth' => 'Verificació en dues passes', + 'pref_two_factor_auth_help' => 'Quan actives la verificació en dues passes (també coneguda com a autenticació en dues passes), afegeixes una capa addicional de seguretat al teu compte. Inicies sessió amb una cosa que coneixes (la teva contrasenya) i una cosa que tens (un codi de verificació). Els codis de verificació es generen amb una aplicació al teu telèfon, com per exemple Authy o Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Activar la verificació en dues passes', + 'pref_two_factor_auth_disabled' => 'Codi de verificació en dues passes eliminat i desactivat', + 'pref_two_factor_auth_remove_it' => 'No t\'oblidis d\'eliminar el compte de la teva aplicació d\'autenticació!', + 'pref_two_factor_auth_code' => 'Verificar el codi', + 'pref_two_factor_auth_code_help' => 'Escaneja el codi QR amb una aplicació al teu telèfon com Authy o Google Authenticator i introdueix el codi generat.', + 'pref_two_factor_auth_reset_code' => 'Reiniciar codi de verificació', + 'pref_two_factor_auth_disable_2fa' => 'Desactivar 2FA', + '2fa_use_secret_instead' => 'Si no pots escanejar el codi QR, pots fer servir el codi secret en comptes: :secret.', + '2fa_backup_codes' => 'Guarda aquests codis de seguretat per poder accedir en el cas que perdis el teu dispositiu.', + '2fa_already_enabled' => 'La verificació en dues passes ja està activada.', + 'wrong_mfa_code' => 'Aquest codi MFA no és vàlid.', + 'pref_save_settings' => 'Guardar preferències', + 'saved_preferences' => 'Preferències guardades!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Pantalla d\'inici', + 'preferences_security' => 'Seguretat', + 'preferences_layout' => 'Disseny', + 'preferences_notifications' => 'Notificacions', + 'pref_home_show_deposits' => 'Mostrar dipòsits a la pantalla d\'inici', + 'pref_home_show_deposits_info' => 'La pantalla d\'inici ja mostra els teus comptes de despeses. Ha de mostrar també els teus comptes de beneficis?', + 'pref_home_do_show_deposits' => 'Sí, mostra\'ls', + 'successful_count' => 'dels quals :count satisfactoris', + 'list_page_size_title' => 'Mida de pàgina', + 'list_page_size_help' => 'Qualsevol llista de coses (comptes, transaccions, etc) mostra com a màxim aquesta quantitat per pàgina.', + 'list_page_size_label' => 'Mida de pàgina', + 'between_dates' => '(:start i :end)', + 'pref_optional_fields_transaction' => 'Camps opcionals per transaccions', + 'pref_optional_fields_transaction_help' => 'Per defecte no tots els camps són actius quan es crea una nova transacció (pel desordre). A continuació, pots activar aquests camps si creus que et seran útils. Per descomptat, qualsevol camp que es desactivi, però que ja s\'hagi omplert, serà visible tot i aquesta preferència.', + 'optional_tj_date_fields' => 'Camps de data', + 'optional_tj_other_fields' => 'Altres camps', + 'optional_tj_attachment_fields' => 'Camps d\'adjunts', + 'pref_optional_tj_interest_date' => 'Data d\'interès', + 'pref_optional_tj_book_date' => 'Data de registre', + 'pref_optional_tj_process_date' => 'Data de processament', + 'pref_optional_tj_due_date' => 'Data de venciment', + 'pref_optional_tj_payment_date' => 'Data de pagament', + 'pref_optional_tj_invoice_date' => 'Data de facturació', + 'pref_optional_tj_internal_reference' => 'Referència interna', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Adjunts', + 'pref_optional_tj_external_url' => 'URL extern', + 'pref_optional_tj_location' => 'Ubicació', + 'pref_optional_tj_links' => 'Enllaços de transacció', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Negocis', + 'optional_field_attachments' => 'Adjunts', + 'optional_field_meta_data' => 'Metadades opcionals', + 'external_url' => 'URL extern', + 'pref_notification_bill_reminder' => 'Recordatori de venciment de factures', + 'pref_notification_new_access_token' => 'Avisar quan es creï un nou identificador d\'accés API', + 'pref_notification_transaction_creation' => 'Avisar quan una transacció es creï automàticament', + 'pref_notification_user_login' => 'Avisar quan s\'iniciï sessió des d\'una nova ubicació', + 'pref_notification_rule_action_failures' => 'Alerta quan les accions de la regla no es poden executar (només Slack i Discord)', + 'pref_notifications' => 'Notificacions', + 'pref_notifications_help' => 'Indica si aquestes són notificacions que vols rebre. Algunes notificacions podrien contenir informació financera sensible.', + 'slack_webhook_url' => 'Webhook URL de Slack', + 'slack_webhook_url_help' => 'Si vols que Firefly III et notifiqui utilitzant Slack, introdueix el webhook URL aquí. Altrament, deixa el camp en blanc. Si ets administrador, també has d\'introduir l\'URL a l\'administració.', + 'slack_url_label' => 'URL del webhook entrant de Slack', // Financial administrations - 'administration_index' => 'Administració financera', - 'administrations_index_menu' => 'Administració financera', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administració financera', + 'administrations_index_menu' => 'Administració financera', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purgar dades de Firefly III', - 'purge_data_expl' => '"Purgar" vol dir "eliminar allò que ja s\'ha eliminat". En circumstàncies normals, Firefly III no eliminar res permanentment. Només ho oculta. El següent botó elimina tots els registres prèviament "eliminats" PER SEMPRE.', - 'delete_stuff_header' => 'Eliminar i purgar dades', - 'purge_all_data' => 'Purgar tots els registres eliminats', - 'purge_data' => 'Purgar dades', - 'purged_all_records' => 'Tots els registres eliminats s\'han purgat.', - 'delete_data_title' => 'Eliminar dades de Firefly III', - 'permanent_delete_stuff' => 'Pots eliminar coses de Firefly III. Utilitzar els següents botons vol dir que els elements s\'eliminaran de la vista i s\'amagaran. No hi ha botó per desfer-ho, però els elements romandran a la base de dades, d\'on els podràs recuperar si és necessari.', - 'other_sessions_logged_out' => 'Totes les altres sessions s\'han desconnectat.', - 'delete_unused_accounts' => 'Eliminar els comptes no usats netejarà les llistes d\'autocompletat.', - 'delete_all_unused_accounts' => 'Eliminar comptes no usats', - 'deleted_all_unused_accounts' => 'Tots els comptes no usats s\'han eliminat', - 'delete_all_budgets' => 'Eliminar TOTS els pressupostos', - 'delete_all_categories' => 'Eliminar TOTES les categories', - 'delete_all_tags' => 'Eliminar TOTES les etiquetes', - 'delete_all_bills' => 'Eliminar TOTES les factures', - 'delete_all_piggy_banks' => 'Eliminar TOTES les guardioles', - 'delete_all_rules' => 'Eliminar TOTES les regles', - 'delete_all_recurring' => 'Eliminar TOTES les transaccions recurrents', - 'delete_all_object_groups' => 'Eliminar TOTS els grups d\'objectes', - 'delete_all_accounts' => 'Eliminar TOTS els comptes', - 'delete_all_asset_accounts' => 'Eliminar TOTS els comptes d\'actius', - 'delete_all_expense_accounts' => 'Eliminar TOTS els comptes de despeses', - 'delete_all_revenue_accounts' => 'Eliminar TOTS els comptes de beneficis', - 'delete_all_liabilities' => 'Eliminar TOTS els passius', - 'delete_all_transactions' => 'Eliminar TOTES les transaccions', - 'delete_all_withdrawals' => 'Eliminar TOTES les retirades', - 'delete_all_deposits' => 'Eliminar TOTS els dipòsits', - 'delete_all_transfers' => 'Eliminar TOTES les transferències', - 'also_delete_transactions' => 'Eliminar els comptes també eliminarà TOTES les retirades, dipòsits i transferències associats!', - 'deleted_all_budgets' => 'Tots els pressuposts han estat esborrats', - 'deleted_all_categories' => 'Totes les categories han estat esborrades', - 'deleted_all_tags' => 'Totes les etiquetes han estat esborrades', - 'deleted_all_bills' => 'Totes les factures han estat esborrades', - 'deleted_all_piggy_banks' => 'Totes les guardioles han estat esborrades', - 'deleted_all_rules' => 'Totes les regles i grups de regles han estat esborrats', - 'deleted_all_object_groups' => 'Tots els grups han estat esborrats', - 'deleted_all_accounts' => 'Tots els comptes han estat esborrats', - 'deleted_all_asset_accounts' => 'Tots els comptes d\'actius han estat eliminats', - 'deleted_all_expense_accounts' => 'Tots els comptes de despeses han estat eliminats', - 'deleted_all_revenue_accounts' => 'Tots els comptes de beneficis han estat eliminats', - 'deleted_all_liabilities' => 'Tots els passius han estat eliminats', - 'deleted_all_transactions' => 'Totes les transaccions han estat eliminades', - 'deleted_all_withdrawals' => 'Totes les retirades han estat eliminades', - 'deleted_all_deposits' => 'Tots els dipòsits han estat eliminats', - 'deleted_all_transfers' => 'Totes les transferències han estat eliminades', - 'deleted_all_recurring' => 'Totes les transaccions periòdiques han estat eliminades', - 'change_your_password' => 'Canvia la contrasenya', - 'delete_account' => 'Eliminar compte', - 'current_password' => 'Contrasenya actual', - 'new_password' => 'Nova contrasenya', - 'new_password_again' => 'Nova contrasenya (de nou)', - 'delete_your_account' => 'Eliminar el teu compte', - 'delete_your_account_help' => 'Eliminar el teu compte també eliminarà qualsevol compte, transacció, qualsevol cosa que hagis guardat a Firefly III. Se n\'haurà ANAT.', - 'delete_your_account_password' => 'Introdueix la contrasenya per continuar.', - 'password' => 'Contrasenya', - 'are_you_sure' => 'Estàs segur? Això no es pot desfer.', - 'delete_account_button' => 'ELIMINAR el teu compte', - 'invalid_current_password' => 'Contrasenya actual invàlida!', - 'password_changed' => 'Contrasenya canviada!', - 'should_change' => 'La idea és canviar la teva contrasenya.', - 'invalid_password' => 'Contrasenya invàlida!', - 'what_is_pw_security' => 'Què és "verificar seguretat de la contrasenya"?', - 'secure_pw_title' => 'Com escollir una contrasenya segura', - 'forgot_password_response' => 'Gràcies. Si existeix un compte amb aquesta adreça de correu electrònic, trobaràs les instruccions a la teva safata d\'entrada.', - 'secure_pw_history' => 'Cada setmana pots llegir a les notícies sobre llocs web que perden les contrasenyes dels seus usuaris. Els hackers i lladres fan servir aquestes contrasenyes per provar de robar la teva informació privada. Aquesta informació és valuosa.', - 'secure_pw_ff' => 'Fas servir la mateixa contrasenya per tot internet? Si un lloc web perd la teva contrasenya, els hackers tindran accés a totes les teves dades. Firefly III depèn que triïs una contrasenya forta i única per protegir els teus registres financers.', - 'secure_pw_check_box' => 'Per ajudar-te en això, Firefly III pot comprovar si la contrasenya que vols fer servir s\'ha robat anteriorment. Si aquest és el cas, Firefly III et recomanarà NO utilitzar aquesta contrasenya.', - 'secure_pw_working_title' => 'Com funciona?', - 'secure_pw_working' => 'Seleccionant la casella, Firefly III enviarà els cinc primers caràcters del HASH SHA1 de la teva contrasenya a la pàgina web de Troy Hunt per comprovar si es troba a la seva llista. Això impedirà que facis servir contrasenyes insegures tal com es recomana en lúltima Publicació Especial del NIST sobre aquest tema.', - 'secure_pw_should' => 'Hauria de seleccionar la casella?', - 'secure_pw_long_password' => 'Sí. Verifica sempre que la contrasenya és segura.', - 'command_line_token' => 'Token de línia d\'ordres', - 'explain_command_line_token' => 'Necessites aquest token per executar opcions de línia d\'ordres, com exportar dades. Sense ell, aquesta ordre sensitiva no funcionarà. No comparteixis aquest token de línia d\'ordres. Ningú et demanarà per aquest token, ni tan sols jo. Si et preocupa haver-lo perdut, o estàs paranoic, regenera el token amb aquest botó.', - 'regenerate_command_line_token' => 'Regenerar token de la línia d\'ordres', - 'token_regenerated' => 'S\'ha generat un nou token de línia d\'ordres', - 'change_your_email' => 'Canviar adreça de correu electrònic', - 'email_verification' => 'Un missatge de correu s\'enviarà al teu compte de correu anterior I AL nou. Per qüestions de seguretat, no podràs iniciar sessió fins que no verifiques el nou compte de correu. Si no n\'estàs segur de que la teva instal·lació de Firefly III sigui capaç d\'enviar correus, si us plau, no facis servir aquesta funció. Si ets administrador, pots provar-ho a Administració.', - 'email_changed_logout' => 'Fins que no verifiquis l\'adreça de correu, no pots iniciar sessió.', - 'login_with_new_email' => 'Ja pots iniciar sessió amb la teva nova adreça de correu.', - 'login_with_old_email' => 'Ja pots tornar a iniciar sessió amb la teva adreça de correu anterior.', - 'login_provider_local_only' => 'Aquesta acció no està disponible quan t\'identifiques a través de ":login_provider".', - 'external_user_mgt_disabled' => 'Aquesta acció no està disponible quan Firefly III no és responsable de la gestió d\'usuaris o de la seva identificació.', - 'external_auth_disabled' => 'Aquesta acció no està disponible quan Firefly III no és responsable de la gestió de la identificació.', - 'delete_local_info_only' => "Ja que Firefly III no és responsable de la gestió d'usuaris o de la seva identificació, aquesta funció només eliminarà informació local de Firefly III.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clients OAuth', - 'profile_oauth_no_clients' => 'No has creat cap client OAuth.', - 'profile_oauth_clients_external_auth' => 'Si estàs fent servir un proveïdor extern d\'autentificació com Authelia, els Clients OAuth no funcionaran. Sols pots fer servir Tokens d\'Accés Personal.', - 'profile_oauth_clients_header' => 'Clients', - 'profile_oauth_client_id' => 'ID de Client', - 'profile_oauth_client_name' => 'Nom', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Crear client nou', - 'profile_oauth_create_client' => 'Crear client', - 'profile_oauth_edit_client' => 'Editar client', - 'profile_oauth_name_help' => 'Alguna cosa que els teus usuaris reconeixeran i hi confiaran.', - 'profile_oauth_redirect_url' => 'URL de redirecció', - 'profile_oauth_redirect_url_help' => 'L\'URL de crida de retorn de la teva aplicació.', - 'profile_authorized_apps' => 'Aplicacions autoritzades', - 'profile_authorized_clients' => 'Clients autoritzats', - 'profile_scopes' => 'Àmbits', - 'profile_revoke' => 'Revocar', - 'profile_oauth_client_secret_title' => 'Secret del client', - 'profile_oauth_client_secret_expl' => 'Aquest és el teu nou secret de client. És l\'únic cop que es mostrarà, així que no el perdis! Ara ja pots utilitzar aquest secret per fer crides a l\'API.', - 'profile_personal_access_tokens' => 'Testimoni d\'accés personal', - 'profile_personal_access_token' => 'Testimoni d\'accés personal', - 'profile_oauth_confidential' => 'Confidencial', - 'profile_oauth_confidential_help' => 'Requerir el client d\'autenticar-se amb un secret. Els clients confidencials poden mantenir credencials de forma segura sense exposar-les a parts no autoritzades. Les aplicacions públiques, com les d\'escriptori o SPA de JavaScript, no poden guardar secrets de forma segura.', - 'profile_personal_access_token_explanation' => 'Aquest és el teu nou testimoni d\'accés personal. És l\'únic cop que es mostrarà, així que no el perdis! Ara ja pots utilitzar aquest testimoni per fer crides a l\'API.', - 'profile_no_personal_access_token' => 'No has creat cap testimoni d\'accés personal.', - 'profile_create_new_token' => 'Crear nou testimoni', - 'profile_create_token' => 'Crear testimoni', - 'profile_create' => 'Crear', - 'profile_save_changes' => 'Desar els canvis', - 'profile_whoops' => 'Vaja!', - 'profile_something_wrong' => 'Alguna cosa ha sortit malament!', - 'profile_try_again' => 'Alguna cosa ha anat malament. Si us plau, prova de nou.', - 'amounts' => 'Quantitats', - 'multi_account_warning_unknown' => 'Depenent del tipus de transacció que creïs, el compte d\'origen i/o el de destí de divisions posteriors pot ser anul·lada pel que es defineix en la primera divisió de la transacció.', - 'multi_account_warning_withdrawal' => 'Tingues en compte que el compte d\'origen de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la retirada.', - 'multi_account_warning_deposit' => 'Tingues en compte que el compte de destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió del dipòsit.', - 'multi_account_warning_transfer' => 'Tingues en compte que el compte d\'origen + destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la transferència.', + 'purge_data_title' => 'Purgar dades de Firefly III', + 'purge_data_expl' => '"Purgar" vol dir "eliminar allò que ja s\'ha eliminat". En circumstàncies normals, Firefly III no eliminar res permanentment. Només ho oculta. El següent botó elimina tots els registres prèviament "eliminats" PER SEMPRE.', + 'delete_stuff_header' => 'Eliminar i purgar dades', + 'purge_all_data' => 'Purgar tots els registres eliminats', + 'purge_data' => 'Purgar dades', + 'purged_all_records' => 'Tots els registres eliminats s\'han purgat.', + 'delete_data_title' => 'Eliminar dades de Firefly III', + 'permanent_delete_stuff' => 'Pots eliminar coses de Firefly III. Utilitzar els següents botons vol dir que els elements s\'eliminaran de la vista i s\'amagaran. No hi ha botó per desfer-ho, però els elements romandran a la base de dades, d\'on els podràs recuperar si és necessari.', + 'other_sessions_logged_out' => 'Totes les altres sessions s\'han desconnectat.', + 'delete_unused_accounts' => 'Eliminar els comptes no usats netejarà les llistes d\'autocompletat.', + 'delete_all_unused_accounts' => 'Eliminar comptes no usats', + 'deleted_all_unused_accounts' => 'Tots els comptes no usats s\'han eliminat', + 'delete_all_budgets' => 'Eliminar TOTS els pressupostos', + 'delete_all_categories' => 'Eliminar TOTES les categories', + 'delete_all_tags' => 'Eliminar TOTES les etiquetes', + 'delete_all_bills' => 'Eliminar TOTES les factures', + 'delete_all_piggy_banks' => 'Eliminar TOTES les guardioles', + 'delete_all_rules' => 'Eliminar TOTES les regles', + 'delete_all_recurring' => 'Eliminar TOTES les transaccions recurrents', + 'delete_all_object_groups' => 'Eliminar TOTS els grups d\'objectes', + 'delete_all_accounts' => 'Eliminar TOTS els comptes', + 'delete_all_asset_accounts' => 'Eliminar TOTS els comptes d\'actius', + 'delete_all_expense_accounts' => 'Eliminar TOTS els comptes de despeses', + 'delete_all_revenue_accounts' => 'Eliminar TOTS els comptes de beneficis', + 'delete_all_liabilities' => 'Eliminar TOTS els passius', + 'delete_all_transactions' => 'Eliminar TOTES les transaccions', + 'delete_all_withdrawals' => 'Eliminar TOTES les retirades', + 'delete_all_deposits' => 'Eliminar TOTS els dipòsits', + 'delete_all_transfers' => 'Eliminar TOTES les transferències', + 'also_delete_transactions' => 'Eliminar els comptes també eliminarà TOTES les retirades, dipòsits i transferències associats!', + 'deleted_all_budgets' => 'Tots els pressuposts han estat esborrats', + 'deleted_all_categories' => 'Totes les categories han estat esborrades', + 'deleted_all_tags' => 'Totes les etiquetes han estat esborrades', + 'deleted_all_bills' => 'Totes les factures han estat esborrades', + 'deleted_all_piggy_banks' => 'Totes les guardioles han estat esborrades', + 'deleted_all_rules' => 'Totes les regles i grups de regles han estat esborrats', + 'deleted_all_object_groups' => 'Tots els grups han estat esborrats', + 'deleted_all_accounts' => 'Tots els comptes han estat esborrats', + 'deleted_all_asset_accounts' => 'Tots els comptes d\'actius han estat eliminats', + 'deleted_all_expense_accounts' => 'Tots els comptes de despeses han estat eliminats', + 'deleted_all_revenue_accounts' => 'Tots els comptes de beneficis han estat eliminats', + 'deleted_all_liabilities' => 'Tots els passius han estat eliminats', + 'deleted_all_transactions' => 'Totes les transaccions han estat eliminades', + 'deleted_all_withdrawals' => 'Totes les retirades han estat eliminades', + 'deleted_all_deposits' => 'Tots els dipòsits han estat eliminats', + 'deleted_all_transfers' => 'Totes les transferències han estat eliminades', + 'deleted_all_recurring' => 'Totes les transaccions periòdiques han estat eliminades', + 'change_your_password' => 'Canvia la contrasenya', + 'delete_account' => 'Eliminar compte', + 'current_password' => 'Contrasenya actual', + 'new_password' => 'Nova contrasenya', + 'new_password_again' => 'Nova contrasenya (de nou)', + 'delete_your_account' => 'Eliminar el teu compte', + 'delete_your_account_help' => 'Eliminar el teu compte també eliminarà qualsevol compte, transacció, qualsevol cosa que hagis guardat a Firefly III. Se n\'haurà ANAT.', + 'delete_your_account_password' => 'Introdueix la contrasenya per continuar.', + 'password' => 'Contrasenya', + 'are_you_sure' => 'Estàs segur? Això no es pot desfer.', + 'delete_account_button' => 'ELIMINAR el teu compte', + 'invalid_current_password' => 'Contrasenya actual invàlida!', + 'password_changed' => 'Contrasenya canviada!', + 'should_change' => 'La idea és canviar la teva contrasenya.', + 'invalid_password' => 'Contrasenya invàlida!', + 'what_is_pw_security' => 'Què és "verificar seguretat de la contrasenya"?', + 'secure_pw_title' => 'Com escollir una contrasenya segura', + 'forgot_password_response' => 'Gràcies. Si existeix un compte amb aquesta adreça de correu electrònic, trobaràs les instruccions a la teva safata d\'entrada.', + 'secure_pw_history' => 'Cada setmana pots llegir a les notícies sobre llocs web que perden les contrasenyes dels seus usuaris. Els hackers i lladres fan servir aquestes contrasenyes per provar de robar la teva informació privada. Aquesta informació és valuosa.', + 'secure_pw_ff' => 'Fas servir la mateixa contrasenya per tot internet? Si un lloc web perd la teva contrasenya, els hackers tindran accés a totes les teves dades. Firefly III depèn que triïs una contrasenya forta i única per protegir els teus registres financers.', + 'secure_pw_check_box' => 'Per ajudar-te en això, Firefly III pot comprovar si la contrasenya que vols fer servir s\'ha robat anteriorment. Si aquest és el cas, Firefly III et recomanarà NO utilitzar aquesta contrasenya.', + 'secure_pw_working_title' => 'Com funciona?', + 'secure_pw_working' => 'Seleccionant la casella, Firefly III enviarà els cinc primers caràcters del HASH SHA1 de la teva contrasenya a la pàgina web de Troy Hunt per comprovar si es troba a la seva llista. Això impedirà que facis servir contrasenyes insegures tal com es recomana en lúltima Publicació Especial del NIST sobre aquest tema.', + 'secure_pw_should' => 'Hauria de seleccionar la casella?', + 'secure_pw_long_password' => 'Sí. Verifica sempre que la contrasenya és segura.', + 'command_line_token' => 'Token de línia d\'ordres', + 'explain_command_line_token' => 'Necessites aquest token per executar opcions de línia d\'ordres, com exportar dades. Sense ell, aquesta ordre sensitiva no funcionarà. No comparteixis aquest token de línia d\'ordres. Ningú et demanarà per aquest token, ni tan sols jo. Si et preocupa haver-lo perdut, o estàs paranoic, regenera el token amb aquest botó.', + 'regenerate_command_line_token' => 'Regenerar token de la línia d\'ordres', + 'token_regenerated' => 'S\'ha generat un nou token de línia d\'ordres', + 'change_your_email' => 'Canviar adreça de correu electrònic', + 'email_verification' => 'Un missatge de correu s\'enviarà al teu compte de correu anterior I AL nou. Per qüestions de seguretat, no podràs iniciar sessió fins que no verifiques el nou compte de correu. Si no n\'estàs segur de que la teva instal·lació de Firefly III sigui capaç d\'enviar correus, si us plau, no facis servir aquesta funció. Si ets administrador, pots provar-ho a Administració.', + 'email_changed_logout' => 'Fins que no verifiquis l\'adreça de correu, no pots iniciar sessió.', + 'login_with_new_email' => 'Ja pots iniciar sessió amb la teva nova adreça de correu.', + 'login_with_old_email' => 'Ja pots tornar a iniciar sessió amb la teva adreça de correu anterior.', + 'login_provider_local_only' => 'Aquesta acció no està disponible quan t\'identifiques a través de ":login_provider".', + 'external_user_mgt_disabled' => 'Aquesta acció no està disponible quan Firefly III no és responsable de la gestió d\'usuaris o de la seva identificació.', + 'external_auth_disabled' => 'Aquesta acció no està disponible quan Firefly III no és responsable de la gestió de la identificació.', + 'delete_local_info_only' => "Ja que Firefly III no és responsable de la gestió d'usuaris o de la seva identificació, aquesta funció només eliminarà informació local de Firefly III.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clients OAuth', + 'profile_oauth_no_clients' => 'No has creat cap client OAuth.', + 'profile_oauth_clients_external_auth' => 'Si estàs fent servir un proveïdor extern d\'autentificació com Authelia, els Clients OAuth no funcionaran. Sols pots fer servir Tokens d\'Accés Personal.', + 'profile_oauth_clients_header' => 'Clients', + 'profile_oauth_client_id' => 'ID de Client', + 'profile_oauth_client_name' => 'Nom', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Crear client nou', + 'profile_oauth_create_client' => 'Crear client', + 'profile_oauth_edit_client' => 'Editar client', + 'profile_oauth_name_help' => 'Alguna cosa que els teus usuaris reconeixeran i hi confiaran.', + 'profile_oauth_redirect_url' => 'URL de redirecció', + 'profile_oauth_redirect_url_help' => 'L\'URL de crida de retorn de la teva aplicació.', + 'profile_authorized_apps' => 'Aplicacions autoritzades', + 'profile_authorized_clients' => 'Clients autoritzats', + 'profile_scopes' => 'Àmbits', + 'profile_revoke' => 'Revocar', + 'profile_oauth_client_secret_title' => 'Secret del client', + 'profile_oauth_client_secret_expl' => 'Aquest és el teu nou secret de client. És l\'únic cop que es mostrarà, així que no el perdis! Ara ja pots utilitzar aquest secret per fer crides a l\'API.', + 'profile_personal_access_tokens' => 'Testimoni d\'accés personal', + 'profile_personal_access_token' => 'Testimoni d\'accés personal', + 'profile_oauth_confidential' => 'Confidencial', + 'profile_oauth_confidential_help' => 'Requerir el client d\'autenticar-se amb un secret. Els clients confidencials poden mantenir credencials de forma segura sense exposar-les a parts no autoritzades. Les aplicacions públiques, com les d\'escriptori o SPA de JavaScript, no poden guardar secrets de forma segura.', + 'profile_personal_access_token_explanation' => 'Aquest és el teu nou testimoni d\'accés personal. És l\'únic cop que es mostrarà, així que no el perdis! Ara ja pots utilitzar aquest testimoni per fer crides a l\'API.', + 'profile_no_personal_access_token' => 'No has creat cap testimoni d\'accés personal.', + 'profile_create_new_token' => 'Crear nou testimoni', + 'profile_create_token' => 'Crear testimoni', + 'profile_create' => 'Crear', + 'profile_save_changes' => 'Desar els canvis', + 'profile_whoops' => 'Vaja!', + 'profile_something_wrong' => 'Alguna cosa ha sortit malament!', + 'profile_try_again' => 'Alguna cosa ha anat malament. Si us plau, prova de nou.', + 'amounts' => 'Quantitats', + 'multi_account_warning_unknown' => 'Depenent del tipus de transacció que creïs, el compte d\'origen i/o el de destí de divisions posteriors pot ser anul·lada pel que es defineix en la primera divisió de la transacció.', + 'multi_account_warning_withdrawal' => 'Tingues en compte que el compte d\'origen de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la retirada.', + 'multi_account_warning_deposit' => 'Tingues en compte que el compte de destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió del dipòsit.', + 'multi_account_warning_transfer' => 'Tingues en compte que el compte d\'origen + destí de divisions posteriors serà anul·lat pel que es troba definit a la primera divisió de la transferència.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportar dades de Firefly III', - 'export_data_menu' => 'Exportar dades', - 'export_data_bc' => 'Exportar dades de Firefly III', - 'export_data_main_title' => 'Exportar dades de Firefly III', - 'export_data_expl' => 'Aquest enllaç et permet exportar totes les transaccions + metadades de Firefly III. Si us plau, consulta l\'ajuda (icona (?) superior dreta) per més informació sobre el procés.', - 'export_data_all_transactions' => 'Exportar totes les transaccions', - 'export_data_advanced_expl' => 'Si necessites una exportació més avançada o específica, llegeix l\'ajuda sobre com fer servir les ordres de consola php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportar dades de Firefly III', + 'export_data_menu' => 'Exportar dades', + 'export_data_bc' => 'Exportar dades de Firefly III', + 'export_data_main_title' => 'Exportar dades de Firefly III', + 'export_data_expl' => 'Aquest enllaç et permet exportar totes les transaccions + metadades de Firefly III. Si us plau, consulta l\'ajuda (icona (?) superior dreta) per més informació sobre el procés.', + 'export_data_all_transactions' => 'Exportar totes les transaccions', + 'export_data_advanced_expl' => 'Si necessites una exportació més avançada o específica, llegeix l\'ajuda sobre com fer servir les ordres de consola php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Un adjunt::count adjunts', - 'attachments' => 'Adjunts', - 'edit_attachment' => 'Editar adjunt ":name"', - 'update_attachment' => 'Actualitzar adjunt', - 'delete_attachment' => 'Eliminar adjunt ":name"', - 'attachment_deleted' => 'Adjunt ":name" eliminat', - 'liabilities_deleted' => 'Passiu ":name" eliminat', - 'attachment_updated' => 'Adjunt ":name" actualitzat', - 'upload_max_file_size' => 'Mida màxima del fitxer: :size', - 'list_all_attachments' => 'Llistat de tots els adjunts', + 'nr_of_attachments' => 'Un adjunt::count adjunts', + 'attachments' => 'Adjunts', + 'edit_attachment' => 'Editar adjunt ":name"', + 'update_attachment' => 'Actualitzar adjunt', + 'delete_attachment' => 'Eliminar adjunt ":name"', + 'attachment_deleted' => 'Adjunt ":name" eliminat', + 'liabilities_deleted' => 'Passiu ":name" eliminat', + 'attachment_updated' => 'Adjunt ":name" actualitzat', + 'upload_max_file_size' => 'Mida màxima del fitxer: :size', + 'list_all_attachments' => 'Llistat de tots els adjunts', // transaction index - 'is_reconciled_fields_dropped' => 'Com aquesta transacció està reconciliada, no podràs actualitzar els comptes, ni les quantitats.', - 'title_expenses' => 'Despeses', - 'title_withdrawal' => 'Despeses', - 'title_revenue' => 'Ingressos / salari', - 'title_deposit' => 'Ingressos / salari', - 'title_transfer' => 'Transferències', - 'title_transfers' => 'Transferències', - 'submission_options' => 'Opcions de tramesa', - 'apply_rules_checkbox' => 'Aplicar regles', - 'fire_webhooks_checkbox' => 'Disparar webhooks', - 'select_source_account' => 'Per favor, selecciona o escriu un nom de compte d\'origen vàlid', - 'select_dest_account' => 'Per favor, selecciona o escriu un nom de compte de destí vàlid', + 'is_reconciled_fields_dropped' => 'Com aquesta transacció està reconciliada, no podràs actualitzar els comptes, ni les quantitats.', + 'title_expenses' => 'Despeses', + 'title_withdrawal' => 'Despeses', + 'title_revenue' => 'Ingressos / salari', + 'title_deposit' => 'Ingressos / salari', + 'title_transfer' => 'Transferències', + 'title_transfers' => 'Transferències', + 'submission_options' => 'Opcions de tramesa', + 'apply_rules_checkbox' => 'Aplicar regles', + 'fire_webhooks_checkbox' => 'Disparar webhooks', + 'select_source_account' => 'Per favor, selecciona o escriu un nom de compte d\'origen vàlid', + 'select_dest_account' => 'Per favor, selecciona o escriu un nom de compte de destí vàlid', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Aquesta transacció ja és una retirada', - 'convert_is_already_type_Deposit' => 'Aquesta transacció ja és un dipòsit', - 'convert_is_already_type_Transfer' => 'Aquesta transacció ja és una transferència', - 'convert_to_Withdrawal' => 'Convertir ":description" en una retirada', - 'convert_to_Deposit' => 'Convertir ":description" en un dipòsit', - 'convert_to_Transfer' => 'Convertir ":description" en una transferència', - 'convert_options_WithdrawalDeposit' => 'Convertir retirada en un dipòsit', - 'convert_options_WithdrawalTransfer' => 'Convertir retirada en una transferència', - 'convert_options_DepositTransfer' => 'Convertir dipòsit en una transferència', - 'convert_options_DepositWithdrawal' => 'Convertir dipòsit en una retirada', - 'convert_options_TransferWithdrawal' => 'Convertir transferència en una retirada', - 'convert_options_TransferDeposit' => 'Convertir transferència en un dipòsit', - 'convert_Withdrawal_to_deposit' => 'Convertir aquesta retirada en un dipòsit', - 'convert_Withdrawal_to_transfer' => 'Convertir aquesta retirada en una transferència', - 'convert_Deposit_to_withdrawal' => 'Convertir aquest dipòsit en una retirada', - 'convert_Deposit_to_transfer' => 'Convertir aquest dipòsit en una transferència', - 'convert_Transfer_to_deposit' => 'Convertir aquesta transferència en un dipòsit', - 'convert_Transfer_to_withdrawal' => 'Convertir aquesta transferència en una retirada', - 'convert_please_set_revenue_source' => 'Si us plau, escull el compte de beneficis d\'on vindran els diners.', - 'convert_please_set_asset_destination' => 'Si us plau, escull el compte d\'actius a on aniran els diners.', - 'convert_please_set_expense_destination' => 'Si us plau, escull el compte de despeses a on aniran els diners.', - 'convert_please_set_asset_source' => 'Si us plau, escull el compte d\'actius d\'on vindran els diners.', - 'convert_expl_w_d' => 'Quan es converteix d\'una retirada a un dipòsit, els diners es dipositaran en el compte de destí mostrat, en comptes de ser-ne retirats.|Quan es converteix d\'una retirada a un dipòsit, els diners es dipositaran en els comptes de destí mostrats, en comptes de ser-ne retirats.', - 'convert_expl_w_t' => 'Quan es converteix d\'una retirada a una transferència, els diners es transferiran del compte d\'origen a un altre compte d\'actius o passius en comptes de ser gastats del compte de despeses original.|Quan es converteix d\'una retirada a una transferència, els diners es transferiran dels comptes d\'origen a uns altres comptes d\'actius o passius en comptes de ser gastats del compte de despeses original.', - 'convert_expl_d_w' => 'Quan es converteix d\'un dipòsit a una retirada, els diners es retiraran del compte d\'origen mostrat, en comptes de ser-hi dipositats.|Quan es converteix d\'un dipòsit a una retirada, els diners es retiraran dels comptes d\'origen mostrats, en comptes de ser-hi dipositats.', - 'convert_expl_d_t' => 'Quan es converteix d\'un dipòsit a una transferència, els diners es dipositaran al compte de destí llistat des de qualsevol dels comptes d\'actius o passius.|Quan es converteix d\'un dipòsit a una transferència, els diners es dipositaran als comptes de destí llistats des de qualsevol dels comptes d\'actius o passius.', - 'convert_expl_t_w' => 'Quan es converteix una transferència en una retirada, els diners es gastaran al compte de destí que indiquis aquí, en comptes de ser transferits.|Quan es converteix una transferència en una retirada, els diners es gastaran als comptes de destí que indiquis aquí, en comptes de ser transferits.', - 'convert_expl_t_d' => 'Quan es converteix una transferència en un dipòsit, els diners es dipositaran al compte de destí que veus aquí, en comptes de ser-hi transferits.|Quan es converteix una transferència en un dipòsit, els diners es dipositaran als comptes de destí que veus aquí, en comptes de ser-hi transferits.', - 'convert_select_sources' => 'Per completar la conversió, si us plau, estableix un nou compte d\'origen a sota.|Per completar la conversió, si us plau, estableix els nous comptes d\'origen a sota.', - 'convert_select_destinations' => 'Per completar la conversió, si us plau, selecciona un no compte de destí a sota.|Per completar la conversió, si us plau, selecciona els nous comptes de destí a sota.', - 'converted_to_Withdrawal' => 'La transacció s\'ha convertit a retirada', - 'converted_to_Deposit' => 'La transacció s\'ha convertit a dipòsit', - 'converted_to_Transfer' => 'La transacció s\'ha convertit a transferència', - 'invalid_convert_selection' => 'El compte que has seleccionat ja s\'està utilitzant o no existeix.', - 'source_or_dest_invalid' => 'No es poden trobar els detalls correctes de la transacció. La conversió no és possible.', - 'convert_to_withdrawal' => 'Convertir a retirada', - 'convert_to_deposit' => 'Convertir a dipòsit', - 'convert_to_transfer' => 'Convertir a transferència', + 'convert_is_already_type_Withdrawal' => 'Aquesta transacció ja és una retirada', + 'convert_is_already_type_Deposit' => 'Aquesta transacció ja és un dipòsit', + 'convert_is_already_type_Transfer' => 'Aquesta transacció ja és una transferència', + 'convert_to_Withdrawal' => 'Convertir ":description" en una retirada', + 'convert_to_Deposit' => 'Convertir ":description" en un dipòsit', + 'convert_to_Transfer' => 'Convertir ":description" en una transferència', + 'convert_options_WithdrawalDeposit' => 'Convertir retirada en un dipòsit', + 'convert_options_WithdrawalTransfer' => 'Convertir retirada en una transferència', + 'convert_options_DepositTransfer' => 'Convertir dipòsit en una transferència', + 'convert_options_DepositWithdrawal' => 'Convertir dipòsit en una retirada', + 'convert_options_TransferWithdrawal' => 'Convertir transferència en una retirada', + 'convert_options_TransferDeposit' => 'Convertir transferència en un dipòsit', + 'convert_Withdrawal_to_deposit' => 'Convertir aquesta retirada en un dipòsit', + 'convert_Withdrawal_to_transfer' => 'Convertir aquesta retirada en una transferència', + 'convert_Deposit_to_withdrawal' => 'Convertir aquest dipòsit en una retirada', + 'convert_Deposit_to_transfer' => 'Convertir aquest dipòsit en una transferència', + 'convert_Transfer_to_deposit' => 'Convertir aquesta transferència en un dipòsit', + 'convert_Transfer_to_withdrawal' => 'Convertir aquesta transferència en una retirada', + 'convert_please_set_revenue_source' => 'Si us plau, escull el compte de beneficis d\'on vindran els diners.', + 'convert_please_set_asset_destination' => 'Si us plau, escull el compte d\'actius a on aniran els diners.', + 'convert_please_set_expense_destination' => 'Si us plau, escull el compte de despeses a on aniran els diners.', + 'convert_please_set_asset_source' => 'Si us plau, escull el compte d\'actius d\'on vindran els diners.', + 'convert_expl_w_d' => 'Quan es converteix d\'una retirada a un dipòsit, els diners es dipositaran en el compte de destí mostrat, en comptes de ser-ne retirats.|Quan es converteix d\'una retirada a un dipòsit, els diners es dipositaran en els comptes de destí mostrats, en comptes de ser-ne retirats.', + 'convert_expl_w_t' => 'Quan es converteix d\'una retirada a una transferència, els diners es transferiran del compte d\'origen a un altre compte d\'actius o passius en comptes de ser gastats del compte de despeses original.|Quan es converteix d\'una retirada a una transferència, els diners es transferiran dels comptes d\'origen a uns altres comptes d\'actius o passius en comptes de ser gastats del compte de despeses original.', + 'convert_expl_d_w' => 'Quan es converteix d\'un dipòsit a una retirada, els diners es retiraran del compte d\'origen mostrat, en comptes de ser-hi dipositats.|Quan es converteix d\'un dipòsit a una retirada, els diners es retiraran dels comptes d\'origen mostrats, en comptes de ser-hi dipositats.', + 'convert_expl_d_t' => 'Quan es converteix d\'un dipòsit a una transferència, els diners es dipositaran al compte de destí llistat des de qualsevol dels comptes d\'actius o passius.|Quan es converteix d\'un dipòsit a una transferència, els diners es dipositaran als comptes de destí llistats des de qualsevol dels comptes d\'actius o passius.', + 'convert_expl_t_w' => 'Quan es converteix una transferència en una retirada, els diners es gastaran al compte de destí que indiquis aquí, en comptes de ser transferits.|Quan es converteix una transferència en una retirada, els diners es gastaran als comptes de destí que indiquis aquí, en comptes de ser transferits.', + 'convert_expl_t_d' => 'Quan es converteix una transferència en un dipòsit, els diners es dipositaran al compte de destí que veus aquí, en comptes de ser-hi transferits.|Quan es converteix una transferència en un dipòsit, els diners es dipositaran als comptes de destí que veus aquí, en comptes de ser-hi transferits.', + 'convert_select_sources' => 'Per completar la conversió, si us plau, estableix un nou compte d\'origen a sota.|Per completar la conversió, si us plau, estableix els nous comptes d\'origen a sota.', + 'convert_select_destinations' => 'Per completar la conversió, si us plau, selecciona un no compte de destí a sota.|Per completar la conversió, si us plau, selecciona els nous comptes de destí a sota.', + 'converted_to_Withdrawal' => 'La transacció s\'ha convertit a retirada', + 'converted_to_Deposit' => 'La transacció s\'ha convertit a dipòsit', + 'converted_to_Transfer' => 'La transacció s\'ha convertit a transferència', + 'invalid_convert_selection' => 'El compte que has seleccionat ja s\'està utilitzant o no existeix.', + 'source_or_dest_invalid' => 'No es poden trobar els detalls correctes de la transacció. La conversió no és possible.', + 'convert_to_withdrawal' => 'Convertir a retirada', + 'convert_to_deposit' => 'Convertir a dipòsit', + 'convert_to_transfer' => 'Convertir a transferència', // create new stuff: - 'create_new_withdrawal' => 'Crear una nova retirada', - 'create_new_deposit' => 'Crea un nou dipòsit', - 'create_new_transfer' => 'Crear nova transferència', - 'create_new_asset' => 'Crear un nou compte d\'actius', - 'create_new_liabilities' => 'Crear nou passiu', - 'create_new_expense' => 'Crear un nou compte de despeses', - 'create_new_revenue' => 'Crear un nou compte de beneficis', - 'create_new_piggy_bank' => 'Crea una guardiola nova', - 'create_new_bill' => 'Crear una nova factura', - 'create_new_subscription' => 'Crea una nova subscripció', - 'create_new_rule' => 'Crea una nova regla', + 'create_new_withdrawal' => 'Crear una nova retirada', + 'create_new_deposit' => 'Crea un nou dipòsit', + 'create_new_transfer' => 'Crear nova transferència', + 'create_new_asset' => 'Crear un nou compte d\'actius', + 'create_new_liabilities' => 'Crear nou passiu', + 'create_new_expense' => 'Crear un nou compte de despeses', + 'create_new_revenue' => 'Crear un nou compte de beneficis', + 'create_new_piggy_bank' => 'Crea una guardiola nova', + 'create_new_bill' => 'Crear una nova factura', + 'create_new_subscription' => 'Crea una nova subscripció', + 'create_new_rule' => 'Crea una nova regla', // currencies: - 'create_currency' => 'Crear una nova moneda', - 'store_currency' => 'Guardar nova moneda', - 'update_currency' => 'Actualitza la moneda', - 'new_default_currency' => '":name" està ara a la moneda per defecte.', - 'default_currency_failed' => 'No s\'ha pogut establir ":name" com a la moneda per defecte. Per favor, revisa els registres.', - 'cannot_delete_currency' => 'No es pot eliminar :name perquè encara s\'utilitza.', - 'cannot_delete_fallback_currency' => ':name és la moneda alternativa del sistema i no es pot eliminar.', - 'cannot_disable_currency_journals' => 'No es pot deshabilitar :name perquè les transaccions encara la fan servir.', - 'cannot_disable_currency_last_left' => 'No es pot deshabilitar :name perquè és l\'única moneda activa.', - 'cannot_disable_currency_account_meta' => 'No es pot deshabilitar :name perquè s\'utilitza en comptes d\'actius.', - 'cannot_disable_currency_bills' => 'No es pot deshabilitar :name perquè s\'utilitza en factures.', - 'cannot_disable_currency_recurring' => 'No es pot deshabilitar :name perquè s\'utilitza en transaccions periòdiques.', - 'cannot_disable_currency_available_budgets' => 'No es pot deshabilitar :name perquè s\'utilitza en pressupostos disponibles.', - 'cannot_disable_currency_budget_limits' => 'No es pot deshabilitar :name perquè s\'utilitza en límits de pressupostos.', - 'cannot_disable_currency_current_default' => 'No es pot deshabilitar :name perquè és la moneda per defecte actual.', - 'cannot_disable_currency_system_fallback' => 'No es pot deshabilitar :name perquè és la moneda per defecte del sistema.', - 'disable_EUR_side_effects' => 'L\'Euro és la moneda alternativa d\'emergència del sistema. Deshabilitar-la pot tenir efectes secundaris i podria anul·lar la garantia.', - 'deleted_currency' => 'Moneda :name eliminada', - 'created_currency' => 'Moneda :name creada', - 'could_not_store_currency' => 'No s\'ha pogut guardar la nova moneda.', - 'updated_currency' => 'Moneda :name actualitzada', - 'ask_site_owner' => 'Si us plau, pregunta a :owner per afegir, eliminar o editar monedes.', - 'currencies_intro' => 'Firefly III admet diverses monedes que pots establir i habilitar aquí.', - 'make_default_currency' => 'Establir per defecte', - 'default_currency' => 'per defecte', - 'currency_is_disabled' => 'Deshabilitat', - 'enable_currency' => 'Habilitar', - 'disable_currency' => 'Deshabilitar', - 'currencies_default_disabled' => 'La majoria d\'aquestes monedes estan deshabilitades per defecte. Per utilitzar-les, les has d\'habilitar primer.', - 'currency_is_now_enabled' => 'La moneda ":name" s\'ha habilitat', - 'could_not_enable_currency' => 'No s\'ha pogut habilitar la moneda ":name". Per favor, revisa els registres.', - 'currency_is_now_disabled' => 'La moneda ":name" s\'ha deshabilitat', - 'could_not_disable_currency' => 'No s\'ha pogut deshabilitar la moneda ":name". Pot ser encara està en ús?', + 'create_currency' => 'Crear una nova moneda', + 'store_currency' => 'Guardar nova moneda', + 'update_currency' => 'Actualitza la moneda', + 'new_default_currency' => '":name" està ara a la moneda per defecte.', + 'default_currency_failed' => 'No s\'ha pogut establir ":name" com a la moneda per defecte. Per favor, revisa els registres.', + 'cannot_delete_currency' => 'No es pot eliminar :name perquè encara s\'utilitza.', + 'cannot_delete_fallback_currency' => ':name és la moneda alternativa del sistema i no es pot eliminar.', + 'cannot_disable_currency_journals' => 'No es pot deshabilitar :name perquè les transaccions encara la fan servir.', + 'cannot_disable_currency_last_left' => 'No es pot deshabilitar :name perquè és l\'única moneda activa.', + 'cannot_disable_currency_account_meta' => 'No es pot deshabilitar :name perquè s\'utilitza en comptes d\'actius.', + 'cannot_disable_currency_bills' => 'No es pot deshabilitar :name perquè s\'utilitza en factures.', + 'cannot_disable_currency_recurring' => 'No es pot deshabilitar :name perquè s\'utilitza en transaccions periòdiques.', + 'cannot_disable_currency_available_budgets' => 'No es pot deshabilitar :name perquè s\'utilitza en pressupostos disponibles.', + 'cannot_disable_currency_budget_limits' => 'No es pot deshabilitar :name perquè s\'utilitza en límits de pressupostos.', + 'cannot_disable_currency_current_default' => 'No es pot deshabilitar :name perquè és la moneda per defecte actual.', + 'cannot_disable_currency_system_fallback' => 'No es pot deshabilitar :name perquè és la moneda per defecte del sistema.', + 'disable_EUR_side_effects' => 'L\'Euro és la moneda alternativa d\'emergència del sistema. Deshabilitar-la pot tenir efectes secundaris i podria anul·lar la garantia.', + 'deleted_currency' => 'Moneda :name eliminada', + 'created_currency' => 'Moneda :name creada', + 'could_not_store_currency' => 'No s\'ha pogut guardar la nova moneda.', + 'updated_currency' => 'Moneda :name actualitzada', + 'ask_site_owner' => 'Si us plau, pregunta a :owner per afegir, eliminar o editar monedes.', + 'currencies_intro' => 'Firefly III admet diverses monedes que pots establir i habilitar aquí.', + 'make_default_currency' => 'Establir per defecte', + 'default_currency' => 'per defecte', + 'currency_is_disabled' => 'Deshabilitat', + 'enable_currency' => 'Habilitar', + 'disable_currency' => 'Deshabilitar', + 'currencies_default_disabled' => 'La majoria d\'aquestes monedes estan deshabilitades per defecte. Per utilitzar-les, les has d\'habilitar primer.', + 'currency_is_now_enabled' => 'La moneda ":name" s\'ha habilitat', + 'could_not_enable_currency' => 'No s\'ha pogut habilitar la moneda ":name". Per favor, revisa els registres.', + 'currency_is_now_disabled' => 'La moneda ":name" s\'ha deshabilitat', + 'could_not_disable_currency' => 'No s\'ha pogut deshabilitar la moneda ":name". Pot ser encara està en ús?', // forms: - 'mandatoryFields' => 'Camps obligatoris', - 'optionalFields' => 'Camps opcionals', - 'options' => 'Opcions', + 'mandatoryFields' => 'Camps obligatoris', + 'optionalFields' => 'Camps opcionals', + 'options' => 'Opcions', // budgets: - 'daily_budgets' => 'Pressuposts diaris', - 'weekly_budgets' => 'Pressuposts setmanals', - 'monthly_budgets' => 'Pressuposts mensuals', - 'quarterly_budgets' => 'Pressuposts trimestrals', - 'half_year_budgets' => 'Pressuposts semestrals', - 'yearly_budgets' => 'Pressuposts anuals', - 'other_budgets' => 'Pressuposts de temps personalitzat', - 'budget_limit_not_in_range' => 'Aquesta quantitat s\'aplica des de :start fins a :end:', - 'total_available_budget' => 'Pressupost total disponible (entre :start i :end)', - 'total_available_budget_in_currency' => 'Pressupost total disponible en :currency', - 'see_below' => 'veure a sota', - 'create_new_budget' => 'Crea un nou pressuport', - 'store_new_budget' => 'Desa el pressuport nou', - 'stored_new_budget' => 'S\'ha desat el nou pressupost ":name"', - 'available_between' => 'Disponible entre :start i :end', - 'transactionsWithoutBudget' => 'Despeses sense pressupost', - 'transactions_no_budget' => 'Despeses sense pressupost entre :start i :end', - 'spent_between' => 'Ja t\'has gastat entre :start i :end', - 'spent_between_left' => 'Has gastat :spent entre :start i :end, deixant :left restants.', - 'set_available_amount' => 'Establir quantitat disponible', - 'update_available_amount' => 'Actualitzar quantitat disponible', - 'ab_basic_modal_explain' => 'Utilitza aquest formulari per a indicar el pressupost que esperes tindre (en total, en :currency) en el període indicat.', - 'createBudget' => 'Nou pressupost', - 'invalid_currency' => 'Moneda invàlida', - 'invalid_amount' => 'Per favor, introdueix una quantitat', - 'set_ab' => 'El pressupost disponible establert', - 'updated_ab' => 'La quantitat disponible al pressupost s\'ha actualitzat', - 'deleted_ab' => 'La quantitat disponible al pressupost s\'ha eliminat', - 'deleted_bl' => 'La quantitat pressupostada s\'ha eliminat', - 'alt_currency_ab_create' => 'Veure el pressupost disponible en una altra moneda', - 'bl_create_btn' => 'Establir pressupost en una altra moneda', - 'inactiveBudgets' => 'Pressupostos inactius', - 'without_budget_between' => 'Transaccions sense un pressupost entre :start i :end', - 'delete_budget' => 'Eliminar pressupost ":name"', - 'deleted_budget' => 'Eliminat el pressupost ":name"', - 'edit_budget' => 'Editar pressupost ":name"', - 'updated_budget' => 'Actualitzat el pressupost ":name"', - 'update_amount' => 'Actualitzar quantitat', - 'update_budget' => 'Actualitzar pressupost', - 'update_budget_amount_range' => 'Actualitza la quantitat (esperada) disponible entre :start i :end', - 'set_budget_limit_title' => 'Estableix la quantitat pressupostada per al pressupost :budget entre :start i :end', - 'set_budget_limit' => 'Establir quantitat pressupostada', - 'budget_period_navigator' => 'Navegador de períodes', - 'info_on_available_amount' => 'Què tinc disponible?', - 'available_amount_indication' => 'Utilitza aquestes quantitats per a tindre una aproximació de quin és el teu pressupost disponible.', - 'suggested' => 'Suggerit', - 'average_between' => 'Mitjana entre :start i :end', - 'transferred_in' => 'Transferit (cap a dins)', - 'transferred_away' => 'Transferit (cap a fora)', - 'auto_budget_none' => 'Cap auto-pressupost', - 'auto_budget_reset' => 'Estableix una quantitat fixa cada període', - 'auto_budget_rollover' => 'Afegeix una quantitat cada periode', - 'auto_budget_adjusted' => 'Afegeix una quantitat cada període i corregeix per a sobredespeses', - 'auto_budget_period_daily' => 'Diàriament', - 'auto_budget_period_weekly' => 'Setmanalment', - 'auto_budget_period_monthly' => 'Mensualment', - 'auto_budget_period_quarterly' => 'Quadrimestralment', - 'auto_budget_period_half_year' => 'Cada mig any', - 'auto_budget_period_yearly' => 'Anualment', - 'auto_budget_help' => 'Pots llegir més sobre aquesta funció en l\'ajuda. Fes clic a la icona superior dreta (?).', - 'auto_budget_reset_icon' => 'El pressupost s\'establirà periòdicament', - 'auto_budget_rollover_icon' => 'La quantitat pressupostada s\'incrementarà periòdicament', - 'auto_budget_adjusted_icon' => 'La quantitat del pressupost augmentarà periòdicament i es corregirà per a sobredespeses', - 'remove_budgeted_amount' => 'S\'ha eliminat la quantitat pressupostada en :currency', + 'daily_budgets' => 'Pressuposts diaris', + 'weekly_budgets' => 'Pressuposts setmanals', + 'monthly_budgets' => 'Pressuposts mensuals', + 'quarterly_budgets' => 'Pressuposts trimestrals', + 'half_year_budgets' => 'Pressuposts semestrals', + 'yearly_budgets' => 'Pressuposts anuals', + 'other_budgets' => 'Pressuposts de temps personalitzat', + 'budget_limit_not_in_range' => 'Aquesta quantitat s\'aplica des de :start fins a :end:', + 'total_available_budget' => 'Pressupost total disponible (entre :start i :end)', + 'total_available_budget_in_currency' => 'Pressupost total disponible en :currency', + 'see_below' => 'veure a sota', + 'create_new_budget' => 'Crea un nou pressuport', + 'store_new_budget' => 'Desa el pressuport nou', + 'stored_new_budget' => 'S\'ha desat el nou pressupost ":name"', + 'available_between' => 'Disponible entre :start i :end', + 'transactionsWithoutBudget' => 'Despeses sense pressupost', + 'transactions_no_budget' => 'Despeses sense pressupost entre :start i :end', + 'spent_between' => 'Ja t\'has gastat entre :start i :end', + 'spent_between_left' => 'Has gastat :spent entre :start i :end, deixant :left restants.', + 'set_available_amount' => 'Establir quantitat disponible', + 'update_available_amount' => 'Actualitzar quantitat disponible', + 'ab_basic_modal_explain' => 'Utilitza aquest formulari per a indicar el pressupost que esperes tindre (en total, en :currency) en el període indicat.', + 'createBudget' => 'Nou pressupost', + 'invalid_currency' => 'Moneda invàlida', + 'invalid_amount' => 'Per favor, introdueix una quantitat', + 'set_ab' => 'El pressupost disponible establert', + 'updated_ab' => 'La quantitat disponible al pressupost s\'ha actualitzat', + 'deleted_ab' => 'La quantitat disponible al pressupost s\'ha eliminat', + 'deleted_bl' => 'La quantitat pressupostada s\'ha eliminat', + 'alt_currency_ab_create' => 'Veure el pressupost disponible en una altra moneda', + 'bl_create_btn' => 'Establir pressupost en una altra moneda', + 'inactiveBudgets' => 'Pressupostos inactius', + 'without_budget_between' => 'Transaccions sense un pressupost entre :start i :end', + 'delete_budget' => 'Eliminar pressupost ":name"', + 'deleted_budget' => 'Eliminat el pressupost ":name"', + 'edit_budget' => 'Editar pressupost ":name"', + 'updated_budget' => 'Actualitzat el pressupost ":name"', + 'update_amount' => 'Actualitzar quantitat', + 'update_budget' => 'Actualitzar pressupost', + 'update_budget_amount_range' => 'Actualitza la quantitat (esperada) disponible entre :start i :end', + 'set_budget_limit_title' => 'Estableix la quantitat pressupostada per al pressupost :budget entre :start i :end', + 'set_budget_limit' => 'Establir quantitat pressupostada', + 'budget_period_navigator' => 'Navegador de períodes', + 'info_on_available_amount' => 'Què tinc disponible?', + 'available_amount_indication' => 'Utilitza aquestes quantitats per a tindre una aproximació de quin és el teu pressupost disponible.', + 'suggested' => 'Suggerit', + 'average_between' => 'Mitjana entre :start i :end', + 'transferred_in' => 'Transferit (cap a dins)', + 'transferred_away' => 'Transferit (cap a fora)', + 'auto_budget_none' => 'Cap auto-pressupost', + 'auto_budget_reset' => 'Estableix una quantitat fixa cada període', + 'auto_budget_rollover' => 'Afegeix una quantitat cada periode', + 'auto_budget_adjusted' => 'Afegeix una quantitat cada període i corregeix per a sobredespeses', + 'auto_budget_period_daily' => 'Diàriament', + 'auto_budget_period_weekly' => 'Setmanalment', + 'auto_budget_period_monthly' => 'Mensualment', + 'auto_budget_period_quarterly' => 'Quadrimestralment', + 'auto_budget_period_half_year' => 'Cada mig any', + 'auto_budget_period_yearly' => 'Anualment', + 'auto_budget_help' => 'Pots llegir més sobre aquesta funció en l\'ajuda. Fes clic a la icona superior dreta (?).', + 'auto_budget_reset_icon' => 'El pressupost s\'establirà periòdicament', + 'auto_budget_rollover_icon' => 'La quantitat pressupostada s\'incrementarà periòdicament', + 'auto_budget_adjusted_icon' => 'La quantitat del pressupost augmentarà periòdicament i es corregirà per a sobredespeses', + 'remove_budgeted_amount' => 'S\'ha eliminat la quantitat pressupostada en :currency', // bills: - 'subscription' => 'Subscripció', - 'not_expected_period' => 'No s\'espera aquest periode', - 'subscriptions_in_group' => 'Subscripcions al grup "%{title}"', - 'subscr_expected_x_times' => 'S\'espera que pagues %{amount} %{times} vegades aquest període', - 'not_or_not_yet' => 'No (encara)', - 'visit_bill' => 'Visita la factura ":name" en Firefly III', - 'match_between_amounts' => 'La factura coincideix amb les transaccions entre :low i :high.', - 'running_again_loss' => 'Les transaccions enllaçades previament a aquesta factura pot ser perguen la connexió (si no coincideixen les normes).', - 'bill_related_rules' => 'Normes relacionades a aquesta factura', - 'repeats' => 'Repeticions', - 'bill_end_date_help' => 'Camp opcional. S\'espera que la factura acabe aquest dia.', - 'bill_extension_date_help' => 'Camp opcional. La factura ha de ser estesa (o cancel·lada) aquest dia o abans.', - 'bill_end_index_line' => 'La factura acaba el :date', - 'bill_extension_index_line' => 'La factura ha de ser cancel·lada o estesa el :date', - 'connected_journals' => 'Transaccions connectades', - 'auto_match_on' => 'Quadrades automàticament per Firefly III', - 'auto_match_off' => 'No quadrades automàticament per Firefly III', - 'next_expected_match' => 'Pròxima coincidència esperada', - 'delete_bill' => 'Elimina la factura ":name"', - 'deleted_bill' => 'S\'ha eliminat la factura ":name"', - 'edit_bill' => 'Editar factura ":name"', - 'more' => 'Més', - 'rescan_old' => 'Executa les normes altra vegada, en totes les transaccions', - 'update_bill' => 'Actualiza la factura', - 'updated_bill' => 'S\'ha actualitzat la factura ":name"', - 'store_new_bill' => 'Desa una factura nova', - 'stored_new_bill' => 'S\'ha desat la nova factura ":name"', - 'cannot_scan_inactive_bill' => 'Les factures inactives no poden ser escanejades.', - 'rescanned_bill' => 'S\'ha escanejat tot altra vegada, i s\'ha enllaçat :count transacció a la factura.|S\'ha escanejat tot altra vegada, i s\'han enllaçat :count transaccions a la factura.', - 'average_bill_amount_year' => 'Quantitat de factures mitjana (:year)', - 'average_bill_amount_overall' => 'Quantitat de factures mitjana (global)', - 'bill_is_active' => 'La factura està activa', - 'bill_expected_between' => 'S\'espera entre :start i :end', - 'bill_will_automatch' => 'La factura s\'enllaçarà automàticament a les transaccions que encaixen', - 'skips_over' => 'es salta', - 'bill_store_error' => 'Ha hagut un error inesperat al desar la teua nova factura. Per favor, comprova els registres', - 'list_inactive_rule' => 'regla inactiva', - 'bill_edit_rules' => 'Firefly III intentarà editar la norma relacionada amb aquesta factura. Tot i això, si has editat aquesta norma pel teu compte, Firefly III no canviarà res.|Firefly III intentarà editar les :count normes relacionades amb aquesta factura. Tot i això, si les has editat pel teu compte, Firefly III no canviarà res.', - 'bill_expected_date' => 'S\'espera :date', - 'bill_expected_date_js' => 'S\'espera {date}', - 'expected_amount' => 'Quantitat (esperada)', - 'bill_paid_on' => 'Pagat el {date}', - 'bill_repeats_weekly' => 'Es repeteix setmanalment', - 'bill_repeats_monthly' => 'Es repeteix mensualment', - 'bill_repeats_quarterly' => 'Es repeteix quadrimestralment', - 'bill_repeats_half-year' => 'Es repeteix cada mig any', - 'bill_repeats_yearly' => 'Es repeteix anualment', - 'bill_repeats_weekly_other' => 'Es repeteix cada dos setmanes', - 'bill_repeats_monthly_other' => 'Es repeteix cada dos mesos', - 'bill_repeats_quarterly_other' => 'Es repeteix cada dos quadrimestres', - 'bill_repeats_half-year_other' => 'Es repeteix anualment', - 'bill_repeats_yearly_other' => 'Es repeteix cada dos anys', - 'bill_repeats_weekly_skip' => 'Es repeteix cada {skip} setmanes', - 'bill_repeats_monthly_skip' => 'Es repeteix cada {skip} mesos', - 'bill_repeats_quarterly_skip' => 'Es repeteix cada {skip} quadrimestres', - 'bill_repeats_half-year_skip' => 'Es repeteix cada {skip} mitjos anys', - 'bill_repeats_yearly_skip' => 'Es repeteix cada {skip} anys', - 'subscriptions' => 'Subscripcions', - 'go_to_subscriptions' => 'Ves a les teves subscripcions', - 'forever' => 'Per a sempre', - 'extension_date_is' => 'La data d\'extensió és {date}', + 'subscription' => 'Subscripció', + 'not_expected_period' => 'No s\'espera aquest periode', + 'subscriptions_in_group' => 'Subscripcions al grup "%{title}"', + 'subscr_expected_x_times' => 'S\'espera que pagues %{amount} %{times} vegades aquest període', + 'not_or_not_yet' => 'No (encara)', + 'visit_bill' => 'Visita la factura ":name" en Firefly III', + 'match_between_amounts' => 'La factura coincideix amb les transaccions entre :low i :high.', + 'running_again_loss' => 'Les transaccions enllaçades previament a aquesta factura pot ser perguen la connexió (si no coincideixen les normes).', + 'bill_related_rules' => 'Normes relacionades a aquesta factura', + 'repeats' => 'Repeticions', + 'bill_end_date_help' => 'Camp opcional. S\'espera que la factura acabe aquest dia.', + 'bill_extension_date_help' => 'Camp opcional. La factura ha de ser estesa (o cancel·lada) aquest dia o abans.', + 'bill_end_index_line' => 'La factura acaba el :date', + 'bill_extension_index_line' => 'La factura ha de ser cancel·lada o estesa el :date', + 'connected_journals' => 'Transaccions connectades', + 'auto_match_on' => 'Quadrades automàticament per Firefly III', + 'auto_match_off' => 'No quadrades automàticament per Firefly III', + 'next_expected_match' => 'Pròxima coincidència esperada', + 'delete_bill' => 'Elimina la factura ":name"', + 'deleted_bill' => 'S\'ha eliminat la factura ":name"', + 'edit_bill' => 'Editar factura ":name"', + 'more' => 'Més', + 'rescan_old' => 'Executa les normes altra vegada, en totes les transaccions', + 'update_bill' => 'Actualiza la factura', + 'updated_bill' => 'S\'ha actualitzat la factura ":name"', + 'store_new_bill' => 'Desa una factura nova', + 'stored_new_bill' => 'S\'ha desat la nova factura ":name"', + 'cannot_scan_inactive_bill' => 'Les factures inactives no poden ser escanejades.', + 'rescanned_bill' => 'S\'ha escanejat tot altra vegada, i s\'ha enllaçat :count transacció a la factura.|S\'ha escanejat tot altra vegada, i s\'han enllaçat :count transaccions a la factura.', + 'average_bill_amount_year' => 'Quantitat de factures mitjana (:year)', + 'average_bill_amount_overall' => 'Quantitat de factures mitjana (global)', + 'bill_is_active' => 'La factura està activa', + 'bill_expected_between' => 'S\'espera entre :start i :end', + 'bill_will_automatch' => 'La factura s\'enllaçarà automàticament a les transaccions que encaixen', + 'skips_over' => 'es salta', + 'bill_store_error' => 'Ha hagut un error inesperat al desar la teua nova factura. Per favor, comprova els registres', + 'list_inactive_rule' => 'regla inactiva', + 'bill_edit_rules' => 'Firefly III intentarà editar la norma relacionada amb aquesta factura. Tot i això, si has editat aquesta norma pel teu compte, Firefly III no canviarà res.|Firefly III intentarà editar les :count normes relacionades amb aquesta factura. Tot i això, si les has editat pel teu compte, Firefly III no canviarà res.', + 'bill_expected_date' => 'S\'espera :date', + 'bill_expected_date_js' => 'S\'espera {date}', + 'expected_amount' => 'Quantitat (esperada)', + 'bill_paid_on' => 'Pagat el {date}', + 'bill_repeats_weekly' => 'Es repeteix setmanalment', + 'bill_repeats_monthly' => 'Es repeteix mensualment', + 'bill_repeats_quarterly' => 'Es repeteix quadrimestralment', + 'bill_repeats_half-year' => 'Es repeteix cada mig any', + 'bill_repeats_yearly' => 'Es repeteix anualment', + 'bill_repeats_weekly_other' => 'Es repeteix cada dos setmanes', + 'bill_repeats_monthly_other' => 'Es repeteix cada dos mesos', + 'bill_repeats_quarterly_other' => 'Es repeteix cada dos quadrimestres', + 'bill_repeats_half-year_other' => 'Es repeteix anualment', + 'bill_repeats_yearly_other' => 'Es repeteix cada dos anys', + 'bill_repeats_weekly_skip' => 'Es repeteix cada {skip} setmanes', + 'bill_repeats_monthly_skip' => 'Es repeteix cada {skip} mesos', + 'bill_repeats_quarterly_skip' => 'Es repeteix cada {skip} quadrimestres', + 'bill_repeats_half-year_skip' => 'Es repeteix cada {skip} mitjos anys', + 'bill_repeats_yearly_skip' => 'Es repeteix cada {skip} anys', + 'subscriptions' => 'Subscripcions', + 'go_to_subscriptions' => 'Ves a les teves subscripcions', + 'forever' => 'Per a sempre', + 'extension_date_is' => 'La data d\'extensió és {date}', // accounts: - 'i_am_owed_amount' => 'Se\'m deu la quantitat', - 'i_owe_amount' => 'Jo dec la quantitat', - 'inactive_account_link' => 'Tens :count compte inactiu (arxivat), que pots veure en aquesta pàgina.|Tens :count comptes inactius (arxivats), els pots veure en aquesta pàgina.', - 'all_accounts_inactive' => 'Aquests són els teus comptes inactius.', - 'active_account_link' => 'Aquest enllaç et retorna als teus comptes actius.', - 'account_missing_transaction' => 'El compte #:id (":name") no es pot visualitzar directament ja que Firefly no té alguna informació de redirecció.', - 'cc_monthly_payment_date_help' => 'Selecciona qualsevol any o mes, i serà ignorat. Només el dia és rellevant.', - 'details_for_asset' => 'Detalls per al compte d\'actius ":name"', - 'details_for_expense' => 'Detalls per al compte de despeses ":name"', - 'details_for_revenue' => 'Detalls per al compte de beneficis ":name"', - 'details_for_cash' => 'Detalls per al compte d\'efectiu ":name"', - 'store_new_asset_account' => 'Desa el nou compte d\'actius', - 'store_new_expense_account' => 'Desa el nou compte de despeses', - 'store_new_revenue_account' => 'Desa el nou compte de beneficis', - 'edit_asset_account' => 'Edita el compte d\'actius ":name"', - 'edit_expense_account' => 'Edita el compte de despeses ":name"', - 'edit_revenue_account' => 'Edita el compte de beneficis ":name"', - 'delete_asset_account' => 'Elimina el compte d\'actius ":name"', - 'delete_expense_account' => 'Elimina el compte de despeses ":name"', - 'delete_revenue_account' => 'Elimina el compte de beneficis ":name"', - 'delete_liabilities_account' => 'Elimina el passiu ":name"', - 'asset_deleted' => 'S\'ha eliminat el compte d\'actius ":name" satisfactòriament', - 'account_deleted' => 'S\'ha eliminat el compte ":name" satisfactòriament', - 'expense_deleted' => 'S\'ha eliminat el compte de despeses ":name" satisfactòriament', - 'revenue_deleted' => 'S\'ha eliminat el compte de beneficis ":name" satisfactòriament', - 'update_asset_account' => 'Actualitza el compte d\'actius', - 'update_undefined_account' => 'Actualitza el compte', - 'update_liabilities_account' => 'Actualitza el passiu', - 'update_expense_account' => 'Actualitza el compte de despeses', - 'update_revenue_account' => 'Actualitza el compte de beneficis', - 'make_new_asset_account' => 'Crea un nou compte d\'actius', - 'make_new_expense_account' => 'Crea un nou compte de despeses', - 'make_new_revenue_account' => 'Crea un nou compte de beneficis', - 'make_new_liabilities_account' => 'Crea un nou passiu', - 'asset_accounts' => 'Comptes d\'actius', - 'undefined_accounts' => 'Comptes', - 'asset_accounts_inactive' => 'Comptes d\'actius (inactius)', - 'expense_account' => 'Compte de despeses', - 'expense_accounts' => 'Comptes de despeses', - 'expense_accounts_inactive' => 'Comptes de despeses (inactius)', - 'revenue_account' => 'Compte d\'ingressos', - 'revenue_accounts' => 'Comptes d\'ingressos', - 'revenue_accounts_inactive' => 'Comptes d\'ingressos (inactius)', - 'cash_accounts' => 'Comptes d\'efectiu', - 'Cash account' => 'Compte d\'efectiu', - 'liabilities_accounts' => 'Passius', - 'liabilities_accounts_inactive' => 'Passius (inactiu)', - 'reconcile_account' => 'Consolida el compte ":account"', - 'overview_of_reconcile_modal' => 'Visió general de consolidació', - 'delete_reconciliation' => 'Elimina la consolidació', - 'update_reconciliation' => 'Actualitza la consolidació', - 'amount_cannot_be_zero' => 'La quantitat no pot ser zero', - 'end_of_reconcile_period' => 'Final del període de consolidació :period', - 'start_of_reconcile_period' => 'Inici del període de consolidació :period', - 'start_balance' => 'Saldo inicial', - 'end_balance' => 'Saldo final', - 'update_balance_dates_instruction' => 'Encaixa les quantitats i dates de dalt amb el teu extracte bancari, i prem "Comença a consolidar"', - 'select_transactions_instruction' => 'Selecciona les transaccions que apareixen en el teu extracte bancari.', - 'select_range_and_balance' => 'Primer, verifica el rang de dates i saldo. Després prem "Comença a consolidar"', - 'date_change_instruction' => 'Si canvies el rang de dates ara, es perdrà el progrés.', - 'update_selection' => 'Actualitza la selecció', - 'store_reconcile' => 'Desa la consolidació', - 'reconciliation_transaction' => 'Consolida la transacció', - 'Reconciliation' => 'Consolidació', - 'reconciliation' => 'Consolidació', - 'reconcile_options' => 'Opcions de consolidació', - 'reconcile_range' => 'Rang de consolidació', - 'start_reconcile' => 'Comença a consolidar', - 'cash_account_type' => 'Efectiu', - 'cash' => 'efectiu', - 'cant_find_redirect_account' => 'Firefly III ha intentat redireccionar-te però no ha pogut. Disculpa les molèsties. Torna a l\'índex.', - 'account_type' => 'Tipus de compte', - 'save_transactions_by_moving' => 'Desa aquesta transacció movent-la a un altre compte:|Desa aquestes transaccions movent-les a un altre compte:', - 'save_transactions_by_moving_js' => 'Sense transaccions.|Desa aquesta transacció movent-la a un altre compte. |Desa aquestes transaccions movent-les a un altre compte.', - 'stored_new_account' => 'S\'ha desat el compte nou ":name"!', - 'stored_new_account_js' => 'S\'ha desat el compte nou "{name}"!', - 'updated_account' => 'S\'ha actualitzat el compte ":name"', - 'updated_account_js' => 'S\'ha actualitzat el compte "{title}".', - 'credit_card_options' => 'Opcions de la targeta de crèdit', - 'no_transactions_account' => 'No hi ha cap transacció (en aquest període) per al compte d\'actius ":name".', - 'no_transactions_period' => 'No hi ha transaccions (en aquest període).', - 'no_data_for_chart' => 'No hi ha prou informació (encara) per a generar aquest gràfic.', - 'select_at_least_one_account' => 'Per favor, selecciona almenys un compte d\'actius', - 'select_at_least_one_category' => 'Per favor, selecciona almenys una categoria', - 'select_at_least_one_budget' => 'Per favor, selecciona almenys un pressupost', - 'select_at_least_one_tag' => 'Per favor, selecciona almenys una etiqueta', - 'select_at_least_one_expense' => 'Per favor, selecciona almenys una combinació de comptes de despeses/beneficis. Aquest informe no està disponible si no en tens cap (la llista està buida).', - 'account_default_currency' => 'Aquesta serà la nova moneda associada amb aquest compte.', - 'reconcile_has_more' => 'La compatibilitat a Firefly III diu que tens més diners del que diu el teu banc. Tens diverses opcions. Per favor, tria què fer, i després prem a "Confirmar consolidació".', - 'reconcile_has_less' => 'La compatibilitat a Firefly III diu que tens menys diners del que diu el teu banc. Tens diverses opcions. Per favor, tria què fer, i després prem a "Confirmar consolidació".', - 'reconcile_is_equal' => 'La compatibilitat a Firefly III coincideix amb el que diu el teu banc. No cal fer res més. Per favor, prem a "Confirmar consolidació" per a confirmar l\'entrada.', - 'create_pos_reconcile_transaction' => 'Buida les transaccions seleccionades, i crea una correcció afegint :amount a aquest compte d\'actius.', - 'create_neg_reconcile_transaction' => 'Buida les transaccions seleccionades, i crea una correció eliminant :amount d\'aquest compte d\'actius.', - 'reconcile_do_nothing' => 'Buida les transaccions seleccionades, però no corregir res.', - 'reconcile_go_back' => 'Sempre pots editar o eliminar una correció més tard.', - 'must_be_asset_account' => 'Sols pots consolidar comptes d\'actius', - 'reconciliation_stored' => 'Consolidació desada', - 'reconciliation_error' => 'A causa d\'un error les transaccions han sigut marcades com a consolidades, però la correcció no s\'ha desat: :error.', - 'reconciliation_transaction_title' => 'Consolidació (:from to :to)', - 'sum_of_reconciliation' => 'Suma de la consolidació', - 'reconcile_this_account' => 'Consolida aquest compte', - 'reconcile' => 'Consolidar', - 'show' => 'Mostra', - 'confirm_reconciliation' => 'Confirma la consolidació', - 'submitted_start_balance' => 'Enviat el balanç inicial', - 'selected_transactions' => 'Transaccions seleccionades (:count)', - 'already_cleared_transactions' => 'Transaccions ja comprovades (:count)', - 'submitted_end_balance' => 'Enviat el balanç final', - 'initial_balance_description' => 'Balanç inicial per a ":account"', - 'liability_credit_description' => 'Crèdit de passius per a ":account"', - 'interest_calc_' => 'desconegut', - 'interest_calc_daily' => 'Per dia', - 'interest_calc_monthly' => 'Per mes', - 'interest_calc_yearly' => 'Per any', - 'interest_calc_weekly' => 'Per setmana', - 'interest_calc_half-year' => 'Cada mig any', - 'interest_calc_quarterly' => 'Per quadrimestre', - 'initial_balance_account' => 'Compte de balanç inicial de :account', - 'list_options' => 'Llista opcions', + 'i_am_owed_amount' => 'Se\'m deu la quantitat', + 'i_owe_amount' => 'Jo dec la quantitat', + 'inactive_account_link' => 'Tens :count compte inactiu (arxivat), que pots veure en aquesta pàgina.|Tens :count comptes inactius (arxivats), els pots veure en aquesta pàgina.', + 'all_accounts_inactive' => 'Aquests són els teus comptes inactius.', + 'active_account_link' => 'Aquest enllaç et retorna als teus comptes actius.', + 'account_missing_transaction' => 'El compte #:id (":name") no es pot visualitzar directament ja que Firefly no té alguna informació de redirecció.', + 'cc_monthly_payment_date_help' => 'Selecciona qualsevol any o mes, i serà ignorat. Només el dia és rellevant.', + 'details_for_asset' => 'Detalls per al compte d\'actius ":name"', + 'details_for_expense' => 'Detalls per al compte de despeses ":name"', + 'details_for_revenue' => 'Detalls per al compte de beneficis ":name"', + 'details_for_cash' => 'Detalls per al compte d\'efectiu ":name"', + 'store_new_asset_account' => 'Desa el nou compte d\'actius', + 'store_new_expense_account' => 'Desa el nou compte de despeses', + 'store_new_revenue_account' => 'Desa el nou compte de beneficis', + 'edit_asset_account' => 'Edita el compte d\'actius ":name"', + 'edit_expense_account' => 'Edita el compte de despeses ":name"', + 'edit_revenue_account' => 'Edita el compte de beneficis ":name"', + 'delete_asset_account' => 'Elimina el compte d\'actius ":name"', + 'delete_expense_account' => 'Elimina el compte de despeses ":name"', + 'delete_revenue_account' => 'Elimina el compte de beneficis ":name"', + 'delete_liabilities_account' => 'Elimina el passiu ":name"', + 'asset_deleted' => 'S\'ha eliminat el compte d\'actius ":name" satisfactòriament', + 'account_deleted' => 'S\'ha eliminat el compte ":name" satisfactòriament', + 'expense_deleted' => 'S\'ha eliminat el compte de despeses ":name" satisfactòriament', + 'revenue_deleted' => 'S\'ha eliminat el compte de beneficis ":name" satisfactòriament', + 'update_asset_account' => 'Actualitza el compte d\'actius', + 'update_undefined_account' => 'Actualitza el compte', + 'update_liabilities_account' => 'Actualitza el passiu', + 'update_expense_account' => 'Actualitza el compte de despeses', + 'update_revenue_account' => 'Actualitza el compte de beneficis', + 'make_new_asset_account' => 'Crea un nou compte d\'actius', + 'make_new_expense_account' => 'Crea un nou compte de despeses', + 'make_new_revenue_account' => 'Crea un nou compte de beneficis', + 'make_new_liabilities_account' => 'Crea un nou passiu', + 'asset_accounts' => 'Comptes d\'actius', + 'undefined_accounts' => 'Comptes', + 'asset_accounts_inactive' => 'Comptes d\'actius (inactius)', + 'expense_account' => 'Compte de despeses', + 'expense_accounts' => 'Comptes de despeses', + 'expense_accounts_inactive' => 'Comptes de despeses (inactius)', + 'revenue_account' => 'Compte d\'ingressos', + 'revenue_accounts' => 'Comptes d\'ingressos', + 'revenue_accounts_inactive' => 'Comptes d\'ingressos (inactius)', + 'cash_accounts' => 'Comptes d\'efectiu', + 'Cash account' => 'Compte d\'efectiu', + 'liabilities_accounts' => 'Passius', + 'liabilities_accounts_inactive' => 'Passius (inactiu)', + 'reconcile_account' => 'Consolida el compte ":account"', + 'overview_of_reconcile_modal' => 'Visió general de consolidació', + 'delete_reconciliation' => 'Elimina la consolidació', + 'update_reconciliation' => 'Actualitza la consolidació', + 'amount_cannot_be_zero' => 'La quantitat no pot ser zero', + 'end_of_reconcile_period' => 'Final del període de consolidació :period', + 'start_of_reconcile_period' => 'Inici del període de consolidació :period', + 'start_balance' => 'Saldo inicial', + 'end_balance' => 'Saldo final', + 'update_balance_dates_instruction' => 'Encaixa les quantitats i dates de dalt amb el teu extracte bancari, i prem "Comença a consolidar"', + 'select_transactions_instruction' => 'Selecciona les transaccions que apareixen en el teu extracte bancari.', + 'select_range_and_balance' => 'Primer, verifica el rang de dates i saldo. Després prem "Comença a consolidar"', + 'date_change_instruction' => 'Si canvies el rang de dates ara, es perdrà el progrés.', + 'update_selection' => 'Actualitza la selecció', + 'store_reconcile' => 'Desa la consolidació', + 'reconciliation_transaction' => 'Consolida la transacció', + 'Reconciliation' => 'Consolidació', + 'reconciliation' => 'Consolidació', + 'reconcile_options' => 'Opcions de consolidació', + 'reconcile_range' => 'Rang de consolidació', + 'start_reconcile' => 'Comença a consolidar', + 'cash_account_type' => 'Efectiu', + 'cash' => 'efectiu', + 'cant_find_redirect_account' => 'Firefly III ha intentat redireccionar-te però no ha pogut. Disculpa les molèsties. Torna a l\'índex.', + 'account_type' => 'Tipus de compte', + 'save_transactions_by_moving' => 'Desa aquesta transacció movent-la a un altre compte:|Desa aquestes transaccions movent-les a un altre compte:', + 'save_transactions_by_moving_js' => 'Sense transaccions.|Desa aquesta transacció movent-la a un altre compte. |Desa aquestes transaccions movent-les a un altre compte.', + 'stored_new_account' => 'S\'ha desat el compte nou ":name"!', + 'stored_new_account_js' => 'S\'ha desat el compte nou "{name}"!', + 'updated_account' => 'S\'ha actualitzat el compte ":name"', + 'updated_account_js' => 'S\'ha actualitzat el compte "{title}".', + 'credit_card_options' => 'Opcions de la targeta de crèdit', + 'no_transactions_account' => 'No hi ha cap transacció (en aquest període) per al compte d\'actius ":name".', + 'no_transactions_period' => 'No hi ha transaccions (en aquest període).', + 'no_data_for_chart' => 'No hi ha prou informació (encara) per a generar aquest gràfic.', + 'select_at_least_one_account' => 'Per favor, selecciona almenys un compte d\'actius', + 'select_at_least_one_category' => 'Per favor, selecciona almenys una categoria', + 'select_at_least_one_budget' => 'Per favor, selecciona almenys un pressupost', + 'select_at_least_one_tag' => 'Per favor, selecciona almenys una etiqueta', + 'select_at_least_one_expense' => 'Per favor, selecciona almenys una combinació de comptes de despeses/beneficis. Aquest informe no està disponible si no en tens cap (la llista està buida).', + 'account_default_currency' => 'Aquesta serà la nova moneda associada amb aquest compte.', + 'reconcile_has_more' => 'La compatibilitat a Firefly III diu que tens més diners del que diu el teu banc. Tens diverses opcions. Per favor, tria què fer, i després prem a "Confirmar consolidació".', + 'reconcile_has_less' => 'La compatibilitat a Firefly III diu que tens menys diners del que diu el teu banc. Tens diverses opcions. Per favor, tria què fer, i després prem a "Confirmar consolidació".', + 'reconcile_is_equal' => 'La compatibilitat a Firefly III coincideix amb el que diu el teu banc. No cal fer res més. Per favor, prem a "Confirmar consolidació" per a confirmar l\'entrada.', + 'create_pos_reconcile_transaction' => 'Buida les transaccions seleccionades, i crea una correcció afegint :amount a aquest compte d\'actius.', + 'create_neg_reconcile_transaction' => 'Buida les transaccions seleccionades, i crea una correció eliminant :amount d\'aquest compte d\'actius.', + 'reconcile_do_nothing' => 'Buida les transaccions seleccionades, però no corregir res.', + 'reconcile_go_back' => 'Sempre pots editar o eliminar una correció més tard.', + 'must_be_asset_account' => 'Sols pots consolidar comptes d\'actius', + 'reconciliation_stored' => 'Consolidació desada', + 'reconciliation_error' => 'A causa d\'un error les transaccions han sigut marcades com a consolidades, però la correcció no s\'ha desat: :error.', + 'reconciliation_transaction_title' => 'Consolidació (:from to :to)', + 'sum_of_reconciliation' => 'Suma de la consolidació', + 'reconcile_this_account' => 'Consolida aquest compte', + 'reconcile' => 'Consolidar', + 'show' => 'Mostra', + 'confirm_reconciliation' => 'Confirma la consolidació', + 'submitted_start_balance' => 'Enviat el balanç inicial', + 'selected_transactions' => 'Transaccions seleccionades (:count)', + 'already_cleared_transactions' => 'Transaccions ja comprovades (:count)', + 'submitted_end_balance' => 'Enviat el balanç final', + 'initial_balance_description' => 'Balanç inicial per a ":account"', + 'liability_credit_description' => 'Crèdit de passius per a ":account"', + 'interest_calc_' => 'desconegut', + 'interest_calc_daily' => 'Per dia', + 'interest_calc_monthly' => 'Per mes', + 'interest_calc_yearly' => 'Per any', + 'interest_calc_weekly' => 'Per setmana', + 'interest_calc_half-year' => 'Cada mig any', + 'interest_calc_quarterly' => 'Per quadrimestre', + 'initial_balance_account' => 'Compte de balanç inicial de :account', + 'list_options' => 'Llista opcions', // categories: - 'new_category' => 'Nova categoria', - 'create_new_category' => 'Crear una nova categoria', - 'without_category' => 'Sense cap categoria', - 'update_category' => 'Actualitza la categoria', - 'updated_category' => 'Actualitzar la categoria ":name"', - 'categories' => 'Categories', - 'edit_category' => 'Editar la categoria ":name"', - 'no_category' => '(cap categoria)', - 'unknown_category_plain' => 'Sense categoria', - 'category' => 'Categoria', - 'delete_category' => 'Eliminar categoria ":name"', - 'deleted_category' => 'S\'ha eliminat la categoria ":name"', - 'store_category' => 'Desa la nova categoria', - 'stored_category' => 'S\'ha desat la nova categoria ":name"', - 'without_category_between' => 'Sense categoria entre :start i :end', + 'new_category' => 'Nova categoria', + 'create_new_category' => 'Crear una nova categoria', + 'without_category' => 'Sense cap categoria', + 'update_category' => 'Actualitza la categoria', + 'updated_category' => 'Actualitzar la categoria ":name"', + 'categories' => 'Categories', + 'edit_category' => 'Editar la categoria ":name"', + 'no_category' => '(cap categoria)', + 'unknown_category_plain' => 'Sense categoria', + 'category' => 'Categoria', + 'delete_category' => 'Eliminar categoria ":name"', + 'deleted_category' => 'S\'ha eliminat la categoria ":name"', + 'store_category' => 'Desa la nova categoria', + 'stored_category' => 'S\'ha desat la nova categoria ":name"', + 'without_category_between' => 'Sense categoria entre :start i :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Per favor, espera que carregui el formulari', - 'wait_loading_data' => 'Per favor, espera que carregui la teva informació...', - 'wait_attachments' => 'Per favor, espera que els adjunts es carreguin.', - 'errors_upload' => 'La pujada ha fallat. Per favor comprova la consola del teu navegador per a l\'error.', - 'amount_foreign_if' => 'Quantitat en la moneda estrangera, si aplica', - 'amount_destination_account' => 'Quantitat en la moneda del compte de destí', - 'edit_transaction_title' => 'Editar transacció ":description"', - 'unreconcile' => 'Desfés la reconciliació', - 'update_withdrawal' => 'Actualitzar retirada', - 'update_deposit' => 'Actualitzar ingrés', - 'update_transaction' => 'Actualitzar transacció', - 'update_transfer' => 'Actualitzar transferència', - 'updated_withdrawal' => 'S\'ha actualitzat la retirada ":description"', - 'updated_deposit' => 'S\'ha actualitzat l\'ingrés ":description"', - 'updated_transfer' => 'S\'ha actualitzat la transferència ":description"', - 'no_changes_withdrawal' => 'La retirada ":description" no s\'ha canviat.', - 'no_changes_deposit' => 'L\'ingrès ":description" no s\'ha canviat.', - 'no_changes_transfer' => 'La transferència ":description" no s\'ha canviat.', - 'delete_withdrawal' => 'Elimina la retirada ":description"', - 'delete_deposit' => 'Elimina l\'ingrès ":description"', - 'delete_transfer' => 'Elimina la transferència ":description"', - 'deleted_withdrawal' => 'S\'ha eliminat la retirada ":description" satisfactòriament', - 'deleted_deposit' => 'S\'ha eliminat l\'ingrès ":description" satisfactòriament', - 'deleted_transfer' => 'S\'ha eliminat la transferència ":description" satisfactòriament', - 'deleted_reconciliation' => 'S\'ha eliminat la transacció de consolidació ":description" satisfactòriament', - 'stored_journal' => 'S\'ha creat la retirada ":description" satisfactòriament', - 'stored_journal_js' => 'S\'ha creat la transacció "{{description}}" correctament', - 'stored_journal_no_descr' => 'S\'ha creat la teua nova transacció satisfactòriament', - 'updated_journal_no_descr' => 'S\'ha actualitzat la teua transacció satisfactòriament', - 'select_transactions' => 'Selecciona transaccions', - 'rule_group_select_transactions' => 'Aplica ":title" a totes les transaccions', - 'rule_select_transactions' => 'Aplica ":title" a totes les transaccions', - 'stop_selection' => 'Para de seleccionar transaccions', - 'reconcile_selected' => 'Consolidar', - 'mass_delete_journals' => 'Elimina un nombre de transaccions', - 'mass_edit_journals' => 'Edita un nombre de transaccions', - 'mass_bulk_journals' => 'Edita en grup un nombre de transaccions', - 'mass_bulk_journals_explain' => 'Aquest formulari et permet canviar propietats de les transaccions següents en una mateixa actualització. Totes les transaccions de la taula seran actualitzades quan canvies els paràmetres mostrats ací.', - 'part_of_split' => 'Aquesta transacció forma part d\'una transacció dividida. Si no has seleccionat totes les divisions, pot ser que modifiques només algunes transaccions.', - 'bulk_set_new_values' => 'Utilitza les entrades següents per a establir nous valors. Si les deixes en blanc, es desaran en blanc per a tots. Tingues en compte que només les retirades seran assignades a un pressupost.', - 'no_bulk_category' => 'No actualitzes la categoria', - 'no_bulk_budget' => 'No actualitzes el pressupost', - 'no_bulk_tags' => 'No actualitzes la/les etiquetes', - 'replace_with_these_tags' => 'Reemplaça amb les següents etiquetes', - 'append_these_tags' => 'Afegeix aquestes etiquetes', - 'mass_edit' => 'Edita la selecció individualment', - 'bulk_edit' => 'Edita la selecció en grup', - 'mass_delete' => 'Elimina la selecció', - 'cannot_edit_other_fields' => 'No pots editar altres camps diferents als llistats, perquè no hi ha espai per a mostrar-los. Per favor, segueix l\'enllaç i edita-les una per una, si vols editar aquests camps.', - 'cannot_change_amount_reconciled' => 'No pots canviar la quantitat de transaccions consolidades.', - 'no_budget' => '(cap pressupost)', - 'no_bill' => '(cap factura)', - 'account_per_budget' => 'Compte per pressupost', - 'account_per_category' => 'Compte per categoria', - 'create_new_object' => 'Crear', - 'empty' => '(buit)', - 'all_other_budgets' => '(tots els pressupostos)', - 'all_other_accounts' => '(tots els comptes)', - 'expense_per_source_account' => 'Despeses per compte d\'origen', - 'expense_per_destination_account' => 'Despeses per compte de destinació', - 'income_per_destination_account' => 'Ingressos per compte de destinació', - 'spent_in_specific_category' => 'Gastat a la categoria ":category"', - 'earned_in_specific_category' => 'Guanyat a la categoria ":category"', - 'spent_in_specific_tag' => 'Gastat a l\'etiqueta ":tag"', - 'earned_in_specific_tag' => 'Guanyat a l\'etiqueta ":tag"', - 'income_per_source_account' => 'Ingressos per compte d\'origen', - 'average_spending_per_destination' => 'Despeses mitjanes per compte de destí', - 'average_spending_per_source' => 'Despeses mitjanes per compte d\'origen', - 'average_earning_per_source' => 'Benefici mitjà per compte d\'origen', - 'average_earning_per_destination' => 'Benefici mitjà per compte de destí', - 'account_per_tag' => 'Compte per etiqueta', - 'tag_report_expenses_listed_once' => 'Les despeses i ingressos mai es mostren dues vegades. Si una transacció té varies etiquetes, pot ser sols es mostre en una d\'elles. Pot semblar que falten dades a aquesta llista, però les quantitats seran correctes.', - 'double_report_expenses_charted_once' => 'Les despeses i ingressos mai es llisten dues vegades. Si una transacció té varies etiquetes, pot ser sols es mostre en una d\'elles. Pot semblar que falten dades a aquesta gràfica, però les quantitats seran correctes.', - 'tag_report_chart_single_tag' => 'Aquesta gràfica s\'aplica a una única etiqueta. Si una transacció en té diverses, el que veuràs ací pot estar reflectit a les gràfiques d\'altres etiquetes també.', - 'tag' => 'Etiqueta', - 'no_budget_squared' => '(cap pressupost)', - 'perm-delete-many' => 'Eliminar molts elements a la vegada pot causar problemes. Per favor, ves amb cura. Pots eliminar una part d\'una transacció dividida des d\'aquesta pàgina, així que ves amb compte.', - 'mass_deleted_transactions_success' => 'S\'ha eliminat :count transacció.|S\'han eliminat :count transaccions.', - 'mass_edited_transactions_success' => 'S\'ha actualitzat :count transacció.|S\'han actualitzat :count transaccions.', - 'opt_group_' => '(cap tipus de compte)', - 'opt_group_no_account_type' => '(cap tipus de compte)', - 'opt_group_defaultAsset' => 'Comptes d\'actius per defecte', - 'opt_group_savingAsset' => 'Comptes d\'estalvis', - 'opt_group_sharedAsset' => 'Comptes d\'actius per defecte', - 'opt_group_ccAsset' => 'Targetes de crèdit', - 'opt_group_cashWalletAsset' => 'Carteres d\'efectiu', - 'opt_group_expense_account' => 'Comptes de despeses', - 'opt_group_revenue_account' => 'Comptes d\'ingressos', - 'opt_group_l_Loan' => 'Passiu: prèstec', - 'opt_group_cash_account' => 'Compte d\'efectiu', - 'opt_group_l_Debt' => 'Passiu: Deute', - 'opt_group_l_Mortgage' => 'Passiu: Hipoteca', - 'opt_group_l_Credit card' => 'Passiu: Targeta de crèdit', - 'notes' => 'Notes', - 'unknown_journal_error' => 'No s\'ha pogut desar la transacció. Per favor, revisa els arxius de registre.', - 'attachment_not_found' => 'No s\'ha trobat aquest adjunt.', - 'journal_link_bill' => 'Aquesta transacció està enllaçada a la factura :name. Per a eliminar la connexió, desmarca la casella. Utilitza regles per a connectar-la a una altra factura.', - 'transaction_stored_link' => 'La Transacció #{ID} ("{title}") s\'ha desat.', - 'transaction_new_stored_link' => 'La Transacció #{ID} s\'ha desat.', - 'transaction_updated_link' => 'La transacció#{ID} ("{title}") s\'ha actualitzat.', - 'transaction_updated_no_changes' => 'La Transacció #{ID} ("{title}") no ha sigut modificada.', - 'first_split_decides' => 'La primera divisió determina el valor d\'aquest camp', - 'first_split_overrules_source' => 'La primera divisió pot sobreescriure el compte d\'origen', - 'first_split_overrules_destination' => 'La primera divisió pot sobreescriure el compte de destinació', - 'spent_x_of_y' => 'Gastat {amount} de {total}', + 'wait_loading_transaction' => 'Per favor, espera que carregui el formulari', + 'wait_loading_data' => 'Per favor, espera que carregui la teva informació...', + 'wait_attachments' => 'Per favor, espera que els adjunts es carreguin.', + 'errors_upload' => 'La pujada ha fallat. Per favor comprova la consola del teu navegador per a l\'error.', + 'amount_foreign_if' => 'Quantitat en la moneda estrangera, si aplica', + 'amount_destination_account' => 'Quantitat en la moneda del compte de destí', + 'edit_transaction_title' => 'Editar transacció ":description"', + 'unreconcile' => 'Desfés la reconciliació', + 'update_withdrawal' => 'Actualitzar retirada', + 'update_deposit' => 'Actualitzar ingrés', + 'update_transaction' => 'Actualitzar transacció', + 'update_transfer' => 'Actualitzar transferència', + 'updated_withdrawal' => 'S\'ha actualitzat la retirada ":description"', + 'updated_deposit' => 'S\'ha actualitzat l\'ingrés ":description"', + 'updated_transfer' => 'S\'ha actualitzat la transferència ":description"', + 'no_changes_withdrawal' => 'La retirada ":description" no s\'ha canviat.', + 'no_changes_deposit' => 'L\'ingrès ":description" no s\'ha canviat.', + 'no_changes_transfer' => 'La transferència ":description" no s\'ha canviat.', + 'delete_withdrawal' => 'Elimina la retirada ":description"', + 'delete_deposit' => 'Elimina l\'ingrès ":description"', + 'delete_transfer' => 'Elimina la transferència ":description"', + 'deleted_withdrawal' => 'S\'ha eliminat la retirada ":description" satisfactòriament', + 'deleted_deposit' => 'S\'ha eliminat l\'ingrès ":description" satisfactòriament', + 'deleted_transfer' => 'S\'ha eliminat la transferència ":description" satisfactòriament', + 'deleted_reconciliation' => 'S\'ha eliminat la transacció de consolidació ":description" satisfactòriament', + 'stored_journal' => 'S\'ha creat la retirada ":description" satisfactòriament', + 'stored_journal_js' => 'S\'ha creat la transacció "{{description}}" correctament', + 'stored_journal_no_descr' => 'S\'ha creat la teua nova transacció satisfactòriament', + 'updated_journal_no_descr' => 'S\'ha actualitzat la teua transacció satisfactòriament', + 'select_transactions' => 'Selecciona transaccions', + 'rule_group_select_transactions' => 'Aplica ":title" a totes les transaccions', + 'rule_select_transactions' => 'Aplica ":title" a totes les transaccions', + 'stop_selection' => 'Para de seleccionar transaccions', + 'reconcile_selected' => 'Consolidar', + 'mass_delete_journals' => 'Elimina un nombre de transaccions', + 'mass_edit_journals' => 'Edita un nombre de transaccions', + 'mass_bulk_journals' => 'Edita en grup un nombre de transaccions', + 'mass_bulk_journals_explain' => 'Aquest formulari et permet canviar propietats de les transaccions següents en una mateixa actualització. Totes les transaccions de la taula seran actualitzades quan canvies els paràmetres mostrats ací.', + 'part_of_split' => 'Aquesta transacció forma part d\'una transacció dividida. Si no has seleccionat totes les divisions, pot ser que modifiques només algunes transaccions.', + 'bulk_set_new_values' => 'Utilitza les entrades següents per a establir nous valors. Si les deixes en blanc, es desaran en blanc per a tots. Tingues en compte que només les retirades seran assignades a un pressupost.', + 'no_bulk_category' => 'No actualitzes la categoria', + 'no_bulk_budget' => 'No actualitzes el pressupost', + 'no_bulk_tags' => 'No actualitzes la/les etiquetes', + 'replace_with_these_tags' => 'Reemplaça amb les següents etiquetes', + 'append_these_tags' => 'Afegeix aquestes etiquetes', + 'mass_edit' => 'Edita la selecció individualment', + 'bulk_edit' => 'Edita la selecció en grup', + 'mass_delete' => 'Elimina la selecció', + 'cannot_edit_other_fields' => 'No pots editar altres camps diferents als llistats, perquè no hi ha espai per a mostrar-los. Per favor, segueix l\'enllaç i edita-les una per una, si vols editar aquests camps.', + 'cannot_change_amount_reconciled' => 'No pots canviar la quantitat de transaccions consolidades.', + 'no_budget' => '(cap pressupost)', + 'no_bill' => '(cap factura)', + 'account_per_budget' => 'Compte per pressupost', + 'account_per_category' => 'Compte per categoria', + 'create_new_object' => 'Crear', + 'empty' => '(buit)', + 'all_other_budgets' => '(tots els pressupostos)', + 'all_other_accounts' => '(tots els comptes)', + 'expense_per_source_account' => 'Despeses per compte d\'origen', + 'expense_per_destination_account' => 'Despeses per compte de destinació', + 'income_per_destination_account' => 'Ingressos per compte de destinació', + 'spent_in_specific_category' => 'Gastat a la categoria ":category"', + 'earned_in_specific_category' => 'Guanyat a la categoria ":category"', + 'spent_in_specific_tag' => 'Gastat a l\'etiqueta ":tag"', + 'earned_in_specific_tag' => 'Guanyat a l\'etiqueta ":tag"', + 'income_per_source_account' => 'Ingressos per compte d\'origen', + 'average_spending_per_destination' => 'Despeses mitjanes per compte de destí', + 'average_spending_per_source' => 'Despeses mitjanes per compte d\'origen', + 'average_earning_per_source' => 'Benefici mitjà per compte d\'origen', + 'average_earning_per_destination' => 'Benefici mitjà per compte de destí', + 'account_per_tag' => 'Compte per etiqueta', + 'tag_report_expenses_listed_once' => 'Les despeses i ingressos mai es mostren dues vegades. Si una transacció té varies etiquetes, pot ser sols es mostre en una d\'elles. Pot semblar que falten dades a aquesta llista, però les quantitats seran correctes.', + 'double_report_expenses_charted_once' => 'Les despeses i ingressos mai es llisten dues vegades. Si una transacció té varies etiquetes, pot ser sols es mostre en una d\'elles. Pot semblar que falten dades a aquesta gràfica, però les quantitats seran correctes.', + 'tag_report_chart_single_tag' => 'Aquesta gràfica s\'aplica a una única etiqueta. Si una transacció en té diverses, el que veuràs ací pot estar reflectit a les gràfiques d\'altres etiquetes també.', + 'tag' => 'Etiqueta', + 'no_budget_squared' => '(cap pressupost)', + 'perm-delete-many' => 'Eliminar molts elements a la vegada pot causar problemes. Per favor, ves amb cura. Pots eliminar una part d\'una transacció dividida des d\'aquesta pàgina, així que ves amb compte.', + 'mass_deleted_transactions_success' => 'S\'ha eliminat :count transacció.|S\'han eliminat :count transaccions.', + 'mass_edited_transactions_success' => 'S\'ha actualitzat :count transacció.|S\'han actualitzat :count transaccions.', + 'opt_group_' => '(cap tipus de compte)', + 'opt_group_no_account_type' => '(cap tipus de compte)', + 'opt_group_defaultAsset' => 'Comptes d\'actius per defecte', + 'opt_group_savingAsset' => 'Comptes d\'estalvis', + 'opt_group_sharedAsset' => 'Comptes d\'actius per defecte', + 'opt_group_ccAsset' => 'Targetes de crèdit', + 'opt_group_cashWalletAsset' => 'Carteres d\'efectiu', + 'opt_group_expense_account' => 'Comptes de despeses', + 'opt_group_revenue_account' => 'Comptes d\'ingressos', + 'opt_group_l_Loan' => 'Passiu: prèstec', + 'opt_group_cash_account' => 'Compte d\'efectiu', + 'opt_group_l_Debt' => 'Passiu: Deute', + 'opt_group_l_Mortgage' => 'Passiu: Hipoteca', + 'opt_group_l_Credit card' => 'Passiu: Targeta de crèdit', + 'notes' => 'Notes', + 'unknown_journal_error' => 'No s\'ha pogut desar la transacció. Per favor, revisa els arxius de registre.', + 'attachment_not_found' => 'No s\'ha trobat aquest adjunt.', + 'journal_link_bill' => 'Aquesta transacció està enllaçada a la factura :name. Per a eliminar la connexió, desmarca la casella. Utilitza regles per a connectar-la a una altra factura.', + 'transaction_stored_link' => 'La Transacció #{ID} ("{title}") s\'ha desat.', + 'transaction_new_stored_link' => 'La Transacció #{ID} s\'ha desat.', + 'transaction_updated_link' => 'La transacció#{ID} ("{title}") s\'ha actualitzat.', + 'transaction_updated_no_changes' => 'La Transacció #{ID} ("{title}") no ha sigut modificada.', + 'first_split_decides' => 'La primera divisió determina el valor d\'aquest camp', + 'first_split_overrules_source' => 'La primera divisió pot sobreescriure el compte d\'origen', + 'first_split_overrules_destination' => 'La primera divisió pot sobreescriure el compte de destinació', + 'spent_x_of_y' => 'Gastat {amount} de {total}', // new user: - 'welcome' => 'Benvingut a Firefly III!', - 'submit' => 'Enviar', - 'submission' => 'Enviament', - 'submit_yes_really' => 'Envia (sé el que estic fent)', - 'getting_started' => 'Començant', - 'to_get_started' => 'Ens alegrem de veure que has instal·lat Firefly III. Per a començar amb aquesta eine, per favor, introdueix el nom del teu banc, i el saldo del teu compte principal. No et preocupes si tens diversos comptes, els pots afegir més tard. Firefly III necessita alguna cosa amb la que començar.', - 'savings_balance_text' => 'Firefly III crearà un compte d\'estalvis automàticament per a tu. Per defecte no hi hauran diners en aquest compte, però si li ho ordenes, Firefly III desarà el saldo d\'aquest compte com a tal.', - 'finish_up_new_user' => 'Ja està! Per a continuar prem Envia. Seràs redirigit a la pàgina d\'inici de Firefly III.', - 'stored_new_accounts_new_user' => 'Visca! S\'han desat els teus nous comptes.', - 'set_preferred_language' => 'Si prefereixes fer servir Firefly III en un altre idioma, ho pots canviar ací.', - 'language' => 'Idioma', - 'new_savings_account' => 'Compte d\'estalvis de :bank_name', - 'cash_wallet' => 'Cartera d\'efectiu', - 'currency_not_present' => 'Si la moneda que fas servir normalment no ix a la llista, no et preocupes, pots crear la teua pròpia en Opcions > Monedes.', + 'welcome' => 'Benvingut a Firefly III!', + 'submit' => 'Enviar', + 'submission' => 'Enviament', + 'submit_yes_really' => 'Envia (sé el que estic fent)', + 'getting_started' => 'Començant', + 'to_get_started' => 'Ens alegrem de veure que has instal·lat Firefly III. Per a començar amb aquesta eine, per favor, introdueix el nom del teu banc, i el saldo del teu compte principal. No et preocupes si tens diversos comptes, els pots afegir més tard. Firefly III necessita alguna cosa amb la que començar.', + 'savings_balance_text' => 'Firefly III crearà un compte d\'estalvis automàticament per a tu. Per defecte no hi hauran diners en aquest compte, però si li ho ordenes, Firefly III desarà el saldo d\'aquest compte com a tal.', + 'finish_up_new_user' => 'Ja està! Per a continuar prem Envia. Seràs redirigit a la pàgina d\'inici de Firefly III.', + 'stored_new_accounts_new_user' => 'Visca! S\'han desat els teus nous comptes.', + 'set_preferred_language' => 'Si prefereixes fer servir Firefly III en un altre idioma, ho pots canviar ací.', + 'language' => 'Idioma', + 'new_savings_account' => 'Compte d\'estalvis de :bank_name', + 'cash_wallet' => 'Cartera d\'efectiu', + 'currency_not_present' => 'Si la moneda que fas servir normalment no ix a la llista, no et preocupes, pots crear la teua pròpia en Opcions > Monedes.', // home page: - 'transaction_table_description' => 'Una taula amb les teues transaccions', - 'opposing_account' => 'Compte oposat', - 'yourAccounts' => 'Els teus comptes', - 'your_accounts' => 'Visió general del teu compte', - 'category_overview' => 'Visió general de Categoria', - 'expense_overview' => 'Visió general del compte de despeses', - 'revenue_overview' => 'Visió general del compte d\'ingressos', - 'budgetsAndSpending' => 'Pressupostos i despeses', - 'budgets_and_spending' => 'Pressupostos i despeses', - 'go_to_budget' => 'Ves al pressupost "{budget}"', - 'go_to_deposits' => 'Ves a ingressos', - 'go_to_expenses' => 'Ves a despeses', - 'savings' => 'Estalvis', - 'newWithdrawal' => 'Nova despesa', - 'newDeposit' => 'Nou dipòsit', - 'newTransfer' => 'Nova transferència', - 'bills_to_pay' => 'Factures a pagar', - 'per_day' => 'Per dia', - 'left_to_spend_per_day' => 'Resta per a gastar per dia', - 'bills_paid' => 'Factures pagades', - 'custom_period' => 'Període personalitzat', - 'reset_to_current' => 'Reinicia al període actual', - 'select_period' => 'Seleccionar període', + 'transaction_table_description' => 'Una taula amb les teues transaccions', + 'opposing_account' => 'Compte oposat', + 'yourAccounts' => 'Els teus comptes', + 'your_accounts' => 'Visió general del teu compte', + 'category_overview' => 'Visió general de Categoria', + 'expense_overview' => 'Visió general del compte de despeses', + 'revenue_overview' => 'Visió general del compte d\'ingressos', + 'budgetsAndSpending' => 'Pressupostos i despeses', + 'budgets_and_spending' => 'Pressupostos i despeses', + 'go_to_budget' => 'Ves al pressupost "{budget}"', + 'go_to_deposits' => 'Ves a ingressos', + 'go_to_expenses' => 'Ves a despeses', + 'savings' => 'Estalvis', + 'newWithdrawal' => 'Nova despesa', + 'newDeposit' => 'Nou dipòsit', + 'newTransfer' => 'Nova transferència', + 'bills_to_pay' => 'Factures a pagar', + 'per_day' => 'Per dia', + 'left_to_spend_per_day' => 'Resta per a gastar per dia', + 'bills_paid' => 'Factures pagades', + 'custom_period' => 'Període personalitzat', + 'reset_to_current' => 'Reinicia al període actual', + 'select_period' => 'Seleccionar període', // menu and titles, should be recycled as often as possible: - 'currency' => 'Moneda', - 'preferences' => 'Configuració', - 'logout' => 'Tanca la sessió', - 'logout_other_sessions' => 'Tanca les altres sessions', - 'toggleNavigation' => 'Alternar navegació', - 'searchPlaceholder' => 'Cerca...', - 'version' => 'Versió', - 'dashboard' => 'Panell de control', - 'income_and_expense' => 'Ingressos i despeses', - 'all_money' => 'Tots els teus diners', - 'unknown_source_plain' => 'Compte font desconegut', - 'unknown_dest_plain' => 'Compte de destí desconegut', - 'unknown_any_plain' => 'Compte desconegut', - 'unknown_budget_plain' => 'Cap pressupost', - 'available_budget' => 'Pressupost disponible ({currency})', - 'currencies' => 'Monedes', - 'activity' => 'Activitat (exercici)', - 'usage' => 'Ús', - 'accounts' => 'Comptes', - 'Asset account' => 'Compte d\'actius', - 'Default account' => 'Compte d\'actius', - 'Expense account' => 'Compte de despeses', - 'Revenue account' => 'Compte de beneficis', - 'Initial balance account' => 'Compte de balanç inicial', - 'account_type_Asset account' => 'Compte d\'actius', - 'account_type_Expense account' => 'Compte de despeses', - 'account_type_Revenue account' => 'Compte d\'ingressos', - 'account_type_Debt' => 'Deute', - 'account_type_Loan' => 'Crèdit', - 'account_type_Mortgage' => 'Hipoteca', - 'account_type_debt' => 'Deute', - 'account_type_loan' => 'Crèdit', - 'account_type_mortgage' => 'Hipoteca', - 'account_type_Credit card' => 'Targeta de crèdit', - 'credit_card_type_monthlyFull' => 'Pagament complet tots els mesos', - 'liability_direction_credit' => 'Se\'m deu aquest deute', - 'liability_direction_debit' => 'Dec aquest deute a una altra persona', - 'liability_direction_credit_short' => 'Se\'m deu', - 'liability_direction_debit_short' => 'Ho dec', - 'liability_direction__short' => 'Desconegut', - 'liability_direction_null_short' => 'Desconegut', - 'Liability credit' => 'Crèdit de passius', - 'budgets' => 'Pressupostos', - 'tags' => 'Etiquetes', - 'reports' => 'Informes', - 'transactions' => 'Transaccions', - 'expenses' => 'Despeses', - 'income' => 'Beneficis / ingressos', - 'transfers' => 'Transferències', - 'moneyManagement' => 'Gestió dels diners', - 'money_management' => 'Gestió dels diners', - 'tools' => 'Eines', - 'piggyBanks' => 'Guardioles', - 'piggy_banks' => 'Guardioles', - 'amount_x_of_y' => '{current} de {total}', - 'bills' => 'Factures', - 'withdrawal' => 'Retirada', - 'opening_balance' => 'Saldo inicial', - 'deposit' => 'Ingrés', - 'account' => 'Compte', - 'transfer' => 'Transferència', - 'Withdrawal' => 'Retirada', - 'Deposit' => 'Ingrés', - 'Transfer' => 'Transferència', - 'bill' => 'Factura', - 'yes' => 'Sí', - 'no' => 'No', - 'amount' => 'Import', - 'overview' => 'Visió general', - 'saveOnAccount' => 'Desa al compte', - 'unknown' => 'Desconegut', - 'monthly' => 'Mensualment', - 'profile' => 'Perfil', - 'errors' => 'Errors', - 'debt_start_date' => 'Data d\'inici del deute', - 'debt_start_amount' => 'Quantitat d\'inici del deute', - 'debt_start_amount_help' => 'Sempre és millor establir aquest valor a una quantitat negativa. Revisa les pàgines d\'ajuda (la icona (?) de dalt a la dreta) per a més informació.', - 'interest_period_help' => 'Aquest camp és simplement cosmètic, i no serà calculat. Resulta que els banc són bastant exquisits, i Firefly III mai obté els valors correctament.', - 'store_new_liabilities_account' => 'Desa el nou passiu', - 'edit_liabilities_account' => 'Edita el passiu ":name"', - 'financial_control' => 'Control financer', - 'accounting' => 'Comptes', - 'automation' => 'Automatització', - 'others' => 'Altres', - 'classification' => 'Classificació', - 'store_transaction' => 'Desar transacció', + 'currency' => 'Moneda', + 'preferences' => 'Configuració', + 'logout' => 'Tanca la sessió', + 'logout_other_sessions' => 'Tanca les altres sessions', + 'toggleNavigation' => 'Alternar navegació', + 'searchPlaceholder' => 'Cerca...', + 'version' => 'Versió', + 'dashboard' => 'Panell de control', + 'income_and_expense' => 'Ingressos i despeses', + 'all_money' => 'Tots els teus diners', + 'unknown_source_plain' => 'Compte font desconegut', + 'unknown_dest_plain' => 'Compte de destí desconegut', + 'unknown_any_plain' => 'Compte desconegut', + 'unknown_budget_plain' => 'Cap pressupost', + 'available_budget' => 'Pressupost disponible ({currency})', + 'currencies' => 'Monedes', + 'activity' => 'Activitat (exercici)', + 'usage' => 'Ús', + 'accounts' => 'Comptes', + 'Asset account' => 'Compte d\'actius', + 'Default account' => 'Compte d\'actius', + 'Expense account' => 'Compte de despeses', + 'Revenue account' => 'Compte de beneficis', + 'Initial balance account' => 'Compte de balanç inicial', + 'account_type_Asset account' => 'Compte d\'actius', + 'account_type_Expense account' => 'Compte de despeses', + 'account_type_Revenue account' => 'Compte d\'ingressos', + 'account_type_Debt' => 'Deute', + 'account_type_Loan' => 'Crèdit', + 'account_type_Mortgage' => 'Hipoteca', + 'account_type_debt' => 'Deute', + 'account_type_loan' => 'Crèdit', + 'account_type_mortgage' => 'Hipoteca', + 'account_type_Credit card' => 'Targeta de crèdit', + 'credit_card_type_monthlyFull' => 'Pagament complet tots els mesos', + 'liability_direction_credit' => 'Se\'m deu aquest deute', + 'liability_direction_debit' => 'Dec aquest deute a una altra persona', + 'liability_direction_credit_short' => 'Se\'m deu', + 'liability_direction_debit_short' => 'Ho dec', + 'liability_direction__short' => 'Desconegut', + 'liability_direction_null_short' => 'Desconegut', + 'Liability credit' => 'Crèdit de passius', + 'budgets' => 'Pressupostos', + 'tags' => 'Etiquetes', + 'reports' => 'Informes', + 'transactions' => 'Transaccions', + 'expenses' => 'Despeses', + 'income' => 'Beneficis / ingressos', + 'transfers' => 'Transferències', + 'moneyManagement' => 'Gestió dels diners', + 'money_management' => 'Gestió dels diners', + 'tools' => 'Eines', + 'piggyBanks' => 'Guardioles', + 'piggy_banks' => 'Guardioles', + 'amount_x_of_y' => '{current} de {total}', + 'bills' => 'Factures', + 'withdrawal' => 'Retirada', + 'opening_balance' => 'Saldo inicial', + 'deposit' => 'Ingrés', + 'account' => 'Compte', + 'transfer' => 'Transferència', + 'Withdrawal' => 'Retirada', + 'Deposit' => 'Ingrés', + 'Transfer' => 'Transferència', + 'bill' => 'Factura', + 'yes' => 'Sí', + 'no' => 'No', + 'amount' => 'Import', + 'overview' => 'Visió general', + 'saveOnAccount' => 'Desa al compte', + 'unknown' => 'Desconegut', + 'monthly' => 'Mensualment', + 'profile' => 'Perfil', + 'errors' => 'Errors', + 'debt_start_date' => 'Data d\'inici del deute', + 'debt_start_amount' => 'Quantitat d\'inici del deute', + 'debt_start_amount_help' => 'Sempre és millor establir aquest valor a una quantitat negativa. Revisa les pàgines d\'ajuda (la icona (?) de dalt a la dreta) per a més informació.', + 'interest_period_help' => 'Aquest camp és simplement cosmètic, i no serà calculat. Resulta que els banc són bastant exquisits, i Firefly III mai obté els valors correctament.', + 'store_new_liabilities_account' => 'Desa el nou passiu', + 'edit_liabilities_account' => 'Edita el passiu ":name"', + 'financial_control' => 'Control financer', + 'accounting' => 'Comptes', + 'automation' => 'Automatització', + 'others' => 'Altres', + 'classification' => 'Classificació', + 'store_transaction' => 'Desar transacció', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Informe financer per defecte entre :start i :end', - 'report_audit' => 'Visió general de l\'historial de transaccions entre :start i :end', - 'report_category' => 'Informe de categories entre :start i :end', - 'report_double' => 'Informe de comptes de despeses/beneficis entre :start i :end', - 'report_budget' => 'Informe de pressupost entre :start i :end', - 'report_tag' => 'Informe d\'etiquetes entre :start i :end', - 'quick_link_reports' => 'Enllaços ràpids', - 'quick_link_examples' => 'Aquests són alguns enllaços d\'exemple per a ajudar-te a començar. Llegeix les pàgines d\'ajuda en la icona (?) per a informació sobre tots els informes i les paraules màgiques que pots fer servir.', - 'quick_link_default_report' => 'Informe financer per defecte', - 'quick_link_audit_report' => 'Visió general de l\'historial de transaccions', - 'report_this_month_quick' => 'Mes actual, tots els comptes', - 'report_last_month_quick' => 'Últim mes, tots els comptes', - 'report_this_year_quick' => 'Any actual, tots els comptes', - 'report_this_fiscal_year_quick' => 'Any fiscal actual, tots els comptes', - 'report_all_time_quick' => 'Des de sempre, tots els comptes', - 'reports_can_bookmark' => 'Recorda que els informes poden ser marcats.', - 'incomeVsExpenses' => 'Ingressos vs. despeses', - 'accountBalances' => 'Saldo del compte', - 'balanceStart' => 'Saldo a l\'inici del període', - 'balanceEnd' => 'Saldo al final del període', - 'splitByAccount' => 'Divideix per compte', - 'coveredWithTags' => 'Cobert per etiquetes', - 'leftInBudget' => 'Restant al pressupost', - 'left_in_debt' => 'Import pendent', - 'sumOfSums' => 'Suma de sumes', - 'noCategory' => '(cap categoria)', - 'notCharged' => 'No cobrat (encara)', - 'inactive' => 'Inactiu', - 'active' => 'Actiu', - 'difference' => 'Diferència', - 'money_flowing_in' => 'Entrant', - 'money_flowing_out' => 'Eixint', - 'topX' => ':number primers', - 'show_full_list' => 'Mostra la llista sencera', - 'show_only_top' => 'Mostra sols els millors :number', - 'report_type' => 'Tipus d\'informe', - 'report_type_default' => 'Informe financer per defecte', - 'report_type_audit' => 'Visió general de l\'historial de transaccions (auditoria)', - 'report_type_category' => 'Informe de categoria', - 'report_type_budget' => 'Informe de pressupost', - 'report_type_tag' => 'Informe d\'etiqueta', - 'report_type_double' => 'Informe del compte de despeses/guanys', - 'more_info_help' => 'Pots trobar més informació sobre aquests tipus d\'informe a les pàgines d\'ajuda. Prem la icona (?) a la part superior dreta.', - 'report_included_accounts' => 'Comptes inclosos', - 'report_date_range' => 'Interval de dates', - 'report_preset_ranges' => 'Intervals predefinits', - 'shared' => 'Compartit', - 'fiscal_year' => 'Any fiscal', - 'income_entry' => 'Els ingressos del compte ":name" entre el :start i :end', - 'expense_entry' => 'Les despeses al compte ":name" entre el :start i :end', - 'category_entry' => 'Despeses i ingressos de la categoria ":name" entre el :start i :end', - 'budget_spent_amount' => 'Despeses al pressupost ":budget" entre :start i :end', - 'balance_amount' => 'Despeses al pressupost ":budget" pagats des del compte ":account" entre el :start i :end', - 'no_audit_activity' => 'No s\'ha desat cap activitat al compte :account_name entre el :start i :end.', - 'audit_end_balance' => 'Saldo del compte :account_name al final de :end va ser :balance', - 'reports_extra_options' => 'Opcions extra', - 'report_has_no_extra_options' => 'Aquest informe no té més opcions', - 'reports_submit' => 'Veure informe', - 'end_after_start_date' => 'La data final de l\'informe ha de ser després de la d\'inici.', - 'select_category' => 'Escull categories', - 'select_budget' => 'Escull pressupostos.', - 'select_tag' => 'Escull etiquetes.', - 'income_per_category' => 'Ingressos per categoria', - 'expense_per_category' => 'Despeses per categoria', - 'expense_per_budget' => 'Gastat per pressupost', - 'income_per_account' => 'Ingressos per compte', - 'expense_per_account' => 'Despeses per compte', - 'expense_per_tag' => 'Depeses per compte', - 'income_per_tag' => 'Ingressos per compte', - 'include_expense_not_in_budget' => 'Les despeses incloses no hi són al pressupost(os) seleccionats', - 'include_expense_not_in_account' => 'Les despeses seleccionades no estan als comptes seleccionats', - 'include_expense_not_in_category' => 'Les depeses incloses no estan a les categories seleccionades', - 'include_income_not_in_category' => 'Els ingressos seleccionats no estan a les categories seleccionades', - 'include_income_not_in_account' => 'Els ingressos seleccionats no estan a les categories seleccionades', - 'include_income_not_in_tags' => 'Els ingressos seleccionats no estan a les etiquetes seleccionades', - 'include_expense_not_in_tags' => 'Les despeses seleccionades no estan a les etiquetes seleccionades', - 'everything_else' => 'Tota la resta', - 'income_and_expenses' => 'Ingressos i despeses', - 'spent_average' => 'Gastat (mitjana)', - 'income_average' => 'Ingressat (mitjana)', - 'transaction_count' => 'Nombre de transaccions', - 'average_spending_per_account' => 'Despesa mitjana per compte', - 'average_income_per_account' => 'Ingrés mitjà per compte', - 'total' => 'Total', - 'description' => 'Descripció', - 'sum_of_period' => 'Suma del període', - 'average_in_period' => 'Mitjana al període', - 'no_account_role' => '(sense rol)', - 'account_role_defaultAsset' => 'Compte d\'actius per defecte', - 'account_role_sharedAsset' => 'Compte d\'actius compartit', - 'account_role_savingAsset' => 'Compte d\'estalvis', - 'account_role_ccAsset' => 'Targeta de crèdit', - 'account_role_cashWalletAsset' => 'Cartera d\'efectiu', - 'budget_chart_click' => 'Per favor, fes clic al nom del pressupost a la taula superior per a veure una gràfica.', - 'category_chart_click' => 'Per favor, fes clic al nom de la categoria a la taula superior per a veure una gràfica.', - 'in_out_accounts' => 'Guanyat i gastat per combinació', - 'in_out_accounts_per_asset' => 'Guanyat i gastat (per compte d\'actius)', - 'in_out_per_category' => 'Guanyat i gastat per categoria', - 'out_per_budget' => 'Gastat per pressupost', - 'select_expense_revenue' => 'Selecciona el compte de despeses/beneficis', - 'multi_currency_report_sum' => 'Com que aquesta llista conté comptes amb monedes diferents, la/les sumes poden no tenir sentit. El report sempre es mostrarà en la moneda per defecte.', - 'sum_in_default_currency' => 'La suma sempre estarà en la teua moneda per defecte.', - 'net_filtered_prefs' => 'Aquesta gràfica mai inclourà comptes que tenen la casella "Inclou al valor net" desmarcada.', + 'report_default' => 'Informe financer per defecte entre :start i :end', + 'report_audit' => 'Visió general de l\'historial de transaccions entre :start i :end', + 'report_category' => 'Informe de categories entre :start i :end', + 'report_double' => 'Informe de comptes de despeses/beneficis entre :start i :end', + 'report_budget' => 'Informe de pressupost entre :start i :end', + 'report_tag' => 'Informe d\'etiquetes entre :start i :end', + 'quick_link_reports' => 'Enllaços ràpids', + 'quick_link_examples' => 'Aquests són alguns enllaços d\'exemple per a ajudar-te a començar. Llegeix les pàgines d\'ajuda en la icona (?) per a informació sobre tots els informes i les paraules màgiques que pots fer servir.', + 'quick_link_default_report' => 'Informe financer per defecte', + 'quick_link_audit_report' => 'Visió general de l\'historial de transaccions', + 'report_this_month_quick' => 'Mes actual, tots els comptes', + 'report_last_month_quick' => 'Últim mes, tots els comptes', + 'report_this_year_quick' => 'Any actual, tots els comptes', + 'report_this_fiscal_year_quick' => 'Any fiscal actual, tots els comptes', + 'report_all_time_quick' => 'Des de sempre, tots els comptes', + 'reports_can_bookmark' => 'Recorda que els informes poden ser marcats.', + 'incomeVsExpenses' => 'Ingressos vs. despeses', + 'accountBalances' => 'Saldo del compte', + 'balanceStart' => 'Saldo a l\'inici del període', + 'balanceEnd' => 'Saldo al final del període', + 'splitByAccount' => 'Divideix per compte', + 'coveredWithTags' => 'Cobert per etiquetes', + 'leftInBudget' => 'Restant al pressupost', + 'left_in_debt' => 'Import pendent', + 'sumOfSums' => 'Suma de sumes', + 'noCategory' => '(cap categoria)', + 'notCharged' => 'No cobrat (encara)', + 'inactive' => 'Inactiu', + 'active' => 'Actiu', + 'difference' => 'Diferència', + 'money_flowing_in' => 'Entrant', + 'money_flowing_out' => 'Eixint', + 'topX' => ':number primers', + 'show_full_list' => 'Mostra la llista sencera', + 'show_only_top' => 'Mostra sols els millors :number', + 'report_type' => 'Tipus d\'informe', + 'report_type_default' => 'Informe financer per defecte', + 'report_type_audit' => 'Visió general de l\'historial de transaccions (auditoria)', + 'report_type_category' => 'Informe de categoria', + 'report_type_budget' => 'Informe de pressupost', + 'report_type_tag' => 'Informe d\'etiqueta', + 'report_type_double' => 'Informe del compte de despeses/guanys', + 'more_info_help' => 'Pots trobar més informació sobre aquests tipus d\'informe a les pàgines d\'ajuda. Prem la icona (?) a la part superior dreta.', + 'report_included_accounts' => 'Comptes inclosos', + 'report_date_range' => 'Interval de dates', + 'report_preset_ranges' => 'Intervals predefinits', + 'shared' => 'Compartit', + 'fiscal_year' => 'Any fiscal', + 'income_entry' => 'Els ingressos del compte ":name" entre el :start i :end', + 'expense_entry' => 'Les despeses al compte ":name" entre el :start i :end', + 'category_entry' => 'Despeses i ingressos de la categoria ":name" entre el :start i :end', + 'budget_spent_amount' => 'Despeses al pressupost ":budget" entre :start i :end', + 'balance_amount' => 'Despeses al pressupost ":budget" pagats des del compte ":account" entre el :start i :end', + 'no_audit_activity' => 'No s\'ha desat cap activitat al compte :account_name entre el :start i :end.', + 'audit_end_balance' => 'Saldo del compte :account_name al final de :end va ser :balance', + 'reports_extra_options' => 'Opcions extra', + 'report_has_no_extra_options' => 'Aquest informe no té més opcions', + 'reports_submit' => 'Veure informe', + 'end_after_start_date' => 'La data final de l\'informe ha de ser després de la d\'inici.', + 'select_category' => 'Escull categories', + 'select_budget' => 'Escull pressupostos.', + 'select_tag' => 'Escull etiquetes.', + 'income_per_category' => 'Ingressos per categoria', + 'expense_per_category' => 'Despeses per categoria', + 'expense_per_budget' => 'Gastat per pressupost', + 'income_per_account' => 'Ingressos per compte', + 'expense_per_account' => 'Despeses per compte', + 'expense_per_tag' => 'Depeses per compte', + 'income_per_tag' => 'Ingressos per compte', + 'include_expense_not_in_budget' => 'Les despeses incloses no hi són al pressupost(os) seleccionats', + 'include_expense_not_in_account' => 'Les despeses seleccionades no estan als comptes seleccionats', + 'include_expense_not_in_category' => 'Les depeses incloses no estan a les categories seleccionades', + 'include_income_not_in_category' => 'Els ingressos seleccionats no estan a les categories seleccionades', + 'include_income_not_in_account' => 'Els ingressos seleccionats no estan a les categories seleccionades', + 'include_income_not_in_tags' => 'Els ingressos seleccionats no estan a les etiquetes seleccionades', + 'include_expense_not_in_tags' => 'Les despeses seleccionades no estan a les etiquetes seleccionades', + 'everything_else' => 'Tota la resta', + 'income_and_expenses' => 'Ingressos i despeses', + 'spent_average' => 'Gastat (mitjana)', + 'income_average' => 'Ingressat (mitjana)', + 'transaction_count' => 'Nombre de transaccions', + 'average_spending_per_account' => 'Despesa mitjana per compte', + 'average_income_per_account' => 'Ingrés mitjà per compte', + 'total' => 'Total', + 'description' => 'Descripció', + 'sum_of_period' => 'Suma del període', + 'average_in_period' => 'Mitjana al període', + 'no_account_role' => '(sense rol)', + 'account_role_defaultAsset' => 'Compte d\'actius per defecte', + 'account_role_sharedAsset' => 'Compte d\'actius compartit', + 'account_role_savingAsset' => 'Compte d\'estalvis', + 'account_role_ccAsset' => 'Targeta de crèdit', + 'account_role_cashWalletAsset' => 'Cartera d\'efectiu', + 'budget_chart_click' => 'Per favor, fes clic al nom del pressupost a la taula superior per a veure una gràfica.', + 'category_chart_click' => 'Per favor, fes clic al nom de la categoria a la taula superior per a veure una gràfica.', + 'in_out_accounts' => 'Guanyat i gastat per combinació', + 'in_out_accounts_per_asset' => 'Guanyat i gastat (per compte d\'actius)', + 'in_out_per_category' => 'Guanyat i gastat per categoria', + 'out_per_budget' => 'Gastat per pressupost', + 'select_expense_revenue' => 'Selecciona el compte de despeses/beneficis', + 'multi_currency_report_sum' => 'Com que aquesta llista conté comptes amb monedes diferents, la/les sumes poden no tenir sentit. El report sempre es mostrarà en la moneda per defecte.', + 'sum_in_default_currency' => 'La suma sempre estarà en la teua moneda per defecte.', + 'net_filtered_prefs' => 'Aquesta gràfica mai inclourà comptes que tenen la casella "Inclou al valor net" desmarcada.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Gràfica', - 'month' => 'Mes', - 'budget' => 'Pressupost', - 'spent' => 'Gastat', - 'spent_capped' => 'Gastat (capat)', - 'spent_in_budget' => 'Gastat al pressupost', - 'left_to_spend' => 'Queda per gastar', - 'earned' => 'Guanyat', - 'overspent' => 'Gastat de més', - 'left' => 'Queda', - 'max-amount' => 'Import màxim', - 'min-amount' => 'Import mínim', - 'journal-amount' => 'Entrada de la factura actual', - 'name' => 'Nom', - 'date' => 'Data', - 'date_and_time' => 'Hora i data', - 'time' => 'Hora', - 'paid' => 'Pagat', - 'unpaid' => 'Pendent de pagament', - 'day' => 'Dia', - 'budgeted' => 'Pressupostat', - 'period' => 'Període', - 'balance' => 'Saldo', - 'in_out_period' => 'Entrades + Sortides aquest període', - 'sum' => 'Suma', - 'summary' => 'Resum', - 'average' => 'Mitjana', - 'balanceFor' => 'Saldo per a :name', - 'no_tags' => '(cap etiqueta)', - 'nothing_found' => '(no s\'ha trobat res)', + 'chart' => 'Gràfica', + 'month' => 'Mes', + 'budget' => 'Pressupost', + 'spent' => 'Gastat', + 'spent_capped' => 'Gastat (capat)', + 'spent_in_budget' => 'Gastat al pressupost', + 'left_to_spend' => 'Queda per gastar', + 'earned' => 'Guanyat', + 'overspent' => 'Gastat de més', + 'left' => 'Queda', + 'max-amount' => 'Import màxim', + 'min-amount' => 'Import mínim', + 'journal-amount' => 'Entrada de la factura actual', + 'name' => 'Nom', + 'date' => 'Data', + 'date_and_time' => 'Hora i data', + 'time' => 'Hora', + 'paid' => 'Pagat', + 'unpaid' => 'Pendent de pagament', + 'day' => 'Dia', + 'budgeted' => 'Pressupostat', + 'period' => 'Període', + 'balance' => 'Saldo', + 'in_out_period' => 'Entrades + Sortides aquest període', + 'sum' => 'Suma', + 'summary' => 'Resum', + 'average' => 'Mitjana', + 'balanceFor' => 'Saldo per a :name', + 'no_tags' => '(cap etiqueta)', + 'nothing_found' => '(no s\'ha trobat res)', // piggy banks: - 'event_history' => 'Historial d\'esdeveniments', - 'add_money_to_piggy' => 'Afegeix diners a la guardiola ":name"', - 'piggy_bank' => 'Guardiola', - 'new_piggy_bank' => 'Guardiola nova', - 'store_piggy_bank' => 'Desa una nova guardiola', - 'stored_piggy_bank' => 'Desa la nova guardiola ":name"', - 'account_status' => 'Estat del compte', - 'left_for_piggy_banks' => 'Queda per a les guardioles', - 'sum_of_piggy_banks' => 'Suma de les guardioles', - 'saved_so_far' => 'Estalviat fins ara', - 'left_to_save' => 'Queda per estalviar', - 'suggested_amount' => 'Quantitat mensual suggerida per estalviar', - 'add_money_to_piggy_title' => 'Afegeix diners a la guardiola ":name"', - 'remove_money_from_piggy_title' => 'Retira diners de la guardiola ":name"', - 'add' => 'Afegeix', - 'no_money_for_piggy' => 'No tens diners per a posar en aquesta guardiola.', - 'suggested_savings_per_month' => 'Suggerit al mes', + 'event_history' => 'Historial d\'esdeveniments', + 'add_money_to_piggy' => 'Afegeix diners a la guardiola ":name"', + 'piggy_bank' => 'Guardiola', + 'new_piggy_bank' => 'Guardiola nova', + 'store_piggy_bank' => 'Desa una nova guardiola', + 'stored_piggy_bank' => 'Desa la nova guardiola ":name"', + 'account_status' => 'Estat del compte', + 'left_for_piggy_banks' => 'Queda per a les guardioles', + 'sum_of_piggy_banks' => 'Suma de les guardioles', + 'saved_so_far' => 'Estalviat fins ara', + 'left_to_save' => 'Queda per estalviar', + 'suggested_amount' => 'Quantitat mensual suggerida per estalviar', + 'add_money_to_piggy_title' => 'Afegeix diners a la guardiola ":name"', + 'remove_money_from_piggy_title' => 'Retira diners de la guardiola ":name"', + 'add' => 'Afegeix', + 'no_money_for_piggy' => 'No tens diners per a posar en aquesta guardiola.', + 'suggested_savings_per_month' => 'Suggerit al mes', - 'remove' => 'Suprimeix', - 'max_amount_add' => 'L\'import màxim que pots afegir és', - 'max_amount_remove' => 'L\'import màxim que pots eliminar és', - 'update_piggy_button' => 'Actualitza la guardiola', - 'update_piggy_title' => 'Actualitza la guardiola ":name"', - 'updated_piggy_bank' => 'S\'ha actualitzat la guardiola ":name"', - 'details' => 'Detalls', - 'events' => 'Esdeveniments', - 'target_amount' => 'Quantitat objectiu', - 'start_date' => 'Data d\'inici', - 'no_start_date' => 'Cap data d\'inici', - 'target_date' => 'Data objectiu', - 'no_target_date' => 'Cap data objectiu', - 'table' => 'Taula', - 'delete_piggy_bank' => 'Elimina la guardiola ":name"', - 'cannot_add_amount_piggy' => 'No s\'ha pogut afegir :amount a ":name".', - 'cannot_remove_from_piggy' => 'No s\'ha pogut eliminar :amount de ":name".', - 'deleted_piggy_bank' => 'S\'ha eliminat la guardiola ":name"', - 'added_amount_to_piggy' => 'S\'ha afegit :amount a ":name"', - 'removed_amount_from_piggy' => 'S\'ha eliminat :amount de ":name"', - 'piggy_events' => 'Guardioles relacionades', + 'remove' => 'Suprimeix', + 'max_amount_add' => 'L\'import màxim que pots afegir és', + 'max_amount_remove' => 'L\'import màxim que pots eliminar és', + 'update_piggy_button' => 'Actualitza la guardiola', + 'update_piggy_title' => 'Actualitza la guardiola ":name"', + 'updated_piggy_bank' => 'S\'ha actualitzat la guardiola ":name"', + 'details' => 'Detalls', + 'events' => 'Esdeveniments', + 'target_amount' => 'Quantitat objectiu', + 'start_date' => 'Data d\'inici', + 'no_start_date' => 'Cap data d\'inici', + 'target_date' => 'Data objectiu', + 'no_target_date' => 'Cap data objectiu', + 'table' => 'Taula', + 'delete_piggy_bank' => 'Elimina la guardiola ":name"', + 'cannot_add_amount_piggy' => 'No s\'ha pogut afegir :amount a ":name".', + 'cannot_remove_from_piggy' => 'No s\'ha pogut eliminar :amount de ":name".', + 'deleted_piggy_bank' => 'S\'ha eliminat la guardiola ":name"', + 'added_amount_to_piggy' => 'S\'ha afegit :amount a ":name"', + 'removed_amount_from_piggy' => 'S\'ha eliminat :amount de ":name"', + 'piggy_events' => 'Guardioles relacionades', // tags - 'delete_tag' => 'Elimina l\'etiqueta ":tag"', - 'deleted_tag' => 'S\'ha eliminat l\'etiqueta ":tag"', - 'new_tag' => 'Crea una etiqueta', - 'edit_tag' => 'Edita l\'etiqueta ":tag"', - 'updated_tag' => 'S\'ha actualitzat l\'etiqueta ":tag"', - 'created_tag' => 'L\'etiqueta ":tag" ha sigut creada!', + 'delete_tag' => 'Elimina l\'etiqueta ":tag"', + 'deleted_tag' => 'S\'ha eliminat l\'etiqueta ":tag"', + 'new_tag' => 'Crea una etiqueta', + 'edit_tag' => 'Edita l\'etiqueta ":tag"', + 'updated_tag' => 'S\'ha actualitzat l\'etiqueta ":tag"', + 'created_tag' => 'L\'etiqueta ":tag" ha sigut creada!', - 'transaction_journal_information' => 'Informació de la transacció', - 'transaction_journal_amount' => 'Informació de la quantitat', - 'transaction_journal_meta' => 'Metainformació', - 'transaction_journal_more' => 'Més informació', - 'basic_journal_information' => 'Informació de transacció bàsica', - 'transaction_journal_extra' => 'Informació addicional', - 'att_part_of_journal' => 'Desada en ":journal"', - 'total_amount' => 'Import total', - 'number_of_decimals' => 'Nombre de decimals', + 'transaction_journal_information' => 'Informació de la transacció', + 'transaction_journal_amount' => 'Informació de la quantitat', + 'transaction_journal_meta' => 'Metainformació', + 'transaction_journal_more' => 'Més informació', + 'basic_journal_information' => 'Informació de transacció bàsica', + 'transaction_journal_extra' => 'Informació addicional', + 'att_part_of_journal' => 'Desada en ":journal"', + 'total_amount' => 'Import total', + 'number_of_decimals' => 'Nombre de decimals', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'La invitació a ":address" ja ha sigut gastada.', - 'invite_is_deleted' => 'La invitació a ":address" ha sigut eliminada.', - 'invite_new_user_title' => 'Invitar nou usuari', - 'invite_new_user_text' => 'Com a administrador, pots convidar usuaris a l\'administració de Firefly III. Amb aquest enllaç podran crear un compte. L\'usuari convidat, i el seu compte d\'invitació apareixeran a la taula inferior. Pots compartir l\'enllaç.', - 'invited_user_mail' => 'Correu electrònic', - 'invite_user' => 'Convida l\'usuari', - 'user_is_invited' => 'El correu electrònic ":address" s\'ha convidat a Firefly III', - 'administration' => 'Administració', - 'system_settings' => 'Configuració del sistema', - 'code_already_used' => 'El code d\'invitació ja s\'ha gastat', - 'user_administration' => 'Administració d\'usuaris', - 'list_all_users' => 'Tots els usuaris', - 'all_users' => 'Tots els usuaris', - 'instance_configuration' => 'Configuració', - 'firefly_instance_configuration' => 'Opcions de configuració per a Firefly III', - 'setting_single_user_mode' => 'Mode d\'un sol usuari', - 'setting_single_user_mode_explain' => 'Per defecte, Firefly III sols accepta (1) registre: tu. Aquesta és una mesura de seguretat, que prevent que qualsevol altra persona accedeixa a la instància sense el teu permís. Els registres futurs es bloquejaran. Si desmarques aquesta casella, altres persones podran fer ús de la instància, sempre i quant tingues accés (quan està connectada a Internet).', - 'store_configuration' => 'Desa la configuració', - 'single_user_administration' => 'Administració d\'usuari per a :email', - 'edit_user' => 'Edita l\'usuari :email', - 'hidden_fields_preferences' => 'Pots habilitar més opcions de transacció a la configuració.', - 'user_data_information' => 'Dades d\'usuari', - 'user_information' => 'Informació d\'usuari', - 'total_size' => 'mida total', - 'budget_or_budgets' => ':count pressupost|:count pressuposts', - 'budgets_with_limits' => ':count pressupost amb quantitat configurada|:count pressupostos amb quantitat configurada', - 'nr_of_rules_in_total_groups' => ':count_rules regla/regles en :count_groups grup/grups', - 'tag_or_tags' => ':count etiqueta|:count etiquetes', - 'configuration_updated' => 'La configuració s\'ha actualitzat', - 'setting_is_demo_site' => 'Lloc de prova', - 'setting_is_demo_site_explain' => 'Si marques aquesta casella, la instal·lacció es comportarà com el lloc de prova. Açò pot tindre efectes adversos.', - 'block_code_bounced' => 'Correus electrònics retornats', - 'block_code_expired' => 'El compte de prova ha expirat', - 'no_block_code' => 'No hi ha cap motiu per a bloquejar, o l\'usuari no està bloquejat', - 'demo_user_export' => 'La demo no pot exportar dades', - 'block_code_email_changed' => 'L\'usuari encara no ha confirmat la seua direcció de correu electrònic', - 'admin_update_email' => 'A diferència de la pàgina de perfil, l\'usuari NO serà notificat si es canvia la seva adreça electrònica!', - 'update_user' => 'Actualitza l\'usuari', - 'updated_user' => 'Les dades de l\'usuari s\'han actualitzat.', - 'delete_user' => 'Eliminar l\'usuari :email', - 'user_deleted' => 'S\'ha eliminat l\'usuari', - 'send_test_email' => 'Envia un correu de prova', - 'send_test_email_text' => 'Per a veure si la teua instal·lació pot enviar correus electrònics, o penjar missatges de Slack, per favor, prem aquest botó. No veuràs cap error ací, els fitxers de registre els mostraran. Pots premer aquest botó tantes vegades com vulgues. No hi ha control de correu brossa. Aquest missatge serà enviat a :email, i no hauria de tardar en arribar.', - 'send_message' => 'Enviar missatge', - 'send_test_triggered' => 'La prova s\'ha enviat. Comprova la teua safata d\'entrada, i els arxius de registre.', - 'give_admin_careful' => 'Els usuaris que tinguin el permís d\'administrador poden fer-se amb el teu compte. Ves amb cura.', - 'admin_maintanance_title' => 'Manteniment', - 'admin_maintanance_expl' => 'Alguns botons per al manteniment de Firefly III', - 'admin_maintenance_clear_cache' => 'Esborra la memòria cau', - 'admin_notifications' => 'Notificacions d\'administració', - 'admin_notifications_expl' => 'Aquestes notificacions poden ser habilitades o deshabilitades per l\'administrador. Si vols rebre aquests missatges a través de Slack també, estableix la direcció de "webhook entrant".', - 'admin_notification_check_user_new_reg' => 'L\'usuari rep un missatge de benvinguda després del registre', - 'admin_notification_check_admin_new_reg' => 'L\'administrador/administradors rep una notificació de nou registre', - 'admin_notification_check_new_version' => 'Nova versió disponible', - 'admin_notification_check_invite_created' => 'Un usuari ha estat convidat a Firefly III', - 'admin_notification_check_invite_redeemed' => 'Una invitació ha sigut bescanviada', - 'all_invited_users' => 'Tots els usuaris convidats', - 'save_notification_settings' => 'Desa la configuració', - 'notification_settings_saved' => 'La configuració de notificacions s\'ha desat', + 'invite_is_already_redeemed' => 'La invitació a ":address" ja ha sigut gastada.', + 'invite_is_deleted' => 'La invitació a ":address" ha sigut eliminada.', + 'invite_new_user_title' => 'Invitar nou usuari', + 'invite_new_user_text' => 'Com a administrador, pots convidar usuaris a l\'administració de Firefly III. Amb aquest enllaç podran crear un compte. L\'usuari convidat, i el seu compte d\'invitació apareixeran a la taula inferior. Pots compartir l\'enllaç.', + 'invited_user_mail' => 'Correu electrònic', + 'invite_user' => 'Convida l\'usuari', + 'user_is_invited' => 'El correu electrònic ":address" s\'ha convidat a Firefly III', + 'administration' => 'Administració', + 'system_settings' => 'Configuració del sistema', + 'code_already_used' => 'El code d\'invitació ja s\'ha gastat', + 'user_administration' => 'Administració d\'usuaris', + 'list_all_users' => 'Tots els usuaris', + 'all_users' => 'Tots els usuaris', + 'instance_configuration' => 'Configuració', + 'firefly_instance_configuration' => 'Opcions de configuració per a Firefly III', + 'setting_single_user_mode' => 'Mode d\'un sol usuari', + 'setting_single_user_mode_explain' => 'Per defecte, Firefly III sols accepta (1) registre: tu. Aquesta és una mesura de seguretat, que prevent que qualsevol altra persona accedeixa a la instància sense el teu permís. Els registres futurs es bloquejaran. Si desmarques aquesta casella, altres persones podran fer ús de la instància, sempre i quant tingues accés (quan està connectada a Internet).', + 'store_configuration' => 'Desa la configuració', + 'single_user_administration' => 'Administració d\'usuari per a :email', + 'edit_user' => 'Edita l\'usuari :email', + 'hidden_fields_preferences' => 'Pots habilitar més opcions de transacció a la configuració.', + 'user_data_information' => 'Dades d\'usuari', + 'user_information' => 'Informació d\'usuari', + 'total_size' => 'mida total', + 'budget_or_budgets' => ':count pressupost|:count pressuposts', + 'budgets_with_limits' => ':count pressupost amb quantitat configurada|:count pressupostos amb quantitat configurada', + 'nr_of_rules_in_total_groups' => ':count_rules regla/regles en :count_groups grup/grups', + 'tag_or_tags' => ':count etiqueta|:count etiquetes', + 'configuration_updated' => 'La configuració s\'ha actualitzat', + 'setting_is_demo_site' => 'Lloc de prova', + 'setting_is_demo_site_explain' => 'Si marques aquesta casella, la instal·lacció es comportarà com el lloc de prova. Açò pot tindre efectes adversos.', + 'block_code_bounced' => 'Correus electrònics retornats', + 'block_code_expired' => 'El compte de prova ha expirat', + 'no_block_code' => 'No hi ha cap motiu per a bloquejar, o l\'usuari no està bloquejat', + 'demo_user_export' => 'La demo no pot exportar dades', + 'block_code_email_changed' => 'L\'usuari encara no ha confirmat la seua direcció de correu electrònic', + 'admin_update_email' => 'A diferència de la pàgina de perfil, l\'usuari NO serà notificat si es canvia la seva adreça electrònica!', + 'update_user' => 'Actualitza l\'usuari', + 'updated_user' => 'Les dades de l\'usuari s\'han actualitzat.', + 'delete_user' => 'Eliminar l\'usuari :email', + 'user_deleted' => 'S\'ha eliminat l\'usuari', + 'send_test_email' => 'Envia un correu de prova', + 'send_test_email_text' => 'Per a veure si la teua instal·lació pot enviar correus electrònics, o penjar missatges de Slack, per favor, prem aquest botó. No veuràs cap error ací, els fitxers de registre els mostraran. Pots premer aquest botó tantes vegades com vulgues. No hi ha control de correu brossa. Aquest missatge serà enviat a :email, i no hauria de tardar en arribar.', + 'send_message' => 'Enviar missatge', + 'send_test_triggered' => 'La prova s\'ha enviat. Comprova la teua safata d\'entrada, i els arxius de registre.', + 'give_admin_careful' => 'Els usuaris que tinguin el permís d\'administrador poden fer-se amb el teu compte. Ves amb cura.', + 'admin_maintanance_title' => 'Manteniment', + 'admin_maintanance_expl' => 'Alguns botons per al manteniment de Firefly III', + 'admin_maintenance_clear_cache' => 'Esborra la memòria cau', + 'admin_notifications' => 'Notificacions d\'administració', + 'admin_notifications_expl' => 'Aquestes notificacions poden ser habilitades o deshabilitades per l\'administrador. Si vols rebre aquests missatges a través de Slack també, estableix la direcció de "webhook entrant".', + 'admin_notification_check_user_new_reg' => 'L\'usuari rep un missatge de benvinguda després del registre', + 'admin_notification_check_admin_new_reg' => 'L\'administrador/administradors rep una notificació de nou registre', + 'admin_notification_check_new_version' => 'Nova versió disponible', + 'admin_notification_check_invite_created' => 'Un usuari ha estat convidat a Firefly III', + 'admin_notification_check_invite_redeemed' => 'Una invitació ha sigut bescanviada', + 'all_invited_users' => 'Tots els usuaris convidats', + 'save_notification_settings' => 'Desa la configuració', + 'notification_settings_saved' => 'La configuració de notificacions s\'ha desat', - 'split_transaction_title' => 'Descripció de la transacció dividida', - 'split_transaction_title_help' => 'Si crees una transacció dividida, ha d\'haver una descripció global per a totes les divisions de la transacció.', - 'split_title_help' => 'Si crees una transacció dividida, ha d\'haver una descripció global per a totes les divisions de la transacció.', - 'you_create_transfer' => 'Estàs creant una transferència.', - 'you_create_withdrawal' => 'Estàs creant una retirada.', - 'you_create_deposit' => 'Estàs creant un ingrés.', + 'split_transaction_title' => 'Descripció de la transacció dividida', + 'split_transaction_title_help' => 'Si crees una transacció dividida, ha d\'haver una descripció global per a totes les divisions de la transacció.', + 'split_title_help' => 'Si crees una transacció dividida, ha d\'haver una descripció global per a totes les divisions de la transacció.', + 'you_create_transfer' => 'Estàs creant una transferència.', + 'you_create_withdrawal' => 'Estàs creant una retirada.', + 'you_create_deposit' => 'Estàs creant un ingrés.', // links - 'journal_link_configuration' => 'Configuració dels enllaços de la transacció', - 'create_new_link_type' => 'Crea un nou tipus d\'enllaç', - 'store_new_link_type' => 'Desa el nou tipus d\'enllaç', - 'update_link_type' => 'Actualitza el tipus d\'enllaç', - 'edit_link_type' => 'Edita el tipus d\'enllaç ":name"', - 'updated_link_type' => 'S\'ha actualitzat el tipus d\'enllaç ":name"', - 'delete_link_type' => 'Elimina el tipus d\'enllaç ":name"', - 'deleted_link_type' => 'S\'ha eliminat el tipus d\'enllaç ":name"', - 'stored_new_link_type' => 'Desa el nou tipus d\'enllaç ":name"', - 'cannot_edit_link_type' => 'No s\'ha pogut editar el tipus d\'enllaç ":name"', - 'link_type_help_name' => 'Ie. "Duplicats"', - 'link_type_help_inward' => 'Ie. "duplicats"', - 'link_type_help_outward' => 'Ie. "està duplicat per"', - 'save_connections_by_moving' => 'Desa l\'enllaç entre aquestes transaccions movent-les a un altre tipus d\'enllaç:', - 'do_not_save_connection' => '(no deses la connexió)', - 'link_transaction' => 'Enllaça la transacció', - 'link_to_other_transaction' => 'Enllaça aquesta transacció a una altra', - 'select_transaction_to_link' => 'Selecciona una transacció per a enllaçar-la a aquesta. Els enllaços no es fan servir actualment a Firefly III (a part de mostrar-se), però tinc plans per a fer servir aquesta funció en un futur. Fes servir la capsa de cerca per a seleccionar una transacció a partir del títol o de la ID. Si vols afegir tipus d\'enllaç personalitzats, mira la secció d\'administració.', - 'this_transaction' => 'Aquesta transacció', - 'transaction' => 'Transacció', - 'comments' => 'Comentaris', - 'link_notes' => 'Qualsevol nota que vulgues desar amb l\'enllaç.', - 'invalid_link_selection' => 'No s\'han pogut enllaçar les transaccions', - 'selected_transaction' => 'Transacció selecionada', - 'journals_linked' => 'Les transaccions estan enllaçades.', - 'journals_error_linked' => 'Aquestes transaccions ja estan enllaçades.', - 'journals_link_to_self' => 'No pots enllaçar una transacció a ella mateixa', - 'journal_links' => 'Enllaços de transacció', - 'this_withdrawal' => 'Aquesta retirada', - 'this_deposit' => 'Aquest ingrés', - 'this_transfer' => 'Aquesta transferència', - 'overview_for_link' => 'Visió general per al tipus d\'enllaç ":name"', - 'source_transaction' => 'Transacció d\'origen', - 'link_description' => 'Descripció de l\'enllaç', - 'destination_transaction' => 'Transacció de destinació', - 'delete_journal_link' => 'Elimina l\'enllaç entre :source i :destination', - 'deleted_link' => 'Enllaç eliminat', + 'journal_link_configuration' => 'Configuració dels enllaços de la transacció', + 'create_new_link_type' => 'Crea un nou tipus d\'enllaç', + 'store_new_link_type' => 'Desa el nou tipus d\'enllaç', + 'update_link_type' => 'Actualitza el tipus d\'enllaç', + 'edit_link_type' => 'Edita el tipus d\'enllaç ":name"', + 'updated_link_type' => 'S\'ha actualitzat el tipus d\'enllaç ":name"', + 'delete_link_type' => 'Elimina el tipus d\'enllaç ":name"', + 'deleted_link_type' => 'S\'ha eliminat el tipus d\'enllaç ":name"', + 'stored_new_link_type' => 'Desa el nou tipus d\'enllaç ":name"', + 'cannot_edit_link_type' => 'No s\'ha pogut editar el tipus d\'enllaç ":name"', + 'link_type_help_name' => 'Ie. "Duplicats"', + 'link_type_help_inward' => 'Ie. "duplicats"', + 'link_type_help_outward' => 'Ie. "està duplicat per"', + 'save_connections_by_moving' => 'Desa l\'enllaç entre aquestes transaccions movent-les a un altre tipus d\'enllaç:', + 'do_not_save_connection' => '(no deses la connexió)', + 'link_transaction' => 'Enllaça la transacció', + 'link_to_other_transaction' => 'Enllaça aquesta transacció a una altra', + 'select_transaction_to_link' => 'Selecciona una transacció per a enllaçar-la a aquesta. Els enllaços no es fan servir actualment a Firefly III (a part de mostrar-se), però tinc plans per a fer servir aquesta funció en un futur. Fes servir la capsa de cerca per a seleccionar una transacció a partir del títol o de la ID. Si vols afegir tipus d\'enllaç personalitzats, mira la secció d\'administració.', + 'this_transaction' => 'Aquesta transacció', + 'transaction' => 'Transacció', + 'comments' => 'Comentaris', + 'link_notes' => 'Qualsevol nota que vulgues desar amb l\'enllaç.', + 'invalid_link_selection' => 'No s\'han pogut enllaçar les transaccions', + 'selected_transaction' => 'Transacció selecionada', + 'journals_linked' => 'Les transaccions estan enllaçades.', + 'journals_error_linked' => 'Aquestes transaccions ja estan enllaçades.', + 'journals_link_to_self' => 'No pots enllaçar una transacció a ella mateixa', + 'journal_links' => 'Enllaços de transacció', + 'this_withdrawal' => 'Aquesta retirada', + 'this_deposit' => 'Aquest ingrés', + 'this_transfer' => 'Aquesta transferència', + 'overview_for_link' => 'Visió general per al tipus d\'enllaç ":name"', + 'source_transaction' => 'Transacció d\'origen', + 'link_description' => 'Descripció de l\'enllaç', + 'destination_transaction' => 'Transacció de destinació', + 'delete_journal_link' => 'Elimina l\'enllaç entre :source i :destination', + 'deleted_link' => 'Enllaç eliminat', // link translations: - 'Paid_name' => 'Pagat', - 'Refund_name' => 'Reemborsar', - 'Reimbursement_name' => 'Reemborsament', - 'Related_name' => 'Relacionat', - 'relates to_inward' => 'fa referència a', - 'is (partially) refunded by_inward' => 'està (parcialment) reemborsada per', - 'is (partially) paid for by_inward' => 'està (parcialment) pagada per', - 'is (partially) reimbursed by_inward' => 'està (parcialment) reemborsada per', - 'inward_transaction' => 'Transacció entrant', - 'outward_transaction' => 'Transacció eixint', - 'relates to_outward' => 'fa referència a', - '(partially) refunds_outward' => 'reemborsa (parcialment)', - '(partially) pays for_outward' => 'paga per (parcialment)', - '(partially) reimburses_outward' => 'reemborsa (parcialment)', - 'is (partially) refunded by' => 'està (parcialment) reemborsada per', - 'is (partially) paid for by' => 'està (parcialment) pagada per', - 'is (partially) reimbursed by' => 'està (parcialment) reemborsada per', - 'relates to' => 'fa referència a', - '(partially) refunds' => 'reemborsa (parcialment)', - '(partially) pays for' => 'paga per (parcialment)', - '(partially) reimburses' => 'reemborsa (parcialment)', + 'Paid_name' => 'Pagat', + 'Refund_name' => 'Reemborsar', + 'Reimbursement_name' => 'Reemborsament', + 'Related_name' => 'Relacionat', + 'relates to_inward' => 'fa referència a', + 'is (partially) refunded by_inward' => 'està (parcialment) reemborsada per', + 'is (partially) paid for by_inward' => 'està (parcialment) pagada per', + 'is (partially) reimbursed by_inward' => 'està (parcialment) reemborsada per', + 'inward_transaction' => 'Transacció entrant', + 'outward_transaction' => 'Transacció eixint', + 'relates to_outward' => 'fa referència a', + '(partially) refunds_outward' => 'reemborsa (parcialment)', + '(partially) pays for_outward' => 'paga per (parcialment)', + '(partially) reimburses_outward' => 'reemborsa (parcialment)', + 'is (partially) refunded by' => 'està (parcialment) reemborsada per', + 'is (partially) paid for by' => 'està (parcialment) pagada per', + 'is (partially) reimbursed by' => 'està (parcialment) reemborsada per', + 'relates to' => 'fa referència a', + '(partially) refunds' => 'reemborsa (parcialment)', + '(partially) pays for' => 'paga per (parcialment)', + '(partially) reimburses' => 'reemborsa (parcialment)', // split a transaction: - 'splits' => 'Divisió', - 'add_another_split' => 'Afegeix una nova divisió', - 'cannot_edit_opening_balance' => 'No pots editar el balanç d\'obertura d\'un compte.', - 'no_edit_multiple_left' => 'No has seleccionat cap transacció per a editar.', - 'breadcrumb_convert_group' => 'Converteix la transacció', - 'convert_invalid_source' => 'La informació d\'origen és invàlida per a la transacció #%d.', - 'convert_invalid_destination' => 'La informació de destinació és invàlida per a la transacció #%d.', - 'create_another' => 'Després de guardar, torna ací per crear-ne un altre.', - 'after_update_create_another' => 'Després d\'actualitzar, torna ací per a seguir editant.', - 'store_as_new' => 'Desa com a una nova transacció, en comptes d\'actualitzar.', - 'reset_after' => 'Reiniciar el formulari després d\'enviar', - 'errors_submission' => 'Hi ha hagut un error amb el teu enviament. Per favor, revisa els errors de sota.', - 'errors_submission_v2' => 'Hi ha hagut un error amb el teu enviament. Per favor, comprova els següents errors: {{errorMessage}}', - 'transaction_expand_split' => 'Expandeix la divisió', - 'transaction_remove_split' => 'Eliminar partició', - 'transaction_collapse_split' => 'Contrau la divisió', + 'splits' => 'Divisió', + 'add_another_split' => 'Afegeix una nova divisió', + 'cannot_edit_opening_balance' => 'No pots editar el balanç d\'obertura d\'un compte.', + 'no_edit_multiple_left' => 'No has seleccionat cap transacció per a editar.', + 'breadcrumb_convert_group' => 'Converteix la transacció', + 'convert_invalid_source' => 'La informació d\'origen és invàlida per a la transacció #%d.', + 'convert_invalid_destination' => 'La informació de destinació és invàlida per a la transacció #%d.', + 'create_another' => 'Després de guardar, torna ací per crear-ne un altre.', + 'after_update_create_another' => 'Després d\'actualitzar, torna ací per a seguir editant.', + 'store_as_new' => 'Desa com a una nova transacció, en comptes d\'actualitzar.', + 'reset_after' => 'Reiniciar el formulari després d\'enviar', + 'errors_submission' => 'Hi ha hagut un error amb el teu enviament. Per favor, revisa els errors de sota.', + 'errors_submission_v2' => 'Hi ha hagut un error amb el teu enviament. Per favor, comprova els següents errors: {{errorMessage}}', + 'transaction_expand_split' => 'Expandeix la divisió', + 'transaction_remove_split' => 'Eliminar partició', + 'transaction_collapse_split' => 'Contrau la divisió', // object groups - 'default_group_title_name' => '(no agrupades)', - 'default_group_title_name_plain' => 'no agrupades', + 'default_group_title_name' => '(no agrupades)', + 'default_group_title_name_plain' => 'no agrupades', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Anem a crear un compte d\'actius!', - 'no_accounts_intro_asset' => 'No tens cap compte d\'actius encara. Els comptes d\'actius són els teus comptes principals: comptes d\'ingressos, d\'estalvis, compartits, o inclús la teua targeta de crèdit.', - 'no_accounts_imperative_asset' => 'Per a començar a gastar Firefly III has de crear com a mínim un compte d\'actius. Som-hi!', - 'no_accounts_create_asset' => 'Crea un nou compte d\'actius', - 'no_accounts_title_expense' => 'Anem a crear un compte de despeses!', - 'no_accounts_intro_expense' => 'No tens cap compte de despeses encara. Els comptes de despeses són els llocs on gastes diners, com tendes o supermercats.', - 'no_accounts_imperative_expense' => 'Els comptes de despeses es creen automàticament quan crees transaccions, no obstant, els pots crear manualment també, si vols. Anem a crear-ne un ara:', - 'no_accounts_create_expense' => 'Crea un compte de despeses', - 'no_accounts_title_revenue' => 'Anem a crear un compte d\'ingressos!', - 'no_accounts_intro_revenue' => 'No tens cap compte d\'ingressos encara. Els comptes d\'ingressos són els llocs dels quals reps diners, com el teu cap, o empresa, per exemple.', - 'no_accounts_imperative_revenue' => 'Els comptes d\'ingressos es creen automàticament quan crees transaccions, no obstant, els pots crear manualment també, si vols. Anem a crear-ne un ara:', - 'no_accounts_create_revenue' => 'Crea un nou compte de beneficis', - 'no_accounts_title_liabilities' => 'Anem a crear un passiu!', - 'no_accounts_intro_liabilities' => 'Encara no tens cap passiu. Els passius són els comptes en els quals registres els teus deutes i préstecs.', - 'no_accounts_imperative_liabilities' => 'No cal que faces servir aquesta funció, però pot ser útil per a tindre un registre d\'aquestes coses.', - 'no_accounts_create_liabilities' => 'Crea un nou passiu', - 'no_budgets_title_default' => 'Anem a crear un pressupost', - 'no_rules_title_default' => 'Anem a crear una regla', - 'no_budgets_intro_default' => 'No tens cap pressupost encara. Els pressupostos es fan servir per a organitzar les teves despeses en grups lògics, als quals els pots posar un límit per a limitar les teves despeses.', - 'no_rules_intro_default' => 'No tens cap regla encara. Les regles són automatitzacions potents que poden administrar transaccions per a tu.', - 'no_rules_imperative_default' => 'Les regles són molt útils quan estàs administrant transaccions. Creem-ne una:', - 'no_budgets_imperative_default' => 'Els pressupostos són les eines bàsiques d\'administració financera. Creem-ne una:', - 'no_budgets_create_default' => 'Crea un pressuport', - 'no_rules_create_default' => 'Crea una regla', - 'no_categories_title_default' => 'Anem a crear una categoria!', - 'no_categories_intro_default' => 'No tens cap categoria encara. Les categories es fan servir per a ajustar les teues transaccions, i etiquetar-les amb la corresponent categoria.', - 'no_categories_imperative_default' => 'Les categories es creen automàticament quan crees transaccions, però en pots crear una manualment. Anem a fer-ho:', - 'no_categories_create_default' => 'Crea una categoria', - 'no_tags_title_default' => 'Anem a crear una etiqueta!', - 'no_tags_intro_default' => 'No tens cap etiqueta encara. Les etiquetes es fan servir per a ajustar les teves transaccions, i etiquetar-les amb paraules claus específiques.', - 'no_tags_imperative_default' => 'Les etiquetes es creen automàticament quan crees transaccions, però les pots crear manualment també. Anem a fer-ho:', - 'no_tags_create_default' => 'Crea una etiqueta', - 'no_transactions_title_withdrawal' => 'Creem una despesa!', - 'no_transactions_intro_withdrawal' => 'No tens cap despesa encara. Hauries de crear despeses per a començar a administrar les teves finances.', - 'no_transactions_imperative_withdrawal' => 'Has gastat diners? Doncs hauries d\'anotar-ho:', - 'no_transactions_create_withdrawal' => 'Crea una despesa', - 'no_transactions_title_deposit' => 'Anem a crear un ingrés!', - 'no_transactions_intro_deposit' => 'No tens cap ingrés registrat encara. Hauries de crear algun per a començar a administrar les teves finances.', - 'no_transactions_imperative_deposit' => 'Has rebut diners? Hauries d\'anotar-ho:', - 'no_transactions_create_deposit' => 'Crea un ingrés', - 'no_transactions_title_transfers' => 'Anem a crear una transferència!', - 'no_transactions_intro_transfers' => 'No tens cap transferència encara. Quan mogues diners entre comptes, es desarà com una transferència.', - 'no_transactions_imperative_transfers' => 'Has mogut diners? Ho hauries d\'anotar:', - 'no_transactions_create_transfers' => 'Crea una transferència', - 'no_piggies_title_default' => 'Anem a crear una guardiola!', - 'no_piggies_intro_default' => 'No tens cap guardiola encara. Pots crear guardioles per a dividir els teus estalvis, i saber per a què estàs estalviant.', - 'no_piggies_imperative_default' => 'Estàs guardant diners per a alguna cosa? Crea una guardiola, i segueix el procés:', - 'no_piggies_create_default' => 'Crea una nova guardiola', - 'no_bills_title_default' => 'Anem a crear una factura!', - 'no_bills_intro_default' => 'No tens cap factura encara. Pots crear factures per a tindre registre de les teues despeses habituals, com els lloguer, o el segur.', - 'no_bills_imperative_default' => 'Tens alguna factura regular? Crea una factura, i segueix els pagaments:', - 'no_bills_create_default' => 'Crea una factura', + 'no_accounts_title_asset' => 'Anem a crear un compte d\'actius!', + 'no_accounts_intro_asset' => 'No tens cap compte d\'actius encara. Els comptes d\'actius són els teus comptes principals: comptes d\'ingressos, d\'estalvis, compartits, o inclús la teua targeta de crèdit.', + 'no_accounts_imperative_asset' => 'Per a començar a gastar Firefly III has de crear com a mínim un compte d\'actius. Som-hi!', + 'no_accounts_create_asset' => 'Crea un nou compte d\'actius', + 'no_accounts_title_expense' => 'Anem a crear un compte de despeses!', + 'no_accounts_intro_expense' => 'No tens cap compte de despeses encara. Els comptes de despeses són els llocs on gastes diners, com tendes o supermercats.', + 'no_accounts_imperative_expense' => 'Els comptes de despeses es creen automàticament quan crees transaccions, no obstant, els pots crear manualment també, si vols. Anem a crear-ne un ara:', + 'no_accounts_create_expense' => 'Crea un compte de despeses', + 'no_accounts_title_revenue' => 'Anem a crear un compte d\'ingressos!', + 'no_accounts_intro_revenue' => 'No tens cap compte d\'ingressos encara. Els comptes d\'ingressos són els llocs dels quals reps diners, com el teu cap, o empresa, per exemple.', + 'no_accounts_imperative_revenue' => 'Els comptes d\'ingressos es creen automàticament quan crees transaccions, no obstant, els pots crear manualment també, si vols. Anem a crear-ne un ara:', + 'no_accounts_create_revenue' => 'Crea un nou compte de beneficis', + 'no_accounts_title_liabilities' => 'Anem a crear un passiu!', + 'no_accounts_intro_liabilities' => 'Encara no tens cap passiu. Els passius són els comptes en els quals registres els teus deutes i préstecs.', + 'no_accounts_imperative_liabilities' => 'No cal que faces servir aquesta funció, però pot ser útil per a tindre un registre d\'aquestes coses.', + 'no_accounts_create_liabilities' => 'Crea un nou passiu', + 'no_budgets_title_default' => 'Anem a crear un pressupost', + 'no_rules_title_default' => 'Anem a crear una regla', + 'no_budgets_intro_default' => 'No tens cap pressupost encara. Els pressupostos es fan servir per a organitzar les teves despeses en grups lògics, als quals els pots posar un límit per a limitar les teves despeses.', + 'no_rules_intro_default' => 'No tens cap regla encara. Les regles són automatitzacions potents que poden administrar transaccions per a tu.', + 'no_rules_imperative_default' => 'Les regles són molt útils quan estàs administrant transaccions. Creem-ne una:', + 'no_budgets_imperative_default' => 'Els pressupostos són les eines bàsiques d\'administració financera. Creem-ne una:', + 'no_budgets_create_default' => 'Crea un pressuport', + 'no_rules_create_default' => 'Crea una regla', + 'no_categories_title_default' => 'Anem a crear una categoria!', + 'no_categories_intro_default' => 'No tens cap categoria encara. Les categories es fan servir per a ajustar les teues transaccions, i etiquetar-les amb la corresponent categoria.', + 'no_categories_imperative_default' => 'Les categories es creen automàticament quan crees transaccions, però en pots crear una manualment. Anem a fer-ho:', + 'no_categories_create_default' => 'Crea una categoria', + 'no_tags_title_default' => 'Anem a crear una etiqueta!', + 'no_tags_intro_default' => 'No tens cap etiqueta encara. Les etiquetes es fan servir per a ajustar les teves transaccions, i etiquetar-les amb paraules claus específiques.', + 'no_tags_imperative_default' => 'Les etiquetes es creen automàticament quan crees transaccions, però les pots crear manualment també. Anem a fer-ho:', + 'no_tags_create_default' => 'Crea una etiqueta', + 'no_transactions_title_withdrawal' => 'Creem una despesa!', + 'no_transactions_intro_withdrawal' => 'No tens cap despesa encara. Hauries de crear despeses per a començar a administrar les teves finances.', + 'no_transactions_imperative_withdrawal' => 'Has gastat diners? Doncs hauries d\'anotar-ho:', + 'no_transactions_create_withdrawal' => 'Crea una despesa', + 'no_transactions_title_deposit' => 'Anem a crear un ingrés!', + 'no_transactions_intro_deposit' => 'No tens cap ingrés registrat encara. Hauries de crear algun per a començar a administrar les teves finances.', + 'no_transactions_imperative_deposit' => 'Has rebut diners? Hauries d\'anotar-ho:', + 'no_transactions_create_deposit' => 'Crea un ingrés', + 'no_transactions_title_transfers' => 'Anem a crear una transferència!', + 'no_transactions_intro_transfers' => 'No tens cap transferència encara. Quan mogues diners entre comptes, es desarà com una transferència.', + 'no_transactions_imperative_transfers' => 'Has mogut diners? Ho hauries d\'anotar:', + 'no_transactions_create_transfers' => 'Crea una transferència', + 'no_piggies_title_default' => 'Anem a crear una guardiola!', + 'no_piggies_intro_default' => 'No tens cap guardiola encara. Pots crear guardioles per a dividir els teus estalvis, i saber per a què estàs estalviant.', + 'no_piggies_imperative_default' => 'Estàs guardant diners per a alguna cosa? Crea una guardiola, i segueix el procés:', + 'no_piggies_create_default' => 'Crea una nova guardiola', + 'no_bills_title_default' => 'Anem a crear una factura!', + 'no_bills_intro_default' => 'No tens cap factura encara. Pots crear factures per a tindre registre de les teues despeses habituals, com els lloguer, o el segur.', + 'no_bills_imperative_default' => 'Tens alguna factura regular? Crea una factura, i segueix els pagaments:', + 'no_bills_create_default' => 'Crea una factura', // recurring transactions - 'create_right_now' => 'Crea ara mateix', - 'no_new_transaction_in_recurrence' => 'No s\'ha creat cap transacció. Pot ser ja s\'havia executat per a aquesta data?', - 'recurrences' => 'Transaccions recurrents', - 'repeat_until_in_past' => 'Aquesta transacció recurrent es va parar d\'executar el :date.', - 'recurring_calendar_view' => 'Calendari', - 'no_recurring_title_default' => 'Anem a crear una transacció recurrent!', - 'no_recurring_intro_default' => 'No tens cap transacció recurrent. Fes servir aquesta funció per a que Firefly III cree transaccions automàticament per a tu.', - 'no_recurring_imperative_default' => 'És una funció bastant avançada, però que et pot ser molt útil. Assegura\'t de llegir la documentació, a la icona (?) de dalt a la dreta, abans de continuar.', - 'no_recurring_create_default' => 'Crea una transacció recurrent', - 'make_new_recurring' => 'Crea una transacció recurrent', - 'recurring_daily' => 'Cada dia', - 'recurring_weekly' => 'Cada dia els :weekday', - 'recurring_weekly_skip' => 'Cada :skip(a) setmana els :weekday', - 'recurring_monthly' => 'Cada mes al dia :dayOfMonth', - 'recurring_monthly_skip' => 'Cada mes :skip el dia :dayOfMonth', - 'recurring_ndom' => 'Cada mes els :weekday dia :dayOfMonth', - 'recurring_yearly' => 'Cada any els :date', - 'overview_for_recurrence' => 'Visió general per a la transacció recurrent ":title"', - 'warning_duplicates_repetitions' => 'En algun cas extrany, pot ser que les dates apareguen dobles a la llista. Pot passar quan varies repeticions coincideixen. Firefly III sempre generarà una transacció al dia.', - 'created_transactions' => 'Transaccions relacionades', - 'expected_withdrawals' => 'Retirades esperades', - 'expected_deposits' => 'Ingressos esperats', - 'expected_transfers' => 'Transferències esperades', - 'created_withdrawals' => 'Retirades creades', - 'created_deposits' => 'Ingressos creats', - 'created_transfers' => 'Transferències creades', - 'recurring_info' => 'Transacció recurrent :count / :total', - 'created_from_recurrence' => 'Creat de la transacció recurrent ":title" (#:id)', - 'recurring_never_cron' => 'Sembla que el treball cron que és necessari per a les transaccions recurrents no s\'ha executat mai. Açò és normal si acabes d\'instal·lar Firefly III, però hauria d\'executar-se el més prompte possible. Revisa les pàgines d\'ajuda fent servir la icona (?) a la part superior dreta de la pàgina.', - 'recurring_cron_long_ago' => 'Sembla que fa més de 36 hores que s\'ha executat el treball cron per última vegada. Segur que està ben configurat? Per favor, revisa les pàgines d\'ajuda fent servir la icona (?) de dalt a la dreta.', + 'create_right_now' => 'Crea ara mateix', + 'no_new_transaction_in_recurrence' => 'No s\'ha creat cap transacció. Pot ser ja s\'havia executat per a aquesta data?', + 'recurrences' => 'Transaccions recurrents', + 'repeat_until_in_past' => 'Aquesta transacció recurrent es va parar d\'executar el :date.', + 'recurring_calendar_view' => 'Calendari', + 'no_recurring_title_default' => 'Anem a crear una transacció recurrent!', + 'no_recurring_intro_default' => 'No tens cap transacció recurrent. Fes servir aquesta funció per a que Firefly III cree transaccions automàticament per a tu.', + 'no_recurring_imperative_default' => 'És una funció bastant avançada, però que et pot ser molt útil. Assegura\'t de llegir la documentació, a la icona (?) de dalt a la dreta, abans de continuar.', + 'no_recurring_create_default' => 'Crea una transacció recurrent', + 'make_new_recurring' => 'Crea una transacció recurrent', + 'recurring_daily' => 'Cada dia', + 'recurring_weekly' => 'Cada dia els :weekday', + 'recurring_weekly_skip' => 'Cada :skip(a) setmana els :weekday', + 'recurring_monthly' => 'Cada mes al dia :dayOfMonth', + 'recurring_monthly_skip' => 'Cada mes :skip el dia :dayOfMonth', + 'recurring_ndom' => 'Cada mes els :weekday dia :dayOfMonth', + 'recurring_yearly' => 'Cada any els :date', + 'overview_for_recurrence' => 'Visió general per a la transacció recurrent ":title"', + 'warning_duplicates_repetitions' => 'En algun cas extrany, pot ser que les dates apareguen dobles a la llista. Pot passar quan varies repeticions coincideixen. Firefly III sempre generarà una transacció al dia.', + 'created_transactions' => 'Transaccions relacionades', + 'expected_withdrawals' => 'Retirades esperades', + 'expected_deposits' => 'Ingressos esperats', + 'expected_transfers' => 'Transferències esperades', + 'created_withdrawals' => 'Retirades creades', + 'created_deposits' => 'Ingressos creats', + 'created_transfers' => 'Transferències creades', + 'recurring_info' => 'Transacció recurrent :count / :total', + 'created_from_recurrence' => 'Creat de la transacció recurrent ":title" (#:id)', + 'recurring_never_cron' => 'Sembla que el treball cron que és necessari per a les transaccions recurrents no s\'ha executat mai. Açò és normal si acabes d\'instal·lar Firefly III, però hauria d\'executar-se el més prompte possible. Revisa les pàgines d\'ajuda fent servir la icona (?) a la part superior dreta de la pàgina.', + 'recurring_cron_long_ago' => 'Sembla que fa més de 36 hores que s\'ha executat el treball cron per última vegada. Segur que està ben configurat? Per favor, revisa les pàgines d\'ajuda fent servir la icona (?) de dalt a la dreta.', - 'create_new_recurrence' => 'Crea una nova transacció recurrent', - 'help_first_date' => 'Indica la primera recurrència esperada. Ha de ser en el futur.', - 'help_first_date_no_past' => 'Indica la primera recurrència esperada. Firefly III no crearà transaccions en el passat.', - 'no_currency' => '(sense moneda)', - 'mandatory_for_recurring' => 'Informació de recurrència requerida', - 'mandatory_for_transaction' => 'Informació de transacció requerida', - 'optional_for_recurring' => 'Informació de recurrència opcional', - 'optional_for_transaction' => 'Informació de transacció opcional', - 'change_date_other_options' => 'Canvia la "primera data" per a veure més opcions.', - 'mandatory_fields_for_tranaction' => 'Els valors ací acabaran sent les transaccions que es creen', - 'click_for_calendar' => 'Fes clic ací per a veure un calendari que mostra quan la transacció es repetirà.', - 'repeat_forever' => 'Repeteix per a sempre', - 'repeat_until_date' => 'Repeteix fins a', - 'repeat_times' => 'Repeteix un nombre de vegades', - 'recurring_skips_one' => 'Cada', - 'recurring_skips_more' => 'Salta :count repeticions', - 'store_new_recurrence' => 'Desa la transacció recurrent', - 'stored_new_recurrence' => 'La transacció recurrent ":title" s\'ha desat correctament.', - 'edit_recurrence' => 'Edita la transacció recurrent ":title"', - 'recurring_repeats_until' => 'Es repeteix fins a :date', - 'recurring_repeats_forever' => 'Es repeteix per a sempre', - 'recurring_repeats_x_times' => 'Es repeteix :count vegada|Es repeteix :count vegades', - 'update_recurrence' => 'Actualitza la transacció recurrent', - 'updated_recurrence' => 'S\'ha actualitzat la transacció recurrent ":title"', - 'recurrence_is_inactive' => 'Aquesta transacció recurrent no està activa i no generarà noves transaccions.', - 'delete_recurring' => 'Elimina la transacció recurrent ":title"', - 'new_recurring_transaction' => 'Nova transacció recurrent', - 'help_weekend' => 'Què hauria de fer Firefly III quan la transacció cau dissabte o diumenge?', - 'do_nothing' => 'Simplement crea la transacció', - 'skip_transaction' => 'Salta la ocurrència', - 'jump_to_friday' => 'Crea la transacció el divendres anterior', - 'jump_to_monday' => 'Crea la transacció el següent dilluns', - 'will_jump_friday' => 'Serà creada divendres en comptes de al cap de setmana.', - 'will_jump_monday' => 'Serà creada dilluns en comptes de al cap de setmana.', - 'except_weekends' => 'Excepte els caps de setmana', - 'recurrence_deleted' => 'S\'ha eliminat la transacció recurrent ":title"', + 'create_new_recurrence' => 'Crea una nova transacció recurrent', + 'help_first_date' => 'Indica la primera recurrència esperada. Ha de ser en el futur.', + 'help_first_date_no_past' => 'Indica la primera recurrència esperada. Firefly III no crearà transaccions en el passat.', + 'no_currency' => '(sense moneda)', + 'mandatory_for_recurring' => 'Informació de recurrència requerida', + 'mandatory_for_transaction' => 'Informació de transacció requerida', + 'optional_for_recurring' => 'Informació de recurrència opcional', + 'optional_for_transaction' => 'Informació de transacció opcional', + 'change_date_other_options' => 'Canvia la "primera data" per a veure més opcions.', + 'mandatory_fields_for_tranaction' => 'Els valors ací acabaran sent les transaccions que es creen', + 'click_for_calendar' => 'Fes clic ací per a veure un calendari que mostra quan la transacció es repetirà.', + 'repeat_forever' => 'Repeteix per a sempre', + 'repeat_until_date' => 'Repeteix fins a', + 'repeat_times' => 'Repeteix un nombre de vegades', + 'recurring_skips_one' => 'Cada', + 'recurring_skips_more' => 'Salta :count repeticions', + 'store_new_recurrence' => 'Desa la transacció recurrent', + 'stored_new_recurrence' => 'La transacció recurrent ":title" s\'ha desat correctament.', + 'edit_recurrence' => 'Edita la transacció recurrent ":title"', + 'recurring_repeats_until' => 'Es repeteix fins a :date', + 'recurring_repeats_forever' => 'Es repeteix per a sempre', + 'recurring_repeats_x_times' => 'Es repeteix :count vegada|Es repeteix :count vegades', + 'update_recurrence' => 'Actualitza la transacció recurrent', + 'updated_recurrence' => 'S\'ha actualitzat la transacció recurrent ":title"', + 'recurrence_is_inactive' => 'Aquesta transacció recurrent no està activa i no generarà noves transaccions.', + 'delete_recurring' => 'Elimina la transacció recurrent ":title"', + 'new_recurring_transaction' => 'Nova transacció recurrent', + 'help_weekend' => 'Què hauria de fer Firefly III quan la transacció cau dissabte o diumenge?', + 'do_nothing' => 'Simplement crea la transacció', + 'skip_transaction' => 'Salta la ocurrència', + 'jump_to_friday' => 'Crea la transacció el divendres anterior', + 'jump_to_monday' => 'Crea la transacció el següent dilluns', + 'will_jump_friday' => 'Serà creada divendres en comptes de al cap de setmana.', + 'will_jump_monday' => 'Serà creada dilluns en comptes de al cap de setmana.', + 'except_weekends' => 'Excepte els caps de setmana', + 'recurrence_deleted' => 'S\'ha eliminat la transacció recurrent ":title"', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Gastat (:currency)', - 'box_earned_in_currency' => 'Guanyat (:currency)', - 'box_budgeted_in_currency' => 'Pressupostat (:currency)', - 'box_bill_paid_in_currency' => 'Factures pagades (:currency)', - 'box_bill_unpaid_in_currency' => 'Factures pendents (:currency)', - 'box_left_to_spend_in_currency' => 'Queda per gastar (:currency)', - 'box_net_worth_in_currency' => 'Valor net (:currency)', - 'box_spend_per_day' => 'Queda per gastar al dia: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Gastat (:currency)', + 'box_earned_in_currency' => 'Guanyat (:currency)', + 'box_budgeted_in_currency' => 'Pressupostat (:currency)', + 'box_bill_paid_in_currency' => 'Factures pagades (:currency)', + 'box_bill_unpaid_in_currency' => 'Factures pendents (:currency)', + 'box_left_to_spend_in_currency' => 'Queda per gastar (:currency)', + 'box_net_worth_in_currency' => 'Valor net (:currency)', + 'box_spend_per_day' => 'Queda per gastar al dia: :amount', // debug page - 'debug_page' => 'Pàgina de debug', - 'debug_submit_instructions' => 'Si tens cpa problema, pots gastar la informació d\'aquesta pàgina com a informació de debug. Per favor, copia i enganxa en una issue de Github existent o una nova. Generarà una taula que serà útil per a poder diagnosticar el teu problema ràpidament.', - 'debug_pretty_table' => 'Si copies i enganxes aquesta capsa en una issue de GitHub generarà una taula. Per favor, no rodeges aquest text amb asteriscs o apòstrofs.', - 'debug_additional_data' => 'També pots compartir els continguts de la caixa. Pots copiar i enganxar-los en una issue de GitHub nova, o una ja existent. No obstant, el contingut de la capsa pot tenir informació privada, com nom de comptes, detalls de transaccions o direccions de correu electrònic.', + 'debug_page' => 'Pàgina de debug', + 'debug_submit_instructions' => 'Si tens cpa problema, pots gastar la informació d\'aquesta pàgina com a informació de debug. Per favor, copia i enganxa en una issue de Github existent o una nova. Generarà una taula que serà útil per a poder diagnosticar el teu problema ràpidament.', + 'debug_pretty_table' => 'Si copies i enganxes aquesta capsa en una issue de GitHub generarà una taula. Per favor, no rodeges aquest text amb asteriscs o apòstrofs.', + 'debug_additional_data' => 'També pots compartir els continguts de la caixa. Pots copiar i enganxar-los en una issue de GitHub nova, o una ja existent. No obstant, el contingut de la capsa pot tenir informació privada, com nom de comptes, detalls de transaccions o direccions de correu electrònic.', // object groups - 'object_groups_menu_bar' => 'Grups', - 'object_groups_page_title' => 'Grups', - 'object_groups_breadcrumb' => 'Grups', - 'object_groups_index' => 'Visió general', - 'object_groups' => 'Grups', - 'object_groups_empty_explain' => 'Algunes coses a Firefly III pot ser dividida en grups. Les guardioles, per exemple, tenen una funció de grup en la pàgina de creació i edició. Quan estableixen aquest camp, pots editar els noms, i ordenar els grups en aquesta pàgina. Per a més informació, llegeix les pàgines d\'ajuda en la icona (?) de dalt a la dreta.', - 'object_group_title' => 'Títol', - 'edit_object_group' => 'Edita el grup ":title"', - 'delete_object_group' => 'Elimina el grup ":title"', - 'update_object_group' => 'Actualiza el grup', - 'updated_object_group' => 'S\'ha actualitzat el grup ":title" satisfactòriament', - 'deleted_object_group' => 'S\'ha eliminat el grup ":title" satisfactòriament', - 'object_group' => 'Grup', + 'object_groups_menu_bar' => 'Grups', + 'object_groups_page_title' => 'Grups', + 'object_groups_breadcrumb' => 'Grups', + 'object_groups_index' => 'Visió general', + 'object_groups' => 'Grups', + 'object_groups_empty_explain' => 'Algunes coses a Firefly III pot ser dividida en grups. Les guardioles, per exemple, tenen una funció de grup en la pàgina de creació i edició. Quan estableixen aquest camp, pots editar els noms, i ordenar els grups en aquesta pàgina. Per a més informació, llegeix les pàgines d\'ajuda en la icona (?) de dalt a la dreta.', + 'object_group_title' => 'Títol', + 'edit_object_group' => 'Edita el grup ":title"', + 'delete_object_group' => 'Elimina el grup ":title"', + 'update_object_group' => 'Actualiza el grup', + 'updated_object_group' => 'S\'ha actualitzat el grup ":title" satisfactòriament', + 'deleted_object_group' => 'S\'ha eliminat el grup ":title" satisfactòriament', + 'object_group' => 'Grup', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audita les entrades de registre', - 'ale_action_log_add' => 'S\'ha afegit :amount a la guardiola ":name"', - 'ale_action_log_remove' => 'S\'ha eliminat :amount de la guardiola ":name"', - 'ale_action_clear_budget' => 'Eliminat del pressupost', - 'ale_action_update_group_title' => 'S\'ha actualitzat el títol del grup de transaccions', - 'ale_action_update_date' => 'S\'ha actualitzat la data de transacció', - 'ale_action_update_order' => 'S\'ha actualitzat l\'ordre de transaccions', - 'ale_action_clear_category' => 'Eliminat de la categoria', - 'ale_action_clear_notes' => 'Notes eliminades', - 'ale_action_clear_tag' => 'Etiqueta buidada', - 'ale_action_clear_all_tags' => 'Buidades totes les etiquetes', - 'ale_action_set_bill' => 'Enllaçat a la factura', - 'ale_action_switch_accounts' => 'S\'han canviat els comptes font i de destinació', - 'ale_action_set_budget' => 'Establir pressupost', - 'ale_action_set_category' => 'Establir categoria', - 'ale_action_set_source' => 'Establir compte d\'origen', - 'ale_action_set_destination' => 'Establir compte de destinació', - 'ale_action_update_transaction_type' => 'Tipus de transacció canviat', - 'ale_action_update_notes' => 'Notes canviades', - 'ale_action_update_description' => 'Descripció canviada', - 'ale_action_add_to_piggy' => 'Guardiola', - 'ale_action_remove_from_piggy' => 'Guardiola', - 'ale_action_add_tag' => 'Etiqueta afegida', - 'ale_action_update_amount' => 'Quantitat actualitzada', + 'audit_log_entries' => 'Audita les entrades de registre', + 'ale_action_log_add' => 'S\'ha afegit :amount a la guardiola ":name"', + 'ale_action_log_remove' => 'S\'ha eliminat :amount de la guardiola ":name"', + 'ale_action_clear_budget' => 'Eliminat del pressupost', + 'ale_action_update_group_title' => 'S\'ha actualitzat el títol del grup de transaccions', + 'ale_action_update_date' => 'S\'ha actualitzat la data de transacció', + 'ale_action_update_order' => 'S\'ha actualitzat l\'ordre de transaccions', + 'ale_action_clear_category' => 'Eliminat de la categoria', + 'ale_action_clear_notes' => 'Notes eliminades', + 'ale_action_clear_tag' => 'Etiqueta buidada', + 'ale_action_clear_all_tags' => 'Buidades totes les etiquetes', + 'ale_action_set_bill' => 'Enllaçat a la factura', + 'ale_action_switch_accounts' => 'S\'han canviat els comptes font i de destinació', + 'ale_action_set_budget' => 'Establir pressupost', + 'ale_action_set_category' => 'Establir categoria', + 'ale_action_set_source' => 'Establir compte d\'origen', + 'ale_action_set_destination' => 'Establir compte de destinació', + 'ale_action_update_transaction_type' => 'Tipus de transacció canviat', + 'ale_action_update_notes' => 'Notes canviades', + 'ale_action_update_description' => 'Descripció canviada', + 'ale_action_add_to_piggy' => 'Guardiola', + 'ale_action_remove_from_piggy' => 'Guardiola', + 'ale_action_add_tag' => 'Etiqueta afegida', + 'ale_action_update_amount' => 'Quantitat actualitzada', // dashboard - 'enable_auto_convert' => 'Habilita la conversió de moneda', - 'disable_auto_convert' => 'Deshabilita la conversió de moneda', + 'enable_auto_convert' => 'Habilita la conversió de moneda', + 'disable_auto_convert' => 'Deshabilita la conversió de moneda', ]; /* diff --git a/resources/lang/ca_ES/validation.php b/resources/lang/ca_ES/validation.php index 8bbcf7d231..ea94cf2be2 100644 --- a/resources/lang/ca_ES/validation.php +++ b/resources/lang/ca_ES/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'No tens accés a aquesta administració.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/cs_CZ/firefly.php b/resources/lang/cs_CZ/firefly.php index 3b84f10d95..fc3b1b1f08 100644 --- a/resources/lang/cs_CZ/firefly.php +++ b/resources/lang/cs_CZ/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Zavřít', - 'actions' => 'Akce', - 'edit' => 'Upravit', - 'delete' => 'Odstranit', - 'split' => 'Rozdělit', - 'single_split' => 'Rozdělit', - 'clone' => 'Klonovat', - 'clone_and_edit' => 'Klonovat a upravit', - 'confirm_action' => 'Potvrdit akci', - 'last_seven_days' => 'Uplynulých 7 dnů', - 'last_thirty_days' => 'Uplynulých 30 dní', - 'last_180_days' => 'Posledních 180 dní', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'Tento rok', - 'welcome_back' => 'Jak to jde?', - 'everything' => 'Vše', - 'today' => 'dnes', - 'customRange' => 'Vlastní rozsah', - 'date_range' => 'Časové období', - 'apply' => 'Použít', - 'select_date' => 'Vyberte datum…', - 'cancel' => 'Storno', - 'from' => 'Od', - 'to' => 'Komu', - 'structure' => 'Struktura', - 'help_translating' => 'Text této nápovědy ještě není k dispozici ve vašem jazyce. Pomůžete s překladem?', - 'showEverything' => 'Zobrazit vše', - 'never' => 'Nikdy', - 'no_results_for_empty_search' => 'Nezadali jste žádné parametry vyhledávání, takže nebylo co hledat.', - 'removed_amount' => 'Odebráno :amount', - 'added_amount' => 'Přidáno :amount', - 'asset_account_role_help' => 'Jakékoliv další možnosti, vyplývající z vaší volby lze nastavit později.', - 'Opening balance' => 'Počáteční zůstatek', - 'create_new_stuff' => 'Vytvořit novou věc', - 'new_withdrawal' => 'Nový výběr', - 'create_new_transaction' => 'Vytvořit novou transakci', - 'sidebar_frontpage_create' => 'Vytvořit', - 'new_transaction' => 'Nová transakce', - 'no_rules_for_bill' => 'Tento účet nemá přiřazena žádná pravidla.', - 'go_to_asset_accounts' => 'Zobrazit účty s aktivy', - 'go_to_budgets' => 'Přejít k rozpočtům', - 'go_to_withdrawals' => 'Přejít na výběry', - 'clones_journal_x' => 'Tato transakce je kopií „:description“ (#:id)', - 'go_to_categories' => 'Přejít ke kategoriím', - 'go_to_bills' => 'Přejít k účtům', - 'go_to_expense_accounts' => 'Zobrazit výdajové účty', - 'go_to_revenue_accounts' => 'Zobrazit výnosové účty', - 'go_to_piggies' => 'Přejít k pokladničkám', - 'new_deposit' => 'Nový vklad', - 'new_transfer' => 'Nový převod', - 'new_transfers' => 'Nový převod', - 'new_asset_account' => 'Nový účet s aktivy', - 'new_expense_account' => 'Nový výdajový účet', - 'new_revenue_account' => 'Nový výnosový účet', - 'new_liabilities_account' => 'Nový závazek', - 'new_budget' => 'Nový rozpočet', - 'new_bill' => 'Nová platba', - 'block_account_logout' => 'Byli jste odhlášeni. Zablokované účty nemohou tuto stránku používat. Zaregistrovali jste se pomocí platné e-mailové adresy?', - 'flash_success' => 'Úspěšně dokončeno!', - 'flash_info' => 'Zpráva', - 'flash_warning' => 'Varování!', - 'flash_error' => 'Chyba!', - 'flash_danger' => 'Pozor!', - 'flash_info_multiple' => 'Jedna zpráva | :count zpráv', - 'flash_error_multiple' => 'Jedna chyba | :count chyb', - 'net_worth' => 'Čisté jmění', - 'help_for_this_page' => 'Nápověda pro tuto stránku', - 'help_for_this_page_body' => 'Více informací o této stránce naleznete v dokumentaci.', - 'two_factor_welcome' => 'Zdravíme!', - 'two_factor_enter_code' => 'Pro pokračování zadejte kód pro dvoufázové ověření. Vaše aplikace ho pro vás může vytvořit.', - 'two_factor_code_here' => 'Sem zadejte kód', - 'two_factor_title' => 'Dvoufázové ověření', - 'authenticate' => 'Ověřit', - 'two_factor_forgot_title' => 'Ztratil(a) jsem dvoufázové ověřování', - 'two_factor_forgot' => 'Zapomněl(a) jsem si nástroj pro dvoufázové ověření.', - 'two_factor_lost_header' => 'Ztratili jste své dvoufázové ověření?', - 'two_factor_lost_intro' => 'Pokud jste ztratili i své záložní kódy, máte smůlu. Toto se pak už nedá napravit z webového rozhraní. Máte dvě možnosti:', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'V ostatních případech napište provozovateli, :site_owner a požádejte ho o resetování svého dvoufázového ověřování.', - 'mfa_backup_code' => 'Použitím záložního kódu, umožňujícího přihlášení do Firefly III, platnost kódu zaniká. Takže kód, kterým jste se už přihlásili, už k ničemu není (není možné ho použít opakovaně) proto si ho ze seznamu vyškrtněte.', - 'pref_two_factor_new_backup_codes' => 'Získat nové záložní kódy', - 'pref_two_factor_backup_code_count' => 'Máte :count platný kód zálohy.|Máte :count platných záložních kódů.', - '2fa_i_have_them' => 'Uložil jsem je!', - 'warning_much_data' => ':days dnů dat může chvíli trvat načíst.', - 'registered' => 'Úspěšně jste se zaregistrovali!', - 'Default asset account' => 'Výchozí účet s aktivy', - 'no_budget_pointer' => 'Zdá se, že ještě nemáte žádné rozpočty. Měli byste některé vytvořit na rozpočty-. Rozpočty vám mohou pomoci sledovat výdaje.', - 'no_bill_pointer' => 'Zdá se, že ještě nemáte žádné účty. Měli byste některé vytvořit na účtech. Účty vám mohou pomoci sledovat výdaje.', - 'Savings account' => 'Spořicí účet', - 'Credit card' => 'Kreditní karta', - 'source_accounts' => 'Zdrojový účet|Zdrojové účty', - 'destination_accounts' => 'Cílový účet|Cílové účty', - 'user_id_is' => 'Vaš identifikátor uživatele je :user', - 'field_supports_markdown' => 'Text v této kolonce je možné formátovat pomocí Markdown.', - 'need_more_help' => 'Pokud potřebujete další pomoc s používáním Firefly III, založte požadavek na portálu GitHub.', - 'reenable_intro_text' => 'Můžete si také znovu spustit úvodního průvodce.', - 'intro_boxes_after_refresh' => 'Oblasti s úvodem se znovu objeví po opětovném načtení stránky.', - 'show_all_no_filter' => 'Při jejich seskupení podle data zobrazit veškeré transakce.', - 'expenses_by_category' => 'Výdaje podle kategorie', - 'expenses_by_budget' => 'Výdaje podle rozpočtu', - 'income_by_category' => 'Příjem podle kategorie', - 'expenses_by_asset_account' => 'Výdaje podle účtů aktiv', - 'expenses_by_expense_account' => 'Výdaje podle výdajových účtů', - 'cannot_redirect_to_account' => 'Firefly III se nedaří přesměrovat vás na správnou stránku. Omlouváme se.', - 'sum_of_expenses' => 'Souhrn výdajů', - 'sum_of_income' => 'Souhrn příjmů', - 'liabilities' => 'Závazky', - 'spent_in_specific_budget' => 'Utraceno v rozpočtu „:budget“', - 'spent_in_specific_double' => 'Utraceno v účtu „:account“', - 'earned_in_specific_double' => 'Vyděláno v účtu „:account“', - 'source_account' => 'Zdrojový účet', - 'source_account_reconciliation' => 'Nemůžete upravovat zdrojový účet srovnávací transakce.', - 'destination_account' => 'Cílový účet', - 'destination_account_reconciliation' => 'Cílový účet odsouhlasené transakce nelze upravit.', - 'sum_of_expenses_in_budget' => 'Celkem utraceno v rozpočtu „:budget“', - 'left_in_budget_limit' => 'Ponecháno k utracení dle rozpočtu', - 'current_period' => 'Stávající období', - 'show_the_current_period_and_overview' => 'Zobrazit stávající období a přehled', - 'pref_languages_locale' => 'Aby správně fungovalo i pro jiné jazyky, než je angličtina je třeba, aby operační systém byl vybaven správnými údaji o místních a jazykových nastaveních. Pokud nejsou přítomné, data měn, datumů a částek mohou být chybně formátované.', - 'budget_in_period' => 'Všechny transakce pro rozpočet „:name“ mezi :start a :end v :currency', - 'chart_budget_in_period' => 'Graf všech transakcí pro rozpočet „:name“ mezi :start a :end v :currency', - 'chart_budget_in_period_only_currency' => 'Částka rozpočtu byla v :currency, takže tento graf bude zobrazovat pouze transakce v :currency.', - 'chart_account_in_period' => 'Graf veškerých transakcí pro účet „:name“ mezi :start a :end', - 'chart_category_in_period' => 'Graf veškerých transakcí pro kategorii „:name“ mezi :start a :end', - 'chart_category_all' => 'Graf veškerých transakcí pro kategoii „:name“', - 'clone_withdrawal' => 'Klonovat tento výběr', - 'clone_deposit' => 'Klonovat tento vklad', - 'clone_transfer' => 'Klonovat tento převod', - 'multi_select_no_selection' => 'Nic nevybráno', - 'multi_select_select_all' => 'Vybrat vše', - 'multi_select_n_selected' => 'vybráno', - 'multi_select_all_selected' => 'Všechny vybrané', - 'multi_select_filter_placeholder' => 'Najít…', - 'intro_next_label' => 'Následující', - 'intro_prev_label' => 'Předchozí', - 'intro_skip_label' => 'Přeskočit', - 'intro_done_label' => 'Hotovo', - 'between_dates_breadcrumb' => 'Mezi :start a :end', - 'all_journals_without_budget' => 'Všechny transakce bez rozpočtu', - 'journals_without_budget' => 'Transakce bez rozpočtu', - 'all_journals_without_category' => 'Všechny transakce bez kategorie', - 'journals_without_category' => 'Transakce bez kategorie', - 'all_journals_for_account' => 'Všechny transakce pro účet :name', - 'chart_all_journals_for_account' => 'Graf veškerých transakcí pro účet „:name“', - 'journals_in_period_for_account' => 'Veškeré transakce pro účet „:name“ mezi :start a :end', - 'journals_in_period_for_account_js' => 'Veškeré transakce pro účet {title} mezi {start} a {end}', - 'transferred' => 'Přeneseno', - 'all_withdrawal' => 'Všechny výdaje', - 'all_transactions' => 'Všechny transakce', - 'title_withdrawal_between' => 'Všechny výdaje mezi :start a :end', - 'all_deposit' => 'Veškeré výnosy', - 'title_deposit_between' => 'Všechny výnosy mezi :start a :end', - 'all_transfers' => 'Všechny převody', - 'title_transfers_between' => 'Všechny převody mezi :start a :end', - 'all_transfer' => 'Všechny převody', - 'all_journals_for_tag' => 'Všechny transakce pro značku „:tag“', - 'title_transfer_between' => 'Všechny převody mezi :start a :end', - 'all_journals_for_category' => 'Všechny transakce pro kategorii :name', - 'all_journals_for_budget' => 'Všechny transakce pro rozpočet :name', - 'chart_all_journals_for_budget' => 'Graf veškerých transakcí pro rozpočet „:name“', - 'journals_in_period_for_category' => 'Veškeré transakce pro kategorii „:name“ mezi :start a :end', - 'journals_in_period_for_tag' => 'Veškeré transakce pro štítek :tag mezi :start a :end', - 'not_available_demo_user' => 'Funkce, kterou se snažíte použít není uživatelům ukázky k dispozici.', - 'exchange_rate_instructions' => 'Účet aktiv „@name“ přijímá transakce pouze v @native_currency. Pokud chcete namísto toho použít @foreign_currency ověřte, že je známa také částka v @native_currency:', - 'transfer_exchange_rate_instructions' => 'Zdrojový účet aktiv "@source_name" přijímá pouze transakce v @source_currency. Cílový účet aktiv „@dest_name“ přijímá pouze transakce v @dest_currency. V obou měnách musíte uvést převedenou částku správně.', - 'transaction_data' => 'Data transakce', - 'invalid_server_configuration' => 'Neplatné nastavení serveru', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Rychlé přepnutí', - 'sign_in_to_start' => 'Pro zahájení vaší relace se přihlaste', - 'sign_in' => 'Přihlásit', - 'register_new_account' => 'Zaregistrovat nový účet', - 'forgot_my_password' => 'Zapomněl(a) jsem své heslo', - 'problems_with_input' => 'Vyskytly se problémy se vstupními údaji.', - 'reset_password' => 'Resetovat své heslo', - 'button_reset_password' => 'Resetovat heslo', - 'reset_button' => 'Resetovat', - 'want_to_login' => 'Chci se přihlásit', - 'login_page_title' => 'Přihlášení do Firefly III', - 'register_page_title' => 'Registrace do Firefly III', - 'forgot_pw_page_title' => 'Zapomenuté heslo do Firefly III', - 'reset_pw_page_title' => 'Reset hesla do Firefly III', - 'cannot_reset_demo_user' => 'Heslo uživatele pro ukázku (demo) nelze resetovat.', - 'no_att_demo_user' => 'Demo uživatel nemůže nahrát přílohy.', - 'button_register' => 'Zaregistrovat se', - 'authorization' => 'Pověření', - 'active_bills_only' => 'pouze aktivní účty', - 'active_bills_only_total' => 'všechny aktivní účty', - 'active_exp_bills_only' => 'pouze aktivní a očekávané účty', - 'active_exp_bills_only_total' => 'pouze aktivní a očekávané účty', - 'per_period_sum_1D' => 'Očekávané denní výdaje', - 'per_period_sum_1W' => 'Očekávané týdenní výdaje', - 'per_period_sum_1M' => 'Očekávané měsíční výdaje', - 'per_period_sum_3M' => 'Očekávané čtvrtletní výdaje', - 'per_period_sum_6M' => 'Očekávané pololetní výdaje', - 'per_period_sum_1Y' => 'Očekávané roční výdaje', - 'average_per_bill' => 'průměr na účet', - 'expected_total' => 'očekávaný celkový součet', - 'reconciliation_account_name' => ':name sesouhlasení (:currency)', - 'saved' => 'Uloženo', - 'advanced_options' => 'Rozšířené možnosti', - 'advanced_options_explain' => 'Některé stránky ve Firefly III mají za tímto tlačítkem skryté rozšířené možnosti. Tato stránka zde nemá nic krásného, ale podívejte se na ostatní!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Zavřít', + 'actions' => 'Akce', + 'edit' => 'Upravit', + 'delete' => 'Odstranit', + 'split' => 'Rozdělit', + 'single_split' => 'Rozdělit', + 'clone' => 'Klonovat', + 'clone_and_edit' => 'Klonovat a upravit', + 'confirm_action' => 'Potvrdit akci', + 'last_seven_days' => 'Uplynulých 7 dnů', + 'last_thirty_days' => 'Uplynulých 30 dní', + 'last_180_days' => 'Posledních 180 dní', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'Tento rok', + 'welcome_back' => 'Jak to jde?', + 'everything' => 'Vše', + 'today' => 'dnes', + 'customRange' => 'Vlastní rozsah', + 'date_range' => 'Časové období', + 'apply' => 'Použít', + 'select_date' => 'Vyberte datum…', + 'cancel' => 'Storno', + 'from' => 'Od', + 'to' => 'Komu', + 'structure' => 'Struktura', + 'help_translating' => 'Text této nápovědy ještě není k dispozici ve vašem jazyce. Pomůžete s překladem?', + 'showEverything' => 'Zobrazit vše', + 'never' => 'Nikdy', + 'no_results_for_empty_search' => 'Nezadali jste žádné parametry vyhledávání, takže nebylo co hledat.', + 'removed_amount' => 'Odebráno :amount', + 'added_amount' => 'Přidáno :amount', + 'asset_account_role_help' => 'Jakékoliv další možnosti, vyplývající z vaší volby lze nastavit později.', + 'Opening balance' => 'Počáteční zůstatek', + 'create_new_stuff' => 'Vytvořit novou věc', + 'new_withdrawal' => 'Nový výběr', + 'create_new_transaction' => 'Vytvořit novou transakci', + 'sidebar_frontpage_create' => 'Vytvořit', + 'new_transaction' => 'Nová transakce', + 'no_rules_for_bill' => 'Tento účet nemá přiřazena žádná pravidla.', + 'go_to_asset_accounts' => 'Zobrazit účty s aktivy', + 'go_to_budgets' => 'Přejít k rozpočtům', + 'go_to_withdrawals' => 'Přejít na výběry', + 'clones_journal_x' => 'Tato transakce je kopií „:description“ (#:id)', + 'go_to_categories' => 'Přejít ke kategoriím', + 'go_to_bills' => 'Přejít k účtům', + 'go_to_expense_accounts' => 'Zobrazit výdajové účty', + 'go_to_revenue_accounts' => 'Zobrazit výnosové účty', + 'go_to_piggies' => 'Přejít k pokladničkám', + 'new_deposit' => 'Nový vklad', + 'new_transfer' => 'Nový převod', + 'new_transfers' => 'Nový převod', + 'new_asset_account' => 'Nový účet s aktivy', + 'new_expense_account' => 'Nový výdajový účet', + 'new_revenue_account' => 'Nový výnosový účet', + 'new_liabilities_account' => 'Nový závazek', + 'new_budget' => 'Nový rozpočet', + 'new_bill' => 'Nová platba', + 'block_account_logout' => 'Byli jste odhlášeni. Zablokované účty nemohou tuto stránku používat. Zaregistrovali jste se pomocí platné e-mailové adresy?', + 'flash_success' => 'Úspěšně dokončeno!', + 'flash_info' => 'Zpráva', + 'flash_warning' => 'Varování!', + 'flash_error' => 'Chyba!', + 'flash_danger' => 'Pozor!', + 'flash_info_multiple' => 'Jedna zpráva | :count zpráv', + 'flash_error_multiple' => 'Jedna chyba | :count chyb', + 'net_worth' => 'Čisté jmění', + 'help_for_this_page' => 'Nápověda pro tuto stránku', + 'help_for_this_page_body' => 'Více informací o této stránce naleznete v dokumentaci.', + 'two_factor_welcome' => 'Zdravíme!', + 'two_factor_enter_code' => 'Pro pokračování zadejte kód pro dvoufázové ověření. Vaše aplikace ho pro vás může vytvořit.', + 'two_factor_code_here' => 'Sem zadejte kód', + 'two_factor_title' => 'Dvoufázové ověření', + 'authenticate' => 'Ověřit', + 'two_factor_forgot_title' => 'Ztratil(a) jsem dvoufázové ověřování', + 'two_factor_forgot' => 'Zapomněl(a) jsem si nástroj pro dvoufázové ověření.', + 'two_factor_lost_header' => 'Ztratili jste své dvoufázové ověření?', + 'two_factor_lost_intro' => 'Pokud jste ztratili i své záložní kódy, máte smůlu. Toto se pak už nedá napravit z webového rozhraní. Máte dvě možnosti:', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'V ostatních případech napište provozovateli, :site_owner a požádejte ho o resetování svého dvoufázového ověřování.', + 'mfa_backup_code' => 'Použitím záložního kódu, umožňujícího přihlášení do Firefly III, platnost kódu zaniká. Takže kód, kterým jste se už přihlásili, už k ničemu není (není možné ho použít opakovaně) proto si ho ze seznamu vyškrtněte.', + 'pref_two_factor_new_backup_codes' => 'Získat nové záložní kódy', + 'pref_two_factor_backup_code_count' => 'Máte :count platný kód zálohy.|Máte :count platných záložních kódů.', + '2fa_i_have_them' => 'Uložil jsem je!', + 'warning_much_data' => ':days dnů dat může chvíli trvat načíst.', + 'registered' => 'Úspěšně jste se zaregistrovali!', + 'Default asset account' => 'Výchozí účet s aktivy', + 'no_budget_pointer' => 'Zdá se, že ještě nemáte žádné rozpočty. Měli byste některé vytvořit na rozpočty-. Rozpočty vám mohou pomoci sledovat výdaje.', + 'no_bill_pointer' => 'Zdá se, že ještě nemáte žádné účty. Měli byste některé vytvořit na účtech. Účty vám mohou pomoci sledovat výdaje.', + 'Savings account' => 'Spořicí účet', + 'Credit card' => 'Kreditní karta', + 'source_accounts' => 'Zdrojový účet|Zdrojové účty', + 'destination_accounts' => 'Cílový účet|Cílové účty', + 'user_id_is' => 'Vaš identifikátor uživatele je :user', + 'field_supports_markdown' => 'Text v této kolonce je možné formátovat pomocí Markdown.', + 'need_more_help' => 'Pokud potřebujete další pomoc s používáním Firefly III, založte požadavek na portálu GitHub.', + 'reenable_intro_text' => 'Můžete si také znovu spustit úvodního průvodce.', + 'intro_boxes_after_refresh' => 'Oblasti s úvodem se znovu objeví po opětovném načtení stránky.', + 'show_all_no_filter' => 'Při jejich seskupení podle data zobrazit veškeré transakce.', + 'expenses_by_category' => 'Výdaje podle kategorie', + 'expenses_by_budget' => 'Výdaje podle rozpočtu', + 'income_by_category' => 'Příjem podle kategorie', + 'expenses_by_asset_account' => 'Výdaje podle účtů aktiv', + 'expenses_by_expense_account' => 'Výdaje podle výdajových účtů', + 'cannot_redirect_to_account' => 'Firefly III se nedaří přesměrovat vás na správnou stránku. Omlouváme se.', + 'sum_of_expenses' => 'Souhrn výdajů', + 'sum_of_income' => 'Souhrn příjmů', + 'liabilities' => 'Závazky', + 'spent_in_specific_budget' => 'Utraceno v rozpočtu „:budget“', + 'spent_in_specific_double' => 'Utraceno v účtu „:account“', + 'earned_in_specific_double' => 'Vyděláno v účtu „:account“', + 'source_account' => 'Zdrojový účet', + 'source_account_reconciliation' => 'Nemůžete upravovat zdrojový účet srovnávací transakce.', + 'destination_account' => 'Cílový účet', + 'destination_account_reconciliation' => 'Cílový účet odsouhlasené transakce nelze upravit.', + 'sum_of_expenses_in_budget' => 'Celkem utraceno v rozpočtu „:budget“', + 'left_in_budget_limit' => 'Ponecháno k utracení dle rozpočtu', + 'current_period' => 'Stávající období', + 'show_the_current_period_and_overview' => 'Zobrazit stávající období a přehled', + 'pref_languages_locale' => 'Aby správně fungovalo i pro jiné jazyky, než je angličtina je třeba, aby operační systém byl vybaven správnými údaji o místních a jazykových nastaveních. Pokud nejsou přítomné, data měn, datumů a částek mohou být chybně formátované.', + 'budget_in_period' => 'Všechny transakce pro rozpočet „:name“ mezi :start a :end v :currency', + 'chart_budget_in_period' => 'Graf všech transakcí pro rozpočet „:name“ mezi :start a :end v :currency', + 'chart_budget_in_period_only_currency' => 'Částka rozpočtu byla v :currency, takže tento graf bude zobrazovat pouze transakce v :currency.', + 'chart_account_in_period' => 'Graf veškerých transakcí pro účet „:name“ mezi :start a :end', + 'chart_category_in_period' => 'Graf veškerých transakcí pro kategorii „:name“ mezi :start a :end', + 'chart_category_all' => 'Graf veškerých transakcí pro kategoii „:name“', + 'clone_withdrawal' => 'Klonovat tento výběr', + 'clone_deposit' => 'Klonovat tento vklad', + 'clone_transfer' => 'Klonovat tento převod', + 'multi_select_no_selection' => 'Nic nevybráno', + 'multi_select_select_all' => 'Vybrat vše', + 'multi_select_n_selected' => 'vybráno', + 'multi_select_all_selected' => 'Všechny vybrané', + 'multi_select_filter_placeholder' => 'Najít…', + 'intro_next_label' => 'Následující', + 'intro_prev_label' => 'Předchozí', + 'intro_skip_label' => 'Přeskočit', + 'intro_done_label' => 'Hotovo', + 'between_dates_breadcrumb' => 'Mezi :start a :end', + 'all_journals_without_budget' => 'Všechny transakce bez rozpočtu', + 'journals_without_budget' => 'Transakce bez rozpočtu', + 'all_journals_without_category' => 'Všechny transakce bez kategorie', + 'journals_without_category' => 'Transakce bez kategorie', + 'all_journals_for_account' => 'Všechny transakce pro účet :name', + 'chart_all_journals_for_account' => 'Graf veškerých transakcí pro účet „:name“', + 'journals_in_period_for_account' => 'Veškeré transakce pro účet „:name“ mezi :start a :end', + 'journals_in_period_for_account_js' => 'Veškeré transakce pro účet {title} mezi {start} a {end}', + 'transferred' => 'Přeneseno', + 'all_withdrawal' => 'Všechny výdaje', + 'all_transactions' => 'Všechny transakce', + 'title_withdrawal_between' => 'Všechny výdaje mezi :start a :end', + 'all_deposit' => 'Veškeré výnosy', + 'title_deposit_between' => 'Všechny výnosy mezi :start a :end', + 'all_transfers' => 'Všechny převody', + 'title_transfers_between' => 'Všechny převody mezi :start a :end', + 'all_transfer' => 'Všechny převody', + 'all_journals_for_tag' => 'Všechny transakce pro značku „:tag“', + 'title_transfer_between' => 'Všechny převody mezi :start a :end', + 'all_journals_for_category' => 'Všechny transakce pro kategorii :name', + 'all_journals_for_budget' => 'Všechny transakce pro rozpočet :name', + 'chart_all_journals_for_budget' => 'Graf veškerých transakcí pro rozpočet „:name“', + 'journals_in_period_for_category' => 'Veškeré transakce pro kategorii „:name“ mezi :start a :end', + 'journals_in_period_for_tag' => 'Veškeré transakce pro štítek :tag mezi :start a :end', + 'not_available_demo_user' => 'Funkce, kterou se snažíte použít není uživatelům ukázky k dispozici.', + 'exchange_rate_instructions' => 'Účet aktiv „@name“ přijímá transakce pouze v @native_currency. Pokud chcete namísto toho použít @foreign_currency ověřte, že je známa také částka v @native_currency:', + 'transfer_exchange_rate_instructions' => 'Zdrojový účet aktiv "@source_name" přijímá pouze transakce v @source_currency. Cílový účet aktiv „@dest_name“ přijímá pouze transakce v @dest_currency. V obou měnách musíte uvést převedenou částku správně.', + 'transaction_data' => 'Data transakce', + 'invalid_server_configuration' => 'Neplatné nastavení serveru', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Rychlé přepnutí', + 'sign_in_to_start' => 'Pro zahájení vaší relace se přihlaste', + 'sign_in' => 'Přihlásit', + 'register_new_account' => 'Zaregistrovat nový účet', + 'forgot_my_password' => 'Zapomněl(a) jsem své heslo', + 'problems_with_input' => 'Vyskytly se problémy se vstupními údaji.', + 'reset_password' => 'Resetovat své heslo', + 'button_reset_password' => 'Resetovat heslo', + 'reset_button' => 'Resetovat', + 'want_to_login' => 'Chci se přihlásit', + 'login_page_title' => 'Přihlášení do Firefly III', + 'register_page_title' => 'Registrace do Firefly III', + 'forgot_pw_page_title' => 'Zapomenuté heslo do Firefly III', + 'reset_pw_page_title' => 'Reset hesla do Firefly III', + 'cannot_reset_demo_user' => 'Heslo uživatele pro ukázku (demo) nelze resetovat.', + 'no_att_demo_user' => 'Demo uživatel nemůže nahrát přílohy.', + 'button_register' => 'Zaregistrovat se', + 'authorization' => 'Pověření', + 'active_bills_only' => 'pouze aktivní účty', + 'active_bills_only_total' => 'všechny aktivní účty', + 'active_exp_bills_only' => 'pouze aktivní a očekávané účty', + 'active_exp_bills_only_total' => 'pouze aktivní a očekávané účty', + 'per_period_sum_1D' => 'Očekávané denní výdaje', + 'per_period_sum_1W' => 'Očekávané týdenní výdaje', + 'per_period_sum_1M' => 'Očekávané měsíční výdaje', + 'per_period_sum_3M' => 'Očekávané čtvrtletní výdaje', + 'per_period_sum_6M' => 'Očekávané pololetní výdaje', + 'per_period_sum_1Y' => 'Očekávané roční výdaje', + 'average_per_bill' => 'průměr na účet', + 'expected_total' => 'očekávaný celkový součet', + 'reconciliation_account_name' => ':name sesouhlasení (:currency)', + 'saved' => 'Uloženo', + 'advanced_options' => 'Rozšířené možnosti', + 'advanced_options_explain' => 'Některé stránky ve Firefly III mají za tímto tlačítkem skryté rozšířené možnosti. Tato stránka zde nemá nic krásného, ale podívejte se na ostatní!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooky', - 'webhooks_breadcrumb' => 'Webhooky', - 'webhooks_menu_disabled' => 'zakázáno', - 'no_webhook_messages' => 'Neexistují žádné zprávy webhooku', - 'webhook_trigger_STORE_TRANSACTION' => 'Po vytvoření transakce', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Po aktualizaci transakce', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Po odstranění transakce', - 'webhook_response_TRANSACTIONS' => 'Podrobnosti transakce', - 'webhook_response_ACCOUNTS' => 'Podrobnosti účtu', - 'webhook_response_none_NONE' => 'Žádné detaily', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Prozkoumat', - 'create_new_webhook' => 'Vytvořit nový webhook', - 'webhooks_create_breadcrumb' => 'Vytvořit nový webhook', - 'webhook_trigger_form_help' => 'Určit, na kterou událost se spustí webhook', - 'webhook_response_form_help' => 'Určit, co musí webhook odeslat do URL.', - 'webhook_delivery_form_help' => 'V jakém formátu musí webhook posílat data.', - 'webhook_active_form_help' => 'Webhook musí být aktivní, nebo nebude zavolán.', - 'stored_new_webhook' => 'Uložený nový webhook ":title"', - 'delete_webhook' => 'Smazat webhook', - 'deleted_webhook' => 'Smazán webhook ":title"', - 'edit_webhook' => 'Upravit webhook ":title"', - 'updated_webhook' => 'Aktualizován webhook ":title"', - 'edit_webhook_js' => 'Upravit webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Webhook byl spuštěn na určené transakci. Prosím počkejte, než se objeví výsledky.', - 'webhook_messages' => 'Zpráva webhooku', - 'view_message' => 'Zobrazit zprávu', - 'view_attempts' => 'Zobrazit neúspěšné pokusy', - 'message_content_title' => 'Obsah zprávy webhooku', - 'message_content_help' => 'Toto je obsah zprávy, která byla odeslána (nebo vyzkoušena) pomocí tohoto webhooku.', - 'attempt_content_title' => 'Pokusy webhooku', - 'attempt_content_help' => 'To vše jsou neúspěšné pokusy této zpravy webhooku o odeslání na nakonfigurovanou URL. Po nějaké době, Firefly III přestane zkoušet odesílat zprávu.', - 'no_attempts' => 'Nebyly nalezeny žádné neúspěšné pokusy. To je dobrá věc!', - 'webhook_attempt_at' => 'Attempt at {moment}', - 'logs' => 'Logy', - 'response' => 'Odpověď', - 'visit_webhook_url' => 'Navštívit URL webhooku', - 'reset_webhook_secret' => 'Restartovat tajný klíč webhooku', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") byl uložen.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") byl aktualizován.', + 'webhooks' => 'Webhooky', + 'webhooks_breadcrumb' => 'Webhooky', + 'webhooks_menu_disabled' => 'zakázáno', + 'no_webhook_messages' => 'Neexistují žádné zprávy webhooku', + 'webhook_trigger_STORE_TRANSACTION' => 'Po vytvoření transakce', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Po aktualizaci transakce', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Po odstranění transakce', + 'webhook_response_TRANSACTIONS' => 'Podrobnosti transakce', + 'webhook_response_ACCOUNTS' => 'Podrobnosti účtu', + 'webhook_response_none_NONE' => 'Žádné detaily', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Prozkoumat', + 'create_new_webhook' => 'Vytvořit nový webhook', + 'webhooks_create_breadcrumb' => 'Vytvořit nový webhook', + 'webhook_trigger_form_help' => 'Určit, na kterou událost se spustí webhook', + 'webhook_response_form_help' => 'Určit, co musí webhook odeslat do URL.', + 'webhook_delivery_form_help' => 'V jakém formátu musí webhook posílat data.', + 'webhook_active_form_help' => 'Webhook musí být aktivní, nebo nebude zavolán.', + 'stored_new_webhook' => 'Uložený nový webhook ":title"', + 'delete_webhook' => 'Smazat webhook', + 'deleted_webhook' => 'Smazán webhook ":title"', + 'edit_webhook' => 'Upravit webhook ":title"', + 'updated_webhook' => 'Aktualizován webhook ":title"', + 'edit_webhook_js' => 'Upravit webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Webhook byl spuštěn na určené transakci. Prosím počkejte, než se objeví výsledky.', + 'webhook_messages' => 'Zpráva webhooku', + 'view_message' => 'Zobrazit zprávu', + 'view_attempts' => 'Zobrazit neúspěšné pokusy', + 'message_content_title' => 'Obsah zprávy webhooku', + 'message_content_help' => 'Toto je obsah zprávy, která byla odeslána (nebo vyzkoušena) pomocí tohoto webhooku.', + 'attempt_content_title' => 'Pokusy webhooku', + 'attempt_content_help' => 'To vše jsou neúspěšné pokusy této zpravy webhooku o odeslání na nakonfigurovanou URL. Po nějaké době, Firefly III přestane zkoušet odesílat zprávu.', + 'no_attempts' => 'Nebyly nalezeny žádné neúspěšné pokusy. To je dobrá věc!', + 'webhook_attempt_at' => 'Attempt at {moment}', + 'logs' => 'Logy', + 'response' => 'Odpověď', + 'visit_webhook_url' => 'Navštívit URL webhooku', + 'reset_webhook_secret' => 'Restartovat tajný klíč webhooku', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") byl uložen.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") byl aktualizován.', // API access - 'authorization_request' => 'Požadavek na ověření – Firefly III verze :version', - 'authorization_request_intro' => 'Aplikace :client žádá oprávnění pro přístup k vaší finanční správě. Chcete autorizovat :client pro přístup k těmto záznamům?', - 'authorization_request_site' => 'Budete přesměrováni na :url, na které pak budete mít přístup k vašim údajům Firefly III.', - 'authorization_request_invalid' => 'Tento požadavek na přístup je neplatný. Prosím, nikdy nezkoušejte tento odkaz znovu.', - 'scopes_will_be_able' => 'Tato aplikace bude moci:', - 'button_authorize' => 'Autorizovat', - 'none_in_select_list' => '(žádné)', - 'no_piggy_bank' => '(žádná pokladnička)', - 'name_in_currency' => ':name v :currency', - 'paid_in_currency' => 'Zaplaceno v :currency', - 'unpaid_in_currency' => 'Nezaplaceno v :currency', - 'is_alpha_warning' => 'Používáte ALPHA verzi. Buďte ostražití před chybami a problémy.', - 'is_beta_warning' => 'Používáte BETA verzi. Buďte ostražití před chybami a problémy.', - 'all_destination_accounts' => 'Cílové účty', - 'all_source_accounts' => 'Zdrojové účty', - 'back_to_index' => 'Zpět na index', - 'cant_logout_guard' => 'Firefly III Vás nemůže odhlásit.', - 'internal_reference' => 'Interní odkaz', + 'authorization_request' => 'Požadavek na ověření – Firefly III verze :version', + 'authorization_request_intro' => 'Aplikace :client žádá oprávnění pro přístup k vaší finanční správě. Chcete autorizovat :client pro přístup k těmto záznamům?', + 'authorization_request_site' => 'Budete přesměrováni na :url, na které pak budete mít přístup k vašim údajům Firefly III.', + 'authorization_request_invalid' => 'Tento požadavek na přístup je neplatný. Prosím, nikdy nezkoušejte tento odkaz znovu.', + 'scopes_will_be_able' => 'Tato aplikace bude moci:', + 'button_authorize' => 'Autorizovat', + 'none_in_select_list' => '(žádné)', + 'no_piggy_bank' => '(žádná pokladnička)', + 'name_in_currency' => ':name v :currency', + 'paid_in_currency' => 'Zaplaceno v :currency', + 'unpaid_in_currency' => 'Nezaplaceno v :currency', + 'is_alpha_warning' => 'Používáte ALPHA verzi. Buďte ostražití před chybami a problémy.', + 'is_beta_warning' => 'Používáte BETA verzi. Buďte ostražití před chybami a problémy.', + 'all_destination_accounts' => 'Cílové účty', + 'all_source_accounts' => 'Zdrojové účty', + 'back_to_index' => 'Zpět na index', + 'cant_logout_guard' => 'Firefly III Vás nemůže odhlásit.', + 'internal_reference' => 'Interní odkaz', // check for updates: - 'update_check_title' => 'Zjistit dostupnost případných aktualizací', - 'admin_update_check_title' => 'Zjišťovat dostupnost případných aktualizací automaticky', - 'admin_update_check_explain' => 'Firefly III může automaticky zjišťovat dostupnost aktualizací. Pokud toto nastavení zapnete, Firefly III kontaktuje aktualizační server a zjistí, zda je k dispozici nová verze Firefly III. Pokud ano, budete na to upozorněni. Fungování tohoto oznámení je možné si vyzkoušet pomocí tlačítka vpravo. Označte níže, zda si přejete, aby Firefly III zjišťovalo dostupnost aktualizací.', - 'check_for_updates_permission' => 'Firefly III umí zjišťovat dostupnost případných aktualizací, ale potřebuje k tomu vaše svolení. Přejděte do správy a označte, zda chcete tuto funkci zapnout.', - 'updates_ask_me_later' => 'Zeptat se znovu později', - 'updates_do_not_check' => 'Nezjišťovat dostupnost případných aktualizací', - 'updates_enable_check' => 'Zjišťovat dostupnost případných aktualizací', - 'admin_update_check_now_title' => 'Zjistit dostupno případných aktualizací nyní', - 'admin_update_check_now_explain' => 'Stisknutím tohoto tlačítka Firefly III ověří, zda používáte nejnovější verzi.', - 'check_for_updates_button' => 'Zkontrolovat nyní!', - 'update_new_version_alert' => 'Je k dispozici nová verze Firefly III. Nyní provozujete verzi :your_version, nejnovější verze je :new_version, která byla vydaná :date.', - 'update_version_beta' => 'Tato verze je BETA verze. Můžete narazit na problémy.', - 'update_version_alpha' => 'Tato verze je ALFA verze. Můžete narazit na problémy.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Provozujete verzi :version, která je nejnovější dostupnou verzí.', - 'update_newer_version_alert' => 'Používáte verzi :your_version, která je novější než poslední stabilní verze :new_version.', - 'update_check_error' => 'Došlo k chybě při kontrole aktualizací: :error', - 'unknown_error' => 'Neznámá chyba. Omlouváme se.', - 'disabled_but_check' => 'Zakázali jste kontrolu aktualizací. Nezapomeňte tedy občas zkontrolovat aktualizace sami. Děkujeme!', - 'admin_update_channel_title' => 'Kanál aktualizací', - 'admin_update_channel_explain' => 'Firefly III má tři aktualizační "kanály", které určují, jak moc jste napřed, jde-li o funkce, vylepšení a chyby. Použijte "beta" kanál, pokud jste dobrodružný a "alfa", když chcete žít nebezpečně.', - 'update_channel_stable' => 'Stabilní. Vše by mělo fungovat podle očekávání.', - 'update_channel_beta' => 'Beta verze. Jsou zde nové funkce, ale nemusí vše fungovat.', - 'update_channel_alpha' => 'Alfa. Míchame všechno dohromady a používáme vše, co se osvědčí.', + 'update_check_title' => 'Zjistit dostupnost případných aktualizací', + 'admin_update_check_title' => 'Zjišťovat dostupnost případných aktualizací automaticky', + 'admin_update_check_explain' => 'Firefly III může automaticky zjišťovat dostupnost aktualizací. Pokud toto nastavení zapnete, Firefly III kontaktuje aktualizační server a zjistí, zda je k dispozici nová verze Firefly III. Pokud ano, budete na to upozorněni. Fungování tohoto oznámení je možné si vyzkoušet pomocí tlačítka vpravo. Označte níže, zda si přejete, aby Firefly III zjišťovalo dostupnost aktualizací.', + 'check_for_updates_permission' => 'Firefly III umí zjišťovat dostupnost případných aktualizací, ale potřebuje k tomu vaše svolení. Přejděte do správy a označte, zda chcete tuto funkci zapnout.', + 'updates_ask_me_later' => 'Zeptat se znovu později', + 'updates_do_not_check' => 'Nezjišťovat dostupnost případných aktualizací', + 'updates_enable_check' => 'Zjišťovat dostupnost případných aktualizací', + 'admin_update_check_now_title' => 'Zjistit dostupno případných aktualizací nyní', + 'admin_update_check_now_explain' => 'Stisknutím tohoto tlačítka Firefly III ověří, zda používáte nejnovější verzi.', + 'check_for_updates_button' => 'Zkontrolovat nyní!', + 'update_new_version_alert' => 'Je k dispozici nová verze Firefly III. Nyní provozujete verzi :your_version, nejnovější verze je :new_version, která byla vydaná :date.', + 'update_version_beta' => 'Tato verze je BETA verze. Můžete narazit na problémy.', + 'update_version_alpha' => 'Tato verze je ALFA verze. Můžete narazit na problémy.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Provozujete verzi :version, která je nejnovější dostupnou verzí.', + 'update_newer_version_alert' => 'Používáte verzi :your_version, která je novější než poslední stabilní verze :new_version.', + 'update_check_error' => 'Došlo k chybě při kontrole aktualizací: :error', + 'unknown_error' => 'Neznámá chyba. Omlouváme se.', + 'disabled_but_check' => 'Zakázali jste kontrolu aktualizací. Nezapomeňte tedy občas zkontrolovat aktualizace sami. Děkujeme!', + 'admin_update_channel_title' => 'Kanál aktualizací', + 'admin_update_channel_explain' => 'Firefly III má tři aktualizační "kanály", které určují, jak moc jste napřed, jde-li o funkce, vylepšení a chyby. Použijte "beta" kanál, pokud jste dobrodružný a "alfa", když chcete žít nebezpečně.', + 'update_channel_stable' => 'Stabilní. Vše by mělo fungovat podle očekávání.', + 'update_channel_beta' => 'Beta verze. Jsou zde nové funkce, ale nemusí vše fungovat.', + 'update_channel_alpha' => 'Alfa. Míchame všechno dohromady a používáme vše, co se osvědčí.', // search - 'search' => 'Hledat', - 'search_query' => 'Dotaz', - 'search_found_transactions' => 'Firefly III nalezl :count transakci během :time sekund.|Firefly III nalezl :count transakcí během :time sekund.', - 'search_found_more_transactions' => 'Firefly III nalezlo vice než :count transakcí za :time sekund.', - 'search_for_query' => 'Firefly III hledá transakce se všemi těmito slovy: :query', - 'invalid_operators_list' => 'Tyto vyhledávací parametry nejsou platné a byly ignorovány.', + 'search' => 'Hledat', + 'search_query' => 'Dotaz', + 'search_found_transactions' => 'Firefly III nalezl :count transakci během :time sekund.|Firefly III nalezl :count transakcí během :time sekund.', + 'search_found_more_transactions' => 'Firefly III nalezlo vice než :count transakcí za :time sekund.', + 'search_for_query' => 'Firefly III hledá transakce se všemi těmito slovy: :query', + 'invalid_operators_list' => 'Tyto vyhledávací parametry nejsou platné a byly ignorovány.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Datum transakce je ":value"', - 'search_modifier_not_date_on' => 'Datum transakce není ":value"', - 'search_modifier_reconciled' => 'Transakce je odsouhlasena', - 'search_modifier_not_reconciled' => 'Transaction is not reconciled', - 'search_modifier_id' => 'Číslo transakce je „:value“', - 'search_modifier_not_id' => 'ID transakce není ":value"', - 'search_modifier_date_before' => 'Datum transakce je před (včetně) ":value"', - 'search_modifier_date_after' => 'Datum transakce je po (včetně) ":value"', - 'search_modifier_external_id_is' => 'Externí ID je ":value"', - 'search_modifier_not_external_id_is' => 'Externí ID není ":value"', - 'search_modifier_no_external_url' => 'Transakce nemá žádnou externí URL', - 'search_modifier_no_external_id' => 'Transakce nemá žádnou externí ID', - 'search_modifier_not_any_external_url' => 'Transakce nemá žádnou externí URL', - 'search_modifier_not_any_external_id' => 'Transakce nemá žádnou externí ID', - 'search_modifier_any_external_url' => 'Transakce musí mít (libovolnou) externí URL', - 'search_modifier_any_external_id' => 'Transakce musí mít (libovolnou) externí ID', - 'search_modifier_not_no_external_url' => 'Transakce musí mít (libovolnou) externí URL', - 'search_modifier_not_no_external_id' => 'Transakce musí mít (libovolnou) externí ID', - 'search_modifier_internal_reference_is' => 'Interní reference je ":value"', - 'search_modifier_not_internal_reference_is' => 'Interní reference není ":value"', - 'search_modifier_description_starts' => 'Popis začíná na ":value"', - 'search_modifier_not_description_starts' => 'Popis nezačíná na ":value"', - 'search_modifier_description_ends' => 'Popis končí na ":value"', - 'search_modifier_not_description_ends' => 'Popis nekončí na ":value"', - 'search_modifier_description_contains' => 'Popis obsahuje ":value"', - 'search_modifier_not_description_contains' => 'Popis neobsahuje ":value"', - 'search_modifier_description_is' => 'Popis je přesně ":value"', - 'search_modifier_not_description_is' => 'Popis není přesně ":value"', - 'search_modifier_currency_is' => '(Zahraniční) měna transakce je ":value"', - 'search_modifier_not_currency_is' => '(Zahraniční) měna transakce není ":value"', - 'search_modifier_foreign_currency_is' => 'Zahraniční měna transakce je ":value"', - 'search_modifier_not_foreign_currency_is' => 'Zahraniční měna transakce není ":value"', - 'search_modifier_has_attachments' => 'Transakce musí mít přílohu', - 'search_modifier_has_no_category' => 'Transakce nesmí mít žádnou kategorii', - 'search_modifier_not_has_no_category' => 'Transakce musí mít (libovolnou) kategorii', - 'search_modifier_not_has_any_category' => 'Transakce nesmí mít žádnou kategorii', - 'search_modifier_has_any_category' => 'Transakce musí mít (libovolnou) kategorii', - 'search_modifier_has_no_budget' => 'Transakce nesmí mít žádný rozpočet', - 'search_modifier_not_has_any_budget' => 'Transakce nesmí mít žádný rozpočet', - 'search_modifier_has_any_budget' => 'Transakce musí mít (libovolný) rozpočet', - 'search_modifier_not_has_no_budget' => 'Transakce musí mít (libovolný) rozpočet', - 'search_modifier_has_no_bill' => 'Transakce nesmí mít účet', - 'search_modifier_not_has_no_bill' => 'Transakce musí mít (libovolný) účet', - 'search_modifier_has_any_bill' => 'Transakce musí mít (libovolný) účet', - 'search_modifier_not_has_any_bill' => 'Transakce nesmí mít účet', - 'search_modifier_has_no_tag' => 'Transakce nesmí mít žádné štítky', - 'search_modifier_not_has_any_tag' => 'Transakce nesmí mít žádné štítky', - 'search_modifier_not_has_no_tag' => 'Transakce musí mít (libovolný) štítek', - 'search_modifier_has_any_tag' => 'Transakce musí mít (libovolný) štítek', - 'search_modifier_notes_contains' => 'Poznámky k transakci obsahují ":value"', - 'search_modifier_not_notes_contains' => 'Poznámky k transakci neobsahují ":value"', - 'search_modifier_notes_starts' => 'Poznámky k transakci začínají na ":value"', - 'search_modifier_not_notes_starts' => 'Poznámky k transakci nezačínají na ":value"', - 'search_modifier_notes_ends' => 'Poznámky k transakci končí na ":value"', - 'search_modifier_not_notes_ends' => 'Poznámky k transakci nekončí na ":value"', - 'search_modifier_notes_is' => 'Poznámky k transakci jsou přesně ":value"', - 'search_modifier_not_notes_is' => 'Poznámky k transakci nejsou přesně ":value"', - 'search_modifier_no_notes' => 'Transakce nemá žádné poznámky', - 'search_modifier_not_no_notes' => 'Transakce musí mít poznámky', - 'search_modifier_any_notes' => 'Transakce musí mít poznámky', - 'search_modifier_not_any_notes' => 'Transakce nemá žádné poznámky', - 'search_modifier_amount_is' => 'Částka je přesně :value', - 'search_modifier_not_amount_is' => 'Částka není přesně :value', - 'search_modifier_amount_less' => 'Částka je menší nebo rovna :value', - 'search_modifier_not_amount_more' => 'Částka je menší nebo rovna :value', - 'search_modifier_amount_more' => 'Částka je větší nebo rovna :value', - 'search_modifier_not_amount_less' => 'Částka je větší nebo rovna :value', - 'search_modifier_source_account_is' => 'Název zdrojového účtu je přesně ":value"', - 'search_modifier_not_source_account_is' => 'Název zdrojového účtu není ":value"', - 'search_modifier_source_account_contains' => 'Název zdrojového účtu obsahuje ":value"', - 'search_modifier_not_source_account_contains' => 'Název zdrojového účtu neobsahuje ":value"', - 'search_modifier_source_account_starts' => 'Název zdrojového účtu začíná na ":value"', - 'search_modifier_not_source_account_starts' => 'Název zdrojového účtu nezačíná na ":value"', - 'search_modifier_source_account_ends' => 'Název zdrojového účtu končí na ":value"', - 'search_modifier_not_source_account_ends' => 'Název zdrojového účtu nekončí na ":value"', - 'search_modifier_source_account_id' => 'ID zdrojového účtu je :value', - 'search_modifier_not_source_account_id' => 'ID zdrojového účtu není :value', - 'search_modifier_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) je ":value"', - 'search_modifier_not_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) není ":value"', - 'search_modifier_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) obsahuje ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) neobsahuje ":value"', - 'search_modifier_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) začíná na ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) nezačíná na ":value"', - 'search_modifier_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) končí na ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) nekončí na ":value"', - 'search_modifier_destination_account_is' => 'Název cílového účtu je přesně ":value"', - 'search_modifier_not_destination_account_is' => 'Název cílového účtu není ":value"', - 'search_modifier_destination_account_contains' => 'Název cílového účtu obsahuje ":value"', - 'search_modifier_not_destination_account_contains' => 'Název cílového účtu neobsahuje ":value"', - 'search_modifier_destination_account_starts' => 'Název cílového účtu začíná na ":value"', - 'search_modifier_not_destination_account_starts' => 'Název cílového účtu nezačíná na ":value"', - 'search_modifier_destination_account_ends' => 'Název cílového účtu končí na ":value"', - 'search_modifier_not_destination_account_ends' => 'Název cílového účtu nekončí na ":value"', - 'search_modifier_destination_account_id' => 'ID cílového účtu je :value', - 'search_modifier_not_destination_account_id' => 'ID cílového účtu není :value', - 'search_modifier_destination_is_cash' => 'Cílový účet je (hotovostní) účet', - 'search_modifier_not_destination_is_cash' => 'Cílový účet není (hotovostní) účet', - 'search_modifier_source_is_cash' => 'Zdrojový účet je (hotovostní) účet', - 'search_modifier_not_source_is_cash' => 'Zdrojový účet není (hotovostní) účet', - 'search_modifier_destination_account_nr_is' => 'ČÍslo cílového účtu (IBAN) je ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Číslo cílového účtu (IBAN) je ":value"', - 'search_modifier_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) obsahuje ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) neobsahuje ":value"', - 'search_modifier_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) začíná na ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) nezačíná na ":value"', - 'search_modifier_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) končí na ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) nekončí na ":value"', - 'search_modifier_account_id' => 'ID zdrojového nebo cílového účtu je/jsou: :value', - 'search_modifier_not_account_id' => 'ID zdrojového nebo cílového účtu není/nejsou: :value', - 'search_modifier_category_is' => 'Kategorie je „:value“', - 'search_modifier_not_category_is' => 'Kategorie není „:value“', - 'search_modifier_budget_is' => 'Rozpočet je „:value“', - 'search_modifier_not_budget_is' => 'Rozpočet není „:value“', - 'search_modifier_bill_is' => 'Účet je ":value"', - 'search_modifier_not_bill_is' => 'Účet není ":value"', - 'search_modifier_transaction_type' => 'Typ transakce je ":value"', - 'search_modifier_not_transaction_type' => 'Typ transakce není ":value"', - 'search_modifier_tag_is' => 'Štítek je „:value“', - 'search_modifier_tag_contains' => 'Štítek obsahuje ":value"', - 'search_modifier_not_tag_contains' => 'Štítek neobsahuje ":value"', - 'search_modifier_tag_ends' => 'Štítek končí na ":value"', - 'search_modifier_tag_starts' => 'Štítek začíná na ":value"', - 'search_modifier_not_tag_is' => 'Žádný štítek není ":value"', - 'search_modifier_date_on_year' => 'Transakce je v roce ":value"', - 'search_modifier_not_date_on_year' => 'Transakce není v roce ":value"', - 'search_modifier_date_on_month' => 'Transakce je v měsíci ":value"', - 'search_modifier_not_date_on_month' => 'Transakce není v měsíci ":value"', - 'search_modifier_date_on_day' => 'Transakce je v :value. dni měsíce', - 'search_modifier_not_date_on_day' => 'Transakce není v :value. dni měsíce', - 'search_modifier_date_before_year' => 'Transakce je před nebo v roce ":value"', - 'search_modifier_date_before_month' => 'Transakce je před nebo v měsíci ":value"', - 'search_modifier_date_before_day' => 'Transakce je před nebo v :value. dni měsíce', - 'search_modifier_date_after_year' => 'Transakce je v roce nebo po roce ":value"', - 'search_modifier_date_after_month' => 'Transakce je v měsící nebo po měsíci ":value"', - 'search_modifier_date_after_day' => 'Transakce je po nebo v :value. dni měsíce', + 'search_modifier_date_on' => 'Datum transakce je ":value"', + 'search_modifier_not_date_on' => 'Datum transakce není ":value"', + 'search_modifier_reconciled' => 'Transakce je odsouhlasena', + 'search_modifier_not_reconciled' => 'Transaction is not reconciled', + 'search_modifier_id' => 'Číslo transakce je „:value“', + 'search_modifier_not_id' => 'ID transakce není ":value"', + 'search_modifier_date_before' => 'Datum transakce je před (včetně) ":value"', + 'search_modifier_date_after' => 'Datum transakce je po (včetně) ":value"', + 'search_modifier_external_id_is' => 'Externí ID je ":value"', + 'search_modifier_not_external_id_is' => 'Externí ID není ":value"', + 'search_modifier_no_external_url' => 'Transakce nemá žádnou externí URL', + 'search_modifier_no_external_id' => 'Transakce nemá žádnou externí ID', + 'search_modifier_not_any_external_url' => 'Transakce nemá žádnou externí URL', + 'search_modifier_not_any_external_id' => 'Transakce nemá žádnou externí ID', + 'search_modifier_any_external_url' => 'Transakce musí mít (libovolnou) externí URL', + 'search_modifier_any_external_id' => 'Transakce musí mít (libovolnou) externí ID', + 'search_modifier_not_no_external_url' => 'Transakce musí mít (libovolnou) externí URL', + 'search_modifier_not_no_external_id' => 'Transakce musí mít (libovolnou) externí ID', + 'search_modifier_internal_reference_is' => 'Interní reference je ":value"', + 'search_modifier_not_internal_reference_is' => 'Interní reference není ":value"', + 'search_modifier_description_starts' => 'Popis začíná na ":value"', + 'search_modifier_not_description_starts' => 'Popis nezačíná na ":value"', + 'search_modifier_description_ends' => 'Popis končí na ":value"', + 'search_modifier_not_description_ends' => 'Popis nekončí na ":value"', + 'search_modifier_description_contains' => 'Popis obsahuje ":value"', + 'search_modifier_not_description_contains' => 'Popis neobsahuje ":value"', + 'search_modifier_description_is' => 'Popis je přesně ":value"', + 'search_modifier_not_description_is' => 'Popis není přesně ":value"', + 'search_modifier_currency_is' => '(Zahraniční) měna transakce je ":value"', + 'search_modifier_not_currency_is' => '(Zahraniční) měna transakce není ":value"', + 'search_modifier_foreign_currency_is' => 'Zahraniční měna transakce je ":value"', + 'search_modifier_not_foreign_currency_is' => 'Zahraniční měna transakce není ":value"', + 'search_modifier_has_attachments' => 'Transakce musí mít přílohu', + 'search_modifier_has_no_category' => 'Transakce nesmí mít žádnou kategorii', + 'search_modifier_not_has_no_category' => 'Transakce musí mít (libovolnou) kategorii', + 'search_modifier_not_has_any_category' => 'Transakce nesmí mít žádnou kategorii', + 'search_modifier_has_any_category' => 'Transakce musí mít (libovolnou) kategorii', + 'search_modifier_has_no_budget' => 'Transakce nesmí mít žádný rozpočet', + 'search_modifier_not_has_any_budget' => 'Transakce nesmí mít žádný rozpočet', + 'search_modifier_has_any_budget' => 'Transakce musí mít (libovolný) rozpočet', + 'search_modifier_not_has_no_budget' => 'Transakce musí mít (libovolný) rozpočet', + 'search_modifier_has_no_bill' => 'Transakce nesmí mít účet', + 'search_modifier_not_has_no_bill' => 'Transakce musí mít (libovolný) účet', + 'search_modifier_has_any_bill' => 'Transakce musí mít (libovolný) účet', + 'search_modifier_not_has_any_bill' => 'Transakce nesmí mít účet', + 'search_modifier_has_no_tag' => 'Transakce nesmí mít žádné štítky', + 'search_modifier_not_has_any_tag' => 'Transakce nesmí mít žádné štítky', + 'search_modifier_not_has_no_tag' => 'Transakce musí mít (libovolný) štítek', + 'search_modifier_has_any_tag' => 'Transakce musí mít (libovolný) štítek', + 'search_modifier_notes_contains' => 'Poznámky k transakci obsahují ":value"', + 'search_modifier_not_notes_contains' => 'Poznámky k transakci neobsahují ":value"', + 'search_modifier_notes_starts' => 'Poznámky k transakci začínají na ":value"', + 'search_modifier_not_notes_starts' => 'Poznámky k transakci nezačínají na ":value"', + 'search_modifier_notes_ends' => 'Poznámky k transakci končí na ":value"', + 'search_modifier_not_notes_ends' => 'Poznámky k transakci nekončí na ":value"', + 'search_modifier_notes_is' => 'Poznámky k transakci jsou přesně ":value"', + 'search_modifier_not_notes_is' => 'Poznámky k transakci nejsou přesně ":value"', + 'search_modifier_no_notes' => 'Transakce nemá žádné poznámky', + 'search_modifier_not_no_notes' => 'Transakce musí mít poznámky', + 'search_modifier_any_notes' => 'Transakce musí mít poznámky', + 'search_modifier_not_any_notes' => 'Transakce nemá žádné poznámky', + 'search_modifier_amount_is' => 'Částka je přesně :value', + 'search_modifier_not_amount_is' => 'Částka není přesně :value', + 'search_modifier_amount_less' => 'Částka je menší nebo rovna :value', + 'search_modifier_not_amount_more' => 'Částka je menší nebo rovna :value', + 'search_modifier_amount_more' => 'Částka je větší nebo rovna :value', + 'search_modifier_not_amount_less' => 'Částka je větší nebo rovna :value', + 'search_modifier_source_account_is' => 'Název zdrojového účtu je přesně ":value"', + 'search_modifier_not_source_account_is' => 'Název zdrojového účtu není ":value"', + 'search_modifier_source_account_contains' => 'Název zdrojového účtu obsahuje ":value"', + 'search_modifier_not_source_account_contains' => 'Název zdrojového účtu neobsahuje ":value"', + 'search_modifier_source_account_starts' => 'Název zdrojového účtu začíná na ":value"', + 'search_modifier_not_source_account_starts' => 'Název zdrojového účtu nezačíná na ":value"', + 'search_modifier_source_account_ends' => 'Název zdrojového účtu končí na ":value"', + 'search_modifier_not_source_account_ends' => 'Název zdrojového účtu nekončí na ":value"', + 'search_modifier_source_account_id' => 'ID zdrojového účtu je :value', + 'search_modifier_not_source_account_id' => 'ID zdrojového účtu není :value', + 'search_modifier_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) je ":value"', + 'search_modifier_not_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) není ":value"', + 'search_modifier_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) obsahuje ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) neobsahuje ":value"', + 'search_modifier_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) začíná na ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) nezačíná na ":value"', + 'search_modifier_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) končí na ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Číslo zdrojového účtu (IBAN) nekončí na ":value"', + 'search_modifier_destination_account_is' => 'Název cílového účtu je přesně ":value"', + 'search_modifier_not_destination_account_is' => 'Název cílového účtu není ":value"', + 'search_modifier_destination_account_contains' => 'Název cílového účtu obsahuje ":value"', + 'search_modifier_not_destination_account_contains' => 'Název cílového účtu neobsahuje ":value"', + 'search_modifier_destination_account_starts' => 'Název cílového účtu začíná na ":value"', + 'search_modifier_not_destination_account_starts' => 'Název cílového účtu nezačíná na ":value"', + 'search_modifier_destination_account_ends' => 'Název cílového účtu končí na ":value"', + 'search_modifier_not_destination_account_ends' => 'Název cílového účtu nekončí na ":value"', + 'search_modifier_destination_account_id' => 'ID cílového účtu je :value', + 'search_modifier_not_destination_account_id' => 'ID cílového účtu není :value', + 'search_modifier_destination_is_cash' => 'Cílový účet je (hotovostní) účet', + 'search_modifier_not_destination_is_cash' => 'Cílový účet není (hotovostní) účet', + 'search_modifier_source_is_cash' => 'Zdrojový účet je (hotovostní) účet', + 'search_modifier_not_source_is_cash' => 'Zdrojový účet není (hotovostní) účet', + 'search_modifier_destination_account_nr_is' => 'ČÍslo cílového účtu (IBAN) je ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Číslo cílového účtu (IBAN) je ":value"', + 'search_modifier_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) obsahuje ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Číslo cílového účtu (IBAN) neobsahuje ":value"', + 'search_modifier_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) začíná na ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Číslo cílového účtu (IBAN) nezačíná na ":value"', + 'search_modifier_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) končí na ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Číslo cílového účtu (IBAN) nekončí na ":value"', + 'search_modifier_account_id' => 'ID zdrojového nebo cílového účtu je/jsou: :value', + 'search_modifier_not_account_id' => 'ID zdrojového nebo cílového účtu není/nejsou: :value', + 'search_modifier_category_is' => 'Kategorie je „:value“', + 'search_modifier_not_category_is' => 'Kategorie není „:value“', + 'search_modifier_budget_is' => 'Rozpočet je „:value“', + 'search_modifier_not_budget_is' => 'Rozpočet není „:value“', + 'search_modifier_bill_is' => 'Účet je ":value"', + 'search_modifier_not_bill_is' => 'Účet není ":value"', + 'search_modifier_transaction_type' => 'Typ transakce je ":value"', + 'search_modifier_not_transaction_type' => 'Typ transakce není ":value"', + 'search_modifier_tag_is' => 'Štítek je „:value“', + 'search_modifier_tag_contains' => 'Štítek obsahuje ":value"', + 'search_modifier_not_tag_contains' => 'Štítek neobsahuje ":value"', + 'search_modifier_tag_ends' => 'Štítek končí na ":value"', + 'search_modifier_tag_starts' => 'Štítek začíná na ":value"', + 'search_modifier_not_tag_is' => 'Žádný štítek není ":value"', + 'search_modifier_date_on_year' => 'Transakce je v roce ":value"', + 'search_modifier_not_date_on_year' => 'Transakce není v roce ":value"', + 'search_modifier_date_on_month' => 'Transakce je v měsíci ":value"', + 'search_modifier_not_date_on_month' => 'Transakce není v měsíci ":value"', + 'search_modifier_date_on_day' => 'Transakce je v :value. dni měsíce', + 'search_modifier_not_date_on_day' => 'Transakce není v :value. dni měsíce', + 'search_modifier_date_before_year' => 'Transakce je před nebo v roce ":value"', + 'search_modifier_date_before_month' => 'Transakce je před nebo v měsíci ":value"', + 'search_modifier_date_before_day' => 'Transakce je před nebo v :value. dni měsíce', + 'search_modifier_date_after_year' => 'Transakce je v roce nebo po roce ":value"', + 'search_modifier_date_after_month' => 'Transakce je v měsící nebo po měsíci ":value"', + 'search_modifier_date_after_day' => 'Transakce je po nebo v :value. dni měsíce', // new - 'search_modifier_tag_is_not' => 'Žádný štítek není ":value"', - 'search_modifier_not_tag_is_not' => 'Štítek je „:value“', - 'search_modifier_account_is' => 'Alespoň jeden účet je ":value"', - 'search_modifier_not_account_is' => 'Ani jeden účet není ":value"', - 'search_modifier_account_contains' => 'Alespoň jeden účet obsahuje ":value"', - 'search_modifier_not_account_contains' => 'Ani jeden účet neobsahuje ":value"', - 'search_modifier_account_ends' => 'Alespoň jeden účet končí na ":value"', - 'search_modifier_not_account_ends' => 'Ani jeden účet nekončí na ":value"', - 'search_modifier_account_starts' => 'Alespoň jeden účet začíná na ":value"', - 'search_modifier_not_account_starts' => 'Ani jeden účet nezačíná na ":value"', - 'search_modifier_account_nr_is' => 'Alespoň jedno číslo účtu / IBAN je ":value"', - 'search_modifier_not_account_nr_is' => 'Ani jedno číslo účtu / IBAN není ":value"', - 'search_modifier_account_nr_contains' => 'Alespoň jedno číslo účtu / IBAN obsahuje ":value"', - 'search_modifier_not_account_nr_contains' => 'Ani jedno číslo účtu / IBAN neobsahuje ":value"', - 'search_modifier_account_nr_ends' => 'Alespoň jedno číslo účtu / IBAN končí na ":value"', - 'search_modifier_not_account_nr_ends' => 'Ani jedno číslo účtu / IBAN nekončí na ":value"', - 'search_modifier_account_nr_starts' => 'Alespoň jedno číslo účtu / IBAN začíná na ":value"', - 'search_modifier_not_account_nr_starts' => 'Ani jedno číslo účtu / IBAN nezačíná na ":value"', - 'search_modifier_category_contains' => 'Kategorie obsahuje ":value"', - 'search_modifier_not_category_contains' => 'Kategorie neobsahuje ":value"', - 'search_modifier_category_ends' => 'Kategorie končí na ":value"', - 'search_modifier_not_category_ends' => 'Kategorie nekončí na ":value"', - 'search_modifier_category_starts' => 'Kategorie začíná na ":value"', - 'search_modifier_not_category_starts' => 'Kategorie nezačíná na ":value"', - 'search_modifier_budget_contains' => 'Rozpočet obsahuje ":value"', - 'search_modifier_not_budget_contains' => 'Rozpočet neobsahuje ":value"', - 'search_modifier_budget_ends' => 'Rozpočet končí na ":value"', - 'search_modifier_not_budget_ends' => 'Rozpočet nekončí na ":value"', - 'search_modifier_budget_starts' => 'Rozpočet začíná na ":value"', - 'search_modifier_not_budget_starts' => 'Rozpočet nezačíná na ":value"', - 'search_modifier_bill_contains' => 'Účet obsahuje ":value"', - 'search_modifier_not_bill_contains' => 'Účet neobsahuje ":value"', - 'search_modifier_bill_ends' => 'Účet končí na ":value"', - 'search_modifier_not_bill_ends' => 'Účet nekončí na ":value"', - 'search_modifier_bill_starts' => 'Účet začíná na ":value"', - 'search_modifier_not_bill_starts' => 'Účet nezačíná na ":value"', - 'search_modifier_external_id_contains' => 'Externí ID obsahuje ":value"', - 'search_modifier_not_external_id_contains' => 'Externí ID neobsahuje ":value"', - 'search_modifier_external_id_ends' => 'Externí ID končí na ":value"', - 'search_modifier_not_external_id_ends' => 'Externí ID nekončí na ":value"', - 'search_modifier_external_id_starts' => 'Externí ID začíná na ":value"', - 'search_modifier_not_external_id_starts' => 'Externí ID nezačíná na ":value"', - 'search_modifier_internal_reference_contains' => 'Interní reference obsahuje ":value"', - 'search_modifier_not_internal_reference_contains' => 'Interní reference neobsahuje ":value"', - 'search_modifier_internal_reference_ends' => 'Interní reference končí na ":value"', - 'search_modifier_internal_reference_starts' => 'Interní reference začíná na ":value"', - 'search_modifier_not_internal_reference_ends' => 'Interní reference nekončí na ":value"', - 'search_modifier_not_internal_reference_starts' => 'Interní reference nezačíná na ":value"', - 'search_modifier_external_url_is' => 'Externí URL je ":value"', - 'search_modifier_not_external_url_is' => 'Externí URL není ":value"', - 'search_modifier_external_url_contains' => 'Externí URL obsahuje ":value"', - 'search_modifier_not_external_url_contains' => 'Externí URL neobsahuje ":value"', - 'search_modifier_external_url_ends' => 'Externí URL končí na ":value"', - 'search_modifier_not_external_url_ends' => 'Externí URL nekončí na ":value"', - 'search_modifier_external_url_starts' => 'Externí URL začíná na ":value"', - 'search_modifier_not_external_url_starts' => 'Externí URL nezačíná na ":value"', - 'search_modifier_has_no_attachments' => 'Transakce nemá žádné přílohy', - 'search_modifier_not_has_no_attachments' => 'Transakce má přílohy', - 'search_modifier_not_has_attachments' => 'Transakce nemá žádné přílohy', - 'search_modifier_account_is_cash' => 'Alespoň jeden účet je hotovostní.', - 'search_modifier_not_account_is_cash' => 'Ani jeden účet není hotovostní účet.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'ID opakované transakce je ":value"', - 'search_modifier_not_recurrence_id' => 'ID opakované transakce není ":value"', - 'search_modifier_foreign_amount_is' => 'Zahraniční částka je ":value"', - 'search_modifier_not_foreign_amount_is' => 'Zahraniční částka není ":value"', - 'search_modifier_foreign_amount_less' => 'Zahraniční částka je menší než ":value"', - 'search_modifier_not_foreign_amount_more' => 'Zahraniční částka je menší než ":value"', - 'search_modifier_not_foreign_amount_less' => 'Zahraniční částka je vyšší než ":value"', - 'search_modifier_foreign_amount_more' => 'Zahraniční částka je vyšší než ":value"', - 'search_modifier_exists' => 'Transakce existuje (jakákoli transakce)', - 'search_modifier_not_exists' => 'Transakce neexistuje (žádná transakce)', + 'search_modifier_tag_is_not' => 'Žádný štítek není ":value"', + 'search_modifier_not_tag_is_not' => 'Štítek je „:value“', + 'search_modifier_account_is' => 'Alespoň jeden účet je ":value"', + 'search_modifier_not_account_is' => 'Ani jeden účet není ":value"', + 'search_modifier_account_contains' => 'Alespoň jeden účet obsahuje ":value"', + 'search_modifier_not_account_contains' => 'Ani jeden účet neobsahuje ":value"', + 'search_modifier_account_ends' => 'Alespoň jeden účet končí na ":value"', + 'search_modifier_not_account_ends' => 'Ani jeden účet nekončí na ":value"', + 'search_modifier_account_starts' => 'Alespoň jeden účet začíná na ":value"', + 'search_modifier_not_account_starts' => 'Ani jeden účet nezačíná na ":value"', + 'search_modifier_account_nr_is' => 'Alespoň jedno číslo účtu / IBAN je ":value"', + 'search_modifier_not_account_nr_is' => 'Ani jedno číslo účtu / IBAN není ":value"', + 'search_modifier_account_nr_contains' => 'Alespoň jedno číslo účtu / IBAN obsahuje ":value"', + 'search_modifier_not_account_nr_contains' => 'Ani jedno číslo účtu / IBAN neobsahuje ":value"', + 'search_modifier_account_nr_ends' => 'Alespoň jedno číslo účtu / IBAN končí na ":value"', + 'search_modifier_not_account_nr_ends' => 'Ani jedno číslo účtu / IBAN nekončí na ":value"', + 'search_modifier_account_nr_starts' => 'Alespoň jedno číslo účtu / IBAN začíná na ":value"', + 'search_modifier_not_account_nr_starts' => 'Ani jedno číslo účtu / IBAN nezačíná na ":value"', + 'search_modifier_category_contains' => 'Kategorie obsahuje ":value"', + 'search_modifier_not_category_contains' => 'Kategorie neobsahuje ":value"', + 'search_modifier_category_ends' => 'Kategorie končí na ":value"', + 'search_modifier_not_category_ends' => 'Kategorie nekončí na ":value"', + 'search_modifier_category_starts' => 'Kategorie začíná na ":value"', + 'search_modifier_not_category_starts' => 'Kategorie nezačíná na ":value"', + 'search_modifier_budget_contains' => 'Rozpočet obsahuje ":value"', + 'search_modifier_not_budget_contains' => 'Rozpočet neobsahuje ":value"', + 'search_modifier_budget_ends' => 'Rozpočet končí na ":value"', + 'search_modifier_not_budget_ends' => 'Rozpočet nekončí na ":value"', + 'search_modifier_budget_starts' => 'Rozpočet začíná na ":value"', + 'search_modifier_not_budget_starts' => 'Rozpočet nezačíná na ":value"', + 'search_modifier_bill_contains' => 'Účet obsahuje ":value"', + 'search_modifier_not_bill_contains' => 'Účet neobsahuje ":value"', + 'search_modifier_bill_ends' => 'Účet končí na ":value"', + 'search_modifier_not_bill_ends' => 'Účet nekončí na ":value"', + 'search_modifier_bill_starts' => 'Účet začíná na ":value"', + 'search_modifier_not_bill_starts' => 'Účet nezačíná na ":value"', + 'search_modifier_external_id_contains' => 'Externí ID obsahuje ":value"', + 'search_modifier_not_external_id_contains' => 'Externí ID neobsahuje ":value"', + 'search_modifier_external_id_ends' => 'Externí ID končí na ":value"', + 'search_modifier_not_external_id_ends' => 'Externí ID nekončí na ":value"', + 'search_modifier_external_id_starts' => 'Externí ID začíná na ":value"', + 'search_modifier_not_external_id_starts' => 'Externí ID nezačíná na ":value"', + 'search_modifier_internal_reference_contains' => 'Interní reference obsahuje ":value"', + 'search_modifier_not_internal_reference_contains' => 'Interní reference neobsahuje ":value"', + 'search_modifier_internal_reference_ends' => 'Interní reference končí na ":value"', + 'search_modifier_internal_reference_starts' => 'Interní reference začíná na ":value"', + 'search_modifier_not_internal_reference_ends' => 'Interní reference nekončí na ":value"', + 'search_modifier_not_internal_reference_starts' => 'Interní reference nezačíná na ":value"', + 'search_modifier_external_url_is' => 'Externí URL je ":value"', + 'search_modifier_not_external_url_is' => 'Externí URL není ":value"', + 'search_modifier_external_url_contains' => 'Externí URL obsahuje ":value"', + 'search_modifier_not_external_url_contains' => 'Externí URL neobsahuje ":value"', + 'search_modifier_external_url_ends' => 'Externí URL končí na ":value"', + 'search_modifier_not_external_url_ends' => 'Externí URL nekončí na ":value"', + 'search_modifier_external_url_starts' => 'Externí URL začíná na ":value"', + 'search_modifier_not_external_url_starts' => 'Externí URL nezačíná na ":value"', + 'search_modifier_has_no_attachments' => 'Transakce nemá žádné přílohy', + 'search_modifier_not_has_no_attachments' => 'Transakce má přílohy', + 'search_modifier_not_has_attachments' => 'Transakce nemá žádné přílohy', + 'search_modifier_account_is_cash' => 'Alespoň jeden účet je hotovostní.', + 'search_modifier_not_account_is_cash' => 'Ani jeden účet není hotovostní účet.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'ID opakované transakce je ":value"', + 'search_modifier_not_recurrence_id' => 'ID opakované transakce není ":value"', + 'search_modifier_foreign_amount_is' => 'Zahraniční částka je ":value"', + 'search_modifier_not_foreign_amount_is' => 'Zahraniční částka není ":value"', + 'search_modifier_foreign_amount_less' => 'Zahraniční částka je menší než ":value"', + 'search_modifier_not_foreign_amount_more' => 'Zahraniční částka je menší než ":value"', + 'search_modifier_not_foreign_amount_less' => 'Zahraniční částka je vyšší než ":value"', + 'search_modifier_foreign_amount_more' => 'Zahraniční částka je vyšší než ":value"', + 'search_modifier_exists' => 'Transakce existuje (jakákoli transakce)', + 'search_modifier_not_exists' => 'Transakce neexistuje (žádná transakce)', // date fields - 'search_modifier_interest_date_on' => 'Datum zúročení transakce je ":value"', - 'search_modifier_not_interest_date_on' => 'Datum zúročení transakce není ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Datum splatnosti transakce je v roce ":value"', - 'search_modifier_due_date_on_month' => 'Datum splatnosti transakce je v měsíci ":value"', - 'search_modifier_due_date_on_day' => 'Datum splatnosti transakce je v ":value". dni měsíce', - 'search_modifier_not_due_date_on_year' => 'Datum splatnosti transakce není v roce ":value"', - 'search_modifier_not_due_date_on_month' => 'Datum splatnosti transakce není v měsíci ":value"', - 'search_modifier_not_due_date_on_day' => 'Datum splatnosti transakce není v ":value". dni měsíce', - 'search_modifier_due_date_before_year' => 'Datum splatnosti transakce je před nebo v roce ":value"', - 'search_modifier_due_date_before_month' => 'Datum splatnosti transakce je před nebo v měsíci ":value"', - 'search_modifier_due_date_before_day' => 'Datum splatnosti transakce je před nebo v ":value". dni měsíce', - 'search_modifier_due_date_after_year' => 'Datum splatnosti transakce je po nebo v roce ":value"', - 'search_modifier_due_date_after_month' => 'Datum splatnosti transakce je po nebo v měsíci ":value"', - 'search_modifier_due_date_after_day' => 'Datum splatnosti transakce je po nebo v ":value". dni měsíce', - 'search_modifier_payment_date_on_year' => 'Datum platby transakce je v roce ":value"', - 'search_modifier_payment_date_on_month' => 'Datum platby transakce je v měsíci ":value"', - 'search_modifier_payment_date_on_day' => 'Datum platby transakce je v ":value". dni měsíce', - 'search_modifier_not_payment_date_on_year' => 'Datum platby transakce není v roce ":value"', - 'search_modifier_not_payment_date_on_month' => 'Datum platby transakce není v měsíci ":value"', - 'search_modifier_not_payment_date_on_day' => 'Datum platby transakce není v ":value". den měsíce', - 'search_modifier_payment_date_before_year' => 'Datum platby transakce je před nebo v roce ":value"', - 'search_modifier_payment_date_before_month' => 'Datum platby transakce je před nebo v měsíci ":value"', - 'search_modifier_payment_date_before_day' => 'Datum platby transakce je před nebo v ":value". dni měsíce', - 'search_modifier_payment_date_after_year' => 'Datum platby transakce je po nebo v roce ":value"', - 'search_modifier_payment_date_after_month' => 'Datum platby transakce je po nebo v měsíci ":value"', - 'search_modifier_payment_date_after_day' => 'Datum platby transakce je po nebo v ":value". dni měsíce', - 'search_modifier_invoice_date_on_year' => 'Datum vystavení faktury transakce je v roce ":value"', - 'search_modifier_invoice_date_on_month' => 'Datum vystavení faktury transakce je v měsíci ":value"', - 'search_modifier_invoice_date_on_day' => 'Datum vystavení faktury transakce je v ":value". dni měsíce', - 'search_modifier_not_invoice_date_on_year' => 'Datum vystavení faktury transakce není v roce ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Datum vystavení faktury transakce není v měsíci ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Datum vystavení faktury transakce není v ":value". dni měsíce', - 'search_modifier_invoice_date_before_year' => 'Datum vystavení faktury transakce je před nebo v roce ":value"', - 'search_modifier_invoice_date_before_month' => 'Datum vystavení faktury transakce je před nebo v měsíci ":value"', - 'search_modifier_invoice_date_before_day' => 'Datum vystavení faktury transakce je před nebo v ":value". dni měsíce', - 'search_modifier_invoice_date_after_year' => 'Datum vystavení faktury transakce je po nebo v roce ":value"', - 'search_modifier_invoice_date_after_month' => 'Datum vystavení faktury transakce je po nebo v měsíci ":value"', - 'search_modifier_invoice_date_after_day' => 'Datum vystavení faktury transakce je po nebo v ":value". dni měsíce', + 'search_modifier_interest_date_on' => 'Datum zúročení transakce je ":value"', + 'search_modifier_not_interest_date_on' => 'Datum zúročení transakce není ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Datum splatnosti transakce je v roce ":value"', + 'search_modifier_due_date_on_month' => 'Datum splatnosti transakce je v měsíci ":value"', + 'search_modifier_due_date_on_day' => 'Datum splatnosti transakce je v ":value". dni měsíce', + 'search_modifier_not_due_date_on_year' => 'Datum splatnosti transakce není v roce ":value"', + 'search_modifier_not_due_date_on_month' => 'Datum splatnosti transakce není v měsíci ":value"', + 'search_modifier_not_due_date_on_day' => 'Datum splatnosti transakce není v ":value". dni měsíce', + 'search_modifier_due_date_before_year' => 'Datum splatnosti transakce je před nebo v roce ":value"', + 'search_modifier_due_date_before_month' => 'Datum splatnosti transakce je před nebo v měsíci ":value"', + 'search_modifier_due_date_before_day' => 'Datum splatnosti transakce je před nebo v ":value". dni měsíce', + 'search_modifier_due_date_after_year' => 'Datum splatnosti transakce je po nebo v roce ":value"', + 'search_modifier_due_date_after_month' => 'Datum splatnosti transakce je po nebo v měsíci ":value"', + 'search_modifier_due_date_after_day' => 'Datum splatnosti transakce je po nebo v ":value". dni měsíce', + 'search_modifier_payment_date_on_year' => 'Datum platby transakce je v roce ":value"', + 'search_modifier_payment_date_on_month' => 'Datum platby transakce je v měsíci ":value"', + 'search_modifier_payment_date_on_day' => 'Datum platby transakce je v ":value". dni měsíce', + 'search_modifier_not_payment_date_on_year' => 'Datum platby transakce není v roce ":value"', + 'search_modifier_not_payment_date_on_month' => 'Datum platby transakce není v měsíci ":value"', + 'search_modifier_not_payment_date_on_day' => 'Datum platby transakce není v ":value". den měsíce', + 'search_modifier_payment_date_before_year' => 'Datum platby transakce je před nebo v roce ":value"', + 'search_modifier_payment_date_before_month' => 'Datum platby transakce je před nebo v měsíci ":value"', + 'search_modifier_payment_date_before_day' => 'Datum platby transakce je před nebo v ":value". dni měsíce', + 'search_modifier_payment_date_after_year' => 'Datum platby transakce je po nebo v roce ":value"', + 'search_modifier_payment_date_after_month' => 'Datum platby transakce je po nebo v měsíci ":value"', + 'search_modifier_payment_date_after_day' => 'Datum platby transakce je po nebo v ":value". dni měsíce', + 'search_modifier_invoice_date_on_year' => 'Datum vystavení faktury transakce je v roce ":value"', + 'search_modifier_invoice_date_on_month' => 'Datum vystavení faktury transakce je v měsíci ":value"', + 'search_modifier_invoice_date_on_day' => 'Datum vystavení faktury transakce je v ":value". dni měsíce', + 'search_modifier_not_invoice_date_on_year' => 'Datum vystavení faktury transakce není v roce ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Datum vystavení faktury transakce není v měsíci ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Datum vystavení faktury transakce není v ":value". dni měsíce', + 'search_modifier_invoice_date_before_year' => 'Datum vystavení faktury transakce je před nebo v roce ":value"', + 'search_modifier_invoice_date_before_month' => 'Datum vystavení faktury transakce je před nebo v měsíci ":value"', + 'search_modifier_invoice_date_before_day' => 'Datum vystavení faktury transakce je před nebo v ":value". dni měsíce', + 'search_modifier_invoice_date_after_year' => 'Datum vystavení faktury transakce je po nebo v roce ":value"', + 'search_modifier_invoice_date_after_month' => 'Datum vystavení faktury transakce je po nebo v měsíci ":value"', + 'search_modifier_invoice_date_after_day' => 'Datum vystavení faktury transakce je po nebo v ":value". dni měsíce', // other dates - 'search_modifier_updated_at_on_year' => 'Transakce byla naposledy aktualizována v roce ":value"', - 'search_modifier_updated_at_on_month' => 'Transakce byla naposledy aktualizována v měsíci ":value"', - 'search_modifier_updated_at_on_day' => 'Transakce byla naposledy aktualizována v ":value". dni měsíce', - 'search_modifier_not_updated_at_on_year' => 'Transakce nebyla naposledy aktualizována v roce ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transakce nebyla naposledy aktualizována v měsíci ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transakce nebyla naposledy aktualizována v ":value". dni měsíce', - 'search_modifier_updated_at_before_year' => 'Transakce byla naposledy aktualizována v roce nebo před rokem ":value"', - 'search_modifier_updated_at_before_month' => 'Transakce byla naposledy aktualizována v měsíci nebo dříve ":value"', - 'search_modifier_updated_at_before_day' => 'Transakce byla naposledy aktualizována před nebo v ":value". dni měsíce', - 'search_modifier_updated_at_after_year' => 'Transakce byla naposledy aktualizována v roce nebo po roce ":value"', - 'search_modifier_updated_at_after_month' => 'Transakce byla naposledy aktualizována v měsíci nebo po měsíci ":value"', - 'search_modifier_updated_at_after_day' => 'Transakce byla naposledy aktualizována po nebo v ":value". dni měsíce', - 'search_modifier_created_at_on_year' => 'Transakce byla vytvořena v roce ":value"', - 'search_modifier_created_at_on_month' => 'Transakce byla vytvořena v měsíci ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transakce byla vytvořena v roce nebo po roce ":value"', - 'search_modifier_created_at_after_month' => 'Transakce byla vytvořena v měsíci nebo po měsíci ":value"', - 'search_modifier_created_at_after_day' => 'Transakce byla vytvořena v nebo po :value. dni měsíce', - 'search_modifier_interest_date_before' => 'Datum zúročení je v nebo před ":value"', - 'search_modifier_interest_date_after' => 'Datum zúročení transakce je v nebo po ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Datum splatnosti transakce je ":value"', - 'search_modifier_not_due_date_on' => 'Datum splatnosti transakce není v ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transakce byla naposledy aktualizována v roce ":value"', + 'search_modifier_updated_at_on_month' => 'Transakce byla naposledy aktualizována v měsíci ":value"', + 'search_modifier_updated_at_on_day' => 'Transakce byla naposledy aktualizována v ":value". dni měsíce', + 'search_modifier_not_updated_at_on_year' => 'Transakce nebyla naposledy aktualizována v roce ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transakce nebyla naposledy aktualizována v měsíci ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transakce nebyla naposledy aktualizována v ":value". dni měsíce', + 'search_modifier_updated_at_before_year' => 'Transakce byla naposledy aktualizována v roce nebo před rokem ":value"', + 'search_modifier_updated_at_before_month' => 'Transakce byla naposledy aktualizována v měsíci nebo dříve ":value"', + 'search_modifier_updated_at_before_day' => 'Transakce byla naposledy aktualizována před nebo v ":value". dni měsíce', + 'search_modifier_updated_at_after_year' => 'Transakce byla naposledy aktualizována v roce nebo po roce ":value"', + 'search_modifier_updated_at_after_month' => 'Transakce byla naposledy aktualizována v měsíci nebo po měsíci ":value"', + 'search_modifier_updated_at_after_day' => 'Transakce byla naposledy aktualizována po nebo v ":value". dni měsíce', + 'search_modifier_created_at_on_year' => 'Transakce byla vytvořena v roce ":value"', + 'search_modifier_created_at_on_month' => 'Transakce byla vytvořena v měsíci ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transakce byla vytvořena v roce nebo po roce ":value"', + 'search_modifier_created_at_after_month' => 'Transakce byla vytvořena v měsíci nebo po měsíci ":value"', + 'search_modifier_created_at_after_day' => 'Transakce byla vytvořena v nebo po :value. dni měsíce', + 'search_modifier_interest_date_before' => 'Datum zúročení je v nebo před ":value"', + 'search_modifier_interest_date_after' => 'Datum zúročení transakce je v nebo po ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Datum splatnosti transakce je ":value"', + 'search_modifier_not_due_date_on' => 'Datum splatnosti transakce není v ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Žádný název přílohy nezačíná na ":value"', - 'search_modifier_not_attachment_name_ends' => 'Žádný název přílohy nekončí na „:value“', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Žádný název přílohy nezačíná na ":value"', + 'search_modifier_not_attachment_name_ends' => 'Žádný název přílohy nekončí na „:value“', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => 'Hledat', - 'search_box_intro' => 'Vítejte ve funkci vyhledávání ve Firefly III. Vyhledávací dotaz zadejte do kolonky. Protože vyhledávání poskytuje opravdu mnoho pokročilých funkcí, bude užitečné přečíst si nápovědu.', - 'search_error' => 'Chyba při hledání', - 'search_searching' => 'Hledání…', - 'search_results' => 'Výsledky hledání', + 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => 'Hledat', + 'search_box_intro' => 'Vítejte ve funkci vyhledávání ve Firefly III. Vyhledávací dotaz zadejte do kolonky. Protože vyhledávání poskytuje opravdu mnoho pokročilých funkcí, bude užitečné přečíst si nápovědu.', + 'search_error' => 'Chyba při hledání', + 'search_searching' => 'Hledání…', + 'search_results' => 'Výsledky hledání', // repeat frequencies: - 'repeat_freq_yearly' => 'ročně', - 'repeat_freq_half-year' => 'půloročně', - 'repeat_freq_quarterly' => 'čtvrtletně', - 'repeat_freq_monthly' => 'měsíčně', - 'repeat_freq_weekly' => 'týdně', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'týdně', - 'quarterly' => 'čtvrtletně', - 'half-year' => 'půlročně', - 'yearly' => 'ročně', + 'repeat_freq_yearly' => 'ročně', + 'repeat_freq_half-year' => 'půloročně', + 'repeat_freq_quarterly' => 'čtvrtletně', + 'repeat_freq_monthly' => 'měsíčně', + 'repeat_freq_weekly' => 'týdně', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'týdně', + 'quarterly' => 'čtvrtletně', + 'half-year' => 'půlročně', + 'yearly' => 'ročně', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Pravidla', - 'rule_name' => 'Název pravidla', - 'rule_triggers' => 'Pravidlo se uplatní když', - 'rule_actions' => 'Pravidlo bude', - 'new_rule' => 'Nové pravidlo', - 'new_rule_group' => 'Nová skupina pravidel', - 'rule_priority_up' => 'Zvýšit prioritu pravidla', - 'rule_priority_down' => 'Snížit prioritu pravidla', - 'make_new_rule_group' => 'Vytvořit novou skupinu pravidel', - 'store_new_rule_group' => 'Uložit novou skupinu pravidel', - 'created_new_rule_group' => 'Nová skupina pravidel „:title“ uložena!', - 'updated_rule_group' => 'Skupina pravidel „:title“ úspěšně aktualizována.', - 'edit_rule_group' => 'Upravit skupinu pravidel „:title“', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => 'Smazat skupinu pravidel „:title“', - 'deleted_rule_group' => 'Skupina pravidel „:title“ smazána', - 'update_rule_group' => 'Aktualizovat skupinu pravidel', - 'no_rules_in_group' => 'Tato skupina neobsahuje žádná pravidla', - 'move_rule_group_up' => 'Posunout skupinu pravidel nahoru', - 'move_rule_group_down' => 'Posunout skupinu pravidel dolů', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Vytvořit nové pravidlo ve skupině pravidel „:title“', - 'make_new_rule_no_group' => 'Vytvořit nové pravidlo', - 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => 'striktní pravidlo', - 'rule_is_not_strict' => 'nestriktní pravidlo', - 'rule_help_stop_processing' => 'Pokud toto zaškrtnete, následná pravidla v této skupině nebudou vykonána.', - 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', - 'rule_help_active' => 'Neaktivní pravidla nebudou nikdy spuštěna.', - 'stored_new_rule' => 'Uloženo nové pravidlo nazvané „:title“', - 'deleted_rule' => 'Smazáno pravidlo nazvané „:title“', - 'store_new_rule' => 'Uložit nové pravidlo', - 'updated_rule' => 'Pravidlo nazvané „:title“ aktualizováno', - 'default_rule_group_name' => 'Výchozí pravidla', - 'default_rule_group_description' => 'Všechna vaše pravidla nenacházející se v konkrétní skupině.', - 'trigger' => 'Spouštěč', - 'trigger_value' => 'Spouštěč při hodnotě', - 'stop_processing_other_triggers' => 'Zastavit zpracovávání ostatních spouštěčů', - 'add_rule_trigger' => 'Přidat nový spouštěč', - 'action' => 'Akce', - 'action_value' => 'Hodnota akce', - 'stop_executing_other_actions' => 'Zastavit vykonávání ostatních akcí', - 'add_rule_action' => 'Přidat novou akci', - 'edit_rule' => 'Upravit pravidlo „:title“', - 'delete_rule' => 'Smazat pravidlo „:title“', - 'update_rule' => 'Aktualizovat pravidlo', - 'test_rule_triggers' => 'Zobrazit odpovídající transakce', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => 'Nebyly poskytnuty platné spouštěče.', - 'apply_rule_selection' => 'Uplatnit pravidlo „:title“ na vybrané transakce', - 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', - 'include_transactions_from_accounts' => 'Zahrnout transakce z těchto účtů', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Vykonat', - 'apply_rule_group_selection' => 'Uplatnit skupinu pravidel „:title“ na vybrané transakce', - 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', - 'applied_rule_group_selection' => 'Skupina pravidel „:title“ byla uplatněna na váš výběr.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Pravidla', + 'rule_name' => 'Název pravidla', + 'rule_triggers' => 'Pravidlo se uplatní když', + 'rule_actions' => 'Pravidlo bude', + 'new_rule' => 'Nové pravidlo', + 'new_rule_group' => 'Nová skupina pravidel', + 'rule_priority_up' => 'Zvýšit prioritu pravidla', + 'rule_priority_down' => 'Snížit prioritu pravidla', + 'make_new_rule_group' => 'Vytvořit novou skupinu pravidel', + 'store_new_rule_group' => 'Uložit novou skupinu pravidel', + 'created_new_rule_group' => 'Nová skupina pravidel „:title“ uložena!', + 'updated_rule_group' => 'Skupina pravidel „:title“ úspěšně aktualizována.', + 'edit_rule_group' => 'Upravit skupinu pravidel „:title“', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => 'Smazat skupinu pravidel „:title“', + 'deleted_rule_group' => 'Skupina pravidel „:title“ smazána', + 'update_rule_group' => 'Aktualizovat skupinu pravidel', + 'no_rules_in_group' => 'Tato skupina neobsahuje žádná pravidla', + 'move_rule_group_up' => 'Posunout skupinu pravidel nahoru', + 'move_rule_group_down' => 'Posunout skupinu pravidel dolů', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Vytvořit nové pravidlo ve skupině pravidel „:title“', + 'make_new_rule_no_group' => 'Vytvořit nové pravidlo', + 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => 'striktní pravidlo', + 'rule_is_not_strict' => 'nestriktní pravidlo', + 'rule_help_stop_processing' => 'Pokud toto zaškrtnete, následná pravidla v této skupině nebudou vykonána.', + 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', + 'rule_help_active' => 'Neaktivní pravidla nebudou nikdy spuštěna.', + 'stored_new_rule' => 'Uloženo nové pravidlo nazvané „:title“', + 'deleted_rule' => 'Smazáno pravidlo nazvané „:title“', + 'store_new_rule' => 'Uložit nové pravidlo', + 'updated_rule' => 'Pravidlo nazvané „:title“ aktualizováno', + 'default_rule_group_name' => 'Výchozí pravidla', + 'default_rule_group_description' => 'Všechna vaše pravidla nenacházející se v konkrétní skupině.', + 'trigger' => 'Spouštěč', + 'trigger_value' => 'Spouštěč při hodnotě', + 'stop_processing_other_triggers' => 'Zastavit zpracovávání ostatních spouštěčů', + 'add_rule_trigger' => 'Přidat nový spouštěč', + 'action' => 'Akce', + 'action_value' => 'Hodnota akce', + 'stop_executing_other_actions' => 'Zastavit vykonávání ostatních akcí', + 'add_rule_action' => 'Přidat novou akci', + 'edit_rule' => 'Upravit pravidlo „:title“', + 'delete_rule' => 'Smazat pravidlo „:title“', + 'update_rule' => 'Aktualizovat pravidlo', + 'test_rule_triggers' => 'Zobrazit odpovídající transakce', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => 'Nebyly poskytnuty platné spouštěče.', + 'apply_rule_selection' => 'Uplatnit pravidlo „:title“ na vybrané transakce', + 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', + 'include_transactions_from_accounts' => 'Zahrnout transakce z těchto účtů', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Vykonat', + 'apply_rule_group_selection' => 'Uplatnit skupinu pravidel „:title“ na vybrané transakce', + 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', + 'applied_rule_group_selection' => 'Skupina pravidel „:title“ byla uplatněna na váš výběr.', // actions and triggers - 'rule_trigger_store_journal' => 'Kdy je transakce vytvořena', - 'rule_trigger_update_journal' => 'Kdy je transakce aktualizována', - 'rule_trigger_user_action' => 'Uživatelská akce je „:trigger_value“', + 'rule_trigger_store_journal' => 'Kdy je transakce vytvořena', + 'rule_trigger_update_journal' => 'Kdy je transakce aktualizována', + 'rule_trigger_user_action' => 'Uživatelská akce je „:trigger_value“', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transakce je typu…', - 'rule_trigger_transaction_type' => 'Transakce je typu „:trigger_value“', - 'rule_trigger_category_is_choice' => 'Kategorie je…', - 'rule_trigger_category_is' => 'Kategorie je „:trigger_value“', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Popis začíná na…', - 'rule_trigger_description_starts' => 'Popis začíná na „:trigger_value“', - 'rule_trigger_description_ends_choice' => 'Popis končí na…', - 'rule_trigger_description_ends' => 'Popis končí na „:trigger_value“', - 'rule_trigger_description_contains_choice' => 'Popis obsahuje…', - 'rule_trigger_description_contains' => 'Popis obsahuje „:trigger_value“', - 'rule_trigger_description_is_choice' => 'Popis je…', - 'rule_trigger_description_is' => 'Popis je „:trigger_value“', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Datum transakce je před..', - 'rule_trigger_date_before' => 'Datum transakce je před „:trigger_value“', - 'rule_trigger_date_after_choice' => 'Datum transakce je po..', - 'rule_trigger_date_after' => 'Datum transakce je po „:trigger_value“', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Rozpočet je…', - 'rule_trigger_budget_is' => 'Rozpočet je „:trigger_value“', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Měna transakce je…', - 'rule_trigger_currency_is' => 'Měna transakce je „:trigger_value“', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Má alespoň tolik příloh', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Nemá žádnou kategorii', - 'rule_trigger_has_no_category' => 'Transakce nemá žádnou kategorii', - 'rule_trigger_has_any_category_choice' => 'Má (libovolnou) kategorii', - 'rule_trigger_has_any_category' => 'Transakce má (libovolnou) kategorii', - 'rule_trigger_has_no_budget_choice' => 'Nemá žádný rozpočet', - 'rule_trigger_has_no_budget' => 'Transakce nemá žádný rozpočet', - 'rule_trigger_has_any_budget_choice' => 'Má (libovolný) rozpočet', - 'rule_trigger_has_any_budget' => 'Transakce má (libovolný) rozpočet', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Nemá žádné štítky', - 'rule_trigger_has_no_tag' => 'Transakce nemá žádné štítky', - 'rule_trigger_has_any_tag_choice' => 'Má jeden a více štítků', - 'rule_trigger_has_any_tag' => 'Transakce má jeden a více štítků', - 'rule_trigger_any_notes_choice' => 'Má (jakékoli) poznámky', - 'rule_trigger_any_notes' => 'Transakce má (jakékoli) poznámky', - 'rule_trigger_no_notes_choice' => 'Nemá žádné poznámky', - 'rule_trigger_no_notes' => 'Transakce nemá žádné poznámky', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transakce je typu…', + 'rule_trigger_transaction_type' => 'Transakce je typu „:trigger_value“', + 'rule_trigger_category_is_choice' => 'Kategorie je…', + 'rule_trigger_category_is' => 'Kategorie je „:trigger_value“', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Popis začíná na…', + 'rule_trigger_description_starts' => 'Popis začíná na „:trigger_value“', + 'rule_trigger_description_ends_choice' => 'Popis končí na…', + 'rule_trigger_description_ends' => 'Popis končí na „:trigger_value“', + 'rule_trigger_description_contains_choice' => 'Popis obsahuje…', + 'rule_trigger_description_contains' => 'Popis obsahuje „:trigger_value“', + 'rule_trigger_description_is_choice' => 'Popis je…', + 'rule_trigger_description_is' => 'Popis je „:trigger_value“', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Datum transakce je před..', + 'rule_trigger_date_before' => 'Datum transakce je před „:trigger_value“', + 'rule_trigger_date_after_choice' => 'Datum transakce je po..', + 'rule_trigger_date_after' => 'Datum transakce je po „:trigger_value“', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Rozpočet je…', + 'rule_trigger_budget_is' => 'Rozpočet je „:trigger_value“', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Měna transakce je…', + 'rule_trigger_currency_is' => 'Měna transakce je „:trigger_value“', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Má alespoň tolik příloh', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Nemá žádnou kategorii', + 'rule_trigger_has_no_category' => 'Transakce nemá žádnou kategorii', + 'rule_trigger_has_any_category_choice' => 'Má (libovolnou) kategorii', + 'rule_trigger_has_any_category' => 'Transakce má (libovolnou) kategorii', + 'rule_trigger_has_no_budget_choice' => 'Nemá žádný rozpočet', + 'rule_trigger_has_no_budget' => 'Transakce nemá žádný rozpočet', + 'rule_trigger_has_any_budget_choice' => 'Má (libovolný) rozpočet', + 'rule_trigger_has_any_budget' => 'Transakce má (libovolný) rozpočet', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Nemá žádné štítky', + 'rule_trigger_has_no_tag' => 'Transakce nemá žádné štítky', + 'rule_trigger_has_any_tag_choice' => 'Má jeden a více štítků', + 'rule_trigger_has_any_tag' => 'Transakce má jeden a více štítků', + 'rule_trigger_any_notes_choice' => 'Má (jakékoli) poznámky', + 'rule_trigger_any_notes' => 'Transakce má (jakékoli) poznámky', + 'rule_trigger_no_notes_choice' => 'Nemá žádné poznámky', + 'rule_trigger_no_notes' => 'Transakce nemá žádné poznámky', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Nastavit kategorii na „:action_value“', - 'rule_action_clear_category' => 'Vyčistit kategorii', - 'rule_action_set_budget' => 'Nastavit rozpočet na „:action_value“', - 'rule_action_clear_budget' => 'Vyčistit rozpočet', - 'rule_action_add_tag' => 'Přidat štítek „:action_value“', - 'rule_action_remove_tag' => 'Odebrat štítek „:action_value“', - 'rule_action_remove_all_tags' => 'Odstranit veškeré štítky', - 'rule_action_set_description' => 'Nastavit pospis na „:action_value“', - 'rule_action_append_description' => 'Připojit popis s „:action_value“', - 'rule_action_prepend_description' => 'Před popis přidat „:action_value“', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Vyčistit jakékoli kategorie', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Vyčistit jakýkoli rozpočet', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Odebrat veškeré štítky', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Nastavit účet na :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Nastavit cílový účet na :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Přidat za poznámky „:action_value“', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Přidat před poznámky „:action_value“', - 'rule_action_clear_notes_choice' => 'Odstranit všechny poznámky', - 'rule_action_clear_notes' => 'Odstranit všechny poznámky', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link to bill ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Nastavit poznámky na „:action_value“', - 'rule_action_convert_deposit_choice' => 'Přeměnit tuto transakci na vklad', - 'rule_action_convert_deposit' => 'Přeměnit tuto transakci z vkladu na „:action_value“', - 'rule_action_convert_withdrawal_choice' => 'Přeměnit transakci na výběr', - 'rule_action_convert_withdrawal' => 'Přeměnit tuto transakci na vklad do „:action_value“', - 'rule_action_convert_transfer_choice' => 'Přeměnit tuto transakci na převod', - 'rule_action_convert_transfer' => 'Přeměnit tuto transakci na převod s „:action_value“', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Rule group for bills', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Create a new rule for bill ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Rule for bill ":name"', - 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Nastavit kategorii na „:action_value“', + 'rule_action_clear_category' => 'Vyčistit kategorii', + 'rule_action_set_budget' => 'Nastavit rozpočet na „:action_value“', + 'rule_action_clear_budget' => 'Vyčistit rozpočet', + 'rule_action_add_tag' => 'Přidat štítek „:action_value“', + 'rule_action_remove_tag' => 'Odebrat štítek „:action_value“', + 'rule_action_remove_all_tags' => 'Odstranit veškeré štítky', + 'rule_action_set_description' => 'Nastavit pospis na „:action_value“', + 'rule_action_append_description' => 'Připojit popis s „:action_value“', + 'rule_action_prepend_description' => 'Před popis přidat „:action_value“', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Vyčistit jakékoli kategorie', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Vyčistit jakýkoli rozpočet', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Odebrat veškeré štítky', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Nastavit účet na :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Nastavit cílový účet na :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Přidat za poznámky „:action_value“', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Přidat před poznámky „:action_value“', + 'rule_action_clear_notes_choice' => 'Odstranit všechny poznámky', + 'rule_action_clear_notes' => 'Odstranit všechny poznámky', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link to bill ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Nastavit poznámky na „:action_value“', + 'rule_action_convert_deposit_choice' => 'Přeměnit tuto transakci na vklad', + 'rule_action_convert_deposit' => 'Přeměnit tuto transakci z vkladu na „:action_value“', + 'rule_action_convert_withdrawal_choice' => 'Přeměnit transakci na výběr', + 'rule_action_convert_withdrawal' => 'Přeměnit tuto transakci na vklad do „:action_value“', + 'rule_action_convert_transfer_choice' => 'Přeměnit tuto transakci na převod', + 'rule_action_convert_transfer' => 'Přeměnit tuto transakci na převod s „:action_value“', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Rule group for bills', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Create a new rule for bill ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Rule for bill ":name"', + 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => 'Uložit nový štítek', - 'update_tag' => 'Aktualizovat štítek', - 'no_location_set' => 'Není nastaveno žádné umístění.', - 'meta_data' => 'Metadata', - 'location' => 'Umístění', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Bez data', - 'result' => 'Výsledek', - 'sums_apply_to_range' => 'Všechny součty se vztahují na vybraný rozsah', - 'mapbox_api_key' => 'Pro použití mapy, získejte klíč k aplikačnímu programovému rozhraní Mapbox. Otevřete soubor .env a tento kód zadejte za MAPBOX_API_KEY=.', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Vymazat umístění', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Uložit nový štítek', + 'update_tag' => 'Aktualizovat štítek', + 'no_location_set' => 'Není nastaveno žádné umístění.', + 'meta_data' => 'Metadata', + 'location' => 'Umístění', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Bez data', + 'result' => 'Výsledek', + 'sums_apply_to_range' => 'Všechny součty se vztahují na vybraný rozsah', + 'mapbox_api_key' => 'Pro použití mapy, získejte klíč k aplikačnímu programovému rozhraní Mapbox. Otevřete soubor .env a tento kód zadejte za MAPBOX_API_KEY=.', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Vymazat umístění', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(rovno jazyku)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Účty na domovské obrazovce', - 'pref_home_screen_accounts_help' => 'Které účty zobrazit na domovské stránce?', - 'pref_view_range' => 'Zobrazit rozsah', - 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', - 'pref_1D' => 'Jeden den', - 'pref_1W' => 'Jeden týden', - 'pref_1M' => 'Jeden měsíc', - 'pref_3M' => 'Tři měsíce (čtvrtletí)', - 'pref_6M' => 'Šest měsíců', - 'pref_1Y' => 'Jeden rok', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Jazyky', - 'pref_locale' => 'Místní nastavení', - 'pref_languages_help' => 'Firefly III podporuje několik jazyků – ve kterém ho chcete používat?', - 'pref_locale_help' => 'Firefly III vám umožňuje nastavit další lokální nastavení, jako je formátování měn, čísel a dat. Položky v tomto seznamu nemusí být podporovány vaším systémem. Firefly III nemá správné nastavení data pro každé lokální místo. Pro vylepšení mě kontaktujte.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => 'Nastavení fiskálního roku', - 'pref_custom_fiscal_year_label' => 'Zapnuto', - 'pref_custom_fiscal_year_help' => 'Pro země, ve kterých finanční rok nezačíná 1. ledna a tedy ani nekončí 31. prosince, je možné zapnutím tohoto určit den začátku a konce fiskálního roku', - 'pref_fiscal_year_start_label' => 'Fiscal year start date', - 'pref_two_factor_auth' => 'Dvoufázové ověření', - 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Zapnout dvoufázové ověření', - 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', - 'pref_two_factor_auth_remove_it' => 'Nezapomeňte účet odstranit z vaší ověřovací aplikace!', - 'pref_two_factor_auth_code' => 'Ověřit kód', - 'pref_two_factor_auth_code_help' => 'Naskenujte QR kód aplikací na vašem telefonu (jako například Authy nebo Google Authenticator) a zadejte aplikací vytvořený kód.', - 'pref_two_factor_auth_reset_code' => 'Resetovat ověřovací kód', - 'pref_two_factor_auth_disable_2fa' => 'Vypnout dvoufázové ověření', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => 'Uložit nastavení', - 'saved_preferences' => 'Předvolby uloženy!', - 'preferences_general' => 'Obecné', - 'preferences_frontpage' => 'Domovská obrazovka', - 'preferences_security' => 'Zabezpečení', - 'preferences_layout' => 'Rozvržení', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Zobrazovat vklady na domovské obrazovce', - 'pref_home_show_deposits_info' => 'Domovská obrazovka už zobrazuje vaše výdajové účty. Mají být zobrazovány také ty příjmové?', - 'pref_home_do_show_deposits' => 'Ano, zobrazit je', - 'successful_count' => 'z toho :count úspěšné', - 'list_page_size_title' => 'Velikost stránky', - 'list_page_size_help' => 'Jakýkoli seznam věcí (účty, transakce, atd) zobrazuje nejvýše tolik na stránku.', - 'list_page_size_label' => 'Velikost stránky', - 'between_dates' => '(:start a :end)', - 'pref_optional_fields_transaction' => 'Volitelné kolonky pro transakce', - 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', - 'optional_tj_date_fields' => 'Kolonky pro datum', - 'optional_tj_other_fields' => 'Další pole', - 'optional_tj_attachment_fields' => 'Kolonky příloh', - 'pref_optional_tj_interest_date' => 'Úrokové datum', - 'pref_optional_tj_book_date' => 'Datum rezervace', - 'pref_optional_tj_process_date' => 'Datum zpracování', - 'pref_optional_tj_due_date' => 'Datum splatnosti', - 'pref_optional_tj_payment_date' => 'Datum zaplacení', - 'pref_optional_tj_invoice_date' => 'Datum vystavení', - 'pref_optional_tj_internal_reference' => 'Interní reference', - 'pref_optional_tj_notes' => 'Poznámky', - 'pref_optional_tj_attachments' => 'Přílohy', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Poloha', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Datumy', - 'optional_field_meta_business' => 'Business', - 'optional_field_attachments' => 'Přílohy', - 'optional_field_meta_data' => 'Volitelná metadata', - 'external_url' => 'Externí URL adresa', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(rovno jazyku)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Účty na domovské obrazovce', + 'pref_home_screen_accounts_help' => 'Které účty zobrazit na domovské stránce?', + 'pref_view_range' => 'Zobrazit rozsah', + 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', + 'pref_1D' => 'Jeden den', + 'pref_1W' => 'Jeden týden', + 'pref_1M' => 'Jeden měsíc', + 'pref_3M' => 'Tři měsíce (čtvrtletí)', + 'pref_6M' => 'Šest měsíců', + 'pref_1Y' => 'Jeden rok', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Jazyky', + 'pref_locale' => 'Místní nastavení', + 'pref_languages_help' => 'Firefly III podporuje několik jazyků – ve kterém ho chcete používat?', + 'pref_locale_help' => 'Firefly III vám umožňuje nastavit další lokální nastavení, jako je formátování měn, čísel a dat. Položky v tomto seznamu nemusí být podporovány vaším systémem. Firefly III nemá správné nastavení data pro každé lokální místo. Pro vylepšení mě kontaktujte.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => 'Nastavení fiskálního roku', + 'pref_custom_fiscal_year_label' => 'Zapnuto', + 'pref_custom_fiscal_year_help' => 'Pro země, ve kterých finanční rok nezačíná 1. ledna a tedy ani nekončí 31. prosince, je možné zapnutím tohoto určit den začátku a konce fiskálního roku', + 'pref_fiscal_year_start_label' => 'Fiscal year start date', + 'pref_two_factor_auth' => 'Dvoufázové ověření', + 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Zapnout dvoufázové ověření', + 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', + 'pref_two_factor_auth_remove_it' => 'Nezapomeňte účet odstranit z vaší ověřovací aplikace!', + 'pref_two_factor_auth_code' => 'Ověřit kód', + 'pref_two_factor_auth_code_help' => 'Naskenujte QR kód aplikací na vašem telefonu (jako například Authy nebo Google Authenticator) a zadejte aplikací vytvořený kód.', + 'pref_two_factor_auth_reset_code' => 'Resetovat ověřovací kód', + 'pref_two_factor_auth_disable_2fa' => 'Vypnout dvoufázové ověření', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => 'Uložit nastavení', + 'saved_preferences' => 'Předvolby uloženy!', + 'preferences_general' => 'Obecné', + 'preferences_frontpage' => 'Domovská obrazovka', + 'preferences_security' => 'Zabezpečení', + 'preferences_layout' => 'Rozvržení', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Zobrazovat vklady na domovské obrazovce', + 'pref_home_show_deposits_info' => 'Domovská obrazovka už zobrazuje vaše výdajové účty. Mají být zobrazovány také ty příjmové?', + 'pref_home_do_show_deposits' => 'Ano, zobrazit je', + 'successful_count' => 'z toho :count úspěšné', + 'list_page_size_title' => 'Velikost stránky', + 'list_page_size_help' => 'Jakýkoli seznam věcí (účty, transakce, atd) zobrazuje nejvýše tolik na stránku.', + 'list_page_size_label' => 'Velikost stránky', + 'between_dates' => '(:start a :end)', + 'pref_optional_fields_transaction' => 'Volitelné kolonky pro transakce', + 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', + 'optional_tj_date_fields' => 'Kolonky pro datum', + 'optional_tj_other_fields' => 'Další pole', + 'optional_tj_attachment_fields' => 'Kolonky příloh', + 'pref_optional_tj_interest_date' => 'Úrokové datum', + 'pref_optional_tj_book_date' => 'Datum rezervace', + 'pref_optional_tj_process_date' => 'Datum zpracování', + 'pref_optional_tj_due_date' => 'Datum splatnosti', + 'pref_optional_tj_payment_date' => 'Datum zaplacení', + 'pref_optional_tj_invoice_date' => 'Datum vystavení', + 'pref_optional_tj_internal_reference' => 'Interní reference', + 'pref_optional_tj_notes' => 'Poznámky', + 'pref_optional_tj_attachments' => 'Přílohy', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Poloha', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Datumy', + 'optional_field_meta_business' => 'Business', + 'optional_field_attachments' => 'Přílohy', + 'optional_field_meta_data' => 'Volitelná metadata', + 'external_url' => 'Externí URL adresa', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Smazat VŠECHNY vaše kategorie', - 'delete_all_tags' => 'Smazat VŠECHNY vaše štítky', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'Všechny rozpočty byly smazány', - 'deleted_all_categories' => 'Všechny kategorie byly smazány', - 'deleted_all_tags' => 'Všechny štítky byly smazány', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Změnit své heslo', - 'delete_account' => 'Smazat účet', - 'current_password' => 'Stávající heslo', - 'new_password' => 'Nové heslo', - 'new_password_again' => 'Nové heslo (zopakování)', - 'delete_your_account' => 'Smazat svůj účet', - 'delete_your_account_help' => 'Smazání vašeho účtu smaže také všechny účty, transakce, vše, co jste ve Firefly III uložili. Bude to PRYČ.', - 'delete_your_account_password' => 'Pokračujte zadáním svého hesla.', - 'password' => 'Heslo', - 'are_you_sure' => 'Opravdu provést? Není možné vzít zpět.', - 'delete_account_button' => 'SMAZAT svůj účet', - 'invalid_current_password' => 'Neplatné stávající heslo!', - 'password_changed' => 'Heslo změněno.', - 'should_change' => 'Myšlenka je změnit si heslo.', - 'invalid_password' => 'Neplatné heslo.', - 'what_is_pw_security' => 'Co je „ověřit odolnost hesla“.', - 'secure_pw_title' => 'Jak zvolit odolné heslo', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Nemine týden, abychom neviděli zprávy o stránkách, ze kterých unikly hesla jejich uživatelů. Hackeři a zloději tato hesla používají pro pokus o ukradení vašich soukromých informací. Informace jsou cenné.', - 'secure_pw_ff' => 'Používáte stejná hesla napříč webem? Pokud jedna ze stránek ztratí vaše heslo, hackeři mají přístup ke všem vašim datům. Firefly III spoléhá na to, že zvolíte silné a jinde nepoužívané heslo pro ochranu vašich finančních záznamů.', - 'secure_pw_check_box' => 'Jako pomoc Firefly III může zkontrolovat heslo které chcete použít, zda v minulosti nebylo ukradeno (včetně jeho otisku). V takovém případě aplikace NEdoporučí používat takové heslo.', - 'secure_pw_working_title' => 'Jak to funguje?', - 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Mám tuto kolonku zaškrtnout?', - 'secure_pw_long_password' => 'Ano, vždy ověřit že je heslo bezpečné.', - 'command_line_token' => 'Token pro příkazový řádek', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'Byl vytvořen nový token pro příkazový řádek', - 'change_your_email' => 'Změna e-mailové adresy', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Dokud neověříte svou emailovou adresu, nemůžete se přihlásit.', - 'login_with_new_email' => 'Nyní se můžete přihlásit pomocí nové e-mailové adresy.', - 'login_with_old_email' => 'Nyní se můžete přihlásit pomocí původní e-mailové adresy.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'Zatím jste nevytvořili OAuth klienty.', - '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_header' => 'Klienti', - 'profile_oauth_client_id' => 'ID zákazníka', - 'profile_oauth_client_name' => 'Jméno', - 'profile_oauth_client_secret' => 'Tajný klíč', - 'profile_oauth_create_new_client' => 'Vytvořit nového klienta', - 'profile_oauth_create_client' => 'Vytvořit klienta', - 'profile_oauth_edit_client' => 'Upravit klienta', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Přesměrovat URL adresu', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Autorizovaní klienti', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Vytvořit nový token', - 'profile_create_token' => 'Vytvořit token', - 'profile_create' => 'Vytvořit', - 'profile_save_changes' => 'Uložit změny', - 'profile_whoops' => 'Omlouváme se, tohle nějak nefunguje', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Smazat VŠECHNY vaše kategorie', + 'delete_all_tags' => 'Smazat VŠECHNY vaše štítky', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'Všechny rozpočty byly smazány', + 'deleted_all_categories' => 'Všechny kategorie byly smazány', + 'deleted_all_tags' => 'Všechny štítky byly smazány', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Změnit své heslo', + 'delete_account' => 'Smazat účet', + 'current_password' => 'Stávající heslo', + 'new_password' => 'Nové heslo', + 'new_password_again' => 'Nové heslo (zopakování)', + 'delete_your_account' => 'Smazat svůj účet', + 'delete_your_account_help' => 'Smazání vašeho účtu smaže také všechny účty, transakce, vše, co jste ve Firefly III uložili. Bude to PRYČ.', + 'delete_your_account_password' => 'Pokračujte zadáním svého hesla.', + 'password' => 'Heslo', + 'are_you_sure' => 'Opravdu provést? Není možné vzít zpět.', + 'delete_account_button' => 'SMAZAT svůj účet', + 'invalid_current_password' => 'Neplatné stávající heslo!', + 'password_changed' => 'Heslo změněno.', + 'should_change' => 'Myšlenka je změnit si heslo.', + 'invalid_password' => 'Neplatné heslo.', + 'what_is_pw_security' => 'Co je „ověřit odolnost hesla“.', + 'secure_pw_title' => 'Jak zvolit odolné heslo', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Nemine týden, abychom neviděli zprávy o stránkách, ze kterých unikly hesla jejich uživatelů. Hackeři a zloději tato hesla používají pro pokus o ukradení vašich soukromých informací. Informace jsou cenné.', + 'secure_pw_ff' => 'Používáte stejná hesla napříč webem? Pokud jedna ze stránek ztratí vaše heslo, hackeři mají přístup ke všem vašim datům. Firefly III spoléhá na to, že zvolíte silné a jinde nepoužívané heslo pro ochranu vašich finančních záznamů.', + 'secure_pw_check_box' => 'Jako pomoc Firefly III může zkontrolovat heslo které chcete použít, zda v minulosti nebylo ukradeno (včetně jeho otisku). V takovém případě aplikace NEdoporučí používat takové heslo.', + 'secure_pw_working_title' => 'Jak to funguje?', + 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Mám tuto kolonku zaškrtnout?', + 'secure_pw_long_password' => 'Ano, vždy ověřit že je heslo bezpečné.', + 'command_line_token' => 'Token pro příkazový řádek', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'Byl vytvořen nový token pro příkazový řádek', + 'change_your_email' => 'Změna e-mailové adresy', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Dokud neověříte svou emailovou adresu, nemůžete se přihlásit.', + 'login_with_new_email' => 'Nyní se můžete přihlásit pomocí nové e-mailové adresy.', + 'login_with_old_email' => 'Nyní se můžete přihlásit pomocí původní e-mailové adresy.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'Zatím jste nevytvořili OAuth klienty.', + '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_header' => 'Klienti', + 'profile_oauth_client_id' => 'ID zákazníka', + 'profile_oauth_client_name' => 'Jméno', + 'profile_oauth_client_secret' => 'Tajný klíč', + 'profile_oauth_create_new_client' => 'Vytvořit nového klienta', + 'profile_oauth_create_client' => 'Vytvořit klienta', + 'profile_oauth_edit_client' => 'Upravit klienta', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Přesměrovat URL adresu', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Autorizovaní klienti', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Vytvořit nový token', + 'profile_create_token' => 'Vytvořit token', + 'profile_create' => 'Vytvořit', + 'profile_save_changes' => 'Uložit změny', + 'profile_whoops' => 'Omlouváme se, tohle nějak nefunguje', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Exportovat data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Exportovat data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Jedna příloha|:count příloh', - 'attachments' => 'Přílohy', - 'edit_attachment' => 'Upravit přílohu ":name"', - 'update_attachment' => 'Aktualizovat přílohu', - 'delete_attachment' => 'Smazat přílohu „:name“', - 'attachment_deleted' => 'Příloha „:name“ smazána', - 'liabilities_deleted' => 'Smazán závazek „:name“', - 'attachment_updated' => 'Příloha „:name“ smazána', - 'upload_max_file_size' => 'Nejvyšší umožněná velikost souboru: :size', - 'list_all_attachments' => 'Seznam všech příloh', + 'nr_of_attachments' => 'Jedna příloha|:count příloh', + 'attachments' => 'Přílohy', + 'edit_attachment' => 'Upravit přílohu ":name"', + 'update_attachment' => 'Aktualizovat přílohu', + 'delete_attachment' => 'Smazat přílohu „:name“', + 'attachment_deleted' => 'Příloha „:name“ smazána', + 'liabilities_deleted' => 'Smazán závazek „:name“', + 'attachment_updated' => 'Příloha „:name“ smazána', + 'upload_max_file_size' => 'Nejvyšší umožněná velikost souboru: :size', + 'list_all_attachments' => 'Seznam všech příloh', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Výdaje', - 'title_withdrawal' => 'Výdaje', - 'title_revenue' => 'Odměna/příjem', - 'title_deposit' => 'Odměna/příjem', - 'title_transfer' => 'Převody', - 'title_transfers' => 'Převody', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Výdaje', + 'title_withdrawal' => 'Výdaje', + 'title_revenue' => 'Odměna/příjem', + 'title_deposit' => 'Odměna/příjem', + 'title_transfer' => 'Převody', + 'title_transfers' => 'Převody', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Tato transakce už je výběrem', - 'convert_is_already_type_Deposit' => 'Tato transakce už je vkladem', - 'convert_is_already_type_Transfer' => 'Tato transakce už je převodem', - 'convert_to_Withdrawal' => 'Přeměnit „:description“ na výběr', - 'convert_to_Deposit' => 'Přeměnit „:description“ na vklad', - 'convert_to_Transfer' => 'Přeměnit „:description“ na přenos', - 'convert_options_WithdrawalDeposit' => 'Přeměnit výběr na vklad', - 'convert_options_WithdrawalTransfer' => 'Přeměnit výběr na převod', - 'convert_options_DepositTransfer' => 'Přeměnit výběr na přenos', - 'convert_options_DepositWithdrawal' => 'Přeměnit vklad na výběr', - 'convert_options_TransferWithdrawal' => 'Přeměnit převod na výběr', - 'convert_options_TransferDeposit' => 'Přeměnit převod na vklad', - 'convert_Withdrawal_to_deposit' => 'Přeměnit tento výběr na vklad', - 'convert_Withdrawal_to_transfer' => 'Přeměnit tento výběr na převod', - 'convert_Deposit_to_withdrawal' => 'Přeměnit tento vklad na výběr', - 'convert_Deposit_to_transfer' => 'Přeměnit tento výběr na přenos', - 'convert_Transfer_to_deposit' => 'Přeměnit tento převod na vklad', - 'convert_Transfer_to_withdrawal' => 'Přeměnit tento převod výběr', - 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', - 'convert_please_set_asset_destination' => 'Vyberte účet aktiv, na který peníze půjdou.', - 'convert_please_set_expense_destination' => 'Vyberte výdajový účet, na který peníze půjdou.', - 'convert_please_set_asset_source' => 'Vyberte účet aktiv, ze kterého peníze půjdou.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', - 'converted_to_Deposit' => 'The transaction has been converted to a deposit', - 'converted_to_Transfer' => 'The transaction has been converted to a transfer', - 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Přeměnit na výběr', - 'convert_to_deposit' => 'Přeměnit na vklad', - 'convert_to_transfer' => 'Přeměnit na převod', + 'convert_is_already_type_Withdrawal' => 'Tato transakce už je výběrem', + 'convert_is_already_type_Deposit' => 'Tato transakce už je vkladem', + 'convert_is_already_type_Transfer' => 'Tato transakce už je převodem', + 'convert_to_Withdrawal' => 'Přeměnit „:description“ na výběr', + 'convert_to_Deposit' => 'Přeměnit „:description“ na vklad', + 'convert_to_Transfer' => 'Přeměnit „:description“ na přenos', + 'convert_options_WithdrawalDeposit' => 'Přeměnit výběr na vklad', + 'convert_options_WithdrawalTransfer' => 'Přeměnit výběr na převod', + 'convert_options_DepositTransfer' => 'Přeměnit výběr na přenos', + 'convert_options_DepositWithdrawal' => 'Přeměnit vklad na výběr', + 'convert_options_TransferWithdrawal' => 'Přeměnit převod na výběr', + 'convert_options_TransferDeposit' => 'Přeměnit převod na vklad', + 'convert_Withdrawal_to_deposit' => 'Přeměnit tento výběr na vklad', + 'convert_Withdrawal_to_transfer' => 'Přeměnit tento výběr na převod', + 'convert_Deposit_to_withdrawal' => 'Přeměnit tento vklad na výběr', + 'convert_Deposit_to_transfer' => 'Přeměnit tento výběr na přenos', + 'convert_Transfer_to_deposit' => 'Přeměnit tento převod na vklad', + 'convert_Transfer_to_withdrawal' => 'Přeměnit tento převod výběr', + 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', + 'convert_please_set_asset_destination' => 'Vyberte účet aktiv, na který peníze půjdou.', + 'convert_please_set_expense_destination' => 'Vyberte výdajový účet, na který peníze půjdou.', + 'convert_please_set_asset_source' => 'Vyberte účet aktiv, ze kterého peníze půjdou.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'The transaction has been converted to a transfer', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Přeměnit na výběr', + 'convert_to_deposit' => 'Přeměnit na vklad', + 'convert_to_transfer' => 'Přeměnit na převod', // create new stuff: - 'create_new_withdrawal' => 'Vytvořit nový výběr', - 'create_new_deposit' => 'Vytvořit nový vklad', - 'create_new_transfer' => 'Vytvořit nový převod', - 'create_new_asset' => 'Vytvořit nový účet aktiv', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Vytvořit výdajový účet', - 'create_new_revenue' => 'Vytvořit nový příjmový účet', - 'create_new_piggy_bank' => 'Vytvořit novou pokladničku', - 'create_new_bill' => 'Vytvořit novou fakturu', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Vytvořit nový výběr', + 'create_new_deposit' => 'Vytvořit nový vklad', + 'create_new_transfer' => 'Vytvořit nový převod', + 'create_new_asset' => 'Vytvořit nový účet aktiv', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Vytvořit výdajový účet', + 'create_new_revenue' => 'Vytvořit nový příjmový účet', + 'create_new_piggy_bank' => 'Vytvořit novou pokladničku', + 'create_new_bill' => 'Vytvořit novou fakturu', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Vytvořit novou měnu', - 'store_currency' => 'Uložit novou měnu', - 'update_currency' => 'Aktualizovat měnu', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => ':name nelze odstranit, protože je v aplikaci stále pro něco používáno.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Měna :name smazána', - 'created_currency' => 'Měna :name vytvořena', - 'could_not_store_currency' => 'Novou měnu se nepodařilo uložit.', - 'updated_currency' => 'Měna :name aktualizována', - 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', - 'currencies_intro' => 'Firefly III podporuje různé měny, které můžete nastavit a zpřístupnit zde.', - 'make_default_currency' => 'Nastavit jako výchozí', - 'default_currency' => 'výchozí', - 'currency_is_disabled' => 'Vypnuto', - 'enable_currency' => 'Zapnout', - 'disable_currency' => 'Vypnout', - 'currencies_default_disabled' => 'Většina těchto měn je ve výchozím stavu vypnutá. Pro jejich použití, je třeba je nejdříve zapnout.', - 'currency_is_now_enabled' => 'Měna „:name“ byla zapnuta', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Měna „:name“ byla vypnuta', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Vytvořit novou měnu', + 'store_currency' => 'Uložit novou měnu', + 'update_currency' => 'Aktualizovat měnu', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => ':name nelze odstranit, protože je v aplikaci stále pro něco používáno.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Měna :name smazána', + 'created_currency' => 'Měna :name vytvořena', + 'could_not_store_currency' => 'Novou měnu se nepodařilo uložit.', + 'updated_currency' => 'Měna :name aktualizována', + 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', + 'currencies_intro' => 'Firefly III podporuje různé měny, které můžete nastavit a zpřístupnit zde.', + 'make_default_currency' => 'Nastavit jako výchozí', + 'default_currency' => 'výchozí', + 'currency_is_disabled' => 'Vypnuto', + 'enable_currency' => 'Zapnout', + 'disable_currency' => 'Vypnout', + 'currencies_default_disabled' => 'Většina těchto měn je ve výchozím stavu vypnutá. Pro jejich použití, je třeba je nejdříve zapnout.', + 'currency_is_now_enabled' => 'Měna „:name“ byla zapnuta', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Měna „:name“ byla vypnuta', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Povinné kolonky', - 'optionalFields' => 'Volitelné kolonky', - 'options' => 'Možnosti', + 'mandatoryFields' => 'Povinné kolonky', + 'optionalFields' => 'Volitelné kolonky', + 'options' => 'Možnosti', // budgets: - 'daily_budgets' => 'Denní rozpočty', - 'weekly_budgets' => 'Týdenní rozpočty', - 'monthly_budgets' => 'Měsíční rozpočty', - 'quarterly_budgets' => 'Čtvrtletní rozpočty', - 'half_year_budgets' => 'Pololetní rozpočty', - 'yearly_budgets' => 'Roční rozpočty', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Celkový rozpočet k dispozici v :currency', - 'see_below' => 'viz níže', - 'create_new_budget' => 'Vytvořit nový rozpočet', - 'store_new_budget' => 'Uložit nový rozpočet', - 'stored_new_budget' => 'Uložen novým rozpočet „:name“', - 'available_between' => 'Dostupné mezi :start a :end', - 'transactionsWithoutBudget' => 'Výdaje bez rozpočtu', - 'transactions_no_budget' => 'Výdaje bez rozpočtu mezi :start a :end', - 'spent_between' => 'Už utraceno mezi :start a :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Nastavit částku k dispozici', - 'update_available_amount' => 'Aktualizovat částku k dispozici', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'Nový rozpočet', - 'invalid_currency' => 'Toto není platná měna', - 'invalid_amount' => 'Prosím, zadejte částku', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Neaktivní rozpočty', - 'without_budget_between' => 'Transakce bez rozpočtu mezi :start a :end', - 'delete_budget' => 'Smazat rozpočet „:name“', - 'deleted_budget' => 'Smazán rozpočet „:name“', - 'edit_budget' => 'Upravit rozpočet „:name“', - 'updated_budget' => 'Aktualizován rozpočet „:name“', - 'update_amount' => 'Aktualizovat částku', - 'update_budget' => 'Aktualizovat rozpočet', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Nastavte částku rozpočtu', - 'budget_period_navigator' => 'Period navigator', - 'info_on_available_amount' => 'Co mám(e) k dispozici?', - 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', - 'suggested' => 'Navrhované', - 'average_between' => 'Průměr mezi :start a :end', - 'transferred_in' => 'Převedeno (k nám)', - 'transferred_away' => 'Převedeno (pryč)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Denně', - 'auto_budget_period_weekly' => 'Týdně', - 'auto_budget_period_monthly' => 'Měsíčně', - 'auto_budget_period_quarterly' => 'Čtvrletně', - 'auto_budget_period_half_year' => 'Každého půl roku', - 'auto_budget_period_yearly' => 'Ročně', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Denní rozpočty', + 'weekly_budgets' => 'Týdenní rozpočty', + 'monthly_budgets' => 'Měsíční rozpočty', + 'quarterly_budgets' => 'Čtvrtletní rozpočty', + 'half_year_budgets' => 'Pololetní rozpočty', + 'yearly_budgets' => 'Roční rozpočty', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Celkový rozpočet k dispozici v :currency', + 'see_below' => 'viz níže', + 'create_new_budget' => 'Vytvořit nový rozpočet', + 'store_new_budget' => 'Uložit nový rozpočet', + 'stored_new_budget' => 'Uložen novým rozpočet „:name“', + 'available_between' => 'Dostupné mezi :start a :end', + 'transactionsWithoutBudget' => 'Výdaje bez rozpočtu', + 'transactions_no_budget' => 'Výdaje bez rozpočtu mezi :start a :end', + 'spent_between' => 'Už utraceno mezi :start a :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Nastavit částku k dispozici', + 'update_available_amount' => 'Aktualizovat částku k dispozici', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'Nový rozpočet', + 'invalid_currency' => 'Toto není platná měna', + 'invalid_amount' => 'Prosím, zadejte částku', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Neaktivní rozpočty', + 'without_budget_between' => 'Transakce bez rozpočtu mezi :start a :end', + 'delete_budget' => 'Smazat rozpočet „:name“', + 'deleted_budget' => 'Smazán rozpočet „:name“', + 'edit_budget' => 'Upravit rozpočet „:name“', + 'updated_budget' => 'Aktualizován rozpočet „:name“', + 'update_amount' => 'Aktualizovat částku', + 'update_budget' => 'Aktualizovat rozpočet', + 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Nastavte částku rozpočtu', + 'budget_period_navigator' => 'Period navigator', + 'info_on_available_amount' => 'Co mám(e) k dispozici?', + 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', + 'suggested' => 'Navrhované', + 'average_between' => 'Průměr mezi :start a :end', + 'transferred_in' => 'Převedeno (k nám)', + 'transferred_away' => 'Převedeno (pryč)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Denně', + 'auto_budget_period_weekly' => 'Týdně', + 'auto_budget_period_monthly' => 'Měsíčně', + 'auto_budget_period_quarterly' => 'Čtvrletně', + 'auto_budget_period_half_year' => 'Každého půl roku', + 'auto_budget_period_yearly' => 'Ročně', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Zatím ne', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Bill matches transactions between :low and :high.', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => 'Pravidla vztahující se k této účtence/faktuře', - 'repeats' => 'Opakuje se', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Propojené transakce', - 'auto_match_on' => 'Automaticky spárováno Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Příští očekávaná shoda', - 'delete_bill' => 'Smazat účtenku „:name“', - 'deleted_bill' => 'Smazán účet „:name“', - 'edit_bill' => 'Upravit účtenku „:name“', - 'more' => 'Více', - 'rescan_old' => 'Spustit pravidla znovu, na všechny transakce', - 'update_bill' => 'Aktualizovat účtenku', - 'updated_bill' => 'Aktualizovat účtenku „:name“', - 'store_new_bill' => 'Uložit novou účtenku', - 'stored_new_bill' => 'Stored new bill ":name"', - 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Average bill amount (:year)', - 'average_bill_amount_overall' => 'Average bill amount (overall)', - 'bill_is_active' => 'Bill is active', - 'bill_expected_between' => 'Očekáváno mezi :start a :end', - 'bill_will_automatch' => 'Účtenka bude automaticky propojena s odpovídajícími transakcemi', - 'skips_over' => 'přeskočí přes', - 'bill_store_error' => 'Při ukládání nové účtenky došlo k neočekávané chybě. Podívejte se do souborů se záznamem událostí', - 'list_inactive_rule' => 'neaktivní pravidlo', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Zatím ne', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Bill matches transactions between :low and :high.', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => 'Pravidla vztahující se k této účtence/faktuře', + 'repeats' => 'Opakuje se', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Propojené transakce', + 'auto_match_on' => 'Automaticky spárováno Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Příští očekávaná shoda', + 'delete_bill' => 'Smazat účtenku „:name“', + 'deleted_bill' => 'Smazán účet „:name“', + 'edit_bill' => 'Upravit účtenku „:name“', + 'more' => 'Více', + 'rescan_old' => 'Spustit pravidla znovu, na všechny transakce', + 'update_bill' => 'Aktualizovat účtenku', + 'updated_bill' => 'Aktualizovat účtenku „:name“', + 'store_new_bill' => 'Uložit novou účtenku', + 'stored_new_bill' => 'Stored new bill ":name"', + 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Average bill amount (:year)', + 'average_bill_amount_overall' => 'Average bill amount (overall)', + 'bill_is_active' => 'Bill is active', + 'bill_expected_between' => 'Očekáváno mezi :start a :end', + 'bill_will_automatch' => 'Účtenka bude automaticky propojena s odpovídajícími transakcemi', + 'skips_over' => 'přeskočí přes', + 'bill_store_error' => 'Při ukládání nové účtenky došlo k neočekávané chybě. Podívejte se do souborů se záznamem událostí', + 'list_inactive_rule' => 'neaktivní pravidlo', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Podrobnosti o účtu aktiv „:name“', - 'details_for_expense' => 'Podrobnosti pro výdajový účet „:name“', - 'details_for_revenue' => 'Details for revenue account ":name"', - 'details_for_cash' => 'Podrobnosti o hotovostním účtu „:name“', - 'store_new_asset_account' => 'Uložit nový účet aktiv', - 'store_new_expense_account' => 'Uložit nový výdajový účet', - 'store_new_revenue_account' => 'Uložit nový příjmový účet', - 'edit_asset_account' => 'Upravit účet aktiv „:name“', - 'edit_expense_account' => 'Upravit výdajový účet „:name“', - 'edit_revenue_account' => 'Upravit účet odměn „:name“', - 'delete_asset_account' => 'Smazat účet aktiv „:name“', - 'delete_expense_account' => 'Delete expense account ":name"', - 'delete_revenue_account' => 'Delete revenue account ":name"', - 'delete_liabilities_account' => 'Smazat závazek „:name“', - 'asset_deleted' => 'Successfully deleted asset account ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Successfully deleted expense account ":name"', - 'revenue_deleted' => 'Successfully deleted revenue account ":name"', - 'update_asset_account' => 'Aktualizovat výdajový účet', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Aktualizovat závazek', - 'update_expense_account' => 'Aktualizovat výdajový účet', - 'update_revenue_account' => 'Aktualizovat příjmový účet', - 'make_new_asset_account' => 'Vytvořit nový účet aktiv', - 'make_new_expense_account' => 'Vytvořit výdajový účet', - 'make_new_revenue_account' => 'Vytvořit nový příjmový účet', - 'make_new_liabilities_account' => 'Vytvořit nový závazek', - 'asset_accounts' => 'Účty aktiv', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Výdajové účty', - 'expense_accounts_inactive' => 'Výdajové účty (neaktivní)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Příjmové účty', - 'revenue_accounts_inactive' => 'Příjmové účty (neaktivní)', - 'cash_accounts' => 'Hotovostní účty', - 'Cash account' => 'Hotovostní účet', - 'liabilities_accounts' => 'Závazky', - 'liabilities_accounts_inactive' => 'Závazky (neaktivní)', - 'reconcile_account' => 'Vyúčtovat účet ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Odstranit vyúčtování', - 'update_reconciliation' => 'Upravit vyúčtování', - 'amount_cannot_be_zero' => 'Částka nemůže být nula', - 'end_of_reconcile_period' => 'Konec vyúčtovacího období: :period', - 'start_of_reconcile_period' => 'Začátek vyúčtovacího období: :period', - 'start_balance' => 'Počáteční zůstatek', - 'end_balance' => 'Konečný zůstatek', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Aktualizovat výběr', - 'store_reconcile' => 'Uložit vyúčtování', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Vyúčtování', - 'reconciliation' => 'Vyúčtování', - 'reconcile_options' => 'Možnosti vyúčtování', - 'reconcile_range' => 'Rozsah vyúčtování', - 'start_reconcile' => 'Spustit vyúčtování', - 'cash_account_type' => 'Hotovost', - 'cash' => 'hotovost', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Typ účtu', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'Nový účet „:name“ uložen!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Aktualizován účet „:name“', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Předvolby kreditní karty', - 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', - 'no_transactions_period' => 'Neexistují žádné transakce (v tomto období).', - 'no_data_for_chart' => 'Pro vytvoření tohoto grafu není dostatek informací (zatím).', - 'select_at_least_one_account' => 'Vyberte alespoň jeden účet aktiv', - 'select_at_least_one_category' => 'Vyberte alespoň jednu kategorii', - 'select_at_least_one_budget' => 'Vyberte alespoň jeden rozpočet', - 'select_at_least_one_tag' => 'Vyberte alespoň jeden štítek', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'Opravu můžete kdykoli upravit nebo odstranit.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Vyúčtování uloženo', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Vyúčtovat tento účet', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Potvrdit vyúčtování', - 'submitted_start_balance' => 'Předložený počáteční zůstatek', - 'selected_transactions' => 'Vybrané transakce (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Předložený konečný zůstatek', - 'initial_balance_description' => 'Počáteční zůstatek pro „:account“', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'neznámé', - 'interest_calc_daily' => 'Za den', - 'interest_calc_monthly' => 'Za měsíc', - 'interest_calc_yearly' => 'Za rok', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'Seznam možností', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Podrobnosti o účtu aktiv „:name“', + 'details_for_expense' => 'Podrobnosti pro výdajový účet „:name“', + 'details_for_revenue' => 'Details for revenue account ":name"', + 'details_for_cash' => 'Podrobnosti o hotovostním účtu „:name“', + 'store_new_asset_account' => 'Uložit nový účet aktiv', + 'store_new_expense_account' => 'Uložit nový výdajový účet', + 'store_new_revenue_account' => 'Uložit nový příjmový účet', + 'edit_asset_account' => 'Upravit účet aktiv „:name“', + 'edit_expense_account' => 'Upravit výdajový účet „:name“', + 'edit_revenue_account' => 'Upravit účet odměn „:name“', + 'delete_asset_account' => 'Smazat účet aktiv „:name“', + 'delete_expense_account' => 'Delete expense account ":name"', + 'delete_revenue_account' => 'Delete revenue account ":name"', + 'delete_liabilities_account' => 'Smazat závazek „:name“', + 'asset_deleted' => 'Successfully deleted asset account ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Successfully deleted expense account ":name"', + 'revenue_deleted' => 'Successfully deleted revenue account ":name"', + 'update_asset_account' => 'Aktualizovat výdajový účet', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Aktualizovat závazek', + 'update_expense_account' => 'Aktualizovat výdajový účet', + 'update_revenue_account' => 'Aktualizovat příjmový účet', + 'make_new_asset_account' => 'Vytvořit nový účet aktiv', + 'make_new_expense_account' => 'Vytvořit výdajový účet', + 'make_new_revenue_account' => 'Vytvořit nový příjmový účet', + 'make_new_liabilities_account' => 'Vytvořit nový závazek', + 'asset_accounts' => 'Účty aktiv', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Výdajové účty', + 'expense_accounts_inactive' => 'Výdajové účty (neaktivní)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Příjmové účty', + 'revenue_accounts_inactive' => 'Příjmové účty (neaktivní)', + 'cash_accounts' => 'Hotovostní účty', + 'Cash account' => 'Hotovostní účet', + 'liabilities_accounts' => 'Závazky', + 'liabilities_accounts_inactive' => 'Závazky (neaktivní)', + 'reconcile_account' => 'Vyúčtovat účet ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Odstranit vyúčtování', + 'update_reconciliation' => 'Upravit vyúčtování', + 'amount_cannot_be_zero' => 'Částka nemůže být nula', + 'end_of_reconcile_period' => 'Konec vyúčtovacího období: :period', + 'start_of_reconcile_period' => 'Začátek vyúčtovacího období: :period', + 'start_balance' => 'Počáteční zůstatek', + 'end_balance' => 'Konečný zůstatek', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Aktualizovat výběr', + 'store_reconcile' => 'Uložit vyúčtování', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Vyúčtování', + 'reconciliation' => 'Vyúčtování', + 'reconcile_options' => 'Možnosti vyúčtování', + 'reconcile_range' => 'Rozsah vyúčtování', + 'start_reconcile' => 'Spustit vyúčtování', + 'cash_account_type' => 'Hotovost', + 'cash' => 'hotovost', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Typ účtu', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'Nový účet „:name“ uložen!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Aktualizován účet „:name“', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Předvolby kreditní karty', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_transactions_period' => 'Neexistují žádné transakce (v tomto období).', + 'no_data_for_chart' => 'Pro vytvoření tohoto grafu není dostatek informací (zatím).', + 'select_at_least_one_account' => 'Vyberte alespoň jeden účet aktiv', + 'select_at_least_one_category' => 'Vyberte alespoň jednu kategorii', + 'select_at_least_one_budget' => 'Vyberte alespoň jeden rozpočet', + 'select_at_least_one_tag' => 'Vyberte alespoň jeden štítek', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'Opravu můžete kdykoli upravit nebo odstranit.', + 'must_be_asset_account' => 'You can only reconcile asset accounts', + 'reconciliation_stored' => 'Vyúčtování uloženo', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Vyúčtovat tento účet', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Potvrdit vyúčtování', + 'submitted_start_balance' => 'Předložený počáteční zůstatek', + 'selected_transactions' => 'Vybrané transakce (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Předložený konečný zůstatek', + 'initial_balance_description' => 'Počáteční zůstatek pro „:account“', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'neznámé', + 'interest_calc_daily' => 'Za den', + 'interest_calc_monthly' => 'Za měsíc', + 'interest_calc_yearly' => 'Za rok', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'Seznam možností', // categories: - 'new_category' => 'Nová kategorie', - 'create_new_category' => 'Vytvořit novou kategorii', - 'without_category' => 'Bez kategorie', - 'update_category' => 'Aktualizovat kategorii', - 'updated_category' => 'Aktualizována kategorie „:name“', - 'categories' => 'Kategorie', - 'edit_category' => 'Upravit kategorii „:name“', - 'no_category' => '(žádná kategorie)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategorie', - 'delete_category' => 'Smazat kategorii „:name“', - 'deleted_category' => 'Kategorie „:name“ smazána', - 'store_category' => 'Uložit novou kategori', - 'stored_category' => 'Uložena nová kategorie „:name“', - 'without_category_between' => 'Bez kategorie mezi :start a :end', + 'new_category' => 'Nová kategorie', + 'create_new_category' => 'Vytvořit novou kategorii', + 'without_category' => 'Bez kategorie', + 'update_category' => 'Aktualizovat kategorii', + 'updated_category' => 'Aktualizována kategorie „:name“', + 'categories' => 'Kategorie', + 'edit_category' => 'Upravit kategorii „:name“', + 'no_category' => '(žádná kategorie)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategorie', + 'delete_category' => 'Smazat kategorii „:name“', + 'deleted_category' => 'Kategorie „:name“ smazána', + 'store_category' => 'Uložit novou kategori', + 'stored_category' => 'Uložena nová kategorie „:name“', + 'without_category_between' => 'Bez kategorie mezi :start a :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Aktualizovat výběr', - 'update_deposit' => 'Aktualizovat vklad', - 'update_transaction' => 'Aktualizovat transakci', - 'update_transfer' => 'Aktualizovat převod', - 'updated_withdrawal' => 'Aktualizován výběr „:description“', - 'updated_deposit' => 'Aktualizován vklad „:description“', - 'updated_transfer' => 'Aktualizován převod „:description“', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Smazat výběr „:description“', - 'delete_deposit' => 'Smazat vklad „:description“', - 'delete_transfer' => 'Smazat převod „:description“', - 'deleted_withdrawal' => 'Úspěšně smazán výběr „:description“', - 'deleted_deposit' => 'Úspěšně smazán vklad „:description“', - 'deleted_transfer' => 'Úspěšně smazán převod „:description“', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Úspěšně vytvořena nová transakce „:description“', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Vybrat transakce', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', - 'stop_selection' => 'Zastavit označování transakcí', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Smazat počet transakcí', - 'mass_edit_journals' => 'Upravit počet transakcí', - 'mass_bulk_journals' => 'Hromadná úprava počtu transakcí', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Nové hodnoty nastavíte pomocí vstupních kolonek níže. Pokud je nevyplníte, budou u všeho vyprázdněny. Také si všimněte, že pouze výběry dostanou rozpočet.', - 'no_bulk_category' => 'Neaktualizovat kategorii', - 'no_bulk_budget' => 'Neaktualizovat rozpočet', - 'no_bulk_tags' => 'Neaktualizovat štítky', - 'replace_with_these_tags' => 'Nahradit těmito štítky', - 'append_these_tags' => 'Přidat tyto štítky', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Hromadná úprava označeného', - 'mass_delete' => 'Smazat označené', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(žádný rozpočet)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Účty pro jednotlivé rozpočty', - 'account_per_category' => 'Účty pro jednotlivé kategorie', - 'create_new_object' => 'Vytvořit', - 'empty' => '(prázdné)', - 'all_other_budgets' => '(všechny ostatní rozpočty)', - 'all_other_accounts' => '(všechny ostatní účty)', - 'expense_per_source_account' => 'Výdaje podle zdrojového účtu', - 'expense_per_destination_account' => 'Výdaje podle cílového účtu', - 'income_per_destination_account' => 'Příjmy podle cílového účtu', - 'spent_in_specific_category' => 'Utraceno v kategorii „:category“', - 'earned_in_specific_category' => 'Získáno v kategorii „:category“', - 'spent_in_specific_tag' => 'Utraceno pod štítkem „:tag“', - 'earned_in_specific_tag' => 'Získáno pod štítkem „:tag“', - 'income_per_source_account' => 'Příjem podle zdrojového účtu', - 'average_spending_per_destination' => 'Průměrný výdaj podle cílového účtu', - 'average_spending_per_source' => 'Průměrný výdaj podle zdrojového účtu', - 'average_earning_per_source' => 'Průměrný příjem v jednotlivých zdrojových účtech', - 'average_earning_per_destination' => 'Průměrný příjem v jednotlivých cílových účtech', - 'account_per_tag' => 'Účty pod jednotlivými štítky', - 'tag_report_expenses_listed_once' => 'Výdaje a příjmy nikdy nejsou vypsány dvakrát. Pokud má transakce vícero štítků, zobrazí se pouze pod jedním z nich. Může se zdát, že na seznamu chybí údaje, ale částky budou správné.', - 'double_report_expenses_charted_once' => 'Výdaje a příjmy nikdy nejsou zobrazeny dvakrát. Pokud má transakce vícero štítků, zobrazí se pouze pod jedním z nich. Může se zdát, že tento graf postrádá některé údaje, ale částky budou správné.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Štítek', - 'no_budget_squared' => '(žádný rozpočet)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(žádný typ účtu)', - 'opt_group_no_account_type' => '(žádný typ účtu)', - 'opt_group_defaultAsset' => 'Výchozí majetkový účet', - 'opt_group_savingAsset' => 'Spořicí účty', - 'opt_group_sharedAsset' => 'Sdílené účty aktiv', - 'opt_group_ccAsset' => 'Kreditní karty', - 'opt_group_cashWalletAsset' => 'Peněženky', - 'opt_group_expense_account' => 'Účty pro výdaje', - 'opt_group_revenue_account' => 'Účty pro příjmy', - 'opt_group_l_Loan' => 'Závazek: Půjčka', - 'opt_group_cash_account' => 'Hotovostní účet', - 'opt_group_l_Debt' => 'Závazek: Dluh', - 'opt_group_l_Mortgage' => 'Závazek: hypotéka', - 'opt_group_l_Credit card' => 'Závazek: kreditní karta', - 'notes' => 'Poznámky', - 'unknown_journal_error' => 'Transakci se nedaří uložit. Podívejte se do souborů se záznamy událostí.', - 'attachment_not_found' => 'Tuto přílohu se nepodařilo najít.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Aktualizovat výběr', + 'update_deposit' => 'Aktualizovat vklad', + 'update_transaction' => 'Aktualizovat transakci', + 'update_transfer' => 'Aktualizovat převod', + 'updated_withdrawal' => 'Aktualizován výběr „:description“', + 'updated_deposit' => 'Aktualizován vklad „:description“', + 'updated_transfer' => 'Aktualizován převod „:description“', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Smazat výběr „:description“', + 'delete_deposit' => 'Smazat vklad „:description“', + 'delete_transfer' => 'Smazat převod „:description“', + 'deleted_withdrawal' => 'Úspěšně smazán výběr „:description“', + 'deleted_deposit' => 'Úspěšně smazán vklad „:description“', + 'deleted_transfer' => 'Úspěšně smazán převod „:description“', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Úspěšně vytvořena nová transakce „:description“', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Vybrat transakce', + 'rule_group_select_transactions' => 'Apply ":title" to transactions', + 'rule_select_transactions' => 'Apply ":title" to transactions', + 'stop_selection' => 'Zastavit označování transakcí', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Smazat počet transakcí', + 'mass_edit_journals' => 'Upravit počet transakcí', + 'mass_bulk_journals' => 'Hromadná úprava počtu transakcí', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Nové hodnoty nastavíte pomocí vstupních kolonek níže. Pokud je nevyplníte, budou u všeho vyprázdněny. Také si všimněte, že pouze výběry dostanou rozpočet.', + 'no_bulk_category' => 'Neaktualizovat kategorii', + 'no_bulk_budget' => 'Neaktualizovat rozpočet', + 'no_bulk_tags' => 'Neaktualizovat štítky', + 'replace_with_these_tags' => 'Nahradit těmito štítky', + 'append_these_tags' => 'Přidat tyto štítky', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Hromadná úprava označeného', + 'mass_delete' => 'Smazat označené', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(žádný rozpočet)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Účty pro jednotlivé rozpočty', + 'account_per_category' => 'Účty pro jednotlivé kategorie', + 'create_new_object' => 'Vytvořit', + 'empty' => '(prázdné)', + 'all_other_budgets' => '(všechny ostatní rozpočty)', + 'all_other_accounts' => '(všechny ostatní účty)', + 'expense_per_source_account' => 'Výdaje podle zdrojového účtu', + 'expense_per_destination_account' => 'Výdaje podle cílového účtu', + 'income_per_destination_account' => 'Příjmy podle cílového účtu', + 'spent_in_specific_category' => 'Utraceno v kategorii „:category“', + 'earned_in_specific_category' => 'Získáno v kategorii „:category“', + 'spent_in_specific_tag' => 'Utraceno pod štítkem „:tag“', + 'earned_in_specific_tag' => 'Získáno pod štítkem „:tag“', + 'income_per_source_account' => 'Příjem podle zdrojového účtu', + 'average_spending_per_destination' => 'Průměrný výdaj podle cílového účtu', + 'average_spending_per_source' => 'Průměrný výdaj podle zdrojového účtu', + 'average_earning_per_source' => 'Průměrný příjem v jednotlivých zdrojových účtech', + 'average_earning_per_destination' => 'Průměrný příjem v jednotlivých cílových účtech', + 'account_per_tag' => 'Účty pod jednotlivými štítky', + 'tag_report_expenses_listed_once' => 'Výdaje a příjmy nikdy nejsou vypsány dvakrát. Pokud má transakce vícero štítků, zobrazí se pouze pod jedním z nich. Může se zdát, že na seznamu chybí údaje, ale částky budou správné.', + 'double_report_expenses_charted_once' => 'Výdaje a příjmy nikdy nejsou zobrazeny dvakrát. Pokud má transakce vícero štítků, zobrazí se pouze pod jedním z nich. Může se zdát, že tento graf postrádá některé údaje, ale částky budou správné.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Štítek', + 'no_budget_squared' => '(žádný rozpočet)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(žádný typ účtu)', + 'opt_group_no_account_type' => '(žádný typ účtu)', + 'opt_group_defaultAsset' => 'Výchozí majetkový účet', + 'opt_group_savingAsset' => 'Spořicí účty', + 'opt_group_sharedAsset' => 'Sdílené účty aktiv', + 'opt_group_ccAsset' => 'Kreditní karty', + 'opt_group_cashWalletAsset' => 'Peněženky', + 'opt_group_expense_account' => 'Účty pro výdaje', + 'opt_group_revenue_account' => 'Účty pro příjmy', + 'opt_group_l_Loan' => 'Závazek: Půjčka', + 'opt_group_cash_account' => 'Hotovostní účet', + 'opt_group_l_Debt' => 'Závazek: Dluh', + 'opt_group_l_Mortgage' => 'Závazek: hypotéka', + 'opt_group_l_Credit card' => 'Závazek: kreditní karta', + 'notes' => 'Poznámky', + 'unknown_journal_error' => 'Transakci se nedaří uložit. Podívejte se do souborů se záznamy událostí.', + 'attachment_not_found' => 'Tuto přílohu se nepodařilo najít.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Vítejte ve Firefly III!', - 'submit' => 'Odeslat', - 'submission' => 'Submission', - 'submit_yes_really' => 'Odeslat (vím, co dělám)', - 'getting_started' => 'Začínáme', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Jazyk', - 'new_savings_account' => ':bank_name spořící účet', - 'cash_wallet' => 'Peněženka', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Vítejte ve Firefly III!', + 'submit' => 'Odeslat', + 'submission' => 'Submission', + 'submit_yes_really' => 'Odeslat (vím, co dělám)', + 'getting_started' => 'Začínáme', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Jazyk', + 'new_savings_account' => ':bank_name spořící účet', + 'cash_wallet' => 'Peněženka', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Protiúčet', - 'yourAccounts' => 'Vaše účty', - 'your_accounts' => 'Přehled vašeho účtu', - 'category_overview' => 'Přehled kategorie', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Přehled příjmových účtů', - 'budgetsAndSpending' => 'Rozpočty a útraty', - 'budgets_and_spending' => 'Rozpočty a útraty', - 'go_to_budget' => 'Přejít na rozpočet „{budget}“', - 'go_to_deposits' => 'Přejít na vklady', - 'go_to_expenses' => 'Přejít na výdaje', - 'savings' => 'Úspory', - 'newWithdrawal' => 'Nový výdaj', - 'newDeposit' => 'Nový vklad', - 'newTransfer' => 'Nový převod', - 'bills_to_pay' => 'Faktury k zaplacení', - 'per_day' => 'Za den', - 'left_to_spend_per_day' => 'Zbývá na denní útratu', - 'bills_paid' => 'Zaplacené účty', - 'custom_period' => 'Vlastní období', - 'reset_to_current' => 'Obnovit aktuální období', - 'select_period' => 'Vyberte období', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Protiúčet', + 'yourAccounts' => 'Vaše účty', + 'your_accounts' => 'Přehled vašeho účtu', + 'category_overview' => 'Přehled kategorie', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Přehled příjmových účtů', + 'budgetsAndSpending' => 'Rozpočty a útraty', + 'budgets_and_spending' => 'Rozpočty a útraty', + 'go_to_budget' => 'Přejít na rozpočet „{budget}“', + 'go_to_deposits' => 'Přejít na vklady', + 'go_to_expenses' => 'Přejít na výdaje', + 'savings' => 'Úspory', + 'newWithdrawal' => 'Nový výdaj', + 'newDeposit' => 'Nový vklad', + 'newTransfer' => 'Nový převod', + 'bills_to_pay' => 'Faktury k zaplacení', + 'per_day' => 'Za den', + 'left_to_spend_per_day' => 'Zbývá na denní útratu', + 'bills_paid' => 'Zaplacené účty', + 'custom_period' => 'Vlastní období', + 'reset_to_current' => 'Obnovit aktuální období', + 'select_period' => 'Vyberte období', // menu and titles, should be recycled as often as possible: - 'currency' => 'Měna', - 'preferences' => 'Předvolby', - 'logout' => 'Odhlásit se', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Vyp/zap. navigaci', - 'searchPlaceholder' => 'Hledat…', - 'version' => 'Verze', - 'dashboard' => 'Přehled', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Rozpočet k dispozici ({currency})', - 'currencies' => 'Měny', - 'activity' => 'Aktivita', - 'usage' => 'Použití', - 'accounts' => 'Účty', - 'Asset account' => 'Účet aktiv', - 'Default account' => 'Účet aktiv', - 'Expense account' => 'Výdajový účet', - 'Revenue account' => 'Příjmový účet', - 'Initial balance account' => 'Účet počátečního zůstatku', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Dluh', - 'account_type_Loan' => 'Půjčka', - 'account_type_Mortgage' => 'Hypotéka', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Kreditní karta', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Rozpočty', - 'tags' => 'Štítky', - 'reports' => 'Přehledy', - 'transactions' => 'Transakce', - 'expenses' => 'Výdaje', - 'income' => 'Odměna/příjem', - 'transfers' => 'Převody', - 'moneyManagement' => 'Správa peněz', - 'money_management' => 'Správa peněz', - 'tools' => 'Nástroje', - 'piggyBanks' => 'Pokladničky', - 'piggy_banks' => 'Pokladničky', - 'amount_x_of_y' => '{current} z {total}', - 'bills' => 'Účty', - 'withdrawal' => 'Výběr', - 'opening_balance' => 'Počáteční zůstatek', - 'deposit' => 'Vklad', - 'account' => 'Účet', - 'transfer' => 'Převod', - 'Withdrawal' => 'Výběr', - 'Deposit' => 'Vklad', - 'Transfer' => 'Převod', - 'bill' => 'Účet', - 'yes' => 'Ano', - 'no' => 'Ne', - 'amount' => 'Částka', - 'overview' => 'Přehled', - 'saveOnAccount' => 'Uložit na účet', - 'unknown' => 'Neznámé', - 'monthly' => 'Měsíčně', - 'profile' => 'Profil', - 'errors' => 'Chyby', - 'debt_start_date' => 'Datum začátku dluhu', - 'debt_start_amount' => 'Počáteční výše dluhu', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Uložit nový závazek', - 'edit_liabilities_account' => 'Upravit závazek „:name“', - 'financial_control' => 'Finanční kontrola', - 'accounting' => 'Accounting', - 'automation' => 'Automatizace', - 'others' => 'Ostatní', - 'classification' => 'Klasifikace', - 'store_transaction' => 'Store transaction', + 'currency' => 'Měna', + 'preferences' => 'Předvolby', + 'logout' => 'Odhlásit se', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Vyp/zap. navigaci', + 'searchPlaceholder' => 'Hledat…', + 'version' => 'Verze', + 'dashboard' => 'Přehled', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Rozpočet k dispozici ({currency})', + 'currencies' => 'Měny', + 'activity' => 'Aktivita', + 'usage' => 'Použití', + 'accounts' => 'Účty', + 'Asset account' => 'Účet aktiv', + 'Default account' => 'Účet aktiv', + 'Expense account' => 'Výdajový účet', + 'Revenue account' => 'Příjmový účet', + 'Initial balance account' => 'Účet počátečního zůstatku', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Dluh', + 'account_type_Loan' => 'Půjčka', + 'account_type_Mortgage' => 'Hypotéka', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Kreditní karta', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Rozpočty', + 'tags' => 'Štítky', + 'reports' => 'Přehledy', + 'transactions' => 'Transakce', + 'expenses' => 'Výdaje', + 'income' => 'Odměna/příjem', + 'transfers' => 'Převody', + 'moneyManagement' => 'Správa peněz', + 'money_management' => 'Správa peněz', + 'tools' => 'Nástroje', + 'piggyBanks' => 'Pokladničky', + 'piggy_banks' => 'Pokladničky', + 'amount_x_of_y' => '{current} z {total}', + 'bills' => 'Účty', + 'withdrawal' => 'Výběr', + 'opening_balance' => 'Počáteční zůstatek', + 'deposit' => 'Vklad', + 'account' => 'Účet', + 'transfer' => 'Převod', + 'Withdrawal' => 'Výběr', + 'Deposit' => 'Vklad', + 'Transfer' => 'Převod', + 'bill' => 'Účet', + 'yes' => 'Ano', + 'no' => 'Ne', + 'amount' => 'Částka', + 'overview' => 'Přehled', + 'saveOnAccount' => 'Uložit na účet', + 'unknown' => 'Neznámé', + 'monthly' => 'Měsíčně', + 'profile' => 'Profil', + 'errors' => 'Chyby', + 'debt_start_date' => 'Datum začátku dluhu', + 'debt_start_amount' => 'Počáteční výše dluhu', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Uložit nový závazek', + 'edit_liabilities_account' => 'Upravit závazek „:name“', + 'financial_control' => 'Finanční kontrola', + 'accounting' => 'Accounting', + 'automation' => 'Automatizace', + 'others' => 'Ostatní', + 'classification' => 'Klasifikace', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Výchozí finanční výkaz v období :start a :end', - 'report_audit' => 'Přehled historie transakcí mezi :start a :end', - 'report_category' => 'Výkaz kategorie z rozmezí :start a :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Rychlé odkazy', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Výchozí výkaz o financích', - 'quick_link_audit_report' => 'Přehled historie transakcí', - 'report_this_month_quick' => 'Stávající měsíc, všechny účty', - 'report_last_month_quick' => 'Minulý měsíc, všechny účty', - 'report_this_year_quick' => 'Stávající rok, všechny účty', - 'report_this_fiscal_year_quick' => 'Stávající fiskální rok, všechny účty', - 'report_all_time_quick' => 'Kdykoli, všechny účty', - 'reports_can_bookmark' => 'Pamatujte, že výkazy je možné si ukládat do záložek.', - 'incomeVsExpenses' => 'Příjmy vůči nákladům', - 'accountBalances' => 'Zůstatky účtů', - 'balanceStart' => 'Zůstatek na začátku období', - 'balanceEnd' => 'Zůstatek na konci období', - 'splitByAccount' => 'Rozúčtování podle účtů', - 'coveredWithTags' => 'Pokryto štítky', - 'leftInBudget' => 'Zbývá v rozpočtu', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Souhrn součtů', - 'noCategory' => '(bez kategorie)', - 'notCharged' => 'Nestrženo (zatím)', - 'inactive' => 'Neaktivní', - 'active' => 'Aktivní', - 'difference' => 'Rozdíl', - 'money_flowing_in' => 'Vstup', - 'money_flowing_out' => 'Výstup', - 'topX' => 'nej :number', - 'show_full_list' => 'Zobrazit celý seznam', - 'show_only_top' => 'Zobrazit pouze :number nej', - 'report_type' => 'Typ přehledu', - 'report_type_default' => 'Výchozí výkaz o financích', - 'report_type_audit' => 'Přehled historie transakcí (audit)', - 'report_type_category' => 'Výkaz o kategorii', - 'report_type_budget' => 'Sestava rozpočtu', - 'report_type_tag' => 'Přehled značek', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', - 'report_included_accounts' => 'Zahrnuté účty', - 'report_date_range' => 'Období', - 'report_preset_ranges' => 'Přednastavené rozsahy', - 'shared' => 'Sdíleno', - 'fiscal_year' => 'Fiskální rok', - 'income_entry' => 'Příjmy z účtu „:name“ mezi :start a :end', - 'expense_entry' => 'Výdaje z účtu „:name“ v rozmezí :start a :end', - 'category_entry' => 'Výdaje a příjmy na účtu „:name“ v rozmezí :start a :end', - 'budget_spent_amount' => 'Výdaje z rozpočtu „:budget“ v rozmezí :start a :end', - 'balance_amount' => 'Výdaje z rozpočtu „:budget“ placené z účtu „:account“ v období :start a :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Další volby', - 'report_has_no_extra_options' => 'Tento výkaz nemá žádné další volby', - 'reports_submit' => 'Zobrazit výkaz', - 'end_after_start_date' => 'Je třeba, aby konečné datum výkazu bylo později, než to počáteční.', - 'select_category' => 'Vybrat kategorie', - 'select_budget' => 'Vybrat rozpočty', - 'select_tag' => 'Vybrat štítky', - 'income_per_category' => 'Příjem podle kategorie', - 'expense_per_category' => 'Výdaje podle kategorie', - 'expense_per_budget' => 'Výdaje podle rozpočtu', - 'income_per_account' => 'Příjem podle účtu', - 'expense_per_account' => 'Výdaj podle účtu', - 'expense_per_tag' => 'Výdaje podle štítku', - 'income_per_tag' => 'Příjmy podle štítku', - 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', - 'everything_else' => 'Všechno ostatní', - 'income_and_expenses' => 'Příjmy a výdaje', - 'spent_average' => 'Utraceno (průměrně)', - 'income_average' => 'Získáno (průměrně)', - 'transaction_count' => 'Počet transakcí', - 'average_spending_per_account' => 'Průměrné výdaje na účet', - 'average_income_per_account' => 'Průměrný příjem v jednotlivých účtech', - 'total' => 'Celkem', - 'description' => 'Popis', - 'sum_of_period' => 'Souhrn období', - 'average_in_period' => 'Průměr období', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Výchozí účet aktiv', - 'account_role_sharedAsset' => 'Sdílený účet aktiv', - 'account_role_savingAsset' => 'Spořicí účet', - 'account_role_ccAsset' => 'Kreditní karta', - 'account_role_cashWalletAsset' => 'Peněženka', - 'budget_chart_click' => 'Graf zobrazíte kliknutím na název rozpočtu ve výše uvedené tabulce.', - 'category_chart_click' => 'Graf zobrazíte kliknutím na název kategorie ve výše uvedené tabulce.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Získáno a vydáno v jednotlivých kategoriích', - 'out_per_budget' => 'Vydáno v jednotlivých rozpočtech', - 'select_expense_revenue' => 'Vybrat účet výdajů/odměn', - 'multi_currency_report_sum' => 'Protože tento seznam obsahuje účty v různých měnách, nedávají zobrazované součty smysl. Výkaz vždy náhradně použije měnu, kterou máte nastavenou jako výchozí.', - 'sum_in_default_currency' => 'Souhrn vždy bude v měně, kterou jste nastavili jako výchozí.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Výchozí finanční výkaz v období :start a :end', + 'report_audit' => 'Přehled historie transakcí mezi :start a :end', + 'report_category' => 'Výkaz kategorie z rozmezí :start a :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Rychlé odkazy', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Výchozí výkaz o financích', + 'quick_link_audit_report' => 'Přehled historie transakcí', + 'report_this_month_quick' => 'Stávající měsíc, všechny účty', + 'report_last_month_quick' => 'Minulý měsíc, všechny účty', + 'report_this_year_quick' => 'Stávající rok, všechny účty', + 'report_this_fiscal_year_quick' => 'Stávající fiskální rok, všechny účty', + 'report_all_time_quick' => 'Kdykoli, všechny účty', + 'reports_can_bookmark' => 'Pamatujte, že výkazy je možné si ukládat do záložek.', + 'incomeVsExpenses' => 'Příjmy vůči nákladům', + 'accountBalances' => 'Zůstatky účtů', + 'balanceStart' => 'Zůstatek na začátku období', + 'balanceEnd' => 'Zůstatek na konci období', + 'splitByAccount' => 'Rozúčtování podle účtů', + 'coveredWithTags' => 'Pokryto štítky', + 'leftInBudget' => 'Zbývá v rozpočtu', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Souhrn součtů', + 'noCategory' => '(bez kategorie)', + 'notCharged' => 'Nestrženo (zatím)', + 'inactive' => 'Neaktivní', + 'active' => 'Aktivní', + 'difference' => 'Rozdíl', + 'money_flowing_in' => 'Vstup', + 'money_flowing_out' => 'Výstup', + 'topX' => 'nej :number', + 'show_full_list' => 'Zobrazit celý seznam', + 'show_only_top' => 'Zobrazit pouze :number nej', + 'report_type' => 'Typ přehledu', + 'report_type_default' => 'Výchozí výkaz o financích', + 'report_type_audit' => 'Přehled historie transakcí (audit)', + 'report_type_category' => 'Výkaz o kategorii', + 'report_type_budget' => 'Sestava rozpočtu', + 'report_type_tag' => 'Přehled značek', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Zahrnuté účty', + 'report_date_range' => 'Období', + 'report_preset_ranges' => 'Přednastavené rozsahy', + 'shared' => 'Sdíleno', + 'fiscal_year' => 'Fiskální rok', + 'income_entry' => 'Příjmy z účtu „:name“ mezi :start a :end', + 'expense_entry' => 'Výdaje z účtu „:name“ v rozmezí :start a :end', + 'category_entry' => 'Výdaje a příjmy na účtu „:name“ v rozmezí :start a :end', + 'budget_spent_amount' => 'Výdaje z rozpočtu „:budget“ v rozmezí :start a :end', + 'balance_amount' => 'Výdaje z rozpočtu „:budget“ placené z účtu „:account“ v období :start a :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Další volby', + 'report_has_no_extra_options' => 'Tento výkaz nemá žádné další volby', + 'reports_submit' => 'Zobrazit výkaz', + 'end_after_start_date' => 'Je třeba, aby konečné datum výkazu bylo později, než to počáteční.', + 'select_category' => 'Vybrat kategorie', + 'select_budget' => 'Vybrat rozpočty', + 'select_tag' => 'Vybrat štítky', + 'income_per_category' => 'Příjem podle kategorie', + 'expense_per_category' => 'Výdaje podle kategorie', + 'expense_per_budget' => 'Výdaje podle rozpočtu', + 'income_per_account' => 'Příjem podle účtu', + 'expense_per_account' => 'Výdaj podle účtu', + 'expense_per_tag' => 'Výdaje podle štítku', + 'income_per_tag' => 'Příjmy podle štítku', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Všechno ostatní', + 'income_and_expenses' => 'Příjmy a výdaje', + 'spent_average' => 'Utraceno (průměrně)', + 'income_average' => 'Získáno (průměrně)', + 'transaction_count' => 'Počet transakcí', + 'average_spending_per_account' => 'Průměrné výdaje na účet', + 'average_income_per_account' => 'Průměrný příjem v jednotlivých účtech', + 'total' => 'Celkem', + 'description' => 'Popis', + 'sum_of_period' => 'Souhrn období', + 'average_in_period' => 'Průměr období', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Výchozí účet aktiv', + 'account_role_sharedAsset' => 'Sdílený účet aktiv', + 'account_role_savingAsset' => 'Spořicí účet', + 'account_role_ccAsset' => 'Kreditní karta', + 'account_role_cashWalletAsset' => 'Peněženka', + 'budget_chart_click' => 'Graf zobrazíte kliknutím na název rozpočtu ve výše uvedené tabulce.', + 'category_chart_click' => 'Graf zobrazíte kliknutím na název kategorie ve výše uvedené tabulce.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Získáno a vydáno v jednotlivých kategoriích', + 'out_per_budget' => 'Vydáno v jednotlivých rozpočtech', + 'select_expense_revenue' => 'Vybrat účet výdajů/odměn', + 'multi_currency_report_sum' => 'Protože tento seznam obsahuje účty v různých měnách, nedávají zobrazované součty smysl. Výkaz vždy náhradně použije měnu, kterou máte nastavenou jako výchozí.', + 'sum_in_default_currency' => 'Souhrn vždy bude v měně, kterou jste nastavili jako výchozí.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Graf', - 'month' => 'Měsíc', - 'budget' => 'Rozpočet', - 'spent' => 'Utraceno', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Utraceno v rozpočtu', - 'left_to_spend' => 'Zbývá k utracení', - 'earned' => 'Vyděláno', - 'overspent' => 'Překročeny výdaje', - 'left' => 'Zbývá', - 'max-amount' => 'Maximální částka', - 'min-amount' => 'Nejmenší možná částka', - 'journal-amount' => 'Current bill entry', - 'name' => 'Název', - 'date' => 'Datum', - 'date_and_time' => 'Datum a čas', - 'time' => 'Čas', - 'paid' => 'Zaplaceno', - 'unpaid' => 'Nezaplaceno', - 'day' => 'Den', - 'budgeted' => 'Rozpočet', - 'period' => 'Období', - 'balance' => 'Zůstatek', - 'in_out_period' => 'In + out this period', - 'sum' => 'Součet', - 'summary' => 'Souhrn', - 'average' => 'Průměr', - 'balanceFor' => 'Zůstatek na :name', - 'no_tags' => '(žádné štítky)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Graf', + 'month' => 'Měsíc', + 'budget' => 'Rozpočet', + 'spent' => 'Utraceno', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Utraceno v rozpočtu', + 'left_to_spend' => 'Zbývá k utracení', + 'earned' => 'Vyděláno', + 'overspent' => 'Překročeny výdaje', + 'left' => 'Zbývá', + 'max-amount' => 'Maximální částka', + 'min-amount' => 'Nejmenší možná částka', + 'journal-amount' => 'Current bill entry', + 'name' => 'Název', + 'date' => 'Datum', + 'date_and_time' => 'Datum a čas', + 'time' => 'Čas', + 'paid' => 'Zaplaceno', + 'unpaid' => 'Nezaplaceno', + 'day' => 'Den', + 'budgeted' => 'Rozpočet', + 'period' => 'Období', + 'balance' => 'Zůstatek', + 'in_out_period' => 'In + out this period', + 'sum' => 'Součet', + 'summary' => 'Souhrn', + 'average' => 'Průměr', + 'balanceFor' => 'Zůstatek na :name', + 'no_tags' => '(žádné štítky)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"', - 'piggy_bank' => 'Pokladnička', - 'new_piggy_bank' => 'Nová pokladnička', - 'store_piggy_bank' => 'Uložit novou pokladničku', - 'stored_piggy_bank' => 'Uložit novou pokladničku „:name“', - 'account_status' => 'Stav účtu', - 'left_for_piggy_banks' => 'Zbývá pro pokladničky', - 'sum_of_piggy_banks' => 'Součet pokladniček', - 'saved_so_far' => 'Doposud naspořeno', - 'left_to_save' => 'Zbývá pro spoření', - 'suggested_amount' => 'Doporučené měsíční částka do úspor', - 'add_money_to_piggy_title' => 'Vložit peníze do pokladničky ":name"', - 'remove_money_from_piggy_title' => 'Vybrat peníze z pokladničky ":name"', - 'add' => 'Přidat', - 'no_money_for_piggy' => 'Nejsou žádné peníze, které by se daly vložit do této pokladničky.', - 'suggested_savings_per_month' => 'Doporučeno na měsíc', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Vložit peníze do pokladničky ":name"', + 'piggy_bank' => 'Pokladnička', + 'new_piggy_bank' => 'Nová pokladnička', + 'store_piggy_bank' => 'Uložit novou pokladničku', + 'stored_piggy_bank' => 'Uložit novou pokladničku „:name“', + 'account_status' => 'Stav účtu', + 'left_for_piggy_banks' => 'Zbývá pro pokladničky', + 'sum_of_piggy_banks' => 'Součet pokladniček', + 'saved_so_far' => 'Doposud naspořeno', + 'left_to_save' => 'Zbývá pro spoření', + 'suggested_amount' => 'Doporučené měsíční částka do úspor', + 'add_money_to_piggy_title' => 'Vložit peníze do pokladničky ":name"', + 'remove_money_from_piggy_title' => 'Vybrat peníze z pokladničky ":name"', + 'add' => 'Přidat', + 'no_money_for_piggy' => 'Nejsou žádné peníze, které by se daly vložit do této pokladničky.', + 'suggested_savings_per_month' => 'Doporučeno na měsíc', - 'remove' => 'Odebrat', - 'max_amount_add' => 'Nejvyšší částka, kterou je možné přidat je', - 'max_amount_remove' => 'Nejvyšší částka, kterou je možné odebrat je', - 'update_piggy_button' => 'Aktualizovat pokladničku', - 'update_piggy_title' => 'Aktualizovat pokladničku ":name"', - 'updated_piggy_bank' => 'Aktualizována pokladnička „:name“', - 'details' => 'Podrobnosti', - 'events' => 'Události', - 'target_amount' => 'Cílová částka', - 'start_date' => 'Datum zahájení', - 'no_start_date' => 'Žádné datum začátku', - 'target_date' => 'Cílové datum', - 'no_target_date' => 'Žádné cílové datum', - 'table' => 'Tabulka', - 'delete_piggy_bank' => 'Smazat pokladničku ":name"', - 'cannot_add_amount_piggy' => 'Nedaří se přidat :amount do „:name“.', - 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', - 'deleted_piggy_bank' => 'Pokladnička ":name" smazána', - 'added_amount_to_piggy' => ':amount přidáno do „:name“', - 'removed_amount_from_piggy' => ':amount odebráno z „:name“', - 'piggy_events' => 'Související pokladničky', + 'remove' => 'Odebrat', + 'max_amount_add' => 'Nejvyšší částka, kterou je možné přidat je', + 'max_amount_remove' => 'Nejvyšší částka, kterou je možné odebrat je', + 'update_piggy_button' => 'Aktualizovat pokladničku', + 'update_piggy_title' => 'Aktualizovat pokladničku ":name"', + 'updated_piggy_bank' => 'Aktualizována pokladnička „:name“', + 'details' => 'Podrobnosti', + 'events' => 'Události', + 'target_amount' => 'Cílová částka', + 'start_date' => 'Datum zahájení', + 'no_start_date' => 'Žádné datum začátku', + 'target_date' => 'Cílové datum', + 'no_target_date' => 'Žádné cílové datum', + 'table' => 'Tabulka', + 'delete_piggy_bank' => 'Smazat pokladničku ":name"', + 'cannot_add_amount_piggy' => 'Nedaří se přidat :amount do „:name“.', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Pokladnička ":name" smazána', + 'added_amount_to_piggy' => ':amount přidáno do „:name“', + 'removed_amount_from_piggy' => ':amount odebráno z „:name“', + 'piggy_events' => 'Související pokladničky', // tags - 'delete_tag' => 'Smazat štítek „:tag“', - 'deleted_tag' => 'Smazán štítek „:tag“', - 'new_tag' => 'Vytvořit nový štítek', - 'edit_tag' => 'Upravit štítek „:tag“', - 'updated_tag' => 'Aktualizován štítek „:tag“', - 'created_tag' => 'Štítek „:tag“ byl vytvořen.', + 'delete_tag' => 'Smazat štítek „:tag“', + 'deleted_tag' => 'Smazán štítek „:tag“', + 'new_tag' => 'Vytvořit nový štítek', + 'edit_tag' => 'Upravit štítek „:tag“', + 'updated_tag' => 'Aktualizován štítek „:tag“', + 'created_tag' => 'Štítek „:tag“ byl vytvořen.', - 'transaction_journal_information' => 'Informace o transakci', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta informace', - 'transaction_journal_more' => 'Další informace', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Více informací', - 'att_part_of_journal' => 'Uloženo pod „:journal“', - 'total_amount' => 'Celková částka', - 'number_of_decimals' => 'Počet desetinných míst', + 'transaction_journal_information' => 'Informace o transakci', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta informace', + 'transaction_journal_more' => 'Další informace', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Více informací', + 'att_part_of_journal' => 'Uloženo pod „:journal“', + 'total_amount' => 'Celková částka', + 'number_of_decimals' => 'Počet desetinných míst', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Správa', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Správa uživatelů', - 'list_all_users' => 'Všichni uživatelé', - 'all_users' => 'Všichni uživatelé', - 'instance_configuration' => 'Nastavení', - 'firefly_instance_configuration' => 'Možnosti nastavení Firefly III', - 'setting_single_user_mode' => 'Režim pro jediného uživatele', - 'setting_single_user_mode_explain' => 'Ve výchozím stavu, Firefly III přijme pouze jednu registraci – Vás. Toto je bezpečnostní opatření, bránící ostatním použít vaši instanci, dokud jim to nepovolíte. Další registrace jsou blokovány. Pokud zrušíte zaškrtnutí tohoto, ostatní mohou vaši instanci také použít za předpokladu, že je jim dostupná (když je připojena k Internetu).', - 'store_configuration' => 'Uložit nastavení', - 'single_user_administration' => 'Správa uživatele pro :email', - 'edit_user' => 'Upravit uživatele :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Uživatelská data', - 'user_information' => 'Informace o uživateli', - 'total_size' => 'celková velikost', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'Nastavení bylo aktualizováno', - 'setting_is_demo_site' => 'Demostránka', - 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Platnost demoúčtu skončila', - 'no_block_code' => 'Není důvod pro blokování nebo uživatel není blokován', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Uživatel ještě nepotvrdil svou e-mailovou adresu', - 'admin_update_email' => 'Narozdíl od profilové stránky uživatel NEBUDE upozorněn na změnu své e-mailové adresy!', - 'update_user' => 'Aktualizovat uživatele', - 'updated_user' => 'Data uživatele byla změněna.', - 'delete_user' => 'Smazat uživatele :email', - 'user_deleted' => 'Uživatel byl smazán', - 'send_test_email' => 'Poslat zkušební e-mail', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Poslat zprávu', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Údržba', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Vymazat mezipaměť', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Správa', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Správa uživatelů', + 'list_all_users' => 'Všichni uživatelé', + 'all_users' => 'Všichni uživatelé', + 'instance_configuration' => 'Nastavení', + 'firefly_instance_configuration' => 'Možnosti nastavení Firefly III', + 'setting_single_user_mode' => 'Režim pro jediného uživatele', + 'setting_single_user_mode_explain' => 'Ve výchozím stavu, Firefly III přijme pouze jednu registraci – Vás. Toto je bezpečnostní opatření, bránící ostatním použít vaši instanci, dokud jim to nepovolíte. Další registrace jsou blokovány. Pokud zrušíte zaškrtnutí tohoto, ostatní mohou vaši instanci také použít za předpokladu, že je jim dostupná (když je připojena k Internetu).', + 'store_configuration' => 'Uložit nastavení', + 'single_user_administration' => 'Správa uživatele pro :email', + 'edit_user' => 'Upravit uživatele :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Uživatelská data', + 'user_information' => 'Informace o uživateli', + 'total_size' => 'celková velikost', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'Nastavení bylo aktualizováno', + 'setting_is_demo_site' => 'Demostránka', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Platnost demoúčtu skončila', + 'no_block_code' => 'Není důvod pro blokování nebo uživatel není blokován', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Uživatel ještě nepotvrdil svou e-mailovou adresu', + 'admin_update_email' => 'Narozdíl od profilové stránky uživatel NEBUDE upozorněn na změnu své e-mailové adresy!', + 'update_user' => 'Aktualizovat uživatele', + 'updated_user' => 'Data uživatele byla změněna.', + 'delete_user' => 'Smazat uživatele :email', + 'user_deleted' => 'Uživatel byl smazán', + 'send_test_email' => 'Poslat zkušební e-mail', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Poslat zprávu', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Údržba', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Vymazat mezipaměť', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Popis rozúčtování', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'Pokud vytvoříte rozúčtování, je třeba, aby zde byl celkový popis pro všechna rozúčtování dané transakce.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Popis rozúčtování', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'Pokud vytvoříte rozúčtování, je třeba, aby zde byl celkový popis pro všechna rozúčtování dané transakce.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Vytvořit nový typ odkazu', - 'store_new_link_type' => 'Uložit nový typ odkazu', - 'update_link_type' => 'Aktualizovat typ propojení', - 'edit_link_type' => 'Upravit odkaz typu „:name“', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'tj. „duplicity“', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(neukládat spojení)', - 'link_transaction' => 'Propojit transakci', - 'link_to_other_transaction' => 'Propojit tuto transakci s jinou', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'Tato transakce', - 'transaction' => 'Transakce', - 'comments' => 'Komentáře', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Tyto transakce nelze propojit', - 'selected_transaction' => 'Vybraná transakce', - 'journals_linked' => 'Transakce jsou propojeny.', - 'journals_error_linked' => 'Tyto transakce už jsou propojené.', - 'journals_link_to_self' => 'Není možné propojit transakci s ní samotnou', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'Tento výběr', - 'this_deposit' => 'Tento vklad', - 'this_transfer' => 'Tento převod', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Zdrojová transakce', - 'link_description' => 'Popis odkazu', - 'destination_transaction' => 'Cílová transakce', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Smazaný odkaz', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Vytvořit nový typ odkazu', + 'store_new_link_type' => 'Uložit nový typ odkazu', + 'update_link_type' => 'Aktualizovat typ propojení', + 'edit_link_type' => 'Upravit odkaz typu „:name“', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'tj. „duplicity“', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(neukládat spojení)', + 'link_transaction' => 'Propojit transakci', + 'link_to_other_transaction' => 'Propojit tuto transakci s jinou', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'Tato transakce', + 'transaction' => 'Transakce', + 'comments' => 'Komentáře', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Tyto transakce nelze propojit', + 'selected_transaction' => 'Vybraná transakce', + 'journals_linked' => 'Transakce jsou propojeny.', + 'journals_error_linked' => 'Tyto transakce už jsou propojené.', + 'journals_link_to_self' => 'Není možné propojit transakci s ní samotnou', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'Tento výběr', + 'this_deposit' => 'Tento vklad', + 'this_transfer' => 'Tento převod', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Zdrojová transakce', + 'link_description' => 'Popis odkazu', + 'destination_transaction' => 'Cílová transakce', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Smazaný odkaz', // link translations: - 'Paid_name' => 'Zaplaceno', - 'Refund_name' => 'Vrácení peněz', - 'Reimbursement_name' => 'Náhrada', - 'Related_name' => 'Související', - 'relates to_inward' => 'souvisí s', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'souvisí s', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'souvisí s', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Zaplaceno', + 'Refund_name' => 'Vrácení peněz', + 'Reimbursement_name' => 'Náhrada', + 'Related_name' => 'Související', + 'relates to_inward' => 'souvisí s', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'souvisí s', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'souvisí s', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Rozúčtování', - 'add_another_split' => 'Přidat další rozúčtování', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Převést transakci', - 'convert_invalid_source' => 'Zdrojové informace jsou neplatné pro transakci #%d.', - 'convert_invalid_destination' => 'Cílové informace jsou neplatné pro transakci #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Rozúčtování', + 'add_another_split' => 'Přidat další rozúčtování', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Převést transakci', + 'convert_invalid_source' => 'Zdrojové informace jsou neplatné pro transakci #%d.', + 'convert_invalid_destination' => 'Cílové informace jsou neplatné pro transakci #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(neseskupeno)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(neseskupeno)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Vytvořme účet aktiv!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', - 'no_accounts_create_asset' => 'Vytvořit nový účet', - 'no_accounts_title_expense' => 'Vytvořme výdajový účet!', - 'no_accounts_intro_expense' => 'Doposud jste nevytvořily žádné účty pro výdaje. Tyto účty jsou tím, kde utrácíte peníze, jako například obchody a supermarkety.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Vytvořit výdajový účet', - 'no_accounts_title_revenue' => 'Vytvořme příjmový účet!', - 'no_accounts_intro_revenue' => 'Doposud jste ještě nevytvořili žádné příjmové účty. Příjmové účty jsou místa, ze kterých dostáváte peníze – například váš zaměstnavatel.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_revenue' => 'Vytvořit příjmový účet', - 'no_accounts_title_liabilities' => 'Pojďme vytvořit závazek!', - 'no_accounts_intro_liabilities' => 'Zatím nemáte žádné závazky. Ty jsou účty které registrují vaše půjčky a ostatní dluhy.', - 'no_accounts_imperative_liabilities' => 'Tuto funkci nemusíte používat, ale hodí se pokud si chcete držet přehled v těchto věcech.', - 'no_accounts_create_liabilities' => 'Vytvořit závazek', - 'no_budgets_title_default' => 'Pojďme vytvořit rozpočet', - 'no_rules_title_default' => 'Pojďme vytvořit pravidlo', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Rozpočty jsou základní nástroje správy financí. Pojďme takový vytvořit:', - 'no_budgets_create_default' => 'Vytvořit rozpočet', - 'no_rules_create_default' => 'Vytvořit pravidlo', - 'no_categories_title_default' => 'Pojďme vytvořit kategorii!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Vytvořit kategorii', - 'no_tags_title_default' => 'Pojďme vytvořit štítek!', - 'no_tags_intro_default' => 'Zatím jste nezadali nevytvořili žádné štítky. Ty slouží k jemnému dolaďování vašich transakcí a označují je konkrétními klíčovými slovy.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Vytvořit štítek', - 'no_transactions_title_withdrawal' => 'Pojďme vytvořit výdaj!', - 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Vytvořit výdaj', - 'no_transactions_title_deposit' => 'Pojďme vytvořit nějaký příjem!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Vytvořit vklad', - 'no_transactions_title_transfers' => 'Pojďme vytvořit převod!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Vytvořit převod', - 'no_piggies_title_default' => 'Vytvořit pokladničku!', - 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', - 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', - 'no_piggies_create_default' => 'Vytvořit novou pokladničku', - 'no_bills_title_default' => 'Pojďme vytvořit účet!', - 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', - 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', - 'no_bills_create_default' => 'Vytvořit účet', + 'no_accounts_title_asset' => 'Vytvořme účet aktiv!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Vytvořit nový účet', + 'no_accounts_title_expense' => 'Vytvořme výdajový účet!', + 'no_accounts_intro_expense' => 'Doposud jste nevytvořily žádné účty pro výdaje. Tyto účty jsou tím, kde utrácíte peníze, jako například obchody a supermarkety.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Vytvořit výdajový účet', + 'no_accounts_title_revenue' => 'Vytvořme příjmový účet!', + 'no_accounts_intro_revenue' => 'Doposud jste ještě nevytvořili žádné příjmové účty. Příjmové účty jsou místa, ze kterých dostáváte peníze – například váš zaměstnavatel.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Vytvořit příjmový účet', + 'no_accounts_title_liabilities' => 'Pojďme vytvořit závazek!', + 'no_accounts_intro_liabilities' => 'Zatím nemáte žádné závazky. Ty jsou účty které registrují vaše půjčky a ostatní dluhy.', + 'no_accounts_imperative_liabilities' => 'Tuto funkci nemusíte používat, ale hodí se pokud si chcete držet přehled v těchto věcech.', + 'no_accounts_create_liabilities' => 'Vytvořit závazek', + 'no_budgets_title_default' => 'Pojďme vytvořit rozpočet', + 'no_rules_title_default' => 'Pojďme vytvořit pravidlo', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Rozpočty jsou základní nástroje správy financí. Pojďme takový vytvořit:', + 'no_budgets_create_default' => 'Vytvořit rozpočet', + 'no_rules_create_default' => 'Vytvořit pravidlo', + 'no_categories_title_default' => 'Pojďme vytvořit kategorii!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Vytvořit kategorii', + 'no_tags_title_default' => 'Pojďme vytvořit štítek!', + 'no_tags_intro_default' => 'Zatím jste nezadali nevytvořili žádné štítky. Ty slouží k jemnému dolaďování vašich transakcí a označují je konkrétními klíčovými slovy.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Vytvořit štítek', + 'no_transactions_title_withdrawal' => 'Pojďme vytvořit výdaj!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Vytvořit výdaj', + 'no_transactions_title_deposit' => 'Pojďme vytvořit nějaký příjem!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Vytvořit vklad', + 'no_transactions_title_transfers' => 'Pojďme vytvořit převod!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Vytvořit převod', + 'no_piggies_title_default' => 'Vytvořit pokladničku!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Vytvořit novou pokladničku', + 'no_bills_title_default' => 'Pojďme vytvořit účet!', + 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', + 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_create_default' => 'Vytvořit účet', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Opakované transakce', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Kalendář', - 'no_recurring_title_default' => 'Pojďme vytvořit opakující se transakci!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Vytvořit opakující se transakci', - 'make_new_recurring' => 'Vytvořit opakující se transakci', - 'recurring_daily' => 'Každý den', - 'recurring_weekly' => 'Každý týden v :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Každý rok v :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Související transakce', - 'expected_withdrawals' => 'Očekávané výběry', - 'expected_deposits' => 'Očekávané vklady', - 'expected_transfers' => 'Očekávané převody', - 'created_withdrawals' => 'Vytvořené výběry', - 'created_deposits' => 'Vytvořené vklady', - 'created_transfers' => 'Vytvořené převody', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Opakované transakce', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Kalendář', + 'no_recurring_title_default' => 'Pojďme vytvořit opakující se transakci!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Vytvořit opakující se transakci', + 'make_new_recurring' => 'Vytvořit opakující se transakci', + 'recurring_daily' => 'Každý den', + 'recurring_weekly' => 'Každý týden v :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Každý rok v :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Související transakce', + 'expected_withdrawals' => 'Očekávané výběry', + 'expected_deposits' => 'Očekávané vklady', + 'expected_transfers' => 'Očekávané převody', + 'created_withdrawals' => 'Vytvořené výběry', + 'created_deposits' => 'Vytvořené vklady', + 'created_transfers' => 'Vytvořené převody', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Vytvořit novou opakující se transakci', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(žádná měna)', - 'mandatory_for_recurring' => 'Nezbytné informace k opakovanosti', - 'mandatory_for_transaction' => 'Povinné informace o transakci', - 'optional_for_recurring' => 'Volitelné informace o opakovanosti', - 'optional_for_transaction' => 'Volitelné informace o transakci', - 'change_date_other_options' => 'Pro zobrazení více možností změňte „datum první“.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Opakovat donekonečna', - 'repeat_until_date' => 'Opakovat do data', - 'repeat_times' => 'Zopakovat tolikrát', - 'recurring_skips_one' => 'Každý druhý', - 'recurring_skips_more' => 'Přeskočí :count výskytů', - 'store_new_recurrence' => 'Uložit opakovanou transakci', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Opakuje se do :date', - 'recurring_repeats_forever' => 'Opakuje navždy', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Aktualizovat opakující se transakci', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'Nová opakující se transakce', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Jen vytvořit transakci', - 'skip_transaction' => 'Přeskočit opakovanost', - 'jump_to_friday' => 'Namísto toho vytvořit transakci v předchozí pátek', - 'jump_to_monday' => 'Namísto toho vytvořit transakci v předchozí pondělí', - 'will_jump_friday' => 'Bude vytvořeno v pátek namísto víkendů.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Vyjma výkendů', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Vytvořit novou opakující se transakci', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(žádná měna)', + 'mandatory_for_recurring' => 'Nezbytné informace k opakovanosti', + 'mandatory_for_transaction' => 'Povinné informace o transakci', + 'optional_for_recurring' => 'Volitelné informace o opakovanosti', + 'optional_for_transaction' => 'Volitelné informace o transakci', + 'change_date_other_options' => 'Pro zobrazení více možností změňte „datum první“.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Opakovat donekonečna', + 'repeat_until_date' => 'Opakovat do data', + 'repeat_times' => 'Zopakovat tolikrát', + 'recurring_skips_one' => 'Každý druhý', + 'recurring_skips_more' => 'Přeskočí :count výskytů', + 'store_new_recurrence' => 'Uložit opakovanou transakci', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Opakuje se do :date', + 'recurring_repeats_forever' => 'Opakuje navždy', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Aktualizovat opakující se transakci', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'Nová opakující se transakce', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Jen vytvořit transakci', + 'skip_transaction' => 'Přeskočit opakovanost', + 'jump_to_friday' => 'Namísto toho vytvořit transakci v předchozí pátek', + 'jump_to_monday' => 'Namísto toho vytvořit transakci v předchozí pondělí', + 'will_jump_friday' => 'Bude vytvořeno v pátek namísto víkendů.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Vyjma výkendů', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Zůstatek (:currency)', - 'box_spent_in_currency' => 'Utraceno (:currency)', - 'box_earned_in_currency' => 'Vyděláno (:currency)', - 'box_budgeted_in_currency' => 'Rozpočet (:currency)', - 'box_bill_paid_in_currency' => 'Zaplacené účty (:currency)', - 'box_bill_unpaid_in_currency' => 'Nezaplacené účty (:currency)', - 'box_left_to_spend_in_currency' => 'Zbývá k utracení (:currency)', - 'box_net_worth_in_currency' => 'Čisté jmění (:currency)', - 'box_spend_per_day' => 'Zbývá pro denní útratu: :amount', + 'box_balance_in_currency' => 'Zůstatek (:currency)', + 'box_spent_in_currency' => 'Utraceno (:currency)', + 'box_earned_in_currency' => 'Vyděláno (:currency)', + 'box_budgeted_in_currency' => 'Rozpočet (:currency)', + 'box_bill_paid_in_currency' => 'Zaplacené účty (:currency)', + 'box_bill_unpaid_in_currency' => 'Nezaplacené účty (:currency)', + 'box_left_to_spend_in_currency' => 'Zbývá k utracení (:currency)', + 'box_net_worth_in_currency' => 'Čisté jmění (:currency)', + 'box_spend_per_day' => 'Zbývá pro denní útratu: :amount', // debug page - 'debug_page' => 'Ladící stránka', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Ladící stránka', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Skupiny', - 'object_groups_page_title' => 'Skupiny', - 'object_groups_breadcrumb' => 'Skupiny', - 'object_groups_index' => 'Přehled', - 'object_groups' => 'Skupiny', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Název', - 'edit_object_group' => 'Upravit skupinu „:title“', - 'delete_object_group' => 'Odstranit skupinu „:title“', - 'update_object_group' => 'Aktualizovat skupinu', - 'updated_object_group' => 'Skupina „:title“ byla úspěšně aktualizována', - 'deleted_object_group' => 'Skupina „:title“ byla úspěšně odstraněna', - 'object_group' => 'Skupina', + 'object_groups_menu_bar' => 'Skupiny', + 'object_groups_page_title' => 'Skupiny', + 'object_groups_breadcrumb' => 'Skupiny', + 'object_groups_index' => 'Přehled', + 'object_groups' => 'Skupiny', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Název', + 'edit_object_group' => 'Upravit skupinu „:title“', + 'delete_object_group' => 'Odstranit skupinu „:title“', + 'update_object_group' => 'Aktualizovat skupinu', + 'updated_object_group' => 'Skupina „:title“ byla úspěšně aktualizována', + 'deleted_object_group' => 'Skupina „:title“ byla úspěšně odstraněna', + 'object_group' => 'Skupina', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/cs_CZ/validation.php b/resources/lang/cs_CZ/validation.php index 96c7c971f4..7d7e8169ec 100644 --- a/resources/lang/cs_CZ/validation.php +++ b/resources/lang/cs_CZ/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/da_DK/firefly.php b/resources/lang/da_DK/firefly.php index b69f14dd27..8489b48ce7 100644 --- a/resources/lang/da_DK/firefly.php +++ b/resources/lang/da_DK/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Luk', - 'actions' => 'Handlinger', - 'edit' => 'Rediger', - 'delete' => 'Slet', - 'split' => 'Opdel', - 'single_split' => 'Opdel', - 'clone' => 'Klon', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Bekræft', - 'last_seven_days' => 'Sidste syv dage', - 'last_thirty_days' => 'Sidste tredive dage', - 'last_180_days' => 'Seneste 180 dage', - 'month_to_date' => 'Måned til dato', - 'year_to_date' => 'År til dato', - 'YTD' => 'ÅTD', - 'welcome_back' => 'Hvad spiller?', - 'everything' => 'Alting', - 'today' => 'i dag', - 'customRange' => 'Tilpasset interval', - 'date_range' => 'Dato interval', - 'apply' => 'Anvend', - 'select_date' => 'Vælg dato..', - 'cancel' => 'Annuller', - 'from' => 'Fra', - 'to' => 'Til', - 'structure' => 'Struktur', - 'help_translating' => 'Denne hjælpetekst er endnu ikke tilgængelig på dit sprog. Vil du hjælpe med at oversætte?', - 'showEverything' => 'Vis alt', - 'never' => 'Aldrig', - 'no_results_for_empty_search' => 'Din søgning var tom, så intet blev fundet.', - 'removed_amount' => 'Fjernede :amount', - 'added_amount' => 'Tilføjede :amount', - 'asset_account_role_help' => 'Ekstra indstillinger der opstår på baggrund af dit valg kan sættes senere.', - 'Opening balance' => 'Startsaldo', - 'create_new_stuff' => 'Opret nye ting', - 'new_withdrawal' => 'Ny hævning', - 'create_new_transaction' => 'Opret en ny transaktion', - 'sidebar_frontpage_create' => 'Opret', - 'new_transaction' => 'Ny overførsel', - 'no_rules_for_bill' => 'Denne regning er ikke associeret med nogle regler.', - 'go_to_asset_accounts' => 'Se dine aktiver', - 'go_to_budgets' => 'Gå til dine budgetter', - 'go_to_withdrawals' => 'Gå til dine udbetalinger', - 'clones_journal_x' => 'Denne transaktion er en klon af ":description" (#:id)', - 'go_to_categories' => 'Gå til dine kategorier', - 'go_to_bills' => 'Gå til dine regninger', - 'go_to_expense_accounts' => 'Se dine udgiftskonti', - 'go_to_revenue_accounts' => 'Se dine indkomstkonti', - 'go_to_piggies' => 'Gå til dine sparegrise', - 'new_deposit' => 'Ny deponering', - 'new_transfer' => 'Ny overførsel', - 'new_transfers' => 'Ny overførsel', - 'new_asset_account' => 'Ny aktivkonto', - 'new_expense_account' => 'Ny udgiftskonto', - 'new_revenue_account' => 'Ny indkomstkonto', - 'new_liabilities_account' => 'Ny passivkonto', - 'new_budget' => 'Nyt budget', - 'new_bill' => 'Ny regning', - 'block_account_logout' => 'Du er blevet logget ud. Blokerede konti kan ikke bruge denne side. Oprettede du dig med en gyldig e-mailadresse?', - 'flash_success' => 'Succes!', - 'flash_info' => 'Besked', - 'flash_warning' => 'Advarsel!', - 'flash_error' => 'Fejl!', - 'flash_danger' => 'Fare!', - 'flash_info_multiple' => 'Der er en besked|Der er :count beskeder', - 'flash_error_multiple' => 'Der er en fejl|Der er :count fejl', - 'net_worth' => 'Nettoformue', - 'help_for_this_page' => 'Hjælp til denne side', - 'help_for_this_page_body' => 'Du kan finde mere information om denne side i dokumentationen.', - 'two_factor_welcome' => 'Hej!', - 'two_factor_enter_code' => 'For at fortsætte, indtast venligst din to-faktor-godkendelseskode. Dit program vil generere den for dig.', - 'two_factor_code_here' => 'Indtast koden her', - 'two_factor_title' => 'Tofaktorgodkendelse', - 'authenticate' => 'Godkend', - 'two_factor_forgot_title' => 'Glemt totrinsbekræftelse', - 'two_factor_forgot' => 'Jeg har glemt min tofaktor-ting.', - 'two_factor_lost_header' => 'Glemt din totrinsbekræftelse?', - 'two_factor_lost_intro' => 'Hvis du også har glemt dine backupkoder, så er det sort uheld. Det er ikke noget, du kan fikse fra webinterfacet. Du har to muligheder.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Ellers, send en e-mail til sideejeren, :site_owner og spørg dem om at nulstille din tofaktorgodkendelse.', - 'mfa_backup_code' => 'Du har brugt en backupkode til at logge ind på Firefly III. Den kan ikke bruges igen, så streg den fra din liste.', - 'pref_two_factor_new_backup_codes' => 'Få nye backupkoder', - 'pref_two_factor_backup_code_count' => 'Du har :count gyldig backup kode.|Du har :count gyldige backup koder.', - '2fa_i_have_them' => 'Jeg gemte dem!', - 'warning_much_data' => ':days dages data kan tage et stykke tid at indlæse.', - 'registered' => 'Du er blevet succesfuldt oprettet!', - 'Default asset account' => 'Standard aktivkonto', - 'no_budget_pointer' => 'Det ser ud til, at du ikke har oprettet budgetter endnu. Du burde oprette nogle på budgetsiden. Budgetter kan hjælpe dig med at holde styr på udgifter.', - 'no_bill_pointer' => 'Du synes ikke at have nogen regninger endnu. Du bør oprette nogle på regninger-siden. Regninger kan hjælpe dig med at holde styr på udgifterne.', - 'Savings account' => 'Opsparingskonto', - 'Credit card' => 'Kreditkort', - 'source_accounts' => 'Kildekonto|Kildekonti', - 'destination_accounts' => 'Destinationskontoen|Destinationskonti', - 'user_id_is' => 'Dit brugerid er :user', - 'field_supports_markdown' => 'Dette felt undersøtter Markdown.', - 'need_more_help' => 'Hvis du har brug for mere hjælp til at bruge Firefly III, åbn venligst en sag på Github.', - 'reenable_intro_text' => 'Du kan også genaktivere introduktionsguiden.', - 'intro_boxes_after_refresh' => 'Introduktionsboksene vil kunne ses igen, når du genopfrisker siden.', - 'show_all_no_filter' => 'Vis alle transaktioner uden at gruppere dem efter dato.', - 'expenses_by_category' => 'Udgifter per kategori', - 'expenses_by_budget' => 'Udgifter per budget', - 'income_by_category' => 'Indkomst per kategori', - 'expenses_by_asset_account' => 'Udgifter per aktivkonto', - 'expenses_by_expense_account' => 'Udgifter per udgiftskonto', - 'cannot_redirect_to_account' => 'Firefly III kan ikke videresende dig til den korrekte side. Beklager.', - 'sum_of_expenses' => 'Sum af udgifter', - 'sum_of_income' => 'Sum af indkomst', - 'liabilities' => 'Gæld', - 'spent_in_specific_budget' => 'Brugt på budget ":budget"', - 'spent_in_specific_double' => 'Forbrug på konto ":account"', - 'earned_in_specific_double' => 'Optjent på konto ":account"', - 'source_account' => 'Kildekonto', - 'source_account_reconciliation' => 'Du kan ikke redigere kildekontoen på en afstemningstransaktion.', - 'destination_account' => 'Destinationskonto', - 'destination_account_reconciliation' => 'Du kan ikke redigere destinationskontoen på en afstemningstransaktion.', - 'sum_of_expenses_in_budget' => 'Total brugt på budget ":budget"', - 'left_in_budget_limit' => 'Resterende beløb i henhold til budgettet', - 'current_period' => 'Aktuel periode', - 'show_the_current_period_and_overview' => 'Vis den aktuelle periode og overblik', - 'pref_languages_locale' => 'For at et andet sprog end engelsk skal virke rigtigt, skal dit operativsystem være udstyret med den korrekte lokale-information. Hvis denne ikke er til stede, vil valutadata, datoer og beløb muligvis vises forkert.', - 'budget_in_period' => 'Alle transaktioner for budget ":name" mellem :start og :end i :currency', - 'chart_budget_in_period' => 'Diagram for alle transaktioner for budget ":name" mellem :start og :end i :currency', - 'chart_budget_in_period_only_currency' => 'Beløbet du budgetterede var i :currency, så dette diagram vil kun vise transaktioner i :currency.', - 'chart_account_in_period' => 'Diagram for alle transaktion for konto ":name" (:balance) mellem :start og :end', - 'chart_category_in_period' => 'Diagram for alle transaktion i kategori ":name" mellem :start og :end', - 'chart_category_all' => 'Diagram for alle transaktion i kategori ":name"', - 'clone_withdrawal' => 'Klon denne hævning', - 'clone_deposit' => 'Klon denne deponering', - 'clone_transfer' => 'Klon denne overførsel', - 'multi_select_no_selection' => 'Ingen valgt', - 'multi_select_select_all' => 'Vælg alle', - 'multi_select_n_selected' => 'valgt', - 'multi_select_all_selected' => 'Alt valgt', - 'multi_select_filter_placeholder' => 'Find..', - 'intro_next_label' => 'Næste', - 'intro_prev_label' => 'Forrige', - 'intro_skip_label' => 'Spring over', - 'intro_done_label' => 'Udført', - 'between_dates_breadcrumb' => 'Mellem :start og :end', - 'all_journals_without_budget' => 'Alle transaktion uden et budget', - 'journals_without_budget' => 'Transaktioner uden et budget', - 'all_journals_without_category' => 'Alle transaktion uden en kategori', - 'journals_without_category' => 'Transaktioner uden en kategori', - 'all_journals_for_account' => 'Alle transaktioner for konto :name', - 'chart_all_journals_for_account' => 'Diagram af alle transaktioner for konto :name', - 'journals_in_period_for_account' => 'Alle transaktioner for konto :name imellem :start og :end', - 'journals_in_period_for_account_js' => 'Alle transaktioner for konto {title} mellem {start} og {end}', - 'transferred' => 'Overført', - 'all_withdrawal' => 'Alle udgifter', - 'all_transactions' => 'Alle transaktioner', - 'title_withdrawal_between' => 'Alle udgifter imellem :start og :end', - 'all_deposit' => 'Alle indkomster', - 'title_deposit_between' => 'Alle indkomster imellem :start og :end', - 'all_transfers' => 'Alle overførsler', - 'title_transfers_between' => 'Alle overførsler imellem :start og :end', - 'all_transfer' => 'Alle overførsler', - 'all_journals_for_tag' => 'Alle overførsler for tag ":tag"', - 'title_transfer_between' => 'Alle overførsler imellem :start og :end', - 'all_journals_for_category' => 'Alle transaktioner for kategori :name', - 'all_journals_for_budget' => 'Alle transaktioner for budget :name', - 'chart_all_journals_for_budget' => 'Diagram over alle transaktioner for budget :name', - 'journals_in_period_for_category' => 'Alle transaktioner for kategori :name mellem :start og :end', - 'journals_in_period_for_tag' => 'Alle transaktioner for tag :tag mellem :start og :end', - 'not_available_demo_user' => 'Den funktion, du forsøger at få adgang til, er ikke tilgængelig for demobrugere.', - 'exchange_rate_instructions' => 'Aktivkonto "@name" tillader kun transaktioner i @native_currency. Hvis du ønsker at bruge @foreign_currency i stedet, så sørg for at beløbet i @native_currency også er registreret:', - 'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" tillader kun transaktioner i @source_currency. Destinationskonto "@dest_name" tillader kun transaktioner i @dest_currency. Du skal rigtigt angive det overførte beløb i begge valutaer.', - 'transaction_data' => 'Transaktionsdata', - 'invalid_server_configuration' => 'Ugyldig server konfiguration', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Hurtigskift', - 'sign_in_to_start' => 'Log ind for at starte din session', - 'sign_in' => 'Log ind', - 'register_new_account' => 'Registrer en ny konto', - 'forgot_my_password' => 'Jeg har glemt min adgangskode', - 'problems_with_input' => 'Der var nogle problemer med din indtastning.', - 'reset_password' => 'Nulstil din adgangskode', - 'button_reset_password' => 'Nulstil adgangskode', - 'reset_button' => 'Nulstil', - 'want_to_login' => 'Jeg ønsker at logge ind', - 'login_page_title' => 'Log ind i Firefly III', - 'register_page_title' => 'Registrer hos Firefly III', - 'forgot_pw_page_title' => 'Glemt din adgangskode til Firefly III', - 'reset_pw_page_title' => 'Nulstil din adgangskode til Firefly III', - 'cannot_reset_demo_user' => 'Du kan ikke nulstille adgangskoden til demo-brugeren.', - 'no_att_demo_user' => 'Demo brugeren kan ikke uploade vedhæftede filer.', - 'button_register' => 'Registrér', - 'authorization' => 'Autorisation', - 'active_bills_only' => 'kun aktuelle regninger', - 'active_bills_only_total' => 'alle aktuelle regninger', - 'active_exp_bills_only' => 'kun aktuelle og forventede regninger', - 'active_exp_bills_only_total' => 'kun alle forventede og aktuelle regninger', - 'per_period_sum_1D' => 'Forventede daglige omkostninger', - 'per_period_sum_1W' => 'Forventede ugentlige omkostninger', - 'per_period_sum_1M' => 'Forventede månedlige omkostninger', - 'per_period_sum_3M' => 'Forventede kvartalsvise omkostninger', - 'per_period_sum_6M' => 'Forventede halvårlige omkostninger', - 'per_period_sum_1Y' => 'Forventede årlige omkostninger', - 'average_per_bill' => 'gennemsnit pr. regning', - 'expected_total' => 'forventet total', - 'reconciliation_account_name' => ':name afstemning (:currency)', - 'saved' => 'Gemt', - 'advanced_options' => 'Avancerede indstillinger', - 'advanced_options_explain' => 'Nogle sider i Firefly III har avancerede indstillinger der kan tilgås via denne knap. Denne side har ikke noget specielt her, men tjek de andre!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Luk', + 'actions' => 'Handlinger', + 'edit' => 'Rediger', + 'delete' => 'Slet', + 'split' => 'Opdel', + 'single_split' => 'Opdel', + 'clone' => 'Klon', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Bekræft', + 'last_seven_days' => 'Sidste syv dage', + 'last_thirty_days' => 'Sidste tredive dage', + 'last_180_days' => 'Seneste 180 dage', + 'month_to_date' => 'Måned til dato', + 'year_to_date' => 'År til dato', + 'YTD' => 'ÅTD', + 'welcome_back' => 'Hvad spiller?', + 'everything' => 'Alting', + 'today' => 'i dag', + 'customRange' => 'Tilpasset interval', + 'date_range' => 'Dato interval', + 'apply' => 'Anvend', + 'select_date' => 'Vælg dato..', + 'cancel' => 'Annuller', + 'from' => 'Fra', + 'to' => 'Til', + 'structure' => 'Struktur', + 'help_translating' => 'Denne hjælpetekst er endnu ikke tilgængelig på dit sprog. Vil du hjælpe med at oversætte?', + 'showEverything' => 'Vis alt', + 'never' => 'Aldrig', + 'no_results_for_empty_search' => 'Din søgning var tom, så intet blev fundet.', + 'removed_amount' => 'Fjernede :amount', + 'added_amount' => 'Tilføjede :amount', + 'asset_account_role_help' => 'Ekstra indstillinger der opstår på baggrund af dit valg kan sættes senere.', + 'Opening balance' => 'Startsaldo', + 'create_new_stuff' => 'Opret nye ting', + 'new_withdrawal' => 'Ny hævning', + 'create_new_transaction' => 'Opret en ny transaktion', + 'sidebar_frontpage_create' => 'Opret', + 'new_transaction' => 'Ny overførsel', + 'no_rules_for_bill' => 'Denne regning er ikke associeret med nogle regler.', + 'go_to_asset_accounts' => 'Se dine aktiver', + 'go_to_budgets' => 'Gå til dine budgetter', + 'go_to_withdrawals' => 'Gå til dine udbetalinger', + 'clones_journal_x' => 'Denne transaktion er en klon af ":description" (#:id)', + 'go_to_categories' => 'Gå til dine kategorier', + 'go_to_bills' => 'Gå til dine regninger', + 'go_to_expense_accounts' => 'Se dine udgiftskonti', + 'go_to_revenue_accounts' => 'Se dine indkomstkonti', + 'go_to_piggies' => 'Gå til dine sparegrise', + 'new_deposit' => 'Ny deponering', + 'new_transfer' => 'Ny overførsel', + 'new_transfers' => 'Ny overførsel', + 'new_asset_account' => 'Ny aktivkonto', + 'new_expense_account' => 'Ny udgiftskonto', + 'new_revenue_account' => 'Ny indkomstkonto', + 'new_liabilities_account' => 'Ny passivkonto', + 'new_budget' => 'Nyt budget', + 'new_bill' => 'Ny regning', + 'block_account_logout' => 'Du er blevet logget ud. Blokerede konti kan ikke bruge denne side. Oprettede du dig med en gyldig e-mailadresse?', + 'flash_success' => 'Succes!', + 'flash_info' => 'Besked', + 'flash_warning' => 'Advarsel!', + 'flash_error' => 'Fejl!', + 'flash_danger' => 'Fare!', + 'flash_info_multiple' => 'Der er en besked|Der er :count beskeder', + 'flash_error_multiple' => 'Der er en fejl|Der er :count fejl', + 'net_worth' => 'Nettoformue', + 'help_for_this_page' => 'Hjælp til denne side', + 'help_for_this_page_body' => 'Du kan finde mere information om denne side i dokumentationen.', + 'two_factor_welcome' => 'Hej!', + 'two_factor_enter_code' => 'For at fortsætte, indtast venligst din to-faktor-godkendelseskode. Dit program vil generere den for dig.', + 'two_factor_code_here' => 'Indtast koden her', + 'two_factor_title' => 'Tofaktorgodkendelse', + 'authenticate' => 'Godkend', + 'two_factor_forgot_title' => 'Glemt totrinsbekræftelse', + 'two_factor_forgot' => 'Jeg har glemt min tofaktor-ting.', + 'two_factor_lost_header' => 'Glemt din totrinsbekræftelse?', + 'two_factor_lost_intro' => 'Hvis du også har glemt dine backupkoder, så er det sort uheld. Det er ikke noget, du kan fikse fra webinterfacet. Du har to muligheder.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Ellers, send en e-mail til sideejeren, :site_owner og spørg dem om at nulstille din tofaktorgodkendelse.', + 'mfa_backup_code' => 'Du har brugt en backupkode til at logge ind på Firefly III. Den kan ikke bruges igen, så streg den fra din liste.', + 'pref_two_factor_new_backup_codes' => 'Få nye backupkoder', + 'pref_two_factor_backup_code_count' => 'Du har :count gyldig backup kode.|Du har :count gyldige backup koder.', + '2fa_i_have_them' => 'Jeg gemte dem!', + 'warning_much_data' => ':days dages data kan tage et stykke tid at indlæse.', + 'registered' => 'Du er blevet succesfuldt oprettet!', + 'Default asset account' => 'Standard aktivkonto', + 'no_budget_pointer' => 'Det ser ud til, at du ikke har oprettet budgetter endnu. Du burde oprette nogle på budgetsiden. Budgetter kan hjælpe dig med at holde styr på udgifter.', + 'no_bill_pointer' => 'Du synes ikke at have nogen regninger endnu. Du bør oprette nogle på regninger-siden. Regninger kan hjælpe dig med at holde styr på udgifterne.', + 'Savings account' => 'Opsparingskonto', + 'Credit card' => 'Kreditkort', + 'source_accounts' => 'Kildekonto|Kildekonti', + 'destination_accounts' => 'Destinationskontoen|Destinationskonti', + 'user_id_is' => 'Dit brugerid er :user', + 'field_supports_markdown' => 'Dette felt undersøtter Markdown.', + 'need_more_help' => 'Hvis du har brug for mere hjælp til at bruge Firefly III, åbn venligst en sag på Github.', + 'reenable_intro_text' => 'Du kan også genaktivere introduktionsguiden.', + 'intro_boxes_after_refresh' => 'Introduktionsboksene vil kunne ses igen, når du genopfrisker siden.', + 'show_all_no_filter' => 'Vis alle transaktioner uden at gruppere dem efter dato.', + 'expenses_by_category' => 'Udgifter per kategori', + 'expenses_by_budget' => 'Udgifter per budget', + 'income_by_category' => 'Indkomst per kategori', + 'expenses_by_asset_account' => 'Udgifter per aktivkonto', + 'expenses_by_expense_account' => 'Udgifter per udgiftskonto', + 'cannot_redirect_to_account' => 'Firefly III kan ikke videresende dig til den korrekte side. Beklager.', + 'sum_of_expenses' => 'Sum af udgifter', + 'sum_of_income' => 'Sum af indkomst', + 'liabilities' => 'Gæld', + 'spent_in_specific_budget' => 'Brugt på budget ":budget"', + 'spent_in_specific_double' => 'Forbrug på konto ":account"', + 'earned_in_specific_double' => 'Optjent på konto ":account"', + 'source_account' => 'Kildekonto', + 'source_account_reconciliation' => 'Du kan ikke redigere kildekontoen på en afstemningstransaktion.', + 'destination_account' => 'Destinationskonto', + 'destination_account_reconciliation' => 'Du kan ikke redigere destinationskontoen på en afstemningstransaktion.', + 'sum_of_expenses_in_budget' => 'Total brugt på budget ":budget"', + 'left_in_budget_limit' => 'Resterende beløb i henhold til budgettet', + 'current_period' => 'Aktuel periode', + 'show_the_current_period_and_overview' => 'Vis den aktuelle periode og overblik', + 'pref_languages_locale' => 'For at et andet sprog end engelsk skal virke rigtigt, skal dit operativsystem være udstyret med den korrekte lokale-information. Hvis denne ikke er til stede, vil valutadata, datoer og beløb muligvis vises forkert.', + 'budget_in_period' => 'Alle transaktioner for budget ":name" mellem :start og :end i :currency', + 'chart_budget_in_period' => 'Diagram for alle transaktioner for budget ":name" mellem :start og :end i :currency', + 'chart_budget_in_period_only_currency' => 'Beløbet du budgetterede var i :currency, så dette diagram vil kun vise transaktioner i :currency.', + 'chart_account_in_period' => 'Diagram for alle transaktion for konto ":name" (:balance) mellem :start og :end', + 'chart_category_in_period' => 'Diagram for alle transaktion i kategori ":name" mellem :start og :end', + 'chart_category_all' => 'Diagram for alle transaktion i kategori ":name"', + 'clone_withdrawal' => 'Klon denne hævning', + 'clone_deposit' => 'Klon denne deponering', + 'clone_transfer' => 'Klon denne overførsel', + 'multi_select_no_selection' => 'Ingen valgt', + 'multi_select_select_all' => 'Vælg alle', + 'multi_select_n_selected' => 'valgt', + 'multi_select_all_selected' => 'Alt valgt', + 'multi_select_filter_placeholder' => 'Find..', + 'intro_next_label' => 'Næste', + 'intro_prev_label' => 'Forrige', + 'intro_skip_label' => 'Spring over', + 'intro_done_label' => 'Udført', + 'between_dates_breadcrumb' => 'Mellem :start og :end', + 'all_journals_without_budget' => 'Alle transaktion uden et budget', + 'journals_without_budget' => 'Transaktioner uden et budget', + 'all_journals_without_category' => 'Alle transaktion uden en kategori', + 'journals_without_category' => 'Transaktioner uden en kategori', + 'all_journals_for_account' => 'Alle transaktioner for konto :name', + 'chart_all_journals_for_account' => 'Diagram af alle transaktioner for konto :name', + 'journals_in_period_for_account' => 'Alle transaktioner for konto :name imellem :start og :end', + 'journals_in_period_for_account_js' => 'Alle transaktioner for konto {title} mellem {start} og {end}', + 'transferred' => 'Overført', + 'all_withdrawal' => 'Alle udgifter', + 'all_transactions' => 'Alle transaktioner', + 'title_withdrawal_between' => 'Alle udgifter imellem :start og :end', + 'all_deposit' => 'Alle indkomster', + 'title_deposit_between' => 'Alle indkomster imellem :start og :end', + 'all_transfers' => 'Alle overførsler', + 'title_transfers_between' => 'Alle overførsler imellem :start og :end', + 'all_transfer' => 'Alle overførsler', + 'all_journals_for_tag' => 'Alle overførsler for tag ":tag"', + 'title_transfer_between' => 'Alle overførsler imellem :start og :end', + 'all_journals_for_category' => 'Alle transaktioner for kategori :name', + 'all_journals_for_budget' => 'Alle transaktioner for budget :name', + 'chart_all_journals_for_budget' => 'Diagram over alle transaktioner for budget :name', + 'journals_in_period_for_category' => 'Alle transaktioner for kategori :name mellem :start og :end', + 'journals_in_period_for_tag' => 'Alle transaktioner for tag :tag mellem :start og :end', + 'not_available_demo_user' => 'Den funktion, du forsøger at få adgang til, er ikke tilgængelig for demobrugere.', + 'exchange_rate_instructions' => 'Aktivkonto "@name" tillader kun transaktioner i @native_currency. Hvis du ønsker at bruge @foreign_currency i stedet, så sørg for at beløbet i @native_currency også er registreret:', + 'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" tillader kun transaktioner i @source_currency. Destinationskonto "@dest_name" tillader kun transaktioner i @dest_currency. Du skal rigtigt angive det overførte beløb i begge valutaer.', + 'transaction_data' => 'Transaktionsdata', + 'invalid_server_configuration' => 'Ugyldig server konfiguration', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Hurtigskift', + 'sign_in_to_start' => 'Log ind for at starte din session', + 'sign_in' => 'Log ind', + 'register_new_account' => 'Registrer en ny konto', + 'forgot_my_password' => 'Jeg har glemt min adgangskode', + 'problems_with_input' => 'Der var nogle problemer med din indtastning.', + 'reset_password' => 'Nulstil din adgangskode', + 'button_reset_password' => 'Nulstil adgangskode', + 'reset_button' => 'Nulstil', + 'want_to_login' => 'Jeg ønsker at logge ind', + 'login_page_title' => 'Log ind i Firefly III', + 'register_page_title' => 'Registrer hos Firefly III', + 'forgot_pw_page_title' => 'Glemt din adgangskode til Firefly III', + 'reset_pw_page_title' => 'Nulstil din adgangskode til Firefly III', + 'cannot_reset_demo_user' => 'Du kan ikke nulstille adgangskoden til demo-brugeren.', + 'no_att_demo_user' => 'Demo brugeren kan ikke uploade vedhæftede filer.', + 'button_register' => 'Registrér', + 'authorization' => 'Autorisation', + 'active_bills_only' => 'kun aktuelle regninger', + 'active_bills_only_total' => 'alle aktuelle regninger', + 'active_exp_bills_only' => 'kun aktuelle og forventede regninger', + 'active_exp_bills_only_total' => 'kun alle forventede og aktuelle regninger', + 'per_period_sum_1D' => 'Forventede daglige omkostninger', + 'per_period_sum_1W' => 'Forventede ugentlige omkostninger', + 'per_period_sum_1M' => 'Forventede månedlige omkostninger', + 'per_period_sum_3M' => 'Forventede kvartalsvise omkostninger', + 'per_period_sum_6M' => 'Forventede halvårlige omkostninger', + 'per_period_sum_1Y' => 'Forventede årlige omkostninger', + 'average_per_bill' => 'gennemsnit pr. regning', + 'expected_total' => 'forventet total', + 'reconciliation_account_name' => ':name afstemning (:currency)', + 'saved' => 'Gemt', + 'advanced_options' => 'Avancerede indstillinger', + 'advanced_options_explain' => 'Nogle sider i Firefly III har avancerede indstillinger der kan tilgås via denne knap. Denne side har ikke noget specielt her, men tjek de andre!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => 'Der er ingen webhook-beskeder', - 'webhook_trigger_STORE_TRANSACTION' => 'Efter oprettelse af transaktion', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Efter opdatering af transaktion', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Efter sletning af transaktion', - 'webhook_response_TRANSACTIONS' => 'Transaktionsdetaljer', - 'webhook_response_ACCOUNTS' => 'Kontodetaljer', - 'webhook_response_none_NONE' => 'Ingen detaljer', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspect', - 'create_new_webhook' => 'Opret ny webhook', - 'webhooks_create_breadcrumb' => 'Opret ny 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' => 'Hvilket format webhook skal levere data i.', - 'webhook_active_form_help' => 'Webhooken skal være aktiv, ellers vil den ikke blive kaldt.', - 'stored_new_webhook' => 'Gemte ny webhook ":title"', - 'delete_webhook' => 'Slet webhook', - 'deleted_webhook' => 'Slettede webhook ":title"', - 'edit_webhook' => 'Rediger webhook ":title"', - 'updated_webhook' => 'Opdaterede webhook ":title"', - 'edit_webhook_js' => 'Rediger 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-besked', - 'view_message' => 'Vis besked', - 'view_attempts' => 'Vis mislykkede forsøg', - 'message_content_title' => 'Webhook-beskedindhold', - 'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.', - 'attempt_content_title' => 'Webhook-forsøg', - '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' => 'Der er ingen mislykkede forsøg. Det er en god ting!', - 'webhook_attempt_at' => 'Attempt at {moment}', - 'logs' => 'Logs', - 'response' => 'Svar', - 'visit_webhook_url' => 'Besøg webhook-URL', - 'reset_webhook_secret' => 'Nulstil webhook-hemmelighed', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => 'Der er ingen webhook-beskeder', + 'webhook_trigger_STORE_TRANSACTION' => 'Efter oprettelse af transaktion', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Efter opdatering af transaktion', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Efter sletning af transaktion', + 'webhook_response_TRANSACTIONS' => 'Transaktionsdetaljer', + 'webhook_response_ACCOUNTS' => 'Kontodetaljer', + 'webhook_response_none_NONE' => 'Ingen detaljer', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspect', + 'create_new_webhook' => 'Opret ny webhook', + 'webhooks_create_breadcrumb' => 'Opret ny 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' => 'Hvilket format webhook skal levere data i.', + 'webhook_active_form_help' => 'Webhooken skal være aktiv, ellers vil den ikke blive kaldt.', + 'stored_new_webhook' => 'Gemte ny webhook ":title"', + 'delete_webhook' => 'Slet webhook', + 'deleted_webhook' => 'Slettede webhook ":title"', + 'edit_webhook' => 'Rediger webhook ":title"', + 'updated_webhook' => 'Opdaterede webhook ":title"', + 'edit_webhook_js' => 'Rediger 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-besked', + 'view_message' => 'Vis besked', + 'view_attempts' => 'Vis mislykkede forsøg', + 'message_content_title' => 'Webhook-beskedindhold', + 'message_content_help' => 'This is the content of the message that was sent (or tried) using this webhook.', + 'attempt_content_title' => 'Webhook-forsøg', + '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' => 'Der er ingen mislykkede forsøg. Det er en god ting!', + 'webhook_attempt_at' => 'Attempt at {moment}', + 'logs' => 'Logs', + 'response' => 'Svar', + 'visit_webhook_url' => 'Besøg webhook-URL', + 'reset_webhook_secret' => 'Nulstil webhook-hemmelighed', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Anmodning om Autorisation', - 'authorization_request_intro' => ':client anmoder om at få adgang til din økonomi. Vil du give :client adgang til disse poster?', - 'authorization_request_site' => 'Du vil blive omdirigeret til :url som derefter vil være i stand til at få adgang til dine Firefly III-data.', - 'authorization_request_invalid' => 'Denne adgangsanmodning er ugyldig. Følg aldrig dette link igen.', - 'scopes_will_be_able' => 'Applikationen vil kunne:', - 'button_authorize' => 'Autoriser', - 'none_in_select_list' => '(ingen)', - 'no_piggy_bank' => '(ingen opsparing)', - 'name_in_currency' => ':name i :currency', - 'paid_in_currency' => 'Betalt i :currency', - 'unpaid_in_currency' => 'Ikke betalt i :currency', - 'is_alpha_warning' => 'Du kører en ALPHA version. Vær opmærksom på fejl og mangler.', - 'is_beta_warning' => 'Du kører en BETA version. Vær opmærksom på fejl og mangler.', - 'all_destination_accounts' => 'Destinationskonti', - 'all_source_accounts' => 'Kildekonti', - 'back_to_index' => 'Tilbage til indholdsfortegnelsen', - 'cant_logout_guard' => 'Firefly III kan ikke logge dig ud.', - 'internal_reference' => 'Intern reference', + 'authorization_request' => 'Firefly III v:version Anmodning om Autorisation', + 'authorization_request_intro' => ':client anmoder om at få adgang til din økonomi. Vil du give :client adgang til disse poster?', + 'authorization_request_site' => 'Du vil blive omdirigeret til :url som derefter vil være i stand til at få adgang til dine Firefly III-data.', + 'authorization_request_invalid' => 'Denne adgangsanmodning er ugyldig. Følg aldrig dette link igen.', + 'scopes_will_be_able' => 'Applikationen vil kunne:', + 'button_authorize' => 'Autoriser', + 'none_in_select_list' => '(ingen)', + 'no_piggy_bank' => '(ingen opsparing)', + 'name_in_currency' => ':name i :currency', + 'paid_in_currency' => 'Betalt i :currency', + 'unpaid_in_currency' => 'Ikke betalt i :currency', + 'is_alpha_warning' => 'Du kører en ALPHA version. Vær opmærksom på fejl og mangler.', + 'is_beta_warning' => 'Du kører en BETA version. Vær opmærksom på fejl og mangler.', + 'all_destination_accounts' => 'Destinationskonti', + 'all_source_accounts' => 'Kildekonti', + 'back_to_index' => 'Tilbage til indholdsfortegnelsen', + 'cant_logout_guard' => 'Firefly III kan ikke logge dig ud.', + 'internal_reference' => 'Intern reference', // check for updates: - 'update_check_title' => 'Søg efter opdateringer', - 'admin_update_check_title' => 'Søg automatisk efter opdateringer', - 'admin_update_check_explain' => 'Firefly III kan tjekke for opdateringer automatisk. Når du aktiverer denne indstilling, vil det kontakte Firefly III-opdateringsserveren for at se, om en ny version af Firefly III er tilgængelig. Når det er, vil du få en meddelelse. Du kan teste denne meddelelse ved hjælp af knappen til højre. Angiv venligst nedenfor, hvis du vil have Firefly III til automatisk at søge efter opdateringer.', - 'check_for_updates_permission' => 'Firefly III kan tjekke for opdateringer, men behøver din tilladelse til at gøre det. Gå venligst til administrationen for at angive, om du gerne vil have denne funktion aktiveret.', - 'updates_ask_me_later' => 'Spørg mig senere', - 'updates_do_not_check' => 'Søg ikke efter opdateringer', - 'updates_enable_check' => 'Aktiver søgning for opdateringer', - 'admin_update_check_now_title' => 'Søg efter opdateringer nu', - 'admin_update_check_now_explain' => 'Hvis du trykker på knappen, vil Firefly III tjekke, om din nuværende version er den seneste.', - 'check_for_updates_button' => 'Tjek nu!', - 'update_new_version_alert' => 'En ny version af Firefly III er tilgængelig. Du bruger :your_version, den nyeste version er :new_version, som blev udgivet den :date.', - 'update_version_beta' => 'Denne version er en BETA version. Du kan løbe ind i problemer.', - 'update_version_alpha' => 'Denne version er en ALPHA version. Du kan løbe ind i problemer.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Du bruger :version, som er den seneste tilgængelige udgivelse.', - 'update_newer_version_alert' => 'Du bruger :your_version, som er nyere end den seneste udgivelse, :new_version.', - 'update_check_error' => 'Der opstod en fejl under søgning efter opdateringer: :error', - 'unknown_error' => 'Ukendt fejl. Beklager.', - 'disabled_but_check' => 'Du har deaktiveret automatisk søgning efter opdateringer. Så glem ikke, nu og da, at tjekke for opdateringer. Tak!', - 'admin_update_channel_title' => 'Opdateringskanal', - 'admin_update_channel_explain' => 'Firefly III har tre opdaterings "kanaler" som bestemmer, hvor du er i forhold til funktioner, forbedringer og fejl. Brug "beta" kanalen, hvis du er eventyrlig og "alfa" kanalen, hvis du vil leve livet farligt.', - 'update_channel_stable' => 'Stabil. Alt bør fungere som forventet.', - 'update_channel_beta' => 'Beta. Nye funktioner, men der kan være fejl.', - 'update_channel_alpha' => 'Alfa. Meget afprøves, og vi bruger det som fungerer.', + 'update_check_title' => 'Søg efter opdateringer', + 'admin_update_check_title' => 'Søg automatisk efter opdateringer', + 'admin_update_check_explain' => 'Firefly III kan tjekke for opdateringer automatisk. Når du aktiverer denne indstilling, vil det kontakte Firefly III-opdateringsserveren for at se, om en ny version af Firefly III er tilgængelig. Når det er, vil du få en meddelelse. Du kan teste denne meddelelse ved hjælp af knappen til højre. Angiv venligst nedenfor, hvis du vil have Firefly III til automatisk at søge efter opdateringer.', + 'check_for_updates_permission' => 'Firefly III kan tjekke for opdateringer, men behøver din tilladelse til at gøre det. Gå venligst til administrationen for at angive, om du gerne vil have denne funktion aktiveret.', + 'updates_ask_me_later' => 'Spørg mig senere', + 'updates_do_not_check' => 'Søg ikke efter opdateringer', + 'updates_enable_check' => 'Aktiver søgning for opdateringer', + 'admin_update_check_now_title' => 'Søg efter opdateringer nu', + 'admin_update_check_now_explain' => 'Hvis du trykker på knappen, vil Firefly III tjekke, om din nuværende version er den seneste.', + 'check_for_updates_button' => 'Tjek nu!', + 'update_new_version_alert' => 'En ny version af Firefly III er tilgængelig. Du bruger :your_version, den nyeste version er :new_version, som blev udgivet den :date.', + 'update_version_beta' => 'Denne version er en BETA version. Du kan løbe ind i problemer.', + 'update_version_alpha' => 'Denne version er en ALPHA version. Du kan løbe ind i problemer.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Du bruger :version, som er den seneste tilgængelige udgivelse.', + 'update_newer_version_alert' => 'Du bruger :your_version, som er nyere end den seneste udgivelse, :new_version.', + 'update_check_error' => 'Der opstod en fejl under søgning efter opdateringer: :error', + 'unknown_error' => 'Ukendt fejl. Beklager.', + 'disabled_but_check' => 'Du har deaktiveret automatisk søgning efter opdateringer. Så glem ikke, nu og da, at tjekke for opdateringer. Tak!', + 'admin_update_channel_title' => 'Opdateringskanal', + 'admin_update_channel_explain' => 'Firefly III har tre opdaterings "kanaler" som bestemmer, hvor du er i forhold til funktioner, forbedringer og fejl. Brug "beta" kanalen, hvis du er eventyrlig og "alfa" kanalen, hvis du vil leve livet farligt.', + 'update_channel_stable' => 'Stabil. Alt bør fungere som forventet.', + 'update_channel_beta' => 'Beta. Nye funktioner, men der kan være fejl.', + 'update_channel_alpha' => 'Alfa. Meget afprøves, og vi bruger det som fungerer.', // search - 'search' => 'Søg', - 'search_query' => 'Forespørgsel', - 'search_found_transactions' => 'Firefly III fandt:count transaktion på :time sekunder.IFirefly III fandt :count transaktioner på :time sekunder.', - 'search_found_more_transactions' => 'Firefly III fandt mere end :count transaktioner på :time sekunder.', - 'search_for_query' => 'Firefly III søger efter transaktioner der indeholder følgende ord: :query', - 'invalid_operators_list' => 'Disse søgeparametre er ikke gyldige og er blevet ignoreret.', + 'search' => 'Søg', + 'search_query' => 'Forespørgsel', + 'search_found_transactions' => 'Firefly III fandt:count transaktion på :time sekunder.IFirefly III fandt :count transaktioner på :time sekunder.', + 'search_found_more_transactions' => 'Firefly III fandt mere end :count transaktioner på :time sekunder.', + 'search_for_query' => 'Firefly III søger efter transaktioner der indeholder følgende ord: :query', + 'invalid_operators_list' => 'Disse søgeparametre er ikke gyldige og er blevet ignoreret.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Transaktionsdato er ":value"', - 'search_modifier_not_date_on' => 'Transaktionsdato er ikke ":value"', - 'search_modifier_reconciled' => 'Transaktionen er afstemt', - 'search_modifier_not_reconciled' => 'Transaktionen er ikke afstemt', - 'search_modifier_id' => 'Transaktions-ID er ":value"', - 'search_modifier_not_id' => 'Transaktions-ID er ikke ":value"', - 'search_modifier_date_before' => 'Transaktionsdato er før eller den ":value"', - 'search_modifier_date_after' => 'Transaktionsdato er efter eller den ":value"', - 'search_modifier_external_id_is' => 'Eksternt ID er ":value"', - 'search_modifier_not_external_id_is' => 'Eksternt ID er ikke ":value"', - 'search_modifier_no_external_url' => 'Transaktionen har ikke noget eksternt URL', - 'search_modifier_no_external_id' => 'The transaction has no external ID', - 'search_modifier_not_any_external_url' => 'Transaktionen har ikke noget eksternt URL', - 'search_modifier_not_any_external_id' => 'The transaction has no external ID', - 'search_modifier_any_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL', - 'search_modifier_any_external_id' => 'The transaction must have a (any) external ID', - 'search_modifier_not_no_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL', - 'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID', - 'search_modifier_internal_reference_is' => 'Intern reference er ":value"', - 'search_modifier_not_internal_reference_is' => 'Intern reference er ikke ":value"', - 'search_modifier_description_starts' => 'Beskrivelsen starter med ":value"', - 'search_modifier_not_description_starts' => 'Beskrivelsen starter ikke med ":value"', - 'search_modifier_description_ends' => 'Beskrivelsen slutter med ":value"', - 'search_modifier_not_description_ends' => 'Beskrivelsen slutter ikke med ":value"', - 'search_modifier_description_contains' => 'Beskrivelsen indeholder ":value"', - 'search_modifier_not_description_contains' => 'Beskrivelsen indeholder ikke ":value"', - 'search_modifier_description_is' => 'Beskrivelsen er præcis ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Udenlandsk transaktions valuta er ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Udenlandsk transaktions valuta er ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'Transaktionen skal have en vedhæftet fil', - 'search_modifier_has_no_category' => 'Transaktionen må ikke have nogen kategori', - 'search_modifier_not_has_no_category' => 'Transaktionen skal have en (vilkårlig) kategori', - 'search_modifier_not_has_any_category' => 'Transaktionen må ikke have nogen kategori', - 'search_modifier_has_any_category' => 'Transaktionen skal have en (vilkårlig) kategori', - 'search_modifier_has_no_budget' => 'Transaktionen må ikke have noget budget', - 'search_modifier_not_has_any_budget' => 'Transaktionen må ikke have noget budget', - 'search_modifier_has_any_budget' => 'Transaktionen skal have et (vilkårligt) budget', - 'search_modifier_not_has_no_budget' => 'Transaktionen skal have et (vilkårligt) budget', - 'search_modifier_has_no_bill' => 'Transaktionen må ikke have nogen regning', - 'search_modifier_not_has_no_bill' => 'Transaktionen skal have en (vilkårlig) kategori', - 'search_modifier_has_any_bill' => 'Transaktionen skal have en (vilkårlig) kategori', - 'search_modifier_not_has_any_bill' => 'Transaktionen må ikke have nogen regning', - 'search_modifier_has_no_tag' => 'Transaktionen må ikke have nogen tags', - 'search_modifier_not_has_any_tag' => 'Transaktionen må ikke have nogen tags', - 'search_modifier_not_has_no_tag' => 'Transaktionen skal have et (vilkårligt) tag', - 'search_modifier_has_any_tag' => 'Transaktionen skal have et (vilkårligt) tag', - 'search_modifier_notes_contains' => 'Transaktionsnoterne indeholder ":value"', - 'search_modifier_not_notes_contains' => 'Transaktionsnoterne indeholder ikke ":value"', - 'search_modifier_notes_starts' => 'Transaktionsnoterne starter med ":value"', - 'search_modifier_not_notes_starts' => 'Transaktionsnoterne starter ikke med ":value"', - 'search_modifier_notes_ends' => 'Transaktionsnoterne slutter med ":value"', - 'search_modifier_not_notes_ends' => 'Transaktionsnoterne slutter ikke med ":value"', - 'search_modifier_notes_is' => 'Transaktionsnoterne er præcis ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Transaktionen har ingen noter', - 'search_modifier_not_no_notes' => 'Transaktionen skal have noter', - 'search_modifier_any_notes' => 'Transaktionen skal have noter', - 'search_modifier_not_any_notes' => 'Transaktionen har ingen noter', - 'search_modifier_amount_is' => 'Beløbet er præcis :value', - 'search_modifier_not_amount_is' => 'Beløbet er ikke :value', - 'search_modifier_amount_less' => 'Beløbet er mindre end eller lig med :value', - 'search_modifier_not_amount_more' => 'Beløbet er mindre end eller lig med :value', - 'search_modifier_amount_more' => 'Beløbet er større end eller lig med :value', - 'search_modifier_not_amount_less' => 'Beløbet er større end eller lig med :value', - 'search_modifier_source_account_is' => 'Kildekontonavnet er præcis ":value"', - 'search_modifier_not_source_account_is' => 'Kildekontonavnet er ikke ":value"', - 'search_modifier_source_account_contains' => 'Kildekontonavnet indeholder ":value"', - 'search_modifier_not_source_account_contains' => 'Kildekontonavnet indeholder ikke ":value"', - 'search_modifier_source_account_starts' => 'Kildekontonavnet starter med ":value"', - 'search_modifier_not_source_account_starts' => 'Kildekontonavnet starter ikke med ":value"', - 'search_modifier_source_account_ends' => 'Kildekontonavnet slutter med ":value"', - 'search_modifier_not_source_account_ends' => 'Kildekontonavnet slutter ikke med ":value"', - 'search_modifier_source_account_id' => 'Kildekonto ID er :value', - 'search_modifier_not_source_account_id' => 'Kildekonto-ID er ikke :value', - 'search_modifier_source_account_nr_is' => 'Kildekontonummer (IBAN) er ":value"', - 'search_modifier_not_source_account_nr_is' => 'Kildekontonummer (IBAN) er ikke ":value"', - 'search_modifier_source_account_nr_contains' => 'Kildekontonummer (IBAN) indeholder ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Kildekontonummer (IBAN) indeholder ikke ":value"', - 'search_modifier_source_account_nr_starts' => 'Kildekontonummer (IBAN) starter med ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Kildekontonummer (IBAN) starter ikke med ":value"', - 'search_modifier_source_account_nr_ends' => 'Kildekontonummer (IBAN) slutter med ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Kildekontonummer (IBAN) slutter ikke med ":value"', - 'search_modifier_destination_account_is' => 'Destinationskontonavnet er præcis ":value"', - 'search_modifier_not_destination_account_is' => 'Destinationskontonavnet er ikke ":value"', - 'search_modifier_destination_account_contains' => 'Destinationskontonavnet indeholder ":value"', - 'search_modifier_not_destination_account_contains' => 'Destinationskontonavnet indeholder ikke ":value"', - 'search_modifier_destination_account_starts' => 'Destinationskontonavnet starter med ":value"', - 'search_modifier_not_destination_account_starts' => 'Destinationskontonavnet starter ikke med ":value"', - 'search_modifier_destination_account_ends' => 'Destinationskontonavnet slutter med ":value"', - 'search_modifier_not_destination_account_ends' => 'Destinationskontonavnet slutter ikke med ":value"', - 'search_modifier_destination_account_id' => 'Destinationskonto ID er :value', - 'search_modifier_not_destination_account_id' => 'Destinationskonto-ID er ikke :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destinationskontonummer (IBAN) er ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destinationskontonummer (IBAN) indeholder ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destinationskontonummer (IBAN) starter med ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destinationskontonummer (IBAN) slutter med ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Kilde- eller destinationskonto ID er: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Kategori er ":value"', - 'search_modifier_not_category_is' => 'Kategori er ikke ":value"', - 'search_modifier_budget_is' => 'Budget er ":value"', - 'search_modifier_not_budget_is' => 'Budget er ikke ":value"', - 'search_modifier_bill_is' => 'Faktura er ":value"', - 'search_modifier_not_bill_is' => 'Faktura er ikke ":value"', - 'search_modifier_transaction_type' => 'Transaktionstype er ":value"', - 'search_modifier_not_transaction_type' => 'Transaktionstype er ikke ":value"', - 'search_modifier_tag_is' => 'Tag er ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'Intet tag er ":value"', - 'search_modifier_date_on_year' => 'Transaktionen er i år ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaktionen er i måned ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaktionen er på den ":value". i måneden', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaktionen er før eller i år ":value"', - 'search_modifier_date_before_month' => 'Transaktionen er før eller i måned ":value"', - 'search_modifier_date_before_day' => 'Transaktionen er før eller på den ":value". i måneden', - 'search_modifier_date_after_year' => 'Transaktionen er i eller efter år ":value"', - 'search_modifier_date_after_month' => 'Transaktionen er i eller efter måned ":value"', - 'search_modifier_date_after_day' => 'Transaktionen er på eller efter den ":value". i måneden', + 'search_modifier_date_on' => 'Transaktionsdato er ":value"', + 'search_modifier_not_date_on' => 'Transaktionsdato er ikke ":value"', + 'search_modifier_reconciled' => 'Transaktionen er afstemt', + 'search_modifier_not_reconciled' => 'Transaktionen er ikke afstemt', + 'search_modifier_id' => 'Transaktions-ID er ":value"', + 'search_modifier_not_id' => 'Transaktions-ID er ikke ":value"', + 'search_modifier_date_before' => 'Transaktionsdato er før eller den ":value"', + 'search_modifier_date_after' => 'Transaktionsdato er efter eller den ":value"', + 'search_modifier_external_id_is' => 'Eksternt ID er ":value"', + 'search_modifier_not_external_id_is' => 'Eksternt ID er ikke ":value"', + 'search_modifier_no_external_url' => 'Transaktionen har ikke noget eksternt URL', + 'search_modifier_no_external_id' => 'The transaction has no external ID', + 'search_modifier_not_any_external_url' => 'Transaktionen har ikke noget eksternt URL', + 'search_modifier_not_any_external_id' => 'The transaction has no external ID', + 'search_modifier_any_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL', + 'search_modifier_any_external_id' => 'The transaction must have a (any) external ID', + 'search_modifier_not_no_external_url' => 'Transaktionen skal have et (vilkårligt) eksternt URL', + 'search_modifier_not_no_external_id' => 'The transaction must have a (any) external ID', + 'search_modifier_internal_reference_is' => 'Intern reference er ":value"', + 'search_modifier_not_internal_reference_is' => 'Intern reference er ikke ":value"', + 'search_modifier_description_starts' => 'Beskrivelsen starter med ":value"', + 'search_modifier_not_description_starts' => 'Beskrivelsen starter ikke med ":value"', + 'search_modifier_description_ends' => 'Beskrivelsen slutter med ":value"', + 'search_modifier_not_description_ends' => 'Beskrivelsen slutter ikke med ":value"', + 'search_modifier_description_contains' => 'Beskrivelsen indeholder ":value"', + 'search_modifier_not_description_contains' => 'Beskrivelsen indeholder ikke ":value"', + 'search_modifier_description_is' => 'Beskrivelsen er præcis ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Udenlandsk transaktions valuta er ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Udenlandsk transaktions valuta er ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'Transaktionen skal have en vedhæftet fil', + 'search_modifier_has_no_category' => 'Transaktionen må ikke have nogen kategori', + 'search_modifier_not_has_no_category' => 'Transaktionen skal have en (vilkårlig) kategori', + 'search_modifier_not_has_any_category' => 'Transaktionen må ikke have nogen kategori', + 'search_modifier_has_any_category' => 'Transaktionen skal have en (vilkårlig) kategori', + 'search_modifier_has_no_budget' => 'Transaktionen må ikke have noget budget', + 'search_modifier_not_has_any_budget' => 'Transaktionen må ikke have noget budget', + 'search_modifier_has_any_budget' => 'Transaktionen skal have et (vilkårligt) budget', + 'search_modifier_not_has_no_budget' => 'Transaktionen skal have et (vilkårligt) budget', + 'search_modifier_has_no_bill' => 'Transaktionen må ikke have nogen regning', + 'search_modifier_not_has_no_bill' => 'Transaktionen skal have en (vilkårlig) kategori', + 'search_modifier_has_any_bill' => 'Transaktionen skal have en (vilkårlig) kategori', + 'search_modifier_not_has_any_bill' => 'Transaktionen må ikke have nogen regning', + 'search_modifier_has_no_tag' => 'Transaktionen må ikke have nogen tags', + 'search_modifier_not_has_any_tag' => 'Transaktionen må ikke have nogen tags', + 'search_modifier_not_has_no_tag' => 'Transaktionen skal have et (vilkårligt) tag', + 'search_modifier_has_any_tag' => 'Transaktionen skal have et (vilkårligt) tag', + 'search_modifier_notes_contains' => 'Transaktionsnoterne indeholder ":value"', + 'search_modifier_not_notes_contains' => 'Transaktionsnoterne indeholder ikke ":value"', + 'search_modifier_notes_starts' => 'Transaktionsnoterne starter med ":value"', + 'search_modifier_not_notes_starts' => 'Transaktionsnoterne starter ikke med ":value"', + 'search_modifier_notes_ends' => 'Transaktionsnoterne slutter med ":value"', + 'search_modifier_not_notes_ends' => 'Transaktionsnoterne slutter ikke med ":value"', + 'search_modifier_notes_is' => 'Transaktionsnoterne er præcis ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Transaktionen har ingen noter', + 'search_modifier_not_no_notes' => 'Transaktionen skal have noter', + 'search_modifier_any_notes' => 'Transaktionen skal have noter', + 'search_modifier_not_any_notes' => 'Transaktionen har ingen noter', + 'search_modifier_amount_is' => 'Beløbet er præcis :value', + 'search_modifier_not_amount_is' => 'Beløbet er ikke :value', + 'search_modifier_amount_less' => 'Beløbet er mindre end eller lig med :value', + 'search_modifier_not_amount_more' => 'Beløbet er mindre end eller lig med :value', + 'search_modifier_amount_more' => 'Beløbet er større end eller lig med :value', + 'search_modifier_not_amount_less' => 'Beløbet er større end eller lig med :value', + 'search_modifier_source_account_is' => 'Kildekontonavnet er præcis ":value"', + 'search_modifier_not_source_account_is' => 'Kildekontonavnet er ikke ":value"', + 'search_modifier_source_account_contains' => 'Kildekontonavnet indeholder ":value"', + 'search_modifier_not_source_account_contains' => 'Kildekontonavnet indeholder ikke ":value"', + 'search_modifier_source_account_starts' => 'Kildekontonavnet starter med ":value"', + 'search_modifier_not_source_account_starts' => 'Kildekontonavnet starter ikke med ":value"', + 'search_modifier_source_account_ends' => 'Kildekontonavnet slutter med ":value"', + 'search_modifier_not_source_account_ends' => 'Kildekontonavnet slutter ikke med ":value"', + 'search_modifier_source_account_id' => 'Kildekonto ID er :value', + 'search_modifier_not_source_account_id' => 'Kildekonto-ID er ikke :value', + 'search_modifier_source_account_nr_is' => 'Kildekontonummer (IBAN) er ":value"', + 'search_modifier_not_source_account_nr_is' => 'Kildekontonummer (IBAN) er ikke ":value"', + 'search_modifier_source_account_nr_contains' => 'Kildekontonummer (IBAN) indeholder ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Kildekontonummer (IBAN) indeholder ikke ":value"', + 'search_modifier_source_account_nr_starts' => 'Kildekontonummer (IBAN) starter med ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Kildekontonummer (IBAN) starter ikke med ":value"', + 'search_modifier_source_account_nr_ends' => 'Kildekontonummer (IBAN) slutter med ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Kildekontonummer (IBAN) slutter ikke med ":value"', + 'search_modifier_destination_account_is' => 'Destinationskontonavnet er præcis ":value"', + 'search_modifier_not_destination_account_is' => 'Destinationskontonavnet er ikke ":value"', + 'search_modifier_destination_account_contains' => 'Destinationskontonavnet indeholder ":value"', + 'search_modifier_not_destination_account_contains' => 'Destinationskontonavnet indeholder ikke ":value"', + 'search_modifier_destination_account_starts' => 'Destinationskontonavnet starter med ":value"', + 'search_modifier_not_destination_account_starts' => 'Destinationskontonavnet starter ikke med ":value"', + 'search_modifier_destination_account_ends' => 'Destinationskontonavnet slutter med ":value"', + 'search_modifier_not_destination_account_ends' => 'Destinationskontonavnet slutter ikke med ":value"', + 'search_modifier_destination_account_id' => 'Destinationskonto ID er :value', + 'search_modifier_not_destination_account_id' => 'Destinationskonto-ID er ikke :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destinationskontonummer (IBAN) er ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destinationskontonummer (IBAN) indeholder ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destinationskontonummer (IBAN) starter med ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destinationskontonummer (IBAN) slutter med ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Kilde- eller destinationskonto ID er: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Kategori er ":value"', + 'search_modifier_not_category_is' => 'Kategori er ikke ":value"', + 'search_modifier_budget_is' => 'Budget er ":value"', + 'search_modifier_not_budget_is' => 'Budget er ikke ":value"', + 'search_modifier_bill_is' => 'Faktura er ":value"', + 'search_modifier_not_bill_is' => 'Faktura er ikke ":value"', + 'search_modifier_transaction_type' => 'Transaktionstype er ":value"', + 'search_modifier_not_transaction_type' => 'Transaktionstype er ikke ":value"', + 'search_modifier_tag_is' => 'Tag er ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'Intet tag er ":value"', + 'search_modifier_date_on_year' => 'Transaktionen er i år ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaktionen er i måned ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaktionen er på den ":value". i måneden', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaktionen er før eller i år ":value"', + 'search_modifier_date_before_month' => 'Transaktionen er før eller i måned ":value"', + 'search_modifier_date_before_day' => 'Transaktionen er før eller på den ":value". i måneden', + 'search_modifier_date_after_year' => 'Transaktionen er i eller efter år ":value"', + 'search_modifier_date_after_month' => 'Transaktionen er i eller efter måned ":value"', + 'search_modifier_date_after_day' => 'Transaktionen er på eller efter den ":value". i måneden', // new - 'search_modifier_tag_is_not' => 'Intet tag er ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Begge konti er ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Begge konti indeholder ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Begge konti slutter med ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Begge konti starter med ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Begge konto numre / IBAN er ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Begge konto numre / IBAN indeholder ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Begge konto numre / IBAN slutter med ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Begge konto numre / IBAN starter med ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Kategori indeholder ":value"', - 'search_modifier_not_category_contains' => 'Kategori indeholder ikke ":value"', - 'search_modifier_category_ends' => 'Kategori slutter med ":value"', - 'search_modifier_not_category_ends' => 'Kategori slutter ikke med ":value"', - 'search_modifier_category_starts' => 'Kategori starter med ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget indeholder ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget slutter med ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starter med ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Regningen indeholder ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill slutter med ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Regningen starter med ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'Eksternt ID indeholder ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'Eksternt ID ender med ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'Eksternt ID starter med ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Intern reference indeholder ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Intern reference slutter med ":value"', - 'search_modifier_internal_reference_starts' => 'Intern reference starter med ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'Eksternt URL er ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'Eksternt URL indeholder ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'Ekstern URL slutter med ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'Ekstern URL starter med ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaktionen har ingen vedhæftninger', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'Det udenlandske beløb er ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'Det udenlandske beløb er mindre end ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'Det udenlandske beløb er mere end ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'Intet tag er ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Begge konti er ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Begge konti indeholder ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Begge konti slutter med ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Begge konti starter med ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Begge konto numre / IBAN er ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Begge konto numre / IBAN indeholder ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Begge konto numre / IBAN slutter med ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Begge konto numre / IBAN starter med ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Kategori indeholder ":value"', + 'search_modifier_not_category_contains' => 'Kategori indeholder ikke ":value"', + 'search_modifier_category_ends' => 'Kategori slutter med ":value"', + 'search_modifier_not_category_ends' => 'Kategori slutter ikke med ":value"', + 'search_modifier_category_starts' => 'Kategori starter med ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget indeholder ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget slutter med ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starter med ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Regningen indeholder ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill slutter med ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Regningen starter med ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'Eksternt ID indeholder ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'Eksternt ID ender med ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'Eksternt ID starter med ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Intern reference indeholder ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Intern reference slutter med ":value"', + 'search_modifier_internal_reference_starts' => 'Intern reference starter med ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'Eksternt URL er ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'Eksternt URL indeholder ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'Ekstern URL slutter med ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'Ekstern URL starter med ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaktionen har ingen vedhæftninger', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'Det udenlandske beløb er ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'Det udenlandske beløb er mindre end ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'Det udenlandske beløb er mere end ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaktion rentedato er ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaktionens rentedato er i år ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaktions rentedato er i måned ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaktions rentedato er den ":value". i måneden', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaktions rentedato er før eller i år ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaktionens forfaldsdato er efter eller i år ":value"', - 'search_modifier_due_date_after_month' => 'Transaktionens forfaldsdato er efter eller i måned ":value"', - 'search_modifier_due_date_after_day' => 'Transaktionens forfaldsdato er efter eller på den ":value"', - 'search_modifier_payment_date_on_year' => 'Transaktionens betalingsdato er i år ":value"', - 'search_modifier_payment_date_on_month' => 'Transaktionens betalingsdato er i måned ":value"', - 'search_modifier_payment_date_on_day' => 'Transaktionen er på den ":value". i måneden', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaktionens betalings dato er før eller i år ":value"', - 'search_modifier_payment_date_before_month' => 'Transaktionens betalings dato er før eller i måned ":value"', - 'search_modifier_payment_date_before_day' => 'Transaktionens betalings dato er før eller på den ":value" i måneden', - 'search_modifier_payment_date_after_year' => 'Transaktionens betalings dato er efter eller i år ":value"', - 'search_modifier_payment_date_after_month' => 'Transaktionens betalings dato er efter eller i måned ":value"', - 'search_modifier_payment_date_after_day' => 'Transaktionens betalings dato er efter eller på den ":value" i måneden', - 'search_modifier_invoice_date_on_year' => 'Transaktionens faktura dato er i år ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaktionens faktura dato er i måned ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaktionens fakturadato er den ":value" i måneden', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaktionens faktura dato er før eller i år ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaktionens faktura dato er før eller i måned ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaktionens faktura dato er før eller på den ":value" i måneden', - 'search_modifier_invoice_date_after_year' => 'Transaktionens faktura dato er efter eller i år ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaktionens faktura dato er efter eller i måned ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaktionens faktura dato er efter eller på den ":value" i måneden', + 'search_modifier_interest_date_on' => 'Transaktion rentedato er ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaktionens rentedato er i år ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaktions rentedato er i måned ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaktions rentedato er den ":value". i måneden', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaktions rentedato er før eller i år ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaktionens forfaldsdato er efter eller i år ":value"', + 'search_modifier_due_date_after_month' => 'Transaktionens forfaldsdato er efter eller i måned ":value"', + 'search_modifier_due_date_after_day' => 'Transaktionens forfaldsdato er efter eller på den ":value"', + 'search_modifier_payment_date_on_year' => 'Transaktionens betalingsdato er i år ":value"', + 'search_modifier_payment_date_on_month' => 'Transaktionens betalingsdato er i måned ":value"', + 'search_modifier_payment_date_on_day' => 'Transaktionen er på den ":value". i måneden', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaktionens betalings dato er før eller i år ":value"', + 'search_modifier_payment_date_before_month' => 'Transaktionens betalings dato er før eller i måned ":value"', + 'search_modifier_payment_date_before_day' => 'Transaktionens betalings dato er før eller på den ":value" i måneden', + 'search_modifier_payment_date_after_year' => 'Transaktionens betalings dato er efter eller i år ":value"', + 'search_modifier_payment_date_after_month' => 'Transaktionens betalings dato er efter eller i måned ":value"', + 'search_modifier_payment_date_after_day' => 'Transaktionens betalings dato er efter eller på den ":value" i måneden', + 'search_modifier_invoice_date_on_year' => 'Transaktionens faktura dato er i år ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaktionens faktura dato er i måned ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaktionens fakturadato er den ":value" i måneden', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaktionens faktura dato er før eller i år ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaktionens faktura dato er før eller i måned ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaktionens faktura dato er før eller på den ":value" i måneden', + 'search_modifier_invoice_date_after_year' => 'Transaktionens faktura dato er efter eller i år ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaktionens faktura dato er efter eller i måned ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaktionens faktura dato er efter eller på den ":value" i måneden', // other dates - 'search_modifier_updated_at_on_year' => 'Transaktionen blev sidst opdateret i år ":value"', - 'search_modifier_updated_at_on_month' => 'Transaktionen blev sidst opdateret i måned ":value"', - 'search_modifier_updated_at_on_day' => 'Transaktionen blev sidst opdateret den ":value" i måneden', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaktionen blev sidst opdateret i eller før år ":value"', - 'search_modifier_updated_at_before_month' => 'Transaktionen blev sidst opdateret i eller før måned ":value"', - 'search_modifier_updated_at_before_day' => 'Transaktionen blev sidst opdateret i eller før den ":value" i måneden', - 'search_modifier_updated_at_after_year' => 'Transaktionen blev sidst opdateret i eller efter år ":value"', - 'search_modifier_updated_at_after_month' => 'Transaktionen blev sidst opdateret i eller efter måned ":value"', - 'search_modifier_updated_at_after_day' => 'Transaktionen blev sidst opdateret på eller efter den ":value" i måneden', - 'search_modifier_created_at_on_year' => 'Transaktionen blev oprettet i år ":value"', - 'search_modifier_created_at_on_month' => 'Transaktionen blev oprettet i måned ":value"', - 'search_modifier_created_at_on_day' => 'Transaktionen blev oprettet den ":value" i måneden', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaktionen blev oprettet i eller før år ":value"', - 'search_modifier_created_at_before_month' => 'Transaktionen blev oprettet i eller før måned ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaktionen blev sidst opdateret i år ":value"', + 'search_modifier_updated_at_on_month' => 'Transaktionen blev sidst opdateret i måned ":value"', + 'search_modifier_updated_at_on_day' => 'Transaktionen blev sidst opdateret den ":value" i måneden', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaktionen blev sidst opdateret i eller før år ":value"', + 'search_modifier_updated_at_before_month' => 'Transaktionen blev sidst opdateret i eller før måned ":value"', + 'search_modifier_updated_at_before_day' => 'Transaktionen blev sidst opdateret i eller før den ":value" i måneden', + 'search_modifier_updated_at_after_year' => 'Transaktionen blev sidst opdateret i eller efter år ":value"', + 'search_modifier_updated_at_after_month' => 'Transaktionen blev sidst opdateret i eller efter måned ":value"', + 'search_modifier_updated_at_after_day' => 'Transaktionen blev sidst opdateret på eller efter den ":value" i måneden', + 'search_modifier_created_at_on_year' => 'Transaktionen blev oprettet i år ":value"', + 'search_modifier_created_at_on_month' => 'Transaktionen blev oprettet i måned ":value"', + 'search_modifier_created_at_on_day' => 'Transaktionen blev oprettet den ":value" i måneden', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaktionen blev oprettet i eller før år ":value"', + 'search_modifier_created_at_before_month' => 'Transaktionen blev oprettet i eller før måned ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Opdater regel ":rule" fra søgeforespørgsel', - 'create_rule_from_query' => 'Opret ny regel fra søgeforespørgsel', - 'rule_from_search_words' => 'Der er problemer med at håndtere forespørgslen ":string". Den foreslåede regel, der passer til din søgeforespørgsel, kan give forskellige resultater. Kontroller venligst omhyggeligt de udløsende hændelser.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Opdater regel ":rule" fra søgeforespørgsel', + 'create_rule_from_query' => 'Opret ny regel fra søgeforespørgsel', + 'rule_from_search_words' => 'Der er problemer med at håndtere forespørgslen ":string". Den foreslåede regel, der passer til din søgeforespørgsel, kan give forskellige resultater. Kontroller venligst omhyggeligt de udløsende hændelser.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'De følgende tilpasninger anvendes også i søgningen:', - 'general_search_error' => 'Der opstod en fejl under søgningen. Kontroller logfilerne for mere information.', - 'search_box' => 'Søg', - 'search_box_intro' => 'Velkommen til søgefunktionen i Firefly III. Indtast din søgeforespørgsel i boksen. Sørg for at kigge i hjælpefilen, da søgefunktionaliteten er temmelig avanceret.', - 'search_error' => 'Fejl under søgning', - 'search_searching' => 'Søger...', - 'search_results' => 'Søgeresultater', + 'modifiers_applies_are' => 'De følgende tilpasninger anvendes også i søgningen:', + 'general_search_error' => 'Der opstod en fejl under søgningen. Kontroller logfilerne for mere information.', + 'search_box' => 'Søg', + 'search_box_intro' => 'Velkommen til søgefunktionen i Firefly III. Indtast din søgeforespørgsel i boksen. Sørg for at kigge i hjælpefilen, da søgefunktionaliteten er temmelig avanceret.', + 'search_error' => 'Fejl under søgning', + 'search_searching' => 'Søger...', + 'search_results' => 'Søgeresultater', // repeat frequencies: - 'repeat_freq_yearly' => 'årligt', - 'repeat_freq_half-year' => 'hvert halve år', - 'repeat_freq_quarterly' => 'kvartalsvis', - 'repeat_freq_monthly' => 'månedligt', - 'repeat_freq_weekly' => 'ugentligt', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'ugentligt', - 'quarterly' => 'kvartalsvis', - 'half-year' => 'hvert halve år', - 'yearly' => 'årligt', + 'repeat_freq_yearly' => 'årligt', + 'repeat_freq_half-year' => 'hvert halve år', + 'repeat_freq_quarterly' => 'kvartalsvis', + 'repeat_freq_monthly' => 'månedligt', + 'repeat_freq_weekly' => 'ugentligt', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'ugentligt', + 'quarterly' => 'kvartalsvis', + 'half-year' => 'hvert halve år', + 'yearly' => 'årligt', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Du kan ikke afvikle inaktive regler.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Regler', - 'rule_name' => 'Navn på regel', - 'rule_triggers' => 'Regel udløsere, ved', - 'rule_actions' => 'Reglen vil', - 'new_rule' => 'Ny regel', - 'new_rule_group' => 'Ny regel gruppe', - 'rule_priority_up' => 'Giv reglen mere prioritet', - 'rule_priority_down' => 'Giv reglen mindre prioritet', - 'make_new_rule_group' => 'Opret ny regel gruppe', - 'store_new_rule_group' => 'Gem ny regel gruppe', - 'created_new_rule_group' => 'Ny regel gruppe ":title" gemt!', - 'updated_rule_group' => 'Regelgruppen ":title" opdateret.', - 'edit_rule_group' => 'Rediger regelgruppe ":title"', - 'duplicate_rule' => 'Dublet regel ":title"', - 'rule_copy_of' => 'Kopi af ":title"', - 'duplicated_rule' => 'Regel ":title" duplikeret som ":newTitle"', - 'delete_rule_group' => 'Slet regelgruppe ":title"', - 'deleted_rule_group' => 'Regelgruppe ":title" slettet', - 'update_rule_group' => 'Opdater regelgruppe', - 'no_rules_in_group' => 'Der er ingen regler i denne gruppe', - 'move_rule_group_up' => 'Flyt regelgruppe op', - 'move_rule_group_down' => 'Flyt regelgruppe ned', - 'save_rules_by_moving' => 'Gem denne regel ved at flytte den til en anden regelgruppe:|Gem disse regler ved at flytte dem til en anden regelgruppe:', - 'make_new_rule' => 'Lav en ny regel i regelgruppen ":title"', - 'make_new_rule_no_group' => 'Lav en ny regel', - 'instructions_rule_from_bill' => 'For at matche transaktioner med din nye regning ":name", Firefly III kan oprette en regel, der automatisk vil blive tjekket mod enhver transaktion, du gemmer. Bekræft venligst nedenstående detaljer og gem reglen for at få Firefly III til at matche transaktioner automatisk med din nye regning.', - 'instructions_rule_from_journal' => 'Opret en regel baseret på en af dine transaktioner. Udfyld eller indsend nedenstående formular.', - 'rule_is_strict' => 'streng regel', - 'rule_is_not_strict' => 'ikke-streng regel', - 'rule_help_stop_processing' => 'Når du afkrydser dette felt, vil senere regler i denne gruppe ikke blive udført.', - 'rule_help_strict' => 'I strenge regler SKAL ALLE udløsere affyre for at handlingen/handlingerne kan udføres. I ikke-strenge regler er én udløser nok til, at handlingen/aktionerne kan udføres.', - 'rule_help_active' => 'Inaktive regler vil aldrig udløses.', - 'stored_new_rule' => 'Gemt ny regel med titlen ":title"', - 'deleted_rule' => 'Slettede reglen med titlen ":title"', - 'store_new_rule' => 'Gem ny regel', - 'updated_rule' => 'Opdateret regel med titlen ":title"', - 'default_rule_group_name' => 'Standard regler', - 'default_rule_group_description' => 'Alle dine regler som ikke er i en bestemt gruppe.', - 'trigger' => 'Udløser', - 'trigger_value' => 'Udløs på værdi', - 'stop_processing_other_triggers' => 'Stop behandling af andre udløsere', - 'add_rule_trigger' => 'Tilføj ny udløser', - 'action' => 'Handling', - 'action_value' => 'Aktionsværdi', - 'stop_executing_other_actions' => 'Stop udførelse af øvrige handlinger', - 'add_rule_action' => 'Tilføj en ny handling', - 'edit_rule' => 'Rediger regel ":title"', - 'delete_rule' => 'Slet regel ":title"', - 'update_rule' => 'Opdater regel', - 'test_rule_triggers' => 'Se matchende transaktioner', - 'warning_no_matching_transactions' => 'Ingen matchende transaktioner fundet.', - 'warning_no_valid_triggers' => 'Ingen gyldige udløsere angivet.', - 'apply_rule_selection' => 'Anvend regel ":title" på udvalgte transaktioner', - 'apply_rule_selection_intro' => 'Regler som ":title" anvendes normalt kun på nye eller opdaterede transaktioner, men du kan bede Firefly III at køre det på et udvalg af dine eksisterende transaktioner. Dette kan være nyttigt, når du har opdateret en regel og du har brug for at ændringerne anvendes på alle dine andre transaktioner.', - 'include_transactions_from_accounts' => 'Inkludér transaktioner fra disse konti', - 'include' => 'Inkludér?', - 'applied_rule_selection' => '{0} Ingen transaktioner i dit valg blev ændret af regel ":title".[1] En transaktion i dit valg blev ændret af regel ":title". [2,*] :count transaktioner i dit valg blev ændret af regel ":title".', - 'execute' => 'Kør', - 'apply_rule_group_selection' => 'Anvend regelgruppe ":title" på et udvalg af dine transaktioner', - 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" anvendes normalt kun på nye eller opdaterede transaktioner, men du kan bede Firefly III at køre alle reglerne i denne gruppe, på et udvalg af dine eksisterende transaktioner. Dette kan være nyttigt når du har opdateret en gruppe af regler, og du har brug for at regelændringerne anvendes på alle dine andre transaktioner.', - 'applied_rule_group_selection' => 'Regelgruppe ":title" er blevet anvendt på det udvalgte.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Du kan ikke afvikle inaktive regler.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Regler', + 'rule_name' => 'Navn på regel', + 'rule_triggers' => 'Regel udløsere, ved', + 'rule_actions' => 'Reglen vil', + 'new_rule' => 'Ny regel', + 'new_rule_group' => 'Ny regel gruppe', + 'rule_priority_up' => 'Giv reglen mere prioritet', + 'rule_priority_down' => 'Giv reglen mindre prioritet', + 'make_new_rule_group' => 'Opret ny regel gruppe', + 'store_new_rule_group' => 'Gem ny regel gruppe', + 'created_new_rule_group' => 'Ny regel gruppe ":title" gemt!', + 'updated_rule_group' => 'Regelgruppen ":title" opdateret.', + 'edit_rule_group' => 'Rediger regelgruppe ":title"', + 'duplicate_rule' => 'Dublet regel ":title"', + 'rule_copy_of' => 'Kopi af ":title"', + 'duplicated_rule' => 'Regel ":title" duplikeret som ":newTitle"', + 'delete_rule_group' => 'Slet regelgruppe ":title"', + 'deleted_rule_group' => 'Regelgruppe ":title" slettet', + 'update_rule_group' => 'Opdater regelgruppe', + 'no_rules_in_group' => 'Der er ingen regler i denne gruppe', + 'move_rule_group_up' => 'Flyt regelgruppe op', + 'move_rule_group_down' => 'Flyt regelgruppe ned', + 'save_rules_by_moving' => 'Gem denne regel ved at flytte den til en anden regelgruppe:|Gem disse regler ved at flytte dem til en anden regelgruppe:', + 'make_new_rule' => 'Lav en ny regel i regelgruppen ":title"', + 'make_new_rule_no_group' => 'Lav en ny regel', + 'instructions_rule_from_bill' => 'For at matche transaktioner med din nye regning ":name", Firefly III kan oprette en regel, der automatisk vil blive tjekket mod enhver transaktion, du gemmer. Bekræft venligst nedenstående detaljer og gem reglen for at få Firefly III til at matche transaktioner automatisk med din nye regning.', + 'instructions_rule_from_journal' => 'Opret en regel baseret på en af dine transaktioner. Udfyld eller indsend nedenstående formular.', + 'rule_is_strict' => 'streng regel', + 'rule_is_not_strict' => 'ikke-streng regel', + 'rule_help_stop_processing' => 'Når du afkrydser dette felt, vil senere regler i denne gruppe ikke blive udført.', + 'rule_help_strict' => 'I strenge regler SKAL ALLE udløsere affyre for at handlingen/handlingerne kan udføres. I ikke-strenge regler er én udløser nok til, at handlingen/aktionerne kan udføres.', + 'rule_help_active' => 'Inaktive regler vil aldrig udløses.', + 'stored_new_rule' => 'Gemt ny regel med titlen ":title"', + 'deleted_rule' => 'Slettede reglen med titlen ":title"', + 'store_new_rule' => 'Gem ny regel', + 'updated_rule' => 'Opdateret regel med titlen ":title"', + 'default_rule_group_name' => 'Standard regler', + 'default_rule_group_description' => 'Alle dine regler som ikke er i en bestemt gruppe.', + 'trigger' => 'Udløser', + 'trigger_value' => 'Udløs på værdi', + 'stop_processing_other_triggers' => 'Stop behandling af andre udløsere', + 'add_rule_trigger' => 'Tilføj ny udløser', + 'action' => 'Handling', + 'action_value' => 'Aktionsværdi', + 'stop_executing_other_actions' => 'Stop udførelse af øvrige handlinger', + 'add_rule_action' => 'Tilføj en ny handling', + 'edit_rule' => 'Rediger regel ":title"', + 'delete_rule' => 'Slet regel ":title"', + 'update_rule' => 'Opdater regel', + 'test_rule_triggers' => 'Se matchende transaktioner', + 'warning_no_matching_transactions' => 'Ingen matchende transaktioner fundet.', + 'warning_no_valid_triggers' => 'Ingen gyldige udløsere angivet.', + 'apply_rule_selection' => 'Anvend regel ":title" på udvalgte transaktioner', + 'apply_rule_selection_intro' => 'Regler som ":title" anvendes normalt kun på nye eller opdaterede transaktioner, men du kan bede Firefly III at køre det på et udvalg af dine eksisterende transaktioner. Dette kan være nyttigt, når du har opdateret en regel og du har brug for at ændringerne anvendes på alle dine andre transaktioner.', + 'include_transactions_from_accounts' => 'Inkludér transaktioner fra disse konti', + 'include' => 'Inkludér?', + 'applied_rule_selection' => '{0} Ingen transaktioner i dit valg blev ændret af regel ":title".[1] En transaktion i dit valg blev ændret af regel ":title". [2,*] :count transaktioner i dit valg blev ændret af regel ":title".', + 'execute' => 'Kør', + 'apply_rule_group_selection' => 'Anvend regelgruppe ":title" på et udvalg af dine transaktioner', + 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" anvendes normalt kun på nye eller opdaterede transaktioner, men du kan bede Firefly III at køre alle reglerne i denne gruppe, på et udvalg af dine eksisterende transaktioner. Dette kan være nyttigt når du har opdateret en gruppe af regler, og du har brug for at regelændringerne anvendes på alle dine andre transaktioner.', + 'applied_rule_group_selection' => 'Regelgruppe ":title" er blevet anvendt på det udvalgte.', // actions and triggers - 'rule_trigger_store_journal' => 'Når en transaktion er oprettet', - 'rule_trigger_update_journal' => 'Når en transaktion opdateres', - 'rule_trigger_user_action' => 'Brugerhandling er ":trigger_value"', + 'rule_trigger_store_journal' => 'Når en transaktion er oprettet', + 'rule_trigger_update_journal' => 'Når en transaktion opdateres', + 'rule_trigger_user_action' => 'Brugerhandling er ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Kildekontonavn starter med..', - 'rule_trigger_source_account_starts' => 'Kildekontonavn starter med ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Kildekontonavnet slutter med..', - 'rule_trigger_source_account_ends' => 'Kildekontonavn slutter med ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Kildekontonavn er..', - 'rule_trigger_source_account_is' => 'Kildekontonavn er ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Kildekontonavnet indeholder..', - 'rule_trigger_source_account_contains' => 'Kildekontonavnet indeholder ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Kildekonto ID er præcis..', - 'rule_trigger_source_account_id' => 'Kildekonto ID er præcis :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destinationskonto ID er præcis..', - 'rule_trigger_destination_account_id' => 'Destinationskonto ID er præcis :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Kildekonto er (kontant) konto', - 'rule_trigger_source_is_cash' => 'Kildekonto er (kontant) konto', - 'rule_trigger_destination_is_cash_choice' => 'Destinationskonto er (kontant) konto', - 'rule_trigger_destination_is_cash' => 'Destinationskonto er (kontant) konto', - 'rule_trigger_source_account_nr_starts_choice' => 'Kildekontonummer / IBAN starter med..', - 'rule_trigger_source_account_nr_starts' => 'Kildekontonummer / IBAN starter med ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Kildekontonummer / IBAN slutter med..', - 'rule_trigger_source_account_nr_ends' => 'Kildekontonummer / IBAN slutter med ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Kildekontonummer / IBAN er..', - 'rule_trigger_source_account_nr_is' => 'Kildekontonummer / IBAN er ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Kildekontonummer / IBAN indeholder..', - 'rule_trigger_source_account_nr_contains' => 'Kildekontonummer / IBAN indeholder ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destinationskontonavnet starter med..', - 'rule_trigger_destination_account_starts' => 'Destinationskontonavnet starter med ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destinationskontonavnet slutter med..', - 'rule_trigger_destination_account_ends' => 'Destinationskontonavnet slutter med ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destinationskontonavnet er..', - 'rule_trigger_destination_account_is' => 'Destinationskontonavnet er ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destinationskontonavnet indeholder..', - 'rule_trigger_destination_account_contains' => 'Destinationskontonavnet indeholder ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destinationskontonummer / IBAN starter med..', - 'rule_trigger_destination_account_nr_starts' => 'Destinationskontonummer / IBAN starter med ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destinationskontonummer / IBAN slutter med..', - 'rule_trigger_destination_account_nr_ends' => 'Destinationskontonummer / IBAN slutter med ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destinationskontonummer / IBAN er..', - 'rule_trigger_destination_account_nr_is' => 'Destinationskontonummer / IBAN er ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destinationskontonummer / IBAN indeholder..', - 'rule_trigger_destination_account_nr_contains' => 'Destinationskontonummer / IBAN indeholder ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaktionen er af type..', - 'rule_trigger_transaction_type' => 'Transaktionen er af typen ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategorien er..', - 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beskrivelsen starter med..', - 'rule_trigger_description_starts' => 'Beskrivelsen starter med ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beskrivelsen slutter med..', - 'rule_trigger_description_ends' => 'Beskrivelsen slutter med ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beskrivelsen indeholder..', - 'rule_trigger_description_contains' => 'Beskrivelsen indeholder ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beskrivelsen er..', - 'rule_trigger_description_is' => 'Beskrivelsen er ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaktionsdato er før..', - 'rule_trigger_date_before' => 'Transaktionsdatoen er før ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaktionsdatoen er efter..', - 'rule_trigger_date_after' => 'Transaktionsdatoen er efter ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budgettet er..', - 'rule_trigger_budget_is' => 'Budgettet er ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaktionsvalutaen er..', - 'rule_trigger_currency_is' => 'Transaktionsvalutaen er ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Udenlandsk transaktionsvaluta er..', - 'rule_trigger_foreign_currency_is' => 'Udenlansk transaktionsvaluta er ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Har mindst så mange vedhæftede filer', - 'rule_trigger_has_attachments' => 'Har mindst :trigger_value vedhæftning(er)', - 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', - 'rule_trigger_has_no_category' => 'Transaktionen har ingen kategori', - 'rule_trigger_has_any_category_choice' => 'Har en (vilkårlig) kategori', - 'rule_trigger_has_any_category' => 'Transaktionen har en (nogen) kategori', - 'rule_trigger_has_no_budget_choice' => 'Har intet budget', - 'rule_trigger_has_no_budget' => 'Transaktionen har intet budget', - 'rule_trigger_has_any_budget_choice' => 'Har et (noget) budget', - 'rule_trigger_has_any_budget' => 'Transaktionen har et (noget) budget', - 'rule_trigger_has_no_bill_choice' => 'Har ingen regning', - 'rule_trigger_has_no_bill' => 'Transaktionen har ingen regning', - 'rule_trigger_has_any_bill_choice' => 'Har en (valgfri) regning', - 'rule_trigger_has_any_bill' => 'Transaktionen har en (valgfri) regning', - 'rule_trigger_has_no_tag_choice' => 'Har ingen tag(s)', - 'rule_trigger_has_no_tag' => 'Transaktionen har ingen tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Har en eller flere (nogen) tags', - 'rule_trigger_has_any_tag' => 'Transaktionen har en eller flere (nogen) tags', - 'rule_trigger_any_notes_choice' => 'Har (nogen) noter', - 'rule_trigger_any_notes' => 'Transaktionen har (nogen) noter', - 'rule_trigger_no_notes_choice' => 'Har ingen noter', - 'rule_trigger_no_notes' => 'Transaktionen har ingen noter', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Regningen er..', - 'rule_trigger_bill_is' => 'Fakturaen er ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaktionsjournal ID er..', - 'rule_trigger_journal_id' => 'Transaktionsjournal ID er ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaktion har ikke noget eksternt URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Kildekontonavn starter med..', + 'rule_trigger_source_account_starts' => 'Kildekontonavn starter med ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Kildekontonavnet slutter med..', + 'rule_trigger_source_account_ends' => 'Kildekontonavn slutter med ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Kildekontonavn er..', + 'rule_trigger_source_account_is' => 'Kildekontonavn er ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Kildekontonavnet indeholder..', + 'rule_trigger_source_account_contains' => 'Kildekontonavnet indeholder ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Kildekonto ID er præcis..', + 'rule_trigger_source_account_id' => 'Kildekonto ID er præcis :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destinationskonto ID er præcis..', + 'rule_trigger_destination_account_id' => 'Destinationskonto ID er præcis :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Kildekonto er (kontant) konto', + 'rule_trigger_source_is_cash' => 'Kildekonto er (kontant) konto', + 'rule_trigger_destination_is_cash_choice' => 'Destinationskonto er (kontant) konto', + 'rule_trigger_destination_is_cash' => 'Destinationskonto er (kontant) konto', + 'rule_trigger_source_account_nr_starts_choice' => 'Kildekontonummer / IBAN starter med..', + 'rule_trigger_source_account_nr_starts' => 'Kildekontonummer / IBAN starter med ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Kildekontonummer / IBAN slutter med..', + 'rule_trigger_source_account_nr_ends' => 'Kildekontonummer / IBAN slutter med ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Kildekontonummer / IBAN er..', + 'rule_trigger_source_account_nr_is' => 'Kildekontonummer / IBAN er ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Kildekontonummer / IBAN indeholder..', + 'rule_trigger_source_account_nr_contains' => 'Kildekontonummer / IBAN indeholder ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destinationskontonavnet starter med..', + 'rule_trigger_destination_account_starts' => 'Destinationskontonavnet starter med ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destinationskontonavnet slutter med..', + 'rule_trigger_destination_account_ends' => 'Destinationskontonavnet slutter med ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destinationskontonavnet er..', + 'rule_trigger_destination_account_is' => 'Destinationskontonavnet er ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destinationskontonavnet indeholder..', + 'rule_trigger_destination_account_contains' => 'Destinationskontonavnet indeholder ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destinationskontonummer / IBAN starter med..', + 'rule_trigger_destination_account_nr_starts' => 'Destinationskontonummer / IBAN starter med ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destinationskontonummer / IBAN slutter med..', + 'rule_trigger_destination_account_nr_ends' => 'Destinationskontonummer / IBAN slutter med ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destinationskontonummer / IBAN er..', + 'rule_trigger_destination_account_nr_is' => 'Destinationskontonummer / IBAN er ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destinationskontonummer / IBAN indeholder..', + 'rule_trigger_destination_account_nr_contains' => 'Destinationskontonummer / IBAN indeholder ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaktionen er af type..', + 'rule_trigger_transaction_type' => 'Transaktionen er af typen ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategorien er..', + 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beskrivelsen starter med..', + 'rule_trigger_description_starts' => 'Beskrivelsen starter med ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beskrivelsen slutter med..', + 'rule_trigger_description_ends' => 'Beskrivelsen slutter med ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beskrivelsen indeholder..', + 'rule_trigger_description_contains' => 'Beskrivelsen indeholder ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beskrivelsen er..', + 'rule_trigger_description_is' => 'Beskrivelsen er ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaktionsdato er før..', + 'rule_trigger_date_before' => 'Transaktionsdatoen er før ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaktionsdatoen er efter..', + 'rule_trigger_date_after' => 'Transaktionsdatoen er efter ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budgettet er..', + 'rule_trigger_budget_is' => 'Budgettet er ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaktionsvalutaen er..', + 'rule_trigger_currency_is' => 'Transaktionsvalutaen er ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Udenlandsk transaktionsvaluta er..', + 'rule_trigger_foreign_currency_is' => 'Udenlansk transaktionsvaluta er ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Har mindst så mange vedhæftede filer', + 'rule_trigger_has_attachments' => 'Har mindst :trigger_value vedhæftning(er)', + 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', + 'rule_trigger_has_no_category' => 'Transaktionen har ingen kategori', + 'rule_trigger_has_any_category_choice' => 'Har en (vilkårlig) kategori', + 'rule_trigger_has_any_category' => 'Transaktionen har en (nogen) kategori', + 'rule_trigger_has_no_budget_choice' => 'Har intet budget', + 'rule_trigger_has_no_budget' => 'Transaktionen har intet budget', + 'rule_trigger_has_any_budget_choice' => 'Har et (noget) budget', + 'rule_trigger_has_any_budget' => 'Transaktionen har et (noget) budget', + 'rule_trigger_has_no_bill_choice' => 'Har ingen regning', + 'rule_trigger_has_no_bill' => 'Transaktionen har ingen regning', + 'rule_trigger_has_any_bill_choice' => 'Har en (valgfri) regning', + 'rule_trigger_has_any_bill' => 'Transaktionen har en (valgfri) regning', + 'rule_trigger_has_no_tag_choice' => 'Har ingen tag(s)', + 'rule_trigger_has_no_tag' => 'Transaktionen har ingen tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Har en eller flere (nogen) tags', + 'rule_trigger_has_any_tag' => 'Transaktionen har en eller flere (nogen) tags', + 'rule_trigger_any_notes_choice' => 'Har (nogen) noter', + 'rule_trigger_any_notes' => 'Transaktionen har (nogen) noter', + 'rule_trigger_no_notes_choice' => 'Har ingen noter', + 'rule_trigger_no_notes' => 'Transaktionen har ingen noter', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Regningen er..', + 'rule_trigger_bill_is' => 'Fakturaen er ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaktionsjournal ID er..', + 'rule_trigger_journal_id' => 'Transaktionsjournal ID er ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaktion har ikke noget eksternt URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Sæt kategori til ":action_value"', - 'rule_action_clear_category' => 'Ryd kategori', - 'rule_action_set_budget' => 'Sæt budget til ":action_value"', - 'rule_action_clear_budget' => 'Ryd budget', - 'rule_action_add_tag' => 'Tilføj tag ":action_value"', - 'rule_action_remove_tag' => 'Fjern tag ":action_value"', - 'rule_action_remove_all_tags' => 'Fjern alle tags', - 'rule_action_set_description' => 'Angiv beskrivelsen til ":action_value"', - 'rule_action_append_description' => 'Tilføj beskrivelsen med ":action_value"', - 'rule_action_prepend_description' => 'Præfiks beskrivelsen med ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Ryd alle kategorier', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Ryd ethvert budget', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Fjern alle tags', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Sæt kildekonto til :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Sæt destinationskonto til :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Tilføj noter med ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Præfiks noter med ":action_value"', - 'rule_action_clear_notes_choice' => 'Fjern alle noter', - 'rule_action_clear_notes' => 'Fjern alle noter', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link til regning ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Sæt noter til ":action_value"', - 'rule_action_convert_deposit_choice' => 'Konverter transaktionen til et indskud', - 'rule_action_convert_deposit' => 'Konverter transaktionen til et indskud fra ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Konverter transaktionen til en udbetaling', - 'rule_action_convert_withdrawal' => 'Konverter transaktionen til en udbetaling til ":action_value"', - 'rule_action_convert_transfer_choice' => 'Konverter transaktionen til en overførsel', - 'rule_action_convert_transfer' => 'Konverter transaktionen til en overførsel med ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Regelgruppe for regninger', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Opret en ny regel for fakturaen ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Regel for regning ":name"', - 'new_rule_for_bill_description' => 'Denne regel markerer transaktioner for regning ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Sæt kategori til ":action_value"', + 'rule_action_clear_category' => 'Ryd kategori', + 'rule_action_set_budget' => 'Sæt budget til ":action_value"', + 'rule_action_clear_budget' => 'Ryd budget', + 'rule_action_add_tag' => 'Tilføj tag ":action_value"', + 'rule_action_remove_tag' => 'Fjern tag ":action_value"', + 'rule_action_remove_all_tags' => 'Fjern alle tags', + 'rule_action_set_description' => 'Angiv beskrivelsen til ":action_value"', + 'rule_action_append_description' => 'Tilføj beskrivelsen med ":action_value"', + 'rule_action_prepend_description' => 'Præfiks beskrivelsen med ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Ryd alle kategorier', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Ryd ethvert budget', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Fjern alle tags', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Sæt kildekonto til :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Sæt destinationskonto til :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Tilføj noter med ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Præfiks noter med ":action_value"', + 'rule_action_clear_notes_choice' => 'Fjern alle noter', + 'rule_action_clear_notes' => 'Fjern alle noter', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link til regning ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Sæt noter til ":action_value"', + 'rule_action_convert_deposit_choice' => 'Konverter transaktionen til et indskud', + 'rule_action_convert_deposit' => 'Konverter transaktionen til et indskud fra ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Konverter transaktionen til en udbetaling', + 'rule_action_convert_withdrawal' => 'Konverter transaktionen til en udbetaling til ":action_value"', + 'rule_action_convert_transfer_choice' => 'Konverter transaktionen til en overførsel', + 'rule_action_convert_transfer' => 'Konverter transaktionen til en overførsel med ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Regelgruppe for regninger', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Opret en ny regel for fakturaen ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Regel for regning ":name"', + 'new_rule_for_bill_description' => 'Denne regel markerer transaktioner for regning ":name".', - 'new_rule_for_journal_title' => 'Regel baseret på transaktionen ":description"', - 'new_rule_for_journal_description' => 'Denne regel er baseret på transaktionen ":description". Den vil matche transaktioner, der er nøjagtigt de samme.', + 'new_rule_for_journal_title' => 'Regel baseret på transaktionen ":description"', + 'new_rule_for_journal_description' => 'Denne regel er baseret på transaktionen ":description". Den vil matche transaktioner, der er nøjagtigt de samme.', // tags - 'store_new_tag' => 'Gem nyt tag', - 'update_tag' => 'Opdater tag', - 'no_location_set' => 'Ingen stedangivelse.', - 'meta_data' => 'Meta data', - 'location' => 'Sted', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Uden dato', - 'result' => 'Resultat', - 'sums_apply_to_range' => 'Alle beløb gælder for det valgte interval', - 'mapbox_api_key' => 'For at bruge kortet, hent en API-nøgle fra Mapbox. Åbn .env -filen og indtast denne kode under MAPBOX_API_KEY=.', - 'press_object_location' => 'Højreklik eller langt tryk for at angive objektets placering.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Ryd stedangivelse', - 'delete_all_selected_tags' => 'Slet alle valgte tags', - 'select_tags_to_delete' => 'Glem ikke at vælge nogle tags.', - 'deleted_x_tags' => 'Slettede :count tag.|Slettede :count tags.', - 'create_rule_from_transaction' => 'Opret regel baseret på transaktion', - 'create_recurring_from_transaction' => 'Opret periodisk transaktion baseret på transaktion', + 'store_new_tag' => 'Gem nyt tag', + 'update_tag' => 'Opdater tag', + 'no_location_set' => 'Ingen stedangivelse.', + 'meta_data' => 'Meta data', + 'location' => 'Sted', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Uden dato', + 'result' => 'Resultat', + 'sums_apply_to_range' => 'Alle beløb gælder for det valgte interval', + 'mapbox_api_key' => 'For at bruge kortet, hent en API-nøgle fra Mapbox. Åbn .env -filen og indtast denne kode under MAPBOX_API_KEY=.', + 'press_object_location' => 'Højreklik eller langt tryk for at angive objektets placering.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Ryd stedangivelse', + 'delete_all_selected_tags' => 'Slet alle valgte tags', + 'select_tags_to_delete' => 'Glem ikke at vælge nogle tags.', + 'deleted_x_tags' => 'Slettede :count tag.|Slettede :count tags.', + 'create_rule_from_transaction' => 'Opret regel baseret på transaktion', + 'create_recurring_from_transaction' => 'Opret periodisk transaktion baseret på transaktion', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(lig med sprog)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Startskærmskonti', - 'pref_home_screen_accounts_help' => 'Hvilke konti skal vises på hjemmesiden?', - 'pref_view_range' => 'Vis interval', - 'pref_view_range_help' => 'Nogle diagrammer er automatisk grupperet i perioder. Dine budgetter vil også blive grupperet i perioder. Hvilken periode vil du foretrække?', - 'pref_1D' => 'En dag', - 'pref_1W' => 'En uge', - 'pref_1M' => 'En måned', - 'pref_3M' => 'Tre måneder (kvartal)', - 'pref_6M' => 'Seks måneder', - 'pref_1Y' => 'Et år', - 'pref_last365' => 'Sidste år', - 'pref_last90' => 'Sidste 90 dage', - 'pref_last30' => 'Sidste 30 dage', - 'pref_last7' => 'Sidste 7 dage', - 'pref_YTD' => 'År til dato', - 'pref_QTD' => 'Kvartal til dato', - 'pref_MTD' => 'Måned til dato', - 'pref_languages' => 'Sprog', - 'pref_locale' => 'Landekode indstillinger', - 'pref_languages_help' => 'Firefly III understøtter flere sprog. Hvilket foretrækker du?', - 'pref_locale_help' => 'Firefly III giver dig mulighed for at indstille andre landestandard indstillinger, såsom hvordan valutaer, tal og datoer er formateret. Indstillingerne i denne liste understøttes muligvis ikke af dit system. Firefly III har ikke de korrekte datoindstillinger for hver landestandard; kontakt mig for forbedringer.', - 'pref_locale_no_demo' => 'Denne funktion virker ikke for demo-brugeren.', - 'pref_custom_fiscal_year' => 'Skatteår indstillinger', - 'pref_custom_fiscal_year_label' => 'Aktiveret', - 'pref_custom_fiscal_year_help' => 'For lande, der anvender anden regnskabsårsperiode end 1. januar til 31. december, kan du slå dette til og angive start-/slut- dato for regnskabsåret', - 'pref_fiscal_year_start_label' => 'Regnskabsårets start dato', - 'pref_two_factor_auth' => '2-trins verificering', - 'pref_two_factor_auth_help' => 'Når du aktiverer totrinsbekræftelse (også kendt som tofaktorgodkendelse), tilføjer du et ekstra lag af sikkerhed til din konto. Du logger ind med noget, du kender (din adgangskode) og noget du har (en bekræftelseskode). Bekræftelseskoder genereres af et program på din telefon, såsom Authy eller Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Aktivér totrinsbekræftelse', - 'pref_two_factor_auth_disabled' => '2-trins bekræftelseskode fjernet og deaktiveret', - 'pref_two_factor_auth_remove_it' => 'Glem ikke at fjerne kontoen fra din godkendelse app!', - 'pref_two_factor_auth_code' => 'Bekræftelseskode', - 'pref_two_factor_auth_code_help' => 'Scan QR-koden med et program på din telefon, såsom Authy eller Google Authenticator og angiv den genererede kode.', - 'pref_two_factor_auth_reset_code' => 'Nulstil bekræftelseskode', - 'pref_two_factor_auth_disable_2fa' => 'Deaktiver To-faktor-godkendelse', - '2fa_use_secret_instead' => 'Hvis du ikke kan scanne QR-koden, er du velkommen til at bruge \'koden\' i stedet: :secret.', - '2fa_backup_codes' => 'Gem disse backup koder for adgang, hvis du mister din enhed.', - '2fa_already_enabled' => '2-trins bekræftelse er allerede aktiveret.', - 'wrong_mfa_code' => 'Denne Multifaktor bekræftelseskode er ikke gyldig.', - 'pref_save_settings' => 'Gem indstillinger', - 'saved_preferences' => 'Indstillinger gemt!', - 'preferences_general' => 'Generelt', - 'preferences_frontpage' => 'Startskærm', - 'preferences_security' => 'Sikkerhed', - 'preferences_layout' => 'Layout', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Vis indskud på startskærmen', - 'pref_home_show_deposits_info' => 'Startskærmen viser allerede dine udgiftskonti. Skal det også vise dine indtægtskonti?', - 'pref_home_do_show_deposits' => 'Ja, vis dem', - 'successful_count' => 'heraf :count lykkedes', - 'list_page_size_title' => 'Sidestørrelse', - 'list_page_size_help' => 'Enhver vilkårlig liste (konti, transaktioner osv.) viser højst så mange per side.', - 'list_page_size_label' => 'Sidestørrelse', - 'between_dates' => '(:start og :end)', - 'pref_optional_fields_transaction' => 'Valgfrie felter for transaktioner', - 'pref_optional_fields_transaction_help' => 'Som standard er ikke alle felter aktiveret, når du opretter en ny transaktion (undgår rod). Nedenfor kan du aktivere disse felter, hvis du tror, de kunne være nyttige for dig. Selvfølgelig vil ethvert felt, der er deaktiveret, men allerede udfyldt, være synligt uanset konfigurationen.', - 'optional_tj_date_fields' => 'Dato felter', - 'optional_tj_other_fields' => 'Andre felter', - 'optional_tj_attachment_fields' => 'Bilagsfelter', - 'pref_optional_tj_interest_date' => 'Rentedato', - 'pref_optional_tj_book_date' => 'Bogføringsdato', - 'pref_optional_tj_process_date' => 'Behandlingsdato', - 'pref_optional_tj_due_date' => 'Forfaldsdato', - 'pref_optional_tj_payment_date' => 'Betalingsdato', - 'pref_optional_tj_invoice_date' => 'Fakturadato', - 'pref_optional_tj_internal_reference' => 'Intern reference', - 'pref_optional_tj_notes' => 'Bemærkninger', - 'pref_optional_tj_attachments' => 'Vedhæftninger', - 'pref_optional_tj_external_url' => 'Eksternt URL', - 'pref_optional_tj_location' => 'Placering', - 'pref_optional_tj_links' => 'Transaktionslinks', - 'optional_field_meta_dates' => 'Datoer', - 'optional_field_meta_business' => 'Forretning', - 'optional_field_attachments' => 'Vedhæftninger', - 'optional_field_meta_data' => 'Valgfrit metadata', - 'external_url' => 'Ekstern URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(lig med sprog)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Startskærmskonti', + 'pref_home_screen_accounts_help' => 'Hvilke konti skal vises på hjemmesiden?', + 'pref_view_range' => 'Vis interval', + 'pref_view_range_help' => 'Nogle diagrammer er automatisk grupperet i perioder. Dine budgetter vil også blive grupperet i perioder. Hvilken periode vil du foretrække?', + 'pref_1D' => 'En dag', + 'pref_1W' => 'En uge', + 'pref_1M' => 'En måned', + 'pref_3M' => 'Tre måneder (kvartal)', + 'pref_6M' => 'Seks måneder', + 'pref_1Y' => 'Et år', + 'pref_last365' => 'Sidste år', + 'pref_last90' => 'Sidste 90 dage', + 'pref_last30' => 'Sidste 30 dage', + 'pref_last7' => 'Sidste 7 dage', + 'pref_YTD' => 'År til dato', + 'pref_QTD' => 'Kvartal til dato', + 'pref_MTD' => 'Måned til dato', + 'pref_languages' => 'Sprog', + 'pref_locale' => 'Landekode indstillinger', + 'pref_languages_help' => 'Firefly III understøtter flere sprog. Hvilket foretrækker du?', + 'pref_locale_help' => 'Firefly III giver dig mulighed for at indstille andre landestandard indstillinger, såsom hvordan valutaer, tal og datoer er formateret. Indstillingerne i denne liste understøttes muligvis ikke af dit system. Firefly III har ikke de korrekte datoindstillinger for hver landestandard; kontakt mig for forbedringer.', + 'pref_locale_no_demo' => 'Denne funktion virker ikke for demo-brugeren.', + 'pref_custom_fiscal_year' => 'Skatteår indstillinger', + 'pref_custom_fiscal_year_label' => 'Aktiveret', + 'pref_custom_fiscal_year_help' => 'For lande, der anvender anden regnskabsårsperiode end 1. januar til 31. december, kan du slå dette til og angive start-/slut- dato for regnskabsåret', + 'pref_fiscal_year_start_label' => 'Regnskabsårets start dato', + 'pref_two_factor_auth' => '2-trins verificering', + 'pref_two_factor_auth_help' => 'Når du aktiverer totrinsbekræftelse (også kendt som tofaktorgodkendelse), tilføjer du et ekstra lag af sikkerhed til din konto. Du logger ind med noget, du kender (din adgangskode) og noget du har (en bekræftelseskode). Bekræftelseskoder genereres af et program på din telefon, såsom Authy eller Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Aktivér totrinsbekræftelse', + 'pref_two_factor_auth_disabled' => '2-trins bekræftelseskode fjernet og deaktiveret', + 'pref_two_factor_auth_remove_it' => 'Glem ikke at fjerne kontoen fra din godkendelse app!', + 'pref_two_factor_auth_code' => 'Bekræftelseskode', + 'pref_two_factor_auth_code_help' => 'Scan QR-koden med et program på din telefon, såsom Authy eller Google Authenticator og angiv den genererede kode.', + 'pref_two_factor_auth_reset_code' => 'Nulstil bekræftelseskode', + 'pref_two_factor_auth_disable_2fa' => 'Deaktiver To-faktor-godkendelse', + '2fa_use_secret_instead' => 'Hvis du ikke kan scanne QR-koden, er du velkommen til at bruge \'koden\' i stedet: :secret.', + '2fa_backup_codes' => 'Gem disse backup koder for adgang, hvis du mister din enhed.', + '2fa_already_enabled' => '2-trins bekræftelse er allerede aktiveret.', + 'wrong_mfa_code' => 'Denne Multifaktor bekræftelseskode er ikke gyldig.', + 'pref_save_settings' => 'Gem indstillinger', + 'saved_preferences' => 'Indstillinger gemt!', + 'preferences_general' => 'Generelt', + 'preferences_frontpage' => 'Startskærm', + 'preferences_security' => 'Sikkerhed', + 'preferences_layout' => 'Layout', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Vis indskud på startskærmen', + 'pref_home_show_deposits_info' => 'Startskærmen viser allerede dine udgiftskonti. Skal det også vise dine indtægtskonti?', + 'pref_home_do_show_deposits' => 'Ja, vis dem', + 'successful_count' => 'heraf :count lykkedes', + 'list_page_size_title' => 'Sidestørrelse', + 'list_page_size_help' => 'Enhver vilkårlig liste (konti, transaktioner osv.) viser højst så mange per side.', + 'list_page_size_label' => 'Sidestørrelse', + 'between_dates' => '(:start og :end)', + 'pref_optional_fields_transaction' => 'Valgfrie felter for transaktioner', + 'pref_optional_fields_transaction_help' => 'Som standard er ikke alle felter aktiveret, når du opretter en ny transaktion (undgår rod). Nedenfor kan du aktivere disse felter, hvis du tror, de kunne være nyttige for dig. Selvfølgelig vil ethvert felt, der er deaktiveret, men allerede udfyldt, være synligt uanset konfigurationen.', + 'optional_tj_date_fields' => 'Dato felter', + 'optional_tj_other_fields' => 'Andre felter', + 'optional_tj_attachment_fields' => 'Bilagsfelter', + 'pref_optional_tj_interest_date' => 'Rentedato', + 'pref_optional_tj_book_date' => 'Bogføringsdato', + 'pref_optional_tj_process_date' => 'Behandlingsdato', + 'pref_optional_tj_due_date' => 'Forfaldsdato', + 'pref_optional_tj_payment_date' => 'Betalingsdato', + 'pref_optional_tj_invoice_date' => 'Fakturadato', + 'pref_optional_tj_internal_reference' => 'Intern reference', + 'pref_optional_tj_notes' => 'Bemærkninger', + 'pref_optional_tj_attachments' => 'Vedhæftninger', + 'pref_optional_tj_external_url' => 'Eksternt URL', + 'pref_optional_tj_location' => 'Placering', + 'pref_optional_tj_links' => 'Transaktionslinks', + 'optional_field_meta_dates' => 'Datoer', + 'optional_field_meta_business' => 'Forretning', + 'optional_field_attachments' => 'Vedhæftninger', + 'optional_field_meta_data' => 'Valgfrit metadata', + 'external_url' => 'Ekstern URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Alle dine andre sessioner er blevet logget af.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Slet ALLE dine budgetter', - 'delete_all_categories' => 'Slet alle dine kategorier', - 'delete_all_tags' => 'Slet ALLE dine tags', - 'delete_all_bills' => 'Slet alle dine regninger', - 'delete_all_piggy_banks' => 'Slet ALLE dine "sparegrise"', - 'delete_all_rules' => 'Slet ALLE dine regninger', - 'delete_all_recurring' => 'Slet ALLE dine periodiske transaktioner', - 'delete_all_object_groups' => 'Slet ALLE dine objektgrupper', - 'delete_all_accounts' => 'Slet ALLE dine konti', - 'delete_all_asset_accounts' => 'Slet ALLE dine aktiv konti', - 'delete_all_expense_accounts' => 'Slet ALLE dine udgiftskonti', - 'delete_all_revenue_accounts' => 'Slet ALLE dine indtægtskonti', - 'delete_all_liabilities' => 'Slet ALLE dine forpligtelser', - 'delete_all_transactions' => 'Slet ALLE dine transaktioner', - 'delete_all_withdrawals' => 'Slet ALLE dine udbetalinger', - 'delete_all_deposits' => 'Slet ALLE dine indskud', - 'delete_all_transfers' => 'Slet ALLE dine overførsler', - 'also_delete_transactions' => 'Sletning af konti vil også slette ALLE tilknyttede udbetalinger, indskud og transaktioner!', - 'deleted_all_budgets' => 'Alle budgetter er blevet slettet', - 'deleted_all_categories' => 'Alle kategorier er blevet slettet', - 'deleted_all_tags' => 'Alle tags er blevet slettet', - 'deleted_all_bills' => 'Alle regninger er blevet slettet', - 'deleted_all_piggy_banks' => 'Alle "sparegrise" er blevet slettet', - 'deleted_all_rules' => 'Alle regler og regelgrupper er blevet slettet', - 'deleted_all_object_groups' => 'Alle grupper er blevet slettet', - 'deleted_all_accounts' => 'Alle konti er blevet slettet', - 'deleted_all_asset_accounts' => 'Alle aktiv konti er blevet slettet', - 'deleted_all_expense_accounts' => 'Alle udgiftskonti er blevet slettet', - 'deleted_all_revenue_accounts' => 'Alle indtægtskonti er slettet', - 'deleted_all_liabilities' => 'Alle forpligtelser er blevet slettet', - 'deleted_all_transactions' => 'Alle transaktioner er blevet slettet', - 'deleted_all_withdrawals' => 'Alle udbetalinger er blevet slettet', - 'deleted_all_deposits' => 'Alle indskud er blevet slettet', - 'deleted_all_transfers' => 'Alle overførsler er blevet slettet', - 'deleted_all_recurring' => 'Alle periodiske transaktioner er blevet slettet', - 'change_your_password' => 'Skift din adgangskode', - 'delete_account' => 'Slet konto', - 'current_password' => 'Aktuel adgangskode', - 'new_password' => 'Nyt Password', - 'new_password_again' => 'Ny adgangskode (gentag)', - 'delete_your_account' => 'Slet din konto', - 'delete_your_account_help' => 'Sletning af din konto vil også slette alle konti, transaktioner, alt du måtte have gemt i Firefly III. Det vil være VÆK.', - 'delete_your_account_password' => 'Indtast din adgangskode for at fortsætte.', - 'password' => 'Adgangskode', - 'are_you_sure' => 'Er du sikker? Du kan ikke fortryde dette.', - 'delete_account_button' => 'SLET din konto', - 'invalid_current_password' => 'Ugyldig adgangskode!', - 'password_changed' => 'Adgangskoden ændret!', - 'should_change' => 'Idéen er at ændre din adgangskode.', - 'invalid_password' => 'Ugyldig adgangskode!', - 'what_is_pw_security' => 'Hvad er "bekræft adgangskodesikkerhed"?', - 'secure_pw_title' => 'Sådan vælger du en sikker adgangskode', - 'forgot_password_response' => 'Tak. Hvis en konto findes med denne e-mailadresse, vil du finde instruktioner i din indbakke.', - 'secure_pw_history' => 'Ikke en uge går, uden at du læser i nyhederne om at et websted lækker sine brugeres kodeord. Hackere og tyve bruger disse adgangskoder til at forsøge at stjæle dine private oplysninger. Den information er værdifuld.', - 'secure_pw_ff' => 'Bruger du den samme adgangskode over hele internettet? Hvis et websted lækker din adgangskode, har hackere adgang til alle dine data. Firefly III betror dig om at vælge en stærk og unik adgangskode til at beskytte dine regnskaber.', - 'secure_pw_check_box' => 'Firefly III kan kontrollere om den adgangskode du ønsker at bruge er lækket tidligere. Hvis dette er tilfældet, anbefaler Firefly III dig IKKE at anvende denne adgangskode.', - 'secure_pw_working_title' => 'Hvordan virker det?', - 'secure_pw_working' => 'Ved at afkrydse boksen, vil Firefly III sende de første fem tegn af SHA1-hashen af din adgangskode til hjemmesiden for Troy Hunt for at se, om det er på listen. Dette vil stoppe dig i at bruge usikre adgangskoder, som anbefales i den seneste NIST Special Publication om dette emne.', - 'secure_pw_should' => 'Skal jeg tjekke boksen?', - 'secure_pw_long_password' => 'Ja. Kontroller altid, at din adgangskode er sikker.', - 'command_line_token' => 'Kommandolinje-token', - 'explain_command_line_token' => 'Du har brug for dette token for at udføre kommandolinje kommandoer til eksempelvis eksport af data. Uden dene, vil denne følsomme kommandoer ikke virke. Del ikke dit kommandolinje-token. Ingen vil bede dig om dette token, ikke engang mig. Hvis du frygter, at du har mistet dette, eller hvis du er paranoid, kan du regenerere dette token ved hjælp af knappen.', - 'regenerate_command_line_token' => 'Regenerer kommandolinje-token', - 'token_regenerated' => 'En ny kommandolinje-token blev genereret', - 'change_your_email' => 'Skift din e-mail adresse', - 'email_verification' => 'En e-mail vil blive sendt til din gamle og nye e-mail adresse. Af sikkerhedshensyn vil du ikke kunne logge ind, før du bekræfter din nye e-mailadresse. Hvis du er usikker på, om din Firefly III-installation er i stand til at sende e-mail, skal du ikke bruge denne funktion. Hvis du er administrator, kan du teste dette i Administration.', - 'email_changed_logout' => 'Indtil du bekræfter din e-mailadresse, kan du ikke logge ind.', - 'login_with_new_email' => 'Du kan nu logge ind med din nye e-mail-adresse.', - 'login_with_old_email' => 'Du kan nu logge ind med din gamle e-mail-adresse igen.', - 'login_provider_local_only' => 'Denne handling er ikke tilgængelig ved godkendelse via ":login_provider".', - 'external_user_mgt_disabled' => 'Denne handling er ikke tilgængelig, når Firefly III ikke er ansvarlig for brugerhåndtering eller godkendelseshåndtering.', - 'external_auth_disabled' => 'Denne handling er ikke tilgængelig, når Firefly III ikke er ansvarlig for autentificering.', - 'delete_local_info_only' => 'Da Firefly III ikke er ansvarlig for brugerhåndtering eller godkendelseshåndtering, vil denne funktion kun slette lokale Firefly III-oplysninger.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Klienter', - 'profile_oauth_no_clients' => 'Du har ikke oprettet nogen OAuth klienter.', - '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_header' => 'Klienter', - 'profile_oauth_client_id' => 'Klient ID', - 'profile_oauth_client_name' => 'Navn', - 'profile_oauth_client_secret' => 'Hemmelighed', - 'profile_oauth_create_new_client' => 'Opret ny klient', - 'profile_oauth_create_client' => 'Opret klient', - 'profile_oauth_edit_client' => 'Rediger klient', - 'profile_oauth_name_help' => 'Noget dine brugere vil genkende og stole på.', - 'profile_oauth_redirect_url' => 'Omdirigerings-URL', - 'profile_oauth_redirect_url_help' => 'Din autoriserings callback URL.', - 'profile_authorized_apps' => 'Autoriserede programmer', - 'profile_authorized_clients' => 'Autoriserede klienter', - 'profile_scopes' => 'Anvendelsesområde', - 'profile_revoke' => 'Tilbagekald', - 'profile_oauth_client_secret_title' => 'Klient Hemmelighed', - 'profile_oauth_client_secret_expl' => 'Her er din nye klient hemmelighed. Dette er den eneste tid, den vil blive vist, så mist det ikke! Du kan nu bruge denne hemmelighed til at lave API-anmodninger.', - 'profile_personal_access_tokens' => 'Personlige Adgangstokens', - 'profile_personal_access_token' => 'Personligt Adgangstoken', - 'profile_oauth_confidential' => 'Fortroligt', - 'profile_oauth_confidential_help' => 'Kræver klienten at godkende med en hemmelighed. Fortrolige klienter kan holde legitimationsoplysninger på en sikker måde uden at udsætte dem for uautoriserede parter. Offentlige applikationer, såsom native desktop eller JavaScript SPA applikationer, er ikke i stand til at holde hemmeligheder sikkert.', - 'profile_personal_access_token_explanation' => 'Her er dit nye personlige adgangstoken. Dette er den eneste gang det vil blive vist, så mist det ikke! Du kan nu bruge dette token til at foretage API-anmodninger.', - 'profile_no_personal_access_token' => 'Du har ikke oprettet en personlig adgangstoken.', - 'profile_create_new_token' => 'Opret nyt token', - 'profile_create_token' => 'Opret token', - 'profile_create' => 'Opret', - 'profile_save_changes' => 'Gem ændringer', - 'profile_whoops' => 'Hovsa!', - 'profile_something_wrong' => 'Noget gik galt!', - 'profile_try_again' => 'Noget gik galt. Forsøg venligst igen.', - 'amounts' => 'Beløb', - 'multi_account_warning_unknown' => 'Afhængigt af hvilken type transaktion du opretter kan kilden og/eller destinationskontoen for efterfølgende opsplitninger tilsidesættes, uanset hvad der er defineret i den første opdeling af transaktionen.', - 'multi_account_warning_withdrawal' => 'Husk, at kildekontoen for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af tilbagetrækningen.', - 'multi_account_warning_deposit' => 'Husk, at destinationskontoen for efterfølgende opdelinger vil blive tilsidesat af hvad der er defineret i den første opsplitning af depositummet.', - 'multi_account_warning_transfer' => 'Husk på, at kilden + destination konto for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af overførslen.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Alle dine andre sessioner er blevet logget af.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Slet ALLE dine budgetter', + 'delete_all_categories' => 'Slet alle dine kategorier', + 'delete_all_tags' => 'Slet ALLE dine tags', + 'delete_all_bills' => 'Slet alle dine regninger', + 'delete_all_piggy_banks' => 'Slet ALLE dine "sparegrise"', + 'delete_all_rules' => 'Slet ALLE dine regninger', + 'delete_all_recurring' => 'Slet ALLE dine periodiske transaktioner', + 'delete_all_object_groups' => 'Slet ALLE dine objektgrupper', + 'delete_all_accounts' => 'Slet ALLE dine konti', + 'delete_all_asset_accounts' => 'Slet ALLE dine aktiv konti', + 'delete_all_expense_accounts' => 'Slet ALLE dine udgiftskonti', + 'delete_all_revenue_accounts' => 'Slet ALLE dine indtægtskonti', + 'delete_all_liabilities' => 'Slet ALLE dine forpligtelser', + 'delete_all_transactions' => 'Slet ALLE dine transaktioner', + 'delete_all_withdrawals' => 'Slet ALLE dine udbetalinger', + 'delete_all_deposits' => 'Slet ALLE dine indskud', + 'delete_all_transfers' => 'Slet ALLE dine overførsler', + 'also_delete_transactions' => 'Sletning af konti vil også slette ALLE tilknyttede udbetalinger, indskud og transaktioner!', + 'deleted_all_budgets' => 'Alle budgetter er blevet slettet', + 'deleted_all_categories' => 'Alle kategorier er blevet slettet', + 'deleted_all_tags' => 'Alle tags er blevet slettet', + 'deleted_all_bills' => 'Alle regninger er blevet slettet', + 'deleted_all_piggy_banks' => 'Alle "sparegrise" er blevet slettet', + 'deleted_all_rules' => 'Alle regler og regelgrupper er blevet slettet', + 'deleted_all_object_groups' => 'Alle grupper er blevet slettet', + 'deleted_all_accounts' => 'Alle konti er blevet slettet', + 'deleted_all_asset_accounts' => 'Alle aktiv konti er blevet slettet', + 'deleted_all_expense_accounts' => 'Alle udgiftskonti er blevet slettet', + 'deleted_all_revenue_accounts' => 'Alle indtægtskonti er slettet', + 'deleted_all_liabilities' => 'Alle forpligtelser er blevet slettet', + 'deleted_all_transactions' => 'Alle transaktioner er blevet slettet', + 'deleted_all_withdrawals' => 'Alle udbetalinger er blevet slettet', + 'deleted_all_deposits' => 'Alle indskud er blevet slettet', + 'deleted_all_transfers' => 'Alle overførsler er blevet slettet', + 'deleted_all_recurring' => 'Alle periodiske transaktioner er blevet slettet', + 'change_your_password' => 'Skift din adgangskode', + 'delete_account' => 'Slet konto', + 'current_password' => 'Aktuel adgangskode', + 'new_password' => 'Nyt Password', + 'new_password_again' => 'Ny adgangskode (gentag)', + 'delete_your_account' => 'Slet din konto', + 'delete_your_account_help' => 'Sletning af din konto vil også slette alle konti, transaktioner, alt du måtte have gemt i Firefly III. Det vil være VÆK.', + 'delete_your_account_password' => 'Indtast din adgangskode for at fortsætte.', + 'password' => 'Adgangskode', + 'are_you_sure' => 'Er du sikker? Du kan ikke fortryde dette.', + 'delete_account_button' => 'SLET din konto', + 'invalid_current_password' => 'Ugyldig adgangskode!', + 'password_changed' => 'Adgangskoden ændret!', + 'should_change' => 'Idéen er at ændre din adgangskode.', + 'invalid_password' => 'Ugyldig adgangskode!', + 'what_is_pw_security' => 'Hvad er "bekræft adgangskodesikkerhed"?', + 'secure_pw_title' => 'Sådan vælger du en sikker adgangskode', + 'forgot_password_response' => 'Tak. Hvis en konto findes med denne e-mailadresse, vil du finde instruktioner i din indbakke.', + 'secure_pw_history' => 'Ikke en uge går, uden at du læser i nyhederne om at et websted lækker sine brugeres kodeord. Hackere og tyve bruger disse adgangskoder til at forsøge at stjæle dine private oplysninger. Den information er værdifuld.', + 'secure_pw_ff' => 'Bruger du den samme adgangskode over hele internettet? Hvis et websted lækker din adgangskode, har hackere adgang til alle dine data. Firefly III betror dig om at vælge en stærk og unik adgangskode til at beskytte dine regnskaber.', + 'secure_pw_check_box' => 'Firefly III kan kontrollere om den adgangskode du ønsker at bruge er lækket tidligere. Hvis dette er tilfældet, anbefaler Firefly III dig IKKE at anvende denne adgangskode.', + 'secure_pw_working_title' => 'Hvordan virker det?', + 'secure_pw_working' => 'Ved at afkrydse boksen, vil Firefly III sende de første fem tegn af SHA1-hashen af din adgangskode til hjemmesiden for Troy Hunt for at se, om det er på listen. Dette vil stoppe dig i at bruge usikre adgangskoder, som anbefales i den seneste NIST Special Publication om dette emne.', + 'secure_pw_should' => 'Skal jeg tjekke boksen?', + 'secure_pw_long_password' => 'Ja. Kontroller altid, at din adgangskode er sikker.', + 'command_line_token' => 'Kommandolinje-token', + 'explain_command_line_token' => 'Du har brug for dette token for at udføre kommandolinje kommandoer til eksempelvis eksport af data. Uden dene, vil denne følsomme kommandoer ikke virke. Del ikke dit kommandolinje-token. Ingen vil bede dig om dette token, ikke engang mig. Hvis du frygter, at du har mistet dette, eller hvis du er paranoid, kan du regenerere dette token ved hjælp af knappen.', + 'regenerate_command_line_token' => 'Regenerer kommandolinje-token', + 'token_regenerated' => 'En ny kommandolinje-token blev genereret', + 'change_your_email' => 'Skift din e-mail adresse', + 'email_verification' => 'En e-mail vil blive sendt til din gamle og nye e-mail adresse. Af sikkerhedshensyn vil du ikke kunne logge ind, før du bekræfter din nye e-mailadresse. Hvis du er usikker på, om din Firefly III-installation er i stand til at sende e-mail, skal du ikke bruge denne funktion. Hvis du er administrator, kan du teste dette i Administration.', + 'email_changed_logout' => 'Indtil du bekræfter din e-mailadresse, kan du ikke logge ind.', + 'login_with_new_email' => 'Du kan nu logge ind med din nye e-mail-adresse.', + 'login_with_old_email' => 'Du kan nu logge ind med din gamle e-mail-adresse igen.', + 'login_provider_local_only' => 'Denne handling er ikke tilgængelig ved godkendelse via ":login_provider".', + 'external_user_mgt_disabled' => 'Denne handling er ikke tilgængelig, når Firefly III ikke er ansvarlig for brugerhåndtering eller godkendelseshåndtering.', + 'external_auth_disabled' => 'Denne handling er ikke tilgængelig, når Firefly III ikke er ansvarlig for autentificering.', + 'delete_local_info_only' => 'Da Firefly III ikke er ansvarlig for brugerhåndtering eller godkendelseshåndtering, vil denne funktion kun slette lokale Firefly III-oplysninger.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Klienter', + 'profile_oauth_no_clients' => 'Du har ikke oprettet nogen OAuth klienter.', + '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_header' => 'Klienter', + 'profile_oauth_client_id' => 'Klient ID', + 'profile_oauth_client_name' => 'Navn', + 'profile_oauth_client_secret' => 'Hemmelighed', + 'profile_oauth_create_new_client' => 'Opret ny klient', + 'profile_oauth_create_client' => 'Opret klient', + 'profile_oauth_edit_client' => 'Rediger klient', + 'profile_oauth_name_help' => 'Noget dine brugere vil genkende og stole på.', + 'profile_oauth_redirect_url' => 'Omdirigerings-URL', + 'profile_oauth_redirect_url_help' => 'Din autoriserings callback URL.', + 'profile_authorized_apps' => 'Autoriserede programmer', + 'profile_authorized_clients' => 'Autoriserede klienter', + 'profile_scopes' => 'Anvendelsesområde', + 'profile_revoke' => 'Tilbagekald', + 'profile_oauth_client_secret_title' => 'Klient Hemmelighed', + 'profile_oauth_client_secret_expl' => 'Her er din nye klient hemmelighed. Dette er den eneste tid, den vil blive vist, så mist det ikke! Du kan nu bruge denne hemmelighed til at lave API-anmodninger.', + 'profile_personal_access_tokens' => 'Personlige Adgangstokens', + 'profile_personal_access_token' => 'Personligt Adgangstoken', + 'profile_oauth_confidential' => 'Fortroligt', + 'profile_oauth_confidential_help' => 'Kræver klienten at godkende med en hemmelighed. Fortrolige klienter kan holde legitimationsoplysninger på en sikker måde uden at udsætte dem for uautoriserede parter. Offentlige applikationer, såsom native desktop eller JavaScript SPA applikationer, er ikke i stand til at holde hemmeligheder sikkert.', + 'profile_personal_access_token_explanation' => 'Her er dit nye personlige adgangstoken. Dette er den eneste gang det vil blive vist, så mist det ikke! Du kan nu bruge dette token til at foretage API-anmodninger.', + 'profile_no_personal_access_token' => 'Du har ikke oprettet en personlig adgangstoken.', + 'profile_create_new_token' => 'Opret nyt token', + 'profile_create_token' => 'Opret token', + 'profile_create' => 'Opret', + 'profile_save_changes' => 'Gem ændringer', + 'profile_whoops' => 'Hovsa!', + 'profile_something_wrong' => 'Noget gik galt!', + 'profile_try_again' => 'Noget gik galt. Forsøg venligst igen.', + 'amounts' => 'Beløb', + 'multi_account_warning_unknown' => 'Afhængigt af hvilken type transaktion du opretter kan kilden og/eller destinationskontoen for efterfølgende opsplitninger tilsidesættes, uanset hvad der er defineret i den første opdeling af transaktionen.', + 'multi_account_warning_withdrawal' => 'Husk, at kildekontoen for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af tilbagetrækningen.', + 'multi_account_warning_deposit' => 'Husk, at destinationskontoen for efterfølgende opdelinger vil blive tilsidesat af hvad der er defineret i den første opsplitning af depositummet.', + 'multi_account_warning_transfer' => 'Husk på, at kilden + destination konto for efterfølgende opdelinger vil blive overstyret af hvad der er defineret i den første opdeling af overførslen.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Eksporter data fra Firefly III', - 'export_data_menu' => 'Eksporter data', - 'export_data_bc' => 'Eksporter data fra Firefly III', - 'export_data_main_title' => 'Eksporter data fra Firefly III', - 'export_data_expl' => 'Dette link giver dig mulighed for at eksportere alle transaktioner + metadata fra Firefly III. Se hjælp (øverste højre (?)-ikon) for mere information om processen.', - 'export_data_all_transactions' => 'Eksporter alle transaktioner', - 'export_data_advanced_expl' => 'Hvis du har brug for en mere avanceret eller specifik dataeksport, kan du under hjælp læse, hvordan du bruger konsolkommandoen php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Eksporter data fra Firefly III', + 'export_data_menu' => 'Eksporter data', + 'export_data_bc' => 'Eksporter data fra Firefly III', + 'export_data_main_title' => 'Eksporter data fra Firefly III', + 'export_data_expl' => 'Dette link giver dig mulighed for at eksportere alle transaktioner + metadata fra Firefly III. Se hjælp (øverste højre (?)-ikon) for mere information om processen.', + 'export_data_all_transactions' => 'Eksporter alle transaktioner', + 'export_data_advanced_expl' => 'Hvis du har brug for en mere avanceret eller specifik dataeksport, kan du under hjælp læse, hvordan du bruger konsolkommandoen php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Én vedhæftet fil|:count vedhæftede filer', - 'attachments' => 'Vedhæftninger', - 'edit_attachment' => 'Rediger vedhæftet fil ":name"', - 'update_attachment' => 'Opdater vedhæftning', - 'delete_attachment' => 'Slet vedhæftet fil ":name"', - 'attachment_deleted' => 'Slettede vedhæftning ":name"', - 'liabilities_deleted' => 'Slettet gæld ":name"', - 'attachment_updated' => 'Opdateret vedhæftning ":name"', - 'upload_max_file_size' => 'Maksimal filstørrelse: :size', - 'list_all_attachments' => 'Liste over alle vedhæftede filer', + 'nr_of_attachments' => 'Én vedhæftet fil|:count vedhæftede filer', + 'attachments' => 'Vedhæftninger', + 'edit_attachment' => 'Rediger vedhæftet fil ":name"', + 'update_attachment' => 'Opdater vedhæftning', + 'delete_attachment' => 'Slet vedhæftet fil ":name"', + 'attachment_deleted' => 'Slettede vedhæftning ":name"', + 'liabilities_deleted' => 'Slettet gæld ":name"', + 'attachment_updated' => 'Opdateret vedhæftning ":name"', + 'upload_max_file_size' => 'Maksimal filstørrelse: :size', + 'list_all_attachments' => 'Liste over alle vedhæftede filer', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Udgifter', - 'title_withdrawal' => 'Udgifter', - 'title_revenue' => 'Indtægter / indkomst', - 'title_deposit' => 'Indtægter / indkomster', - 'title_transfer' => 'Overførsler', - 'title_transfers' => 'Overførsler', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Udgifter', + 'title_withdrawal' => 'Udgifter', + 'title_revenue' => 'Indtægter / indkomst', + 'title_deposit' => 'Indtægter / indkomster', + 'title_transfer' => 'Overførsler', + 'title_transfers' => 'Overførsler', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Denne transaktion er allerede en udbetaling', - 'convert_is_already_type_Deposit' => 'Denne transaktion er allerede en indbetaling', - 'convert_is_already_type_Transfer' => 'Denne transaktion er allerede en overførsel', - 'convert_to_Withdrawal' => 'Konverter ":description" til en udbetaling', - 'convert_to_Deposit' => 'Konverter ":description" til en indbetaling', - 'convert_to_Transfer' => 'Konverter ":description" til en overførsel', - 'convert_options_WithdrawalDeposit' => 'Konverter en udbetaling til en indbetaling', - 'convert_options_WithdrawalTransfer' => 'Konverter en udbetaling til en overførsel', - 'convert_options_DepositTransfer' => 'Konverter et indbetaling til en overførsel', - 'convert_options_DepositWithdrawal' => 'Konverter et indbetaling til en udbetaling', - 'convert_options_TransferWithdrawal' => 'Konverter en overførsel til en hævning', - 'convert_options_TransferDeposit' => 'Konverter en overførsel til en indbetaling', - 'convert_Withdrawal_to_deposit' => 'Konverter denne hævning til en indbetaling', - 'convert_Withdrawal_to_transfer' => 'Konverter denne udbetaling til en overførsel', - 'convert_Deposit_to_withdrawal' => 'Konverter dette indskud til en udbetaling', - 'convert_Deposit_to_transfer' => 'Konverter dette indskud til en overførsel', - 'convert_Transfer_to_deposit' => 'Konverter denne overførsel til en indbetaling', - 'convert_Transfer_to_withdrawal' => 'Konverter denne overførsel til en udbetaling', - 'convert_please_set_revenue_source' => 'Vælg venligst den indtægtskonto, hvor pengene kommer fra.', - 'convert_please_set_asset_destination' => 'Vælg venligst den aktivkonto, hvor pengene skal overføres til.', - 'convert_please_set_expense_destination' => 'Vælg venligst den udgiftskonto, hvor pengene skal flyttes til.', - 'convert_please_set_asset_source' => 'Vælg venligst aktivkontoen, hvor pengene kommer fra.', - 'convert_expl_w_d' => 'Ved konvertering fra en udbetaling til et indskud, vil pengene blive deponeret på den viste destinationskonto, i stedet for at blive trukket tilbage fra den. Ved konvertering fra en udbetaling til et indskud, vil pengene blive deponeret på de viste destinationskonti i stedet for at blive trukket tilbage fra dem.', - 'convert_expl_w_t' => 'Ved omregning af en udbetaling til en overførsel pengene vil blive overført væk fra kildekontoen til andre aktiver eller passiver i stedet for at blive brugt på den oprindelige omkostningskonto. Ved omregning af en udbetaling til en overførsel pengene vil blive overført væk fra kildekonti til andre aktiv- eller passivkonti i stedet for at blive brugt på de oprindelige omkostningskonti.', - 'convert_expl_d_w' => 'Ved konvertering af en indbetaling til en udbetaling, vil pengene blive trukket tilbage fra den viste kilde konto, i stedet for at blive deponeret i den. Ved konvertering af et depositum til en udbetaling, vil pengene blive trukket tilbage fra de viste kildekonti i stedet for at blive deponeret i dem.', - 'convert_expl_d_t' => 'Når du konverterer en indbetaling til en overførsel, pengene vil blive deponeret på den anførte destinationskonto fra en af dine aktiver eller passiver konto. Når du konverterer en indbetaling til en overførsel, pengene vil blive deponeret på de anførte destinationskonti fra et af dine aktiver eller passivkonti.', - 'convert_expl_t_w' => 'Når du konverterer en overførsel til en udbetaling, vil pengene blive brugt på den destinationskonto, du angiver her, i stedet for at blive overført væk. Når du konverterer en overførsel til en udbetaling, vil pengene blive brugt på de destinationskonti, du angiver her, i stedet for at blive overført væk.', - 'convert_expl_t_d' => 'Når du konverterer en overførsel til et indskud, pengene vil blive deponeret på den destinationskonto, du ser her, i stedet for at blive overført til den. Når du konverterer en overførsel til et indskud, pengene vil blive deponeret på de destinationskonti, du ser her, i stedet for at blive overført til dem.', - 'convert_select_sources' => 'For at fuldføre konverteringen, skal du indstille den nye kilde konto nedenfor.● For at fuldføre konverteringen, skal du indstille den nye kilde konti nedenfor.', - 'convert_select_destinations' => 'For at fuldføre konverteringen, skal du vælge den nye destination konto nedenfor.● For at fuldføre konverteringen, skal du vælge den nye destination konti nedenfor.', - 'converted_to_Withdrawal' => 'Transaktionen er blevet konverteret til en udbetaling', - 'converted_to_Deposit' => 'Transaktionen er blevet konverteret til et indskud', - 'converted_to_Transfer' => 'Transaktionen er blevet konverteret til en overførsel', - 'invalid_convert_selection' => 'Den valgte konto er allerede brugt i denne transaktion eller eksisterer ikke.', - 'source_or_dest_invalid' => 'Kan ikke finde de korrekte transaktionsdetaljer. Konvertering er ikke muligt.', - 'convert_to_withdrawal' => 'Konverter til en udbetaling', - 'convert_to_deposit' => 'Konverter til en indbetaling', - 'convert_to_transfer' => 'Konvertér til en overførsel', + 'convert_is_already_type_Withdrawal' => 'Denne transaktion er allerede en udbetaling', + 'convert_is_already_type_Deposit' => 'Denne transaktion er allerede en indbetaling', + 'convert_is_already_type_Transfer' => 'Denne transaktion er allerede en overførsel', + 'convert_to_Withdrawal' => 'Konverter ":description" til en udbetaling', + 'convert_to_Deposit' => 'Konverter ":description" til en indbetaling', + 'convert_to_Transfer' => 'Konverter ":description" til en overførsel', + 'convert_options_WithdrawalDeposit' => 'Konverter en udbetaling til en indbetaling', + 'convert_options_WithdrawalTransfer' => 'Konverter en udbetaling til en overførsel', + 'convert_options_DepositTransfer' => 'Konverter et indbetaling til en overførsel', + 'convert_options_DepositWithdrawal' => 'Konverter et indbetaling til en udbetaling', + 'convert_options_TransferWithdrawal' => 'Konverter en overførsel til en hævning', + 'convert_options_TransferDeposit' => 'Konverter en overførsel til en indbetaling', + 'convert_Withdrawal_to_deposit' => 'Konverter denne hævning til en indbetaling', + 'convert_Withdrawal_to_transfer' => 'Konverter denne udbetaling til en overførsel', + 'convert_Deposit_to_withdrawal' => 'Konverter dette indskud til en udbetaling', + 'convert_Deposit_to_transfer' => 'Konverter dette indskud til en overførsel', + 'convert_Transfer_to_deposit' => 'Konverter denne overførsel til en indbetaling', + 'convert_Transfer_to_withdrawal' => 'Konverter denne overførsel til en udbetaling', + 'convert_please_set_revenue_source' => 'Vælg venligst den indtægtskonto, hvor pengene kommer fra.', + 'convert_please_set_asset_destination' => 'Vælg venligst den aktivkonto, hvor pengene skal overføres til.', + 'convert_please_set_expense_destination' => 'Vælg venligst den udgiftskonto, hvor pengene skal flyttes til.', + 'convert_please_set_asset_source' => 'Vælg venligst aktivkontoen, hvor pengene kommer fra.', + 'convert_expl_w_d' => 'Ved konvertering fra en udbetaling til et indskud, vil pengene blive deponeret på den viste destinationskonto, i stedet for at blive trukket tilbage fra den. Ved konvertering fra en udbetaling til et indskud, vil pengene blive deponeret på de viste destinationskonti i stedet for at blive trukket tilbage fra dem.', + 'convert_expl_w_t' => 'Ved omregning af en udbetaling til en overførsel pengene vil blive overført væk fra kildekontoen til andre aktiver eller passiver i stedet for at blive brugt på den oprindelige omkostningskonto. Ved omregning af en udbetaling til en overførsel pengene vil blive overført væk fra kildekonti til andre aktiv- eller passivkonti i stedet for at blive brugt på de oprindelige omkostningskonti.', + 'convert_expl_d_w' => 'Ved konvertering af en indbetaling til en udbetaling, vil pengene blive trukket tilbage fra den viste kilde konto, i stedet for at blive deponeret i den. Ved konvertering af et depositum til en udbetaling, vil pengene blive trukket tilbage fra de viste kildekonti i stedet for at blive deponeret i dem.', + 'convert_expl_d_t' => 'Når du konverterer en indbetaling til en overførsel, pengene vil blive deponeret på den anførte destinationskonto fra en af dine aktiver eller passiver konto. Når du konverterer en indbetaling til en overførsel, pengene vil blive deponeret på de anførte destinationskonti fra et af dine aktiver eller passivkonti.', + 'convert_expl_t_w' => 'Når du konverterer en overførsel til en udbetaling, vil pengene blive brugt på den destinationskonto, du angiver her, i stedet for at blive overført væk. Når du konverterer en overførsel til en udbetaling, vil pengene blive brugt på de destinationskonti, du angiver her, i stedet for at blive overført væk.', + 'convert_expl_t_d' => 'Når du konverterer en overførsel til et indskud, pengene vil blive deponeret på den destinationskonto, du ser her, i stedet for at blive overført til den. Når du konverterer en overførsel til et indskud, pengene vil blive deponeret på de destinationskonti, du ser her, i stedet for at blive overført til dem.', + 'convert_select_sources' => 'For at fuldføre konverteringen, skal du indstille den nye kilde konto nedenfor.● For at fuldføre konverteringen, skal du indstille den nye kilde konti nedenfor.', + 'convert_select_destinations' => 'For at fuldføre konverteringen, skal du vælge den nye destination konto nedenfor.● For at fuldføre konverteringen, skal du vælge den nye destination konti nedenfor.', + 'converted_to_Withdrawal' => 'Transaktionen er blevet konverteret til en udbetaling', + 'converted_to_Deposit' => 'Transaktionen er blevet konverteret til et indskud', + 'converted_to_Transfer' => 'Transaktionen er blevet konverteret til en overførsel', + 'invalid_convert_selection' => 'Den valgte konto er allerede brugt i denne transaktion eller eksisterer ikke.', + 'source_or_dest_invalid' => 'Kan ikke finde de korrekte transaktionsdetaljer. Konvertering er ikke muligt.', + 'convert_to_withdrawal' => 'Konverter til en udbetaling', + 'convert_to_deposit' => 'Konverter til en indbetaling', + 'convert_to_transfer' => 'Konvertér til en overførsel', // create new stuff: - 'create_new_withdrawal' => 'Opret ny udbetaling', - 'create_new_deposit' => 'Opret ny indbetaling', - 'create_new_transfer' => 'Opret ny overførsel', - 'create_new_asset' => 'Opret ny aktivkonto', - 'create_new_liabilities' => 'Opret ny passiv', - 'create_new_expense' => 'Opret ny omkostningskonto', - 'create_new_revenue' => 'Opret ny indtægtskonto', - 'create_new_piggy_bank' => 'Opret ny sparegris', - 'create_new_bill' => 'Opret ny regning', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Opret ny udbetaling', + 'create_new_deposit' => 'Opret ny indbetaling', + 'create_new_transfer' => 'Opret ny overførsel', + 'create_new_asset' => 'Opret ny aktivkonto', + 'create_new_liabilities' => 'Opret ny passiv', + 'create_new_expense' => 'Opret ny omkostningskonto', + 'create_new_revenue' => 'Opret ny indtægtskonto', + 'create_new_piggy_bank' => 'Opret ny sparegris', + 'create_new_bill' => 'Opret ny regning', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Opret en ny valuta', - 'store_currency' => 'Gem ny valuta', - 'update_currency' => 'Opdater valuta', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Kan ikke slette :name , fordi den stadig er i brug.', - 'cannot_delete_fallback_currency' => ':name er systemet fallback valuta og kan ikke slettes.', - 'cannot_disable_currency_journals' => 'Kan ikke deaktivere :name , da transaktionerne stadig bruger den.', - 'cannot_disable_currency_last_left' => 'Kan ikke deaktivere :name , fordi det er den sidste aktiverede valuta.', - 'cannot_disable_currency_account_meta' => 'Kan ikke deaktivere :name , fordi den bruges på aktivkonti.', - 'cannot_disable_currency_bills' => 'Kan ikke deaktivere :name fordi det bruges i regninger.', - 'cannot_disable_currency_recurring' => 'Kan ikke deaktivere :name fordi det bruges i tilbagevendende transaktioner.', - 'cannot_disable_currency_available_budgets' => 'Kan ikke deaktivere :name fordi det bruges i tilgængelige budgetter.', - 'cannot_disable_currency_budget_limits' => 'Kan ikke deaktivere :name fordi det bruges i budgetgrænser.', - 'cannot_disable_currency_current_default' => 'Kan ikke deaktivere :name fordi det er systemets standardvaluta.', - 'cannot_disable_currency_system_fallback' => 'Kan ikke deaktivere :name fordi det er systemets standardvaluta.', - 'disable_EUR_side_effects' => 'Euroen er systemets nødnødvaluta. Deaktivering af systemet kan have utilsigtede bivirkninger og kan annullere din garanti.', - 'deleted_currency' => 'Valuta :name slettet', - 'created_currency' => 'Valuta :name oprettet', - 'could_not_store_currency' => 'Kunne ikke gemme den nye valuta.', - 'updated_currency' => 'Valuta :name opdateret', - 'ask_site_owner' => 'Bed venligst :owner om at tilføje, fjerne eller redigere valutaer.', - 'currencies_intro' => 'Firefly III understøtter forskellige valutaer, som du kan indstille og aktivere her.', - 'make_default_currency' => 'Gør til standard', - 'default_currency' => 'standard', - 'currency_is_disabled' => 'Deaktiveret', - 'enable_currency' => 'Aktiver', - 'disable_currency' => 'Deaktivér', - 'currencies_default_disabled' => 'De fleste af disse valutaer er som standard deaktiveret. For at bruge dem, skal du først aktivere dem.', - 'currency_is_now_enabled' => 'Valuta ":name" er blevet aktiveret', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Valuta ":name" er blevet deaktiveret', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Opret en ny valuta', + 'store_currency' => 'Gem ny valuta', + 'update_currency' => 'Opdater valuta', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Kan ikke slette :name , fordi den stadig er i brug.', + 'cannot_delete_fallback_currency' => ':name er systemet fallback valuta og kan ikke slettes.', + 'cannot_disable_currency_journals' => 'Kan ikke deaktivere :name , da transaktionerne stadig bruger den.', + 'cannot_disable_currency_last_left' => 'Kan ikke deaktivere :name , fordi det er den sidste aktiverede valuta.', + 'cannot_disable_currency_account_meta' => 'Kan ikke deaktivere :name , fordi den bruges på aktivkonti.', + 'cannot_disable_currency_bills' => 'Kan ikke deaktivere :name fordi det bruges i regninger.', + 'cannot_disable_currency_recurring' => 'Kan ikke deaktivere :name fordi det bruges i tilbagevendende transaktioner.', + 'cannot_disable_currency_available_budgets' => 'Kan ikke deaktivere :name fordi det bruges i tilgængelige budgetter.', + 'cannot_disable_currency_budget_limits' => 'Kan ikke deaktivere :name fordi det bruges i budgetgrænser.', + 'cannot_disable_currency_current_default' => 'Kan ikke deaktivere :name fordi det er systemets standardvaluta.', + 'cannot_disable_currency_system_fallback' => 'Kan ikke deaktivere :name fordi det er systemets standardvaluta.', + 'disable_EUR_side_effects' => 'Euroen er systemets nødnødvaluta. Deaktivering af systemet kan have utilsigtede bivirkninger og kan annullere din garanti.', + 'deleted_currency' => 'Valuta :name slettet', + 'created_currency' => 'Valuta :name oprettet', + 'could_not_store_currency' => 'Kunne ikke gemme den nye valuta.', + 'updated_currency' => 'Valuta :name opdateret', + 'ask_site_owner' => 'Bed venligst :owner om at tilføje, fjerne eller redigere valutaer.', + 'currencies_intro' => 'Firefly III understøtter forskellige valutaer, som du kan indstille og aktivere her.', + 'make_default_currency' => 'Gør til standard', + 'default_currency' => 'standard', + 'currency_is_disabled' => 'Deaktiveret', + 'enable_currency' => 'Aktiver', + 'disable_currency' => 'Deaktivér', + 'currencies_default_disabled' => 'De fleste af disse valutaer er som standard deaktiveret. For at bruge dem, skal du først aktivere dem.', + 'currency_is_now_enabled' => 'Valuta ":name" er blevet aktiveret', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Valuta ":name" er blevet deaktiveret', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Obligatoriske felter', - 'optionalFields' => 'Valgfrie felter', - 'options' => 'Indstillinger', + 'mandatoryFields' => 'Obligatoriske felter', + 'optionalFields' => 'Valgfrie felter', + 'options' => 'Indstillinger', // budgets: - 'daily_budgets' => 'Daglige budgetter', - 'weekly_budgets' => 'Ugentlige budgetter', - 'monthly_budgets' => 'Månedlige budgetter', - 'quarterly_budgets' => 'Kvartalsvise budgetter', - 'half_year_budgets' => 'Halvårlige budgetter', - 'yearly_budgets' => 'Årlige budgetter', - 'other_budgets' => 'Brugerdefinerede tidsbegrænsede budgetter', - 'budget_limit_not_in_range' => 'Dette beløb gælder fra :start til :end:', - 'total_available_budget' => 'Samlet disponibelt budget (mellem :start og :end)', - 'total_available_budget_in_currency' => 'Samlet disponibelt budget i :currency', - 'see_below' => 'se nedenfor', - 'create_new_budget' => 'Opret et nyt budget', - 'store_new_budget' => 'Gem nyt budget', - 'stored_new_budget' => 'Gemt nyt budget ":name"', - 'available_between' => 'Tilgængelig mellem :start og :end', - 'transactionsWithoutBudget' => 'Udgifter uden budget', - 'transactions_no_budget' => 'Udgifter uden budget mellem :start og :end', - 'spent_between' => 'Allerede brugt mellem :start og :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Angiv disponibelt beløb', - 'update_available_amount' => 'Opdater disponibelt beløb', - 'ab_basic_modal_explain' => 'Brug denne formular til at angive, hvor meget du forventer at kunne budgettere (i alt, i :currency) i den angivne periode.', - 'createBudget' => 'Nyt budget', - 'invalid_currency' => 'Dette er en ugyldig valuta', - 'invalid_amount' => 'Indtast et beløb', - 'set_ab' => 'Det disponible budgetbeløb er fastsat', - 'updated_ab' => 'Det disponible budgetbeløb er blevet opdateret', - 'deleted_ab' => 'Det disponible budgetbeløb er blevet slettet', - 'deleted_bl' => 'Det budgetterede beløb er blevet fjernet', - 'alt_currency_ab_create' => 'Sæt det tilgængelige budget i en anden valuta', - 'bl_create_btn' => 'Sæt budget i en anden valuta', - 'inactiveBudgets' => 'Inaktive budgetter', - 'without_budget_between' => 'Transaktioner uden et budget mellem :start og :end', - 'delete_budget' => 'Slet budget ":name"', - 'deleted_budget' => 'Slettet budget ":name"', - 'edit_budget' => 'Rediger budget ":name"', - 'updated_budget' => 'Opdateret budget ":name"', - 'update_amount' => 'Opdater beløb', - 'update_budget' => 'Opdater budget', - 'update_budget_amount_range' => 'Opdatering (forventet) disponibelt beløb mellem :start og :end', - 'set_budget_limit_title' => 'Sæt budgetteret beløb for budget :budget mellem :start og :end', - 'set_budget_limit' => 'Sæt budgetteret beløb', - 'budget_period_navigator' => 'Periode navigator', - 'info_on_available_amount' => 'Hvad har jeg til rådighed?', - 'available_amount_indication' => 'Brug disse beløb til at få en angivelse af, hvad dit samlede budget kan være.', - 'suggested' => 'Foreslået', - 'average_between' => 'Gennemsnit mellem :start og :end', - 'transferred_in' => 'Overført (ind)', - 'transferred_away' => 'Overført (ud)', - 'auto_budget_none' => 'Ingen auto-budget', - 'auto_budget_reset' => 'Angiv et fast beløb for hver periode', - 'auto_budget_rollover' => 'Tilføj et beløb hver periode', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daglig', - 'auto_budget_period_weekly' => 'Ugentlig', - 'auto_budget_period_monthly' => 'Månedlig', - 'auto_budget_period_quarterly' => 'Kvartalsvis', - 'auto_budget_period_half_year' => 'Hvert halve år', - 'auto_budget_period_yearly' => 'Årlig', - 'auto_budget_help' => 'Du kan læse mere om denne funktion i hjælpen. Klik på ikonet øverst til højre (?)', - 'auto_budget_reset_icon' => 'Dette budget vil blive fastsat periodisk', - 'auto_budget_rollover_icon' => 'Budgettet vil stige med jævne mellemrum', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Fjern budgetteret beløb i :currency', + 'daily_budgets' => 'Daglige budgetter', + 'weekly_budgets' => 'Ugentlige budgetter', + 'monthly_budgets' => 'Månedlige budgetter', + 'quarterly_budgets' => 'Kvartalsvise budgetter', + 'half_year_budgets' => 'Halvårlige budgetter', + 'yearly_budgets' => 'Årlige budgetter', + 'other_budgets' => 'Brugerdefinerede tidsbegrænsede budgetter', + 'budget_limit_not_in_range' => 'Dette beløb gælder fra :start til :end:', + 'total_available_budget' => 'Samlet disponibelt budget (mellem :start og :end)', + 'total_available_budget_in_currency' => 'Samlet disponibelt budget i :currency', + 'see_below' => 'se nedenfor', + 'create_new_budget' => 'Opret et nyt budget', + 'store_new_budget' => 'Gem nyt budget', + 'stored_new_budget' => 'Gemt nyt budget ":name"', + 'available_between' => 'Tilgængelig mellem :start og :end', + 'transactionsWithoutBudget' => 'Udgifter uden budget', + 'transactions_no_budget' => 'Udgifter uden budget mellem :start og :end', + 'spent_between' => 'Allerede brugt mellem :start og :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Angiv disponibelt beløb', + 'update_available_amount' => 'Opdater disponibelt beløb', + 'ab_basic_modal_explain' => 'Brug denne formular til at angive, hvor meget du forventer at kunne budgettere (i alt, i :currency) i den angivne periode.', + 'createBudget' => 'Nyt budget', + 'invalid_currency' => 'Dette er en ugyldig valuta', + 'invalid_amount' => 'Indtast et beløb', + 'set_ab' => 'Det disponible budgetbeløb er fastsat', + 'updated_ab' => 'Det disponible budgetbeløb er blevet opdateret', + 'deleted_ab' => 'Det disponible budgetbeløb er blevet slettet', + 'deleted_bl' => 'Det budgetterede beløb er blevet fjernet', + 'alt_currency_ab_create' => 'Sæt det tilgængelige budget i en anden valuta', + 'bl_create_btn' => 'Sæt budget i en anden valuta', + 'inactiveBudgets' => 'Inaktive budgetter', + 'without_budget_between' => 'Transaktioner uden et budget mellem :start og :end', + 'delete_budget' => 'Slet budget ":name"', + 'deleted_budget' => 'Slettet budget ":name"', + 'edit_budget' => 'Rediger budget ":name"', + 'updated_budget' => 'Opdateret budget ":name"', + 'update_amount' => 'Opdater beløb', + 'update_budget' => 'Opdater budget', + 'update_budget_amount_range' => 'Opdatering (forventet) disponibelt beløb mellem :start og :end', + 'set_budget_limit_title' => 'Sæt budgetteret beløb for budget :budget mellem :start og :end', + 'set_budget_limit' => 'Sæt budgetteret beløb', + 'budget_period_navigator' => 'Periode navigator', + 'info_on_available_amount' => 'Hvad har jeg til rådighed?', + 'available_amount_indication' => 'Brug disse beløb til at få en angivelse af, hvad dit samlede budget kan være.', + 'suggested' => 'Foreslået', + 'average_between' => 'Gennemsnit mellem :start og :end', + 'transferred_in' => 'Overført (ind)', + 'transferred_away' => 'Overført (ud)', + 'auto_budget_none' => 'Ingen auto-budget', + 'auto_budget_reset' => 'Angiv et fast beløb for hver periode', + 'auto_budget_rollover' => 'Tilføj et beløb hver periode', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daglig', + 'auto_budget_period_weekly' => 'Ugentlig', + 'auto_budget_period_monthly' => 'Månedlig', + 'auto_budget_period_quarterly' => 'Kvartalsvis', + 'auto_budget_period_half_year' => 'Hvert halve år', + 'auto_budget_period_yearly' => 'Årlig', + 'auto_budget_help' => 'Du kan læse mere om denne funktion i hjælpen. Klik på ikonet øverst til højre (?)', + 'auto_budget_reset_icon' => 'Dette budget vil blive fastsat periodisk', + 'auto_budget_rollover_icon' => 'Budgettet vil stige med jævne mellemrum', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Fjern budgetteret beløb i :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Ikke forventet denne periode', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Ikke (endnu)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Faktura matcher transaktioner mellem :low og :high.', - 'running_again_loss' => 'Tidligere tilknyttede transaktioner til denne regning kan miste deres forbindelse, hvis de (ikke længere) matcher reglen.', - 'bill_related_rules' => 'Regler relateret til denne regning', - 'repeats' => 'Gentagelser', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Tilsluttede transaktioner', - 'auto_match_on' => 'Automatisk matchet af Firefly III', - 'auto_match_off' => 'Ikke automatisk matchet af Firefly III', - 'next_expected_match' => 'Næste forventede match', - 'delete_bill' => 'Slet regning ":name"', - 'deleted_bill' => 'Slettede regning ":name"', - 'edit_bill' => 'Rediger regning ":name"', - 'more' => 'Mere', - 'rescan_old' => 'Kør regler igen, på alle transaktioner', - 'update_bill' => 'Opdater regning', - 'updated_bill' => 'Opdateret regning ":name"', - 'store_new_bill' => 'Gem ny regning', - 'stored_new_bill' => 'Gemt nyt regning":name"', - 'cannot_scan_inactive_bill' => 'Inaktive regninger kan ikke scannes.', - 'rescanned_bill' => 'Gen -scannede alt og linkede :count transaktion til regningen.|Gen -scannede alt, og linkede :count transaktioner til regningerne.', - 'average_bill_amount_year' => 'Gennemsnitligt regningsbeløb (:year)', - 'average_bill_amount_overall' => 'Gennemsnitligt regningsbeløb (generelt)', - 'bill_is_active' => 'Faktura er aktiv', - 'bill_expected_between' => 'Forventet mellem :start og :end', - 'bill_will_automatch' => 'Faktura vil automatisk blive knyttet til matchende transaktioner', - 'skips_over' => 'springer over', - 'bill_store_error' => 'En uventet fejl opstod under lagring af din nye regning. Kontroller logfilerne', - 'list_inactive_rule' => 'inaktiv regel', - 'bill_edit_rules' => 'Firefly III vil forsøge at redigere reglen relateret til denne regning også. Hvis du selv har redigeret denne regel, vil Firefly III dog ikke ændre noget.|Firefly III vil forsøge at redigere :count regler relateret til denne regning. Hvis du har redigeret disse regler selv dog, Firefly III vil ikke ændre noget.', - 'bill_expected_date' => 'Forventede :date', - 'bill_expected_date_js' => 'Forventede {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Betalt {date}', - 'bill_repeats_weekly' => 'Gentages ugentligt', - 'bill_repeats_monthly' => 'Gentages månedligt', - 'bill_repeats_quarterly' => 'Gentages kvartalsvis', - 'bill_repeats_half-year' => 'Gentages hvert halve år', - 'bill_repeats_yearly' => 'Gentages årligt', - 'bill_repeats_weekly_other' => 'Gentages hver anden uge', - 'bill_repeats_monthly_other' => 'Gentages hver anden måned', - 'bill_repeats_quarterly_other' => 'Gentages hvert andet kvartal', - 'bill_repeats_half-year_other' => 'Gentages årligt', - 'bill_repeats_yearly_other' => 'Gentages hvert andet år', - 'bill_repeats_weekly_skip' => 'Gentages hver {skip} uge', - 'bill_repeats_monthly_skip' => 'Gentages hver {skip} måned', - 'bill_repeats_quarterly_skip' => 'Gentages hver {skip} kvartal', - 'bill_repeats_half-year_skip' => 'Gentages hvert {skip} halve år', - 'bill_repeats_yearly_skip' => 'Gentages hvert {skip} år', - 'subscriptions' => 'Abonnementer', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'For evigt', - 'extension_date_is' => 'Udvidelsesdato er {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Ikke forventet denne periode', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Ikke (endnu)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Faktura matcher transaktioner mellem :low og :high.', + 'running_again_loss' => 'Tidligere tilknyttede transaktioner til denne regning kan miste deres forbindelse, hvis de (ikke længere) matcher reglen.', + 'bill_related_rules' => 'Regler relateret til denne regning', + 'repeats' => 'Gentagelser', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Tilsluttede transaktioner', + 'auto_match_on' => 'Automatisk matchet af Firefly III', + 'auto_match_off' => 'Ikke automatisk matchet af Firefly III', + 'next_expected_match' => 'Næste forventede match', + 'delete_bill' => 'Slet regning ":name"', + 'deleted_bill' => 'Slettede regning ":name"', + 'edit_bill' => 'Rediger regning ":name"', + 'more' => 'Mere', + 'rescan_old' => 'Kør regler igen, på alle transaktioner', + 'update_bill' => 'Opdater regning', + 'updated_bill' => 'Opdateret regning ":name"', + 'store_new_bill' => 'Gem ny regning', + 'stored_new_bill' => 'Gemt nyt regning":name"', + 'cannot_scan_inactive_bill' => 'Inaktive regninger kan ikke scannes.', + 'rescanned_bill' => 'Gen -scannede alt og linkede :count transaktion til regningen.|Gen -scannede alt, og linkede :count transaktioner til regningerne.', + 'average_bill_amount_year' => 'Gennemsnitligt regningsbeløb (:year)', + 'average_bill_amount_overall' => 'Gennemsnitligt regningsbeløb (generelt)', + 'bill_is_active' => 'Faktura er aktiv', + 'bill_expected_between' => 'Forventet mellem :start og :end', + 'bill_will_automatch' => 'Faktura vil automatisk blive knyttet til matchende transaktioner', + 'skips_over' => 'springer over', + 'bill_store_error' => 'En uventet fejl opstod under lagring af din nye regning. Kontroller logfilerne', + 'list_inactive_rule' => 'inaktiv regel', + 'bill_edit_rules' => 'Firefly III vil forsøge at redigere reglen relateret til denne regning også. Hvis du selv har redigeret denne regel, vil Firefly III dog ikke ændre noget.|Firefly III vil forsøge at redigere :count regler relateret til denne regning. Hvis du har redigeret disse regler selv dog, Firefly III vil ikke ændre noget.', + 'bill_expected_date' => 'Forventede :date', + 'bill_expected_date_js' => 'Forventede {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Betalt {date}', + 'bill_repeats_weekly' => 'Gentages ugentligt', + 'bill_repeats_monthly' => 'Gentages månedligt', + 'bill_repeats_quarterly' => 'Gentages kvartalsvis', + 'bill_repeats_half-year' => 'Gentages hvert halve år', + 'bill_repeats_yearly' => 'Gentages årligt', + 'bill_repeats_weekly_other' => 'Gentages hver anden uge', + 'bill_repeats_monthly_other' => 'Gentages hver anden måned', + 'bill_repeats_quarterly_other' => 'Gentages hvert andet kvartal', + 'bill_repeats_half-year_other' => 'Gentages årligt', + 'bill_repeats_yearly_other' => 'Gentages hvert andet år', + 'bill_repeats_weekly_skip' => 'Gentages hver {skip} uge', + 'bill_repeats_monthly_skip' => 'Gentages hver {skip} måned', + 'bill_repeats_quarterly_skip' => 'Gentages hver {skip} kvartal', + 'bill_repeats_half-year_skip' => 'Gentages hvert {skip} halve år', + 'bill_repeats_yearly_skip' => 'Gentages hvert {skip} år', + 'subscriptions' => 'Abonnementer', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'For evigt', + 'extension_date_is' => 'Udvidelsesdato er {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Du har :count inaktive (arkiveret) konto, som du kan se på denne separate side.|Du har :count inaktive (arkiveret) konti, som du kan se på denne separate side.', - 'all_accounts_inactive' => 'Dette er dine inaktive konti.', - 'active_account_link' => 'Dette link går tilbage til dine aktive konti.', - 'account_missing_transaction' => 'Konto #:id (":name") kan ikke ses direkte, men Firefly mangler omdirigeringsoplysninger.', - 'cc_monthly_payment_date_help' => 'Vælg et hvilket som helst år og en hvilken som helst måned, det vil blive ignoreret alligevel. Kun dagen i måneden er relevant.', - 'details_for_asset' => 'Detaljer for aktivkonto ":name"', - 'details_for_expense' => 'Detaljer for udgiftskonto":name"', - 'details_for_revenue' => 'Detaljer for indtægtskonto":name"', - 'details_for_cash' => 'Detaljer for kontantkonto ":name"', - 'store_new_asset_account' => 'Gem ny aktivkonto', - 'store_new_expense_account' => 'Gem ny omkostningskonto', - 'store_new_revenue_account' => 'Gem ny indtægtskonto', - 'edit_asset_account' => 'Rediger aktiv konto ":name"', - 'edit_expense_account' => 'Rediger omkostningskonto ":name"', - 'edit_revenue_account' => 'Rediger indtægtskonto ":name"', - 'delete_asset_account' => 'Slet aktiv konto ":name"', - 'delete_expense_account' => 'Slet omkostningskonto ":name"', - 'delete_revenue_account' => 'Slet indtægtskonto ":name"', - 'delete_liabilities_account' => 'Slet passiv ":name"', - 'asset_deleted' => 'Kontoen ":name" blev slettet', - 'account_deleted' => 'Kontoen ":name" blev slettet', - 'expense_deleted' => 'Udgiftskontoen ":name" blev slettet', - 'revenue_deleted' => 'Indtægtskontoen ":name" blev slettet', - 'update_asset_account' => 'Opdater konto', - 'update_undefined_account' => 'Opdater konto', - 'update_liabilities_account' => 'Opdater ansvarskonto', - 'update_expense_account' => 'Opdater udgiftskonto', - 'update_revenue_account' => 'Opdater indtægtskonto', - 'make_new_asset_account' => 'Opret ny konto', - 'make_new_expense_account' => 'Opret ny udgiftskonto', - 'make_new_revenue_account' => 'Opret ny indtægtskonto', - 'make_new_liabilities_account' => 'Opret en ny ansvarskonto', - 'asset_accounts' => 'Aktivkonti', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Aktivkonti (inaktiv)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Udgiftskonti', - 'expense_accounts_inactive' => 'Udgiftskonti (inaktiv)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Indtægtskonti', - 'revenue_accounts_inactive' => 'Indtægtskonti (inaktive)', - 'cash_accounts' => 'Kontant konti', - 'Cash account' => 'Kontant konto', - 'liabilities_accounts' => 'Gæld', - 'liabilities_accounts_inactive' => 'Gæld (inaktiv)', - 'reconcile_account' => 'Afstem konto ":account"', - 'overview_of_reconcile_modal' => 'Overblik af afstemning', - 'delete_reconciliation' => 'Slet afstemning', - 'update_reconciliation' => 'Opdater afstemning', - 'amount_cannot_be_zero' => 'Beløbet kan ikke være 0', - 'end_of_reconcile_period' => 'Slut på afstemningsperiode: :period', - 'start_of_reconcile_period' => 'Start på afstemningsperiode: :period', - 'start_balance' => 'Start saldo', - 'end_balance' => 'Slut saldo', - 'update_balance_dates_instruction' => 'Afpas beløber og datoer herover med dit kontoudtog og tryk på "Start afstemning"', - 'select_transactions_instruction' => 'Vælg de transaktioner, der vises på dit kontoudtog.', - 'select_range_and_balance' => 'Kontroller først datointerval og beløb. Tryk derefter på "Start afstemning"', - 'date_change_instruction' => 'Hvis du ændrer datointervallet nu, vil nuværende fremskridt gå tabt.', - 'update_selection' => 'Opdater valgte', - 'store_reconcile' => 'Gem afstemning', - 'reconciliation_transaction' => 'Afstem transaktion', - 'Reconciliation' => 'Afstemning', - 'reconciliation' => 'Afstemning', - 'reconcile_options' => 'Indstillinger for afstemning', - 'reconcile_range' => 'Afstemningsinterval', - 'start_reconcile' => 'Start afstemning', - 'cash_account_type' => 'Kontant', - 'cash' => 'kontant', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Account type', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'New account ":name" stored!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Opdateret konto ":name"', - 'updated_account_js' => 'Opdateret konto "{title}".', - 'credit_card_options' => 'Credit card options', - 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', - 'no_transactions_period' => 'Der er ingen transaktioner (i denne periode).', - 'no_data_for_chart' => 'Der er ikke nok information (endnu) til at generere dette diagram.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Vælg venligst mindst én kategori', - 'select_at_least_one_budget' => 'Vælg venligst mindst et budget', - 'select_at_least_one_tag' => 'Vælg venligst mindst et tag', - 'select_at_least_one_expense' => 'Vælg venligst mindst én kombination af udgifter/indtægtskonti. Hvis du ikke har nogen (listen er tom) er denne rapport ikke tilgængelig.', - 'account_default_currency' => 'Dette vil være den standard valuta, der er tilknyttet denne konto.', - 'reconcile_has_more' => 'Din Firefly III hovedbog holder flere penge end din bank angiver du bør have. Der er flere muligheder. Vælg venligst hvad der skal gøres. Tryk derefter på "Bekræft afstemning".', - 'reconcile_has_less' => 'Din Firefly III hovedbog holder færre penge end din bank angiver du bør have. Der er flere muligheder. Vælg venligst hvad der skal gøres. Tryk derefter på "Bekræft afstemning".', - 'reconcile_is_equal' => 'Din firefly III hovedbog og dine kontoudtog stemmer. Der er intet at gøre. Tryk på "Bekræft afstemning" for at bekræfte dit input.', - 'create_pos_reconcile_transaction' => 'Ryd de valgte transaktioner, og opret en korrektion, der tilføjer :amount til denne aktivkonto.', - 'create_neg_reconcile_transaction' => 'Ryd de valgte transaktioner, og opret en korrektion, der fjerner :amount fra denne aktivkonto.', - 'reconcile_do_nothing' => 'Ryd de valgte transaktioner, uden at korrigere.', - 'reconcile_go_back' => 'Du kan altid redigere eller slette en korrektion senere.', - 'must_be_asset_account' => 'Du kan kun afstemme aktivkonti', - 'reconciliation_stored' => 'Afstemning gemt', - 'reconciliation_error' => 'På grund af en fejl blev transaktionerne markeret som afstemt, men korrektionen blev ikke gemt: :error.', - 'reconciliation_transaction_title' => 'Afstemning (:from til :to)', - 'sum_of_reconciliation' => 'Sum af korrektionen', - 'reconcile_this_account' => 'Afstem denne konto', - 'reconcile' => 'Afstem', - 'show' => 'Vis', - 'confirm_reconciliation' => 'Bekræft afstemning', - 'submitted_start_balance' => 'Indsendt start saldo', - 'selected_transactions' => 'Valgte transaktioner (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Indsendt slut saldo', - 'initial_balance_description' => 'Start saldo for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'ukendt', - 'interest_calc_daily' => 'Pr. dag', - 'interest_calc_monthly' => 'Pr. måned', - 'interest_calc_yearly' => 'Pr. år', - 'interest_calc_weekly' => 'Pr. uge', - 'interest_calc_half-year' => 'Hvert halve år', - 'interest_calc_quarterly' => 'Pr. kvartal', - 'initial_balance_account' => 'Start saldo for :account', - 'list_options' => 'Vis valgmuligheder', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Du har :count inaktive (arkiveret) konto, som du kan se på denne separate side.|Du har :count inaktive (arkiveret) konti, som du kan se på denne separate side.', + 'all_accounts_inactive' => 'Dette er dine inaktive konti.', + 'active_account_link' => 'Dette link går tilbage til dine aktive konti.', + 'account_missing_transaction' => 'Konto #:id (":name") kan ikke ses direkte, men Firefly mangler omdirigeringsoplysninger.', + 'cc_monthly_payment_date_help' => 'Vælg et hvilket som helst år og en hvilken som helst måned, det vil blive ignoreret alligevel. Kun dagen i måneden er relevant.', + 'details_for_asset' => 'Detaljer for aktivkonto ":name"', + 'details_for_expense' => 'Detaljer for udgiftskonto":name"', + 'details_for_revenue' => 'Detaljer for indtægtskonto":name"', + 'details_for_cash' => 'Detaljer for kontantkonto ":name"', + 'store_new_asset_account' => 'Gem ny aktivkonto', + 'store_new_expense_account' => 'Gem ny omkostningskonto', + 'store_new_revenue_account' => 'Gem ny indtægtskonto', + 'edit_asset_account' => 'Rediger aktiv konto ":name"', + 'edit_expense_account' => 'Rediger omkostningskonto ":name"', + 'edit_revenue_account' => 'Rediger indtægtskonto ":name"', + 'delete_asset_account' => 'Slet aktiv konto ":name"', + 'delete_expense_account' => 'Slet omkostningskonto ":name"', + 'delete_revenue_account' => 'Slet indtægtskonto ":name"', + 'delete_liabilities_account' => 'Slet passiv ":name"', + 'asset_deleted' => 'Kontoen ":name" blev slettet', + 'account_deleted' => 'Kontoen ":name" blev slettet', + 'expense_deleted' => 'Udgiftskontoen ":name" blev slettet', + 'revenue_deleted' => 'Indtægtskontoen ":name" blev slettet', + 'update_asset_account' => 'Opdater konto', + 'update_undefined_account' => 'Opdater konto', + 'update_liabilities_account' => 'Opdater ansvarskonto', + 'update_expense_account' => 'Opdater udgiftskonto', + 'update_revenue_account' => 'Opdater indtægtskonto', + 'make_new_asset_account' => 'Opret ny konto', + 'make_new_expense_account' => 'Opret ny udgiftskonto', + 'make_new_revenue_account' => 'Opret ny indtægtskonto', + 'make_new_liabilities_account' => 'Opret en ny ansvarskonto', + 'asset_accounts' => 'Aktivkonti', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Aktivkonti (inaktiv)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Udgiftskonti', + 'expense_accounts_inactive' => 'Udgiftskonti (inaktiv)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Indtægtskonti', + 'revenue_accounts_inactive' => 'Indtægtskonti (inaktive)', + 'cash_accounts' => 'Kontant konti', + 'Cash account' => 'Kontant konto', + 'liabilities_accounts' => 'Gæld', + 'liabilities_accounts_inactive' => 'Gæld (inaktiv)', + 'reconcile_account' => 'Afstem konto ":account"', + 'overview_of_reconcile_modal' => 'Overblik af afstemning', + 'delete_reconciliation' => 'Slet afstemning', + 'update_reconciliation' => 'Opdater afstemning', + 'amount_cannot_be_zero' => 'Beløbet kan ikke være 0', + 'end_of_reconcile_period' => 'Slut på afstemningsperiode: :period', + 'start_of_reconcile_period' => 'Start på afstemningsperiode: :period', + 'start_balance' => 'Start saldo', + 'end_balance' => 'Slut saldo', + 'update_balance_dates_instruction' => 'Afpas beløber og datoer herover med dit kontoudtog og tryk på "Start afstemning"', + 'select_transactions_instruction' => 'Vælg de transaktioner, der vises på dit kontoudtog.', + 'select_range_and_balance' => 'Kontroller først datointerval og beløb. Tryk derefter på "Start afstemning"', + 'date_change_instruction' => 'Hvis du ændrer datointervallet nu, vil nuværende fremskridt gå tabt.', + 'update_selection' => 'Opdater valgte', + 'store_reconcile' => 'Gem afstemning', + 'reconciliation_transaction' => 'Afstem transaktion', + 'Reconciliation' => 'Afstemning', + 'reconciliation' => 'Afstemning', + 'reconcile_options' => 'Indstillinger for afstemning', + 'reconcile_range' => 'Afstemningsinterval', + 'start_reconcile' => 'Start afstemning', + 'cash_account_type' => 'Kontant', + 'cash' => 'kontant', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'New account ":name" stored!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Opdateret konto ":name"', + 'updated_account_js' => 'Opdateret konto "{title}".', + 'credit_card_options' => 'Credit card options', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_transactions_period' => 'Der er ingen transaktioner (i denne periode).', + 'no_data_for_chart' => 'Der er ikke nok information (endnu) til at generere dette diagram.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Vælg venligst mindst én kategori', + 'select_at_least_one_budget' => 'Vælg venligst mindst et budget', + 'select_at_least_one_tag' => 'Vælg venligst mindst et tag', + 'select_at_least_one_expense' => 'Vælg venligst mindst én kombination af udgifter/indtægtskonti. Hvis du ikke har nogen (listen er tom) er denne rapport ikke tilgængelig.', + 'account_default_currency' => 'Dette vil være den standard valuta, der er tilknyttet denne konto.', + 'reconcile_has_more' => 'Din Firefly III hovedbog holder flere penge end din bank angiver du bør have. Der er flere muligheder. Vælg venligst hvad der skal gøres. Tryk derefter på "Bekræft afstemning".', + 'reconcile_has_less' => 'Din Firefly III hovedbog holder færre penge end din bank angiver du bør have. Der er flere muligheder. Vælg venligst hvad der skal gøres. Tryk derefter på "Bekræft afstemning".', + 'reconcile_is_equal' => 'Din firefly III hovedbog og dine kontoudtog stemmer. Der er intet at gøre. Tryk på "Bekræft afstemning" for at bekræfte dit input.', + 'create_pos_reconcile_transaction' => 'Ryd de valgte transaktioner, og opret en korrektion, der tilføjer :amount til denne aktivkonto.', + 'create_neg_reconcile_transaction' => 'Ryd de valgte transaktioner, og opret en korrektion, der fjerner :amount fra denne aktivkonto.', + 'reconcile_do_nothing' => 'Ryd de valgte transaktioner, uden at korrigere.', + 'reconcile_go_back' => 'Du kan altid redigere eller slette en korrektion senere.', + 'must_be_asset_account' => 'Du kan kun afstemme aktivkonti', + 'reconciliation_stored' => 'Afstemning gemt', + 'reconciliation_error' => 'På grund af en fejl blev transaktionerne markeret som afstemt, men korrektionen blev ikke gemt: :error.', + 'reconciliation_transaction_title' => 'Afstemning (:from til :to)', + 'sum_of_reconciliation' => 'Sum af korrektionen', + 'reconcile_this_account' => 'Afstem denne konto', + 'reconcile' => 'Afstem', + 'show' => 'Vis', + 'confirm_reconciliation' => 'Bekræft afstemning', + 'submitted_start_balance' => 'Indsendt start saldo', + 'selected_transactions' => 'Valgte transaktioner (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Indsendt slut saldo', + 'initial_balance_description' => 'Start saldo for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'ukendt', + 'interest_calc_daily' => 'Pr. dag', + 'interest_calc_monthly' => 'Pr. måned', + 'interest_calc_yearly' => 'Pr. år', + 'interest_calc_weekly' => 'Pr. uge', + 'interest_calc_half-year' => 'Hvert halve år', + 'interest_calc_quarterly' => 'Pr. kvartal', + 'initial_balance_account' => 'Start saldo for :account', + 'list_options' => 'Vis valgmuligheder', // categories: - 'new_category' => 'Ny kategori', - 'create_new_category' => 'Opret ny kategori', - 'without_category' => 'Uden en kategori', - 'update_category' => 'Opdater kategori', - 'updated_category' => 'Kategori ":name" er blevet opdateret', - 'categories' => 'Kategorier', - 'edit_category' => 'Rediger kategori ":name"', - 'no_category' => '(ingen kategori)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategori', - 'delete_category' => 'Slet kategori ":name"', - 'deleted_category' => 'Kategori ":name" er blevet slettet', - 'store_category' => 'Gem ny kategori', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Without category between :start and :end', + 'new_category' => 'Ny kategori', + 'create_new_category' => 'Opret ny kategori', + 'without_category' => 'Uden en kategori', + 'update_category' => 'Opdater kategori', + 'updated_category' => 'Kategori ":name" er blevet opdateret', + 'categories' => 'Kategorier', + 'edit_category' => 'Rediger kategori ":name"', + 'no_category' => '(ingen kategori)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategori', + 'delete_category' => 'Slet kategori ":name"', + 'deleted_category' => 'Kategori ":name" er blevet slettet', + 'store_category' => 'Gem ny kategori', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Without category between :start and :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Opdater udbetaling', - 'update_deposit' => 'Opdater indbetaling', - 'update_transaction' => 'Opdater transaktion', - 'update_transfer' => 'Opdater overførsel', - 'updated_withdrawal' => 'Opdateret udbetaling ":description"', - 'updated_deposit' => 'Opdateret indbetaling ":description"', - 'updated_transfer' => 'Opdateret overførsel ":description"', - 'no_changes_withdrawal' => 'Udbetalingen ":description" blev ikke ændret.', - 'no_changes_deposit' => 'Indbetalingen ":description" blev ikke ændret.', - 'no_changes_transfer' => 'Overførslen ":description" blev ikke ændret.', - 'delete_withdrawal' => 'Slet udbetalingen ":description"', - 'delete_deposit' => 'Slet indbetalingen ":description"', - 'delete_transfer' => 'Slet overførslen ":description"', - 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', - 'deleted_deposit' => 'Successfully deleted deposit ":description"', - 'deleted_transfer' => 'Successfully deleted transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Successfully created new transaction ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Select transactions', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', - 'stop_selection' => 'Stop selecting transactions', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Delete a number of transactions', - 'mass_edit_journals' => 'Edit a number of transactions', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(no budget)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Konto pr. budget', - 'account_per_category' => 'Konto pr. kategori', - 'create_new_object' => 'Opret', - 'empty' => '(tom)', - 'all_other_budgets' => '(alle andre budgetter)', - 'all_other_accounts' => '(alle andre konti)', - 'expense_per_source_account' => 'Udgifter pr. kildekonto', - 'expense_per_destination_account' => 'Udgifter pr. destination konto', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Gennemsnitlig udgift pr. kildekonto', - 'average_earning_per_source' => 'Gennemsnitlig indtjening pr. kildekonto', - 'average_earning_per_destination' => 'Gennemsnitlig indtjening pr. destinationskonto', - 'account_per_tag' => 'Konto pr. tag', - 'tag_report_expenses_listed_once' => 'Udgifter og indtægter bliver aldrig vist flere gange. Hvis en transaktion har flere tags, bliver den kun vist under et af sine tags. Det ligner måske at denne liste mangler data, men beløbene vil være korrekte.', - 'double_report_expenses_charted_once' => 'Udgifter og indtægter bliver aldrig vist flere gange. Hvis en transaktion har flere tags, bliver den kun vist under et af sine tags. Det ligner måske at denne graf mangler data, men beløbene vil være korrekte.', - 'tag_report_chart_single_tag' => 'Denne graf viser ét enkelt tag. Hvis en transaktion har flere tags, vil hvad der bliver vist her måske også fremgå af andre grafer.', - 'tag' => 'Tag', - 'no_budget_squared' => '(intet budget)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(ingen kontotype)', - 'opt_group_no_account_type' => '(ingen kontotype)', - 'opt_group_defaultAsset' => 'Default asset accounts', - 'opt_group_savingAsset' => 'Savings accounts', - 'opt_group_sharedAsset' => 'Shared asset accounts', - 'opt_group_ccAsset' => 'Credit cards', - 'opt_group_cashWalletAsset' => 'Cash wallets', - 'opt_group_expense_account' => 'Udgiftskonti', - 'opt_group_revenue_account' => 'Indtægtskonti', - 'opt_group_l_Loan' => 'Ansvar: Lån', - 'opt_group_cash_account' => 'Kontant konto', - 'opt_group_l_Debt' => 'Ansvar: Gæld', - 'opt_group_l_Mortgage' => 'Ansvar: Pant', - 'opt_group_l_Credit card' => 'Ansvar: Kreditkort', - 'notes' => 'Noter', - 'unknown_journal_error' => 'Kunne ikke gemme transaktionen. Kontroller logfilerne.', - 'attachment_not_found' => 'Denne vedhæftning kunne ikke findes.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Opdater udbetaling', + 'update_deposit' => 'Opdater indbetaling', + 'update_transaction' => 'Opdater transaktion', + 'update_transfer' => 'Opdater overførsel', + 'updated_withdrawal' => 'Opdateret udbetaling ":description"', + 'updated_deposit' => 'Opdateret indbetaling ":description"', + 'updated_transfer' => 'Opdateret overførsel ":description"', + 'no_changes_withdrawal' => 'Udbetalingen ":description" blev ikke ændret.', + 'no_changes_deposit' => 'Indbetalingen ":description" blev ikke ændret.', + 'no_changes_transfer' => 'Overførslen ":description" blev ikke ændret.', + 'delete_withdrawal' => 'Slet udbetalingen ":description"', + 'delete_deposit' => 'Slet indbetalingen ":description"', + 'delete_transfer' => 'Slet overførslen ":description"', + 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', + 'deleted_deposit' => 'Successfully deleted deposit ":description"', + 'deleted_transfer' => 'Successfully deleted transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Successfully created new transaction ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Select transactions', + 'rule_group_select_transactions' => 'Apply ":title" to transactions', + 'rule_select_transactions' => 'Apply ":title" to transactions', + 'stop_selection' => 'Stop selecting transactions', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Delete a number of transactions', + 'mass_edit_journals' => 'Edit a number of transactions', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(no budget)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Konto pr. budget', + 'account_per_category' => 'Konto pr. kategori', + 'create_new_object' => 'Opret', + 'empty' => '(tom)', + 'all_other_budgets' => '(alle andre budgetter)', + 'all_other_accounts' => '(alle andre konti)', + 'expense_per_source_account' => 'Udgifter pr. kildekonto', + 'expense_per_destination_account' => 'Udgifter pr. destination konto', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Gennemsnitlig udgift pr. kildekonto', + 'average_earning_per_source' => 'Gennemsnitlig indtjening pr. kildekonto', + 'average_earning_per_destination' => 'Gennemsnitlig indtjening pr. destinationskonto', + 'account_per_tag' => 'Konto pr. tag', + 'tag_report_expenses_listed_once' => 'Udgifter og indtægter bliver aldrig vist flere gange. Hvis en transaktion har flere tags, bliver den kun vist under et af sine tags. Det ligner måske at denne liste mangler data, men beløbene vil være korrekte.', + 'double_report_expenses_charted_once' => 'Udgifter og indtægter bliver aldrig vist flere gange. Hvis en transaktion har flere tags, bliver den kun vist under et af sine tags. Det ligner måske at denne graf mangler data, men beløbene vil være korrekte.', + 'tag_report_chart_single_tag' => 'Denne graf viser ét enkelt tag. Hvis en transaktion har flere tags, vil hvad der bliver vist her måske også fremgå af andre grafer.', + 'tag' => 'Tag', + 'no_budget_squared' => '(intet budget)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(ingen kontotype)', + 'opt_group_no_account_type' => '(ingen kontotype)', + 'opt_group_defaultAsset' => 'Default asset accounts', + 'opt_group_savingAsset' => 'Savings accounts', + 'opt_group_sharedAsset' => 'Shared asset accounts', + 'opt_group_ccAsset' => 'Credit cards', + 'opt_group_cashWalletAsset' => 'Cash wallets', + 'opt_group_expense_account' => 'Udgiftskonti', + 'opt_group_revenue_account' => 'Indtægtskonti', + 'opt_group_l_Loan' => 'Ansvar: Lån', + 'opt_group_cash_account' => 'Kontant konto', + 'opt_group_l_Debt' => 'Ansvar: Gæld', + 'opt_group_l_Mortgage' => 'Ansvar: Pant', + 'opt_group_l_Credit card' => 'Ansvar: Kreditkort', + 'notes' => 'Noter', + 'unknown_journal_error' => 'Kunne ikke gemme transaktionen. Kontroller logfilerne.', + 'attachment_not_found' => 'Denne vedhæftning kunne ikke findes.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Submit', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Kom godt i gang', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Jubii, Dine nye konti er blevet gemt.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Sprog', - 'new_savings_account' => ':bank_name opsparingskonto', - 'cash_wallet' => 'Kontant tegnebog', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Submit', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Kom godt i gang', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Jubii, Dine nye konti er blevet gemt.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Sprog', + 'new_savings_account' => ':bank_name opsparingskonto', + 'cash_wallet' => 'Kontant tegnebog', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'En tabel med dine transaktioner', - 'opposing_account' => 'Modsvarende konto', - 'yourAccounts' => 'Dine konti', - 'your_accounts' => 'Din kontooversigt', - 'category_overview' => 'Kategorioversigt', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Budgets and spending', - 'budgets_and_spending' => 'Budgetter og udgifter', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Savings', - 'newWithdrawal' => 'New expense', - 'newDeposit' => 'New deposit', - 'newTransfer' => 'New transfer', - 'bills_to_pay' => 'Regninger til betaling', - 'per_day' => 'Per day', - 'left_to_spend_per_day' => 'Left to spend per day', - 'bills_paid' => 'Betalte regninger', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'En tabel med dine transaktioner', + 'opposing_account' => 'Modsvarende konto', + 'yourAccounts' => 'Dine konti', + 'your_accounts' => 'Din kontooversigt', + 'category_overview' => 'Kategorioversigt', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Budgets and spending', + 'budgets_and_spending' => 'Budgetter og udgifter', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Savings', + 'newWithdrawal' => 'New expense', + 'newDeposit' => 'New deposit', + 'newTransfer' => 'New transfer', + 'bills_to_pay' => 'Regninger til betaling', + 'per_day' => 'Per day', + 'left_to_spend_per_day' => 'Left to spend per day', + 'bills_paid' => 'Betalte regninger', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Currency', - 'preferences' => 'Preferences', - 'logout' => 'Logout', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Toggle navigation', - 'searchPlaceholder' => 'Search...', - 'version' => 'Version', - 'dashboard' => 'Dashboard', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Currencies', - 'activity' => 'Aktivitet', - 'usage' => 'Anvendelse', - 'accounts' => 'Konti', - 'Asset account' => 'Asset account', - 'Default account' => 'Asset account', - 'Expense account' => 'Udgiftskonto', - 'Revenue account' => 'Indtægtskonto', - 'Initial balance account' => 'Initial balance account', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Gæld', - 'account_type_Loan' => 'Lån', - 'account_type_Mortgage' => 'Pant', - 'account_type_debt' => 'Gæld', - 'account_type_loan' => 'Lån', - 'account_type_mortgage' => 'Pant', - 'account_type_Credit card' => 'Kreditkort', - 'credit_card_type_monthlyFull' => 'Fuld betaling hver måned', - 'liability_direction_credit' => 'Jeg skylder denne gæld', - 'liability_direction_debit' => 'Jeg skylder denne gæld til en anden', - 'liability_direction_credit_short' => 'Ejer denne gæld', - 'liability_direction_debit_short' => 'Ejer denne gæld', - 'liability_direction__short' => 'Ukendt', - 'liability_direction_null_short' => 'Ukendt', - 'Liability credit' => 'Passiv kredit', - 'budgets' => 'Budgetter', - 'tags' => 'Etiketter', - 'reports' => 'Rapporter', - 'transactions' => 'Transaktioner', - 'expenses' => 'Udgifter', - 'income' => 'Indtægter / indkomst', - 'transfers' => 'Overførsler', - 'moneyManagement' => 'Pengestyring', - 'money_management' => 'Pengestyring', - 'tools' => 'Værktøjer', - 'piggyBanks' => 'Sparebøsser', - 'piggy_banks' => 'Sparebøsser', - 'amount_x_of_y' => '{current} af {total}', - 'bills' => 'Regninger', - 'withdrawal' => 'Hævet', - 'opening_balance' => 'Startsaldo', - 'deposit' => 'Indbetaling', - 'account' => 'Konto', - 'transfer' => 'Overførsel', - 'Withdrawal' => 'Hævet', - 'Deposit' => 'Indbetaling', - 'Transfer' => 'Overførsel', - 'bill' => 'Regning', - 'yes' => 'Ja', - 'no' => 'Nej', - 'amount' => 'Beløb', - 'overview' => 'Oversigt', - 'saveOnAccount' => 'Gem på konto', - 'unknown' => 'Ukendt', - 'monthly' => 'Monthly', - 'profile' => 'Profile', - 'errors' => 'Errors', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Currency', + 'preferences' => 'Preferences', + 'logout' => 'Logout', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Search...', + 'version' => 'Version', + 'dashboard' => 'Dashboard', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Currencies', + 'activity' => 'Aktivitet', + 'usage' => 'Anvendelse', + 'accounts' => 'Konti', + 'Asset account' => 'Asset account', + 'Default account' => 'Asset account', + 'Expense account' => 'Udgiftskonto', + 'Revenue account' => 'Indtægtskonto', + 'Initial balance account' => 'Initial balance account', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Gæld', + 'account_type_Loan' => 'Lån', + 'account_type_Mortgage' => 'Pant', + 'account_type_debt' => 'Gæld', + 'account_type_loan' => 'Lån', + 'account_type_mortgage' => 'Pant', + 'account_type_Credit card' => 'Kreditkort', + 'credit_card_type_monthlyFull' => 'Fuld betaling hver måned', + 'liability_direction_credit' => 'Jeg skylder denne gæld', + 'liability_direction_debit' => 'Jeg skylder denne gæld til en anden', + 'liability_direction_credit_short' => 'Ejer denne gæld', + 'liability_direction_debit_short' => 'Ejer denne gæld', + 'liability_direction__short' => 'Ukendt', + 'liability_direction_null_short' => 'Ukendt', + 'Liability credit' => 'Passiv kredit', + 'budgets' => 'Budgetter', + 'tags' => 'Etiketter', + 'reports' => 'Rapporter', + 'transactions' => 'Transaktioner', + 'expenses' => 'Udgifter', + 'income' => 'Indtægter / indkomst', + 'transfers' => 'Overførsler', + 'moneyManagement' => 'Pengestyring', + 'money_management' => 'Pengestyring', + 'tools' => 'Værktøjer', + 'piggyBanks' => 'Sparebøsser', + 'piggy_banks' => 'Sparebøsser', + 'amount_x_of_y' => '{current} af {total}', + 'bills' => 'Regninger', + 'withdrawal' => 'Hævet', + 'opening_balance' => 'Startsaldo', + 'deposit' => 'Indbetaling', + 'account' => 'Konto', + 'transfer' => 'Overførsel', + 'Withdrawal' => 'Hævet', + 'Deposit' => 'Indbetaling', + 'Transfer' => 'Overførsel', + 'bill' => 'Regning', + 'yes' => 'Ja', + 'no' => 'Nej', + 'amount' => 'Beløb', + 'overview' => 'Oversigt', + 'saveOnAccount' => 'Gem på konto', + 'unknown' => 'Ukendt', + 'monthly' => 'Monthly', + 'profile' => 'Profile', + 'errors' => 'Errors', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Default financial report between :start and :end', - 'report_audit' => 'Transaction history overview between :start and :end', - 'report_category' => 'Category report between :start and :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Quick links', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Default financial report', - 'quick_link_audit_report' => 'Transaction history overview', - 'report_this_month_quick' => 'Current month, all accounts', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Current year, all accounts', - 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', - 'report_all_time_quick' => 'All-time, all accounts', - 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', - 'incomeVsExpenses' => 'Income vs. expenses', - 'accountBalances' => 'Account balances', - 'balanceStart' => 'Balance at start of period', - 'balanceEnd' => 'Balance at end of period', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftInBudget' => 'Left in budget', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Sum of sums', - 'noCategory' => '(no category)', - 'notCharged' => 'Not charged (yet)', - 'inactive' => 'Inactive', - 'active' => 'Active', - 'difference' => 'Difference', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Ud', - 'topX' => 'top :number', - 'show_full_list' => 'Vis hele listen', - 'show_only_top' => 'Vis kun top :number', - 'report_type' => 'Rapporttype', - 'report_type_default' => 'Standard regnskabsrapport', - 'report_type_audit' => 'Overblik over transaktionshistorik (revision)', - 'report_type_category' => 'Kategori rapport', - 'report_type_budget' => 'Budgetrapport', - 'report_type_tag' => 'Tag rapport', - 'report_type_double' => 'Regnskabsrapport for udgifter/indtægter', - 'more_info_help' => 'Mere information om disse typer af rapporter kan findes på hjælpesiderne. Tryk på (?) ikonet i øverste højre hjørne.', - 'report_included_accounts' => 'Inkluderede konti', - 'report_date_range' => 'Datointerval', - 'report_preset_ranges' => 'Forudindstillet intervaller', - 'shared' => 'Delt', - 'fiscal_year' => 'Regnskabsår', - 'income_entry' => 'Indtægter fra konto ":name" mellem :start og :end', - 'expense_entry' => 'Expenses to account ":name" between :start and :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', - 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Ekstra valgmuligheder', - 'report_has_no_extra_options' => 'Denne rapport har ingen ekstra muligheder', - 'reports_submit' => 'Vis rapport', - 'end_after_start_date' => 'Slutdato for rapport skal være efter startdato.', - 'select_category' => 'Vælg kategori(er)', - 'select_budget' => 'Vælg budget(ter).', - 'select_tag' => 'Vælg mærke(r).', - 'income_per_category' => 'Indkomst pr. kategori', - 'expense_per_category' => 'Udgift pr. kategori', - 'expense_per_budget' => 'Udgifter pr. budget', - 'income_per_account' => 'Indkomst pr. konto', - 'expense_per_account' => 'Udgift pr. konto', - 'expense_per_tag' => 'Udgift pr. mærke', - 'income_per_tag' => 'Indkomst pr. mærke', - 'include_expense_not_in_budget' => 'Inkluderede udgifter er ikke i det valgte budget(ter)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', - 'everything_else' => 'Alt andet', - 'income_and_expenses' => 'Indtægter og udgifter', - 'spent_average' => 'Brugt (gennemsnit)', - 'income_average' => 'Indkomst (gennemsnit)', - 'transaction_count' => 'Transaktionen tæller', - 'average_spending_per_account' => 'Gennemsnitlige udgifter pr. konto', - 'average_income_per_account' => 'Average income per account', - 'total' => 'Total', - 'description' => 'Description', - 'sum_of_period' => 'Sum of period', - 'average_in_period' => 'Average in period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Default asset account', - 'account_role_sharedAsset' => 'Shared asset account', - 'account_role_savingAsset' => 'Savings account', - 'account_role_ccAsset' => 'Credit card', - 'account_role_cashWalletAsset' => 'Cash wallet', - 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', - 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Default financial report between :start and :end', + 'report_audit' => 'Transaction history overview between :start and :end', + 'report_category' => 'Category report between :start and :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Quick links', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Default financial report', + 'quick_link_audit_report' => 'Transaction history overview', + 'report_this_month_quick' => 'Current month, all accounts', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Current year, all accounts', + 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', + 'report_all_time_quick' => 'All-time, all accounts', + 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', + 'incomeVsExpenses' => 'Income vs. expenses', + 'accountBalances' => 'Account balances', + 'balanceStart' => 'Balance at start of period', + 'balanceEnd' => 'Balance at end of period', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftInBudget' => 'Left in budget', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Ud', + 'topX' => 'top :number', + 'show_full_list' => 'Vis hele listen', + 'show_only_top' => 'Vis kun top :number', + 'report_type' => 'Rapporttype', + 'report_type_default' => 'Standard regnskabsrapport', + 'report_type_audit' => 'Overblik over transaktionshistorik (revision)', + 'report_type_category' => 'Kategori rapport', + 'report_type_budget' => 'Budgetrapport', + 'report_type_tag' => 'Tag rapport', + 'report_type_double' => 'Regnskabsrapport for udgifter/indtægter', + 'more_info_help' => 'Mere information om disse typer af rapporter kan findes på hjælpesiderne. Tryk på (?) ikonet i øverste højre hjørne.', + 'report_included_accounts' => 'Inkluderede konti', + 'report_date_range' => 'Datointerval', + 'report_preset_ranges' => 'Forudindstillet intervaller', + 'shared' => 'Delt', + 'fiscal_year' => 'Regnskabsår', + 'income_entry' => 'Indtægter fra konto ":name" mellem :start og :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Ekstra valgmuligheder', + 'report_has_no_extra_options' => 'Denne rapport har ingen ekstra muligheder', + 'reports_submit' => 'Vis rapport', + 'end_after_start_date' => 'Slutdato for rapport skal være efter startdato.', + 'select_category' => 'Vælg kategori(er)', + 'select_budget' => 'Vælg budget(ter).', + 'select_tag' => 'Vælg mærke(r).', + 'income_per_category' => 'Indkomst pr. kategori', + 'expense_per_category' => 'Udgift pr. kategori', + 'expense_per_budget' => 'Udgifter pr. budget', + 'income_per_account' => 'Indkomst pr. konto', + 'expense_per_account' => 'Udgift pr. konto', + 'expense_per_tag' => 'Udgift pr. mærke', + 'income_per_tag' => 'Indkomst pr. mærke', + 'include_expense_not_in_budget' => 'Inkluderede udgifter er ikke i det valgte budget(ter)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Alt andet', + 'income_and_expenses' => 'Indtægter og udgifter', + 'spent_average' => 'Brugt (gennemsnit)', + 'income_average' => 'Indkomst (gennemsnit)', + 'transaction_count' => 'Transaktionen tæller', + 'average_spending_per_account' => 'Gennemsnitlige udgifter pr. konto', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Shared asset account', + 'account_role_savingAsset' => 'Savings account', + 'account_role_ccAsset' => 'Credit card', + 'account_role_cashWalletAsset' => 'Cash wallet', + 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', + 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Chart', - 'month' => 'Month', - 'budget' => 'Budget', - 'spent' => 'Spent', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Spent in budget', - 'left_to_spend' => 'Left to spend', - 'earned' => 'Earned', - 'overspent' => 'Overspent', - 'left' => 'Left', - 'max-amount' => 'Maximum amount', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Current bill entry', - 'name' => 'Name', - 'date' => 'Date', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Paid', - 'unpaid' => 'Ubetalt', - 'day' => 'Dag', - 'budgeted' => 'Budgetteret', - 'period' => 'Periode', - 'balance' => 'Saldo', - 'in_out_period' => 'In + out this period', - 'sum' => 'I alt', - 'summary' => 'Opsummering', - 'average' => 'Gennemsnitlig', - 'balanceFor' => 'Saldo for :name', - 'no_tags' => '(ingen mærker)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Current bill entry', + 'name' => 'Name', + 'date' => 'Date', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Paid', + 'unpaid' => 'Ubetalt', + 'day' => 'Dag', + 'budgeted' => 'Budgetteret', + 'period' => 'Periode', + 'balance' => 'Saldo', + 'in_out_period' => 'In + out this period', + 'sum' => 'I alt', + 'summary' => 'Opsummering', + 'average' => 'Gennemsnitlig', + 'balanceFor' => 'Saldo for :name', + 'no_tags' => '(ingen mærker)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"', - 'piggy_bank' => 'Sparegris', - 'new_piggy_bank' => 'Ny sparegris', - 'store_piggy_bank' => 'Gem ny sparegris', - 'stored_piggy_bank' => 'Gem ny sparegris ":name"', - 'account_status' => 'Status for konto', - 'left_for_piggy_banks' => 'Left for piggy banks', - 'sum_of_piggy_banks' => 'Sum of piggy banks', - 'saved_so_far' => 'Saved so far', - 'left_to_save' => 'Left to save', - 'suggested_amount' => 'Suggested monthly amount to save', - 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', - 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', - 'add' => 'Tilføj', - 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Tilføj penge til sparegrisen ":name"', + 'piggy_bank' => 'Sparegris', + 'new_piggy_bank' => 'Ny sparegris', + 'store_piggy_bank' => 'Gem ny sparegris', + 'stored_piggy_bank' => 'Gem ny sparegris ":name"', + 'account_status' => 'Status for konto', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Sum of piggy banks', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', + 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', + 'add' => 'Tilføj', + 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Fjern', - 'max_amount_add' => 'Det maksimale beløb, du kan tilføje er', - 'max_amount_remove' => 'Det maksimale beløb, du kan fjerne er', - 'update_piggy_button' => 'Update piggy bank', - 'update_piggy_title' => 'Update piggy bank ":name"', - 'updated_piggy_bank' => 'Updated piggy bank ":name"', - 'details' => 'Detaljer', - 'events' => 'Begivenheder', - 'target_amount' => 'Target amount', - 'start_date' => 'Start dato', - 'no_start_date' => 'No start date', - 'target_date' => 'Target date', - 'no_target_date' => 'No target date', - 'table' => 'Tabel', - 'delete_piggy_bank' => 'Delete piggy bank ":name"', - 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', - 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', - 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', - 'added_amount_to_piggy' => 'Added :amount to ":name"', - 'removed_amount_from_piggy' => 'Removed :amount from ":name"', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Fjern', + 'max_amount_add' => 'Det maksimale beløb, du kan tilføje er', + 'max_amount_remove' => 'Det maksimale beløb, du kan fjerne er', + 'update_piggy_button' => 'Update piggy bank', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Updated piggy bank ":name"', + 'details' => 'Detaljer', + 'events' => 'Begivenheder', + 'target_amount' => 'Target amount', + 'start_date' => 'Start dato', + 'no_start_date' => 'No start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Tabel', + 'delete_piggy_bank' => 'Delete piggy bank ":name"', + 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', + 'added_amount_to_piggy' => 'Added :amount to ":name"', + 'removed_amount_from_piggy' => 'Removed :amount from ":name"', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => 'Delete tag ":tag"', - 'deleted_tag' => 'Deleted tag ":tag"', - 'new_tag' => 'Make new tag', - 'edit_tag' => 'Edit tag ":tag"', - 'updated_tag' => 'Updated tag ":tag"', - 'created_tag' => 'Tag ":tag" has been created!', + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', - 'transaction_journal_information' => 'Transaction information', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta information', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Total amount', - 'number_of_decimals' => 'Number of decimals', + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta information', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'User administration', - 'list_all_users' => 'All users', - 'all_users' => 'All users', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Configuration options for Firefly III', - 'setting_single_user_mode' => 'Single user mode', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Store configuration', - 'single_user_administration' => 'User administration for :email', - 'edit_user' => 'Edit user :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'User data', - 'user_information' => 'User information', - 'total_size' => 'total size', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'The configuration has been updated', - 'setting_is_demo_site' => 'Demo site', - 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Demo account expired', - 'no_block_code' => 'No reason for block or user not blocked', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'User has not yet confirmed new email address', - 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', - 'update_user' => 'Update user', - 'updated_user' => 'User data has been changed.', - 'delete_user' => 'Delete user :email', - 'user_deleted' => 'The user has been deleted', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Create new link type', - 'store_new_link_type' => 'Store new link type', - 'update_link_type' => 'Update link type', - 'edit_link_type' => 'Edit link type ":name"', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'Ie. "duplicates"', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(do not save connection)', - 'link_transaction' => 'Link transaction', - 'link_to_other_transaction' => 'Link this transaction to another transaction', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'This transaction', - 'transaction' => 'Transaction', - 'comments' => 'Comments', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Cannot link these transactions', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transactions are linked.', - 'journals_error_linked' => 'These transactions are already linked.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'This withdrawal', - 'this_deposit' => 'This deposit', - 'this_transfer' => 'This transfer', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Source transaction', - 'link_description' => 'Link description', - 'destination_transaction' => 'Destination transaction', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Deleted link', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Splits', - 'add_another_split' => 'Add another split', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Let\'s create an asset account!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', - 'no_accounts_create_asset' => 'Create an asset account', - 'no_accounts_title_expense' => 'Let\'s create an expense account!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Create an expense account', - 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', - 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_revenue' => 'Create a revenue account', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Let\'s create a budget', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', - 'no_budgets_create_default' => 'Create a budget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Let\'s create a category!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', - 'no_tags_title_default' => 'Let\'s create a tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Create a tag', - 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', - 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Create an expense', - 'no_transactions_title_deposit' => 'Let\'s create some income!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Create a deposit', - 'no_transactions_title_transfers' => 'Let\'s create a transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Create a transfer', - 'no_piggies_title_default' => 'Let\'s create a piggy bank!', - 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', - 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', - 'no_piggies_create_default' => 'Create a new piggy bank', - 'no_bills_title_default' => 'Lad os oprette en regning!', - 'no_bills_intro_default' => 'Du har endnu ingen regninger. Du kan oprette regninger for at holde styr på almindelige udgifter, såsom din husleje eller forsikring.', - 'no_bills_imperative_default' => 'Har du sådanne regelmæssige regninger? Opret en regning og holde styr på dine betalinger:', - 'no_bills_create_default' => 'Opret ny regning', + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', + 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Create a revenue account', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Create an expense', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Let\'s create a piggy bank!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Create a new piggy bank', + 'no_bills_title_default' => 'Lad os oprette en regning!', + 'no_bills_intro_default' => 'Du har endnu ingen regninger. Du kan oprette regninger for at holde styr på almindelige udgifter, såsom din husleje eller forsikring.', + 'no_bills_imperative_default' => 'Har du sådanne regelmæssige regninger? Opret en regning og holde styr på dine betalinger:', + 'no_bills_create_default' => 'Opret ny regning', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Every day', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Every day', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Betalte regninger (:currency)', - 'box_bill_unpaid_in_currency' => 'Ubetalte regninger (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Betalte regninger (:currency)', + 'box_bill_unpaid_in_currency' => 'Ubetalte regninger (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/da_DK/validation.php b/resources/lang/da_DK/validation.php index 767d24ce6f..3bec998f7a 100644 --- a/resources/lang/da_DK/validation.php +++ b/resources/lang/da_DK/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Du har ikke de korrekte adgangsrettigheder for denne administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/de_DE/firefly.php b/resources/lang/de_DE/firefly.php index 58d6f34b15..51a792d81e 100644 --- a/resources/lang/de_DE/firefly.php +++ b/resources/lang/de_DE/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Schließen', - 'actions' => 'Aktionen', - 'edit' => 'Bearbeiten', - 'delete' => 'Löschen', - 'split' => 'Teilen', - 'single_split' => 'Teilen', - 'clone' => 'Duplizieren', - 'clone_and_edit' => 'Duplizieren und Bearbeiten', - 'confirm_action' => 'Aktion bestätigen', - 'last_seven_days' => 'Letzte sieben Tage', - 'last_thirty_days' => 'Letzte 30 Tage', - 'last_180_days' => 'Letzte 180 Tage', - 'month_to_date' => 'Bisheriger Monat', - 'year_to_date' => 'Bisheriges Jahr', - 'YTD' => 'Seit Jahresbeginn', - 'welcome_back' => 'Überblick', - 'everything' => 'Alle', - 'today' => 'Heute', - 'customRange' => 'Individueller Bereich', - 'date_range' => 'Datumsbereich', - 'apply' => 'Übernehmen', - 'select_date' => 'Wähle ein Datum..', - 'cancel' => 'Abbrechen', - 'from' => 'Von', - 'to' => 'Bis', - 'structure' => 'Struktur', - 'help_translating' => 'Dieser Hilfetext ist noch nicht in Deutsch verfügbar. Möchten Sie beim Übersetzen helfen?', - 'showEverything' => 'Alles anzeigen', - 'never' => 'Nie', - 'no_results_for_empty_search' => 'Ihre Suche war leer, also wurde nichts gefunden.', - 'removed_amount' => ':amount entfernt', - 'added_amount' => ':amount hinzugefügt', - 'asset_account_role_help' => 'Alle zusätzlichen Optionen können später eingestellt werden.', - 'Opening balance' => 'Eröffnungssaldo', - 'create_new_stuff' => 'Erstelle neue Dinge', - 'new_withdrawal' => 'Neue Ausgabe', - 'create_new_transaction' => 'Neue Buchung erstellen', - 'sidebar_frontpage_create' => 'Erstellen', - 'new_transaction' => 'Neue Buchung', - 'no_rules_for_bill' => 'Dieser Rechnung sind keine Regeln zugeordnet.', - 'go_to_asset_accounts' => 'Bestandskonten anzeigen', - 'go_to_budgets' => 'Budgets anzeigen', - 'go_to_withdrawals' => 'Ausgaben anzeigen', - 'clones_journal_x' => 'Diese Buchung ist ein Duplikat von ":description" (#:id)', - 'go_to_categories' => 'Kategorien anzeigen', - 'go_to_bills' => 'Rechnungen anzeigen', - 'go_to_expense_accounts' => 'Ausgabenkonten anzeigen', - 'go_to_revenue_accounts' => 'Einnahmekonten anzeigen', - 'go_to_piggies' => 'Sparschweine anzeigen', - 'new_deposit' => 'Neue Einnahme', - 'new_transfer' => 'Neue Umbuchung', - 'new_transfers' => 'Neue Umbuchung', - 'new_asset_account' => 'Neues Bestandskonto', - 'new_expense_account' => 'Neues Ausgabenkonto', - 'new_revenue_account' => 'Neues Einnahmenkonto', - 'new_liabilities_account' => 'Neue Verbindlichkeit', - 'new_budget' => 'Neues Budget', - 'new_bill' => 'Neue Rechnung', - 'block_account_logout' => 'Sie wurden ausgeloggt. Blockierte Benutzerkonten können diese Seite nicht nutzen. Haben Sie sich mit einer gültigen E-Mail Adresse registriert?', - 'flash_success' => 'Geschafft!', - 'flash_info' => 'Nachricht', - 'flash_warning' => 'Achtung!', - 'flash_error' => 'Fehler!', - 'flash_danger' => 'Achtung!', - 'flash_info_multiple' => 'Es gibt eine Nachricht | Es gibt :count Nachrichten', - 'flash_error_multiple' => 'Es gibt einen Fehler|Es gibt :count Fehler', - 'net_worth' => 'Eigenkapital', - 'help_for_this_page' => 'Hilfe zu dieser Seite', - 'help_for_this_page_body' => 'Weitere Informationen über diese Seite finden Sie in unserer Dokumentation (engl.).', - 'two_factor_welcome' => 'Hallo!', - 'two_factor_enter_code' => 'Um fortzufahren geben Sie bitte ihren Zwei-Faktor-Authentifizierungscode ein. Ihre Anwendung kann diesen für Sie generieren.', - 'two_factor_code_here' => 'Code hier eingeben', - 'two_factor_title' => 'Zwei-Faktor-Authentifizierung', - 'authenticate' => 'Authentifizieren', - 'two_factor_forgot_title' => 'Zwei-Faktor-Authentifizierung verloren', - 'two_factor_forgot' => 'Ich kann keine 2FA-Codes generieren.', - 'two_factor_lost_header' => 'Haben Sie ihre Zwei-Faktor-Authentifizierung verloren?', - 'two_factor_lost_intro' => 'Wenn Sie auch Ihre Sicherungsschlüssel verloren haben, haben Sie Pech. Dies ist nichts, was Sie über die Weboberfläche beheben können. Sie haben jedoch zwei Möglichkeiten.', - 'two_factor_lost_fix_self' => 'Wenn Sie Ihre eigene Instanz von Firefly III betreiben, lesen Sie :site_owner und bitten Sie ihn, Ihre Zwei-Faktor Authentifizierung zurückzusetzen.', - 'mfa_backup_code' => 'Sie haben sich mit einem Sicherungsschlüssel bei Firefly III angemeldet. Dieser kann nun nicht mehr verwendet werden, also streichen Sie ihn aus Ihrer Liste.', - 'pref_two_factor_new_backup_codes' => 'Neue Sicherungsschlüssel abrufen', - 'pref_two_factor_backup_code_count' => 'Sie haben :count gültigen Backup-Code.|Sie haben :count gültige Backup-Codes.', - '2fa_i_have_them' => 'Wurde gespeichert!', - 'warning_much_data' => ':days Tage Daten können eine Weile zum Laden benötigen.', - 'registered' => 'Sie haben sich erfolgreich registriert!', - 'Default asset account' => 'Standard-Bestandskonto', - 'no_budget_pointer' => 'Sie scheinen noch keine Budgets festgelegt zu haben. Sie sollten einige davon auf der Seite Budgets anlegen. Budgets können Ihnen dabei helfen, den Überblick über die Ausgaben zu behalten.', - 'no_bill_pointer' => 'Sie scheinen noch keine Rechnungen zu haben. Sie sollten einige auf der Seite Rechnungen erstellen. Anhand der Rechnungen können Sie den Überblick über Ihre Ausgaben behalten.', - 'Savings account' => 'Sparkonto', - 'Credit card' => 'Kreditkarte', - 'source_accounts' => 'Quellkonto|Quellkonten', - 'destination_accounts' => 'Zielkonto|Zielkonten', - 'user_id_is' => 'Ihre Benutzerkennung ist :user', - 'field_supports_markdown' => 'Dieses Feld unterstützt Markdown.', - 'need_more_help' => 'Wenn Sie Hilfe beim Bedienen von Firefly III brauchen, erstellen Sie ein Ticket auf Github.', - 'reenable_intro_text' => 'Sie können die Einführungsanleitung auch erneut aktivieren.', - 'intro_boxes_after_refresh' => 'Die Einführungsfelder werden wieder angezeigt, wenn Sie die Seite aktualisieren.', - 'show_all_no_filter' => 'Alle Buchungen anzeigen, ohne diese nach Datum zu gruppieren.', - 'expenses_by_category' => 'Ausgaben nach Kategorie', - 'expenses_by_budget' => 'Ausgaben nach Budget', - 'income_by_category' => 'Einnahmen nach Kategorie', - 'expenses_by_asset_account' => 'Ausgaben nach Bestandskonto', - 'expenses_by_expense_account' => 'Ausgaben nach Ausgabenkonto', - 'cannot_redirect_to_account' => 'Entschuldigen Sie bitte. Firefly III kann Sie nicht zur richtigen Seite weiterleiten.', - 'sum_of_expenses' => 'Summe von Ausgaben', - 'sum_of_income' => 'Summe von Einnahmen', - 'liabilities' => 'Verbindlichkeiten', - 'spent_in_specific_budget' => 'Ausgaben im Budget „:budget”', - 'spent_in_specific_double' => 'Ausgaben auf Konto ":account"', - 'earned_in_specific_double' => 'Einnahmen auf Konto ":account"', - 'source_account' => 'Quellkonto', - 'source_account_reconciliation' => 'Sie können das Quellkonto einer Kontenausgleichsbuchung nicht bearbeiten.', - 'destination_account' => 'Zielkonto', - 'destination_account_reconciliation' => 'Sie können das Zielkonto einer Kontenausgleichsbuchung nicht bearbeiten.', - 'sum_of_expenses_in_budget' => 'Gesamtausgaben im Budget „:budget”', - 'left_in_budget_limit' => 'Verbleibend zum Ausgeben laut der Budgetplanung', - 'current_period' => 'Aktueller Zeitraum', - 'show_the_current_period_and_overview' => 'Zeigen Sie den aktuellen Zeitraum und die Übersicht', - 'pref_languages_locale' => 'Damit eine andere Sprache als Englisch richtig funktioniert muss Ihr Betriebssystem mit den korrekten Gebietsschema-Informationen ausgestattet werden. Wenn diese nicht vorhanden sind, können die Währungsdaten, Termine und Mengen falsch formatiert sein.', - 'budget_in_period' => 'Alle Buchungen für den Kostenrahmen „:name” zwischen :start und :end in :currency', - 'chart_budget_in_period' => 'Diagramm für alle Buchungen für den Kostenrahmen ":name" zwischen :start und :end in :currency', - 'chart_budget_in_period_only_currency' => 'Der von Ihnen geplante Betrag war in :currency, so dass dieses Diagramm nur die Buchungen in :currency anzeigt.', - 'chart_account_in_period' => 'Diagramm für alle Buchungen für das Konto „:name” (:balance) zwischen :start und :end', - 'chart_category_in_period' => 'Diagramm für alle Buchungen der Kategorie „:name” zwischen :start und :end', - 'chart_category_all' => 'Diagramm für alle Buchungen der Kategorie „:name”', - 'clone_withdrawal' => 'Diese Ausgabe duplizieren', - 'clone_deposit' => 'Diese Einnahme duplizieren', - 'clone_transfer' => 'Diese Umbuchung duplizieren', - 'multi_select_no_selection' => 'Nichts ausgewählt', - 'multi_select_select_all' => 'Alle auswählen', - 'multi_select_n_selected' => 'ausgewählt', - 'multi_select_all_selected' => 'Alle ausgewählt', - 'multi_select_filter_placeholder' => 'Suche..', - 'intro_next_label' => 'Nächste', - 'intro_prev_label' => 'Vorherige', - 'intro_skip_label' => 'Überspringen', - 'intro_done_label' => 'Erledigt', - 'between_dates_breadcrumb' => 'Zwischen :start und :end', - 'all_journals_without_budget' => 'Alle Buchungen ohne Budget', - 'journals_without_budget' => 'Buchungen ohne Budget', - 'all_journals_without_category' => 'Alle Buchungen ohne Kategorie', - 'journals_without_category' => 'Buchungen ohne Kategorie', - 'all_journals_for_account' => 'Alle Buchungen für Konto „:name”', - 'chart_all_journals_for_account' => 'Diagramm für alle Buchungen des Kontos „:name”', - 'journals_in_period_for_account' => 'Alle Buchungen für Konto „:name” zwischen :start und :end', - 'journals_in_period_for_account_js' => 'Alle Buchungen für Account {title} zwischen {start} und {end}', - 'transferred' => 'Umgebucht', - 'all_withdrawal' => 'Alle Ausgaben', - 'all_transactions' => 'Alle Buchungen', - 'title_withdrawal_between' => 'Alle Ausgaben zwischen :start und :end', - 'all_deposit' => 'Alle Einnahmen', - 'title_deposit_between' => 'Alle Einnahmen zwischen :start und :end', - 'all_transfers' => 'Alle Umbuchungen', - 'title_transfers_between' => 'Alle Umbuchungen zwischen :start und :end', - 'all_transfer' => 'Alle Umbuchungen', - 'all_journals_for_tag' => 'Alle Buchungen für das Schlagwort „:tag”', - 'title_transfer_between' => 'Alle Umbuchungen zwischen :start und :end', - 'all_journals_for_category' => 'Alle Buchungen für Kategorie „:name”', - 'all_journals_for_budget' => 'Alle Buchungen im Budget „:name”', - 'chart_all_journals_for_budget' => 'Diagramm für alle Buchungen im Budget „:name”', - 'journals_in_period_for_category' => 'Alle Buchungen für Kategorie „:name” zwischen :start und :end', - 'journals_in_period_for_tag' => 'Alle Buchungen für das Schlagwort „:tag” zwischen :start und :end', - 'not_available_demo_user' => 'Die Funktionen, auf welche sie zugreifen wollen, steht Demo-Benutzern nicht zur Verfügung.', - 'exchange_rate_instructions' => 'Das Bestandskonto „@name” akzeptiert nur Buchungen in @native_currency. Wenn Sie stattdessen @foreign_currency verwenden wollen, sollten Sie sicherstellen, dass der Betrag auch in @native_currency angegeben ist:', - 'transfer_exchange_rate_instructions' => 'Das Quellkonto „@source_name” akzeptiert nur Buchungen in @source_currency. Das Zielkonto "@dest_name" akzeptiert nur Buchungen in @dest_currency. Sie müssen den Betrag in beiden Währungen korrekt angeben.', - 'transaction_data' => 'Transaktionsdaten', - 'invalid_server_configuration' => 'Ungültige Serverkonfiguration', - 'invalid_locale_settings' => 'Firefly III ist nicht in der Lage, Geldbeträge zu formatieren, weil Ihrem Server die erforderlichen Pakete fehlen. Es gibt Anleitungen, wie Sie dies tun können.', - 'quickswitch' => 'Schnellauswahl', - 'sign_in_to_start' => 'Melden Sie sich an, um Ihre Sitzung zu starten', - 'sign_in' => 'Anmelden', - 'register_new_account' => 'Neues Benutzerkonto anlegen', - 'forgot_my_password' => 'Passwort vergessen', - 'problems_with_input' => 'Es gab Probleme mit Ihrer Eingabe.', - 'reset_password' => 'Ihr Passwort zurücksetzen', - 'button_reset_password' => 'Passwort zurücksetzen', - 'reset_button' => 'Zurücksetzen', - 'want_to_login' => 'Ich möchte mich anmelden', - 'login_page_title' => 'Bei Firefly III anmelden', - 'register_page_title' => 'Bei Firefly III registrieren', - 'forgot_pw_page_title' => 'Haben Sie Ihr Passwort für Firefly III vergessen?', - 'reset_pw_page_title' => 'Passwort für Firefly III zurücksetzen', - 'cannot_reset_demo_user' => 'Sie können das Passwort des Demo-Benutzers nicht zurücksetzen.', - 'no_att_demo_user' => 'Anwender der Demo-Version können keine Anhänge hochladen.', - 'button_register' => 'Registrieren', - 'authorization' => 'Autorisierung', - 'active_bills_only' => 'nur aktive Rechnungen', - 'active_bills_only_total' => 'Alle aktiven Rechnungen', - 'active_exp_bills_only' => 'nur aktive und erwartete Rechnungen', - 'active_exp_bills_only_total' => 'nur aktive und erwartete Rechnungen', - 'per_period_sum_1D' => 'Erwartete tägliche Kosten', - 'per_period_sum_1W' => 'Erwartete wöchentliche Kosten', - 'per_period_sum_1M' => 'Erwartete monatliche Kosten', - 'per_period_sum_3M' => 'Erwartete vierteljährliche Kosten', - 'per_period_sum_6M' => 'Erwartete halbjährliche Kosten', - 'per_period_sum_1Y' => 'Erwartete jährliche Kosten', - 'average_per_bill' => 'Durchschnitt je Rechnung', - 'expected_total' => 'Voraussichtliche Summe', - 'reconciliation_account_name' => ':name Kontenabgleich (:currency)', - 'saved' => 'Gespeichert', - 'advanced_options' => 'Erweiterte Optionen', - 'advanced_options_explain' => 'Auf einigen Seiten in Firefly III sind hinter dieser Schaltfläche erweiterte Optionen zu finden. Diese Seite enthält hier nichts Außergewöhnliches, aber schauen Sie sich die anderen an!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Schließen', + 'actions' => 'Aktionen', + 'edit' => 'Bearbeiten', + 'delete' => 'Löschen', + 'split' => 'Teilen', + 'single_split' => 'Teilen', + 'clone' => 'Duplizieren', + 'clone_and_edit' => 'Duplizieren und Bearbeiten', + 'confirm_action' => 'Aktion bestätigen', + 'last_seven_days' => 'Letzte sieben Tage', + 'last_thirty_days' => 'Letzte 30 Tage', + 'last_180_days' => 'Letzte 180 Tage', + 'month_to_date' => 'Bisheriger Monat', + 'year_to_date' => 'Bisheriges Jahr', + 'YTD' => 'Seit Jahresbeginn', + 'welcome_back' => 'Überblick', + 'everything' => 'Alle', + 'today' => 'Heute', + 'customRange' => 'Individueller Bereich', + 'date_range' => 'Datumsbereich', + 'apply' => 'Übernehmen', + 'select_date' => 'Wähle ein Datum..', + 'cancel' => 'Abbrechen', + 'from' => 'Von', + 'to' => 'Bis', + 'structure' => 'Struktur', + 'help_translating' => 'Dieser Hilfetext ist noch nicht in Deutsch verfügbar. Möchten Sie beim Übersetzen helfen?', + 'showEverything' => 'Alles anzeigen', + 'never' => 'Nie', + 'no_results_for_empty_search' => 'Ihre Suche war leer, also wurde nichts gefunden.', + 'removed_amount' => ':amount entfernt', + 'added_amount' => ':amount hinzugefügt', + 'asset_account_role_help' => 'Alle zusätzlichen Optionen können später eingestellt werden.', + 'Opening balance' => 'Eröffnungssaldo', + 'create_new_stuff' => 'Erstelle neue Dinge', + 'new_withdrawal' => 'Neue Ausgabe', + 'create_new_transaction' => 'Neue Buchung erstellen', + 'sidebar_frontpage_create' => 'Erstellen', + 'new_transaction' => 'Neue Buchung', + 'no_rules_for_bill' => 'Dieser Rechnung sind keine Regeln zugeordnet.', + 'go_to_asset_accounts' => 'Bestandskonten anzeigen', + 'go_to_budgets' => 'Budgets anzeigen', + 'go_to_withdrawals' => 'Ausgaben anzeigen', + 'clones_journal_x' => 'Diese Buchung ist ein Duplikat von ":description" (#:id)', + 'go_to_categories' => 'Kategorien anzeigen', + 'go_to_bills' => 'Rechnungen anzeigen', + 'go_to_expense_accounts' => 'Ausgabenkonten anzeigen', + 'go_to_revenue_accounts' => 'Einnahmekonten anzeigen', + 'go_to_piggies' => 'Sparschweine anzeigen', + 'new_deposit' => 'Neue Einnahme', + 'new_transfer' => 'Neue Umbuchung', + 'new_transfers' => 'Neue Umbuchung', + 'new_asset_account' => 'Neues Bestandskonto', + 'new_expense_account' => 'Neues Ausgabenkonto', + 'new_revenue_account' => 'Neues Einnahmenkonto', + 'new_liabilities_account' => 'Neue Verbindlichkeit', + 'new_budget' => 'Neues Budget', + 'new_bill' => 'Neue Rechnung', + 'block_account_logout' => 'Sie wurden ausgeloggt. Blockierte Benutzerkonten können diese Seite nicht nutzen. Haben Sie sich mit einer gültigen E-Mail Adresse registriert?', + 'flash_success' => 'Geschafft!', + 'flash_info' => 'Nachricht', + 'flash_warning' => 'Achtung!', + 'flash_error' => 'Fehler!', + 'flash_danger' => 'Achtung!', + 'flash_info_multiple' => 'Es gibt eine Nachricht | Es gibt :count Nachrichten', + 'flash_error_multiple' => 'Es gibt einen Fehler|Es gibt :count Fehler', + 'net_worth' => 'Eigenkapital', + 'help_for_this_page' => 'Hilfe zu dieser Seite', + 'help_for_this_page_body' => 'Weitere Informationen über diese Seite finden Sie in unserer Dokumentation (engl.).', + 'two_factor_welcome' => 'Hallo!', + 'two_factor_enter_code' => 'Um fortzufahren geben Sie bitte ihren Zwei-Faktor-Authentifizierungscode ein. Ihre Anwendung kann diesen für Sie generieren.', + 'two_factor_code_here' => 'Code hier eingeben', + 'two_factor_title' => 'Zwei-Faktor-Authentifizierung', + 'authenticate' => 'Authentifizieren', + 'two_factor_forgot_title' => 'Zwei-Faktor-Authentifizierung verloren', + 'two_factor_forgot' => 'Ich kann keine 2FA-Codes generieren.', + 'two_factor_lost_header' => 'Haben Sie ihre Zwei-Faktor-Authentifizierung verloren?', + 'two_factor_lost_intro' => 'Wenn Sie auch Ihre Sicherungsschlüssel verloren haben, haben Sie Pech. Dies ist nichts, was Sie über die Weboberfläche beheben können. Sie haben jedoch zwei Möglichkeiten.', + 'two_factor_lost_fix_self' => 'Wenn Sie Ihre eigene Instanz von Firefly III betreiben, lesen Sie :site_owner und bitten Sie ihn, Ihre Zwei-Faktor Authentifizierung zurückzusetzen.', + 'mfa_backup_code' => 'Sie haben sich mit einem Sicherungsschlüssel bei Firefly III angemeldet. Dieser kann nun nicht mehr verwendet werden, also streichen Sie ihn aus Ihrer Liste.', + 'pref_two_factor_new_backup_codes' => 'Neue Sicherungsschlüssel abrufen', + 'pref_two_factor_backup_code_count' => 'Sie haben :count gültigen Backup-Code.|Sie haben :count gültige Backup-Codes.', + '2fa_i_have_them' => 'Wurde gespeichert!', + 'warning_much_data' => ':days Tage Daten können eine Weile zum Laden benötigen.', + 'registered' => 'Sie haben sich erfolgreich registriert!', + 'Default asset account' => 'Standard-Bestandskonto', + 'no_budget_pointer' => 'Sie scheinen noch keine Budgets festgelegt zu haben. Sie sollten einige davon auf der Seite Budgets anlegen. Budgets können Ihnen dabei helfen, den Überblick über die Ausgaben zu behalten.', + 'no_bill_pointer' => 'Sie scheinen noch keine Rechnungen zu haben. Sie sollten einige auf der Seite Rechnungen erstellen. Anhand der Rechnungen können Sie den Überblick über Ihre Ausgaben behalten.', + 'Savings account' => 'Sparkonto', + 'Credit card' => 'Kreditkarte', + 'source_accounts' => 'Quellkonto|Quellkonten', + 'destination_accounts' => 'Zielkonto|Zielkonten', + 'user_id_is' => 'Ihre Benutzerkennung ist :user', + 'field_supports_markdown' => 'Dieses Feld unterstützt Markdown.', + 'need_more_help' => 'Wenn Sie Hilfe beim Bedienen von Firefly III brauchen, erstellen Sie ein Ticket auf Github.', + 'reenable_intro_text' => 'Sie können die Einführungsanleitung auch erneut aktivieren.', + 'intro_boxes_after_refresh' => 'Die Einführungsfelder werden wieder angezeigt, wenn Sie die Seite aktualisieren.', + 'show_all_no_filter' => 'Alle Buchungen anzeigen, ohne diese nach Datum zu gruppieren.', + 'expenses_by_category' => 'Ausgaben nach Kategorie', + 'expenses_by_budget' => 'Ausgaben nach Budget', + 'income_by_category' => 'Einnahmen nach Kategorie', + 'expenses_by_asset_account' => 'Ausgaben nach Bestandskonto', + 'expenses_by_expense_account' => 'Ausgaben nach Ausgabenkonto', + 'cannot_redirect_to_account' => 'Entschuldigen Sie bitte. Firefly III kann Sie nicht zur richtigen Seite weiterleiten.', + 'sum_of_expenses' => 'Summe von Ausgaben', + 'sum_of_income' => 'Summe von Einnahmen', + 'liabilities' => 'Verbindlichkeiten', + 'spent_in_specific_budget' => 'Ausgaben im Budget „:budget”', + 'spent_in_specific_double' => 'Ausgaben auf Konto ":account"', + 'earned_in_specific_double' => 'Einnahmen auf Konto ":account"', + 'source_account' => 'Quellkonto', + 'source_account_reconciliation' => 'Sie können das Quellkonto einer Kontenausgleichsbuchung nicht bearbeiten.', + 'destination_account' => 'Zielkonto', + 'destination_account_reconciliation' => 'Sie können das Zielkonto einer Kontenausgleichsbuchung nicht bearbeiten.', + 'sum_of_expenses_in_budget' => 'Gesamtausgaben im Budget „:budget”', + 'left_in_budget_limit' => 'Verbleibend zum Ausgeben laut der Budgetplanung', + 'current_period' => 'Aktueller Zeitraum', + 'show_the_current_period_and_overview' => 'Zeigen Sie den aktuellen Zeitraum und die Übersicht', + 'pref_languages_locale' => 'Damit eine andere Sprache als Englisch richtig funktioniert muss Ihr Betriebssystem mit den korrekten Gebietsschema-Informationen ausgestattet werden. Wenn diese nicht vorhanden sind, können die Währungsdaten, Termine und Mengen falsch formatiert sein.', + 'budget_in_period' => 'Alle Buchungen für den Kostenrahmen „:name” zwischen :start und :end in :currency', + 'chart_budget_in_period' => 'Diagramm für alle Buchungen für den Kostenrahmen ":name" zwischen :start und :end in :currency', + 'chart_budget_in_period_only_currency' => 'Der von Ihnen geplante Betrag war in :currency, so dass dieses Diagramm nur die Buchungen in :currency anzeigt.', + 'chart_account_in_period' => 'Diagramm für alle Buchungen für das Konto „:name” (:balance) zwischen :start und :end', + 'chart_category_in_period' => 'Diagramm für alle Buchungen der Kategorie „:name” zwischen :start und :end', + 'chart_category_all' => 'Diagramm für alle Buchungen der Kategorie „:name”', + 'clone_withdrawal' => 'Diese Ausgabe duplizieren', + 'clone_deposit' => 'Diese Einnahme duplizieren', + 'clone_transfer' => 'Diese Umbuchung duplizieren', + 'multi_select_no_selection' => 'Nichts ausgewählt', + 'multi_select_select_all' => 'Alle auswählen', + 'multi_select_n_selected' => 'ausgewählt', + 'multi_select_all_selected' => 'Alle ausgewählt', + 'multi_select_filter_placeholder' => 'Suche..', + 'intro_next_label' => 'Nächste', + 'intro_prev_label' => 'Vorherige', + 'intro_skip_label' => 'Überspringen', + 'intro_done_label' => 'Erledigt', + 'between_dates_breadcrumb' => 'Zwischen :start und :end', + 'all_journals_without_budget' => 'Alle Buchungen ohne Budget', + 'journals_without_budget' => 'Buchungen ohne Budget', + 'all_journals_without_category' => 'Alle Buchungen ohne Kategorie', + 'journals_without_category' => 'Buchungen ohne Kategorie', + 'all_journals_for_account' => 'Alle Buchungen für Konto „:name”', + 'chart_all_journals_for_account' => 'Diagramm für alle Buchungen des Kontos „:name”', + 'journals_in_period_for_account' => 'Alle Buchungen für Konto „:name” zwischen :start und :end', + 'journals_in_period_for_account_js' => 'Alle Buchungen für Account {title} zwischen {start} und {end}', + 'transferred' => 'Umgebucht', + 'all_withdrawal' => 'Alle Ausgaben', + 'all_transactions' => 'Alle Buchungen', + 'title_withdrawal_between' => 'Alle Ausgaben zwischen :start und :end', + 'all_deposit' => 'Alle Einnahmen', + 'title_deposit_between' => 'Alle Einnahmen zwischen :start und :end', + 'all_transfers' => 'Alle Umbuchungen', + 'title_transfers_between' => 'Alle Umbuchungen zwischen :start und :end', + 'all_transfer' => 'Alle Umbuchungen', + 'all_journals_for_tag' => 'Alle Buchungen für das Schlagwort „:tag”', + 'title_transfer_between' => 'Alle Umbuchungen zwischen :start und :end', + 'all_journals_for_category' => 'Alle Buchungen für Kategorie „:name”', + 'all_journals_for_budget' => 'Alle Buchungen im Budget „:name”', + 'chart_all_journals_for_budget' => 'Diagramm für alle Buchungen im Budget „:name”', + 'journals_in_period_for_category' => 'Alle Buchungen für Kategorie „:name” zwischen :start und :end', + 'journals_in_period_for_tag' => 'Alle Buchungen für das Schlagwort „:tag” zwischen :start und :end', + 'not_available_demo_user' => 'Die Funktionen, auf welche sie zugreifen wollen, steht Demo-Benutzern nicht zur Verfügung.', + 'exchange_rate_instructions' => 'Das Bestandskonto „@name” akzeptiert nur Buchungen in @native_currency. Wenn Sie stattdessen @foreign_currency verwenden wollen, sollten Sie sicherstellen, dass der Betrag auch in @native_currency angegeben ist:', + 'transfer_exchange_rate_instructions' => 'Das Quellkonto „@source_name” akzeptiert nur Buchungen in @source_currency. Das Zielkonto "@dest_name" akzeptiert nur Buchungen in @dest_currency. Sie müssen den Betrag in beiden Währungen korrekt angeben.', + 'transaction_data' => 'Transaktionsdaten', + 'invalid_server_configuration' => 'Ungültige Serverkonfiguration', + 'invalid_locale_settings' => 'Firefly III ist nicht in der Lage, Geldbeträge zu formatieren, weil Ihrem Server die erforderlichen Pakete fehlen. Es gibt Anleitungen, wie Sie dies tun können.', + 'quickswitch' => 'Schnellauswahl', + 'sign_in_to_start' => 'Melden Sie sich an, um Ihre Sitzung zu starten', + 'sign_in' => 'Anmelden', + 'register_new_account' => 'Neues Benutzerkonto anlegen', + 'forgot_my_password' => 'Passwort vergessen', + 'problems_with_input' => 'Es gab Probleme mit Ihrer Eingabe.', + 'reset_password' => 'Ihr Passwort zurücksetzen', + 'button_reset_password' => 'Passwort zurücksetzen', + 'reset_button' => 'Zurücksetzen', + 'want_to_login' => 'Ich möchte mich anmelden', + 'login_page_title' => 'Bei Firefly III anmelden', + 'register_page_title' => 'Bei Firefly III registrieren', + 'forgot_pw_page_title' => 'Haben Sie Ihr Passwort für Firefly III vergessen?', + 'reset_pw_page_title' => 'Passwort für Firefly III zurücksetzen', + 'cannot_reset_demo_user' => 'Sie können das Passwort des Demo-Benutzers nicht zurücksetzen.', + 'no_att_demo_user' => 'Anwender der Demo-Version können keine Anhänge hochladen.', + 'button_register' => 'Registrieren', + 'authorization' => 'Autorisierung', + 'active_bills_only' => 'nur aktive Rechnungen', + 'active_bills_only_total' => 'Alle aktiven Rechnungen', + 'active_exp_bills_only' => 'nur aktive und erwartete Rechnungen', + 'active_exp_bills_only_total' => 'nur aktive und erwartete Rechnungen', + 'per_period_sum_1D' => 'Erwartete tägliche Kosten', + 'per_period_sum_1W' => 'Erwartete wöchentliche Kosten', + 'per_period_sum_1M' => 'Erwartete monatliche Kosten', + 'per_period_sum_3M' => 'Erwartete vierteljährliche Kosten', + 'per_period_sum_6M' => 'Erwartete halbjährliche Kosten', + 'per_period_sum_1Y' => 'Erwartete jährliche Kosten', + 'average_per_bill' => 'Durchschnitt je Rechnung', + 'expected_total' => 'Voraussichtliche Summe', + 'reconciliation_account_name' => ':name Kontenabgleich (:currency)', + 'saved' => 'Gespeichert', + 'advanced_options' => 'Erweiterte Optionen', + 'advanced_options_explain' => 'Auf einigen Seiten in Firefly III sind hinter dieser Schaltfläche erweiterte Optionen zu finden. Diese Seite enthält hier nichts Außergewöhnliches, aber schauen Sie sich die anderen an!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'deaktiviert', - 'no_webhook_messages' => 'Es gibt keine Webhook Nachrichten', - 'webhook_trigger_STORE_TRANSACTION' => 'Nach Erstellen einer Buchung', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Nach Aktualisierung einer Buchung', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Nach dem Löschen einer Buchung', - 'webhook_response_TRANSACTIONS' => 'Buchungsdetails', - 'webhook_response_ACCOUNTS' => 'Kontodetails', - 'webhook_response_none_NONE' => 'Keine Daten', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Überprüfen', - 'create_new_webhook' => 'Neuen Webhook erstellen', - 'webhooks_create_breadcrumb' => 'Neuen Webhook erstellen', - 'webhook_trigger_form_help' => 'Geben Sie an, bei welchem Ereignis der Webhook ausgelöst werden soll', - 'webhook_response_form_help' => 'Geben Sie an, was der Webhook an die URL senden soll.', - 'webhook_delivery_form_help' => 'In welchem Format der Webhook Daten liefern muss.', - 'webhook_active_form_help' => 'Der Webhook muss aktiv sein oder wird nicht aufgerufen.', - 'stored_new_webhook' => 'Neuer Webhook ":title " gespeichert', - 'delete_webhook' => 'Webhook löschen', - 'deleted_webhook' => 'Webhook ":title" gelöscht', - 'edit_webhook' => 'Webhook ":title " bearbeiten', - 'updated_webhook' => 'Webhook ":title " aktualisiert', - 'edit_webhook_js' => 'Webhook "{title} " bearbeiten', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Der Webhook wurde für die angezeigte Transaktion ausgelöst. Bitte warten Sie, bis die Ergebnisse erscheinen.', - 'webhook_messages' => 'Webhook-Nachricht', - 'view_message' => 'Nachricht anzeigen', - 'view_attempts' => 'Gescheiterte Versuche anzeigen', - 'message_content_title' => 'Webhook Nachrichteninhalt', - 'message_content_help' => 'Dies ist der Inhalt der Nachricht, die mit diesem Webhook gesendet (oder zu Senden versucht) wurde.', - 'attempt_content_title' => 'Webhook Versuche', - 'attempt_content_help' => 'Dies sind alle erfolglosen Versuche dieser Webhook-Nachricht, an die konfigurierte URL zu senden. Nach einiger Zeit wird es Firefly III nicht mehr versuchen.', - 'no_attempts' => 'Es gibt keine erfolglosen Versuche. Das ist eine gute Sache!', - 'webhook_attempt_at' => 'Versuch bei {moment}', - 'logs' => 'Protokolle', - 'response' => 'Antwort', - 'visit_webhook_url' => 'Webhook-URL besuchen', - 'reset_webhook_secret' => 'Webhook Secret zurücksetzen', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") wurde gespeichert.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") wurde aktualisiert.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'deaktiviert', + 'no_webhook_messages' => 'Es gibt keine Webhook Nachrichten', + 'webhook_trigger_STORE_TRANSACTION' => 'Nach Erstellen einer Buchung', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Nach Aktualisierung einer Buchung', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Nach dem Löschen einer Buchung', + 'webhook_response_TRANSACTIONS' => 'Buchungsdetails', + 'webhook_response_ACCOUNTS' => 'Kontodetails', + 'webhook_response_none_NONE' => 'Keine Daten', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Überprüfen', + 'create_new_webhook' => 'Neuen Webhook erstellen', + 'webhooks_create_breadcrumb' => 'Neuen Webhook erstellen', + 'webhook_trigger_form_help' => 'Geben Sie an, bei welchem Ereignis der Webhook ausgelöst werden soll', + 'webhook_response_form_help' => 'Geben Sie an, was der Webhook an die URL senden soll.', + 'webhook_delivery_form_help' => 'In welchem Format der Webhook Daten liefern muss.', + 'webhook_active_form_help' => 'Der Webhook muss aktiv sein oder wird nicht aufgerufen.', + 'stored_new_webhook' => 'Neuer Webhook ":title " gespeichert', + 'delete_webhook' => 'Webhook löschen', + 'deleted_webhook' => 'Webhook ":title" gelöscht', + 'edit_webhook' => 'Webhook ":title " bearbeiten', + 'updated_webhook' => 'Webhook ":title " aktualisiert', + 'edit_webhook_js' => 'Webhook "{title} " bearbeiten', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Der Webhook wurde für die angezeigte Transaktion ausgelöst. Bitte warten Sie, bis die Ergebnisse erscheinen.', + 'webhook_messages' => 'Webhook-Nachricht', + 'view_message' => 'Nachricht anzeigen', + 'view_attempts' => 'Gescheiterte Versuche anzeigen', + 'message_content_title' => 'Webhook Nachrichteninhalt', + 'message_content_help' => 'Dies ist der Inhalt der Nachricht, die mit diesem Webhook gesendet (oder zu Senden versucht) wurde.', + 'attempt_content_title' => 'Webhook Versuche', + 'attempt_content_help' => 'Dies sind alle erfolglosen Versuche dieser Webhook-Nachricht, an die konfigurierte URL zu senden. Nach einiger Zeit wird es Firefly III nicht mehr versuchen.', + 'no_attempts' => 'Es gibt keine erfolglosen Versuche. Das ist eine gute Sache!', + 'webhook_attempt_at' => 'Versuch bei {moment}', + 'logs' => 'Protokolle', + 'response' => 'Antwort', + 'visit_webhook_url' => 'Webhook-URL besuchen', + 'reset_webhook_secret' => 'Webhook Secret zurücksetzen', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") wurde gespeichert.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") wurde aktualisiert.', // API access - 'authorization_request' => 'Firefly III v:version Autorisierungsanfrage', - 'authorization_request_intro' => 'Anwendung ":client" bittet um Erlaubnis, auf Ihre Finanzverwaltung zuzugreifen. Möchten Sie :client erlauben, auf diese Datensätze zuzugreifen?', - 'authorization_request_site' => 'Sie werden zu :url weitergeleitet, welche dann auf Ihre Daten in Firefly III zugreifen kann.', - 'authorization_request_invalid' => 'Diese Zugriffsanfrage ist ungültig. Bitte folgen Sie nie wieder diesem Link.', - 'scopes_will_be_able' => 'Diese Anwendung kann:', - 'button_authorize' => 'Erlauben', - 'none_in_select_list' => '(Keine)', - 'no_piggy_bank' => '(kein Sparschwein)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Bezahlt in :currency', - 'unpaid_in_currency' => 'Unbezahlt in :currency', - 'is_alpha_warning' => 'Sie nutzen eine ALPHA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.', - 'is_beta_warning' => 'Sie verwenden eine BETA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.', - 'all_destination_accounts' => 'Zielkonten', - 'all_source_accounts' => 'Quellkonten', - 'back_to_index' => 'Zurück zum Index', - 'cant_logout_guard' => 'Firefly III kann Sie nicht abmelden.', - 'internal_reference' => 'Interne Referenz', + 'authorization_request' => 'Firefly III v:version Autorisierungsanfrage', + 'authorization_request_intro' => 'Anwendung ":client" bittet um Erlaubnis, auf Ihre Finanzverwaltung zuzugreifen. Möchten Sie :client erlauben, auf diese Datensätze zuzugreifen?', + 'authorization_request_site' => 'Sie werden zu :url weitergeleitet, welche dann auf Ihre Daten in Firefly III zugreifen kann.', + 'authorization_request_invalid' => 'Diese Zugriffsanfrage ist ungültig. Bitte folgen Sie nie wieder diesem Link.', + 'scopes_will_be_able' => 'Diese Anwendung kann:', + 'button_authorize' => 'Erlauben', + 'none_in_select_list' => '(Keine)', + 'no_piggy_bank' => '(kein Sparschwein)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Bezahlt in :currency', + 'unpaid_in_currency' => 'Unbezahlt in :currency', + 'is_alpha_warning' => 'Sie nutzen eine ALPHA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.', + 'is_beta_warning' => 'Sie verwenden eine BETA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.', + 'all_destination_accounts' => 'Zielkonten', + 'all_source_accounts' => 'Quellkonten', + 'back_to_index' => 'Zurück zum Index', + 'cant_logout_guard' => 'Firefly III kann Sie nicht abmelden.', + 'internal_reference' => 'Interne Referenz', // check for updates: - 'update_check_title' => 'Nach Updates suchen', - 'admin_update_check_title' => 'Automatisch nach Updates suchen', - 'admin_update_check_explain' => 'Firefly III kann automatisch nach Aktualisierungen suchen. Wenn Sie diese Einstellung aktivieren, wird der Firefly III Aktualisierungsserver kontaktiert, um zu prüfen, ob eine neue Version von Firefly III verfügbar ist. Wenn dies der Fall ist, erhalten Sie eine Benachrichtigung. Sie können diese Benachrichtigung mit der Schaltfläche auf der rechten Seite testen. Bitte geben Sie unten an, ob Firefly III nach Aktualisierungen suchen soll.', - 'check_for_updates_permission' => 'Firefly III kann nach Updates suchen, benötigt jedoch Ihre Erlaubnis dazu. Bitte gehen Sie zur Administration, um anzugeben, ob diese Funktion aktiviert werden soll.', - 'updates_ask_me_later' => 'Später fragen', - 'updates_do_not_check' => 'Nicht nach Updates suchen', - 'updates_enable_check' => 'Nach Updates suchen', - 'admin_update_check_now_title' => 'Auf Update überprüfen', - 'admin_update_check_now_explain' => 'Wenn Sie den Knopf drücken, wird Firefly III überprüfen, ob Ihre Version die aktuellste ist.', - 'check_for_updates_button' => 'Jetzt prüfen!', - 'update_new_version_alert' => 'Eine neue Version von Firefly III ist verfügbar. Sie verwenden :your_version, die neueste Version ist :new_version, die am :date veröffentlicht wurde.', - 'update_version_beta' => 'Seien Sie vorsichtig bei der Verwendung dieser BETA-Version. Sie könnte noch Fehler enthaltern.', - 'update_version_alpha' => 'Seien Sie vorsichtig bei der Verwendung dieser APLPHA-Version. Sie kann Fehler enthaltern.', - 'update_current_dev_older' => 'Sie verwenden die Entwicklungsversion „:version”, die älter ist als die neueste Version :new_version. Bitte aktualisieren Sie!', - 'update_current_dev_newer' => 'Sie verwenden die Entwicklungsversion „:version”, die neuer ist als die letzte Version :new_version.', - 'update_current_version_alert' => 'Sie verwenden Version :version. Dies ist die neueste verfügbare Version.', - 'update_newer_version_alert' => 'Sie verwenden :your_version. Ihre Version ist neuer als die neueste Version (:new_version).', - 'update_check_error' => 'Bei der Suche nach Aktualisierungen ist ein Fehler aufgetreten: :error', - 'unknown_error' => 'Leider ist ein unbekannter Fehler aufgetreten.', - 'disabled_but_check' => 'Die Aktualisierungsprüfung ist deaktiviert. Vergessen Sie also nicht, von Zeit zu Zeit selbst nach Aktualisierungen zu suchen. Vielen Dank!', - 'admin_update_channel_title' => 'Aktualisierungskanal', - 'admin_update_channel_explain' => 'Firefly III verfügt über drei Aktualisierungskanäle, welche bestimmen, wie weit Sie in Bezug auf Funktionen, Verbesserungen und Fehler experimentierfreudig sind. Nutzen Sie den „Beta”-Kanal, wenn Sie abenteuerlustig sind, und den „Alpha”-Kanal, wenn Sie ein gefährliches Leben führen möchten.', - 'update_channel_stable' => 'Stabil — Alles sollte wie erwartet funktionieren.', - 'update_channel_beta' => 'Beta — Neue Funktionen, aber einige Funktionen könnten fehlerhaft sein.', - 'update_channel_alpha' => 'Alpha — Wir werfen neue Features hinein und schauen, was funktioniert.', + 'update_check_title' => 'Nach Updates suchen', + 'admin_update_check_title' => 'Automatisch nach Updates suchen', + 'admin_update_check_explain' => 'Firefly III kann automatisch nach Aktualisierungen suchen. Wenn Sie diese Einstellung aktivieren, wird der Firefly III Aktualisierungsserver kontaktiert, um zu prüfen, ob eine neue Version von Firefly III verfügbar ist. Wenn dies der Fall ist, erhalten Sie eine Benachrichtigung. Sie können diese Benachrichtigung mit der Schaltfläche auf der rechten Seite testen. Bitte geben Sie unten an, ob Firefly III nach Aktualisierungen suchen soll.', + 'check_for_updates_permission' => 'Firefly III kann nach Updates suchen, benötigt jedoch Ihre Erlaubnis dazu. Bitte gehen Sie zur Administration, um anzugeben, ob diese Funktion aktiviert werden soll.', + 'updates_ask_me_later' => 'Später fragen', + 'updates_do_not_check' => 'Nicht nach Updates suchen', + 'updates_enable_check' => 'Nach Updates suchen', + 'admin_update_check_now_title' => 'Auf Update überprüfen', + 'admin_update_check_now_explain' => 'Wenn Sie den Knopf drücken, wird Firefly III überprüfen, ob Ihre Version die aktuellste ist.', + 'check_for_updates_button' => 'Jetzt prüfen!', + 'update_new_version_alert' => 'Eine neue Version von Firefly III ist verfügbar. Sie verwenden :your_version, die neueste Version ist :new_version, die am :date veröffentlicht wurde.', + 'update_version_beta' => 'Seien Sie vorsichtig bei der Verwendung dieser BETA-Version. Sie könnte noch Fehler enthaltern.', + 'update_version_alpha' => 'Seien Sie vorsichtig bei der Verwendung dieser APLPHA-Version. Sie kann Fehler enthaltern.', + 'update_current_dev_older' => 'Sie verwenden die Entwicklungsversion „:version”, die älter ist als die neueste Version :new_version. Bitte aktualisieren Sie!', + 'update_current_dev_newer' => 'Sie verwenden die Entwicklungsversion „:version”, die neuer ist als die letzte Version :new_version.', + 'update_current_version_alert' => 'Sie verwenden Version :version. Dies ist die neueste verfügbare Version.', + 'update_newer_version_alert' => 'Sie verwenden :your_version. Ihre Version ist neuer als die neueste Version (:new_version).', + 'update_check_error' => 'Bei der Suche nach Aktualisierungen ist ein Fehler aufgetreten: :error', + 'unknown_error' => 'Leider ist ein unbekannter Fehler aufgetreten.', + 'disabled_but_check' => 'Die Aktualisierungsprüfung ist deaktiviert. Vergessen Sie also nicht, von Zeit zu Zeit selbst nach Aktualisierungen zu suchen. Vielen Dank!', + 'admin_update_channel_title' => 'Aktualisierungskanal', + 'admin_update_channel_explain' => 'Firefly III verfügt über drei Aktualisierungskanäle, welche bestimmen, wie weit Sie in Bezug auf Funktionen, Verbesserungen und Fehler experimentierfreudig sind. Nutzen Sie den „Beta”-Kanal, wenn Sie abenteuerlustig sind, und den „Alpha”-Kanal, wenn Sie ein gefährliches Leben führen möchten.', + 'update_channel_stable' => 'Stabil — Alles sollte wie erwartet funktionieren.', + 'update_channel_beta' => 'Beta — Neue Funktionen, aber einige Funktionen könnten fehlerhaft sein.', + 'update_channel_alpha' => 'Alpha — Wir werfen neue Features hinein und schauen, was funktioniert.', // search - 'search' => 'Suche', - 'search_query' => 'Abfrage', - 'search_found_transactions' => 'Firefly III hat :count Transaktion in :time Sekunden gefunden.|Firefly III hat :count Transaktionen in :time Sekunden gefunden.', - 'search_found_more_transactions' => 'Firefly III hat mehr als :count Transaktionen in :time Sekunden gefunden.', - 'search_for_query' => 'Firefly III sucht nach Buchungen mit folgenden Wörtern im Namen: :query', - 'invalid_operators_list' => 'Diese Suchparameter sind ungültig und wurden ignoriert.', + 'search' => 'Suche', + 'search_query' => 'Abfrage', + 'search_found_transactions' => 'Firefly III hat :count Transaktion in :time Sekunden gefunden.|Firefly III hat :count Transaktionen in :time Sekunden gefunden.', + 'search_found_more_transactions' => 'Firefly III hat mehr als :count Transaktionen in :time Sekunden gefunden.', + 'search_for_query' => 'Firefly III sucht nach Buchungen mit folgenden Wörtern im Namen: :query', + 'invalid_operators_list' => 'Diese Suchparameter sind ungültig und wurden ignoriert.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Buchungsdatum ist „:value”', - 'search_modifier_not_date_on' => 'Buchungsdatum ist nicht ":value"', - 'search_modifier_reconciled' => 'Buchung wurde abgeglichen', - 'search_modifier_not_reconciled' => 'Transaktion wurde nicht abgeglichen', - 'search_modifier_id' => 'Buchungsnummer ist ":value"', - 'search_modifier_not_id' => 'Buchungs-ID ist nicht ":value"', - 'search_modifier_date_before' => 'Buchungsdatum ist vor oder am ":value"', - 'search_modifier_date_after' => 'Buchungsdatum ist nach oder am „:value”', - 'search_modifier_external_id_is' => 'Externe ID lautet „:value”', - 'search_modifier_not_external_id_is' => 'External ID ist nicht ":value"', - 'search_modifier_no_external_url' => 'Die Buchung besitzt keine externe URL', - 'search_modifier_no_external_id' => 'Die Buchung hat keine externe ID', - 'search_modifier_not_any_external_url' => 'Die Buchung besitzt keine externe URL', - 'search_modifier_not_any_external_id' => 'Die Buchung hat keine externe ID', - 'search_modifier_any_external_url' => 'Die Buchung muss eine (beliebige) externe URL aufweisen', - 'search_modifier_any_external_id' => 'Die Buchung muss eine (beliebige) externe ID haben', - 'search_modifier_not_no_external_url' => 'Die Buchung muss eine (beliebige) externe URL haben', - 'search_modifier_not_no_external_id' => 'Die Buchung muss eine (beliebige) externe ID haben', - 'search_modifier_internal_reference_is' => 'Interne Referenz lautet „:value”', - 'search_modifier_not_internal_reference_is' => 'Interne Referenz ist nicht ":value"', - 'search_modifier_description_starts' => 'Beschreibung beginnt mit „:value”', - 'search_modifier_not_description_starts' => 'Beschreibung beginnt nicht mit „:value”', - 'search_modifier_description_ends' => 'Beschreibung endet auf „:value”', - 'search_modifier_not_description_ends' => 'Beschreibung endet nicht auf „:value”', - 'search_modifier_description_contains' => 'Beschreibung enthält „:value”', - 'search_modifier_not_description_contains' => 'Beschreibung enthält nicht „:value”', - 'search_modifier_description_is' => 'Beschreibung ist „:value”', - 'search_modifier_not_description_is' => 'Beschreibung ist nicht ":value"', - 'search_modifier_currency_is' => 'Buchungswährung ist „:value”', - 'search_modifier_not_currency_is' => 'Buchungswährung ist nicht „:value”', - 'search_modifier_foreign_currency_is' => 'Buchungsfremdwährung ist „:value”', - 'search_modifier_not_foreign_currency_is' => 'Buchungsfremdwährung ist nicht „:value”', - 'search_modifier_has_attachments' => 'Die Buchung muss einen Anhang haben', - 'search_modifier_has_no_category' => 'Die Buchung darf keiner Kategorie zugeordnet sein', - 'search_modifier_not_has_no_category' => 'Der Buchung muss einer (beliebigen) Kategorie zugeordnet sein', - 'search_modifier_not_has_any_category' => 'Der Buchung darf keiner Kategorie zugeordnet sein', - 'search_modifier_has_any_category' => 'Die Buchung muss einer Kategorie zugeordnet werden', - 'search_modifier_has_no_budget' => 'Der Buchung darf kein Budget zugeordnet werden', - 'search_modifier_not_has_any_budget' => 'Die Transaktion darf kein Budget haben', - 'search_modifier_has_any_budget' => 'Die Buchung muss einem Budget zugeordnet werden', - 'search_modifier_not_has_no_budget' => 'Die Buchung muss einem (beliebigen) Budget zugeordnet sein', - 'search_modifier_has_no_bill' => 'Der Buchung darf keine Rechnung zugeordnet sein', - 'search_modifier_not_has_no_bill' => 'Der Buchung muss einer (beliebigen) Rechnung zugeordnet sein', - 'search_modifier_has_any_bill' => 'Der Buchung muss eine (beliebige) Rechnung zugeordnet werden', - 'search_modifier_not_has_any_bill' => 'Der Buchung darf keine Rechnung zugeordnet sein', - 'search_modifier_has_no_tag' => 'Der Buchung darf keine Schlagworte zugeordnet werden', - 'search_modifier_not_has_any_tag' => 'Der Buchung dürfen keine Schlagwörter zugeordnet sein', - 'search_modifier_not_has_no_tag' => 'Der Buchung muss ein (beliebiges) Schlagwort zugeordnet sein', - 'search_modifier_has_any_tag' => 'Die Buchung muss ein Schlagwort zugeordnet werden', - 'search_modifier_notes_contains' => 'Die Buchungsnotiz enthält „:value”', - 'search_modifier_not_notes_contains' => 'Die Buchungsnotiz enthält nicht „:value”', - 'search_modifier_notes_starts' => 'Die Buchungsnotiz beginnt mit „:value”', - 'search_modifier_not_notes_starts' => 'Die Buchungsnotiz beginnt nicht mit „:value”', - 'search_modifier_notes_ends' => 'Die Buchungsnotiz endet auf „:value”', - 'search_modifier_not_notes_ends' => 'Die Buchungsnotiz endet nicht auf „:value”', - 'search_modifier_notes_is' => 'Die Buchungsnotiz ist „:value”', - 'search_modifier_not_notes_is' => 'Die Buchungsnotiz ist nicht „:value”', - 'search_modifier_no_notes' => 'Die Buchung hat keine Notiz', - 'search_modifier_not_no_notes' => 'Die Buchung muss eine Notiz haben', - 'search_modifier_any_notes' => 'Die Buchung muss eine Notiz haben', - 'search_modifier_not_any_notes' => 'Die Buchung hat keine Notizen', - 'search_modifier_amount_is' => 'Betrag beträgt genau :value', - 'search_modifier_not_amount_is' => 'Betrag ist nicht :value', - 'search_modifier_amount_less' => 'Betrag ist kleiner oder gleich :value', - 'search_modifier_not_amount_more' => 'Betrag ist kleiner oder gleich :value', - 'search_modifier_amount_more' => 'Betrag ist größer oder gleich :value', - 'search_modifier_not_amount_less' => 'Betrag ist größer oder gleich :value', - 'search_modifier_source_account_is' => 'Quellkonto-Name ist ":value"', - 'search_modifier_not_source_account_is' => 'Quellkonto-Name ist nicht „:value”', - 'search_modifier_source_account_contains' => 'Quellkonto-Name enthält „:value”', - 'search_modifier_not_source_account_contains' => 'Quellkonto-Name enthält nicht „:value”', - 'search_modifier_source_account_starts' => 'Quellkonto-Name beginnt mit „:value”', - 'search_modifier_not_source_account_starts' => 'Quellkonto-Name beginnt nicht mit „:value”', - 'search_modifier_source_account_ends' => 'Quellkonto-Name endet mit „:value”', - 'search_modifier_not_source_account_ends' => 'Quellkonto-Name endet nicht mit „:value”', - 'search_modifier_source_account_id' => 'Quellkonto-ID ist :value', - 'search_modifier_not_source_account_id' => 'Quellkonto-ID ist nicht :value', - 'search_modifier_source_account_nr_is' => 'Quellkontonummer (IBAN) ist „:value”', - 'search_modifier_not_source_account_nr_is' => 'Quellkontonummer (IBAN) ist nicht „:value”', - 'search_modifier_source_account_nr_contains' => 'Quellkontonummer (IBAN) enthält „:value”', - 'search_modifier_not_source_account_nr_contains' => 'Quellkontonummer (IBAN) enthält nicht „:value”', - 'search_modifier_source_account_nr_starts' => 'Quellkontonummer (IBAN) beginnt mit „:value”', - 'search_modifier_not_source_account_nr_starts' => 'Quellkontonummer (IBAN) beginnt nicht mit „:value”', - 'search_modifier_source_account_nr_ends' => 'Quellkontonummer (IBAN) endet auf „:value”', - 'search_modifier_not_source_account_nr_ends' => 'Quellkontonummer (IBAN) endet nicht auf „:value”', - 'search_modifier_destination_account_is' => 'Zielkonto-Name ist „:value”', - 'search_modifier_not_destination_account_is' => 'Zielkonto-Name ist nicht „:value”', - 'search_modifier_destination_account_contains' => 'Zielkonto-Name enthält „:value”', - 'search_modifier_not_destination_account_contains' => 'Zielkonto-Name enthält nicht „:value”', - 'search_modifier_destination_account_starts' => 'Zielkonto-Name beginnt mit „:value”', - 'search_modifier_not_destination_account_starts' => 'Zielkonto-Name beginnt nicht mit „:value”', - 'search_modifier_destination_account_ends' => 'Zielkonto-Name endet mit „:value”', - 'search_modifier_not_destination_account_ends' => 'Zielkonto-Name endet nicht mit „:value”', - 'search_modifier_destination_account_id' => 'Zielkonto-ID ist :value', - 'search_modifier_not_destination_account_id' => 'Zielkonto-ID ist nicht :value', - 'search_modifier_destination_is_cash' => 'Zielkonto ist das "(Bargeld)"-Konto', - 'search_modifier_not_destination_is_cash' => 'Zielkonto ist nicht das "(Bargeld)"-Konto', - 'search_modifier_source_is_cash' => 'Quellkonto ist das "(Bargeld)"-Konto', - 'search_modifier_not_source_is_cash' => 'Quellkonto ist nicht das "(Bargeld)"-Konto', - 'search_modifier_destination_account_nr_is' => 'Zielkontonummer (IBAN) ist „:value”', - 'search_modifier_not_destination_account_nr_is' => 'Zielkontonummer (IBAN) ist „:value”', - 'search_modifier_destination_account_nr_contains' => 'Zielkontonummer (IBAN) enthält „:value”', - 'search_modifier_not_destination_account_nr_contains' => 'Zielkontonummer (IBAN) enthält nicht „:value”', - 'search_modifier_destination_account_nr_starts' => 'Zielkontonummer (IBAN) beginnt mit „:value”', - 'search_modifier_not_destination_account_nr_starts' => 'Zielkontonummer (IBAN) beginnt nicht mit „:value”', - 'search_modifier_destination_account_nr_ends' => 'Zielkontonummer (IBAN) endet mit „:value”', - 'search_modifier_not_destination_account_nr_ends' => 'Zielkontonummer (IBAN) endet nicht auf „:value”', - 'search_modifier_account_id' => 'Quell- oder Zielkonto ID ist/sind :value', - 'search_modifier_not_account_id' => 'Quell- oder Zielkonten-ID ist/sind nicht „:value”', - 'search_modifier_category_is' => 'Kategorie ist „:value”', - 'search_modifier_not_category_is' => 'Kategorie ist nicht „:value”', - 'search_modifier_budget_is' => 'Budget ist „:value”', - 'search_modifier_not_budget_is' => 'Budget ist nicht „:value”', - 'search_modifier_bill_is' => 'Rechnung ist „:value”', - 'search_modifier_not_bill_is' => 'Rechnung ist nicht ":value"', - 'search_modifier_transaction_type' => 'Buchungstyp ist „:value”', - 'search_modifier_not_transaction_type' => 'Buchungstyp ist nicht „:value”', - 'search_modifier_tag_is' => 'Schlagwort ist „:value”', - 'search_modifier_tag_contains' => 'Schlagwort enthält ":value"', - 'search_modifier_not_tag_contains' => 'Schlagwort enthält nicht ":value"', - 'search_modifier_tag_ends' => 'Schlagwort endet mit ":value"', - 'search_modifier_tag_starts' => 'Schlagwort beginnt mit ":value"', - 'search_modifier_not_tag_is' => 'Kein Schlagwort lautet ":value"', - 'search_modifier_date_on_year' => 'Buchung im Jahr „:value”', - 'search_modifier_not_date_on_year' => 'Buchung ist nicht im Jahr ":value"', - 'search_modifier_date_on_month' => 'Buchung im Monat „:value”', - 'search_modifier_not_date_on_month' => 'Buchung ist nicht im Monat ":value"', - 'search_modifier_date_on_day' => 'Buchung erfolgt am :value Tag des Monats', - 'search_modifier_not_date_on_day' => 'Buchung erfolgte nicht am Tag des Monats ":value"', - 'search_modifier_date_before_year' => 'Buchung ist vor dem oder im Jahr ":value"', - 'search_modifier_date_before_month' => 'Buchung ist vor oder im Monat ":value"', - 'search_modifier_date_before_day' => 'Buchung vor oder am ":value" Tag des Monats', - 'search_modifier_date_after_year' => 'Buchung ist in oder nach dem Jahr ":value"', - 'search_modifier_date_after_month' => 'Buchung ist in oder nach dem Monat ":value"', - 'search_modifier_date_after_day' => 'Buchung ist nach oder am ":value" Tag des Monats', + 'search_modifier_date_on' => 'Buchungsdatum ist „:value”', + 'search_modifier_not_date_on' => 'Buchungsdatum ist nicht ":value"', + 'search_modifier_reconciled' => 'Buchung wurde abgeglichen', + 'search_modifier_not_reconciled' => 'Transaktion wurde nicht abgeglichen', + 'search_modifier_id' => 'Buchungsnummer ist ":value"', + 'search_modifier_not_id' => 'Buchungs-ID ist nicht ":value"', + 'search_modifier_date_before' => 'Buchungsdatum ist vor oder am ":value"', + 'search_modifier_date_after' => 'Buchungsdatum ist nach oder am „:value”', + 'search_modifier_external_id_is' => 'Externe ID lautet „:value”', + 'search_modifier_not_external_id_is' => 'External ID ist nicht ":value"', + 'search_modifier_no_external_url' => 'Die Buchung besitzt keine externe URL', + 'search_modifier_no_external_id' => 'Die Buchung hat keine externe ID', + 'search_modifier_not_any_external_url' => 'Die Buchung besitzt keine externe URL', + 'search_modifier_not_any_external_id' => 'Die Buchung hat keine externe ID', + 'search_modifier_any_external_url' => 'Die Buchung muss eine (beliebige) externe URL aufweisen', + 'search_modifier_any_external_id' => 'Die Buchung muss eine (beliebige) externe ID haben', + 'search_modifier_not_no_external_url' => 'Die Buchung muss eine (beliebige) externe URL haben', + 'search_modifier_not_no_external_id' => 'Die Buchung muss eine (beliebige) externe ID haben', + 'search_modifier_internal_reference_is' => 'Interne Referenz lautet „:value”', + 'search_modifier_not_internal_reference_is' => 'Interne Referenz ist nicht ":value"', + 'search_modifier_description_starts' => 'Beschreibung beginnt mit „:value”', + 'search_modifier_not_description_starts' => 'Beschreibung beginnt nicht mit „:value”', + 'search_modifier_description_ends' => 'Beschreibung endet auf „:value”', + 'search_modifier_not_description_ends' => 'Beschreibung endet nicht auf „:value”', + 'search_modifier_description_contains' => 'Beschreibung enthält „:value”', + 'search_modifier_not_description_contains' => 'Beschreibung enthält nicht „:value”', + 'search_modifier_description_is' => 'Beschreibung ist „:value”', + 'search_modifier_not_description_is' => 'Beschreibung ist nicht ":value"', + 'search_modifier_currency_is' => 'Buchungswährung ist „:value”', + 'search_modifier_not_currency_is' => 'Buchungswährung ist nicht „:value”', + 'search_modifier_foreign_currency_is' => 'Buchungsfremdwährung ist „:value”', + 'search_modifier_not_foreign_currency_is' => 'Buchungsfremdwährung ist nicht „:value”', + 'search_modifier_has_attachments' => 'Die Buchung muss einen Anhang haben', + 'search_modifier_has_no_category' => 'Die Buchung darf keiner Kategorie zugeordnet sein', + 'search_modifier_not_has_no_category' => 'Der Buchung muss einer (beliebigen) Kategorie zugeordnet sein', + 'search_modifier_not_has_any_category' => 'Der Buchung darf keiner Kategorie zugeordnet sein', + 'search_modifier_has_any_category' => 'Die Buchung muss einer Kategorie zugeordnet werden', + 'search_modifier_has_no_budget' => 'Der Buchung darf kein Budget zugeordnet werden', + 'search_modifier_not_has_any_budget' => 'Die Transaktion darf kein Budget haben', + 'search_modifier_has_any_budget' => 'Die Buchung muss einem Budget zugeordnet werden', + 'search_modifier_not_has_no_budget' => 'Die Buchung muss einem (beliebigen) Budget zugeordnet sein', + 'search_modifier_has_no_bill' => 'Der Buchung darf keine Rechnung zugeordnet sein', + 'search_modifier_not_has_no_bill' => 'Der Buchung muss einer (beliebigen) Rechnung zugeordnet sein', + 'search_modifier_has_any_bill' => 'Der Buchung muss eine (beliebige) Rechnung zugeordnet werden', + 'search_modifier_not_has_any_bill' => 'Der Buchung darf keine Rechnung zugeordnet sein', + 'search_modifier_has_no_tag' => 'Der Buchung darf keine Schlagworte zugeordnet werden', + 'search_modifier_not_has_any_tag' => 'Der Buchung dürfen keine Schlagwörter zugeordnet sein', + 'search_modifier_not_has_no_tag' => 'Der Buchung muss ein (beliebiges) Schlagwort zugeordnet sein', + 'search_modifier_has_any_tag' => 'Die Buchung muss ein Schlagwort zugeordnet werden', + 'search_modifier_notes_contains' => 'Die Buchungsnotiz enthält „:value”', + 'search_modifier_not_notes_contains' => 'Die Buchungsnotiz enthält nicht „:value”', + 'search_modifier_notes_starts' => 'Die Buchungsnotiz beginnt mit „:value”', + 'search_modifier_not_notes_starts' => 'Die Buchungsnotiz beginnt nicht mit „:value”', + 'search_modifier_notes_ends' => 'Die Buchungsnotiz endet auf „:value”', + 'search_modifier_not_notes_ends' => 'Die Buchungsnotiz endet nicht auf „:value”', + 'search_modifier_notes_is' => 'Die Buchungsnotiz ist „:value”', + 'search_modifier_not_notes_is' => 'Die Buchungsnotiz ist nicht „:value”', + 'search_modifier_no_notes' => 'Die Buchung hat keine Notiz', + 'search_modifier_not_no_notes' => 'Die Buchung muss eine Notiz haben', + 'search_modifier_any_notes' => 'Die Buchung muss eine Notiz haben', + 'search_modifier_not_any_notes' => 'Die Buchung hat keine Notizen', + 'search_modifier_amount_is' => 'Betrag beträgt genau :value', + 'search_modifier_not_amount_is' => 'Betrag ist nicht :value', + 'search_modifier_amount_less' => 'Betrag ist kleiner oder gleich :value', + 'search_modifier_not_amount_more' => 'Betrag ist kleiner oder gleich :value', + 'search_modifier_amount_more' => 'Betrag ist größer oder gleich :value', + 'search_modifier_not_amount_less' => 'Betrag ist größer oder gleich :value', + 'search_modifier_source_account_is' => 'Quellkonto-Name ist ":value"', + 'search_modifier_not_source_account_is' => 'Quellkonto-Name ist nicht „:value”', + 'search_modifier_source_account_contains' => 'Quellkonto-Name enthält „:value”', + 'search_modifier_not_source_account_contains' => 'Quellkonto-Name enthält nicht „:value”', + 'search_modifier_source_account_starts' => 'Quellkonto-Name beginnt mit „:value”', + 'search_modifier_not_source_account_starts' => 'Quellkonto-Name beginnt nicht mit „:value”', + 'search_modifier_source_account_ends' => 'Quellkonto-Name endet mit „:value”', + 'search_modifier_not_source_account_ends' => 'Quellkonto-Name endet nicht mit „:value”', + 'search_modifier_source_account_id' => 'Quellkonto-ID ist :value', + 'search_modifier_not_source_account_id' => 'Quellkonto-ID ist nicht :value', + 'search_modifier_source_account_nr_is' => 'Quellkontonummer (IBAN) ist „:value”', + 'search_modifier_not_source_account_nr_is' => 'Quellkontonummer (IBAN) ist nicht „:value”', + 'search_modifier_source_account_nr_contains' => 'Quellkontonummer (IBAN) enthält „:value”', + 'search_modifier_not_source_account_nr_contains' => 'Quellkontonummer (IBAN) enthält nicht „:value”', + 'search_modifier_source_account_nr_starts' => 'Quellkontonummer (IBAN) beginnt mit „:value”', + 'search_modifier_not_source_account_nr_starts' => 'Quellkontonummer (IBAN) beginnt nicht mit „:value”', + 'search_modifier_source_account_nr_ends' => 'Quellkontonummer (IBAN) endet auf „:value”', + 'search_modifier_not_source_account_nr_ends' => 'Quellkontonummer (IBAN) endet nicht auf „:value”', + 'search_modifier_destination_account_is' => 'Zielkonto-Name ist „:value”', + 'search_modifier_not_destination_account_is' => 'Zielkonto-Name ist nicht „:value”', + 'search_modifier_destination_account_contains' => 'Zielkonto-Name enthält „:value”', + 'search_modifier_not_destination_account_contains' => 'Zielkonto-Name enthält nicht „:value”', + 'search_modifier_destination_account_starts' => 'Zielkonto-Name beginnt mit „:value”', + 'search_modifier_not_destination_account_starts' => 'Zielkonto-Name beginnt nicht mit „:value”', + 'search_modifier_destination_account_ends' => 'Zielkonto-Name endet mit „:value”', + 'search_modifier_not_destination_account_ends' => 'Zielkonto-Name endet nicht mit „:value”', + 'search_modifier_destination_account_id' => 'Zielkonto-ID ist :value', + 'search_modifier_not_destination_account_id' => 'Zielkonto-ID ist nicht :value', + 'search_modifier_destination_is_cash' => 'Zielkonto ist das "(Bargeld)"-Konto', + 'search_modifier_not_destination_is_cash' => 'Zielkonto ist nicht das "(Bargeld)"-Konto', + 'search_modifier_source_is_cash' => 'Quellkonto ist das "(Bargeld)"-Konto', + 'search_modifier_not_source_is_cash' => 'Quellkonto ist nicht das "(Bargeld)"-Konto', + 'search_modifier_destination_account_nr_is' => 'Zielkontonummer (IBAN) ist „:value”', + 'search_modifier_not_destination_account_nr_is' => 'Zielkontonummer (IBAN) ist „:value”', + 'search_modifier_destination_account_nr_contains' => 'Zielkontonummer (IBAN) enthält „:value”', + 'search_modifier_not_destination_account_nr_contains' => 'Zielkontonummer (IBAN) enthält nicht „:value”', + 'search_modifier_destination_account_nr_starts' => 'Zielkontonummer (IBAN) beginnt mit „:value”', + 'search_modifier_not_destination_account_nr_starts' => 'Zielkontonummer (IBAN) beginnt nicht mit „:value”', + 'search_modifier_destination_account_nr_ends' => 'Zielkontonummer (IBAN) endet mit „:value”', + 'search_modifier_not_destination_account_nr_ends' => 'Zielkontonummer (IBAN) endet nicht auf „:value”', + 'search_modifier_account_id' => 'Quell- oder Zielkonto ID ist/sind :value', + 'search_modifier_not_account_id' => 'Quell- oder Zielkonten-ID ist/sind nicht „:value”', + 'search_modifier_category_is' => 'Kategorie ist „:value”', + 'search_modifier_not_category_is' => 'Kategorie ist nicht „:value”', + 'search_modifier_budget_is' => 'Budget ist „:value”', + 'search_modifier_not_budget_is' => 'Budget ist nicht „:value”', + 'search_modifier_bill_is' => 'Rechnung ist „:value”', + 'search_modifier_not_bill_is' => 'Rechnung ist nicht ":value"', + 'search_modifier_transaction_type' => 'Buchungstyp ist „:value”', + 'search_modifier_not_transaction_type' => 'Buchungstyp ist nicht „:value”', + 'search_modifier_tag_is' => 'Schlagwort ist „:value”', + 'search_modifier_tag_contains' => 'Schlagwort enthält ":value"', + 'search_modifier_not_tag_contains' => 'Schlagwort enthält nicht ":value"', + 'search_modifier_tag_ends' => 'Schlagwort endet mit ":value"', + 'search_modifier_tag_starts' => 'Schlagwort beginnt mit ":value"', + 'search_modifier_not_tag_is' => 'Kein Schlagwort lautet ":value"', + 'search_modifier_date_on_year' => 'Buchung im Jahr „:value”', + 'search_modifier_not_date_on_year' => 'Buchung ist nicht im Jahr ":value"', + 'search_modifier_date_on_month' => 'Buchung im Monat „:value”', + 'search_modifier_not_date_on_month' => 'Buchung ist nicht im Monat ":value"', + 'search_modifier_date_on_day' => 'Buchung erfolgt am :value Tag des Monats', + 'search_modifier_not_date_on_day' => 'Buchung erfolgte nicht am Tag des Monats ":value"', + 'search_modifier_date_before_year' => 'Buchung ist vor dem oder im Jahr ":value"', + 'search_modifier_date_before_month' => 'Buchung ist vor oder im Monat ":value"', + 'search_modifier_date_before_day' => 'Buchung vor oder am ":value" Tag des Monats', + 'search_modifier_date_after_year' => 'Buchung ist in oder nach dem Jahr ":value"', + 'search_modifier_date_after_month' => 'Buchung ist in oder nach dem Monat ":value"', + 'search_modifier_date_after_day' => 'Buchung ist nach oder am ":value" Tag des Monats', // new - 'search_modifier_tag_is_not' => 'Kein Schlagwort lautet ":value"', - 'search_modifier_not_tag_is_not' => 'Schlagwort ist ":value"', - 'search_modifier_account_is' => 'Beide Konten sind ":value"', - 'search_modifier_not_account_is' => 'Beide Konten sind nicht ":value"', - 'search_modifier_account_contains' => 'Beide Konten enthalten ":value"', - 'search_modifier_not_account_contains' => 'Beide Konten enthalten nicht ":value"', - 'search_modifier_account_ends' => 'Beide Konten enden mit ":value"', - 'search_modifier_not_account_ends' => 'Beide Konten enden nicht mit ":value"', - 'search_modifier_account_starts' => 'Beide Konten beginnen mit ":value"', - 'search_modifier_not_account_starts' => 'Beide Konten beginnen nicht mit ":value"', - 'search_modifier_account_nr_is' => 'Beide Kontonummern / IBANs sind ":value"', - 'search_modifier_not_account_nr_is' => 'Beide Kontonummern / IBANs sind nicht ":value"', - 'search_modifier_account_nr_contains' => 'Eine der Kontonummern / IBAN enthaltet ":value"', - 'search_modifier_not_account_nr_contains' => 'Beide Kontonummern / IBANs enthalten ":value"', - 'search_modifier_account_nr_ends' => 'Beide Kontonummern /IBANs enden mit ":value"', - 'search_modifier_not_account_nr_ends' => 'Beide Kontonummern / IBANs enden nicht mit ":value"', - 'search_modifier_account_nr_starts' => 'Beide Kontonummer / IBAN beginnen mit ":value"', - 'search_modifier_not_account_nr_starts' => 'Beide Kontonummern / IBANs beginnen nicht mit ":value"', - 'search_modifier_category_contains' => 'Kategorie enthält ":value"', - 'search_modifier_not_category_contains' => 'Kategorie enthält nicht „:value”', - 'search_modifier_category_ends' => 'Kategorie endet mit „:value”', - 'search_modifier_not_category_ends' => 'Kategorie endet nicht mit „:value”', - 'search_modifier_category_starts' => 'Kategorie beginnt mit ":value"', - 'search_modifier_not_category_starts' => 'Kategorie beginnt nicht mit „:value”', - 'search_modifier_budget_contains' => 'Budget enthält ":value"', - 'search_modifier_not_budget_contains' => 'Budget enthält nicht „:value”', - 'search_modifier_budget_ends' => 'Budget endet mit ":value"', - 'search_modifier_not_budget_ends' => 'Budget endet nicht mit „:value”', - 'search_modifier_budget_starts' => 'Budget beginnt mit ":value"', - 'search_modifier_not_budget_starts' => 'Budget beginnt nicht mit „:value”', - 'search_modifier_bill_contains' => 'Rechnung enthält ":value"', - 'search_modifier_not_bill_contains' => 'Rechnung enthält nicht ":value"', - 'search_modifier_bill_ends' => 'Rechnung endet mit ":value"', - 'search_modifier_not_bill_ends' => 'Rechnung endet nicht mit ":value"', - 'search_modifier_bill_starts' => 'Rechnung beginnt mit ":value"', - 'search_modifier_not_bill_starts' => 'Rechnung beginnt nicht mit ":value"', - 'search_modifier_external_id_contains' => 'Externe ID enthält ":value"', - 'search_modifier_not_external_id_contains' => 'Externe ID enthält nicht ":value"', - 'search_modifier_external_id_ends' => 'Externe ID endet mit ":value"', - 'search_modifier_not_external_id_ends' => 'Externe ID endet nicht mit ":value"', - 'search_modifier_external_id_starts' => 'Externe ID beginnt mit ":value"', - 'search_modifier_not_external_id_starts' => 'Externe ID beginnt nicht mit ":value"', - 'search_modifier_internal_reference_contains' => 'Interne Referenz enthält ":value"', - 'search_modifier_not_internal_reference_contains' => 'Interne Referenz enthält nicht „:value”', - 'search_modifier_internal_reference_ends' => 'Interne Referenz endet mit ":value"', - 'search_modifier_internal_reference_starts' => 'Interne Referenz beginnt mit ":value"', - 'search_modifier_not_internal_reference_ends' => 'Interne Referenz endet nicht mit „:value”', - 'search_modifier_not_internal_reference_starts' => 'Interne Referenz beginnt nicht mit „:value”', - 'search_modifier_external_url_is' => 'Externe URL ist ":value"', - 'search_modifier_not_external_url_is' => 'Externe URL ist nicht ":value"', - 'search_modifier_external_url_contains' => 'Externe URL enthält ":value"', - 'search_modifier_not_external_url_contains' => 'Externe URL enthält nicht ":value"', - 'search_modifier_external_url_ends' => 'Externe URL endet mit ":value"', - 'search_modifier_not_external_url_ends' => 'Externe URL endet nicht mit ":value"', - 'search_modifier_external_url_starts' => 'Externe URL beginnt mit ":value"', - 'search_modifier_not_external_url_starts' => 'Externe URL beginnt nicht mit ":value"', - 'search_modifier_has_no_attachments' => 'Transaktion hat keine Anhänge', - 'search_modifier_not_has_no_attachments' => 'Buchung hat Anhänge', - 'search_modifier_not_has_attachments' => 'Buchung hat keine Anhänge', - 'search_modifier_account_is_cash' => 'Eines der Konten ist das (Bar-)Konto.', - 'search_modifier_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten.', - 'search_modifier_journal_id' => 'Transaktions-Journal-ID ist ":value"', - 'search_modifier_not_journal_id' => 'Die Journal-ID ist nicht ":value"', - 'search_modifier_recurrence_id' => 'Die Dauerauftrags-ID ist ":value"', - 'search_modifier_not_recurrence_id' => 'Die Dauerauftrags-ID ist nicht ":value"', - 'search_modifier_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) lautet ":value"', - 'search_modifier_not_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist nicht ":value"', - 'search_modifier_foreign_amount_less' => 'Der Fremdbetrag ist geringer als ":value"', - 'search_modifier_not_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist kleiner als ":value"', - 'search_modifier_not_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist größer als ":value"', - 'search_modifier_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist höher als ":value"', - 'search_modifier_exists' => 'Buchung vorhanden (beliebige Buchung)', - 'search_modifier_not_exists' => 'Buchung existiert nicht (keine Buchung)', + 'search_modifier_tag_is_not' => 'Kein Schlagwort lautet ":value"', + 'search_modifier_not_tag_is_not' => 'Schlagwort ist ":value"', + 'search_modifier_account_is' => 'Beide Konten sind ":value"', + 'search_modifier_not_account_is' => 'Beide Konten sind nicht ":value"', + 'search_modifier_account_contains' => 'Beide Konten enthalten ":value"', + 'search_modifier_not_account_contains' => 'Beide Konten enthalten nicht ":value"', + 'search_modifier_account_ends' => 'Beide Konten enden mit ":value"', + 'search_modifier_not_account_ends' => 'Beide Konten enden nicht mit ":value"', + 'search_modifier_account_starts' => 'Beide Konten beginnen mit ":value"', + 'search_modifier_not_account_starts' => 'Beide Konten beginnen nicht mit ":value"', + 'search_modifier_account_nr_is' => 'Beide Kontonummern / IBANs sind ":value"', + 'search_modifier_not_account_nr_is' => 'Beide Kontonummern / IBANs sind nicht ":value"', + 'search_modifier_account_nr_contains' => 'Eine der Kontonummern / IBAN enthaltet ":value"', + 'search_modifier_not_account_nr_contains' => 'Beide Kontonummern / IBANs enthalten ":value"', + 'search_modifier_account_nr_ends' => 'Beide Kontonummern /IBANs enden mit ":value"', + 'search_modifier_not_account_nr_ends' => 'Beide Kontonummern / IBANs enden nicht mit ":value"', + 'search_modifier_account_nr_starts' => 'Beide Kontonummer / IBAN beginnen mit ":value"', + 'search_modifier_not_account_nr_starts' => 'Beide Kontonummern / IBANs beginnen nicht mit ":value"', + 'search_modifier_category_contains' => 'Kategorie enthält ":value"', + 'search_modifier_not_category_contains' => 'Kategorie enthält nicht „:value”', + 'search_modifier_category_ends' => 'Kategorie endet mit „:value”', + 'search_modifier_not_category_ends' => 'Kategorie endet nicht mit „:value”', + 'search_modifier_category_starts' => 'Kategorie beginnt mit ":value"', + 'search_modifier_not_category_starts' => 'Kategorie beginnt nicht mit „:value”', + 'search_modifier_budget_contains' => 'Budget enthält ":value"', + 'search_modifier_not_budget_contains' => 'Budget enthält nicht „:value”', + 'search_modifier_budget_ends' => 'Budget endet mit ":value"', + 'search_modifier_not_budget_ends' => 'Budget endet nicht mit „:value”', + 'search_modifier_budget_starts' => 'Budget beginnt mit ":value"', + 'search_modifier_not_budget_starts' => 'Budget beginnt nicht mit „:value”', + 'search_modifier_bill_contains' => 'Rechnung enthält ":value"', + 'search_modifier_not_bill_contains' => 'Rechnung enthält nicht ":value"', + 'search_modifier_bill_ends' => 'Rechnung endet mit ":value"', + 'search_modifier_not_bill_ends' => 'Rechnung endet nicht mit ":value"', + 'search_modifier_bill_starts' => 'Rechnung beginnt mit ":value"', + 'search_modifier_not_bill_starts' => 'Rechnung beginnt nicht mit ":value"', + 'search_modifier_external_id_contains' => 'Externe ID enthält ":value"', + 'search_modifier_not_external_id_contains' => 'Externe ID enthält nicht ":value"', + 'search_modifier_external_id_ends' => 'Externe ID endet mit ":value"', + 'search_modifier_not_external_id_ends' => 'Externe ID endet nicht mit ":value"', + 'search_modifier_external_id_starts' => 'Externe ID beginnt mit ":value"', + 'search_modifier_not_external_id_starts' => 'Externe ID beginnt nicht mit ":value"', + 'search_modifier_internal_reference_contains' => 'Interne Referenz enthält ":value"', + 'search_modifier_not_internal_reference_contains' => 'Interne Referenz enthält nicht „:value”', + 'search_modifier_internal_reference_ends' => 'Interne Referenz endet mit ":value"', + 'search_modifier_internal_reference_starts' => 'Interne Referenz beginnt mit ":value"', + 'search_modifier_not_internal_reference_ends' => 'Interne Referenz endet nicht mit „:value”', + 'search_modifier_not_internal_reference_starts' => 'Interne Referenz beginnt nicht mit „:value”', + 'search_modifier_external_url_is' => 'Externe URL ist ":value"', + 'search_modifier_not_external_url_is' => 'Externe URL ist nicht ":value"', + 'search_modifier_external_url_contains' => 'Externe URL enthält ":value"', + 'search_modifier_not_external_url_contains' => 'Externe URL enthält nicht ":value"', + 'search_modifier_external_url_ends' => 'Externe URL endet mit ":value"', + 'search_modifier_not_external_url_ends' => 'Externe URL endet nicht mit ":value"', + 'search_modifier_external_url_starts' => 'Externe URL beginnt mit ":value"', + 'search_modifier_not_external_url_starts' => 'Externe URL beginnt nicht mit ":value"', + 'search_modifier_has_no_attachments' => 'Transaktion hat keine Anhänge', + 'search_modifier_not_has_no_attachments' => 'Buchung hat Anhänge', + 'search_modifier_not_has_attachments' => 'Buchung hat keine Anhänge', + 'search_modifier_account_is_cash' => 'Eines der Konten ist das (Bar-)Konto.', + 'search_modifier_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten.', + 'search_modifier_journal_id' => 'Transaktions-Journal-ID ist ":value"', + 'search_modifier_not_journal_id' => 'Die Journal-ID ist nicht ":value"', + 'search_modifier_recurrence_id' => 'Die Dauerauftrags-ID ist ":value"', + 'search_modifier_not_recurrence_id' => 'Die Dauerauftrags-ID ist nicht ":value"', + 'search_modifier_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) lautet ":value"', + 'search_modifier_not_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist nicht ":value"', + 'search_modifier_foreign_amount_less' => 'Der Fremdbetrag ist geringer als ":value"', + 'search_modifier_not_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist kleiner als ":value"', + 'search_modifier_not_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist größer als ":value"', + 'search_modifier_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist höher als ":value"', + 'search_modifier_exists' => 'Buchung vorhanden (beliebige Buchung)', + 'search_modifier_not_exists' => 'Buchung existiert nicht (keine Buchung)', // date fields - 'search_modifier_interest_date_on' => 'Transaktion Zinstermin ist am ":value"', - 'search_modifier_not_interest_date_on' => 'Bungungs-Zinstermin ist nicht am ":value"', - 'search_modifier_interest_date_on_year' => 'Transaktion Zinstermin ist im Jahr ":value"', - 'search_modifier_not_interest_date_on_year' => 'Buchungs-Zinstermin ist nicht im Jahr ":value"', - 'search_modifier_interest_date_on_month' => 'Transaktion Zinstermin ist im Monat ":value"', - 'search_modifier_not_interest_date_on_month' => 'Buchungs-Zinstermin ist nicht im Monat ":value"', - 'search_modifier_interest_date_on_day' => 'Transaktion Zinstermin ist am Tag des Monats ":value"', - 'search_modifier_not_interest_date_on_day' => 'Buchungs-Zinstermin ist nicht am Tag des Monats ":value"', - 'search_modifier_interest_date_before_year' => 'Transaktion Zinstermin ist vor dem oder im Jahr ":value"', - 'search_modifier_interest_date_before_month' => 'Transaktion Zinstermin ist vor dem oder im Monat ":value"', - 'search_modifier_interest_date_before_day' => 'Transaktion Zinstermin ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_interest_date_after_year' => 'Transaktion Zinstermin ist nach dem oder im Jahr ":value"', - 'search_modifier_interest_date_after_month' => 'Transaktion Zinstermin ist nach dem oder im Monat ":value"', - 'search_modifier_interest_date_after_day' => 'Transaktion Zinstermin ist nach dem oder am Tag des Monats ":value"', - 'search_modifier_book_date_on_year' => 'Transaktion Buchungstermin ist im Jahr ":value"', - 'search_modifier_book_date_on_month' => 'Transaktion Buchungstermin ist im Monat ":value"', - 'search_modifier_book_date_on_day' => 'Transaktion Buchungstermin ist am Tag des Monats ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaktionsbuchdatum ist nicht im Jahr ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaktionsbuchdatum ist nicht im Monat ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaktionsbuchdatum ist nicht am Tag des Monats ":value"', - 'search_modifier_book_date_before_year' => 'Transaktion Buchungstermin ist vor dem oder im Jahr ":value"', - 'search_modifier_book_date_before_month' => 'Transaktion Buchungstermin ist vor dem oder im Monat ":value"', - 'search_modifier_book_date_before_day' => 'Transaktion Buchungstermin ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_book_date_after_year' => 'Transaktion Buchungstermin ist nach dem oder im Jahr ":value"', - 'search_modifier_book_date_after_month' => 'Transaktion Buchungstermin ist nach dem oder im Monat ":value"', - 'search_modifier_book_date_after_day' => 'Transaktion Buchungstermin ist nach dem oder am Tag des Monats ":value"', - 'search_modifier_process_date_on_year' => 'Buchungsdatum ist im Jahr ":value"', - 'search_modifier_process_date_on_month' => 'Buchungsdatum ist im Monat ":value"', - 'search_modifier_process_date_on_day' => 'Buchungsdatum ist am Tag des Monats ":value"', - 'search_modifier_not_process_date_on_year' => 'Buchungsdatum ist nicht im Jahr ":value"', - 'search_modifier_not_process_date_on_month' => 'Buchungsdatum ist nicht im Monat ":value"', - 'search_modifier_not_process_date_on_day' => 'Buchungsdatum ist nicht am Tag des Monats ":value"', - 'search_modifier_process_date_before_year' => 'Buchungsdatum ist vor dem oder im Jahr ":value"', - 'search_modifier_process_date_before_month' => 'Buchungsdatum ist vor dem oder im Monat ":value"', - 'search_modifier_process_date_before_day' => 'Buchungsdatum ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_process_date_after_year' => 'Buchungsdatum ist nach dem oder im Jahr ":value"', - 'search_modifier_process_date_after_month' => 'Buchungsdatum ist nach dem oder im Monat ":value"', - 'search_modifier_process_date_after_day' => 'Buchungsdatum ist nach dem oder am Tag des Monats ":value"', - 'search_modifier_due_date_on_year' => 'Buchungs-Fälligkeitsdatum ist im Jahr ":value"', - 'search_modifier_due_date_on_month' => 'Buchungs-Fälligkeitsdatum ist im Monat ":value"', - 'search_modifier_due_date_on_day' => 'Buchungs-Fälligkeitsdatum ist am Tag des Monats ":value"', - 'search_modifier_not_due_date_on_year' => 'Buchungs-Fälligkeitsdatum ist nicht im Jahr ":value"', - 'search_modifier_not_due_date_on_month' => 'Buchungs-Fälligkeitsdatum ist nicht im Monat ":value"', - 'search_modifier_not_due_date_on_day' => 'Buchungs-Fälligkeitsdatum ist nicht am Tag des Monats ":value"', - 'search_modifier_due_date_before_year' => 'Buchungs-Fälligkeitsdatum ist vor dem oder im Jahr ":value"', - 'search_modifier_due_date_before_month' => 'Buchungs-Fälligkeitsdatum ist vor dem oder im Monat ":value"', - 'search_modifier_due_date_before_day' => 'Buchungs-Fälligkeitsdatum ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_due_date_after_year' => 'Buchungs-Fälligkeitsdatum ist nach dem oder im Jahr ":value"', - 'search_modifier_due_date_after_month' => 'Buchungs-Fälligkeitsdatum ist nach dem oder im Monat ":value"', - 'search_modifier_due_date_after_day' => 'Buchungs-Fälligkeitsdatum ist nach dem oder am Tag des Monats ":value"', - 'search_modifier_payment_date_on_year' => 'Buchungs-Wertstellung ist im Jahr ":value"', - 'search_modifier_payment_date_on_month' => 'Buchungs-Wertstellung ist im Monat ":value"', - 'search_modifier_payment_date_on_day' => 'Buchungs-Wertstellung ist am Tag des Monats ":value"', - 'search_modifier_not_payment_date_on_year' => 'Buchungs-Wertstellung ist nicht im Jahr ":value"', - 'search_modifier_not_payment_date_on_month' => 'Buchungs-Wertstellung ist nicht im Monat ":value"', - 'search_modifier_not_payment_date_on_day' => 'Buchungs-Wertstellung ist nicht am Tag des Monats ":value"', - 'search_modifier_payment_date_before_year' => 'Buchungs-Wertstellung ist vor dem oder im Jahr ":value"', - 'search_modifier_payment_date_before_month' => 'Buchungs-Wertstellung ist vor dem oder im Monat ":value"', - 'search_modifier_payment_date_before_day' => 'Buchungs-Wertstellung ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_payment_date_after_year' => 'Buchungs-Wertstellung ist nach dem oder im Jahr ":value"', - 'search_modifier_payment_date_after_month' => 'Buchungs-Wertstellung ist nach dem oder im Monat ":value"', - 'search_modifier_payment_date_after_day' => 'Buchungs-Wertstellung ist nach dem oder am Tag des Monats ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaktion Rechnungsdatum ist im Jahr ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaktion Rechnungsdatum ist im Monat ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaktion Rechnungsdatum ist am Tag des Monats ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Rechnungsdatum der Buchung ist nicht im Jahr ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Rechnungsdatum der Buchung ist nicht im Monat ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Rechnungsdatum der Buchung ist nicht am Tag des Monats ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaktion Rechnungsdatum ist vor dem oder im Jahr ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaktion Rechnungsdatum ist vor dem oder im Monat ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaktion Rechnungsdatum ist vor dem oder am Tag des Monats ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaktion Rechnungsdatum ist nach dem oder im Jahr ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaktion Rechnungsdatum ist nach dem oder im Monat ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaktion Rechnungsdatum ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_interest_date_on' => 'Transaktion Zinstermin ist am ":value"', + 'search_modifier_not_interest_date_on' => 'Bungungs-Zinstermin ist nicht am ":value"', + 'search_modifier_interest_date_on_year' => 'Transaktion Zinstermin ist im Jahr ":value"', + 'search_modifier_not_interest_date_on_year' => 'Buchungs-Zinstermin ist nicht im Jahr ":value"', + 'search_modifier_interest_date_on_month' => 'Transaktion Zinstermin ist im Monat ":value"', + 'search_modifier_not_interest_date_on_month' => 'Buchungs-Zinstermin ist nicht im Monat ":value"', + 'search_modifier_interest_date_on_day' => 'Transaktion Zinstermin ist am Tag des Monats ":value"', + 'search_modifier_not_interest_date_on_day' => 'Buchungs-Zinstermin ist nicht am Tag des Monats ":value"', + 'search_modifier_interest_date_before_year' => 'Transaktion Zinstermin ist vor dem oder im Jahr ":value"', + 'search_modifier_interest_date_before_month' => 'Transaktion Zinstermin ist vor dem oder im Monat ":value"', + 'search_modifier_interest_date_before_day' => 'Transaktion Zinstermin ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_interest_date_after_year' => 'Transaktion Zinstermin ist nach dem oder im Jahr ":value"', + 'search_modifier_interest_date_after_month' => 'Transaktion Zinstermin ist nach dem oder im Monat ":value"', + 'search_modifier_interest_date_after_day' => 'Transaktion Zinstermin ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_book_date_on_year' => 'Transaktion Buchungstermin ist im Jahr ":value"', + 'search_modifier_book_date_on_month' => 'Transaktion Buchungstermin ist im Monat ":value"', + 'search_modifier_book_date_on_day' => 'Transaktion Buchungstermin ist am Tag des Monats ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaktionsbuchdatum ist nicht im Jahr ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaktionsbuchdatum ist nicht im Monat ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaktionsbuchdatum ist nicht am Tag des Monats ":value"', + 'search_modifier_book_date_before_year' => 'Transaktion Buchungstermin ist vor dem oder im Jahr ":value"', + 'search_modifier_book_date_before_month' => 'Transaktion Buchungstermin ist vor dem oder im Monat ":value"', + 'search_modifier_book_date_before_day' => 'Transaktion Buchungstermin ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_book_date_after_year' => 'Transaktion Buchungstermin ist nach dem oder im Jahr ":value"', + 'search_modifier_book_date_after_month' => 'Transaktion Buchungstermin ist nach dem oder im Monat ":value"', + 'search_modifier_book_date_after_day' => 'Transaktion Buchungstermin ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_process_date_on_year' => 'Buchungsdatum ist im Jahr ":value"', + 'search_modifier_process_date_on_month' => 'Buchungsdatum ist im Monat ":value"', + 'search_modifier_process_date_on_day' => 'Buchungsdatum ist am Tag des Monats ":value"', + 'search_modifier_not_process_date_on_year' => 'Buchungsdatum ist nicht im Jahr ":value"', + 'search_modifier_not_process_date_on_month' => 'Buchungsdatum ist nicht im Monat ":value"', + 'search_modifier_not_process_date_on_day' => 'Buchungsdatum ist nicht am Tag des Monats ":value"', + 'search_modifier_process_date_before_year' => 'Buchungsdatum ist vor dem oder im Jahr ":value"', + 'search_modifier_process_date_before_month' => 'Buchungsdatum ist vor dem oder im Monat ":value"', + 'search_modifier_process_date_before_day' => 'Buchungsdatum ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_process_date_after_year' => 'Buchungsdatum ist nach dem oder im Jahr ":value"', + 'search_modifier_process_date_after_month' => 'Buchungsdatum ist nach dem oder im Monat ":value"', + 'search_modifier_process_date_after_day' => 'Buchungsdatum ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_due_date_on_year' => 'Buchungs-Fälligkeitsdatum ist im Jahr ":value"', + 'search_modifier_due_date_on_month' => 'Buchungs-Fälligkeitsdatum ist im Monat ":value"', + 'search_modifier_due_date_on_day' => 'Buchungs-Fälligkeitsdatum ist am Tag des Monats ":value"', + 'search_modifier_not_due_date_on_year' => 'Buchungs-Fälligkeitsdatum ist nicht im Jahr ":value"', + 'search_modifier_not_due_date_on_month' => 'Buchungs-Fälligkeitsdatum ist nicht im Monat ":value"', + 'search_modifier_not_due_date_on_day' => 'Buchungs-Fälligkeitsdatum ist nicht am Tag des Monats ":value"', + 'search_modifier_due_date_before_year' => 'Buchungs-Fälligkeitsdatum ist vor dem oder im Jahr ":value"', + 'search_modifier_due_date_before_month' => 'Buchungs-Fälligkeitsdatum ist vor dem oder im Monat ":value"', + 'search_modifier_due_date_before_day' => 'Buchungs-Fälligkeitsdatum ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_due_date_after_year' => 'Buchungs-Fälligkeitsdatum ist nach dem oder im Jahr ":value"', + 'search_modifier_due_date_after_month' => 'Buchungs-Fälligkeitsdatum ist nach dem oder im Monat ":value"', + 'search_modifier_due_date_after_day' => 'Buchungs-Fälligkeitsdatum ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_payment_date_on_year' => 'Buchungs-Wertstellung ist im Jahr ":value"', + 'search_modifier_payment_date_on_month' => 'Buchungs-Wertstellung ist im Monat ":value"', + 'search_modifier_payment_date_on_day' => 'Buchungs-Wertstellung ist am Tag des Monats ":value"', + 'search_modifier_not_payment_date_on_year' => 'Buchungs-Wertstellung ist nicht im Jahr ":value"', + 'search_modifier_not_payment_date_on_month' => 'Buchungs-Wertstellung ist nicht im Monat ":value"', + 'search_modifier_not_payment_date_on_day' => 'Buchungs-Wertstellung ist nicht am Tag des Monats ":value"', + 'search_modifier_payment_date_before_year' => 'Buchungs-Wertstellung ist vor dem oder im Jahr ":value"', + 'search_modifier_payment_date_before_month' => 'Buchungs-Wertstellung ist vor dem oder im Monat ":value"', + 'search_modifier_payment_date_before_day' => 'Buchungs-Wertstellung ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_payment_date_after_year' => 'Buchungs-Wertstellung ist nach dem oder im Jahr ":value"', + 'search_modifier_payment_date_after_month' => 'Buchungs-Wertstellung ist nach dem oder im Monat ":value"', + 'search_modifier_payment_date_after_day' => 'Buchungs-Wertstellung ist nach dem oder am Tag des Monats ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaktion Rechnungsdatum ist im Jahr ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaktion Rechnungsdatum ist im Monat ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaktion Rechnungsdatum ist am Tag des Monats ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Rechnungsdatum der Buchung ist nicht im Jahr ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Rechnungsdatum der Buchung ist nicht im Monat ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Rechnungsdatum der Buchung ist nicht am Tag des Monats ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaktion Rechnungsdatum ist vor dem oder im Jahr ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaktion Rechnungsdatum ist vor dem oder im Monat ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaktion Rechnungsdatum ist vor dem oder am Tag des Monats ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaktion Rechnungsdatum ist nach dem oder im Jahr ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaktion Rechnungsdatum ist nach dem oder im Monat ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaktion Rechnungsdatum ist nach dem oder am Tag des Monats ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaktion wurde zuletzt im Jahr ":value" aktualisiert', - 'search_modifier_updated_at_on_month' => 'Transaktion wurde zuletzt im Monat ":value" aktualisiert', - 'search_modifier_updated_at_on_day' => 'Transaktion wurde zuletzt am Tag des Monats ":value" aktualisiert', - 'search_modifier_not_updated_at_on_year' => 'Buchung wurde nicht zuletzt im Jahr ":value" aktualisiert', - 'search_modifier_not_updated_at_on_month' => 'Buchung wurde nicht zuletzt im Monat ":value" aktualisiert', - 'search_modifier_not_updated_at_on_day' => 'Buchung wurde nicht zuletzt am Tag des Monats ":value" aktualisiert', - 'search_modifier_updated_at_before_year' => 'Transaktion wurde zuletzt im oder vor dem Jahr ":value" aktualisiert', - 'search_modifier_updated_at_before_month' => 'Transaktion wurde zuletzt im oder vor dem Monat ":value" aktualisiert', - 'search_modifier_updated_at_before_day' => 'Transaktion wurde zuletzt am oder vor dem Tag des Monats ":value" aktualisiert', - 'search_modifier_updated_at_after_year' => 'Transaktion wurde zuletzt im oder nach dem Jahr ":value" aktualisiert', - 'search_modifier_updated_at_after_month' => 'Transaktion wurde zuletzt im oder nach dem Monat ":value" aktualisiert', - 'search_modifier_updated_at_after_day' => 'Transaktion wurde zuletzt am oder nach dem Tag des Monats ":value" aktualisiert', - 'search_modifier_created_at_on_year' => 'Transaktion wurde im Jahr ":value" erstellt', - 'search_modifier_created_at_on_month' => 'Transaktion wurde im Monat ":value" erstellt', - 'search_modifier_created_at_on_day' => 'Transaktion wurde am Tag des Monats ":value" erstellt', - 'search_modifier_not_created_at_on_year' => 'Transaktion wurde nicht im Jahr ":value" erstellt', - 'search_modifier_not_created_at_on_month' => 'Transaktion wurde nicht im Monat ":value" erstellt', - 'search_modifier_not_created_at_on_day' => 'Transaktion wurde nicht am Tag des Monats ":value" erstellt', - 'search_modifier_created_at_before_year' => 'Transaktion wurde im oder vor dem Jahr ":value" erstellt', - 'search_modifier_created_at_before_month' => 'Transaktion wurde im oder vor dem Monat ":value" erstellt', - 'search_modifier_created_at_before_day' => 'Transaktion wurde am oder vor dem Tag des Monats ":value" erstellt', - 'search_modifier_created_at_after_year' => 'Transaktion wurde im oder nach dem Jahr ":value" erstellt', - 'search_modifier_created_at_after_month' => 'Transaktion wurde im oder nach dem Monat ":value" erstellt', - 'search_modifier_created_at_after_day' => 'Transaktion wurde am oder nach dem Tag des Monats ":value" erstellt', - 'search_modifier_interest_date_before' => 'Transaktion Zinstermin ist am oder vor dem ":value"', - 'search_modifier_interest_date_after' => 'Transaktion Zinstermin ist am oder nach dem ":value"', - 'search_modifier_book_date_on' => 'Transaktion Buchungstermin ist am ":value"', - 'search_modifier_not_book_date_on' => 'Transaktionsbuchdatum ist nicht am ":value"', - 'search_modifier_book_date_before' => 'Transaktion Buchungstermin ist am oder vor dem ":value"', - 'search_modifier_book_date_after' => 'Transaktion Buchungstermin ist am oder nach dem ":value"', - 'search_modifier_process_date_on' => 'Buchungsdatum ist am ":value"', - 'search_modifier_not_process_date_on' => 'Buchungsdatum ist nicht am ":value"', - 'search_modifier_process_date_before' => 'Buchungsdatum ist am oder vor dem ":value"', - 'search_modifier_process_date_after' => 'Transaktion Erfassungsdatum ist am oder nach dem ":value"', - 'search_modifier_due_date_on' => 'Buchungs-Fälligkeitsdatum ist am ":value"', - 'search_modifier_not_due_date_on' => 'Buchungs-Fälligkeitsdatum ist nicht am ":value"', - 'search_modifier_due_date_before' => 'Buchungs-Fälligkeitsdatum ist am oder vor dem ":value"', - 'search_modifier_due_date_after' => 'Buchungs-Fälligkeitsdatum ist am oder nach dem ":value"', - 'search_modifier_payment_date_on' => 'Buchungs-Wertstellung ist am ":value"', - 'search_modifier_not_payment_date_on' => 'Buchungs-Wertstellung ist nicht am ":value"', - 'search_modifier_payment_date_before' => 'Buchungs-Wertstellung ist am oder vor dem ":value"', - 'search_modifier_payment_date_after' => 'Buchungs-Wertstellung ist am oder nach dem ":value"', - 'search_modifier_invoice_date_on' => 'Transaktion Rechnungsdatum ist am ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaktion Rechnungsdatum ist nicht am ":value"', - 'search_modifier_invoice_date_before' => 'Transaktion Rechnungsdatum ist am oder vor dem ":value"', - 'search_modifier_invoice_date_after' => 'Transaktion Rechnungsdatum ist am oder nach dem ":value"', - 'search_modifier_created_at_on' => 'Transaktion wurde am ":value" erstellt', - 'search_modifier_not_created_at_on' => 'Transaktion wurde nicht am ":value" erstellt', - 'search_modifier_created_at_before' => 'Transaktion wurde am oder vor dem ":value" erstellt', - 'search_modifier_created_at_after' => 'Transaktion wurde am oder nach dem ":value" erstellt', - 'search_modifier_updated_at_on' => 'Transaktion wurde aktualisiert am ":value"', - 'search_modifier_not_updated_at_on' => 'Buchung wurde nicht aktualisiert am ":value"', - 'search_modifier_updated_at_before' => 'Transaktion wurde aktualisiert am oder vor dem ":value"', - 'search_modifier_updated_at_after' => 'Transaktion wurde aktualisiert am oder nach dem ":value"', + 'search_modifier_updated_at_on_year' => 'Transaktion wurde zuletzt im Jahr ":value" aktualisiert', + 'search_modifier_updated_at_on_month' => 'Transaktion wurde zuletzt im Monat ":value" aktualisiert', + 'search_modifier_updated_at_on_day' => 'Transaktion wurde zuletzt am Tag des Monats ":value" aktualisiert', + 'search_modifier_not_updated_at_on_year' => 'Buchung wurde nicht zuletzt im Jahr ":value" aktualisiert', + 'search_modifier_not_updated_at_on_month' => 'Buchung wurde nicht zuletzt im Monat ":value" aktualisiert', + 'search_modifier_not_updated_at_on_day' => 'Buchung wurde nicht zuletzt am Tag des Monats ":value" aktualisiert', + 'search_modifier_updated_at_before_year' => 'Transaktion wurde zuletzt im oder vor dem Jahr ":value" aktualisiert', + 'search_modifier_updated_at_before_month' => 'Transaktion wurde zuletzt im oder vor dem Monat ":value" aktualisiert', + 'search_modifier_updated_at_before_day' => 'Transaktion wurde zuletzt am oder vor dem Tag des Monats ":value" aktualisiert', + 'search_modifier_updated_at_after_year' => 'Transaktion wurde zuletzt im oder nach dem Jahr ":value" aktualisiert', + 'search_modifier_updated_at_after_month' => 'Transaktion wurde zuletzt im oder nach dem Monat ":value" aktualisiert', + 'search_modifier_updated_at_after_day' => 'Transaktion wurde zuletzt am oder nach dem Tag des Monats ":value" aktualisiert', + 'search_modifier_created_at_on_year' => 'Transaktion wurde im Jahr ":value" erstellt', + 'search_modifier_created_at_on_month' => 'Transaktion wurde im Monat ":value" erstellt', + 'search_modifier_created_at_on_day' => 'Transaktion wurde am Tag des Monats ":value" erstellt', + 'search_modifier_not_created_at_on_year' => 'Transaktion wurde nicht im Jahr ":value" erstellt', + 'search_modifier_not_created_at_on_month' => 'Transaktion wurde nicht im Monat ":value" erstellt', + 'search_modifier_not_created_at_on_day' => 'Transaktion wurde nicht am Tag des Monats ":value" erstellt', + 'search_modifier_created_at_before_year' => 'Transaktion wurde im oder vor dem Jahr ":value" erstellt', + 'search_modifier_created_at_before_month' => 'Transaktion wurde im oder vor dem Monat ":value" erstellt', + 'search_modifier_created_at_before_day' => 'Transaktion wurde am oder vor dem Tag des Monats ":value" erstellt', + 'search_modifier_created_at_after_year' => 'Transaktion wurde im oder nach dem Jahr ":value" erstellt', + 'search_modifier_created_at_after_month' => 'Transaktion wurde im oder nach dem Monat ":value" erstellt', + 'search_modifier_created_at_after_day' => 'Transaktion wurde am oder nach dem Tag des Monats ":value" erstellt', + 'search_modifier_interest_date_before' => 'Transaktion Zinstermin ist am oder vor dem ":value"', + 'search_modifier_interest_date_after' => 'Transaktion Zinstermin ist am oder nach dem ":value"', + 'search_modifier_book_date_on' => 'Transaktion Buchungstermin ist am ":value"', + 'search_modifier_not_book_date_on' => 'Transaktionsbuchdatum ist nicht am ":value"', + 'search_modifier_book_date_before' => 'Transaktion Buchungstermin ist am oder vor dem ":value"', + 'search_modifier_book_date_after' => 'Transaktion Buchungstermin ist am oder nach dem ":value"', + 'search_modifier_process_date_on' => 'Buchungsdatum ist am ":value"', + 'search_modifier_not_process_date_on' => 'Buchungsdatum ist nicht am ":value"', + 'search_modifier_process_date_before' => 'Buchungsdatum ist am oder vor dem ":value"', + 'search_modifier_process_date_after' => 'Transaktion Erfassungsdatum ist am oder nach dem ":value"', + 'search_modifier_due_date_on' => 'Buchungs-Fälligkeitsdatum ist am ":value"', + 'search_modifier_not_due_date_on' => 'Buchungs-Fälligkeitsdatum ist nicht am ":value"', + 'search_modifier_due_date_before' => 'Buchungs-Fälligkeitsdatum ist am oder vor dem ":value"', + 'search_modifier_due_date_after' => 'Buchungs-Fälligkeitsdatum ist am oder nach dem ":value"', + 'search_modifier_payment_date_on' => 'Buchungs-Wertstellung ist am ":value"', + 'search_modifier_not_payment_date_on' => 'Buchungs-Wertstellung ist nicht am ":value"', + 'search_modifier_payment_date_before' => 'Buchungs-Wertstellung ist am oder vor dem ":value"', + 'search_modifier_payment_date_after' => 'Buchungs-Wertstellung ist am oder nach dem ":value"', + 'search_modifier_invoice_date_on' => 'Transaktion Rechnungsdatum ist am ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaktion Rechnungsdatum ist nicht am ":value"', + 'search_modifier_invoice_date_before' => 'Transaktion Rechnungsdatum ist am oder vor dem ":value"', + 'search_modifier_invoice_date_after' => 'Transaktion Rechnungsdatum ist am oder nach dem ":value"', + 'search_modifier_created_at_on' => 'Transaktion wurde am ":value" erstellt', + 'search_modifier_not_created_at_on' => 'Transaktion wurde nicht am ":value" erstellt', + 'search_modifier_created_at_before' => 'Transaktion wurde am oder vor dem ":value" erstellt', + 'search_modifier_created_at_after' => 'Transaktion wurde am oder nach dem ":value" erstellt', + 'search_modifier_updated_at_on' => 'Transaktion wurde aktualisiert am ":value"', + 'search_modifier_not_updated_at_on' => 'Buchung wurde nicht aktualisiert am ":value"', + 'search_modifier_updated_at_before' => 'Transaktion wurde aktualisiert am oder vor dem ":value"', + 'search_modifier_updated_at_after' => 'Transaktion wurde aktualisiert am oder nach dem ":value"', - 'search_modifier_attachment_name_is' => 'Der Name eines Anhangs lautet ":value"', - 'search_modifier_attachment_name_contains' => 'Der Name eines Anhangs enthält ":value"', - 'search_modifier_attachment_name_starts' => 'Der Name eines Anhangs beginnt mit ":value"', - 'search_modifier_attachment_name_ends' => 'Der Name eines Anhangs endet mit ":value"', - 'search_modifier_attachment_notes_are' => 'Notizen des Anhangs lauten ":value"', - 'search_modifier_attachment_notes_contains' => 'Notizen des Anhangs beinhalten ":value"', - 'search_modifier_attachment_notes_starts' => 'Notizen des Anhangs beginnen mit ":value"', - 'search_modifier_attachment_notes_ends' => 'Notizen des Anhangs enden mit ":value"', - 'search_modifier_not_attachment_name_is' => 'Der Name eines Anhangs lautet nicht ":value"', - 'search_modifier_not_attachment_name_contains' => 'Der Name keines Anhangs enthält ":value"', - 'search_modifier_not_attachment_name_starts' => 'Der Name keines Anhangs beginnt mit ":value"', - 'search_modifier_not_attachment_name_ends' => 'Der Name keines Anhangs endet mit ":value"', - 'search_modifier_not_attachment_notes_are' => 'Notizen des Anhangs sind nicht ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Notizen des Anhangs enthalten nicht ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Notizen des Anhangs beginnen nicht mit ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Notizen des Anhangs enden nicht mit ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT ist ":value"', - 'update_rule_from_query' => 'Regel „:rule” aus Suchanfrage aktualisieren', - 'create_rule_from_query' => 'Neue Regel aus Suchanfrage erstellen', - 'rule_from_search_words' => 'Die Regel-Modul hat Schwierigkeiten „:string” zu verarbeiten. Die vorgeschlagene Regel, die Ihrer Suchanfrage entspricht, kann zu unterschiedlichen Ergebnissen führen. Bitte überprüfen Sie die Regelauslöser sorgfältig.', + 'search_modifier_attachment_name_is' => 'Der Name eines Anhangs lautet ":value"', + 'search_modifier_attachment_name_contains' => 'Der Name eines Anhangs enthält ":value"', + 'search_modifier_attachment_name_starts' => 'Der Name eines Anhangs beginnt mit ":value"', + 'search_modifier_attachment_name_ends' => 'Der Name eines Anhangs endet mit ":value"', + 'search_modifier_attachment_notes_are' => 'Notizen des Anhangs lauten ":value"', + 'search_modifier_attachment_notes_contains' => 'Notizen des Anhangs beinhalten ":value"', + 'search_modifier_attachment_notes_starts' => 'Notizen des Anhangs beginnen mit ":value"', + 'search_modifier_attachment_notes_ends' => 'Notizen des Anhangs enden mit ":value"', + 'search_modifier_not_attachment_name_is' => 'Der Name eines Anhangs lautet nicht ":value"', + 'search_modifier_not_attachment_name_contains' => 'Der Name keines Anhangs enthält ":value"', + 'search_modifier_not_attachment_name_starts' => 'Der Name keines Anhangs beginnt mit ":value"', + 'search_modifier_not_attachment_name_ends' => 'Der Name keines Anhangs endet mit ":value"', + 'search_modifier_not_attachment_notes_are' => 'Notizen des Anhangs sind nicht ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Notizen des Anhangs enthalten nicht ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Notizen des Anhangs beginnen nicht mit ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Notizen des Anhangs enden nicht mit ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT ist ":value"', + 'update_rule_from_query' => 'Regel „:rule” aus Suchanfrage aktualisieren', + 'create_rule_from_query' => 'Neue Regel aus Suchanfrage erstellen', + 'rule_from_search_words' => 'Die Regel-Modul hat Schwierigkeiten „:string” zu verarbeiten. Die vorgeschlagene Regel, die Ihrer Suchanfrage entspricht, kann zu unterschiedlichen Ergebnissen führen. Bitte überprüfen Sie die Regelauslöser sorgfältig.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Die folgenden Einschränkungen werden ebenfalls auf die Suche angewendet:', - 'general_search_error' => 'Bei der Suche ist ein Fehler aufgetreten. Bitte überprüfen Sie die Protokolldateien für weitere Informationen.', - 'search_box' => 'Suche', - 'search_box_intro' => 'Willkommen zur Suchfunktion von Firefly III. Geben Sie Ihre Suchanfrage in das Feld ein. Stellen Sie sicher, dass Sie sich die Hilfe ansehen, da die Suche ziemlich umfangreich ist.', - 'search_error' => 'Fehler beim Suchen', - 'search_searching' => 'Suche ...', - 'search_results' => 'Suchergebnisse', + 'modifiers_applies_are' => 'Die folgenden Einschränkungen werden ebenfalls auf die Suche angewendet:', + 'general_search_error' => 'Bei der Suche ist ein Fehler aufgetreten. Bitte überprüfen Sie die Protokolldateien für weitere Informationen.', + 'search_box' => 'Suche', + 'search_box_intro' => 'Willkommen zur Suchfunktion von Firefly III. Geben Sie Ihre Suchanfrage in das Feld ein. Stellen Sie sicher, dass Sie sich die Hilfe ansehen, da die Suche ziemlich umfangreich ist.', + 'search_error' => 'Fehler beim Suchen', + 'search_searching' => 'Suche ...', + 'search_results' => 'Suchergebnisse', // repeat frequencies: - 'repeat_freq_yearly' => 'Jährlich', - 'repeat_freq_half-year' => 'halbjährlich', - 'repeat_freq_quarterly' => 'vierteljährlich', - 'repeat_freq_monthly' => 'monatlich', - 'repeat_freq_weekly' => 'wöchentlich', - 'repeat_freq_daily' => 'täglich', - 'daily' => 'täglich', - 'weekly' => 'wöchentlich', - 'quarterly' => 'vierteljährlich', - 'half-year' => 'halbjährlich', - 'yearly' => 'jährlich', + 'repeat_freq_yearly' => 'Jährlich', + 'repeat_freq_half-year' => 'halbjährlich', + 'repeat_freq_quarterly' => 'vierteljährlich', + 'repeat_freq_monthly' => 'monatlich', + 'repeat_freq_weekly' => 'wöchentlich', + 'repeat_freq_daily' => 'täglich', + 'daily' => 'täglich', + 'weekly' => 'wöchentlich', + 'quarterly' => 'vierteljährlich', + 'half-year' => 'halbjährlich', + 'yearly' => 'jährlich', // rules - 'is_not_rule_trigger' => 'Nicht', - 'cannot_fire_inactive_rules' => 'Inaktive Regeln können nicht ausgeführt werden.', - 'show_triggers' => 'Auslöser anzeigen', - 'show_actions' => 'Aktionen anzeigen', - 'rules' => 'Regeln', - 'rule_name' => 'Name der Regel', - 'rule_triggers' => 'Regel wird ausgelöst wenn', - 'rule_actions' => 'Regel wird', - 'new_rule' => 'Neue Regel', - 'new_rule_group' => 'Neue Regelgruppe', - 'rule_priority_up' => 'Regel eine höhere Priorität zuweisen', - 'rule_priority_down' => 'Regel eine geringere Priorität zuweisen', - 'make_new_rule_group' => 'Neue Regelgruppe erstellen', - 'store_new_rule_group' => 'Neue Regelgruppe speichern', - 'created_new_rule_group' => 'Neue Regelgruppe ":title" gespeichert!', - 'updated_rule_group' => 'Regelgruppe ":title" erfolgreich aktualisiert.', - 'edit_rule_group' => 'Regelgruppe ":title" bearbeiten', - 'duplicate_rule' => 'Regel „:title” duplizieren', - 'rule_copy_of' => 'Kopie von „:title”', - 'duplicated_rule' => 'Regel „:title” nach „:newTitle” dupliziert', - 'delete_rule_group' => 'Regelgruppe ":title" löschen', - 'deleted_rule_group' => 'Regelgruppe ":title" gelöscht', - 'update_rule_group' => 'Regelgruppe aktualisieren', - 'no_rules_in_group' => 'Die Gruppe enthält keine Regeln', - 'move_rule_group_up' => 'Regelgruppe nach oben verschieben', - 'move_rule_group_down' => 'Regelgruppe nach unten verschieben', - 'save_rules_by_moving' => 'Speichern Sie diese Regel, indem Sie sie in eine andere Regelgruppe verschieben:|Speichern Sie diese Regeln, indem Sie sie in eine andere Regelgruppe verschieben:', - 'make_new_rule' => 'Neue Regel in der Regelgruppe „:title” erstellen', - 'make_new_rule_no_group' => 'Neue Regel erstellen', - 'instructions_rule_from_bill' => 'Um Buchungen an Ihre neue Rechnung „:name” anzupassen, kann Firefly III eine Regel erstellen, die automatisch gegen alle von Ihnen gespeicherten Buchungen geprüft wird. Bitte überprüfen Sie die folgenden Angaben und speichern Sie die Regel, damit Firefly III die Buchungen automatisch mit Ihrer neuen Rechnung abgleicht.', - 'instructions_rule_from_journal' => 'Erstellen Sie eine Regel auf der Grundlage einer Ihrer Buchungen. Ergänzen oder übermitteln Sie das nachfolgende Formular.', - 'rule_is_strict' => 'strikte Regel', - 'rule_is_not_strict' => 'nicht-strenge Regel', - 'rule_help_stop_processing' => 'Wenn Sie dieses Kontrollkästchen aktivieren, werden spätere Regeln in dieser Gruppe nicht ausgeführt.', - 'rule_help_strict' => 'In strengen Regeln müssen alle Auslöser auslösen, damit die Aktion(en) ausgeführt werden. In nicht strengen Regeln genügt jeder Auslöser, um die Aktion(en) auszuführen.', - 'rule_help_active' => 'Inaktive Regeln werden nie ausgeführt.', - 'stored_new_rule' => 'Neue Regel mit Titel ":title" wurde gespeichert', - 'deleted_rule' => 'Regel mit Titel ":title" löschen', - 'store_new_rule' => 'Neue Regel speichern', - 'updated_rule' => 'Regel mit Titel ":title" bearbeiten', - 'default_rule_group_name' => 'Standardregeln', - 'default_rule_group_description' => 'Alle Ihre Regeln ohne eine bestimmte Gruppe.', - 'trigger' => 'Auslöser', - 'trigger_value' => 'Auslösen bei Wert', - 'stop_processing_other_triggers' => 'Keine weiteren Auslöser verarbeiten', - 'add_rule_trigger' => 'Neue Auslöser hinzufügen', - 'action' => 'Aktion', - 'action_value' => 'Aktionswert', - 'stop_executing_other_actions' => 'Keine weiteren Aktionen durchführen', - 'add_rule_action' => 'Neue Aktion hinzufügen', - 'edit_rule' => 'Regel ":title" bearbeiten', - 'delete_rule' => 'Regel ":title" löschen', - 'update_rule' => 'Regel aktualisieren', - 'test_rule_triggers' => 'Zeige übereinstimmende Buchungen', - 'warning_no_matching_transactions' => 'Keine passenden Buchungen gefunden.', - 'warning_no_valid_triggers' => 'Keine gültigen Auslöser gefunden.', - 'apply_rule_selection' => 'Regel „:title” auf eine Auswahl Ihrer Buchungen anwenden', - 'apply_rule_selection_intro' => 'Regeln wie „:title” werden im Normalfall nur auf neue oder aktualisierte Buchungen angewandt. Sie können die Regel aber auch auf eine Auswahl Ihrer bestehenden Buchungen anwenden. Dies kann nützlich sein, wenn Sie eine Regel aktualisiert haben und Sie die Änderungen auf andere Buchungen übertragen möchten.', - 'include_transactions_from_accounts' => 'Buchungen von diesem Konto einbeziehen', - 'include' => 'Inbegriffen?', - 'applied_rule_selection' => '{0} In Ihrer Auswahl wurden keine Buchungen durch die Regel „:title” geändert.|[1] In Ihrer Auswahl wurde eine Buchung durch die Regel „:title” geändert.|[2,*] In Ihrer Auswahl wurden :count Buchungen durch die Regel „:title” geändert.', - 'execute' => 'Ausführen', - 'apply_rule_group_selection' => 'Regelgruppe „:title” auf eine Auswahl Ihrer Buchungen anwenden', - 'apply_rule_group_selection_intro' => 'Regelgruppen wie „:title” werden in der Regel nur auf neue oder aktualisierte Buchungen angewandt, aber Sie können die Gruppe auch auf eine Auswahl Ihrer bestehenden Transaktionen anwenden. Dies kann nützlich sein, wenn Sie eine Gruppe aktualisiert haben und Sie die Änderungen auf andere Buchungen übertragen möchten.', - 'applied_rule_group_selection' => 'Regelgruppe ":title" wurde auf Ihre Auswahl angewendet.', + 'is_not_rule_trigger' => 'Nicht', + 'cannot_fire_inactive_rules' => 'Inaktive Regeln können nicht ausgeführt werden.', + 'show_triggers' => 'Auslöser anzeigen', + 'show_actions' => 'Aktionen anzeigen', + 'rules' => 'Regeln', + 'rule_name' => 'Name der Regel', + 'rule_triggers' => 'Regel wird ausgelöst wenn', + 'rule_actions' => 'Regel wird', + 'new_rule' => 'Neue Regel', + 'new_rule_group' => 'Neue Regelgruppe', + 'rule_priority_up' => 'Regel eine höhere Priorität zuweisen', + 'rule_priority_down' => 'Regel eine geringere Priorität zuweisen', + 'make_new_rule_group' => 'Neue Regelgruppe erstellen', + 'store_new_rule_group' => 'Neue Regelgruppe speichern', + 'created_new_rule_group' => 'Neue Regelgruppe ":title" gespeichert!', + 'updated_rule_group' => 'Regelgruppe ":title" erfolgreich aktualisiert.', + 'edit_rule_group' => 'Regelgruppe ":title" bearbeiten', + 'duplicate_rule' => 'Regel „:title” duplizieren', + 'rule_copy_of' => 'Kopie von „:title”', + 'duplicated_rule' => 'Regel „:title” nach „:newTitle” dupliziert', + 'delete_rule_group' => 'Regelgruppe ":title" löschen', + 'deleted_rule_group' => 'Regelgruppe ":title" gelöscht', + 'update_rule_group' => 'Regelgruppe aktualisieren', + 'no_rules_in_group' => 'Die Gruppe enthält keine Regeln', + 'move_rule_group_up' => 'Regelgruppe nach oben verschieben', + 'move_rule_group_down' => 'Regelgruppe nach unten verschieben', + 'save_rules_by_moving' => 'Speichern Sie diese Regel, indem Sie sie in eine andere Regelgruppe verschieben:|Speichern Sie diese Regeln, indem Sie sie in eine andere Regelgruppe verschieben:', + 'make_new_rule' => 'Neue Regel in der Regelgruppe „:title” erstellen', + 'make_new_rule_no_group' => 'Neue Regel erstellen', + 'instructions_rule_from_bill' => 'Um Buchungen an Ihre neue Rechnung „:name” anzupassen, kann Firefly III eine Regel erstellen, die automatisch gegen alle von Ihnen gespeicherten Buchungen geprüft wird. Bitte überprüfen Sie die folgenden Angaben und speichern Sie die Regel, damit Firefly III die Buchungen automatisch mit Ihrer neuen Rechnung abgleicht.', + 'instructions_rule_from_journal' => 'Erstellen Sie eine Regel auf der Grundlage einer Ihrer Buchungen. Ergänzen oder übermitteln Sie das nachfolgende Formular.', + 'rule_is_strict' => 'strikte Regel', + 'rule_is_not_strict' => 'nicht-strenge Regel', + 'rule_help_stop_processing' => 'Wenn Sie dieses Kontrollkästchen aktivieren, werden spätere Regeln in dieser Gruppe nicht ausgeführt.', + 'rule_help_strict' => 'In strengen Regeln müssen alle Auslöser auslösen, damit die Aktion(en) ausgeführt werden. In nicht strengen Regeln genügt jeder Auslöser, um die Aktion(en) auszuführen.', + 'rule_help_active' => 'Inaktive Regeln werden nie ausgeführt.', + 'stored_new_rule' => 'Neue Regel mit Titel ":title" wurde gespeichert', + 'deleted_rule' => 'Regel mit Titel ":title" löschen', + 'store_new_rule' => 'Neue Regel speichern', + 'updated_rule' => 'Regel mit Titel ":title" bearbeiten', + 'default_rule_group_name' => 'Standardregeln', + 'default_rule_group_description' => 'Alle Ihre Regeln ohne eine bestimmte Gruppe.', + 'trigger' => 'Auslöser', + 'trigger_value' => 'Auslösen bei Wert', + 'stop_processing_other_triggers' => 'Keine weiteren Auslöser verarbeiten', + 'add_rule_trigger' => 'Neue Auslöser hinzufügen', + 'action' => 'Aktion', + 'action_value' => 'Aktionswert', + 'stop_executing_other_actions' => 'Keine weiteren Aktionen durchführen', + 'add_rule_action' => 'Neue Aktion hinzufügen', + 'edit_rule' => 'Regel ":title" bearbeiten', + 'delete_rule' => 'Regel ":title" löschen', + 'update_rule' => 'Regel aktualisieren', + 'test_rule_triggers' => 'Zeige übereinstimmende Buchungen', + 'warning_no_matching_transactions' => 'Keine passenden Buchungen gefunden.', + 'warning_no_valid_triggers' => 'Keine gültigen Auslöser gefunden.', + 'apply_rule_selection' => 'Regel „:title” auf eine Auswahl Ihrer Buchungen anwenden', + 'apply_rule_selection_intro' => 'Regeln wie „:title” werden im Normalfall nur auf neue oder aktualisierte Buchungen angewandt. Sie können die Regel aber auch auf eine Auswahl Ihrer bestehenden Buchungen anwenden. Dies kann nützlich sein, wenn Sie eine Regel aktualisiert haben und Sie die Änderungen auf andere Buchungen übertragen möchten.', + 'include_transactions_from_accounts' => 'Buchungen von diesem Konto einbeziehen', + 'include' => 'Inbegriffen?', + 'applied_rule_selection' => '{0} In Ihrer Auswahl wurden keine Buchungen durch die Regel „:title” geändert.|[1] In Ihrer Auswahl wurde eine Buchung durch die Regel „:title” geändert.|[2,*] In Ihrer Auswahl wurden :count Buchungen durch die Regel „:title” geändert.', + 'execute' => 'Ausführen', + 'apply_rule_group_selection' => 'Regelgruppe „:title” auf eine Auswahl Ihrer Buchungen anwenden', + 'apply_rule_group_selection_intro' => 'Regelgruppen wie „:title” werden in der Regel nur auf neue oder aktualisierte Buchungen angewandt, aber Sie können die Gruppe auch auf eine Auswahl Ihrer bestehenden Transaktionen anwenden. Dies kann nützlich sein, wenn Sie eine Gruppe aktualisiert haben und Sie die Änderungen auf andere Buchungen übertragen möchten.', + 'applied_rule_group_selection' => 'Regelgruppe ":title" wurde auf Ihre Auswahl angewendet.', // actions and triggers - 'rule_trigger_store_journal' => 'Wenn eine Buchung erstellt wird', - 'rule_trigger_update_journal' => 'Wenn eine Buchung aktualisiert wird', - 'rule_trigger_user_action' => 'Die Nutzeraktion ist ":trigger_value"', + 'rule_trigger_store_journal' => 'Wenn eine Buchung erstellt wird', + 'rule_trigger_update_journal' => 'Wenn eine Buchung aktualisiert wird', + 'rule_trigger_user_action' => 'Die Nutzeraktion ist ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Quellkonto-Name beginnt mit..', - 'rule_trigger_source_account_starts' => 'Name des Quellkontos beginnt mit ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Quellkonto-Name endet mit..', - 'rule_trigger_source_account_ends' => 'Quellkonto-Name endet mit ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Quellkonto-Name lautet..', - 'rule_trigger_source_account_is' => 'Quellkonto-Name lautet ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Quellkonto-Name enhält..', - 'rule_trigger_source_account_contains' => 'Quellkonto-Name enthält ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Beide Konto IDs sind exakt..', - 'rule_trigger_account_id' => 'Beide Konto IDs sind exakt :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Quellkonto-ID ist genau..', - 'rule_trigger_source_account_id' => 'Quellkonto-ID ist genau :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Zielkonto-ID ist genau..', - 'rule_trigger_destination_account_id' => 'Quellkonto-ID ist genau :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Beide Konten sind Bargeld', - 'rule_trigger_account_is_cash' => 'Beide Konten sind Bargeld', - 'rule_trigger_source_is_cash_choice' => 'Quellkonto ist (bar)', - 'rule_trigger_source_is_cash' => 'Quellkonto ist (bar)', - 'rule_trigger_destination_is_cash_choice' => 'Zielkonto ist (bar)', - 'rule_trigger_destination_is_cash' => 'Zielkonto ist (bar)', - 'rule_trigger_source_account_nr_starts_choice' => 'Quellkontonummer/IBAN beginnt mit..', - 'rule_trigger_source_account_nr_starts' => 'Quellkontonummer/IBAN beginnt mit „:trigger_value”', - 'rule_trigger_source_account_nr_ends_choice' => 'Quellkontonummer/IBAN endet auf..', - 'rule_trigger_source_account_nr_ends' => 'Quellkontonummer/IBAN endet auf „:trigger_value”', - 'rule_trigger_source_account_nr_is_choice' => 'Quellkontonummer/IBAN ist..', - 'rule_trigger_source_account_nr_is' => 'Quellkontonummer/IBAN ist „:trigger_value”', - 'rule_trigger_source_account_nr_contains_choice' => 'Quellkontonummer/IBAN enthält..', - 'rule_trigger_source_account_nr_contains' => 'Quellkontonummer/IBAN enthält „:trigger_value”', - 'rule_trigger_destination_account_starts_choice' => 'Zielkonto-Name beginnt mit..', - 'rule_trigger_destination_account_starts' => 'Zielkonto-Name beginnt mit „:trigger_value”', - 'rule_trigger_destination_account_ends_choice' => 'Zielkonto-Name endet auf..', - 'rule_trigger_destination_account_ends' => 'Zielkonto-Name endet auf „:trigger_value”', - 'rule_trigger_destination_account_is_choice' => 'Zielkonto-Name ist..', - 'rule_trigger_destination_account_is' => 'Zielkonto-Name ist „:trigger_value”', - 'rule_trigger_destination_account_contains_choice' => 'Zielkonto-Name enthält..', - 'rule_trigger_destination_account_contains' => 'Zielkonto-Name enthält „:trigger_value”', - 'rule_trigger_destination_account_nr_starts_choice' => 'Zielkontonummer/IBAN beginnt mit..', - 'rule_trigger_destination_account_nr_starts' => 'Zielkontonummer/IBAN beginnt mit „:trigger_value”', - 'rule_trigger_destination_account_nr_ends_choice' => 'Zielkontonummer/IBAN endet auf..', - 'rule_trigger_destination_account_nr_ends' => 'Zielkontonummer/IBAN endet auf „:trigger_value”', - 'rule_trigger_destination_account_nr_is_choice' => 'Zielkontonummer / IBAN ist..', - 'rule_trigger_destination_account_nr_is' => 'Zielkontonummer/IBAN ist „:trigger_value”', - 'rule_trigger_destination_account_nr_contains_choice' => 'Zielkontonummer / IBAN enthält..', - 'rule_trigger_destination_account_nr_contains' => 'Zielkontonummer / IBAN enthält „:trigger_value”', - 'rule_trigger_transaction_type_choice' => 'Buchung ist vom Typ..', - 'rule_trigger_transaction_type' => 'Buchung ist vom Typ ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategorie ist..', - 'rule_trigger_category_is' => 'Kategorie ist ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Betrag ist kleiner oder gleich …', - 'rule_trigger_amount_less' => 'Betrag ist kleiner oder gleich :trigger_value', - 'rule_trigger_amount_is_choice' => 'Betrag ist..', - 'rule_trigger_amount_is' => 'Betrag lautet :trigger_value', - 'rule_trigger_amount_more_choice' => 'Betrag ist größer oder gleich …', - 'rule_trigger_amount_more' => 'Betrag ist größer oder gleich :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beschreibung beginnt mit..', - 'rule_trigger_description_starts' => 'Beschreibung beginnt mit ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beschreibung endet mit..', - 'rule_trigger_description_ends' => 'Beschreibung endet mit ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beschreibung enthält..', - 'rule_trigger_description_contains' => 'Beschreibung enthält ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beschreibung ist..', - 'rule_trigger_description_is' => 'Beschreibung ist ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Buchungsdatum lautet..', - 'rule_trigger_date_on' => 'Buchungsdatum lautet ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Buchungsdatum ist vor..', - 'rule_trigger_date_before' => 'Buchungsdatum ist vor „:trigger_value”', - 'rule_trigger_date_after_choice' => 'Buchungsdatum ist nach..', - 'rule_trigger_date_after' => 'Buchungsdatum ist nach „:trigger_value”', - 'rule_trigger_created_at_on_choice' => 'Transaktion wurde gemacht am..', - 'rule_trigger_created_at_on' => 'Transaktion wurde gemacht am ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaktion wurde zuletzt bearbeitet am..', - 'rule_trigger_updated_at_on' => 'Transaktion wurde zuletzt bearbeitet am ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget ist..', - 'rule_trigger_budget_is' => 'Budget ist „:trigger_value”', - 'rule_trigger_tag_is_choice' => 'Irgendein Schlagwort lautet..', - 'rule_trigger_tag_is' => 'Irgendein Schlagwort lautet ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Beliebiges Schlagwort enthält …', - 'rule_trigger_tag_contains' => 'Beliebiges Schlagwort enthält „:trigger_value”', - 'rule_trigger_tag_ends_choice' => 'Beliebiges Schlagwort endet auf ...', - 'rule_trigger_tag_ends' => 'Beliebiges Schlagwort endet auf „:trigger_value”', - 'rule_trigger_tag_starts_choice' => 'Beliebiges Schlagwort beginnt mit ...', - 'rule_trigger_tag_starts' => 'Beliebiges Schlagwort beginnt mit „:trigger_value”', - 'rule_trigger_currency_is_choice' => 'Buchungswährung ist..', - 'rule_trigger_currency_is' => 'Buchungswährung ist „:trigger_value”', - 'rule_trigger_foreign_currency_is_choice' => 'Fremdwährung der Buchung ist..', - 'rule_trigger_foreign_currency_is' => 'Fremdwährung der Buchung ist „:trigger_value”', - 'rule_trigger_has_attachments_choice' => 'Hat mindestens so viele Anhänge', - 'rule_trigger_has_attachments' => 'Enthält mindestens :trigger_value Anhänge', - 'rule_trigger_has_no_category_choice' => 'Ohne Kategorie', - 'rule_trigger_has_no_category' => 'Buchung ohne Kategorie', - 'rule_trigger_has_any_category_choice' => 'Hat eine (beliebige) Kategorie', - 'rule_trigger_has_any_category' => 'Buchung hat eine (beliebige) Kategorie', - 'rule_trigger_has_no_budget_choice' => 'Enthält kein Budget', - 'rule_trigger_has_no_budget' => 'Buchung ohne Budget', - 'rule_trigger_has_any_budget_choice' => 'Enthält ein (beliebiges) Budget', - 'rule_trigger_has_any_budget' => 'Buchung enthält ein (beliebiges) Budget', - 'rule_trigger_has_no_bill_choice' => 'Keine Rechnung zugeordnet', - 'rule_trigger_has_no_bill' => 'Buchung ohne Rechnung', - 'rule_trigger_has_any_bill_choice' => 'Hat eine (beliebige) Rechnung', - 'rule_trigger_has_any_bill' => 'Buchung hat eine (beliebige) Rechnung', - 'rule_trigger_has_no_tag_choice' => 'Enthält keine Schlagwörter', - 'rule_trigger_has_no_tag' => 'Transaktion enthält keine Schlagwörter', - 'rule_trigger_has_any_tag_choice' => 'Enthält einen oder mehrere (beliebige) Schlagwörter', - 'rule_trigger_has_any_tag' => 'Buchung enthält ein oder mehrere (beliebige) Schlagwörter', - 'rule_trigger_any_notes_choice' => 'Hat (beliebige) Notizen', - 'rule_trigger_any_notes' => 'Die Buchung hat (beliebige) Notizen', - 'rule_trigger_no_notes_choice' => 'Hat keine Notizen', - 'rule_trigger_no_notes' => 'Buchung hat keine Notizen', - 'rule_trigger_notes_is_choice' => 'Notizen lauten..', - 'rule_trigger_notes_is' => 'Notizen lauten ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notizen beinhalten..', - 'rule_trigger_notes_contains' => 'Notizen beinhalten ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notizen beginnen mit..', - 'rule_trigger_notes_starts' => 'Notizen beginnen mit ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notizen enden mit..', - 'rule_trigger_notes_ends' => 'Notizen enden mit ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Rechnung ist..', - 'rule_trigger_bill_is' => 'Rechung ist „:trigger_value”', - 'rule_trigger_external_id_is_choice' => 'Externe ID ist..', - 'rule_trigger_external_id_is' => 'Externe ID ist ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Interne Referenz ist..', - 'rule_trigger_internal_reference_is' => 'Interne Referenz ist ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaktions-Journal-ID ist..', - 'rule_trigger_journal_id' => 'Transaktions-Journal-ID ist „:trigger_value”', - 'rule_trigger_any_external_url' => 'Buchung enthält eine (beliebige) externe URL', - 'rule_trigger_any_external_url_choice' => 'Buchung enthält eine (beliebige) externe URL', - 'rule_trigger_any_external_id' => 'Buchung enthält eine (beliebige) externe ID', - 'rule_trigger_any_external_id_choice' => 'Buchung enthält eine (beliebige) externe ID', - 'rule_trigger_no_external_url_choice' => 'Buchung hat keine externe URL', - 'rule_trigger_no_external_url' => 'Buchung hat keine externe URL', - 'rule_trigger_no_external_id_choice' => 'Buchung enthält keine externe ID', - 'rule_trigger_no_external_id' => 'Buchung enthält keine externe ID', - 'rule_trigger_id_choice' => 'Buchungskennung lautet..', - 'rule_trigger_id' => 'Buchungskennung lautet „:trigger_value”', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT ist...', - 'rule_trigger_sepa_ct_is' => 'SEPA CT ist ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Quellkonto-Name beginnt mit..', + 'rule_trigger_source_account_starts' => 'Name des Quellkontos beginnt mit ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Quellkonto-Name endet mit..', + 'rule_trigger_source_account_ends' => 'Quellkonto-Name endet mit ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Quellkonto-Name lautet..', + 'rule_trigger_source_account_is' => 'Quellkonto-Name lautet ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Quellkonto-Name enhält..', + 'rule_trigger_source_account_contains' => 'Quellkonto-Name enthält ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Beide Konto IDs sind exakt..', + 'rule_trigger_account_id' => 'Beide Konto IDs sind exakt :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Quellkonto-ID ist genau..', + 'rule_trigger_source_account_id' => 'Quellkonto-ID ist genau :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Zielkonto-ID ist genau..', + 'rule_trigger_destination_account_id' => 'Quellkonto-ID ist genau :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Beide Konten sind Bargeld', + 'rule_trigger_account_is_cash' => 'Beide Konten sind Bargeld', + 'rule_trigger_source_is_cash_choice' => 'Quellkonto ist (bar)', + 'rule_trigger_source_is_cash' => 'Quellkonto ist (bar)', + 'rule_trigger_destination_is_cash_choice' => 'Zielkonto ist (bar)', + 'rule_trigger_destination_is_cash' => 'Zielkonto ist (bar)', + 'rule_trigger_source_account_nr_starts_choice' => 'Quellkontonummer/IBAN beginnt mit..', + 'rule_trigger_source_account_nr_starts' => 'Quellkontonummer/IBAN beginnt mit „:trigger_value”', + 'rule_trigger_source_account_nr_ends_choice' => 'Quellkontonummer/IBAN endet auf..', + 'rule_trigger_source_account_nr_ends' => 'Quellkontonummer/IBAN endet auf „:trigger_value”', + 'rule_trigger_source_account_nr_is_choice' => 'Quellkontonummer/IBAN ist..', + 'rule_trigger_source_account_nr_is' => 'Quellkontonummer/IBAN ist „:trigger_value”', + 'rule_trigger_source_account_nr_contains_choice' => 'Quellkontonummer/IBAN enthält..', + 'rule_trigger_source_account_nr_contains' => 'Quellkontonummer/IBAN enthält „:trigger_value”', + 'rule_trigger_destination_account_starts_choice' => 'Zielkonto-Name beginnt mit..', + 'rule_trigger_destination_account_starts' => 'Zielkonto-Name beginnt mit „:trigger_value”', + 'rule_trigger_destination_account_ends_choice' => 'Zielkonto-Name endet auf..', + 'rule_trigger_destination_account_ends' => 'Zielkonto-Name endet auf „:trigger_value”', + 'rule_trigger_destination_account_is_choice' => 'Zielkonto-Name ist..', + 'rule_trigger_destination_account_is' => 'Zielkonto-Name ist „:trigger_value”', + 'rule_trigger_destination_account_contains_choice' => 'Zielkonto-Name enthält..', + 'rule_trigger_destination_account_contains' => 'Zielkonto-Name enthält „:trigger_value”', + 'rule_trigger_destination_account_nr_starts_choice' => 'Zielkontonummer/IBAN beginnt mit..', + 'rule_trigger_destination_account_nr_starts' => 'Zielkontonummer/IBAN beginnt mit „:trigger_value”', + 'rule_trigger_destination_account_nr_ends_choice' => 'Zielkontonummer/IBAN endet auf..', + 'rule_trigger_destination_account_nr_ends' => 'Zielkontonummer/IBAN endet auf „:trigger_value”', + 'rule_trigger_destination_account_nr_is_choice' => 'Zielkontonummer / IBAN ist..', + 'rule_trigger_destination_account_nr_is' => 'Zielkontonummer/IBAN ist „:trigger_value”', + 'rule_trigger_destination_account_nr_contains_choice' => 'Zielkontonummer / IBAN enthält..', + 'rule_trigger_destination_account_nr_contains' => 'Zielkontonummer / IBAN enthält „:trigger_value”', + 'rule_trigger_transaction_type_choice' => 'Buchung ist vom Typ..', + 'rule_trigger_transaction_type' => 'Buchung ist vom Typ ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategorie ist..', + 'rule_trigger_category_is' => 'Kategorie ist ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Betrag ist kleiner oder gleich …', + 'rule_trigger_amount_less' => 'Betrag ist kleiner oder gleich :trigger_value', + 'rule_trigger_amount_is_choice' => 'Betrag ist..', + 'rule_trigger_amount_is' => 'Betrag lautet :trigger_value', + 'rule_trigger_amount_more_choice' => 'Betrag ist größer oder gleich …', + 'rule_trigger_amount_more' => 'Betrag ist größer oder gleich :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beschreibung beginnt mit..', + 'rule_trigger_description_starts' => 'Beschreibung beginnt mit ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beschreibung endet mit..', + 'rule_trigger_description_ends' => 'Beschreibung endet mit ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beschreibung enthält..', + 'rule_trigger_description_contains' => 'Beschreibung enthält ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beschreibung ist..', + 'rule_trigger_description_is' => 'Beschreibung ist ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Buchungsdatum lautet..', + 'rule_trigger_date_on' => 'Buchungsdatum lautet ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Buchungsdatum ist vor..', + 'rule_trigger_date_before' => 'Buchungsdatum ist vor „:trigger_value”', + 'rule_trigger_date_after_choice' => 'Buchungsdatum ist nach..', + 'rule_trigger_date_after' => 'Buchungsdatum ist nach „:trigger_value”', + 'rule_trigger_created_at_on_choice' => 'Transaktion wurde gemacht am..', + 'rule_trigger_created_at_on' => 'Transaktion wurde gemacht am ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaktion wurde zuletzt bearbeitet am..', + 'rule_trigger_updated_at_on' => 'Transaktion wurde zuletzt bearbeitet am ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget ist..', + 'rule_trigger_budget_is' => 'Budget ist „:trigger_value”', + 'rule_trigger_tag_is_choice' => 'Irgendein Schlagwort lautet..', + 'rule_trigger_tag_is' => 'Irgendein Schlagwort lautet ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Beliebiges Schlagwort enthält …', + 'rule_trigger_tag_contains' => 'Beliebiges Schlagwort enthält „:trigger_value”', + 'rule_trigger_tag_ends_choice' => 'Beliebiges Schlagwort endet auf ...', + 'rule_trigger_tag_ends' => 'Beliebiges Schlagwort endet auf „:trigger_value”', + 'rule_trigger_tag_starts_choice' => 'Beliebiges Schlagwort beginnt mit ...', + 'rule_trigger_tag_starts' => 'Beliebiges Schlagwort beginnt mit „:trigger_value”', + 'rule_trigger_currency_is_choice' => 'Buchungswährung ist..', + 'rule_trigger_currency_is' => 'Buchungswährung ist „:trigger_value”', + 'rule_trigger_foreign_currency_is_choice' => 'Fremdwährung der Buchung ist..', + 'rule_trigger_foreign_currency_is' => 'Fremdwährung der Buchung ist „:trigger_value”', + 'rule_trigger_has_attachments_choice' => 'Hat mindestens so viele Anhänge', + 'rule_trigger_has_attachments' => 'Enthält mindestens :trigger_value Anhänge', + 'rule_trigger_has_no_category_choice' => 'Ohne Kategorie', + 'rule_trigger_has_no_category' => 'Buchung ohne Kategorie', + 'rule_trigger_has_any_category_choice' => 'Hat eine (beliebige) Kategorie', + 'rule_trigger_has_any_category' => 'Buchung hat eine (beliebige) Kategorie', + 'rule_trigger_has_no_budget_choice' => 'Enthält kein Budget', + 'rule_trigger_has_no_budget' => 'Buchung ohne Budget', + 'rule_trigger_has_any_budget_choice' => 'Enthält ein (beliebiges) Budget', + 'rule_trigger_has_any_budget' => 'Buchung enthält ein (beliebiges) Budget', + 'rule_trigger_has_no_bill_choice' => 'Keine Rechnung zugeordnet', + 'rule_trigger_has_no_bill' => 'Buchung ohne Rechnung', + 'rule_trigger_has_any_bill_choice' => 'Hat eine (beliebige) Rechnung', + 'rule_trigger_has_any_bill' => 'Buchung hat eine (beliebige) Rechnung', + 'rule_trigger_has_no_tag_choice' => 'Enthält keine Schlagwörter', + 'rule_trigger_has_no_tag' => 'Transaktion enthält keine Schlagwörter', + 'rule_trigger_has_any_tag_choice' => 'Enthält einen oder mehrere (beliebige) Schlagwörter', + 'rule_trigger_has_any_tag' => 'Buchung enthält ein oder mehrere (beliebige) Schlagwörter', + 'rule_trigger_any_notes_choice' => 'Hat (beliebige) Notizen', + 'rule_trigger_any_notes' => 'Die Buchung hat (beliebige) Notizen', + 'rule_trigger_no_notes_choice' => 'Hat keine Notizen', + 'rule_trigger_no_notes' => 'Buchung hat keine Notizen', + 'rule_trigger_notes_is_choice' => 'Notizen lauten..', + 'rule_trigger_notes_is' => 'Notizen lauten ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notizen beinhalten..', + 'rule_trigger_notes_contains' => 'Notizen beinhalten ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notizen beginnen mit..', + 'rule_trigger_notes_starts' => 'Notizen beginnen mit ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notizen enden mit..', + 'rule_trigger_notes_ends' => 'Notizen enden mit ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Rechnung ist..', + 'rule_trigger_bill_is' => 'Rechung ist „:trigger_value”', + 'rule_trigger_external_id_is_choice' => 'Externe ID ist..', + 'rule_trigger_external_id_is' => 'Externe ID ist ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Interne Referenz ist..', + 'rule_trigger_internal_reference_is' => 'Interne Referenz ist ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaktions-Journal-ID ist..', + 'rule_trigger_journal_id' => 'Transaktions-Journal-ID ist „:trigger_value”', + 'rule_trigger_any_external_url' => 'Buchung enthält eine (beliebige) externe URL', + 'rule_trigger_any_external_url_choice' => 'Buchung enthält eine (beliebige) externe URL', + 'rule_trigger_any_external_id' => 'Buchung enthält eine (beliebige) externe ID', + 'rule_trigger_any_external_id_choice' => 'Buchung enthält eine (beliebige) externe ID', + 'rule_trigger_no_external_url_choice' => 'Buchung hat keine externe URL', + 'rule_trigger_no_external_url' => 'Buchung hat keine externe URL', + 'rule_trigger_no_external_id_choice' => 'Buchung enthält keine externe ID', + 'rule_trigger_no_external_id' => 'Buchung enthält keine externe ID', + 'rule_trigger_id_choice' => 'Buchungskennung lautet..', + 'rule_trigger_id' => 'Buchungskennung lautet „:trigger_value”', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT ist...', + 'rule_trigger_sepa_ct_is' => 'SEPA CT ist ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Die Nutzeraktion ist ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Kein Schlagwort lautet..', - 'rule_trigger_tag_is_not' => 'Kein Schlagwort lautet ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Beide Konten lauten exakt..', - 'rule_trigger_account_is' => 'Beide Konten lauten exakt ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Beide Konten beinhalten..', - 'rule_trigger_account_contains' => 'Beide Konten beinhalten ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Beide Konten enden mit..', - 'rule_trigger_account_ends' => 'Beide Konten enden mit ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Beide Konten beginnen mit..', - 'rule_trigger_account_starts' => 'Beide Konten beginnen mit ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Beide Kontonummer / IBAN lauten..', - 'rule_trigger_account_nr_is' => 'Beide Kontonummer / IBAN lauten ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Beide Kontonummer / IBAN enthalten..', - 'rule_trigger_account_nr_contains' => 'Beide Kontonummer / IBAN enthalten ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Entweder Kontonummer oder IBAN enden auf..', - 'rule_trigger_account_nr_ends' => 'Entweder Kontonummer oder IBAN enden auf ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Entweder Kontonummer oder IBAN beginnen mit..', - 'rule_trigger_account_nr_starts' => 'Beide Kontonummer / IBAN beginnen mit ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Kategorie enthält..', - 'rule_trigger_category_contains' => 'Kategorie enthält ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Kategorie endet mit..', - 'rule_trigger_category_ends' => 'Kategorie endet mit ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Kategorie startet mit..', - 'rule_trigger_category_starts' => 'Kategorie startet mit ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget enthält..', - 'rule_trigger_budget_contains' => 'Budget enthält ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget endet mit..', - 'rule_trigger_budget_ends' => 'Budget endet mit ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget beginnt mit..', - 'rule_trigger_budget_starts' => 'Budget beginnt mit ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Rechnung beinhaltet..', - 'rule_trigger_bill_contains' => 'Rechnung enthält ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Rechnung endet mit..', - 'rule_trigger_bill_ends' => 'Rechnung endet mit ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Rechnung beginnt mit..', - 'rule_trigger_bill_starts' => 'Rechnung beginnt mit ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Externe ID enthält..', - 'rule_trigger_external_id_contains' => 'Externe ID enthält ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Externe ID endet mit..', - 'rule_trigger_external_id_ends' => 'Externe ID endet mit ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Externe ID startet mit..', - 'rule_trigger_external_id_starts' => 'Externe ID beginnt mit ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Interne Referenz enthält..', - 'rule_trigger_internal_reference_contains' => 'Interne Referenz enthält ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Interne Referenz endet mit..', - 'rule_trigger_internal_reference_ends' => 'Interne Referenz endet mit ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Interne Referenz beginnt mit..', - 'rule_trigger_internal_reference_starts' => 'Interne Referenz beginnt mit ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Externe URL ist..', - 'rule_trigger_external_url_is' => 'Externe URL ist ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Externe URL enthält..', - 'rule_trigger_external_url_contains' => 'Externe URL enthält ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Externe URL endet mit..', - 'rule_trigger_external_url_ends' => 'Externe URL endet mit ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Externe URL beginnt mit..', - 'rule_trigger_external_url_starts' => 'Externe URL beginnt mit ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Hat keine Anhänge', - 'rule_trigger_has_no_attachments' => 'Transaktion hat keine Anhänge', - 'rule_trigger_recurrence_id_choice' => 'Dauerauftrags-ID ist..', - 'rule_trigger_recurrence_id' => 'Dauerauftrags-ID ist ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Zinstermin ist am..', - 'rule_trigger_interest_date_on' => 'Zinstermin ist am ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Zinstermin ist vor dem..', - 'rule_trigger_interest_date_before' => 'Das Zinsdatum liegt vor dem „:trigger_value”', - 'rule_trigger_interest_date_after_choice' => 'Zinstermin ist nach dem..', - 'rule_trigger_interest_date_after' => 'Das Zinsdatum liegt nach dem „:trigger_value”', - 'rule_trigger_book_date_on_choice' => 'Buchungsdatum ist am..', - 'rule_trigger_book_date_on' => 'Buchungsdatum ist am ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Buchungsdatum ist vor dem..', - 'rule_trigger_book_date_before' => 'Buchungsdatum ist vor dem ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Buchungsdatum ist nach dem..', - 'rule_trigger_book_date_after' => 'Buchungsdatum ist nach dem ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Erfassungsdatum ist am..', - 'rule_trigger_process_date_on' => 'Erfassungsdatum lautet ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Erfassungsdatum ist vor dem..', - 'rule_trigger_process_date_before' => 'Erfassungsdatum ist vor dem ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Erfassungsdatum ist nach dem..', - 'rule_trigger_process_date_after' => 'Erfassungsdatum ist nach dem ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Fälligkeitstermin ist am..', - 'rule_trigger_due_date_on' => 'Fälligkeitstermin ist am ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Fälligkeitstermin ist vor dem..', - 'rule_trigger_due_date_before' => 'Fälligkeitstermin ist vor dem ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Fälligkeitstermin ist nach dem..', - 'rule_trigger_due_date_after' => 'Fälligkeitstermin ist nach dem ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Zahlungsdatum ist am..', - 'rule_trigger_payment_date_on' => 'Zahlungsdatum ist am ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Zahlungsdatum ist vor dem..', - 'rule_trigger_payment_date_before' => 'Zahlungsdatum ist vor dem ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Zahlungsdatum ist nach..', - 'rule_trigger_payment_date_after' => 'Zahlungsdatum ist nach dem ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Rechnungsdatum ist am..', - 'rule_trigger_invoice_date_on' => 'Rechnungsdatum ist am ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Rechnungsdatum ist vor dem..', - 'rule_trigger_invoice_date_before' => 'Rechnungsdatum ist vor dem ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Rechnungsdatum ist nach dem..', - 'rule_trigger_invoice_date_after' => 'Rechnungsdatum ist nach dem ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaktion wurde erstellt vor dem..', - 'rule_trigger_created_at_before' => 'Transaktion wurde erstellt vor dem ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaktion wurde erstellt nach dem..', - 'rule_trigger_created_at_after' => 'Transaktion wurde erstellt nach dem ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaktion wurde zuletzt aktualisiert vor dem..', - 'rule_trigger_updated_at_before' => 'Transaktion wurde zuletzt aktualisiert vor dem ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaktion wurde zuletzt aktualisiert nach dem..', - 'rule_trigger_updated_at_after' => 'Transaktion wurde zuletzt aktualisiert nach dem ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Buchungsbetrag (Fremdwährung) ist exakt..', - 'rule_trigger_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist exakt ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Buchungsbetrag (Fremdwährung) ist geringer als..', - 'rule_trigger_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist geringer als ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Buchungsbetrag (Fremdwährung) ist höher als..', - 'rule_trigger_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist höher als ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Der Name eines Anhangs lautet..', - 'rule_trigger_attachment_name_is' => 'Der Name eines Anhangs lautet ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Der Name eines Anhangs enthält..', - 'rule_trigger_attachment_name_contains' => 'Der Name eines Anhangs enthält ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Der Name eines Anhangs beginnt mit..', - 'rule_trigger_attachment_name_starts' => 'Der Name eines Anhangs beginnt mit ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Der Name eines Anhangs endet mit..', - 'rule_trigger_attachment_name_ends' => 'Der Name eines Anhangs endet mit ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Notizen des Anhangs lauten..', - 'rule_trigger_attachment_notes_are' => 'Notizen des Anhangs lauten ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Notizen des Anhangs beinhalten..', - 'rule_trigger_attachment_notes_contains' => 'Notizen des Anhangs beinhalten ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Notizen des Anhangs beginnen mit..', - 'rule_trigger_attachment_notes_starts' => 'Notizen des Anhangs beginnen mit ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Notizen des Anhangs enden mit..', - 'rule_trigger_attachment_notes_ends' => 'Notizen des Anhangs enden mit ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Buchung wurde ausgeglichen', - 'rule_trigger_reconciled' => 'Buchung wurde ausgeglichen', - 'rule_trigger_exists_choice' => 'Alle Buchungen stimmen überein(!)', - 'rule_trigger_exists' => 'Alle Buchungen stimmen überein', + 'rule_trigger_user_action_choice' => 'Die Nutzeraktion ist ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Kein Schlagwort lautet..', + 'rule_trigger_tag_is_not' => 'Kein Schlagwort lautet ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Beide Konten lauten exakt..', + 'rule_trigger_account_is' => 'Beide Konten lauten exakt ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Beide Konten beinhalten..', + 'rule_trigger_account_contains' => 'Beide Konten beinhalten ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Beide Konten enden mit..', + 'rule_trigger_account_ends' => 'Beide Konten enden mit ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Beide Konten beginnen mit..', + 'rule_trigger_account_starts' => 'Beide Konten beginnen mit ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Beide Kontonummer / IBAN lauten..', + 'rule_trigger_account_nr_is' => 'Beide Kontonummer / IBAN lauten ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Beide Kontonummer / IBAN enthalten..', + 'rule_trigger_account_nr_contains' => 'Beide Kontonummer / IBAN enthalten ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Entweder Kontonummer oder IBAN enden auf..', + 'rule_trigger_account_nr_ends' => 'Entweder Kontonummer oder IBAN enden auf ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Entweder Kontonummer oder IBAN beginnen mit..', + 'rule_trigger_account_nr_starts' => 'Beide Kontonummer / IBAN beginnen mit ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Kategorie enthält..', + 'rule_trigger_category_contains' => 'Kategorie enthält ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Kategorie endet mit..', + 'rule_trigger_category_ends' => 'Kategorie endet mit ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Kategorie startet mit..', + 'rule_trigger_category_starts' => 'Kategorie startet mit ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget enthält..', + 'rule_trigger_budget_contains' => 'Budget enthält ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget endet mit..', + 'rule_trigger_budget_ends' => 'Budget endet mit ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget beginnt mit..', + 'rule_trigger_budget_starts' => 'Budget beginnt mit ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Rechnung beinhaltet..', + 'rule_trigger_bill_contains' => 'Rechnung enthält ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Rechnung endet mit..', + 'rule_trigger_bill_ends' => 'Rechnung endet mit ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Rechnung beginnt mit..', + 'rule_trigger_bill_starts' => 'Rechnung beginnt mit ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Externe ID enthält..', + 'rule_trigger_external_id_contains' => 'Externe ID enthält ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Externe ID endet mit..', + 'rule_trigger_external_id_ends' => 'Externe ID endet mit ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Externe ID startet mit..', + 'rule_trigger_external_id_starts' => 'Externe ID beginnt mit ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Interne Referenz enthält..', + 'rule_trigger_internal_reference_contains' => 'Interne Referenz enthält ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Interne Referenz endet mit..', + 'rule_trigger_internal_reference_ends' => 'Interne Referenz endet mit ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Interne Referenz beginnt mit..', + 'rule_trigger_internal_reference_starts' => 'Interne Referenz beginnt mit ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Externe URL ist..', + 'rule_trigger_external_url_is' => 'Externe URL ist ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Externe URL enthält..', + 'rule_trigger_external_url_contains' => 'Externe URL enthält ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Externe URL endet mit..', + 'rule_trigger_external_url_ends' => 'Externe URL endet mit ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Externe URL beginnt mit..', + 'rule_trigger_external_url_starts' => 'Externe URL beginnt mit ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Hat keine Anhänge', + 'rule_trigger_has_no_attachments' => 'Transaktion hat keine Anhänge', + 'rule_trigger_recurrence_id_choice' => 'Dauerauftrags-ID ist..', + 'rule_trigger_recurrence_id' => 'Dauerauftrags-ID ist ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Zinstermin ist am..', + 'rule_trigger_interest_date_on' => 'Zinstermin ist am ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Zinstermin ist vor dem..', + 'rule_trigger_interest_date_before' => 'Das Zinsdatum liegt vor dem „:trigger_value”', + 'rule_trigger_interest_date_after_choice' => 'Zinstermin ist nach dem..', + 'rule_trigger_interest_date_after' => 'Das Zinsdatum liegt nach dem „:trigger_value”', + 'rule_trigger_book_date_on_choice' => 'Buchungsdatum ist am..', + 'rule_trigger_book_date_on' => 'Buchungsdatum ist am ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Buchungsdatum ist vor dem..', + 'rule_trigger_book_date_before' => 'Buchungsdatum ist vor dem ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Buchungsdatum ist nach dem..', + 'rule_trigger_book_date_after' => 'Buchungsdatum ist nach dem ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Erfassungsdatum ist am..', + 'rule_trigger_process_date_on' => 'Erfassungsdatum lautet ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Erfassungsdatum ist vor dem..', + 'rule_trigger_process_date_before' => 'Erfassungsdatum ist vor dem ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Erfassungsdatum ist nach dem..', + 'rule_trigger_process_date_after' => 'Erfassungsdatum ist nach dem ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Fälligkeitstermin ist am..', + 'rule_trigger_due_date_on' => 'Fälligkeitstermin ist am ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Fälligkeitstermin ist vor dem..', + 'rule_trigger_due_date_before' => 'Fälligkeitstermin ist vor dem ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Fälligkeitstermin ist nach dem..', + 'rule_trigger_due_date_after' => 'Fälligkeitstermin ist nach dem ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Zahlungsdatum ist am..', + 'rule_trigger_payment_date_on' => 'Zahlungsdatum ist am ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Zahlungsdatum ist vor dem..', + 'rule_trigger_payment_date_before' => 'Zahlungsdatum ist vor dem ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Zahlungsdatum ist nach..', + 'rule_trigger_payment_date_after' => 'Zahlungsdatum ist nach dem ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Rechnungsdatum ist am..', + 'rule_trigger_invoice_date_on' => 'Rechnungsdatum ist am ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Rechnungsdatum ist vor dem..', + 'rule_trigger_invoice_date_before' => 'Rechnungsdatum ist vor dem ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Rechnungsdatum ist nach dem..', + 'rule_trigger_invoice_date_after' => 'Rechnungsdatum ist nach dem ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaktion wurde erstellt vor dem..', + 'rule_trigger_created_at_before' => 'Transaktion wurde erstellt vor dem ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaktion wurde erstellt nach dem..', + 'rule_trigger_created_at_after' => 'Transaktion wurde erstellt nach dem ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaktion wurde zuletzt aktualisiert vor dem..', + 'rule_trigger_updated_at_before' => 'Transaktion wurde zuletzt aktualisiert vor dem ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaktion wurde zuletzt aktualisiert nach dem..', + 'rule_trigger_updated_at_after' => 'Transaktion wurde zuletzt aktualisiert nach dem ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Buchungsbetrag (Fremdwährung) ist exakt..', + 'rule_trigger_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist exakt ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Buchungsbetrag (Fremdwährung) ist geringer als..', + 'rule_trigger_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist geringer als ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Buchungsbetrag (Fremdwährung) ist höher als..', + 'rule_trigger_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist höher als ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Der Name eines Anhangs lautet..', + 'rule_trigger_attachment_name_is' => 'Der Name eines Anhangs lautet ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Der Name eines Anhangs enthält..', + 'rule_trigger_attachment_name_contains' => 'Der Name eines Anhangs enthält ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Der Name eines Anhangs beginnt mit..', + 'rule_trigger_attachment_name_starts' => 'Der Name eines Anhangs beginnt mit ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Der Name eines Anhangs endet mit..', + 'rule_trigger_attachment_name_ends' => 'Der Name eines Anhangs endet mit ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Notizen des Anhangs lauten..', + 'rule_trigger_attachment_notes_are' => 'Notizen des Anhangs lauten ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Notizen des Anhangs beinhalten..', + 'rule_trigger_attachment_notes_contains' => 'Notizen des Anhangs beinhalten ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Notizen des Anhangs beginnen mit..', + 'rule_trigger_attachment_notes_starts' => 'Notizen des Anhangs beginnen mit ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Notizen des Anhangs enden mit..', + 'rule_trigger_attachment_notes_ends' => 'Notizen des Anhangs enden mit ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Buchung wurde ausgeglichen', + 'rule_trigger_reconciled' => 'Buchung wurde ausgeglichen', + 'rule_trigger_exists_choice' => 'Alle Buchungen stimmen überein(!)', + 'rule_trigger_exists' => 'Alle Buchungen stimmen überein', // more values for new types: - 'rule_trigger_not_account_id' => 'Konto-ID ist nicht ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Quellkonto-ID ist nicht ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Zielkonto-ID ist nicht ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Buchungstyp ist nicht „:trigger_value”', - 'rule_trigger_not_tag_is' => 'Schlagwort ist nicht ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Schlagwort ist ":trigger_value"', - 'rule_trigger_not_description_is' => 'Beschreibung ist nicht ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Beschreibung enthält nicht', - 'rule_trigger_not_description_ends' => 'Beschreibung endet nicht mit ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Beschreibung beginnt nicht mit ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notizen lauten nicht ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notizen enthalten nicht ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notizen enden nicht mit ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notizen beginnen nicht mit ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Quellkonto ist nicht ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Quellkonto enthält nicht ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Quellkonto endet nicht mit ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Quellkonto beginnt nicht mit ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Quellkontonummer / IBAN ist nicht „:trigger_value”', - 'rule_trigger_not_source_account_nr_contains' => 'Quellkontonummer / IBAN enthält nicht „:trigger_value”', - 'rule_trigger_not_source_account_nr_ends' => 'Quellkontonummer / IBAN endet nicht auf „:trigger_value”', - 'rule_trigger_not_source_account_nr_starts' => 'Quellkontonummer / IBAN beginnt nicht mit „:trigger_value”', - 'rule_trigger_not_destination_account_is' => 'Zielkonto ist nicht ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Zielkonto enthält nicht ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Zielkonto endet nicht mit ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Zielkonto beginnt nicht mit ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Zielkontonummer / IBAN ist nicht „:trigger_value”', - 'rule_trigger_not_destination_account_nr_contains' => 'Zielkontonummer / IBAN enthält nicht „:trigger_value”', - 'rule_trigger_not_destination_account_nr_ends' => 'Zielkontonummer / IBAN endet nicht mit „:trigger_value”', - 'rule_trigger_not_destination_account_nr_starts' => 'Zielkontonummer / IBAN beginnt nicht mit „:trigger_value”', - 'rule_trigger_not_account_is' => 'Beide Konten sind nicht ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Beide Konten enthalten nicht ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Beide Konten enden nicht mit ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Beide Konten beginnen nicht mit ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Beide Kontonummern / IBANs sind nicht ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Beide Kontonummern / IBANs enthalten ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Beide Kontonummern / IBANs enden mit ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Beide Kontonummern / IBANs beginnen nicht mit ":trigger_value"', - 'rule_trigger_not_category_is' => 'Kategorie ist nicht ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Kategorie enthält nicht ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Kategorie endet nicht mit „:trigger_value”', - 'rule_trigger_not_category_starts' => 'Kategorie beginnt nicht mit „:trigger_value”', - 'rule_trigger_not_budget_is' => 'Budget ist nicht „:trigger_value”', - 'rule_trigger_not_budget_contains' => 'Budget enthält nicht „:trigger_value”', - 'rule_trigger_not_budget_ends' => 'Budget endet nicht mit „:trigger_value”', - 'rule_trigger_not_budget_starts' => 'Budget beginnt nicht mit „:trigger_value”', - 'rule_trigger_not_bill_is' => 'Rechnung ist nicht ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Rechnung enthält nicht ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Rechnung endet nicht mit ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Rechnung endet nicht mit ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Externe ID ist nicht ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Externe ID enthält nicht ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Externe ID endet nicht mit ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Externe ID beginnt nicht mit ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Interne Referenz ist nicht „:trigger_value”', - 'rule_trigger_not_internal_reference_contains' => 'Interne Referenz enthält nicht „:trigger_value”', - 'rule_trigger_not_internal_reference_ends' => 'Interne Referenz endet nicht auf „:trigger_value”', - 'rule_trigger_not_internal_reference_starts' => 'Interne Referenz beginnt nicht mit „:trigger_value”', - 'rule_trigger_not_external_url_is' => 'Externe URL ist nicht ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Externe URL enthält nicht ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Externe URL endet nicht mit ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Externe URL beginnt nicht mit ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Währung ist nicht ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Fremdwährung ist nicht ":trigger_value"', - 'rule_trigger_not_id' => 'Buchungs-ID ist nicht ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaktions-Journal-ID ist nicht ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Wiederholungs-ID ist nicht ":trigger_value"', - 'rule_trigger_not_date_on' => 'Datum ist nicht am ":trigger_value"', - 'rule_trigger_not_date_before' => 'Datum liegt nicht vor ":trigger_value"', - 'rule_trigger_not_date_after' => 'Das Datum liegt nicht nach ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Zinsdatum ist nicht auf ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Zinsdatum liegt nicht vor ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Zinsdatum liegt nicht nach ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Buchungsdatum ist nicht am ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Buchungsdatum ist nicht vor ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Buchungsdatum ist nicht nach ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Erfassungsdatum ist nicht am ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Erfassungsdatum ist nicht vor dem ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Erfassungsdatum ist nicht nach dem ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Fälligkeitstermin ist nicht am ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Fälligkeitstermin ist nicht vor ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Fälligkeitstermin ist nicht nach ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Zahlungsdatum ist nicht am ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Zahlungsdatum ist nicht vor ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Zahlungsdatum ist nicht nach ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Rechnungsdatum ist nicht ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Rechnungsdatum liegt nicht vor ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Rechnungsdatum liegt nicht nach ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Buchung wurde nicht am ":trigger_value" erstellt', - 'rule_trigger_not_created_at_before' => 'Buchung wurde nicht vor dem ":trigger_value" erstellt', - 'rule_trigger_not_created_at_after' => 'Buchung wurde nicht nach dem ":trigger_value" erstellt', - 'rule_trigger_not_updated_at_on' => 'Buchung wurde nicht am ":trigger_value" aktualisiert', - 'rule_trigger_not_updated_at_before' => 'Buchung wurde nicht vor dem ":trigger_value" aktualisiert', - 'rule_trigger_not_updated_at_after' => 'Buchung wurde nicht nach dem ":trigger_value" aktualisiert', - 'rule_trigger_not_amount_is' => 'Buchungsbetrag ist nicht ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Buchungsbetrag ist größer als ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Buchungsbetrag ist kleiner als ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist nicht ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist größer als ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist kleiner als ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Kein Anhang heißt ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Kein Anhangsname enthält ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Kein Anhangsname beginnt mit ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Kein Anhangsname endet mit ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Notizen des Anhangs lauten nicht ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Notizen des Anhangs enthalten nicht ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Notizen des Anhangs beginnen nicht mit ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Notizen des Anhangs enden nicht mit ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Buchung wurde nicht abgeglichen', - 'rule_trigger_not_exists' => 'Buchung existiert nicht', - 'rule_trigger_not_has_attachments' => 'Buchung hat keine Anhänge', - 'rule_trigger_not_has_any_category' => 'Buchung ohne Kategorie', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Buchung ist keine Rechnung zugewiesen', - 'rule_trigger_not_has_any_tag' => 'Buchung hat keine Schlagwörter', - 'rule_trigger_not_any_notes' => 'Buchung hat keine Notizen', - 'rule_trigger_not_any_external_url' => 'Buchung besitzt keine externe URL', - 'rule_trigger_not_has_no_attachments' => 'Buchung hat Anhänge', - 'rule_trigger_not_has_no_category' => 'Buchung hat eine (beliebige) Kategorie', - 'rule_trigger_not_has_no_budget' => 'Buchung hat ein (beliebiges) Budget', - 'rule_trigger_not_has_no_bill' => 'Buchung hat eine (beliebige) Rechnung', - 'rule_trigger_not_has_no_tag' => 'Buchung hat ein (beliebiges) Schlagwort', - 'rule_trigger_not_no_notes' => 'Die Buchung hat Notizen', - 'rule_trigger_not_no_external_url' => 'Die Buchung besitzt eine externe URL', - 'rule_trigger_not_source_is_cash' => 'Zielkonto ist kein Bargeldkonto', - 'rule_trigger_not_destination_is_cash' => 'Zielkonto ist kein Bargeldkonto', - 'rule_trigger_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten', + 'rule_trigger_not_account_id' => 'Konto-ID ist nicht ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Quellkonto-ID ist nicht ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Zielkonto-ID ist nicht ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Buchungstyp ist nicht „:trigger_value”', + 'rule_trigger_not_tag_is' => 'Schlagwort ist nicht ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Schlagwort ist ":trigger_value"', + 'rule_trigger_not_description_is' => 'Beschreibung ist nicht ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Beschreibung enthält nicht', + 'rule_trigger_not_description_ends' => 'Beschreibung endet nicht mit ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Beschreibung beginnt nicht mit ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notizen lauten nicht ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notizen enthalten nicht ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notizen enden nicht mit ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notizen beginnen nicht mit ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Quellkonto ist nicht ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Quellkonto enthält nicht ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Quellkonto endet nicht mit ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Quellkonto beginnt nicht mit ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Quellkontonummer / IBAN ist nicht „:trigger_value”', + 'rule_trigger_not_source_account_nr_contains' => 'Quellkontonummer / IBAN enthält nicht „:trigger_value”', + 'rule_trigger_not_source_account_nr_ends' => 'Quellkontonummer / IBAN endet nicht auf „:trigger_value”', + 'rule_trigger_not_source_account_nr_starts' => 'Quellkontonummer / IBAN beginnt nicht mit „:trigger_value”', + 'rule_trigger_not_destination_account_is' => 'Zielkonto ist nicht ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Zielkonto enthält nicht ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Zielkonto endet nicht mit ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Zielkonto beginnt nicht mit ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Zielkontonummer / IBAN ist nicht „:trigger_value”', + 'rule_trigger_not_destination_account_nr_contains' => 'Zielkontonummer / IBAN enthält nicht „:trigger_value”', + 'rule_trigger_not_destination_account_nr_ends' => 'Zielkontonummer / IBAN endet nicht mit „:trigger_value”', + 'rule_trigger_not_destination_account_nr_starts' => 'Zielkontonummer / IBAN beginnt nicht mit „:trigger_value”', + 'rule_trigger_not_account_is' => 'Beide Konten sind nicht ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Beide Konten enthalten nicht ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Beide Konten enden nicht mit ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Beide Konten beginnen nicht mit ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Beide Kontonummern / IBANs sind nicht ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Beide Kontonummern / IBANs enthalten ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Beide Kontonummern / IBANs enden mit ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Beide Kontonummern / IBANs beginnen nicht mit ":trigger_value"', + 'rule_trigger_not_category_is' => 'Kategorie ist nicht ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Kategorie enthält nicht ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Kategorie endet nicht mit „:trigger_value”', + 'rule_trigger_not_category_starts' => 'Kategorie beginnt nicht mit „:trigger_value”', + 'rule_trigger_not_budget_is' => 'Budget ist nicht „:trigger_value”', + 'rule_trigger_not_budget_contains' => 'Budget enthält nicht „:trigger_value”', + 'rule_trigger_not_budget_ends' => 'Budget endet nicht mit „:trigger_value”', + 'rule_trigger_not_budget_starts' => 'Budget beginnt nicht mit „:trigger_value”', + 'rule_trigger_not_bill_is' => 'Rechnung ist nicht ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Rechnung enthält nicht ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Rechnung endet nicht mit ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Rechnung endet nicht mit ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Externe ID ist nicht ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Externe ID enthält nicht ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Externe ID endet nicht mit ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Externe ID beginnt nicht mit ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Interne Referenz ist nicht „:trigger_value”', + 'rule_trigger_not_internal_reference_contains' => 'Interne Referenz enthält nicht „:trigger_value”', + 'rule_trigger_not_internal_reference_ends' => 'Interne Referenz endet nicht auf „:trigger_value”', + 'rule_trigger_not_internal_reference_starts' => 'Interne Referenz beginnt nicht mit „:trigger_value”', + 'rule_trigger_not_external_url_is' => 'Externe URL ist nicht ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Externe URL enthält nicht ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Externe URL endet nicht mit ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Externe URL beginnt nicht mit ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Währung ist nicht ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Fremdwährung ist nicht ":trigger_value"', + 'rule_trigger_not_id' => 'Buchungs-ID ist nicht ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaktions-Journal-ID ist nicht ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Wiederholungs-ID ist nicht ":trigger_value"', + 'rule_trigger_not_date_on' => 'Datum ist nicht am ":trigger_value"', + 'rule_trigger_not_date_before' => 'Datum liegt nicht vor ":trigger_value"', + 'rule_trigger_not_date_after' => 'Das Datum liegt nicht nach ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Zinsdatum ist nicht auf ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Zinsdatum liegt nicht vor ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Zinsdatum liegt nicht nach ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Buchungsdatum ist nicht am ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Buchungsdatum ist nicht vor ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Buchungsdatum ist nicht nach ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Erfassungsdatum ist nicht am ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Erfassungsdatum ist nicht vor dem ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Erfassungsdatum ist nicht nach dem ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Fälligkeitstermin ist nicht am ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Fälligkeitstermin ist nicht vor ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Fälligkeitstermin ist nicht nach ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Zahlungsdatum ist nicht am ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Zahlungsdatum ist nicht vor ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Zahlungsdatum ist nicht nach ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Rechnungsdatum ist nicht ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Rechnungsdatum liegt nicht vor ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Rechnungsdatum liegt nicht nach ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Buchung wurde nicht am ":trigger_value" erstellt', + 'rule_trigger_not_created_at_before' => 'Buchung wurde nicht vor dem ":trigger_value" erstellt', + 'rule_trigger_not_created_at_after' => 'Buchung wurde nicht nach dem ":trigger_value" erstellt', + 'rule_trigger_not_updated_at_on' => 'Buchung wurde nicht am ":trigger_value" aktualisiert', + 'rule_trigger_not_updated_at_before' => 'Buchung wurde nicht vor dem ":trigger_value" aktualisiert', + 'rule_trigger_not_updated_at_after' => 'Buchung wurde nicht nach dem ":trigger_value" aktualisiert', + 'rule_trigger_not_amount_is' => 'Buchungsbetrag ist nicht ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Buchungsbetrag ist größer als ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Buchungsbetrag ist kleiner als ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Buchungsbetrag (Fremdwährung) ist nicht ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Buchungsbetrag (Fremdwährung) ist größer als ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Buchungsbetrag (Fremdwährung) ist kleiner als ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Kein Anhang heißt ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Kein Anhangsname enthält ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Kein Anhangsname beginnt mit ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Kein Anhangsname endet mit ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Notizen des Anhangs lauten nicht ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Notizen des Anhangs enthalten nicht ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Notizen des Anhangs beginnen nicht mit ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Notizen des Anhangs enden nicht mit ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Buchung wurde nicht abgeglichen', + 'rule_trigger_not_exists' => 'Buchung existiert nicht', + 'rule_trigger_not_has_attachments' => 'Buchung hat keine Anhänge', + 'rule_trigger_not_has_any_category' => 'Buchung ohne Kategorie', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Buchung ist keine Rechnung zugewiesen', + 'rule_trigger_not_has_any_tag' => 'Buchung hat keine Schlagwörter', + 'rule_trigger_not_any_notes' => 'Buchung hat keine Notizen', + 'rule_trigger_not_any_external_url' => 'Buchung besitzt keine externe URL', + 'rule_trigger_not_has_no_attachments' => 'Buchung hat Anhänge', + 'rule_trigger_not_has_no_category' => 'Buchung hat eine (beliebige) Kategorie', + 'rule_trigger_not_has_no_budget' => 'Buchung hat ein (beliebiges) Budget', + 'rule_trigger_not_has_no_bill' => 'Buchung hat eine (beliebige) Rechnung', + 'rule_trigger_not_has_no_tag' => 'Buchung hat ein (beliebiges) Schlagwort', + 'rule_trigger_not_no_notes' => 'Die Buchung hat Notizen', + 'rule_trigger_not_no_external_url' => 'Die Buchung besitzt eine externe URL', + 'rule_trigger_not_source_is_cash' => 'Zielkonto ist kein Bargeldkonto', + 'rule_trigger_not_destination_is_cash' => 'Zielkonto ist kein Bargeldkonto', + 'rule_trigger_not_account_is_cash' => 'Beide Konten sind keine Bargeldkonten', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'Buchung LÖSCHEN(!)', - 'rule_action_delete_transaction' => 'Buchung LÖSCHEN(!)', - 'rule_action_set_category' => 'Kategorie auf ":action_value" setzen', - 'rule_action_clear_category' => 'Kategorie entfernen', - 'rule_action_set_budget' => 'Budget auf „:action_value” setzen', - 'rule_action_clear_budget' => 'Budget leeren', - 'rule_action_add_tag' => 'Schlagwort „:action_value” hinzufügen', - 'rule_action_remove_tag' => 'Schlagwort „:action_value” entfernen', - 'rule_action_remove_all_tags' => 'Alle Schlüsselwörter entfernen', - 'rule_action_set_description' => 'Beschreibung setzen für ":action_value"', - 'rule_action_append_description' => '":action_value" an Beschreibung anfügen', - 'rule_action_prepend_description' => '":action_value" vor Beschreibung einfügen', - 'rule_action_set_category_choice' => "Kategorie zuweisen\u{a0}...", - 'rule_action_clear_category_choice' => 'Bereinige jede Kategorie', - 'rule_action_set_budget_choice' => 'Setze Budget auf ..', - 'rule_action_clear_budget_choice' => 'Alle Budgets leeren', - 'rule_action_add_tag_choice' => 'Schlagwort hinzufügen ..', - 'rule_action_remove_tag_choice' => 'Schlagwort entfernen ..', - 'rule_action_remove_all_tags_choice' => 'Alle Schlagwörter entfernen', - 'rule_action_set_description_choice' => 'Beschreibung festlegen auf ..', - 'rule_action_update_piggy_choice' => 'Hinzufügen / Entfernen des Transaktionsbetrags zu / aus Sparschwein ..', - 'rule_action_update_piggy' => 'Transaktionsbetrag zu / aus Sparschwein ":action_value" hinzufügen / entfernen', - 'rule_action_append_description_choice' => 'Beschreibung anhängen mit ..', - 'rule_action_prepend_description_choice' => 'Beschreibung voranstellen mit ..', - 'rule_action_set_source_account_choice' => 'Quellkonto festlegen auf ..', - 'rule_action_set_source_account' => 'Lege Quellkonto als :action_value fest', - 'rule_action_set_destination_account_choice' => 'Zielkonto festlegen auf ..', - 'rule_action_set_destination_account' => 'Lege Zielkonto als :action_value fest', - 'rule_action_append_notes_choice' => 'Notizen anhängen mit ..', - 'rule_action_append_notes' => '„:action_value” an Notizen anhängen', - 'rule_action_prepend_notes_choice' => 'Notizen voranstellen mit ..', - 'rule_action_prepend_notes' => '„:action_value” vor Notizen voranstellen', - 'rule_action_clear_notes_choice' => 'Alle Notizen entfernen', - 'rule_action_clear_notes' => 'Alle Notizen entfernen', - 'rule_action_set_notes_choice' => 'Setze Notizen auf ..', - 'rule_action_link_to_bill_choice' => 'Mit einer Rechnung verknüpfen..', - 'rule_action_link_to_bill' => 'Mit Rechnung „:action_value” verknüpfen', - 'rule_action_switch_accounts_choice' => 'Quell- und Zielkonten tauschen (nur Umbuchungen!)', - 'rule_action_switch_accounts' => 'Quelle und Ziel tauschen', - 'rule_action_set_notes' => 'Notizen auf „:action_value” setzen', - 'rule_action_convert_deposit_choice' => 'Buchung in eine Einnahme umwandeln', - 'rule_action_convert_deposit' => 'Buchung von ":action_value" in eine Einnahme umwandeln', - 'rule_action_convert_withdrawal_choice' => 'Buchung in eine Ausgabe umwandeln', - 'rule_action_convert_withdrawal' => 'Buchung von ":action_value" in eine Ausgabe umwandeln', - 'rule_action_convert_transfer_choice' => 'Buchung in eine Umbuchung umwandeln', - 'rule_action_convert_transfer' => 'Buchung von ":action_value" in eine Umbuchung umwandeln', - 'rule_action_append_descr_to_notes_choice' => 'Beschreibung an die Buchungsnotizen anhängen', - 'rule_action_append_notes_to_descr_choice' => 'Buchungsnotizen an die Beschreibung anhängen', - 'rule_action_move_descr_to_notes_choice' => 'Buchungsnotizen durch die Beschreibung ersetzen', - 'rule_action_move_notes_to_descr_choice' => 'Beschreibung durch die Buchungsnotizen ersetzen', - 'rule_action_append_descr_to_notes' => 'Beschreibung an die Notizen anhängen', - 'rule_action_append_notes_to_descr' => 'Notizen an die Beschreibung anhängen', - 'rule_action_move_descr_to_notes' => 'Notizen durch die Beschreibung ersetzen', - 'rule_action_move_notes_to_descr' => 'Beschreibung durch die Notizen ersetzen', - 'rule_action_set_amount_choice' => 'Betrag festlegen auf …', - 'rule_action_set_amount' => 'Betrag festlegen auf „:action_value”', - 'rule_action_set_destination_to_cash_choice' => 'Zielkonto auf (Bargeld) setzen', - 'rule_action_set_source_to_cash_choice' => 'Quellkonto auf (Bargeld) setzen', - 'rulegroup_for_bills_title' => 'Regelgruppe für Rechnungen', - 'rulegroup_for_bills_description' => 'Eine spezielle Regelgruppe für alle Regeln, die Rechnungen betreffen.', - 'rule_for_bill_title' => 'Automatisch generierte Regel für die Rechnung ":name"', - 'rule_for_bill_description' => 'Diese Regel wurde automatisch erstellt, um zu versuchen, die Rechnung „:name” zu finden.', - 'create_rule_for_bill' => 'Neue Regel für Rechnung „:name” erstellen', - 'create_rule_for_bill_txt' => 'Sie haben gerade eine neue Rechnung namens „:name” erstellt. Herzlichen Glückwunsch! Firefly III kann automatisch neue Buchungen dieser Rechnung zuordnen. Zum Beispiel, wenn Sie Ihre Miete bezahlen, wird die Rechnung „Miete” mit der Abbuchung verknüpft. Auf diese Weise kann Firefly III Ihnen genau zeigen, welche Rechnungen fällig sind und welche nicht. Firefly III hat einige sinnvolle Felder für Sie vorausgefüllt. Bitte stellen Sie sicher, dass diese korrekt sind. Wenn diese Werte korrekt sind, verknüpft Firefly III automatisch die korrekte Abbuchung mit der richtigen Rechnung. Bitte überprüfen Sie die Auslöser, um zu sehen, ob diese korrekt sind. Falls diese falsch sind, korrigieren Sie diese bitte.', - 'new_rule_for_bill_title' => 'Regel für Rechnung „:name”', - 'new_rule_for_bill_description' => 'Diese Regel kennzeichnet Buchungen für die Rechnung „:name”.', + 'rule_action_delete_transaction_choice' => 'Buchung LÖSCHEN(!)', + 'rule_action_delete_transaction' => 'Buchung LÖSCHEN(!)', + 'rule_action_set_category' => 'Kategorie auf ":action_value" setzen', + 'rule_action_clear_category' => 'Kategorie entfernen', + 'rule_action_set_budget' => 'Budget auf „:action_value” setzen', + 'rule_action_clear_budget' => 'Budget leeren', + 'rule_action_add_tag' => 'Schlagwort „:action_value” hinzufügen', + 'rule_action_remove_tag' => 'Schlagwort „:action_value” entfernen', + 'rule_action_remove_all_tags' => 'Alle Schlüsselwörter entfernen', + 'rule_action_set_description' => 'Beschreibung setzen für ":action_value"', + 'rule_action_append_description' => '":action_value" an Beschreibung anfügen', + 'rule_action_prepend_description' => '":action_value" vor Beschreibung einfügen', + 'rule_action_set_category_choice' => "Kategorie zuweisen\u{a0}...", + 'rule_action_clear_category_choice' => 'Bereinige jede Kategorie', + 'rule_action_set_budget_choice' => 'Setze Budget auf ..', + 'rule_action_clear_budget_choice' => 'Alle Budgets leeren', + 'rule_action_add_tag_choice' => 'Schlagwort hinzufügen ..', + 'rule_action_remove_tag_choice' => 'Schlagwort entfernen ..', + 'rule_action_remove_all_tags_choice' => 'Alle Schlagwörter entfernen', + 'rule_action_set_description_choice' => 'Beschreibung festlegen auf ..', + 'rule_action_update_piggy_choice' => 'Hinzufügen / Entfernen des Transaktionsbetrags zu / aus Sparschwein ..', + 'rule_action_update_piggy' => 'Transaktionsbetrag zu / aus Sparschwein ":action_value" hinzufügen / entfernen', + 'rule_action_append_description_choice' => 'Beschreibung anhängen mit ..', + 'rule_action_prepend_description_choice' => 'Beschreibung voranstellen mit ..', + 'rule_action_set_source_account_choice' => 'Quellkonto festlegen auf ..', + 'rule_action_set_source_account' => 'Lege Quellkonto als :action_value fest', + 'rule_action_set_destination_account_choice' => 'Zielkonto festlegen auf ..', + 'rule_action_set_destination_account' => 'Lege Zielkonto als :action_value fest', + 'rule_action_append_notes_choice' => 'Notizen anhängen mit ..', + 'rule_action_append_notes' => '„:action_value” an Notizen anhängen', + 'rule_action_prepend_notes_choice' => 'Notizen voranstellen mit ..', + 'rule_action_prepend_notes' => '„:action_value” vor Notizen voranstellen', + 'rule_action_clear_notes_choice' => 'Alle Notizen entfernen', + 'rule_action_clear_notes' => 'Alle Notizen entfernen', + 'rule_action_set_notes_choice' => 'Setze Notizen auf ..', + 'rule_action_link_to_bill_choice' => 'Mit einer Rechnung verknüpfen..', + 'rule_action_link_to_bill' => 'Mit Rechnung „:action_value” verknüpfen', + 'rule_action_switch_accounts_choice' => 'Quell- und Zielkonten tauschen (nur Umbuchungen!)', + 'rule_action_switch_accounts' => 'Quelle und Ziel tauschen', + 'rule_action_set_notes' => 'Notizen auf „:action_value” setzen', + 'rule_action_convert_deposit_choice' => 'Buchung in eine Einnahme umwandeln', + 'rule_action_convert_deposit' => 'Buchung von ":action_value" in eine Einnahme umwandeln', + 'rule_action_convert_withdrawal_choice' => 'Buchung in eine Ausgabe umwandeln', + 'rule_action_convert_withdrawal' => 'Buchung von ":action_value" in eine Ausgabe umwandeln', + 'rule_action_convert_transfer_choice' => 'Buchung in eine Umbuchung umwandeln', + 'rule_action_convert_transfer' => 'Buchung von ":action_value" in eine Umbuchung umwandeln', + 'rule_action_append_descr_to_notes_choice' => 'Beschreibung an die Buchungsnotizen anhängen', + 'rule_action_append_notes_to_descr_choice' => 'Buchungsnotizen an die Beschreibung anhängen', + 'rule_action_move_descr_to_notes_choice' => 'Buchungsnotizen durch die Beschreibung ersetzen', + 'rule_action_move_notes_to_descr_choice' => 'Beschreibung durch die Buchungsnotizen ersetzen', + 'rule_action_append_descr_to_notes' => 'Beschreibung an die Notizen anhängen', + 'rule_action_append_notes_to_descr' => 'Notizen an die Beschreibung anhängen', + 'rule_action_move_descr_to_notes' => 'Notizen durch die Beschreibung ersetzen', + 'rule_action_move_notes_to_descr' => 'Beschreibung durch die Notizen ersetzen', + 'rule_action_set_amount_choice' => 'Betrag festlegen auf …', + 'rule_action_set_amount' => 'Betrag festlegen auf „:action_value”', + 'rule_action_set_destination_to_cash_choice' => 'Zielkonto auf (Bargeld) setzen', + 'rule_action_set_source_to_cash_choice' => 'Quellkonto auf (Bargeld) setzen', + 'rulegroup_for_bills_title' => 'Regelgruppe für Rechnungen', + 'rulegroup_for_bills_description' => 'Eine spezielle Regelgruppe für alle Regeln, die Rechnungen betreffen.', + 'rule_for_bill_title' => 'Automatisch generierte Regel für die Rechnung ":name"', + 'rule_for_bill_description' => 'Diese Regel wurde automatisch erstellt, um zu versuchen, die Rechnung „:name” zu finden.', + 'create_rule_for_bill' => 'Neue Regel für Rechnung „:name” erstellen', + 'create_rule_for_bill_txt' => 'Sie haben gerade eine neue Rechnung namens „:name” erstellt. Herzlichen Glückwunsch! Firefly III kann automatisch neue Buchungen dieser Rechnung zuordnen. Zum Beispiel, wenn Sie Ihre Miete bezahlen, wird die Rechnung „Miete” mit der Abbuchung verknüpft. Auf diese Weise kann Firefly III Ihnen genau zeigen, welche Rechnungen fällig sind und welche nicht. Firefly III hat einige sinnvolle Felder für Sie vorausgefüllt. Bitte stellen Sie sicher, dass diese korrekt sind. Wenn diese Werte korrekt sind, verknüpft Firefly III automatisch die korrekte Abbuchung mit der richtigen Rechnung. Bitte überprüfen Sie die Auslöser, um zu sehen, ob diese korrekt sind. Falls diese falsch sind, korrigieren Sie diese bitte.', + 'new_rule_for_bill_title' => 'Regel für Rechnung „:name”', + 'new_rule_for_bill_description' => 'Diese Regel kennzeichnet Buchungen für die Rechnung „:name”.', - 'new_rule_for_journal_title' => 'Regel basierend auf der Buchung „:description”', - 'new_rule_for_journal_description' => 'Diese Regel basiert auf der Buchung „:description”. Sie stimmt mit Buchungen überein, die identisch sind.', + 'new_rule_for_journal_title' => 'Regel basierend auf der Buchung „:description”', + 'new_rule_for_journal_description' => 'Diese Regel basiert auf der Buchung „:description”. Sie stimmt mit Buchungen überein, die identisch sind.', // tags - 'store_new_tag' => 'Neues Schlagwort speichern', - 'update_tag' => 'Schlüsselwort aktualisieren', - 'no_location_set' => 'Kein Ort gesetzt.', - 'meta_data' => 'Metadaten', - 'location' => 'Standort', - 'location_first_split' => 'Der Standort für diese Buchung kann bei der ersten Aufteilung dieser Buchung festgelegt werden.', - 'without_date' => 'Ohne Datum', - 'result' => 'Ergebnis', - 'sums_apply_to_range' => 'Alle Summen beziehen sich auf den ausgewählten Bereich.', - 'mapbox_api_key' => 'Um Karten zu verwenden, besorgen Sie sich einen API-Schlüssel von Mapbox. Öffnen Sie Ihre Datei .env und geben Sie diesen Schlüssel nach MAPBOX_API_KEY= ein.', - 'press_object_location' => 'Rechtsklick oder Anklicken und gedrückt halten, um die Position des Objekts festzulegen.', - 'click_tap_location' => 'Klicken/Tippen Sie auf die Karte, um einen Standort hinzuzufügen', - 'clear_location' => 'Ort leeren', - 'delete_all_selected_tags' => 'Alle markierten Stichwörter löschen', - 'select_tags_to_delete' => 'Nicht vergessen, einige Schlagwörter auszuwählen.', - 'deleted_x_tags' => ':count Tag gelöscht.|:count Tags gelöscht.', - 'create_rule_from_transaction' => 'Regel auf Basis der Buchung erstellen', - 'create_recurring_from_transaction' => 'Dauerauftrag basierend auf der Buchung erstellen', + 'store_new_tag' => 'Neues Schlagwort speichern', + 'update_tag' => 'Schlüsselwort aktualisieren', + 'no_location_set' => 'Kein Ort gesetzt.', + 'meta_data' => 'Metadaten', + 'location' => 'Standort', + 'location_first_split' => 'Der Standort für diese Buchung kann bei der ersten Aufteilung dieser Buchung festgelegt werden.', + 'without_date' => 'Ohne Datum', + 'result' => 'Ergebnis', + 'sums_apply_to_range' => 'Alle Summen beziehen sich auf den ausgewählten Bereich.', + 'mapbox_api_key' => 'Um Karten zu verwenden, besorgen Sie sich einen API-Schlüssel von Mapbox. Öffnen Sie Ihre Datei .env und geben Sie diesen Schlüssel nach MAPBOX_API_KEY= ein.', + 'press_object_location' => 'Rechtsklick oder Anklicken und gedrückt halten, um die Position des Objekts festzulegen.', + 'click_tap_location' => 'Klicken/Tippen Sie auf die Karte, um einen Standort hinzuzufügen', + 'clear_location' => 'Ort leeren', + 'delete_all_selected_tags' => 'Alle markierten Stichwörter löschen', + 'select_tags_to_delete' => 'Nicht vergessen, einige Schlagwörter auszuwählen.', + 'deleted_x_tags' => ':count Tag gelöscht.|:count Tags gelöscht.', + 'create_rule_from_transaction' => 'Regel auf Basis der Buchung erstellen', + 'create_recurring_from_transaction' => 'Dauerauftrag basierend auf der Buchung erstellen', // preferences - 'dark_mode_option_browser' => 'Browser entscheiden lassen', - 'dark_mode_option_light' => 'Immer hell', - 'dark_mode_option_dark' => 'Immer dunkel', - 'equal_to_language' => '(entsprechend der Sprache)', - 'dark_mode_preference' => 'Dunkel Modus', - 'dark_mode_preference_help' => 'Firefly III mitteilen, wann der Dunkelmodus verwendet werden soll.', - 'pref_home_screen_accounts' => 'Konten auf dem Startbildschirm', - 'pref_home_screen_accounts_help' => 'Welche Konten sollen auf dem Startbildschirm angezeigt werden?', - 'pref_view_range' => 'Sichtbarer Zeitraum', - 'pref_view_range_help' => 'Einige Diagramme werden automatisch in Abschnitte aufgeteilt. Ihre Budgets werden ebenfalls in Abschnitte unterteilt. Welchen Zeitraum bevorzugen Sie?', - 'pref_1D' => 'Ein Tag', - 'pref_1W' => 'Eine Woche', - 'pref_1M' => 'Ein Monat', - 'pref_3M' => 'Drei Monate (Quartal)', - 'pref_6M' => 'Sechs Monate', - 'pref_1Y' => 'Ein Jahr', - 'pref_last365' => 'Letztes Jahr', - 'pref_last90' => 'Letzte 90 Tage', - 'pref_last30' => "Letzte 30\u{a0}Tage", - 'pref_last7' => 'Letzte 7 Tage', - 'pref_YTD' => 'Jahr bis heute', - 'pref_QTD' => 'Quartal bis heute', - 'pref_MTD' => 'Monat bis heute', - 'pref_languages' => 'Sprachen', - 'pref_locale' => 'Lokale Einstellungen', - 'pref_languages_help' => 'Firefly III unterstützt mehrere Sprachen. Welche möchten Sie nutzen?', - 'pref_locale_help' => 'Mit Firefly III können Sie weitere lokale Einstellungen vornehmen, z.B. wie Währungen, Zahlen und Daten formatiert werden sollen. Einträge in dieser Liste werden von Ihrem System möglicherweise nicht unterstützt. Firefly III enthält nicht die korrekten Datumseinstellungen für jedes Gebietsschema. Kontaktieren Sie uns für Verbesserungen.', - 'pref_locale_no_demo' => 'Diese Funktion kann von Demo-Nutzern nicht genutzt werden.', - 'pref_custom_fiscal_year' => 'Einstellungen zum Geschäftsjahr', - 'pref_custom_fiscal_year_label' => 'Aktiviert', - 'pref_custom_fiscal_year_help' => 'In Ländern, in denen ein Geschäftsjahr nicht vom 1. Januar bis 31. Dezember dauert, können Sie diese Option ändern und Start / Ende des Geschäftsjahres angeben', - 'pref_fiscal_year_start_label' => 'Startdatum des Geschäftsjahres', - 'pref_two_factor_auth' => 'Zwei-Faktor-Authentifizierung', - 'pref_two_factor_auth_help' => 'Wenn Sie die Zwei-Faktor-Authentifizierung aktivieren, fügen Sie ihrem Benutzerkonto eine zusätzliche Sicherheitsebene hinzu. Sie loggen sich ein mit etwas das Sie wissen (ihrem Passwort) und etwas das Sie besitzen (einem Bestätigungscode). Bestätigungscodes werden von Anwendungen auf ihrem Smartphone, wie Authy oder Google Authenticator, generiert.', - 'pref_enable_two_factor_auth' => 'Aktiviere Zwei-Faktor-Authentifizierung', - 'pref_two_factor_auth_disabled' => 'Der Code für die Zwei-Faktor-Authentifizierung wurde gelöscht und gesperrt', - 'pref_two_factor_auth_remove_it' => 'Vergessen Sie nicht ihr Benutzerkonto aus ihrer Authentifizierungsapp zu entfernen!', - 'pref_two_factor_auth_code' => 'Code überprüfen', - 'pref_two_factor_auth_code_help' => 'Scannen Sie den QR-Code mit einer Anwendung wie Authy oder Google Authenticator auf ihrem Handy und geben Sie den generierten Code ein.', - 'pref_two_factor_auth_reset_code' => 'Verifizierungscode zurücksetzen', - 'pref_two_factor_auth_disable_2fa' => '2FA deaktivieren', - '2fa_use_secret_instead' => 'Wenn Sie den QR-Code nicht einlesen können, können Sie stattdessen das Geheimnis verwenden: :secret.', - '2fa_backup_codes' => 'Speichern Sie diese Sicherungsschlüssel für den Zugriff, falls Sie Ihr Gerät verlieren sollten.', - '2fa_already_enabled' => 'Die 2-stufige Bestätigung ist bereits aktiviert.', - 'wrong_mfa_code' => 'Dieser MFA-Code ist ungültig.', - 'pref_save_settings' => 'Einstellungen speichern', - 'saved_preferences' => 'Einstellungen gespeichert!', - 'preferences_general' => 'Allgemein', - 'preferences_frontpage' => 'Startbildschirm', - 'preferences_security' => 'Sicherheit', - 'preferences_layout' => 'Anordnung', - 'preferences_notifications' => 'Benachrichtigungen', - 'pref_home_show_deposits' => 'Einnahmen auf dem Startbildschirm anzeigen', - 'pref_home_show_deposits_info' => 'Der Startbildschirm zeigt schon Ihre Ausgabekonten an. Sollen zusätzlich Ihre Einnahmekonten angezeigt werden?', - 'pref_home_do_show_deposits' => 'Ja, zeige sie an', - 'successful_count' => 'davon :count erfolgreich', - 'list_page_size_title' => 'Einträge pro Seite', - 'list_page_size_help' => 'Jede Liste von Elementen (Konten, Buchungen, usw.) zeigt höchstens so viele Elemente je Seite.', - 'list_page_size_label' => 'Einträge pro Seite', - 'between_dates' => '(:start und :end)', - 'pref_optional_fields_transaction' => 'Optionale Felder für Buchungen', - 'pref_optional_fields_transaction_help' => 'Wenn Sie eine Buchung anlegen sind standardmäßig nicht alle vorhandenen Felder aktiviert. Hier können Sie alle Felder aktivieren, die Sie gerne nutzen möchten. Alle Felder die deaktiviert sind, aber bereits ausgefüllt sind, werden unabhängig von ihren Einstellungen sichtbar sein.', - 'optional_tj_date_fields' => 'Datumsfelder', - 'optional_tj_other_fields' => 'Andere Felder', - 'optional_tj_attachment_fields' => 'Anlage Felder', - 'pref_optional_tj_interest_date' => 'Zinstermin', - 'pref_optional_tj_book_date' => 'Buchungsdatum', - 'pref_optional_tj_process_date' => 'Erfassungsdatum', - 'pref_optional_tj_due_date' => 'Fälligkeitstermin', - 'pref_optional_tj_payment_date' => 'Zahlungsdatum', - 'pref_optional_tj_invoice_date' => 'Rechnungsdatum', - 'pref_optional_tj_internal_reference' => 'Interne Referenz', - 'pref_optional_tj_notes' => 'Notizen', - 'pref_optional_tj_attachments' => 'Anhänge', - 'pref_optional_tj_external_url' => 'Externe URL', - 'pref_optional_tj_location' => 'Herkunft', - 'pref_optional_tj_links' => 'Buchungsverknüpfungen', - 'optional_field_meta_dates' => 'Daten', - 'optional_field_meta_business' => 'Geschäftlich', - 'optional_field_attachments' => 'Anhänge', - 'optional_field_meta_data' => 'Optionale Metadaten', - 'external_url' => 'Externe URL', - 'pref_notification_bill_reminder' => 'Erinnerung an fällige Rechnungen', - 'pref_notification_new_access_token' => 'Warnen, wenn ein neues API-Zugangs-Token erstellt wird', - 'pref_notification_transaction_creation' => 'Warnen, wenn eine Buchung automatisch erstellt wird', - 'pref_notification_user_login' => 'Warnen, wenn Sie sich von einem neuen Standort aus anmelden', - 'pref_notification_rule_action_failures' => 'Warnung, wenn Regelaktionen nicht ausgeführt werden (nur Slack oder Discord)', - 'pref_notifications' => 'Benachrichtigungen', - 'pref_notifications_help' => 'Geben Sie an, ob Sie diese Mitteilungen erhalten möchten. Einige Mitteilungen können sensible Finanzinformationen enthalten.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Wenn Sie möchten, dass Firefly III Sie über Slack benachrichtigt, geben Sie hier die Webhook-URL ein. Ansonsten lassen Sie das Feld leer. Wenn Sie ein Administrator sind, müssen Sie diese URL auch in der Administration festlegen.', - 'slack_url_label' => 'Slack "eingehender Webhook" URL', + 'dark_mode_option_browser' => 'Browser entscheiden lassen', + 'dark_mode_option_light' => 'Immer hell', + 'dark_mode_option_dark' => 'Immer dunkel', + 'equal_to_language' => '(entsprechend der Sprache)', + 'dark_mode_preference' => 'Dunkel Modus', + 'dark_mode_preference_help' => 'Firefly III mitteilen, wann der Dunkelmodus verwendet werden soll.', + 'pref_home_screen_accounts' => 'Konten auf dem Startbildschirm', + 'pref_home_screen_accounts_help' => 'Welche Konten sollen auf dem Startbildschirm angezeigt werden?', + 'pref_view_range' => 'Sichtbarer Zeitraum', + 'pref_view_range_help' => 'Einige Diagramme werden automatisch in Abschnitte aufgeteilt. Ihre Budgets werden ebenfalls in Abschnitte unterteilt. Welchen Zeitraum bevorzugen Sie?', + 'pref_1D' => 'Ein Tag', + 'pref_1W' => 'Eine Woche', + 'pref_1M' => 'Ein Monat', + 'pref_3M' => 'Drei Monate (Quartal)', + 'pref_6M' => 'Sechs Monate', + 'pref_1Y' => 'Ein Jahr', + 'pref_last365' => 'Letztes Jahr', + 'pref_last90' => 'Letzte 90 Tage', + 'pref_last30' => "Letzte 30\u{a0}Tage", + 'pref_last7' => 'Letzte 7 Tage', + 'pref_YTD' => 'Jahr bis heute', + 'pref_QTD' => 'Quartal bis heute', + 'pref_MTD' => 'Monat bis heute', + 'pref_languages' => 'Sprachen', + 'pref_locale' => 'Lokale Einstellungen', + 'pref_languages_help' => 'Firefly III unterstützt mehrere Sprachen. Welche möchten Sie nutzen?', + 'pref_locale_help' => 'Mit Firefly III können Sie weitere lokale Einstellungen vornehmen, z.B. wie Währungen, Zahlen und Daten formatiert werden sollen. Einträge in dieser Liste werden von Ihrem System möglicherweise nicht unterstützt. Firefly III enthält nicht die korrekten Datumseinstellungen für jedes Gebietsschema. Kontaktieren Sie uns für Verbesserungen.', + 'pref_locale_no_demo' => 'Diese Funktion kann von Demo-Nutzern nicht genutzt werden.', + 'pref_custom_fiscal_year' => 'Einstellungen zum Geschäftsjahr', + 'pref_custom_fiscal_year_label' => 'Aktiviert', + 'pref_custom_fiscal_year_help' => 'In Ländern, in denen ein Geschäftsjahr nicht vom 1. Januar bis 31. Dezember dauert, können Sie diese Option ändern und Start / Ende des Geschäftsjahres angeben', + 'pref_fiscal_year_start_label' => 'Startdatum des Geschäftsjahres', + 'pref_two_factor_auth' => 'Zwei-Faktor-Authentifizierung', + 'pref_two_factor_auth_help' => 'Wenn Sie die Zwei-Faktor-Authentifizierung aktivieren, fügen Sie ihrem Benutzerkonto eine zusätzliche Sicherheitsebene hinzu. Sie loggen sich ein mit etwas das Sie wissen (ihrem Passwort) und etwas das Sie besitzen (einem Bestätigungscode). Bestätigungscodes werden von Anwendungen auf ihrem Smartphone, wie Authy oder Google Authenticator, generiert.', + 'pref_enable_two_factor_auth' => 'Aktiviere Zwei-Faktor-Authentifizierung', + 'pref_two_factor_auth_disabled' => 'Der Code für die Zwei-Faktor-Authentifizierung wurde gelöscht und gesperrt', + 'pref_two_factor_auth_remove_it' => 'Vergessen Sie nicht ihr Benutzerkonto aus ihrer Authentifizierungsapp zu entfernen!', + 'pref_two_factor_auth_code' => 'Code überprüfen', + 'pref_two_factor_auth_code_help' => 'Scannen Sie den QR-Code mit einer Anwendung wie Authy oder Google Authenticator auf ihrem Handy und geben Sie den generierten Code ein.', + 'pref_two_factor_auth_reset_code' => 'Verifizierungscode zurücksetzen', + 'pref_two_factor_auth_disable_2fa' => '2FA deaktivieren', + '2fa_use_secret_instead' => 'Wenn Sie den QR-Code nicht einlesen können, können Sie stattdessen das Geheimnis verwenden: :secret.', + '2fa_backup_codes' => 'Speichern Sie diese Sicherungsschlüssel für den Zugriff, falls Sie Ihr Gerät verlieren sollten.', + '2fa_already_enabled' => 'Die 2-stufige Bestätigung ist bereits aktiviert.', + 'wrong_mfa_code' => 'Dieser MFA-Code ist ungültig.', + 'pref_save_settings' => 'Einstellungen speichern', + 'saved_preferences' => 'Einstellungen gespeichert!', + 'preferences_general' => 'Allgemein', + 'preferences_frontpage' => 'Startbildschirm', + 'preferences_security' => 'Sicherheit', + 'preferences_layout' => 'Anordnung', + 'preferences_notifications' => 'Benachrichtigungen', + 'pref_home_show_deposits' => 'Einnahmen auf dem Startbildschirm anzeigen', + 'pref_home_show_deposits_info' => 'Der Startbildschirm zeigt schon Ihre Ausgabekonten an. Sollen zusätzlich Ihre Einnahmekonten angezeigt werden?', + 'pref_home_do_show_deposits' => 'Ja, zeige sie an', + 'successful_count' => 'davon :count erfolgreich', + 'list_page_size_title' => 'Einträge pro Seite', + 'list_page_size_help' => 'Jede Liste von Elementen (Konten, Buchungen, usw.) zeigt höchstens so viele Elemente je Seite.', + 'list_page_size_label' => 'Einträge pro Seite', + 'between_dates' => '(:start und :end)', + 'pref_optional_fields_transaction' => 'Optionale Felder für Buchungen', + 'pref_optional_fields_transaction_help' => 'Wenn Sie eine Buchung anlegen sind standardmäßig nicht alle vorhandenen Felder aktiviert. Hier können Sie alle Felder aktivieren, die Sie gerne nutzen möchten. Alle Felder die deaktiviert sind, aber bereits ausgefüllt sind, werden unabhängig von ihren Einstellungen sichtbar sein.', + 'optional_tj_date_fields' => 'Datumsfelder', + 'optional_tj_other_fields' => 'Andere Felder', + 'optional_tj_attachment_fields' => 'Anlage Felder', + 'pref_optional_tj_interest_date' => 'Zinstermin', + 'pref_optional_tj_book_date' => 'Buchungsdatum', + 'pref_optional_tj_process_date' => 'Erfassungsdatum', + 'pref_optional_tj_due_date' => 'Fälligkeitstermin', + 'pref_optional_tj_payment_date' => 'Zahlungsdatum', + 'pref_optional_tj_invoice_date' => 'Rechnungsdatum', + 'pref_optional_tj_internal_reference' => 'Interne Referenz', + 'pref_optional_tj_notes' => 'Notizen', + 'pref_optional_tj_attachments' => 'Anhänge', + 'pref_optional_tj_external_url' => 'Externe URL', + 'pref_optional_tj_location' => 'Herkunft', + 'pref_optional_tj_links' => 'Buchungsverknüpfungen', + 'optional_field_meta_dates' => 'Daten', + 'optional_field_meta_business' => 'Geschäftlich', + 'optional_field_attachments' => 'Anhänge', + 'optional_field_meta_data' => 'Optionale Metadaten', + 'external_url' => 'Externe URL', + 'pref_notification_bill_reminder' => 'Erinnerung an fällige Rechnungen', + 'pref_notification_new_access_token' => 'Warnen, wenn ein neues API-Zugangs-Token erstellt wird', + 'pref_notification_transaction_creation' => 'Warnen, wenn eine Buchung automatisch erstellt wird', + 'pref_notification_user_login' => 'Warnen, wenn Sie sich von einem neuen Standort aus anmelden', + 'pref_notification_rule_action_failures' => 'Warnung, wenn Regelaktionen nicht ausgeführt werden (nur Slack oder Discord)', + 'pref_notifications' => 'Benachrichtigungen', + 'pref_notifications_help' => 'Geben Sie an, ob Sie diese Mitteilungen erhalten möchten. Einige Mitteilungen können sensible Finanzinformationen enthalten.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Wenn Sie möchten, dass Firefly III Sie über Slack benachrichtigt, geben Sie hier die Webhook-URL ein. Ansonsten lassen Sie das Feld leer. Wenn Sie ein Administrator sind, müssen Sie diese URL auch in der Administration festlegen.', + 'slack_url_label' => 'Slack "eingehender Webhook" URL', // Financial administrations - 'administration_index' => 'Finanzverwaltung', - 'administrations_index_menu' => 'Finanzverwaltung(en)', - 'administrations_breadcrumb' => 'Finanzverwaltungen', - 'administrations_page_title' => 'Finanzverwaltungen', - 'administrations_page_sub_title' => 'Übersicht', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Finanzverwaltung', + 'administrations_index_menu' => 'Finanzverwaltung(en)', + 'administrations_breadcrumb' => 'Finanzverwaltungen', + 'administrations_page_title' => 'Finanzverwaltungen', + 'administrations_page_sub_title' => 'Übersicht', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Ihre Funktion: {{role}}', + 'other_users_in_admin' => 'Andere Benutzer in dieser Verwaltung', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Schreibgeschützt', + 'administration_role_mng_trx' => 'Buchungen verwalten', + 'administration_role_mng_meta' => 'Klassifizierungs- und Metadaten verwalten', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Sparschweine verwalten', + 'administration_role_mng_subscriptions' => 'Abonnements verwalten', + 'administration_role_mng_rules' => 'Regeln verwalten', + 'administration_role_mng_recurring' => 'Daueraufträge verwalten ', + 'administration_role_mng_webhooks' => 'Webhooks verwalten', + 'administration_role_mng_currencies' => 'Währungen verwalten', + 'administration_role_view_reports' => 'Berichte anzeigen', + 'administration_role_full' => 'Vollständiger Zugriff', // profile: - 'purge_data_title' => 'Daten aus Firefly III vernichten', - 'purge_data_expl' => '„Endgültiges Löschen” bedeutet „Löschen, was bereits gelöscht wurde”. Unter normalen Umständen löscht Firefly III nichts dauerhaft. Es verbirgt es nur. Die Schaltfläche unten löscht alle diese zuvor "gelöschten" Datensätze DAUERHAFT.', - 'delete_stuff_header' => 'Daten löschen und vernichten', - 'purge_all_data' => 'Alle gelöschten Datensätze vernichten', - 'purge_data' => 'Daten vernichten', - 'purged_all_records' => 'Alle gelöschten Datensätze wurden vernichtet.', - 'delete_data_title' => 'Daten aus Firefly III löschen', - 'permanent_delete_stuff' => 'Sie können Dinge aus Firefly III löschen. Mit den Buttons unten werden Ihre Gegenstände entfernt und ausgeblendet. Es keine Möglichkeit dies rückgängig zu machen, aber die Elemente können in der Datenbank verbleiben, wo sie gegebenenfalls wiederhergestellt werden können.', - 'other_sessions_logged_out' => 'Alle Ihre anderen Sitzungen wurden abgemeldet.', - 'delete_unused_accounts' => 'Durch das Löschen ungenutzter Konten werden Ihre Listen für die automatische Vervollständigung bereinigt.', - 'delete_all_unused_accounts' => 'Unbenutzte Konten löschen', - 'deleted_all_unused_accounts' => 'Alle ungenutzten Konten wurden gelöscht', - 'delete_all_budgets' => 'ALLE Ihre Budgets löschen', - 'delete_all_categories' => 'Alle Ihre Kategorien löschen', - 'delete_all_tags' => 'Alle Ihre Stichwörter löschen', - 'delete_all_bills' => 'ALLE Ihre Rechnungen löschen', - 'delete_all_piggy_banks' => 'ALLE Ihre Sparschweine löschen', - 'delete_all_rules' => 'ALLE Ihre Regeln löschen', - 'delete_all_recurring' => 'ALLE Daueraufträge löschen', - 'delete_all_object_groups' => 'ALLE Objektgruppen löschen', - 'delete_all_accounts' => 'ALLE Konten löschen', - 'delete_all_asset_accounts' => 'ALLE Bestandskonten löschen', - 'delete_all_expense_accounts' => 'ALLE Ausgabekonten löschen', - 'delete_all_revenue_accounts' => 'ALLE Einnahmekonten löschen', - 'delete_all_liabilities' => 'ALLE Verbindlichkeiten löschen', - 'delete_all_transactions' => 'ALLE Buchungen löschen', - 'delete_all_withdrawals' => 'ALLE Ausgaben löschen', - 'delete_all_deposits' => 'ALLE Einnahmen löschen', - 'delete_all_transfers' => 'ALLE Umbuchungen löschen', - 'also_delete_transactions' => 'Beim Löschen von Konten werden auch ALLE damit verbundenen Ausgaben, Einnahmen und Überweisungen gelöscht!', - 'deleted_all_budgets' => 'Alle Budgets wurden gelöscht', - 'deleted_all_categories' => 'Alle Kategorien wurden gelöscht', - 'deleted_all_tags' => 'Alle Schlagwörter wurden gelöscht', - 'deleted_all_bills' => 'Alle Rechnungen wurden gelöscht', - 'deleted_all_piggy_banks' => 'Alle Sparschweine wurden gelöscht', - 'deleted_all_rules' => 'Alle Regeln und Regelgruppen wurden gelöscht', - 'deleted_all_object_groups' => 'Alle Gruppen wurden gelöscht', - 'deleted_all_accounts' => 'Alle Konten wurden gelöscht', - 'deleted_all_asset_accounts' => 'Alle Bestandskonten wurden gelöscht', - 'deleted_all_expense_accounts' => 'Alle Ausgabenkonten wurden gelöscht', - 'deleted_all_revenue_accounts' => 'Alle Einnahmenkonten wurden gelöscht', - 'deleted_all_liabilities' => 'Alle Verbindlichkeiten wurden gelöscht', - 'deleted_all_transactions' => 'Alle Buchungen wurden gelöscht', - 'deleted_all_withdrawals' => 'Alle Ausgaben wurden gelöscht', - 'deleted_all_deposits' => 'Alle Einnahmen wurden gelöscht', - 'deleted_all_transfers' => 'Alle Umbuchungen wurden gelöscht', - 'deleted_all_recurring' => 'Alle Daueraufträge wurden gelöscht', - 'change_your_password' => 'Passwort ändern', - 'delete_account' => 'Konto löschen', - 'current_password' => 'Aktuelles Passwort', - 'new_password' => 'Neues Passwort', - 'new_password_again' => 'Neues Passwort (wiederholen)', - 'delete_your_account' => 'Ihren Account löschen', - 'delete_your_account_help' => 'Das Löschen ihres Benutzerkontos wird ebenfalls alle Konten, Buchungen, etc., also alles was Sie in Firefly gespeichert haben, löschen. Alles geht verloren und kann nicht wiederhergestellt werden.', - 'delete_your_account_password' => 'Geben Sie Ihr Kennwort ein um fortzufahren.', - 'password' => 'Passwort', - 'are_you_sure' => 'Sind Sie sich sicher? Sie können diesen Schritt nicht rückgängig machen.', - 'delete_account_button' => 'LÖSCHEN Sie ihr Benutzerkonto', - 'invalid_current_password' => 'Aktuelles Passwort ist ungültig!', - 'password_changed' => 'Passwort geändert!', - 'should_change' => 'Ziel ist es, ihr Passwort zu ändern.', - 'invalid_password' => 'Ungültiges Passwort!', - 'what_is_pw_security' => 'Was ist "Passwortsicherheit überprüfen"?', - 'secure_pw_title' => 'So wählen Sie ein sicheres Passwort aus', - 'forgot_password_response' => 'Vielen Dank. Falls ein Account mit dieser E-Mail-Adresse existiert, finden Sie im Posteingang weitere Anweisungen.', - 'secure_pw_history' => 'Keine Woche vergeht, dass Sie in den Nachrichten über eine Website lesen, die die Passwörter ihrer Benutzer verliert. Hacker und Diebe verwenden diese Passwörter, um zu versuchen, Ihre persönlichen Daten zu stehlen. Diese Informationen sind wertvoll.', - 'secure_pw_ff' => 'Verwenden Sie im gesamten Internet das gleiche Passwort? Wenn eine Website Ihr Passwort verliert, haben Hacker Zugriff auf alle Ihre Daten. Firefly III verlässt sich darauf, dass Sie ein sicheres und einzigartiges Passwort wählen, um Ihre Finanzdaten zu schützen.', - 'secure_pw_check_box' => 'Um Ihnen dabei zu helfen, kann Firefly III überprüfen, ob das von Ihnen gewünschte Passwort in der Vergangenheit gestohlen wurde. Wenn dies der Fall ist, rät Firefly III Ihnen, dieses Passwort NICHT zu verwenden.', - 'secure_pw_working_title' => 'Wie funktioniert es?', - 'secure_pw_working' => 'Wenn Sie das Kontrollkästchen aktivieren, wird Firefly III den SHA1-Hash der ersten 5 Zeichen Ihres Passworts an die Website von Troy Hunt senden, um zu sehen, ob es auf der Liste steht. Dies verhindert, dass Sie unsichere Passwörter verwenden, was in der aktuellen NIST-Sonderveröffentlichung zu diesem Thema empfohlen wird.', - 'secure_pw_should' => 'Soll ich die Box ankreuzen?', - 'secure_pw_long_password' => 'Ja. Damit vergewissern Sie sich immer, dass ihr Passwort sicher ist.', - 'command_line_token' => 'Kommandozeilen-Authentifizierungsschlüssel', - 'explain_command_line_token' => 'Sie benötigen dieses Token, um Kommandozeilenoptionen auszuführen, wie z. B. den Export von Daten. Ohne diese werden solche sensiblen Befehle nicht funktionieren. Teilen Sie Ihren Kommandozeilen-Authentifizierungsschlüssel nicht mit anderen. Niemand wird Sie um diesen Schlüssel bitten, nicht einmal ich. Wenn Sie befürchten, dass Sie diesen verloren haben, erneuern Sie den Schlüssel mit der Schaltfläche.', - 'regenerate_command_line_token' => 'Kommandozeilen-Authentifizierungsschlüssel erneut generieren', - 'token_regenerated' => 'Ein neuer Kommandozeilen-Authentifizierungsschlüssel wurde generiert', - 'change_your_email' => 'E-Mail Adresse ändern', - 'email_verification' => 'Eine E-Mail wird an Ihre alte UND neue E-Mail-Adresse gesendet. Aus Sicherheitsgründen können Sie sich erst anmelden, wenn Sie Ihre neue E-Mail-Adresse bestätigt haben. Wenn Sie sich nicht sicher sind, ob Ihre Firefly III-Installation E-Mails versenden kann, verwenden Sie diese Funktion bitte nicht. Wenn Sie Administrator sind, können Sie dies in der Verwaltung testen.', - 'email_changed_logout' => 'Sie müssen Ihre E-Mail-Adresse bestätigen, um sich anmelden zu können.', - 'login_with_new_email' => 'Sie können sich jetzt mit Ihrer neuen E-Mail-Adresse anmelden.', - 'login_with_old_email' => 'Sie können sich jetzt wieder mit Ihrer alten E-Mail-Adresse anmelden.', - 'login_provider_local_only' => 'Diese Aktion ist bei der Authentifizierung durch ":login_provider" nicht verfügbar.', - 'external_user_mgt_disabled' => 'Diese Aktion ist nicht verfügbar, wenn Firefly III nicht für die Benutzerverwaltung oder die Authentifizierungsbehandlung zuständig ist.', - 'external_auth_disabled' => 'Diese Aktion ist nicht verfügbar, wenn Firefly III nicht für die Bearbeitung der Authentifizierung zuständig ist.', - 'delete_local_info_only' => 'Da Firefly III nicht für die Benutzerverwaltung oder die Authentifizierungsbehandlung zuständig ist, löscht diese Funktion nur lokale Firefly III-Informationen.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth-Clients', - 'profile_oauth_no_clients' => 'Sie haben noch keine OAuth-Clients erstellt.', - 'profile_oauth_clients_external_auth' => 'Wenn Sie einen externen Authentifizierungsanbieter wie Authelia verwenden, funktionieren OAuth Clients nicht. Sie können ausschließlich persönliche Zugriffstoken verwenden.', - 'profile_oauth_clients_header' => 'Clients', - 'profile_oauth_client_id' => 'Client-ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Geheimnis', - 'profile_oauth_create_new_client' => 'Neuen Client erstellen', - 'profile_oauth_create_client' => 'Client erstellen', - 'profile_oauth_edit_client' => 'Client bearbeiten', - 'profile_oauth_name_help' => 'Etwas das Ihre Nutzer erkennen und dem sie vertrauen.', - 'profile_oauth_redirect_url' => 'Weiterleitungs-URL', - 'profile_oauth_redirect_url_help' => 'Die Authorisierungs-Callback-URL Ihrer Anwendung.', - 'profile_authorized_apps' => 'Autorisierte Anwendungen', - 'profile_authorized_clients' => 'Autorisierte Clients', - 'profile_scopes' => 'Bereiche', - 'profile_revoke' => 'Widerrufen', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Hier ist Ihr neuer persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können diesen Token jetzt verwenden, um API-Anfragen zu stellen.', - 'profile_personal_access_tokens' => 'Persönliche Zugangs-Tokens', - 'profile_personal_access_token' => 'Persönlicher Zugangs-Token', - 'profile_oauth_confidential' => 'Vertraulich', - 'profile_oauth_confidential_help' => 'Der Client muss sich mit einem Secret authentifizieren. Vertrauliche Clients können die Anmeldedaten speichern, ohne diese unautorisierten Akteuren mitzuteilen. Öffentliche Anwendungen wie native Desktop- oder JavaScript-SPA-Anwendungen können Geheimnisse nicht sicher speichern.', - 'profile_personal_access_token_explanation' => 'Hier ist Ihr neuer persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können diesen Token jetzt verwenden, um API-Anfragen zu stellen.', - 'profile_no_personal_access_token' => 'Sie haben keine persönlichen Zugangsschlüssel erstellt.', - 'profile_create_new_token' => 'Neuen Schlüssel erstellen', - 'profile_create_token' => 'Schlüssel erstellen', - 'profile_create' => 'Erstellen', - 'profile_save_changes' => 'Änderungen speichern', - 'profile_whoops' => 'Huch!', - 'profile_something_wrong' => 'Ein Problem ist aufgetreten!', - 'profile_try_again' => 'Ein Problem ist aufgetreten. Bitte versuchen Sie es erneut.', - 'amounts' => 'Beträge', - 'multi_account_warning_unknown' => 'Abhängig von der Art der Buchung, die Sie anlegen, kann das Quell- und/oder Zielkonto nachfolgender Aufteilungen durch das überschrieben werden, was in der ersten Aufteilung der Buchung definiert wurde.', - 'multi_account_warning_withdrawal' => 'Bedenken Sie, dass das Quellkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Abhebung definiert ist, außer Kraft gesetzt wird.', - 'multi_account_warning_deposit' => 'Bedenken Sie, dass das Zielkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Einnahmen definiert ist, außer Kraft gesetzt wird.', - 'multi_account_warning_transfer' => 'Bedenken Sie, dass das Quell- und Zielkonto nachfolgender Aufteilungen durch das, was in der ersten Aufteilung der Übertragung definiert ist, außer Kraft gesetzt wird.', + 'purge_data_title' => 'Daten aus Firefly III vernichten', + 'purge_data_expl' => '„Endgültiges Löschen” bedeutet „Löschen, was bereits gelöscht wurde”. Unter normalen Umständen löscht Firefly III nichts dauerhaft. Es verbirgt es nur. Die Schaltfläche unten löscht alle diese zuvor "gelöschten" Datensätze DAUERHAFT.', + 'delete_stuff_header' => 'Daten löschen und vernichten', + 'purge_all_data' => 'Alle gelöschten Datensätze vernichten', + 'purge_data' => 'Daten vernichten', + 'purged_all_records' => 'Alle gelöschten Datensätze wurden vernichtet.', + 'delete_data_title' => 'Daten aus Firefly III löschen', + 'permanent_delete_stuff' => 'Sie können Dinge aus Firefly III löschen. Mit den Buttons unten werden Ihre Gegenstände entfernt und ausgeblendet. Es keine Möglichkeit dies rückgängig zu machen, aber die Elemente können in der Datenbank verbleiben, wo sie gegebenenfalls wiederhergestellt werden können.', + 'other_sessions_logged_out' => 'Alle Ihre anderen Sitzungen wurden abgemeldet.', + 'delete_unused_accounts' => 'Durch das Löschen ungenutzter Konten werden Ihre Listen für die automatische Vervollständigung bereinigt.', + 'delete_all_unused_accounts' => 'Unbenutzte Konten löschen', + 'deleted_all_unused_accounts' => 'Alle ungenutzten Konten wurden gelöscht', + 'delete_all_budgets' => 'ALLE Ihre Budgets löschen', + 'delete_all_categories' => 'Alle Ihre Kategorien löschen', + 'delete_all_tags' => 'Alle Ihre Stichwörter löschen', + 'delete_all_bills' => 'ALLE Ihre Rechnungen löschen', + 'delete_all_piggy_banks' => 'ALLE Ihre Sparschweine löschen', + 'delete_all_rules' => 'ALLE Ihre Regeln löschen', + 'delete_all_recurring' => 'ALLE Daueraufträge löschen', + 'delete_all_object_groups' => 'ALLE Objektgruppen löschen', + 'delete_all_accounts' => 'ALLE Konten löschen', + 'delete_all_asset_accounts' => 'ALLE Bestandskonten löschen', + 'delete_all_expense_accounts' => 'ALLE Ausgabekonten löschen', + 'delete_all_revenue_accounts' => 'ALLE Einnahmekonten löschen', + 'delete_all_liabilities' => 'ALLE Verbindlichkeiten löschen', + 'delete_all_transactions' => 'ALLE Buchungen löschen', + 'delete_all_withdrawals' => 'ALLE Ausgaben löschen', + 'delete_all_deposits' => 'ALLE Einnahmen löschen', + 'delete_all_transfers' => 'ALLE Umbuchungen löschen', + 'also_delete_transactions' => 'Beim Löschen von Konten werden auch ALLE damit verbundenen Ausgaben, Einnahmen und Überweisungen gelöscht!', + 'deleted_all_budgets' => 'Alle Budgets wurden gelöscht', + 'deleted_all_categories' => 'Alle Kategorien wurden gelöscht', + 'deleted_all_tags' => 'Alle Schlagwörter wurden gelöscht', + 'deleted_all_bills' => 'Alle Rechnungen wurden gelöscht', + 'deleted_all_piggy_banks' => 'Alle Sparschweine wurden gelöscht', + 'deleted_all_rules' => 'Alle Regeln und Regelgruppen wurden gelöscht', + 'deleted_all_object_groups' => 'Alle Gruppen wurden gelöscht', + 'deleted_all_accounts' => 'Alle Konten wurden gelöscht', + 'deleted_all_asset_accounts' => 'Alle Bestandskonten wurden gelöscht', + 'deleted_all_expense_accounts' => 'Alle Ausgabenkonten wurden gelöscht', + 'deleted_all_revenue_accounts' => 'Alle Einnahmenkonten wurden gelöscht', + 'deleted_all_liabilities' => 'Alle Verbindlichkeiten wurden gelöscht', + 'deleted_all_transactions' => 'Alle Buchungen wurden gelöscht', + 'deleted_all_withdrawals' => 'Alle Ausgaben wurden gelöscht', + 'deleted_all_deposits' => 'Alle Einnahmen wurden gelöscht', + 'deleted_all_transfers' => 'Alle Umbuchungen wurden gelöscht', + 'deleted_all_recurring' => 'Alle Daueraufträge wurden gelöscht', + 'change_your_password' => 'Passwort ändern', + 'delete_account' => 'Konto löschen', + 'current_password' => 'Aktuelles Passwort', + 'new_password' => 'Neues Passwort', + 'new_password_again' => 'Neues Passwort (wiederholen)', + 'delete_your_account' => 'Ihren Account löschen', + 'delete_your_account_help' => 'Das Löschen ihres Benutzerkontos wird ebenfalls alle Konten, Buchungen, etc., also alles was Sie in Firefly gespeichert haben, löschen. Alles geht verloren und kann nicht wiederhergestellt werden.', + 'delete_your_account_password' => 'Geben Sie Ihr Kennwort ein um fortzufahren.', + 'password' => 'Passwort', + 'are_you_sure' => 'Sind Sie sich sicher? Sie können diesen Schritt nicht rückgängig machen.', + 'delete_account_button' => 'LÖSCHEN Sie ihr Benutzerkonto', + 'invalid_current_password' => 'Aktuelles Passwort ist ungültig!', + 'password_changed' => 'Passwort geändert!', + 'should_change' => 'Ziel ist es, ihr Passwort zu ändern.', + 'invalid_password' => 'Ungültiges Passwort!', + 'what_is_pw_security' => 'Was ist "Passwortsicherheit überprüfen"?', + 'secure_pw_title' => 'So wählen Sie ein sicheres Passwort aus', + 'forgot_password_response' => 'Vielen Dank. Falls ein Account mit dieser E-Mail-Adresse existiert, finden Sie im Posteingang weitere Anweisungen.', + 'secure_pw_history' => 'Keine Woche vergeht, dass Sie in den Nachrichten über eine Website lesen, die die Passwörter ihrer Benutzer verliert. Hacker und Diebe verwenden diese Passwörter, um zu versuchen, Ihre persönlichen Daten zu stehlen. Diese Informationen sind wertvoll.', + 'secure_pw_ff' => 'Verwenden Sie im gesamten Internet das gleiche Passwort? Wenn eine Website Ihr Passwort verliert, haben Hacker Zugriff auf alle Ihre Daten. Firefly III verlässt sich darauf, dass Sie ein sicheres und einzigartiges Passwort wählen, um Ihre Finanzdaten zu schützen.', + 'secure_pw_check_box' => 'Um Ihnen dabei zu helfen, kann Firefly III überprüfen, ob das von Ihnen gewünschte Passwort in der Vergangenheit gestohlen wurde. Wenn dies der Fall ist, rät Firefly III Ihnen, dieses Passwort NICHT zu verwenden.', + 'secure_pw_working_title' => 'Wie funktioniert es?', + 'secure_pw_working' => 'Wenn Sie das Kontrollkästchen aktivieren, wird Firefly III den SHA1-Hash der ersten 5 Zeichen Ihres Passworts an die Website von Troy Hunt senden, um zu sehen, ob es auf der Liste steht. Dies verhindert, dass Sie unsichere Passwörter verwenden, was in der aktuellen NIST-Sonderveröffentlichung zu diesem Thema empfohlen wird.', + 'secure_pw_should' => 'Soll ich die Box ankreuzen?', + 'secure_pw_long_password' => 'Ja. Damit vergewissern Sie sich immer, dass ihr Passwort sicher ist.', + 'command_line_token' => 'Kommandozeilen-Authentifizierungsschlüssel', + 'explain_command_line_token' => 'Sie benötigen dieses Token, um Kommandozeilenoptionen auszuführen, wie z. B. den Export von Daten. Ohne diese werden solche sensiblen Befehle nicht funktionieren. Teilen Sie Ihren Kommandozeilen-Authentifizierungsschlüssel nicht mit anderen. Niemand wird Sie um diesen Schlüssel bitten, nicht einmal ich. Wenn Sie befürchten, dass Sie diesen verloren haben, erneuern Sie den Schlüssel mit der Schaltfläche.', + 'regenerate_command_line_token' => 'Kommandozeilen-Authentifizierungsschlüssel erneut generieren', + 'token_regenerated' => 'Ein neuer Kommandozeilen-Authentifizierungsschlüssel wurde generiert', + 'change_your_email' => 'E-Mail Adresse ändern', + 'email_verification' => 'Eine E-Mail wird an Ihre alte UND neue E-Mail-Adresse gesendet. Aus Sicherheitsgründen können Sie sich erst anmelden, wenn Sie Ihre neue E-Mail-Adresse bestätigt haben. Wenn Sie sich nicht sicher sind, ob Ihre Firefly III-Installation E-Mails versenden kann, verwenden Sie diese Funktion bitte nicht. Wenn Sie Administrator sind, können Sie dies in der Verwaltung testen.', + 'email_changed_logout' => 'Sie müssen Ihre E-Mail-Adresse bestätigen, um sich anmelden zu können.', + 'login_with_new_email' => 'Sie können sich jetzt mit Ihrer neuen E-Mail-Adresse anmelden.', + 'login_with_old_email' => 'Sie können sich jetzt wieder mit Ihrer alten E-Mail-Adresse anmelden.', + 'login_provider_local_only' => 'Diese Aktion ist bei der Authentifizierung durch ":login_provider" nicht verfügbar.', + 'external_user_mgt_disabled' => 'Diese Aktion ist nicht verfügbar, wenn Firefly III nicht für die Benutzerverwaltung oder die Authentifizierungsbehandlung zuständig ist.', + 'external_auth_disabled' => 'Diese Aktion ist nicht verfügbar, wenn Firefly III nicht für die Bearbeitung der Authentifizierung zuständig ist.', + 'delete_local_info_only' => 'Da Firefly III nicht für die Benutzerverwaltung oder die Authentifizierungsbehandlung zuständig ist, löscht diese Funktion nur lokale Firefly III-Informationen.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth-Clients', + 'profile_oauth_no_clients' => 'Sie haben noch keine OAuth-Clients erstellt.', + 'profile_oauth_clients_external_auth' => 'Wenn Sie einen externen Authentifizierungsanbieter wie Authelia verwenden, funktionieren OAuth Clients nicht. Sie können ausschließlich persönliche Zugriffstoken verwenden.', + 'profile_oauth_clients_header' => 'Clients', + 'profile_oauth_client_id' => 'Client-ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Geheimnis', + 'profile_oauth_create_new_client' => 'Neuen Client erstellen', + 'profile_oauth_create_client' => 'Client erstellen', + 'profile_oauth_edit_client' => 'Client bearbeiten', + 'profile_oauth_name_help' => 'Etwas das Ihre Nutzer erkennen und dem sie vertrauen.', + 'profile_oauth_redirect_url' => 'Weiterleitungs-URL', + 'profile_oauth_redirect_url_help' => 'Die Authorisierungs-Callback-URL Ihrer Anwendung.', + 'profile_authorized_apps' => 'Autorisierte Anwendungen', + 'profile_authorized_clients' => 'Autorisierte Clients', + 'profile_scopes' => 'Bereiche', + 'profile_revoke' => 'Widerrufen', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Hier ist Ihr neuer persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können diesen Token jetzt verwenden, um API-Anfragen zu stellen.', + 'profile_personal_access_tokens' => 'Persönliche Zugangs-Tokens', + 'profile_personal_access_token' => 'Persönlicher Zugangs-Token', + 'profile_oauth_confidential' => 'Vertraulich', + 'profile_oauth_confidential_help' => 'Der Client muss sich mit einem Secret authentifizieren. Vertrauliche Clients können die Anmeldedaten speichern, ohne diese unautorisierten Akteuren mitzuteilen. Öffentliche Anwendungen wie native Desktop- oder JavaScript-SPA-Anwendungen können Geheimnisse nicht sicher speichern.', + 'profile_personal_access_token_explanation' => 'Hier ist Ihr neuer persönlicher Zugangsschlüssel. Dies ist das einzige Mal, dass er angezeigt wird, also verlieren Sie ihn nicht! Sie können diesen Token jetzt verwenden, um API-Anfragen zu stellen.', + 'profile_no_personal_access_token' => 'Sie haben keine persönlichen Zugangsschlüssel erstellt.', + 'profile_create_new_token' => 'Neuen Schlüssel erstellen', + 'profile_create_token' => 'Schlüssel erstellen', + 'profile_create' => 'Erstellen', + 'profile_save_changes' => 'Änderungen speichern', + 'profile_whoops' => 'Huch!', + 'profile_something_wrong' => 'Ein Problem ist aufgetreten!', + 'profile_try_again' => 'Ein Problem ist aufgetreten. Bitte versuchen Sie es erneut.', + 'amounts' => 'Beträge', + 'multi_account_warning_unknown' => 'Abhängig von der Art der Buchung, die Sie anlegen, kann das Quell- und/oder Zielkonto nachfolgender Aufteilungen durch das überschrieben werden, was in der ersten Aufteilung der Buchung definiert wurde.', + 'multi_account_warning_withdrawal' => 'Bedenken Sie, dass das Quellkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Abhebung definiert ist, außer Kraft gesetzt wird.', + 'multi_account_warning_deposit' => 'Bedenken Sie, dass das Zielkonto nachfolgender Aufteilungen von dem, was in der ersten Aufteilung der Einnahmen definiert ist, außer Kraft gesetzt wird.', + 'multi_account_warning_transfer' => 'Bedenken Sie, dass das Quell- und Zielkonto nachfolgender Aufteilungen durch das, was in der ersten Aufteilung der Übertragung definiert ist, außer Kraft gesetzt wird.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Daten aus Firefly III exportieren', - 'export_data_menu' => 'Daten exportieren', - 'export_data_bc' => 'Daten aus Firefly III exportieren', - 'export_data_main_title' => 'Daten aus Firefly III exportieren', - 'export_data_expl' => 'Dieser Link ermöglicht es Ihnen, alle Transaktionen und deren Metadaten aus Firefly III zu exportieren. Weitere Informationen zur Vorgehensweise entnehmen Sie bitte der Hilfe (oben rechts das ❔-Symbol).', - 'export_data_all_transactions' => 'Alle Buchungen exportieren', - 'export_data_advanced_expl' => 'Wenn Sie eine erweiterte oder spezifische Art des Exports benötigen, lesen Sie die Hilfe zur Verwendung des Konsolenbefehls php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Daten aus Firefly III exportieren', + 'export_data_menu' => 'Daten exportieren', + 'export_data_bc' => 'Daten aus Firefly III exportieren', + 'export_data_main_title' => 'Daten aus Firefly III exportieren', + 'export_data_expl' => 'Dieser Link ermöglicht es Ihnen, alle Transaktionen und deren Metadaten aus Firefly III zu exportieren. Weitere Informationen zur Vorgehensweise entnehmen Sie bitte der Hilfe (oben rechts das ❔-Symbol).', + 'export_data_all_transactions' => 'Alle Buchungen exportieren', + 'export_data_advanced_expl' => 'Wenn Sie eine erweiterte oder spezifische Art des Exports benötigen, lesen Sie die Hilfe zur Verwendung des Konsolenbefehls php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Ein Anhang |:count Anhänge', - 'attachments' => 'Anhänge', - 'edit_attachment' => 'Anhang „:name” bearbeiten', - 'update_attachment' => 'Anhang aktualisieren', - 'delete_attachment' => 'Anhang „:name” löschen', - 'attachment_deleted' => 'Anhang „:name” gelöscht', - 'liabilities_deleted' => 'Verbindlichkeit „:name” gelöscht', - 'attachment_updated' => 'Anhang „:name” aktualisiert', - 'upload_max_file_size' => 'Maximale Dateigröße: :size', - 'list_all_attachments' => 'Liste aller Anhänge', + 'nr_of_attachments' => 'Ein Anhang |:count Anhänge', + 'attachments' => 'Anhänge', + 'edit_attachment' => 'Anhang „:name” bearbeiten', + 'update_attachment' => 'Anhang aktualisieren', + 'delete_attachment' => 'Anhang „:name” löschen', + 'attachment_deleted' => 'Anhang „:name” gelöscht', + 'liabilities_deleted' => 'Verbindlichkeit „:name” gelöscht', + 'attachment_updated' => 'Anhang „:name” aktualisiert', + 'upload_max_file_size' => 'Maximale Dateigröße: :size', + 'list_all_attachments' => 'Liste aller Anhänge', // transaction index - 'is_reconciled_fields_dropped' => 'Da diese Buchung abgeglichen ist, können Sie weder die Konten noch den/die Betrag/Beträge aktualisieren.', - 'title_expenses' => 'Ausgaben', - 'title_withdrawal' => 'Ausgaben', - 'title_revenue' => 'Einnahmen / Einkommen', - 'title_deposit' => 'Einnahmen / Einkommen', - 'title_transfer' => 'Umbuchungen', - 'title_transfers' => 'Umbuchungen', - 'submission_options' => 'Übermittlungsoptionen', - 'apply_rules_checkbox' => 'Regeln anwenden', - 'fire_webhooks_checkbox' => 'Webhooks abfeuern', - 'select_source_account' => 'Bitte einen gültigen Quellkontonamen auswählen oder eingeben', - 'select_dest_account' => 'Bitte einen gültigen Zielkontonamen auswählen oder eingeben', + 'is_reconciled_fields_dropped' => 'Da diese Buchung abgeglichen ist, können Sie weder die Konten noch den/die Betrag/Beträge aktualisieren.', + 'title_expenses' => 'Ausgaben', + 'title_withdrawal' => 'Ausgaben', + 'title_revenue' => 'Einnahmen / Einkommen', + 'title_deposit' => 'Einnahmen / Einkommen', + 'title_transfer' => 'Umbuchungen', + 'title_transfers' => 'Umbuchungen', + 'submission_options' => 'Übermittlungsoptionen', + 'apply_rules_checkbox' => 'Regeln anwenden', + 'fire_webhooks_checkbox' => 'Webhooks abfeuern', + 'select_source_account' => 'Bitte einen gültigen Quellkontonamen auswählen oder eingeben', + 'select_dest_account' => 'Bitte einen gültigen Zielkontonamen auswählen oder eingeben', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Diese Buchung ist bereits eine Ausgabe', - 'convert_is_already_type_Deposit' => 'Diese Buchung ist bereits eine Einnahme', - 'convert_is_already_type_Transfer' => 'Diese Buchung ist bereits eine Umbuchung', - 'convert_to_Withdrawal' => '":description" zu einer Ausgabe konvertieren', - 'convert_to_Deposit' => '":description" zu einer Einnahme konvertieren', - 'convert_to_Transfer' => '":description" zu einer Umbuchung konvertieren', - 'convert_options_WithdrawalDeposit' => 'Konvertieren Sie eine Ausgabe in eine Einnahme', - 'convert_options_WithdrawalTransfer' => 'Konvertieren Sie eine Ausgabe in eine Umbuchung', - 'convert_options_DepositTransfer' => 'Konvertieren Sie eine Einnahme in eine Umbuchung', - 'convert_options_DepositWithdrawal' => 'Konvertieren Sie eine Einnahme in eine Ausgabe', - 'convert_options_TransferWithdrawal' => 'Konvertieren Sie eine Umbuchung in eine Ausgabe', - 'convert_options_TransferDeposit' => 'Konvertieren Sie eine Umbuchung in eine Einnahme', - 'convert_Withdrawal_to_deposit' => 'Konvertieren Sie diese Ausgabe zu einer Einnahme', - 'convert_Withdrawal_to_transfer' => 'Konvertieren Sie diese Ausgabe in eine Umbuchung', - 'convert_Deposit_to_withdrawal' => 'Konvertieren Sie diese Einnahme zu einer Ausgabe', - 'convert_Deposit_to_transfer' => 'Konvertieren Sie diese Einnahme in eine Umbuchung', - 'convert_Transfer_to_deposit' => 'Konvertieren Sie diese Umbuchung in eine Einnahme', - 'convert_Transfer_to_withdrawal' => 'Konvertieren Sie diese Umbuchung in eine Ausgabe', - 'convert_please_set_revenue_source' => 'Bitte das Einnahmenkonto wählen, von welchem das Geld kommen wird.', - 'convert_please_set_asset_destination' => 'Bitte wählen Sie das Bestandskonto, auf das das Geld überwiesen werden soll.', - 'convert_please_set_expense_destination' => 'Bitte wählen Sie das Ausgabenkonto, an das das Geld gehen soll.', - 'convert_please_set_asset_source' => 'Bitte das Bestandskonto wählen, von dem das Geld kommt.', - 'convert_expl_w_d' => 'Bei der Umwandlung von einer Ausgabe in eine Einnahme wird das Geld auf das angezeigte Zielkonto eingezahlt, anstatt davon abgebucht zu werden.|Bei der Umwandlung von einer Ausgabe in eine Einnahme wird das Geld auf die angezeigten Zielkonten eingezahlt, anstatt von diesem abgebucht zu werden.', - 'convert_expl_w_t' => 'Bei der Umwandlung einer Ausgabe in eine Überweisung wird das Geld vom Quellkonto auf ein anderes Vermögens- oder Verbindlichkeitskonto überwiesen, anstatt auf das ursprüngliche Ausgabenkonto gebucht zu werden.|Bei der Umwandlung einer Ausgabe in eine Überweisung, wird das Geld von den Quellkonten auf andere Vermögens- oder Verbindlichkeitskonten überwiesen, anstatt auf die ursprünglichen Ausgabenkonten gebucht zu werden.', - 'convert_expl_d_w' => 'Wenn eine Einnahme in eine Ausgabe umgewandelt wird, wird das Geld von den angezeigten Quellkonten abgehoben, anstatt auf diese eingezahlt zu werden.|Wenn eine Einnahme in eine Ausgabe umgewandelt wird, wird das Geld von den angezeigten Quellkonten abgehoben, anstatt auf diese eingezahlt zu werden.', - 'convert_expl_d_t' => 'Wenn Sie eine Einnahme in einen Ümbuchung umwandeln, wird das Geld von einem Ihrer Aktiv- oder Passivkonten auf das aufgelistete Zielkonto eingezahlt.| Wenn Sie eine Einnahme in einen Umbuchung umwandeln, wird das Geld von einem Ihrer Aktiv- oder Passivkonten auf das aufgelistete Zielkonto eingezahlt.', - 'convert_expl_t_w' => 'Wenn Sie eine Überweisung in eine Abhebung umwandeln, wird das Geld auf dem hier angegebenen Zielkonto ausgegeben, anstatt überwiesen zu werden.| Wenn Sie eine Überweisung in eine Abhebung umwandeln, wird das Geld auf dem hier angegebenen Zielkonto ausgegeben, anstatt überwiesen zu werden.', - 'convert_expl_t_d' => 'Wenn Sie eine Umbuchung in eine Einnahme umwandeln, wird das Geld auf das hier angegebene Zielkonto eingezahlt und nicht auf dieses überwiesen.| Wenn Sie eine Umbuchung in eine Einnahme umwandeln, wird das Geld auf das hier angegebene Zielkonto eingezahlt und nicht auf dieses überwiesen.', - 'convert_select_sources' => 'Um die Umwandlung abzuschließen, wählen Sie bitte unten das neue Quellkonto aus.|Um die Umwandlung abzuschließen, wählen Sie bitte die neuen Quellkonten aus.', - 'convert_select_destinations' => 'Um die Umwandlung abzuschließen, wählen Sie bitte unten das neue Zielkonto aus.|Um die Umwandlung abzuschließen, wählen Sie bitte die neuen Zielkonten aus.', - 'converted_to_Withdrawal' => 'Die Buchung wurde in eine Ausgabe konvertiert', - 'converted_to_Deposit' => 'Die Buchung wurde in eine Einnahme konvertiert', - 'converted_to_Transfer' => 'Die Buchung wurde in eine Umbuchung konvertiert', - 'invalid_convert_selection' => 'Das von Ihnen ausgewählte Konto wird für diese Buchung bereits verwendet oder ist nicht vorhanden.', - 'source_or_dest_invalid' => 'Die korrekten Buchungsdetails konnten nicht gefunden werden. Eine Konvertierung ist nicht möglich.', - 'convert_to_withdrawal' => 'In eine Ausgabe umwandeln', - 'convert_to_deposit' => 'In eine Einnahme umwandeln', - 'convert_to_transfer' => 'In eine Umbuchung umwandeln', + 'convert_is_already_type_Withdrawal' => 'Diese Buchung ist bereits eine Ausgabe', + 'convert_is_already_type_Deposit' => 'Diese Buchung ist bereits eine Einnahme', + 'convert_is_already_type_Transfer' => 'Diese Buchung ist bereits eine Umbuchung', + 'convert_to_Withdrawal' => '":description" zu einer Ausgabe konvertieren', + 'convert_to_Deposit' => '":description" zu einer Einnahme konvertieren', + 'convert_to_Transfer' => '":description" zu einer Umbuchung konvertieren', + 'convert_options_WithdrawalDeposit' => 'Konvertieren Sie eine Ausgabe in eine Einnahme', + 'convert_options_WithdrawalTransfer' => 'Konvertieren Sie eine Ausgabe in eine Umbuchung', + 'convert_options_DepositTransfer' => 'Konvertieren Sie eine Einnahme in eine Umbuchung', + 'convert_options_DepositWithdrawal' => 'Konvertieren Sie eine Einnahme in eine Ausgabe', + 'convert_options_TransferWithdrawal' => 'Konvertieren Sie eine Umbuchung in eine Ausgabe', + 'convert_options_TransferDeposit' => 'Konvertieren Sie eine Umbuchung in eine Einnahme', + 'convert_Withdrawal_to_deposit' => 'Konvertieren Sie diese Ausgabe zu einer Einnahme', + 'convert_Withdrawal_to_transfer' => 'Konvertieren Sie diese Ausgabe in eine Umbuchung', + 'convert_Deposit_to_withdrawal' => 'Konvertieren Sie diese Einnahme zu einer Ausgabe', + 'convert_Deposit_to_transfer' => 'Konvertieren Sie diese Einnahme in eine Umbuchung', + 'convert_Transfer_to_deposit' => 'Konvertieren Sie diese Umbuchung in eine Einnahme', + 'convert_Transfer_to_withdrawal' => 'Konvertieren Sie diese Umbuchung in eine Ausgabe', + 'convert_please_set_revenue_source' => 'Bitte das Einnahmenkonto wählen, von welchem das Geld kommen wird.', + 'convert_please_set_asset_destination' => 'Bitte wählen Sie das Bestandskonto, auf das das Geld überwiesen werden soll.', + 'convert_please_set_expense_destination' => 'Bitte wählen Sie das Ausgabenkonto, an das das Geld gehen soll.', + 'convert_please_set_asset_source' => 'Bitte das Bestandskonto wählen, von dem das Geld kommt.', + 'convert_expl_w_d' => 'Bei der Umwandlung von einer Ausgabe in eine Einnahme wird das Geld auf das angezeigte Zielkonto eingezahlt, anstatt davon abgebucht zu werden.|Bei der Umwandlung von einer Ausgabe in eine Einnahme wird das Geld auf die angezeigten Zielkonten eingezahlt, anstatt von diesem abgebucht zu werden.', + 'convert_expl_w_t' => 'Bei der Umwandlung einer Ausgabe in eine Überweisung wird das Geld vom Quellkonto auf ein anderes Vermögens- oder Verbindlichkeitskonto überwiesen, anstatt auf das ursprüngliche Ausgabenkonto gebucht zu werden.|Bei der Umwandlung einer Ausgabe in eine Überweisung, wird das Geld von den Quellkonten auf andere Vermögens- oder Verbindlichkeitskonten überwiesen, anstatt auf die ursprünglichen Ausgabenkonten gebucht zu werden.', + 'convert_expl_d_w' => 'Wenn eine Einnahme in eine Ausgabe umgewandelt wird, wird das Geld von den angezeigten Quellkonten abgehoben, anstatt auf diese eingezahlt zu werden.|Wenn eine Einnahme in eine Ausgabe umgewandelt wird, wird das Geld von den angezeigten Quellkonten abgehoben, anstatt auf diese eingezahlt zu werden.', + 'convert_expl_d_t' => 'Wenn Sie eine Einnahme in einen Ümbuchung umwandeln, wird das Geld von einem Ihrer Aktiv- oder Passivkonten auf das aufgelistete Zielkonto eingezahlt.| Wenn Sie eine Einnahme in einen Umbuchung umwandeln, wird das Geld von einem Ihrer Aktiv- oder Passivkonten auf das aufgelistete Zielkonto eingezahlt.', + 'convert_expl_t_w' => 'Wenn Sie eine Überweisung in eine Abhebung umwandeln, wird das Geld auf dem hier angegebenen Zielkonto ausgegeben, anstatt überwiesen zu werden.| Wenn Sie eine Überweisung in eine Abhebung umwandeln, wird das Geld auf dem hier angegebenen Zielkonto ausgegeben, anstatt überwiesen zu werden.', + 'convert_expl_t_d' => 'Wenn Sie eine Umbuchung in eine Einnahme umwandeln, wird das Geld auf das hier angegebene Zielkonto eingezahlt und nicht auf dieses überwiesen.| Wenn Sie eine Umbuchung in eine Einnahme umwandeln, wird das Geld auf das hier angegebene Zielkonto eingezahlt und nicht auf dieses überwiesen.', + 'convert_select_sources' => 'Um die Umwandlung abzuschließen, wählen Sie bitte unten das neue Quellkonto aus.|Um die Umwandlung abzuschließen, wählen Sie bitte die neuen Quellkonten aus.', + 'convert_select_destinations' => 'Um die Umwandlung abzuschließen, wählen Sie bitte unten das neue Zielkonto aus.|Um die Umwandlung abzuschließen, wählen Sie bitte die neuen Zielkonten aus.', + 'converted_to_Withdrawal' => 'Die Buchung wurde in eine Ausgabe konvertiert', + 'converted_to_Deposit' => 'Die Buchung wurde in eine Einnahme konvertiert', + 'converted_to_Transfer' => 'Die Buchung wurde in eine Umbuchung konvertiert', + 'invalid_convert_selection' => 'Das von Ihnen ausgewählte Konto wird für diese Buchung bereits verwendet oder ist nicht vorhanden.', + 'source_or_dest_invalid' => 'Die korrekten Buchungsdetails konnten nicht gefunden werden. Eine Konvertierung ist nicht möglich.', + 'convert_to_withdrawal' => 'In eine Ausgabe umwandeln', + 'convert_to_deposit' => 'In eine Einnahme umwandeln', + 'convert_to_transfer' => 'In eine Umbuchung umwandeln', // create new stuff: - 'create_new_withdrawal' => 'Neue Ausgabe erstellen', - 'create_new_deposit' => 'Neue Einnahme erstellen', - 'create_new_transfer' => 'Neue Umbuchung erstellen', - 'create_new_asset' => 'Neues Bestandskonto erstellen', - 'create_new_liabilities' => 'Neue Verbindlichkeit anlegen', - 'create_new_expense' => 'Neues Ausgabenkonto erstellen', - 'create_new_revenue' => 'Neues Einnahmenkonto erstellen', - 'create_new_piggy_bank' => 'Ein neues Sparschwein erstellen', - 'create_new_bill' => 'Eine neue Rechnung erstellen', - 'create_new_subscription' => 'Neues Abonnement erstellen', - 'create_new_rule' => 'Neue Regel erstellen', + 'create_new_withdrawal' => 'Neue Ausgabe erstellen', + 'create_new_deposit' => 'Neue Einnahme erstellen', + 'create_new_transfer' => 'Neue Umbuchung erstellen', + 'create_new_asset' => 'Neues Bestandskonto erstellen', + 'create_new_liabilities' => 'Neue Verbindlichkeit anlegen', + 'create_new_expense' => 'Neues Ausgabenkonto erstellen', + 'create_new_revenue' => 'Neues Einnahmenkonto erstellen', + 'create_new_piggy_bank' => 'Ein neues Sparschwein erstellen', + 'create_new_bill' => 'Eine neue Rechnung erstellen', + 'create_new_subscription' => 'Neues Abonnement erstellen', + 'create_new_rule' => 'Neue Regel erstellen', // currencies: - 'create_currency' => 'Eine neue Währung erstellen', - 'store_currency' => 'Neue Währung speichern', - 'update_currency' => 'Währung aktualisieren', - 'new_default_currency' => '„:name” ist jetzt die Standardwährung.', - 'default_currency_failed' => '„:name” konnte nicht als Standardwährung festgelegt werden. Bitte prüfen Sie die Protokolle.', - 'cannot_delete_currency' => '„:name” konnte nicht gelöscht werden, da diese noch verwendet wird.', - 'cannot_delete_fallback_currency' => ':name ist die Standardwährung des Systems und kann daher nicht gelöscht werden.', - 'cannot_disable_currency_journals' => '„:name” konnte nicht deaktiviert werden, da dieser noch von Buchungen verwendet wird.', - 'cannot_disable_currency_last_left' => '„:name” kann nicht deaktiviert werden, da es sich um die einzige aktivierte Währung handelt.', - 'cannot_disable_currency_account_meta' => ':name konnte nicht deaktiviert werden, da dieser noch in Bestandskonten verwendet wird.', - 'cannot_disable_currency_bills' => '„:name” konnte nicht deaktiviert werden, da dieser noch in Rechnungen verwendet wird.', - 'cannot_disable_currency_recurring' => '„:name” kann nicht deaktiviert werden, da dieser noch bei Daueraufträgen verwendet wird.', - 'cannot_disable_currency_available_budgets' => '„:name” kann nicht deaktiviert werden, da dieser noch in verfügbaren Kostenrahmen verwendet wird.', - 'cannot_disable_currency_budget_limits' => '„:name” konnte nicht deaktiviert werden, da dieser noch in Kostenrahmenbeschränkungen verwendet wird.', - 'cannot_disable_currency_current_default' => '„:name” konnte nicht deaktiviert werden, da es sich um die aktuelle Standardwährung handelt.', - 'cannot_disable_currency_system_fallback' => '„:name” konnte nicht deaktiviert werden, da es sich um die Standardwährung des Systems handelt.', - 'disable_EUR_side_effects' => 'Der Euro ist die Notfall-Rückfallwährung des Systems. Die Deaktivierung kann unbeabsichtigte Nebenwirkungen haben und den Verlust Ihrer Garantie zur Folge haben.', - 'deleted_currency' => 'Währung :name gelöscht', - 'created_currency' => 'Währung :name erstellt', - 'could_not_store_currency' => 'Die neue Währung konnte nicht gespeichert werden.', - 'updated_currency' => 'Währung :name aktualisiert', - 'ask_site_owner' => 'Bitte fragen sie :owner zum Hinzufügen, Entfernen oder Bearbeiten von Währungen.', - 'currencies_intro' => 'Firefly III unterstützt verschiedene Währungen, welche hier eingestellt und aktiviert werden können.', - 'make_default_currency' => 'Als Standard festlegen', - 'default_currency' => 'Standard', - 'currency_is_disabled' => 'Deaktiviert', - 'enable_currency' => 'Aktivieren', - 'disable_currency' => 'Deaktivieren', - 'currencies_default_disabled' => 'Die meisten dieser Währungen sind standardmäßig deaktiviert. Um sie zu verwenden, müssen Sie diese zuerst aktivieren.', - 'currency_is_now_enabled' => 'Währung „:name” wurde aktiviert', - 'could_not_enable_currency' => 'Die Währung „:name” konnte nicht aktiviert werden. Bitte überprüfen Sie die Protokolle.', - 'currency_is_now_disabled' => 'Währung „:name” wurde deaktiviert', - 'could_not_disable_currency' => 'Die Währung „:name” konnte nicht deaktiviert werden. Vielleicht wird sie noch verwendet?', + 'create_currency' => 'Eine neue Währung erstellen', + 'store_currency' => 'Neue Währung speichern', + 'update_currency' => 'Währung aktualisieren', + 'new_default_currency' => '„:name” ist jetzt die Standardwährung.', + 'default_currency_failed' => '„:name” konnte nicht als Standardwährung festgelegt werden. Bitte prüfen Sie die Protokolle.', + 'cannot_delete_currency' => '„:name” konnte nicht gelöscht werden, da diese noch verwendet wird.', + 'cannot_delete_fallback_currency' => ':name ist die Standardwährung des Systems und kann daher nicht gelöscht werden.', + 'cannot_disable_currency_journals' => '„:name” konnte nicht deaktiviert werden, da dieser noch von Buchungen verwendet wird.', + 'cannot_disable_currency_last_left' => '„:name” kann nicht deaktiviert werden, da es sich um die einzige aktivierte Währung handelt.', + 'cannot_disable_currency_account_meta' => ':name konnte nicht deaktiviert werden, da dieser noch in Bestandskonten verwendet wird.', + 'cannot_disable_currency_bills' => '„:name” konnte nicht deaktiviert werden, da dieser noch in Rechnungen verwendet wird.', + 'cannot_disable_currency_recurring' => '„:name” kann nicht deaktiviert werden, da dieser noch bei Daueraufträgen verwendet wird.', + 'cannot_disable_currency_available_budgets' => '„:name” kann nicht deaktiviert werden, da dieser noch in verfügbaren Kostenrahmen verwendet wird.', + 'cannot_disable_currency_budget_limits' => '„:name” konnte nicht deaktiviert werden, da dieser noch in Kostenrahmenbeschränkungen verwendet wird.', + 'cannot_disable_currency_current_default' => '„:name” konnte nicht deaktiviert werden, da es sich um die aktuelle Standardwährung handelt.', + 'cannot_disable_currency_system_fallback' => '„:name” konnte nicht deaktiviert werden, da es sich um die Standardwährung des Systems handelt.', + 'disable_EUR_side_effects' => 'Der Euro ist die Notfall-Rückfallwährung des Systems. Die Deaktivierung kann unbeabsichtigte Nebenwirkungen haben und den Verlust Ihrer Garantie zur Folge haben.', + 'deleted_currency' => 'Währung :name gelöscht', + 'created_currency' => 'Währung :name erstellt', + 'could_not_store_currency' => 'Die neue Währung konnte nicht gespeichert werden.', + 'updated_currency' => 'Währung :name aktualisiert', + 'ask_site_owner' => 'Bitte fragen sie :owner zum Hinzufügen, Entfernen oder Bearbeiten von Währungen.', + 'currencies_intro' => 'Firefly III unterstützt verschiedene Währungen, welche hier eingestellt und aktiviert werden können.', + 'make_default_currency' => 'Als Standard festlegen', + 'default_currency' => 'Standard', + 'currency_is_disabled' => 'Deaktiviert', + 'enable_currency' => 'Aktivieren', + 'disable_currency' => 'Deaktivieren', + 'currencies_default_disabled' => 'Die meisten dieser Währungen sind standardmäßig deaktiviert. Um sie zu verwenden, müssen Sie diese zuerst aktivieren.', + 'currency_is_now_enabled' => 'Währung „:name” wurde aktiviert', + 'could_not_enable_currency' => 'Die Währung „:name” konnte nicht aktiviert werden. Bitte überprüfen Sie die Protokolle.', + 'currency_is_now_disabled' => 'Währung „:name” wurde deaktiviert', + 'could_not_disable_currency' => 'Die Währung „:name” konnte nicht deaktiviert werden. Vielleicht wird sie noch verwendet?', // forms: - 'mandatoryFields' => 'Pflichtfelder', - 'optionalFields' => 'Optionale Felder', - 'options' => 'Einstellungen', + 'mandatoryFields' => 'Pflichtfelder', + 'optionalFields' => 'Optionale Felder', + 'options' => 'Einstellungen', // budgets: - 'daily_budgets' => 'Tagesbudgets', - 'weekly_budgets' => 'Wochenbudgets', - 'monthly_budgets' => 'Monatsbudgets', - 'quarterly_budgets' => 'Quartalsbudgets', - 'half_year_budgets' => 'Halbjahresbudgets', - 'yearly_budgets' => 'Jahresbudgets', - 'other_budgets' => 'Zeitlich befristete Budgets', - 'budget_limit_not_in_range' => 'Dieser Betrag gilt von :start to :end:', - 'total_available_budget' => 'Verfügbares Gesamtbudget (zwischen :start und :end)', - 'total_available_budget_in_currency' => 'Verfügbares Gesamtbudget in :currency', - 'see_below' => 'Siehe unten', - 'create_new_budget' => 'Neues Budget erstellen', - 'store_new_budget' => 'Neues Budget speichern', - 'stored_new_budget' => 'Neues Budget „:name” gespeichert', - 'available_between' => 'Verfügbar zwischen :start und :end', - 'transactionsWithoutBudget' => 'Ausgaben ohne Budget', - 'transactions_no_budget' => 'Ausgaben ohne Budget zwischen :start und :end', - 'spent_between' => 'Bereits zwischen :start und :end ausgegeben', - 'spent_between_left' => ':spent zwischen :start und :end ausgegeben, :left verbleiben.', - 'set_available_amount' => 'Verfügbaren Betrag festlegen', - 'update_available_amount' => 'Verfügbaren Betrag aktualisieren', - 'ab_basic_modal_explain' => 'Verwenden Sie dieses Formular, um anzugeben, wie viel Sie erwarten, dass Sie im angegebenen Zeitraum vorsehen (insgesamt, in :currency) können.', - 'createBudget' => 'Neues Budget', - 'invalid_currency' => 'Ungültige Währung angegeben', - 'invalid_amount' => 'Bitte einen Betrag eingeben', - 'set_ab' => 'Der verfügbare Budgetbetrag wurde festgelegt', - 'updated_ab' => 'Der verfügbare Budgetbetrag wurde aktualisiert', - 'deleted_ab' => 'Der verfügbare Budgetbetrag wurde gelöscht', - 'deleted_bl' => 'Der eingeplante Betrag wurde entfernt', - 'alt_currency_ab_create' => 'Verfügbare Budget in einer anderen Währung angeben', - 'bl_create_btn' => 'Budget in einer anderen Währung angeben', - 'inactiveBudgets' => 'Inaktive Budgets', - 'without_budget_between' => 'Buchungen ohne Budget zwischen :start und :end', - 'delete_budget' => 'Budget „:name” löschen', - 'deleted_budget' => 'Budget „:name” gelöscht', - 'edit_budget' => 'Budget „:name” bearbeiten', - 'updated_budget' => 'Budget „:name” aktualisiert', - 'update_amount' => 'Betrag aktualisieren', - 'update_budget' => 'Budget aktualisieren', - 'update_budget_amount_range' => '(Erwarteten) Verfügbaren Betrag zwischen :start und :end aktualisieren', - 'set_budget_limit_title' => 'Eingeplanten Betrag für das Budget :budget zwischen :start und :end festlegen', - 'set_budget_limit' => 'Eingeplanten Betrag angeben', - 'budget_period_navigator' => 'Zeitraum-Navigator', - 'info_on_available_amount' => 'Wieviel ist verfügbar?', - 'available_amount_indication' => 'Verwenden Sie diese Angaben, um einen Anhaltspunkt darüber zu erhalten, wie hoch Ihr komplettes Budget sein könnte.', - 'suggested' => 'Vorgeschlagen', - 'average_between' => 'Durchschnitt zwischen :start und :end', - 'transferred_in' => 'Übertragen (eingehend)', - 'transferred_away' => 'Übertragen (ausgehend)', - 'auto_budget_none' => 'Kein Auto-Budget', - 'auto_budget_reset' => 'Festbetrag für jeden Zeitraum festlegen', - 'auto_budget_rollover' => 'Betrag pro Zeitraum hinzufügen', - 'auto_budget_adjusted' => 'Fügen Sie für jeden Zeitraum einen Betrag hinzu und korrigieren Sie die Mehrausgaben', - 'auto_budget_period_daily' => 'Täglich', - 'auto_budget_period_weekly' => 'Wöchentlich', - 'auto_budget_period_monthly' => 'Monatlich', - 'auto_budget_period_quarterly' => 'Quartalsweise', - 'auto_budget_period_half_year' => 'Halbjährlich', - 'auto_budget_period_yearly' => 'Jährlich', - 'auto_budget_help' => 'Mehr über diese Funktion können Sie in der Hilfe nachlesen. Klicken Sie oben rechts auf das ❓-Symbol.', - 'auto_budget_reset_icon' => 'Dieses Budget wird regelmäßig festgelegt', - 'auto_budget_rollover_icon' => 'Der Budgetbetrag wird regelmäßig erhöht', - 'auto_budget_adjusted_icon' => 'Der Budget-Betrag wird regelmäßig erhöht und wird bei Mehrausgaben korrigiert', - 'remove_budgeted_amount' => 'Budgetbetrag in :currency entfernen', + 'daily_budgets' => 'Tagesbudgets', + 'weekly_budgets' => 'Wochenbudgets', + 'monthly_budgets' => 'Monatsbudgets', + 'quarterly_budgets' => 'Quartalsbudgets', + 'half_year_budgets' => 'Halbjahresbudgets', + 'yearly_budgets' => 'Jahresbudgets', + 'other_budgets' => 'Zeitlich befristete Budgets', + 'budget_limit_not_in_range' => 'Dieser Betrag gilt von :start to :end:', + 'total_available_budget' => 'Verfügbares Gesamtbudget (zwischen :start und :end)', + 'total_available_budget_in_currency' => 'Verfügbares Gesamtbudget in :currency', + 'see_below' => 'Siehe unten', + 'create_new_budget' => 'Neues Budget erstellen', + 'store_new_budget' => 'Neues Budget speichern', + 'stored_new_budget' => 'Neues Budget „:name” gespeichert', + 'available_between' => 'Verfügbar zwischen :start und :end', + 'transactionsWithoutBudget' => 'Ausgaben ohne Budget', + 'transactions_no_budget' => 'Ausgaben ohne Budget zwischen :start und :end', + 'spent_between' => 'Bereits zwischen :start und :end ausgegeben', + 'spent_between_left' => ':spent zwischen :start und :end ausgegeben, :left verbleiben.', + 'set_available_amount' => 'Verfügbaren Betrag festlegen', + 'update_available_amount' => 'Verfügbaren Betrag aktualisieren', + 'ab_basic_modal_explain' => 'Verwenden Sie dieses Formular, um anzugeben, wie viel Sie erwarten, dass Sie im angegebenen Zeitraum vorsehen (insgesamt, in :currency) können.', + 'createBudget' => 'Neues Budget', + 'invalid_currency' => 'Ungültige Währung angegeben', + 'invalid_amount' => 'Bitte einen Betrag eingeben', + 'set_ab' => 'Der verfügbare Budgetbetrag wurde festgelegt', + 'updated_ab' => 'Der verfügbare Budgetbetrag wurde aktualisiert', + 'deleted_ab' => 'Der verfügbare Budgetbetrag wurde gelöscht', + 'deleted_bl' => 'Der eingeplante Betrag wurde entfernt', + 'alt_currency_ab_create' => 'Verfügbare Budget in einer anderen Währung angeben', + 'bl_create_btn' => 'Budget in einer anderen Währung angeben', + 'inactiveBudgets' => 'Inaktive Budgets', + 'without_budget_between' => 'Buchungen ohne Budget zwischen :start und :end', + 'delete_budget' => 'Budget „:name” löschen', + 'deleted_budget' => 'Budget „:name” gelöscht', + 'edit_budget' => 'Budget „:name” bearbeiten', + 'updated_budget' => 'Budget „:name” aktualisiert', + 'update_amount' => 'Betrag aktualisieren', + 'update_budget' => 'Budget aktualisieren', + 'update_budget_amount_range' => '(Erwarteten) Verfügbaren Betrag zwischen :start und :end aktualisieren', + 'set_budget_limit_title' => 'Eingeplanten Betrag für das Budget :budget zwischen :start und :end festlegen', + 'set_budget_limit' => 'Eingeplanten Betrag angeben', + 'budget_period_navigator' => 'Zeitraum-Navigator', + 'info_on_available_amount' => 'Wieviel ist verfügbar?', + 'available_amount_indication' => 'Verwenden Sie diese Angaben, um einen Anhaltspunkt darüber zu erhalten, wie hoch Ihr komplettes Budget sein könnte.', + 'suggested' => 'Vorgeschlagen', + 'average_between' => 'Durchschnitt zwischen :start und :end', + 'transferred_in' => 'Übertragen (eingehend)', + 'transferred_away' => 'Übertragen (ausgehend)', + 'auto_budget_none' => 'Kein Auto-Budget', + 'auto_budget_reset' => 'Festbetrag für jeden Zeitraum festlegen', + 'auto_budget_rollover' => 'Betrag pro Zeitraum hinzufügen', + 'auto_budget_adjusted' => 'Fügen Sie für jeden Zeitraum einen Betrag hinzu und korrigieren Sie die Mehrausgaben', + 'auto_budget_period_daily' => 'Täglich', + 'auto_budget_period_weekly' => 'Wöchentlich', + 'auto_budget_period_monthly' => 'Monatlich', + 'auto_budget_period_quarterly' => 'Quartalsweise', + 'auto_budget_period_half_year' => 'Halbjährlich', + 'auto_budget_period_yearly' => 'Jährlich', + 'auto_budget_help' => 'Mehr über diese Funktion können Sie in der Hilfe nachlesen. Klicken Sie oben rechts auf das ❓-Symbol.', + 'auto_budget_reset_icon' => 'Dieses Budget wird regelmäßig festgelegt', + 'auto_budget_rollover_icon' => 'Der Budgetbetrag wird regelmäßig erhöht', + 'auto_budget_adjusted_icon' => 'Der Budget-Betrag wird regelmäßig erhöht und wird bei Mehrausgaben korrigiert', + 'remove_budgeted_amount' => 'Budgetbetrag in :currency entfernen', // bills: - 'subscription' => 'Abonnement', - 'not_expected_period' => 'In diesem Zeitraum nicht erwartet', - 'subscriptions_in_group' => 'Abonnements in Gruppe "%{title}"', - 'subscr_expected_x_times' => 'Die Zahlung von %{amount} wird in diesem Zeitraum %{times}-mal erwartet', - 'not_or_not_yet' => '(Noch) nicht', - 'visit_bill' => 'Rechnung ":name" in Firefly III aufrufen', - 'match_between_amounts' => 'Rechnung passt zu Transaktionen zwischen :low und :high.', - 'running_again_loss' => 'Zuvor verknüpfte Buchungen mit dieser Rechnung können ihre Verbindung verlieren, wenn sie (nicht mehr) der/den Regel(n) entsprechen.', - 'bill_related_rules' => 'Regeln mit Verknüpfung zu dieser Rechnung', - 'repeats' => 'Wiederholungen', - 'bill_end_date_help' => 'Optionales Feld. Die Rechnung wird voraussichtlich an diesem Datum enden.', - 'bill_extension_date_help' => 'Optionales Feld. Die Rechnung muss an oder vor diesem Datum verlängert (oder storniert) werden.', - 'bill_end_index_line' => 'Diese Rechnung endet am :date', - 'bill_extension_index_line' => 'Diese Rechnung muss am :date verlängert oder storniert werden', - 'connected_journals' => 'Verknüpfte Buchungen', - 'auto_match_on' => 'Automatisch von Firefly III zugeordnet', - 'auto_match_off' => 'Nicht automatisch von Firefly III zugeordnet', - 'next_expected_match' => 'Nächste erwartete Übereinstimmung', - 'delete_bill' => 'Rechnung „:name” löschen', - 'deleted_bill' => 'Rechnung „:name” gelöscht', - 'edit_bill' => 'Rechnung „:name” bearbeiten', - 'more' => 'Weitere', - 'rescan_old' => 'Regeln für alle Buchungen erneut ausführen', - 'update_bill' => 'Rechnung aktualisieren', - 'updated_bill' => 'Rechnung „:name” aktualisiert', - 'store_new_bill' => 'Neue Rechnung speichern', - 'stored_new_bill' => 'Neue Rechnung „:name” gespeichert', - 'cannot_scan_inactive_bill' => 'Inaktive Rechnungen können nicht gescannt werden.', - 'rescanned_bill' => 'Alles neu eingelesen und :count Transaktion mit der Rechnung verknüpft.|Alles neu eingelesen und :count Transaktionen mit der Rechnung verknüpft.', - 'average_bill_amount_year' => 'Durchschnittliche Rechnungssumme (:year)', - 'average_bill_amount_overall' => 'Durchschnittliche Rechnungssumme (gesamt)', - 'bill_is_active' => 'Rechnung ist aktiv', - 'bill_expected_between' => 'Erwartet zwischen :start und :end', - 'bill_will_automatch' => 'Rechnung wird automatisch mit passenden Buchungen verknüpft', - 'skips_over' => 'überschreitet', - 'bill_store_error' => 'Beim Speichern Ihrer neuen Rechnung ist ein unerwarteter Fehler aufgetreten. Bitte überprüfen Sie die Protokolldateien.', - 'list_inactive_rule' => 'Inaktive Regeln', - 'bill_edit_rules' => 'Firefly III wird versuchen, auch die mit dieser Rechnung zusammenhängende Regel zu ändern. Wenn Sie diese Regel jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.|Firefly III wird versuchen, die :count mit dieser Rechnung zusammenhängenden Regeln ebenfalls zu bearbeiten. Wenn Sie diese Regeln jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.', - 'bill_expected_date' => 'Voraussichtlich :date', - 'bill_expected_date_js' => 'Erwartet {date}', - 'expected_amount' => '(Erwarteter) Betrag', - 'bill_paid_on' => 'Bezahlt am {date}', - 'bill_repeats_weekly' => 'Wiederholt sich wöchentlich', - 'bill_repeats_monthly' => 'Wiederholt sich monatlich', - 'bill_repeats_quarterly' => 'Wiederholt sich vierteljährlich', - 'bill_repeats_half-year' => 'Wiederholt sich halbjährlich', - 'bill_repeats_yearly' => 'Wiederholt sich jährlich', - 'bill_repeats_weekly_other' => 'Wiederholt sich jede zweite Woche', - 'bill_repeats_monthly_other' => 'Wiederholt sich jeden zweiten Monat', - 'bill_repeats_quarterly_other' => 'Wiederholt sich jedes zweite Vierteljahr', - 'bill_repeats_half-year_other' => 'Wiederholt sich jährlich', - 'bill_repeats_yearly_other' => 'Wiederholt sich jedes zweite Jahr', - 'bill_repeats_weekly_skip' => 'Wiederholt sich alle {skip} Wochen', - 'bill_repeats_monthly_skip' => 'Wiederholt sich alle {skip} Monate', - 'bill_repeats_quarterly_skip' => 'Wiederholt sich alle {skip} Vierteljahre', - 'bill_repeats_half-year_skip' => 'Wiederholt sich alle {skip} Halbjahre', - 'bill_repeats_yearly_skip' => 'Wiederholt sich alle {skip} Jahre', - 'subscriptions' => 'Abonnements', - 'go_to_subscriptions' => 'Zu Abonnements gehen', - 'forever' => 'Dauerhaft', - 'extension_date_is' => 'Zeitpunkt der Verlängerung ist {date}', + 'subscription' => 'Abonnement', + 'not_expected_period' => 'In diesem Zeitraum nicht erwartet', + 'subscriptions_in_group' => 'Abonnements in Gruppe "%{title}"', + 'subscr_expected_x_times' => 'Die Zahlung von %{amount} wird in diesem Zeitraum %{times}-mal erwartet', + 'not_or_not_yet' => '(Noch) nicht', + 'visit_bill' => 'Rechnung ":name" in Firefly III aufrufen', + 'match_between_amounts' => 'Rechnung passt zu Transaktionen zwischen :low und :high.', + 'running_again_loss' => 'Zuvor verknüpfte Buchungen mit dieser Rechnung können ihre Verbindung verlieren, wenn sie (nicht mehr) der/den Regel(n) entsprechen.', + 'bill_related_rules' => 'Regeln mit Verknüpfung zu dieser Rechnung', + 'repeats' => 'Wiederholungen', + 'bill_end_date_help' => 'Optionales Feld. Die Rechnung wird voraussichtlich an diesem Datum enden.', + 'bill_extension_date_help' => 'Optionales Feld. Die Rechnung muss an oder vor diesem Datum verlängert (oder storniert) werden.', + 'bill_end_index_line' => 'Diese Rechnung endet am :date', + 'bill_extension_index_line' => 'Diese Rechnung muss am :date verlängert oder storniert werden', + 'connected_journals' => 'Verknüpfte Buchungen', + 'auto_match_on' => 'Automatisch von Firefly III zugeordnet', + 'auto_match_off' => 'Nicht automatisch von Firefly III zugeordnet', + 'next_expected_match' => 'Nächste erwartete Übereinstimmung', + 'delete_bill' => 'Rechnung „:name” löschen', + 'deleted_bill' => 'Rechnung „:name” gelöscht', + 'edit_bill' => 'Rechnung „:name” bearbeiten', + 'more' => 'Weitere', + 'rescan_old' => 'Regeln für alle Buchungen erneut ausführen', + 'update_bill' => 'Rechnung aktualisieren', + 'updated_bill' => 'Rechnung „:name” aktualisiert', + 'store_new_bill' => 'Neue Rechnung speichern', + 'stored_new_bill' => 'Neue Rechnung „:name” gespeichert', + 'cannot_scan_inactive_bill' => 'Inaktive Rechnungen können nicht gescannt werden.', + 'rescanned_bill' => 'Alles neu eingelesen und :count Transaktion mit der Rechnung verknüpft.|Alles neu eingelesen und :count Transaktionen mit der Rechnung verknüpft.', + 'average_bill_amount_year' => 'Durchschnittliche Rechnungssumme (:year)', + 'average_bill_amount_overall' => 'Durchschnittliche Rechnungssumme (gesamt)', + 'bill_is_active' => 'Rechnung ist aktiv', + 'bill_expected_between' => 'Erwartet zwischen :start und :end', + 'bill_will_automatch' => 'Rechnung wird automatisch mit passenden Buchungen verknüpft', + 'skips_over' => 'überschreitet', + 'bill_store_error' => 'Beim Speichern Ihrer neuen Rechnung ist ein unerwarteter Fehler aufgetreten. Bitte überprüfen Sie die Protokolldateien.', + 'list_inactive_rule' => 'Inaktive Regeln', + 'bill_edit_rules' => 'Firefly III wird versuchen, auch die mit dieser Rechnung zusammenhängende Regel zu ändern. Wenn Sie diese Regel jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.|Firefly III wird versuchen, die :count mit dieser Rechnung zusammenhängenden Regeln ebenfalls zu bearbeiten. Wenn Sie diese Regeln jedoch selbst bearbeitet haben, wird Firefly III nichts ändern.', + 'bill_expected_date' => 'Voraussichtlich :date', + 'bill_expected_date_js' => 'Erwartet {date}', + 'expected_amount' => '(Erwarteter) Betrag', + 'bill_paid_on' => 'Bezahlt am {date}', + 'bill_repeats_weekly' => 'Wiederholt sich wöchentlich', + 'bill_repeats_monthly' => 'Wiederholt sich monatlich', + 'bill_repeats_quarterly' => 'Wiederholt sich vierteljährlich', + 'bill_repeats_half-year' => 'Wiederholt sich halbjährlich', + 'bill_repeats_yearly' => 'Wiederholt sich jährlich', + 'bill_repeats_weekly_other' => 'Wiederholt sich jede zweite Woche', + 'bill_repeats_monthly_other' => 'Wiederholt sich jeden zweiten Monat', + 'bill_repeats_quarterly_other' => 'Wiederholt sich jedes zweite Vierteljahr', + 'bill_repeats_half-year_other' => 'Wiederholt sich jährlich', + 'bill_repeats_yearly_other' => 'Wiederholt sich jedes zweite Jahr', + 'bill_repeats_weekly_skip' => 'Wiederholt sich alle {skip} Wochen', + 'bill_repeats_monthly_skip' => 'Wiederholt sich alle {skip} Monate', + 'bill_repeats_quarterly_skip' => 'Wiederholt sich alle {skip} Vierteljahre', + 'bill_repeats_half-year_skip' => 'Wiederholt sich alle {skip} Halbjahre', + 'bill_repeats_yearly_skip' => 'Wiederholt sich alle {skip} Jahre', + 'subscriptions' => 'Abonnements', + 'go_to_subscriptions' => 'Zu Abonnements gehen', + 'forever' => 'Dauerhaft', + 'extension_date_is' => 'Zeitpunkt der Verlängerung ist {date}', // accounts: - 'i_am_owed_amount' => 'Mir wird Betrag geschuldet', - 'i_owe_amount' => 'Ich schulde Betrag', - 'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können.|Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.', - 'all_accounts_inactive' => 'Dies sind Ihre inaktiven Konten.', - 'active_account_link' => 'Diese Verknüpfung führt zurück zu Ihren aktiven Konten.', - 'account_missing_transaction' => 'Konto #:id („:name”) kann nicht direkt angezeigt werden, da Firefly III Weiterleitungsinformationen fehlen.', - 'cc_monthly_payment_date_help' => 'Wählen Sie ein beliebiges Jahr und einen beliebigen Monat, da diese Angaben ohnehin ignoriert werden. Nur der Tag des Monats ist relevant.', - 'details_for_asset' => 'Details zum Bestandskonto „:name”', - 'details_for_expense' => 'Details zum Ausgabenkonto „:name”', - 'details_for_revenue' => 'Details zum Einnahmenkonto „:name”', - 'details_for_cash' => 'Details zur Geldbörse „:name”', - 'store_new_asset_account' => 'Neues Bestandskonto speichern', - 'store_new_expense_account' => 'Neues Ausgabenkonto speichern', - 'store_new_revenue_account' => 'Neues Einnahmenkonto speichern', - 'edit_asset_account' => 'Bestandskonto „:name” bearbeiten', - 'edit_expense_account' => 'Ausgabenkonto „:name” bearbeiten', - 'edit_revenue_account' => 'Einnahmenkonto „:name” bearbeiten', - 'delete_asset_account' => 'Bestandskonto „:name” löschen', - 'delete_expense_account' => 'Ausgabenkonto „:name” löschen', - 'delete_revenue_account' => 'Einnahmenkonto „:name” löschen', - 'delete_liabilities_account' => 'Verbindlichkeit „:name” löschen', - 'asset_deleted' => 'Bestandskonto „:name” erfolgreich gelöscht', - 'account_deleted' => 'Konto „:name” erfolgreich gelöscht', - 'expense_deleted' => 'Ausgabenkonto „:name” erfolgreich gelöscht', - 'revenue_deleted' => 'Einnahmenkonto „:name” erfolgreich gelöscht', - 'update_asset_account' => 'Bestandskonto aktualisieren', - 'update_undefined_account' => 'Konto aktualisieren', - 'update_liabilities_account' => 'Verbindlichkeit aktualisieren', - 'update_expense_account' => 'Ausgabenkonto aktualisieren', - 'update_revenue_account' => 'Einnahmenkonto aktualisieren', - 'make_new_asset_account' => 'Neues Bestandskonto anlegen', - 'make_new_expense_account' => 'Neues Ausgabenkonto anlegen', - 'make_new_revenue_account' => 'Neues Einnahmenkonto anlegen', - 'make_new_liabilities_account' => 'Neue Verbindlichkeit anlegen', - 'asset_accounts' => 'Bestandskonten', - 'undefined_accounts' => 'Konten', - 'asset_accounts_inactive' => 'Bestandskonten (inaktiv)', - 'expense_account' => 'Ausgabenkonto', - 'expense_accounts' => 'Ausgabekonten', - 'expense_accounts_inactive' => 'Ausgabekonten (inaktiv)', - 'revenue_account' => 'Einnahmekonto', - 'revenue_accounts' => 'Einnahmekonten', - 'revenue_accounts_inactive' => 'Einnahmekonten (inaktiv)', - 'cash_accounts' => 'Geldbörsen', - 'Cash account' => 'Geldbörse', - 'liabilities_accounts' => 'Verbindlichkeiten', - 'liabilities_accounts_inactive' => 'Verbindlichkeiten (inaktiv)', - 'reconcile_account' => 'Konto „:account” abgleichen', - 'overview_of_reconcile_modal' => 'Überblick über den Kontenabgleich', - 'delete_reconciliation' => 'Kontenabgleich löschen', - 'update_reconciliation' => 'Kontenabgleich aktualisieren', - 'amount_cannot_be_zero' => 'Der Betrag darf nicht null sein', - 'end_of_reconcile_period' => 'Ende des Abgleichzeitraums: :period', - 'start_of_reconcile_period' => 'Beginn des Abgleichzeitraums: :period', - 'start_balance' => 'Startguthaben', - 'end_balance' => 'Endguthaben', - 'update_balance_dates_instruction' => 'Ordnen Sie die oben genannten Beträge und Daten Ihrem Kontoauszug zu und klicken Sie auf „Jetzt ausgleichen”', - 'select_transactions_instruction' => 'Wählen Sie die Buchungen aus, die auf Ihrem Kontoauszug angezeigt werden.', - 'select_range_and_balance' => 'Überprüfen Sie zunächst den Datumsbereich und das Guthaben. Anschließend drücken Sie auf „Jetzt abgleichen”', - 'date_change_instruction' => 'Wenn Sie den Datumsbereich jetzt ändern, geht der gesamte Verlauf verloren.', - 'update_selection' => 'Auswahl aktualisieren', - 'store_reconcile' => 'Kontenabgleich speichern', - 'reconciliation_transaction' => 'Ausgleichsbuchung', - 'Reconciliation' => 'Kontenabgleich', - 'reconciliation' => 'Kontenabgleich', - 'reconcile_options' => 'Kontenabgleich Optionen', - 'reconcile_range' => 'Kontenabgleich-Bereich', - 'start_reconcile' => 'Jetzt abgleichen', - 'cash_account_type' => 'Barzahlung', - 'cash' => 'Bar', - 'cant_find_redirect_account' => 'Firefly III hat vergeblich versucht, Sie umzuleiten. Zum Index zurückkehren.', - 'account_type' => 'Kontotyp', - 'save_transactions_by_moving' => 'Speichern Sie diese Transaktion, indem Sie sie auf ein anderes Konto verschieben:|Speichern Sie diese Transaktionen, indem Sie sie auf ein anderes Konto verschieben:', - 'save_transactions_by_moving_js' => 'Keine Buchungen|Speichern Sie diese Buchung, indem Sie sie auf ein anderes Konto verschieben. |Speichern Sie diese Buchungen, indem Sie sie auf ein anderes Konto verschieben.', - 'stored_new_account' => 'Neues Konto „:name” gespeichert!', - 'stored_new_account_js' => 'Neues Konto "„{name}”" gespeichert!', - 'updated_account' => 'Konto „:name” aktualisiert', - 'updated_account_js' => 'Konto "{title}" aktualisiert.', - 'credit_card_options' => 'Kreditkartenoptionen', - 'no_transactions_account' => 'Es liegen (in diesem Zeitraum) keine Buchungen für das Bestandskonto „:name” vor.', - 'no_transactions_period' => 'Keine Buchungen (in diesem Zeitraum) vorhanden.', - 'no_data_for_chart' => 'Es gibt derzeit (noch) nicht genügend Informationen, um dieses Diagramm zu generieren.', - 'select_at_least_one_account' => 'Bitte mindestens ein Bestandskonto auswählen', - 'select_at_least_one_category' => 'Bitte mindestens eine Kategorie auswählen', - 'select_at_least_one_budget' => 'Bitte mindestens ein Budget auswählen', - 'select_at_least_one_tag' => 'Bitte mindestens eine Schlagwort auswählen', - 'select_at_least_one_expense' => 'Bitte wählen Sie mindestens eine Kombination aus Ausgabe- und Einnahmekonten aus. Wenn Sie keine besitzen (die Liste ist leer), ist dieser Bericht nicht verfügbar.', - 'account_default_currency' => 'Dies ist die Standardwährung für dieses Konto.', - 'reconcile_has_more' => 'Ihr Firefly III-Konto verfügt über mehr Geld, als Ihre Bank behauptet. Es gibt mehrere Möglichkeiten. Bitte wählen Sie aus, was Sie tun möchten. Drücken Sie anschließend auf „Abgleich bestätigen”.', - 'reconcile_has_less' => 'Ihr Firefly III-Konto verfügt über weniger Geld, als Ihre Bank behauptet. Es gibt mehrere Möglichkeiten. Bitte wählen Sie aus, was Sie tun möchten. Drücken Sie dann auf „Abgleich bestätigen”.', - 'reconcile_is_equal' => 'Ihr Firefly III-Konto und Ihre Kontoauszüge stimmen überein. Es gibt nichts zu tun. Bitte drücken Sie auf „Abgleich bestätigen”, um Ihre Eingaben zu bestätigen.', - 'create_pos_reconcile_transaction' => 'Ausgewählte Umsätze bereinigen und einen Korrekturbetrag in Höhe von :amount auf dieses Bestandskonto überweisen.', - 'create_neg_reconcile_transaction' => 'Ausgewählte Umsätze bereinigen und einen Korrekturbetrag in Höhe von :amount von diesem Anlagenkonto zurücküberweisen.', - 'reconcile_do_nothing' => 'Ausgewählte Umsätze bereinigen, aber nicht korrigieren.', - 'reconcile_go_back' => 'Sie können dies jederzeit später bearbeiten oder löschen.', - 'must_be_asset_account' => 'Sie können nur Bestandskonten abgleichen', - 'reconciliation_stored' => 'Kontenabgleich gespeichert', - 'reconciliation_error' => 'Aufgrund eines Fehlers wurden die Buchungen als „Ausgeglichen” gekennzeichnet, aber die Korrektur wurde nicht gespeichert: :error.', - 'reconciliation_transaction_title' => 'Ausgleich (:from zu :to)', - 'sum_of_reconciliation' => 'Summe der Überleitungsrechnung', - 'reconcile_this_account' => 'Dieses Konto abgleichen', - 'reconcile' => 'Abgleichen', - 'show' => 'Anzeigen', - 'confirm_reconciliation' => 'Kontenabgleich bestätigen', - 'submitted_start_balance' => 'Übermitteltes Startguthaben', - 'selected_transactions' => 'Ausgewählte Umsätze (:count)', - 'already_cleared_transactions' => 'Bereits ausgeglichene Umsätze (:count)', - 'submitted_end_balance' => 'Übermittelter Abschlussguthaben', - 'initial_balance_description' => 'Anfangsguthaben für „:account”', - 'liability_credit_description' => 'Verbindlichkeitsguthaben für ":account"', - 'interest_calc_' => 'Unbekannt', - 'interest_calc_daily' => 'Täglich', - 'interest_calc_monthly' => 'Monatlich', - 'interest_calc_yearly' => 'Jährlich', - 'interest_calc_weekly' => 'Pro Woche', - 'interest_calc_half-year' => 'Halbjährlich', - 'interest_calc_quarterly' => 'Vierteljährlich', - 'initial_balance_account' => 'Anfangsguthaben von „:account”', - 'list_options' => 'Listenoptionen', + 'i_am_owed_amount' => 'Mir wird Betrag geschuldet', + 'i_owe_amount' => 'Ich schulde Betrag', + 'inactive_account_link' => 'Sie haben :count inaktives (archiviertes) Konto, das Sie auf dieser separaten Seite sehen können.|Sie haben :count inaktive (archivierte) Konten, die Sie auf dieser separaten Seite anzeigen können.', + 'all_accounts_inactive' => 'Dies sind Ihre inaktiven Konten.', + 'active_account_link' => 'Diese Verknüpfung führt zurück zu Ihren aktiven Konten.', + 'account_missing_transaction' => 'Konto #:id („:name”) kann nicht direkt angezeigt werden, da Firefly III Weiterleitungsinformationen fehlen.', + 'cc_monthly_payment_date_help' => 'Wählen Sie ein beliebiges Jahr und einen beliebigen Monat, da diese Angaben ohnehin ignoriert werden. Nur der Tag des Monats ist relevant.', + 'details_for_asset' => 'Details zum Bestandskonto „:name”', + 'details_for_expense' => 'Details zum Ausgabenkonto „:name”', + 'details_for_revenue' => 'Details zum Einnahmenkonto „:name”', + 'details_for_cash' => 'Details zur Geldbörse „:name”', + 'store_new_asset_account' => 'Neues Bestandskonto speichern', + 'store_new_expense_account' => 'Neues Ausgabenkonto speichern', + 'store_new_revenue_account' => 'Neues Einnahmenkonto speichern', + 'edit_asset_account' => 'Bestandskonto „:name” bearbeiten', + 'edit_expense_account' => 'Ausgabenkonto „:name” bearbeiten', + 'edit_revenue_account' => 'Einnahmenkonto „:name” bearbeiten', + 'delete_asset_account' => 'Bestandskonto „:name” löschen', + 'delete_expense_account' => 'Ausgabenkonto „:name” löschen', + 'delete_revenue_account' => 'Einnahmenkonto „:name” löschen', + 'delete_liabilities_account' => 'Verbindlichkeit „:name” löschen', + 'asset_deleted' => 'Bestandskonto „:name” erfolgreich gelöscht', + 'account_deleted' => 'Konto „:name” erfolgreich gelöscht', + 'expense_deleted' => 'Ausgabenkonto „:name” erfolgreich gelöscht', + 'revenue_deleted' => 'Einnahmenkonto „:name” erfolgreich gelöscht', + 'update_asset_account' => 'Bestandskonto aktualisieren', + 'update_undefined_account' => 'Konto aktualisieren', + 'update_liabilities_account' => 'Verbindlichkeit aktualisieren', + 'update_expense_account' => 'Ausgabenkonto aktualisieren', + 'update_revenue_account' => 'Einnahmenkonto aktualisieren', + 'make_new_asset_account' => 'Neues Bestandskonto anlegen', + 'make_new_expense_account' => 'Neues Ausgabenkonto anlegen', + 'make_new_revenue_account' => 'Neues Einnahmenkonto anlegen', + 'make_new_liabilities_account' => 'Neue Verbindlichkeit anlegen', + 'asset_accounts' => 'Bestandskonten', + 'undefined_accounts' => 'Konten', + 'asset_accounts_inactive' => 'Bestandskonten (inaktiv)', + 'expense_account' => 'Ausgabenkonto', + 'expense_accounts' => 'Ausgabekonten', + 'expense_accounts_inactive' => 'Ausgabekonten (inaktiv)', + 'revenue_account' => 'Einnahmekonto', + 'revenue_accounts' => 'Einnahmekonten', + 'revenue_accounts_inactive' => 'Einnahmekonten (inaktiv)', + 'cash_accounts' => 'Geldbörsen', + 'Cash account' => 'Geldbörse', + 'liabilities_accounts' => 'Verbindlichkeiten', + 'liabilities_accounts_inactive' => 'Verbindlichkeiten (inaktiv)', + 'reconcile_account' => 'Konto „:account” abgleichen', + 'overview_of_reconcile_modal' => 'Überblick über den Kontenabgleich', + 'delete_reconciliation' => 'Kontenabgleich löschen', + 'update_reconciliation' => 'Kontenabgleich aktualisieren', + 'amount_cannot_be_zero' => 'Der Betrag darf nicht null sein', + 'end_of_reconcile_period' => 'Ende des Abgleichzeitraums: :period', + 'start_of_reconcile_period' => 'Beginn des Abgleichzeitraums: :period', + 'start_balance' => 'Startguthaben', + 'end_balance' => 'Endguthaben', + 'update_balance_dates_instruction' => 'Ordnen Sie die oben genannten Beträge und Daten Ihrem Kontoauszug zu und klicken Sie auf „Jetzt ausgleichen”', + 'select_transactions_instruction' => 'Wählen Sie die Buchungen aus, die auf Ihrem Kontoauszug angezeigt werden.', + 'select_range_and_balance' => 'Überprüfen Sie zunächst den Datumsbereich und das Guthaben. Anschließend drücken Sie auf „Jetzt abgleichen”', + 'date_change_instruction' => 'Wenn Sie den Datumsbereich jetzt ändern, geht der gesamte Verlauf verloren.', + 'update_selection' => 'Auswahl aktualisieren', + 'store_reconcile' => 'Kontenabgleich speichern', + 'reconciliation_transaction' => 'Ausgleichsbuchung', + 'Reconciliation' => 'Kontenabgleich', + 'reconciliation' => 'Kontenabgleich', + 'reconcile_options' => 'Kontenabgleich Optionen', + 'reconcile_range' => 'Kontenabgleich-Bereich', + 'start_reconcile' => 'Jetzt abgleichen', + 'cash_account_type' => 'Barzahlung', + 'cash' => 'Bar', + 'cant_find_redirect_account' => 'Firefly III hat vergeblich versucht, Sie umzuleiten. Zum Index zurückkehren.', + 'account_type' => 'Kontotyp', + 'save_transactions_by_moving' => 'Speichern Sie diese Transaktion, indem Sie sie auf ein anderes Konto verschieben:|Speichern Sie diese Transaktionen, indem Sie sie auf ein anderes Konto verschieben:', + 'save_transactions_by_moving_js' => 'Keine Buchungen|Speichern Sie diese Buchung, indem Sie sie auf ein anderes Konto verschieben. |Speichern Sie diese Buchungen, indem Sie sie auf ein anderes Konto verschieben.', + 'stored_new_account' => 'Neues Konto „:name” gespeichert!', + 'stored_new_account_js' => 'Neues Konto "„{name}”" gespeichert!', + 'updated_account' => 'Konto „:name” aktualisiert', + 'updated_account_js' => 'Konto "{title}" aktualisiert.', + 'credit_card_options' => 'Kreditkartenoptionen', + 'no_transactions_account' => 'Es liegen (in diesem Zeitraum) keine Buchungen für das Bestandskonto „:name” vor.', + 'no_transactions_period' => 'Keine Buchungen (in diesem Zeitraum) vorhanden.', + 'no_data_for_chart' => 'Es gibt derzeit (noch) nicht genügend Informationen, um dieses Diagramm zu generieren.', + 'select_at_least_one_account' => 'Bitte mindestens ein Bestandskonto auswählen', + 'select_at_least_one_category' => 'Bitte mindestens eine Kategorie auswählen', + 'select_at_least_one_budget' => 'Bitte mindestens ein Budget auswählen', + 'select_at_least_one_tag' => 'Bitte mindestens eine Schlagwort auswählen', + 'select_at_least_one_expense' => 'Bitte wählen Sie mindestens eine Kombination aus Ausgabe- und Einnahmekonten aus. Wenn Sie keine besitzen (die Liste ist leer), ist dieser Bericht nicht verfügbar.', + 'account_default_currency' => 'Dies ist die Standardwährung für dieses Konto.', + 'reconcile_has_more' => 'Ihr Firefly III-Konto verfügt über mehr Geld, als Ihre Bank behauptet. Es gibt mehrere Möglichkeiten. Bitte wählen Sie aus, was Sie tun möchten. Drücken Sie anschließend auf „Abgleich bestätigen”.', + 'reconcile_has_less' => 'Ihr Firefly III-Konto verfügt über weniger Geld, als Ihre Bank behauptet. Es gibt mehrere Möglichkeiten. Bitte wählen Sie aus, was Sie tun möchten. Drücken Sie dann auf „Abgleich bestätigen”.', + 'reconcile_is_equal' => 'Ihr Firefly III-Konto und Ihre Kontoauszüge stimmen überein. Es gibt nichts zu tun. Bitte drücken Sie auf „Abgleich bestätigen”, um Ihre Eingaben zu bestätigen.', + 'create_pos_reconcile_transaction' => 'Ausgewählte Umsätze bereinigen und einen Korrekturbetrag in Höhe von :amount auf dieses Bestandskonto überweisen.', + 'create_neg_reconcile_transaction' => 'Ausgewählte Umsätze bereinigen und einen Korrekturbetrag in Höhe von :amount von diesem Anlagenkonto zurücküberweisen.', + 'reconcile_do_nothing' => 'Ausgewählte Umsätze bereinigen, aber nicht korrigieren.', + 'reconcile_go_back' => 'Sie können dies jederzeit später bearbeiten oder löschen.', + 'must_be_asset_account' => 'Sie können nur Bestandskonten abgleichen', + 'reconciliation_stored' => 'Kontenabgleich gespeichert', + 'reconciliation_error' => 'Aufgrund eines Fehlers wurden die Buchungen als „Ausgeglichen” gekennzeichnet, aber die Korrektur wurde nicht gespeichert: :error.', + 'reconciliation_transaction_title' => 'Ausgleich (:from zu :to)', + 'sum_of_reconciliation' => 'Summe der Überleitungsrechnung', + 'reconcile_this_account' => 'Dieses Konto abgleichen', + 'reconcile' => 'Abgleichen', + 'show' => 'Anzeigen', + 'confirm_reconciliation' => 'Kontenabgleich bestätigen', + 'submitted_start_balance' => 'Übermitteltes Startguthaben', + 'selected_transactions' => 'Ausgewählte Umsätze (:count)', + 'already_cleared_transactions' => 'Bereits ausgeglichene Umsätze (:count)', + 'submitted_end_balance' => 'Übermittelter Abschlussguthaben', + 'initial_balance_description' => 'Anfangsguthaben für „:account”', + 'liability_credit_description' => 'Verbindlichkeitsguthaben für ":account"', + 'interest_calc_' => 'Unbekannt', + 'interest_calc_daily' => 'Täglich', + 'interest_calc_monthly' => 'Monatlich', + 'interest_calc_yearly' => 'Jährlich', + 'interest_calc_weekly' => 'Pro Woche', + 'interest_calc_half-year' => 'Halbjährlich', + 'interest_calc_quarterly' => 'Vierteljährlich', + 'initial_balance_account' => 'Anfangsguthaben von „:account”', + 'list_options' => 'Listenoptionen', // categories: - 'new_category' => 'Neue Kategorie', - 'create_new_category' => 'Eine neue Kategorie erstellen', - 'without_category' => 'Ohne Kategorie', - 'update_category' => 'Kategorie aktualisieren', - 'updated_category' => 'Kategorie „:name” aktualisiert', - 'categories' => 'Kategorien', - 'edit_category' => 'Kategorie „:name” bearbeiten', - 'no_category' => '(keine Kategorie)', - 'unknown_category_plain' => 'Keine Kategorie', - 'category' => 'Kategorie', - 'delete_category' => 'Kategorie „:name” löschen', - 'deleted_category' => 'Kategorie „:name” gelöscht', - 'store_category' => 'Speichere neue Kategorie', - 'stored_category' => 'Neue Kategorie „:name” gespeichert', - 'without_category_between' => 'Ohne Kategorie zwischen :start und :end', + 'new_category' => 'Neue Kategorie', + 'create_new_category' => 'Eine neue Kategorie erstellen', + 'without_category' => 'Ohne Kategorie', + 'update_category' => 'Kategorie aktualisieren', + 'updated_category' => 'Kategorie „:name” aktualisiert', + 'categories' => 'Kategorien', + 'edit_category' => 'Kategorie „:name” bearbeiten', + 'no_category' => '(keine Kategorie)', + 'unknown_category_plain' => 'Keine Kategorie', + 'category' => 'Kategorie', + 'delete_category' => 'Kategorie „:name” löschen', + 'deleted_category' => 'Kategorie „:name” gelöscht', + 'store_category' => 'Speichere neue Kategorie', + 'stored_category' => 'Neue Kategorie „:name” gespeichert', + 'without_category_between' => 'Ohne Kategorie zwischen :start und :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Bitte warten Sie, bis das Formular geladen wurde', - 'wait_loading_data' => 'Bitte warten Sie, bis Ihre Informationen geladen wurden …', - 'wait_attachments' => 'Bitte warten Sie, bis die Anhänge hochgeladen sind.', - 'errors_upload' => 'Das Hochladen ist fehlgeschlagen. Bitte überprüfen Sie Ihre Browserkonsole auf den Fehler.', - 'amount_foreign_if' => 'Betrag in Fremdwährung, falls vorhanden', - 'amount_destination_account' => 'Betrag in der Währung des Zielkontos', - 'edit_transaction_title' => 'Buchung „:description” bearbeiten', - 'unreconcile' => 'Kontenabgleich widerrufen', - 'update_withdrawal' => 'Ausgaben aktualisieren', - 'update_deposit' => 'Einnahmen aktualisieren', - 'update_transaction' => 'Buchung aktualisieren', - 'update_transfer' => 'Umbuchung aktualisieren', - 'updated_withdrawal' => 'Ausgabe ":description" aktualisiert', - 'updated_deposit' => 'Einnahme ":description" aktualisiert', - 'updated_transfer' => 'Umbuchung ":description" aktualisiert', - 'no_changes_withdrawal' => 'Die Ausgabe „:description” wurde nicht geändert.', - 'no_changes_deposit' => 'Die Einnahme ":description" wurde nicht geändert.', - 'no_changes_transfer' => 'Die Umbuchung ":description" wurde nicht geändert.', - 'delete_withdrawal' => 'Ausgabe ":description" löschen', - 'delete_deposit' => 'Einnahme ":description" löschen', - 'delete_transfer' => 'Umbuchung ":description" löschen', - 'deleted_withdrawal' => 'Ausgabe ":description" erfolgreich gelöscht', - 'deleted_deposit' => 'Einnahme ":description" erfolgreich gelöscht', - 'deleted_transfer' => 'Umbuchung ":description" erfolgreich gelöscht', - 'deleted_reconciliation' => 'Ausgleichsbuchung „:description” erfolgreich gelöscht', - 'stored_journal' => 'Neue Überweisung ":description" erfolgreich erstellt', - 'stored_journal_js' => 'Neue Buchung „{{description}}” erfolgreich erstellt', - 'stored_journal_no_descr' => 'Ihre neue Buchung wurde erfolgreich erstellt', - 'updated_journal_no_descr' => 'Ihre Buchung wurde erfolgreich aktualisiert', - 'select_transactions' => 'Buchungen auswählen', - 'rule_group_select_transactions' => '„:title” auf Buchungen anwenden', - 'rule_select_transactions' => '„:title” auf Buchungen anwenden', - 'stop_selection' => 'Auswählen von Buchungen anhalten', - 'reconcile_selected' => 'Abgleichen', - 'mass_delete_journals' => 'Anzahl von Buchungen löschen', - 'mass_edit_journals' => 'Anzahl von Buchungen bearbeiten', - 'mass_bulk_journals' => 'Massenbearbeitung mehrerer Buchungen', - 'mass_bulk_journals_explain' => 'Mit diesem Formular können Sie die Eigenschaften der unten aufgeführten Buchungen in einer einzigen umfassenden Aktualisierung ändern. Alle Buchungen in der Tabelle werden aktualisiert, wenn Sie die hier angezeigten Parameter ändern.', - 'part_of_split' => 'Diese Buchung ist Teil einer Splitbuchung. Wenn Sie nicht alle Aufteilungen ausgewählt haben, können Sie am Ende nur die Hälfte der Buchung ändern.', - 'bulk_set_new_values' => 'Verwenden Sie die folgenden Felder, um neue Werte einzustellen. Wenn Sie sie leer lassen, werden sie für alle geleert. Beachten Sie auch, dass nur Ausgaben mit einem Budget versehen werden.', - 'no_bulk_category' => 'Kategorie nicht aktualisieren', - 'no_bulk_budget' => 'Budget nicht aktualisieren', - 'no_bulk_tags' => 'Schlagwörter nicht aktualisieren', - 'replace_with_these_tags' => 'Durch diese Schlagwörter ersetzen', - 'append_these_tags' => 'Diese Schlagwörter hinzufügen', - 'mass_edit' => 'Ausgewählte einzeln bearbeiten', - 'bulk_edit' => 'Ausgewählte als Block bearbeiten', - 'mass_delete' => 'Ausgewählte löschen', - 'cannot_edit_other_fields' => 'Andere Felder als die hier gezeigten können Sie nicht gleichzeitig bearbeitet werden, da es keinen Platz gibt, diese anzuzeigen. Bitte folgen Sie dem Link und bearbeiten Sie die Felder einzeln, wenn Sie diese bearbeiten möchten.', - 'cannot_change_amount_reconciled' => 'Sie können den Betrag der abgeglichenen Buchungen nicht ändern.', - 'no_budget' => '(kein Budget)', - 'no_bill' => '(keine Belege)', - 'account_per_budget' => 'Konto je Budget', - 'account_per_category' => 'Konto je Kategorie', - 'create_new_object' => 'Erstellen', - 'empty' => '(leer)', - 'all_other_budgets' => '(alle anderen Budgets)', - 'all_other_accounts' => '(alle anderen Konten)', - 'expense_per_source_account' => 'Ausgaben je Quellkonto', - 'expense_per_destination_account' => 'Ausgaben je Zielkonto', - 'income_per_destination_account' => 'Einnahmen je Zielkonto', - 'spent_in_specific_category' => 'Ausgaben in der Kategorie „:category”', - 'earned_in_specific_category' => 'Einnahmen in der Kategorie „:category”', - 'spent_in_specific_tag' => 'Ausgaben im Schlagwort „:tag”', - 'earned_in_specific_tag' => 'Einnahmen im Schlagwort „:tag”', - 'income_per_source_account' => 'Einnahmen je Quellkonto', - 'average_spending_per_destination' => 'Durchschnittliche Kosten je Zielkonto', - 'average_spending_per_source' => 'Durchschnittliche Ausgaben je Quellkonto', - 'average_earning_per_source' => 'Durchschnittlicher Erlös je Quellkonto', - 'average_earning_per_destination' => 'Durchschnittlicher Einnahmen je Zielkonto', - 'account_per_tag' => 'Konto je Schlagwort', - 'tag_report_expenses_listed_once' => 'Ausgaben und Einnahmen werden nie doppelt ausgewiesen. Wenn einer Buchung mehrere Schagwörter zugeordnet sind, darf diese nur unter einem ihrer Schagwörter angezeigt werden. Diese Liste könnte fehlende Daten enthalten, aber die Beträge werden korrekt sein.', - 'double_report_expenses_charted_once' => 'Ausgaben und Einnahmen werden nie doppelt ausgewiesen. Wenn einer Buchung mehrer Schlagwörter zugeordnet wurden, darf diese nur unter einem ihrer Schlagwörter angezeigt werden. In diesem Diagramm fehlen möglicherweise Daten, aber die Beträge sind korrekt.', - 'tag_report_chart_single_tag' => 'Dieses Diagramm gilt für ein einzelnes Schlagwort. Wenn einer Buchung mehrere Schlagwörter zugeordnet sind, kann sich das, was Sie hier sehen, auch in den Diagrammen anderer Schlagwörter widerspiegeln.', - 'tag' => 'Schlagwort', - 'no_budget_squared' => '(kein Budget)', - 'perm-delete-many' => 'Das Löschen vieler Elemente auf einmal kann sehr problematisch sein. Bitte seien Sie vorsichtig. Sie können einen Teil einer Splitbuchung auf dieser Seite löschen, also seien Sie vorsichtig.', - 'mass_deleted_transactions_success' => ':count Transaktion gelöscht.|:count Transaktionen gelöscht.', - 'mass_edited_transactions_success' => ':count Transaktion aktualisiert.|:count Transaktionen aktualisiert.', - 'opt_group_' => '(kein Kontotyp)', - 'opt_group_no_account_type' => '(kein Kontotyp)', - 'opt_group_defaultAsset' => 'Standard-Anlagekonto', - 'opt_group_savingAsset' => 'Sparkonten', - 'opt_group_sharedAsset' => 'Gemeinsame Bestandskonten', - 'opt_group_ccAsset' => 'Kreditkarten', - 'opt_group_cashWalletAsset' => 'Geldbörsen', - 'opt_group_expense_account' => 'Ausgabekonten', - 'opt_group_revenue_account' => 'Einnahmekonten', - 'opt_group_l_Loan' => 'Verbindlichkeit: Darlehen', - 'opt_group_cash_account' => 'Geldkonto', - 'opt_group_l_Debt' => 'Verbindlichkeit: Forderung', - 'opt_group_l_Mortgage' => 'Verbindlichkeit: Hypothek', - 'opt_group_l_Credit card' => 'Verbindlichkeit: Kreditkarte', - 'notes' => 'Notizen', - 'unknown_journal_error' => 'Die Buchung konnte nicht gespeichert werden. Bitte überprüfen Sie die Protokolldateien.', - 'attachment_not_found' => 'Der Anhang konnte nicht gefunden werden.', - 'journal_link_bill' => 'Diese Buchung ist mit der Rechnung :name verknüpft. Um diese Verbindung aufzuheben, deaktivieren Sie das Kontrollkästchen. Verwenden Sie Regeln, um es mit einer anderen Rechnung zu verbinden.', - 'transaction_stored_link' => 'Buchung #{ID} ("{title}") wurde gespeichert.', - 'transaction_new_stored_link' => 'Buchung #{ID} wurde gespeichert.', - 'transaction_updated_link' => 'Die Buchung #{ID} ("{title}") wurde aktualisiert.', - 'transaction_updated_no_changes' => 'Die Buchung #{ID} ("{title}") wurde nicht verändert.', - 'first_split_decides' => 'Die erste Aufteilung bestimmt den Wert dieses Feldes', - 'first_split_overrules_source' => 'Die erste Aufteilung könnte das Quellkonto überschreiben', - 'first_split_overrules_destination' => 'Die erste Aufteilung könnte das Zielkonto überschreiben', - 'spent_x_of_y' => '{amount} von {total} ausgegeben', + 'wait_loading_transaction' => 'Bitte warten Sie, bis das Formular geladen wurde', + 'wait_loading_data' => 'Bitte warten Sie, bis Ihre Informationen geladen wurden …', + 'wait_attachments' => 'Bitte warten Sie, bis die Anhänge hochgeladen sind.', + 'errors_upload' => 'Das Hochladen ist fehlgeschlagen. Bitte überprüfen Sie Ihre Browserkonsole auf den Fehler.', + 'amount_foreign_if' => 'Betrag in Fremdwährung, falls vorhanden', + 'amount_destination_account' => 'Betrag in der Währung des Zielkontos', + 'edit_transaction_title' => 'Buchung „:description” bearbeiten', + 'unreconcile' => 'Kontenabgleich widerrufen', + 'update_withdrawal' => 'Ausgaben aktualisieren', + 'update_deposit' => 'Einnahmen aktualisieren', + 'update_transaction' => 'Buchung aktualisieren', + 'update_transfer' => 'Umbuchung aktualisieren', + 'updated_withdrawal' => 'Ausgabe ":description" aktualisiert', + 'updated_deposit' => 'Einnahme ":description" aktualisiert', + 'updated_transfer' => 'Umbuchung ":description" aktualisiert', + 'no_changes_withdrawal' => 'Die Ausgabe „:description” wurde nicht geändert.', + 'no_changes_deposit' => 'Die Einnahme ":description" wurde nicht geändert.', + 'no_changes_transfer' => 'Die Umbuchung ":description" wurde nicht geändert.', + 'delete_withdrawal' => 'Ausgabe ":description" löschen', + 'delete_deposit' => 'Einnahme ":description" löschen', + 'delete_transfer' => 'Umbuchung ":description" löschen', + 'deleted_withdrawal' => 'Ausgabe ":description" erfolgreich gelöscht', + 'deleted_deposit' => 'Einnahme ":description" erfolgreich gelöscht', + 'deleted_transfer' => 'Umbuchung ":description" erfolgreich gelöscht', + 'deleted_reconciliation' => 'Ausgleichsbuchung „:description” erfolgreich gelöscht', + 'stored_journal' => 'Neue Überweisung ":description" erfolgreich erstellt', + 'stored_journal_js' => 'Neue Buchung „{{description}}” erfolgreich erstellt', + 'stored_journal_no_descr' => 'Ihre neue Buchung wurde erfolgreich erstellt', + 'updated_journal_no_descr' => 'Ihre Buchung wurde erfolgreich aktualisiert', + 'select_transactions' => 'Buchungen auswählen', + 'rule_group_select_transactions' => '„:title” auf Buchungen anwenden', + 'rule_select_transactions' => '„:title” auf Buchungen anwenden', + 'stop_selection' => 'Auswählen von Buchungen anhalten', + 'reconcile_selected' => 'Abgleichen', + 'mass_delete_journals' => 'Anzahl von Buchungen löschen', + 'mass_edit_journals' => 'Anzahl von Buchungen bearbeiten', + 'mass_bulk_journals' => 'Massenbearbeitung mehrerer Buchungen', + 'mass_bulk_journals_explain' => 'Mit diesem Formular können Sie die Eigenschaften der unten aufgeführten Buchungen in einer einzigen umfassenden Aktualisierung ändern. Alle Buchungen in der Tabelle werden aktualisiert, wenn Sie die hier angezeigten Parameter ändern.', + 'part_of_split' => 'Diese Buchung ist Teil einer Splitbuchung. Wenn Sie nicht alle Aufteilungen ausgewählt haben, können Sie am Ende nur die Hälfte der Buchung ändern.', + 'bulk_set_new_values' => 'Verwenden Sie die folgenden Felder, um neue Werte einzustellen. Wenn Sie sie leer lassen, werden sie für alle geleert. Beachten Sie auch, dass nur Ausgaben mit einem Budget versehen werden.', + 'no_bulk_category' => 'Kategorie nicht aktualisieren', + 'no_bulk_budget' => 'Budget nicht aktualisieren', + 'no_bulk_tags' => 'Schlagwörter nicht aktualisieren', + 'replace_with_these_tags' => 'Durch diese Schlagwörter ersetzen', + 'append_these_tags' => 'Diese Schlagwörter hinzufügen', + 'mass_edit' => 'Ausgewählte einzeln bearbeiten', + 'bulk_edit' => 'Ausgewählte als Block bearbeiten', + 'mass_delete' => 'Ausgewählte löschen', + 'cannot_edit_other_fields' => 'Andere Felder als die hier gezeigten können Sie nicht gleichzeitig bearbeitet werden, da es keinen Platz gibt, diese anzuzeigen. Bitte folgen Sie dem Link und bearbeiten Sie die Felder einzeln, wenn Sie diese bearbeiten möchten.', + 'cannot_change_amount_reconciled' => 'Sie können den Betrag der abgeglichenen Buchungen nicht ändern.', + 'no_budget' => '(kein Budget)', + 'no_bill' => '(keine Belege)', + 'account_per_budget' => 'Konto je Budget', + 'account_per_category' => 'Konto je Kategorie', + 'create_new_object' => 'Erstellen', + 'empty' => '(leer)', + 'all_other_budgets' => '(alle anderen Budgets)', + 'all_other_accounts' => '(alle anderen Konten)', + 'expense_per_source_account' => 'Ausgaben je Quellkonto', + 'expense_per_destination_account' => 'Ausgaben je Zielkonto', + 'income_per_destination_account' => 'Einnahmen je Zielkonto', + 'spent_in_specific_category' => 'Ausgaben in der Kategorie „:category”', + 'earned_in_specific_category' => 'Einnahmen in der Kategorie „:category”', + 'spent_in_specific_tag' => 'Ausgaben im Schlagwort „:tag”', + 'earned_in_specific_tag' => 'Einnahmen im Schlagwort „:tag”', + 'income_per_source_account' => 'Einnahmen je Quellkonto', + 'average_spending_per_destination' => 'Durchschnittliche Kosten je Zielkonto', + 'average_spending_per_source' => 'Durchschnittliche Ausgaben je Quellkonto', + 'average_earning_per_source' => 'Durchschnittlicher Erlös je Quellkonto', + 'average_earning_per_destination' => 'Durchschnittlicher Einnahmen je Zielkonto', + 'account_per_tag' => 'Konto je Schlagwort', + 'tag_report_expenses_listed_once' => 'Ausgaben und Einnahmen werden nie doppelt ausgewiesen. Wenn einer Buchung mehrere Schagwörter zugeordnet sind, darf diese nur unter einem ihrer Schagwörter angezeigt werden. Diese Liste könnte fehlende Daten enthalten, aber die Beträge werden korrekt sein.', + 'double_report_expenses_charted_once' => 'Ausgaben und Einnahmen werden nie doppelt ausgewiesen. Wenn einer Buchung mehrer Schlagwörter zugeordnet wurden, darf diese nur unter einem ihrer Schlagwörter angezeigt werden. In diesem Diagramm fehlen möglicherweise Daten, aber die Beträge sind korrekt.', + 'tag_report_chart_single_tag' => 'Dieses Diagramm gilt für ein einzelnes Schlagwort. Wenn einer Buchung mehrere Schlagwörter zugeordnet sind, kann sich das, was Sie hier sehen, auch in den Diagrammen anderer Schlagwörter widerspiegeln.', + 'tag' => 'Schlagwort', + 'no_budget_squared' => '(kein Budget)', + 'perm-delete-many' => 'Das Löschen vieler Elemente auf einmal kann sehr problematisch sein. Bitte seien Sie vorsichtig. Sie können einen Teil einer Splitbuchung auf dieser Seite löschen, also seien Sie vorsichtig.', + 'mass_deleted_transactions_success' => ':count Transaktion gelöscht.|:count Transaktionen gelöscht.', + 'mass_edited_transactions_success' => ':count Transaktion aktualisiert.|:count Transaktionen aktualisiert.', + 'opt_group_' => '(kein Kontotyp)', + 'opt_group_no_account_type' => '(kein Kontotyp)', + 'opt_group_defaultAsset' => 'Standard-Anlagekonto', + 'opt_group_savingAsset' => 'Sparkonten', + 'opt_group_sharedAsset' => 'Gemeinsame Bestandskonten', + 'opt_group_ccAsset' => 'Kreditkarten', + 'opt_group_cashWalletAsset' => 'Geldbörsen', + 'opt_group_expense_account' => 'Ausgabekonten', + 'opt_group_revenue_account' => 'Einnahmekonten', + 'opt_group_l_Loan' => 'Verbindlichkeit: Darlehen', + 'opt_group_cash_account' => 'Geldkonto', + 'opt_group_l_Debt' => 'Verbindlichkeit: Forderung', + 'opt_group_l_Mortgage' => 'Verbindlichkeit: Hypothek', + 'opt_group_l_Credit card' => 'Verbindlichkeit: Kreditkarte', + 'notes' => 'Notizen', + 'unknown_journal_error' => 'Die Buchung konnte nicht gespeichert werden. Bitte überprüfen Sie die Protokolldateien.', + 'attachment_not_found' => 'Der Anhang konnte nicht gefunden werden.', + 'journal_link_bill' => 'Diese Buchung ist mit der Rechnung :name verknüpft. Um diese Verbindung aufzuheben, deaktivieren Sie das Kontrollkästchen. Verwenden Sie Regeln, um es mit einer anderen Rechnung zu verbinden.', + 'transaction_stored_link' => 'Buchung #{ID} ("{title}") wurde gespeichert.', + 'transaction_new_stored_link' => 'Buchung #{ID} wurde gespeichert.', + 'transaction_updated_link' => 'Die Buchung #{ID} ("{title}") wurde aktualisiert.', + 'transaction_updated_no_changes' => 'Die Buchung #{ID} ("{title}") wurde nicht verändert.', + 'first_split_decides' => 'Die erste Aufteilung bestimmt den Wert dieses Feldes', + 'first_split_overrules_source' => 'Die erste Aufteilung könnte das Quellkonto überschreiben', + 'first_split_overrules_destination' => 'Die erste Aufteilung könnte das Zielkonto überschreiben', + 'spent_x_of_y' => '{amount} von {total} ausgegeben', // new user: - 'welcome' => 'Willkommen bei Firefly III!', - 'submit' => 'Absenden', - 'submission' => 'Übermittlung', - 'submit_yes_really' => 'Senden (Ich weiß, was ich tue)', - 'getting_started' => 'Erste Schritte', - 'to_get_started' => 'Es ist schön, dass Sie Firefly III erfolgreich installiert haben. Um mit diesem Tool zu beginnen, geben Sie bitte den Namen Ihrer Bank und das Guthaben Ihres Hauptkontos ein. Machen Sie sich keine Sorgen, wenn Sie mehrere Konten haben. Sie können diese später hinzufügen. Dies ist nur der Anfang.', - 'savings_balance_text' => 'Firefly III erstellt automatisch ein Sparkonto für Sie. Standardmäßig befindet sich kein Geld auf Ihrem Sparkonto, aber wenn Sie Firefly III das Guthaben mitteilen, wird es als solches gespeichert.', - 'finish_up_new_user' => 'Das war\'s! Sie können fortfahren, indem Sie Absenden drücken. Sie werden zur Startseite von Firefly III gebracht.', - 'stored_new_accounts_new_user' => 'Yay! Ihre neuen Konten wurden gespeichert.', - 'set_preferred_language' => 'Wenn Sie Firefly III in einer anderen Sprache verwenden möchten, geben Sie dies bitte hier an.', - 'language' => 'Sprache', - 'new_savings_account' => ':bank_name-Sparkonto', - 'cash_wallet' => 'Geldbörse', - 'currency_not_present' => 'Wenn die Währung, die Sie normalerweise verwenden, nicht aufgeführt ist, machen Sie sich keine Sorgen. Unter Optionen ➜ Währungen können Sie eigene Währungen anlegen.', + 'welcome' => 'Willkommen bei Firefly III!', + 'submit' => 'Absenden', + 'submission' => 'Übermittlung', + 'submit_yes_really' => 'Senden (Ich weiß, was ich tue)', + 'getting_started' => 'Erste Schritte', + 'to_get_started' => 'Es ist schön, dass Sie Firefly III erfolgreich installiert haben. Um mit diesem Tool zu beginnen, geben Sie bitte den Namen Ihrer Bank und das Guthaben Ihres Hauptkontos ein. Machen Sie sich keine Sorgen, wenn Sie mehrere Konten haben. Sie können diese später hinzufügen. Dies ist nur der Anfang.', + 'savings_balance_text' => 'Firefly III erstellt automatisch ein Sparkonto für Sie. Standardmäßig befindet sich kein Geld auf Ihrem Sparkonto, aber wenn Sie Firefly III das Guthaben mitteilen, wird es als solches gespeichert.', + 'finish_up_new_user' => 'Das war\'s! Sie können fortfahren, indem Sie Absenden drücken. Sie werden zur Startseite von Firefly III gebracht.', + 'stored_new_accounts_new_user' => 'Yay! Ihre neuen Konten wurden gespeichert.', + 'set_preferred_language' => 'Wenn Sie Firefly III in einer anderen Sprache verwenden möchten, geben Sie dies bitte hier an.', + 'language' => 'Sprache', + 'new_savings_account' => ':bank_name-Sparkonto', + 'cash_wallet' => 'Geldbörse', + 'currency_not_present' => 'Wenn die Währung, die Sie normalerweise verwenden, nicht aufgeführt ist, machen Sie sich keine Sorgen. Unter Optionen ➜ Währungen können Sie eigene Währungen anlegen.', // home page: - 'transaction_table_description' => 'Eine Tabelle mit Ihren Buchungen', - 'opposing_account' => 'Gegenkonto', - 'yourAccounts' => 'Deine Konten', - 'your_accounts' => 'Kontenübersicht', - 'category_overview' => 'Kategorieübersicht', - 'expense_overview' => 'Übersicht der Ausgabekonten', - 'revenue_overview' => 'Übersicht der Einnahmekonten', - 'budgetsAndSpending' => 'Budgets und Ausgaben', - 'budgets_and_spending' => 'Budgets und Ausgaben', - 'go_to_budget' => 'Zu Budget „{budget}” wechseln', - 'go_to_deposits' => 'Einnahmen anzeigen', - 'go_to_expenses' => 'Ausgaben anzeigen', - 'savings' => 'Erspartes', - 'newWithdrawal' => 'Neue Ausgabe', - 'newDeposit' => 'Neue Einnahme', - 'newTransfer' => 'Neue Umbuchung', - 'bills_to_pay' => 'Unbezahlte Rechnungen', - 'per_day' => 'Pro Tag', - 'left_to_spend_per_day' => 'Verbleibend zum Ausgeben je Tag', - 'bills_paid' => 'Rechnungen bezahlt', - 'custom_period' => 'Benutzerdefinierter Zeitraum', - 'reset_to_current' => 'Auf aktuellen Zeitraum zurücksetzen', - 'select_period' => 'Zeitraum auswählen', + 'transaction_table_description' => 'Eine Tabelle mit Ihren Buchungen', + 'opposing_account' => 'Gegenkonto', + 'yourAccounts' => 'Deine Konten', + 'your_accounts' => 'Kontenübersicht', + 'category_overview' => 'Kategorieübersicht', + 'expense_overview' => 'Übersicht der Ausgabekonten', + 'revenue_overview' => 'Übersicht der Einnahmekonten', + 'budgetsAndSpending' => 'Budgets und Ausgaben', + 'budgets_and_spending' => 'Budgets und Ausgaben', + 'go_to_budget' => 'Zu Budget „{budget}” wechseln', + 'go_to_deposits' => 'Einnahmen anzeigen', + 'go_to_expenses' => 'Ausgaben anzeigen', + 'savings' => 'Erspartes', + 'newWithdrawal' => 'Neue Ausgabe', + 'newDeposit' => 'Neue Einnahme', + 'newTransfer' => 'Neue Umbuchung', + 'bills_to_pay' => 'Unbezahlte Rechnungen', + 'per_day' => 'Pro Tag', + 'left_to_spend_per_day' => 'Verbleibend zum Ausgeben je Tag', + 'bills_paid' => 'Rechnungen bezahlt', + 'custom_period' => 'Benutzerdefinierter Zeitraum', + 'reset_to_current' => 'Auf aktuellen Zeitraum zurücksetzen', + 'select_period' => 'Zeitraum auswählen', // menu and titles, should be recycled as often as possible: - 'currency' => 'Währung', - 'preferences' => 'Einstellungen', - 'logout' => 'Abmelden', - 'logout_other_sessions' => 'Alle anderen Sitzungen abmelden', - 'toggleNavigation' => 'Navigation umschalten', - 'searchPlaceholder' => 'Suchen...', - 'version' => 'Version', - 'dashboard' => 'Übersicht', - 'income_and_expense' => 'Einnahmen und Ausgaben', - 'all_money' => 'All Ihr Geld', - 'unknown_source_plain' => 'Unbekanntes Quellkonto', - 'unknown_dest_plain' => 'Unbekanntes Zielkonto', - 'unknown_any_plain' => 'Unbekanntes Konto', - 'unknown_budget_plain' => 'Kein Budget', - 'available_budget' => 'Verfügbares Budget ({currency})', - 'currencies' => 'Währungen', - 'activity' => 'Aktivität', - 'usage' => 'Verwendung', - 'accounts' => 'Konten', - 'Asset account' => 'Bestandskonto', - 'Default account' => 'Bestandskonto', - 'Expense account' => 'Ausgabenkonto', - 'Revenue account' => 'Einnahmenkonto', - 'Initial balance account' => 'Eröffnungssaldo', - 'account_type_Asset account' => 'Bestandskonto', - 'account_type_Expense account' => 'Ausgabenkonto', - 'account_type_Revenue account' => 'Einnahmenkonto', - 'account_type_Debt' => 'Schuld', - 'account_type_Loan' => 'Darlehen', - 'account_type_Mortgage' => 'Hypothek', - 'account_type_debt' => 'Schulden', - 'account_type_loan' => 'Darlehen', - 'account_type_mortgage' => 'Hypothek', - 'account_type_Credit card' => 'Kreditkarte', - 'credit_card_type_monthlyFull' => 'Vollständige Zahlung jeden Monat', - 'liability_direction_credit' => 'Mir wird dies geschuldet', - 'liability_direction_debit' => 'Ich schulde dies jemandem', - 'liability_direction_credit_short' => 'Geschuldeter Betrag', - 'liability_direction_debit_short' => 'Schuldiger Betrag', - 'liability_direction__short' => 'Unbekannt', - 'liability_direction_null_short' => 'Unbekannt', - 'Liability credit' => 'Verbindlichkeitsguthaben', - 'budgets' => 'Budgets', - 'tags' => 'Schlagwörter', - 'reports' => 'Berichte', - 'transactions' => 'Buchungen', - 'expenses' => 'Ausgaben', - 'income' => 'Einnahmen / Einkommen', - 'transfers' => 'Umbuchungen', - 'moneyManagement' => 'Geldverwaltung', - 'money_management' => 'Finanzverwaltung', - 'tools' => 'Extras', - 'piggyBanks' => 'Sparschweine', - 'piggy_banks' => 'Sparschweine', - 'amount_x_of_y' => '{current} von {total}', - 'bills' => 'Rechnungen', - 'withdrawal' => 'Ausgabe', - 'opening_balance' => 'Eröffnungsbilanz', - 'deposit' => 'Einnahme', - 'account' => 'Konto', - 'transfer' => 'Umbuchung', - 'Withdrawal' => 'Ausgabe', - 'Deposit' => 'Einnahme', - 'Transfer' => 'Umbuchung', - 'bill' => 'Rechnung', - 'yes' => 'Ja', - 'no' => 'Nein', - 'amount' => 'Betrag', - 'overview' => 'Übersicht', - 'saveOnAccount' => 'Rücklagen für Konto', - 'unknown' => 'Unbekannt', - 'monthly' => 'Monatlich', - 'profile' => 'Profil', - 'errors' => 'Fehler', - 'debt_start_date' => 'Startdatum der Verschuldung', - 'debt_start_amount' => 'Startbetrag der Verschuldung', - 'debt_start_amount_help' => 'Es wird empfohlen, diesen Wert auf einen negativen Betrag festzulegen. Lesen Sie die Hilfeseiten (oben rechts ❓-Symbol) für weitere Informationen.', - 'interest_period_help' => 'Dieses Feld ist rein kosmetisch und wird für Sie nicht berechnet. Wie sich herausstellt, sind Banken sehr hinterhältig, so dass Firefly III es nie richtig macht.', - 'store_new_liabilities_account' => 'Neue Verbindlichkeit speichern', - 'edit_liabilities_account' => 'Verbindlichkeit „:name” bearbeiten', - 'financial_control' => 'Finanzkontrolle', - 'accounting' => 'Buchhaltung', - 'automation' => 'Automatisierungen', - 'others' => 'Weitere', - 'classification' => 'Klassifizierung', - 'store_transaction' => 'Buchung speichern', + 'currency' => 'Währung', + 'preferences' => 'Einstellungen', + 'logout' => 'Abmelden', + 'logout_other_sessions' => 'Alle anderen Sitzungen abmelden', + 'toggleNavigation' => 'Navigation umschalten', + 'searchPlaceholder' => 'Suchen...', + 'version' => 'Version', + 'dashboard' => 'Übersicht', + 'income_and_expense' => 'Einnahmen und Ausgaben', + 'all_money' => 'All Ihr Geld', + 'unknown_source_plain' => 'Unbekanntes Quellkonto', + 'unknown_dest_plain' => 'Unbekanntes Zielkonto', + 'unknown_any_plain' => 'Unbekanntes Konto', + 'unknown_budget_plain' => 'Kein Budget', + 'available_budget' => 'Verfügbares Budget ({currency})', + 'currencies' => 'Währungen', + 'activity' => 'Aktivität', + 'usage' => 'Verwendung', + 'accounts' => 'Konten', + 'Asset account' => 'Bestandskonto', + 'Default account' => 'Bestandskonto', + 'Expense account' => 'Ausgabenkonto', + 'Revenue account' => 'Einnahmenkonto', + 'Initial balance account' => 'Eröffnungssaldo', + 'account_type_Asset account' => 'Bestandskonto', + 'account_type_Expense account' => 'Ausgabenkonto', + 'account_type_Revenue account' => 'Einnahmenkonto', + 'account_type_Debt' => 'Schuld', + 'account_type_Loan' => 'Darlehen', + 'account_type_Mortgage' => 'Hypothek', + 'account_type_debt' => 'Schulden', + 'account_type_loan' => 'Darlehen', + 'account_type_mortgage' => 'Hypothek', + 'account_type_Credit card' => 'Kreditkarte', + 'credit_card_type_monthlyFull' => 'Vollständige Zahlung jeden Monat', + 'liability_direction_credit' => 'Mir wird dies geschuldet', + 'liability_direction_debit' => 'Ich schulde dies jemandem', + 'liability_direction_credit_short' => 'Geschuldeter Betrag', + 'liability_direction_debit_short' => 'Schuldiger Betrag', + 'liability_direction__short' => 'Unbekannt', + 'liability_direction_null_short' => 'Unbekannt', + 'Liability credit' => 'Verbindlichkeitsguthaben', + 'budgets' => 'Budgets', + 'tags' => 'Schlagwörter', + 'reports' => 'Berichte', + 'transactions' => 'Buchungen', + 'expenses' => 'Ausgaben', + 'income' => 'Einnahmen / Einkommen', + 'transfers' => 'Umbuchungen', + 'moneyManagement' => 'Geldverwaltung', + 'money_management' => 'Finanzverwaltung', + 'tools' => 'Extras', + 'piggyBanks' => 'Sparschweine', + 'piggy_banks' => 'Sparschweine', + 'amount_x_of_y' => '{current} von {total}', + 'bills' => 'Rechnungen', + 'withdrawal' => 'Ausgabe', + 'opening_balance' => 'Eröffnungsbilanz', + 'deposit' => 'Einnahme', + 'account' => 'Konto', + 'transfer' => 'Umbuchung', + 'Withdrawal' => 'Ausgabe', + 'Deposit' => 'Einnahme', + 'Transfer' => 'Umbuchung', + 'bill' => 'Rechnung', + 'yes' => 'Ja', + 'no' => 'Nein', + 'amount' => 'Betrag', + 'overview' => 'Übersicht', + 'saveOnAccount' => 'Rücklagen für Konto', + 'unknown' => 'Unbekannt', + 'monthly' => 'Monatlich', + 'profile' => 'Profil', + 'errors' => 'Fehler', + 'debt_start_date' => 'Startdatum der Verschuldung', + 'debt_start_amount' => 'Startbetrag der Verschuldung', + 'debt_start_amount_help' => 'Es wird empfohlen, diesen Wert auf einen negativen Betrag festzulegen. Lesen Sie die Hilfeseiten (oben rechts ❓-Symbol) für weitere Informationen.', + 'interest_period_help' => 'Dieses Feld ist rein kosmetisch und wird für Sie nicht berechnet. Wie sich herausstellt, sind Banken sehr hinterhältig, so dass Firefly III es nie richtig macht.', + 'store_new_liabilities_account' => 'Neue Verbindlichkeit speichern', + 'edit_liabilities_account' => 'Verbindlichkeit „:name” bearbeiten', + 'financial_control' => 'Finanzkontrolle', + 'accounting' => 'Buchhaltung', + 'automation' => 'Automatisierungen', + 'others' => 'Weitere', + 'classification' => 'Klassifizierung', + 'store_transaction' => 'Buchung speichern', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Standardfinanzbericht zwischen :start und :end', - 'report_audit' => 'Übersicht des Buchungsverlaufs zwischen :start und :end', - 'report_category' => 'Kategoriebericht zwischen :start und :end', - 'report_double' => 'Ausgaben-/Einnahmenabrechnung zwischen :start and :end', - 'report_budget' => 'Finanzbericht zwischen :start and :end', - 'report_tag' => 'Schlagwortbericht zwischen :start und :end', - 'quick_link_reports' => 'Schnellzugriff', - 'quick_link_examples' => 'Dies sind nur einige Beispiel-Links, um Ihnen den Einstieg zu erleichtern. Auf den Hilfeseiten unter der Schaltfläche „(?)” finden Sie Informationen zu allen Berichten und den Zauberworten, die Sie verwenden können.', - 'quick_link_default_report' => 'Standard Finanzbericht', - 'quick_link_audit_report' => 'Transaktionshistorie', - 'report_this_month_quick' => 'Aktueller Monat, alle Konten', - 'report_last_month_quick' => 'Letzter Monat, alle Konten', - 'report_this_year_quick' => 'Aktuelles Jahr, alle Konten', - 'report_this_fiscal_year_quick' => 'Aktuelles Geschäftsjahr, alle Konten', - 'report_all_time_quick' => 'Gesamte Zeit, alle Konten', - 'reports_can_bookmark' => 'Berichte können als Lesezeichen gespeichert werden.', - 'incomeVsExpenses' => 'Einkommen vs Ausgaben', - 'accountBalances' => 'Kontostände', - 'balanceStart' => 'Bilanz zum Beginn der Periode', - 'balanceEnd' => 'Bilanz zum Ende der Periode', - 'splitByAccount' => 'Nach Konten aufgeteilt', - 'coveredWithTags' => 'Mit Schlagwörtern versehen', - 'leftInBudget' => 'Verblieben im Budget', - 'left_in_debt' => 'Fälliger Betrag', - 'sumOfSums' => 'Summe der Summen', - 'noCategory' => '(keine Kategorie)', - 'notCharged' => '(Noch) nicht belastet', - 'inactive' => 'Inaktiv', - 'active' => 'Aktiv', - 'difference' => 'Unterschied', - 'money_flowing_in' => 'Eingehend', - 'money_flowing_out' => 'Ausgehend', - 'topX' => 'Topnummer :number', - 'show_full_list' => 'Zeige die gesamte Liste', - 'show_only_top' => 'Nur die Top :number anzeigen', - 'report_type' => 'Typ des Berichts', - 'report_type_default' => 'Standard-Finanzbericht', - 'report_type_audit' => 'Übersicht der Transaktionen (Prüfung)', - 'report_type_category' => 'Kategorie-Bericht', - 'report_type_budget' => 'Finanzbericht', - 'report_type_tag' => 'Schlagwortbericht', - 'report_type_double' => 'Ausgaben-/Einnahmenabrechnung', - 'more_info_help' => 'Weitere Informationen über diese Art von Berichten finden Sie in der Hilfe. Drücken Sie hierfür das (?)-Symbol in der oberen rechten Ecke.', - 'report_included_accounts' => 'Einbezogene Konten', - 'report_date_range' => 'Zeitraum', - 'report_preset_ranges' => 'Voreingestellte Bereiche', - 'shared' => 'Geteilt', - 'fiscal_year' => 'Geschäftsjahr', - 'income_entry' => 'Einnahmen aus dem Konto „:name” zwischen :start und :end', - 'expense_entry' => 'Ausgaben für das Konto „:name” zwischen :start und :end', - 'category_entry' => 'Ausgaben und Einnahmen in der Kategorie „:name” zwischen :start und :end', - 'budget_spent_amount' => 'Ausgaben im Haushalt „:budget” zwischen :start und :end', - 'balance_amount' => 'Ausgaben im Budget „:budget” bezahlt von Konto „:account” zwischen :start und :end', - 'no_audit_activity' => 'Zwischen :start und :end wurde keine Aktivität auf dem Konto :account_name festgestellt.', - 'audit_end_balance' => 'Kontostand von :account_name war am Ende vom :end: :balance', - 'reports_extra_options' => 'Zusatzoptionen', - 'report_has_no_extra_options' => 'Dieser Bericht hat keine zusätzliche Optionen', - 'reports_submit' => 'Zeige Bericht', - 'end_after_start_date' => 'Enddatum des Berichts muss nach dem Startdatum liegen.', - 'select_category' => 'Kategorie(n) auswählen', - 'select_budget' => 'Budget(s) auswählen.', - 'select_tag' => 'Schlagworte wählen.', - 'income_per_category' => 'Einnahmen pro Kategorie', - 'expense_per_category' => 'Ausgaben pro Kategorie', - 'expense_per_budget' => 'Ausgaben je Budget', - 'income_per_account' => 'Einnahmen pro Konto', - 'expense_per_account' => 'Ausgaben pro Konto', - 'expense_per_tag' => 'Ausgaben je Schlagwort', - 'income_per_tag' => 'Einnahmen je Schlagwort', - 'include_expense_not_in_budget' => 'Enthaltene Ausgaben, die nicht in dem/den ausgewählten Finanzrahmen enthalten sind', - 'include_expense_not_in_account' => 'Enthaltene Ausgaben, die nicht in den ausgewählten Konten enthalten sind', - 'include_expense_not_in_category' => 'Enthaltene Ausgaben, die nicht in die ausgewählte(n) Kategorie(n) fallen', - 'include_income_not_in_category' => 'Enthaltene Erträge, die nicht in die ausgewählte(n) Kategorie(n) fallen', - 'include_income_not_in_account' => 'Enthaltene Erträge, die nicht in dem/den ausgewählten Konto(en) enthalten sind', - 'include_income_not_in_tags' => 'Enthaltene Erträge, die nicht in den ausgewählten Schlagwörtern enthalten sind', - 'include_expense_not_in_tags' => 'Enthaltene Ausgaben, die nicht in den ausgewählten Schlagwörtern enthalten sind', - 'everything_else' => 'Der Rest', - 'income_and_expenses' => 'Einkommen und Ausgaben', - 'spent_average' => 'Ausgaben (Durchschnitt)', - 'income_average' => 'Einkommen (Durchschnitt)', - 'transaction_count' => 'Überweisungen', - 'average_spending_per_account' => 'Durchschnittsausgaben pro Konto', - 'average_income_per_account' => 'Durchschnittseinkommen pro Konto', - 'total' => 'Gesamt', - 'description' => 'Beschreibung', - 'sum_of_period' => 'Summe des Zeitraums', - 'average_in_period' => 'Durchschnitt im Zeitraum', - 'no_account_role' => '(keine Rolle)', - 'account_role_defaultAsset' => 'Standard-Bestandskonto', - 'account_role_sharedAsset' => 'Gemeinsames Bestandskonto', - 'account_role_savingAsset' => 'Sparkonto', - 'account_role_ccAsset' => 'Kreditkarte', - 'account_role_cashWalletAsset' => 'Geldbörse', - 'budget_chart_click' => 'Klicken Sie auf einen Namen des Budgets in der obigen Tabelle, um ein Diagramm anzuzeigen.', - 'category_chart_click' => 'Klicken Sie auf einen Kategorienamen in der obigen Tabelle, um ein Diagramm zu sehen.', - 'in_out_accounts' => 'Einnahmen und Ausgaben je Kombination', - 'in_out_accounts_per_asset' => 'Einnahmen und Ausgaben (je Anlagenkonto)', - 'in_out_per_category' => 'Einnahmen und Ausgaben je Kategorie', - 'out_per_budget' => 'Ausgaben je Budget', - 'select_expense_revenue' => 'Ausgaben-/Einnahmenkonto auswählen', - 'multi_currency_report_sum' => 'Da diese Liste Konten mit mehreren Währungen enthält, ergeben die Summe(n), die angezeigt werden, möglicherweise keinen Sinn. Der Bericht wird immer auf Ihre Standardwährung zurückgesetzt.', - 'sum_in_default_currency' => 'Der Betrag wird immer in Ihrer Standardwährung angegeben.', - 'net_filtered_prefs' => 'Dieses Diagramm wird niemals Konten einbeziehen, die die Option "Im Eigenkapital enthalten" deaktiviert haben.', + 'report_default' => 'Standardfinanzbericht zwischen :start und :end', + 'report_audit' => 'Übersicht des Buchungsverlaufs zwischen :start und :end', + 'report_category' => 'Kategoriebericht zwischen :start und :end', + 'report_double' => 'Ausgaben-/Einnahmenabrechnung zwischen :start and :end', + 'report_budget' => 'Finanzbericht zwischen :start and :end', + 'report_tag' => 'Schlagwortbericht zwischen :start und :end', + 'quick_link_reports' => 'Schnellzugriff', + 'quick_link_examples' => 'Dies sind nur einige Beispiel-Links, um Ihnen den Einstieg zu erleichtern. Auf den Hilfeseiten unter der Schaltfläche „(?)” finden Sie Informationen zu allen Berichten und den Zauberworten, die Sie verwenden können.', + 'quick_link_default_report' => 'Standard Finanzbericht', + 'quick_link_audit_report' => 'Transaktionshistorie', + 'report_this_month_quick' => 'Aktueller Monat, alle Konten', + 'report_last_month_quick' => 'Letzter Monat, alle Konten', + 'report_this_year_quick' => 'Aktuelles Jahr, alle Konten', + 'report_this_fiscal_year_quick' => 'Aktuelles Geschäftsjahr, alle Konten', + 'report_all_time_quick' => 'Gesamte Zeit, alle Konten', + 'reports_can_bookmark' => 'Berichte können als Lesezeichen gespeichert werden.', + 'incomeVsExpenses' => 'Einkommen vs Ausgaben', + 'accountBalances' => 'Kontostände', + 'balanceStart' => 'Bilanz zum Beginn der Periode', + 'balanceEnd' => 'Bilanz zum Ende der Periode', + 'splitByAccount' => 'Nach Konten aufgeteilt', + 'coveredWithTags' => 'Mit Schlagwörtern versehen', + 'leftInBudget' => 'Verblieben im Budget', + 'left_in_debt' => 'Fälliger Betrag', + 'sumOfSums' => 'Summe der Summen', + 'noCategory' => '(keine Kategorie)', + 'notCharged' => '(Noch) nicht belastet', + 'inactive' => 'Inaktiv', + 'active' => 'Aktiv', + 'difference' => 'Unterschied', + 'money_flowing_in' => 'Eingehend', + 'money_flowing_out' => 'Ausgehend', + 'topX' => 'Topnummer :number', + 'show_full_list' => 'Zeige die gesamte Liste', + 'show_only_top' => 'Nur die Top :number anzeigen', + 'report_type' => 'Typ des Berichts', + 'report_type_default' => 'Standard-Finanzbericht', + 'report_type_audit' => 'Übersicht der Transaktionen (Prüfung)', + 'report_type_category' => 'Kategorie-Bericht', + 'report_type_budget' => 'Finanzbericht', + 'report_type_tag' => 'Schlagwortbericht', + 'report_type_double' => 'Ausgaben-/Einnahmenabrechnung', + 'more_info_help' => 'Weitere Informationen über diese Art von Berichten finden Sie in der Hilfe. Drücken Sie hierfür das (?)-Symbol in der oberen rechten Ecke.', + 'report_included_accounts' => 'Einbezogene Konten', + 'report_date_range' => 'Zeitraum', + 'report_preset_ranges' => 'Voreingestellte Bereiche', + 'shared' => 'Geteilt', + 'fiscal_year' => 'Geschäftsjahr', + 'income_entry' => 'Einnahmen aus dem Konto „:name” zwischen :start und :end', + 'expense_entry' => 'Ausgaben für das Konto „:name” zwischen :start und :end', + 'category_entry' => 'Ausgaben und Einnahmen in der Kategorie „:name” zwischen :start und :end', + 'budget_spent_amount' => 'Ausgaben im Haushalt „:budget” zwischen :start und :end', + 'balance_amount' => 'Ausgaben im Budget „:budget” bezahlt von Konto „:account” zwischen :start und :end', + 'no_audit_activity' => 'Zwischen :start und :end wurde keine Aktivität auf dem Konto :account_name festgestellt.', + 'audit_end_balance' => 'Kontostand von :account_name war am Ende vom :end: :balance', + 'reports_extra_options' => 'Zusatzoptionen', + 'report_has_no_extra_options' => 'Dieser Bericht hat keine zusätzliche Optionen', + 'reports_submit' => 'Zeige Bericht', + 'end_after_start_date' => 'Enddatum des Berichts muss nach dem Startdatum liegen.', + 'select_category' => 'Kategorie(n) auswählen', + 'select_budget' => 'Budget(s) auswählen.', + 'select_tag' => 'Schlagworte wählen.', + 'income_per_category' => 'Einnahmen pro Kategorie', + 'expense_per_category' => 'Ausgaben pro Kategorie', + 'expense_per_budget' => 'Ausgaben je Budget', + 'income_per_account' => 'Einnahmen pro Konto', + 'expense_per_account' => 'Ausgaben pro Konto', + 'expense_per_tag' => 'Ausgaben je Schlagwort', + 'income_per_tag' => 'Einnahmen je Schlagwort', + 'include_expense_not_in_budget' => 'Enthaltene Ausgaben, die nicht in dem/den ausgewählten Finanzrahmen enthalten sind', + 'include_expense_not_in_account' => 'Enthaltene Ausgaben, die nicht in den ausgewählten Konten enthalten sind', + 'include_expense_not_in_category' => 'Enthaltene Ausgaben, die nicht in die ausgewählte(n) Kategorie(n) fallen', + 'include_income_not_in_category' => 'Enthaltene Erträge, die nicht in die ausgewählte(n) Kategorie(n) fallen', + 'include_income_not_in_account' => 'Enthaltene Erträge, die nicht in dem/den ausgewählten Konto(en) enthalten sind', + 'include_income_not_in_tags' => 'Enthaltene Erträge, die nicht in den ausgewählten Schlagwörtern enthalten sind', + 'include_expense_not_in_tags' => 'Enthaltene Ausgaben, die nicht in den ausgewählten Schlagwörtern enthalten sind', + 'everything_else' => 'Der Rest', + 'income_and_expenses' => 'Einkommen und Ausgaben', + 'spent_average' => 'Ausgaben (Durchschnitt)', + 'income_average' => 'Einkommen (Durchschnitt)', + 'transaction_count' => 'Überweisungen', + 'average_spending_per_account' => 'Durchschnittsausgaben pro Konto', + 'average_income_per_account' => 'Durchschnittseinkommen pro Konto', + 'total' => 'Gesamt', + 'description' => 'Beschreibung', + 'sum_of_period' => 'Summe des Zeitraums', + 'average_in_period' => 'Durchschnitt im Zeitraum', + 'no_account_role' => '(keine Rolle)', + 'account_role_defaultAsset' => 'Standard-Bestandskonto', + 'account_role_sharedAsset' => 'Gemeinsames Bestandskonto', + 'account_role_savingAsset' => 'Sparkonto', + 'account_role_ccAsset' => 'Kreditkarte', + 'account_role_cashWalletAsset' => 'Geldbörse', + 'budget_chart_click' => 'Klicken Sie auf einen Namen des Budgets in der obigen Tabelle, um ein Diagramm anzuzeigen.', + 'category_chart_click' => 'Klicken Sie auf einen Kategorienamen in der obigen Tabelle, um ein Diagramm zu sehen.', + 'in_out_accounts' => 'Einnahmen und Ausgaben je Kombination', + 'in_out_accounts_per_asset' => 'Einnahmen und Ausgaben (je Anlagenkonto)', + 'in_out_per_category' => 'Einnahmen und Ausgaben je Kategorie', + 'out_per_budget' => 'Ausgaben je Budget', + 'select_expense_revenue' => 'Ausgaben-/Einnahmenkonto auswählen', + 'multi_currency_report_sum' => 'Da diese Liste Konten mit mehreren Währungen enthält, ergeben die Summe(n), die angezeigt werden, möglicherweise keinen Sinn. Der Bericht wird immer auf Ihre Standardwährung zurückgesetzt.', + 'sum_in_default_currency' => 'Der Betrag wird immer in Ihrer Standardwährung angegeben.', + 'net_filtered_prefs' => 'Dieses Diagramm wird niemals Konten einbeziehen, die die Option "Im Eigenkapital enthalten" deaktiviert haben.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Diagram', - 'month' => 'Monat', - 'budget' => 'Budget', - 'spent' => 'Ausgegeben', - 'spent_capped' => 'Ausgegeben (gedeckelt)', - 'spent_in_budget' => 'Ausgegeben im Budget', - 'left_to_spend' => 'Verbleibend zum Ausgeben', - 'earned' => 'Eingenommen', - 'overspent' => 'Zuviel ausgegeben', - 'left' => 'Übrig', - 'max-amount' => 'Höchstbetrag', - 'min-amount' => 'Mindestbetrag', - 'journal-amount' => 'Aktueller Rechnungseintrag', - 'name' => 'Name', - 'date' => 'Datum', - 'date_and_time' => 'Datum und Uhrzeit', - 'time' => 'Uhrzeit', - 'paid' => 'Bezahlt', - 'unpaid' => 'Unbezahlt', - 'day' => 'Tag', - 'budgeted' => 'Vorgesehen', - 'period' => 'Zeitraum', - 'balance' => 'Kontostand', - 'in_out_period' => 'Ein- + Ausgaben im Zeitraum', - 'sum' => 'Summe', - 'summary' => 'Zusammenfasssung', - 'average' => 'Durchschnitt', - 'balanceFor' => 'Kontostand für „:name”', - 'no_tags' => '(keine Schlagwörter)', - 'nothing_found' => '(nichts gefunden)', + 'chart' => 'Diagram', + 'month' => 'Monat', + 'budget' => 'Budget', + 'spent' => 'Ausgegeben', + 'spent_capped' => 'Ausgegeben (gedeckelt)', + 'spent_in_budget' => 'Ausgegeben im Budget', + 'left_to_spend' => 'Verbleibend zum Ausgeben', + 'earned' => 'Eingenommen', + 'overspent' => 'Zuviel ausgegeben', + 'left' => 'Übrig', + 'max-amount' => 'Höchstbetrag', + 'min-amount' => 'Mindestbetrag', + 'journal-amount' => 'Aktueller Rechnungseintrag', + 'name' => 'Name', + 'date' => 'Datum', + 'date_and_time' => 'Datum und Uhrzeit', + 'time' => 'Uhrzeit', + 'paid' => 'Bezahlt', + 'unpaid' => 'Unbezahlt', + 'day' => 'Tag', + 'budgeted' => 'Vorgesehen', + 'period' => 'Zeitraum', + 'balance' => 'Kontostand', + 'in_out_period' => 'Ein- + Ausgaben im Zeitraum', + 'sum' => 'Summe', + 'summary' => 'Zusammenfasssung', + 'average' => 'Durchschnitt', + 'balanceFor' => 'Kontostand für „:name”', + 'no_tags' => '(keine Schlagwörter)', + 'nothing_found' => '(nichts gefunden)', // piggy banks: - 'event_history' => 'Ereignisverlauf', - 'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen', - 'piggy_bank' => 'Sparschwein', - 'new_piggy_bank' => 'Neues Sparschwein', - 'store_piggy_bank' => 'Speichere neues Sparschwein', - 'stored_piggy_bank' => 'Neues Sparschwein „:name” speichern', - 'account_status' => 'Kontostatus', - 'left_for_piggy_banks' => 'Übrig für Sparschweine', - 'sum_of_piggy_banks' => 'Summe der Sparschweine', - 'saved_so_far' => 'Gespart', - 'left_to_save' => 'Zu Sparen', - 'suggested_amount' => 'Empfohlener monatliche Sparbetrag', - 'add_money_to_piggy_title' => 'Geld dem Sparschwein „:name” hinzufügen', - 'remove_money_from_piggy_title' => 'Geld dem Sparschwein „:name” entnehmen', - 'add' => 'Hinzufügen', - 'no_money_for_piggy' => 'Sie haben kein Geld, welches Sie in dieses Sparschwein geben können.', - 'suggested_savings_per_month' => 'Monatlich empfohlen', + 'event_history' => 'Ereignisverlauf', + 'add_money_to_piggy' => 'Geld zum Sparschwein „:name” übertragen', + 'piggy_bank' => 'Sparschwein', + 'new_piggy_bank' => 'Neues Sparschwein', + 'store_piggy_bank' => 'Speichere neues Sparschwein', + 'stored_piggy_bank' => 'Neues Sparschwein „:name” speichern', + 'account_status' => 'Kontostatus', + 'left_for_piggy_banks' => 'Übrig für Sparschweine', + 'sum_of_piggy_banks' => 'Summe der Sparschweine', + 'saved_so_far' => 'Gespart', + 'left_to_save' => 'Zu Sparen', + 'suggested_amount' => 'Empfohlener monatliche Sparbetrag', + 'add_money_to_piggy_title' => 'Geld dem Sparschwein „:name” hinzufügen', + 'remove_money_from_piggy_title' => 'Geld dem Sparschwein „:name” entnehmen', + 'add' => 'Hinzufügen', + 'no_money_for_piggy' => 'Sie haben kein Geld, welches Sie in dieses Sparschwein geben können.', + 'suggested_savings_per_month' => 'Monatlich empfohlen', - 'remove' => 'Entfernen', - 'max_amount_add' => 'Der maximale Betrag, den Sie hinzufügen können ist', - 'max_amount_remove' => 'Der maximale Betrag, den Sie entnehmen können ist', - 'update_piggy_button' => 'Sparschwein aktualisieren', - 'update_piggy_title' => 'Sparschwein „:name” aktualisieren', - 'updated_piggy_bank' => 'Sparschwein „:name” aktualisiert', - 'details' => 'Details', - 'events' => 'Ereignisse', - 'target_amount' => 'Zielbetrag', - 'start_date' => 'Startdatum', - 'no_start_date' => 'Kein Startzeitpunkt', - 'target_date' => 'Zieldatum', - 'no_target_date' => 'Kein Zieldatum', - 'table' => 'Tabelle', - 'delete_piggy_bank' => 'Sparschwein „:name” löschen', - 'cannot_add_amount_piggy' => ':amount konnte nicht zu „:name” hinzugefügt werden.', - 'cannot_remove_from_piggy' => ':amount konnte nicht aus „:name” entfernt werden', - 'deleted_piggy_bank' => 'Sparschwein „:name” gelöscht', - 'added_amount_to_piggy' => ':amount zu „:name” hinzugefügt', - 'removed_amount_from_piggy' => ':amount aus „:name” entfernt', - 'piggy_events' => 'Zugehörige Sparschweine', + 'remove' => 'Entfernen', + 'max_amount_add' => 'Der maximale Betrag, den Sie hinzufügen können ist', + 'max_amount_remove' => 'Der maximale Betrag, den Sie entnehmen können ist', + 'update_piggy_button' => 'Sparschwein aktualisieren', + 'update_piggy_title' => 'Sparschwein „:name” aktualisieren', + 'updated_piggy_bank' => 'Sparschwein „:name” aktualisiert', + 'details' => 'Details', + 'events' => 'Ereignisse', + 'target_amount' => 'Zielbetrag', + 'start_date' => 'Startdatum', + 'no_start_date' => 'Kein Startzeitpunkt', + 'target_date' => 'Zieldatum', + 'no_target_date' => 'Kein Zieldatum', + 'table' => 'Tabelle', + 'delete_piggy_bank' => 'Sparschwein „:name” löschen', + 'cannot_add_amount_piggy' => ':amount konnte nicht zu „:name” hinzugefügt werden.', + 'cannot_remove_from_piggy' => ':amount konnte nicht aus „:name” entfernt werden', + 'deleted_piggy_bank' => 'Sparschwein „:name” gelöscht', + 'added_amount_to_piggy' => ':amount zu „:name” hinzugefügt', + 'removed_amount_from_piggy' => ':amount aus „:name” entfernt', + 'piggy_events' => 'Zugehörige Sparschweine', // tags - 'delete_tag' => 'Schlagwort „:tag” entfernen', - 'deleted_tag' => 'Schlagwort „:tag” entfernt', - 'new_tag' => 'Neues Schlagwort erstellen', - 'edit_tag' => 'Schlagwort „:tag” bearbeiten', - 'updated_tag' => 'Schlagwort „:tag” aktualisiertern', - 'created_tag' => 'Schlagwort „:tag” wurde angelegt!', + 'delete_tag' => 'Schlagwort „:tag” entfernen', + 'deleted_tag' => 'Schlagwort „:tag” entfernt', + 'new_tag' => 'Neues Schlagwort erstellen', + 'edit_tag' => 'Schlagwort „:tag” bearbeiten', + 'updated_tag' => 'Schlagwort „:tag” aktualisiertern', + 'created_tag' => 'Schlagwort „:tag” wurde angelegt!', - 'transaction_journal_information' => 'Transaktionsinformationen', - 'transaction_journal_amount' => 'Betraginformation', - 'transaction_journal_meta' => 'Metainformationen', - 'transaction_journal_more' => 'Weitere Informationen', - 'basic_journal_information' => 'Allgemeine Buchungsinformationen', - 'transaction_journal_extra' => 'Zusätzliche Informationen', - 'att_part_of_journal' => 'Unter „:journal” gespeichert', - 'total_amount' => 'Gesamtbetrag', - 'number_of_decimals' => 'Anzahl der Nachkommastellen', + 'transaction_journal_information' => 'Transaktionsinformationen', + 'transaction_journal_amount' => 'Betraginformation', + 'transaction_journal_meta' => 'Metainformationen', + 'transaction_journal_more' => 'Weitere Informationen', + 'basic_journal_information' => 'Allgemeine Buchungsinformationen', + 'transaction_journal_extra' => 'Zusätzliche Informationen', + 'att_part_of_journal' => 'Unter „:journal” gespeichert', + 'total_amount' => 'Gesamtbetrag', + 'number_of_decimals' => 'Anzahl der Nachkommastellen', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Die Einladung zu „:address“ wurde bereits eingelöst.', - 'invite_is_deleted' => 'Die Einladung zu „:address“ wurde gelöscht.', - 'invite_new_user_title' => 'Neuen Nutzer einladen', - 'invite_new_user_text' => 'Als Administrator können Sie Benutzer einladen, sich auf Ihrer Firefly III Administration zu registrieren. Über den direkten Link, den Sie mit ihnen teilen können, können diese ein Konto registrieren. Der eingeladene Benutzer und sein Einladungslink erscheinen in der unten stehenden Tabelle. Sie können den Einladungslink mit ihm teilen.', - 'invited_user_mail' => 'E-Mail Adresse', - 'invite_user' => 'Nutzer einladen', - 'user_is_invited' => 'E-Mail Adresse ":address" wurde zu Firefly III eingeladen', - 'administration' => 'Verwaltung', - 'system_settings' => 'Systemeinstellungen', - 'code_already_used' => 'Einladungscode wurde bereits verwendet', - 'user_administration' => 'Nutzerinformation', - 'list_all_users' => 'Alle Benutzer', - 'all_users' => 'Alle Benutzer', - 'instance_configuration' => 'Konfiguration', - 'firefly_instance_configuration' => 'Konfigurationsoptionen für Firefly III', - 'setting_single_user_mode' => 'Einzelnutzermodus', - 'setting_single_user_mode_explain' => 'Dies ist eine sehr fortschrittliche Funktion, welche aber sehr nützlich sein kann. Stellen Sie sicher, dass Sie die Dokumentation (❓-Symbol in der oberen rechten Ecke) lesen, bevor Sie fortfahren.', - 'store_configuration' => 'Konfiguration speichern', - 'single_user_administration' => 'Benutzerverwaltung für :email', - 'edit_user' => 'Benutzer :email bearbeiten', - 'hidden_fields_preferences' => 'Sie können weitere Buchungsoptionen in Ihren Einstellungen aktivieren.', - 'user_data_information' => 'Nutzerdaten', - 'user_information' => 'Benutzerinformationen', - 'total_size' => 'Gesamtgröße', - 'budget_or_budgets' => ':count Budget|:count Budgets', - 'budgets_with_limits' => ':count Budget mit konfiguriertem Betrag|:count Budgets mit konfiguriertem Betrag', - 'nr_of_rules_in_total_groups' => ':count_rules Regel(n) in :count_groups Gruppenregel(n)', - 'tag_or_tags' => ':count Schlagwort|:count Schlagwörter', - 'configuration_updated' => 'Die Konfiguration wurde aktualisiert', - 'setting_is_demo_site' => 'Demonstrationsseite', - 'setting_is_demo_site_explain' => 'Wenn sie diese Option auswählen, wird sich diese Installation wie eine Demonstrationsseite verhalten, was ungewollte Auswirkungen haben kann.', - 'block_code_bounced' => 'E-Mail-Nachricht(en) wurden abgewiesen', - 'block_code_expired' => 'Demo-Konto abgelaufen', - 'no_block_code' => 'Kein Grund für Block oder Benutzer nicht blockiert', - 'demo_user_export' => 'Der Demo-Benutzer kann keine Daten exportieren', - 'block_code_email_changed' => 'Der Benutzer hat die neue E-Mail-Adresse noch nicht bestätigt', - 'admin_update_email' => 'Im Gegensatz zur Profilseite wird der Benutzer NICHT benachrichtigt, dass seine E-Mail-Adresse geändert wurde!', - 'update_user' => 'Benutzer aktualisieren', - 'updated_user' => 'Nutzerdaten wurden geändert.', - 'delete_user' => 'Benutzer :email löschen', - 'user_deleted' => 'Der Nutzer wurde gelöscht', - 'send_test_email' => 'Test-E-Mail senden', - 'send_test_email_text' => 'Um zu sehen, ob Ihre Installation in der Lage ist, E-Mails zu senden oder Slack Nachrichten zu veröffentlichen, klicken Sie bitte auf diesen Button. Sie werden keinen Fehler sehen (falls vorhanden), die Protokolldateien werden Fehler jedoch auflisten. Sie können diese Taste so oft drücken, wie Sie möchten. Es gibt keine Spam-Kontrolle. Die Nachricht wird an :email gesendet und sollte anschließend in Kürze eintreffen.', - 'send_message' => 'Nachricht senden', - 'send_test_triggered' => 'Der Test wurde ausgelöst. Überprüfen Sie Ihren Posteingang und die Protokolldateien.', - 'give_admin_careful' => 'Benutzer mit Admin-Rechten können Ihnen Ihre Rechte entziehen. Seien Sie vorsichtig.', - 'admin_maintanance_title' => 'Wartungsarbeiten', - 'admin_maintanance_expl' => 'Einige praktische Schaltflächen für die Wartung von Firefly III', - 'admin_maintenance_clear_cache' => 'Cache leeren', - 'admin_notifications' => 'Admin-Benachrichtigungen', - 'admin_notifications_expl' => 'Die folgenden Mitteilungen können vom Administrator aktiviert oder deaktiviert werden. Wenn Sie diese Nachrichten auch über Slack erhalten möchten, stellen Sie die URL „eingehender Webhook” ein.', - 'admin_notification_check_user_new_reg' => 'Benutzer erhält nach der Registrierung eine Willkommensnachricht', - 'admin_notification_check_admin_new_reg' => 'Administrator(en) erhalten Benachrichtigung über die Registrierung neuer Benutzer', - 'admin_notification_check_new_version' => 'Eine neue Version ist verfügbar', - 'admin_notification_check_invite_created' => 'Ein Benutzer wurde zu Firefly III eingeladen', - 'admin_notification_check_invite_redeemed' => 'Eine Benutzereinladung wurde eingelöst', - 'all_invited_users' => 'Alle eingeladenen Benutzer', - 'save_notification_settings' => 'Einstellungen speichern', - 'notification_settings_saved' => 'Die Benachrichtigungseinstellungen wurden gespeichert', + 'invite_is_already_redeemed' => 'Die Einladung zu „:address“ wurde bereits eingelöst.', + 'invite_is_deleted' => 'Die Einladung zu „:address“ wurde gelöscht.', + 'invite_new_user_title' => 'Neuen Nutzer einladen', + 'invite_new_user_text' => 'Als Administrator können Sie Benutzer einladen, sich auf Ihrer Firefly III Administration zu registrieren. Über den direkten Link, den Sie mit ihnen teilen können, können diese ein Konto registrieren. Der eingeladene Benutzer und sein Einladungslink erscheinen in der unten stehenden Tabelle. Sie können den Einladungslink mit ihm teilen.', + 'invited_user_mail' => 'E-Mail Adresse', + 'invite_user' => 'Nutzer einladen', + 'user_is_invited' => 'E-Mail Adresse ":address" wurde zu Firefly III eingeladen', + 'administration' => 'Verwaltung', + 'system_settings' => 'Systemeinstellungen', + 'code_already_used' => 'Einladungscode wurde bereits verwendet', + 'user_administration' => 'Nutzerinformation', + 'list_all_users' => 'Alle Benutzer', + 'all_users' => 'Alle Benutzer', + 'instance_configuration' => 'Konfiguration', + 'firefly_instance_configuration' => 'Konfigurationsoptionen für Firefly III', + 'setting_single_user_mode' => 'Einzelnutzermodus', + 'setting_single_user_mode_explain' => 'Dies ist eine sehr fortschrittliche Funktion, welche aber sehr nützlich sein kann. Stellen Sie sicher, dass Sie die Dokumentation (❓-Symbol in der oberen rechten Ecke) lesen, bevor Sie fortfahren.', + 'store_configuration' => 'Konfiguration speichern', + 'single_user_administration' => 'Benutzerverwaltung für :email', + 'edit_user' => 'Benutzer :email bearbeiten', + 'hidden_fields_preferences' => 'Sie können weitere Buchungsoptionen in Ihren Einstellungen aktivieren.', + 'user_data_information' => 'Nutzerdaten', + 'user_information' => 'Benutzerinformationen', + 'total_size' => 'Gesamtgröße', + 'budget_or_budgets' => ':count Budget|:count Budgets', + 'budgets_with_limits' => ':count Budget mit konfiguriertem Betrag|:count Budgets mit konfiguriertem Betrag', + 'nr_of_rules_in_total_groups' => ':count_rules Regel(n) in :count_groups Gruppenregel(n)', + 'tag_or_tags' => ':count Schlagwort|:count Schlagwörter', + 'configuration_updated' => 'Die Konfiguration wurde aktualisiert', + 'setting_is_demo_site' => 'Demonstrationsseite', + 'setting_is_demo_site_explain' => 'Wenn sie diese Option auswählen, wird sich diese Installation wie eine Demonstrationsseite verhalten, was ungewollte Auswirkungen haben kann.', + 'block_code_bounced' => 'E-Mail-Nachricht(en) wurden abgewiesen', + 'block_code_expired' => 'Demo-Konto abgelaufen', + 'no_block_code' => 'Kein Grund für Block oder Benutzer nicht blockiert', + 'demo_user_export' => 'Der Demo-Benutzer kann keine Daten exportieren', + 'block_code_email_changed' => 'Der Benutzer hat die neue E-Mail-Adresse noch nicht bestätigt', + 'admin_update_email' => 'Im Gegensatz zur Profilseite wird der Benutzer NICHT benachrichtigt, dass seine E-Mail-Adresse geändert wurde!', + 'update_user' => 'Benutzer aktualisieren', + 'updated_user' => 'Nutzerdaten wurden geändert.', + 'delete_user' => 'Benutzer :email löschen', + 'user_deleted' => 'Der Nutzer wurde gelöscht', + 'send_test_email' => 'Test-E-Mail senden', + 'send_test_email_text' => 'Um zu sehen, ob Ihre Installation in der Lage ist, E-Mails zu senden oder Slack Nachrichten zu veröffentlichen, klicken Sie bitte auf diesen Button. Sie werden keinen Fehler sehen (falls vorhanden), die Protokolldateien werden Fehler jedoch auflisten. Sie können diese Taste so oft drücken, wie Sie möchten. Es gibt keine Spam-Kontrolle. Die Nachricht wird an :email gesendet und sollte anschließend in Kürze eintreffen.', + 'send_message' => 'Nachricht senden', + 'send_test_triggered' => 'Der Test wurde ausgelöst. Überprüfen Sie Ihren Posteingang und die Protokolldateien.', + 'give_admin_careful' => 'Benutzer mit Admin-Rechten können Ihnen Ihre Rechte entziehen. Seien Sie vorsichtig.', + 'admin_maintanance_title' => 'Wartungsarbeiten', + 'admin_maintanance_expl' => 'Einige praktische Schaltflächen für die Wartung von Firefly III', + 'admin_maintenance_clear_cache' => 'Cache leeren', + 'admin_notifications' => 'Admin-Benachrichtigungen', + 'admin_notifications_expl' => 'Die folgenden Mitteilungen können vom Administrator aktiviert oder deaktiviert werden. Wenn Sie diese Nachrichten auch über Slack erhalten möchten, stellen Sie die URL „eingehender Webhook” ein.', + 'admin_notification_check_user_new_reg' => 'Benutzer erhält nach der Registrierung eine Willkommensnachricht', + 'admin_notification_check_admin_new_reg' => 'Administrator(en) erhalten Benachrichtigung über die Registrierung neuer Benutzer', + 'admin_notification_check_new_version' => 'Eine neue Version ist verfügbar', + 'admin_notification_check_invite_created' => 'Ein Benutzer wurde zu Firefly III eingeladen', + 'admin_notification_check_invite_redeemed' => 'Eine Benutzereinladung wurde eingelöst', + 'all_invited_users' => 'Alle eingeladenen Benutzer', + 'save_notification_settings' => 'Einstellungen speichern', + 'notification_settings_saved' => 'Die Benachrichtigungseinstellungen wurden gespeichert', - 'split_transaction_title' => 'Beschreibung der Splittbuchung', - 'split_transaction_title_help' => 'Wenn Sie eine Splittbuchung anlegen, muss es eine eindeutige Beschreibung für alle Aufteilungen der Buchung geben.', - 'split_title_help' => 'Wenn Sie eine Splittbuchung anlegen, muss es eine eindeutige Beschreibung für alle Aufteilungen der Buchhaltung geben.', - 'you_create_transfer' => 'Sie erstellen eine Umbuchung.', - 'you_create_withdrawal' => 'Sie haben eine Ausgabe erstellt.', - 'you_create_deposit' => 'Sie haben eine Einnahme erstellt.', + 'split_transaction_title' => 'Beschreibung der Splittbuchung', + 'split_transaction_title_help' => 'Wenn Sie eine Splittbuchung anlegen, muss es eine eindeutige Beschreibung für alle Aufteilungen der Buchung geben.', + 'split_title_help' => 'Wenn Sie eine Splittbuchung anlegen, muss es eine eindeutige Beschreibung für alle Aufteilungen der Buchhaltung geben.', + 'you_create_transfer' => 'Sie erstellen eine Umbuchung.', + 'you_create_withdrawal' => 'Sie haben eine Ausgabe erstellt.', + 'you_create_deposit' => 'Sie haben eine Einnahme erstellt.', // links - 'journal_link_configuration' => 'Konfiguration der Buchungsverknüpfungen', - 'create_new_link_type' => 'Neuen Verknüpfungstyp erstellen', - 'store_new_link_type' => 'Neuen Verknüpfungstyp speichern', - 'update_link_type' => 'Verknüpfungstyp aktualisieren', - 'edit_link_type' => 'Verknüpfungstyp „:name” bearbeiten', - 'updated_link_type' => 'Verknüpfungstyp „:name” aktualisiert', - 'delete_link_type' => 'Verknüpfungstyp „:name” löschen', - 'deleted_link_type' => 'Verknüpfungstyp „:name” gelöscht', - 'stored_new_link_type' => 'Neuen Verknüpfungstyp „:name” speichern', - 'cannot_edit_link_type' => 'Verknüpfungstyp „:name” konnte nicht bearbeite werden', - 'link_type_help_name' => 'd.h. „Kopien”', - 'link_type_help_inward' => 'd.h. „Kopien”', - 'link_type_help_outward' => 'd.h. „wird kopiert durch”', - 'save_connections_by_moving' => 'Speichern Sie die Verknüpfung zwischen diesen Transaktionen, indem Sie sie in einen anderen Verknüpfungstyp verschieben:', - 'do_not_save_connection' => '(Verbindung nicht speichern)', - 'link_transaction' => 'Überweisung verknüpfen', - 'link_to_other_transaction' => 'Diese Buchung mit einer anderen Zahlung verknüpfen', - 'select_transaction_to_link' => 'Wählen Sie eine Buchung aus, mit der Sie diese Buchung verknüpfen möchten. Die Links sind derzeit in Firefly III unbenutzt (abgesehen davon, dass sie gezeigt werden), aber es ist geplant, dies in der Zukunft zu ändern. Verwenden Sie das Suchfeld, um eine Buchung entweder nach Titel oder nach ID auszuwählen. Wenn Sie benutzerdefinierte Verbindungstypen hinzufügen möchten, besuchen Sie den Administrationsbereich.', - 'this_transaction' => 'Diese Transaktion', - 'transaction' => 'Überweisung', - 'comments' => 'Kommentare', - 'link_notes' => 'Alle Notizen, die Sie über den Link speichern möchten.', - 'invalid_link_selection' => 'Diese Buchungen konnten nicht verknüpft werden', - 'selected_transaction' => 'Ausgewählte Buchung', - 'journals_linked' => 'Buchungen wurden verknüpft.', - 'journals_error_linked' => 'Diese Buchungen sind bereits verknüpft.', - 'journals_link_to_self' => 'Sie können eine Buchung nicht mit sich selbst verknüpfen.', - 'journal_links' => 'Buchungsverknüpfungen', - 'this_withdrawal' => 'Diese Ausgabe', - 'this_deposit' => 'Diese Einnahme', - 'this_transfer' => 'Diese Umbuchung', - 'overview_for_link' => 'Übersicht für den Verknüpfungstyp „:name”', - 'source_transaction' => 'Ursprungsüberweisung', - 'link_description' => 'Linkbeschreibung', - 'destination_transaction' => 'Zielüberweisung', - 'delete_journal_link' => 'Löscht die Verknüpfung zwischen :source und :destination', - 'deleted_link' => 'Verknüpfung löschen', + 'journal_link_configuration' => 'Konfiguration der Buchungsverknüpfungen', + 'create_new_link_type' => 'Neuen Verknüpfungstyp erstellen', + 'store_new_link_type' => 'Neuen Verknüpfungstyp speichern', + 'update_link_type' => 'Verknüpfungstyp aktualisieren', + 'edit_link_type' => 'Verknüpfungstyp „:name” bearbeiten', + 'updated_link_type' => 'Verknüpfungstyp „:name” aktualisiert', + 'delete_link_type' => 'Verknüpfungstyp „:name” löschen', + 'deleted_link_type' => 'Verknüpfungstyp „:name” gelöscht', + 'stored_new_link_type' => 'Neuen Verknüpfungstyp „:name” speichern', + 'cannot_edit_link_type' => 'Verknüpfungstyp „:name” konnte nicht bearbeite werden', + 'link_type_help_name' => 'd.h. „Kopien”', + 'link_type_help_inward' => 'd.h. „Kopien”', + 'link_type_help_outward' => 'd.h. „wird kopiert durch”', + 'save_connections_by_moving' => 'Speichern Sie die Verknüpfung zwischen diesen Transaktionen, indem Sie sie in einen anderen Verknüpfungstyp verschieben:', + 'do_not_save_connection' => '(Verbindung nicht speichern)', + 'link_transaction' => 'Überweisung verknüpfen', + 'link_to_other_transaction' => 'Diese Buchung mit einer anderen Zahlung verknüpfen', + 'select_transaction_to_link' => 'Wählen Sie eine Buchung aus, mit der Sie diese Buchung verknüpfen möchten. Die Links sind derzeit in Firefly III unbenutzt (abgesehen davon, dass sie gezeigt werden), aber es ist geplant, dies in der Zukunft zu ändern. Verwenden Sie das Suchfeld, um eine Buchung entweder nach Titel oder nach ID auszuwählen. Wenn Sie benutzerdefinierte Verbindungstypen hinzufügen möchten, besuchen Sie den Administrationsbereich.', + 'this_transaction' => 'Diese Transaktion', + 'transaction' => 'Überweisung', + 'comments' => 'Kommentare', + 'link_notes' => 'Alle Notizen, die Sie über den Link speichern möchten.', + 'invalid_link_selection' => 'Diese Buchungen konnten nicht verknüpft werden', + 'selected_transaction' => 'Ausgewählte Buchung', + 'journals_linked' => 'Buchungen wurden verknüpft.', + 'journals_error_linked' => 'Diese Buchungen sind bereits verknüpft.', + 'journals_link_to_self' => 'Sie können eine Buchung nicht mit sich selbst verknüpfen.', + 'journal_links' => 'Buchungsverknüpfungen', + 'this_withdrawal' => 'Diese Ausgabe', + 'this_deposit' => 'Diese Einnahme', + 'this_transfer' => 'Diese Umbuchung', + 'overview_for_link' => 'Übersicht für den Verknüpfungstyp „:name”', + 'source_transaction' => 'Ursprungsüberweisung', + 'link_description' => 'Linkbeschreibung', + 'destination_transaction' => 'Zielüberweisung', + 'delete_journal_link' => 'Löscht die Verknüpfung zwischen :source und :destination', + 'deleted_link' => 'Verknüpfung löschen', // link translations: - 'Paid_name' => 'Bezahlt', - 'Refund_name' => 'Rückzahlung', - 'Reimbursement_name' => 'Rückzahlung', - 'Related_name' => 'Zugehörig', - 'relates to_inward' => 'bezieht sich auf', - 'is (partially) refunded by_inward' => 'wird (teilweise) erstattet durch', - 'is (partially) paid for by_inward' => 'wird (teilweise) bezahlt durch', - 'is (partially) reimbursed by_inward' => 'wird (teilweise) beglichen durch', - 'inward_transaction' => 'Eingehende Zahlung', - 'outward_transaction' => 'Ausgehende Zahlung', - 'relates to_outward' => 'bezieht sich auf', - '(partially) refunds_outward' => 'erstattet (teilweise)', - '(partially) pays for_outward' => 'zahlt (teilweise) für', - '(partially) reimburses_outward' => 'begleicht (teilweise)', - 'is (partially) refunded by' => 'wird (teilweise) erstattet durch', - 'is (partially) paid for by' => 'wird (teilweise) bezahlt durch', - 'is (partially) reimbursed by' => 'wird (teilweise) beglichen durch', - 'relates to' => 'bezieht sich auf', - '(partially) refunds' => 'erstattet (teilweise)', - '(partially) pays for' => 'zahlt (teilweise) für', - '(partially) reimburses' => 'begleicht (teilweise)', + 'Paid_name' => 'Bezahlt', + 'Refund_name' => 'Rückzahlung', + 'Reimbursement_name' => 'Rückzahlung', + 'Related_name' => 'Zugehörig', + 'relates to_inward' => 'bezieht sich auf', + 'is (partially) refunded by_inward' => 'wird (teilweise) erstattet durch', + 'is (partially) paid for by_inward' => 'wird (teilweise) bezahlt durch', + 'is (partially) reimbursed by_inward' => 'wird (teilweise) beglichen durch', + 'inward_transaction' => 'Eingehende Zahlung', + 'outward_transaction' => 'Ausgehende Zahlung', + 'relates to_outward' => 'bezieht sich auf', + '(partially) refunds_outward' => 'erstattet (teilweise)', + '(partially) pays for_outward' => 'zahlt (teilweise) für', + '(partially) reimburses_outward' => 'begleicht (teilweise)', + 'is (partially) refunded by' => 'wird (teilweise) erstattet durch', + 'is (partially) paid for by' => 'wird (teilweise) bezahlt durch', + 'is (partially) reimbursed by' => 'wird (teilweise) beglichen durch', + 'relates to' => 'bezieht sich auf', + '(partially) refunds' => 'erstattet (teilweise)', + '(partially) pays for' => 'zahlt (teilweise) für', + '(partially) reimburses' => 'begleicht (teilweise)', // split a transaction: - 'splits' => 'Teile', - 'add_another_split' => 'Eine weitere Aufteilung hinzufügen', - 'cannot_edit_opening_balance' => 'Sie können die Eröffnungsbilanz eines Kontos nicht bearbeiten.', - 'no_edit_multiple_left' => 'Sie haben keine gültigen Buchungen zur Bearbeitung ausgewählt.', - 'breadcrumb_convert_group' => 'Buchung umwandeln', - 'convert_invalid_source' => 'Die Quellinformationen sind für Buchung #%d ungültig.', - 'convert_invalid_destination' => 'Die Zielinformationen sind für Buchung „#%d” ungültig.', - 'create_another' => 'Nach dem Speichern hierher zurückkehren, um ein weiteres zu erstellen.', - 'after_update_create_another' => 'Nach dem Aktualisieren hierher zurückkehren, um weiter zu bearbeiten.', - 'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.', - 'reset_after' => 'Formular nach der Übermittlung zurücksetzen', - 'errors_submission' => 'Bei Ihren Eingaben stimmt etwas nicht. Bitte überprüfen Sie die unten stehenden Fehler.', - 'errors_submission_v2' => 'Bei Ihrer Übermittlung ist ein Fehler aufgetreten. Bitte überprüfen Sie die unten stehenden Fehler: {{errorMessage}}', - 'transaction_expand_split' => 'Aufteilung erweitern', - 'transaction_remove_split' => 'Teilung entfernen', - 'transaction_collapse_split' => 'Aufteilung reduzieren', + 'splits' => 'Teile', + 'add_another_split' => 'Eine weitere Aufteilung hinzufügen', + 'cannot_edit_opening_balance' => 'Sie können die Eröffnungsbilanz eines Kontos nicht bearbeiten.', + 'no_edit_multiple_left' => 'Sie haben keine gültigen Buchungen zur Bearbeitung ausgewählt.', + 'breadcrumb_convert_group' => 'Buchung umwandeln', + 'convert_invalid_source' => 'Die Quellinformationen sind für Buchung #%d ungültig.', + 'convert_invalid_destination' => 'Die Zielinformationen sind für Buchung „#%d” ungültig.', + 'create_another' => 'Nach dem Speichern hierher zurückkehren, um ein weiteres zu erstellen.', + 'after_update_create_another' => 'Nach dem Aktualisieren hierher zurückkehren, um weiter zu bearbeiten.', + 'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.', + 'reset_after' => 'Formular nach der Übermittlung zurücksetzen', + 'errors_submission' => 'Bei Ihren Eingaben stimmt etwas nicht. Bitte überprüfen Sie die unten stehenden Fehler.', + 'errors_submission_v2' => 'Bei Ihrer Übermittlung ist ein Fehler aufgetreten. Bitte überprüfen Sie die unten stehenden Fehler: {{errorMessage}}', + 'transaction_expand_split' => 'Aufteilung erweitern', + 'transaction_remove_split' => 'Teilung entfernen', + 'transaction_collapse_split' => 'Aufteilung reduzieren', // object groups - 'default_group_title_name' => '(ohne Gruppierung)', - 'default_group_title_name_plain' => 'ungruppiert', + 'default_group_title_name' => '(ohne Gruppierung)', + 'default_group_title_name_plain' => 'ungruppiert', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Lassen Sie uns jetzt ein Bestandskonto anlegen!', - 'no_accounts_intro_asset' => 'Sie verfügen noch über keine Bestandskonten. Bestandskonten sind Ihre Hauptkonten: Ihr Girokonto, Sparkonto, Gemeinschaftskonto oder sogar Ihre Kreditkarte.', - 'no_accounts_imperative_asset' => 'Um Firefly III nutzen zu können, müssen Sie mindestens ein Bestandskonto anlegen. Lassen Sie uns das jetzt tun:', - 'no_accounts_create_asset' => 'Bestandskonto anlegen', - 'no_accounts_title_expense' => 'Lassen Sie uns jetzt ein Ausgabenkonto anlegen!', - 'no_accounts_intro_expense' => 'Sie besitzen noch keine Ausgabenkonten. Ausgabenkonten sind die Orte, an denen Sie Geld ausgeben, wie z.B. in Geschäften und Supermärkten.', - 'no_accounts_imperative_expense' => 'Ausgabenkonten werden beim Anlegen von Buchungen automatisch angelegt, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eines erstellen:', - 'no_accounts_create_expense' => 'Ein Ausgabenkonto anlegen', - 'no_accounts_title_revenue' => 'Lassen Sie uns jetzt ein Einnahmenkonto anlegen!', - 'no_accounts_intro_revenue' => 'Sie verfügen noch über keine Einnahmekonten. Einnahmekonten sind die Einrichtungen, von denen Sie Geld erhalten, wie z.B. von Ihrem Arbeitgeber.', - 'no_accounts_imperative_revenue' => 'Einnahmekonten werden beim Anlegen von Buchungen automatisch angelegt, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eines erstellen:', - 'no_accounts_create_revenue' => 'Neues Einnahmenkonto erstellen', - 'no_accounts_title_liabilities' => 'Lassen Sie uns eine Verbindlichkeit einrichten!', - 'no_accounts_intro_liabilities' => 'Sie verfügen noch über keine Verbindlichkeiten. Verbindlichkeiten sind die Konten, die Ihre (Studenten-)Darlehen und andere Forderungen verwalten.', - 'no_accounts_imperative_liabilities' => 'Sie müssen diese Funktion nicht verwenden, aber sie kann nützlich sein, wenn Sie diese Dinge im Auge behalten möchten.', - 'no_accounts_create_liabilities' => 'Verbindlichkeit erstellen', - 'no_budgets_title_default' => 'Lassen Sie uns jetzt ein Budget erstellen', - 'no_rules_title_default' => 'Lassen Sie uns eine Regel erstellen', - 'no_budgets_intro_default' => 'Sie verfügen noch über keinen Budgets. Budgets werden verwendet, um Ihre Ausgaben in logische Gruppen zu gliedern, die Sie mit einem weichen Limit versehen können, um Ihre Ausgaben zu begrenzen.', - 'no_rules_intro_default' => 'Sie haben noch keine Regeln. Regeln sind mächtige Automatisierungen, die Transaktionen für Sie verarbeiten können.', - 'no_rules_imperative_default' => 'Regeln können sehr nützlich sein, wenn Sie Transaktionen verwalten. Lassen Sie uns jetzt eine erstellen:', - 'no_budgets_imperative_default' => 'Budgets sind die grundlegenden Instrumente des Finanzmanagements. Lassen Sie uns jetzt eines erstellen:', - 'no_budgets_create_default' => 'Budget erstellen', - 'no_rules_create_default' => 'Eine Regel erstellen', - 'no_categories_title_default' => 'Erstellen wir eine Kategorie!', - 'no_categories_intro_default' => 'Sie verfügen noch über keine Kategorien. Kategorien werden verwendet, um Ihre Buchungen zu verfeinern und mit der entsprechenden Kategorie zu kennzeichnen.', - 'no_categories_imperative_default' => 'Kategorien werden automatisch angelegt, wenn Sie Buchungen anlegen, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eine erstellen:', - 'no_categories_create_default' => 'Eine Kategorie erstellen', - 'no_tags_title_default' => 'Lassen Sie uns jetzt ein Schlagwort anlegen!', - 'no_tags_intro_default' => 'Sie haben noch keine Schlagwörter angelegt. Schlagwörter werden verwendet, um Ihre Umsätze zu verfeinern und mit bestimmten Schlüsselwörtern zu versehen.', - 'no_tags_imperative_default' => 'Schlagwörter werden automatisch erstellt, wenn Sie Buchungen anlegen, aber Sie können sie auch manuell erstellen. Lassen Sie uns jetzt eines erstellen:', - 'no_tags_create_default' => 'Neues Schlagwort erstellen', - 'no_transactions_title_withdrawal' => 'Lassen Sie uns jetzt eine Auslage erstellen!', - 'no_transactions_intro_withdrawal' => 'Sie haben noch keine Ausgaben verbucht. Sie sollten Ausgabenseinträge erstellen, um Ihre Finanzen zu verwalten.', - 'no_transactions_imperative_withdrawal' => 'Haben Sie Geld ausgegeben? Dann sollten Sie es aufschreiben:', - 'no_transactions_create_withdrawal' => 'Eine neue Ausgabe erstellen', - 'no_transactions_title_deposit' => 'Lassen Sie uns nun einige Einnahmen erstellen!', - 'no_transactions_intro_deposit' => 'Sie haben noch keine Einnahmen verbucht. Sie sollten Einkommenseinträge erstellen, um Ihre Finanzen zu verwalten.', - 'no_transactions_imperative_deposit' => 'Haben Sie Geld erhalten? Dann sollten Sie es aufschreiben:', - 'no_transactions_create_deposit' => 'Eine Einnahme erstellen', - 'no_transactions_title_transfers' => 'Erstellen wir eine Umbuchung!', - 'no_transactions_intro_transfers' => 'Sie verfügen noch über keine Umbuchungen. Wenn Sie Geld zwischen Bestandskonten verschieben, wird es als Umbuchung erfasst.', - 'no_transactions_imperative_transfers' => 'Haben Sie Geld umgebucht? Dann sollten Sie es eintragen:', - 'no_transactions_create_transfers' => 'Eine Umbuchung erstellen', - 'no_piggies_title_default' => 'Lassen Sie uns nun ein Sparschwein erstellen!', - 'no_piggies_intro_default' => 'Sie haben noch keine Sparschweine. Sie können Sparschweine erstellen, um Ihre Ersparnisse zu teilen und den Überblick darüber zu behalten, wofür Sie sparen.', - 'no_piggies_imperative_default' => 'Haben Sie Dinge, auf die Sie sparen? Erstellen Sie ein Sparschwein und behalten Sie den Überblick:', - 'no_piggies_create_default' => 'Ein neues Sparschwein erstellen', - 'no_bills_title_default' => 'Lassen Sie uns nun eine Rechnung erstellen!', - 'no_bills_intro_default' => 'Sie haben noch keine Rechnungen. Sie können Rechnungen erstellen, um laufende Ausgaben, wie zum Beispiel Ihre Versicherung oder Miete, nachzuverfolgen.', - 'no_bills_imperative_default' => 'Haben Sie regelmäßige Rechnungen? Erstellen Sie eine Rechnung und verfolgen Sie Ihre Zahlungen:', - 'no_bills_create_default' => 'Eine Rechnung erstellen', + 'no_accounts_title_asset' => 'Lassen Sie uns jetzt ein Bestandskonto anlegen!', + 'no_accounts_intro_asset' => 'Sie verfügen noch über keine Bestandskonten. Bestandskonten sind Ihre Hauptkonten: Ihr Girokonto, Sparkonto, Gemeinschaftskonto oder sogar Ihre Kreditkarte.', + 'no_accounts_imperative_asset' => 'Um Firefly III nutzen zu können, müssen Sie mindestens ein Bestandskonto anlegen. Lassen Sie uns das jetzt tun:', + 'no_accounts_create_asset' => 'Bestandskonto anlegen', + 'no_accounts_title_expense' => 'Lassen Sie uns jetzt ein Ausgabenkonto anlegen!', + 'no_accounts_intro_expense' => 'Sie besitzen noch keine Ausgabenkonten. Ausgabenkonten sind die Orte, an denen Sie Geld ausgeben, wie z.B. in Geschäften und Supermärkten.', + 'no_accounts_imperative_expense' => 'Ausgabenkonten werden beim Anlegen von Buchungen automatisch angelegt, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eines erstellen:', + 'no_accounts_create_expense' => 'Ein Ausgabenkonto anlegen', + 'no_accounts_title_revenue' => 'Lassen Sie uns jetzt ein Einnahmenkonto anlegen!', + 'no_accounts_intro_revenue' => 'Sie verfügen noch über keine Einnahmekonten. Einnahmekonten sind die Einrichtungen, von denen Sie Geld erhalten, wie z.B. von Ihrem Arbeitgeber.', + 'no_accounts_imperative_revenue' => 'Einnahmekonten werden beim Anlegen von Buchungen automatisch angelegt, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eines erstellen:', + 'no_accounts_create_revenue' => 'Neues Einnahmenkonto erstellen', + 'no_accounts_title_liabilities' => 'Lassen Sie uns eine Verbindlichkeit einrichten!', + 'no_accounts_intro_liabilities' => 'Sie verfügen noch über keine Verbindlichkeiten. Verbindlichkeiten sind die Konten, die Ihre (Studenten-)Darlehen und andere Forderungen verwalten.', + 'no_accounts_imperative_liabilities' => 'Sie müssen diese Funktion nicht verwenden, aber sie kann nützlich sein, wenn Sie diese Dinge im Auge behalten möchten.', + 'no_accounts_create_liabilities' => 'Verbindlichkeit erstellen', + 'no_budgets_title_default' => 'Lassen Sie uns jetzt ein Budget erstellen', + 'no_rules_title_default' => 'Lassen Sie uns eine Regel erstellen', + 'no_budgets_intro_default' => 'Sie verfügen noch über keinen Budgets. Budgets werden verwendet, um Ihre Ausgaben in logische Gruppen zu gliedern, die Sie mit einem weichen Limit versehen können, um Ihre Ausgaben zu begrenzen.', + 'no_rules_intro_default' => 'Sie haben noch keine Regeln. Regeln sind mächtige Automatisierungen, die Transaktionen für Sie verarbeiten können.', + 'no_rules_imperative_default' => 'Regeln können sehr nützlich sein, wenn Sie Transaktionen verwalten. Lassen Sie uns jetzt eine erstellen:', + 'no_budgets_imperative_default' => 'Budgets sind die grundlegenden Instrumente des Finanzmanagements. Lassen Sie uns jetzt eines erstellen:', + 'no_budgets_create_default' => 'Budget erstellen', + 'no_rules_create_default' => 'Eine Regel erstellen', + 'no_categories_title_default' => 'Erstellen wir eine Kategorie!', + 'no_categories_intro_default' => 'Sie verfügen noch über keine Kategorien. Kategorien werden verwendet, um Ihre Buchungen zu verfeinern und mit der entsprechenden Kategorie zu kennzeichnen.', + 'no_categories_imperative_default' => 'Kategorien werden automatisch angelegt, wenn Sie Buchungen anlegen, können aber auch manuell angelegt werden. Lassen Sie uns jetzt eine erstellen:', + 'no_categories_create_default' => 'Eine Kategorie erstellen', + 'no_tags_title_default' => 'Lassen Sie uns jetzt ein Schlagwort anlegen!', + 'no_tags_intro_default' => 'Sie haben noch keine Schlagwörter angelegt. Schlagwörter werden verwendet, um Ihre Umsätze zu verfeinern und mit bestimmten Schlüsselwörtern zu versehen.', + 'no_tags_imperative_default' => 'Schlagwörter werden automatisch erstellt, wenn Sie Buchungen anlegen, aber Sie können sie auch manuell erstellen. Lassen Sie uns jetzt eines erstellen:', + 'no_tags_create_default' => 'Neues Schlagwort erstellen', + 'no_transactions_title_withdrawal' => 'Lassen Sie uns jetzt eine Auslage erstellen!', + 'no_transactions_intro_withdrawal' => 'Sie haben noch keine Ausgaben verbucht. Sie sollten Ausgabenseinträge erstellen, um Ihre Finanzen zu verwalten.', + 'no_transactions_imperative_withdrawal' => 'Haben Sie Geld ausgegeben? Dann sollten Sie es aufschreiben:', + 'no_transactions_create_withdrawal' => 'Eine neue Ausgabe erstellen', + 'no_transactions_title_deposit' => 'Lassen Sie uns nun einige Einnahmen erstellen!', + 'no_transactions_intro_deposit' => 'Sie haben noch keine Einnahmen verbucht. Sie sollten Einkommenseinträge erstellen, um Ihre Finanzen zu verwalten.', + 'no_transactions_imperative_deposit' => 'Haben Sie Geld erhalten? Dann sollten Sie es aufschreiben:', + 'no_transactions_create_deposit' => 'Eine Einnahme erstellen', + 'no_transactions_title_transfers' => 'Erstellen wir eine Umbuchung!', + 'no_transactions_intro_transfers' => 'Sie verfügen noch über keine Umbuchungen. Wenn Sie Geld zwischen Bestandskonten verschieben, wird es als Umbuchung erfasst.', + 'no_transactions_imperative_transfers' => 'Haben Sie Geld umgebucht? Dann sollten Sie es eintragen:', + 'no_transactions_create_transfers' => 'Eine Umbuchung erstellen', + 'no_piggies_title_default' => 'Lassen Sie uns nun ein Sparschwein erstellen!', + 'no_piggies_intro_default' => 'Sie haben noch keine Sparschweine. Sie können Sparschweine erstellen, um Ihre Ersparnisse zu teilen und den Überblick darüber zu behalten, wofür Sie sparen.', + 'no_piggies_imperative_default' => 'Haben Sie Dinge, auf die Sie sparen? Erstellen Sie ein Sparschwein und behalten Sie den Überblick:', + 'no_piggies_create_default' => 'Ein neues Sparschwein erstellen', + 'no_bills_title_default' => 'Lassen Sie uns nun eine Rechnung erstellen!', + 'no_bills_intro_default' => 'Sie haben noch keine Rechnungen. Sie können Rechnungen erstellen, um laufende Ausgaben, wie zum Beispiel Ihre Versicherung oder Miete, nachzuverfolgen.', + 'no_bills_imperative_default' => 'Haben Sie regelmäßige Rechnungen? Erstellen Sie eine Rechnung und verfolgen Sie Ihre Zahlungen:', + 'no_bills_create_default' => 'Eine Rechnung erstellen', // recurring transactions - 'create_right_now' => 'Jetzt erstellen', - 'no_new_transaction_in_recurrence' => 'Es wurde keine neue Buchung erstellt. Vielleicht wurde sie für dieses Datum bereits ausgelöst?', - 'recurrences' => 'Daueraufträge', - 'repeat_until_in_past' => 'Diese wiederkehrende Buchung wiederholte ab dem :date nicht mehr.', - 'recurring_calendar_view' => 'Kalender', - 'no_recurring_title_default' => 'Lassen Sie uns einen Dauerauftrag erstellen!', - 'no_recurring_intro_default' => 'Sie haben noch keine Daueraufträge erstellt. Diese können Sie nutzen, um automatisch Buchungen von Firefly III erstellen zu lassen.', - 'no_recurring_imperative_default' => 'Dies ist eine sehr fortschrittliche Funktion, welche aber sehr nützlich sein kann. Stellen Sie sicher, dass Sie die Dokumentation (❓-Symbol in der oberen rechten Ecke) lesen, bevor Sie fortfahren.', - 'no_recurring_create_default' => 'Dauerauftrag erstellen', - 'make_new_recurring' => 'Dauerauftrag erstellen', - 'recurring_daily' => 'Täglich', - 'recurring_weekly' => 'Wöchentlich am :weekday', - 'recurring_weekly_skip' => 'Jede :skip(./././.) Woche am :weekday', - 'recurring_monthly' => 'An jedem :dayOfMonth. Tag des Monats', - 'recurring_monthly_skip' => 'Jeden :skip(./././.) Monat am :dayOfMonth(./././.) Tag', - 'recurring_ndom' => 'An jedem :dayOfMonth. :weekday', - 'recurring_yearly' => 'Jährlich am :date', - 'overview_for_recurrence' => 'Übersicht der Daueraufträge „:title”', - 'warning_duplicates_repetitions' => 'In seltenen Fällen werden die Daten zweimal in dieser Liste angezeigt. Dies kann passieren, wenn mehrere Wiederholungen aufeinandertreffen. Firefly III erzeugt immer eine Transaktion pro Tag.', - 'created_transactions' => 'Ähnliche Buchungen', - 'expected_withdrawals' => 'Erwartete Rückzahlungen', - 'expected_deposits' => 'Erwartete Einnahmen', - 'expected_transfers' => 'Erwartete Überweisungen', - 'created_withdrawals' => 'Erstellte Rückzahlungen', - 'created_deposits' => 'Erstellte Einnahmen', - 'created_transfers' => 'Erstellte Überweisungen', - 'recurring_info' => 'Dauerauftrag :count/:total', - 'created_from_recurrence' => 'Erstellt aus Dauerauftrag „:title” (#:id)', - 'recurring_never_cron' => 'Es scheint, dass der Cron-Job, der notwendig ist, um Daueraufträge zu unterstützen, nie ausgeführt wurde. Das ist natürlich normal, wenn Sie gerade Firefly III installiert haben, aber dies sollte so schnell wie möglich eingerichtet werden. Bitte besuchen Sie die Hilfeseiten über das ❓-Symbol in der oberen rechten Ecke der Seite.', - 'recurring_cron_long_ago' => 'Es sieht so aus, als wäre es mehr als 36 Stunden her, dass der Cron-Job zur Unterstützung von Daueraufträgen zum letzten Mal ausgeführt wurde. Sind Sie sicher, dass es richtig eingestellt ist? Bitte schauen Sie sich die Hilfeseiten über dem ❓-Symbol oben rechts auf der Seite an.', + 'create_right_now' => 'Jetzt erstellen', + 'no_new_transaction_in_recurrence' => 'Es wurde keine neue Buchung erstellt. Vielleicht wurde sie für dieses Datum bereits ausgelöst?', + 'recurrences' => 'Daueraufträge', + 'repeat_until_in_past' => 'Diese wiederkehrende Buchung wiederholte ab dem :date nicht mehr.', + 'recurring_calendar_view' => 'Kalender', + 'no_recurring_title_default' => 'Lassen Sie uns einen Dauerauftrag erstellen!', + 'no_recurring_intro_default' => 'Sie haben noch keine Daueraufträge erstellt. Diese können Sie nutzen, um automatisch Buchungen von Firefly III erstellen zu lassen.', + 'no_recurring_imperative_default' => 'Dies ist eine sehr fortschrittliche Funktion, welche aber sehr nützlich sein kann. Stellen Sie sicher, dass Sie die Dokumentation (❓-Symbol in der oberen rechten Ecke) lesen, bevor Sie fortfahren.', + 'no_recurring_create_default' => 'Dauerauftrag erstellen', + 'make_new_recurring' => 'Dauerauftrag erstellen', + 'recurring_daily' => 'Täglich', + 'recurring_weekly' => 'Wöchentlich am :weekday', + 'recurring_weekly_skip' => 'Jede :skip(./././.) Woche am :weekday', + 'recurring_monthly' => 'An jedem :dayOfMonth. Tag des Monats', + 'recurring_monthly_skip' => 'Jeden :skip(./././.) Monat am :dayOfMonth(./././.) Tag', + 'recurring_ndom' => 'An jedem :dayOfMonth. :weekday', + 'recurring_yearly' => 'Jährlich am :date', + 'overview_for_recurrence' => 'Übersicht der Daueraufträge „:title”', + 'warning_duplicates_repetitions' => 'In seltenen Fällen werden die Daten zweimal in dieser Liste angezeigt. Dies kann passieren, wenn mehrere Wiederholungen aufeinandertreffen. Firefly III erzeugt immer eine Transaktion pro Tag.', + 'created_transactions' => 'Ähnliche Buchungen', + 'expected_withdrawals' => 'Erwartete Rückzahlungen', + 'expected_deposits' => 'Erwartete Einnahmen', + 'expected_transfers' => 'Erwartete Überweisungen', + 'created_withdrawals' => 'Erstellte Rückzahlungen', + 'created_deposits' => 'Erstellte Einnahmen', + 'created_transfers' => 'Erstellte Überweisungen', + 'recurring_info' => 'Dauerauftrag :count/:total', + 'created_from_recurrence' => 'Erstellt aus Dauerauftrag „:title” (#:id)', + 'recurring_never_cron' => 'Es scheint, dass der Cron-Job, der notwendig ist, um Daueraufträge zu unterstützen, nie ausgeführt wurde. Das ist natürlich normal, wenn Sie gerade Firefly III installiert haben, aber dies sollte so schnell wie möglich eingerichtet werden. Bitte besuchen Sie die Hilfeseiten über das ❓-Symbol in der oberen rechten Ecke der Seite.', + 'recurring_cron_long_ago' => 'Es sieht so aus, als wäre es mehr als 36 Stunden her, dass der Cron-Job zur Unterstützung von Daueraufträgen zum letzten Mal ausgeführt wurde. Sind Sie sicher, dass es richtig eingestellt ist? Bitte schauen Sie sich die Hilfeseiten über dem ❓-Symbol oben rechts auf der Seite an.', - 'create_new_recurrence' => 'Neuen Dauerauftrag erstellen', - 'help_first_date' => 'Geben Sie die erste erwartete Wiederholung an. Zeitpunkt muss in der Zukunft liegen.', - 'help_first_date_no_past' => 'Geben Sie die erste erwartete Wiederholung an. Firefly III erzeugt keine Buchungen die in der Vergangenheit liegen.', - 'no_currency' => '(ohne Währung)', - 'mandatory_for_recurring' => 'Erforderliche Wiederholungsinformationen', - 'mandatory_for_transaction' => 'Erforderliche Buchungsinformationen', - 'optional_for_recurring' => 'Optionale Wiederholungsinformationen', - 'optional_for_transaction' => 'Optionale Buchungsinformationen', - 'change_date_other_options' => 'Ändern Sie das „erste Datum”, um weitere Optionen anzuzeigen.', - 'mandatory_fields_for_tranaction' => 'Diese Werte enden in der/den zu erstellenden Buchung(en)', - 'click_for_calendar' => 'Klicken Sie hier für einen Kalender, der Ihnen anzeigt, wann sich die Buchung wiederholen würde.', - 'repeat_forever' => 'Wiederholt sich für immer', - 'repeat_until_date' => 'Wiederholen bis Datum', - 'repeat_times' => 'Wiederholen Sie mehrmals', - 'recurring_skips_one' => 'Alle anderen', - 'recurring_skips_more' => 'Überspringt :count Vorgänge', - 'store_new_recurrence' => 'Dauerauftrag speichern', - 'stored_new_recurrence' => 'Dauerauftrag „:title” erfolgreich gespeichert.', - 'edit_recurrence' => 'Dauerauftrag „:title” bearbeiten', - 'recurring_repeats_until' => 'Wiederholt sich bis :date', - 'recurring_repeats_forever' => 'Wiederholt sich für immer', - 'recurring_repeats_x_times' => 'Wiederholt :count mal|Wiederholt :count mal', - 'update_recurrence' => 'Dauerauftrag aktualisieren', - 'updated_recurrence' => 'Dauerauftrag ":title" aktualisiert', - 'recurrence_is_inactive' => 'Dieser Dauerauftrag ist nicht aktiv und erzeugt keine neuen Buchungen.', - 'delete_recurring' => 'Dauerauftrag „:title” löschen', - 'new_recurring_transaction' => 'Neuer Dauerauftrag', - 'help_weekend' => 'Was sollte Firefly III tun, wenn der Dauerauftrag auf einen Samstag oder Sonntag fällt?', - 'do_nothing' => 'Einfach die Buchung anlegen', - 'skip_transaction' => 'Ereignis überspringen', - 'jump_to_friday' => 'Die Buchung stattdessen am vorhergehenden Freitag ausführen', - 'jump_to_monday' => 'Die Buchung stattdessen am darauffolgenden Montag ausführen', - 'will_jump_friday' => 'Wird am Freitag statt am Wochenende ausgeführt.', - 'will_jump_monday' => 'Wird am Montag statt am Wochenende ausgeführt.', - 'except_weekends' => 'Außer an Wochenenden', - 'recurrence_deleted' => 'Dauerauftrag „:title” gelöscht', + 'create_new_recurrence' => 'Neuen Dauerauftrag erstellen', + 'help_first_date' => 'Geben Sie die erste erwartete Wiederholung an. Zeitpunkt muss in der Zukunft liegen.', + 'help_first_date_no_past' => 'Geben Sie die erste erwartete Wiederholung an. Firefly III erzeugt keine Buchungen die in der Vergangenheit liegen.', + 'no_currency' => '(ohne Währung)', + 'mandatory_for_recurring' => 'Erforderliche Wiederholungsinformationen', + 'mandatory_for_transaction' => 'Erforderliche Buchungsinformationen', + 'optional_for_recurring' => 'Optionale Wiederholungsinformationen', + 'optional_for_transaction' => 'Optionale Buchungsinformationen', + 'change_date_other_options' => 'Ändern Sie das „erste Datum”, um weitere Optionen anzuzeigen.', + 'mandatory_fields_for_tranaction' => 'Diese Werte enden in der/den zu erstellenden Buchung(en)', + 'click_for_calendar' => 'Klicken Sie hier für einen Kalender, der Ihnen anzeigt, wann sich die Buchung wiederholen würde.', + 'repeat_forever' => 'Wiederholt sich für immer', + 'repeat_until_date' => 'Wiederholen bis Datum', + 'repeat_times' => 'Wiederholen Sie mehrmals', + 'recurring_skips_one' => 'Alle anderen', + 'recurring_skips_more' => 'Überspringt :count Vorgänge', + 'store_new_recurrence' => 'Dauerauftrag speichern', + 'stored_new_recurrence' => 'Dauerauftrag „:title” erfolgreich gespeichert.', + 'edit_recurrence' => 'Dauerauftrag „:title” bearbeiten', + 'recurring_repeats_until' => 'Wiederholt sich bis :date', + 'recurring_repeats_forever' => 'Wiederholt sich für immer', + 'recurring_repeats_x_times' => 'Wiederholt :count mal|Wiederholt :count mal', + 'update_recurrence' => 'Dauerauftrag aktualisieren', + 'updated_recurrence' => 'Dauerauftrag ":title" aktualisiert', + 'recurrence_is_inactive' => 'Dieser Dauerauftrag ist nicht aktiv und erzeugt keine neuen Buchungen.', + 'delete_recurring' => 'Dauerauftrag „:title” löschen', + 'new_recurring_transaction' => 'Neuer Dauerauftrag', + 'help_weekend' => 'Was sollte Firefly III tun, wenn der Dauerauftrag auf einen Samstag oder Sonntag fällt?', + 'do_nothing' => 'Einfach die Buchung anlegen', + 'skip_transaction' => 'Ereignis überspringen', + 'jump_to_friday' => 'Die Buchung stattdessen am vorhergehenden Freitag ausführen', + 'jump_to_monday' => 'Die Buchung stattdessen am darauffolgenden Montag ausführen', + 'will_jump_friday' => 'Wird am Freitag statt am Wochenende ausgeführt.', + 'will_jump_monday' => 'Wird am Montag statt am Wochenende ausgeführt.', + 'except_weekends' => 'Außer an Wochenenden', + 'recurrence_deleted' => 'Dauerauftrag „:title” gelöscht', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Guthaben (:currency)', - 'box_spent_in_currency' => 'Ausgaben (:currency)', - 'box_earned_in_currency' => 'Einnahmen (:currency)', - 'box_budgeted_in_currency' => 'Eingeplant (:currency)', - 'box_bill_paid_in_currency' => 'Gezahlte Rechnungen (:currency)', - 'box_bill_unpaid_in_currency' => 'Unbezahlte Rechnungen (:currency)', - 'box_left_to_spend_in_currency' => 'Verbleibend zum Ausgeben (:currency)', - 'box_net_worth_in_currency' => 'Eigenkapital (:currency)', - 'box_spend_per_day' => 'Pro Tag verbleibend zum Ausgeben: :amount', + 'box_balance_in_currency' => 'Guthaben (:currency)', + 'box_spent_in_currency' => 'Ausgaben (:currency)', + 'box_earned_in_currency' => 'Einnahmen (:currency)', + 'box_budgeted_in_currency' => 'Eingeplant (:currency)', + 'box_bill_paid_in_currency' => 'Gezahlte Rechnungen (:currency)', + 'box_bill_unpaid_in_currency' => 'Unbezahlte Rechnungen (:currency)', + 'box_left_to_spend_in_currency' => 'Verbleibend zum Ausgeben (:currency)', + 'box_net_worth_in_currency' => 'Eigenkapital (:currency)', + 'box_spend_per_day' => 'Pro Tag verbleibend zum Ausgeben: :amount', // debug page - 'debug_page' => 'Fehlersuche-Seite', - 'debug_submit_instructions' => 'Wenn Sie auf Probleme stoßen, können Sie die Informationen in diesem Feld als Fehlerbehebungsinformationen verwenden. Bitte kopieren Sie die Informationen per Kopieren und Einfügen in ein neues oder bestehendes GitHub issue. Dadurch wird eine übersichtliche Tabelle erzeugt, die zur schnellen Diagnose Ihres Problems verwendet werden kann.', - 'debug_pretty_table' => 'Wenn Sie das Feld unten in eine GitHub-Ausgabe kopieren/einfügen, wird eine Tabelle generiert. Bitte diesen Text nicht in Backticks oder Anführungszeichen setzen.', - 'debug_additional_data' => 'Sie können auch den Inhalt des Feldes unten freigeben. Sie können ihn auch durch Kopieren und Einfügen in eine neue oder bestehende GitHub-Ausgabe einfügen. Der Inhalt dieses Feldes kann jedoch private Informationen wie Kontonamen, Transaktionsdetails oder E-Mail-Adressen enthalten.', + 'debug_page' => 'Fehlersuche-Seite', + 'debug_submit_instructions' => 'Wenn Sie auf Probleme stoßen, können Sie die Informationen in diesem Feld als Fehlerbehebungsinformationen verwenden. Bitte kopieren Sie die Informationen per Kopieren und Einfügen in ein neues oder bestehendes GitHub issue. Dadurch wird eine übersichtliche Tabelle erzeugt, die zur schnellen Diagnose Ihres Problems verwendet werden kann.', + 'debug_pretty_table' => 'Wenn Sie das Feld unten in eine GitHub-Ausgabe kopieren/einfügen, wird eine Tabelle generiert. Bitte diesen Text nicht in Backticks oder Anführungszeichen setzen.', + 'debug_additional_data' => 'Sie können auch den Inhalt des Feldes unten freigeben. Sie können ihn auch durch Kopieren und Einfügen in eine neue oder bestehende GitHub-Ausgabe einfügen. Der Inhalt dieses Feldes kann jedoch private Informationen wie Kontonamen, Transaktionsdetails oder E-Mail-Adressen enthalten.', // object groups - 'object_groups_menu_bar' => 'Gruppen', - 'object_groups_page_title' => 'Gruppen', - 'object_groups_breadcrumb' => 'Gruppen', - 'object_groups_index' => 'Übersicht', - 'object_groups' => 'Gruppen', - 'object_groups_empty_explain' => 'Einige Dinge in Firefly III lassen sich in Gruppen einteilen. Sparschweine zum Beispiel verfügen über ein Feld "Gruppe" in den Bearbeitungs- und Erstellungsmasken. Wenn Sie dieses Feld einstellen, können Sie die Namen und die Reihenfolge der Gruppen auf dieser Seite bearbeiten. Weitere Informationen finden Sie auf den Hilfeseiten oben rechts unter dem ❓-Symbol.', - 'object_group_title' => 'Titel', - 'edit_object_group' => 'Gruppe „:title” bearbeiten', - 'delete_object_group' => 'Gruppe „:title” löschen', - 'update_object_group' => 'Gruppe aktualisieren', - 'updated_object_group' => 'Gruppe „:title” erfolgreich aktualisiert', - 'deleted_object_group' => 'Gruppe „:title” erfolgreich entfernt', - 'object_group' => 'Gruppe', + 'object_groups_menu_bar' => 'Gruppen', + 'object_groups_page_title' => 'Gruppen', + 'object_groups_breadcrumb' => 'Gruppen', + 'object_groups_index' => 'Übersicht', + 'object_groups' => 'Gruppen', + 'object_groups_empty_explain' => 'Einige Dinge in Firefly III lassen sich in Gruppen einteilen. Sparschweine zum Beispiel verfügen über ein Feld "Gruppe" in den Bearbeitungs- und Erstellungsmasken. Wenn Sie dieses Feld einstellen, können Sie die Namen und die Reihenfolge der Gruppen auf dieser Seite bearbeiten. Weitere Informationen finden Sie auf den Hilfeseiten oben rechts unter dem ❓-Symbol.', + 'object_group_title' => 'Titel', + 'edit_object_group' => 'Gruppe „:title” bearbeiten', + 'delete_object_group' => 'Gruppe „:title” löschen', + 'update_object_group' => 'Gruppe aktualisieren', + 'updated_object_group' => 'Gruppe „:title” erfolgreich aktualisiert', + 'deleted_object_group' => 'Gruppe „:title” erfolgreich entfernt', + 'object_group' => 'Gruppe', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit-Logeinträge', - 'ale_action_log_add' => ':amount zum Sparschwein ":name" hinzugefügt', - 'ale_action_log_remove' => ':amount aus Sparschwein ":name " entfernt', - 'ale_action_clear_budget' => 'Aus Budget entfernt', - 'ale_action_update_group_title' => 'Titel der Buchungsgruppe aktualisiert', - 'ale_action_update_date' => 'Buchungsdatum aktualisiert', - 'ale_action_update_order' => 'Buchungsreihenfolge aktualisiert', - 'ale_action_clear_category' => 'Aus Kategorie entfernt', - 'ale_action_clear_notes' => 'Notiz entfernt', - 'ale_action_clear_tag' => 'Schlagwort geleert', - 'ale_action_clear_all_tags' => 'Alle Schlagwörter geleert', - 'ale_action_set_bill' => 'Verknüpft mit Rechnung', - 'ale_action_switch_accounts' => 'Quell- und Zielkonto getauscht', - 'ale_action_set_budget' => 'Budget festlegen', - 'ale_action_set_category' => 'Kategorie festlegen', - 'ale_action_set_source' => 'Quellkonto festlegen', - 'ale_action_set_destination' => 'Zielkonto festlegen', - 'ale_action_update_transaction_type' => 'Buchungstyp geändert', - 'ale_action_update_notes' => 'Notizen aktualisiert', - 'ale_action_update_description' => 'Beschreibung geändert', - 'ale_action_add_to_piggy' => 'Sparschwein', - 'ale_action_remove_from_piggy' => 'Sparschwein', - 'ale_action_add_tag' => 'Schlagwort hinzugefügt', - 'ale_action_update_amount' => 'Betrag aktualisiert', + 'audit_log_entries' => 'Audit-Logeinträge', + 'ale_action_log_add' => ':amount zum Sparschwein ":name" hinzugefügt', + 'ale_action_log_remove' => ':amount aus Sparschwein ":name " entfernt', + 'ale_action_clear_budget' => 'Aus Budget entfernt', + 'ale_action_update_group_title' => 'Titel der Buchungsgruppe aktualisiert', + 'ale_action_update_date' => 'Buchungsdatum aktualisiert', + 'ale_action_update_order' => 'Buchungsreihenfolge aktualisiert', + 'ale_action_clear_category' => 'Aus Kategorie entfernt', + 'ale_action_clear_notes' => 'Notiz entfernt', + 'ale_action_clear_tag' => 'Schlagwort geleert', + 'ale_action_clear_all_tags' => 'Alle Schlagwörter geleert', + 'ale_action_set_bill' => 'Verknüpft mit Rechnung', + 'ale_action_switch_accounts' => 'Quell- und Zielkonto getauscht', + 'ale_action_set_budget' => 'Budget festlegen', + 'ale_action_set_category' => 'Kategorie festlegen', + 'ale_action_set_source' => 'Quellkonto festlegen', + 'ale_action_set_destination' => 'Zielkonto festlegen', + 'ale_action_update_transaction_type' => 'Buchungstyp geändert', + 'ale_action_update_notes' => 'Notizen aktualisiert', + 'ale_action_update_description' => 'Beschreibung geändert', + 'ale_action_add_to_piggy' => 'Sparschwein', + 'ale_action_remove_from_piggy' => 'Sparschwein', + 'ale_action_add_tag' => 'Schlagwort hinzugefügt', + 'ale_action_update_amount' => 'Betrag aktualisiert', // dashboard - 'enable_auto_convert' => 'Währungsumrechnung aktivieren', - 'disable_auto_convert' => 'Währungsumrechnung deaktivieren', + 'enable_auto_convert' => 'Währungsumrechnung aktivieren', + 'disable_auto_convert' => 'Währungsumrechnung deaktivieren', ]; /* diff --git a/resources/lang/de_DE/validation.php b/resources/lang/de_DE/validation.php index b66604f0ca..44ed389d31 100644 --- a/resources/lang/de_DE/validation.php +++ b/resources/lang/de_DE/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Für diese Verwaltung haben Sie nicht die erforderlichen Zugriffsrechte.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/el_GR/firefly.php b/resources/lang/el_GR/firefly.php index d5b6eb45e8..ce85b16a9b 100644 --- a/resources/lang/el_GR/firefly.php +++ b/resources/lang/el_GR/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Κλείσιμο', - 'actions' => 'Ενέργειες', - 'edit' => 'Επεξεργασία', - 'delete' => 'Διαγραφή', - 'split' => 'Διαχωρισμός', - 'single_split' => 'Διαχωρισμός', - 'clone' => 'Κλωνοποίηση', - 'clone_and_edit' => 'Κλωνοποίηση και επεξεργασία', - 'confirm_action' => 'Επιβεβαίωση ενέργειας', - 'last_seven_days' => 'Τελευταίες επτά ημέρες', - 'last_thirty_days' => 'Τελευταίες τριάντα ημέρες', - 'last_180_days' => 'Τελευταίες 180 ημέρες', - 'month_to_date' => 'Μήνας μέχρι σήμερα', - 'year_to_date' => 'Έτος μέχρι σήμερα', - 'YTD' => 'ΤΡΕΧΟΝ ΕΤΟΣ', - 'welcome_back' => 'Τι παίζει;', - 'everything' => 'Όλα', - 'today' => 'σήμερα', - 'customRange' => 'Προσαρμοσμένο εύρος', - 'date_range' => 'Ημερολογιακό Εύρος', - 'apply' => 'Εφαρμογή', - 'select_date' => 'Επιλογή ημερομηνίας..', - 'cancel' => 'Άκυρο', - 'from' => 'Από', - 'to' => 'Προς', - 'structure' => 'Δομή', - 'help_translating' => 'Αυτό το βοηθητικό κείμενο δεν είναι ακόμη διαθέσιμο στη γλώσσα σας.Θα βοηθήσετε στη μετάφραση;', - 'showEverything' => 'Εμφάνιση όλων', - 'never' => 'Ποτέ', - 'no_results_for_empty_search' => 'Η αναζήτησή σας ήταν κενή, οπότε δε βρέθηκε τίποτα.', - 'removed_amount' => 'Αφαιρέθηκαν :amount', - 'added_amount' => 'Προστέθηκαν :amount', - 'asset_account_role_help' => 'Όποιες επιπλέον επιλογές προκύψουν από την προτίμησή σας μπορούν να ρυθμιστούν αργότερα.', - 'Opening balance' => 'Υπόλοιπο έναρξης', - 'create_new_stuff' => 'Νέα καταχώρηση', - 'new_withdrawal' => 'Νέα ανάληψη', - 'create_new_transaction' => 'Δημιουργία μιας νέας συναλλαγής', - 'sidebar_frontpage_create' => 'Δημιουργία', - 'new_transaction' => 'Νέα συναλλαγή', - 'no_rules_for_bill' => 'Αυτό το πάγιο έξοδο δεν έχει σχετιζόμενους κανόνες.', - 'go_to_asset_accounts' => 'Δείτε τους λογαριασμούς κεφαλαίου σας', - 'go_to_budgets' => 'Πηγαίνετε στους προϋπολογισμούς σας', - 'go_to_withdrawals' => 'Πηγαίνετε στις αναλήψεις σας', - 'clones_journal_x' => 'Αυτή η συναλλαγή είναι ένας κλώνος του ":description" (#:id)', - 'go_to_categories' => 'Πηγαίνετε στις κατηγορίες σας', - 'go_to_bills' => 'Πηγαίνετε στα πάγια έξοδα', - 'go_to_expense_accounts' => 'Δείτε τους λογαριασμούς δαπανών σας', - 'go_to_revenue_accounts' => 'Δείτε τους λογαριασμούς εσόδων σας', - 'go_to_piggies' => 'Πηγαίνετε στους κουμπαράδες σας', - 'new_deposit' => 'Νέα κατάθεση', - 'new_transfer' => 'Νέα μεταφορά', - 'new_transfers' => 'Νέα μεταφορά', - 'new_asset_account' => 'Νέος λογαριασμός κεφαλαίου', - 'new_expense_account' => 'Νέος λογαριασμός δαπανών', - 'new_revenue_account' => 'Νέος λογαριασμός εσόδων', - 'new_liabilities_account' => 'Νέα υποχρέωση', - 'new_budget' => 'Νέος προϋπολογισμός', - 'new_bill' => 'Νέο πάγιο έξοδο', - 'block_account_logout' => 'Έχετε αποσυνδεθεί. Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να χρησιμοποιήσουν αυτό τον ιστότοπο. Κάνατε εγγραφή με έγκυρο email;', - 'flash_success' => 'Επιτυχία!', - 'flash_info' => 'Μήνυμα', - 'flash_warning' => 'Προσοχή!', - 'flash_error' => 'Σφάλμα!', - 'flash_danger' => 'Κίνδυνος!', - 'flash_info_multiple' => 'Υπάρχει ένα μήνυμα|Υπάρχουν :count μηνύματα', - 'flash_error_multiple' => 'Υπάρχει ένα σφάλμα|Υπάρχουν :count σφάλματα', - 'net_worth' => 'Καθαρή αξία', - 'help_for_this_page' => 'Βοήθεια για αυτή τη σελίδα', - 'help_for_this_page_body' => 'Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με αυτή τη σελίδα στην τεκμηρίωση.', - 'two_factor_welcome' => 'Γειά!', - 'two_factor_enter_code' => 'Για να συνεχίσετε, παρακαλώ εισάγετε τον κωδικό επαλήθευσης δύο παραγόντων. Η εφαρμογή σας θα δημιουργήσει έναν για εσάς.', - 'two_factor_code_here' => 'Εισάγετε τον κωδικό εδώ', - 'two_factor_title' => 'Έλεγχος ταυτότητας δύο παραγόντων', - 'authenticate' => 'Ταυτοποίηση', - 'two_factor_forgot_title' => 'Απώλεια ταυτοποίησης δύο παραγόντων', - 'two_factor_forgot' => 'Ξέχασα τον παράγοντα ταυτοποίησης.', - 'two_factor_lost_header' => 'Χάσατε την ταυτότητα δύο παραγόντων;', - 'two_factor_lost_intro' => 'Εάν χάσατε τους εφεδρικούς κωδικούς σας επίσης, είστε άτυχοι. Αυτό δε μπορεί να διορθωθεί απευθείας. Έχετε δύο επιλογές.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Ειδάλλως, στείλτε email στον ιδιοκτήτη του ιστότοπου, :site_owner και ζητήστε να σας επαναφέρει την ταυτότητα δύο παραγόντων.', - 'mfa_backup_code' => 'Έχετε χρησιμοποιήσει ένα εφεδρικό κωδικό για να συνδεθείτε στο Firefly III. Δε μπορεί να χρησιμοποιηθεί ξανά, οπότε διαγράψτε το από τη λίστα σας.', - 'pref_two_factor_new_backup_codes' => 'Λάβετε νέους εφεδρικούς κωδικούς', - 'pref_two_factor_backup_code_count' => 'Έχετε :count έγκυρο εφεδρικό κωδικό.|Έχετε :count έγκυρους εφεδρικούς κωδικούς.', - '2fa_i_have_them' => 'Τους αποθήκευσα!', - 'warning_much_data' => ':days ημέρες δεδομένων θα καθυστερήσουν λιγάκι να φορτώσουν.', - 'registered' => 'Έχετε εγγραφεί επιτυχώς!', - 'Default asset account' => 'Βασικός λογαριασμός κεφαλαίου', - 'no_budget_pointer' => 'Φαίνεται πως δεν έχετε ορίσει προϋπολογισμούς ακόμη. Πρέπει να δημιουργήσετε κάποιον στη σελίδα προϋπολογισμών. Οι προϋπολογισμοί σας βοηθούν να επιβλέπετε τις δαπάνες σας.', - 'no_bill_pointer' => 'Φαίνεται πως δεν έχετε ορίσει πάγια έξοδα ακόμη. Πρέπει να δημιουργήσετε κάποιο στη σελίδα πάγιων εξόδων. Τα πάγια έξοδα σας βοηθούν να επιβλέπετε τις δαπάνες σας.', - 'Savings account' => 'Λογαριασμός αποταμίευσης', - 'Credit card' => 'Πιστωτική κάρτα', - 'source_accounts' => 'Λογαριασμός προέλευσης|Λογαριασμοί προέλευσης', - 'destination_accounts' => 'Λογαριασμός προορισμού|Λογαριασμοί προορισμού', - 'user_id_is' => 'Το αναγνωριστικό Id χρήστη είναι :user', - 'field_supports_markdown' => 'Αυτό το πεδίο υποστηρίζει Markdown.', - 'need_more_help' => 'Εάν χρειάζεστε περαιτέρω βοήθεια σχετικά με τη χρήση του Firefly III, παρακαλώ ανοίξτε ένα ticket στο Github.', - 'reenable_intro_text' => 'Μπορείτε επίσης να ενεργοποιήσετε και πάλι τον εισαγωγικό οδηγό.', - 'intro_boxes_after_refresh' => 'Τα πλαίσια εισαγωγής θα επανεμφανιστούν όταν ανανεώσετε τη σελίδα.', - 'show_all_no_filter' => 'Εμφάνιση όλων των συναλλαγών χωρίς την ομαδοποίηση ανά ημερομηνία.', - 'expenses_by_category' => 'Δαπάνες ανά κατηγορία', - 'expenses_by_budget' => 'Δαπάνες ανά προϋπολογισμό', - 'income_by_category' => 'Έσοδα ανά κατηγορία', - 'expenses_by_asset_account' => 'Δαπάνες ανά αποταμιευτικό λογαριασμό', - 'expenses_by_expense_account' => 'Δαπάνες ανά λογαριασμό δαπανών', - 'cannot_redirect_to_account' => 'Το Firefly III δεν μπορεί να σας ανακατευθύνει στη σωστή σελίδα. Συγγνώμη.', - 'sum_of_expenses' => 'Σύνολο δαπανών', - 'sum_of_income' => 'Σύνολο εσόδων', - 'liabilities' => 'Υποχρεώσεις', - 'spent_in_specific_budget' => 'Δαπάνες στον προϋπολογισμό ":budget"', - 'spent_in_specific_double' => 'Δαπάνες στο λογαριασμό ":account"', - 'earned_in_specific_double' => 'Κέρδη στο λογαριασμό ":account"', - 'source_account' => 'Λογαριασμός προέλευσης', - 'source_account_reconciliation' => 'Δεν μπορείτε να τροποποιήσετε τον λογαριασμό προέλευσης σε μια συναλλαγή τακτοποίησης.', - 'destination_account' => 'Λογαριασμός προορισμού', - 'destination_account_reconciliation' => 'Δεν μπορείτε να τροποποιήσετε τον λογαριασμό προορισμού σε μια συναλλαγή τακτοποίησης.', - 'sum_of_expenses_in_budget' => 'Σύνολο δαπανών στον προϋπολογισμό ":budget"', - 'left_in_budget_limit' => 'Απομένουν για δαπάνες σύμφωνα με τον προϋπολογισμό', - 'current_period' => 'Τρέχουσα περίοδος', - 'show_the_current_period_and_overview' => 'Εμφάνιση της τρέχουσας περιόδου και σύνοψη', - 'pref_languages_locale' => 'Για να λειτουργήσει σωστά μια γλώσσα διαφορετική των Αγγλικών, το λειτουργικό σας σύστημα πρέπει να διαθέτει τις σωστές πληροφορίες τοποθεσίας (locale). Εάν αυτές δεν είναι σωστές τότε τα δεδομένα νομισμάτων, οι ημερομηνίες και τα ποσά μπορεί να έχουν λάθος μορφοποίηση.', - 'budget_in_period' => 'Όλες οι συναλλαγές του προϋπολογισμού ":name" μεταξύ :start και :end σε :currency', - 'chart_budget_in_period' => 'Διάγραμμα όλων των συναλλαγών του προϋπολογισμού ":name" μεταξύ :start και :end σε :currency', - 'chart_budget_in_period_only_currency' => 'Το ποσό που προϋπολογίσατε ήταν σε :currency, έτσι αυτό το διάγραμμα δείχνει συναλλαγές μόνο σε :currency.', - 'chart_account_in_period' => 'Διάγραμμα όλων των συναλλαγών του λογαριασμού ":name" (:balance) μεταξύ :start και :end', - 'chart_category_in_period' => 'Διάγραμμα για όλες τις συναλλαγές της κατηγορίας ":name" μεταξύ :start και :end', - 'chart_category_all' => 'Διάγραμμα για όλες τις συναλλαγές της κατηγορίας ":name"', - 'clone_withdrawal' => 'Κλωνοποίηση αυτής της ανάληψης', - 'clone_deposit' => 'Κλωνοποίηση αυτής της κατάθεσης', - 'clone_transfer' => 'Κλωνοποίηση αυτής της μεταφοράς', - 'multi_select_no_selection' => 'Δεν επιλέχθηκε τίποτα', - 'multi_select_select_all' => 'Επιλογή όλων', - 'multi_select_n_selected' => 'επιλεγμένο(α)', - 'multi_select_all_selected' => 'Επιλέχθηκαν όλα', - 'multi_select_filter_placeholder' => 'Εύρεση..', - 'intro_next_label' => 'Επόμενο', - 'intro_prev_label' => 'Προηγούμενο', - 'intro_skip_label' => 'Παράλειψη', - 'intro_done_label' => 'Ολοκληρώθηκε', - 'between_dates_breadcrumb' => 'Μεταξύ :start και :end', - 'all_journals_without_budget' => 'Όλες οι συναλλαγές εκτός κάποιου προϋπολογισμού', - 'journals_without_budget' => 'Συναλλαγές εκτός κάποιου προϋπολογισμού', - 'all_journals_without_category' => 'Όλες οι συναλλαγές χωρίς κατηγορία', - 'journals_without_category' => 'Συναλλαγές χωρίς κατηγορία', - 'all_journals_for_account' => 'Όλες οι συναλλαγές του λογαριασμού :name', - 'chart_all_journals_for_account' => 'Διάγραμμα όλων των συναλλαγών του λογαριασμού :name', - 'journals_in_period_for_account' => 'Όλες οι συναλλαγές του λογαριασμού :name μεταξύ :start και :end', - 'journals_in_period_for_account_js' => 'Όλες οι συναλλαγές για τον λογαριασμό {title} μεταξύ {start} και {end}', - 'transferred' => 'Μεταφέρθηκαν', - 'all_withdrawal' => 'Όλες οι δαπάνες', - 'all_transactions' => 'Όλες οι συναλλαγές', - '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' => 'Όλες οι συναλλαγές της κατηγορίας :name μεταξύ :start και :end', - 'journals_in_period_for_tag' => 'Όλες οι συναλλαγές με ετικέτα :tag μεταξύ :start και :end', - 'not_available_demo_user' => 'Το χαρακτηριστικό στο οποίο προσπαθείτε να αποκτήσετε πρόσβαση δεν είναι διαθέσιμο σε χρήστες επίδειξης.', - 'exchange_rate_instructions' => 'Ο αποταμιευτικός λογαριασμός "@name" δέχεται μόνο συναλλαγές σε @native_currency. Εάν επιθυμείτε να χρησιμοποιήσετε @foreign_currence ανταυτού, σιγουρευτείτε ότι το ποσό σε @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 instructions how to do this.', - 'quickswitch' => 'Εναλλαγή', - 'sign_in_to_start' => 'Συνδεθείτε για να ξεκινήσετε τη συνεδρία σας', - 'sign_in' => 'Είσοδος', - 'register_new_account' => 'Εγγραφή νέου λογαριασμού', - 'forgot_my_password' => 'Ξέχασα τον κωδικό μου', - 'problems_with_input' => 'Παρουσιάστηκαν κάποια προβλήματα με την εισαγωγή σας.', - 'reset_password' => 'Επαναφέρετε τον κωδικό σας', - 'button_reset_password' => 'Επαναφορά κωδικού πρόσβασης', - 'reset_button' => 'Επαναφορά', - 'want_to_login' => 'Θέλω να συνδεθώ', - 'login_page_title' => 'Σύνδεση στο Firefly III', - 'register_page_title' => 'Εγγραφή στο Firefly III', - 'forgot_pw_page_title' => 'Ξεχάσατε τον κωδικό πρόσβασης για το Firefly III', - 'reset_pw_page_title' => 'Επαναφέρετε τον κωδικό πρόσβασης για το Firefly III', - 'cannot_reset_demo_user' => 'Δε μπορείτε να επαναφέρετε τον κωδικό πρόσβασης του χρήστη επίδειξης.', - 'no_att_demo_user' => 'Ο χρήστης επίδειξης δε μπορεί να ανεβάσει συνημμένα.', - 'button_register' => 'Εγγραφή', - 'authorization' => 'Εξουσιοδότηση', - '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' => 'Αναμενόμενο μηνιαίο κόστος', - 'per_period_sum_3M' => 'Αναμενόμενο τριμηνιαίο κόστος', - 'per_period_sum_6M' => 'Αναμενόμενο εξαμηνιαίο κόστος', - 'per_period_sum_1Y' => 'Αναμενόμενο ετήσιο κόστος', - 'average_per_bill' => 'μέσος όρος ανά πάγιο έξοδο', - 'expected_total' => 'αναμενόμενο σύνολο', - 'reconciliation_account_name' => ':name τακτοποίηση (:currency)', - 'saved' => 'Αποθηκεύτηκε', - 'advanced_options' => 'Επιλογές για προχωρημένους', - 'advanced_options_explain' => 'Μερικές σελίδες στο Firefly III έχουν κρυμμένες επιλογές για προχωρημένους πίσω από αυτό το κουμπί. Αυτή η σελίδα δεν έχει τίποτα ουσιαστικό εδώ, αλλά ελέγξτε τις υπόλοιπες!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Κλείσιμο', + 'actions' => 'Ενέργειες', + 'edit' => 'Επεξεργασία', + 'delete' => 'Διαγραφή', + 'split' => 'Διαχωρισμός', + 'single_split' => 'Διαχωρισμός', + 'clone' => 'Κλωνοποίηση', + 'clone_and_edit' => 'Κλωνοποίηση και επεξεργασία', + 'confirm_action' => 'Επιβεβαίωση ενέργειας', + 'last_seven_days' => 'Τελευταίες επτά ημέρες', + 'last_thirty_days' => 'Τελευταίες τριάντα ημέρες', + 'last_180_days' => 'Τελευταίες 180 ημέρες', + 'month_to_date' => 'Μήνας μέχρι σήμερα', + 'year_to_date' => 'Έτος μέχρι σήμερα', + 'YTD' => 'ΤΡΕΧΟΝ ΕΤΟΣ', + 'welcome_back' => 'Τι παίζει;', + 'everything' => 'Όλα', + 'today' => 'σήμερα', + 'customRange' => 'Προσαρμοσμένο εύρος', + 'date_range' => 'Ημερολογιακό Εύρος', + 'apply' => 'Εφαρμογή', + 'select_date' => 'Επιλογή ημερομηνίας..', + 'cancel' => 'Άκυρο', + 'from' => 'Από', + 'to' => 'Προς', + 'structure' => 'Δομή', + 'help_translating' => 'Αυτό το βοηθητικό κείμενο δεν είναι ακόμη διαθέσιμο στη γλώσσα σας.Θα βοηθήσετε στη μετάφραση;', + 'showEverything' => 'Εμφάνιση όλων', + 'never' => 'Ποτέ', + 'no_results_for_empty_search' => 'Η αναζήτησή σας ήταν κενή, οπότε δε βρέθηκε τίποτα.', + 'removed_amount' => 'Αφαιρέθηκαν :amount', + 'added_amount' => 'Προστέθηκαν :amount', + 'asset_account_role_help' => 'Όποιες επιπλέον επιλογές προκύψουν από την προτίμησή σας μπορούν να ρυθμιστούν αργότερα.', + 'Opening balance' => 'Υπόλοιπο έναρξης', + 'create_new_stuff' => 'Νέα καταχώρηση', + 'new_withdrawal' => 'Νέα ανάληψη', + 'create_new_transaction' => 'Δημιουργία μιας νέας συναλλαγής', + 'sidebar_frontpage_create' => 'Δημιουργία', + 'new_transaction' => 'Νέα συναλλαγή', + 'no_rules_for_bill' => 'Αυτό το πάγιο έξοδο δεν έχει σχετιζόμενους κανόνες.', + 'go_to_asset_accounts' => 'Δείτε τους λογαριασμούς κεφαλαίου σας', + 'go_to_budgets' => 'Πηγαίνετε στους προϋπολογισμούς σας', + 'go_to_withdrawals' => 'Πηγαίνετε στις αναλήψεις σας', + 'clones_journal_x' => 'Αυτή η συναλλαγή είναι ένας κλώνος του ":description" (#:id)', + 'go_to_categories' => 'Πηγαίνετε στις κατηγορίες σας', + 'go_to_bills' => 'Πηγαίνετε στα πάγια έξοδα', + 'go_to_expense_accounts' => 'Δείτε τους λογαριασμούς δαπανών σας', + 'go_to_revenue_accounts' => 'Δείτε τους λογαριασμούς εσόδων σας', + 'go_to_piggies' => 'Πηγαίνετε στους κουμπαράδες σας', + 'new_deposit' => 'Νέα κατάθεση', + 'new_transfer' => 'Νέα μεταφορά', + 'new_transfers' => 'Νέα μεταφορά', + 'new_asset_account' => 'Νέος λογαριασμός κεφαλαίου', + 'new_expense_account' => 'Νέος λογαριασμός δαπανών', + 'new_revenue_account' => 'Νέος λογαριασμός εσόδων', + 'new_liabilities_account' => 'Νέα υποχρέωση', + 'new_budget' => 'Νέος προϋπολογισμός', + 'new_bill' => 'Νέο πάγιο έξοδο', + 'block_account_logout' => 'Έχετε αποσυνδεθεί. Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να χρησιμοποιήσουν αυτό τον ιστότοπο. Κάνατε εγγραφή με έγκυρο email;', + 'flash_success' => 'Επιτυχία!', + 'flash_info' => 'Μήνυμα', + 'flash_warning' => 'Προσοχή!', + 'flash_error' => 'Σφάλμα!', + 'flash_danger' => 'Κίνδυνος!', + 'flash_info_multiple' => 'Υπάρχει ένα μήνυμα|Υπάρχουν :count μηνύματα', + 'flash_error_multiple' => 'Υπάρχει ένα σφάλμα|Υπάρχουν :count σφάλματα', + 'net_worth' => 'Καθαρή αξία', + 'help_for_this_page' => 'Βοήθεια για αυτή τη σελίδα', + 'help_for_this_page_body' => 'Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με αυτή τη σελίδα στην τεκμηρίωση.', + 'two_factor_welcome' => 'Γειά!', + 'two_factor_enter_code' => 'Για να συνεχίσετε, παρακαλώ εισάγετε τον κωδικό επαλήθευσης δύο παραγόντων. Η εφαρμογή σας θα δημιουργήσει έναν για εσάς.', + 'two_factor_code_here' => 'Εισάγετε τον κωδικό εδώ', + 'two_factor_title' => 'Έλεγχος ταυτότητας δύο παραγόντων', + 'authenticate' => 'Ταυτοποίηση', + 'two_factor_forgot_title' => 'Απώλεια ταυτοποίησης δύο παραγόντων', + 'two_factor_forgot' => 'Ξέχασα τον παράγοντα ταυτοποίησης.', + 'two_factor_lost_header' => 'Χάσατε την ταυτότητα δύο παραγόντων;', + 'two_factor_lost_intro' => 'Εάν χάσατε τους εφεδρικούς κωδικούς σας επίσης, είστε άτυχοι. Αυτό δε μπορεί να διορθωθεί απευθείας. Έχετε δύο επιλογές.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Ειδάλλως, στείλτε email στον ιδιοκτήτη του ιστότοπου, :site_owner και ζητήστε να σας επαναφέρει την ταυτότητα δύο παραγόντων.', + 'mfa_backup_code' => 'Έχετε χρησιμοποιήσει ένα εφεδρικό κωδικό για να συνδεθείτε στο Firefly III. Δε μπορεί να χρησιμοποιηθεί ξανά, οπότε διαγράψτε το από τη λίστα σας.', + 'pref_two_factor_new_backup_codes' => 'Λάβετε νέους εφεδρικούς κωδικούς', + 'pref_two_factor_backup_code_count' => 'Έχετε :count έγκυρο εφεδρικό κωδικό.|Έχετε :count έγκυρους εφεδρικούς κωδικούς.', + '2fa_i_have_them' => 'Τους αποθήκευσα!', + 'warning_much_data' => ':days ημέρες δεδομένων θα καθυστερήσουν λιγάκι να φορτώσουν.', + 'registered' => 'Έχετε εγγραφεί επιτυχώς!', + 'Default asset account' => 'Βασικός λογαριασμός κεφαλαίου', + 'no_budget_pointer' => 'Φαίνεται πως δεν έχετε ορίσει προϋπολογισμούς ακόμη. Πρέπει να δημιουργήσετε κάποιον στη σελίδα προϋπολογισμών. Οι προϋπολογισμοί σας βοηθούν να επιβλέπετε τις δαπάνες σας.', + 'no_bill_pointer' => 'Φαίνεται πως δεν έχετε ορίσει πάγια έξοδα ακόμη. Πρέπει να δημιουργήσετε κάποιο στη σελίδα πάγιων εξόδων. Τα πάγια έξοδα σας βοηθούν να επιβλέπετε τις δαπάνες σας.', + 'Savings account' => 'Λογαριασμός αποταμίευσης', + 'Credit card' => 'Πιστωτική κάρτα', + 'source_accounts' => 'Λογαριασμός προέλευσης|Λογαριασμοί προέλευσης', + 'destination_accounts' => 'Λογαριασμός προορισμού|Λογαριασμοί προορισμού', + 'user_id_is' => 'Το αναγνωριστικό Id χρήστη είναι :user', + 'field_supports_markdown' => 'Αυτό το πεδίο υποστηρίζει Markdown.', + 'need_more_help' => 'Εάν χρειάζεστε περαιτέρω βοήθεια σχετικά με τη χρήση του Firefly III, παρακαλώ ανοίξτε ένα ticket στο Github.', + 'reenable_intro_text' => 'Μπορείτε επίσης να ενεργοποιήσετε και πάλι τον εισαγωγικό οδηγό.', + 'intro_boxes_after_refresh' => 'Τα πλαίσια εισαγωγής θα επανεμφανιστούν όταν ανανεώσετε τη σελίδα.', + 'show_all_no_filter' => 'Εμφάνιση όλων των συναλλαγών χωρίς την ομαδοποίηση ανά ημερομηνία.', + 'expenses_by_category' => 'Δαπάνες ανά κατηγορία', + 'expenses_by_budget' => 'Δαπάνες ανά προϋπολογισμό', + 'income_by_category' => 'Έσοδα ανά κατηγορία', + 'expenses_by_asset_account' => 'Δαπάνες ανά αποταμιευτικό λογαριασμό', + 'expenses_by_expense_account' => 'Δαπάνες ανά λογαριασμό δαπανών', + 'cannot_redirect_to_account' => 'Το Firefly III δεν μπορεί να σας ανακατευθύνει στη σωστή σελίδα. Συγγνώμη.', + 'sum_of_expenses' => 'Σύνολο δαπανών', + 'sum_of_income' => 'Σύνολο εσόδων', + 'liabilities' => 'Υποχρεώσεις', + 'spent_in_specific_budget' => 'Δαπάνες στον προϋπολογισμό ":budget"', + 'spent_in_specific_double' => 'Δαπάνες στο λογαριασμό ":account"', + 'earned_in_specific_double' => 'Κέρδη στο λογαριασμό ":account"', + 'source_account' => 'Λογαριασμός προέλευσης', + 'source_account_reconciliation' => 'Δεν μπορείτε να τροποποιήσετε τον λογαριασμό προέλευσης σε μια συναλλαγή τακτοποίησης.', + 'destination_account' => 'Λογαριασμός προορισμού', + 'destination_account_reconciliation' => 'Δεν μπορείτε να τροποποιήσετε τον λογαριασμό προορισμού σε μια συναλλαγή τακτοποίησης.', + 'sum_of_expenses_in_budget' => 'Σύνολο δαπανών στον προϋπολογισμό ":budget"', + 'left_in_budget_limit' => 'Απομένουν για δαπάνες σύμφωνα με τον προϋπολογισμό', + 'current_period' => 'Τρέχουσα περίοδος', + 'show_the_current_period_and_overview' => 'Εμφάνιση της τρέχουσας περιόδου και σύνοψη', + 'pref_languages_locale' => 'Για να λειτουργήσει σωστά μια γλώσσα διαφορετική των Αγγλικών, το λειτουργικό σας σύστημα πρέπει να διαθέτει τις σωστές πληροφορίες τοποθεσίας (locale). Εάν αυτές δεν είναι σωστές τότε τα δεδομένα νομισμάτων, οι ημερομηνίες και τα ποσά μπορεί να έχουν λάθος μορφοποίηση.', + 'budget_in_period' => 'Όλες οι συναλλαγές του προϋπολογισμού ":name" μεταξύ :start και :end σε :currency', + 'chart_budget_in_period' => 'Διάγραμμα όλων των συναλλαγών του προϋπολογισμού ":name" μεταξύ :start και :end σε :currency', + 'chart_budget_in_period_only_currency' => 'Το ποσό που προϋπολογίσατε ήταν σε :currency, έτσι αυτό το διάγραμμα δείχνει συναλλαγές μόνο σε :currency.', + 'chart_account_in_period' => 'Διάγραμμα όλων των συναλλαγών του λογαριασμού ":name" (:balance) μεταξύ :start και :end', + 'chart_category_in_period' => 'Διάγραμμα για όλες τις συναλλαγές της κατηγορίας ":name" μεταξύ :start και :end', + 'chart_category_all' => 'Διάγραμμα για όλες τις συναλλαγές της κατηγορίας ":name"', + 'clone_withdrawal' => 'Κλωνοποίηση αυτής της ανάληψης', + 'clone_deposit' => 'Κλωνοποίηση αυτής της κατάθεσης', + 'clone_transfer' => 'Κλωνοποίηση αυτής της μεταφοράς', + 'multi_select_no_selection' => 'Δεν επιλέχθηκε τίποτα', + 'multi_select_select_all' => 'Επιλογή όλων', + 'multi_select_n_selected' => 'επιλεγμένο(α)', + 'multi_select_all_selected' => 'Επιλέχθηκαν όλα', + 'multi_select_filter_placeholder' => 'Εύρεση..', + 'intro_next_label' => 'Επόμενο', + 'intro_prev_label' => 'Προηγούμενο', + 'intro_skip_label' => 'Παράλειψη', + 'intro_done_label' => 'Ολοκληρώθηκε', + 'between_dates_breadcrumb' => 'Μεταξύ :start και :end', + 'all_journals_without_budget' => 'Όλες οι συναλλαγές εκτός κάποιου προϋπολογισμού', + 'journals_without_budget' => 'Συναλλαγές εκτός κάποιου προϋπολογισμού', + 'all_journals_without_category' => 'Όλες οι συναλλαγές χωρίς κατηγορία', + 'journals_without_category' => 'Συναλλαγές χωρίς κατηγορία', + 'all_journals_for_account' => 'Όλες οι συναλλαγές του λογαριασμού :name', + 'chart_all_journals_for_account' => 'Διάγραμμα όλων των συναλλαγών του λογαριασμού :name', + 'journals_in_period_for_account' => 'Όλες οι συναλλαγές του λογαριασμού :name μεταξύ :start και :end', + 'journals_in_period_for_account_js' => 'Όλες οι συναλλαγές για τον λογαριασμό {title} μεταξύ {start} και {end}', + 'transferred' => 'Μεταφέρθηκαν', + 'all_withdrawal' => 'Όλες οι δαπάνες', + 'all_transactions' => 'Όλες οι συναλλαγές', + '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' => 'Όλες οι συναλλαγές της κατηγορίας :name μεταξύ :start και :end', + 'journals_in_period_for_tag' => 'Όλες οι συναλλαγές με ετικέτα :tag μεταξύ :start και :end', + 'not_available_demo_user' => 'Το χαρακτηριστικό στο οποίο προσπαθείτε να αποκτήσετε πρόσβαση δεν είναι διαθέσιμο σε χρήστες επίδειξης.', + 'exchange_rate_instructions' => 'Ο αποταμιευτικός λογαριασμός "@name" δέχεται μόνο συναλλαγές σε @native_currency. Εάν επιθυμείτε να χρησιμοποιήσετε @foreign_currence ανταυτού, σιγουρευτείτε ότι το ποσό σε @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 instructions how to do this.', + 'quickswitch' => 'Εναλλαγή', + 'sign_in_to_start' => 'Συνδεθείτε για να ξεκινήσετε τη συνεδρία σας', + 'sign_in' => 'Είσοδος', + 'register_new_account' => 'Εγγραφή νέου λογαριασμού', + 'forgot_my_password' => 'Ξέχασα τον κωδικό μου', + 'problems_with_input' => 'Παρουσιάστηκαν κάποια προβλήματα με την εισαγωγή σας.', + 'reset_password' => 'Επαναφέρετε τον κωδικό σας', + 'button_reset_password' => 'Επαναφορά κωδικού πρόσβασης', + 'reset_button' => 'Επαναφορά', + 'want_to_login' => 'Θέλω να συνδεθώ', + 'login_page_title' => 'Σύνδεση στο Firefly III', + 'register_page_title' => 'Εγγραφή στο Firefly III', + 'forgot_pw_page_title' => 'Ξεχάσατε τον κωδικό πρόσβασης για το Firefly III', + 'reset_pw_page_title' => 'Επαναφέρετε τον κωδικό πρόσβασης για το Firefly III', + 'cannot_reset_demo_user' => 'Δε μπορείτε να επαναφέρετε τον κωδικό πρόσβασης του χρήστη επίδειξης.', + 'no_att_demo_user' => 'Ο χρήστης επίδειξης δε μπορεί να ανεβάσει συνημμένα.', + 'button_register' => 'Εγγραφή', + 'authorization' => 'Εξουσιοδότηση', + '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' => 'Αναμενόμενο μηνιαίο κόστος', + 'per_period_sum_3M' => 'Αναμενόμενο τριμηνιαίο κόστος', + 'per_period_sum_6M' => 'Αναμενόμενο εξαμηνιαίο κόστος', + 'per_period_sum_1Y' => 'Αναμενόμενο ετήσιο κόστος', + 'average_per_bill' => 'μέσος όρος ανά πάγιο έξοδο', + 'expected_total' => 'αναμενόμενο σύνολο', + 'reconciliation_account_name' => ':name τακτοποίηση (:currency)', + 'saved' => 'Αποθηκεύτηκε', + 'advanced_options' => 'Επιλογές για προχωρημένους', + 'advanced_options_explain' => 'Μερικές σελίδες στο Firefly III έχουν κρυμμένες επιλογές για προχωρημένους πίσω από αυτό το κουμπί. Αυτή η σελίδα δεν έχει τίποτα ουσιαστικό εδώ, αλλά ελέγξτε τις υπόλοιπες!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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' => 'Έλεγχος', - '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' => 'Το 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' => 'Webhook #{ID} ("{title}") έχει αποθηκευτεί.', - 'webhook_updated_link' => 'Το Webhook #{ID} ("{title}") έχει ενημερωθεί.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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' => 'Έλεγχος', + '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' => 'Το 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' => 'Webhook #{ID} ("{title}") έχει αποθηκευτεί.', + 'webhook_updated_link' => 'Το Webhook #{ID} ("{title}") έχει ενημερωθεί.', // API access - 'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version', - 'authorization_request_intro' => 'Η εφαρμογή ":client" ζητά άδεια πρόσβασης στην οικονομική σας διαχείριση. Θέλετε να εξουσιοδοτήσετε το :client να έχει πρόσβαση σε αυτές τις εγγραφές;', - 'authorization_request_site' => 'Θα ανακατευθυνθείτε στο :url το οποίο στη συνέχεια θα έχει πρόσβαση στα δεδομένα σας Firefly III.', - 'authorization_request_invalid' => 'Αυτό το αίτημα πρόσβασης δεν είναι έγκυρο. Παρακαλώ μην ακολουθήσετε ποτέ ξανά αυτόν τον σύνδεσμο.', - 'scopes_will_be_able' => 'Αυτή η εφαρμογή θα είναι σε θέση να:', - 'button_authorize' => 'Εξουσιοδότηση', - 'none_in_select_list' => '(τίποτα)', - 'no_piggy_bank' => '(χωρίς κουμπαρά)', - 'name_in_currency' => ':name σε :currency', - 'paid_in_currency' => 'Πληρώθηκε σε :currency', - 'unpaid_in_currency' => 'Απλήρωτο σε :currency', - 'is_alpha_warning' => 'Εκτελείτε μια προ-έκδοση ALPHA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.', - 'is_beta_warning' => 'Εκτελείτε μια δοκιμαστική έκδοση BETA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.', - 'all_destination_accounts' => 'Λογαριασμοί προορισμού', - 'all_source_accounts' => 'Λογαριασμοί προέλευσης', - 'back_to_index' => 'Επιστροφή στο ευρετήριο', - 'cant_logout_guard' => 'Το Firefly III δε μπορεί να σας αποσυνδέσει.', - 'internal_reference' => 'Εσωτερική αναφορά', + 'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version', + 'authorization_request_intro' => 'Η εφαρμογή ":client" ζητά άδεια πρόσβασης στην οικονομική σας διαχείριση. Θέλετε να εξουσιοδοτήσετε το :client να έχει πρόσβαση σε αυτές τις εγγραφές;', + 'authorization_request_site' => 'Θα ανακατευθυνθείτε στο :url το οποίο στη συνέχεια θα έχει πρόσβαση στα δεδομένα σας Firefly III.', + 'authorization_request_invalid' => 'Αυτό το αίτημα πρόσβασης δεν είναι έγκυρο. Παρακαλώ μην ακολουθήσετε ποτέ ξανά αυτόν τον σύνδεσμο.', + 'scopes_will_be_able' => 'Αυτή η εφαρμογή θα είναι σε θέση να:', + 'button_authorize' => 'Εξουσιοδότηση', + 'none_in_select_list' => '(τίποτα)', + 'no_piggy_bank' => '(χωρίς κουμπαρά)', + 'name_in_currency' => ':name σε :currency', + 'paid_in_currency' => 'Πληρώθηκε σε :currency', + 'unpaid_in_currency' => 'Απλήρωτο σε :currency', + 'is_alpha_warning' => 'Εκτελείτε μια προ-έκδοση ALPHA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.', + 'is_beta_warning' => 'Εκτελείτε μια δοκιμαστική έκδοση BETA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.', + 'all_destination_accounts' => 'Λογαριασμοί προορισμού', + 'all_source_accounts' => 'Λογαριασμοί προέλευσης', + 'back_to_index' => 'Επιστροφή στο ευρετήριο', + 'cant_logout_guard' => 'Το Firefly III δε μπορεί να σας αποσυνδέσει.', + 'internal_reference' => 'Εσωτερική αναφορά', // check for updates: - 'update_check_title' => 'Έλεγχος ενημερώσεων', - 'admin_update_check_title' => 'Αυτόματος έλεγχος ενημερώσεων', - 'admin_update_check_explain' => 'Το Firefly III μπορεί να ελέγξει αυτόματα για ενημερώσεις. Όταν ενεργοποιήσετε αυτή τη ρύθμιση, θα επικοινωνεί με τον διακομιστή ενημέρωσης του Firefly III για να διαπιστώσει εάν είναι διαθέσιμη μια νέα έκδοση για να λάβετε μια ειδοποίηση. Μπορείτε να δοκιμάσετε αυτή την ειδοποίηση πατώντας το κουμπί στα δεξιά. Υποδείξτε παρακάτω εάν θέλετε το Firefly III να ελέγχει για ενημερώσεις.', - 'check_for_updates_permission' => 'Το Firefly III μπορεί να ελέγχει για ενημερώσεις, αλλά χρειάζεται την άδειά σας για αυτό. Παρακαλώ πηγαίνετε στη διαχείριση για να υποδείξετε εάν θέλετε να ενεργοποιηθεί αυτό το χαρακτηριστικό.', - 'updates_ask_me_later' => 'Να ερωτηθώ αργότερα', - 'updates_do_not_check' => 'Να μη γίνεται έλεγχος για ενημερώσεις', - 'updates_enable_check' => 'Ενεργοποίηση του ελέγχου ενημερώσεων', - 'admin_update_check_now_title' => 'Έλεγχος για ενημερώσεις τώρα', - 'admin_update_check_now_explain' => 'Εάν πατήσετε αυτό του κουμπί, το Firefly III θα ελέγξει εάν έχετε την τελευταία έκδοση.', - 'check_for_updates_button' => 'Έλεγχος τώρα!', - 'update_new_version_alert' => 'Μία νέα έκδοση του Firefly III είναι διαθέσιμη. Έχετε την v:your_version, ενώ η τελευταία έκδοση είναι η v:new_version που κυκλοφόρησε στις :date.', - 'update_version_beta' => 'Αυτή είναι μια BETA δοκιμαστική έκδοση. Μπορεί να συναντήσετε προβλήματα.', - 'update_version_alpha' => 'Αυτή είναι μια ALPHA δοκιμαστική έκδοση. Μπορεί να συναντήσετε προβλήματα.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Έχετε την έκδοση v:version, που είναι η τελευταία διαθέσιμη.', - 'update_newer_version_alert' => 'Έχετε την έκδοση v:your_version, που είναι νεότερη από την τελευταία έκδοση, v:new_version.', - 'update_check_error' => 'Παρουσιάστηκε σφάλμα κατά τον έλεγχο για ενημερώσεις: :error', - 'unknown_error' => 'Άγνωστο σφάλμα. Μας συγχωρείτε γι αυτό.', - 'disabled_but_check' => 'Απενεργοποιήσατε τον έλεγχο ενημερώσεων. Επομένως, μην ξεχάσετε να ελέγχετε μόνος σας για τυχόν ενημερώσεις. Ευχαριστώ!', - 'admin_update_channel_title' => 'Κανάλι ενημερώσεων', - 'admin_update_channel_explain' => 'Το Firefly III έχει τρία "κανάλια" ενημερώσεων που καθορίζουν πόσο μπροστά είστε σε θέματα χαρακτηριστικών, βελτιστοποιήσεων και σφαλμάτων. Χρησιμοποιήστε το "beta" κανάλι εάν είστε τολμηροί και το "alpha" εάν είστε ριψοκίνδυνοι.', - 'update_channel_stable' => 'Σταθερή. Όλα λειτουργούν όπως προβλέπονται.', - 'update_channel_beta' => 'Beta. Νέα χαρακτηριστικά αλλά κάποια πράγματα μπορεί να μη λειτουργούν.', - 'update_channel_alpha' => 'Alpha. Δοκιμάζουμε πράγματα, και χρησιμοποιούμε αυτά που λειτουργούν.', + 'update_check_title' => 'Έλεγχος ενημερώσεων', + 'admin_update_check_title' => 'Αυτόματος έλεγχος ενημερώσεων', + 'admin_update_check_explain' => 'Το Firefly III μπορεί να ελέγξει αυτόματα για ενημερώσεις. Όταν ενεργοποιήσετε αυτή τη ρύθμιση, θα επικοινωνεί με τον διακομιστή ενημέρωσης του Firefly III για να διαπιστώσει εάν είναι διαθέσιμη μια νέα έκδοση για να λάβετε μια ειδοποίηση. Μπορείτε να δοκιμάσετε αυτή την ειδοποίηση πατώντας το κουμπί στα δεξιά. Υποδείξτε παρακάτω εάν θέλετε το Firefly III να ελέγχει για ενημερώσεις.', + 'check_for_updates_permission' => 'Το Firefly III μπορεί να ελέγχει για ενημερώσεις, αλλά χρειάζεται την άδειά σας για αυτό. Παρακαλώ πηγαίνετε στη διαχείριση για να υποδείξετε εάν θέλετε να ενεργοποιηθεί αυτό το χαρακτηριστικό.', + 'updates_ask_me_later' => 'Να ερωτηθώ αργότερα', + 'updates_do_not_check' => 'Να μη γίνεται έλεγχος για ενημερώσεις', + 'updates_enable_check' => 'Ενεργοποίηση του ελέγχου ενημερώσεων', + 'admin_update_check_now_title' => 'Έλεγχος για ενημερώσεις τώρα', + 'admin_update_check_now_explain' => 'Εάν πατήσετε αυτό του κουμπί, το Firefly III θα ελέγξει εάν έχετε την τελευταία έκδοση.', + 'check_for_updates_button' => 'Έλεγχος τώρα!', + 'update_new_version_alert' => 'Μία νέα έκδοση του Firefly III είναι διαθέσιμη. Έχετε την v:your_version, ενώ η τελευταία έκδοση είναι η v:new_version που κυκλοφόρησε στις :date.', + 'update_version_beta' => 'Αυτή είναι μια BETA δοκιμαστική έκδοση. Μπορεί να συναντήσετε προβλήματα.', + 'update_version_alpha' => 'Αυτή είναι μια ALPHA δοκιμαστική έκδοση. Μπορεί να συναντήσετε προβλήματα.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Έχετε την έκδοση v:version, που είναι η τελευταία διαθέσιμη.', + 'update_newer_version_alert' => 'Έχετε την έκδοση v:your_version, που είναι νεότερη από την τελευταία έκδοση, v:new_version.', + 'update_check_error' => 'Παρουσιάστηκε σφάλμα κατά τον έλεγχο για ενημερώσεις: :error', + 'unknown_error' => 'Άγνωστο σφάλμα. Μας συγχωρείτε γι αυτό.', + 'disabled_but_check' => 'Απενεργοποιήσατε τον έλεγχο ενημερώσεων. Επομένως, μην ξεχάσετε να ελέγχετε μόνος σας για τυχόν ενημερώσεις. Ευχαριστώ!', + 'admin_update_channel_title' => 'Κανάλι ενημερώσεων', + 'admin_update_channel_explain' => 'Το Firefly III έχει τρία "κανάλια" ενημερώσεων που καθορίζουν πόσο μπροστά είστε σε θέματα χαρακτηριστικών, βελτιστοποιήσεων και σφαλμάτων. Χρησιμοποιήστε το "beta" κανάλι εάν είστε τολμηροί και το "alpha" εάν είστε ριψοκίνδυνοι.', + 'update_channel_stable' => 'Σταθερή. Όλα λειτουργούν όπως προβλέπονται.', + 'update_channel_beta' => 'Beta. Νέα χαρακτηριστικά αλλά κάποια πράγματα μπορεί να μη λειτουργούν.', + 'update_channel_alpha' => 'Alpha. Δοκιμάζουμε πράγματα, και χρησιμοποιούμε αυτά που λειτουργούν.', // search - 'search' => 'Αναζήτηση', - 'search_query' => 'Ερώτημα', - 'search_found_transactions' => 'Το Firefly III βρήκε :count συναλλαγή σε :time δευτερόλεπτα.|Το Firefly III βρήκε :count συναλλαγές σε :time δευτερόλεπτα.', - 'search_found_more_transactions' => 'Το Firefly III βρήκε περισσότερες από :count συναλλαγές σε :time δευτερόλεπτα.', - 'search_for_query' => 'Το Firefly III αναζητεί για συναλλαγές που περιέχουν όλες αυτές τις λέξεις: :query', - 'invalid_operators_list' => 'Αυτές οι παράμετροι αναζήτησης δεν είναι έγκυρες και έχουν αγνοηθεί.', + 'search' => 'Αναζήτηση', + 'search_query' => 'Ερώτημα', + 'search_found_transactions' => 'Το Firefly III βρήκε :count συναλλαγή σε :time δευτερόλεπτα.|Το Firefly III βρήκε :count συναλλαγές σε :time δευτερόλεπτα.', + 'search_found_more_transactions' => 'Το Firefly III βρήκε περισσότερες από :count συναλλαγές σε :time δευτερόλεπτα.', + 'search_for_query' => 'Το Firefly III αναζητεί για συναλλαγές που περιέχουν όλες αυτές τις λέξεις: :query', + 'invalid_operators_list' => 'Αυτές οι παράμετροι αναζήτησης δεν είναι έγκυρες και έχουν αγνοηθεί.', // old @@ -351,368 +351,368 @@ return [ * */ - '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' => 'Το ID συναλλαγής δεν είναι ":value"', - 'search_modifier_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν ή στις ":value"', - 'search_modifier_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά ή στις ":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' => 'Η συναλλαγή δεν έχει εξωτερικό 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' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) εξωτερικό 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' => 'Η περιγραφή δεν περιέχει ":value"', - 'search_modifier_description_is' => 'Η περιγραφή είναι ακριβώς ":value"', - 'search_modifier_not_description_is' => 'Η περιγραφή δεν είναι ακριβώς ":value"', - 'search_modifier_currency_is' => 'Το (ξένο) νόμισμα της συναλλαγής είναι ":value"', - 'search_modifier_not_currency_is' => 'Το (ξένο) νόμισμα της συναλλαγής δεν είναι ":value"', - 'search_modifier_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":value"', - 'search_modifier_not_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής δεν είναι ":value"', - 'search_modifier_has_attachments' => 'Η συναλλαγή πρέπει να έχει ένα συνημμένο', - 'search_modifier_has_no_category' => 'Η συναλλαγή δεν πρέπει να έχει κατηγορία', - 'search_modifier_not_has_no_category' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) κατηγορία', - 'search_modifier_not_has_any_category' => 'Η συναλλαγή δεν πρέπει να έχει κατηγορία', - 'search_modifier_has_any_category' => 'Η συναλλαγή πρέπει να έχει μία (οποιαδήποτε) κατηγορία', - 'search_modifier_has_no_budget' => 'Η συναλλαγή δεν πρέπει να έχει προϋπολογισμό', - 'search_modifier_not_has_any_budget' => 'Η συναλλαγή δεν πρέπει να έχει προϋπολογισμό', - 'search_modifier_has_any_budget' => 'Η συναλλαγή πρέπει να έχει έναν (οποιοδήποτε) προϋπολογισμό', - 'search_modifier_not_has_no_budget' => 'Η συναλλαγή πρέπει να έχει έναν (οποιοδήποτε) προϋπολογισμό', - 'search_modifier_has_no_bill' => 'Η συναλλαγή δεν πρέπει να έχει πάγιο έξοδο', - 'search_modifier_not_has_no_bill' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) πάγιο έξοδο', - 'search_modifier_has_any_bill' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) πάγιο έξοδο', - 'search_modifier_not_has_any_bill' => 'Η συναλλαγή δεν πρέπει να έχει πάγιο έξοδο', - 'search_modifier_has_no_tag' => 'Η συναλλαγή δεν πρέπει να έχει καμία ετικέτα', - 'search_modifier_not_has_any_tag' => 'Η συναλλαγή δεν πρέπει να έχει ετικέτα', - 'search_modifier_not_has_no_tag' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) ετικέτα', - 'search_modifier_has_any_tag' => 'Η συναλλαγή πρέπει να έχει μία (οποιαδήποτε) ετικέτα', - 'search_modifier_notes_contains' => 'Οι σημειώσεις της συναλλαγής περιέχουν ":value"', - 'search_modifier_not_notes_contains' => 'Οι σημειώσεις της συναλλαγής δεν περιέχουν ":value"', - 'search_modifier_notes_starts' => 'Οι σημειώσεις της συναλλαγής αρχίζουν με ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'Η συναλλαγή πρέπει να έχει σημειώσεις', - 'search_modifier_not_any_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', - 'search_modifier_amount_is' => 'Το ποσό είναι ακριβώς :value', - 'search_modifier_not_amount_is' => 'Το ποσό δεν είναι :value', - 'search_modifier_amount_less' => 'Το ποσό είναι μικρότερο ή ίσο με :value', - 'search_modifier_not_amount_more' => 'Το ποσό είναι μικρότερο ή ίσο με :value', - 'search_modifier_amount_more' => 'Το ποσό είναι μεγαλύτερο ή ίσο με :value', - 'search_modifier_not_amount_less' => 'Το ποσό είναι μεγαλύτερο ή ίσο με :value', - 'search_modifier_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης είναι ακριβώς ":value"', - 'search_modifier_not_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης δεν είναι ":value"', - 'search_modifier_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης περιέχει ":value"', - 'search_modifier_not_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης δεν περιέχει ":value"', - 'search_modifier_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με ":value"', - 'search_modifier_not_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης δεν αρχίζει με ":value"', - 'search_modifier_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με ":value"', - 'search_modifier_not_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης δεν τελειώνει με ":value"', - 'search_modifier_source_account_id' => 'Το ID του λογαριασμού προέλευσης είναι :value', - 'search_modifier_not_source_account_id' => 'Το ID του λογαριασμού προέλευσης δεν είναι :value', - 'search_modifier_source_account_nr_is' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης είναι ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης περιέχει ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης αρχίζει με ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Το όνομα του λογαριασμού προορισμού είναι ακριβώς ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Το όνομα του λογαριασμού προορισμού περιέχει ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Το ID του λογαριασμού προορισμού είναι :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού είναι ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού περιέχει ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού αρχίζει με ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού τελειώνει με ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Το/Τα αναγνωριστικά λογαριασμού προέλευσης ή προορισμού είναι: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Η κατηγορία είναι ":value"', - 'search_modifier_not_category_is' => 'Η κατηγορία δεν είναι ":value"', - 'search_modifier_budget_is' => 'Ο προϋπολογισμός είναι ":value"', - 'search_modifier_not_budget_is' => 'Ο προϋπολογισμός δεν είναι ":value"', - 'search_modifier_bill_is' => 'Το πάγιο έξοδο είναι ":value"', - 'search_modifier_not_bill_is' => 'Το πάγιο έξοδο δεν είναι ":value"', - 'search_modifier_transaction_type' => 'Ο τύπος συναλλαγής είναι ":value"', - 'search_modifier_not_transaction_type' => 'Ο τύπος συναλλαγής δεν είναι ":value"', - 'search_modifier_tag_is' => 'Η ετικέτα είναι ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Η συναλλαγή είναι στο έτος ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Η συναλλαγή είναι στον μήνα ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Η συναλλαγή είναι την ημέρα του μήνα ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Η συναλλαγή είναι πριν ή μέσα στο έτος ":value"', - 'search_modifier_date_before_month' => 'Η συναλλαγή είναι πριν ή μέσα στο μήνα ":value"', - 'search_modifier_date_before_day' => 'Η συναλλαγή είναι πριν ή την ημέρα του μήνα ":value"', - 'search_modifier_date_after_year' => 'Η συναλλαγή είναι μέσα ή μετά το έτος ":value"', - 'search_modifier_date_after_month' => 'Η συναλλαγή είναι μέσα ή μετά το μήνα ":value"', - 'search_modifier_date_after_day' => 'Η συναλλαγή είναι μετά ή την ημέρα του μήνα ":value"', + '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' => 'Το ID συναλλαγής δεν είναι ":value"', + 'search_modifier_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν ή στις ":value"', + 'search_modifier_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά ή στις ":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' => 'Η συναλλαγή δεν έχει εξωτερικό 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' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) εξωτερικό 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' => 'Η περιγραφή δεν περιέχει ":value"', + 'search_modifier_description_is' => 'Η περιγραφή είναι ακριβώς ":value"', + 'search_modifier_not_description_is' => 'Η περιγραφή δεν είναι ακριβώς ":value"', + 'search_modifier_currency_is' => 'Το (ξένο) νόμισμα της συναλλαγής είναι ":value"', + 'search_modifier_not_currency_is' => 'Το (ξένο) νόμισμα της συναλλαγής δεν είναι ":value"', + 'search_modifier_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":value"', + 'search_modifier_not_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής δεν είναι ":value"', + 'search_modifier_has_attachments' => 'Η συναλλαγή πρέπει να έχει ένα συνημμένο', + 'search_modifier_has_no_category' => 'Η συναλλαγή δεν πρέπει να έχει κατηγορία', + 'search_modifier_not_has_no_category' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) κατηγορία', + 'search_modifier_not_has_any_category' => 'Η συναλλαγή δεν πρέπει να έχει κατηγορία', + 'search_modifier_has_any_category' => 'Η συναλλαγή πρέπει να έχει μία (οποιαδήποτε) κατηγορία', + 'search_modifier_has_no_budget' => 'Η συναλλαγή δεν πρέπει να έχει προϋπολογισμό', + 'search_modifier_not_has_any_budget' => 'Η συναλλαγή δεν πρέπει να έχει προϋπολογισμό', + 'search_modifier_has_any_budget' => 'Η συναλλαγή πρέπει να έχει έναν (οποιοδήποτε) προϋπολογισμό', + 'search_modifier_not_has_no_budget' => 'Η συναλλαγή πρέπει να έχει έναν (οποιοδήποτε) προϋπολογισμό', + 'search_modifier_has_no_bill' => 'Η συναλλαγή δεν πρέπει να έχει πάγιο έξοδο', + 'search_modifier_not_has_no_bill' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) πάγιο έξοδο', + 'search_modifier_has_any_bill' => 'Η συναλλαγή πρέπει να έχει ένα (οποιοδήποτε) πάγιο έξοδο', + 'search_modifier_not_has_any_bill' => 'Η συναλλαγή δεν πρέπει να έχει πάγιο έξοδο', + 'search_modifier_has_no_tag' => 'Η συναλλαγή δεν πρέπει να έχει καμία ετικέτα', + 'search_modifier_not_has_any_tag' => 'Η συναλλαγή δεν πρέπει να έχει ετικέτα', + 'search_modifier_not_has_no_tag' => 'Η συναλλαγή πρέπει να έχει (οποιαδήποτε) ετικέτα', + 'search_modifier_has_any_tag' => 'Η συναλλαγή πρέπει να έχει μία (οποιαδήποτε) ετικέτα', + 'search_modifier_notes_contains' => 'Οι σημειώσεις της συναλλαγής περιέχουν ":value"', + 'search_modifier_not_notes_contains' => 'Οι σημειώσεις της συναλλαγής δεν περιέχουν ":value"', + 'search_modifier_notes_starts' => 'Οι σημειώσεις της συναλλαγής αρχίζουν με ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'Η συναλλαγή πρέπει να έχει σημειώσεις', + 'search_modifier_not_any_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', + 'search_modifier_amount_is' => 'Το ποσό είναι ακριβώς :value', + 'search_modifier_not_amount_is' => 'Το ποσό δεν είναι :value', + 'search_modifier_amount_less' => 'Το ποσό είναι μικρότερο ή ίσο με :value', + 'search_modifier_not_amount_more' => 'Το ποσό είναι μικρότερο ή ίσο με :value', + 'search_modifier_amount_more' => 'Το ποσό είναι μεγαλύτερο ή ίσο με :value', + 'search_modifier_not_amount_less' => 'Το ποσό είναι μεγαλύτερο ή ίσο με :value', + 'search_modifier_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης είναι ακριβώς ":value"', + 'search_modifier_not_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης δεν είναι ":value"', + 'search_modifier_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης περιέχει ":value"', + 'search_modifier_not_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης δεν περιέχει ":value"', + 'search_modifier_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με ":value"', + 'search_modifier_not_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης δεν αρχίζει με ":value"', + 'search_modifier_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με ":value"', + 'search_modifier_not_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης δεν τελειώνει με ":value"', + 'search_modifier_source_account_id' => 'Το ID του λογαριασμού προέλευσης είναι :value', + 'search_modifier_not_source_account_id' => 'Το ID του λογαριασμού προέλευσης δεν είναι :value', + 'search_modifier_source_account_nr_is' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης είναι ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης περιέχει ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Ο αριθμός (IBAN) του λογαριασμού προέλευσης αρχίζει με ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Το όνομα του λογαριασμού προορισμού είναι ακριβώς ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Το όνομα του λογαριασμού προορισμού περιέχει ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Το ID του λογαριασμού προορισμού είναι :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού είναι ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού περιέχει ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού αρχίζει με ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Ο αριθμός (IBAN) του λογαριασμού προορισμού τελειώνει με ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Το/Τα αναγνωριστικά λογαριασμού προέλευσης ή προορισμού είναι: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Η κατηγορία είναι ":value"', + 'search_modifier_not_category_is' => 'Η κατηγορία δεν είναι ":value"', + 'search_modifier_budget_is' => 'Ο προϋπολογισμός είναι ":value"', + 'search_modifier_not_budget_is' => 'Ο προϋπολογισμός δεν είναι ":value"', + 'search_modifier_bill_is' => 'Το πάγιο έξοδο είναι ":value"', + 'search_modifier_not_bill_is' => 'Το πάγιο έξοδο δεν είναι ":value"', + 'search_modifier_transaction_type' => 'Ο τύπος συναλλαγής είναι ":value"', + 'search_modifier_not_transaction_type' => 'Ο τύπος συναλλαγής δεν είναι ":value"', + 'search_modifier_tag_is' => 'Η ετικέτα είναι ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Η συναλλαγή είναι στο έτος ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Η συναλλαγή είναι στον μήνα ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Η συναλλαγή είναι την ημέρα του μήνα ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Η συναλλαγή είναι πριν ή μέσα στο έτος ":value"', + 'search_modifier_date_before_month' => 'Η συναλλαγή είναι πριν ή μέσα στο μήνα ":value"', + 'search_modifier_date_before_day' => 'Η συναλλαγή είναι πριν ή την ημέρα του μήνα ":value"', + 'search_modifier_date_after_year' => 'Η συναλλαγή είναι μέσα ή μετά το έτος ":value"', + 'search_modifier_date_after_month' => 'Η συναλλαγή είναι μέσα ή μετά το μήνα ":value"', + 'search_modifier_date_after_day' => 'Η συναλλαγή είναι μετά ή την ημέρα του μήνα ":value"', // new - 'search_modifier_tag_is_not' => 'Δεν υπάρχει ετικέτα ":value"', - 'search_modifier_not_tag_is_not' => 'Η ετικέτα είναι ":value"', - 'search_modifier_account_is' => 'Οποιοσδήποτε λογαριασμός είναι ":value"', - 'search_modifier_not_account_is' => 'Κανένας λογαριασμός δεν είναι ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Κανένας αριθμός λογαριασμού / IBAN δεν είναι ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Η κατηγορία περιέχει ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Η κατηγορία αρχίζει με ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Ο προϋπολογισμός περιέχει ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Ο προϋπολογισμός τελειώνει σε ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Ο προϋπολογισμός αρχίζει με ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Το πάγιο έξοδο περιέχει ":value"', - 'search_modifier_not_bill_contains' => 'Το πάγιο έξοδο δεν περιέχει ":value"', - 'search_modifier_bill_ends' => 'Το πάγιο έξοδο τελειώνει με ":value"', - 'search_modifier_not_bill_ends' => 'Το πάγιο έξοδο δεν τελειώνει στο ":value"', - 'search_modifier_bill_starts' => 'Το πάγιο έξοδο ξεκινά με ":value"', - 'search_modifier_not_bill_starts' => 'Το πάγιο έξοδο δεν ξεκινά με ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'Δεν υπάρχει ετικέτα ":value"', + 'search_modifier_not_tag_is_not' => 'Η ετικέτα είναι ":value"', + 'search_modifier_account_is' => 'Οποιοσδήποτε λογαριασμός είναι ":value"', + 'search_modifier_not_account_is' => 'Κανένας λογαριασμός δεν είναι ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Κανένας αριθμός λογαριασμού / IBAN δεν είναι ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Η κατηγορία περιέχει ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Η κατηγορία αρχίζει με ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Ο προϋπολογισμός περιέχει ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Ο προϋπολογισμός τελειώνει σε ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Ο προϋπολογισμός αρχίζει με ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Το πάγιο έξοδο περιέχει ":value"', + 'search_modifier_not_bill_contains' => 'Το πάγιο έξοδο δεν περιέχει ":value"', + 'search_modifier_bill_ends' => 'Το πάγιο έξοδο τελειώνει με ":value"', + 'search_modifier_not_bill_ends' => 'Το πάγιο έξοδο δεν τελειώνει στο ":value"', + 'search_modifier_bill_starts' => 'Το πάγιο έξοδο ξεκινά με ":value"', + 'search_modifier_not_bill_starts' => 'Το πάγιο έξοδο δεν ξεκινά με ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Ενημέρωση κανόνα ":rule" από το ερώτημα αναζήτησης', - 'create_rule_from_query' => 'Δημιουργία νέου κανόνα από το ερώτημα αναζήτησης', - 'rule_from_search_words' => 'Η ρουτίνα για τους κανόνες δυσκολεύτηκε στο χειρισμό του ":string". Ο προτεινόμενος κανόνας που ταιριάζει στο ερώτημά αναζήτησης μπορεί να δώσει διαφορετικά αποτελέσματα. Παρακαλώ να επιβεβαιώσετε προσεκτικά τους κανόνες ενεργοποίησης.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Ενημέρωση κανόνα ":rule" από το ερώτημα αναζήτησης', + 'create_rule_from_query' => 'Δημιουργία νέου κανόνα από το ερώτημα αναζήτησης', + 'rule_from_search_words' => 'Η ρουτίνα για τους κανόνες δυσκολεύτηκε στο χειρισμό του ":string". Ο προτεινόμενος κανόνας που ταιριάζει στο ερώτημά αναζήτησης μπορεί να δώσει διαφορετικά αποτελέσματα. Παρακαλώ να επιβεβαιώσετε προσεκτικά τους κανόνες ενεργοποίησης.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Οι ακόλουθοι τροποποιητές εφαρμόστηκαν στην αναζήτηση επίσης:', - 'general_search_error' => 'Ένα σφάλμα προέκυψε κατά την αναζήτηση. Παρακαλώ ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.', - 'search_box' => 'Αναζήτηση', - 'search_box_intro' => 'Καλωσορίσατε στην λειτουργία αναζήτησης του Firefly III. Εισάγετε το ερώτημα αναζήτησης στο πλαίσιο. Βεβαιωθείτε ότι έχετε ελέγξει το αρχείο βοήθειας, επειδή η αναζήτηση είναι αρκετά προχωρημένη.', - 'search_error' => 'Σφάλμα κατά την αναζήτηση', - 'search_searching' => 'Αναζήτηση ...', - 'search_results' => 'Αποτελέσματα αναζήτησης', + 'modifiers_applies_are' => 'Οι ακόλουθοι τροποποιητές εφαρμόστηκαν στην αναζήτηση επίσης:', + 'general_search_error' => 'Ένα σφάλμα προέκυψε κατά την αναζήτηση. Παρακαλώ ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.', + 'search_box' => 'Αναζήτηση', + 'search_box_intro' => 'Καλωσορίσατε στην λειτουργία αναζήτησης του Firefly III. Εισάγετε το ερώτημα αναζήτησης στο πλαίσιο. Βεβαιωθείτε ότι έχετε ελέγξει το αρχείο βοήθειας, επειδή η αναζήτηση είναι αρκετά προχωρημένη.', + 'search_error' => 'Σφάλμα κατά την αναζήτηση', + 'search_searching' => 'Αναζήτηση ...', + 'search_results' => 'Αποτελέσματα αναζήτησης', // repeat frequencies: - 'repeat_freq_yearly' => 'ετησίως', - 'repeat_freq_half-year' => 'εξαμηνιαίως', - 'repeat_freq_quarterly' => 'τριμηνιαίως', - 'repeat_freq_monthly' => 'μηνιαίως', - 'repeat_freq_weekly' => 'εβδομαδιαίως', - 'repeat_freq_daily' => 'ημερησίως', - 'daily' => 'ημερησίως', - 'weekly' => 'εβδομαδιαίως', - 'quarterly' => 'τριμηνιαίως', - 'half-year' => 'εξαμηνιαίως', - 'yearly' => 'ετησίως', + 'repeat_freq_yearly' => 'ετησίως', + 'repeat_freq_half-year' => 'εξαμηνιαίως', + 'repeat_freq_quarterly' => 'τριμηνιαίως', + 'repeat_freq_monthly' => 'μηνιαίως', + 'repeat_freq_weekly' => 'εβδομαδιαίως', + 'repeat_freq_daily' => 'ημερησίως', + 'daily' => 'ημερησίως', + 'weekly' => 'εβδομαδιαίως', + 'quarterly' => 'τριμηνιαίως', + 'half-year' => 'εξαμηνιαίως', + 'yearly' => 'ετησίως', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Δεν μπορείτε να εκτελέσετε ανενεργούς κανόνες.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Κανόνες', - 'rule_name' => 'Όνομα κανόνα', - 'rule_triggers' => 'Ο κανόνας ενεργοποιείται όταν', - 'rule_actions' => 'Ο κανόνας θα', - 'new_rule' => 'Νέος κανόνας', - 'new_rule_group' => 'Νέα ομάδα κανόνα', - 'rule_priority_up' => 'Δώστε στον κανόνα μεγαλύτερη προτεραιότητα', - 'rule_priority_down' => 'Δώστε στον κανόνα μικρότερη προτεραιότητα', - 'make_new_rule_group' => 'Δημιουργία νέας ομάδας κανόνων', - 'store_new_rule_group' => 'Αποθήκευση νέας ομάδας κανόνων', - 'created_new_rule_group' => 'Η νέα ομάδα κανόνων ":title" αποθηκεύτηκε!', - 'updated_rule_group' => 'Επιτυχής ενημέρωση της ομάδας κανόνων ":title".', - 'edit_rule_group' => 'Επεξεργασία ομάδας κανόνων ":title"', - 'duplicate_rule' => 'Αντιγραφή κανόνα ":title"', - 'rule_copy_of' => 'Αντιγραφή του ":title"', - 'duplicated_rule' => 'Έγινε αντιγραφή του κανόνα ":title" στο ":newTitle"', - 'delete_rule_group' => 'Διαγραφή ομάδας κανόνων ":title"', - 'deleted_rule_group' => 'Η ομάδα κανόνων ":title" διεγράφη', - 'update_rule_group' => 'Ενημέρωση ομάδας κανόνων', - 'no_rules_in_group' => 'Δεν υπάρχουν κανόνες σε αυτή την ομάδα', - 'move_rule_group_up' => 'Μετακίνηση ομάδας κανόνων επάνω', - 'move_rule_group_down' => 'Μετακίνηση ομάδας κανόνων κάτω', - 'save_rules_by_moving' => 'Αποθηκεύστε αυτόν τον κανόνα μετακινώντας τον σε μια άλλη ομάδα κανόνων:|Αποθηκεύστε αυτούς τους κανόνες μετακινώντας τους σε μια άλλη ομάδα κανόνων:', - 'make_new_rule' => 'Δημιουργία νέου κανόνα στην ομάδα κανόνων ":title"', - 'make_new_rule_no_group' => 'Δημιουργία νέου κανόνα', - 'instructions_rule_from_bill' => 'Για να είστε σε θέση να αντιστοιχήσετε συναλλαγές στο νέο λογαριασμό σας ":name", το Firefly III μπορεί να δημιουργήσει έναν κανόνα που θα ελέγχει κάθε συναλλαγή που αποθηκεύετε. Παρακαλώ επιβεβαιώστε τις λεπτομέρειες παρακάτω και αποθηκεύστε τον κανόνα ώστε το Firefly III να αντιστοιχεί αυτόματα τις συναλλαγές στο νέο σας λογαριασμό εφεξής.', - 'instructions_rule_from_journal' => 'Δημιουργία κανόνα που βασίζεται σε μία από τις συναλλαγές σας. Συμπληρώστε ή υποβάλετε μονομιάς την παρακάτω φόρμα.', - 'rule_is_strict' => 'αυστηρός κανόνας', - 'rule_is_not_strict' => 'μη-αυστηρός κανόνας', - 'rule_help_stop_processing' => 'Όταν τσεκάρετε αυτό το πλαίσιο, οι μετέπειτα κανόνες σε αυτή την ομάδα δεν θα εκτελεστούν.', - 'rule_help_strict' => 'Στους αυστηρούς κανόνες πρέπει να ενεργοποιηθούν ΟΛΑ τα κριτήρια για να εκτελεστεί η αλυσίδα ενεργειών. Στους μη αυστηρούς κανόνες, η ενεργοποίηση ΟΠΟΙΟΥΔΗΠΟΤΕ κριτηρίου είναι αρκετή για να εκτελεστούν οι ενέργειες.', - 'rule_help_active' => 'Οι ανενεργοί κανόνες δεν εκτελούνται ποτέ.', - 'stored_new_rule' => 'Αποθηκεύτηκε νέος κανόνας με τίτλο ":title"', - 'deleted_rule' => 'Διεγράφη ο κανόνας με τίτλο ":title"', - 'store_new_rule' => 'Αποθήκευση νέου κανόνα', - 'updated_rule' => 'Ενημέρωση του κανόνα με τίτλο ":title"', - 'default_rule_group_name' => 'Προεπιλεγμένοι κανόνες', - 'default_rule_group_description' => 'Όλοι οι κανόνες σας δεν είναι σε κάποια ιδιαίτερη ομάδα.', - 'trigger' => 'Κριτήριο', - 'trigger_value' => 'Τιμή ενεργοποίησης', - 'stop_processing_other_triggers' => 'Διακοπή ελέγχου στα υπόλοιπα κριτήρια', - 'add_rule_trigger' => 'Προσθήκη νέου κριτηρίου', - 'action' => 'Ενέργεια', - 'action_value' => 'Τιμή ενέργειας', - 'stop_executing_other_actions' => 'Διακοπή εκτέλεσης άλλων ενεργειών', - 'add_rule_action' => 'Προσθήκη νέας ενέργειας', - 'edit_rule' => 'Επεξεργασία κανόνα ":title"', - 'delete_rule' => 'Διαγραφή κανόνα ":title"', - 'update_rule' => 'Ενημέρωση κανόνα', - 'test_rule_triggers' => 'Δείτε τις αντιστοιχιζόμενες συναλλαγές', - 'warning_no_matching_transactions' => 'Δεν βρέθηκαν συναλλαγές που να συμφωνούν με τα κριτήρια.', - 'warning_no_valid_triggers' => 'Δεν δώσατε έγκυρα κριτήρια.', - 'apply_rule_selection' => 'Εφαρμογή του κανόνα ":title" σε μία επιλογή των συναλλαγών σας', - 'apply_rule_selection_intro' => 'Κανόνες όπως ":title" εφαρμόζονται συνήθως σε νέες ή ενημερωμένες συναλλαγές, αλλά μπορείτε να πείτε στο Firefly ΙΙΙ να τους εκτελέσει σε μια επιλογή υπαρχόντων συναλλαγών. Αυτό μπορεί να είναι χρήσιμο όταν έχετε ενημερώσει έναν κανόνα και χρειάζεστε οι αλλαγές να εφαρμοστούν σε όλες τις άλλες συναλλαγές σας.', - 'include_transactions_from_accounts' => 'Συμπερίληψη συναλλαγών από αυτούς τους λογαριασμούς', - 'include' => 'Περιλαμβάνεται;', - 'applied_rule_selection' => '{0} Καμία συναλλαγή στην επιλογή σας δεν άλλαξε από τον κανόνα ":title".|[1] Μία συναλλαγή στην επιλογή σας άλλαξε από τον κανόνα ":title".|[2,*]:count συναλλαγές στην επιλογή σας άλλαξαν από τον κανόνα ":title".', - 'execute' => 'Εκτέλεση', - 'apply_rule_group_selection' => 'Εφαρμογή ομάδας κανόνων ":title" σε μία επιλογή των συναλλαγών σας', - 'apply_rule_group_selection_intro' => 'Ομάδες κανόνων όπως ":title" συνήθως εφαρμόζονται σε νέες ή ενημερωμένες συναλλαγές, αλλά μπορείτε να πείτε στο Firefly III να εκτελέσει όλους τους κανόνες σε αυτή την ομάδα σε μία επιλογή των υπαρχόντων συναλλαγών σας. Αυτό μπορεί να είναι χρήσιμο εάν ενημερώσατε μια ομάδα κανόνων και θέλετε οι αλλαγές να εφαρμοστούν σε όλες τις άλλες συναλλαγές σας.', - 'applied_rule_group_selection' => 'Η ομάδα κανόνων ":title" έχει εφαρμοστεί στην επιλογή σας.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Δεν μπορείτε να εκτελέσετε ανενεργούς κανόνες.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Κανόνες', + 'rule_name' => 'Όνομα κανόνα', + 'rule_triggers' => 'Ο κανόνας ενεργοποιείται όταν', + 'rule_actions' => 'Ο κανόνας θα', + 'new_rule' => 'Νέος κανόνας', + 'new_rule_group' => 'Νέα ομάδα κανόνα', + 'rule_priority_up' => 'Δώστε στον κανόνα μεγαλύτερη προτεραιότητα', + 'rule_priority_down' => 'Δώστε στον κανόνα μικρότερη προτεραιότητα', + 'make_new_rule_group' => 'Δημιουργία νέας ομάδας κανόνων', + 'store_new_rule_group' => 'Αποθήκευση νέας ομάδας κανόνων', + 'created_new_rule_group' => 'Η νέα ομάδα κανόνων ":title" αποθηκεύτηκε!', + 'updated_rule_group' => 'Επιτυχής ενημέρωση της ομάδας κανόνων ":title".', + 'edit_rule_group' => 'Επεξεργασία ομάδας κανόνων ":title"', + 'duplicate_rule' => 'Αντιγραφή κανόνα ":title"', + 'rule_copy_of' => 'Αντιγραφή του ":title"', + 'duplicated_rule' => 'Έγινε αντιγραφή του κανόνα ":title" στο ":newTitle"', + 'delete_rule_group' => 'Διαγραφή ομάδας κανόνων ":title"', + 'deleted_rule_group' => 'Η ομάδα κανόνων ":title" διεγράφη', + 'update_rule_group' => 'Ενημέρωση ομάδας κανόνων', + 'no_rules_in_group' => 'Δεν υπάρχουν κανόνες σε αυτή την ομάδα', + 'move_rule_group_up' => 'Μετακίνηση ομάδας κανόνων επάνω', + 'move_rule_group_down' => 'Μετακίνηση ομάδας κανόνων κάτω', + 'save_rules_by_moving' => 'Αποθηκεύστε αυτόν τον κανόνα μετακινώντας τον σε μια άλλη ομάδα κανόνων:|Αποθηκεύστε αυτούς τους κανόνες μετακινώντας τους σε μια άλλη ομάδα κανόνων:', + 'make_new_rule' => 'Δημιουργία νέου κανόνα στην ομάδα κανόνων ":title"', + 'make_new_rule_no_group' => 'Δημιουργία νέου κανόνα', + 'instructions_rule_from_bill' => 'Για να είστε σε θέση να αντιστοιχήσετε συναλλαγές στο νέο λογαριασμό σας ":name", το Firefly III μπορεί να δημιουργήσει έναν κανόνα που θα ελέγχει κάθε συναλλαγή που αποθηκεύετε. Παρακαλώ επιβεβαιώστε τις λεπτομέρειες παρακάτω και αποθηκεύστε τον κανόνα ώστε το Firefly III να αντιστοιχεί αυτόματα τις συναλλαγές στο νέο σας λογαριασμό εφεξής.', + 'instructions_rule_from_journal' => 'Δημιουργία κανόνα που βασίζεται σε μία από τις συναλλαγές σας. Συμπληρώστε ή υποβάλετε μονομιάς την παρακάτω φόρμα.', + 'rule_is_strict' => 'αυστηρός κανόνας', + 'rule_is_not_strict' => 'μη-αυστηρός κανόνας', + 'rule_help_stop_processing' => 'Όταν τσεκάρετε αυτό το πλαίσιο, οι μετέπειτα κανόνες σε αυτή την ομάδα δεν θα εκτελεστούν.', + 'rule_help_strict' => 'Στους αυστηρούς κανόνες πρέπει να ενεργοποιηθούν ΟΛΑ τα κριτήρια για να εκτελεστεί η αλυσίδα ενεργειών. Στους μη αυστηρούς κανόνες, η ενεργοποίηση ΟΠΟΙΟΥΔΗΠΟΤΕ κριτηρίου είναι αρκετή για να εκτελεστούν οι ενέργειες.', + 'rule_help_active' => 'Οι ανενεργοί κανόνες δεν εκτελούνται ποτέ.', + 'stored_new_rule' => 'Αποθηκεύτηκε νέος κανόνας με τίτλο ":title"', + 'deleted_rule' => 'Διεγράφη ο κανόνας με τίτλο ":title"', + 'store_new_rule' => 'Αποθήκευση νέου κανόνα', + 'updated_rule' => 'Ενημέρωση του κανόνα με τίτλο ":title"', + 'default_rule_group_name' => 'Προεπιλεγμένοι κανόνες', + 'default_rule_group_description' => 'Όλοι οι κανόνες σας δεν είναι σε κάποια ιδιαίτερη ομάδα.', + 'trigger' => 'Κριτήριο', + 'trigger_value' => 'Τιμή ενεργοποίησης', + 'stop_processing_other_triggers' => 'Διακοπή ελέγχου στα υπόλοιπα κριτήρια', + 'add_rule_trigger' => 'Προσθήκη νέου κριτηρίου', + 'action' => 'Ενέργεια', + 'action_value' => 'Τιμή ενέργειας', + 'stop_executing_other_actions' => 'Διακοπή εκτέλεσης άλλων ενεργειών', + 'add_rule_action' => 'Προσθήκη νέας ενέργειας', + 'edit_rule' => 'Επεξεργασία κανόνα ":title"', + 'delete_rule' => 'Διαγραφή κανόνα ":title"', + 'update_rule' => 'Ενημέρωση κανόνα', + 'test_rule_triggers' => 'Δείτε τις αντιστοιχιζόμενες συναλλαγές', + 'warning_no_matching_transactions' => 'Δεν βρέθηκαν συναλλαγές που να συμφωνούν με τα κριτήρια.', + 'warning_no_valid_triggers' => 'Δεν δώσατε έγκυρα κριτήρια.', + 'apply_rule_selection' => 'Εφαρμογή του κανόνα ":title" σε μία επιλογή των συναλλαγών σας', + 'apply_rule_selection_intro' => 'Κανόνες όπως ":title" εφαρμόζονται συνήθως σε νέες ή ενημερωμένες συναλλαγές, αλλά μπορείτε να πείτε στο Firefly ΙΙΙ να τους εκτελέσει σε μια επιλογή υπαρχόντων συναλλαγών. Αυτό μπορεί να είναι χρήσιμο όταν έχετε ενημερώσει έναν κανόνα και χρειάζεστε οι αλλαγές να εφαρμοστούν σε όλες τις άλλες συναλλαγές σας.', + 'include_transactions_from_accounts' => 'Συμπερίληψη συναλλαγών από αυτούς τους λογαριασμούς', + 'include' => 'Περιλαμβάνεται;', + 'applied_rule_selection' => '{0} Καμία συναλλαγή στην επιλογή σας δεν άλλαξε από τον κανόνα ":title".|[1] Μία συναλλαγή στην επιλογή σας άλλαξε από τον κανόνα ":title".|[2,*]:count συναλλαγές στην επιλογή σας άλλαξαν από τον κανόνα ":title".', + 'execute' => 'Εκτέλεση', + 'apply_rule_group_selection' => 'Εφαρμογή ομάδας κανόνων ":title" σε μία επιλογή των συναλλαγών σας', + 'apply_rule_group_selection_intro' => 'Ομάδες κανόνων όπως ":title" συνήθως εφαρμόζονται σε νέες ή ενημερωμένες συναλλαγές, αλλά μπορείτε να πείτε στο Firefly III να εκτελέσει όλους τους κανόνες σε αυτή την ομάδα σε μία επιλογή των υπαρχόντων συναλλαγών σας. Αυτό μπορεί να είναι χρήσιμο εάν ενημερώσατε μια ομάδα κανόνων και θέλετε οι αλλαγές να εφαρμοστούν σε όλες τις άλλες συναλλαγές σας.', + 'applied_rule_group_selection' => 'Η ομάδα κανόνων ":title" έχει εφαρμοστεί στην επιλογή σας.', // actions and triggers - 'rule_trigger_store_journal' => 'Όταν δημιουργείται μια συναλλαγή', - 'rule_trigger_update_journal' => 'Όταν ενημερώνεται μία συναλλαγή', - 'rule_trigger_user_action' => 'Η ενέργεια χρήστη είναι ":trigger_value"', + 'rule_trigger_store_journal' => 'Όταν δημιουργείται μια συναλλαγή', + 'rule_trigger_update_journal' => 'Όταν ενημερώνεται μία συναλλαγή', + 'rule_trigger_user_action' => 'Η ενέργεια χρήστη είναι ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με..', - 'rule_trigger_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με..', - 'rule_trigger_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Το όνομα του λογαριασμού προέλευσης είναι..', - 'rule_trigger_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης είναι ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Το όνομα του λογαριασμού προέλευσης περιέχει..', - 'rule_trigger_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης περιέχει ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Το ID του λογαριασμού προέλευσης είναι ακριβώς..', - 'rule_trigger_source_account_id' => 'Το ID του λογαριασμού προέλευσης είναι ακριβώς :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Το ID του λογαριασμού προορισμού είναι ακριβώς..', - 'rule_trigger_destination_account_id' => 'Το ID του λογαριασμού προορισμού είναι ακριβώς :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Ο λογαριασμός προέλευσης είναι λογαριασμός (μετρητών)', - 'rule_trigger_source_is_cash' => 'Ο λογαριασμός προέλευσης είναι λογαριασμός (μετρητών)', - 'rule_trigger_destination_is_cash_choice' => 'Ο λογαριασμός προορισμού είναι λογαριασμός (μετρητών)', - 'rule_trigger_destination_is_cash' => 'Ο λογαριασμός προορισμού είναι λογαριασμός (μετρητών)', - 'rule_trigger_source_account_nr_starts_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN αρχίζει με..', - 'rule_trigger_source_account_nr_starts' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN αρχίζει με ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN τελειώνει με..', - 'rule_trigger_source_account_nr_ends' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN τελειώνει με ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN είναι..', - 'rule_trigger_source_account_nr_is' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN είναι ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN περιέχει..', - 'rule_trigger_source_account_nr_contains' => 'Ο αριθμός λογαριασμού προέλευσης /IBAN περιέχει ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με..', - 'rule_trigger_destination_account_starts' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Το όνομα του λογαριασμού προορισμού τελειώνει με..', - 'rule_trigger_destination_account_ends' => 'Το όνομα του λογαριασμού προορισμού τελειώνει με ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Το όνομα του λογαριασμού προορισμού είναι..', - 'rule_trigger_destination_account_is' => 'Το όνομα του λογαριασμού προορισμού είναι ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Το όνομα του λογαριασμού προορισμού περιέχει..', - 'rule_trigger_destination_account_contains' => 'Το όνομα του λογαριασμού προορισμού περιέχει ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN αρχίζει με..', - 'rule_trigger_destination_account_nr_starts' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN αρχίζει με ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN τελειώνει με..', - 'rule_trigger_destination_account_nr_ends' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN τελειώνει με ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού είναι..', - 'rule_trigger_destination_account_nr_is' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού είναι ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού περιέχει..', - 'rule_trigger_destination_account_nr_contains' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού περιέχει ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Η συναλλαγή είναι τύπου..', - 'rule_trigger_transaction_type' => 'Η συναλλαγή είναι τύπου ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Η κατηγορία είναι..', - 'rule_trigger_category_is' => 'Η κατηγορία είναι ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Η περιγραφή αρχίζει με..', - 'rule_trigger_description_starts' => 'Η περιγραφή αρχίζει με ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Η περιγραφή τελειώνει με..', - 'rule_trigger_description_ends' => 'Η περιγραφή τελειώνει με ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Η περιγραφή περιέχει..', - 'rule_trigger_description_contains' => 'Η περιγραφή περιέχει ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Η περιγραφή είναι..', - 'rule_trigger_description_is' => 'Η περιγραφή είναι ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Η ημερομηνία συναλλαγής είναι πριν από τις..', - 'rule_trigger_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν από τις ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Η ημερομηνία συναλλαγής είναι μετά από τις..', - 'rule_trigger_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά από τις ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Ο προϋπολογισμός είναι..', - 'rule_trigger_budget_is' => 'Ο προϋπολογισμός είναι ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Οποιαδήποτε ετικέτα είναι..', - 'rule_trigger_tag_is' => 'Οποιαδήποτε ετικέτα είναι ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Το νόμισμα της συναλλαγής είναι..', - 'rule_trigger_currency_is' => 'Το νόμισμα της συναλλαγής είναι ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Το ξένο νόμισμα της συναλλαγής είναι..', - 'rule_trigger_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Έχει τουλάχιστον τόσα συνημμένα', - 'rule_trigger_has_attachments' => 'Έχει τουλάχιστον :trigger_value συνημμένα', - 'rule_trigger_has_no_category_choice' => 'Δεν έχει κατηγορία', - 'rule_trigger_has_no_category' => 'Η συναλλαγή δεν έχει κατηγορία', - 'rule_trigger_has_any_category_choice' => 'Έχει μία(οποιαδήποτε) κατηγορία', - 'rule_trigger_has_any_category' => 'Η συναλλαγή έχει μία (οποιαδήποτε) κατηγορία', - 'rule_trigger_has_no_budget_choice' => 'Δεν έχει προϋπολογισμό', - 'rule_trigger_has_no_budget' => 'Η συναλλαγή δεν έχει προϋπολογισμό', - 'rule_trigger_has_any_budget_choice' => 'Έχει έναν (οποιοδήποτε) προϋπολογισμό', - 'rule_trigger_has_any_budget' => 'Η συναλλαγή έχει έναν (οποιοδήποτε) προϋπολογισμό', - 'rule_trigger_has_no_bill_choice' => 'Δεν έχει πάγιο έξοδο', - 'rule_trigger_has_no_bill' => 'Η συναλλαγή δεν έχει πάγιο έξοδο', - 'rule_trigger_has_any_bill_choice' => 'Έχει ένα (οποιοδήποτε) πάγιο έξοδο', - 'rule_trigger_has_any_bill' => 'Η συναλλαγή έχει ένα (οποιοδήποτε) πάγιο έξοδο', - 'rule_trigger_has_no_tag_choice' => 'Δεν έχει ετικέτα(ες)', - 'rule_trigger_has_no_tag' => 'Η συναλλαγή δεν έχει ετικέτα(ες)', - 'rule_trigger_has_any_tag_choice' => 'Έχει περισσότερες από μία (οποιεσδήποτε) ετικέτες', - 'rule_trigger_has_any_tag' => 'Η συναλλαγή έχει περισσότερες από μία (οποιεσδήποτε) ετικέτες', - 'rule_trigger_any_notes_choice' => 'Έχει (οποιεσδήποτε) σημειώσεις', - 'rule_trigger_any_notes' => 'Η συναλλαγή έχει (οποιεσδήποτε) σημειώσεις', - 'rule_trigger_no_notes_choice' => 'Δεν έχει σημειώσεις', - 'rule_trigger_no_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', - 'rule_trigger_notes_is_choice' => 'Οι σημειώσεις είναι..', - 'rule_trigger_notes_is' => 'Οι σημειώσεις είναι ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Οι σημειώσεις περιέχουν..', - 'rule_trigger_notes_contains' => 'Οι σημειώσεις περιέχουν ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Οι σημειώσεις αρχίζουν με..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Το πάγιο έξοδο είναι..', - 'rule_trigger_bill_is' => 'Το πάγιο έξοδο είναι ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Το ημερολογιακό ID της συναλλαγής είναι..', - 'rule_trigger_journal_id' => 'Το ημερολογιακό ID της συναλλαγής είναι ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Η συναλλαγή δεν έχει εξωτερικό URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με..', + 'rule_trigger_source_account_starts' => 'Το όνομα του λογαριασμού προέλευσης αρχίζει με ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με..', + 'rule_trigger_source_account_ends' => 'Το όνομα του λογαριασμού προέλευσης τελειώνει με ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Το όνομα του λογαριασμού προέλευσης είναι..', + 'rule_trigger_source_account_is' => 'Το όνομα του λογαριασμού προέλευσης είναι ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Το όνομα του λογαριασμού προέλευσης περιέχει..', + 'rule_trigger_source_account_contains' => 'Το όνομα του λογαριασμού προέλευσης περιέχει ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Το ID του λογαριασμού προέλευσης είναι ακριβώς..', + 'rule_trigger_source_account_id' => 'Το ID του λογαριασμού προέλευσης είναι ακριβώς :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Το ID του λογαριασμού προορισμού είναι ακριβώς..', + 'rule_trigger_destination_account_id' => 'Το ID του λογαριασμού προορισμού είναι ακριβώς :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Ο λογαριασμός προέλευσης είναι λογαριασμός (μετρητών)', + 'rule_trigger_source_is_cash' => 'Ο λογαριασμός προέλευσης είναι λογαριασμός (μετρητών)', + 'rule_trigger_destination_is_cash_choice' => 'Ο λογαριασμός προορισμού είναι λογαριασμός (μετρητών)', + 'rule_trigger_destination_is_cash' => 'Ο λογαριασμός προορισμού είναι λογαριασμός (μετρητών)', + 'rule_trigger_source_account_nr_starts_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN αρχίζει με..', + 'rule_trigger_source_account_nr_starts' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN αρχίζει με ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN τελειώνει με..', + 'rule_trigger_source_account_nr_ends' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN τελειώνει με ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN είναι..', + 'rule_trigger_source_account_nr_is' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN είναι ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Ο αριθμός του λογαριασμού προέλευσης / IBAN περιέχει..', + 'rule_trigger_source_account_nr_contains' => 'Ο αριθμός λογαριασμού προέλευσης /IBAN περιέχει ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με..', + 'rule_trigger_destination_account_starts' => 'Το όνομα του λογαριασμού προορισμού αρχίζει με ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Το όνομα του λογαριασμού προορισμού τελειώνει με..', + 'rule_trigger_destination_account_ends' => 'Το όνομα του λογαριασμού προορισμού τελειώνει με ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Το όνομα του λογαριασμού προορισμού είναι..', + 'rule_trigger_destination_account_is' => 'Το όνομα του λογαριασμού προορισμού είναι ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Το όνομα του λογαριασμού προορισμού περιέχει..', + 'rule_trigger_destination_account_contains' => 'Το όνομα του λογαριασμού προορισμού περιέχει ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN αρχίζει με..', + 'rule_trigger_destination_account_nr_starts' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN αρχίζει με ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN τελειώνει με..', + 'rule_trigger_destination_account_nr_ends' => 'Ο αριθμός του λογαριασμού προορισμού / IBAN τελειώνει με ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού είναι..', + 'rule_trigger_destination_account_nr_is' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού είναι ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού περιέχει..', + 'rule_trigger_destination_account_nr_contains' => 'Ο αριθμός / IBAN του λογαριασμού προορισμού περιέχει ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Η συναλλαγή είναι τύπου..', + 'rule_trigger_transaction_type' => 'Η συναλλαγή είναι τύπου ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Η κατηγορία είναι..', + 'rule_trigger_category_is' => 'Η κατηγορία είναι ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Η περιγραφή αρχίζει με..', + 'rule_trigger_description_starts' => 'Η περιγραφή αρχίζει με ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Η περιγραφή τελειώνει με..', + 'rule_trigger_description_ends' => 'Η περιγραφή τελειώνει με ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Η περιγραφή περιέχει..', + 'rule_trigger_description_contains' => 'Η περιγραφή περιέχει ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Η περιγραφή είναι..', + 'rule_trigger_description_is' => 'Η περιγραφή είναι ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Η ημερομηνία συναλλαγής είναι πριν από τις..', + 'rule_trigger_date_before' => 'Η ημερομηνία συναλλαγής είναι πριν από τις ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Η ημερομηνία συναλλαγής είναι μετά από τις..', + 'rule_trigger_date_after' => 'Η ημερομηνία συναλλαγής είναι μετά από τις ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Ο προϋπολογισμός είναι..', + 'rule_trigger_budget_is' => 'Ο προϋπολογισμός είναι ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Οποιαδήποτε ετικέτα είναι..', + 'rule_trigger_tag_is' => 'Οποιαδήποτε ετικέτα είναι ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Το νόμισμα της συναλλαγής είναι..', + 'rule_trigger_currency_is' => 'Το νόμισμα της συναλλαγής είναι ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Το ξένο νόμισμα της συναλλαγής είναι..', + 'rule_trigger_foreign_currency_is' => 'Το ξένο νόμισμα της συναλλαγής είναι ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Έχει τουλάχιστον τόσα συνημμένα', + 'rule_trigger_has_attachments' => 'Έχει τουλάχιστον :trigger_value συνημμένα', + 'rule_trigger_has_no_category_choice' => 'Δεν έχει κατηγορία', + 'rule_trigger_has_no_category' => 'Η συναλλαγή δεν έχει κατηγορία', + 'rule_trigger_has_any_category_choice' => 'Έχει μία(οποιαδήποτε) κατηγορία', + 'rule_trigger_has_any_category' => 'Η συναλλαγή έχει μία (οποιαδήποτε) κατηγορία', + 'rule_trigger_has_no_budget_choice' => 'Δεν έχει προϋπολογισμό', + 'rule_trigger_has_no_budget' => 'Η συναλλαγή δεν έχει προϋπολογισμό', + 'rule_trigger_has_any_budget_choice' => 'Έχει έναν (οποιοδήποτε) προϋπολογισμό', + 'rule_trigger_has_any_budget' => 'Η συναλλαγή έχει έναν (οποιοδήποτε) προϋπολογισμό', + 'rule_trigger_has_no_bill_choice' => 'Δεν έχει πάγιο έξοδο', + 'rule_trigger_has_no_bill' => 'Η συναλλαγή δεν έχει πάγιο έξοδο', + 'rule_trigger_has_any_bill_choice' => 'Έχει ένα (οποιοδήποτε) πάγιο έξοδο', + 'rule_trigger_has_any_bill' => 'Η συναλλαγή έχει ένα (οποιοδήποτε) πάγιο έξοδο', + 'rule_trigger_has_no_tag_choice' => 'Δεν έχει ετικέτα(ες)', + 'rule_trigger_has_no_tag' => 'Η συναλλαγή δεν έχει ετικέτα(ες)', + 'rule_trigger_has_any_tag_choice' => 'Έχει περισσότερες από μία (οποιεσδήποτε) ετικέτες', + 'rule_trigger_has_any_tag' => 'Η συναλλαγή έχει περισσότερες από μία (οποιεσδήποτε) ετικέτες', + 'rule_trigger_any_notes_choice' => 'Έχει (οποιεσδήποτε) σημειώσεις', + 'rule_trigger_any_notes' => 'Η συναλλαγή έχει (οποιεσδήποτε) σημειώσεις', + 'rule_trigger_no_notes_choice' => 'Δεν έχει σημειώσεις', + 'rule_trigger_no_notes' => 'Η συναλλαγή δεν έχει σημειώσεις', + 'rule_trigger_notes_is_choice' => 'Οι σημειώσεις είναι..', + 'rule_trigger_notes_is' => 'Οι σημειώσεις είναι ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Οι σημειώσεις περιέχουν..', + 'rule_trigger_notes_contains' => 'Οι σημειώσεις περιέχουν ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Οι σημειώσεις αρχίζουν με..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Το πάγιο έξοδο είναι..', + 'rule_trigger_bill_is' => 'Το πάγιο έξοδο είναι ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Το ημερολογιακό ID της συναλλαγής είναι..', + 'rule_trigger_journal_id' => 'Το ημερολογιακό ID της συναλλαγής είναι ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Η συναλλαγή δεν έχει εξωτερικό URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Οποιοσδήποτε λογαριασμός αρχίζει με..', - 'rule_trigger_account_starts' => 'Οποιοσδήποτε λογαριασμός αρχίζει με ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Το πάγιο έξοδο περιέχει..', - 'rule_trigger_bill_contains' => 'Το πάγιο έξοδο περιέχει ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Το πάγιο έξοδο τελειώνει με..', - 'rule_trigger_bill_ends' => 'Το πάγιο έξοδο τελειώνει με ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Το πάγιο έξοδο ξεκινάει με..', - 'rule_trigger_bill_starts' => 'Το πάγιο έξοδο ξεκινά με ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Οποιοσδήποτε λογαριασμός αρχίζει με..', + 'rule_trigger_account_starts' => 'Οποιοσδήποτε λογαριασμός αρχίζει με ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Το πάγιο έξοδο περιέχει..', + 'rule_trigger_bill_contains' => 'Το πάγιο έξοδο περιέχει ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Το πάγιο έξοδο τελειώνει με..', + 'rule_trigger_bill_ends' => 'Το πάγιο έξοδο τελειώνει με ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Το πάγιο έξοδο ξεκινάει με..', + 'rule_trigger_bill_starts' => 'Το πάγιο έξοδο ξεκινά με ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Το πάγιο έξοδο δεν είναι ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Το πάγιο έξοδο δεν περιέχει ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Το πάγιο έξοδο δεν τελειώνει στο ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Το πάγιο έξοδο δεν τελειώνει με το ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Η συναλλαγή δεν έχει πάγιο έξοδο', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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' => 'Η συναλλαγή έχει ένα (οποιοδήποτε) πάγιο έξοδο', - 'rule_trigger_not_has_no_tag' => 'Transaction has a (any) tag', - 'rule_trigger_not_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Το πάγιο έξοδο δεν είναι ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Το πάγιο έξοδο δεν περιέχει ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Το πάγιο έξοδο δεν τελειώνει στο ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Το πάγιο έξοδο δεν τελειώνει με το ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Η συναλλαγή δεν έχει πάγιο έξοδο', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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' => 'Η συναλλαγή έχει ένα (οποιοδήποτε) πάγιο έξοδο', + 'rule_trigger_not_has_no_tag' => 'Transaction has a (any) tag', + 'rule_trigger_not_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)', - 'rule_action_delete_transaction' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)', - 'rule_action_set_category' => 'Ορίστε την κατηγορία σε ":action_value"', - 'rule_action_clear_category' => 'Καθαρισμός κατηγορίας', - 'rule_action_set_budget' => 'Ορίστε τον προϋπολογισμό σε ":action_value"', - 'rule_action_clear_budget' => 'Καθαρισμός προϋπολογισμού', - 'rule_action_add_tag' => 'Προσθήκη ετικέτας ":action_value"', - 'rule_action_remove_tag' => 'Αφαίρεση ετικέτας ":action_value"', - 'rule_action_remove_all_tags' => 'Αφαίρεση όλων των ετικετών', - 'rule_action_set_description' => 'Ορίστε την περιγραφή σε ":action_value"', - 'rule_action_append_description' => 'Προσαρτήστε την περιγραφή με ":action_value"', - 'rule_action_prepend_description' => 'Προεπιλέξτε την περιγραφή με ":action_value"', - 'rule_action_set_category_choice' => 'Ορισμός κατηγορίας σε ..', - 'rule_action_clear_category_choice' => 'Καθαρισμός οποιασδήποτε κατηγορίας', - 'rule_action_set_budget_choice' => 'Ορισμός προϋπολογισμού σε ..', - 'rule_action_clear_budget_choice' => 'Καθαρισμός οποιουδήποτε προϋπολογισμού', - 'rule_action_add_tag_choice' => 'Προσθήκη ετικέτας ..', - 'rule_action_remove_tag_choice' => 'Αφαίρεση ετικέτας ..', - 'rule_action_remove_all_tags_choice' => 'Αφαίρεση όλων των ετικετών', - 'rule_action_set_description_choice' => 'Ορισμός περιγραφής σε ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Ορισμός του λογαριασμού προέλευσης σε :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Ορισμός του λογαριασμού προορισμού σε :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Προσάρτηση σημειώσεων με ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Προεπιλογή σημειώσεων με ":action_value"', - 'rule_action_clear_notes_choice' => 'Αφαίρεση οποιονδήποτε σημειώσεων', - 'rule_action_clear_notes' => 'Αφαίρεση οποιονδήποτε σημειώσεων', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Σύνδεση σε ένα πάγιο έξοδο..', - 'rule_action_link_to_bill' => 'Σύνδεση στο πάγιο έξοδο ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Ορισμός σημειώσεων σε ":action_value"', - 'rule_action_convert_deposit_choice' => 'Μετατροπή της συναλλαγής σε μία κατάθεση', - 'rule_action_convert_deposit' => 'Μετατροπή της συναλλαγής σε μία κατάθεση από ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Μετατροπή της συναλλαγής σε μία ανάληψη', - 'rule_action_convert_withdrawal' => 'Μετατροπή της συναλλαγής σε μία ανάληψη σε ":action_value"', - 'rule_action_convert_transfer_choice' => 'Μετατροπή της συναλλαγής σε μία μεταφορά', - 'rule_action_convert_transfer' => 'Μετατροπή της συναλλαγής σε μία μεταφορά με ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Ομάδα κανόνων για πάγια έξοδα', - 'rulegroup_for_bills_description' => 'Μια ειδική ομάδα κανόνων για όλους τους κανόνες που περιλαμβάνουν πάγια έξοδα.', - 'rule_for_bill_title' => 'Αυτόματα δημιουργημένος κανόνας για το πάγιο έξοδο ":name"', - 'rule_for_bill_description' => 'Αυτός ο κανόνας δημιουργείται αυτόματα στην προσπάθεια να αντιστοιχηθεί το πάγιο έξοδο ":name".', - 'create_rule_for_bill' => 'Δημιουργία νέου κανόνα για το πάγιο έξοδο ":name"', - 'create_rule_for_bill_txt' => 'Συγχαρητήρια, μόλις δημιουργήσατε ένα νέο πάγιο έξοδο με το όνομα ":name"! Το Firefly III μπορεί να αντιστοιχίσει αυτόματα μελλοντικές πληρωμές για το πάγιο έξοδο. Για παράδειγμα, οποτεδήποτε πληρώνετε το ενοίκιο, ο λογαριασμός δαπανών "Ενοίκιο" θα συνδεθεί με αυτή την πάγια δαπάνη. Με αυτό τον τρόπο, το Firefly III μπορεί να εμφανίσει με ακρίβεια ποια πάγια έξοδα είναι σε καθυστέρηση και ποια όχι. Για να μπορεί να γίνει αυτό, θα πρέπει να δημιουργηθεί ένας νέος κανόνας. Το Firefly III έχει συμπληρωμένες ορισμένες λογικές προεπιλογές για εσάς. Παρακαλώ επιβεβαιώστε ότι είναι σωστές. Εάν αυτές οι τιμές είναι σωστές, το Firefly III θα συνδέσει αυτόματα τη σωστή ανάλογη ανάληψη με το πάγιο έξοδο. Παρακαλώ ελέγξτε τα κριτήρια ενεργοποίησης του κανόνα για να δείτε εάν είναι σωστά και προσθέστε επιπλέον εάν χρειάζεται.', - 'new_rule_for_bill_title' => 'Κανόνας για το πάγιο έξοδο ":name"', - 'new_rule_for_bill_description' => 'Αυτός ο κανόνας μαρκάρει συναλλαγές για το πάγιο έξοδο ":name".', + 'rule_action_delete_transaction_choice' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)', + 'rule_action_delete_transaction' => 'ΔΙΑΓΡΑΦΗ συναλλαγής (!)', + 'rule_action_set_category' => 'Ορίστε την κατηγορία σε ":action_value"', + 'rule_action_clear_category' => 'Καθαρισμός κατηγορίας', + 'rule_action_set_budget' => 'Ορίστε τον προϋπολογισμό σε ":action_value"', + 'rule_action_clear_budget' => 'Καθαρισμός προϋπολογισμού', + 'rule_action_add_tag' => 'Προσθήκη ετικέτας ":action_value"', + 'rule_action_remove_tag' => 'Αφαίρεση ετικέτας ":action_value"', + 'rule_action_remove_all_tags' => 'Αφαίρεση όλων των ετικετών', + 'rule_action_set_description' => 'Ορίστε την περιγραφή σε ":action_value"', + 'rule_action_append_description' => 'Προσαρτήστε την περιγραφή με ":action_value"', + 'rule_action_prepend_description' => 'Προεπιλέξτε την περιγραφή με ":action_value"', + 'rule_action_set_category_choice' => 'Ορισμός κατηγορίας σε ..', + 'rule_action_clear_category_choice' => 'Καθαρισμός οποιασδήποτε κατηγορίας', + 'rule_action_set_budget_choice' => 'Ορισμός προϋπολογισμού σε ..', + 'rule_action_clear_budget_choice' => 'Καθαρισμός οποιουδήποτε προϋπολογισμού', + 'rule_action_add_tag_choice' => 'Προσθήκη ετικέτας ..', + 'rule_action_remove_tag_choice' => 'Αφαίρεση ετικέτας ..', + 'rule_action_remove_all_tags_choice' => 'Αφαίρεση όλων των ετικετών', + 'rule_action_set_description_choice' => 'Ορισμός περιγραφής σε ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Ορισμός του λογαριασμού προέλευσης σε :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Ορισμός του λογαριασμού προορισμού σε :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Προσάρτηση σημειώσεων με ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Προεπιλογή σημειώσεων με ":action_value"', + 'rule_action_clear_notes_choice' => 'Αφαίρεση οποιονδήποτε σημειώσεων', + 'rule_action_clear_notes' => 'Αφαίρεση οποιονδήποτε σημειώσεων', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Σύνδεση σε ένα πάγιο έξοδο..', + 'rule_action_link_to_bill' => 'Σύνδεση στο πάγιο έξοδο ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Ορισμός σημειώσεων σε ":action_value"', + 'rule_action_convert_deposit_choice' => 'Μετατροπή της συναλλαγής σε μία κατάθεση', + 'rule_action_convert_deposit' => 'Μετατροπή της συναλλαγής σε μία κατάθεση από ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Μετατροπή της συναλλαγής σε μία ανάληψη', + 'rule_action_convert_withdrawal' => 'Μετατροπή της συναλλαγής σε μία ανάληψη σε ":action_value"', + 'rule_action_convert_transfer_choice' => 'Μετατροπή της συναλλαγής σε μία μεταφορά', + 'rule_action_convert_transfer' => 'Μετατροπή της συναλλαγής σε μία μεταφορά με ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Ομάδα κανόνων για πάγια έξοδα', + 'rulegroup_for_bills_description' => 'Μια ειδική ομάδα κανόνων για όλους τους κανόνες που περιλαμβάνουν πάγια έξοδα.', + 'rule_for_bill_title' => 'Αυτόματα δημιουργημένος κανόνας για το πάγιο έξοδο ":name"', + 'rule_for_bill_description' => 'Αυτός ο κανόνας δημιουργείται αυτόματα στην προσπάθεια να αντιστοιχηθεί το πάγιο έξοδο ":name".', + 'create_rule_for_bill' => 'Δημιουργία νέου κανόνα για το πάγιο έξοδο ":name"', + 'create_rule_for_bill_txt' => 'Συγχαρητήρια, μόλις δημιουργήσατε ένα νέο πάγιο έξοδο με το όνομα ":name"! Το Firefly III μπορεί να αντιστοιχίσει αυτόματα μελλοντικές πληρωμές για το πάγιο έξοδο. Για παράδειγμα, οποτεδήποτε πληρώνετε το ενοίκιο, ο λογαριασμός δαπανών "Ενοίκιο" θα συνδεθεί με αυτή την πάγια δαπάνη. Με αυτό τον τρόπο, το Firefly III μπορεί να εμφανίσει με ακρίβεια ποια πάγια έξοδα είναι σε καθυστέρηση και ποια όχι. Για να μπορεί να γίνει αυτό, θα πρέπει να δημιουργηθεί ένας νέος κανόνας. Το Firefly III έχει συμπληρωμένες ορισμένες λογικές προεπιλογές για εσάς. Παρακαλώ επιβεβαιώστε ότι είναι σωστές. Εάν αυτές οι τιμές είναι σωστές, το Firefly III θα συνδέσει αυτόματα τη σωστή ανάλογη ανάληψη με το πάγιο έξοδο. Παρακαλώ ελέγξτε τα κριτήρια ενεργοποίησης του κανόνα για να δείτε εάν είναι σωστά και προσθέστε επιπλέον εάν χρειάζεται.', + 'new_rule_for_bill_title' => 'Κανόνας για το πάγιο έξοδο ":name"', + 'new_rule_for_bill_description' => 'Αυτός ο κανόνας μαρκάρει συναλλαγές για το πάγιο έξοδο ":name".', - 'new_rule_for_journal_title' => 'Κανόνας με βάση τη συναλλαγή ":description"', - 'new_rule_for_journal_description' => 'Αυτός ο κανόνας έχει βασιστεί στη συναλλαγή ":description". Θα αντιστοιχεί σε συναλλαγές που είναι ίδιες ακριβώς.', + 'new_rule_for_journal_title' => 'Κανόνας με βάση τη συναλλαγή ":description"', + 'new_rule_for_journal_description' => 'Αυτός ο κανόνας έχει βασιστεί στη συναλλαγή ":description". Θα αντιστοιχεί σε συναλλαγές που είναι ίδιες ακριβώς.', // tags - 'store_new_tag' => 'Αποθήκευση νέας ετικέτας', - 'update_tag' => 'Ενημέρωση ετικέτας', - 'no_location_set' => 'Δεν ορίστηκε τοποθεσία.', - 'meta_data' => 'Μετα-δεδομένα', - 'location' => 'Τοποθεσία', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Χωρίς ημερομηνία', - 'result' => 'Αποτέλεσμα', - 'sums_apply_to_range' => 'Όλα τα σύνολα αφορούν το συγκεκριμένο εύρος', - 'mapbox_api_key' => 'Για τη χρήση χάρτη, λάβετε ένα κλειδί API από Mapbox. Ανοίξτε το .env αρχείο σας και εισάγετε αυτόν τον κωδικό στο MAPBOX_API_KEY=.', - 'press_object_location' => 'Κάντε δεξί κλικ ή πιέστε παρατεταμένα για να ορίσετε την τοποθεσία του αντικειμένου.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Εκκαθάριση τοποθεσίας', - 'delete_all_selected_tags' => 'Διαγραφή όλων των επιλεγμένων ετικετών', - 'select_tags_to_delete' => 'Μην ξεχάσετε να επιλέξετε ορισμένες ετικέτες.', - 'deleted_x_tags' => 'Διαγράφηκε :count ετικέτα.|Διαγράφηκαν :count ετικέτες.', - 'create_rule_from_transaction' => 'Δημιουργία κανόνα με βάση τη συναλλαγή', - 'create_recurring_from_transaction' => 'Δημιουργία επαναλαμβανόμενης συναλλαγής με βάση τη συναλλαγή', + 'store_new_tag' => 'Αποθήκευση νέας ετικέτας', + 'update_tag' => 'Ενημέρωση ετικέτας', + 'no_location_set' => 'Δεν ορίστηκε τοποθεσία.', + 'meta_data' => 'Μετα-δεδομένα', + 'location' => 'Τοποθεσία', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Χωρίς ημερομηνία', + 'result' => 'Αποτέλεσμα', + 'sums_apply_to_range' => 'Όλα τα σύνολα αφορούν το συγκεκριμένο εύρος', + 'mapbox_api_key' => 'Για τη χρήση χάρτη, λάβετε ένα κλειδί API από Mapbox. Ανοίξτε το .env αρχείο σας και εισάγετε αυτόν τον κωδικό στο MAPBOX_API_KEY=.', + 'press_object_location' => 'Κάντε δεξί κλικ ή πιέστε παρατεταμένα για να ορίσετε την τοποθεσία του αντικειμένου.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Εκκαθάριση τοποθεσίας', + 'delete_all_selected_tags' => 'Διαγραφή όλων των επιλεγμένων ετικετών', + 'select_tags_to_delete' => 'Μην ξεχάσετε να επιλέξετε ορισμένες ετικέτες.', + 'deleted_x_tags' => 'Διαγράφηκε :count ετικέτα.|Διαγράφηκαν :count ετικέτες.', + 'create_rule_from_transaction' => 'Δημιουργία κανόνα με βάση τη συναλλαγή', + 'create_recurring_from_transaction' => 'Δημιουργία επαναλαμβανόμενης συναλλαγής με βάση τη συναλλαγή', // preferences - 'dark_mode_option_browser' => 'Σύμφωνα με τις προτιμήσεις του περιηγητή σας', - 'dark_mode_option_light' => 'Πάντα φωτεινό', - 'dark_mode_option_dark' => 'Πάντα σκοτεινό', - 'equal_to_language' => '(ίδιο με τη γλώσσα)', - 'dark_mode_preference' => 'Σκοτεινή λειτουργία', - 'dark_mode_preference_help' => 'Πείτε στο Firefly III πότε να χρησιμοποιεί σκοτεινή λειτουργία.', - 'pref_home_screen_accounts' => 'Λογαριασμοί αρχικής οθόνης', - 'pref_home_screen_accounts_help' => 'Ποιοι λογαριασμοί θα πρέπει να εμφανίζονται στην αρχική σελίδα;', - 'pref_view_range' => 'Εύρος εμφάνισης', - 'pref_view_range_help' => 'Κάποια διαγράμματα ομαδοποιούνται αυτόματα σε περιόδους. Οι προϋπολογισμοί σας θα ομαδοποιηθούν επίσης σε περιόδους. Ποιά περίοδο προτιμάτε;', - 'pref_1D' => 'Μία ημέρα', - 'pref_1W' => 'Μία εβδομάδα', - 'pref_1M' => 'Ένα μήνα', - 'pref_3M' => 'Τρεις μήνες (τρίμηνο)', - 'pref_6M' => 'Έξι μήνες (εξάμηνο)', - 'pref_1Y' => 'Ένα έτος', - 'pref_last365' => 'Προηγούμενο έτος', - 'pref_last90' => 'Τελευταίες 90 ημέρες', - 'pref_last30' => 'Τελευταίες 30 ημέρες', - 'pref_last7' => 'Τελευταίες 7 ημέρες', - 'pref_YTD' => 'Έτος μέχρι σήμερα', - 'pref_QTD' => 'Τρίμηνο μέχρι σήμερα', - 'pref_MTD' => 'Μήνας μέχρι σήμερα', - 'pref_languages' => 'Γλώσσες', - 'pref_locale' => 'Ρυθμίσεις τοποθεσίας', - 'pref_languages_help' => 'Το Firefly III υποστηρίζει διάφορες γλώσσες. Ποιά προτιμάτε;', - 'pref_locale_help' => 'Το Firefly III σας επιτρέπει να ορίσετε ορισμένες ρυθμίσεις τοποθεσίας, όπως τον τρόπο μορφοποίησης νομισμάτων, αριθμών και ημερομηνιών. Οι καταχωρήσεις σε αυτήν τη λίστα ενδέχεται να μην υποστηρίζονται από το σύστημά σας. Το Firefly III δεν έχει τις σωστές ρυθμίσεις ημερομηνίας για κάθε τοποθεσία. επικοινωνήστε μαζί μου για βελτιώσεις.', - 'pref_locale_no_demo' => 'Αυτό το χαρακτηριστικό δε θα λειτουργήσει για τον χρήστη επίδειξης.', - 'pref_custom_fiscal_year' => 'Ρυθμίσεις οικονομικού έτους', - 'pref_custom_fiscal_year_label' => 'Ενεργοποιημένο', - 'pref_custom_fiscal_year_help' => 'Σε χώρες που χρησιμοποιούν οικονομικό έτος διαφορετικό από 1 Ιανουαρίου εώς 31 Δεκεμβρίου, μπορείτε να ενεργοποιήσετε αυτή την επιλογή και να ορίσετε την αρχή και το τέλος του οικονομικού έτους', - 'pref_fiscal_year_start_label' => 'Έναρξη οικονομικού έτους', - 'pref_two_factor_auth' => 'Επιβεβαίωση δύο βημάτων', - 'pref_two_factor_auth_help' => 'Όταν ενεργοποιήσετε την ταυτοποίηση 2 βημάτων (επίσης γνωστή και ως έλεγχος ταυτότητας δύο παραγόντων), προσθέτετε ένα ακόμη επίπεδο ασφάλειας στο λογαριασμό σας. Μπορείτε να συνδεθείτε με κάτι που ξέρετε (τον κωδικό σας) και κάτι που έχετε (έναν κωδικό επιβεβαίωσης). Οι κωδικοί επιβεβαίωσης δημιουργούνται αυτόματα από μία εφαρμογή στο τηλέφωνό σας, όπως το Authy ή το Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Ενεργοποίηση επιβεβαίωσης 2 βημάτων', - 'pref_two_factor_auth_disabled' => 'Ο κωδικός επιβεβαίωσης 2 βημάτων αφαιρέθηκε και απενεργοποιήθηκε', - 'pref_two_factor_auth_remove_it' => 'Μην ξεχάσετε να αφαιρέσετε το λογαριασμό από την εφαρμογή ταυτοποίησης στο κινητό σας!', - 'pref_two_factor_auth_code' => 'Επιβεβαίωση κωδικού', - 'pref_two_factor_auth_code_help' => 'Σκανάρετε τον κώδικα QR με μία εφαρμογή στο κινητό σας όπως το Authy ή το Google Authenticator και εισάγετε τον κωδικό που δημιουργήθηκε.', - 'pref_two_factor_auth_reset_code' => 'Επαναφορά κωδικού επιβεβαίωσης', - 'pref_two_factor_auth_disable_2fa' => 'Απενεργοποίηση 2FA', - '2fa_use_secret_instead' => 'Εάν δεν μπορείτε να σκανάρετε τον κωδικό QR, δοκιμάστε να χρησιμοποιήσετε το μυστικό ανταυτού: :secret.', - '2fa_backup_codes' => 'Αποθηκεύστε αυτούς τους εφεδρικούς κωδικούς για να μπορείτε να έχετε πρόσβαση σε περίπτωση που χάσετε τη συσκευή σας.', - '2fa_already_enabled' => 'Η επαλήθευση 2 βημάτων είναι ήδη ενεργοποιημένη.', - 'wrong_mfa_code' => 'Αυτός ο κωδικός MFA δεν είναι έγκυρος.', - 'pref_save_settings' => 'Αποθήκευση ρυθμίσεων', - 'saved_preferences' => 'Οι προτιμήσεις αποθηκεύτηκαν!', - 'preferences_general' => 'Γενικά', - 'preferences_frontpage' => 'Αρχική οθόνη', - 'preferences_security' => 'Ασφάλεια', - 'preferences_layout' => 'Διάταξη', - 'preferences_notifications' => 'Ειδοποιήσεις', - 'pref_home_show_deposits' => 'Εμφάνιση καταθέσεων στην αρχική οθόνη', - 'pref_home_show_deposits_info' => 'Η αρχική οθόνη δείχνει ήδη τους λογαριασμούς δαπανών σας. Μήπως θα έπρεπε να δείχνει και τους λογαριασμούς εσόδων σας;', - 'pref_home_do_show_deposits' => 'Ναι, δείξτε τους', - 'successful_count' => 'από τις οποίες :count με επιτυχία', - 'list_page_size_title' => 'Μέγεθος σελίδας', - 'list_page_size_help' => 'Κάθε λίστα αντικειμένων (λογαριασμοί, συναλλαγές, κλπ) εμφανίζει το πολύ, τόσα ανά σελίδα.', - 'list_page_size_label' => 'Μέγεθος σελίδας', - 'between_dates' => '(:start και :end)', - 'pref_optional_fields_transaction' => 'Προαιρετικά πεδία για συναλλαγές', - 'pref_optional_fields_transaction_help' => 'Από προεπιλογή δεν μπορούν να ενεργοποιηθούν όλα τα πεδία όταν δημιουργείται μία νέα συναλλαγή (εξαιτίας της σύγχυσης). Παρακάτω, μπορείτε να ενεργοποιήσετε αυτά τα πεδία εάν νομίζετε ότι θα σας φανούν χρήσιμα. Φυσικά, όποιο πεδίο απενεργοποιείται, αλλά είναι ήδη συμπληρωμένο, θα συνεχίζει να εμφανίζεται ασχέτως της ρύθμισης.', - 'optional_tj_date_fields' => 'Πεδία ημερομηνίας', - 'optional_tj_other_fields' => 'Άλλα πεδία', - 'optional_tj_attachment_fields' => 'Πεδία συνημμένου', - 'pref_optional_tj_interest_date' => 'Ημερομηνία τοκισμού', - 'pref_optional_tj_book_date' => 'Ημερομηνία εγγραφής', - 'pref_optional_tj_process_date' => 'Ημερομηνία επεξεργασίας', - 'pref_optional_tj_due_date' => 'Ημερομηνία προθεσμίας', - 'pref_optional_tj_payment_date' => 'Ημερομηνία πληρωμής', - 'pref_optional_tj_invoice_date' => 'Ημερομηνία τιμολόγησης', - 'pref_optional_tj_internal_reference' => 'Εσωτερική αναφορά', - 'pref_optional_tj_notes' => 'Σημειώσεις', - 'pref_optional_tj_attachments' => 'Συνημμένα', - 'pref_optional_tj_external_url' => 'Εξωτερικό URL', - 'pref_optional_tj_location' => 'Τοποθεσία', - 'pref_optional_tj_links' => 'Συνδέσεις συναλλαγής', - 'optional_field_meta_dates' => 'Ημερομηνίες', - 'optional_field_meta_business' => 'Επιχείρηση', - 'optional_field_attachments' => 'Συνημμένα', - 'optional_field_meta_data' => 'Προαιρετικά μετα-δεδομένα', - 'external_url' => 'Εξωτερικό URL', - 'pref_notification_bill_reminder' => 'Υπενθύμιση τελευταίας προθεσμίας για πάγια έξοδα', - 'pref_notification_new_access_token' => 'Ειδοποίηση όταν δημιουργείται ένα νέο διακριτικό πρόσβασης API', - 'pref_notification_transaction_creation' => 'Ειδοποίηση όταν δημιουργείται αυτόματα μια συναλλαγή', - 'pref_notification_user_login' => 'Ειδοποίηση όταν συνδέεστε από μια νέα τοποθεσία', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Ειδοποιήσεις', - 'pref_notifications_help' => 'Υποδείξτε εάν πρόκειται για ειδοποιήσεις που θέλετε να λαμβάνετε. Ορισμένες ειδοποιήσεις ενδέχεται να περιέχουν ευαίσθητες οικονομικές πληροφορίες.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Αν θέλετε το Firefly III να σας ειδοποιεί χρησιμοποιώντας το Slack, εισάγετε εδώ το webhook URL. Διαφορετικά αφήστε το πεδίο κενό. Αν είστε διαχειριστής, θα πρέπει να ορίσετε αυτό το URL και στη διαχείριση.', - 'slack_url_label' => '"Εισερχόμενο webhook" URL στο Slack', + 'dark_mode_option_browser' => 'Σύμφωνα με τις προτιμήσεις του περιηγητή σας', + 'dark_mode_option_light' => 'Πάντα φωτεινό', + 'dark_mode_option_dark' => 'Πάντα σκοτεινό', + 'equal_to_language' => '(ίδιο με τη γλώσσα)', + 'dark_mode_preference' => 'Σκοτεινή λειτουργία', + 'dark_mode_preference_help' => 'Πείτε στο Firefly III πότε να χρησιμοποιεί σκοτεινή λειτουργία.', + 'pref_home_screen_accounts' => 'Λογαριασμοί αρχικής οθόνης', + 'pref_home_screen_accounts_help' => 'Ποιοι λογαριασμοί θα πρέπει να εμφανίζονται στην αρχική σελίδα;', + 'pref_view_range' => 'Εύρος εμφάνισης', + 'pref_view_range_help' => 'Κάποια διαγράμματα ομαδοποιούνται αυτόματα σε περιόδους. Οι προϋπολογισμοί σας θα ομαδοποιηθούν επίσης σε περιόδους. Ποιά περίοδο προτιμάτε;', + 'pref_1D' => 'Μία ημέρα', + 'pref_1W' => 'Μία εβδομάδα', + 'pref_1M' => 'Ένα μήνα', + 'pref_3M' => 'Τρεις μήνες (τρίμηνο)', + 'pref_6M' => 'Έξι μήνες (εξάμηνο)', + 'pref_1Y' => 'Ένα έτος', + 'pref_last365' => 'Προηγούμενο έτος', + 'pref_last90' => 'Τελευταίες 90 ημέρες', + 'pref_last30' => 'Τελευταίες 30 ημέρες', + 'pref_last7' => 'Τελευταίες 7 ημέρες', + 'pref_YTD' => 'Έτος μέχρι σήμερα', + 'pref_QTD' => 'Τρίμηνο μέχρι σήμερα', + 'pref_MTD' => 'Μήνας μέχρι σήμερα', + 'pref_languages' => 'Γλώσσες', + 'pref_locale' => 'Ρυθμίσεις τοποθεσίας', + 'pref_languages_help' => 'Το Firefly III υποστηρίζει διάφορες γλώσσες. Ποιά προτιμάτε;', + 'pref_locale_help' => 'Το Firefly III σας επιτρέπει να ορίσετε ορισμένες ρυθμίσεις τοποθεσίας, όπως τον τρόπο μορφοποίησης νομισμάτων, αριθμών και ημερομηνιών. Οι καταχωρήσεις σε αυτήν τη λίστα ενδέχεται να μην υποστηρίζονται από το σύστημά σας. Το Firefly III δεν έχει τις σωστές ρυθμίσεις ημερομηνίας για κάθε τοποθεσία. επικοινωνήστε μαζί μου για βελτιώσεις.', + 'pref_locale_no_demo' => 'Αυτό το χαρακτηριστικό δε θα λειτουργήσει για τον χρήστη επίδειξης.', + 'pref_custom_fiscal_year' => 'Ρυθμίσεις οικονομικού έτους', + 'pref_custom_fiscal_year_label' => 'Ενεργοποιημένο', + 'pref_custom_fiscal_year_help' => 'Σε χώρες που χρησιμοποιούν οικονομικό έτος διαφορετικό από 1 Ιανουαρίου εώς 31 Δεκεμβρίου, μπορείτε να ενεργοποιήσετε αυτή την επιλογή και να ορίσετε την αρχή και το τέλος του οικονομικού έτους', + 'pref_fiscal_year_start_label' => 'Έναρξη οικονομικού έτους', + 'pref_two_factor_auth' => 'Επιβεβαίωση δύο βημάτων', + 'pref_two_factor_auth_help' => 'Όταν ενεργοποιήσετε την ταυτοποίηση 2 βημάτων (επίσης γνωστή και ως έλεγχος ταυτότητας δύο παραγόντων), προσθέτετε ένα ακόμη επίπεδο ασφάλειας στο λογαριασμό σας. Μπορείτε να συνδεθείτε με κάτι που ξέρετε (τον κωδικό σας) και κάτι που έχετε (έναν κωδικό επιβεβαίωσης). Οι κωδικοί επιβεβαίωσης δημιουργούνται αυτόματα από μία εφαρμογή στο τηλέφωνό σας, όπως το Authy ή το Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Ενεργοποίηση επιβεβαίωσης 2 βημάτων', + 'pref_two_factor_auth_disabled' => 'Ο κωδικός επιβεβαίωσης 2 βημάτων αφαιρέθηκε και απενεργοποιήθηκε', + 'pref_two_factor_auth_remove_it' => 'Μην ξεχάσετε να αφαιρέσετε το λογαριασμό από την εφαρμογή ταυτοποίησης στο κινητό σας!', + 'pref_two_factor_auth_code' => 'Επιβεβαίωση κωδικού', + 'pref_two_factor_auth_code_help' => 'Σκανάρετε τον κώδικα QR με μία εφαρμογή στο κινητό σας όπως το Authy ή το Google Authenticator και εισάγετε τον κωδικό που δημιουργήθηκε.', + 'pref_two_factor_auth_reset_code' => 'Επαναφορά κωδικού επιβεβαίωσης', + 'pref_two_factor_auth_disable_2fa' => 'Απενεργοποίηση 2FA', + '2fa_use_secret_instead' => 'Εάν δεν μπορείτε να σκανάρετε τον κωδικό QR, δοκιμάστε να χρησιμοποιήσετε το μυστικό ανταυτού: :secret.', + '2fa_backup_codes' => 'Αποθηκεύστε αυτούς τους εφεδρικούς κωδικούς για να μπορείτε να έχετε πρόσβαση σε περίπτωση που χάσετε τη συσκευή σας.', + '2fa_already_enabled' => 'Η επαλήθευση 2 βημάτων είναι ήδη ενεργοποιημένη.', + 'wrong_mfa_code' => 'Αυτός ο κωδικός MFA δεν είναι έγκυρος.', + 'pref_save_settings' => 'Αποθήκευση ρυθμίσεων', + 'saved_preferences' => 'Οι προτιμήσεις αποθηκεύτηκαν!', + 'preferences_general' => 'Γενικά', + 'preferences_frontpage' => 'Αρχική οθόνη', + 'preferences_security' => 'Ασφάλεια', + 'preferences_layout' => 'Διάταξη', + 'preferences_notifications' => 'Ειδοποιήσεις', + 'pref_home_show_deposits' => 'Εμφάνιση καταθέσεων στην αρχική οθόνη', + 'pref_home_show_deposits_info' => 'Η αρχική οθόνη δείχνει ήδη τους λογαριασμούς δαπανών σας. Μήπως θα έπρεπε να δείχνει και τους λογαριασμούς εσόδων σας;', + 'pref_home_do_show_deposits' => 'Ναι, δείξτε τους', + 'successful_count' => 'από τις οποίες :count με επιτυχία', + 'list_page_size_title' => 'Μέγεθος σελίδας', + 'list_page_size_help' => 'Κάθε λίστα αντικειμένων (λογαριασμοί, συναλλαγές, κλπ) εμφανίζει το πολύ, τόσα ανά σελίδα.', + 'list_page_size_label' => 'Μέγεθος σελίδας', + 'between_dates' => '(:start και :end)', + 'pref_optional_fields_transaction' => 'Προαιρετικά πεδία για συναλλαγές', + 'pref_optional_fields_transaction_help' => 'Από προεπιλογή δεν μπορούν να ενεργοποιηθούν όλα τα πεδία όταν δημιουργείται μία νέα συναλλαγή (εξαιτίας της σύγχυσης). Παρακάτω, μπορείτε να ενεργοποιήσετε αυτά τα πεδία εάν νομίζετε ότι θα σας φανούν χρήσιμα. Φυσικά, όποιο πεδίο απενεργοποιείται, αλλά είναι ήδη συμπληρωμένο, θα συνεχίζει να εμφανίζεται ασχέτως της ρύθμισης.', + 'optional_tj_date_fields' => 'Πεδία ημερομηνίας', + 'optional_tj_other_fields' => 'Άλλα πεδία', + 'optional_tj_attachment_fields' => 'Πεδία συνημμένου', + 'pref_optional_tj_interest_date' => 'Ημερομηνία τοκισμού', + 'pref_optional_tj_book_date' => 'Ημερομηνία εγγραφής', + 'pref_optional_tj_process_date' => 'Ημερομηνία επεξεργασίας', + 'pref_optional_tj_due_date' => 'Ημερομηνία προθεσμίας', + 'pref_optional_tj_payment_date' => 'Ημερομηνία πληρωμής', + 'pref_optional_tj_invoice_date' => 'Ημερομηνία τιμολόγησης', + 'pref_optional_tj_internal_reference' => 'Εσωτερική αναφορά', + 'pref_optional_tj_notes' => 'Σημειώσεις', + 'pref_optional_tj_attachments' => 'Συνημμένα', + 'pref_optional_tj_external_url' => 'Εξωτερικό URL', + 'pref_optional_tj_location' => 'Τοποθεσία', + 'pref_optional_tj_links' => 'Συνδέσεις συναλλαγής', + 'optional_field_meta_dates' => 'Ημερομηνίες', + 'optional_field_meta_business' => 'Επιχείρηση', + 'optional_field_attachments' => 'Συνημμένα', + 'optional_field_meta_data' => 'Προαιρετικά μετα-δεδομένα', + 'external_url' => 'Εξωτερικό URL', + 'pref_notification_bill_reminder' => 'Υπενθύμιση τελευταίας προθεσμίας για πάγια έξοδα', + 'pref_notification_new_access_token' => 'Ειδοποίηση όταν δημιουργείται ένα νέο διακριτικό πρόσβασης API', + 'pref_notification_transaction_creation' => 'Ειδοποίηση όταν δημιουργείται αυτόματα μια συναλλαγή', + 'pref_notification_user_login' => 'Ειδοποίηση όταν συνδέεστε από μια νέα τοποθεσία', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Ειδοποιήσεις', + 'pref_notifications_help' => 'Υποδείξτε εάν πρόκειται για ειδοποιήσεις που θέλετε να λαμβάνετε. Ορισμένες ειδοποιήσεις ενδέχεται να περιέχουν ευαίσθητες οικονομικές πληροφορίες.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Αν θέλετε το Firefly III να σας ειδοποιεί χρησιμοποιώντας το Slack, εισάγετε εδώ το webhook URL. Διαφορετικά αφήστε το πεδίο κενό. Αν είστε διαχειριστής, θα πρέπει να ορίσετε αυτό το URL και στη διαχείριση.', + 'slack_url_label' => '"Εισερχόμενο webhook" URL στο Slack', // Financial administrations - 'administration_index' => 'Οικονομική διαχείριση', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Οικονομική διαχείριση', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Εκκαθάριση δεδομένων από το Firefly III', - 'purge_data_expl' => '"Εκκαθάριση" σημαίνει "διαγραφή αυτού που έχει ήδη διαγραφεί". Σε κανονικές συνθήκες, το Firefly III δε διαγράφει τίποτα οριστικά. Απλώς το κρύβει. Το παρακάτω κουμπί διαγράφει όλες αυτές τις προηγουμένως "διαγραμμένες" εγγραφές ΓΙΑ ΠΑΝΤΑ.', - 'delete_stuff_header' => 'Διαγραφή και εκκαθάριση δεδομένων', - 'purge_all_data' => 'Εκκαθάριση όλων των διαγραμμένων εγγραφών', - 'purge_data' => 'Εκκαθάριση δεδομένων', - 'purged_all_records' => 'Όλες οι διαγραμμένες εγγραφές έχουν εκκαθαριστεί οριστικά.', - 'delete_data_title' => 'Διαγραφή δεδομένων από το Firefly III', - 'permanent_delete_stuff' => 'Μπορείτε να διαγράψετε πράγματα από το Firefly III. Η χρήση των παρακάτω κουμπιών σημαίνει ότι τα στοιχεία σας αυτά θα είναι κρυμμένα και δε θα εμφανίζονται. Δεν υπάρχει κουμπί αναίρεσης για αυτή την ενέργεια, αλλά τα στοιχεία θα παραμείνουν στη βάση δεδομένων όπου μπορείτε να τα αναζητήσετε χειροκίνητα σε κάποια άλλη στιγμή εάν είναι απαραίτητο.', - 'other_sessions_logged_out' => 'Όλες οι άλλες συνεδρίες σας έχουν αποσυνδεθεί.', - 'delete_unused_accounts' => 'Η διαγραφή αχρησιμοποίητων λογαριασμών θα καθαρίσει τις λίστες αυτόματης συμπλήρωσης.', - 'delete_all_unused_accounts' => 'Διαγραφή αχρησιμοποίητων λογαριασμών', - 'deleted_all_unused_accounts' => 'Όλοι οι αχρησιμοποίητοι λογαριασμοί έχουν διαγραφεί', - 'delete_all_budgets' => 'Διαγραφή ΟΛΩΝ των προϋπολογισμών σας', - 'delete_all_categories' => 'Διαγραφή ΟΛΩΝ των κατηγοριών σας', - 'delete_all_tags' => 'Διαγραφή ΟΛΩΝ των ετικετών σας', - 'delete_all_bills' => 'Διαγραφή ΟΛΩΝ των πάγιων εξόδων σας', - 'delete_all_piggy_banks' => 'Διαγραφή ΟΛΩΝ των κουμπαράδων σας', - 'delete_all_rules' => 'Διαγραφή ΟΛΩΝ των κανόνων σας', - 'delete_all_recurring' => 'Διαγραφή ΟΛΩΝ των επαναλαμβανόμενων συναλλαγών σας', - 'delete_all_object_groups' => 'Διαγραφή ΟΛΩΝ των ομάδων αντικειμένων σας', - 'delete_all_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών σας', - 'delete_all_asset_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών κεφαλαίων σας', - 'delete_all_expense_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών δαπανών σας', - 'delete_all_revenue_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών εσόδων σας', - 'delete_all_liabilities' => 'Διαγραφή ΟΛΩΝ των υποχρεώσεων σας', - 'delete_all_transactions' => 'Διαγραφή ΟΛΩΝ των συναλλαγών σας', - 'delete_all_withdrawals' => 'Διαγραφή ΟΛΩΝ των αναλήψεων σας', - 'delete_all_deposits' => 'Διαγραφή ΟΛΩΝ των καταθέσεων σας', - 'delete_all_transfers' => 'Διαγραφή ΟΛΩΝ των μεταφορών σας', - 'also_delete_transactions' => 'Η διαγραφή λογαριασμών θα διαγράψει επίσης ΟΛΕΣ τις σχετικές αναλήψεις, καταθέσεις και μεταφορές!', - 'deleted_all_budgets' => 'Όλοι οι προϋπολογισμοί έχουν διαγραφεί', - 'deleted_all_categories' => 'Όλες οι κατηγορίες έχουν διαγραφεί', - 'deleted_all_tags' => 'Όλες οι ετικέτες έχουν διαγραφεί', - 'deleted_all_bills' => 'Όλα τα πάγια έξοδα έχουν διαγραφεί', - 'deleted_all_piggy_banks' => 'Όλοι οι κουμπαράδες έχουν διαγραφεί', - 'deleted_all_rules' => 'Όλοι οι κανόνες και οι ομάδες κανόνων έχουν διαγραφεί', - 'deleted_all_object_groups' => 'Όλες οι ομάδες έχουν διαγραφεί', - 'deleted_all_accounts' => 'Όλοι οι λογαριασμοί έχουν διαγραφεί', - 'deleted_all_asset_accounts' => 'Όλοι οι λογαριασμοί κεφαλαίων έχουν διαγραφεί', - 'deleted_all_expense_accounts' => 'Όλοι οι λογαριασμοί δαπανών έχουν διαγραφεί', - 'deleted_all_revenue_accounts' => 'Όλοι οι λογαριασμοί εσόδων έχουν διαγραφεί', - 'deleted_all_liabilities' => 'Όλες οι υποχρεώσεις έχουν διαγραφεί', - 'deleted_all_transactions' => 'Όλες οι συναλλαγές έχουν διαγραφεί', - 'deleted_all_withdrawals' => 'Όλες οι αναλήψεις έχουν διαγραφεί', - 'deleted_all_deposits' => 'Όλες οι καταθέσεις έχουν διαγραφεί', - 'deleted_all_transfers' => 'Όλες οι μεταφορές έχουν διαγραφεί', - 'deleted_all_recurring' => 'Όλες οι επαναλαμβανόμενες συναλλαγές έχουν διαγραφεί', - 'change_your_password' => 'Αλλαγή του κωδικού σας', - 'delete_account' => 'Διαγραφή λογαριασμού', - 'current_password' => 'Τρέχων κωδικός', - 'new_password' => 'Νέος κωδικός', - 'new_password_again' => 'Νέος κωδικός (επανάληψη)', - 'delete_your_account' => 'Διαγραφή του λογαριασμού σας', - 'delete_your_account_help' => 'Διαγράφοντας το λογαριασμό σας, θα διαγράψετε και όλες τις συναλλαγές, τους λογαριασμούς, οτιδήποτε μπορεί να έχετε αποθηκεύσει στο Firefly III. Θα ΕΞΑΦΑΝΙΣΤΟΥΝ.', - 'delete_your_account_password' => 'Εισάγετε τον κωδικό σας για να συνεχίσετε.', - 'password' => 'Κωδικός πρόσβασης', - 'are_you_sure' => 'Είστε σίγουρος; Δεν μπορείτε να το πάρετε πίσω.', - 'delete_account_button' => 'ΔΙΑΓΡΑΦΗ του λογαριασμού σας', - 'invalid_current_password' => 'Μη έγκυρος κωδικός!', - 'password_changed' => 'Ο κωδικός έχει αλλάξει!', - 'should_change' => 'Θα ήταν καλό να αλλάξετε τον κωδικό σας.', - 'invalid_password' => 'Άκυρος κωδικός!', - 'what_is_pw_security' => 'Τι είναι η "επιβεβαίωση ασφάλειας κωδικού";', - 'secure_pw_title' => 'Πως να διαλέξετε ένα ασφαλή κωδικό πρόσβασης', - 'forgot_password_response' => 'Σας ευχαριστούμε. Εάν υπάρχει λογαριασμός με αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου, θα βρείτε οδηγίες στα εισερχόμενά σας.', - 'secure_pw_history' => 'Δεν περνάει ούτε μία εβδομάδα χωρίς να διαβάσεις για ένα site που έχασε τους κωδικούς των χρηστών του. Οι χάκερς και οι κλέφτες χρησιμοποιούν αυτούς τους κωδικούς για να κλέψουν προσωπικές σας πληροφορίες. Οι πληροφορίες αυτές είναι πολύτιμες.', - 'secure_pw_ff' => 'Χρησιμοποιείτε τον ίδιο κωδικό πρόσβασης παντού στο internet; Εάν ένας ιστότοπος διαρρεύσει τον κωδικό σας, οι χάκερ θα έχουν πρόσβαση σε όλα τα δεδομένα σας. Το Firefly III βασίζεται σε εσάς για να διαλέξετε ένα δυνατό και μοναδικό κωδικό για την προστασία των οικονομικών σας αρχείων.', - 'secure_pw_check_box' => 'Για να βοηθήσει σε αυτό το Firefly III μπορεί να ελέγξει εάν ο κωδικός που θέλετε να χρησιμοποιήσετε έχει κλαπεί στο παρελθόν. Εάν ισχύει αυτό, τότε το Firefly III σας συμβουλεύει να μη χρησιμοποιήσετε αυτό τον κωδικό.', - 'secure_pw_working_title' => 'Πως λειτουργεί;', - 'secure_pw_working' => 'Τσεκάροντας αυτό το πλαίσιο, το Firefly III θα στείλει τους 5 πρώτους χαρακτήρες του SHA1 hash του κωδικού σας στον Ιστότοπο του Troy Hunt για να δει εάν είναι στη λίστα. Αυτό θα σας εμποδίσει να χρησιμοποιήσετε ένα μη ασφαλές κωδικό όπως συνιστάται στη τελευταία Ειδική Έκδοση NIST πάνω στο θέμα αυτό.', - 'secure_pw_should' => 'Θα πρέπει να τσεκάρω αυτό το πλαίσιο;', - 'secure_pw_long_password' => 'Ναι. Πάντα να επιβεβαιώνετε ότι ο κωδικός σας είναι ασφαλής.', - 'command_line_token' => 'Διακριτικό γραμμής εντολών', - 'explain_command_line_token' => 'Χρειάζεστε αυτό το διακριτικό για να εκτελέσετε εργασίες γραμμής εντολών, όπως εξαγωγή δεδομένων. Χωρίς αυτό, οι εντολές δε θα λειτουργήσουν. Μην κοινοποιήσετε το διακριτικό της γραμμής εντολών. Κανείς δεν θα σας ζητήσει αυτό το διακριτικό. Εάν φοβάστε ότι το χάσατε, ή δε χρειάζεστε κάποιο ιδιαίτερο λόγο, δημιουργήστε ξανά αυτό το διακριτικό χρησιμοποιώντας το κουμπί.', - 'regenerate_command_line_token' => 'Αναδημιουργία διακριτικού γραμμής εντολών', - 'token_regenerated' => 'Δημιουργήθηκε ένα νέο διακριτικό γραμμής εντολών', - 'change_your_email' => 'Αλλάξτε την διεύθυνση email σας', - 'email_verification' => 'Ένα μήνυμα email θα σταλεί στην παλιά ΚΑΙ στη νέα σας διεύθυνση email. Για λόγους ασφαλείας, δεν θα μπορέσετε να συνδεθείτε εώς ότου επιβεβαιώσετε τη νέα σας διεύθυνση email. Εάν δεν είστε σίγουροι ότι η δική σας εγκατάσταση Firefly III μπορεί να στείλει email, παρακαλώ μην χρησιμοποιήσετε αυτή τη δυνατότητα. Εάν είστε διαχειριστής μπορείτε να δοκιμάσετε αυτή τη λειτουργία στη Διαχείριση.', - 'email_changed_logout' => 'Μέχρι να επιβεβαιώσετε την διεύθυνση email σας, δεν μπορείτε να συνδεθείτε.', - 'login_with_new_email' => 'Τώρα μπορείτε να συνδεθείτε με τη νέα σας διεύθυνση email.', - 'login_with_old_email' => 'Τώρα μπορείτε να συνδεθείτε με το παλιό σας email ξανά.', - 'login_provider_local_only' => 'Αυτή η λειτουργία δεν είναι διαθέσιμη όταν πιστοποιήστε μέσω ":login_provider".', - 'external_user_mgt_disabled' => 'Αυτή η ενέργεια δεν είναι διαθέσιμη όταν το Firefly III δεν είναι υπεύθυνο για διαχείριση χρηστών ή έλεγχο ταυτότητας.', - 'external_auth_disabled' => 'Αυτή η ενέργεια δεν είναι διαθέσιμη όταν το Firefly III δεν είναι υπεύθυνο για το χειρισμό ελέγχου ταυτότητας.', - 'delete_local_info_only' => 'Επειδή το Firefly III δεν είναι υπεύθυνο για διαχείριση χρηστών ή έλεγχο ταυτότητας, αυτή η λειτουργία θα διαγράψει μόνο τις τοπικές εγγραφές του Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Πελάτες OAuth', - 'profile_oauth_no_clients' => 'Δεν έχετε δημιουργήσει πελάτες OAuth.', - '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_header' => 'Πελάτες', - 'profile_oauth_client_id' => 'Αναγνωριστικό πελάτη', - 'profile_oauth_client_name' => 'Όνομα', - 'profile_oauth_client_secret' => 'Μυστικό', - 'profile_oauth_create_new_client' => 'Δημιουργία νέου πελάτη', - 'profile_oauth_create_client' => 'Δημιουργία πελάτη', - 'profile_oauth_edit_client' => 'Επεξεργασία πελάτη', - 'profile_oauth_name_help' => 'Κάτι που οι χρήστες σας θα αναγνωρίζουν και θα εμπιστεύονται.', - 'profile_oauth_redirect_url' => 'URL ανακατεύθυνσης', - 'profile_oauth_redirect_url_help' => 'To authorization callback URL της εφαρμογής σας.', - 'profile_authorized_apps' => 'Εξουσιοδοτημένες εφαρμογές', - 'profile_authorized_clients' => 'Εξουσιοδοτημένοι πελάτες', - 'profile_scopes' => 'Πεδία εφαρμογής', - 'profile_revoke' => 'Ανάκληση', - 'profile_oauth_client_secret_title' => 'Μυστικό Πελάτη', - 'profile_oauth_client_secret_expl' => 'Εδώ είναι το νέο σας μυστικό πελάτη. Αυτή είναι η μόνη φορά που θα σας εμφανιστεί, οπότε μην το χάσετε! Μπορείτε να το χρησιμοποιείτε για να κάνετε αιτήματα API.', - 'profile_personal_access_tokens' => 'Διακριτικά προσωπικής πρόσβασης', - 'profile_personal_access_token' => 'Διακριτικά προσωπικής πρόσβασης', - 'profile_oauth_confidential' => 'Εμπιστευτικό', - 'profile_oauth_confidential_help' => 'Απαιτήστε από το πρόγραμμα πελάτη να πραγματοποιήσει έλεγχο ταυτότητας με ένα μυστικό. Οι έμπιστοι πελάτες μπορούν να διατηρούν διαπιστευτήρια με ασφαλή τρόπο χωρίς να τα εκθέτουν σε μη εξουσιοδοτημένα μέρη. Οι δημόσιες εφαρμογές, όπως οι εγγενείς εφαρμογές για επιτραπέζιους υπολογιστές ή JavaScript SPA, δεν μπορούν να κρατήσουν μυστικά με ασφάλεια.', - 'profile_personal_access_token_explanation' => 'Εδώ είναι το νέο διακριτικό προσωπικής πρόσβασης. Αυτή είναι η μόνη φορά που θα εμφανιστεί, οπότε μη το χάσετε! Μπορείτε να χρησιμοποιείτε αυτό το διακριτικό για να κάνετε κλήσεις API.', - 'profile_no_personal_access_token' => 'Δεν έχετε δημιουργήσει προσωπικά διακριτικά πρόσβασης.', - 'profile_create_new_token' => 'Δημιουργία νέου διακριτικού', - 'profile_create_token' => 'Δημιουργία διακριτικού', - 'profile_create' => 'Δημιουργία', - 'profile_save_changes' => 'Αποθήκευση αλλαγών', - 'profile_whoops' => 'Ούπς!', - 'profile_something_wrong' => 'Κάτι πήγε στραβά!', - 'profile_try_again' => 'Κάτι πήγε στραβά. Παρακαλώ προσπαθήστε ξανά.', - 'amounts' => 'Ποσά', - 'multi_account_warning_unknown' => 'Ανάλογα με τον τύπο της συναλλαγής που δημιουργείτε, ο λογαριασμός προέλευσης ή/και προορισμού των επόμενων διαχωρισμών ενδέχεται να παρακαμφθεί από αυτό που ορίζεται στο πρώτο διαχωρισμό της συναλλαγής.', - 'multi_account_warning_withdrawal' => 'Λάβετε υπόψη ότι ο λογαριασμός προέλευσης των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της ανάληψης.', - 'multi_account_warning_deposit' => 'Λάβετε υπόψη ότι ο λογαριασμός προορισμού των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της κατάθεσης.', - 'multi_account_warning_transfer' => 'Λάβετε υπόψη ότι ο λογαριασμός προέλευσης και προορισμού των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της μεταφοράς.', + 'purge_data_title' => 'Εκκαθάριση δεδομένων από το Firefly III', + 'purge_data_expl' => '"Εκκαθάριση" σημαίνει "διαγραφή αυτού που έχει ήδη διαγραφεί". Σε κανονικές συνθήκες, το Firefly III δε διαγράφει τίποτα οριστικά. Απλώς το κρύβει. Το παρακάτω κουμπί διαγράφει όλες αυτές τις προηγουμένως "διαγραμμένες" εγγραφές ΓΙΑ ΠΑΝΤΑ.', + 'delete_stuff_header' => 'Διαγραφή και εκκαθάριση δεδομένων', + 'purge_all_data' => 'Εκκαθάριση όλων των διαγραμμένων εγγραφών', + 'purge_data' => 'Εκκαθάριση δεδομένων', + 'purged_all_records' => 'Όλες οι διαγραμμένες εγγραφές έχουν εκκαθαριστεί οριστικά.', + 'delete_data_title' => 'Διαγραφή δεδομένων από το Firefly III', + 'permanent_delete_stuff' => 'Μπορείτε να διαγράψετε πράγματα από το Firefly III. Η χρήση των παρακάτω κουμπιών σημαίνει ότι τα στοιχεία σας αυτά θα είναι κρυμμένα και δε θα εμφανίζονται. Δεν υπάρχει κουμπί αναίρεσης για αυτή την ενέργεια, αλλά τα στοιχεία θα παραμείνουν στη βάση δεδομένων όπου μπορείτε να τα αναζητήσετε χειροκίνητα σε κάποια άλλη στιγμή εάν είναι απαραίτητο.', + 'other_sessions_logged_out' => 'Όλες οι άλλες συνεδρίες σας έχουν αποσυνδεθεί.', + 'delete_unused_accounts' => 'Η διαγραφή αχρησιμοποίητων λογαριασμών θα καθαρίσει τις λίστες αυτόματης συμπλήρωσης.', + 'delete_all_unused_accounts' => 'Διαγραφή αχρησιμοποίητων λογαριασμών', + 'deleted_all_unused_accounts' => 'Όλοι οι αχρησιμοποίητοι λογαριασμοί έχουν διαγραφεί', + 'delete_all_budgets' => 'Διαγραφή ΟΛΩΝ των προϋπολογισμών σας', + 'delete_all_categories' => 'Διαγραφή ΟΛΩΝ των κατηγοριών σας', + 'delete_all_tags' => 'Διαγραφή ΟΛΩΝ των ετικετών σας', + 'delete_all_bills' => 'Διαγραφή ΟΛΩΝ των πάγιων εξόδων σας', + 'delete_all_piggy_banks' => 'Διαγραφή ΟΛΩΝ των κουμπαράδων σας', + 'delete_all_rules' => 'Διαγραφή ΟΛΩΝ των κανόνων σας', + 'delete_all_recurring' => 'Διαγραφή ΟΛΩΝ των επαναλαμβανόμενων συναλλαγών σας', + 'delete_all_object_groups' => 'Διαγραφή ΟΛΩΝ των ομάδων αντικειμένων σας', + 'delete_all_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών σας', + 'delete_all_asset_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών κεφαλαίων σας', + 'delete_all_expense_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών δαπανών σας', + 'delete_all_revenue_accounts' => 'Διαγραφή ΟΛΩΝ των λογαριασμών εσόδων σας', + 'delete_all_liabilities' => 'Διαγραφή ΟΛΩΝ των υποχρεώσεων σας', + 'delete_all_transactions' => 'Διαγραφή ΟΛΩΝ των συναλλαγών σας', + 'delete_all_withdrawals' => 'Διαγραφή ΟΛΩΝ των αναλήψεων σας', + 'delete_all_deposits' => 'Διαγραφή ΟΛΩΝ των καταθέσεων σας', + 'delete_all_transfers' => 'Διαγραφή ΟΛΩΝ των μεταφορών σας', + 'also_delete_transactions' => 'Η διαγραφή λογαριασμών θα διαγράψει επίσης ΟΛΕΣ τις σχετικές αναλήψεις, καταθέσεις και μεταφορές!', + 'deleted_all_budgets' => 'Όλοι οι προϋπολογισμοί έχουν διαγραφεί', + 'deleted_all_categories' => 'Όλες οι κατηγορίες έχουν διαγραφεί', + 'deleted_all_tags' => 'Όλες οι ετικέτες έχουν διαγραφεί', + 'deleted_all_bills' => 'Όλα τα πάγια έξοδα έχουν διαγραφεί', + 'deleted_all_piggy_banks' => 'Όλοι οι κουμπαράδες έχουν διαγραφεί', + 'deleted_all_rules' => 'Όλοι οι κανόνες και οι ομάδες κανόνων έχουν διαγραφεί', + 'deleted_all_object_groups' => 'Όλες οι ομάδες έχουν διαγραφεί', + 'deleted_all_accounts' => 'Όλοι οι λογαριασμοί έχουν διαγραφεί', + 'deleted_all_asset_accounts' => 'Όλοι οι λογαριασμοί κεφαλαίων έχουν διαγραφεί', + 'deleted_all_expense_accounts' => 'Όλοι οι λογαριασμοί δαπανών έχουν διαγραφεί', + 'deleted_all_revenue_accounts' => 'Όλοι οι λογαριασμοί εσόδων έχουν διαγραφεί', + 'deleted_all_liabilities' => 'Όλες οι υποχρεώσεις έχουν διαγραφεί', + 'deleted_all_transactions' => 'Όλες οι συναλλαγές έχουν διαγραφεί', + 'deleted_all_withdrawals' => 'Όλες οι αναλήψεις έχουν διαγραφεί', + 'deleted_all_deposits' => 'Όλες οι καταθέσεις έχουν διαγραφεί', + 'deleted_all_transfers' => 'Όλες οι μεταφορές έχουν διαγραφεί', + 'deleted_all_recurring' => 'Όλες οι επαναλαμβανόμενες συναλλαγές έχουν διαγραφεί', + 'change_your_password' => 'Αλλαγή του κωδικού σας', + 'delete_account' => 'Διαγραφή λογαριασμού', + 'current_password' => 'Τρέχων κωδικός', + 'new_password' => 'Νέος κωδικός', + 'new_password_again' => 'Νέος κωδικός (επανάληψη)', + 'delete_your_account' => 'Διαγραφή του λογαριασμού σας', + 'delete_your_account_help' => 'Διαγράφοντας το λογαριασμό σας, θα διαγράψετε και όλες τις συναλλαγές, τους λογαριασμούς, οτιδήποτε μπορεί να έχετε αποθηκεύσει στο Firefly III. Θα ΕΞΑΦΑΝΙΣΤΟΥΝ.', + 'delete_your_account_password' => 'Εισάγετε τον κωδικό σας για να συνεχίσετε.', + 'password' => 'Κωδικός πρόσβασης', + 'are_you_sure' => 'Είστε σίγουρος; Δεν μπορείτε να το πάρετε πίσω.', + 'delete_account_button' => 'ΔΙΑΓΡΑΦΗ του λογαριασμού σας', + 'invalid_current_password' => 'Μη έγκυρος κωδικός!', + 'password_changed' => 'Ο κωδικός έχει αλλάξει!', + 'should_change' => 'Θα ήταν καλό να αλλάξετε τον κωδικό σας.', + 'invalid_password' => 'Άκυρος κωδικός!', + 'what_is_pw_security' => 'Τι είναι η "επιβεβαίωση ασφάλειας κωδικού";', + 'secure_pw_title' => 'Πως να διαλέξετε ένα ασφαλή κωδικό πρόσβασης', + 'forgot_password_response' => 'Σας ευχαριστούμε. Εάν υπάρχει λογαριασμός με αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου, θα βρείτε οδηγίες στα εισερχόμενά σας.', + 'secure_pw_history' => 'Δεν περνάει ούτε μία εβδομάδα χωρίς να διαβάσεις για ένα site που έχασε τους κωδικούς των χρηστών του. Οι χάκερς και οι κλέφτες χρησιμοποιούν αυτούς τους κωδικούς για να κλέψουν προσωπικές σας πληροφορίες. Οι πληροφορίες αυτές είναι πολύτιμες.', + 'secure_pw_ff' => 'Χρησιμοποιείτε τον ίδιο κωδικό πρόσβασης παντού στο internet; Εάν ένας ιστότοπος διαρρεύσει τον κωδικό σας, οι χάκερ θα έχουν πρόσβαση σε όλα τα δεδομένα σας. Το Firefly III βασίζεται σε εσάς για να διαλέξετε ένα δυνατό και μοναδικό κωδικό για την προστασία των οικονομικών σας αρχείων.', + 'secure_pw_check_box' => 'Για να βοηθήσει σε αυτό το Firefly III μπορεί να ελέγξει εάν ο κωδικός που θέλετε να χρησιμοποιήσετε έχει κλαπεί στο παρελθόν. Εάν ισχύει αυτό, τότε το Firefly III σας συμβουλεύει να μη χρησιμοποιήσετε αυτό τον κωδικό.', + 'secure_pw_working_title' => 'Πως λειτουργεί;', + 'secure_pw_working' => 'Τσεκάροντας αυτό το πλαίσιο, το Firefly III θα στείλει τους 5 πρώτους χαρακτήρες του SHA1 hash του κωδικού σας στον Ιστότοπο του Troy Hunt για να δει εάν είναι στη λίστα. Αυτό θα σας εμποδίσει να χρησιμοποιήσετε ένα μη ασφαλές κωδικό όπως συνιστάται στη τελευταία Ειδική Έκδοση NIST πάνω στο θέμα αυτό.', + 'secure_pw_should' => 'Θα πρέπει να τσεκάρω αυτό το πλαίσιο;', + 'secure_pw_long_password' => 'Ναι. Πάντα να επιβεβαιώνετε ότι ο κωδικός σας είναι ασφαλής.', + 'command_line_token' => 'Διακριτικό γραμμής εντολών', + 'explain_command_line_token' => 'Χρειάζεστε αυτό το διακριτικό για να εκτελέσετε εργασίες γραμμής εντολών, όπως εξαγωγή δεδομένων. Χωρίς αυτό, οι εντολές δε θα λειτουργήσουν. Μην κοινοποιήσετε το διακριτικό της γραμμής εντολών. Κανείς δεν θα σας ζητήσει αυτό το διακριτικό. Εάν φοβάστε ότι το χάσατε, ή δε χρειάζεστε κάποιο ιδιαίτερο λόγο, δημιουργήστε ξανά αυτό το διακριτικό χρησιμοποιώντας το κουμπί.', + 'regenerate_command_line_token' => 'Αναδημιουργία διακριτικού γραμμής εντολών', + 'token_regenerated' => 'Δημιουργήθηκε ένα νέο διακριτικό γραμμής εντολών', + 'change_your_email' => 'Αλλάξτε την διεύθυνση email σας', + 'email_verification' => 'Ένα μήνυμα email θα σταλεί στην παλιά ΚΑΙ στη νέα σας διεύθυνση email. Για λόγους ασφαλείας, δεν θα μπορέσετε να συνδεθείτε εώς ότου επιβεβαιώσετε τη νέα σας διεύθυνση email. Εάν δεν είστε σίγουροι ότι η δική σας εγκατάσταση Firefly III μπορεί να στείλει email, παρακαλώ μην χρησιμοποιήσετε αυτή τη δυνατότητα. Εάν είστε διαχειριστής μπορείτε να δοκιμάσετε αυτή τη λειτουργία στη Διαχείριση.', + 'email_changed_logout' => 'Μέχρι να επιβεβαιώσετε την διεύθυνση email σας, δεν μπορείτε να συνδεθείτε.', + 'login_with_new_email' => 'Τώρα μπορείτε να συνδεθείτε με τη νέα σας διεύθυνση email.', + 'login_with_old_email' => 'Τώρα μπορείτε να συνδεθείτε με το παλιό σας email ξανά.', + 'login_provider_local_only' => 'Αυτή η λειτουργία δεν είναι διαθέσιμη όταν πιστοποιήστε μέσω ":login_provider".', + 'external_user_mgt_disabled' => 'Αυτή η ενέργεια δεν είναι διαθέσιμη όταν το Firefly III δεν είναι υπεύθυνο για διαχείριση χρηστών ή έλεγχο ταυτότητας.', + 'external_auth_disabled' => 'Αυτή η ενέργεια δεν είναι διαθέσιμη όταν το Firefly III δεν είναι υπεύθυνο για το χειρισμό ελέγχου ταυτότητας.', + 'delete_local_info_only' => 'Επειδή το Firefly III δεν είναι υπεύθυνο για διαχείριση χρηστών ή έλεγχο ταυτότητας, αυτή η λειτουργία θα διαγράψει μόνο τις τοπικές εγγραφές του Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Πελάτες OAuth', + 'profile_oauth_no_clients' => 'Δεν έχετε δημιουργήσει πελάτες OAuth.', + '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_header' => 'Πελάτες', + 'profile_oauth_client_id' => 'Αναγνωριστικό πελάτη', + 'profile_oauth_client_name' => 'Όνομα', + 'profile_oauth_client_secret' => 'Μυστικό', + 'profile_oauth_create_new_client' => 'Δημιουργία νέου πελάτη', + 'profile_oauth_create_client' => 'Δημιουργία πελάτη', + 'profile_oauth_edit_client' => 'Επεξεργασία πελάτη', + 'profile_oauth_name_help' => 'Κάτι που οι χρήστες σας θα αναγνωρίζουν και θα εμπιστεύονται.', + 'profile_oauth_redirect_url' => 'URL ανακατεύθυνσης', + 'profile_oauth_redirect_url_help' => 'To authorization callback URL της εφαρμογής σας.', + 'profile_authorized_apps' => 'Εξουσιοδοτημένες εφαρμογές', + 'profile_authorized_clients' => 'Εξουσιοδοτημένοι πελάτες', + 'profile_scopes' => 'Πεδία εφαρμογής', + 'profile_revoke' => 'Ανάκληση', + 'profile_oauth_client_secret_title' => 'Μυστικό Πελάτη', + 'profile_oauth_client_secret_expl' => 'Εδώ είναι το νέο σας μυστικό πελάτη. Αυτή είναι η μόνη φορά που θα σας εμφανιστεί, οπότε μην το χάσετε! Μπορείτε να το χρησιμοποιείτε για να κάνετε αιτήματα API.', + 'profile_personal_access_tokens' => 'Διακριτικά προσωπικής πρόσβασης', + 'profile_personal_access_token' => 'Διακριτικά προσωπικής πρόσβασης', + 'profile_oauth_confidential' => 'Εμπιστευτικό', + 'profile_oauth_confidential_help' => 'Απαιτήστε από το πρόγραμμα πελάτη να πραγματοποιήσει έλεγχο ταυτότητας με ένα μυστικό. Οι έμπιστοι πελάτες μπορούν να διατηρούν διαπιστευτήρια με ασφαλή τρόπο χωρίς να τα εκθέτουν σε μη εξουσιοδοτημένα μέρη. Οι δημόσιες εφαρμογές, όπως οι εγγενείς εφαρμογές για επιτραπέζιους υπολογιστές ή JavaScript SPA, δεν μπορούν να κρατήσουν μυστικά με ασφάλεια.', + 'profile_personal_access_token_explanation' => 'Εδώ είναι το νέο διακριτικό προσωπικής πρόσβασης. Αυτή είναι η μόνη φορά που θα εμφανιστεί, οπότε μη το χάσετε! Μπορείτε να χρησιμοποιείτε αυτό το διακριτικό για να κάνετε κλήσεις API.', + 'profile_no_personal_access_token' => 'Δεν έχετε δημιουργήσει προσωπικά διακριτικά πρόσβασης.', + 'profile_create_new_token' => 'Δημιουργία νέου διακριτικού', + 'profile_create_token' => 'Δημιουργία διακριτικού', + 'profile_create' => 'Δημιουργία', + 'profile_save_changes' => 'Αποθήκευση αλλαγών', + 'profile_whoops' => 'Ούπς!', + 'profile_something_wrong' => 'Κάτι πήγε στραβά!', + 'profile_try_again' => 'Κάτι πήγε στραβά. Παρακαλώ προσπαθήστε ξανά.', + 'amounts' => 'Ποσά', + 'multi_account_warning_unknown' => 'Ανάλογα με τον τύπο της συναλλαγής που δημιουργείτε, ο λογαριασμός προέλευσης ή/και προορισμού των επόμενων διαχωρισμών ενδέχεται να παρακαμφθεί από αυτό που ορίζεται στο πρώτο διαχωρισμό της συναλλαγής.', + 'multi_account_warning_withdrawal' => 'Λάβετε υπόψη ότι ο λογαριασμός προέλευσης των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της ανάληψης.', + 'multi_account_warning_deposit' => 'Λάβετε υπόψη ότι ο λογαριασμός προορισμού των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της κατάθεσης.', + 'multi_account_warning_transfer' => 'Λάβετε υπόψη ότι ο λογαριασμός προέλευσης και προορισμού των επόμενων διαχωρισμών θα υπερισχύσει αυτού του πρώτου διαχωρισμού της μεταφοράς.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Εξαγωγή δεδομένων από το Firefly III', - 'export_data_menu' => 'Εξαγωγή δεδομένων', - 'export_data_bc' => 'Εξαγωγή δεδομένων από το Firefly III', - 'export_data_main_title' => 'Εξαγωγή δεδομένων από το Firefly III', - 'export_data_expl' => 'Αυτός ο σύνδεσμος σας επιτρέπει να εξάγετε όλες τις συναλλαγές + μετα δεδομένα από το Firefly III. Παρακαλώ ανατρέξτε στη βοήθεια (εικονίδιο (?) επάνω δεξιά) για περισσότερες πληροφορίες για τη διαδικασία.', - 'export_data_all_transactions' => 'Εξαγωγή όλων των συναλλαγών', - 'export_data_advanced_expl' => 'Εάν χρειάζεστε έναν πιο εξειδικευμένο ή συγκεκριμένο τύπο εξαγωγής, διαβάστε τη βοήθεια για το πως να χρησιμοποιήσετε την κονσόλα εντολών php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Εξαγωγή δεδομένων από το Firefly III', + 'export_data_menu' => 'Εξαγωγή δεδομένων', + 'export_data_bc' => 'Εξαγωγή δεδομένων από το Firefly III', + 'export_data_main_title' => 'Εξαγωγή δεδομένων από το Firefly III', + 'export_data_expl' => 'Αυτός ο σύνδεσμος σας επιτρέπει να εξάγετε όλες τις συναλλαγές + μετα δεδομένα από το Firefly III. Παρακαλώ ανατρέξτε στη βοήθεια (εικονίδιο (?) επάνω δεξιά) για περισσότερες πληροφορίες για τη διαδικασία.', + 'export_data_all_transactions' => 'Εξαγωγή όλων των συναλλαγών', + 'export_data_advanced_expl' => 'Εάν χρειάζεστε έναν πιο εξειδικευμένο ή συγκεκριμένο τύπο εξαγωγής, διαβάστε τη βοήθεια για το πως να χρησιμοποιήσετε την κονσόλα εντολών php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Ένα συνημμένο|:count συνημμένα', - 'attachments' => 'Συνημμένα', - 'edit_attachment' => 'Τροποποίηση συνημμένου ":name"', - 'update_attachment' => 'Ενημέρωση συνημμένου', - 'delete_attachment' => 'Διαγραφή συνημμένου ":name"', - 'attachment_deleted' => 'Διεγράφη το συνημμένο ":name"', - 'liabilities_deleted' => 'Διεγράφη η υποχρέωση ":name"', - 'attachment_updated' => 'Ενημερώθηκε το συνημμένο ":name"', - 'upload_max_file_size' => 'Μέγιστο μέγεθος αρχείου: :size', - 'list_all_attachments' => 'Λίστα όλων των συνημμένων', + 'nr_of_attachments' => 'Ένα συνημμένο|:count συνημμένα', + 'attachments' => 'Συνημμένα', + 'edit_attachment' => 'Τροποποίηση συνημμένου ":name"', + 'update_attachment' => 'Ενημέρωση συνημμένου', + 'delete_attachment' => 'Διαγραφή συνημμένου ":name"', + 'attachment_deleted' => 'Διεγράφη το συνημμένο ":name"', + 'liabilities_deleted' => 'Διεγράφη η υποχρέωση ":name"', + 'attachment_updated' => 'Ενημερώθηκε το συνημμένο ":name"', + 'upload_max_file_size' => 'Μέγιστο μέγεθος αρχείου: :size', + 'list_all_attachments' => 'Λίστα όλων των συνημμένων', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Δαπάνες', - 'title_withdrawal' => 'Δαπάνες', - 'title_revenue' => 'Έσοδα', - 'title_deposit' => 'Έσοδα', - 'title_transfer' => 'Μεταφορές', - 'title_transfers' => 'Μεταφορές', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Ενεργοποίηση των webhook', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Δαπάνες', + 'title_withdrawal' => 'Δαπάνες', + 'title_revenue' => 'Έσοδα', + 'title_deposit' => 'Έσοδα', + 'title_transfer' => 'Μεταφορές', + 'title_transfers' => 'Μεταφορές', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Ενεργοποίηση των webhook', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Αυτή η συναλλαγή είναι ήδη μία ανάληψη', - 'convert_is_already_type_Deposit' => 'Αυτή η συναλλαγή είναι ήδη μία κατάθεση', - 'convert_is_already_type_Transfer' => 'Αυτή η συναλλαγή είναι ήδη μία μεταφορά', - 'convert_to_Withdrawal' => 'Μετατροπή ":description" σε μία ανάληψη', - 'convert_to_Deposit' => 'Μετατροπή ":description" σε μία κατάθεση', - 'convert_to_Transfer' => 'Μετατροπή ":description" σε μία μεταφορά', - 'convert_options_WithdrawalDeposit' => 'Μετατροπή μίας ανάληψης σε μία κατάθεση', - 'convert_options_WithdrawalTransfer' => 'Μετατροπή μίας ανάληψης σε μία μεταφορά', - 'convert_options_DepositTransfer' => 'Μετατροπή μίας κατάθεσης σε μία μεταφορά', - 'convert_options_DepositWithdrawal' => 'Μετατροπή μίας κατάθεσης σε μία ανάληψη', - 'convert_options_TransferWithdrawal' => 'Μετατροπή μίας μεταφοράς σε μία ανάληψη', - 'convert_options_TransferDeposit' => 'Μετατροπή μία μεταφοράς σε μία κατάθεση', - 'convert_Withdrawal_to_deposit' => 'Μετατροπή αυτή της ανάληψης σε κατάθεση', - 'convert_Withdrawal_to_transfer' => 'Μετατροπή αυτής της ανάληψης σε μεταφορά', - 'convert_Deposit_to_withdrawal' => 'Μετατροπή αυτής της κατάθεσης σε ανάληψη', - 'convert_Deposit_to_transfer' => 'Μετατροπή αυτής της κατάθεσης σε μεταφορά', - 'convert_Transfer_to_deposit' => 'Μετατροπή αυτής της μεταφοράς σε κατάθεση', - 'convert_Transfer_to_withdrawal' => 'Μετατροπή αυτής της μεταφοράς σε ανάληψη', - 'convert_please_set_revenue_source' => 'Παρακαλώ επιλέξτε το λογαριασμό εσόδων από τον οποίο θα προέλθουν τα χρήματα.', - 'convert_please_set_asset_destination' => 'Επιλέξτε τον κεφαλαιακό λογαριασμό όπου θα μεταβιβαστούν τα χρήματα.', - 'convert_please_set_expense_destination' => 'Επιλέξτε το λογαριασμό δαπανών όπου θα μεταβιβαστούν τα χρήματα.', - 'convert_please_set_asset_source' => 'Παρακαλώ επιλέξτε τον κεφαλαιακό λογαριασμό από τον οποίο θα προέλθουν τα χρήματα.', - 'convert_expl_w_d' => 'Όταν μετατρέπετε μια ανάληψη σε κατάθεση, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού, αντί να αναληφθούν από αυτόν.|Όταν μετατρέπετε μια ανάληψη σε κατάθεση, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να αναληφθούν από αυτούς.', - 'convert_expl_w_t' => 'Κατά τη μετατροπή μιας ανάληψης σε μεταφορά, τα χρήματα θα αφαιρεθούν από τον λογαριασμό προέλευσης σε άλλο λογαριασμό κεφαλαίου ή υποχρεώσεων αντί να δαπανηθούν στον αρχικό λογαριασμό εξόδων.|Κατά τη μετατροπή μιας ανάληψης σε μεταφορά, τα χρήματα θα αφαιρεθούν από τους λογαριασμούς πηγής σε άλλους λογαριασμούς κεφαλαίου ή υποχρεώσεων αντί να δαπανηθούν στους αρχικούς λογαριασμούς εξόδων.', - 'convert_expl_d_w' => 'Όταν μετατρέπετε μια κατάθεση σε ανάληψη, τα χρήματα θα αναληφθούν από τον λογαριασμό προορισμού που βλέπετε εδώ, αντί να κατατεθούν σε αυτόν.|Όταν μετατρέπετε μια κατάθεση σε ανάληψη, τα χρήματα θα αναληφθούν από τους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να κατατεθούν σε αυτούς.', - 'convert_expl_d_t' => 'Όταν μετατρέπετε μια κατάθεση σε μεταφορά, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού που αναγράφεται από οποιοδήποτε λογαριασμό κεφαλαίου ή υποχρεώσεών σας.|Όταν μετατρέπετε μια κατάθεση σε μεταφορά, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που αναγράφονται από οποιονδήποτε από τους λογαριασμούς κεφαλαίου ή υποχρεώσεών σας.', - 'convert_expl_t_w' => 'Όταν μετατρέπετε μια μεταφορά σε ανάληψη τα χρήματα θα δαπανηθούν στο λογαριασμό προορισμού που ορίσατε εδώ, αντί να αφαιρεθούν.|Όταν μετατρέπετε μια μεταφορά σε ανάληψη τα χρήματα θα δαπανηθούν στους λογαριασμούς προορισμού που ορίσατε εδώ, αντί να αφαιρεθούν.', - 'convert_expl_t_d' => 'Όταν μετατρέπετε μια μεταφορά σε κατάθεση, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού που βλέπετε εδώ, αντί να μεταφερθούν σε αυτόν.|Όταν μετατρέπετε μια μεταφορά σε κατάθεση, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να μεταφερθούν σε αυτούς.', - 'convert_select_sources' => 'Για να ολοκληρώσετε τη μετατροπή, παρακαλώ επιλέξτε το νέο λογαριασμό προέλευσης παρακάτω.|Για να ολοκληρώσετε τη μετατροπή, επιλέξτε τους νέους λογαριασμούς προέλευσης παρακάτω.', - 'convert_select_destinations' => 'Για να ολοκληρώσετε τη μετατροπή, παρακαλώ επιλέξτε το νέο λογαριασμό προορισμού παρακάτω.|Για να ολοκληρώσετε τη μετατροπή, επιλέξτε τους νέους λογαριασμούς προορισμού παρακάτω.', - 'converted_to_Withdrawal' => 'Η συναλλαγή μετατράπηκε σε ανάληψη', - 'converted_to_Deposit' => 'Η συναλλαγή μετατράπηκε σε κατάθεση', - 'converted_to_Transfer' => 'Η συναλλαγή μετατράπηκε σε μεταφορά', - 'invalid_convert_selection' => 'Ο λογαριασμός που έχετε επιλέξει χρησιμοποιείται ήδη σε αυτή τη συναλλαγή ή δεν υπάρχει.', - 'source_or_dest_invalid' => 'Δεν είναι δυνατή η εύρεση των σωστών στοιχείων της συναλλαγής. Η μετατροπή δεν είναι δυνατή.', - 'convert_to_withdrawal' => 'Μετατροπή σε ανάληψη', - 'convert_to_deposit' => 'Μετατροπή σε κατάθεση', - 'convert_to_transfer' => 'Μετατροπή σε μεταφορά', + 'convert_is_already_type_Withdrawal' => 'Αυτή η συναλλαγή είναι ήδη μία ανάληψη', + 'convert_is_already_type_Deposit' => 'Αυτή η συναλλαγή είναι ήδη μία κατάθεση', + 'convert_is_already_type_Transfer' => 'Αυτή η συναλλαγή είναι ήδη μία μεταφορά', + 'convert_to_Withdrawal' => 'Μετατροπή ":description" σε μία ανάληψη', + 'convert_to_Deposit' => 'Μετατροπή ":description" σε μία κατάθεση', + 'convert_to_Transfer' => 'Μετατροπή ":description" σε μία μεταφορά', + 'convert_options_WithdrawalDeposit' => 'Μετατροπή μίας ανάληψης σε μία κατάθεση', + 'convert_options_WithdrawalTransfer' => 'Μετατροπή μίας ανάληψης σε μία μεταφορά', + 'convert_options_DepositTransfer' => 'Μετατροπή μίας κατάθεσης σε μία μεταφορά', + 'convert_options_DepositWithdrawal' => 'Μετατροπή μίας κατάθεσης σε μία ανάληψη', + 'convert_options_TransferWithdrawal' => 'Μετατροπή μίας μεταφοράς σε μία ανάληψη', + 'convert_options_TransferDeposit' => 'Μετατροπή μία μεταφοράς σε μία κατάθεση', + 'convert_Withdrawal_to_deposit' => 'Μετατροπή αυτή της ανάληψης σε κατάθεση', + 'convert_Withdrawal_to_transfer' => 'Μετατροπή αυτής της ανάληψης σε μεταφορά', + 'convert_Deposit_to_withdrawal' => 'Μετατροπή αυτής της κατάθεσης σε ανάληψη', + 'convert_Deposit_to_transfer' => 'Μετατροπή αυτής της κατάθεσης σε μεταφορά', + 'convert_Transfer_to_deposit' => 'Μετατροπή αυτής της μεταφοράς σε κατάθεση', + 'convert_Transfer_to_withdrawal' => 'Μετατροπή αυτής της μεταφοράς σε ανάληψη', + 'convert_please_set_revenue_source' => 'Παρακαλώ επιλέξτε το λογαριασμό εσόδων από τον οποίο θα προέλθουν τα χρήματα.', + 'convert_please_set_asset_destination' => 'Επιλέξτε τον κεφαλαιακό λογαριασμό όπου θα μεταβιβαστούν τα χρήματα.', + 'convert_please_set_expense_destination' => 'Επιλέξτε το λογαριασμό δαπανών όπου θα μεταβιβαστούν τα χρήματα.', + 'convert_please_set_asset_source' => 'Παρακαλώ επιλέξτε τον κεφαλαιακό λογαριασμό από τον οποίο θα προέλθουν τα χρήματα.', + 'convert_expl_w_d' => 'Όταν μετατρέπετε μια ανάληψη σε κατάθεση, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού, αντί να αναληφθούν από αυτόν.|Όταν μετατρέπετε μια ανάληψη σε κατάθεση, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να αναληφθούν από αυτούς.', + 'convert_expl_w_t' => 'Κατά τη μετατροπή μιας ανάληψης σε μεταφορά, τα χρήματα θα αφαιρεθούν από τον λογαριασμό προέλευσης σε άλλο λογαριασμό κεφαλαίου ή υποχρεώσεων αντί να δαπανηθούν στον αρχικό λογαριασμό εξόδων.|Κατά τη μετατροπή μιας ανάληψης σε μεταφορά, τα χρήματα θα αφαιρεθούν από τους λογαριασμούς πηγής σε άλλους λογαριασμούς κεφαλαίου ή υποχρεώσεων αντί να δαπανηθούν στους αρχικούς λογαριασμούς εξόδων.', + 'convert_expl_d_w' => 'Όταν μετατρέπετε μια κατάθεση σε ανάληψη, τα χρήματα θα αναληφθούν από τον λογαριασμό προορισμού που βλέπετε εδώ, αντί να κατατεθούν σε αυτόν.|Όταν μετατρέπετε μια κατάθεση σε ανάληψη, τα χρήματα θα αναληφθούν από τους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να κατατεθούν σε αυτούς.', + 'convert_expl_d_t' => 'Όταν μετατρέπετε μια κατάθεση σε μεταφορά, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού που αναγράφεται από οποιοδήποτε λογαριασμό κεφαλαίου ή υποχρεώσεών σας.|Όταν μετατρέπετε μια κατάθεση σε μεταφορά, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που αναγράφονται από οποιονδήποτε από τους λογαριασμούς κεφαλαίου ή υποχρεώσεών σας.', + 'convert_expl_t_w' => 'Όταν μετατρέπετε μια μεταφορά σε ανάληψη τα χρήματα θα δαπανηθούν στο λογαριασμό προορισμού που ορίσατε εδώ, αντί να αφαιρεθούν.|Όταν μετατρέπετε μια μεταφορά σε ανάληψη τα χρήματα θα δαπανηθούν στους λογαριασμούς προορισμού που ορίσατε εδώ, αντί να αφαιρεθούν.', + 'convert_expl_t_d' => 'Όταν μετατρέπετε μια μεταφορά σε κατάθεση, τα χρήματα θα κατατεθούν στο λογαριασμό προορισμού που βλέπετε εδώ, αντί να μεταφερθούν σε αυτόν.|Όταν μετατρέπετε μια μεταφορά σε κατάθεση, τα χρήματα θα κατατεθούν στους λογαριασμούς προορισμού που βλέπετε εδώ, αντί να μεταφερθούν σε αυτούς.', + 'convert_select_sources' => 'Για να ολοκληρώσετε τη μετατροπή, παρακαλώ επιλέξτε το νέο λογαριασμό προέλευσης παρακάτω.|Για να ολοκληρώσετε τη μετατροπή, επιλέξτε τους νέους λογαριασμούς προέλευσης παρακάτω.', + 'convert_select_destinations' => 'Για να ολοκληρώσετε τη μετατροπή, παρακαλώ επιλέξτε το νέο λογαριασμό προορισμού παρακάτω.|Για να ολοκληρώσετε τη μετατροπή, επιλέξτε τους νέους λογαριασμούς προορισμού παρακάτω.', + 'converted_to_Withdrawal' => 'Η συναλλαγή μετατράπηκε σε ανάληψη', + 'converted_to_Deposit' => 'Η συναλλαγή μετατράπηκε σε κατάθεση', + 'converted_to_Transfer' => 'Η συναλλαγή μετατράπηκε σε μεταφορά', + 'invalid_convert_selection' => 'Ο λογαριασμός που έχετε επιλέξει χρησιμοποιείται ήδη σε αυτή τη συναλλαγή ή δεν υπάρχει.', + 'source_or_dest_invalid' => 'Δεν είναι δυνατή η εύρεση των σωστών στοιχείων της συναλλαγής. Η μετατροπή δεν είναι δυνατή.', + 'convert_to_withdrawal' => 'Μετατροπή σε ανάληψη', + 'convert_to_deposit' => 'Μετατροπή σε κατάθεση', + 'convert_to_transfer' => 'Μετατροπή σε μεταφορά', // create new stuff: - 'create_new_withdrawal' => 'Δημιουργία νέας ανάληψης', - 'create_new_deposit' => 'Δημιουργία νέας κατάθεσης', - 'create_new_transfer' => 'Δημιουργία νέας μεταφοράς', - 'create_new_asset' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', - 'create_new_liabilities' => 'Δημιουργία νέας υποχρέωσης', - 'create_new_expense' => 'Δημιουργία νέου λογαριασμού δαπανών', - 'create_new_revenue' => 'Δημιουργία νέου λογαριασμού εσόδων', - 'create_new_piggy_bank' => 'Δημιουργία ενός νέου κουμπαρά', - 'create_new_bill' => 'Δημιουργία νέου πάγιου έξοδου', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Δημιουργία νέας ανάληψης', + 'create_new_deposit' => 'Δημιουργία νέας κατάθεσης', + 'create_new_transfer' => 'Δημιουργία νέας μεταφοράς', + 'create_new_asset' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', + 'create_new_liabilities' => 'Δημιουργία νέας υποχρέωσης', + 'create_new_expense' => 'Δημιουργία νέου λογαριασμού δαπανών', + 'create_new_revenue' => 'Δημιουργία νέου λογαριασμού εσόδων', + 'create_new_piggy_bank' => 'Δημιουργία ενός νέου κουμπαρά', + 'create_new_bill' => 'Δημιουργία νέου πάγιου έξοδου', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Δημιουργία νέου νομίσματος', - 'store_currency' => 'Αποθήκευση νέου νομίσματος', - 'update_currency' => 'Ενημέρωση νομίσματος', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι ακόμα σε χρήση.', - 'cannot_delete_fallback_currency' => ':name είναι το εφεδρικό νόμισμα του συστήματος και δεν μπορεί να διαγραφεί.', - 'cannot_disable_currency_journals' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένες συναλλαγές.', - 'cannot_disable_currency_last_left' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το μόνο ενεργό νόμισμα.', - 'cannot_disable_currency_account_meta' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται από λογαριασμούς κεφαλαίου.', - 'cannot_disable_currency_bills' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένα πάγια έξοδα.', - 'cannot_disable_currency_recurring' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένες επαναλαμβανόμενες συναλλαγές.', - 'cannot_disable_currency_available_budgets' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται στους διαθέσιμους προϋπολογισμούς.', - 'cannot_disable_currency_budget_limits' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται σε όρια προϋπολογισμού.', - 'cannot_disable_currency_current_default' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το προεπιλεγμένο νόμισμα αυτή τη στιγμή.', - 'cannot_disable_currency_system_fallback' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το προεπιλεγμένο νόμισμα του συστήματος.', - 'disable_EUR_side_effects' => 'Το Ευρώ είναι το εφεδρικό νόμισμα μετάπτωσης του συστήματος. Η απενεργοποίηση μπορεί να έχει ανεπιθύμητες παρενέργειες και μπορεί να ακυρώσει την εγγύησή σας.', - 'deleted_currency' => 'Το νόμισμα :name διαγράφηκε', - 'created_currency' => 'Το νόμισμα :name δημιουργήθηκε', - 'could_not_store_currency' => 'Δεν ήταν δυνατή η αποθήκευση του νέου νομίσματος.', - 'updated_currency' => 'Το νόμισμα :name ενημερώθηκε', - 'ask_site_owner' => 'Ζητήστε από τον :owner να προσθέσει, αφαιρέσει ή να επεξεργαστεί νομίσματα.', - 'currencies_intro' => 'Το Firefly III υποστηρίζει διάφορα νομίσματα τα οποία μπορείτε να ρυθμίσετε και να ενεργοποιήσετε εδώ.', - 'make_default_currency' => 'Ορισμός ως προεπιλογή', - 'default_currency' => 'προεπιλογή', - 'currency_is_disabled' => 'Απενεργοποιημένο', - 'enable_currency' => 'Ενεργοποίηση', - 'disable_currency' => 'Απενεργοποίηση', - 'currencies_default_disabled' => 'Τα περισσότερα από αυτά τα νομίσματα είναι απενεργοποιημένα από προεπιλογή. Για να τα χρησιμοποιήσετε, πρέπει πρώτα να τα ενεργοποιήσετε.', - 'currency_is_now_enabled' => 'Το νόμισμα:name ενεργοποιήθηκε', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Το νόμισμα:name απενεργοποιήθηκε', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Δημιουργία νέου νομίσματος', + 'store_currency' => 'Αποθήκευση νέου νομίσματος', + 'update_currency' => 'Ενημέρωση νομίσματος', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι ακόμα σε χρήση.', + 'cannot_delete_fallback_currency' => ':name είναι το εφεδρικό νόμισμα του συστήματος και δεν μπορεί να διαγραφεί.', + 'cannot_disable_currency_journals' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένες συναλλαγές.', + 'cannot_disable_currency_last_left' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το μόνο ενεργό νόμισμα.', + 'cannot_disable_currency_account_meta' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται από λογαριασμούς κεφαλαίου.', + 'cannot_disable_currency_bills' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένα πάγια έξοδα.', + 'cannot_disable_currency_recurring' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή το χρησιμοποιούν ορισμένες επαναλαμβανόμενες συναλλαγές.', + 'cannot_disable_currency_available_budgets' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται στους διαθέσιμους προϋπολογισμούς.', + 'cannot_disable_currency_budget_limits' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή χρησιμοποιείται σε όρια προϋπολογισμού.', + 'cannot_disable_currency_current_default' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το προεπιλεγμένο νόμισμα αυτή τη στιγμή.', + 'cannot_disable_currency_system_fallback' => 'Δεν είναι δυνατή η απενεργοποίηση του :name επειδή είναι το προεπιλεγμένο νόμισμα του συστήματος.', + 'disable_EUR_side_effects' => 'Το Ευρώ είναι το εφεδρικό νόμισμα μετάπτωσης του συστήματος. Η απενεργοποίηση μπορεί να έχει ανεπιθύμητες παρενέργειες και μπορεί να ακυρώσει την εγγύησή σας.', + 'deleted_currency' => 'Το νόμισμα :name διαγράφηκε', + 'created_currency' => 'Το νόμισμα :name δημιουργήθηκε', + 'could_not_store_currency' => 'Δεν ήταν δυνατή η αποθήκευση του νέου νομίσματος.', + 'updated_currency' => 'Το νόμισμα :name ενημερώθηκε', + 'ask_site_owner' => 'Ζητήστε από τον :owner να προσθέσει, αφαιρέσει ή να επεξεργαστεί νομίσματα.', + 'currencies_intro' => 'Το Firefly III υποστηρίζει διάφορα νομίσματα τα οποία μπορείτε να ρυθμίσετε και να ενεργοποιήσετε εδώ.', + 'make_default_currency' => 'Ορισμός ως προεπιλογή', + 'default_currency' => 'προεπιλογή', + 'currency_is_disabled' => 'Απενεργοποιημένο', + 'enable_currency' => 'Ενεργοποίηση', + 'disable_currency' => 'Απενεργοποίηση', + 'currencies_default_disabled' => 'Τα περισσότερα από αυτά τα νομίσματα είναι απενεργοποιημένα από προεπιλογή. Για να τα χρησιμοποιήσετε, πρέπει πρώτα να τα ενεργοποιήσετε.', + 'currency_is_now_enabled' => 'Το νόμισμα:name ενεργοποιήθηκε', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Το νόμισμα:name απενεργοποιήθηκε', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Υποχρεωτικά πεδία', - 'optionalFields' => 'Προαιρετικά πεδία', - 'options' => 'Επιλογές', + 'mandatoryFields' => 'Υποχρεωτικά πεδία', + 'optionalFields' => 'Προαιρετικά πεδία', + 'options' => 'Επιλογές', // budgets: - 'daily_budgets' => 'Ημερήσιοι προϋπολογισμοί', - 'weekly_budgets' => 'Εβδομαδιαίοι προϋπολογισμοί', - 'monthly_budgets' => 'Μηνιαίοι προϋπολογισμοί', - 'quarterly_budgets' => 'Τριμηνιαίοι προϋπολογισμοί', - 'half_year_budgets' => 'Εξαμηνιαίοι προϋπολογισμοί', - 'yearly_budgets' => 'Ετήσιοι προϋπολογισμοί', - 'other_budgets' => 'Προϋπολογισμοί με χρονική προσαρμογή', - 'budget_limit_not_in_range' => 'Αυτό το ποσό ισχύει από :start έως :end:', - 'total_available_budget' => 'Συνολικός διαθέσιμος προϋπολογισμός (μεταξύ :start και :end)', - 'total_available_budget_in_currency' => 'Συνολικός διαθέσιμος προϋπολογισμός σε :currency', - 'see_below' => 'δες παρακάτω', - 'create_new_budget' => 'Δημιουργία νέου προϋπολογισμού', - 'store_new_budget' => 'Αποθήκευση νέου προϋπολογισμού', - 'stored_new_budget' => 'Αποθηκεύτηκε ο νέος προϋπολογισμός ":name"', - 'available_between' => 'Διαθέσιμο μεταξύ :start και :end', - 'transactionsWithoutBudget' => 'Δαπάνες εκτός κάποιου προϋπολογισμού', - 'transactions_no_budget' => 'Δαπάνες εκτός κάποιου προϋπολογισμού μεταξύ :start και :end', - 'spent_between' => 'Δαπανήθηκαν ήδη μεταξύ :start και :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Ορισμός διαθέσιμου ποσού', - 'update_available_amount' => 'Ενημέρωση διαθέσιμου ποσού', - 'ab_basic_modal_explain' => 'Χρησιμοποιήστε αυτή τη φόρμα για να υποδείξετε πόσα μπορείτε να προϋπολογίσετε (συνολικά, σε :currency) κατά την αναφερόμενη περίοδο.', - 'createBudget' => 'Νέος προϋπολογισμός', - 'invalid_currency' => 'Μη έγκυρο νόμισμα', - 'invalid_amount' => 'Παρακαλώ εισάγετε ένα ποσό', - 'set_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει οριστεί', - 'updated_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει ενημερωθεί', - 'deleted_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει διαγραφεί', - 'deleted_bl' => 'Το ποσό προϋπολογισμού έχει καταργηθεί', - 'alt_currency_ab_create' => 'Ορίστε τον διαθέσιμο προϋπολογισμό σε άλλο νόμισμα', - 'bl_create_btn' => 'Ορισμός προϋπολογισμού σε άλλο νόμισμα', - 'inactiveBudgets' => 'Ανενεργοί προϋπολογισμοί', - 'without_budget_between' => 'Συναλλαγές εκτός κάποιου προϋπολογισμού μεταξύ :start και :end', - 'delete_budget' => 'Διαγραφή προϋπολογισμού ":name"', - 'deleted_budget' => 'Διαγράφηκε ο προϋπολογισμός ":name"', - 'edit_budget' => 'Επεξεργασία προϋπολογισμού ":name"', - 'updated_budget' => 'Ενημερώθηκε ο προϋπολογισμός ":name"', - 'update_amount' => 'Ενημέρωση ποσού', - 'update_budget' => 'Ενημέρωση προϋπολογισμού', - 'update_budget_amount_range' => 'Ενημέρωση (αναμενόμενου) διαθέσιμου ποσού μεταξύ :start και :end', - 'set_budget_limit_title' => 'Ορισμός ποσού για τον προϋπολογισμό :budget μεταξύ :start και :end', - 'set_budget_limit' => 'Ορισμός ποσού προϋπολογισμού', - 'budget_period_navigator' => 'Περιήγηση περιόδου', - 'info_on_available_amount' => 'Τι έχω διαθέσιμο;', - 'available_amount_indication' => 'Χρησιμοποιήστε αυτά τα ποσά για μια ένδειξη του συνολικού προϋπολογισμού σας.', - 'suggested' => 'Πρόταση', - 'average_between' => 'Μέσος όρος μεταξύ :start και :end', - 'transferred_in' => 'Μεταφέρθηκαν (εντός)', - 'transferred_away' => 'Μεταφέρθηκαν (εκτός)', - 'auto_budget_none' => 'Χωρίς αυτόματο προϋπολογισμό', - 'auto_budget_reset' => 'Ορίστε ένα σταθερό ποσό κάθε περίοδο', - 'auto_budget_rollover' => 'Προσθέστε ένα ποσό σε κάθε περίοδο', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Ημερησίως', - 'auto_budget_period_weekly' => 'Εβδομαδιαίως', - 'auto_budget_period_monthly' => 'Μηνιαίως', - 'auto_budget_period_quarterly' => 'Τριμηνιαίως', - 'auto_budget_period_half_year' => 'Εξαμηνιαίως', - 'auto_budget_period_yearly' => 'Ετησίως', - 'auto_budget_help' => 'Μπορείτε να διαβάσετε περισσότερα σχετικά με αυτή τη λειτουργία στη βοήθεια. Κάντε κλικ στο εικονίδιο (?) επάνω δεξιά.', - 'auto_budget_reset_icon' => 'Αυτός ο προϋπολογισμός θα οριστεί περιοδικά', - 'auto_budget_rollover_icon' => 'Το ποσό του προϋπολογισμού θα αυξηθεί περιοδικά', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Κατάργηση ποσού προϋπολογισμού σε :currency', + 'daily_budgets' => 'Ημερήσιοι προϋπολογισμοί', + 'weekly_budgets' => 'Εβδομαδιαίοι προϋπολογισμοί', + 'monthly_budgets' => 'Μηνιαίοι προϋπολογισμοί', + 'quarterly_budgets' => 'Τριμηνιαίοι προϋπολογισμοί', + 'half_year_budgets' => 'Εξαμηνιαίοι προϋπολογισμοί', + 'yearly_budgets' => 'Ετήσιοι προϋπολογισμοί', + 'other_budgets' => 'Προϋπολογισμοί με χρονική προσαρμογή', + 'budget_limit_not_in_range' => 'Αυτό το ποσό ισχύει από :start έως :end:', + 'total_available_budget' => 'Συνολικός διαθέσιμος προϋπολογισμός (μεταξύ :start και :end)', + 'total_available_budget_in_currency' => 'Συνολικός διαθέσιμος προϋπολογισμός σε :currency', + 'see_below' => 'δες παρακάτω', + 'create_new_budget' => 'Δημιουργία νέου προϋπολογισμού', + 'store_new_budget' => 'Αποθήκευση νέου προϋπολογισμού', + 'stored_new_budget' => 'Αποθηκεύτηκε ο νέος προϋπολογισμός ":name"', + 'available_between' => 'Διαθέσιμο μεταξύ :start και :end', + 'transactionsWithoutBudget' => 'Δαπάνες εκτός κάποιου προϋπολογισμού', + 'transactions_no_budget' => 'Δαπάνες εκτός κάποιου προϋπολογισμού μεταξύ :start και :end', + 'spent_between' => 'Δαπανήθηκαν ήδη μεταξύ :start και :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Ορισμός διαθέσιμου ποσού', + 'update_available_amount' => 'Ενημέρωση διαθέσιμου ποσού', + 'ab_basic_modal_explain' => 'Χρησιμοποιήστε αυτή τη φόρμα για να υποδείξετε πόσα μπορείτε να προϋπολογίσετε (συνολικά, σε :currency) κατά την αναφερόμενη περίοδο.', + 'createBudget' => 'Νέος προϋπολογισμός', + 'invalid_currency' => 'Μη έγκυρο νόμισμα', + 'invalid_amount' => 'Παρακαλώ εισάγετε ένα ποσό', + 'set_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει οριστεί', + 'updated_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει ενημερωθεί', + 'deleted_ab' => 'Το διαθέσιμο ποσό προϋπολογισμού έχει διαγραφεί', + 'deleted_bl' => 'Το ποσό προϋπολογισμού έχει καταργηθεί', + 'alt_currency_ab_create' => 'Ορίστε τον διαθέσιμο προϋπολογισμό σε άλλο νόμισμα', + 'bl_create_btn' => 'Ορισμός προϋπολογισμού σε άλλο νόμισμα', + 'inactiveBudgets' => 'Ανενεργοί προϋπολογισμοί', + 'without_budget_between' => 'Συναλλαγές εκτός κάποιου προϋπολογισμού μεταξύ :start και :end', + 'delete_budget' => 'Διαγραφή προϋπολογισμού ":name"', + 'deleted_budget' => 'Διαγράφηκε ο προϋπολογισμός ":name"', + 'edit_budget' => 'Επεξεργασία προϋπολογισμού ":name"', + 'updated_budget' => 'Ενημερώθηκε ο προϋπολογισμός ":name"', + 'update_amount' => 'Ενημέρωση ποσού', + 'update_budget' => 'Ενημέρωση προϋπολογισμού', + 'update_budget_amount_range' => 'Ενημέρωση (αναμενόμενου) διαθέσιμου ποσού μεταξύ :start και :end', + 'set_budget_limit_title' => 'Ορισμός ποσού για τον προϋπολογισμό :budget μεταξύ :start και :end', + 'set_budget_limit' => 'Ορισμός ποσού προϋπολογισμού', + 'budget_period_navigator' => 'Περιήγηση περιόδου', + 'info_on_available_amount' => 'Τι έχω διαθέσιμο;', + 'available_amount_indication' => 'Χρησιμοποιήστε αυτά τα ποσά για μια ένδειξη του συνολικού προϋπολογισμού σας.', + 'suggested' => 'Πρόταση', + 'average_between' => 'Μέσος όρος μεταξύ :start και :end', + 'transferred_in' => 'Μεταφέρθηκαν (εντός)', + 'transferred_away' => 'Μεταφέρθηκαν (εκτός)', + 'auto_budget_none' => 'Χωρίς αυτόματο προϋπολογισμό', + 'auto_budget_reset' => 'Ορίστε ένα σταθερό ποσό κάθε περίοδο', + 'auto_budget_rollover' => 'Προσθέστε ένα ποσό σε κάθε περίοδο', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Ημερησίως', + 'auto_budget_period_weekly' => 'Εβδομαδιαίως', + 'auto_budget_period_monthly' => 'Μηνιαίως', + 'auto_budget_period_quarterly' => 'Τριμηνιαίως', + 'auto_budget_period_half_year' => 'Εξαμηνιαίως', + 'auto_budget_period_yearly' => 'Ετησίως', + 'auto_budget_help' => 'Μπορείτε να διαβάσετε περισσότερα σχετικά με αυτή τη λειτουργία στη βοήθεια. Κάντε κλικ στο εικονίδιο (?) επάνω δεξιά.', + 'auto_budget_reset_icon' => 'Αυτός ο προϋπολογισμός θα οριστεί περιοδικά', + 'auto_budget_rollover_icon' => 'Το ποσό του προϋπολογισμού θα αυξηθεί περιοδικά', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Κατάργηση ποσού προϋπολογισμού σε :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Δεν αναμένεται αυτή την περίοδο', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Όχι (ακόμη)', - 'visit_bill' => 'Επισκεφθείτε το πάγιο έξοδο ":name" στο Firefly III', - 'match_between_amounts' => 'Αντιστοιχίες πάγιου έξοδου προς συναλλαγές μεταξύ :low και :high.', - 'running_again_loss' => 'Οι συναλλαγές που έχουν συνδεθεί προηγουμένως με αυτό το πάγιο έξοδο ενδέχεται να χάσουν τη σύνδεσή τους, αν δεν συμφωνούν (πλέον) με τον κανόνα(ες).', - 'bill_related_rules' => 'Συσχετιζόμενοι κανόνες με αυτό το πάγιο έξοδο', - 'repeats' => 'Επαναλήψεις', - 'bill_end_date_help' => 'Προαιρετικό πεδίο. Το πάγιο έξοδο αναμένεται να τελειώσει σε αυτή την ημερομηνία.', - 'bill_extension_date_help' => 'Προαιρετικό πεδίο. Το πάγιο έξοδο πρέπει να παραταθεί (ή να ακυρωθεί) πριν ή κατά από αυτή την ημερομηνία.', - 'bill_end_index_line' => 'Αυτό το πάγιο έξοδο τελειώνει στις :date', - 'bill_extension_index_line' => 'Αυτό το πάγιο έξοδο πρέπει να παραταθεί ή να ακυρωθεί στις :date', - 'connected_journals' => 'Συνδεδεμένες συναλλαγές', - 'auto_match_on' => 'Αυτόματη αντιστοίχιση από το Firefly III', - 'auto_match_off' => 'Μη αυτόματη αντιστοίχιση από το Firefly III', - 'next_expected_match' => 'Επόμενη αναμενόμενη αντιστοίχιση', - 'delete_bill' => 'Διαγραφή πάγιου έξοδου ":name"', - 'deleted_bill' => 'Διαγράφηκε το πάγιο έξοδο ":name"', - 'edit_bill' => 'Επεξεργασία πάγιου έξοδου ":name"', - 'more' => 'Περισσότερα', - 'rescan_old' => 'Επανεκτέλεση των κανόνων σε όλες τις συναλλαγές', - 'update_bill' => 'Ενημέρωση πάγιου έξοδου', - 'updated_bill' => 'Ενημερώθηκε το πάγιο έξοδο ":name"', - 'store_new_bill' => 'Αποθήκευση νέου πάγιου έξοδου', - 'stored_new_bill' => 'Αποθηκεύτηκε το νέο πάγιο έξοδο ":name"', - 'cannot_scan_inactive_bill' => 'Ανενεργά πάγια έξοδα δε μπορούν να σαρωθούν.', - 'rescanned_bill' => 'Έγινε νέα σάρωση και συνδέθηκε :count συναλλαγή σε αυτό το πάγιο έξοδο.|Έγινε νέα σάρωση και συνδέθηκαν :count συναλλαγές σε αυτό το πάγιο έξοδο.', - 'average_bill_amount_year' => 'Μέσο ποσό σε πάγιο έξοδο (:year)', - 'average_bill_amount_overall' => 'Μέσο ποσό σε πάγιο έξοδο (συνολικά)', - 'bill_is_active' => 'Το πάγιο έξοδο είναι ενεργό', - 'bill_expected_between' => 'Αναμενόμενα μεταξύ :start και :end', - 'bill_will_automatch' => 'Το πάγιο έξοδο θα συνδεθεί αυτόματα με τις αντίστοιχες συναλλαγές', - 'skips_over' => 'παραλείπει', - 'bill_store_error' => 'Παρουσιάστηκε ένα μη αναμενόμενο σφάλμα κατά την αποθήκευση του νέου πάγιου έξοδου. Ελέγξτε τα αρχεία καταγραφής', - 'list_inactive_rule' => 'ανενεργός κανόνας', - 'bill_edit_rules' => 'Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τον κανόνα που σχετίζεται με αυτόν τον λογαριασμό. Εάν όμως έχετε επεξεργαστεί ο ίδιος αυτόν τον κανόνα, το Firefly III δεν θα αλλάξει τίποτα.|Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τους :count κανόνες που σχετίζονται με αυτόν τον λογαριασμό. Ωστόσο, εάν έχετε επεξεργαστεί αυτούς τους κανόνες μόνοι σας, το Firefly III δεν θα αλλάξει τίποτα.', - 'bill_expected_date' => 'Αναμένεται :date', - 'bill_expected_date_js' => 'Αναμένεται {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Πληρώθηκε στις {date}', - 'bill_repeats_weekly' => 'Επαναλαμβάνεται εβδομαδιαίως', - 'bill_repeats_monthly' => 'Επαναλαμβάνεται μηνιαίως', - 'bill_repeats_quarterly' => 'Επαναλαμβάνεται ανά τρίμηνο', - 'bill_repeats_half-year' => 'Επαναλαμβάνεται κάθε μισό χρόνο', - 'bill_repeats_yearly' => 'Επαναλαμβάνεται ετησίως', - 'bill_repeats_weekly_other' => 'Επαναλαμβάνεται κάθε δεύτερη εβδομάδα', - 'bill_repeats_monthly_other' => 'Επαναλαμβάνεται κάθε δεύτερο μήνα', - 'bill_repeats_quarterly_other' => 'Επαναλαμβάνεται κάθε δεύτερο τρίμηνο', - 'bill_repeats_half-year_other' => 'Επαναλαμβάνεται ετησίως', - 'bill_repeats_yearly_other' => 'Επαναλαμβάνεται κάθε δεύτερο χρόνο', - 'bill_repeats_weekly_skip' => 'Επαναλαμβάνεται κάθε {skip} εβδομάδες', - 'bill_repeats_monthly_skip' => 'Επαναλαμβάνεται κάθε {skip} μήνες', - 'bill_repeats_quarterly_skip' => 'Επαναλαμβάνεται κάθε {skip} τρίμηνα', - 'bill_repeats_half-year_skip' => 'Επαναλαμβάνεται κάθε {skip} εξάμηνα', - 'bill_repeats_yearly_skip' => 'Επαναλαμβάνεται κάθε {skip} έτη', - 'subscriptions' => 'Συνδρομές', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Για πάντα', - 'extension_date_is' => 'Η ημερομηνία παράτασης είναι {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Δεν αναμένεται αυτή την περίοδο', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Όχι (ακόμη)', + 'visit_bill' => 'Επισκεφθείτε το πάγιο έξοδο ":name" στο Firefly III', + 'match_between_amounts' => 'Αντιστοιχίες πάγιου έξοδου προς συναλλαγές μεταξύ :low και :high.', + 'running_again_loss' => 'Οι συναλλαγές που έχουν συνδεθεί προηγουμένως με αυτό το πάγιο έξοδο ενδέχεται να χάσουν τη σύνδεσή τους, αν δεν συμφωνούν (πλέον) με τον κανόνα(ες).', + 'bill_related_rules' => 'Συσχετιζόμενοι κανόνες με αυτό το πάγιο έξοδο', + 'repeats' => 'Επαναλήψεις', + 'bill_end_date_help' => 'Προαιρετικό πεδίο. Το πάγιο έξοδο αναμένεται να τελειώσει σε αυτή την ημερομηνία.', + 'bill_extension_date_help' => 'Προαιρετικό πεδίο. Το πάγιο έξοδο πρέπει να παραταθεί (ή να ακυρωθεί) πριν ή κατά από αυτή την ημερομηνία.', + 'bill_end_index_line' => 'Αυτό το πάγιο έξοδο τελειώνει στις :date', + 'bill_extension_index_line' => 'Αυτό το πάγιο έξοδο πρέπει να παραταθεί ή να ακυρωθεί στις :date', + 'connected_journals' => 'Συνδεδεμένες συναλλαγές', + 'auto_match_on' => 'Αυτόματη αντιστοίχιση από το Firefly III', + 'auto_match_off' => 'Μη αυτόματη αντιστοίχιση από το Firefly III', + 'next_expected_match' => 'Επόμενη αναμενόμενη αντιστοίχιση', + 'delete_bill' => 'Διαγραφή πάγιου έξοδου ":name"', + 'deleted_bill' => 'Διαγράφηκε το πάγιο έξοδο ":name"', + 'edit_bill' => 'Επεξεργασία πάγιου έξοδου ":name"', + 'more' => 'Περισσότερα', + 'rescan_old' => 'Επανεκτέλεση των κανόνων σε όλες τις συναλλαγές', + 'update_bill' => 'Ενημέρωση πάγιου έξοδου', + 'updated_bill' => 'Ενημερώθηκε το πάγιο έξοδο ":name"', + 'store_new_bill' => 'Αποθήκευση νέου πάγιου έξοδου', + 'stored_new_bill' => 'Αποθηκεύτηκε το νέο πάγιο έξοδο ":name"', + 'cannot_scan_inactive_bill' => 'Ανενεργά πάγια έξοδα δε μπορούν να σαρωθούν.', + 'rescanned_bill' => 'Έγινε νέα σάρωση και συνδέθηκε :count συναλλαγή σε αυτό το πάγιο έξοδο.|Έγινε νέα σάρωση και συνδέθηκαν :count συναλλαγές σε αυτό το πάγιο έξοδο.', + 'average_bill_amount_year' => 'Μέσο ποσό σε πάγιο έξοδο (:year)', + 'average_bill_amount_overall' => 'Μέσο ποσό σε πάγιο έξοδο (συνολικά)', + 'bill_is_active' => 'Το πάγιο έξοδο είναι ενεργό', + 'bill_expected_between' => 'Αναμενόμενα μεταξύ :start και :end', + 'bill_will_automatch' => 'Το πάγιο έξοδο θα συνδεθεί αυτόματα με τις αντίστοιχες συναλλαγές', + 'skips_over' => 'παραλείπει', + 'bill_store_error' => 'Παρουσιάστηκε ένα μη αναμενόμενο σφάλμα κατά την αποθήκευση του νέου πάγιου έξοδου. Ελέγξτε τα αρχεία καταγραφής', + 'list_inactive_rule' => 'ανενεργός κανόνας', + 'bill_edit_rules' => 'Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τον κανόνα που σχετίζεται με αυτόν τον λογαριασμό. Εάν όμως έχετε επεξεργαστεί ο ίδιος αυτόν τον κανόνα, το Firefly III δεν θα αλλάξει τίποτα.|Το Firefly III θα προσπαθήσει επίσης να επεξεργαστεί τους :count κανόνες που σχετίζονται με αυτόν τον λογαριασμό. Ωστόσο, εάν έχετε επεξεργαστεί αυτούς τους κανόνες μόνοι σας, το Firefly III δεν θα αλλάξει τίποτα.', + 'bill_expected_date' => 'Αναμένεται :date', + 'bill_expected_date_js' => 'Αναμένεται {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Πληρώθηκε στις {date}', + 'bill_repeats_weekly' => 'Επαναλαμβάνεται εβδομαδιαίως', + 'bill_repeats_monthly' => 'Επαναλαμβάνεται μηνιαίως', + 'bill_repeats_quarterly' => 'Επαναλαμβάνεται ανά τρίμηνο', + 'bill_repeats_half-year' => 'Επαναλαμβάνεται κάθε μισό χρόνο', + 'bill_repeats_yearly' => 'Επαναλαμβάνεται ετησίως', + 'bill_repeats_weekly_other' => 'Επαναλαμβάνεται κάθε δεύτερη εβδομάδα', + 'bill_repeats_monthly_other' => 'Επαναλαμβάνεται κάθε δεύτερο μήνα', + 'bill_repeats_quarterly_other' => 'Επαναλαμβάνεται κάθε δεύτερο τρίμηνο', + 'bill_repeats_half-year_other' => 'Επαναλαμβάνεται ετησίως', + 'bill_repeats_yearly_other' => 'Επαναλαμβάνεται κάθε δεύτερο χρόνο', + 'bill_repeats_weekly_skip' => 'Επαναλαμβάνεται κάθε {skip} εβδομάδες', + 'bill_repeats_monthly_skip' => 'Επαναλαμβάνεται κάθε {skip} μήνες', + 'bill_repeats_quarterly_skip' => 'Επαναλαμβάνεται κάθε {skip} τρίμηνα', + 'bill_repeats_half-year_skip' => 'Επαναλαμβάνεται κάθε {skip} εξάμηνα', + 'bill_repeats_yearly_skip' => 'Επαναλαμβάνεται κάθε {skip} έτη', + 'subscriptions' => 'Συνδρομές', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Για πάντα', + 'extension_date_is' => 'Η ημερομηνία παράτασης είναι {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Έχετε :count ανενεργό λογαριασμό (σε αρχειοθέτηση), τον οποίο μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.|Έχετε :count ανενεργούς λογαριασμούς (σε αρχειοθέτηση), τους οποίους μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.', - 'all_accounts_inactive' => 'Αυτοί είναι οι ανενεργοί λογαριασμοί σας.', - 'active_account_link' => 'Αυτός ο σύνδεσμος πηγαίνει πίσω στους ενεργούς λογαριασμούς σας.', - 'account_missing_transaction' => 'Ο λογαριασμός #:id (":name") δεν μπορεί να προβληθεί άμεσα, αλλά και το Firefly δεν έχει πληροφορίες ανακατεύθυνσης.', - 'cc_monthly_payment_date_help' => 'Επιλέξτε οποιοδήποτε έτος και μήνα, θα αγνοηθούν ούτως ή άλλως. Μόνο η επιλογή ημέρας του μήνα είναι σχετική.', - 'details_for_asset' => 'Λεπτομέρειες για τον λογαριασμό κεφαλαίου ":name"', - 'details_for_expense' => 'Λεπτομέρειες για το λογαριασμό δαπανών ":name"', - 'details_for_revenue' => 'Λεπτομέρειες για τον λογαριασμό εσόδων ":name"', - 'details_for_cash' => 'Λεπτομέρειες για to λογαριασμό μετρητών ":name"', - 'store_new_asset_account' => 'Αποθήκευση νέου λογαριασμού κεφαλαίου', - 'store_new_expense_account' => 'Αποθήκευση νέου λογαριασμού δαπανών', - 'store_new_revenue_account' => 'Αποθήκευση νέου λογαριασμού εσόδων', - 'edit_asset_account' => 'Επεξεργασία του κεφαλαιακού λογαριασμού ":name"', - 'edit_expense_account' => 'Επεξεργασία του λογαριασμού δαπανών ":name"', - 'edit_revenue_account' => 'Επεξεργασία λογαριασμού εσόδων ":name"', - 'delete_asset_account' => 'Διαγραφή του κεφαλαιακού λογαριασμού ":name"', - 'delete_expense_account' => 'Διαγραφή του λογαριασμού δαπανών ":name"', - 'delete_revenue_account' => 'Διαγραφή λογαριασμού εσόδων ":name"', - 'delete_liabilities_account' => 'Διαγραφή υποχρέωσης ":name"', - 'asset_deleted' => 'Επιτυχής διαγραφή του κεφαλαιακού λογαριασμού ":name"', - 'account_deleted' => 'Επιτυχής διαγραφή του λογαριασμού ":name"', - 'expense_deleted' => 'Επιτυχής διαγραφή του λογαριασμού δαπανών ":name"', - 'revenue_deleted' => 'Επιτυχής διαγραφή του λογαριασμού εσόδων ":name"', - 'update_asset_account' => 'Ενημέρωση λογαριασμού κεφαλαίου', - 'update_undefined_account' => 'Ενημέρωση λογαριασμού', - 'update_liabilities_account' => 'Ενημέρωση υποχρέωσης', - 'update_expense_account' => 'Ενημέρωση λογαριασμού δαπανών', - 'update_revenue_account' => 'Ενημέρωση λογαριασμού εσόδων', - 'make_new_asset_account' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', - 'make_new_expense_account' => 'Δημιουργία νέου λογαριασμού δαπανών', - 'make_new_revenue_account' => 'Δημιουργία νέου λογαριασμού εσόδων', - 'make_new_liabilities_account' => 'Δημιουργία νέας υποχρέωσης', - 'asset_accounts' => 'Κεφάλαια', - 'undefined_accounts' => 'Λογαριασμοί', - 'asset_accounts_inactive' => 'Λογαριασμοί κεφαλαίου (ανενεργοί)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Δαπάνες', - 'expense_accounts_inactive' => 'Λογαριασμοί δαπανών (ανενεργοί)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Έσοδα', - 'revenue_accounts_inactive' => 'Λογαριασμοί εσόδων (ανενεργοί)', - 'cash_accounts' => 'Μετρητά', - 'Cash account' => 'Λογαριασμός μετρητών', - 'liabilities_accounts' => 'Υποχρεώσεις', - 'liabilities_accounts_inactive' => 'Υποχρεώσεις (ανενεργές)', - 'reconcile_account' => 'Τακτοποίηση λογαριασμού ":account"', - 'overview_of_reconcile_modal' => 'Επισκόπηση τακτοποίησης', - 'delete_reconciliation' => 'Διαγραφή τακτοποίησης', - 'update_reconciliation' => 'Ενημέρωση τακτοποίησης', - 'amount_cannot_be_zero' => 'Το ποσό δεν μπορεί να είναι μηδέν', - 'end_of_reconcile_period' => 'Τέλος περιόδου προς τακτοποίηση :period', - 'start_of_reconcile_period' => 'Έναρξη περιόδου προς τακτοποίηση :period', - 'start_balance' => 'Αρχικό υπόλοιπο', - 'end_balance' => 'Τελικό υπόλοιπο', - 'update_balance_dates_instruction' => 'Αντιστοιχίστε τα παραπάνω ποσά και ημερομηνίες με την τραπεζική σας κατάσταση και πατήστε "Έναρξη τακτοποίησης"', - 'select_transactions_instruction' => 'Επιλέξτε τις συναλλαγές που εμφανίζονται στην τραπεζική σας κατάσταση.', - 'select_range_and_balance' => 'Ελέγξτε πρώτα το χρονικό διάστημα καθώς και τα υπόλοιπα. Στη συνέχεια πατήστε "Έναρξη τακτοποίησης"', - 'date_change_instruction' => 'Εάν αλλάξετε τώρα το χρονικό διάστημα, θα χαθεί ότι είχατε εισάγει.', - 'update_selection' => 'Ενημέρωση επιλογής', - 'store_reconcile' => 'Αποθήκευση τακτοποίησης', - 'reconciliation_transaction' => 'Συναλλαγή τακτοποίησης', - 'Reconciliation' => 'Τακτοποίηση', - 'reconciliation' => 'Τακτοποίηση', - 'reconcile_options' => 'Επιλογές τακτοποίησης', - 'reconcile_range' => 'Εύρος τακτοποίησης', - 'start_reconcile' => 'Έναρξη τακτοποίησης', - 'cash_account_type' => 'Μετρητά', - 'cash' => 'μετρητά', - 'cant_find_redirect_account' => 'Το Firefly III προσπάθησε να σας ανακατευθύνει αλλά δεν κατάφερε. Συγνώμη για αυτό. Πίσω στην αρχική.', - 'account_type' => 'Τύπος λογαριασμού', - 'save_transactions_by_moving' => 'Αποθηκεύστε αυτή τη συναλλαγή μετακινώντας την σε ένα άλλο λογαριασμό:|Αποθηκεύστε αυτές τις συναλλαγές μετακινώντας τις σε ένα άλλο λογαριασμό:', - 'save_transactions_by_moving_js' => 'Δεν υπάρχουν συναλλαγές|Αποθηκεύστε αυτή τη συναλλαγή μετακινώντας την σε άλλο λογαριασμό|Αποθηκεύστε αυτές τις συναλλαγές μετακινώντας τις σε άλλο λογαριασμό.', - 'stored_new_account' => 'Ο νέος λογαριασμός ":name" αποθηκεύτηκε!', - 'stored_new_account_js' => 'Ο νέος λογαριασμός "{name}" αποθηκεύτηκε!', - 'updated_account' => 'Ενημερώθηκε ο λογαριασμός ":name"', - 'updated_account_js' => 'Ενημερώθηκε ο λογαριασμός "{title}".', - 'credit_card_options' => 'Επιλογές πιστωτικής κάρτας', - 'no_transactions_account' => 'Δεν υπάρχουν συναλλαγές (αυτήν την περίοδο) για τον λογαριασμό κεφαλαίου ":name".', - 'no_transactions_period' => 'Δεν υπάρχουν συναλλαγές (αυτήν την περίοδο).', - 'no_data_for_chart' => 'Δεν υπάρχουν αρκετές πληροφορίες (ακόμα) για να δημιουργηθεί αυτό το διάγραμμα.', - 'select_at_least_one_account' => 'Παρακαλώ επιλέξτε τουλάχιστον ένα λογαριασμό κεφαλαίου', - 'select_at_least_one_category' => 'Παρακαλώ επιλέξτε τουλάχιστον μια κατηγορία', - 'select_at_least_one_budget' => 'Επιλέξτε τουλάχιστον έναν προϋπολογισμό', - 'select_at_least_one_tag' => 'Παρακαλώ επιλέξτε τουλάχιστον μια ετικέτα', - 'select_at_least_one_expense' => 'Επιλέξτε τουλάχιστον έναν συνδυασμό λογαριασμών δαπανών / εσόδων. Εάν δεν έχετε (η λίστα είναι κενή) αυτή η αναφορά δεν είναι διαθέσιμη.', - 'account_default_currency' => 'Αυτό θα είναι το προεπιλεγμένο νόμισμα που σχετίζεται με αυτό το λογαριασμό.', - 'reconcile_has_more' => 'Το καθολικό στο Firefly III έχει περισσότερα χρήματα από όσα εμφανίζει η κατάσταση της τράπεζας. Υπάρχουν πολλές επιλογές. Επιλέξτε τι θέλετε να κάνετε. Στη συνέχεια πατήστε "Επιβεβαίωση τακτοποίησης".', - 'reconcile_has_less' => 'Το καθολικό στο Firefly III έχει λιγότερα χρήματα από όσα εμφανίζει η κατάσταση της τράπεζας. Υπάρχουν πολλές επιλογές. Επιλέξτε τι θέλετε να κάνετε. Στη συνέχεια πατήστε "Επιβεβαίωση τακτοποίησης".', - 'reconcile_is_equal' => 'Το καθολικό στο Firefly III ταιριάζει με την κατάσταση της τράπεζας. Δεν υπάρχει τίποτα να κάνετε. Πατήστε "Επιβεβαίωση τακτοποίησης" για επιβεβαίωση.', - 'create_pos_reconcile_transaction' => 'Εκκαθαρίστε τις επιλεγμένες συναλλαγές και δημιουργήστε μια διόρθωση προσθέτοντας :amount σε αυτό το λογαριασμό κεφαλαίου.', - 'create_neg_reconcile_transaction' => 'Εκκαθαρίστε τις επιλεγμένες συναλλαγές και δημιουργήστε μια διόρθωση αφαιρώντας :amount από αυτό το λογαριασμό κεφαλαίου.', - 'reconcile_do_nothing' => 'Σβήστε τις επιλεγμένες συναλλαγές, αλλά χωρίς διόρθωση.', - 'reconcile_go_back' => 'Μπορείτε να επεξεργαστείτε ή να διαγράψετε μια διόρθωση αργότερα.', - 'must_be_asset_account' => 'Μπορείτε να κάνετε τακτοποίηση μόνο σε λογαριασμούς κεφαλαίου', - 'reconciliation_stored' => 'Η τακτοποίηση αποθηκεύτηκε', - 'reconciliation_error' => 'Λόγω σφάλματος, οι συναλλαγές επισημάνθηκαν ως τακτοποιημένες αλλά η διόρθωση δεν έχει αποθηκευτεί: :error.', - 'reconciliation_transaction_title' => 'Τακτοποίηση (:from σε :to)', - 'sum_of_reconciliation' => 'Άθροισμα της τακτοποίησης', - 'reconcile_this_account' => 'Τακτοποίηση αυτού του λογαριασμού', - 'reconcile' => 'Τακτοποίηση', - 'show' => 'Εμφάνιση', - 'confirm_reconciliation' => 'Επιβεβαίωση τακτοποίησης', - 'submitted_start_balance' => 'Υποβλήθηκε το αρχικό υπόλοιπο', - 'selected_transactions' => 'Επιλεγμένες συναλλαγές (:count)', - 'already_cleared_transactions' => 'Συναλλαγές που έχουν ήδη ελεγχθεί (:count)', - 'submitted_end_balance' => 'Υποβλήθηκε το τελικό υπόλοιπο', - 'initial_balance_description' => 'Αρχικό υπόλοιπο για ":account"', - 'liability_credit_description' => 'Πίστωση υποχρέωσης για ":account"', - 'interest_calc_' => 'άγνωστο', - 'interest_calc_daily' => 'Ανά ημέρα', - 'interest_calc_monthly' => 'Ανά μήνα', - 'interest_calc_yearly' => 'Ανά έτος', - 'interest_calc_weekly' => 'Ανά εβδομάδα', - 'interest_calc_half-year' => 'Ανά εξάμηνο', - 'interest_calc_quarterly' => 'Ανά τρίμηνο', - 'initial_balance_account' => 'Αρχικό υπόλοιπο του λογαριασμού :account', - 'list_options' => 'Επιλογές λίστας', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Έχετε :count ανενεργό λογαριασμό (σε αρχειοθέτηση), τον οποίο μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.|Έχετε :count ανενεργούς λογαριασμούς (σε αρχειοθέτηση), τους οποίους μπορείτε να δείτε σε αυτή τη ξεχωριστή σελίδα.', + 'all_accounts_inactive' => 'Αυτοί είναι οι ανενεργοί λογαριασμοί σας.', + 'active_account_link' => 'Αυτός ο σύνδεσμος πηγαίνει πίσω στους ενεργούς λογαριασμούς σας.', + 'account_missing_transaction' => 'Ο λογαριασμός #:id (":name") δεν μπορεί να προβληθεί άμεσα, αλλά και το Firefly δεν έχει πληροφορίες ανακατεύθυνσης.', + 'cc_monthly_payment_date_help' => 'Επιλέξτε οποιοδήποτε έτος και μήνα, θα αγνοηθούν ούτως ή άλλως. Μόνο η επιλογή ημέρας του μήνα είναι σχετική.', + 'details_for_asset' => 'Λεπτομέρειες για τον λογαριασμό κεφαλαίου ":name"', + 'details_for_expense' => 'Λεπτομέρειες για το λογαριασμό δαπανών ":name"', + 'details_for_revenue' => 'Λεπτομέρειες για τον λογαριασμό εσόδων ":name"', + 'details_for_cash' => 'Λεπτομέρειες για to λογαριασμό μετρητών ":name"', + 'store_new_asset_account' => 'Αποθήκευση νέου λογαριασμού κεφαλαίου', + 'store_new_expense_account' => 'Αποθήκευση νέου λογαριασμού δαπανών', + 'store_new_revenue_account' => 'Αποθήκευση νέου λογαριασμού εσόδων', + 'edit_asset_account' => 'Επεξεργασία του κεφαλαιακού λογαριασμού ":name"', + 'edit_expense_account' => 'Επεξεργασία του λογαριασμού δαπανών ":name"', + 'edit_revenue_account' => 'Επεξεργασία λογαριασμού εσόδων ":name"', + 'delete_asset_account' => 'Διαγραφή του κεφαλαιακού λογαριασμού ":name"', + 'delete_expense_account' => 'Διαγραφή του λογαριασμού δαπανών ":name"', + 'delete_revenue_account' => 'Διαγραφή λογαριασμού εσόδων ":name"', + 'delete_liabilities_account' => 'Διαγραφή υποχρέωσης ":name"', + 'asset_deleted' => 'Επιτυχής διαγραφή του κεφαλαιακού λογαριασμού ":name"', + 'account_deleted' => 'Επιτυχής διαγραφή του λογαριασμού ":name"', + 'expense_deleted' => 'Επιτυχής διαγραφή του λογαριασμού δαπανών ":name"', + 'revenue_deleted' => 'Επιτυχής διαγραφή του λογαριασμού εσόδων ":name"', + 'update_asset_account' => 'Ενημέρωση λογαριασμού κεφαλαίου', + 'update_undefined_account' => 'Ενημέρωση λογαριασμού', + 'update_liabilities_account' => 'Ενημέρωση υποχρέωσης', + 'update_expense_account' => 'Ενημέρωση λογαριασμού δαπανών', + 'update_revenue_account' => 'Ενημέρωση λογαριασμού εσόδων', + 'make_new_asset_account' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', + 'make_new_expense_account' => 'Δημιουργία νέου λογαριασμού δαπανών', + 'make_new_revenue_account' => 'Δημιουργία νέου λογαριασμού εσόδων', + 'make_new_liabilities_account' => 'Δημιουργία νέας υποχρέωσης', + 'asset_accounts' => 'Κεφάλαια', + 'undefined_accounts' => 'Λογαριασμοί', + 'asset_accounts_inactive' => 'Λογαριασμοί κεφαλαίου (ανενεργοί)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Δαπάνες', + 'expense_accounts_inactive' => 'Λογαριασμοί δαπανών (ανενεργοί)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Έσοδα', + 'revenue_accounts_inactive' => 'Λογαριασμοί εσόδων (ανενεργοί)', + 'cash_accounts' => 'Μετρητά', + 'Cash account' => 'Λογαριασμός μετρητών', + 'liabilities_accounts' => 'Υποχρεώσεις', + 'liabilities_accounts_inactive' => 'Υποχρεώσεις (ανενεργές)', + 'reconcile_account' => 'Τακτοποίηση λογαριασμού ":account"', + 'overview_of_reconcile_modal' => 'Επισκόπηση τακτοποίησης', + 'delete_reconciliation' => 'Διαγραφή τακτοποίησης', + 'update_reconciliation' => 'Ενημέρωση τακτοποίησης', + 'amount_cannot_be_zero' => 'Το ποσό δεν μπορεί να είναι μηδέν', + 'end_of_reconcile_period' => 'Τέλος περιόδου προς τακτοποίηση :period', + 'start_of_reconcile_period' => 'Έναρξη περιόδου προς τακτοποίηση :period', + 'start_balance' => 'Αρχικό υπόλοιπο', + 'end_balance' => 'Τελικό υπόλοιπο', + 'update_balance_dates_instruction' => 'Αντιστοιχίστε τα παραπάνω ποσά και ημερομηνίες με την τραπεζική σας κατάσταση και πατήστε "Έναρξη τακτοποίησης"', + 'select_transactions_instruction' => 'Επιλέξτε τις συναλλαγές που εμφανίζονται στην τραπεζική σας κατάσταση.', + 'select_range_and_balance' => 'Ελέγξτε πρώτα το χρονικό διάστημα καθώς και τα υπόλοιπα. Στη συνέχεια πατήστε "Έναρξη τακτοποίησης"', + 'date_change_instruction' => 'Εάν αλλάξετε τώρα το χρονικό διάστημα, θα χαθεί ότι είχατε εισάγει.', + 'update_selection' => 'Ενημέρωση επιλογής', + 'store_reconcile' => 'Αποθήκευση τακτοποίησης', + 'reconciliation_transaction' => 'Συναλλαγή τακτοποίησης', + 'Reconciliation' => 'Τακτοποίηση', + 'reconciliation' => 'Τακτοποίηση', + 'reconcile_options' => 'Επιλογές τακτοποίησης', + 'reconcile_range' => 'Εύρος τακτοποίησης', + 'start_reconcile' => 'Έναρξη τακτοποίησης', + 'cash_account_type' => 'Μετρητά', + 'cash' => 'μετρητά', + 'cant_find_redirect_account' => 'Το Firefly III προσπάθησε να σας ανακατευθύνει αλλά δεν κατάφερε. Συγνώμη για αυτό. Πίσω στην αρχική.', + 'account_type' => 'Τύπος λογαριασμού', + 'save_transactions_by_moving' => 'Αποθηκεύστε αυτή τη συναλλαγή μετακινώντας την σε ένα άλλο λογαριασμό:|Αποθηκεύστε αυτές τις συναλλαγές μετακινώντας τις σε ένα άλλο λογαριασμό:', + 'save_transactions_by_moving_js' => 'Δεν υπάρχουν συναλλαγές|Αποθηκεύστε αυτή τη συναλλαγή μετακινώντας την σε άλλο λογαριασμό|Αποθηκεύστε αυτές τις συναλλαγές μετακινώντας τις σε άλλο λογαριασμό.', + 'stored_new_account' => 'Ο νέος λογαριασμός ":name" αποθηκεύτηκε!', + 'stored_new_account_js' => 'Ο νέος λογαριασμός "{name}" αποθηκεύτηκε!', + 'updated_account' => 'Ενημερώθηκε ο λογαριασμός ":name"', + 'updated_account_js' => 'Ενημερώθηκε ο λογαριασμός "{title}".', + 'credit_card_options' => 'Επιλογές πιστωτικής κάρτας', + 'no_transactions_account' => 'Δεν υπάρχουν συναλλαγές (αυτήν την περίοδο) για τον λογαριασμό κεφαλαίου ":name".', + 'no_transactions_period' => 'Δεν υπάρχουν συναλλαγές (αυτήν την περίοδο).', + 'no_data_for_chart' => 'Δεν υπάρχουν αρκετές πληροφορίες (ακόμα) για να δημιουργηθεί αυτό το διάγραμμα.', + 'select_at_least_one_account' => 'Παρακαλώ επιλέξτε τουλάχιστον ένα λογαριασμό κεφαλαίου', + 'select_at_least_one_category' => 'Παρακαλώ επιλέξτε τουλάχιστον μια κατηγορία', + 'select_at_least_one_budget' => 'Επιλέξτε τουλάχιστον έναν προϋπολογισμό', + 'select_at_least_one_tag' => 'Παρακαλώ επιλέξτε τουλάχιστον μια ετικέτα', + 'select_at_least_one_expense' => 'Επιλέξτε τουλάχιστον έναν συνδυασμό λογαριασμών δαπανών / εσόδων. Εάν δεν έχετε (η λίστα είναι κενή) αυτή η αναφορά δεν είναι διαθέσιμη.', + 'account_default_currency' => 'Αυτό θα είναι το προεπιλεγμένο νόμισμα που σχετίζεται με αυτό το λογαριασμό.', + 'reconcile_has_more' => 'Το καθολικό στο Firefly III έχει περισσότερα χρήματα από όσα εμφανίζει η κατάσταση της τράπεζας. Υπάρχουν πολλές επιλογές. Επιλέξτε τι θέλετε να κάνετε. Στη συνέχεια πατήστε "Επιβεβαίωση τακτοποίησης".', + 'reconcile_has_less' => 'Το καθολικό στο Firefly III έχει λιγότερα χρήματα από όσα εμφανίζει η κατάσταση της τράπεζας. Υπάρχουν πολλές επιλογές. Επιλέξτε τι θέλετε να κάνετε. Στη συνέχεια πατήστε "Επιβεβαίωση τακτοποίησης".', + 'reconcile_is_equal' => 'Το καθολικό στο Firefly III ταιριάζει με την κατάσταση της τράπεζας. Δεν υπάρχει τίποτα να κάνετε. Πατήστε "Επιβεβαίωση τακτοποίησης" για επιβεβαίωση.', + 'create_pos_reconcile_transaction' => 'Εκκαθαρίστε τις επιλεγμένες συναλλαγές και δημιουργήστε μια διόρθωση προσθέτοντας :amount σε αυτό το λογαριασμό κεφαλαίου.', + 'create_neg_reconcile_transaction' => 'Εκκαθαρίστε τις επιλεγμένες συναλλαγές και δημιουργήστε μια διόρθωση αφαιρώντας :amount από αυτό το λογαριασμό κεφαλαίου.', + 'reconcile_do_nothing' => 'Σβήστε τις επιλεγμένες συναλλαγές, αλλά χωρίς διόρθωση.', + 'reconcile_go_back' => 'Μπορείτε να επεξεργαστείτε ή να διαγράψετε μια διόρθωση αργότερα.', + 'must_be_asset_account' => 'Μπορείτε να κάνετε τακτοποίηση μόνο σε λογαριασμούς κεφαλαίου', + 'reconciliation_stored' => 'Η τακτοποίηση αποθηκεύτηκε', + 'reconciliation_error' => 'Λόγω σφάλματος, οι συναλλαγές επισημάνθηκαν ως τακτοποιημένες αλλά η διόρθωση δεν έχει αποθηκευτεί: :error.', + 'reconciliation_transaction_title' => 'Τακτοποίηση (:from σε :to)', + 'sum_of_reconciliation' => 'Άθροισμα της τακτοποίησης', + 'reconcile_this_account' => 'Τακτοποίηση αυτού του λογαριασμού', + 'reconcile' => 'Τακτοποίηση', + 'show' => 'Εμφάνιση', + 'confirm_reconciliation' => 'Επιβεβαίωση τακτοποίησης', + 'submitted_start_balance' => 'Υποβλήθηκε το αρχικό υπόλοιπο', + 'selected_transactions' => 'Επιλεγμένες συναλλαγές (:count)', + 'already_cleared_transactions' => 'Συναλλαγές που έχουν ήδη ελεγχθεί (:count)', + 'submitted_end_balance' => 'Υποβλήθηκε το τελικό υπόλοιπο', + 'initial_balance_description' => 'Αρχικό υπόλοιπο για ":account"', + 'liability_credit_description' => 'Πίστωση υποχρέωσης για ":account"', + 'interest_calc_' => 'άγνωστο', + 'interest_calc_daily' => 'Ανά ημέρα', + 'interest_calc_monthly' => 'Ανά μήνα', + 'interest_calc_yearly' => 'Ανά έτος', + 'interest_calc_weekly' => 'Ανά εβδομάδα', + 'interest_calc_half-year' => 'Ανά εξάμηνο', + 'interest_calc_quarterly' => 'Ανά τρίμηνο', + 'initial_balance_account' => 'Αρχικό υπόλοιπο του λογαριασμού :account', + 'list_options' => 'Επιλογές λίστας', // categories: - 'new_category' => 'Νέα κατηγορία', - 'create_new_category' => 'Δημιουργήστε νέα κατηγορία', - 'without_category' => 'Χωρίς κατηγορία', - 'update_category' => 'Ενημέρωση κατηγορίας', - 'updated_category' => 'Ενημερώθηκε η κατηγορία ":name"', - 'categories' => 'Κατηγορίες', - 'edit_category' => 'Επεξεργασία κατηγορίας: ":name"', - 'no_category' => '(χωρίς κατηγορία)', - 'unknown_category_plain' => 'No category', - 'category' => 'Κατηγορία', - 'delete_category' => 'Διαγραφή κατηγορίας":name"', - 'deleted_category' => 'Διεγράφη η κατηγορία ":name"', - 'store_category' => 'Αποθήκευση νέας κατηγορίας', - 'stored_category' => 'Αποθηκεύτηκε η νέα κατηγορία ":name"', - 'without_category_between' => 'Χωρίς κατηγορία μεταξύ :start και :end', + 'new_category' => 'Νέα κατηγορία', + 'create_new_category' => 'Δημιουργήστε νέα κατηγορία', + 'without_category' => 'Χωρίς κατηγορία', + 'update_category' => 'Ενημέρωση κατηγορίας', + 'updated_category' => 'Ενημερώθηκε η κατηγορία ":name"', + 'categories' => 'Κατηγορίες', + 'edit_category' => 'Επεξεργασία κατηγορίας: ":name"', + 'no_category' => '(χωρίς κατηγορία)', + 'unknown_category_plain' => 'No category', + 'category' => 'Κατηγορία', + 'delete_category' => 'Διαγραφή κατηγορίας":name"', + 'deleted_category' => 'Διεγράφη η κατηγορία ":name"', + 'store_category' => 'Αποθήκευση νέας κατηγορίας', + 'stored_category' => 'Αποθηκεύτηκε η νέα κατηγορία ":name"', + 'without_category_between' => 'Χωρίς κατηγορία μεταξύ :start και :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Ενημέρωση ανάληψης', - 'update_deposit' => 'Ενημέρωση κατάθεσης', - 'update_transaction' => 'Ενημέρωση συναλλαγής', - 'update_transfer' => 'Ενημέρωση μεταφοράς', - 'updated_withdrawal' => 'Ενημερώθηκε η ανάληψη ":description"', - 'updated_deposit' => 'Ενημερώθηκε η κατάθεση ":description"', - 'updated_transfer' => 'Ενημερώθηκε η μεταφορά ":description"', - 'no_changes_withdrawal' => 'Η ανάληψη ":description" δεν άλλαξε.', - 'no_changes_deposit' => 'Η κατάθεση ":description" δεν άλλαξε.', - 'no_changes_transfer' => 'Η μεταφορά ":description" δεν άλλαξε.', - 'delete_withdrawal' => 'Διαγραφή ανάληψης ":description"', - 'delete_deposit' => 'Διαγραφή κατάθεσης ":description"', - 'delete_transfer' => 'Διαγραφή μεταφοράς ":description"', - 'deleted_withdrawal' => 'Επιτυχής διαγραφή της ανάληψης ":description"', - 'deleted_deposit' => 'Επιτυχής διαγραφή της κατάθεσης ":description"', - 'deleted_transfer' => 'Επιτυχής διαγραφή της μεταφοράς ":description"', - 'deleted_reconciliation' => 'Επιτυχής διαγραφή της τακτοποιημένης συναλλαγής ":description"', - 'stored_journal' => 'Δημιουργήθηκε επιτυχώς η νέα συναλλαγή ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Δημιουργήθηκε επιτυχώς η νέα συναλλαγή', - 'updated_journal_no_descr' => 'Ενημερώθηκε επιτυχώς η συναλλαγή σας', - 'select_transactions' => 'Επιλέξτε συναλλαγές', - 'rule_group_select_transactions' => 'Εφαρμογή ":title" στις συναλλαγές', - 'rule_select_transactions' => 'Εφαρμογή ":title" στις συναλλαγές', - 'stop_selection' => 'Διακοπή επιλογής συναλλαγών', - 'reconcile_selected' => 'Τακτοποίηση', - 'mass_delete_journals' => 'Διαγραφή ενός πλήθους συναλλαγών', - 'mass_edit_journals' => 'Επεξεργασία ενός πλήθους συναλλαγών', - 'mass_bulk_journals' => 'Μαζική επεξεργασία ενός πλήθους συναλλαγών', - 'mass_bulk_journals_explain' => 'Αυτή η φόρμα σάς επιτρέπει να αλλάξετε τις ιδιότητες των συναλλαγών που παρατίθενται παρακάτω με μία μαζική ενημέρωση. Όλες οι συναλλαγές στον πίνακα θα ενημερωθούν όταν αλλάξετε τις παραμέτρους που βλέπετε εδώ.', - 'part_of_split' => 'Αυτή η συναλλαγή αποτελεί μέρος μιας διαχωρισμένης συναλλαγής. Εάν δεν έχετε επιλέξει όλους τις διαχωρισμούς, ενδέχεται να καταλήξετε να αλλάξετε μόνο τη μισή συναλλαγή.', - 'bulk_set_new_values' => 'Χρησιμοποιήστε τις παρακάτω εισόδους στοιχείων για να ορίσετε νέες τιμές. Εάν τα αφήσετε κενά, θα γίνουν κενά για όλα. Επίσης, σημειώστε ότι μόνο οι αναλήψεις θα λάβουν έναν προϋπολογισμό.', - 'no_bulk_category' => 'Μην ενημερώσεις την κατηγορία', - 'no_bulk_budget' => 'Μην ενημερώσεις τον προϋπολογισμό', - 'no_bulk_tags' => 'Μην ενημερώσεις τις ετικέτες', - 'replace_with_these_tags' => 'Αντικατάσταση με αυτές τις ετικέτες', - 'append_these_tags' => 'Προσθήκη των ετικετών', - 'mass_edit' => 'Μεμονωμένη επεξεργασία της επιλογής', - 'bulk_edit' => 'Μαζική επεξεργασία της επιλογής', - 'mass_delete' => 'Διαγραφή επιλεγμένων', - 'cannot_edit_other_fields' => 'Δεν μπορείτε να επεξεργαστείτε μαζικά άλλα πεδία εκτός από αυτά εδώ, γιατί δεν υπάρχει χώρος για να εμφανιστούν. Ακολουθήστε τον σύνδεσμο και επεξεργαστείτε τα μεμονωμένα, αν θέλετε να επεξεργαστείτε αυτά τα πεδία.', - 'cannot_change_amount_reconciled' => 'Δεν μπορείτε να αλλάξετε το ποσό σε τακτοποιημένες συναλλαγές.', - 'no_budget' => '(χωρίς προϋπολογισμό)', - 'no_bill' => '(χωρίς πάγιο έξοδο)', - 'account_per_budget' => 'Λογαριασμός ανά προϋπολογισμό', - 'account_per_category' => 'Λογαριασμοί ανά κατηγορία', - 'create_new_object' => 'Δημιουργία', - 'empty' => '(κενό)', - 'all_other_budgets' => '(όλοι οι άλλοι προϋπολογισμοί)', - 'all_other_accounts' => '(όλοι οι άλλοι λογαριασμοί)', - 'expense_per_source_account' => 'Δαπάνες ανά λογαριασμό προέλευσης', - 'expense_per_destination_account' => 'Δαπάνες ανά λογαριασμό προορισμού', - 'income_per_destination_account' => 'Έσοδα ανά λογαριασμό προορισμού', - 'spent_in_specific_category' => 'Δαπάνες στην κατηγορία ":category"', - 'earned_in_specific_category' => 'Κέρδη στην κατηγορία ":category"', - 'spent_in_specific_tag' => 'Δαπάνες με ετικέτα ":tag"', - 'earned_in_specific_tag' => 'Κέρδη με ετικέτα ":tag"', - 'income_per_source_account' => 'Έσοδα ανά λογαριασμό προέλευσης', - 'average_spending_per_destination' => 'Μέση δαπάνη ανά λογαριασμό προορισμού', - 'average_spending_per_source' => 'Μέση δαπάνη ανά λογαριασμό προέλευσης', - 'average_earning_per_source' => 'Μέσο κέρδος ανά λογαριασμό προέλευσης', - 'average_earning_per_destination' => 'Μέσο κέρδος ανά λογαριασμό προορισμού', - 'account_per_tag' => 'Λογαριασμός ανά ετικέτα', - 'tag_report_expenses_listed_once' => 'Οι δαπάνες και τα έσοδα δεν αναφέρονται ποτέ δύο φορές. Εάν μια συναλλαγή έχει πολλές ετικέτες, μπορεί να εμφανιστεί μόνο κάτω από μία από τις ετικέτες της. Αυτή η λίστα μπορεί να φαίνεται ότι έχει ελλιπή δεδομένα, αλλά τα ποσά θα είναι σωστά.', - 'double_report_expenses_charted_once' => 'Οι δαπάνες και τα έσοδα δεν εμφανίζονται ποτέ δύο φορές. Εάν μια συναλλαγή έχει πολλές ετικέτες, μπορεί να εμφανιστεί μόνο κάτω από μία από τις ετικέτες της. Αυτό το διάγραμμα ενδέχεται να φαίνεται ότι έχει ελλιπή δεδομένα, αλλά τα ποσά θα είναι σωστά.', - 'tag_report_chart_single_tag' => 'Αυτό το διάγραμμα ισχύει για μια ετικέτα. Εάν μια συναλλαγή έχει πολλές ετικέτες, αυτό που βλέπετε εδώ μπορεί να αντικατοπτρίζεται και στα διαγράμματα άλλων ετικετών.', - 'tag' => 'Ετικέτα', - 'no_budget_squared' => '(χωρίς προϋπολογισμό)', - 'perm-delete-many' => 'Η διαγραφή πολλών στοιχείων με μια κίνηση μπορεί να έχει απροσδόκητα αποτελέσματα. Παρακαλώ προσέξτε. Μπορείτε να διαγράψετε μέρος μιας διαχωρισμένης συναλλαγής από αυτήν τη σελίδα, οπότε δώστε προσοχή.', - 'mass_deleted_transactions_success' => 'Διαγράφηκε :count συναλλαγή.|Διαγράφηκαν :count συναλλαγές.', - 'mass_edited_transactions_success' => 'Ενημερώθηκε :count συναλλαγή.|Ενημερώθηκαν :count συναλλαγές.', - 'opt_group_' => '(χωρίς τύπο λογαριασμού)', - 'opt_group_no_account_type' => '(χωρίς τύπο λογαριασμού)', - 'opt_group_defaultAsset' => 'Βασικοί λογαριασμοί κεφαλαίου', - 'opt_group_savingAsset' => 'Λογαριασμοί αποταμίευσης', - 'opt_group_sharedAsset' => 'Κοινοί λογαριασμοί κεφαλαίου', - 'opt_group_ccAsset' => 'Πιστωτικές κάρτες', - 'opt_group_cashWalletAsset' => 'Πορτοφόλια μετρητών', - 'opt_group_expense_account' => 'Λογαριασμοί δαπανών', - 'opt_group_revenue_account' => 'Λογαριασμοί εσόδων', - 'opt_group_l_Loan' => 'Υποχρέωση: Δάνειο', - 'opt_group_cash_account' => 'Λογαριασμός μετρητών', - 'opt_group_l_Debt' => 'Υποχρέωση: Χρέος', - 'opt_group_l_Mortgage' => 'Υποχρέωση: Υποθήκη', - 'opt_group_l_Credit card' => 'Υποχρέωση: Πιστωτική κάρτα', - 'notes' => 'Σημειώσεις', - 'unknown_journal_error' => 'Δεν ήταν δυνατή η αποθήκευση της συναλλαγής. Ελέγξτε τα αρχεία καταγραφής.', - 'attachment_not_found' => 'Αυτό το συνημμένο δεν βρέθηκε.', - 'journal_link_bill' => 'Αυτή η συναλλαγή συνδέεται με το πάγιο έξοδο :name. Για να καταργήσετε τη σύνδεση, καταργήστε την επιλογή στο κουτάκι. Χρησιμοποιήστε κανόνες για να το συνδέσετε με ένα άλλο πάγιο έξοδο.', - 'transaction_stored_link' => 'Η συναλλαγή #{ID} ("{title}") έχει αποθηκευτεί.', - 'transaction_new_stored_link' => 'Η συναλλαγή #{ID} έχει αποθηκευτεί.', - 'transaction_updated_link' => 'Η συναλλαγή #{ID} ("{title}") έχει ενημερωθεί.', - 'transaction_updated_no_changes' => 'Η συναλλαγή #{ID} ("{title}") παρέμεινε χωρίς καμία αλλαγή.', - 'first_split_decides' => 'Ο πρώτος διαχωρισμός καθορίζει την τιμή αυτού του πεδίου', - 'first_split_overrules_source' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προέλευσης', - 'first_split_overrules_destination' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προορισμού', - 'spent_x_of_y' => 'Δαπανήθηκαν {amount} από {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Ενημέρωση ανάληψης', + 'update_deposit' => 'Ενημέρωση κατάθεσης', + 'update_transaction' => 'Ενημέρωση συναλλαγής', + 'update_transfer' => 'Ενημέρωση μεταφοράς', + 'updated_withdrawal' => 'Ενημερώθηκε η ανάληψη ":description"', + 'updated_deposit' => 'Ενημερώθηκε η κατάθεση ":description"', + 'updated_transfer' => 'Ενημερώθηκε η μεταφορά ":description"', + 'no_changes_withdrawal' => 'Η ανάληψη ":description" δεν άλλαξε.', + 'no_changes_deposit' => 'Η κατάθεση ":description" δεν άλλαξε.', + 'no_changes_transfer' => 'Η μεταφορά ":description" δεν άλλαξε.', + 'delete_withdrawal' => 'Διαγραφή ανάληψης ":description"', + 'delete_deposit' => 'Διαγραφή κατάθεσης ":description"', + 'delete_transfer' => 'Διαγραφή μεταφοράς ":description"', + 'deleted_withdrawal' => 'Επιτυχής διαγραφή της ανάληψης ":description"', + 'deleted_deposit' => 'Επιτυχής διαγραφή της κατάθεσης ":description"', + 'deleted_transfer' => 'Επιτυχής διαγραφή της μεταφοράς ":description"', + 'deleted_reconciliation' => 'Επιτυχής διαγραφή της τακτοποιημένης συναλλαγής ":description"', + 'stored_journal' => 'Δημιουργήθηκε επιτυχώς η νέα συναλλαγή ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Δημιουργήθηκε επιτυχώς η νέα συναλλαγή', + 'updated_journal_no_descr' => 'Ενημερώθηκε επιτυχώς η συναλλαγή σας', + 'select_transactions' => 'Επιλέξτε συναλλαγές', + 'rule_group_select_transactions' => 'Εφαρμογή ":title" στις συναλλαγές', + 'rule_select_transactions' => 'Εφαρμογή ":title" στις συναλλαγές', + 'stop_selection' => 'Διακοπή επιλογής συναλλαγών', + 'reconcile_selected' => 'Τακτοποίηση', + 'mass_delete_journals' => 'Διαγραφή ενός πλήθους συναλλαγών', + 'mass_edit_journals' => 'Επεξεργασία ενός πλήθους συναλλαγών', + 'mass_bulk_journals' => 'Μαζική επεξεργασία ενός πλήθους συναλλαγών', + 'mass_bulk_journals_explain' => 'Αυτή η φόρμα σάς επιτρέπει να αλλάξετε τις ιδιότητες των συναλλαγών που παρατίθενται παρακάτω με μία μαζική ενημέρωση. Όλες οι συναλλαγές στον πίνακα θα ενημερωθούν όταν αλλάξετε τις παραμέτρους που βλέπετε εδώ.', + 'part_of_split' => 'Αυτή η συναλλαγή αποτελεί μέρος μιας διαχωρισμένης συναλλαγής. Εάν δεν έχετε επιλέξει όλους τις διαχωρισμούς, ενδέχεται να καταλήξετε να αλλάξετε μόνο τη μισή συναλλαγή.', + 'bulk_set_new_values' => 'Χρησιμοποιήστε τις παρακάτω εισόδους στοιχείων για να ορίσετε νέες τιμές. Εάν τα αφήσετε κενά, θα γίνουν κενά για όλα. Επίσης, σημειώστε ότι μόνο οι αναλήψεις θα λάβουν έναν προϋπολογισμό.', + 'no_bulk_category' => 'Μην ενημερώσεις την κατηγορία', + 'no_bulk_budget' => 'Μην ενημερώσεις τον προϋπολογισμό', + 'no_bulk_tags' => 'Μην ενημερώσεις τις ετικέτες', + 'replace_with_these_tags' => 'Αντικατάσταση με αυτές τις ετικέτες', + 'append_these_tags' => 'Προσθήκη των ετικετών', + 'mass_edit' => 'Μεμονωμένη επεξεργασία της επιλογής', + 'bulk_edit' => 'Μαζική επεξεργασία της επιλογής', + 'mass_delete' => 'Διαγραφή επιλεγμένων', + 'cannot_edit_other_fields' => 'Δεν μπορείτε να επεξεργαστείτε μαζικά άλλα πεδία εκτός από αυτά εδώ, γιατί δεν υπάρχει χώρος για να εμφανιστούν. Ακολουθήστε τον σύνδεσμο και επεξεργαστείτε τα μεμονωμένα, αν θέλετε να επεξεργαστείτε αυτά τα πεδία.', + 'cannot_change_amount_reconciled' => 'Δεν μπορείτε να αλλάξετε το ποσό σε τακτοποιημένες συναλλαγές.', + 'no_budget' => '(χωρίς προϋπολογισμό)', + 'no_bill' => '(χωρίς πάγιο έξοδο)', + 'account_per_budget' => 'Λογαριασμός ανά προϋπολογισμό', + 'account_per_category' => 'Λογαριασμοί ανά κατηγορία', + 'create_new_object' => 'Δημιουργία', + 'empty' => '(κενό)', + 'all_other_budgets' => '(όλοι οι άλλοι προϋπολογισμοί)', + 'all_other_accounts' => '(όλοι οι άλλοι λογαριασμοί)', + 'expense_per_source_account' => 'Δαπάνες ανά λογαριασμό προέλευσης', + 'expense_per_destination_account' => 'Δαπάνες ανά λογαριασμό προορισμού', + 'income_per_destination_account' => 'Έσοδα ανά λογαριασμό προορισμού', + 'spent_in_specific_category' => 'Δαπάνες στην κατηγορία ":category"', + 'earned_in_specific_category' => 'Κέρδη στην κατηγορία ":category"', + 'spent_in_specific_tag' => 'Δαπάνες με ετικέτα ":tag"', + 'earned_in_specific_tag' => 'Κέρδη με ετικέτα ":tag"', + 'income_per_source_account' => 'Έσοδα ανά λογαριασμό προέλευσης', + 'average_spending_per_destination' => 'Μέση δαπάνη ανά λογαριασμό προορισμού', + 'average_spending_per_source' => 'Μέση δαπάνη ανά λογαριασμό προέλευσης', + 'average_earning_per_source' => 'Μέσο κέρδος ανά λογαριασμό προέλευσης', + 'average_earning_per_destination' => 'Μέσο κέρδος ανά λογαριασμό προορισμού', + 'account_per_tag' => 'Λογαριασμός ανά ετικέτα', + 'tag_report_expenses_listed_once' => 'Οι δαπάνες και τα έσοδα δεν αναφέρονται ποτέ δύο φορές. Εάν μια συναλλαγή έχει πολλές ετικέτες, μπορεί να εμφανιστεί μόνο κάτω από μία από τις ετικέτες της. Αυτή η λίστα μπορεί να φαίνεται ότι έχει ελλιπή δεδομένα, αλλά τα ποσά θα είναι σωστά.', + 'double_report_expenses_charted_once' => 'Οι δαπάνες και τα έσοδα δεν εμφανίζονται ποτέ δύο φορές. Εάν μια συναλλαγή έχει πολλές ετικέτες, μπορεί να εμφανιστεί μόνο κάτω από μία από τις ετικέτες της. Αυτό το διάγραμμα ενδέχεται να φαίνεται ότι έχει ελλιπή δεδομένα, αλλά τα ποσά θα είναι σωστά.', + 'tag_report_chart_single_tag' => 'Αυτό το διάγραμμα ισχύει για μια ετικέτα. Εάν μια συναλλαγή έχει πολλές ετικέτες, αυτό που βλέπετε εδώ μπορεί να αντικατοπτρίζεται και στα διαγράμματα άλλων ετικετών.', + 'tag' => 'Ετικέτα', + 'no_budget_squared' => '(χωρίς προϋπολογισμό)', + 'perm-delete-many' => 'Η διαγραφή πολλών στοιχείων με μια κίνηση μπορεί να έχει απροσδόκητα αποτελέσματα. Παρακαλώ προσέξτε. Μπορείτε να διαγράψετε μέρος μιας διαχωρισμένης συναλλαγής από αυτήν τη σελίδα, οπότε δώστε προσοχή.', + 'mass_deleted_transactions_success' => 'Διαγράφηκε :count συναλλαγή.|Διαγράφηκαν :count συναλλαγές.', + 'mass_edited_transactions_success' => 'Ενημερώθηκε :count συναλλαγή.|Ενημερώθηκαν :count συναλλαγές.', + 'opt_group_' => '(χωρίς τύπο λογαριασμού)', + 'opt_group_no_account_type' => '(χωρίς τύπο λογαριασμού)', + 'opt_group_defaultAsset' => 'Βασικοί λογαριασμοί κεφαλαίου', + 'opt_group_savingAsset' => 'Λογαριασμοί αποταμίευσης', + 'opt_group_sharedAsset' => 'Κοινοί λογαριασμοί κεφαλαίου', + 'opt_group_ccAsset' => 'Πιστωτικές κάρτες', + 'opt_group_cashWalletAsset' => 'Πορτοφόλια μετρητών', + 'opt_group_expense_account' => 'Λογαριασμοί δαπανών', + 'opt_group_revenue_account' => 'Λογαριασμοί εσόδων', + 'opt_group_l_Loan' => 'Υποχρέωση: Δάνειο', + 'opt_group_cash_account' => 'Λογαριασμός μετρητών', + 'opt_group_l_Debt' => 'Υποχρέωση: Χρέος', + 'opt_group_l_Mortgage' => 'Υποχρέωση: Υποθήκη', + 'opt_group_l_Credit card' => 'Υποχρέωση: Πιστωτική κάρτα', + 'notes' => 'Σημειώσεις', + 'unknown_journal_error' => 'Δεν ήταν δυνατή η αποθήκευση της συναλλαγής. Ελέγξτε τα αρχεία καταγραφής.', + 'attachment_not_found' => 'Αυτό το συνημμένο δεν βρέθηκε.', + 'journal_link_bill' => 'Αυτή η συναλλαγή συνδέεται με το πάγιο έξοδο :name. Για να καταργήσετε τη σύνδεση, καταργήστε την επιλογή στο κουτάκι. Χρησιμοποιήστε κανόνες για να το συνδέσετε με ένα άλλο πάγιο έξοδο.', + 'transaction_stored_link' => 'Η συναλλαγή #{ID} ("{title}") έχει αποθηκευτεί.', + 'transaction_new_stored_link' => 'Η συναλλαγή #{ID} έχει αποθηκευτεί.', + 'transaction_updated_link' => 'Η συναλλαγή #{ID} ("{title}") έχει ενημερωθεί.', + 'transaction_updated_no_changes' => 'Η συναλλαγή #{ID} ("{title}") παρέμεινε χωρίς καμία αλλαγή.', + 'first_split_decides' => 'Ο πρώτος διαχωρισμός καθορίζει την τιμή αυτού του πεδίου', + 'first_split_overrules_source' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προέλευσης', + 'first_split_overrules_destination' => 'Ο πρώτος διαχωρισμός ενδέχεται να παρακάμψει τον λογαριασμό προορισμού', + 'spent_x_of_y' => 'Δαπανήθηκαν {amount} από {total}', // new user: - 'welcome' => 'Καλωσήρθατε στο Firefly III!', - 'submit' => 'Υποβολή', - 'submission' => 'Υποβολή', - 'submit_yes_really' => 'Υποβολή (ξέρω τι κάνω)', - 'getting_started' => 'Ξεκινώντας', - 'to_get_started' => 'Είναι ευτυχής μια ακόμη επιτυχημένη εγκατάσταση του Firefly III. Για να ξεκινήσετε με αυτό το εργαλείο, εισαγάγετε το όνομα της τράπεζάς σας και το υπόλοιπο του κύριου τραπεζικού λογαριασμού. Μην ανησυχείτε αν έχετε πολλούς λογαριασμούς. Μπορείτε να τα προσθέσετε αργότερα. Απλά είναι το πρώτο αναγκαίο για να ξεκινήσει η χρήση του Firefly III.', - 'savings_balance_text' => 'Το Firefly III θα δημιουργήσει αυτόματα ένα λογαριασμό αποταμίευσης (ταμιευτήριο) για εσάς. Από προεπιλογή δε θα έχει χρήματα σε αυτό το λογαριασμό, εκτός και αν δώσετε το τρέχον υπόλοιπο στο Firefly III για καταχώρηση.', - 'finish_up_new_user' => 'Αυτό είναι! Μπορείτε να συνεχίσετε πατώντας το κουμπί Υποβολή. Θα μεταφερθείτε στο ευρετήριο του Firefly III.', - 'stored_new_accounts_new_user' => 'Ναι! Οι νέοι λογαριασμοί σας έχουν αποθηκευτεί.', - 'set_preferred_language' => 'Εάν προτιμάτε να χρησιμοποιήσετε το Firefly III σε άλλη γλώσσα, παρακαλούμε να το αναφέρετε εδώ.', - 'language' => 'Γλώσσα', - 'new_savings_account' => ':bank_name αποταμιευτικός λογαριασμός', - 'cash_wallet' => 'Πορτοφόλι μετρητών', - 'currency_not_present' => 'Αν δεν περιλαμβάνεται το νόμισμα που χρησιμοποιείτε, μην ανησυχείτε. Μπορείτε να δημιουργήσετε δικά σας νομίσματα στο Επιλογές > Νομίσματα.', + 'welcome' => 'Καλωσήρθατε στο Firefly III!', + 'submit' => 'Υποβολή', + 'submission' => 'Υποβολή', + 'submit_yes_really' => 'Υποβολή (ξέρω τι κάνω)', + 'getting_started' => 'Ξεκινώντας', + 'to_get_started' => 'Είναι ευτυχής μια ακόμη επιτυχημένη εγκατάσταση του Firefly III. Για να ξεκινήσετε με αυτό το εργαλείο, εισαγάγετε το όνομα της τράπεζάς σας και το υπόλοιπο του κύριου τραπεζικού λογαριασμού. Μην ανησυχείτε αν έχετε πολλούς λογαριασμούς. Μπορείτε να τα προσθέσετε αργότερα. Απλά είναι το πρώτο αναγκαίο για να ξεκινήσει η χρήση του Firefly III.', + 'savings_balance_text' => 'Το Firefly III θα δημιουργήσει αυτόματα ένα λογαριασμό αποταμίευσης (ταμιευτήριο) για εσάς. Από προεπιλογή δε θα έχει χρήματα σε αυτό το λογαριασμό, εκτός και αν δώσετε το τρέχον υπόλοιπο στο Firefly III για καταχώρηση.', + 'finish_up_new_user' => 'Αυτό είναι! Μπορείτε να συνεχίσετε πατώντας το κουμπί Υποβολή. Θα μεταφερθείτε στο ευρετήριο του Firefly III.', + 'stored_new_accounts_new_user' => 'Ναι! Οι νέοι λογαριασμοί σας έχουν αποθηκευτεί.', + 'set_preferred_language' => 'Εάν προτιμάτε να χρησιμοποιήσετε το Firefly III σε άλλη γλώσσα, παρακαλούμε να το αναφέρετε εδώ.', + 'language' => 'Γλώσσα', + 'new_savings_account' => ':bank_name αποταμιευτικός λογαριασμός', + 'cash_wallet' => 'Πορτοφόλι μετρητών', + 'currency_not_present' => 'Αν δεν περιλαμβάνεται το νόμισμα που χρησιμοποιείτε, μην ανησυχείτε. Μπορείτε να δημιουργήσετε δικά σας νομίσματα στο Επιλογές > Νομίσματα.', // home page: - 'transaction_table_description' => 'Ένας πίνακας με τις συναλλαγές σας', - 'opposing_account' => 'Έναντι λογαριασμός', - 'yourAccounts' => 'Οι λογαριασμοί σας', - 'your_accounts' => 'Επισκόπηση λογαριασμού', - 'category_overview' => 'Επισκόπηση κατηγορίας', - 'expense_overview' => 'Επισκόπηση λογαριασμού δαπανών', - 'revenue_overview' => 'Επισκόπηση λογαριασμού εσόδων', - 'budgetsAndSpending' => 'Προϋπολογισμοί και δαπάνες', - 'budgets_and_spending' => 'Προϋπολογισμοί και δαπάνες', - 'go_to_budget' => 'Πηγαίνετε στον προϋπολογισμό "{budget}"', - 'go_to_deposits' => 'Πηγαίνετε στις καταθέσεις', - 'go_to_expenses' => 'Πηγαίνετε στις δαπάνες', - 'savings' => 'Αποταμιεύσεις', - 'newWithdrawal' => 'Νέα δαπάνη', - 'newDeposit' => 'Νέα κατάθεση', - 'newTransfer' => 'Νέα μεταφορά', - 'bills_to_pay' => 'Πάγια έξοδα προς πληρωμή', - 'per_day' => 'Ανά ημέρα', - 'left_to_spend_per_day' => 'Διαθέσιμα προϋπολογισμών ανά ημέρα', - 'bills_paid' => 'Πληρωμένα πάγια έξοδα', - 'custom_period' => 'Προσαρμοσμένη περίοδος', - 'reset_to_current' => 'Επαναφορά στην τρέχουσα περίοδο', - 'select_period' => 'Επιλέξτε περίοδο', + 'transaction_table_description' => 'Ένας πίνακας με τις συναλλαγές σας', + 'opposing_account' => 'Έναντι λογαριασμός', + 'yourAccounts' => 'Οι λογαριασμοί σας', + 'your_accounts' => 'Επισκόπηση λογαριασμού', + 'category_overview' => 'Επισκόπηση κατηγορίας', + 'expense_overview' => 'Επισκόπηση λογαριασμού δαπανών', + 'revenue_overview' => 'Επισκόπηση λογαριασμού εσόδων', + 'budgetsAndSpending' => 'Προϋπολογισμοί και δαπάνες', + 'budgets_and_spending' => 'Προϋπολογισμοί και δαπάνες', + 'go_to_budget' => 'Πηγαίνετε στον προϋπολογισμό "{budget}"', + 'go_to_deposits' => 'Πηγαίνετε στις καταθέσεις', + 'go_to_expenses' => 'Πηγαίνετε στις δαπάνες', + 'savings' => 'Αποταμιεύσεις', + 'newWithdrawal' => 'Νέα δαπάνη', + 'newDeposit' => 'Νέα κατάθεση', + 'newTransfer' => 'Νέα μεταφορά', + 'bills_to_pay' => 'Πάγια έξοδα προς πληρωμή', + 'per_day' => 'Ανά ημέρα', + 'left_to_spend_per_day' => 'Διαθέσιμα προϋπολογισμών ανά ημέρα', + 'bills_paid' => 'Πληρωμένα πάγια έξοδα', + 'custom_period' => 'Προσαρμοσμένη περίοδος', + 'reset_to_current' => 'Επαναφορά στην τρέχουσα περίοδο', + 'select_period' => 'Επιλέξτε περίοδο', // menu and titles, should be recycled as often as possible: - 'currency' => 'Νόμισμα', - 'preferences' => 'Προτιμήσεις', - 'logout' => 'Αποσύνδεση', - 'logout_other_sessions' => 'Αποσυνδέσετε όλες τις άλλες συνεδρίες', - 'toggleNavigation' => 'Εναλλαγή περιήγησης', - 'searchPlaceholder' => 'Αναζήτηση...', - 'version' => 'Έκδοση', - 'dashboard' => 'Επισκόπηση', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Διαθέσιμος προϋπολογισμός ({currency})', - 'currencies' => 'Νομίσματα', - 'activity' => 'Δραστηριότητα', - 'usage' => 'Χρήση', - 'accounts' => 'Λογαριασμοί', - 'Asset account' => 'Λογαριασμός κεφαλαίου', - 'Default account' => 'Λογαριασμός κεφαλαίου', - 'Expense account' => 'Λογαριασμός δαπανών', - 'Revenue account' => 'Λογαριασμός εσόδων', - 'Initial balance account' => 'Αρχικό υπόλοιπο λογαριασμού', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Χρέος', - 'account_type_Loan' => 'Δάνειο', - 'account_type_Mortgage' => 'Υποθήκη', - 'account_type_debt' => 'Χρέος', - 'account_type_loan' => 'Δάνειο', - 'account_type_mortgage' => 'Υποθήκη', - 'account_type_Credit card' => 'Πιστωτική κάρτα', - 'credit_card_type_monthlyFull' => 'Εξόφληση κάθε μήνα', - 'liability_direction_credit' => 'Μου οφείλουν αυτό το χρέος σε μένα', - 'liability_direction_debit' => 'Οφείλω αυτό το χρέος σε κάποιον άλλο', - 'liability_direction_credit_short' => 'Μου οφείλουν αυτό το χρέος', - 'liability_direction_debit_short' => 'Οφείλω αυτό το χρέος', - 'liability_direction__short' => 'Άγνωστο', - 'liability_direction_null_short' => 'Άγνωστο', - 'Liability credit' => 'Πίστωση υποχρέωσης', - 'budgets' => 'Προϋπολογισμοί', - 'tags' => 'Ετικέτες', - 'reports' => 'Αναφορές', - 'transactions' => 'Συναλλαγές', - 'expenses' => 'Δαπάνες', - 'income' => 'Έσοδα', - 'transfers' => 'Μεταφορές', - 'moneyManagement' => 'Διαχείριση χρημάτων', - 'money_management' => 'Διαχείριση χρημάτων', - 'tools' => 'Εργαλεία', - 'piggyBanks' => 'Κουμπαράδες', - 'piggy_banks' => 'Κουμπαράδες', - 'amount_x_of_y' => '{current} από {total}', - 'bills' => 'Πάγια έξοδα', - 'withdrawal' => 'Ανάληψη', - 'opening_balance' => 'Υπόλοιπο έναρξης', - 'deposit' => 'Κατάθεση', - 'account' => 'Λογαριασμός', - 'transfer' => 'Μεταφορά', - 'Withdrawal' => 'Ανάληψη', - 'Deposit' => 'Κατάθεση', - 'Transfer' => 'Μεταφορά', - 'bill' => 'Πάγιο έξοδο', - 'yes' => 'Ναι', - 'no' => 'Όχι', - 'amount' => 'Ποσό', - 'overview' => 'Επισκόπηση', - 'saveOnAccount' => 'Εντός του λογαριασμού', - 'unknown' => 'Άγνωστο', - 'monthly' => 'Μηνιαίως', - 'profile' => 'Προφίλ', - 'errors' => 'Σφάλματα', - 'debt_start_date' => 'Ημερομηνία έναρξης χρέους', - 'debt_start_amount' => 'Αρχικό ποσό χρέους', - 'debt_start_amount_help' => 'Είναι πάντα καλύτερα να ορίζετε σε αυτήν την τιμή ένα αρνητικό ποσό. Διαβάστε τις σελίδες βοήθειας (εικονίδιο (?) επάνω δεξιά) για περισσότερες πληροφορίες.', - 'interest_period_help' => 'Αυτό το πεδίο είναι διακοσμητικό και δεν θα υπολογιστεί για εσάς. Όπως φαίνεται, οι τράπεζες είναι αρκετά πονηρές οπότε το Firefly III δεν το βρίσκει ποτέ σωστά.', - 'store_new_liabilities_account' => 'Αποθήκευση νέας υποχρέωσης', - 'edit_liabilities_account' => 'Επεξεργασία υποχρέωσης ":name"', - 'financial_control' => 'Οικονομικός έλεγχος', - 'accounting' => 'Λογιστική', - 'automation' => 'Αυτοματοποίηση', - 'others' => 'Λοιπά', - 'classification' => 'Ταξινόμηση', - 'store_transaction' => 'Αποθήκευση συναλλαγής', + 'currency' => 'Νόμισμα', + 'preferences' => 'Προτιμήσεις', + 'logout' => 'Αποσύνδεση', + 'logout_other_sessions' => 'Αποσυνδέσετε όλες τις άλλες συνεδρίες', + 'toggleNavigation' => 'Εναλλαγή περιήγησης', + 'searchPlaceholder' => 'Αναζήτηση...', + 'version' => 'Έκδοση', + 'dashboard' => 'Επισκόπηση', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Διαθέσιμος προϋπολογισμός ({currency})', + 'currencies' => 'Νομίσματα', + 'activity' => 'Δραστηριότητα', + 'usage' => 'Χρήση', + 'accounts' => 'Λογαριασμοί', + 'Asset account' => 'Λογαριασμός κεφαλαίου', + 'Default account' => 'Λογαριασμός κεφαλαίου', + 'Expense account' => 'Λογαριασμός δαπανών', + 'Revenue account' => 'Λογαριασμός εσόδων', + 'Initial balance account' => 'Αρχικό υπόλοιπο λογαριασμού', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Χρέος', + 'account_type_Loan' => 'Δάνειο', + 'account_type_Mortgage' => 'Υποθήκη', + 'account_type_debt' => 'Χρέος', + 'account_type_loan' => 'Δάνειο', + 'account_type_mortgage' => 'Υποθήκη', + 'account_type_Credit card' => 'Πιστωτική κάρτα', + 'credit_card_type_monthlyFull' => 'Εξόφληση κάθε μήνα', + 'liability_direction_credit' => 'Μου οφείλουν αυτό το χρέος σε μένα', + 'liability_direction_debit' => 'Οφείλω αυτό το χρέος σε κάποιον άλλο', + 'liability_direction_credit_short' => 'Μου οφείλουν αυτό το χρέος', + 'liability_direction_debit_short' => 'Οφείλω αυτό το χρέος', + 'liability_direction__short' => 'Άγνωστο', + 'liability_direction_null_short' => 'Άγνωστο', + 'Liability credit' => 'Πίστωση υποχρέωσης', + 'budgets' => 'Προϋπολογισμοί', + 'tags' => 'Ετικέτες', + 'reports' => 'Αναφορές', + 'transactions' => 'Συναλλαγές', + 'expenses' => 'Δαπάνες', + 'income' => 'Έσοδα', + 'transfers' => 'Μεταφορές', + 'moneyManagement' => 'Διαχείριση χρημάτων', + 'money_management' => 'Διαχείριση χρημάτων', + 'tools' => 'Εργαλεία', + 'piggyBanks' => 'Κουμπαράδες', + 'piggy_banks' => 'Κουμπαράδες', + 'amount_x_of_y' => '{current} από {total}', + 'bills' => 'Πάγια έξοδα', + 'withdrawal' => 'Ανάληψη', + 'opening_balance' => 'Υπόλοιπο έναρξης', + 'deposit' => 'Κατάθεση', + 'account' => 'Λογαριασμός', + 'transfer' => 'Μεταφορά', + 'Withdrawal' => 'Ανάληψη', + 'Deposit' => 'Κατάθεση', + 'Transfer' => 'Μεταφορά', + 'bill' => 'Πάγιο έξοδο', + 'yes' => 'Ναι', + 'no' => 'Όχι', + 'amount' => 'Ποσό', + 'overview' => 'Επισκόπηση', + 'saveOnAccount' => 'Εντός του λογαριασμού', + 'unknown' => 'Άγνωστο', + 'monthly' => 'Μηνιαίως', + 'profile' => 'Προφίλ', + 'errors' => 'Σφάλματα', + 'debt_start_date' => 'Ημερομηνία έναρξης χρέους', + 'debt_start_amount' => 'Αρχικό ποσό χρέους', + 'debt_start_amount_help' => 'Είναι πάντα καλύτερα να ορίζετε σε αυτήν την τιμή ένα αρνητικό ποσό. Διαβάστε τις σελίδες βοήθειας (εικονίδιο (?) επάνω δεξιά) για περισσότερες πληροφορίες.', + 'interest_period_help' => 'Αυτό το πεδίο είναι διακοσμητικό και δεν θα υπολογιστεί για εσάς. Όπως φαίνεται, οι τράπεζες είναι αρκετά πονηρές οπότε το Firefly III δεν το βρίσκει ποτέ σωστά.', + 'store_new_liabilities_account' => 'Αποθήκευση νέας υποχρέωσης', + 'edit_liabilities_account' => 'Επεξεργασία υποχρέωσης ":name"', + 'financial_control' => 'Οικονομικός έλεγχος', + 'accounting' => 'Λογιστική', + 'automation' => 'Αυτοματοποίηση', + 'others' => 'Λοιπά', + 'classification' => 'Ταξινόμηση', + 'store_transaction' => 'Αποθήκευση συναλλαγής', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Προεπιλεγμένη οικονομική αναφορά μεταξύ :start και :end', - 'report_audit' => 'Επισκόπηση ιστορικού συναλλαγών μεταξύ :start και :end', - 'report_category' => 'Αναφορά κατηγορίας μεταξύ :start και :end', - 'report_double' => 'Έκθεση λογαριασμών δαπανών/εσόδων μεταξύ :start και :end', - 'report_budget' => 'Αναφορά προϋπολογισμού μεταξύ :start και :end', - 'report_tag' => 'Αναφορά ετικετών μεταξύ :start και :end', - 'quick_link_reports' => 'Άμεσοι σύνδεσμοι', - 'quick_link_examples' => 'Αυτά είναι μερικά παραδείγματα συνδέσμων για να ξεκινήσετε. Δείτε τις σελίδες βοήθειας στο κουμπί (?) για πληροφορίες σχετικά με όλες τις αναφορές και τις μαγικές λέξεις που μπορείτε να χρησιμοποιήσετε.', - 'quick_link_default_report' => 'Προεπιλεγμένη οικονομική αναφορά', - 'quick_link_audit_report' => 'Επισκόπηση ιστορικού συναλλαγών', - 'report_this_month_quick' => 'Αυτός ο μήνας, όλοι οι λογαριασμοί', - 'report_last_month_quick' => 'Προηγούμενος μήνας, όλοι οι λογαριασμοί', - 'report_this_year_quick' => 'Αυτό το έτος, όλοι οι λογαριασμοί', - 'report_this_fiscal_year_quick' => 'Τρέχων οικονομικό έτος, όλοι οι λογαριασμοί', - 'report_all_time_quick' => 'Για όλο το διάστημα, όλοι οι λογαριασμοί', - 'reports_can_bookmark' => 'Θυμηθείτε ότι οι αναφορές μπορούν να καταχωρηθούν σε σελιδοδείκτες.', - 'incomeVsExpenses' => 'Έσοδα έναντι δαπανών', - 'accountBalances' => 'Υπόλοιπα λογαριασμών', - 'balanceStart' => 'Υπόλοιπο έναρξης περιόδου', - 'balanceEnd' => 'Υπόλοιπο λήξης περιόδου', - 'splitByAccount' => 'Διαχωρισμός ανά λογαριασμό', - 'coveredWithTags' => 'Καλύπτεται με ετικέτες', - 'leftInBudget' => 'Απομένουν στον προϋπολογισμό', - 'left_in_debt' => 'Οφειλόμενο ποσό', - 'sumOfSums' => 'Σύνολο υποσυνόλων', - 'noCategory' => '(χωρίς κατηγορία)', - 'notCharged' => 'Χωρίς χρέωση (ακόμα)', - 'inactive' => 'Ανενεργό', - 'active' => 'Ενεργό', - 'difference' => 'Διαφορά', - 'money_flowing_in' => 'Εισροές', - 'money_flowing_out' => 'Εκροές', - 'topX' => 'τα πρώτα :number', - 'show_full_list' => 'Εμφάνιση ολόκληρης της λίστας', - 'show_only_top' => 'Εμφάνισε μόνο τα πρώτα :number', - 'report_type' => 'Τύπος Αναφοράς', - 'report_type_default' => 'Προκαθορισμένη οικονομική αναφορά', - 'report_type_audit' => 'Επισκόπηση ιστορικού συναλλαγών (έλεγχος)', - 'report_type_category' => 'Αναφορά κατηγοριών', - 'report_type_budget' => 'Αναφορά προϋπολογισμών', - 'report_type_tag' => 'Αναφορά ετικετών', - 'report_type_double' => 'Έκθεση λογαριασμών δαπανών/εσόδων', - 'more_info_help' => 'Περισσότερες πληροφορίες σχετικά με αυτούς τους τύπους αναφορών μπορούν να βρεθούν στις σελίδες βοήθειας. Πατήστε το εικονίδιο (?) στην επάνω δεξιά γωνία.', - 'report_included_accounts' => 'Συμπεριλαμβανόμενοι λογαριασμοί', - 'report_date_range' => 'Χρονικό διάστημα', - 'report_preset_ranges' => 'Καθορισμένο διάστημα', - 'shared' => 'Κοινοί', - 'fiscal_year' => 'Οικονομικό έτος', - 'income_entry' => 'Έσοδα από λογαριασμό ":name" μεταξύ :start και :end', - 'expense_entry' => 'Δαπάνες στο λογαριασμό ":name" μεταξύ :start και :end', - 'category_entry' => 'Δαπάνες και έσοδα στην κατηγορία ":name" μεταξύ :start και :end', - 'budget_spent_amount' => 'Δαπάνες του προϋπολογισμού ":budget" μεταξύ :start και :end', - 'balance_amount' => 'Δαπάνες του προϋπολογισμού ":budget" που θα πληρωθούν από το λογαριασμό ":account" μεταξύ :start και :end', - 'no_audit_activity' => 'Καμία δραστηριότητα δεν καταγράφηκε στο λογαριασμό :account_name μεταξύ :start και :end.', - 'audit_end_balance' => 'Το υπόλοιπο του λογαριασμού :account_name στο τέλος του :end ήταν :balance', - 'reports_extra_options' => 'Επιπλέον επιλογές', - 'report_has_no_extra_options' => 'Αυτή η αναφορά δεν έχει επιπλέον επιλογές', - 'reports_submit' => 'Προβολή αναφοράς', - 'end_after_start_date' => 'Η ημερομηνία λήξης της αναφοράς πρέπει να είναι μεταγενέστερη της ημερομηνίας έναρξης.', - 'select_category' => 'Επιλογή κατηγοριών', - 'select_budget' => 'Επιλογή προϋπολογισμών', - 'select_tag' => 'Επιλογή ετικετών', - 'income_per_category' => 'Έσοδα ανά κατηγορία', - 'expense_per_category' => 'Δαπάνη ανά κατηγορία', - 'expense_per_budget' => 'Δαπάνη ανά προϋπολογισμό', - 'income_per_account' => 'Έσοδα ανά λογαριασμό', - 'expense_per_account' => 'Δαπάνη ανά λογαριασμό', - 'expense_per_tag' => 'Δαπάνη ανά ετικέτα', - 'income_per_tag' => 'Έσοδα ανά ετικέτα', - 'include_expense_not_in_budget' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στον επιλεγμένο προϋπολογισμό(ους)', - 'include_expense_not_in_account' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στον επιλεγμένο λογαριασμό(ους)', - 'include_expense_not_in_category' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στην επιλεγμένη κατηγορία(ες)', - 'include_income_not_in_category' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στην επιλεγμένη κατηγορία(ες)', - 'include_income_not_in_account' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στον επιλεγμένο λογαριασμό(ους)', - 'include_income_not_in_tags' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στην επιλεγμένη ετικέτα(ες)', - 'include_expense_not_in_tags' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στην επιλεγμένη ετικέτα(ες)', - 'everything_else' => 'Οτιδήποτε άλλο', - 'income_and_expenses' => 'Έσοδα και δαπάνες', - 'spent_average' => 'Δαπάνες (μέσος όρος)', - 'income_average' => 'Έσοδα (μέσος όρος)', - 'transaction_count' => 'Καταμέτρηση συναλλαγών', - 'average_spending_per_account' => 'Μέσες δαπάνες ανά λογαριασμό', - 'average_income_per_account' => 'Μέσος όρος εσόδων ανά λογαριασμό', - 'total' => 'Σύνολο', - 'description' => 'Περιγραφή', - 'sum_of_period' => 'Σύνολο περιόδου', - 'average_in_period' => 'Μέσος όρος περιόδου', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Βασικός λογαριασμός κεφαλαίου', - 'account_role_sharedAsset' => 'Κοινός λογαριασμός κεφαλαίου', - 'account_role_savingAsset' => 'Λογαριασμός αποταμίευσης', - 'account_role_ccAsset' => 'Πιστωτική κάρτα', - 'account_role_cashWalletAsset' => 'Πορτοφόλι μετρητών', - 'budget_chart_click' => 'Κάντε κλικ σε ένα όνομα προϋπολογισμού στον παραπάνω πίνακα για να δείτε ένα διάγραμμα.', - 'category_chart_click' => 'Κάντε κλικ σε ένα όνομα κατηγορίας στον παραπάνω πίνακα για να δείτε ένα διάγραμμα.', - 'in_out_accounts' => 'Κέρδη και δαπάνες ανά συνδυασμό', - 'in_out_accounts_per_asset' => 'Κέρδη και δαπάνες (ανά λογαριασμό κεφαλαίου)', - 'in_out_per_category' => 'Κέρδη και δαπάνες ανά κατηγορία', - 'out_per_budget' => 'Δαπάνες ανά προϋπολογισμό', - 'select_expense_revenue' => 'Επιλέξτε λογαριασμό δαπανών/εσόδων', - 'multi_currency_report_sum' => 'Επειδή αυτή η λίστα περιέχει λογαριασμούς με πολλαπλά νομίσματα, το σύνολο(α) που βλέπετε μπορεί να μην έχει νόημα. Η αναφορά θα επιστρέφει πάντα στο προεπιλεγμένο σας νόμισμα.', - 'sum_in_default_currency' => 'Το σύνολο θα είναι πάντοτε στο προεπιλεγμένο σας νόμισμα.', - 'net_filtered_prefs' => 'Αυτό το διάγραμμα δε θα περιλαμβάνει ποτέ λογαριασμούς που δεν έχουν τσεκαρισμένη την επιλογή "Συμπεριλαμβάνεται στην καθαρή αξία".', + 'report_default' => 'Προεπιλεγμένη οικονομική αναφορά μεταξύ :start και :end', + 'report_audit' => 'Επισκόπηση ιστορικού συναλλαγών μεταξύ :start και :end', + 'report_category' => 'Αναφορά κατηγορίας μεταξύ :start και :end', + 'report_double' => 'Έκθεση λογαριασμών δαπανών/εσόδων μεταξύ :start και :end', + 'report_budget' => 'Αναφορά προϋπολογισμού μεταξύ :start και :end', + 'report_tag' => 'Αναφορά ετικετών μεταξύ :start και :end', + 'quick_link_reports' => 'Άμεσοι σύνδεσμοι', + 'quick_link_examples' => 'Αυτά είναι μερικά παραδείγματα συνδέσμων για να ξεκινήσετε. Δείτε τις σελίδες βοήθειας στο κουμπί (?) για πληροφορίες σχετικά με όλες τις αναφορές και τις μαγικές λέξεις που μπορείτε να χρησιμοποιήσετε.', + 'quick_link_default_report' => 'Προεπιλεγμένη οικονομική αναφορά', + 'quick_link_audit_report' => 'Επισκόπηση ιστορικού συναλλαγών', + 'report_this_month_quick' => 'Αυτός ο μήνας, όλοι οι λογαριασμοί', + 'report_last_month_quick' => 'Προηγούμενος μήνας, όλοι οι λογαριασμοί', + 'report_this_year_quick' => 'Αυτό το έτος, όλοι οι λογαριασμοί', + 'report_this_fiscal_year_quick' => 'Τρέχων οικονομικό έτος, όλοι οι λογαριασμοί', + 'report_all_time_quick' => 'Για όλο το διάστημα, όλοι οι λογαριασμοί', + 'reports_can_bookmark' => 'Θυμηθείτε ότι οι αναφορές μπορούν να καταχωρηθούν σε σελιδοδείκτες.', + 'incomeVsExpenses' => 'Έσοδα έναντι δαπανών', + 'accountBalances' => 'Υπόλοιπα λογαριασμών', + 'balanceStart' => 'Υπόλοιπο έναρξης περιόδου', + 'balanceEnd' => 'Υπόλοιπο λήξης περιόδου', + 'splitByAccount' => 'Διαχωρισμός ανά λογαριασμό', + 'coveredWithTags' => 'Καλύπτεται με ετικέτες', + 'leftInBudget' => 'Απομένουν στον προϋπολογισμό', + 'left_in_debt' => 'Οφειλόμενο ποσό', + 'sumOfSums' => 'Σύνολο υποσυνόλων', + 'noCategory' => '(χωρίς κατηγορία)', + 'notCharged' => 'Χωρίς χρέωση (ακόμα)', + 'inactive' => 'Ανενεργό', + 'active' => 'Ενεργό', + 'difference' => 'Διαφορά', + 'money_flowing_in' => 'Εισροές', + 'money_flowing_out' => 'Εκροές', + 'topX' => 'τα πρώτα :number', + 'show_full_list' => 'Εμφάνιση ολόκληρης της λίστας', + 'show_only_top' => 'Εμφάνισε μόνο τα πρώτα :number', + 'report_type' => 'Τύπος Αναφοράς', + 'report_type_default' => 'Προκαθορισμένη οικονομική αναφορά', + 'report_type_audit' => 'Επισκόπηση ιστορικού συναλλαγών (έλεγχος)', + 'report_type_category' => 'Αναφορά κατηγοριών', + 'report_type_budget' => 'Αναφορά προϋπολογισμών', + 'report_type_tag' => 'Αναφορά ετικετών', + 'report_type_double' => 'Έκθεση λογαριασμών δαπανών/εσόδων', + 'more_info_help' => 'Περισσότερες πληροφορίες σχετικά με αυτούς τους τύπους αναφορών μπορούν να βρεθούν στις σελίδες βοήθειας. Πατήστε το εικονίδιο (?) στην επάνω δεξιά γωνία.', + 'report_included_accounts' => 'Συμπεριλαμβανόμενοι λογαριασμοί', + 'report_date_range' => 'Χρονικό διάστημα', + 'report_preset_ranges' => 'Καθορισμένο διάστημα', + 'shared' => 'Κοινοί', + 'fiscal_year' => 'Οικονομικό έτος', + 'income_entry' => 'Έσοδα από λογαριασμό ":name" μεταξύ :start και :end', + 'expense_entry' => 'Δαπάνες στο λογαριασμό ":name" μεταξύ :start και :end', + 'category_entry' => 'Δαπάνες και έσοδα στην κατηγορία ":name" μεταξύ :start και :end', + 'budget_spent_amount' => 'Δαπάνες του προϋπολογισμού ":budget" μεταξύ :start και :end', + 'balance_amount' => 'Δαπάνες του προϋπολογισμού ":budget" που θα πληρωθούν από το λογαριασμό ":account" μεταξύ :start και :end', + 'no_audit_activity' => 'Καμία δραστηριότητα δεν καταγράφηκε στο λογαριασμό :account_name μεταξύ :start και :end.', + 'audit_end_balance' => 'Το υπόλοιπο του λογαριασμού :account_name στο τέλος του :end ήταν :balance', + 'reports_extra_options' => 'Επιπλέον επιλογές', + 'report_has_no_extra_options' => 'Αυτή η αναφορά δεν έχει επιπλέον επιλογές', + 'reports_submit' => 'Προβολή αναφοράς', + 'end_after_start_date' => 'Η ημερομηνία λήξης της αναφοράς πρέπει να είναι μεταγενέστερη της ημερομηνίας έναρξης.', + 'select_category' => 'Επιλογή κατηγοριών', + 'select_budget' => 'Επιλογή προϋπολογισμών', + 'select_tag' => 'Επιλογή ετικετών', + 'income_per_category' => 'Έσοδα ανά κατηγορία', + 'expense_per_category' => 'Δαπάνη ανά κατηγορία', + 'expense_per_budget' => 'Δαπάνη ανά προϋπολογισμό', + 'income_per_account' => 'Έσοδα ανά λογαριασμό', + 'expense_per_account' => 'Δαπάνη ανά λογαριασμό', + 'expense_per_tag' => 'Δαπάνη ανά ετικέτα', + 'income_per_tag' => 'Έσοδα ανά ετικέτα', + 'include_expense_not_in_budget' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στον επιλεγμένο προϋπολογισμό(ους)', + 'include_expense_not_in_account' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στον επιλεγμένο λογαριασμό(ους)', + 'include_expense_not_in_category' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στην επιλεγμένη κατηγορία(ες)', + 'include_income_not_in_category' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στην επιλεγμένη κατηγορία(ες)', + 'include_income_not_in_account' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στον επιλεγμένο λογαριασμό(ους)', + 'include_income_not_in_tags' => 'Τα συμπεριλαμβανόμενα έσοδα δεν είναι στην επιλεγμένη ετικέτα(ες)', + 'include_expense_not_in_tags' => 'Οι συμπεριλαμβανόμενες δαπάνες δεν περιλαμβάνονται στην επιλεγμένη ετικέτα(ες)', + 'everything_else' => 'Οτιδήποτε άλλο', + 'income_and_expenses' => 'Έσοδα και δαπάνες', + 'spent_average' => 'Δαπάνες (μέσος όρος)', + 'income_average' => 'Έσοδα (μέσος όρος)', + 'transaction_count' => 'Καταμέτρηση συναλλαγών', + 'average_spending_per_account' => 'Μέσες δαπάνες ανά λογαριασμό', + 'average_income_per_account' => 'Μέσος όρος εσόδων ανά λογαριασμό', + 'total' => 'Σύνολο', + 'description' => 'Περιγραφή', + 'sum_of_period' => 'Σύνολο περιόδου', + 'average_in_period' => 'Μέσος όρος περιόδου', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Βασικός λογαριασμός κεφαλαίου', + 'account_role_sharedAsset' => 'Κοινός λογαριασμός κεφαλαίου', + 'account_role_savingAsset' => 'Λογαριασμός αποταμίευσης', + 'account_role_ccAsset' => 'Πιστωτική κάρτα', + 'account_role_cashWalletAsset' => 'Πορτοφόλι μετρητών', + 'budget_chart_click' => 'Κάντε κλικ σε ένα όνομα προϋπολογισμού στον παραπάνω πίνακα για να δείτε ένα διάγραμμα.', + 'category_chart_click' => 'Κάντε κλικ σε ένα όνομα κατηγορίας στον παραπάνω πίνακα για να δείτε ένα διάγραμμα.', + 'in_out_accounts' => 'Κέρδη και δαπάνες ανά συνδυασμό', + 'in_out_accounts_per_asset' => 'Κέρδη και δαπάνες (ανά λογαριασμό κεφαλαίου)', + 'in_out_per_category' => 'Κέρδη και δαπάνες ανά κατηγορία', + 'out_per_budget' => 'Δαπάνες ανά προϋπολογισμό', + 'select_expense_revenue' => 'Επιλέξτε λογαριασμό δαπανών/εσόδων', + 'multi_currency_report_sum' => 'Επειδή αυτή η λίστα περιέχει λογαριασμούς με πολλαπλά νομίσματα, το σύνολο(α) που βλέπετε μπορεί να μην έχει νόημα. Η αναφορά θα επιστρέφει πάντα στο προεπιλεγμένο σας νόμισμα.', + 'sum_in_default_currency' => 'Το σύνολο θα είναι πάντοτε στο προεπιλεγμένο σας νόμισμα.', + 'net_filtered_prefs' => 'Αυτό το διάγραμμα δε θα περιλαμβάνει ποτέ λογαριασμούς που δεν έχουν τσεκαρισμένη την επιλογή "Συμπεριλαμβάνεται στην καθαρή αξία".', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Διάγραμμα', - 'month' => 'Μήνας', - 'budget' => 'Προϋπολογισμός', - 'spent' => 'Δαπανήθηκαν', - 'spent_capped' => 'Δαπανήθηκαν (με όριο)', - 'spent_in_budget' => 'Δαπάνες ανά προϋπολογισμό', - 'left_to_spend' => 'Διαθέσιμα προϋπολογισμών', - 'earned' => 'Κερδήθηκαν', - 'overspent' => 'Υπέρβαση προϋπολογισμών', - 'left' => 'Απομένουν', - 'max-amount' => 'Μέγιστο ποσό', - 'min-amount' => 'Ελάχιστο ποσό', - 'journal-amount' => 'Καταχώρηση τρέχοντος πάγιου έξοδου', - 'name' => 'Όνομα', - 'date' => 'Ημερομηνία', - 'date_and_time' => 'Ημερομηνία και ώρα', - 'time' => 'Ώρα', - 'paid' => 'Πληρωμένο', - 'unpaid' => 'Απλήρωτο', - 'day' => 'Ημέρα', - 'budgeted' => 'Προϋπολογισμένο', - 'period' => 'Περίοδος', - 'balance' => 'Ισοζύγιο', - 'in_out_period' => 'In + out this period', - 'sum' => 'Σύνολο', - 'summary' => 'Σύνοψη', - 'average' => 'Μέσος όρος', - 'balanceFor' => 'Υπόλοιπο για :name', - 'no_tags' => '(χωρίς ετικέτες)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Διάγραμμα', + 'month' => 'Μήνας', + 'budget' => 'Προϋπολογισμός', + 'spent' => 'Δαπανήθηκαν', + 'spent_capped' => 'Δαπανήθηκαν (με όριο)', + 'spent_in_budget' => 'Δαπάνες ανά προϋπολογισμό', + 'left_to_spend' => 'Διαθέσιμα προϋπολογισμών', + 'earned' => 'Κερδήθηκαν', + 'overspent' => 'Υπέρβαση προϋπολογισμών', + 'left' => 'Απομένουν', + 'max-amount' => 'Μέγιστο ποσό', + 'min-amount' => 'Ελάχιστο ποσό', + 'journal-amount' => 'Καταχώρηση τρέχοντος πάγιου έξοδου', + 'name' => 'Όνομα', + 'date' => 'Ημερομηνία', + 'date_and_time' => 'Ημερομηνία και ώρα', + 'time' => 'Ώρα', + 'paid' => 'Πληρωμένο', + 'unpaid' => 'Απλήρωτο', + 'day' => 'Ημέρα', + 'budgeted' => 'Προϋπολογισμένο', + 'period' => 'Περίοδος', + 'balance' => 'Ισοζύγιο', + 'in_out_period' => 'In + out this period', + 'sum' => 'Σύνολο', + 'summary' => 'Σύνοψη', + 'average' => 'Μέσος όρος', + 'balanceFor' => 'Υπόλοιπο για :name', + 'no_tags' => '(χωρίς ετικέτες)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"', - 'piggy_bank' => 'Κουμπαράς', - 'new_piggy_bank' => 'Νέος κουμπαράς', - 'store_piggy_bank' => 'Αποθήκευση νέου κουμπαρά', - 'stored_piggy_bank' => 'Αποθήκευση του νέου κουμπαρά ":name"', - 'account_status' => 'Κατάσταση λογαριασμού', - 'left_for_piggy_banks' => 'Διαθέσιμα προς δέσμευση', - 'sum_of_piggy_banks' => 'Σύνολο κουμπαράδων', - 'saved_so_far' => 'Δεσμεύτηκαν', - 'left_to_save' => 'Απομένουν για αποταμίευση', - 'suggested_amount' => 'Προτεινόμενο μηνιαίο ποσό για δέσμευση', - 'add_money_to_piggy_title' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"', - 'remove_money_from_piggy_title' => 'Αποδέσμευση χρημάτων από τον κουμπαρά ":name"', - 'add' => 'Προσθήκη', - 'no_money_for_piggy' => 'Δεν έχετε διαθέσιμα χρήματα προς δέσμευση για αυτόν τον κουμπαρά.', - 'suggested_savings_per_month' => 'Προτείνεται ανά μήνα', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"', + 'piggy_bank' => 'Κουμπαράς', + 'new_piggy_bank' => 'Νέος κουμπαράς', + 'store_piggy_bank' => 'Αποθήκευση νέου κουμπαρά', + 'stored_piggy_bank' => 'Αποθήκευση του νέου κουμπαρά ":name"', + 'account_status' => 'Κατάσταση λογαριασμού', + 'left_for_piggy_banks' => 'Διαθέσιμα προς δέσμευση', + 'sum_of_piggy_banks' => 'Σύνολο κουμπαράδων', + 'saved_so_far' => 'Δεσμεύτηκαν', + 'left_to_save' => 'Απομένουν για αποταμίευση', + 'suggested_amount' => 'Προτεινόμενο μηνιαίο ποσό για δέσμευση', + 'add_money_to_piggy_title' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"', + 'remove_money_from_piggy_title' => 'Αποδέσμευση χρημάτων από τον κουμπαρά ":name"', + 'add' => 'Προσθήκη', + 'no_money_for_piggy' => 'Δεν έχετε διαθέσιμα χρήματα προς δέσμευση για αυτόν τον κουμπαρά.', + 'suggested_savings_per_month' => 'Προτείνεται ανά μήνα', - 'remove' => 'Αφαίρεση', - 'max_amount_add' => 'Το μέγιστο ποσό που μπορείτε να δεσμεύσετε είναι', - 'max_amount_remove' => 'Το μέγιστο ποσό που μπορείτε να αποδεσμεύσετε είναι', - 'update_piggy_button' => 'Ενημέρωση κουμπαρά', - 'update_piggy_title' => 'Ενημέρωση του κουμπαρά ":name"', - 'updated_piggy_bank' => 'Ενημερώθηκε ο κουμπαράς":name"', - 'details' => 'Λεπτομέρειες', - 'events' => 'Συμβάντα', - 'target_amount' => 'Ποσό στόχου', - 'start_date' => 'Ημερομηνία έναρξης', - 'no_start_date' => 'Χωρίς ημερομηνία έναρξης', - 'target_date' => 'Ημερομηνία επίτευξης στόχου', - 'no_target_date' => 'Χωρίς ημερομηνία επίτευξης στόχου', - 'table' => 'Πίνακας', - 'delete_piggy_bank' => 'Διαγραφή του κουμπαρά ":name"', - 'cannot_add_amount_piggy' => 'Δεν ήταν δυνατή η προσθήκη :amount στο ":name".', - 'cannot_remove_from_piggy' => 'Δεν ήταν δυνατή η αποδέσμευση :amount από το ":name".', - 'deleted_piggy_bank' => 'Διαγράφηκε ο κουμπαράς ":name"', - 'added_amount_to_piggy' => 'Δεσμεύτηκαν :amount για το ":name"', - 'removed_amount_from_piggy' => 'Αποδεσμεύτηκαν :amount από το ":name"', - 'piggy_events' => 'Σχετικοί κουμπαράδες', + 'remove' => 'Αφαίρεση', + 'max_amount_add' => 'Το μέγιστο ποσό που μπορείτε να δεσμεύσετε είναι', + 'max_amount_remove' => 'Το μέγιστο ποσό που μπορείτε να αποδεσμεύσετε είναι', + 'update_piggy_button' => 'Ενημέρωση κουμπαρά', + 'update_piggy_title' => 'Ενημέρωση του κουμπαρά ":name"', + 'updated_piggy_bank' => 'Ενημερώθηκε ο κουμπαράς":name"', + 'details' => 'Λεπτομέρειες', + 'events' => 'Συμβάντα', + 'target_amount' => 'Ποσό στόχου', + 'start_date' => 'Ημερομηνία έναρξης', + 'no_start_date' => 'Χωρίς ημερομηνία έναρξης', + 'target_date' => 'Ημερομηνία επίτευξης στόχου', + 'no_target_date' => 'Χωρίς ημερομηνία επίτευξης στόχου', + 'table' => 'Πίνακας', + 'delete_piggy_bank' => 'Διαγραφή του κουμπαρά ":name"', + 'cannot_add_amount_piggy' => 'Δεν ήταν δυνατή η προσθήκη :amount στο ":name".', + 'cannot_remove_from_piggy' => 'Δεν ήταν δυνατή η αποδέσμευση :amount από το ":name".', + 'deleted_piggy_bank' => 'Διαγράφηκε ο κουμπαράς ":name"', + 'added_amount_to_piggy' => 'Δεσμεύτηκαν :amount για το ":name"', + 'removed_amount_from_piggy' => 'Αποδεσμεύτηκαν :amount από το ":name"', + 'piggy_events' => 'Σχετικοί κουμπαράδες', // tags - 'delete_tag' => 'Διαγραφή ετικέτας ":tag"', - 'deleted_tag' => 'Διαγράφηκε η ετικέτα ":tag"', - 'new_tag' => 'Δημιουργία νέας ετικέτας', - 'edit_tag' => 'Επεξεργασία ετικέτας ":tag"', - 'updated_tag' => 'Ενημερώθηκε η ετικέτα ":tag"', - 'created_tag' => 'Η ετικέτα ":tag" δημιουργήθηκε!', + 'delete_tag' => 'Διαγραφή ετικέτας ":tag"', + 'deleted_tag' => 'Διαγράφηκε η ετικέτα ":tag"', + 'new_tag' => 'Δημιουργία νέας ετικέτας', + 'edit_tag' => 'Επεξεργασία ετικέτας ":tag"', + 'updated_tag' => 'Ενημερώθηκε η ετικέτα ":tag"', + 'created_tag' => 'Η ετικέτα ":tag" δημιουργήθηκε!', - 'transaction_journal_information' => 'Πληροφορίες συναλλαγής', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Πληροφορίες μεταδεδομένων', - 'transaction_journal_more' => 'Περισσότερες πληροφορίες', - 'basic_journal_information' => 'Βασικές πληροφορίες συναλλαγής', - 'transaction_journal_extra' => 'Περισσότερες πληροφορίες', - 'att_part_of_journal' => 'Αποθηκεύτηκε στο ":journal"', - 'total_amount' => 'Συνολικό ποσό', - 'number_of_decimals' => 'Πλήθος δεκαδικών ψηφίων', + 'transaction_journal_information' => 'Πληροφορίες συναλλαγής', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Πληροφορίες μεταδεδομένων', + 'transaction_journal_more' => 'Περισσότερες πληροφορίες', + 'basic_journal_information' => 'Βασικές πληροφορίες συναλλαγής', + 'transaction_journal_extra' => 'Περισσότερες πληροφορίες', + 'att_part_of_journal' => 'Αποθηκεύτηκε στο ":journal"', + 'total_amount' => 'Συνολικό ποσό', + 'number_of_decimals' => 'Πλήθος δεκαδικών ψηφίων', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Η πρόσκληση στο ":address" έχει ήδη χρησιμοποιηθεί.', - 'invite_is_deleted' => 'Η πρόσκληση στο ":address" έχει διαγραφεί.', - 'invite_new_user_title' => 'Πρόσκληση νέου χρήστη', - 'invite_new_user_text' => 'Ως διαχειριστής, μπορείτε να προσκαλέσετε νέους χρήστες για να εγγραφούν στο Firefly III. Χρησιμοποιώντας ένα άμεσο σύνδεσμο URL που μπορείτε να μοιραστείτε μαζί τους, θα μπορούν να δημιουργήσουν ένα νέο λογαριασμό στην πλατφόρμα. Ο προσκεκλημένος χρήστης και ο σύνδεσμος για την πρόσκλησή του, θα εμφανιστούν στον παρακάτω πίνακα. Μπορείτε να του κοινοποιήσετε το σύνδεσμο της πρόσκλησης.', - 'invited_user_mail' => 'Διεύθυνση E-mail', - 'invite_user' => 'Πρόσκληση χρήστη', - 'user_is_invited' => 'Η διεύθυνση ηλεκτρονικού ταχυδρομείου ":address" έλαβε πρόσκληση για εγγραφή στο Firefly III', - 'administration' => 'Διαχείριση', - 'system_settings' => 'System settings', - 'code_already_used' => 'Ο κωδικός πρόσκλησης έχει χρησιμοποιηθεί', - 'user_administration' => 'Διαχείριση χρηστών', - 'list_all_users' => 'Όλοι οι χρήστες', - 'all_users' => 'Όλοι οι χρήστες', - 'instance_configuration' => 'Παραμετροποίηση', - 'firefly_instance_configuration' => 'Επιλογές παραμετροποίησης του Firefly III', - 'setting_single_user_mode' => 'Λειτουργία ενός μοναδικού χρήστη', - 'setting_single_user_mode_explain' => 'Λόγω προεπιλογής το Firefly III δέχεται μόνο μία (1) εγγραφή χρήστη: εσάς. Πρόκειται για ένα μέτρο ασφαλείας που εμποδίζει τους άλλους να χρησιμοποιήσουν την εγκατάστασή σας, εκτός αν τους επιτρέπετε. Οι μελλοντικές εγγραφές χρηστών αποκλείονται. Όταν καταργήσετε την επιλογή σε αυτό το κουτάκι, άλλοι χρήστες θα μπορούν να χρησιμοποιήσουν την εγκατάστασή σας ταυτόχρονα, υποθέτοντας ότι μπορούν να συνδεθούν (σε περίπτωση σύνδεσης στο διαδίκτυο).', - 'store_configuration' => 'Αποθήκευση παραμετροποίησης', - 'single_user_administration' => 'Διαχείριση χρήστη :email', - 'edit_user' => 'Επεξεργασία χρήστη :email', - 'hidden_fields_preferences' => 'Μπορείτε να ενεργοποιήσετε περισσότερες επιλογές συναλλαγών στις προτιμήσεις.', - 'user_data_information' => 'Δεδομένα χρήστη', - 'user_information' => 'Πληροφορίες χρήστη', - 'total_size' => 'συνολικό μέγεθος', - 'budget_or_budgets' => ':count προϋπολογισμός|:count προϋπολογισμοί', - 'budgets_with_limits' => ':count προϋπολογισμός με καθορισμένο ποσό|:count προϋπολογισμοί με καθορισμένο ποσό', - 'nr_of_rules_in_total_groups' => ':count_rules κανόνες σε :count_groups ομάδες κανόνων', - 'tag_or_tags' => ':count ετικέτα|:count ετικέτες', - 'configuration_updated' => 'Η παραμετροποίηση ενημερώθηκε', - 'setting_is_demo_site' => 'Ιστοσελίδα επίδειξης', - 'setting_is_demo_site_explain' => 'Εάν επιλέξετε αυτό το κουτάκι, η εγκατάσταση θα συμπεριφέρεται σαν ιστοσελίδα επίδειξης, το οποίο μπορεί να έχει παράξενες παρενέργειες.', - 'block_code_bounced' => 'Το Email επέστρεψε χωρίς να έχει παραδοθεί', - 'block_code_expired' => 'Ο λογαριασμός επίδειξης έληξε', - 'no_block_code' => 'Δεν υπάρχει λόγος για αποκλεισμό ή ο χρήστης δεν είναι αποκλεισμένος', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Ο χρήστης δεν έχει ακόμη επιβεβαιώσει τη νέα διεύθυνση ηλεκτρονικού ταχυδρομείου', - 'admin_update_email' => 'Σε αντίθεση με τη σελίδα προφίλ, ο χρήστης ΔΕΝ θα ειδοποιηθεί ότι η διεύθυνση του ηλεκτρονικού ταχυδρομείου του έχει αλλάξει!', - 'update_user' => 'Ενημέρωση χρήστη', - 'updated_user' => 'Τα δεδομένα χρήστη έχουν αλλάξει.', - 'delete_user' => 'Διαγραφή χρήστη :email', - 'user_deleted' => 'Ο χρήστης έχει διαγραφεί', - 'send_test_email' => 'Αποστολή δοκιμαστικού μηνύματος email', - 'send_test_email_text' => 'Για να δείτε εάν η εγκατάστασή σας μπορεί να στείλει email ή να δημοσιεύσει μηνύματα στο Slack, πατήστε αυτό το κουμπί. Δεν θα δείτε κάποιο σφάλμα εδώ (αν υπάρχει), όμως τυχόν σφάλματα θα τα βρείτε στα αρχεία καταγραφής (log files). Μπορείτε να πατήσετε το κουμπί αποστολής όσες φορές θέλετε. Δεν υπάρχει έλεγχος ανεπιθύμητων μηνυμάτων. Το μήνυμα θα σταλεί στο :email και θα πρέπει να φτάσει σύντομα.', - 'send_message' => 'Αποστολή μηνύματος', - 'send_test_triggered' => 'Η δοκιμή ενεργοποιήθηκε. Ελέγξτε τα εισερχόμενα μηνύματα στο Email σας και τα αρχεία καταγραφής.', - 'give_admin_careful' => 'Οι χρήστες στους οποίους έχουν δοθεί δικαιώματα διαχειριστή μπορούν να καθαιρέσουν τη δική σας πρόσβαση. Ενεργήστε με προσοχή.', - 'admin_maintanance_title' => 'Συντήρηση', - 'admin_maintanance_expl' => 'Χρήσιμες λειτουργίες για συντήρηση στο Firefly III', - 'admin_maintenance_clear_cache' => 'Εκκαθάριση cache', - 'admin_notifications' => 'Ειδοποιήσεις διαχειριστή', - 'admin_notifications_expl' => 'Οι ακόλουθες ειδοποιήσεις μπορούν να ενεργοποιηθούν ή να απενεργοποιηθούν από το διαχειριστή. Αν θέλετε να παίρνετε αυτά τα μηνύματα και από το Slack, θα πρέπει να ορίστε το "εισερχόμενο webhook" URL.', - 'admin_notification_check_user_new_reg' => 'Ο χρήστης παίρνει μήνυμα καλωσορίσματος μετά την εγγραφή', - 'admin_notification_check_admin_new_reg' => 'Ο διαχειριστής(ες) λαμβάνει ειδοποίηση εγγραφής νέου χρήστη', - 'admin_notification_check_new_version' => 'Μια νέα έκδοση είναι διαθέσιμη', - 'admin_notification_check_invite_created' => 'Ένας χρήστης θα λάβει πρόσκληση για το Firefly III', - 'admin_notification_check_invite_redeemed' => 'Μια πρόσκληση χρήστη χρησιμοποιήθηκε', - 'all_invited_users' => 'Όλοι οι προσκεκλημένοι χρήστες', - 'save_notification_settings' => 'Αποθήκευση ρυθμίσεων', - 'notification_settings_saved' => 'Οι ρυθμίσεις ειδοποιήσεων έχουν αποθηκευτεί', + 'invite_is_already_redeemed' => 'Η πρόσκληση στο ":address" έχει ήδη χρησιμοποιηθεί.', + 'invite_is_deleted' => 'Η πρόσκληση στο ":address" έχει διαγραφεί.', + 'invite_new_user_title' => 'Πρόσκληση νέου χρήστη', + 'invite_new_user_text' => 'Ως διαχειριστής, μπορείτε να προσκαλέσετε νέους χρήστες για να εγγραφούν στο Firefly III. Χρησιμοποιώντας ένα άμεσο σύνδεσμο URL που μπορείτε να μοιραστείτε μαζί τους, θα μπορούν να δημιουργήσουν ένα νέο λογαριασμό στην πλατφόρμα. Ο προσκεκλημένος χρήστης και ο σύνδεσμος για την πρόσκλησή του, θα εμφανιστούν στον παρακάτω πίνακα. Μπορείτε να του κοινοποιήσετε το σύνδεσμο της πρόσκλησης.', + 'invited_user_mail' => 'Διεύθυνση E-mail', + 'invite_user' => 'Πρόσκληση χρήστη', + 'user_is_invited' => 'Η διεύθυνση ηλεκτρονικού ταχυδρομείου ":address" έλαβε πρόσκληση για εγγραφή στο Firefly III', + 'administration' => 'Διαχείριση', + 'system_settings' => 'System settings', + 'code_already_used' => 'Ο κωδικός πρόσκλησης έχει χρησιμοποιηθεί', + 'user_administration' => 'Διαχείριση χρηστών', + 'list_all_users' => 'Όλοι οι χρήστες', + 'all_users' => 'Όλοι οι χρήστες', + 'instance_configuration' => 'Παραμετροποίηση', + 'firefly_instance_configuration' => 'Επιλογές παραμετροποίησης του Firefly III', + 'setting_single_user_mode' => 'Λειτουργία ενός μοναδικού χρήστη', + 'setting_single_user_mode_explain' => 'Λόγω προεπιλογής το Firefly III δέχεται μόνο μία (1) εγγραφή χρήστη: εσάς. Πρόκειται για ένα μέτρο ασφαλείας που εμποδίζει τους άλλους να χρησιμοποιήσουν την εγκατάστασή σας, εκτός αν τους επιτρέπετε. Οι μελλοντικές εγγραφές χρηστών αποκλείονται. Όταν καταργήσετε την επιλογή σε αυτό το κουτάκι, άλλοι χρήστες θα μπορούν να χρησιμοποιήσουν την εγκατάστασή σας ταυτόχρονα, υποθέτοντας ότι μπορούν να συνδεθούν (σε περίπτωση σύνδεσης στο διαδίκτυο).', + 'store_configuration' => 'Αποθήκευση παραμετροποίησης', + 'single_user_administration' => 'Διαχείριση χρήστη :email', + 'edit_user' => 'Επεξεργασία χρήστη :email', + 'hidden_fields_preferences' => 'Μπορείτε να ενεργοποιήσετε περισσότερες επιλογές συναλλαγών στις προτιμήσεις.', + 'user_data_information' => 'Δεδομένα χρήστη', + 'user_information' => 'Πληροφορίες χρήστη', + 'total_size' => 'συνολικό μέγεθος', + 'budget_or_budgets' => ':count προϋπολογισμός|:count προϋπολογισμοί', + 'budgets_with_limits' => ':count προϋπολογισμός με καθορισμένο ποσό|:count προϋπολογισμοί με καθορισμένο ποσό', + 'nr_of_rules_in_total_groups' => ':count_rules κανόνες σε :count_groups ομάδες κανόνων', + 'tag_or_tags' => ':count ετικέτα|:count ετικέτες', + 'configuration_updated' => 'Η παραμετροποίηση ενημερώθηκε', + 'setting_is_demo_site' => 'Ιστοσελίδα επίδειξης', + 'setting_is_demo_site_explain' => 'Εάν επιλέξετε αυτό το κουτάκι, η εγκατάσταση θα συμπεριφέρεται σαν ιστοσελίδα επίδειξης, το οποίο μπορεί να έχει παράξενες παρενέργειες.', + 'block_code_bounced' => 'Το Email επέστρεψε χωρίς να έχει παραδοθεί', + 'block_code_expired' => 'Ο λογαριασμός επίδειξης έληξε', + 'no_block_code' => 'Δεν υπάρχει λόγος για αποκλεισμό ή ο χρήστης δεν είναι αποκλεισμένος', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Ο χρήστης δεν έχει ακόμη επιβεβαιώσει τη νέα διεύθυνση ηλεκτρονικού ταχυδρομείου', + 'admin_update_email' => 'Σε αντίθεση με τη σελίδα προφίλ, ο χρήστης ΔΕΝ θα ειδοποιηθεί ότι η διεύθυνση του ηλεκτρονικού ταχυδρομείου του έχει αλλάξει!', + 'update_user' => 'Ενημέρωση χρήστη', + 'updated_user' => 'Τα δεδομένα χρήστη έχουν αλλάξει.', + 'delete_user' => 'Διαγραφή χρήστη :email', + 'user_deleted' => 'Ο χρήστης έχει διαγραφεί', + 'send_test_email' => 'Αποστολή δοκιμαστικού μηνύματος email', + 'send_test_email_text' => 'Για να δείτε εάν η εγκατάστασή σας μπορεί να στείλει email ή να δημοσιεύσει μηνύματα στο Slack, πατήστε αυτό το κουμπί. Δεν θα δείτε κάποιο σφάλμα εδώ (αν υπάρχει), όμως τυχόν σφάλματα θα τα βρείτε στα αρχεία καταγραφής (log files). Μπορείτε να πατήσετε το κουμπί αποστολής όσες φορές θέλετε. Δεν υπάρχει έλεγχος ανεπιθύμητων μηνυμάτων. Το μήνυμα θα σταλεί στο :email και θα πρέπει να φτάσει σύντομα.', + 'send_message' => 'Αποστολή μηνύματος', + 'send_test_triggered' => 'Η δοκιμή ενεργοποιήθηκε. Ελέγξτε τα εισερχόμενα μηνύματα στο Email σας και τα αρχεία καταγραφής.', + 'give_admin_careful' => 'Οι χρήστες στους οποίους έχουν δοθεί δικαιώματα διαχειριστή μπορούν να καθαιρέσουν τη δική σας πρόσβαση. Ενεργήστε με προσοχή.', + 'admin_maintanance_title' => 'Συντήρηση', + 'admin_maintanance_expl' => 'Χρήσιμες λειτουργίες για συντήρηση στο Firefly III', + 'admin_maintenance_clear_cache' => 'Εκκαθάριση cache', + 'admin_notifications' => 'Ειδοποιήσεις διαχειριστή', + 'admin_notifications_expl' => 'Οι ακόλουθες ειδοποιήσεις μπορούν να ενεργοποιηθούν ή να απενεργοποιηθούν από το διαχειριστή. Αν θέλετε να παίρνετε αυτά τα μηνύματα και από το Slack, θα πρέπει να ορίστε το "εισερχόμενο webhook" URL.', + 'admin_notification_check_user_new_reg' => 'Ο χρήστης παίρνει μήνυμα καλωσορίσματος μετά την εγγραφή', + 'admin_notification_check_admin_new_reg' => 'Ο διαχειριστής(ες) λαμβάνει ειδοποίηση εγγραφής νέου χρήστη', + 'admin_notification_check_new_version' => 'Μια νέα έκδοση είναι διαθέσιμη', + 'admin_notification_check_invite_created' => 'Ένας χρήστης θα λάβει πρόσκληση για το Firefly III', + 'admin_notification_check_invite_redeemed' => 'Μια πρόσκληση χρήστη χρησιμοποιήθηκε', + 'all_invited_users' => 'Όλοι οι προσκεκλημένοι χρήστες', + 'save_notification_settings' => 'Αποθήκευση ρυθμίσεων', + 'notification_settings_saved' => 'Οι ρυθμίσεις ειδοποιήσεων έχουν αποθηκευτεί', - 'split_transaction_title' => 'Περιγραφή της συναλλαγής με διαχωρισμό', - 'split_transaction_title_help' => 'Εάν δημιουργήσετε μια διαχωρισμένη συναλλαγή, πρέπει να υπάρχει μια καθολική περιγραφή για όλους τους διαχωρισμούς της συναλλαγής.', - 'split_title_help' => 'Εάν δημιουργήσετε μια διαχωρισμένη συναλλαγή, πρέπει να υπάρχει μια καθολική περιγραφή για όλους τους διαχωρισμούς της συναλλαγής.', - 'you_create_transfer' => 'Δημιουργείτε μια μεταφορά.', - 'you_create_withdrawal' => 'Δημιουργείτε μια ανάληψη.', - 'you_create_deposit' => 'Δημιουργείτε μια κατάθεση.', + 'split_transaction_title' => 'Περιγραφή της συναλλαγής με διαχωρισμό', + 'split_transaction_title_help' => 'Εάν δημιουργήσετε μια διαχωρισμένη συναλλαγή, πρέπει να υπάρχει μια καθολική περιγραφή για όλους τους διαχωρισμούς της συναλλαγής.', + 'split_title_help' => 'Εάν δημιουργήσετε μια διαχωρισμένη συναλλαγή, πρέπει να υπάρχει μια καθολική περιγραφή για όλους τους διαχωρισμούς της συναλλαγής.', + 'you_create_transfer' => 'Δημιουργείτε μια μεταφορά.', + 'you_create_withdrawal' => 'Δημιουργείτε μια ανάληψη.', + 'you_create_deposit' => 'Δημιουργείτε μια κατάθεση.', // links - 'journal_link_configuration' => 'Παραμετροποίηση συνδέσεων συναλλαγών', - 'create_new_link_type' => 'Δημιουργία νέου τύπου συνδέσμου', - 'store_new_link_type' => 'Αποθήκευση νέου τύπου συνδέσμου', - 'update_link_type' => 'Ενημέρωση τύπου συνδέσμου', - 'edit_link_type' => 'Επεξεργασία τύπου συνδέσμου ":name"', - 'updated_link_type' => 'Ενημερώθηκε ο σύνδεσμος τύπου ":name"', - 'delete_link_type' => 'Διαγραφή τύπου συνδέσμου ":name"', - 'deleted_link_type' => 'Διαγράφηκε ο τύπος συνδέσμου ":name"', - 'stored_new_link_type' => 'Αποθήκευση νέου τύπου συνδέσμου ":name"', - 'cannot_edit_link_type' => 'Αδύνατη η επεξεργασία του τύπου συνδέσμου ":name"', - 'link_type_help_name' => 'Πχ. "Διπλότυπα"', - 'link_type_help_inward' => 'Πχ. "διπλότυπα"', - 'link_type_help_outward' => 'Πχ. "Είναι διπλότυπο από"', - 'save_connections_by_moving' => 'Αποθηκεύστε το σύνδεσμο μεταξύ αυτών των συναλλαγών μετακινώντας τις σε έναν άλλο τύπο συνδέσμου:', - 'do_not_save_connection' => '(μην αποθηκεύσεις την σύνδεση)', - 'link_transaction' => 'Σύνδεση συναλλαγής', - 'link_to_other_transaction' => 'Σύνδεση αυτής της συναλλαγής με μια άλλη συναλλαγή', - 'select_transaction_to_link' => 'Επιλέξτε μια συναλλαγή για να συνδεθεί τη συγκεκριμένη συναλλαγή. Οι σύνδεσμοι δεν χρησιμοποιούνται επί του παρόντος στο Firefly III (απλώς εμφανίζονται), αλλά αυτό σχεδιάζεται να αλλάξει μελλοντικά. Χρησιμοποιήστε το πλαίσιο αναζήτησης για να επιλέξετε μια συναλλαγή είτε με τίτλο είτε με αναγνωριστικό ID. Αν θέλετε να προσθέσετε προσαρμοσμένους τύπους συνδέσμων, ανατρέξτε στην ενότητα διαχείρισης.', - 'this_transaction' => 'Αυτή η συναλλαγή', - 'transaction' => 'Συναλλαγή', - 'comments' => 'Σχόλια', - 'link_notes' => 'Τυχόν σημειώσεις που θέλετε να αποθηκεύσετε με τη σύνδεση.', - 'invalid_link_selection' => 'Δεν είναι δυνατή η σύνδεση αυτών των συναλλαγών', - 'selected_transaction' => 'Επιλεγμένη συναλλαγή', - 'journals_linked' => 'Οι συναλλαγές είναι συνδεδεμένες.', - 'journals_error_linked' => 'Αυτές οι συναλλαγές είναι ήδη συνδεδεμένες.', - 'journals_link_to_self' => 'Δεν μπορείτε να συνδέσετε μια συναλλαγή με τον εαυτό της', - 'journal_links' => 'Συνδέσεις συναλλαγών', - 'this_withdrawal' => 'Αυτή η ανάληψη', - 'this_deposit' => 'Αυτή η κατάθεση', - 'this_transfer' => 'Αυτή η μεταφορά', - 'overview_for_link' => 'Επισκόπηση για τύπο συνδέσμου ":name"', - 'source_transaction' => 'Συναλλαγή προέλευσης', - 'link_description' => 'Περιγραφή σύνδεσης', - 'destination_transaction' => 'Συναλλαγή προορισμού', - 'delete_journal_link' => 'Διαγραφή του συνδέσμου μεταξύ :source και :destination', - 'deleted_link' => 'Διαγραμμένος σύνδεσμος', + 'journal_link_configuration' => 'Παραμετροποίηση συνδέσεων συναλλαγών', + 'create_new_link_type' => 'Δημιουργία νέου τύπου συνδέσμου', + 'store_new_link_type' => 'Αποθήκευση νέου τύπου συνδέσμου', + 'update_link_type' => 'Ενημέρωση τύπου συνδέσμου', + 'edit_link_type' => 'Επεξεργασία τύπου συνδέσμου ":name"', + 'updated_link_type' => 'Ενημερώθηκε ο σύνδεσμος τύπου ":name"', + 'delete_link_type' => 'Διαγραφή τύπου συνδέσμου ":name"', + 'deleted_link_type' => 'Διαγράφηκε ο τύπος συνδέσμου ":name"', + 'stored_new_link_type' => 'Αποθήκευση νέου τύπου συνδέσμου ":name"', + 'cannot_edit_link_type' => 'Αδύνατη η επεξεργασία του τύπου συνδέσμου ":name"', + 'link_type_help_name' => 'Πχ. "Διπλότυπα"', + 'link_type_help_inward' => 'Πχ. "διπλότυπα"', + 'link_type_help_outward' => 'Πχ. "Είναι διπλότυπο από"', + 'save_connections_by_moving' => 'Αποθηκεύστε το σύνδεσμο μεταξύ αυτών των συναλλαγών μετακινώντας τις σε έναν άλλο τύπο συνδέσμου:', + 'do_not_save_connection' => '(μην αποθηκεύσεις την σύνδεση)', + 'link_transaction' => 'Σύνδεση συναλλαγής', + 'link_to_other_transaction' => 'Σύνδεση αυτής της συναλλαγής με μια άλλη συναλλαγή', + 'select_transaction_to_link' => 'Επιλέξτε μια συναλλαγή για να συνδεθεί τη συγκεκριμένη συναλλαγή. Οι σύνδεσμοι δεν χρησιμοποιούνται επί του παρόντος στο Firefly III (απλώς εμφανίζονται), αλλά αυτό σχεδιάζεται να αλλάξει μελλοντικά. Χρησιμοποιήστε το πλαίσιο αναζήτησης για να επιλέξετε μια συναλλαγή είτε με τίτλο είτε με αναγνωριστικό ID. Αν θέλετε να προσθέσετε προσαρμοσμένους τύπους συνδέσμων, ανατρέξτε στην ενότητα διαχείρισης.', + 'this_transaction' => 'Αυτή η συναλλαγή', + 'transaction' => 'Συναλλαγή', + 'comments' => 'Σχόλια', + 'link_notes' => 'Τυχόν σημειώσεις που θέλετε να αποθηκεύσετε με τη σύνδεση.', + 'invalid_link_selection' => 'Δεν είναι δυνατή η σύνδεση αυτών των συναλλαγών', + 'selected_transaction' => 'Επιλεγμένη συναλλαγή', + 'journals_linked' => 'Οι συναλλαγές είναι συνδεδεμένες.', + 'journals_error_linked' => 'Αυτές οι συναλλαγές είναι ήδη συνδεδεμένες.', + 'journals_link_to_self' => 'Δεν μπορείτε να συνδέσετε μια συναλλαγή με τον εαυτό της', + 'journal_links' => 'Συνδέσεις συναλλαγών', + 'this_withdrawal' => 'Αυτή η ανάληψη', + 'this_deposit' => 'Αυτή η κατάθεση', + 'this_transfer' => 'Αυτή η μεταφορά', + 'overview_for_link' => 'Επισκόπηση για τύπο συνδέσμου ":name"', + 'source_transaction' => 'Συναλλαγή προέλευσης', + 'link_description' => 'Περιγραφή σύνδεσης', + 'destination_transaction' => 'Συναλλαγή προορισμού', + 'delete_journal_link' => 'Διαγραφή του συνδέσμου μεταξύ :source και :destination', + 'deleted_link' => 'Διαγραμμένος σύνδεσμος', // link translations: - 'Paid_name' => 'Πληρωμένο', - 'Refund_name' => 'Επιστροφή χρημάτων', - 'Reimbursement_name' => 'Αποζημίωση', - 'Related_name' => 'Σχετικά', - 'relates to_inward' => 'σχετίζεται με', - 'is (partially) refunded by_inward' => 'έχει επιστραφεί (εν μέρει) από', - 'is (partially) paid for by_inward' => 'έχει πληρωθεί (εν μέρει) από', - 'is (partially) reimbursed by_inward' => 'έχει αποζημιωθεί (εν μέρει) από', - 'inward_transaction' => 'Εσωτερική συναλλαγή', - 'outward_transaction' => 'Εξωτερική συναλλαγή', - 'relates to_outward' => 'σχετίζεται με', - '(partially) refunds_outward' => '(εν μέρει) επιστροφές', - '(partially) pays for_outward' => '(εν μέρει) πληρωμές για', - '(partially) reimburses_outward' => '(εν μέρει) αποζημιώσεις', - 'is (partially) refunded by' => 'έχει επιστραφεί (εν μέρει) από', - 'is (partially) paid for by' => 'έχει πληρωθεί (εν μέρει) από', - 'is (partially) reimbursed by' => 'έχει αποζημιωθεί (εν μέρει) από', - 'relates to' => 'σχετίζεται με', - '(partially) refunds' => 'επιστρέφει (εν μέρει) για', - '(partially) pays for' => 'πληρώνει (εν μέρη) για', - '(partially) reimburses' => 'αποζημιώνει (εν μέρει) για', + 'Paid_name' => 'Πληρωμένο', + 'Refund_name' => 'Επιστροφή χρημάτων', + 'Reimbursement_name' => 'Αποζημίωση', + 'Related_name' => 'Σχετικά', + 'relates to_inward' => 'σχετίζεται με', + 'is (partially) refunded by_inward' => 'έχει επιστραφεί (εν μέρει) από', + 'is (partially) paid for by_inward' => 'έχει πληρωθεί (εν μέρει) από', + 'is (partially) reimbursed by_inward' => 'έχει αποζημιωθεί (εν μέρει) από', + 'inward_transaction' => 'Εσωτερική συναλλαγή', + 'outward_transaction' => 'Εξωτερική συναλλαγή', + 'relates to_outward' => 'σχετίζεται με', + '(partially) refunds_outward' => '(εν μέρει) επιστροφές', + '(partially) pays for_outward' => '(εν μέρει) πληρωμές για', + '(partially) reimburses_outward' => '(εν μέρει) αποζημιώσεις', + 'is (partially) refunded by' => 'έχει επιστραφεί (εν μέρει) από', + 'is (partially) paid for by' => 'έχει πληρωθεί (εν μέρει) από', + 'is (partially) reimbursed by' => 'έχει αποζημιωθεί (εν μέρει) από', + 'relates to' => 'σχετίζεται με', + '(partially) refunds' => 'επιστρέφει (εν μέρει) για', + '(partially) pays for' => 'πληρώνει (εν μέρη) για', + '(partially) reimburses' => 'αποζημιώνει (εν μέρει) για', // split a transaction: - 'splits' => 'Διαχωρισμός', - 'add_another_split' => 'Προσθήκη ενός ακόμα διαχωρισμού', - 'cannot_edit_opening_balance' => 'Δεν μπορείτε να επεξεργαστείτε το υπόλοιπο έναρξης ενός λογαριασμού.', - 'no_edit_multiple_left' => 'Δεν έχετε επιλέξει έγκυρες συναλλαγές για επεξεργασία.', - 'breadcrumb_convert_group' => 'Μετατροπή συναλλαγής', - 'convert_invalid_source' => 'Οι πληροφορίες προέλευσης δεν είναι έγκυρες για τη συναλλαγή #%d.', - 'convert_invalid_destination' => 'Οι πληροφορίες προορισμού δεν είναι έγκυρες για τη συναλλαγή #%d.', - 'create_another' => 'Μετά την αποθήκευση, επιστρέψτε εδώ για να δημιουργήσετε ακόμη ένα.', - 'after_update_create_another' => 'Μετά την ενημέρωση, επιστρέψτε εδώ για να συνεχίσετε την επεξεργασία.', - 'store_as_new' => 'Αποθήκευση ως νέα συναλλαγή αντί για ενημέρωση.', - 'reset_after' => 'Επαναφορά φόρμας μετά την υποβολή', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Ανάπτυξη διαχωρισμού', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Σύμπτυξη διαχωρισμού', + 'splits' => 'Διαχωρισμός', + 'add_another_split' => 'Προσθήκη ενός ακόμα διαχωρισμού', + 'cannot_edit_opening_balance' => 'Δεν μπορείτε να επεξεργαστείτε το υπόλοιπο έναρξης ενός λογαριασμού.', + 'no_edit_multiple_left' => 'Δεν έχετε επιλέξει έγκυρες συναλλαγές για επεξεργασία.', + 'breadcrumb_convert_group' => 'Μετατροπή συναλλαγής', + 'convert_invalid_source' => 'Οι πληροφορίες προέλευσης δεν είναι έγκυρες για τη συναλλαγή #%d.', + 'convert_invalid_destination' => 'Οι πληροφορίες προορισμού δεν είναι έγκυρες για τη συναλλαγή #%d.', + 'create_another' => 'Μετά την αποθήκευση, επιστρέψτε εδώ για να δημιουργήσετε ακόμη ένα.', + 'after_update_create_another' => 'Μετά την ενημέρωση, επιστρέψτε εδώ για να συνεχίσετε την επεξεργασία.', + 'store_as_new' => 'Αποθήκευση ως νέα συναλλαγή αντί για ενημέρωση.', + 'reset_after' => 'Επαναφορά φόρμας μετά την υποβολή', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Ανάπτυξη διαχωρισμού', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Σύμπτυξη διαχωρισμού', // object groups - 'default_group_title_name' => '(χωρίς ομάδα)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(χωρίς ομάδα)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Ας δημιουργήσουμε ένα λογαριασμό κεφαλαίου!', - 'no_accounts_intro_asset' => 'Δεν έχετε ακόμα λογαριασμούς κεφαλαίου. Οι κεφαλαιακοί λογαριασμοί είναι οι κύριοι λογαριασμοί σας: ο τρεχούμενος λογαριασμός, ο αποταμιευτικός λογαριασμός, ο κοινόχρηστος λογαριασμός ή ακόμα και η πιστωτική σας κάρτα.', - 'no_accounts_imperative_asset' => 'Για να ξεκινήσετε τη χρήση του Firefly III, πρέπει να δημιουργήσετε τουλάχιστον ένα λογαριασμό κεφαλαίου. Ας το κάνουμε τώρα:', - 'no_accounts_create_asset' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', - 'no_accounts_title_expense' => 'Ας δημιουργήσουμε ένα λογαριασμό δαπανών!', - 'no_accounts_intro_expense' => 'Δεν έχετε ακόμα λογαριασμούς δαπανών. Οι λογαριασμοί δαπανών είναι τα μέρη που ξοδεύετε χρήματα, όπως τα καταστήματα και τα σούπερ μάρκετ.', - 'no_accounts_imperative_expense' => 'Οι λογαριασμοί δαπανών δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε ένα και χειροκίνητα αν θέλετε. Ας δημιουργήσουμε ένα τώρα:', - 'no_accounts_create_expense' => 'Δημιουργία νέου λογαριασμού δαπανών', - 'no_accounts_title_revenue' => 'Ας δημιουργήσουμε ένα λογαριασμό εσόδων!', - 'no_accounts_intro_revenue' => 'Δεν έχετε ακόμα λογαριασμούς εσόδων. Οι λογαριασμοί εσόδων είναι αυτοί από τους οποίους λαμβάνετε χρήματα, όπως ο μισθός ή είσπραξη ενοικίων.', - 'no_accounts_imperative_revenue' => 'Οι λογαριασμοί εσόδων δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε έναν και χειροκίνητα, αν θέλετε. Ας δημιουργήσουμε έναν τώρα:', - 'no_accounts_create_revenue' => 'Δημιουργία νέου λογαριασμού εσόδων', - 'no_accounts_title_liabilities' => 'Ας δημιουργήσουμε μια υποχρέωση!', - 'no_accounts_intro_liabilities' => 'Δεν έχετε ακόμα υποχρεώσεις. Οι υποχρεώσεις είναι οι λογαριασμοί που καταγράφουν δάνεια και διάφορα άλλα χρέη σας.', - 'no_accounts_imperative_liabilities' => 'Δεν χρειάζεται να χρησιμοποιήσετε αυτή τη λειτουργία, αλλά μπορεί να σας φανεί χρήσιμη εάν θέλετε να επιβλέπετε αυτά τα πράγματα.', - 'no_accounts_create_liabilities' => 'Δημιουργία μιας υποχρέωσης', - 'no_budgets_title_default' => 'Ας δημιουργήσουμε ένα προϋπολογισμό', - 'no_rules_title_default' => 'Ας δημιουργήσουμε ένα κανόνα', - 'no_budgets_intro_default' => 'Δεν έχετε ακόμα προϋπολογισμούς. Οι προϋπολογισμοί χρησιμοποιούνται για την οργάνωση των εξόδων σας σε λογικές ομάδες, στις οποίες μπορείτε να ορίσετε ένα λογικό άνω όριο με σκοπό να περιορίσετε τα έξοδά σας.', - 'no_rules_intro_default' => 'Δεν έχετε κανόνες ακόμα. Οι κανόνες είναι ισχυροί αυτοματισμοί που μπορούν να χειριστούν συναλλαγές για εσάς.', - 'no_rules_imperative_default' => 'Οι κανόνες μπορεί να είναι πολύ χρήσιμοι όταν διαχειρίζεστε συναλλαγές. Ας δημιουργήσουμε τώρα έναν:', - 'no_budgets_imperative_default' => 'Οι προϋπολογισμοί είναι τα βασικά εργαλεία της οικονομικής διαχείρισης. Ας δημιουργήσουμε έναν τώρα:', - 'no_budgets_create_default' => 'Δημιουργία ενός προϋπολογισμού', - 'no_rules_create_default' => 'Δημιουργία κανόνα', - 'no_categories_title_default' => 'Ας δημιουργήσουμε μια κατηγορία!', - 'no_categories_intro_default' => 'Δεν έχετε ακόμα κατηγορίες. Οι κατηγορίες χρησιμοποιούνται για την τελειοποίηση των συναλλαγών σας σημειώνοντας τη συγκεκριμένη κατηγορία τους.', - 'no_categories_imperative_default' => 'Οι κατηγορίες δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε μία και χειροκίνητα. Ας δημιουργήσουμε μια τώρα:', - 'no_categories_create_default' => 'Δημιουργία μιας κατηγορίας', - 'no_tags_title_default' => 'Ας δημιουργήσουμε μια ετικέτα!', - 'no_tags_intro_default' => 'Δεν έχετε ακόμα ετικέτες. Οι ετικέτες χρησιμοποιούνται για την τελειοποίηση των συναλλαγών σας σημειώνοντας συγκεκριμένες λέξεις-κλειδιά.', - 'no_tags_imperative_default' => 'Οι ετικέτες δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε μια και χειροκίνητα. Ας δημιουργήσουμε μια τώρα:', - 'no_tags_create_default' => 'Δημιουργία νέας ετικέτας', - 'no_transactions_title_withdrawal' => 'Ας δημιουργήσουμε μια δαπάνη!', - 'no_transactions_intro_withdrawal' => 'Δεν έχετε ακόμη δαπάνες. Θα πρέπει να δημιουργήσετε δαπάνες για να ξεκινήσετε τη διαχείριση των οικονομικών σας.', - 'no_transactions_imperative_withdrawal' => 'Έχετε δαπανήσει κάποια χρήματα; Τότε θα πρέπει να το γράψετε:', - 'no_transactions_create_withdrawal' => 'Δημιουργία μιας δαπάνης', - 'no_transactions_title_deposit' => 'Ας δημιουργήσουμε ένα έσοδο!', - 'no_transactions_intro_deposit' => 'Δεν έχετε ακόμη καταχωρημένα έσοδα. Θα πρέπει να εισάγετε κάποια έσοδα για να ξεκινήσετε τη διαχείριση των οικονομικών σας.', - 'no_transactions_imperative_deposit' => 'Έχετε λάβει κάποια χρήματα; Τότε θα πρέπει να το γράψετε:', - 'no_transactions_create_deposit' => 'Δημιουργία κατάθεσης', - 'no_transactions_title_transfers' => 'Ας δημιουργήσουμε μια μεταφορά!', - 'no_transactions_intro_transfers' => 'Δεν έχετε καταχωρήσει μεταφορές. Όταν μετακινείτε χρήματα μεταξύ δύο κεφαλαιακών λογαριασμών, αυτό καταγράφεται ως μια μεταφορά.', - 'no_transactions_imperative_transfers' => 'Έχετε κάνει κάποια μεταφορά χρημάτων; Τότε θα πρέπει να το γράψετε:', - 'no_transactions_create_transfers' => 'Δημιουργία νέας μεταφοράς', - 'no_piggies_title_default' => 'Ας δημιουργήσουμε ένα κουμπαρά!', - 'no_piggies_intro_default' => 'Δεν έχετε ορίσει κάποιο κουμπαρά. Μπορείτε να δημιουργήσετε κουμπαράδες για να καθορίσετε τις αποταμιεύσεις σας και να επιβλέπετε την πρόοδο της εξοικονόμησης.', - 'no_piggies_imperative_default' => 'Έχετε πράγματα για τα οποία εξοικονομείτε χρήματα; Δημιουργήστε ένα κουμπαρά για σωστή επίβλεψη:', - 'no_piggies_create_default' => 'Δημιουργία ενός νέου κουμπαρά', - 'no_bills_title_default' => 'Ας δημιουργήσουμε ένα πάγιο έξοδο!', - 'no_bills_intro_default' => 'Δεν έχετε ακόμα πάγια έξοδα. Μπορείτε να δημιουργήσετε πάγια έξοδα για να επιβλέπετε τις τακτικές δαπάνες, όπως το ενοίκιο ή η ασφάλιση.', - 'no_bills_imperative_default' => 'Έχετε τακτικά τέτοιες χρεώσεις; Δημιουργήστε ένα πάγιο έξοδο για να επιβλέπετε τις πληρωμές σας:', - 'no_bills_create_default' => 'Δημιουργία νέου πάγιου έξοδου', + 'no_accounts_title_asset' => 'Ας δημιουργήσουμε ένα λογαριασμό κεφαλαίου!', + 'no_accounts_intro_asset' => 'Δεν έχετε ακόμα λογαριασμούς κεφαλαίου. Οι κεφαλαιακοί λογαριασμοί είναι οι κύριοι λογαριασμοί σας: ο τρεχούμενος λογαριασμός, ο αποταμιευτικός λογαριασμός, ο κοινόχρηστος λογαριασμός ή ακόμα και η πιστωτική σας κάρτα.', + 'no_accounts_imperative_asset' => 'Για να ξεκινήσετε τη χρήση του Firefly III, πρέπει να δημιουργήσετε τουλάχιστον ένα λογαριασμό κεφαλαίου. Ας το κάνουμε τώρα:', + 'no_accounts_create_asset' => 'Δημιουργία νέου λογαριασμού κεφαλαίου', + 'no_accounts_title_expense' => 'Ας δημιουργήσουμε ένα λογαριασμό δαπανών!', + 'no_accounts_intro_expense' => 'Δεν έχετε ακόμα λογαριασμούς δαπανών. Οι λογαριασμοί δαπανών είναι τα μέρη που ξοδεύετε χρήματα, όπως τα καταστήματα και τα σούπερ μάρκετ.', + 'no_accounts_imperative_expense' => 'Οι λογαριασμοί δαπανών δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε ένα και χειροκίνητα αν θέλετε. Ας δημιουργήσουμε ένα τώρα:', + 'no_accounts_create_expense' => 'Δημιουργία νέου λογαριασμού δαπανών', + 'no_accounts_title_revenue' => 'Ας δημιουργήσουμε ένα λογαριασμό εσόδων!', + 'no_accounts_intro_revenue' => 'Δεν έχετε ακόμα λογαριασμούς εσόδων. Οι λογαριασμοί εσόδων είναι αυτοί από τους οποίους λαμβάνετε χρήματα, όπως ο μισθός ή είσπραξη ενοικίων.', + 'no_accounts_imperative_revenue' => 'Οι λογαριασμοί εσόδων δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε έναν και χειροκίνητα, αν θέλετε. Ας δημιουργήσουμε έναν τώρα:', + 'no_accounts_create_revenue' => 'Δημιουργία νέου λογαριασμού εσόδων', + 'no_accounts_title_liabilities' => 'Ας δημιουργήσουμε μια υποχρέωση!', + 'no_accounts_intro_liabilities' => 'Δεν έχετε ακόμα υποχρεώσεις. Οι υποχρεώσεις είναι οι λογαριασμοί που καταγράφουν δάνεια και διάφορα άλλα χρέη σας.', + 'no_accounts_imperative_liabilities' => 'Δεν χρειάζεται να χρησιμοποιήσετε αυτή τη λειτουργία, αλλά μπορεί να σας φανεί χρήσιμη εάν θέλετε να επιβλέπετε αυτά τα πράγματα.', + 'no_accounts_create_liabilities' => 'Δημιουργία μιας υποχρέωσης', + 'no_budgets_title_default' => 'Ας δημιουργήσουμε ένα προϋπολογισμό', + 'no_rules_title_default' => 'Ας δημιουργήσουμε ένα κανόνα', + 'no_budgets_intro_default' => 'Δεν έχετε ακόμα προϋπολογισμούς. Οι προϋπολογισμοί χρησιμοποιούνται για την οργάνωση των εξόδων σας σε λογικές ομάδες, στις οποίες μπορείτε να ορίσετε ένα λογικό άνω όριο με σκοπό να περιορίσετε τα έξοδά σας.', + 'no_rules_intro_default' => 'Δεν έχετε κανόνες ακόμα. Οι κανόνες είναι ισχυροί αυτοματισμοί που μπορούν να χειριστούν συναλλαγές για εσάς.', + 'no_rules_imperative_default' => 'Οι κανόνες μπορεί να είναι πολύ χρήσιμοι όταν διαχειρίζεστε συναλλαγές. Ας δημιουργήσουμε τώρα έναν:', + 'no_budgets_imperative_default' => 'Οι προϋπολογισμοί είναι τα βασικά εργαλεία της οικονομικής διαχείρισης. Ας δημιουργήσουμε έναν τώρα:', + 'no_budgets_create_default' => 'Δημιουργία ενός προϋπολογισμού', + 'no_rules_create_default' => 'Δημιουργία κανόνα', + 'no_categories_title_default' => 'Ας δημιουργήσουμε μια κατηγορία!', + 'no_categories_intro_default' => 'Δεν έχετε ακόμα κατηγορίες. Οι κατηγορίες χρησιμοποιούνται για την τελειοποίηση των συναλλαγών σας σημειώνοντας τη συγκεκριμένη κατηγορία τους.', + 'no_categories_imperative_default' => 'Οι κατηγορίες δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε μία και χειροκίνητα. Ας δημιουργήσουμε μια τώρα:', + 'no_categories_create_default' => 'Δημιουργία μιας κατηγορίας', + 'no_tags_title_default' => 'Ας δημιουργήσουμε μια ετικέτα!', + 'no_tags_intro_default' => 'Δεν έχετε ακόμα ετικέτες. Οι ετικέτες χρησιμοποιούνται για την τελειοποίηση των συναλλαγών σας σημειώνοντας συγκεκριμένες λέξεις-κλειδιά.', + 'no_tags_imperative_default' => 'Οι ετικέτες δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε μια και χειροκίνητα. Ας δημιουργήσουμε μια τώρα:', + 'no_tags_create_default' => 'Δημιουργία νέας ετικέτας', + 'no_transactions_title_withdrawal' => 'Ας δημιουργήσουμε μια δαπάνη!', + 'no_transactions_intro_withdrawal' => 'Δεν έχετε ακόμη δαπάνες. Θα πρέπει να δημιουργήσετε δαπάνες για να ξεκινήσετε τη διαχείριση των οικονομικών σας.', + 'no_transactions_imperative_withdrawal' => 'Έχετε δαπανήσει κάποια χρήματα; Τότε θα πρέπει να το γράψετε:', + 'no_transactions_create_withdrawal' => 'Δημιουργία μιας δαπάνης', + 'no_transactions_title_deposit' => 'Ας δημιουργήσουμε ένα έσοδο!', + 'no_transactions_intro_deposit' => 'Δεν έχετε ακόμη καταχωρημένα έσοδα. Θα πρέπει να εισάγετε κάποια έσοδα για να ξεκινήσετε τη διαχείριση των οικονομικών σας.', + 'no_transactions_imperative_deposit' => 'Έχετε λάβει κάποια χρήματα; Τότε θα πρέπει να το γράψετε:', + 'no_transactions_create_deposit' => 'Δημιουργία κατάθεσης', + 'no_transactions_title_transfers' => 'Ας δημιουργήσουμε μια μεταφορά!', + 'no_transactions_intro_transfers' => 'Δεν έχετε καταχωρήσει μεταφορές. Όταν μετακινείτε χρήματα μεταξύ δύο κεφαλαιακών λογαριασμών, αυτό καταγράφεται ως μια μεταφορά.', + 'no_transactions_imperative_transfers' => 'Έχετε κάνει κάποια μεταφορά χρημάτων; Τότε θα πρέπει να το γράψετε:', + 'no_transactions_create_transfers' => 'Δημιουργία νέας μεταφοράς', + 'no_piggies_title_default' => 'Ας δημιουργήσουμε ένα κουμπαρά!', + 'no_piggies_intro_default' => 'Δεν έχετε ορίσει κάποιο κουμπαρά. Μπορείτε να δημιουργήσετε κουμπαράδες για να καθορίσετε τις αποταμιεύσεις σας και να επιβλέπετε την πρόοδο της εξοικονόμησης.', + 'no_piggies_imperative_default' => 'Έχετε πράγματα για τα οποία εξοικονομείτε χρήματα; Δημιουργήστε ένα κουμπαρά για σωστή επίβλεψη:', + 'no_piggies_create_default' => 'Δημιουργία ενός νέου κουμπαρά', + 'no_bills_title_default' => 'Ας δημιουργήσουμε ένα πάγιο έξοδο!', + 'no_bills_intro_default' => 'Δεν έχετε ακόμα πάγια έξοδα. Μπορείτε να δημιουργήσετε πάγια έξοδα για να επιβλέπετε τις τακτικές δαπάνες, όπως το ενοίκιο ή η ασφάλιση.', + 'no_bills_imperative_default' => 'Έχετε τακτικά τέτοιες χρεώσεις; Δημιουργήστε ένα πάγιο έξοδο για να επιβλέπετε τις πληρωμές σας:', + 'no_bills_create_default' => 'Δημιουργία νέου πάγιου έξοδου', // recurring transactions - 'create_right_now' => 'Δημιουργία αυτή τη στιγμή', - 'no_new_transaction_in_recurrence' => 'Δε δημιουργήθηκε καμία νέα συναλλαγή. Μήπως ενεργοποιήθηκε ήδη για αυτή την ημερομηνία;', - 'recurrences' => 'Επαναλαμβανόμενες συναλλαγές', - 'repeat_until_in_past' => 'Αυτή η επαναλαμβανόμενη συναλλαγή σταμάτησε να επαναλαμβάνεται στις :date.', - 'recurring_calendar_view' => 'Ημερολόγιο', - 'no_recurring_title_default' => 'Ας δημιουργήσουμε μια επαναλαμβανόμενη συναλλαγή!', - 'no_recurring_intro_default' => 'Δεν έχετε ακόμα επαναλαμβανόμενες συναλλαγές. Μπορείτε να τις χρησιμοποιήσετε για να κάνετε το Firefly III να δημιουργεί αυτόματα συναλλαγές για εσάς.', - 'no_recurring_imperative_default' => 'Αυτό είναι ένα αρκετά προηγμένο χαρακτηριστικό αλλά μπορεί να είναι εξαιρετικά χρήσιμο. Βεβαιωθείτε ότι έχετε διαβάσει την τεκμηρίωση στο εικονίδιο (?) επάνω δεξιά γωνία, προτού συνεχίσετε.', - 'no_recurring_create_default' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', - 'make_new_recurring' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', - 'recurring_daily' => 'Καθημερινά', - 'recurring_weekly' => 'Κάθε εβδομάδα την :weekday', - 'recurring_weekly_skip' => 'Κάθε :skip(η/α/η/η) εβδομάδα την :weekday', - 'recurring_monthly' => 'Κάθε μήνα την :dayOfMonthη ημέρα', - 'recurring_monthly_skip' => 'Κάθε :skipο μήνα την :dayOfMonthη ημέρα', - 'recurring_ndom' => 'Κάθε μήνα την :dayOfMonthη :weekday', - 'recurring_yearly' => 'Ετήσια στις :date', - 'overview_for_recurrence' => 'Επισκόπηση της επαναλαμβανόμενης συναλλαγής ":title"', - 'warning_duplicates_repetitions' => 'Σε σπάνιες περιπτώσεις, οι ημερομηνίες εμφανίζονται δύο φορές σε αυτήν τη λίστα. Αυτό μπορεί να συμβεί όταν επικαλύπτονται πολλές επαναλήψεις. Το Firefly III θα παράγει πάντα μία συναλλαγή την ημέρα.', - 'created_transactions' => 'Σχετικές συναλλαγές', - 'expected_withdrawals' => 'Αναμενόμενες αναλήψεις', - 'expected_deposits' => 'Αναμενόμενες καταθέσεις', - 'expected_transfers' => 'Αναμενόμενες μεταφορές', - 'created_withdrawals' => 'Δημιουργήθηκαν αναλήψεις', - 'created_deposits' => 'Δημιουργήθηκαν καταθέσεις', - 'created_transfers' => 'Δημιουργήθηκαν μεταφορές', - 'recurring_info' => 'Επαναλαμβανόμενη συναλλαγή :count / :total', - 'created_from_recurrence' => 'Δημιουργήθηκε από την επαναλαμβανόμενη συναλλαγή ":title" (#:id)', - 'recurring_never_cron' => 'Φαίνεται ότι το cron job που είναι απαραίτητο για την υποστήριξη των επαναλαμβανόμενων συναλλαγών δεν έχει τρέξει ποτέ. Αυτό είναι φυσιολογικό εάν έχετε μόλις εγκαταστήσει το Firefly III, αλλά αυτό θα πρέπει να ρυθμιστεί το συντομότερο δυνατό. Ελέγξτε τις σελίδες βοήθειας χρησιμοποιώντας το εικονίδιο (?) στην επάνω δεξιά γωνία της σελίδας.', - 'recurring_cron_long_ago' => 'Φαίνεται ότι έχουν περάσει περισσότερες από 36 ώρες από τότε που το cron job για την υποστήριξη επαναλαμβανόμενων συναλλαγών έχει τρέξει για τελευταία φορά. Είστε βέβαιοι ότι έχει ρυθμιστεί σωστά; Ελέγξτε τις σελίδες βοήθειας χρησιμοποιώντας το εικονίδιο (?) στην επάνω δεξιά γωνία της σελίδας.', + 'create_right_now' => 'Δημιουργία αυτή τη στιγμή', + 'no_new_transaction_in_recurrence' => 'Δε δημιουργήθηκε καμία νέα συναλλαγή. Μήπως ενεργοποιήθηκε ήδη για αυτή την ημερομηνία;', + 'recurrences' => 'Επαναλαμβανόμενες συναλλαγές', + 'repeat_until_in_past' => 'Αυτή η επαναλαμβανόμενη συναλλαγή σταμάτησε να επαναλαμβάνεται στις :date.', + 'recurring_calendar_view' => 'Ημερολόγιο', + 'no_recurring_title_default' => 'Ας δημιουργήσουμε μια επαναλαμβανόμενη συναλλαγή!', + 'no_recurring_intro_default' => 'Δεν έχετε ακόμα επαναλαμβανόμενες συναλλαγές. Μπορείτε να τις χρησιμοποιήσετε για να κάνετε το Firefly III να δημιουργεί αυτόματα συναλλαγές για εσάς.', + 'no_recurring_imperative_default' => 'Αυτό είναι ένα αρκετά προηγμένο χαρακτηριστικό αλλά μπορεί να είναι εξαιρετικά χρήσιμο. Βεβαιωθείτε ότι έχετε διαβάσει την τεκμηρίωση στο εικονίδιο (?) επάνω δεξιά γωνία, προτού συνεχίσετε.', + 'no_recurring_create_default' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', + 'make_new_recurring' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', + 'recurring_daily' => 'Καθημερινά', + 'recurring_weekly' => 'Κάθε εβδομάδα την :weekday', + 'recurring_weekly_skip' => 'Κάθε :skip(η/α/η/η) εβδομάδα την :weekday', + 'recurring_monthly' => 'Κάθε μήνα την :dayOfMonthη ημέρα', + 'recurring_monthly_skip' => 'Κάθε :skipο μήνα την :dayOfMonthη ημέρα', + 'recurring_ndom' => 'Κάθε μήνα την :dayOfMonthη :weekday', + 'recurring_yearly' => 'Ετήσια στις :date', + 'overview_for_recurrence' => 'Επισκόπηση της επαναλαμβανόμενης συναλλαγής ":title"', + 'warning_duplicates_repetitions' => 'Σε σπάνιες περιπτώσεις, οι ημερομηνίες εμφανίζονται δύο φορές σε αυτήν τη λίστα. Αυτό μπορεί να συμβεί όταν επικαλύπτονται πολλές επαναλήψεις. Το Firefly III θα παράγει πάντα μία συναλλαγή την ημέρα.', + 'created_transactions' => 'Σχετικές συναλλαγές', + 'expected_withdrawals' => 'Αναμενόμενες αναλήψεις', + 'expected_deposits' => 'Αναμενόμενες καταθέσεις', + 'expected_transfers' => 'Αναμενόμενες μεταφορές', + 'created_withdrawals' => 'Δημιουργήθηκαν αναλήψεις', + 'created_deposits' => 'Δημιουργήθηκαν καταθέσεις', + 'created_transfers' => 'Δημιουργήθηκαν μεταφορές', + 'recurring_info' => 'Επαναλαμβανόμενη συναλλαγή :count / :total', + 'created_from_recurrence' => 'Δημιουργήθηκε από την επαναλαμβανόμενη συναλλαγή ":title" (#:id)', + 'recurring_never_cron' => 'Φαίνεται ότι το cron job που είναι απαραίτητο για την υποστήριξη των επαναλαμβανόμενων συναλλαγών δεν έχει τρέξει ποτέ. Αυτό είναι φυσιολογικό εάν έχετε μόλις εγκαταστήσει το Firefly III, αλλά αυτό θα πρέπει να ρυθμιστεί το συντομότερο δυνατό. Ελέγξτε τις σελίδες βοήθειας χρησιμοποιώντας το εικονίδιο (?) στην επάνω δεξιά γωνία της σελίδας.', + 'recurring_cron_long_ago' => 'Φαίνεται ότι έχουν περάσει περισσότερες από 36 ώρες από τότε που το cron job για την υποστήριξη επαναλαμβανόμενων συναλλαγών έχει τρέξει για τελευταία φορά. Είστε βέβαιοι ότι έχει ρυθμιστεί σωστά; Ελέγξτε τις σελίδες βοήθειας χρησιμοποιώντας το εικονίδιο (?) στην επάνω δεξιά γωνία της σελίδας.', - 'create_new_recurrence' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', - 'help_first_date' => 'Αναφέρετε την πρώτη αναμενόμενη επανάληψη. Αυτό πρέπει να γίνει σε μελλοντικό χρόνο.', - 'help_first_date_no_past' => 'Αναφέρετε την πρώτη αναμενόμενη επανάληψη. Το Firefly III δεν θα δημιουργήσει συναλλαγές στο παρελθόν.', - 'no_currency' => '(χωρίς νόμισμα)', - 'mandatory_for_recurring' => 'Υποχρεωτικές πληροφορίες επανάληψης', - 'mandatory_for_transaction' => 'Υποχρεωτικές πληροφορίες συναλλαγής', - 'optional_for_recurring' => 'Προαιρετικές πληροφορίες επανάληψης', - 'optional_for_transaction' => 'Προαιρετικές πληροφορίες συναλλαγής', - 'change_date_other_options' => 'Αλλάξτε την "αρχική ημερομηνία" για να δείτε περισσότερες επιλογές.', - 'mandatory_fields_for_tranaction' => 'Αυτές οι τιμές καταλήγουν στις συναλλαγές που θα δημιουργούνται', - 'click_for_calendar' => 'Κάντε κλικ εδώ για ένα ημερολόγιο που σας δείχνει πότε θα επαναληφθεί η συναλλαγή.', - 'repeat_forever' => 'Επανάληψη για πάντα', - 'repeat_until_date' => 'Επανάληψη με ημερομηνία λήξης', - 'repeat_times' => 'Επανάληψη για συγκεκριμένο αριθμό', - 'recurring_skips_one' => 'Κάθε άλλη', - 'recurring_skips_more' => 'Παραλείπει :count εμφανίσεις', - 'store_new_recurrence' => 'Αποθήκευση επαναλαμβανόμενης συναλλαγής', - 'stored_new_recurrence' => 'Η επαναλαμβανόμενη συναλλαγή ":title" αποθηκεύτηκε επιτυχώς.', - 'edit_recurrence' => 'Επεξεργασία επαναλαμβανόμενης συναλλαγής ":title"', - 'recurring_repeats_until' => 'Επαναλαμβάνεται έως τις :date', - 'recurring_repeats_forever' => 'Επαναλαμβάνεται για πάντα', - 'recurring_repeats_x_times' => 'Επαναλαμβάνεται :count φορά|Επαναλαμβάνεται :count φορές', - 'update_recurrence' => 'Ενημέρωση επαναλαμβανόμενης συναλλαγής', - 'updated_recurrence' => 'Ενημερώθηκε η επαναλαμβανόμενη συναλλαγή ":title"', - 'recurrence_is_inactive' => 'Αυτή η επαναλαμβανόμενη συναλλαγή δεν είναι ενεργή και δε θα δημιουργήσει νέες συναλλαγές.', - 'delete_recurring' => 'Διαγραφή επαναλαμβανόμενης συναλλαγής ":title"', - 'new_recurring_transaction' => 'Νέα επαναλαμβανόμενη συναλλαγή', - 'help_weekend' => 'Τι θα πρέπει να κάνει το Firefly III όταν μια επαναλαμβανόμενη συναλλαγή πέφτει σε Σάββατο ή Κυριακή;', - 'do_nothing' => 'Απλά δημιούργησε τη συναλλαγή', - 'skip_transaction' => 'Παράλειψη της εμφάνισης', - 'jump_to_friday' => 'Δημιουργία της συναλλαγής για την προηγούμενη Παρασκευή', - 'jump_to_monday' => 'Δημιουργία της συναλλαγής για την επόμενη Δευτέρα', - 'will_jump_friday' => 'Θα δημιουργηθεί την Παρασκευή αντί για Σαββατοκύριακα.', - 'will_jump_monday' => 'Θα δημιουργηθεί τη Δευτέρα αντί για Σαββατοκύριακο.', - 'except_weekends' => 'Εκτός από τα Σαββατοκύριακα', - 'recurrence_deleted' => 'Η επαναλαμβανόμενη συναλλαγή ":title" διαγράφηκε', + 'create_new_recurrence' => 'Δημιουργία νέας επαναλαμβανόμενης συναλλαγής', + 'help_first_date' => 'Αναφέρετε την πρώτη αναμενόμενη επανάληψη. Αυτό πρέπει να γίνει σε μελλοντικό χρόνο.', + 'help_first_date_no_past' => 'Αναφέρετε την πρώτη αναμενόμενη επανάληψη. Το Firefly III δεν θα δημιουργήσει συναλλαγές στο παρελθόν.', + 'no_currency' => '(χωρίς νόμισμα)', + 'mandatory_for_recurring' => 'Υποχρεωτικές πληροφορίες επανάληψης', + 'mandatory_for_transaction' => 'Υποχρεωτικές πληροφορίες συναλλαγής', + 'optional_for_recurring' => 'Προαιρετικές πληροφορίες επανάληψης', + 'optional_for_transaction' => 'Προαιρετικές πληροφορίες συναλλαγής', + 'change_date_other_options' => 'Αλλάξτε την "αρχική ημερομηνία" για να δείτε περισσότερες επιλογές.', + 'mandatory_fields_for_tranaction' => 'Αυτές οι τιμές καταλήγουν στις συναλλαγές που θα δημιουργούνται', + 'click_for_calendar' => 'Κάντε κλικ εδώ για ένα ημερολόγιο που σας δείχνει πότε θα επαναληφθεί η συναλλαγή.', + 'repeat_forever' => 'Επανάληψη για πάντα', + 'repeat_until_date' => 'Επανάληψη με ημερομηνία λήξης', + 'repeat_times' => 'Επανάληψη για συγκεκριμένο αριθμό', + 'recurring_skips_one' => 'Κάθε άλλη', + 'recurring_skips_more' => 'Παραλείπει :count εμφανίσεις', + 'store_new_recurrence' => 'Αποθήκευση επαναλαμβανόμενης συναλλαγής', + 'stored_new_recurrence' => 'Η επαναλαμβανόμενη συναλλαγή ":title" αποθηκεύτηκε επιτυχώς.', + 'edit_recurrence' => 'Επεξεργασία επαναλαμβανόμενης συναλλαγής ":title"', + 'recurring_repeats_until' => 'Επαναλαμβάνεται έως τις :date', + 'recurring_repeats_forever' => 'Επαναλαμβάνεται για πάντα', + 'recurring_repeats_x_times' => 'Επαναλαμβάνεται :count φορά|Επαναλαμβάνεται :count φορές', + 'update_recurrence' => 'Ενημέρωση επαναλαμβανόμενης συναλλαγής', + 'updated_recurrence' => 'Ενημερώθηκε η επαναλαμβανόμενη συναλλαγή ":title"', + 'recurrence_is_inactive' => 'Αυτή η επαναλαμβανόμενη συναλλαγή δεν είναι ενεργή και δε θα δημιουργήσει νέες συναλλαγές.', + 'delete_recurring' => 'Διαγραφή επαναλαμβανόμενης συναλλαγής ":title"', + 'new_recurring_transaction' => 'Νέα επαναλαμβανόμενη συναλλαγή', + 'help_weekend' => 'Τι θα πρέπει να κάνει το Firefly III όταν μια επαναλαμβανόμενη συναλλαγή πέφτει σε Σάββατο ή Κυριακή;', + 'do_nothing' => 'Απλά δημιούργησε τη συναλλαγή', + 'skip_transaction' => 'Παράλειψη της εμφάνισης', + 'jump_to_friday' => 'Δημιουργία της συναλλαγής για την προηγούμενη Παρασκευή', + 'jump_to_monday' => 'Δημιουργία της συναλλαγής για την επόμενη Δευτέρα', + 'will_jump_friday' => 'Θα δημιουργηθεί την Παρασκευή αντί για Σαββατοκύριακα.', + 'will_jump_monday' => 'Θα δημιουργηθεί τη Δευτέρα αντί για Σαββατοκύριακο.', + 'except_weekends' => 'Εκτός από τα Σαββατοκύριακα', + 'recurrence_deleted' => 'Η επαναλαμβανόμενη συναλλαγή ":title" διαγράφηκε', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Υπόλοιπο (:currency)', - 'box_spent_in_currency' => 'Δαπάνες (:currency)', - 'box_earned_in_currency' => 'Κερδήθηκαν (:currency)', - 'box_budgeted_in_currency' => 'Προϋπολογισμένο (:currency)', - 'box_bill_paid_in_currency' => 'Πληρωμένα πάγια έξοδα (:currency)', - 'box_bill_unpaid_in_currency' => 'Απλήρωτα πάγια έξοδα (:currency)', - 'box_left_to_spend_in_currency' => 'Διαθέσιμα προϋπολογισμών (:currency)', - 'box_net_worth_in_currency' => 'Καθαρή αξία (:currency)', - 'box_spend_per_day' => 'Απομένουν για δαπάνες ανά ημέρα: :amount', + 'box_balance_in_currency' => 'Υπόλοιπο (:currency)', + 'box_spent_in_currency' => 'Δαπάνες (:currency)', + 'box_earned_in_currency' => 'Κερδήθηκαν (:currency)', + 'box_budgeted_in_currency' => 'Προϋπολογισμένο (:currency)', + 'box_bill_paid_in_currency' => 'Πληρωμένα πάγια έξοδα (:currency)', + 'box_bill_unpaid_in_currency' => 'Απλήρωτα πάγια έξοδα (:currency)', + 'box_left_to_spend_in_currency' => 'Διαθέσιμα προϋπολογισμών (:currency)', + 'box_net_worth_in_currency' => 'Καθαρή αξία (:currency)', + 'box_spend_per_day' => 'Απομένουν για δαπάνες ανά ημέρα: :amount', // debug page - 'debug_page' => 'Σελίδα αποσφαλμάτωσης', - 'debug_submit_instructions' => 'Εάν αντιμετωπίζετε προβλήματα, μπορείτε να χρησιμοποιήσετε τις πληροφορίες σε αυτό το πλαίσιο ως πληροφορίες εντοπισμού σφαλμάτων. Αντιγράψτε και επικολλήστε σε νέο ή υπάρχον GitHub issue. Θα δημιουργήσει έναν όμορφο πίνακα που μπορεί να χρησιμοποιηθεί για τη γρήγορη διάγνωση του προβλήματός σας.', - 'debug_pretty_table' => 'Εάν αντιγράψετε / επικολλήσετε το παρακάτω πλαίσιο σε ένα GitHub issue, θα δημιουργήσει ένα πίνακα. Μην περιβάλλετε αυτό το κείμενο με backticks ή εισαγωγικά.', - 'debug_additional_data' => 'Μπορείτε επίσης να μοιραστείτε το περιεχόμενο του παρακάτω πλαισίου. Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό σε νέο ή υπάρχον GitHub issue. Ωστόσο, το περιεχόμενο αυτού του πλαισίου ενδέχεται να περιέχει ιδιωτικές πληροφορίες, όπως ονόματα λογαριασμών, λεπτομέρειες συναλλαγής ή διευθύνσεις ηλεκτρονικού ταχυδρομείου.', + 'debug_page' => 'Σελίδα αποσφαλμάτωσης', + 'debug_submit_instructions' => 'Εάν αντιμετωπίζετε προβλήματα, μπορείτε να χρησιμοποιήσετε τις πληροφορίες σε αυτό το πλαίσιο ως πληροφορίες εντοπισμού σφαλμάτων. Αντιγράψτε και επικολλήστε σε νέο ή υπάρχον GitHub issue. Θα δημιουργήσει έναν όμορφο πίνακα που μπορεί να χρησιμοποιηθεί για τη γρήγορη διάγνωση του προβλήματός σας.', + 'debug_pretty_table' => 'Εάν αντιγράψετε / επικολλήσετε το παρακάτω πλαίσιο σε ένα GitHub issue, θα δημιουργήσει ένα πίνακα. Μην περιβάλλετε αυτό το κείμενο με backticks ή εισαγωγικά.', + 'debug_additional_data' => 'Μπορείτε επίσης να μοιραστείτε το περιεχόμενο του παρακάτω πλαισίου. Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό σε νέο ή υπάρχον GitHub issue. Ωστόσο, το περιεχόμενο αυτού του πλαισίου ενδέχεται να περιέχει ιδιωτικές πληροφορίες, όπως ονόματα λογαριασμών, λεπτομέρειες συναλλαγής ή διευθύνσεις ηλεκτρονικού ταχυδρομείου.', // object groups - 'object_groups_menu_bar' => 'Ομάδες', - 'object_groups_page_title' => 'Ομάδες', - 'object_groups_breadcrumb' => 'Ομάδες', - 'object_groups_index' => 'Επισκόπηση', - 'object_groups' => 'Ομάδες', - 'object_groups_empty_explain' => 'Ορισμένα στοιχεία στο Firefly III μπορούν να χωριστούν σε ομάδες. Οι κουμπαράδες, για παράδειγμα, διαθέτουν το πεδίο "Ομάδα" στις οθόνες επεξεργασίας και δημιουργίας. Όταν ορίζετε αυτό το πεδίο, μπορείτε να επεξεργαστείτε τα ονόματα και τη σειρά των ομάδων σε αυτήν τη σελίδα. Για περισσότερες πληροφορίες, ανατρέξτε στις σελίδες βοήθειας στην επάνω δεξιά γωνία, στο εικονίδιο (?).', - 'object_group_title' => 'Τίτλος', - 'edit_object_group' => 'Επεξεργασία ομάδας ":title"', - 'delete_object_group' => 'Διαγραφή ομάδας ":title"', - 'update_object_group' => 'Ενημέρωση ομάδας', - 'updated_object_group' => 'Επιτυχής ενημέρωση της ομάδας ":title"', - 'deleted_object_group' => 'Επιτυχής διαγραφή της ομάδας ":title"', - 'object_group' => 'Ομάδα', + 'object_groups_menu_bar' => 'Ομάδες', + 'object_groups_page_title' => 'Ομάδες', + 'object_groups_breadcrumb' => 'Ομάδες', + 'object_groups_index' => 'Επισκόπηση', + 'object_groups' => 'Ομάδες', + 'object_groups_empty_explain' => 'Ορισμένα στοιχεία στο Firefly III μπορούν να χωριστούν σε ομάδες. Οι κουμπαράδες, για παράδειγμα, διαθέτουν το πεδίο "Ομάδα" στις οθόνες επεξεργασίας και δημιουργίας. Όταν ορίζετε αυτό το πεδίο, μπορείτε να επεξεργαστείτε τα ονόματα και τη σειρά των ομάδων σε αυτήν τη σελίδα. Για περισσότερες πληροφορίες, ανατρέξτε στις σελίδες βοήθειας στην επάνω δεξιά γωνία, στο εικονίδιο (?).', + 'object_group_title' => 'Τίτλος', + 'edit_object_group' => 'Επεξεργασία ομάδας ":title"', + 'delete_object_group' => 'Διαγραφή ομάδας ":title"', + 'update_object_group' => 'Ενημέρωση ομάδας', + 'updated_object_group' => 'Επιτυχής ενημέρωση της ομάδας ":title"', + 'deleted_object_group' => 'Επιτυχής διαγραφή της ομάδας ":title"', + 'object_group' => 'Ομάδα', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Έλεγχος καταχώρησης', - 'ale_action_log_add' => 'Προστέθηκαν :amount στον κουμπαρά ":name"', - 'ale_action_log_remove' => 'Αφαιρέθηκαν :amount από τον κουμπαρά ":name"', - 'ale_action_clear_budget' => 'Αφαιρέθηκε από τον προϋπολογισμό', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Αφαιρέθηκε από την κατηγορία', - 'ale_action_clear_notes' => 'Αφαιρέθηκαν σημειώσεις', - 'ale_action_clear_tag' => 'Αφαίρεση ετικέτας', - 'ale_action_clear_all_tags' => 'Αφαίρεση όλων των ετικετών', - 'ale_action_set_bill' => 'Σύνδεση με πάγιο έξοδο', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Ορισμός προϋπολογισμού', - 'ale_action_set_category' => 'Ορισμός κατηγορίας', - 'ale_action_set_source' => 'Ορισμός λογαριασμού προέλευσης', - 'ale_action_set_destination' => 'Ορισμός λογαριασμού προορισμού', - 'ale_action_update_transaction_type' => 'Αλλαγή τύπου συναλλαγής', - 'ale_action_update_notes' => 'Αλλαγή σημειώσεων', - 'ale_action_update_description' => 'Αλλαγή περιγραφής', - 'ale_action_add_to_piggy' => 'Κουμπαράς', - 'ale_action_remove_from_piggy' => 'Κουμπαράς', - 'ale_action_add_tag' => 'Προστέθηκε ετικέτα', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Έλεγχος καταχώρησης', + 'ale_action_log_add' => 'Προστέθηκαν :amount στον κουμπαρά ":name"', + 'ale_action_log_remove' => 'Αφαιρέθηκαν :amount από τον κουμπαρά ":name"', + 'ale_action_clear_budget' => 'Αφαιρέθηκε από τον προϋπολογισμό', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Αφαιρέθηκε από την κατηγορία', + 'ale_action_clear_notes' => 'Αφαιρέθηκαν σημειώσεις', + 'ale_action_clear_tag' => 'Αφαίρεση ετικέτας', + 'ale_action_clear_all_tags' => 'Αφαίρεση όλων των ετικετών', + 'ale_action_set_bill' => 'Σύνδεση με πάγιο έξοδο', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Ορισμός προϋπολογισμού', + 'ale_action_set_category' => 'Ορισμός κατηγορίας', + 'ale_action_set_source' => 'Ορισμός λογαριασμού προέλευσης', + 'ale_action_set_destination' => 'Ορισμός λογαριασμού προορισμού', + 'ale_action_update_transaction_type' => 'Αλλαγή τύπου συναλλαγής', + 'ale_action_update_notes' => 'Αλλαγή σημειώσεων', + 'ale_action_update_description' => 'Αλλαγή περιγραφής', + 'ale_action_add_to_piggy' => 'Κουμπαράς', + 'ale_action_remove_from_piggy' => 'Κουμπαράς', + 'ale_action_add_tag' => 'Προστέθηκε ετικέτα', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/el_GR/validation.php b/resources/lang/el_GR/validation.php index 3dd18ac0ad..9addf923e0 100644 --- a/resources/lang/el_GR/validation.php +++ b/resources/lang/el_GR/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Δεν έχετε τα σωστά δικαιώματα πρόσβασης για αυτή τη διαχείριση.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/en_GB/firefly.php b/resources/lang/en_GB/firefly.php index 67c8b5bf80..f734b30275 100644 --- a/resources/lang/en_GB/firefly.php +++ b/resources/lang/en_GB/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Close', - 'actions' => 'Actions', - 'edit' => 'Edit', - 'delete' => 'Delete', - 'split' => 'Split', - 'single_split' => 'Split', - 'clone' => 'Clone', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => 'Last seven days', - 'last_thirty_days' => 'Last thirty days', - 'last_180_days' => 'Last 180 days', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'YTD', - 'welcome_back' => 'What\'s playing?', - 'everything' => 'Everything', - 'today' => 'today', - 'customRange' => 'Custom range', - 'date_range' => 'Date range', - 'apply' => 'Apply', - 'select_date' => 'Select date..', - 'cancel' => 'Cancel', - 'from' => 'From', - 'to' => 'To', - 'structure' => 'Structure', - 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', - 'showEverything' => 'Show everything', - 'never' => 'Never', - 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', - 'removed_amount' => 'Removed :amount', - 'added_amount' => 'Added :amount', - 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', - 'Opening balance' => 'Opening balance', - 'create_new_stuff' => 'Create new stuff', - 'new_withdrawal' => 'New withdrawal', - 'create_new_transaction' => 'Create a new transaction', - 'sidebar_frontpage_create' => 'Create', - 'new_transaction' => 'New transaction', - 'no_rules_for_bill' => 'This bill has no rules associated to it.', - 'go_to_asset_accounts' => 'View your asset accounts', - 'go_to_budgets' => 'Go to your budgets', - 'go_to_withdrawals' => 'Go to your withdrawals', - 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', - 'go_to_categories' => 'Go to your categories', - 'go_to_bills' => 'Go to your bills', - 'go_to_expense_accounts' => 'See your expense accounts', - 'go_to_revenue_accounts' => 'See your revenue accounts', - 'go_to_piggies' => 'Go to your piggy banks', - 'new_deposit' => 'New deposit', - 'new_transfer' => 'New transfer', - 'new_transfers' => 'New transfer', - 'new_asset_account' => 'New asset account', - 'new_expense_account' => 'New expense account', - 'new_revenue_account' => 'New revenue account', - 'new_liabilities_account' => 'New liability', - 'new_budget' => 'New budget', - 'new_bill' => 'New bill', - 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', - 'flash_success' => 'Success!', - 'flash_info' => 'Message', - 'flash_warning' => 'Warning!', - 'flash_error' => 'Error!', - 'flash_danger' => 'Danger!', - 'flash_info_multiple' => 'There is one message|There are :count messages', - 'flash_error_multiple' => 'There is one error|There are :count errors', - 'net_worth' => 'Net worth', - 'help_for_this_page' => 'Help for this page', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'Hello!', - 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', - 'two_factor_code_here' => 'Enter code here', - 'two_factor_title' => 'Two factor authentication', - 'authenticate' => 'Authenticate', - 'two_factor_forgot_title' => 'Lost two factor authentication', - 'two_factor_forgot' => 'I forgot my two-factor thing.', - 'two_factor_lost_header' => 'Lost your two factor authentication?', - 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', - 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', - 'pref_two_factor_new_backup_codes' => 'Get new backup codes', - 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', - '2fa_i_have_them' => 'I stored them!', - 'warning_much_data' => ':days days of data may take a while to load.', - 'registered' => 'You have registered successfully!', - 'Default asset account' => 'Default asset account', - 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', - 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', - 'Savings account' => 'Savings account', - 'Credit card' => 'Credit card', - 'source_accounts' => 'Source account|Source accounts', - 'destination_accounts' => 'Destination account|Destination accounts', - 'user_id_is' => 'Your user id is :user', - 'field_supports_markdown' => 'This field supports Markdown.', - 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', - 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', - 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', - 'show_all_no_filter' => 'Show all transactions without grouping them by date.', - 'expenses_by_category' => 'Expenses by category', - 'expenses_by_budget' => 'Expenses by budget', - 'income_by_category' => 'Income by category', - 'expenses_by_asset_account' => 'Expenses by asset account', - 'expenses_by_expense_account' => 'Expenses by expense account', - 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', - 'sum_of_expenses' => 'Sum of expenses', - 'sum_of_income' => 'Sum of income', - 'liabilities' => 'Liabilities', - 'spent_in_specific_budget' => 'Spent in budget ":budget"', - 'spent_in_specific_double' => 'Spent in account ":account"', - 'earned_in_specific_double' => 'Earned in account ":account"', - 'source_account' => 'Source account', - 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', - 'destination_account' => 'Destination account', - 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', - 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', - 'left_in_budget_limit' => 'Left to spend according to budgeting', - 'current_period' => 'Current period', - 'show_the_current_period_and_overview' => 'Show the current period and overview', - 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', - 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', - 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', - 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', - 'chart_category_all' => 'Chart for all transactions for category ":name"', - 'clone_withdrawal' => 'Clone this withdrawal', - 'clone_deposit' => 'Clone this deposit', - 'clone_transfer' => 'Clone this transfer', - 'multi_select_no_selection' => 'None selected', - 'multi_select_select_all' => 'Select all', - 'multi_select_n_selected' => 'selected', - 'multi_select_all_selected' => 'All selected', - 'multi_select_filter_placeholder' => 'Find..', - 'intro_next_label' => 'Next', - 'intro_prev_label' => 'Previous', - 'intro_skip_label' => 'Skip', - 'intro_done_label' => 'Done', - 'between_dates_breadcrumb' => 'Between :start and :end', - 'all_journals_without_budget' => 'All transactions without a budget', - 'journals_without_budget' => 'Transactions without a budget', - 'all_journals_without_category' => 'All transactions without a category', - 'journals_without_category' => 'Transactions without a category', - 'all_journals_for_account' => 'All transactions for account :name', - 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', - 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Transferred', - 'all_withdrawal' => 'All expenses', - 'all_transactions' => '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', - 'invalid_server_configuration' => 'Invalid server configuration', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Quickswitch', - 'sign_in_to_start' => 'Sign in to start your session', - 'sign_in' => 'Sign in', - 'register_new_account' => 'Register a new account', - 'forgot_my_password' => 'I forgot my password', - 'problems_with_input' => 'There were some problems with your input.', - 'reset_password' => 'Reset your password', - 'button_reset_password' => 'Reset password', - 'reset_button' => 'Reset', - 'want_to_login' => 'I want to login', - 'login_page_title' => 'Login to Firefly III', - 'register_page_title' => 'Register at Firefly III', - 'forgot_pw_page_title' => 'Forgot your password for 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.', - 'no_att_demo_user' => 'The demo user can\'t upload attachments.', - 'button_register' => 'Register', - 'authorization' => 'Authorisation', - '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', - 'per_period_sum_1D' => 'Expected daily costs', - 'per_period_sum_1W' => 'Expected weekly costs', - 'per_period_sum_1M' => 'Expected monthly costs', - 'per_period_sum_3M' => 'Expected quarterly costs', - 'per_period_sum_6M' => 'Expected half-yearly costs', - 'per_period_sum_1Y' => 'Expected yearly costs', - 'average_per_bill' => 'average per bill', - 'expected_total' => 'expected total', - 'reconciliation_account_name' => ':name reconciliation (:currency)', - 'saved' => 'Saved', - 'advanced_options' => '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!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Close', + 'actions' => 'Actions', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'split' => 'Split', + 'single_split' => 'Split', + 'clone' => 'Clone', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => 'Last seven days', + 'last_thirty_days' => 'Last thirty days', + 'last_180_days' => 'Last 180 days', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'YTD', + 'welcome_back' => 'What\'s playing?', + 'everything' => 'Everything', + 'today' => 'today', + 'customRange' => 'Custom range', + 'date_range' => 'Date range', + 'apply' => 'Apply', + 'select_date' => 'Select date..', + 'cancel' => 'Cancel', + 'from' => 'From', + 'to' => 'To', + 'structure' => 'Structure', + 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', + 'showEverything' => 'Show everything', + 'never' => 'Never', + 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', + 'removed_amount' => 'Removed :amount', + 'added_amount' => 'Added :amount', + 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', + 'Opening balance' => 'Opening balance', + 'create_new_stuff' => 'Create new stuff', + 'new_withdrawal' => 'New withdrawal', + 'create_new_transaction' => 'Create a new transaction', + 'sidebar_frontpage_create' => 'Create', + 'new_transaction' => 'New transaction', + 'no_rules_for_bill' => 'This bill has no rules associated to it.', + 'go_to_asset_accounts' => 'View your asset accounts', + 'go_to_budgets' => 'Go to your budgets', + 'go_to_withdrawals' => 'Go to your withdrawals', + 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', + 'go_to_categories' => 'Go to your categories', + 'go_to_bills' => 'Go to your bills', + 'go_to_expense_accounts' => 'See your expense accounts', + 'go_to_revenue_accounts' => 'See your revenue accounts', + 'go_to_piggies' => 'Go to your piggy banks', + 'new_deposit' => 'New deposit', + 'new_transfer' => 'New transfer', + 'new_transfers' => 'New transfer', + 'new_asset_account' => 'New asset account', + 'new_expense_account' => 'New expense account', + 'new_revenue_account' => 'New revenue account', + 'new_liabilities_account' => 'New liability', + 'new_budget' => 'New budget', + 'new_bill' => 'New bill', + 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', + 'flash_success' => 'Success!', + 'flash_info' => 'Message', + 'flash_warning' => 'Warning!', + 'flash_error' => 'Error!', + 'flash_danger' => 'Danger!', + 'flash_info_multiple' => 'There is one message|There are :count messages', + 'flash_error_multiple' => 'There is one error|There are :count errors', + 'net_worth' => 'Net worth', + 'help_for_this_page' => 'Help for this page', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'Hello!', + 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', + 'two_factor_code_here' => 'Enter code here', + 'two_factor_title' => 'Two factor authentication', + 'authenticate' => 'Authenticate', + 'two_factor_forgot_title' => 'Lost two factor authentication', + 'two_factor_forgot' => 'I forgot my two-factor thing.', + 'two_factor_lost_header' => 'Lost your two factor authentication?', + 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', + 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', + 'pref_two_factor_new_backup_codes' => 'Get new backup codes', + 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', + '2fa_i_have_them' => 'I stored them!', + 'warning_much_data' => ':days days of data may take a while to load.', + 'registered' => 'You have registered successfully!', + 'Default asset account' => 'Default asset account', + 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', + 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', + 'Savings account' => 'Savings account', + 'Credit card' => 'Credit card', + 'source_accounts' => 'Source account|Source accounts', + 'destination_accounts' => 'Destination account|Destination accounts', + 'user_id_is' => 'Your user id is :user', + 'field_supports_markdown' => 'This field supports Markdown.', + 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', + 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', + 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', + 'show_all_no_filter' => 'Show all transactions without grouping them by date.', + 'expenses_by_category' => 'Expenses by category', + 'expenses_by_budget' => 'Expenses by budget', + 'income_by_category' => 'Income by category', + 'expenses_by_asset_account' => 'Expenses by asset account', + 'expenses_by_expense_account' => 'Expenses by expense account', + 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', + 'sum_of_expenses' => 'Sum of expenses', + 'sum_of_income' => 'Sum of income', + 'liabilities' => 'Liabilities', + 'spent_in_specific_budget' => 'Spent in budget ":budget"', + 'spent_in_specific_double' => 'Spent in account ":account"', + 'earned_in_specific_double' => 'Earned in account ":account"', + 'source_account' => 'Source account', + 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', + 'destination_account' => 'Destination account', + 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', + 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', + 'left_in_budget_limit' => 'Left to spend according to budgeting', + 'current_period' => 'Current period', + 'show_the_current_period_and_overview' => 'Show the current period and overview', + 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', + 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', + 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', + 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', + 'chart_category_all' => 'Chart for all transactions for category ":name"', + 'clone_withdrawal' => 'Clone this withdrawal', + 'clone_deposit' => 'Clone this deposit', + 'clone_transfer' => 'Clone this transfer', + 'multi_select_no_selection' => 'None selected', + 'multi_select_select_all' => 'Select all', + 'multi_select_n_selected' => 'selected', + 'multi_select_all_selected' => 'All selected', + 'multi_select_filter_placeholder' => 'Find..', + 'intro_next_label' => 'Next', + 'intro_prev_label' => 'Previous', + 'intro_skip_label' => 'Skip', + 'intro_done_label' => 'Done', + 'between_dates_breadcrumb' => 'Between :start and :end', + 'all_journals_without_budget' => 'All transactions without a budget', + 'journals_without_budget' => 'Transactions without a budget', + 'all_journals_without_category' => 'All transactions without a category', + 'journals_without_category' => 'Transactions without a category', + 'all_journals_for_account' => 'All transactions for account :name', + 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', + 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Transferred', + 'all_withdrawal' => 'All expenses', + 'all_transactions' => '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', + 'invalid_server_configuration' => 'Invalid server configuration', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Quickswitch', + 'sign_in_to_start' => 'Sign in to start your session', + 'sign_in' => 'Sign in', + 'register_new_account' => 'Register a new account', + 'forgot_my_password' => 'I forgot my password', + 'problems_with_input' => 'There were some problems with your input.', + 'reset_password' => 'Reset your password', + 'button_reset_password' => 'Reset password', + 'reset_button' => 'Reset', + 'want_to_login' => 'I want to login', + 'login_page_title' => 'Login to Firefly III', + 'register_page_title' => 'Register at Firefly III', + 'forgot_pw_page_title' => 'Forgot your password for 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.', + 'no_att_demo_user' => 'The demo user can\'t upload attachments.', + 'button_register' => 'Register', + 'authorization' => 'Authorisation', + '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', + 'per_period_sum_1D' => 'Expected daily costs', + 'per_period_sum_1W' => 'Expected weekly costs', + 'per_period_sum_1M' => 'Expected monthly costs', + 'per_period_sum_3M' => 'Expected quarterly costs', + 'per_period_sum_6M' => 'Expected half-yearly costs', + 'per_period_sum_1Y' => 'Expected yearly costs', + 'average_per_bill' => 'average per bill', + 'expected_total' => 'expected total', + 'reconciliation_account_name' => ':name reconciliation (:currency)', + 'saved' => 'Saved', + 'advanced_options' => '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!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Authorisation Request', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'This application will be able to:', - 'button_authorize' => 'Authorise', - 'none_in_select_list' => '(none)', - 'no_piggy_bank' => '(no piggy bank)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Paid in :currency', - 'unpaid_in_currency' => 'Unpaid in :currency', - 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', - 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', - 'all_destination_accounts' => 'Destination accounts', - 'all_source_accounts' => 'Source accounts', - 'back_to_index' => 'Back to the index', - 'cant_logout_guard' => 'Firefly III can\'t log you out.', - 'internal_reference' => 'Internal reference', + 'authorization_request' => 'Firefly III v:version Authorisation Request', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'This application will be able to:', + 'button_authorize' => 'Authorise', + 'none_in_select_list' => '(none)', + 'no_piggy_bank' => '(no piggy bank)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Paid in :currency', + 'unpaid_in_currency' => 'Unpaid in :currency', + 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', + 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', + 'all_destination_accounts' => 'Destination accounts', + 'all_source_accounts' => 'Source accounts', + 'back_to_index' => 'Back to the index', + 'cant_logout_guard' => 'Firefly III can\'t log you out.', + 'internal_reference' => 'Internal reference', // check for updates: - 'update_check_title' => 'Check for updates', - 'admin_update_check_title' => 'Automatically check for update', - 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', - 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', - 'updates_ask_me_later' => 'Ask me later', - 'updates_do_not_check' => 'Do not check for updates', - 'updates_enable_check' => 'Enable the check for updates', - 'admin_update_check_now_title' => 'Check for updates now', - 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', - 'check_for_updates_button' => 'Check now!', - 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', - 'update_version_beta' => 'This version is a BETA version. You may run into issues.', - 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'You are running :version, which is the latest available release.', - 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', - 'update_check_error' => 'An error occurred while checking for updates: :error', - 'unknown_error' => 'Unknown error. Sorry about that.', - 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', - 'admin_update_channel_title' => 'Update channel', - 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', - 'update_channel_stable' => 'Stable. Everything should work as expected.', - 'update_channel_beta' => 'Beta. New features but things may be broken.', - 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', + 'update_check_title' => 'Check for updates', + 'admin_update_check_title' => 'Automatically check for update', + 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', + 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', + 'updates_ask_me_later' => 'Ask me later', + 'updates_do_not_check' => 'Do not check for updates', + 'updates_enable_check' => 'Enable the check for updates', + 'admin_update_check_now_title' => 'Check for updates now', + 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', + 'check_for_updates_button' => 'Check now!', + 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', + 'update_version_beta' => 'This version is a BETA version. You may run into issues.', + 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'You are running :version, which is the latest available release.', + 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', + 'update_check_error' => 'An error occurred while checking for updates: :error', + 'unknown_error' => 'Unknown error. Sorry about that.', + 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', + 'admin_update_channel_title' => 'Update channel', + 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', + 'update_channel_stable' => 'Stable. Everything should work as expected.', + 'update_channel_beta' => 'Beta. New features but things may be broken.', + 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', // search - 'search' => 'Search', - 'search_query' => 'Query', - 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', - 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', - 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => 'Search', + 'search_query' => 'Query', + 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', + 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', + 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old @@ -351,368 +351,368 @@ 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_id' => 'Transaction ID is ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaction date is before or on ":value"', - 'search_modifier_date_after' => 'Transaction date is after or on ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Description is exactly ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'The transaction must have an attachment', - 'search_modifier_has_no_category' => 'The transaction must have no category', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'The transaction must have a (any) category', - 'search_modifier_has_no_budget' => 'The transaction must have no budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'The transaction must have no bill', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'The transaction has no notes', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'The transaction must have notes', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Amount is less than or equal to :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Amount is more than or equal to :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Source account name contains ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Bill is ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaction type is ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + '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_id' => 'Transaction ID is ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaction date is before or on ":value"', + 'search_modifier_date_after' => 'Transaction date is after or on ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Description is exactly ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'The transaction must have an attachment', + 'search_modifier_has_no_category' => 'The transaction must have no category', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'The transaction must have a (any) category', + 'search_modifier_has_no_budget' => 'The transaction must have no budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'The transaction must have no bill', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'The transaction has no notes', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'The transaction must have notes', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Amount is less than or equal to :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Amount is more than or equal to :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Source account name contains ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Bill is ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaction type is ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => 'Search', - 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', - 'search_error' => 'Error while searching', - 'search_searching' => 'Searching ...', - 'search_results' => 'Search results', + 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => 'Search', + 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', + 'search_error' => 'Error while searching', + 'search_searching' => 'Searching ...', + 'search_results' => 'Search results', // repeat frequencies: - 'repeat_freq_yearly' => 'yearly', - 'repeat_freq_half-year' => 'every half-year', - 'repeat_freq_quarterly' => 'quarterly', - 'repeat_freq_monthly' => 'monthly', - 'repeat_freq_weekly' => 'weekly', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'weekly', - 'quarterly' => 'quarterly', - 'half-year' => 'every half year', - 'yearly' => 'yearly', + 'repeat_freq_yearly' => 'yearly', + 'repeat_freq_half-year' => 'every half-year', + 'repeat_freq_quarterly' => 'quarterly', + 'repeat_freq_monthly' => 'monthly', + 'repeat_freq_weekly' => 'weekly', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'weekly', + 'quarterly' => 'quarterly', + 'half-year' => 'every half year', + 'yearly' => 'yearly', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Rules', - 'rule_name' => 'Name of rule', - 'rule_triggers' => 'Rule triggers when', - 'rule_actions' => 'Rule will', - 'new_rule' => 'New rule', - 'new_rule_group' => 'New rule group', - 'rule_priority_up' => 'Give rule more priority', - 'rule_priority_down' => 'Give rule less priority', - 'make_new_rule_group' => 'Make new rule group', - 'store_new_rule_group' => 'Store new rule group', - 'created_new_rule_group' => 'New rule group ":title" stored!', - 'updated_rule_group' => 'Successfully updated rule group ":title".', - 'edit_rule_group' => 'Edit rule group ":title"', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => 'Delete rule group ":title"', - 'deleted_rule_group' => 'Deleted rule group ":title"', - 'update_rule_group' => 'Update rule group', - 'no_rules_in_group' => 'There are no rules in this group', - 'move_rule_group_up' => 'Move rule group up', - 'move_rule_group_down' => 'Move rule group down', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Make a new rule in rule group ":title"', - 'make_new_rule_no_group' => 'Make a new rule', - 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => 'strict rule', - 'rule_is_not_strict' => 'non-strict rule', - 'rule_help_stop_processing' => 'When you tick this box, later rules in this group will not be executed.', - 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', - 'rule_help_active' => 'Inactive rules will never fire.', - 'stored_new_rule' => 'Stored new rule with title ":title"', - 'deleted_rule' => 'Deleted rule with title ":title"', - 'store_new_rule' => 'Store new rule', - 'updated_rule' => 'Updated rule with title ":title"', - 'default_rule_group_name' => 'Default rules', - 'default_rule_group_description' => 'All your rules not in a particular group.', - 'trigger' => 'Trigger', - 'trigger_value' => 'Trigger on value', - 'stop_processing_other_triggers' => 'Stop processing other triggers', - 'add_rule_trigger' => 'Add new trigger', - 'action' => 'Action', - 'action_value' => 'Action value', - 'stop_executing_other_actions' => 'Stop executing other actions', - 'add_rule_action' => 'Add new action', - 'edit_rule' => 'Edit rule ":title"', - 'delete_rule' => 'Delete rule ":title"', - 'update_rule' => 'Update rule', - 'test_rule_triggers' => 'See matching transactions', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => 'No valid triggers provided.', - 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', - 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', - 'include_transactions_from_accounts' => 'Include transactions from these accounts', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Execute', - 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', - 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', - 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Rules', + 'rule_name' => 'Name of rule', + 'rule_triggers' => 'Rule triggers when', + 'rule_actions' => 'Rule will', + 'new_rule' => 'New rule', + 'new_rule_group' => 'New rule group', + 'rule_priority_up' => 'Give rule more priority', + 'rule_priority_down' => 'Give rule less priority', + 'make_new_rule_group' => 'Make new rule group', + 'store_new_rule_group' => 'Store new rule group', + 'created_new_rule_group' => 'New rule group ":title" stored!', + 'updated_rule_group' => 'Successfully updated rule group ":title".', + 'edit_rule_group' => 'Edit rule group ":title"', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => 'Delete rule group ":title"', + 'deleted_rule_group' => 'Deleted rule group ":title"', + 'update_rule_group' => 'Update rule group', + 'no_rules_in_group' => 'There are no rules in this group', + 'move_rule_group_up' => 'Move rule group up', + 'move_rule_group_down' => 'Move rule group down', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Make a new rule in rule group ":title"', + 'make_new_rule_no_group' => 'Make a new rule', + 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => 'strict rule', + 'rule_is_not_strict' => 'non-strict rule', + 'rule_help_stop_processing' => 'When you tick this box, later rules in this group will not be executed.', + 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', + 'rule_help_active' => 'Inactive rules will never fire.', + 'stored_new_rule' => 'Stored new rule with title ":title"', + 'deleted_rule' => 'Deleted rule with title ":title"', + 'store_new_rule' => 'Store new rule', + 'updated_rule' => 'Updated rule with title ":title"', + 'default_rule_group_name' => 'Default rules', + 'default_rule_group_description' => 'All your rules not in a particular group.', + 'trigger' => 'Trigger', + 'trigger_value' => 'Trigger on value', + 'stop_processing_other_triggers' => 'Stop processing other triggers', + 'add_rule_trigger' => 'Add new trigger', + 'action' => 'Action', + 'action_value' => 'Action value', + 'stop_executing_other_actions' => 'Stop executing other actions', + 'add_rule_action' => 'Add new action', + 'edit_rule' => 'Edit rule ":title"', + 'delete_rule' => 'Delete rule ":title"', + 'update_rule' => 'Update rule', + 'test_rule_triggers' => 'See matching transactions', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => 'No valid triggers provided.', + 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', + 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', + 'include_transactions_from_accounts' => 'Include transactions from these accounts', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Execute', + 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', + 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', + 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', // actions and triggers - 'rule_trigger_store_journal' => 'When a transaction is created', - 'rule_trigger_update_journal' => 'When a transaction is updated', - 'rule_trigger_user_action' => 'User action is ":trigger_value"', + 'rule_trigger_store_journal' => 'When a transaction is created', + 'rule_trigger_update_journal' => 'When a transaction is updated', + 'rule_trigger_user_action' => 'User action is ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', - 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Category is..', - 'rule_trigger_category_is' => 'Category is ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Description starts with..', - 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Description ends with..', - 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Description contains..', - 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Description is..', - 'rule_trigger_description_is' => 'Description is ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaction date is before..', - 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaction date is after..', - 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget is..', - 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaction currency is..', - 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Has no category', - 'rule_trigger_has_no_category' => 'Transaction has no category', - 'rule_trigger_has_any_category_choice' => 'Has a (any) category', - 'rule_trigger_has_any_category' => 'Transaction has a (any) category', - 'rule_trigger_has_no_budget_choice' => 'Has no budget', - 'rule_trigger_has_no_budget' => 'Transaction has no budget', - 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', - 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', - 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', - 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', - 'rule_trigger_any_notes_choice' => 'Has (any) notes', - 'rule_trigger_any_notes' => 'Transaction has (any) notes', - 'rule_trigger_no_notes_choice' => 'Has no notes', - 'rule_trigger_no_notes' => 'Transaction has no notes', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', + 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Category is..', + 'rule_trigger_category_is' => 'Category is ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Description starts with..', + 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Description ends with..', + 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Description contains..', + 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Description is..', + 'rule_trigger_description_is' => 'Description is ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaction date is before..', + 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaction date is after..', + 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget is..', + 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaction currency is..', + 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Has no category', + 'rule_trigger_has_no_category' => 'Transaction has no category', + 'rule_trigger_has_any_category_choice' => 'Has a (any) category', + 'rule_trigger_has_any_category' => 'Transaction has a (any) category', + 'rule_trigger_has_no_budget_choice' => 'Has no budget', + 'rule_trigger_has_no_budget' => 'Transaction has no budget', + 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', + 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', + 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', + 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', + 'rule_trigger_any_notes_choice' => 'Has (any) notes', + 'rule_trigger_any_notes' => 'Transaction has (any) notes', + 'rule_trigger_no_notes_choice' => 'Has no notes', + 'rule_trigger_no_notes' => 'Transaction has no notes', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Set category to ":action_value"', - 'rule_action_clear_category' => 'Clear category', - 'rule_action_set_budget' => 'Set budget to ":action_value"', - 'rule_action_clear_budget' => 'Clear budget', - 'rule_action_add_tag' => 'Add tag ":action_value"', - 'rule_action_remove_tag' => 'Remove tag ":action_value"', - 'rule_action_remove_all_tags' => 'Remove all tags', - 'rule_action_set_description' => 'Set description to ":action_value"', - 'rule_action_append_description' => 'Append description with ":action_value"', - 'rule_action_prepend_description' => 'Prepend description with ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Clear any category', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Clear any budget', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Remove all tags', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Set source account to :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Set destination account to :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Append notes with ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', - 'rule_action_clear_notes_choice' => 'Remove any notes', - 'rule_action_clear_notes' => 'Remove any notes', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link to bill ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Set notes to ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', - 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', - 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', - 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Rule group for bills', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Create a new rule for bill ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Rule for bill ":name"', - 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Set category to ":action_value"', + 'rule_action_clear_category' => 'Clear category', + 'rule_action_set_budget' => 'Set budget to ":action_value"', + 'rule_action_clear_budget' => 'Clear budget', + 'rule_action_add_tag' => 'Add tag ":action_value"', + 'rule_action_remove_tag' => 'Remove tag ":action_value"', + 'rule_action_remove_all_tags' => 'Remove all tags', + 'rule_action_set_description' => 'Set description to ":action_value"', + 'rule_action_append_description' => 'Append description with ":action_value"', + 'rule_action_prepend_description' => 'Prepend description with ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Clear any category', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Clear any budget', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Remove all tags', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Set source account to :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Set destination account to :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Append notes with ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', + 'rule_action_clear_notes_choice' => 'Remove any notes', + 'rule_action_clear_notes' => 'Remove any notes', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link to bill ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Set notes to ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', + 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', + 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', + 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Rule group for bills', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Create a new rule for bill ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Rule for bill ":name"', + 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => 'Store new tag', - 'update_tag' => 'Update tag', - 'no_location_set' => 'No location set.', - 'meta_data' => 'Meta data', - 'location' => 'Location', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Without date', - 'result' => 'Result', - 'sums_apply_to_range' => 'All sums apply to the selected range', - 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Clear location', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Store new tag', + 'update_tag' => 'Update tag', + 'no_location_set' => 'No location set.', + 'meta_data' => 'Meta data', + 'location' => 'Location', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Without date', + 'result' => 'Result', + 'sums_apply_to_range' => 'All sums apply to the selected range', + 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Clear location', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(equal to language)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Home screen accounts', - 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', - 'pref_view_range' => 'View range', - 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', - 'pref_1D' => 'One day', - 'pref_1W' => 'One week', - 'pref_1M' => 'One month', - 'pref_3M' => 'Three months (quarter)', - 'pref_6M' => 'Six months', - 'pref_1Y' => 'One year', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Languages', - 'pref_locale' => 'Locale settings', - 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => 'Fiscal year settings', - 'pref_custom_fiscal_year_label' => 'Enabled', - 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', - 'pref_fiscal_year_start_label' => 'Fiscal year start date', - 'pref_two_factor_auth' => '2-step verification', - 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Enable 2-step verification', - 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', - 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', - 'pref_two_factor_auth_code' => 'Verify code', - 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', - 'pref_two_factor_auth_reset_code' => 'Reset verification code', - 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => 'Save settings', - 'saved_preferences' => 'Preferences saved!', - 'preferences_general' => 'General', - 'preferences_frontpage' => 'Home screen', - 'preferences_security' => 'Security', - 'preferences_layout' => 'Layout', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Show deposits on the home screen', - 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', - 'pref_home_do_show_deposits' => 'Yes, show them', - 'successful_count' => 'of which :count successful', - 'list_page_size_title' => 'Page size', - 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', - 'list_page_size_label' => 'Page size', - 'between_dates' => '(:start and :end)', - 'pref_optional_fields_transaction' => 'Optional fields for transactions', - 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', - 'optional_tj_date_fields' => 'Date fields', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Attachment fields', - 'pref_optional_tj_interest_date' => 'Interest date', - 'pref_optional_tj_book_date' => 'Book date', - 'pref_optional_tj_process_date' => 'Processing date', - 'pref_optional_tj_due_date' => 'Due date', - 'pref_optional_tj_payment_date' => 'Payment date', - 'pref_optional_tj_invoice_date' => 'Invoice date', - 'pref_optional_tj_internal_reference' => 'Internal reference', - 'pref_optional_tj_notes' => 'Notes', - 'pref_optional_tj_attachments' => 'Attachments', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Dates', - 'optional_field_meta_business' => 'Business', - 'optional_field_attachments' => 'Attachments', - 'optional_field_meta_data' => 'Optional meta data', - 'external_url' => 'External URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(equal to language)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Home screen accounts', + 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', + 'pref_view_range' => 'View range', + 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', + 'pref_1D' => 'One day', + 'pref_1W' => 'One week', + 'pref_1M' => 'One month', + 'pref_3M' => 'Three months (quarter)', + 'pref_6M' => 'Six months', + 'pref_1Y' => 'One year', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Languages', + 'pref_locale' => 'Locale settings', + 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => 'Fiscal year settings', + 'pref_custom_fiscal_year_label' => 'Enabled', + 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', + 'pref_fiscal_year_start_label' => 'Fiscal year start date', + 'pref_two_factor_auth' => '2-step verification', + 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Enable 2-step verification', + 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', + 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', + 'pref_two_factor_auth_code' => 'Verify code', + 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', + 'pref_two_factor_auth_reset_code' => 'Reset verification code', + 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => 'Save settings', + 'saved_preferences' => 'Preferences saved!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Home screen', + 'preferences_security' => 'Security', + 'preferences_layout' => 'Layout', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Show deposits on the home screen', + 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', + 'pref_home_do_show_deposits' => 'Yes, show them', + 'successful_count' => 'of which :count successful', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', + 'between_dates' => '(:start and :end)', + 'pref_optional_fields_transaction' => 'Optional fields for transactions', + 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', + 'optional_tj_date_fields' => 'Date fields', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Attachment fields', + 'pref_optional_tj_interest_date' => 'Interest date', + 'pref_optional_tj_book_date' => 'Book date', + 'pref_optional_tj_process_date' => 'Processing date', + 'pref_optional_tj_due_date' => 'Due date', + 'pref_optional_tj_payment_date' => 'Payment date', + 'pref_optional_tj_invoice_date' => 'Invoice date', + 'pref_optional_tj_internal_reference' => 'Internal reference', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Attachments', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Business', + 'optional_field_attachments' => 'Attachments', + 'optional_field_meta_data' => 'Optional meta data', + 'external_url' => 'External URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Delete ALL your categories', - 'delete_all_tags' => 'Delete ALL your tags', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Change your password', - 'delete_account' => 'Delete account', - 'current_password' => 'Current password', - 'new_password' => 'New password', - 'new_password_again' => 'New password (again)', - 'delete_your_account' => 'Delete your account', - 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', - 'delete_your_account_password' => 'Enter your password to continue.', - 'password' => 'Password', - 'are_you_sure' => 'Are you sure? You cannot undo this.', - 'delete_account_button' => 'DELETE your account', - 'invalid_current_password' => 'Invalid current password!', - 'password_changed' => 'Password changed!', - 'should_change' => 'The idea is to change your password.', - 'invalid_password' => 'Invalid password!', - 'what_is_pw_security' => 'What is "verify password security"?', - 'secure_pw_title' => 'How to choose a secure password', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', - 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', - 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', - 'secure_pw_working_title' => 'How does it work?', - 'secure_pw_working' => 'By ticking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Should I tick the box?', - 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', - 'command_line_token' => 'Command line token', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'A new command line token was generated', - 'change_your_email' => 'Change your email address', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Until you verify your email address, you cannot login.', - 'login_with_new_email' => 'You can now login with your new email address.', - 'login_with_old_email' => 'You can now login with your old email address again.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Create Client', - 'profile_oauth_edit_client' => 'Edit Client', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Redirect URL', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Authorized clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Create new token', - 'profile_create_token' => 'Create token', - 'profile_create' => 'Create', - 'profile_save_changes' => 'Save changes', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Delete ALL your categories', + 'delete_all_tags' => 'Delete ALL your tags', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Change your password', + 'delete_account' => 'Delete account', + 'current_password' => 'Current password', + 'new_password' => 'New password', + 'new_password_again' => 'New password (again)', + 'delete_your_account' => 'Delete your account', + 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', + 'delete_your_account_password' => 'Enter your password to continue.', + 'password' => 'Password', + 'are_you_sure' => 'Are you sure? You cannot undo this.', + 'delete_account_button' => 'DELETE your account', + 'invalid_current_password' => 'Invalid current password!', + 'password_changed' => 'Password changed!', + 'should_change' => 'The idea is to change your password.', + 'invalid_password' => 'Invalid password!', + 'what_is_pw_security' => 'What is "verify password security"?', + 'secure_pw_title' => 'How to choose a secure password', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', + 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', + 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', + 'secure_pw_working_title' => 'How does it work?', + 'secure_pw_working' => 'By ticking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Should I tick the box?', + 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', + 'command_line_token' => 'Command line token', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'A new command line token was generated', + 'change_your_email' => 'Change your email address', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Until you verify your email address, you cannot login.', + 'login_with_new_email' => 'You can now login with your new email address.', + 'login_with_old_email' => 'You can now login with your old email address again.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Create Client', + 'profile_oauth_edit_client' => 'Edit Client', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Redirect URL', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Authorized clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Create new token', + 'profile_create_token' => 'Create token', + 'profile_create' => 'Create', + 'profile_save_changes' => 'Save changes', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Export data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Export data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'One attachment|:count attachments', - 'attachments' => 'Attachments', - 'edit_attachment' => 'Edit attachment ":name"', - 'update_attachment' => 'Update attachment', - 'delete_attachment' => 'Delete attachment ":name"', - 'attachment_deleted' => 'Deleted attachment ":name"', - 'liabilities_deleted' => 'Deleted liability ":name"', - 'attachment_updated' => 'Updated attachment ":name"', - 'upload_max_file_size' => 'Maximum file size: :size', - 'list_all_attachments' => 'List of all attachments', + 'nr_of_attachments' => 'One attachment|:count attachments', + 'attachments' => 'Attachments', + 'edit_attachment' => 'Edit attachment ":name"', + 'update_attachment' => 'Update attachment', + 'delete_attachment' => 'Delete attachment ":name"', + 'attachment_deleted' => 'Deleted attachment ":name"', + 'liabilities_deleted' => 'Deleted liability ":name"', + 'attachment_updated' => 'Updated attachment ":name"', + 'upload_max_file_size' => 'Maximum file size: :size', + 'list_all_attachments' => 'List of all attachments', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Expenses', - 'title_withdrawal' => 'Expenses', - 'title_revenue' => 'Revenue / income', - 'title_deposit' => 'Revenue / income', - 'title_transfer' => 'Transfers', - 'title_transfers' => 'Transfers', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Expenses', + 'title_withdrawal' => 'Expenses', + 'title_revenue' => 'Revenue / income', + 'title_deposit' => 'Revenue / income', + 'title_transfer' => 'Transfers', + 'title_transfers' => 'Transfers', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', - 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', - 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', - 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', - 'convert_to_Deposit' => 'Convert ":description" to a deposit', - 'convert_to_Transfer' => 'Convert ":description" to a transfer', - 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', - 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', - 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', - 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', - 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', - 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', - 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', - 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', - 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', - 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', - 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', - 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', - 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', - 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', - 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', - 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', - 'converted_to_Deposit' => 'The transaction has been converted to a deposit', - 'converted_to_Transfer' => 'The transaction has been converted to a transfer', - 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Convert to a withdrawal', - 'convert_to_deposit' => 'Convert to a deposit', - 'convert_to_transfer' => 'Convert to a transfer', + 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', + 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', + 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', + 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', + 'convert_to_Deposit' => 'Convert ":description" to a deposit', + 'convert_to_Transfer' => 'Convert ":description" to a transfer', + 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', + 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', + 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', + 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', + 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', + 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', + 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', + 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', + 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', + 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', + 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', + 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', + 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', + 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', + 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', + 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'The transaction has been converted to a transfer', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Convert to a withdrawal', + 'convert_to_deposit' => 'Convert to a deposit', + 'convert_to_transfer' => 'Convert to a transfer', // create new stuff: - 'create_new_withdrawal' => 'Create new withdrawal', - 'create_new_deposit' => 'Create new deposit', - 'create_new_transfer' => 'Create new transfer', - 'create_new_asset' => 'Create new asset account', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Create new expense account', - 'create_new_revenue' => 'Create new revenue account', - 'create_new_piggy_bank' => 'Create new piggy bank', - 'create_new_bill' => 'Create new bill', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Create new withdrawal', + 'create_new_deposit' => 'Create new deposit', + 'create_new_transfer' => 'Create new transfer', + 'create_new_asset' => 'Create new asset account', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Create new expense account', + 'create_new_revenue' => 'Create new revenue account', + 'create_new_piggy_bank' => 'Create new piggy bank', + 'create_new_bill' => 'Create new bill', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Create a new currency', - 'store_currency' => 'Store new currency', - 'update_currency' => 'Update currency', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Currency :name deleted', - 'created_currency' => 'Currency :name created', - 'could_not_store_currency' => 'Could not store the new currency.', - 'updated_currency' => 'Currency :name updated', - 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', - 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', - 'make_default_currency' => 'Make default', - 'default_currency' => 'default', - 'currency_is_disabled' => 'Disabled', - 'enable_currency' => 'Enable', - 'disable_currency' => 'Disable', - 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', - 'currency_is_now_enabled' => 'Currency ":name" has been enabled', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Currency ":name" has been disabled', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Create a new currency', + 'store_currency' => 'Store new currency', + 'update_currency' => 'Update currency', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Currency :name deleted', + 'created_currency' => 'Currency :name created', + 'could_not_store_currency' => 'Could not store the new currency.', + 'updated_currency' => 'Currency :name updated', + 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', + 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', + 'make_default_currency' => 'Make default', + 'default_currency' => 'default', + 'currency_is_disabled' => 'Disabled', + 'enable_currency' => 'Enable', + 'disable_currency' => 'Disable', + 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', + 'currency_is_now_enabled' => 'Currency ":name" has been enabled', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Currency ":name" has been disabled', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Mandatory fields', - 'optionalFields' => 'Optional fields', - 'options' => 'Options', + 'mandatoryFields' => 'Mandatory fields', + 'optionalFields' => 'Optional fields', + 'options' => 'Options', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => 'Create a new budget', - 'store_new_budget' => 'Store new budget', - 'stored_new_budget' => 'Stored new budget ":name"', - 'available_between' => 'Available between :start and :end', - 'transactionsWithoutBudget' => 'Expenses without budget', - 'transactions_no_budget' => 'Expenses without budget between :start and :end', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'New budget', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Inactive budgets', - 'without_budget_between' => 'Transactions without a budget between :start and :end', - 'delete_budget' => 'Delete budget ":name"', - 'deleted_budget' => 'Deleted budget ":name"', - 'edit_budget' => 'Edit budget ":name"', - 'updated_budget' => 'Updated budget ":name"', - 'update_amount' => 'Update amount', - 'update_budget' => 'Update budget', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => 'Period navigator', - 'info_on_available_amount' => 'What do I have available?', - 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', - 'suggested' => 'Suggested', - 'average_between' => 'Average between :start and :end', - 'transferred_in' => 'Transferred (in)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daily', - 'auto_budget_period_weekly' => 'Weekly', - 'auto_budget_period_monthly' => 'Monthly', - 'auto_budget_period_quarterly' => 'Quarterly', - 'auto_budget_period_half_year' => 'Every half year', - 'auto_budget_period_yearly' => 'Yearly', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => 'Create a new budget', + 'store_new_budget' => 'Store new budget', + 'stored_new_budget' => 'Stored new budget ":name"', + 'available_between' => 'Available between :start and :end', + 'transactionsWithoutBudget' => 'Expenses without budget', + 'transactions_no_budget' => 'Expenses without budget between :start and :end', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'New budget', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Inactive budgets', + 'without_budget_between' => 'Transactions without a budget between :start and :end', + 'delete_budget' => 'Delete budget ":name"', + 'deleted_budget' => 'Deleted budget ":name"', + 'edit_budget' => 'Edit budget ":name"', + 'updated_budget' => 'Updated budget ":name"', + 'update_amount' => 'Update amount', + 'update_budget' => 'Update budget', + 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => 'Period navigator', + 'info_on_available_amount' => 'What do I have available?', + 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', + 'suggested' => 'Suggested', + 'average_between' => 'Average between :start and :end', + 'transferred_in' => 'Transferred (in)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daily', + 'auto_budget_period_weekly' => 'Weekly', + 'auto_budget_period_monthly' => 'Monthly', + 'auto_budget_period_quarterly' => 'Quarterly', + 'auto_budget_period_half_year' => 'Every half year', + 'auto_budget_period_yearly' => 'Yearly', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Bill matches transactions between :low and :high.', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => 'Rules related to this bill', - 'repeats' => 'Repeats', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Connected transactions', - 'auto_match_on' => 'Automatically matched by Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Next expected match', - 'delete_bill' => 'Delete bill ":name"', - 'deleted_bill' => 'Deleted bill ":name"', - 'edit_bill' => 'Edit bill ":name"', - 'more' => 'More', - 'rescan_old' => 'Run rules again, on all transactions', - 'update_bill' => 'Update bill', - 'updated_bill' => 'Updated bill ":name"', - 'store_new_bill' => 'Store new bill', - 'stored_new_bill' => 'Stored new bill ":name"', - 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Average bill amount (:year)', - 'average_bill_amount_overall' => 'Average bill amount (overall)', - 'bill_is_active' => 'Bill is active', - 'bill_expected_between' => 'Expected between :start and :end', - 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', - 'skips_over' => 'skips over', - 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', - 'list_inactive_rule' => 'inactive rule', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Bill matches transactions between :low and :high.', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => 'Rules related to this bill', + 'repeats' => 'Repeats', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Connected transactions', + 'auto_match_on' => 'Automatically matched by Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Next expected match', + 'delete_bill' => 'Delete bill ":name"', + 'deleted_bill' => 'Deleted bill ":name"', + 'edit_bill' => 'Edit bill ":name"', + 'more' => 'More', + 'rescan_old' => 'Run rules again, on all transactions', + 'update_bill' => 'Update bill', + 'updated_bill' => 'Updated bill ":name"', + 'store_new_bill' => 'Store new bill', + 'stored_new_bill' => 'Stored new bill ":name"', + 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Average bill amount (:year)', + 'average_bill_amount_overall' => 'Average bill amount (overall)', + 'bill_is_active' => 'Bill is active', + 'bill_expected_between' => 'Expected between :start and :end', + 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', + 'skips_over' => 'skips over', + 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', + 'list_inactive_rule' => 'inactive rule', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Details for asset account ":name"', - 'details_for_expense' => 'Details for expense account ":name"', - 'details_for_revenue' => 'Details for revenue account ":name"', - 'details_for_cash' => 'Details for cash account ":name"', - 'store_new_asset_account' => 'Store new asset account', - 'store_new_expense_account' => 'Store new expense account', - 'store_new_revenue_account' => 'Store new revenue account', - 'edit_asset_account' => 'Edit asset account ":name"', - 'edit_expense_account' => 'Edit expense account ":name"', - 'edit_revenue_account' => 'Edit revenue account ":name"', - 'delete_asset_account' => 'Delete asset account ":name"', - 'delete_expense_account' => 'Delete expense account ":name"', - 'delete_revenue_account' => 'Delete revenue account ":name"', - 'delete_liabilities_account' => 'Delete liability ":name"', - 'asset_deleted' => 'Successfully deleted asset account ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Successfully deleted expense account ":name"', - 'revenue_deleted' => 'Successfully deleted revenue account ":name"', - 'update_asset_account' => 'Update asset account', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Update liability', - 'update_expense_account' => 'Update expense account', - 'update_revenue_account' => 'Update revenue account', - 'make_new_asset_account' => 'Create a new asset account', - 'make_new_expense_account' => 'Create a new expense account', - 'make_new_revenue_account' => 'Create a new revenue account', - 'make_new_liabilities_account' => 'Create a new liability', - 'asset_accounts' => 'Asset accounts', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Expense accounts', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Revenue accounts', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Cash accounts', - 'Cash account' => 'Cash account', - 'liabilities_accounts' => 'Liabilities', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Reconcile account ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Delete reconciliation', - 'update_reconciliation' => 'Update reconciliation', - 'amount_cannot_be_zero' => 'The amount cannot be zero', - 'end_of_reconcile_period' => 'End of reconcile period: :period', - 'start_of_reconcile_period' => 'Start of reconcile period: :period', - 'start_balance' => 'Start balance', - 'end_balance' => 'End balance', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Update selection', - 'store_reconcile' => 'Store reconciliation', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Reconciliation', - 'reconciliation' => 'Reconciliation', - 'reconcile_options' => 'Reconciliation options', - 'reconcile_range' => 'Reconciliation range', - 'start_reconcile' => 'Start reconciling', - 'cash_account_type' => 'Cash', - 'cash' => 'cash', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Account type', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'New account ":name" stored!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Updated account ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Credit card options', - 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Please select at least one category', - 'select_at_least_one_budget' => 'Please select at least one budget', - 'select_at_least_one_tag' => 'Please select at least one tag', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'You can always edit or delete a correction later.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Reconciliation stored', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Reconcile this account', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Confirm reconciliation', - 'submitted_start_balance' => 'Submitted start balance', - 'selected_transactions' => 'Selected transactions (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Submitted end balance', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'Per day', - 'interest_calc_monthly' => 'Per month', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Details for asset account ":name"', + 'details_for_expense' => 'Details for expense account ":name"', + 'details_for_revenue' => 'Details for revenue account ":name"', + 'details_for_cash' => 'Details for cash account ":name"', + 'store_new_asset_account' => 'Store new asset account', + 'store_new_expense_account' => 'Store new expense account', + 'store_new_revenue_account' => 'Store new revenue account', + 'edit_asset_account' => 'Edit asset account ":name"', + 'edit_expense_account' => 'Edit expense account ":name"', + 'edit_revenue_account' => 'Edit revenue account ":name"', + 'delete_asset_account' => 'Delete asset account ":name"', + 'delete_expense_account' => 'Delete expense account ":name"', + 'delete_revenue_account' => 'Delete revenue account ":name"', + 'delete_liabilities_account' => 'Delete liability ":name"', + 'asset_deleted' => 'Successfully deleted asset account ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Successfully deleted expense account ":name"', + 'revenue_deleted' => 'Successfully deleted revenue account ":name"', + 'update_asset_account' => 'Update asset account', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Update liability', + 'update_expense_account' => 'Update expense account', + 'update_revenue_account' => 'Update revenue account', + 'make_new_asset_account' => 'Create a new asset account', + 'make_new_expense_account' => 'Create a new expense account', + 'make_new_revenue_account' => 'Create a new revenue account', + 'make_new_liabilities_account' => 'Create a new liability', + 'asset_accounts' => 'Asset accounts', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Expense accounts', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Revenue accounts', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Cash accounts', + 'Cash account' => 'Cash account', + 'liabilities_accounts' => 'Liabilities', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Reconcile account ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Delete reconciliation', + 'update_reconciliation' => 'Update reconciliation', + 'amount_cannot_be_zero' => 'The amount cannot be zero', + 'end_of_reconcile_period' => 'End of reconcile period: :period', + 'start_of_reconcile_period' => 'Start of reconcile period: :period', + 'start_balance' => 'Start balance', + 'end_balance' => 'End balance', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Update selection', + 'store_reconcile' => 'Store reconciliation', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Reconciliation', + 'reconciliation' => 'Reconciliation', + 'reconcile_options' => 'Reconciliation options', + 'reconcile_range' => 'Reconciliation range', + 'start_reconcile' => 'Start reconciling', + 'cash_account_type' => 'Cash', + 'cash' => 'cash', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'New account ":name" stored!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Updated account ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Credit card options', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Please select at least one category', + 'select_at_least_one_budget' => 'Please select at least one budget', + 'select_at_least_one_tag' => 'Please select at least one tag', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'You can always edit or delete a correction later.', + 'must_be_asset_account' => 'You can only reconcile asset accounts', + 'reconciliation_stored' => 'Reconciliation stored', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Reconcile this account', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Confirm reconciliation', + 'submitted_start_balance' => 'Submitted start balance', + 'selected_transactions' => 'Selected transactions (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Submitted end balance', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'Per day', + 'interest_calc_monthly' => 'Per month', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'List options', // categories: - 'new_category' => 'New category', - 'create_new_category' => 'Create a new category', - 'without_category' => 'Without a category', - 'update_category' => 'Update category', - 'updated_category' => 'Updated category ":name"', - 'categories' => 'Categories', - 'edit_category' => 'Edit category ":name"', - 'no_category' => '(no category)', - 'unknown_category_plain' => 'No category', - 'category' => 'Category', - 'delete_category' => 'Delete category ":name"', - 'deleted_category' => 'Deleted category ":name"', - 'store_category' => 'Store new category', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Without category between :start and :end', + 'new_category' => 'New category', + 'create_new_category' => 'Create a new category', + 'without_category' => 'Without a category', + 'update_category' => 'Update category', + 'updated_category' => 'Updated category ":name"', + 'categories' => 'Categories', + 'edit_category' => 'Edit category ":name"', + 'no_category' => '(no category)', + 'unknown_category_plain' => 'No category', + 'category' => 'Category', + 'delete_category' => 'Delete category ":name"', + 'deleted_category' => 'Deleted category ":name"', + 'store_category' => 'Store new category', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Without category between :start and :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Update withdrawal', - 'update_deposit' => 'Update deposit', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Update transfer', - 'updated_withdrawal' => 'Updated withdrawal ":description"', - 'updated_deposit' => 'Updated deposit ":description"', - 'updated_transfer' => 'Updated transfer ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Delete withdrawal ":description"', - 'delete_deposit' => 'Delete deposit ":description"', - 'delete_transfer' => 'Delete transfer ":description"', - 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', - 'deleted_deposit' => 'Successfully deleted deposit ":description"', - 'deleted_transfer' => 'Successfully deleted transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Successfully created new transaction ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Select transactions', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', - 'stop_selection' => 'Stop selecting transactions', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Delete a number of transactions', - 'mass_edit_journals' => 'Edit a number of transactions', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(no budget)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Create', - 'empty' => '(empty)', - 'all_other_budgets' => '(all other budgets)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tag', - 'no_budget_squared' => '(no budget)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(no account type)', - 'opt_group_no_account_type' => '(no account type)', - 'opt_group_defaultAsset' => 'Default asset accounts', - 'opt_group_savingAsset' => 'Savings accounts', - 'opt_group_sharedAsset' => 'Shared asset accounts', - 'opt_group_ccAsset' => 'Credit cards', - 'opt_group_cashWalletAsset' => 'Cash wallets', - 'opt_group_expense_account' => 'Expense accounts', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => 'Liability: Loan', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => 'Liability: Debt', - 'opt_group_l_Mortgage' => 'Liability: Mortgage', - 'opt_group_l_Credit card' => 'Liability: Credit card', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', - 'attachment_not_found' => 'This attachment could not be found.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, untick the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Update withdrawal', + 'update_deposit' => 'Update deposit', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Update transfer', + 'updated_withdrawal' => 'Updated withdrawal ":description"', + 'updated_deposit' => 'Updated deposit ":description"', + 'updated_transfer' => 'Updated transfer ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Delete withdrawal ":description"', + 'delete_deposit' => 'Delete deposit ":description"', + 'delete_transfer' => 'Delete transfer ":description"', + 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', + 'deleted_deposit' => 'Successfully deleted deposit ":description"', + 'deleted_transfer' => 'Successfully deleted transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Successfully created new transaction ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Select transactions', + 'rule_group_select_transactions' => 'Apply ":title" to transactions', + 'rule_select_transactions' => 'Apply ":title" to transactions', + 'stop_selection' => 'Stop selecting transactions', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Delete a number of transactions', + 'mass_edit_journals' => 'Edit a number of transactions', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(no budget)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Create', + 'empty' => '(empty)', + 'all_other_budgets' => '(all other budgets)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tag', + 'no_budget_squared' => '(no budget)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(no account type)', + 'opt_group_no_account_type' => '(no account type)', + 'opt_group_defaultAsset' => 'Default asset accounts', + 'opt_group_savingAsset' => 'Savings accounts', + 'opt_group_sharedAsset' => 'Shared asset accounts', + 'opt_group_ccAsset' => 'Credit cards', + 'opt_group_cashWalletAsset' => 'Cash wallets', + 'opt_group_expense_account' => 'Expense accounts', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => 'Liability: Loan', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => 'Liability: Debt', + 'opt_group_l_Mortgage' => 'Liability: Mortgage', + 'opt_group_l_Credit card' => 'Liability: Credit card', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', + 'attachment_not_found' => 'This attachment could not be found.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, untick the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Submit', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Getting started', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main current account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Language', - 'new_savings_account' => ':bank_name savings account', - 'cash_wallet' => 'Cash wallet', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Submit', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Getting started', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main current account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Language', + 'new_savings_account' => ':bank_name savings account', + 'cash_wallet' => 'Cash wallet', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Your accounts', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Budgets and spending', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Savings', - 'newWithdrawal' => 'New expense', - 'newDeposit' => 'New deposit', - 'newTransfer' => 'New transfer', - 'bills_to_pay' => 'Bills to pay', - 'per_day' => 'Per day', - 'left_to_spend_per_day' => 'Left to spend per day', - 'bills_paid' => 'Bills paid', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Your accounts', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Budgets and spending', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Savings', + 'newWithdrawal' => 'New expense', + 'newDeposit' => 'New deposit', + 'newTransfer' => 'New transfer', + 'bills_to_pay' => 'Bills to pay', + 'per_day' => 'Per day', + 'left_to_spend_per_day' => 'Left to spend per day', + 'bills_paid' => 'Bills paid', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Currency', - 'preferences' => 'Preferences', - 'logout' => 'Logout', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Toggle navigation', - 'searchPlaceholder' => 'Search...', - 'version' => 'Version', - 'dashboard' => 'Dashboard', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Currencies', - 'activity' => 'Activity', - 'usage' => 'Usage', - 'accounts' => 'Accounts', - 'Asset account' => 'Asset account', - 'Default account' => 'Asset account', - 'Expense account' => 'Expense account', - 'Revenue account' => 'Revenue account', - 'Initial balance account' => 'Initial balance account', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Debt', - 'account_type_Loan' => 'Loan', - 'account_type_Mortgage' => 'Mortgage', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Budgets', - 'tags' => 'Tags', - 'reports' => 'Reports', - 'transactions' => 'Transactions', - 'expenses' => 'Expenses', - 'income' => 'Revenue / income', - 'transfers' => 'Transfers', - 'moneyManagement' => 'Money management', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Piggy banks', - 'piggy_banks' => 'Piggy banks', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Bills', - 'withdrawal' => 'Withdrawal', - 'opening_balance' => 'Opening balance', - 'deposit' => 'Deposit', - 'account' => 'Account', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Withdrawal', - 'Deposit' => 'Deposit', - 'Transfer' => 'Transfer', - 'bill' => 'Bill', - 'yes' => 'Yes', - 'no' => 'No', - 'amount' => 'Amount', - 'overview' => 'Overview', - 'saveOnAccount' => 'Save on account', - 'unknown' => 'Unknown', - 'monthly' => 'Monthly', - 'profile' => 'Profile', - 'errors' => 'Errors', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Currency', + 'preferences' => 'Preferences', + 'logout' => 'Logout', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Search...', + 'version' => 'Version', + 'dashboard' => 'Dashboard', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Currencies', + 'activity' => 'Activity', + 'usage' => 'Usage', + 'accounts' => 'Accounts', + 'Asset account' => 'Asset account', + 'Default account' => 'Asset account', + 'Expense account' => 'Expense account', + 'Revenue account' => 'Revenue account', + 'Initial balance account' => 'Initial balance account', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Debt', + 'account_type_Loan' => 'Loan', + 'account_type_Mortgage' => 'Mortgage', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Budgets', + 'tags' => 'Tags', + 'reports' => 'Reports', + 'transactions' => 'Transactions', + 'expenses' => 'Expenses', + 'income' => 'Revenue / income', + 'transfers' => 'Transfers', + 'moneyManagement' => 'Money management', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Piggy banks', + 'piggy_banks' => 'Piggy banks', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Bills', + 'withdrawal' => 'Withdrawal', + 'opening_balance' => 'Opening balance', + 'deposit' => 'Deposit', + 'account' => 'Account', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Withdrawal', + 'Deposit' => 'Deposit', + 'Transfer' => 'Transfer', + 'bill' => 'Bill', + 'yes' => 'Yes', + 'no' => 'No', + 'amount' => 'Amount', + 'overview' => 'Overview', + 'saveOnAccount' => 'Save on account', + 'unknown' => 'Unknown', + 'monthly' => 'Monthly', + 'profile' => 'Profile', + 'errors' => 'Errors', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Default financial report between :start and :end', - 'report_audit' => 'Transaction history overview between :start and :end', - 'report_category' => 'Category report between :start and :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Quick links', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Default financial report', - 'quick_link_audit_report' => 'Transaction history overview', - 'report_this_month_quick' => 'Current month, all accounts', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Current year, all accounts', - 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', - 'report_all_time_quick' => 'All-time, all accounts', - 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', - 'incomeVsExpenses' => 'Income vs. expenses', - 'accountBalances' => 'Account balances', - 'balanceStart' => 'Balance at start of period', - 'balanceEnd' => 'Balance at end of period', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftInBudget' => 'Left in budget', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Sum of sums', - 'noCategory' => '(no category)', - 'notCharged' => 'Not charged (yet)', - 'inactive' => 'Inactive', - 'active' => 'Active', - 'difference' => 'Difference', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Out', - 'topX' => 'top :number', - 'show_full_list' => 'Show entire list', - 'show_only_top' => 'Show only top :number', - 'report_type' => 'Report type', - 'report_type_default' => 'Default financial report', - 'report_type_audit' => 'Transaction history overview (audit)', - 'report_type_category' => 'Category report', - 'report_type_budget' => 'Budget report', - 'report_type_tag' => 'Tag report', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', - 'report_included_accounts' => 'Included accounts', - 'report_date_range' => 'Date range', - 'report_preset_ranges' => 'Pre-set ranges', - 'shared' => 'Shared', - 'fiscal_year' => 'Fiscal year', - 'income_entry' => 'Income from account ":name" between :start and :end', - 'expense_entry' => 'Expenses to account ":name" between :start and :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', - 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Extra options', - 'report_has_no_extra_options' => 'This report has no extra options', - 'reports_submit' => 'View report', - 'end_after_start_date' => 'End date of report must be after start date.', - 'select_category' => 'Select category(ies)', - 'select_budget' => 'Select budget(s).', - 'select_tag' => 'Select tag(s).', - 'income_per_category' => 'Income per category', - 'expense_per_category' => 'Expense per category', - 'expense_per_budget' => 'Expense per budget', - 'income_per_account' => 'Income per account', - 'expense_per_account' => 'Expense per account', - 'expense_per_tag' => 'Expense per tag', - 'income_per_tag' => 'Income per tag', - 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', - 'everything_else' => 'Everything else', - 'income_and_expenses' => 'Income and expenses', - 'spent_average' => 'Spent (average)', - 'income_average' => 'Income (average)', - 'transaction_count' => 'Transaction count', - 'average_spending_per_account' => 'Average spending per account', - 'average_income_per_account' => 'Average income per account', - 'total' => 'Total', - 'description' => 'Description', - 'sum_of_period' => 'Sum of period', - 'average_in_period' => 'Average in period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Default asset account', - 'account_role_sharedAsset' => 'Shared asset account', - 'account_role_savingAsset' => 'Savings account', - 'account_role_ccAsset' => 'Credit card', - 'account_role_cashWalletAsset' => 'Cash wallet', - 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', - 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unticked.', + 'report_default' => 'Default financial report between :start and :end', + 'report_audit' => 'Transaction history overview between :start and :end', + 'report_category' => 'Category report between :start and :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Quick links', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Default financial report', + 'quick_link_audit_report' => 'Transaction history overview', + 'report_this_month_quick' => 'Current month, all accounts', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Current year, all accounts', + 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', + 'report_all_time_quick' => 'All-time, all accounts', + 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', + 'incomeVsExpenses' => 'Income vs. expenses', + 'accountBalances' => 'Account balances', + 'balanceStart' => 'Balance at start of period', + 'balanceEnd' => 'Balance at end of period', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftInBudget' => 'Left in budget', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', + 'topX' => 'top :number', + 'show_full_list' => 'Show entire list', + 'show_only_top' => 'Show only top :number', + 'report_type' => 'Report type', + 'report_type_default' => 'Default financial report', + 'report_type_audit' => 'Transaction history overview (audit)', + 'report_type_category' => 'Category report', + 'report_type_budget' => 'Budget report', + 'report_type_tag' => 'Tag report', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Included accounts', + 'report_date_range' => 'Date range', + 'report_preset_ranges' => 'Pre-set ranges', + 'shared' => 'Shared', + 'fiscal_year' => 'Fiscal year', + 'income_entry' => 'Income from account ":name" between :start and :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Extra options', + 'report_has_no_extra_options' => 'This report has no extra options', + 'reports_submit' => 'View report', + 'end_after_start_date' => 'End date of report must be after start date.', + 'select_category' => 'Select category(ies)', + 'select_budget' => 'Select budget(s).', + 'select_tag' => 'Select tag(s).', + 'income_per_category' => 'Income per category', + 'expense_per_category' => 'Expense per category', + 'expense_per_budget' => 'Expense per budget', + 'income_per_account' => 'Income per account', + 'expense_per_account' => 'Expense per account', + 'expense_per_tag' => 'Expense per tag', + 'income_per_tag' => 'Income per tag', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Everything else', + 'income_and_expenses' => 'Income and expenses', + 'spent_average' => 'Spent (average)', + 'income_average' => 'Income (average)', + 'transaction_count' => 'Transaction count', + 'average_spending_per_account' => 'Average spending per account', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Shared asset account', + 'account_role_savingAsset' => 'Savings account', + 'account_role_ccAsset' => 'Credit card', + 'account_role_cashWalletAsset' => 'Cash wallet', + 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', + 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unticked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Chart', - 'month' => 'Month', - 'budget' => 'Budget', - 'spent' => 'Spent', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Spent in budget', - 'left_to_spend' => 'Left to spend', - 'earned' => 'Earned', - 'overspent' => 'Overspent', - 'left' => 'Left', - 'max-amount' => 'Maximum amount', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Current bill entry', - 'name' => 'Name', - 'date' => 'Date', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Paid', - 'unpaid' => 'Unpaid', - 'day' => 'Day', - 'budgeted' => 'Budgeted', - 'period' => 'Period', - 'balance' => 'Balance', - 'in_out_period' => 'In + out this period', - 'sum' => 'Sum', - 'summary' => 'Summary', - 'average' => 'Average', - 'balanceFor' => 'Balance for :name', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Current bill entry', + 'name' => 'Name', + 'date' => 'Date', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Paid', + 'unpaid' => 'Unpaid', + 'day' => 'Day', + 'budgeted' => 'Budgeted', + 'period' => 'Period', + 'balance' => 'Balance', + 'in_out_period' => 'In + out this period', + 'sum' => 'Sum', + 'summary' => 'Summary', + 'average' => 'Average', + 'balanceFor' => 'Balance for :name', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Add money to piggy bank ":name"', - 'piggy_bank' => 'Piggy bank', - 'new_piggy_bank' => 'New piggy bank', - 'store_piggy_bank' => 'Store new piggy bank', - 'stored_piggy_bank' => 'Store new piggy bank ":name"', - 'account_status' => 'Account status', - 'left_for_piggy_banks' => 'Left for piggy banks', - 'sum_of_piggy_banks' => 'Sum of piggy banks', - 'saved_so_far' => 'Saved so far', - 'left_to_save' => 'Left to save', - 'suggested_amount' => 'Suggested monthly amount to save', - 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', - 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', - 'add' => 'Add', - 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Add money to piggy bank ":name"', + 'piggy_bank' => 'Piggy bank', + 'new_piggy_bank' => 'New piggy bank', + 'store_piggy_bank' => 'Store new piggy bank', + 'stored_piggy_bank' => 'Store new piggy bank ":name"', + 'account_status' => 'Account status', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Sum of piggy banks', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', + 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', + 'add' => 'Add', + 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Remove', - 'max_amount_add' => 'The maximum amount you can add is', - 'max_amount_remove' => 'The maximum amount you can remove is', - 'update_piggy_button' => 'Update piggy bank', - 'update_piggy_title' => 'Update piggy bank ":name"', - 'updated_piggy_bank' => 'Updated piggy bank ":name"', - 'details' => 'Details', - 'events' => 'Events', - 'target_amount' => 'Target amount', - 'start_date' => 'Start date', - 'no_start_date' => 'No start date', - 'target_date' => 'Target date', - 'no_target_date' => 'No target date', - 'table' => 'Table', - 'delete_piggy_bank' => 'Delete piggy bank ":name"', - 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', - 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', - 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', - 'added_amount_to_piggy' => 'Added :amount to ":name"', - 'removed_amount_from_piggy' => 'Removed :amount from ":name"', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Remove', + 'max_amount_add' => 'The maximum amount you can add is', + 'max_amount_remove' => 'The maximum amount you can remove is', + 'update_piggy_button' => 'Update piggy bank', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Updated piggy bank ":name"', + 'details' => 'Details', + 'events' => 'Events', + 'target_amount' => 'Target amount', + 'start_date' => 'Start date', + 'no_start_date' => 'No start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Table', + 'delete_piggy_bank' => 'Delete piggy bank ":name"', + 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', + 'added_amount_to_piggy' => 'Added :amount to ":name"', + 'removed_amount_from_piggy' => 'Removed :amount from ":name"', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => 'Delete tag ":tag"', - 'deleted_tag' => 'Deleted tag ":tag"', - 'new_tag' => 'Make new tag', - 'edit_tag' => 'Edit tag ":tag"', - 'updated_tag' => 'Updated tag ":tag"', - 'created_tag' => 'Tag ":tag" has been created!', + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', - 'transaction_journal_information' => 'Transaction information', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta information', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Total amount', - 'number_of_decimals' => 'Number of decimals', + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta information', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'User administration', - 'list_all_users' => 'All users', - 'all_users' => 'All users', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Configuration options for Firefly III', - 'setting_single_user_mode' => 'Single user mode', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you untick this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Store configuration', - 'single_user_administration' => 'User administration for :email', - 'edit_user' => 'Edit user :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'User data', - 'user_information' => 'User information', - 'total_size' => 'total size', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'The configuration has been updated', - 'setting_is_demo_site' => 'Demo site', - 'setting_is_demo_site_explain' => 'If you tick this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Demo account expired', - 'no_block_code' => 'No reason for block or user not blocked', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'User has not yet confirmed new email address', - 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', - 'update_user' => 'Update user', - 'updated_user' => 'User data has been changed.', - 'delete_user' => 'Delete user :email', - 'user_deleted' => 'The user has been deleted', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you untick this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you tick this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Create new link type', - 'store_new_link_type' => 'Store new link type', - 'update_link_type' => 'Update link type', - 'edit_link_type' => 'Edit link type ":name"', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'Ie. "duplicates"', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(do not save connection)', - 'link_transaction' => 'Link transaction', - 'link_to_other_transaction' => 'Link this transaction to another transaction', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'This transaction', - 'transaction' => 'Transaction', - 'comments' => 'Comments', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Cannot link these transactions', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transactions are linked.', - 'journals_error_linked' => 'These transactions are already linked.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'This withdrawal', - 'this_deposit' => 'This deposit', - 'this_transfer' => 'This transfer', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Source transaction', - 'link_description' => 'Link description', - 'destination_transaction' => 'Destination transaction', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Deleted link', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Splits', - 'add_another_split' => 'Add another split', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Let\'s create an asset account!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your current account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', - 'no_accounts_create_asset' => 'Create an asset account', - 'no_accounts_title_expense' => 'Let\'s create an expense account!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Create an expense account', - 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', - 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_revenue' => 'Create a revenue account', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Let\'s create a budget', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organise your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', - 'no_budgets_create_default' => 'Create a budget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Let\'s create a category!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', - 'no_tags_title_default' => 'Let\'s create a tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Create a tag', - 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', - 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Create an expense', - 'no_transactions_title_deposit' => 'Let\'s create some income!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Create a deposit', - 'no_transactions_title_transfers' => 'Let\'s create a transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Create a transfer', - 'no_piggies_title_default' => 'Let\'s create a piggy bank!', - 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', - 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', - 'no_piggies_create_default' => 'Create a new piggy bank', - 'no_bills_title_default' => 'Let\'s create a bill!', - 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', - 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', - 'no_bills_create_default' => 'Create a bill', + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your current account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', + 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Create a revenue account', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organise your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Create an expense', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Let\'s create a piggy bank!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Create a new piggy bank', + 'no_bills_title_default' => 'Let\'s create a bill!', + 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', + 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_create_default' => 'Create a bill', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Every day', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Every day', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Bills paid (:currency)', - 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Bills paid (:currency)', + 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/en_GB/validation.php b/resources/lang/en_GB/validation.php index 7aba6d7b44..ca34f302b2 100644 --- a/resources/lang/en_GB/validation.php +++ b/resources/lang/en_GB/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/en_US/firefly.php b/resources/lang/en_US/firefly.php index 078a495959..96a58337c6 100644 --- a/resources/lang/en_US/firefly.php +++ b/resources/lang/en_US/firefly.php @@ -26,2695 +26,2695 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Close', - 'actions' => 'Actions', - 'edit' => 'Edit', - 'delete' => 'Delete', - 'split' => 'Split', - 'single_split' => 'Split', - 'clone' => 'Clone', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => 'Last seven days', - 'last_thirty_days' => 'Last thirty days', - 'last_180_days' => 'Last 180 days', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'YTD', - 'welcome_back' => 'What\'s playing?', - 'everything' => 'Everything', - 'today' => 'today', - 'customRange' => 'Custom range', - 'date_range' => 'Date range', - 'apply' => 'Apply', - 'select_date' => 'Select date..', - 'cancel' => 'Cancel', - 'from' => 'From', - 'to' => 'To', - 'structure' => 'Structure', - 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', - 'showEverything' => 'Show everything', - 'never' => 'Never', - 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', - 'removed_amount' => 'Removed :amount', - 'added_amount' => 'Added :amount', - 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', - 'Opening balance' => 'Opening balance', - 'create_new_stuff' => 'Create new stuff', - 'new_withdrawal' => 'New withdrawal', - 'create_new_transaction' => 'Create a new transaction', - 'sidebar_frontpage_create' => 'Create', - 'new_transaction' => 'New transaction', - 'no_rules_for_bill' => 'This bill has no rules associated to it.', - 'go_to_asset_accounts' => 'View your asset accounts', - 'go_to_budgets' => 'Go to your budgets', - 'go_to_withdrawals' => 'Go to your withdrawals', - 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', - 'go_to_categories' => 'Go to your categories', - 'go_to_bills' => 'Go to your bills', - 'go_to_expense_accounts' => 'See your expense accounts', - 'go_to_revenue_accounts' => 'See your revenue accounts', - 'go_to_piggies' => 'Go to your piggy banks', - 'new_deposit' => 'New deposit', - 'new_transfer' => 'New transfer', - 'new_transfers' => 'New transfer', - 'new_asset_account' => 'New asset account', - 'new_expense_account' => 'New expense account', - 'new_revenue_account' => 'New revenue account', - 'new_liabilities_account' => 'New liability', - 'new_budget' => 'New budget', - 'new_bill' => 'New bill', - 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', - 'flash_success' => 'Success!', - 'flash_info' => 'Message', - 'flash_warning' => 'Warning!', - 'flash_error' => 'Error!', - 'flash_danger' => 'Danger!', - 'flash_info_multiple' => 'There is one message|There are :count messages', - 'flash_error_multiple' => 'There is one error|There are :count errors', - 'net_worth' => 'Net worth', - 'help_for_this_page' => 'Help for this page', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'Hello!', - 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', - 'two_factor_code_here' => 'Enter code here', - 'two_factor_title' => 'Two factor authentication', - 'authenticate' => 'Authenticate', - 'two_factor_forgot_title' => 'Lost two factor authentication', - 'two_factor_forgot' => 'I forgot my two-factor thing.', - 'two_factor_lost_header' => 'Lost your two factor authentication?', - 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', - 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', - 'pref_two_factor_new_backup_codes' => 'Get new backup codes', - 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', - '2fa_i_have_them' => 'I stored them!', - 'warning_much_data' => ':days days of data may take a while to load.', - 'registered' => 'You have registered successfully!', - 'Default asset account' => 'Default asset account', - 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', - 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', - 'Savings account' => 'Savings account', - 'Credit card' => 'Credit card', - 'source_accounts' => 'Source account|Source accounts', - 'destination_accounts' => 'Destination account|Destination accounts', - 'user_id_is' => 'Your user id is :user', - 'field_supports_markdown' => 'This field supports Markdown.', - 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', - 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', - 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', - 'show_all_no_filter' => 'Show all transactions without grouping them by date.', - 'expenses_by_category' => 'Expenses by category', - 'expenses_by_budget' => 'Expenses by budget', - 'income_by_category' => 'Income by category', - 'expenses_by_asset_account' => 'Expenses by asset account', - 'expenses_by_expense_account' => 'Expenses by expense account', - 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', - 'sum_of_expenses' => 'Sum of expenses', - 'sum_of_income' => 'Sum of income', - 'liabilities' => 'Liabilities', - 'spent_in_specific_budget' => 'Spent in budget ":budget"', - 'spent_in_specific_double' => 'Spent in account ":account"', - 'earned_in_specific_double' => 'Earned in account ":account"', - 'source_account' => 'Source account', - 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', - 'destination_account' => 'Destination account', - 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', - 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', - 'left_in_budget_limit' => 'Left to spend according to budgeting', - 'current_period' => 'Current period', - 'show_the_current_period_and_overview' => 'Show the current period and overview', - 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', - 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', - 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', - 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', - 'chart_category_all' => 'Chart for all transactions for category ":name"', - 'clone_withdrawal' => 'Clone this withdrawal', - 'clone_deposit' => 'Clone this deposit', - 'clone_transfer' => 'Clone this transfer', - 'multi_select_no_selection' => 'None selected', - 'multi_select_select_all' => 'Select all', - 'multi_select_n_selected' => 'selected', - 'multi_select_all_selected' => 'All selected', - 'multi_select_filter_placeholder' => 'Find..', - 'intro_next_label' => 'Next', - 'intro_prev_label' => 'Previous', - 'intro_skip_label' => 'Skip', - 'intro_done_label' => 'Done', - 'between_dates_breadcrumb' => 'Between :start and :end', - 'all_journals_without_budget' => 'All transactions without a budget', - 'journals_without_budget' => 'Transactions without a budget', - 'all_journals_without_category' => 'All transactions without a category', - 'journals_without_category' => 'Transactions without a category', - 'all_journals_for_account' => 'All transactions for account :name', - 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', - 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Transferred', - 'all_withdrawal' => 'All expenses', - 'all_transactions' => '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', - 'invalid_server_configuration' => 'Invalid server configuration', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Quickswitch', - 'sign_in_to_start' => 'Sign in to start your session', - 'sign_in' => 'Sign in', - 'register_new_account' => 'Register a new account', - 'forgot_my_password' => 'I forgot my password', - 'problems_with_input' => 'There were some problems with your input.', - 'reset_password' => 'Reset your password', - 'button_reset_password' => 'Reset password', - 'reset_button' => 'Reset', - 'want_to_login' => 'I want to login', - 'login_page_title' => 'Login to Firefly III', - 'register_page_title' => 'Register at Firefly III', - 'forgot_pw_page_title' => 'Forgot your password for 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.', - 'no_att_demo_user' => 'The demo user can\'t upload attachments.', - 'button_register' => 'Register', - 'authorization' => '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', - 'per_period_sum_1D' => 'Expected daily costs', - 'per_period_sum_1W' => 'Expected weekly costs', - 'per_period_sum_1M' => 'Expected monthly costs', - 'per_period_sum_3M' => 'Expected quarterly costs', - 'per_period_sum_6M' => 'Expected half-yearly costs', - 'per_period_sum_1Y' => 'Expected yearly costs', - 'average_per_bill' => 'average per bill', - 'expected_total' => 'expected total', - 'reconciliation_account_name' => ':name reconciliation (:currency)', - 'saved' => 'Saved', - 'advanced_options' => '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!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Close', + 'actions' => 'Actions', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'split' => 'Split', + 'single_split' => 'Split', + 'clone' => 'Clone', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => 'Last seven days', + 'last_thirty_days' => 'Last thirty days', + 'last_180_days' => 'Last 180 days', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'YTD', + 'welcome_back' => 'What\'s playing?', + 'everything' => 'Everything', + 'today' => 'today', + 'customRange' => 'Custom range', + 'date_range' => 'Date range', + 'apply' => 'Apply', + 'select_date' => 'Select date..', + 'cancel' => 'Cancel', + 'from' => 'From', + 'to' => 'To', + 'structure' => 'Structure', + 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', + 'showEverything' => 'Show everything', + 'never' => 'Never', + 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', + 'removed_amount' => 'Removed :amount', + 'added_amount' => 'Added :amount', + 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', + 'Opening balance' => 'Opening balance', + 'create_new_stuff' => 'Create new stuff', + 'new_withdrawal' => 'New withdrawal', + 'create_new_transaction' => 'Create a new transaction', + 'sidebar_frontpage_create' => 'Create', + 'new_transaction' => 'New transaction', + 'no_rules_for_bill' => 'This bill has no rules associated to it.', + 'go_to_asset_accounts' => 'View your asset accounts', + 'go_to_budgets' => 'Go to your budgets', + 'go_to_withdrawals' => 'Go to your withdrawals', + 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', + 'go_to_categories' => 'Go to your categories', + 'go_to_bills' => 'Go to your bills', + 'go_to_expense_accounts' => 'See your expense accounts', + 'go_to_revenue_accounts' => 'See your revenue accounts', + 'go_to_piggies' => 'Go to your piggy banks', + 'new_deposit' => 'New deposit', + 'new_transfer' => 'New transfer', + 'new_transfers' => 'New transfer', + 'new_asset_account' => 'New asset account', + 'new_expense_account' => 'New expense account', + 'new_revenue_account' => 'New revenue account', + 'new_liabilities_account' => 'New liability', + 'new_budget' => 'New budget', + 'new_bill' => 'New bill', + 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', + 'flash_success' => 'Success!', + 'flash_info' => 'Message', + 'flash_warning' => 'Warning!', + 'flash_error' => 'Error!', + 'flash_danger' => 'Danger!', + 'flash_info_multiple' => 'There is one message|There are :count messages', + 'flash_error_multiple' => 'There is one error|There are :count errors', + 'net_worth' => 'Net worth', + 'help_for_this_page' => 'Help for this page', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'Hello!', + 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', + 'two_factor_code_here' => 'Enter code here', + 'two_factor_title' => 'Two factor authentication', + 'authenticate' => 'Authenticate', + 'two_factor_forgot_title' => 'Lost two factor authentication', + 'two_factor_forgot' => 'I forgot my two-factor thing.', + 'two_factor_lost_header' => 'Lost your two factor authentication?', + 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', + 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', + 'pref_two_factor_new_backup_codes' => 'Get new backup codes', + 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', + '2fa_i_have_them' => 'I stored them!', + 'warning_much_data' => ':days days of data may take a while to load.', + 'registered' => 'You have registered successfully!', + 'Default asset account' => 'Default asset account', + 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', + 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', + 'Savings account' => 'Savings account', + 'Credit card' => 'Credit card', + 'source_accounts' => 'Source account|Source accounts', + 'destination_accounts' => 'Destination account|Destination accounts', + 'user_id_is' => 'Your user id is :user', + 'field_supports_markdown' => 'This field supports Markdown.', + 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', + 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', + 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', + 'show_all_no_filter' => 'Show all transactions without grouping them by date.', + 'expenses_by_category' => 'Expenses by category', + 'expenses_by_budget' => 'Expenses by budget', + 'income_by_category' => 'Income by category', + 'expenses_by_asset_account' => 'Expenses by asset account', + 'expenses_by_expense_account' => 'Expenses by expense account', + 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', + 'sum_of_expenses' => 'Sum of expenses', + 'sum_of_income' => 'Sum of income', + 'liabilities' => 'Liabilities', + 'spent_in_specific_budget' => 'Spent in budget ":budget"', + 'spent_in_specific_double' => 'Spent in account ":account"', + 'earned_in_specific_double' => 'Earned in account ":account"', + 'source_account' => 'Source account', + 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', + 'destination_account' => 'Destination account', + 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', + 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', + 'left_in_budget_limit' => 'Left to spend according to budgeting', + 'current_period' => 'Current period', + 'show_the_current_period_and_overview' => 'Show the current period and overview', + 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', + 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', + 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', + 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', + 'chart_category_all' => 'Chart for all transactions for category ":name"', + 'clone_withdrawal' => 'Clone this withdrawal', + 'clone_deposit' => 'Clone this deposit', + 'clone_transfer' => 'Clone this transfer', + 'multi_select_no_selection' => 'None selected', + 'multi_select_select_all' => 'Select all', + 'multi_select_n_selected' => 'selected', + 'multi_select_all_selected' => 'All selected', + 'multi_select_filter_placeholder' => 'Find..', + 'intro_next_label' => 'Next', + 'intro_prev_label' => 'Previous', + 'intro_skip_label' => 'Skip', + 'intro_done_label' => 'Done', + 'between_dates_breadcrumb' => 'Between :start and :end', + 'all_journals_without_budget' => 'All transactions without a budget', + 'journals_without_budget' => 'Transactions without a budget', + 'all_journals_without_category' => 'All transactions without a category', + 'journals_without_category' => 'Transactions without a category', + 'all_journals_for_account' => 'All transactions for account :name', + 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', + 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Transferred', + 'all_withdrawal' => 'All expenses', + 'all_transactions' => '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', + 'invalid_server_configuration' => 'Invalid server configuration', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Quickswitch', + 'sign_in_to_start' => 'Sign in to start your session', + 'sign_in' => 'Sign in', + 'register_new_account' => 'Register a new account', + 'forgot_my_password' => 'I forgot my password', + 'problems_with_input' => 'There were some problems with your input.', + 'reset_password' => 'Reset your password', + 'button_reset_password' => 'Reset password', + 'reset_button' => 'Reset', + 'want_to_login' => 'I want to login', + 'login_page_title' => 'Login to Firefly III', + 'register_page_title' => 'Register at Firefly III', + 'forgot_pw_page_title' => 'Forgot your password for 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.', + 'no_att_demo_user' => 'The demo user can\'t upload attachments.', + 'button_register' => 'Register', + 'authorization' => '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', + 'per_period_sum_1D' => 'Expected daily costs', + 'per_period_sum_1W' => 'Expected weekly costs', + 'per_period_sum_1M' => 'Expected monthly costs', + 'per_period_sum_3M' => 'Expected quarterly costs', + 'per_period_sum_6M' => 'Expected half-yearly costs', + 'per_period_sum_1Y' => 'Expected yearly costs', + 'average_per_bill' => 'average per bill', + 'expected_total' => 'expected total', + 'reconciliation_account_name' => ':name reconciliation (:currency)', + 'saved' => 'Saved', + 'advanced_options' => '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!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Authorization Request', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'This application will be able to:', - 'button_authorize' => 'Authorize', - 'none_in_select_list' => '(none)', - 'no_piggy_bank' => '(no piggy bank)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Paid in :currency', - 'unpaid_in_currency' => 'Unpaid in :currency', - 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', - 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', - 'all_destination_accounts' => 'Destination accounts', - 'all_source_accounts' => 'Source accounts', - 'back_to_index' => 'Back to the index', - 'cant_logout_guard' => 'Firefly III can\'t log you out.', - 'internal_reference' => 'Internal reference', + 'authorization_request' => 'Firefly III v:version Authorization Request', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'This application will be able to:', + 'button_authorize' => 'Authorize', + 'none_in_select_list' => '(none)', + 'no_piggy_bank' => '(no piggy bank)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Paid in :currency', + 'unpaid_in_currency' => 'Unpaid in :currency', + 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', + 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', + 'all_destination_accounts' => 'Destination accounts', + 'all_source_accounts' => 'Source accounts', + 'back_to_index' => 'Back to the index', + 'cant_logout_guard' => 'Firefly III can\'t log you out.', + 'internal_reference' => 'Internal reference', // check for updates: - 'update_check_title' => 'Check for updates', - 'admin_update_check_title' => 'Automatically check for update', - 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', - 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', - 'updates_ask_me_later' => 'Ask me later', - 'updates_do_not_check' => 'Do not check for updates', - 'updates_enable_check' => 'Enable the check for updates', - 'admin_update_check_now_title' => 'Check for updates now', - 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', - 'check_for_updates_button' => 'Check now!', - 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', - 'update_version_beta' => 'This version is a BETA version. You may run into issues.', - 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'You are running :version, which is the latest available release.', - 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', - 'update_check_error' => 'An error occurred while checking for updates: :error', - 'unknown_error' => 'Unknown error. Sorry about that.', - 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', - 'admin_update_channel_title' => 'Update channel', - 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', - 'update_channel_stable' => 'Stable. Everything should work as expected.', - 'update_channel_beta' => 'Beta. New features but things may be broken.', - 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', + 'update_check_title' => 'Check for updates', + 'admin_update_check_title' => 'Automatically check for update', + 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', + 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', + 'updates_ask_me_later' => 'Ask me later', + 'updates_do_not_check' => 'Do not check for updates', + 'updates_enable_check' => 'Enable the check for updates', + 'admin_update_check_now_title' => 'Check for updates now', + 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', + 'check_for_updates_button' => 'Check now!', + 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', + 'update_version_beta' => 'This version is a BETA version. You may run into issues.', + 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'You are running :version, which is the latest available release.', + 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', + 'update_check_error' => 'An error occurred while checking for updates: :error', + 'unknown_error' => 'Unknown error. Sorry about that.', + 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', + 'admin_update_channel_title' => 'Update channel', + 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', + 'update_channel_stable' => 'Stable. Everything should work as expected.', + 'update_channel_beta' => 'Beta. New features but things may be broken.', + 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', // search - 'search' => 'Search', - 'search_query' => 'Query', - 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', - 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', - 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => 'Search', + 'search_query' => 'Query', + 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', + 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', + 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old // Ignore this comment - '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_id' => 'Transaction ID is ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaction date is before or on ":value"', - 'search_modifier_date_after' => 'Transaction date is after or on ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Description is exactly ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'The transaction must have an attachment', - 'search_modifier_has_no_category' => 'The transaction must have no category', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'The transaction must have a (any) category', - 'search_modifier_has_no_budget' => 'The transaction must have no budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'The transaction must have no bill', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'The transaction has no notes', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'The transaction must have notes', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Amount is less than or equal to :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Amount is more than or equal to :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Source account name contains ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Bill is ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaction type is ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + '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_id' => 'Transaction ID is ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaction date is before or on ":value"', + 'search_modifier_date_after' => 'Transaction date is after or on ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Description is exactly ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'The transaction must have an attachment', + 'search_modifier_has_no_category' => 'The transaction must have no category', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'The transaction must have a (any) category', + 'search_modifier_has_no_budget' => 'The transaction must have no budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'The transaction must have no bill', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'The transaction has no notes', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'The transaction must have notes', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Amount is less than or equal to :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Amount is more than or equal to :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Source account name contains ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Bill is ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaction type is ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', // Ignore this comment // END - 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => 'Search', - 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', - 'search_error' => 'Error while searching', - 'search_searching' => 'Searching ...', - 'search_results' => 'Search results', + 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => 'Search', + 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', + 'search_error' => 'Error while searching', + 'search_searching' => 'Searching ...', + 'search_results' => 'Search results', // repeat frequencies: - 'repeat_freq_yearly' => 'yearly', - 'repeat_freq_half-year' => 'every half-year', - 'repeat_freq_quarterly' => 'quarterly', - 'repeat_freq_monthly' => 'monthly', - 'repeat_freq_weekly' => 'weekly', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'weekly', - 'quarterly' => 'quarterly', - 'half-year' => 'every half year', - 'yearly' => 'yearly', + 'repeat_freq_yearly' => 'yearly', + 'repeat_freq_half-year' => 'every half-year', + 'repeat_freq_quarterly' => 'quarterly', + 'repeat_freq_monthly' => 'monthly', + 'repeat_freq_weekly' => 'weekly', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'weekly', + 'quarterly' => 'quarterly', + 'half-year' => 'every half year', + 'yearly' => 'yearly', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Rules', - 'rule_name' => 'Name of rule', - 'rule_triggers' => 'Rule triggers when', - 'rule_actions' => 'Rule will', - 'new_rule' => 'New rule', - 'new_rule_group' => 'New rule group', - 'rule_priority_up' => 'Give rule more priority', - 'rule_priority_down' => 'Give rule less priority', - 'make_new_rule_group' => 'Make new rule group', - 'store_new_rule_group' => 'Store new rule group', - 'created_new_rule_group' => 'New rule group ":title" stored!', - 'updated_rule_group' => 'Successfully updated rule group ":title".', - 'edit_rule_group' => 'Edit rule group ":title"', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => 'Delete rule group ":title"', - 'deleted_rule_group' => 'Deleted rule group ":title"', - 'update_rule_group' => 'Update rule group', - 'no_rules_in_group' => 'There are no rules in this group', - 'move_rule_group_up' => 'Move rule group up', - 'move_rule_group_down' => 'Move rule group down', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Make a new rule in rule group ":title"', - 'make_new_rule_no_group' => 'Make a new rule', - 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => 'strict rule', - 'rule_is_not_strict' => 'non-strict rule', - 'rule_help_stop_processing' => 'When you check this box, later rules in this group will not be executed.', - 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', - 'rule_help_active' => 'Inactive rules will never fire.', - 'stored_new_rule' => 'Stored new rule with title ":title"', - 'deleted_rule' => 'Deleted rule with title ":title"', - 'store_new_rule' => 'Store new rule', - 'updated_rule' => 'Updated rule with title ":title"', - 'default_rule_group_name' => 'Default rules', - 'default_rule_group_description' => 'All your rules not in a particular group.', - 'trigger' => 'Trigger', - 'trigger_value' => 'Trigger on value', - 'stop_processing_other_triggers' => 'Stop processing other triggers', - 'add_rule_trigger' => 'Add new trigger', - 'action' => 'Action', - 'action_value' => 'Action value', - 'stop_executing_other_actions' => 'Stop executing other actions', - 'add_rule_action' => 'Add new action', - 'edit_rule' => 'Edit rule ":title"', - 'delete_rule' => 'Delete rule ":title"', - 'update_rule' => 'Update rule', - 'test_rule_triggers' => 'See matching transactions', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => 'No valid triggers provided.', - 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', - 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', - 'include_transactions_from_accounts' => 'Include transactions from these accounts', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Execute', - 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', - 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', - 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Rules', + 'rule_name' => 'Name of rule', + 'rule_triggers' => 'Rule triggers when', + 'rule_actions' => 'Rule will', + 'new_rule' => 'New rule', + 'new_rule_group' => 'New rule group', + 'rule_priority_up' => 'Give rule more priority', + 'rule_priority_down' => 'Give rule less priority', + 'make_new_rule_group' => 'Make new rule group', + 'store_new_rule_group' => 'Store new rule group', + 'created_new_rule_group' => 'New rule group ":title" stored!', + 'updated_rule_group' => 'Successfully updated rule group ":title".', + 'edit_rule_group' => 'Edit rule group ":title"', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => 'Delete rule group ":title"', + 'deleted_rule_group' => 'Deleted rule group ":title"', + 'update_rule_group' => 'Update rule group', + 'no_rules_in_group' => 'There are no rules in this group', + 'move_rule_group_up' => 'Move rule group up', + 'move_rule_group_down' => 'Move rule group down', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Make a new rule in rule group ":title"', + 'make_new_rule_no_group' => 'Make a new rule', + 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => 'strict rule', + 'rule_is_not_strict' => 'non-strict rule', + 'rule_help_stop_processing' => 'When you check this box, later rules in this group will not be executed.', + 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', + 'rule_help_active' => 'Inactive rules will never fire.', + 'stored_new_rule' => 'Stored new rule with title ":title"', + 'deleted_rule' => 'Deleted rule with title ":title"', + 'store_new_rule' => 'Store new rule', + 'updated_rule' => 'Updated rule with title ":title"', + 'default_rule_group_name' => 'Default rules', + 'default_rule_group_description' => 'All your rules not in a particular group.', + 'trigger' => 'Trigger', + 'trigger_value' => 'Trigger on value', + 'stop_processing_other_triggers' => 'Stop processing other triggers', + 'add_rule_trigger' => 'Add new trigger', + 'action' => 'Action', + 'action_value' => 'Action value', + 'stop_executing_other_actions' => 'Stop executing other actions', + 'add_rule_action' => 'Add new action', + 'edit_rule' => 'Edit rule ":title"', + 'delete_rule' => 'Delete rule ":title"', + 'update_rule' => 'Update rule', + 'test_rule_triggers' => 'See matching transactions', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => 'No valid triggers provided.', + 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', + 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', + 'include_transactions_from_accounts' => 'Include transactions from these accounts', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Execute', + 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', + 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', + 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', // actions and triggers - 'rule_trigger_store_journal' => 'When a transaction is created', - 'rule_trigger_update_journal' => 'When a transaction is updated', - 'rule_trigger_user_action' => 'User action is ":trigger_value"', + 'rule_trigger_store_journal' => 'When a transaction is created', + 'rule_trigger_update_journal' => 'When a transaction is updated', + 'rule_trigger_user_action' => 'User action is ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', - 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Category is..', - 'rule_trigger_category_is' => 'Category is ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Description starts with..', - 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Description ends with..', - 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Description contains..', - 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Description is..', - 'rule_trigger_description_is' => 'Description is ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaction date is before..', - 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaction date is after..', - 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget is..', - 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaction currency is..', - 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Has no category', - 'rule_trigger_has_no_category' => 'Transaction has no category', - 'rule_trigger_has_any_category_choice' => 'Has a (any) category', - 'rule_trigger_has_any_category' => 'Transaction has a (any) category', - 'rule_trigger_has_no_budget_choice' => 'Has no budget', - 'rule_trigger_has_no_budget' => 'Transaction has no budget', - 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', - 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', - 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', - 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', - 'rule_trigger_any_notes_choice' => 'Has (any) notes', - 'rule_trigger_any_notes' => 'Transaction has (any) notes', - 'rule_trigger_no_notes_choice' => 'Has no notes', - 'rule_trigger_no_notes' => 'Transaction has no notes', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', + 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Category is..', + 'rule_trigger_category_is' => 'Category is ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Description starts with..', + 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Description ends with..', + 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Description contains..', + 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Description is..', + 'rule_trigger_description_is' => 'Description is ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaction date is before..', + 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaction date is after..', + 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget is..', + 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaction currency is..', + 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Has no category', + 'rule_trigger_has_no_category' => 'Transaction has no category', + 'rule_trigger_has_any_category_choice' => 'Has a (any) category', + 'rule_trigger_has_any_category' => 'Transaction has a (any) category', + 'rule_trigger_has_no_budget_choice' => 'Has no budget', + 'rule_trigger_has_no_budget' => 'Transaction has no budget', + 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', + 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', + 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', + 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', + 'rule_trigger_any_notes_choice' => 'Has (any) notes', + 'rule_trigger_any_notes' => 'Transaction has (any) notes', + 'rule_trigger_no_notes_choice' => 'Has no notes', + 'rule_trigger_no_notes' => 'Transaction has no notes', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', // Ignore this comment // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Set category to ":action_value"', - 'rule_action_clear_category' => 'Clear category', - 'rule_action_set_budget' => 'Set budget to ":action_value"', - 'rule_action_clear_budget' => 'Clear budget', - 'rule_action_add_tag' => 'Add tag ":action_value"', - 'rule_action_remove_tag' => 'Remove tag ":action_value"', - 'rule_action_remove_all_tags' => 'Remove all tags', - 'rule_action_set_description' => 'Set description to ":action_value"', - 'rule_action_append_description' => 'Append description with ":action_value"', - 'rule_action_prepend_description' => 'Prepend description with ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Clear any category', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Clear any budget', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Remove all tags', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Set source account to :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Set destination account to :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Append notes with ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', - 'rule_action_clear_notes_choice' => 'Remove any notes', - 'rule_action_clear_notes' => 'Remove any notes', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link to bill ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Set notes to ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', - 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', - 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', - 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Rule group for bills', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Create a new rule for bill ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Rule for bill ":name"', - 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Set category to ":action_value"', + 'rule_action_clear_category' => 'Clear category', + 'rule_action_set_budget' => 'Set budget to ":action_value"', + 'rule_action_clear_budget' => 'Clear budget', + 'rule_action_add_tag' => 'Add tag ":action_value"', + 'rule_action_remove_tag' => 'Remove tag ":action_value"', + 'rule_action_remove_all_tags' => 'Remove all tags', + 'rule_action_set_description' => 'Set description to ":action_value"', + 'rule_action_append_description' => 'Append description with ":action_value"', + 'rule_action_prepend_description' => 'Prepend description with ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Clear any category', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Clear any budget', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Remove all tags', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Set source account to :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Set destination account to :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Append notes with ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', + 'rule_action_clear_notes_choice' => 'Remove any notes', + 'rule_action_clear_notes' => 'Remove any notes', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link to bill ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Set notes to ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', + 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', + 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', + 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Rule group for bills', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Create a new rule for bill ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Rule for bill ":name"', + 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => 'Store new tag', - 'update_tag' => 'Update tag', - 'no_location_set' => 'No location set.', - 'meta_data' => 'Meta data', - 'location' => 'Location', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Without date', - 'result' => 'Result', - 'sums_apply_to_range' => 'All sums apply to the selected range', - 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Clear location', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Store new tag', + 'update_tag' => 'Update tag', + 'no_location_set' => 'No location set.', + 'meta_data' => 'Meta data', + 'location' => 'Location', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Without date', + 'result' => 'Result', + 'sums_apply_to_range' => 'All sums apply to the selected range', + 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Clear location', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(equal to language)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Home screen accounts', - 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', - 'pref_view_range' => 'View range', - 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', - 'pref_1D' => 'One day', - 'pref_1W' => 'One week', - 'pref_1M' => 'One month', - 'pref_3M' => 'Three months (quarter)', - 'pref_6M' => 'Six months', - 'pref_1Y' => 'One year', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Languages', - 'pref_locale' => 'Locale settings', - 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => 'Fiscal year settings', - 'pref_custom_fiscal_year_label' => 'Enabled', - 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', - 'pref_fiscal_year_start_label' => 'Fiscal year start date', - 'pref_two_factor_auth' => '2-step verification', - 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Enable 2-step verification', - 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', - 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', - 'pref_two_factor_auth_code' => 'Verify code', - 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', - 'pref_two_factor_auth_reset_code' => 'Reset verification code', - 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => 'Save settings', - 'saved_preferences' => 'Preferences saved!', - 'preferences_general' => 'General', - 'preferences_frontpage' => 'Home screen', - 'preferences_security' => 'Security', - 'preferences_layout' => 'Layout', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Show deposits on the home screen', - 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', - 'pref_home_do_show_deposits' => 'Yes, show them', - 'successful_count' => 'of which :count successful', - 'list_page_size_title' => 'Page size', - 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', - 'list_page_size_label' => 'Page size', - 'between_dates' => '(:start and :end)', - 'pref_optional_fields_transaction' => 'Optional fields for transactions', - 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', - 'optional_tj_date_fields' => 'Date fields', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Attachment fields', - 'pref_optional_tj_interest_date' => 'Interest date', - 'pref_optional_tj_book_date' => 'Book date', - 'pref_optional_tj_process_date' => 'Processing date', - 'pref_optional_tj_due_date' => 'Due date', - 'pref_optional_tj_payment_date' => 'Payment date', - 'pref_optional_tj_invoice_date' => 'Invoice date', - 'pref_optional_tj_internal_reference' => 'Internal reference', - 'pref_optional_tj_notes' => 'Notes', - 'pref_optional_tj_attachments' => 'Attachments', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Dates', - 'optional_field_meta_business' => 'Business', - 'optional_field_attachments' => 'Attachments', - 'optional_field_meta_data' => 'Optional meta data', - 'external_url' => 'External URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(equal to language)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Home screen accounts', + 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', + 'pref_view_range' => 'View range', + 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', + 'pref_1D' => 'One day', + 'pref_1W' => 'One week', + 'pref_1M' => 'One month', + 'pref_3M' => 'Three months (quarter)', + 'pref_6M' => 'Six months', + 'pref_1Y' => 'One year', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Languages', + 'pref_locale' => 'Locale settings', + 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => 'Fiscal year settings', + 'pref_custom_fiscal_year_label' => 'Enabled', + 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', + 'pref_fiscal_year_start_label' => 'Fiscal year start date', + 'pref_two_factor_auth' => '2-step verification', + 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Enable 2-step verification', + 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', + 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', + 'pref_two_factor_auth_code' => 'Verify code', + 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', + 'pref_two_factor_auth_reset_code' => 'Reset verification code', + 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => 'Save settings', + 'saved_preferences' => 'Preferences saved!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Home screen', + 'preferences_security' => 'Security', + 'preferences_layout' => 'Layout', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Show deposits on the home screen', + 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', + 'pref_home_do_show_deposits' => 'Yes, show them', + 'successful_count' => 'of which :count successful', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', + 'between_dates' => '(:start and :end)', + 'pref_optional_fields_transaction' => 'Optional fields for transactions', + 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', + 'optional_tj_date_fields' => 'Date fields', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Attachment fields', + 'pref_optional_tj_interest_date' => 'Interest date', + 'pref_optional_tj_book_date' => 'Book date', + 'pref_optional_tj_process_date' => 'Processing date', + 'pref_optional_tj_due_date' => 'Due date', + 'pref_optional_tj_payment_date' => 'Payment date', + 'pref_optional_tj_invoice_date' => 'Invoice date', + 'pref_optional_tj_internal_reference' => 'Internal reference', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Attachments', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Business', + 'optional_field_attachments' => 'Attachments', + 'optional_field_meta_data' => 'Optional meta data', + 'external_url' => 'External URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', - 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', 'administrations_page_create_sub_title' => 'Create new financial administration', - 'basic_administration_information' => 'Basic administration information', - 'new_administration_created' => 'New financial administration "{{title}}" has been created', - 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', - 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Delete ALL your categories', - 'delete_all_tags' => 'Delete ALL your tags', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Change your password', - 'delete_account' => 'Delete account', - 'current_password' => 'Current password', - 'new_password' => 'New password', - 'new_password_again' => 'New password (again)', - 'delete_your_account' => 'Delete your account', - 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', - 'delete_your_account_password' => 'Enter your password to continue.', - 'password' => 'Password', - 'are_you_sure' => 'Are you sure? You cannot undo this.', - 'delete_account_button' => 'DELETE your account', - 'invalid_current_password' => 'Invalid current password!', - 'password_changed' => 'Password changed!', - 'should_change' => 'The idea is to change your password.', - 'invalid_password' => 'Invalid password!', - 'what_is_pw_security' => 'What is "verify password security"?', - 'secure_pw_title' => 'How to choose a secure password', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', - 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', - 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', - 'secure_pw_working_title' => 'How does it work?', - 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Should I check the box?', - 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', - 'command_line_token' => 'Command line token', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'A new command line token was generated', - 'change_your_email' => 'Change your email address', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Until you verify your email address, you cannot login.', - 'login_with_new_email' => 'You can now login with your new email address.', - 'login_with_old_email' => 'You can now login with your old email address again.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Create Client', - 'profile_oauth_edit_client' => 'Edit Client', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Redirect URL', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Authorized clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Create new token', - 'profile_create_token' => 'Create token', - 'profile_create' => 'Create', - 'profile_save_changes' => 'Save changes', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Delete ALL your categories', + 'delete_all_tags' => 'Delete ALL your tags', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Change your password', + 'delete_account' => 'Delete account', + 'current_password' => 'Current password', + 'new_password' => 'New password', + 'new_password_again' => 'New password (again)', + 'delete_your_account' => 'Delete your account', + 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', + 'delete_your_account_password' => 'Enter your password to continue.', + 'password' => 'Password', + 'are_you_sure' => 'Are you sure? You cannot undo this.', + 'delete_account_button' => 'DELETE your account', + 'invalid_current_password' => 'Invalid current password!', + 'password_changed' => 'Password changed!', + 'should_change' => 'The idea is to change your password.', + 'invalid_password' => 'Invalid password!', + 'what_is_pw_security' => 'What is "verify password security"?', + 'secure_pw_title' => 'How to choose a secure password', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', + 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', + 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', + 'secure_pw_working_title' => 'How does it work?', + 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Should I check the box?', + 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', + 'command_line_token' => 'Command line token', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'A new command line token was generated', + 'change_your_email' => 'Change your email address', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Until you verify your email address, you cannot login.', + 'login_with_new_email' => 'You can now login with your new email address.', + 'login_with_old_email' => 'You can now login with your old email address again.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Create Client', + 'profile_oauth_edit_client' => 'Edit Client', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Redirect URL', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Authorized clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Create new token', + 'profile_create_token' => 'Create token', + 'profile_create' => 'Create', + 'profile_save_changes' => 'Save changes', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', // Ignore this comment // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Export data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Export data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'One attachment|:count attachments', - 'attachments' => 'Attachments', - 'edit_attachment' => 'Edit attachment ":name"', - 'update_attachment' => 'Update attachment', - 'delete_attachment' => 'Delete attachment ":name"', - 'attachment_deleted' => 'Deleted attachment ":name"', - 'liabilities_deleted' => 'Deleted liability ":name"', - 'attachment_updated' => 'Updated attachment ":name"', - 'upload_max_file_size' => 'Maximum file size: :size', - 'list_all_attachments' => 'List of all attachments', + 'nr_of_attachments' => 'One attachment|:count attachments', + 'attachments' => 'Attachments', + 'edit_attachment' => 'Edit attachment ":name"', + 'update_attachment' => 'Update attachment', + 'delete_attachment' => 'Delete attachment ":name"', + 'attachment_deleted' => 'Deleted attachment ":name"', + 'liabilities_deleted' => 'Deleted liability ":name"', + 'attachment_updated' => 'Updated attachment ":name"', + 'upload_max_file_size' => 'Maximum file size: :size', + 'list_all_attachments' => 'List of all attachments', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Expenses', - 'title_withdrawal' => 'Expenses', - 'title_revenue' => 'Revenue / income', - 'title_deposit' => 'Revenue / income', - 'title_transfer' => 'Transfers', - 'title_transfers' => 'Transfers', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Expenses', + 'title_withdrawal' => 'Expenses', + 'title_revenue' => 'Revenue / income', + 'title_deposit' => 'Revenue / income', + 'title_transfer' => 'Transfers', + 'title_transfers' => 'Transfers', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', - 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', - 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', - 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', - 'convert_to_Deposit' => 'Convert ":description" to a deposit', - 'convert_to_Transfer' => 'Convert ":description" to a transfer', - 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', - 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', - 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', - 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', - 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', - 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', - 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', - 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', - 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', - 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', - 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', - 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', - 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', - 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', - 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', - 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', - 'converted_to_Deposit' => 'The transaction has been converted to a deposit', - 'converted_to_Transfer' => 'The transaction has been converted to a transfer', - 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Convert to a withdrawal', - 'convert_to_deposit' => 'Convert to a deposit', - 'convert_to_transfer' => 'Convert to a transfer', + 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', + 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', + 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', + 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', + 'convert_to_Deposit' => 'Convert ":description" to a deposit', + 'convert_to_Transfer' => 'Convert ":description" to a transfer', + 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', + 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', + 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', + 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', + 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', + 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', + 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', + 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', + 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', + 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', + 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', + 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', + 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', + 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', + 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', + 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'The transaction has been converted to a transfer', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Convert to a withdrawal', + 'convert_to_deposit' => 'Convert to a deposit', + 'convert_to_transfer' => 'Convert to a transfer', // create new stuff: - 'create_new_withdrawal' => 'Create new withdrawal', - 'create_new_deposit' => 'Create new deposit', - 'create_new_transfer' => 'Create new transfer', - 'create_new_asset' => 'Create new asset account', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Create new expense account', - 'create_new_revenue' => 'Create new revenue account', - 'create_new_piggy_bank' => 'Create new piggy bank', - 'create_new_bill' => 'Create new bill', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Create new withdrawal', + 'create_new_deposit' => 'Create new deposit', + 'create_new_transfer' => 'Create new transfer', + 'create_new_asset' => 'Create new asset account', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Create new expense account', + 'create_new_revenue' => 'Create new revenue account', + 'create_new_piggy_bank' => 'Create new piggy bank', + 'create_new_bill' => 'Create new bill', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Create a new currency', - 'store_currency' => 'Store new currency', - 'update_currency' => 'Update currency', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Currency :name deleted', - 'created_currency' => 'Currency :name created', - 'could_not_store_currency' => 'Could not store the new currency.', - 'updated_currency' => 'Currency :name updated', - 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', - 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', - 'make_default_currency' => 'Make default', - 'default_currency' => 'default', - 'currency_is_disabled' => 'Disabled', - 'enable_currency' => 'Enable', - 'disable_currency' => 'Disable', - 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', - 'currency_is_now_enabled' => 'Currency ":name" has been enabled', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Currency ":name" has been disabled', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Create a new currency', + 'store_currency' => 'Store new currency', + 'update_currency' => 'Update currency', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Currency :name deleted', + 'created_currency' => 'Currency :name created', + 'could_not_store_currency' => 'Could not store the new currency.', + 'updated_currency' => 'Currency :name updated', + 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', + 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', + 'make_default_currency' => 'Make default', + 'default_currency' => 'default', + 'currency_is_disabled' => 'Disabled', + 'enable_currency' => 'Enable', + 'disable_currency' => 'Disable', + 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', + 'currency_is_now_enabled' => 'Currency ":name" has been enabled', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Currency ":name" has been disabled', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Mandatory fields', - 'optionalFields' => 'Optional fields', - 'options' => 'Options', + 'mandatoryFields' => 'Mandatory fields', + 'optionalFields' => 'Optional fields', + 'options' => 'Options', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => 'Create a new budget', - 'store_new_budget' => 'Store new budget', - 'stored_new_budget' => 'Stored new budget ":name"', - 'available_between' => 'Available between :start and :end', - 'transactionsWithoutBudget' => 'Expenses without budget', - 'transactions_no_budget' => 'Expenses without budget between :start and :end', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'New budget', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Inactive budgets', - 'without_budget_between' => 'Transactions without a budget between :start and :end', - 'delete_budget' => 'Delete budget ":name"', - 'deleted_budget' => 'Deleted budget ":name"', - 'edit_budget' => 'Edit budget ":name"', - 'updated_budget' => 'Updated budget ":name"', - 'update_amount' => 'Update amount', - 'update_budget' => 'Update budget', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => 'Period navigator', - 'info_on_available_amount' => 'What do I have available?', - 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', - 'suggested' => 'Suggested', - 'average_between' => 'Average between :start and :end', - 'transferred_in' => 'Transferred (in)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daily', - 'auto_budget_period_weekly' => 'Weekly', - 'auto_budget_period_monthly' => 'Monthly', - 'auto_budget_period_quarterly' => 'Quarterly', - 'auto_budget_period_half_year' => 'Every half year', - 'auto_budget_period_yearly' => 'Yearly', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => 'Create a new budget', + 'store_new_budget' => 'Store new budget', + 'stored_new_budget' => 'Stored new budget ":name"', + 'available_between' => 'Available between :start and :end', + 'transactionsWithoutBudget' => 'Expenses without budget', + 'transactions_no_budget' => 'Expenses without budget between :start and :end', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'New budget', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Inactive budgets', + 'without_budget_between' => 'Transactions without a budget between :start and :end', + 'delete_budget' => 'Delete budget ":name"', + 'deleted_budget' => 'Deleted budget ":name"', + 'edit_budget' => 'Edit budget ":name"', + 'updated_budget' => 'Updated budget ":name"', + 'update_amount' => 'Update amount', + 'update_budget' => 'Update budget', + 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => 'Period navigator', + 'info_on_available_amount' => 'What do I have available?', + 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', + 'suggested' => 'Suggested', + 'average_between' => 'Average between :start and :end', + 'transferred_in' => 'Transferred (in)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daily', + 'auto_budget_period_weekly' => 'Weekly', + 'auto_budget_period_monthly' => 'Monthly', + 'auto_budget_period_quarterly' => 'Quarterly', + 'auto_budget_period_half_year' => 'Every half year', + 'auto_budget_period_yearly' => 'Yearly', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Bill matches transactions between :low and :high.', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => 'Rules related to this bill', - 'repeats' => 'Repeats', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Connected transactions', - 'auto_match_on' => 'Automatically matched by Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Next expected match', - 'delete_bill' => 'Delete bill ":name"', - 'deleted_bill' => 'Deleted bill ":name"', - 'edit_bill' => 'Edit bill ":name"', - 'more' => 'More', - 'rescan_old' => 'Run rules again, on all transactions', - 'update_bill' => 'Update bill', - 'updated_bill' => 'Updated bill ":name"', - 'store_new_bill' => 'Store new bill', - 'stored_new_bill' => 'Stored new bill ":name"', - 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Average bill amount (:year)', - 'average_bill_amount_overall' => 'Average bill amount (overall)', - 'bill_is_active' => 'Bill is active', - 'bill_expected_between' => 'Expected between :start and :end', - 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', - 'skips_over' => 'skips over', - 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', - 'list_inactive_rule' => 'inactive rule', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Bill matches transactions between :low and :high.', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => 'Rules related to this bill', + 'repeats' => 'Repeats', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Connected transactions', + 'auto_match_on' => 'Automatically matched by Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Next expected match', + 'delete_bill' => 'Delete bill ":name"', + 'deleted_bill' => 'Deleted bill ":name"', + 'edit_bill' => 'Edit bill ":name"', + 'more' => 'More', + 'rescan_old' => 'Run rules again, on all transactions', + 'update_bill' => 'Update bill', + 'updated_bill' => 'Updated bill ":name"', + 'store_new_bill' => 'Store new bill', + 'stored_new_bill' => 'Stored new bill ":name"', + 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Average bill amount (:year)', + 'average_bill_amount_overall' => 'Average bill amount (overall)', + 'bill_is_active' => 'Bill is active', + 'bill_expected_between' => 'Expected between :start and :end', + 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', + 'skips_over' => 'skips over', + 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', + 'list_inactive_rule' => 'inactive rule', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Details for asset account ":name"', - 'details_for_expense' => 'Details for expense account ":name"', - 'details_for_revenue' => 'Details for revenue account ":name"', - 'details_for_cash' => 'Details for cash account ":name"', - 'store_new_asset_account' => 'Store new asset account', - 'store_new_expense_account' => 'Store new expense account', - 'store_new_revenue_account' => 'Store new revenue account', - 'edit_asset_account' => 'Edit asset account ":name"', - 'edit_expense_account' => 'Edit expense account ":name"', - 'edit_revenue_account' => 'Edit revenue account ":name"', - 'delete_asset_account' => 'Delete asset account ":name"', - 'delete_expense_account' => 'Delete expense account ":name"', - 'delete_revenue_account' => 'Delete revenue account ":name"', - 'delete_liabilities_account' => 'Delete liability ":name"', - 'asset_deleted' => 'Successfully deleted asset account ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Successfully deleted expense account ":name"', - 'revenue_deleted' => 'Successfully deleted revenue account ":name"', - 'update_asset_account' => 'Update asset account', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Update liability', - 'update_expense_account' => 'Update expense account', - 'update_revenue_account' => 'Update revenue account', - 'make_new_asset_account' => 'Create a new asset account', - 'make_new_expense_account' => 'Create a new expense account', - 'make_new_revenue_account' => 'Create a new revenue account', - 'make_new_liabilities_account' => 'Create a new liability', - 'asset_accounts' => 'Asset accounts', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Expense accounts', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Revenue accounts', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Cash accounts', - 'Cash account' => 'Cash account', - 'liabilities_accounts' => 'Liabilities', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Reconcile account ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Delete reconciliation', - 'update_reconciliation' => 'Update reconciliation', - 'amount_cannot_be_zero' => 'The amount cannot be zero', - 'end_of_reconcile_period' => 'End of reconcile period: :period', - 'start_of_reconcile_period' => 'Start of reconcile period: :period', - 'start_balance' => 'Start balance', - 'end_balance' => 'End balance', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Update selection', - 'store_reconcile' => 'Store reconciliation', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Reconciliation', - 'reconciliation' => 'Reconciliation', - 'reconcile_options' => 'Reconciliation options', - 'reconcile_range' => 'Reconciliation range', - 'start_reconcile' => 'Start reconciling', - 'cash_account_type' => 'Cash', - 'cash' => 'cash', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Account type', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'New account ":name" stored!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Updated account ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Credit card options', - 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Please select at least one category', - 'select_at_least_one_budget' => 'Please select at least one budget', - 'select_at_least_one_tag' => 'Please select at least one tag', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'You can always edit or delete a correction later.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Reconciliation stored', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Reconcile this account', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Confirm reconciliation', - 'submitted_start_balance' => 'Submitted start balance', - 'selected_transactions' => 'Selected transactions (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Submitted end balance', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'Per day', - 'interest_calc_monthly' => 'Per month', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Details for asset account ":name"', + 'details_for_expense' => 'Details for expense account ":name"', + 'details_for_revenue' => 'Details for revenue account ":name"', + 'details_for_cash' => 'Details for cash account ":name"', + 'store_new_asset_account' => 'Store new asset account', + 'store_new_expense_account' => 'Store new expense account', + 'store_new_revenue_account' => 'Store new revenue account', + 'edit_asset_account' => 'Edit asset account ":name"', + 'edit_expense_account' => 'Edit expense account ":name"', + 'edit_revenue_account' => 'Edit revenue account ":name"', + 'delete_asset_account' => 'Delete asset account ":name"', + 'delete_expense_account' => 'Delete expense account ":name"', + 'delete_revenue_account' => 'Delete revenue account ":name"', + 'delete_liabilities_account' => 'Delete liability ":name"', + 'asset_deleted' => 'Successfully deleted asset account ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Successfully deleted expense account ":name"', + 'revenue_deleted' => 'Successfully deleted revenue account ":name"', + 'update_asset_account' => 'Update asset account', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Update liability', + 'update_expense_account' => 'Update expense account', + 'update_revenue_account' => 'Update revenue account', + 'make_new_asset_account' => 'Create a new asset account', + 'make_new_expense_account' => 'Create a new expense account', + 'make_new_revenue_account' => 'Create a new revenue account', + 'make_new_liabilities_account' => 'Create a new liability', + 'asset_accounts' => 'Asset accounts', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Expense accounts', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Revenue accounts', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Cash accounts', + 'Cash account' => 'Cash account', + 'liabilities_accounts' => 'Liabilities', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Reconcile account ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Delete reconciliation', + 'update_reconciliation' => 'Update reconciliation', + 'amount_cannot_be_zero' => 'The amount cannot be zero', + 'end_of_reconcile_period' => 'End of reconcile period: :period', + 'start_of_reconcile_period' => 'Start of reconcile period: :period', + 'start_balance' => 'Start balance', + 'end_balance' => 'End balance', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Update selection', + 'store_reconcile' => 'Store reconciliation', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Reconciliation', + 'reconciliation' => 'Reconciliation', + 'reconcile_options' => 'Reconciliation options', + 'reconcile_range' => 'Reconciliation range', + 'start_reconcile' => 'Start reconciling', + 'cash_account_type' => 'Cash', + 'cash' => 'cash', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'New account ":name" stored!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Updated account ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Credit card options', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Please select at least one category', + 'select_at_least_one_budget' => 'Please select at least one budget', + 'select_at_least_one_tag' => 'Please select at least one tag', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'You can always edit or delete a correction later.', + 'must_be_asset_account' => 'You can only reconcile asset accounts', + 'reconciliation_stored' => 'Reconciliation stored', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Reconcile this account', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Confirm reconciliation', + 'submitted_start_balance' => 'Submitted start balance', + 'selected_transactions' => 'Selected transactions (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Submitted end balance', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'Per day', + 'interest_calc_monthly' => 'Per month', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'List options', // categories: - 'new_category' => 'New category', - 'create_new_category' => 'Create a new category', - 'without_category' => 'Without a category', - 'update_category' => 'Update category', - 'updated_category' => 'Updated category ":name"', - 'categories' => 'Categories', - 'edit_category' => 'Edit category ":name"', - 'no_category' => '(no category)', - 'unknown_category_plain' => 'No category', - 'category' => 'Category', - 'delete_category' => 'Delete category ":name"', - 'deleted_category' => 'Deleted category ":name"', - 'store_category' => 'Store new category', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Without category between :start and :end', + 'new_category' => 'New category', + 'create_new_category' => 'Create a new category', + 'without_category' => 'Without a category', + 'update_category' => 'Update category', + 'updated_category' => 'Updated category ":name"', + 'categories' => 'Categories', + 'edit_category' => 'Edit category ":name"', + 'no_category' => '(no category)', + 'unknown_category_plain' => 'No category', + 'category' => 'Category', + 'delete_category' => 'Delete category ":name"', + 'deleted_category' => 'Deleted category ":name"', + 'store_category' => 'Store new category', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Without category between :start and :end', // Ignore this comment // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Update withdrawal', - 'update_deposit' => 'Update deposit', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Update transfer', - 'updated_withdrawal' => 'Updated withdrawal ":description"', - 'updated_deposit' => 'Updated deposit ":description"', - 'updated_transfer' => 'Updated transfer ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Delete withdrawal ":description"', - 'delete_deposit' => 'Delete deposit ":description"', - 'delete_transfer' => 'Delete transfer ":description"', - 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', - 'deleted_deposit' => 'Successfully deleted deposit ":description"', - 'deleted_transfer' => 'Successfully deleted transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Successfully created new transaction ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Select transactions', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', - 'stop_selection' => 'Stop selecting transactions', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Delete a number of transactions', - 'mass_edit_journals' => 'Edit a number of transactions', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(no budget)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Create', - 'empty' => '(empty)', - 'all_other_budgets' => '(all other budgets)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tag', - 'no_budget_squared' => '(no budget)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(no account type)', - 'opt_group_no_account_type' => '(no account type)', - 'opt_group_defaultAsset' => 'Default asset accounts', - 'opt_group_savingAsset' => 'Savings accounts', - 'opt_group_sharedAsset' => 'Shared asset accounts', - 'opt_group_ccAsset' => 'Credit cards', - 'opt_group_cashWalletAsset' => 'Cash wallets', - 'opt_group_expense_account' => 'Expense accounts', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => 'Liability: Loan', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => 'Liability: Debt', - 'opt_group_l_Mortgage' => 'Liability: Mortgage', - 'opt_group_l_Credit card' => 'Liability: Credit card', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', - 'attachment_not_found' => 'This attachment could not be found.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Update withdrawal', + 'update_deposit' => 'Update deposit', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Update transfer', + 'updated_withdrawal' => 'Updated withdrawal ":description"', + 'updated_deposit' => 'Updated deposit ":description"', + 'updated_transfer' => 'Updated transfer ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Delete withdrawal ":description"', + 'delete_deposit' => 'Delete deposit ":description"', + 'delete_transfer' => 'Delete transfer ":description"', + 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', + 'deleted_deposit' => 'Successfully deleted deposit ":description"', + 'deleted_transfer' => 'Successfully deleted transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Successfully created new transaction ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Select transactions', + 'rule_group_select_transactions' => 'Apply ":title" to transactions', + 'rule_select_transactions' => 'Apply ":title" to transactions', + 'stop_selection' => 'Stop selecting transactions', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Delete a number of transactions', + 'mass_edit_journals' => 'Edit a number of transactions', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(no budget)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Create', + 'empty' => '(empty)', + 'all_other_budgets' => '(all other budgets)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tag', + 'no_budget_squared' => '(no budget)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(no account type)', + 'opt_group_no_account_type' => '(no account type)', + 'opt_group_defaultAsset' => 'Default asset accounts', + 'opt_group_savingAsset' => 'Savings accounts', + 'opt_group_sharedAsset' => 'Shared asset accounts', + 'opt_group_ccAsset' => 'Credit cards', + 'opt_group_cashWalletAsset' => 'Cash wallets', + 'opt_group_expense_account' => 'Expense accounts', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => 'Liability: Loan', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => 'Liability: Debt', + 'opt_group_l_Mortgage' => 'Liability: Mortgage', + 'opt_group_l_Credit card' => 'Liability: Credit card', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', + 'attachment_not_found' => 'This attachment could not be found.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Submit', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Getting started', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Language', - 'new_savings_account' => ':bank_name savings account', - 'cash_wallet' => 'Cash wallet', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Submit', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Getting started', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Language', + 'new_savings_account' => ':bank_name savings account', + 'cash_wallet' => 'Cash wallet', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Your accounts', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Budgets and spending', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Savings', - 'newWithdrawal' => 'New expense', - 'newDeposit' => 'New deposit', - 'newTransfer' => 'New transfer', - 'bills_to_pay' => 'Bills to pay', - 'per_day' => 'Per day', - 'left_to_spend_per_day' => 'Left to spend per day', - 'bills_paid' => 'Bills paid', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Your accounts', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Budgets and spending', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Savings', + 'newWithdrawal' => 'New expense', + 'newDeposit' => 'New deposit', + 'newTransfer' => 'New transfer', + 'bills_to_pay' => 'Bills to pay', + 'per_day' => 'Per day', + 'left_to_spend_per_day' => 'Left to spend per day', + 'bills_paid' => 'Bills paid', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Currency', - 'preferences' => 'Preferences', - 'logout' => 'Logout', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Toggle navigation', - 'searchPlaceholder' => 'Search...', - 'version' => 'Version', - 'dashboard' => 'Dashboard', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Currencies', - 'activity' => 'Activity', - 'usage' => 'Usage', - 'accounts' => 'Accounts', - 'Asset account' => 'Asset account', - 'Default account' => 'Asset account', - 'Expense account' => 'Expense account', - 'Revenue account' => 'Revenue account', - 'Initial balance account' => 'Initial balance account', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Debt', - 'account_type_Loan' => 'Loan', - 'account_type_Mortgage' => 'Mortgage', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Budgets', - 'tags' => 'Tags', - 'reports' => 'Reports', - 'transactions' => 'Transactions', - 'expenses' => 'Expenses', - 'income' => 'Revenue / income', - 'transfers' => 'Transfers', - 'moneyManagement' => 'Money management', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Piggy banks', - 'piggy_banks' => 'Piggy banks', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Bills', - 'withdrawal' => 'Withdrawal', - 'opening_balance' => 'Opening balance', - 'deposit' => 'Deposit', - 'account' => 'Account', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Withdrawal', - 'Deposit' => 'Deposit', - 'Transfer' => 'Transfer', - 'bill' => 'Bill', - 'yes' => 'Yes', - 'no' => 'No', - 'amount' => 'Amount', - 'overview' => 'Overview', - 'saveOnAccount' => 'Save on account', - 'unknown' => 'Unknown', - 'monthly' => 'Monthly', - 'profile' => 'Profile', - 'errors' => 'Errors', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Currency', + 'preferences' => 'Preferences', + 'logout' => 'Logout', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Search...', + 'version' => 'Version', + 'dashboard' => 'Dashboard', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Currencies', + 'activity' => 'Activity', + 'usage' => 'Usage', + 'accounts' => 'Accounts', + 'Asset account' => 'Asset account', + 'Default account' => 'Asset account', + 'Expense account' => 'Expense account', + 'Revenue account' => 'Revenue account', + 'Initial balance account' => 'Initial balance account', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Debt', + 'account_type_Loan' => 'Loan', + 'account_type_Mortgage' => 'Mortgage', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Budgets', + 'tags' => 'Tags', + 'reports' => 'Reports', + 'transactions' => 'Transactions', + 'expenses' => 'Expenses', + 'income' => 'Revenue / income', + 'transfers' => 'Transfers', + 'moneyManagement' => 'Money management', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Piggy banks', + 'piggy_banks' => 'Piggy banks', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Bills', + 'withdrawal' => 'Withdrawal', + 'opening_balance' => 'Opening balance', + 'deposit' => 'Deposit', + 'account' => 'Account', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Withdrawal', + 'Deposit' => 'Deposit', + 'Transfer' => 'Transfer', + 'bill' => 'Bill', + 'yes' => 'Yes', + 'no' => 'No', + 'amount' => 'Amount', + 'overview' => 'Overview', + 'saveOnAccount' => 'Save on account', + 'unknown' => 'Unknown', + 'monthly' => 'Monthly', + 'profile' => 'Profile', + 'errors' => 'Errors', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', // Ignore this comment // reports: - 'report_default' => 'Default financial report between :start and :end', - 'report_audit' => 'Transaction history overview between :start and :end', - 'report_category' => 'Category report between :start and :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Quick links', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Default financial report', - 'quick_link_audit_report' => 'Transaction history overview', - 'report_this_month_quick' => 'Current month, all accounts', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Current year, all accounts', - 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', - 'report_all_time_quick' => 'All-time, all accounts', - 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', - 'incomeVsExpenses' => 'Income vs. expenses', - 'accountBalances' => 'Account balances', - 'balanceStart' => 'Balance at start of period', - 'balanceEnd' => 'Balance at end of period', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftInBudget' => 'Left in budget', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Sum of sums', - 'noCategory' => '(no category)', - 'notCharged' => 'Not charged (yet)', - 'inactive' => 'Inactive', - 'active' => 'Active', - 'difference' => 'Difference', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Out', - 'topX' => 'top :number', - 'show_full_list' => 'Show entire list', - 'show_only_top' => 'Show only top :number', - 'report_type' => 'Report type', - 'report_type_default' => 'Default financial report', - 'report_type_audit' => 'Transaction history overview (audit)', - 'report_type_category' => 'Category report', - 'report_type_budget' => 'Budget report', - 'report_type_tag' => 'Tag report', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', - 'report_included_accounts' => 'Included accounts', - 'report_date_range' => 'Date range', - 'report_preset_ranges' => 'Pre-set ranges', - 'shared' => 'Shared', - 'fiscal_year' => 'Fiscal year', - 'income_entry' => 'Income from account ":name" between :start and :end', - 'expense_entry' => 'Expenses to account ":name" between :start and :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', - 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Extra options', - 'report_has_no_extra_options' => 'This report has no extra options', - 'reports_submit' => 'View report', - 'end_after_start_date' => 'End date of report must be after start date.', - 'select_category' => 'Select category(ies)', - 'select_budget' => 'Select budget(s).', - 'select_tag' => 'Select tag(s).', - 'income_per_category' => 'Income per category', - 'expense_per_category' => 'Expense per category', - 'expense_per_budget' => 'Expense per budget', - 'income_per_account' => 'Income per account', - 'expense_per_account' => 'Expense per account', - 'expense_per_tag' => 'Expense per tag', - 'income_per_tag' => 'Income per tag', - 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', - 'everything_else' => 'Everything else', - 'income_and_expenses' => 'Income and expenses', - 'spent_average' => 'Spent (average)', - 'income_average' => 'Income (average)', - 'transaction_count' => 'Transaction count', - 'average_spending_per_account' => 'Average spending per account', - 'average_income_per_account' => 'Average income per account', - 'total' => 'Total', - 'description' => 'Description', - 'sum_of_period' => 'Sum of period', - 'average_in_period' => 'Average in period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Default asset account', - 'account_role_sharedAsset' => 'Shared asset account', - 'account_role_savingAsset' => 'Savings account', - 'account_role_ccAsset' => 'Credit card', - 'account_role_cashWalletAsset' => 'Cash wallet', - 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', - 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Default financial report between :start and :end', + 'report_audit' => 'Transaction history overview between :start and :end', + 'report_category' => 'Category report between :start and :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Quick links', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Default financial report', + 'quick_link_audit_report' => 'Transaction history overview', + 'report_this_month_quick' => 'Current month, all accounts', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Current year, all accounts', + 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', + 'report_all_time_quick' => 'All-time, all accounts', + 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', + 'incomeVsExpenses' => 'Income vs. expenses', + 'accountBalances' => 'Account balances', + 'balanceStart' => 'Balance at start of period', + 'balanceEnd' => 'Balance at end of period', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftInBudget' => 'Left in budget', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', + 'topX' => 'top :number', + 'show_full_list' => 'Show entire list', + 'show_only_top' => 'Show only top :number', + 'report_type' => 'Report type', + 'report_type_default' => 'Default financial report', + 'report_type_audit' => 'Transaction history overview (audit)', + 'report_type_category' => 'Category report', + 'report_type_budget' => 'Budget report', + 'report_type_tag' => 'Tag report', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Included accounts', + 'report_date_range' => 'Date range', + 'report_preset_ranges' => 'Pre-set ranges', + 'shared' => 'Shared', + 'fiscal_year' => 'Fiscal year', + 'income_entry' => 'Income from account ":name" between :start and :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Extra options', + 'report_has_no_extra_options' => 'This report has no extra options', + 'reports_submit' => 'View report', + 'end_after_start_date' => 'End date of report must be after start date.', + 'select_category' => 'Select category(ies)', + 'select_budget' => 'Select budget(s).', + 'select_tag' => 'Select tag(s).', + 'income_per_category' => 'Income per category', + 'expense_per_category' => 'Expense per category', + 'expense_per_budget' => 'Expense per budget', + 'income_per_account' => 'Income per account', + 'expense_per_account' => 'Expense per account', + 'expense_per_tag' => 'Expense per tag', + 'income_per_tag' => 'Income per tag', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Everything else', + 'income_and_expenses' => 'Income and expenses', + 'spent_average' => 'Spent (average)', + 'income_average' => 'Income (average)', + 'transaction_count' => 'Transaction count', + 'average_spending_per_account' => 'Average spending per account', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Shared asset account', + 'account_role_savingAsset' => 'Savings account', + 'account_role_ccAsset' => 'Credit card', + 'account_role_cashWalletAsset' => 'Cash wallet', + 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', + 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', // Ignore this comment // charts: - 'chart' => 'Chart', - 'month' => 'Month', - 'budget' => 'Budget', - 'spent' => 'Spent', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Spent in budget', - 'left_to_spend' => 'Left to spend', - 'earned' => 'Earned', - 'overspent' => 'Overspent', - 'left' => 'Left', - 'max-amount' => 'Maximum amount', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Current bill entry', - 'name' => 'Name', - 'date' => 'Date', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Paid', - 'unpaid' => 'Unpaid', - 'day' => 'Day', - 'budgeted' => 'Budgeted', - 'period' => 'Period', - 'balance' => 'Balance', - 'in_out_period' => 'In + out this period', - 'sum' => 'Sum', - 'summary' => 'Summary', - 'average' => 'Average', - 'balanceFor' => 'Balance for :name', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Current bill entry', + 'name' => 'Name', + 'date' => 'Date', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Paid', + 'unpaid' => 'Unpaid', + 'day' => 'Day', + 'budgeted' => 'Budgeted', + 'period' => 'Period', + 'balance' => 'Balance', + 'in_out_period' => 'In + out this period', + 'sum' => 'Sum', + 'summary' => 'Summary', + 'average' => 'Average', + 'balanceFor' => 'Balance for :name', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Add money to piggy bank ":name"', - 'piggy_bank' => 'Piggy bank', - 'new_piggy_bank' => 'New piggy bank', - 'store_piggy_bank' => 'Store new piggy bank', - 'stored_piggy_bank' => 'Store new piggy bank ":name"', - 'account_status' => 'Account status', - 'left_for_piggy_banks' => 'Left for piggy banks', - 'sum_of_piggy_banks' => 'Sum of piggy banks', - 'saved_so_far' => 'Saved so far', - 'left_to_save' => 'Left to save', - 'suggested_amount' => 'Suggested monthly amount to save', - 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', - 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', - 'add' => 'Add', - 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Add money to piggy bank ":name"', + 'piggy_bank' => 'Piggy bank', + 'new_piggy_bank' => 'New piggy bank', + 'store_piggy_bank' => 'Store new piggy bank', + 'stored_piggy_bank' => 'Store new piggy bank ":name"', + 'account_status' => 'Account status', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Sum of piggy banks', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', + 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', + 'add' => 'Add', + 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Remove', - 'max_amount_add' => 'The maximum amount you can add is', - 'max_amount_remove' => 'The maximum amount you can remove is', - 'update_piggy_button' => 'Update piggy bank', - 'update_piggy_title' => 'Update piggy bank ":name"', - 'updated_piggy_bank' => 'Updated piggy bank ":name"', - 'details' => 'Details', - 'events' => 'Events', - 'target_amount' => 'Target amount', - 'start_date' => 'Start date', - 'no_start_date' => 'No start date', - 'target_date' => 'Target date', - 'no_target_date' => 'No target date', - 'table' => 'Table', - 'delete_piggy_bank' => 'Delete piggy bank ":name"', - 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', - 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', - 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', - 'added_amount_to_piggy' => 'Added :amount to ":name"', - 'removed_amount_from_piggy' => 'Removed :amount from ":name"', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Remove', + 'max_amount_add' => 'The maximum amount you can add is', + 'max_amount_remove' => 'The maximum amount you can remove is', + 'update_piggy_button' => 'Update piggy bank', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Updated piggy bank ":name"', + 'details' => 'Details', + 'events' => 'Events', + 'target_amount' => 'Target amount', + 'start_date' => 'Start date', + 'no_start_date' => 'No start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Table', + 'delete_piggy_bank' => 'Delete piggy bank ":name"', + 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', + 'added_amount_to_piggy' => 'Added :amount to ":name"', + 'removed_amount_from_piggy' => 'Removed :amount from ":name"', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => 'Delete tag ":tag"', - 'deleted_tag' => 'Deleted tag ":tag"', - 'new_tag' => 'Make new tag', - 'edit_tag' => 'Edit tag ":tag"', - 'updated_tag' => 'Updated tag ":tag"', - 'created_tag' => 'Tag ":tag" has been created!', + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', - 'transaction_journal_information' => 'Transaction information', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta information', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Total amount', - 'number_of_decimals' => 'Number of decimals', + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta information', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', // Ignore this comment // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'User administration', - 'list_all_users' => 'All users', - 'all_users' => 'All users', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Configuration options for Firefly III', - 'setting_single_user_mode' => 'Single user mode', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Store configuration', - 'single_user_administration' => 'User administration for :email', - 'edit_user' => 'Edit user :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'User data', - 'user_information' => 'User information', - 'total_size' => 'total size', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'The configuration has been updated', - 'setting_is_demo_site' => 'Demo site', - 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Demo account expired', - 'no_block_code' => 'No reason for block or user not blocked', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'User has not yet confirmed new email address', - 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', - 'update_user' => 'Update user', - 'updated_user' => 'User data has been changed.', - 'delete_user' => 'Delete user :email', - 'user_deleted' => 'The user has been deleted', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Create new link type', - 'store_new_link_type' => 'Store new link type', - 'update_link_type' => 'Update link type', - 'edit_link_type' => 'Edit link type ":name"', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'Ie. "duplicates"', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(do not save connection)', - 'link_transaction' => 'Link transaction', - 'link_to_other_transaction' => 'Link this transaction to another transaction', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'This transaction', - 'transaction' => 'Transaction', - 'comments' => 'Comments', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Cannot link these transactions', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transactions are linked.', - 'journals_error_linked' => 'These transactions are already linked.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'This withdrawal', - 'this_deposit' => 'This deposit', - 'this_transfer' => 'This transfer', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Source transaction', - 'link_description' => 'Link description', - 'destination_transaction' => 'Destination transaction', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Deleted link', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Splits', - 'add_another_split' => 'Add another split', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Let\'s create an asset account!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', - 'no_accounts_create_asset' => 'Create an asset account', - 'no_accounts_title_expense' => 'Let\'s create an expense account!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Create an expense account', - 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', - 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_revenue' => 'Create a revenue account', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Let\'s create a budget', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', - 'no_budgets_create_default' => 'Create a budget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Let\'s create a category!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', - 'no_tags_title_default' => 'Let\'s create a tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Create a tag', - 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', - 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Create an expense', - 'no_transactions_title_deposit' => 'Let\'s create some income!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Create a deposit', - 'no_transactions_title_transfers' => 'Let\'s create a transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Create a transfer', - 'no_piggies_title_default' => 'Let\'s create a piggy bank!', - 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', - 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', - 'no_piggies_create_default' => 'Create a new piggy bank', - 'no_bills_title_default' => 'Let\'s create a bill!', - 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', - 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', - 'no_bills_create_default' => 'Create a bill', + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', + 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Create a revenue account', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Create an expense', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Let\'s create a piggy bank!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Create a new piggy bank', + 'no_bills_title_default' => 'Let\'s create a bill!', + 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', + 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_create_default' => 'Create a bill', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Every day', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Every day', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', // Ignore this comment // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Bills paid (:currency)', - 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Bills paid (:currency)', + 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; // Ignore this comment diff --git a/resources/lang/en_US/validation.php b/resources/lang/en_US/validation.php index 3f1b54bb83..bbebb1f705 100644 --- a/resources/lang/en_US/validation.php +++ b/resources/lang/en_US/validation.php @@ -264,7 +264,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', - 'administration_owner_rename' => 'You can\'t rename your standard administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; // Ignore this comment diff --git a/resources/lang/es_ES/firefly.php b/resources/lang/es_ES/firefly.php index d317358a51..dc482c414e 100644 --- a/resources/lang/es_ES/firefly.php +++ b/resources/lang/es_ES/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Cerrar', - 'actions' => 'Acciones', - 'edit' => 'Editar', - 'delete' => 'Eliminar', - 'split' => 'Separar', - 'single_split' => 'División', - 'clone' => 'Duplicar', - 'clone_and_edit' => 'Clonar y editar', - 'confirm_action' => 'Confirmar acción', - 'last_seven_days' => 'Últimos siete días', - 'last_thirty_days' => 'Últimos treinta días', - 'last_180_days' => 'Últimos 180 días', - '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', - 'today' => 'hoy', - 'customRange' => 'Rango personalizado', - 'date_range' => 'Rango de fechas', - 'apply' => 'Aplicar', - 'select_date' => 'Seleccionar fecha...', - 'cancel' => 'Cancelar', - 'from' => 'Desde', - 'to' => 'Hasta', - 'structure' => 'Estructura', - 'help_translating' => 'Este texto de ayuda no está disponible en tu idioma. ¿Nos ayudaría a traducir?', - 'showEverything' => 'Mostrar todo', - 'never' => 'Nunca', - 'no_results_for_empty_search' => 'Su búsqueda estaba vacía, por lo que no se encontró nada.', - 'removed_amount' => 'Eliminado :amount', - 'added_amount' => 'Añadido :amount', - 'asset_account_role_help' => 'Las opciones extras como resultado de su elección se pueden establecer más tarde.', - 'Opening balance' => 'Balance inicial', - 'create_new_stuff' => 'Crear nueva etiqueta', - 'new_withdrawal' => 'Nuevo gasto', - 'create_new_transaction' => 'Crear una nueva transacción', - 'sidebar_frontpage_create' => 'Crear', - 'new_transaction' => 'Nueva transacción', - 'no_rules_for_bill' => 'Esta factura no tiene reglas asociadas a ella.', - 'go_to_asset_accounts' => 'Ver tus cuentas de activos', - 'go_to_budgets' => 'Ir a tus presupuestos', - 'go_to_withdrawals' => 'Ir a tus gastos', - 'clones_journal_x' => 'Esta transacción es una copia de ":description" (#:id)', - 'go_to_categories' => 'Ir a tus categorías', - 'go_to_bills' => 'Ir a tus cuentas', - 'go_to_expense_accounts' => 'Ver tus cuentas de gastos', - 'go_to_revenue_accounts' => 'Ver tus cuentas de ingresos', - 'go_to_piggies' => 'Ir a tu hucha', - 'new_deposit' => 'Nuevo ingreso', - 'new_transfer' => 'Nueva transferencia', - 'new_transfers' => 'Nueva transferencia', - 'new_asset_account' => 'Nueva cuenta de activo', - 'new_expense_account' => 'Nueva cuenta de gastos', - 'new_revenue_account' => 'Nueva cuenta de ingresos', - 'new_liabilities_account' => 'Nuevo pasivo', - 'new_budget' => 'Nuevo presupuesto', - 'new_bill' => 'Nueva factura', - 'block_account_logout' => 'Tu sesión ha sido cerrada. Las cuentas bloqueadas no pueden utilizar este sitio. ¿Registrarte con una dirección válida de correo electrónico?', - 'flash_success' => '¡Operación correcta!', - 'flash_info' => 'Mensaje', - 'flash_warning' => '¡Advertencia!', - 'flash_error' => '¡Error!', - 'flash_danger' => '¡Peligro!', - 'flash_info_multiple' => 'Hay un mensaje | Hay :count mensajes', - 'flash_error_multiple' => 'Hay un error|Hay :count errores', - 'net_worth' => 'Valor Neto', - 'help_for_this_page' => 'Ayuda para esta página', - 'help_for_this_page_body' => 'Puedes encontrar más información sobre esta página en la documentación.', - 'two_factor_welcome' => '¡Hola!', - 'two_factor_enter_code' => 'Para continuar, introduce tu código de autenticación de dos pasos. La aplicación puede generarlo para usted.', - 'two_factor_code_here' => 'Introducir el código aquí', - 'two_factor_title' => 'Autenticación en dos pasos', - 'authenticate' => 'Autentificar', - 'two_factor_forgot_title' => 'Autenticación en dos pasos perdida', - 'two_factor_forgot' => 'Olvidé mi cosa de dos factores.', - 'two_factor_lost_header' => '¿Perdiste tu autenticación de doble factor?', - 'two_factor_lost_intro' => 'Si también perdiste tus códigos de copia de seguridad, tienes mala suerte. Esto no es algo que puedas arreglar desde la interfaz web. Tienes dos opciones.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'De lo contrario, comunícate por mail con el dueño del sitio, :site_owner y pídele que restablezca tu autenticación de dos pasos.', - 'mfa_backup_code' => 'Has usado un código de respaldo para iniciar sesión en Firefly III. No se puede usar de nuevo, así que táchalo de tu lista.', - 'pref_two_factor_new_backup_codes' => 'Obtener nuevos códigos de copia de seguridad', - 'pref_two_factor_backup_code_count' => 'Tienes un código de seguridad válido. |Tienes :count códigos de seguridad válidos.', - '2fa_i_have_them' => '¡Los he guardado!', - 'warning_much_data' => ':days días de datos pueden tardar en cargarse.', - 'registered' => '¡Te has registrado con éxito!', - 'Default asset account' => 'Cuenta de activos por defecto', - 'no_budget_pointer' => 'Parece que aún no tienes presupuestos. Debes crear algunos en la página presupuestos. Los presupuestos pueden ayudarle a realizar un seguimiento de los gastos.', - 'no_bill_pointer' => 'Parece que aún no tienes facturas. Deberías crear algunas en la página de facturas. Las facturas pueden ayudarte a llevar un seguimiento de los gastos.', - 'Savings account' => 'Cuenta de ahorros', - 'Credit card' => 'Tarjeta de crédito', - 'source_accounts' => 'Cuenta origen|Cuentas de origen', - 'destination_accounts' => 'Cuenta de destino|Cuentas de destino', - 'user_id_is' => 'Tu id de usuario es :user', - 'field_supports_markdown' => 'Este campo admite Markdown.', - 'need_more_help' => 'Si necesita más ayuda con Firefly III, por favor abre un ticket en Github.', - 'reenable_intro_text' => 'También puedes reactivar la guía de introducción.', - 'intro_boxes_after_refresh' => 'Los cuadros de introducción volverán a aparecer cuando actualices la página.', - 'show_all_no_filter' => 'Mostrar todas las transacciones sin agruparlas por fecha.', - 'expenses_by_category' => 'Gastos por categoría', - 'expenses_by_budget' => 'Gastos por presupuesto', - 'income_by_category' => 'Ingresos por categoría', - 'expenses_by_asset_account' => 'Gastos por cuenta de activos', - 'expenses_by_expense_account' => 'Gastos por cuenta de gastos', - 'cannot_redirect_to_account' => 'Firefly III no puede redirigirlo a la página correcta. Disculpas.', - 'sum_of_expenses' => 'Total gastos', - 'sum_of_income' => 'Total ingresos', - 'liabilities' => 'Pasivos', - 'spent_in_specific_budget' => 'Gastado en el presupuesto ":budget"', - 'spent_in_specific_double' => 'Gastado en cuenta ":account"', - 'earned_in_specific_double' => 'Ganado en cuenta ":account"', - 'source_account' => 'Cuenta origen', - 'source_account_reconciliation' => 'No puedes editar la cuenta de origen de una transacción de reconciliación.', - 'destination_account' => 'Cuenta destino', - 'destination_account_reconciliation' => 'No puedes editar la cuenta de destino de una transacción de reconciliación.', - 'sum_of_expenses_in_budget' => 'Total gastado en el presupuesto ":budget"', - 'left_in_budget_limit' => 'Disponible para gasto según presupuesto', - 'current_period' => 'Período actual', - 'show_the_current_period_and_overview' => 'Mostrar el período actual y el resumen', - 'pref_languages_locale' => 'Para que un idioma distinto al inglés funcione correctamente, su sistema operativo debe disponer de la información regional correcta. Si no está disponible, los datos de divisas, fechas y cantidades pueden tener un formato incorrecto.', - 'budget_in_period' => 'Todas las transacciones del presupuesto ":name" entre :start y :end en :currency', - 'chart_budget_in_period' => 'Gráfico para todas las transacciones del presupuesto ":name" entre :start y :end en :currency', - 'chart_budget_in_period_only_currency' => 'La cantidad que presupuestaste fue en :currency, por lo que este gráfico sólo mostrará transacciones en :currency.', - 'chart_account_in_period' => 'Gráfico para las transacciones de la cuenta ":name" (:balance) entre :start y :end', - 'chart_category_in_period' => 'Gráfico para las transacciones de la categoría ":name" entre :start y :end', - 'chart_category_all' => 'Gráfico para las transacciones de la categoría ":name"', - 'clone_withdrawal' => 'Duplicar este gasto', - 'clone_deposit' => 'Duplicar este ingreso', - 'clone_transfer' => 'Duplicar esta transferencia', - 'multi_select_no_selection' => 'Ninguno seleccionado', - 'multi_select_select_all' => 'Seleccionar todo', - 'multi_select_n_selected' => 'seleccionado', - 'multi_select_all_selected' => 'Todos seleccionados', - 'multi_select_filter_placeholder' => 'Buscar...', - 'intro_next_label' => 'Siguiente', - 'intro_prev_label' => 'Anterior', - 'intro_skip_label' => 'Saltar', - 'intro_done_label' => 'Hecho', - 'between_dates_breadcrumb' => 'Entre :start y :end', - 'all_journals_without_budget' => 'Todas las transacciones sin presupuesto', - 'journals_without_budget' => 'Transacciones sin presupuesto', - 'all_journals_without_category' => 'Todas las transacciones sin categoría', - 'journals_without_category' => 'Transacciones sin categoría', - 'all_journals_for_account' => 'Todas las transacciones de la cuenta :name', - 'chart_all_journals_for_account' => 'Gráfico de todas las transacciones de la cuenta :name', - 'journals_in_period_for_account' => 'Todas las transacciones por cuenta :name entre :start y :end', - 'journals_in_period_for_account_js' => 'Todas las transacciones de la cuenta {title} entre {start} y {end}', - 'transferred' => 'Transferido', - 'all_withdrawal' => 'Todos los gastos', - 'all_transactions' => 'Todas las transacciones', - 'title_withdrawal_between' => 'Todos los gastos entre :start y :end', - 'all_deposit' => 'Todos los ingresos', - 'title_deposit_between' => 'Todos los ingresos entre :start y :end', - 'all_transfers' => 'Todas las transferencias', - 'title_transfers_between' => 'Todas las transferencias entre :start y :end', - 'all_transfer' => 'Todas las transferencias', - 'all_journals_for_tag' => 'Todas las transacciones etiquetadas como ":tag"', - 'title_transfer_between' => 'Todas las transferencias entre :start y :end', - 'all_journals_for_category' => 'Todas las transacciones para la categoría :name', - 'all_journals_for_budget' => 'Todas las transacciones para el presupuesto :name', - 'chart_all_journals_for_budget' => 'Gráfico de todas las transacciones para presupuesto :name', - 'journals_in_period_for_category' => 'Todas las transacciones para la categoría :name entre :start y :end', - 'journals_in_period_for_tag' => 'Todas las transacciones para etiqueta :tag entre :start y :end', - 'not_available_demo_user' => 'La característica a la que tratas de acceder no está disponible para usuarios de la demo.', - 'exchange_rate_instructions' => 'La cuenta de activos "@name" sólo acepta transacciones en @native_currency. Si deseas usar @foreign_currency, asegúrate que la cantidad en @native_currency sea conocida también:', - 'transfer_exchange_rate_instructions' => 'La cuenta de activos "@source_name" solo acepta transacciones en "@source_currency". cuenta de activos de destino "@dest_name" solo acepta transacciones en @dest_currency. Debes indicar la cantidad correcta transferida en ambas monedas.', - 'transaction_data' => 'Datos de transacción', - 'invalid_server_configuration' => 'Configuración de servidor no válida', - 'invalid_locale_settings' => 'Firefly III no puede dar formato a las cantidades monetarias porque a tu servidor le faltan los paquetes necesarios. Hay instrucciones de cómo hacerlo.', - 'quickswitch' => 'Cambio rápido', - 'sign_in_to_start' => 'Iniciar sesión para comenzar', - 'sign_in' => 'Iniciar sesión', - 'register_new_account' => 'Registrar una nueva cuenta', - 'forgot_my_password' => 'He olvidado mi contraseña', - 'problems_with_input' => 'Hubo algunos problemas con su entrada.', - 'reset_password' => 'Restablecer su contraseña', - 'button_reset_password' => 'Restablecer contraseña', - 'reset_button' => 'Restablecer', - 'want_to_login' => 'Quiero iniciar sesión', - 'login_page_title' => 'Iniciar sesión en Firefly III', - 'register_page_title' => 'Registrarse en Firefly III', - 'forgot_pw_page_title' => 'Olvidaste tu contraseña para Firefly III', - 'reset_pw_page_title' => 'Restablecer contraseña para Firefly III', - 'cannot_reset_demo_user' => 'No puedes restablecer la contraseña del usuario demo.', - 'no_att_demo_user' => 'El usuario de demostración no puede subir archivos adjuntos.', - 'button_register' => 'Registrarse', - 'authorization' => 'Autorización', - 'active_bills_only' => 'solo facturas activas', - 'active_bills_only_total' => 'todas las facturas activas', - 'active_exp_bills_only' => 'solo facturas activas y esperadas', - 'active_exp_bills_only_total' => 'solo las facturas activas esperadas', - 'per_period_sum_1D' => 'Costes diarios esperados', - 'per_period_sum_1W' => 'Costes semanales esperados', - 'per_period_sum_1M' => 'Costes mensuales esperados', - 'per_period_sum_3M' => 'Costes trimestrales esperados', - 'per_period_sum_6M' => 'Costes semestrales esperados', - 'per_period_sum_1Y' => 'Costes anuales esperados', - 'average_per_bill' => 'media por factura', - 'expected_total' => 'total esperado', - 'reconciliation_account_name' => ':name reconciliación (:currency)', - 'saved' => 'Guardado', - 'advanced_options' => 'Opciones avanzadas', - 'advanced_options_explain' => 'Algunas páginas de Firefly III tienen opciones avanzadas ocultas detrás de este botón. Esta página no tiene nada elegante, ¡pero echa un vistazo a las demás!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Cerrar', + 'actions' => 'Acciones', + 'edit' => 'Editar', + 'delete' => 'Eliminar', + 'split' => 'Separar', + 'single_split' => 'División', + 'clone' => 'Duplicar', + 'clone_and_edit' => 'Clonar y editar', + 'confirm_action' => 'Confirmar acción', + 'last_seven_days' => 'Últimos siete días', + 'last_thirty_days' => 'Últimos treinta días', + 'last_180_days' => 'Últimos 180 días', + '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', + 'today' => 'hoy', + 'customRange' => 'Rango personalizado', + 'date_range' => 'Rango de fechas', + 'apply' => 'Aplicar', + 'select_date' => 'Seleccionar fecha...', + 'cancel' => 'Cancelar', + 'from' => 'Desde', + 'to' => 'Hasta', + 'structure' => 'Estructura', + 'help_translating' => 'Este texto de ayuda no está disponible en tu idioma. ¿Nos ayudaría a traducir?', + 'showEverything' => 'Mostrar todo', + 'never' => 'Nunca', + 'no_results_for_empty_search' => 'Su búsqueda estaba vacía, por lo que no se encontró nada.', + 'removed_amount' => 'Eliminado :amount', + 'added_amount' => 'Añadido :amount', + 'asset_account_role_help' => 'Las opciones extras como resultado de su elección se pueden establecer más tarde.', + 'Opening balance' => 'Balance inicial', + 'create_new_stuff' => 'Crear nueva etiqueta', + 'new_withdrawal' => 'Nuevo gasto', + 'create_new_transaction' => 'Crear una nueva transacción', + 'sidebar_frontpage_create' => 'Crear', + 'new_transaction' => 'Nueva transacción', + 'no_rules_for_bill' => 'Esta factura no tiene reglas asociadas a ella.', + 'go_to_asset_accounts' => 'Ver tus cuentas de activos', + 'go_to_budgets' => 'Ir a tus presupuestos', + 'go_to_withdrawals' => 'Ir a tus gastos', + 'clones_journal_x' => 'Esta transacción es una copia de ":description" (#:id)', + 'go_to_categories' => 'Ir a tus categorías', + 'go_to_bills' => 'Ir a tus cuentas', + 'go_to_expense_accounts' => 'Ver tus cuentas de gastos', + 'go_to_revenue_accounts' => 'Ver tus cuentas de ingresos', + 'go_to_piggies' => 'Ir a tu hucha', + 'new_deposit' => 'Nuevo ingreso', + 'new_transfer' => 'Nueva transferencia', + 'new_transfers' => 'Nueva transferencia', + 'new_asset_account' => 'Nueva cuenta de activo', + 'new_expense_account' => 'Nueva cuenta de gastos', + 'new_revenue_account' => 'Nueva cuenta de ingresos', + 'new_liabilities_account' => 'Nuevo pasivo', + 'new_budget' => 'Nuevo presupuesto', + 'new_bill' => 'Nueva factura', + 'block_account_logout' => 'Tu sesión ha sido cerrada. Las cuentas bloqueadas no pueden utilizar este sitio. ¿Registrarte con una dirección válida de correo electrónico?', + 'flash_success' => '¡Operación correcta!', + 'flash_info' => 'Mensaje', + 'flash_warning' => '¡Advertencia!', + 'flash_error' => '¡Error!', + 'flash_danger' => '¡Peligro!', + 'flash_info_multiple' => 'Hay un mensaje | Hay :count mensajes', + 'flash_error_multiple' => 'Hay un error|Hay :count errores', + 'net_worth' => 'Valor Neto', + 'help_for_this_page' => 'Ayuda para esta página', + 'help_for_this_page_body' => 'Puedes encontrar más información sobre esta página en la documentación.', + 'two_factor_welcome' => '¡Hola!', + 'two_factor_enter_code' => 'Para continuar, introduce tu código de autenticación de dos pasos. La aplicación puede generarlo para usted.', + 'two_factor_code_here' => 'Introducir el código aquí', + 'two_factor_title' => 'Autenticación en dos pasos', + 'authenticate' => 'Autentificar', + 'two_factor_forgot_title' => 'Autenticación en dos pasos perdida', + 'two_factor_forgot' => 'Olvidé mi cosa de dos factores.', + 'two_factor_lost_header' => '¿Perdiste tu autenticación de doble factor?', + 'two_factor_lost_intro' => 'Si también perdiste tus códigos de copia de seguridad, tienes mala suerte. Esto no es algo que puedas arreglar desde la interfaz web. Tienes dos opciones.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'De lo contrario, comunícate por mail con el dueño del sitio, :site_owner y pídele que restablezca tu autenticación de dos pasos.', + 'mfa_backup_code' => 'Has usado un código de respaldo para iniciar sesión en Firefly III. No se puede usar de nuevo, así que táchalo de tu lista.', + 'pref_two_factor_new_backup_codes' => 'Obtener nuevos códigos de copia de seguridad', + 'pref_two_factor_backup_code_count' => 'Tienes un código de seguridad válido. |Tienes :count códigos de seguridad válidos.', + '2fa_i_have_them' => '¡Los he guardado!', + 'warning_much_data' => ':days días de datos pueden tardar en cargarse.', + 'registered' => '¡Te has registrado con éxito!', + 'Default asset account' => 'Cuenta de activos por defecto', + 'no_budget_pointer' => 'Parece que aún no tienes presupuestos. Debes crear algunos en la página presupuestos. Los presupuestos pueden ayudarle a realizar un seguimiento de los gastos.', + 'no_bill_pointer' => 'Parece que aún no tienes facturas. Deberías crear algunas en la página de facturas. Las facturas pueden ayudarte a llevar un seguimiento de los gastos.', + 'Savings account' => 'Cuenta de ahorros', + 'Credit card' => 'Tarjeta de crédito', + 'source_accounts' => 'Cuenta origen|Cuentas de origen', + 'destination_accounts' => 'Cuenta de destino|Cuentas de destino', + 'user_id_is' => 'Tu id de usuario es :user', + 'field_supports_markdown' => 'Este campo admite Markdown.', + 'need_more_help' => 'Si necesita más ayuda con Firefly III, por favor abre un ticket en Github.', + 'reenable_intro_text' => 'También puedes reactivar la guía de introducción.', + 'intro_boxes_after_refresh' => 'Los cuadros de introducción volverán a aparecer cuando actualices la página.', + 'show_all_no_filter' => 'Mostrar todas las transacciones sin agruparlas por fecha.', + 'expenses_by_category' => 'Gastos por categoría', + 'expenses_by_budget' => 'Gastos por presupuesto', + 'income_by_category' => 'Ingresos por categoría', + 'expenses_by_asset_account' => 'Gastos por cuenta de activos', + 'expenses_by_expense_account' => 'Gastos por cuenta de gastos', + 'cannot_redirect_to_account' => 'Firefly III no puede redirigirlo a la página correcta. Disculpas.', + 'sum_of_expenses' => 'Total gastos', + 'sum_of_income' => 'Total ingresos', + 'liabilities' => 'Pasivos', + 'spent_in_specific_budget' => 'Gastado en el presupuesto ":budget"', + 'spent_in_specific_double' => 'Gastado en cuenta ":account"', + 'earned_in_specific_double' => 'Ganado en cuenta ":account"', + 'source_account' => 'Cuenta origen', + 'source_account_reconciliation' => 'No puedes editar la cuenta de origen de una transacción de reconciliación.', + 'destination_account' => 'Cuenta destino', + 'destination_account_reconciliation' => 'No puedes editar la cuenta de destino de una transacción de reconciliación.', + 'sum_of_expenses_in_budget' => 'Total gastado en el presupuesto ":budget"', + 'left_in_budget_limit' => 'Disponible para gasto según presupuesto', + 'current_period' => 'Período actual', + 'show_the_current_period_and_overview' => 'Mostrar el período actual y el resumen', + 'pref_languages_locale' => 'Para que un idioma distinto al inglés funcione correctamente, su sistema operativo debe disponer de la información regional correcta. Si no está disponible, los datos de divisas, fechas y cantidades pueden tener un formato incorrecto.', + 'budget_in_period' => 'Todas las transacciones del presupuesto ":name" entre :start y :end en :currency', + 'chart_budget_in_period' => 'Gráfico para todas las transacciones del presupuesto ":name" entre :start y :end en :currency', + 'chart_budget_in_period_only_currency' => 'La cantidad que presupuestaste fue en :currency, por lo que este gráfico sólo mostrará transacciones en :currency.', + 'chart_account_in_period' => 'Gráfico para las transacciones de la cuenta ":name" (:balance) entre :start y :end', + 'chart_category_in_period' => 'Gráfico para las transacciones de la categoría ":name" entre :start y :end', + 'chart_category_all' => 'Gráfico para las transacciones de la categoría ":name"', + 'clone_withdrawal' => 'Duplicar este gasto', + 'clone_deposit' => 'Duplicar este ingreso', + 'clone_transfer' => 'Duplicar esta transferencia', + 'multi_select_no_selection' => 'Ninguno seleccionado', + 'multi_select_select_all' => 'Seleccionar todo', + 'multi_select_n_selected' => 'seleccionado', + 'multi_select_all_selected' => 'Todos seleccionados', + 'multi_select_filter_placeholder' => 'Buscar...', + 'intro_next_label' => 'Siguiente', + 'intro_prev_label' => 'Anterior', + 'intro_skip_label' => 'Saltar', + 'intro_done_label' => 'Hecho', + 'between_dates_breadcrumb' => 'Entre :start y :end', + 'all_journals_without_budget' => 'Todas las transacciones sin presupuesto', + 'journals_without_budget' => 'Transacciones sin presupuesto', + 'all_journals_without_category' => 'Todas las transacciones sin categoría', + 'journals_without_category' => 'Transacciones sin categoría', + 'all_journals_for_account' => 'Todas las transacciones de la cuenta :name', + 'chart_all_journals_for_account' => 'Gráfico de todas las transacciones de la cuenta :name', + 'journals_in_period_for_account' => 'Todas las transacciones por cuenta :name entre :start y :end', + 'journals_in_period_for_account_js' => 'Todas las transacciones de la cuenta {title} entre {start} y {end}', + 'transferred' => 'Transferido', + 'all_withdrawal' => 'Todos los gastos', + 'all_transactions' => 'Todas las transacciones', + 'title_withdrawal_between' => 'Todos los gastos entre :start y :end', + 'all_deposit' => 'Todos los ingresos', + 'title_deposit_between' => 'Todos los ingresos entre :start y :end', + 'all_transfers' => 'Todas las transferencias', + 'title_transfers_between' => 'Todas las transferencias entre :start y :end', + 'all_transfer' => 'Todas las transferencias', + 'all_journals_for_tag' => 'Todas las transacciones etiquetadas como ":tag"', + 'title_transfer_between' => 'Todas las transferencias entre :start y :end', + 'all_journals_for_category' => 'Todas las transacciones para la categoría :name', + 'all_journals_for_budget' => 'Todas las transacciones para el presupuesto :name', + 'chart_all_journals_for_budget' => 'Gráfico de todas las transacciones para presupuesto :name', + 'journals_in_period_for_category' => 'Todas las transacciones para la categoría :name entre :start y :end', + 'journals_in_period_for_tag' => 'Todas las transacciones para etiqueta :tag entre :start y :end', + 'not_available_demo_user' => 'La característica a la que tratas de acceder no está disponible para usuarios de la demo.', + 'exchange_rate_instructions' => 'La cuenta de activos "@name" sólo acepta transacciones en @native_currency. Si deseas usar @foreign_currency, asegúrate que la cantidad en @native_currency sea conocida también:', + 'transfer_exchange_rate_instructions' => 'La cuenta de activos "@source_name" solo acepta transacciones en "@source_currency". cuenta de activos de destino "@dest_name" solo acepta transacciones en @dest_currency. Debes indicar la cantidad correcta transferida en ambas monedas.', + 'transaction_data' => 'Datos de transacción', + 'invalid_server_configuration' => 'Configuración de servidor no válida', + 'invalid_locale_settings' => 'Firefly III no puede dar formato a las cantidades monetarias porque a tu servidor le faltan los paquetes necesarios. Hay instrucciones de cómo hacerlo.', + 'quickswitch' => 'Cambio rápido', + 'sign_in_to_start' => 'Iniciar sesión para comenzar', + 'sign_in' => 'Iniciar sesión', + 'register_new_account' => 'Registrar una nueva cuenta', + 'forgot_my_password' => 'He olvidado mi contraseña', + 'problems_with_input' => 'Hubo algunos problemas con su entrada.', + 'reset_password' => 'Restablecer su contraseña', + 'button_reset_password' => 'Restablecer contraseña', + 'reset_button' => 'Restablecer', + 'want_to_login' => 'Quiero iniciar sesión', + 'login_page_title' => 'Iniciar sesión en Firefly III', + 'register_page_title' => 'Registrarse en Firefly III', + 'forgot_pw_page_title' => 'Olvidaste tu contraseña para Firefly III', + 'reset_pw_page_title' => 'Restablecer contraseña para Firefly III', + 'cannot_reset_demo_user' => 'No puedes restablecer la contraseña del usuario demo.', + 'no_att_demo_user' => 'El usuario de demostración no puede subir archivos adjuntos.', + 'button_register' => 'Registrarse', + 'authorization' => 'Autorización', + 'active_bills_only' => 'solo facturas activas', + 'active_bills_only_total' => 'todas las facturas activas', + 'active_exp_bills_only' => 'solo facturas activas y esperadas', + 'active_exp_bills_only_total' => 'solo las facturas activas esperadas', + 'per_period_sum_1D' => 'Costes diarios esperados', + 'per_period_sum_1W' => 'Costes semanales esperados', + 'per_period_sum_1M' => 'Costes mensuales esperados', + 'per_period_sum_3M' => 'Costes trimestrales esperados', + 'per_period_sum_6M' => 'Costes semestrales esperados', + 'per_period_sum_1Y' => 'Costes anuales esperados', + 'average_per_bill' => 'media por factura', + 'expected_total' => 'total esperado', + 'reconciliation_account_name' => ':name reconciliación (:currency)', + 'saved' => 'Guardado', + 'advanced_options' => 'Opciones avanzadas', + 'advanced_options_explain' => 'Algunas páginas de Firefly III tienen opciones avanzadas ocultas detrás de este botón. Esta página no tiene nada elegante, ¡pero echa un vistazo a las demás!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'deshabilitado', - 'no_webhook_messages' => 'No hay mensajes webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Después de crear la transacción', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Después de actualizar la transacción', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Después de eliminar la transacción', - 'webhook_response_TRANSACTIONS' => 'Detalles de la transacción', - 'webhook_response_ACCOUNTS' => 'Detalles de la cuenta', - 'webhook_response_none_NONE' => 'Sin detalles', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspeccionar', - 'create_new_webhook' => 'Crear un nuevo webhook', - 'webhooks_create_breadcrumb' => 'Crear un nuevo Webhook', - 'webhook_trigger_form_help' => 'Indica en qué evento se activará el webhook', - 'webhook_response_form_help' => 'Indique lo que el webhook debe enviar a la URL.', - 'webhook_delivery_form_help' => 'En qué formato debe entregar los datos el webhook.', - 'webhook_active_form_help' => 'El webhook debe estar activo o no será llamado.', - 'stored_new_webhook' => 'Nuevo webhook almacenado ":title"', - 'delete_webhook' => 'Eliminar webhook', - 'deleted_webhook' => 'Webhook eliminado ":title"', - 'edit_webhook' => 'Editar webhook ":title " "', - 'updated_webhook' => 'Webhook actualizado ":title"', - 'edit_webhook_js' => 'Editar webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'El disparador se activó en la transacción indicada. Por favor, espere a que aparezcan los resultados.', - 'webhook_messages' => 'Mensaje de Webhook', - 'view_message' => 'Ver mensaje', - 'view_attempts' => 'Ver intentos fallidos', - 'message_content_title' => 'Contenido del mensaje del webhook', - 'message_content_help' => 'Este es el contenido del mensaje que se envió (o se intentó) usando este webhook.', - 'attempt_content_title' => 'Intentos de webhook', - 'attempt_content_help' => 'Estos son todos los intentos fallidos de enviar este mensaje de webhook a la URL configurada. Después de algún tiempo, Firefly III dejará de intentarlo.', - 'no_attempts' => 'No hay intentos fallidos. ¡Eso es bueno!', - 'webhook_attempt_at' => 'Intento a las {moment}', - 'logs' => 'Registros', - 'response' => 'Respuesta', - 'visit_webhook_url' => 'Visita la URL del webhook', - 'reset_webhook_secret' => 'Restablecer secreto del webhook', - 'webhook_stored_link' => 'El webhook #{ID} ("{title}") ha sido almacenado.', - 'webhook_updated_link' => 'El webhook #{ID} ("{title}") ha sido actualizado.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'deshabilitado', + 'no_webhook_messages' => 'No hay mensajes webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Después de crear la transacción', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Después de actualizar la transacción', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Después de eliminar la transacción', + 'webhook_response_TRANSACTIONS' => 'Detalles de la transacción', + 'webhook_response_ACCOUNTS' => 'Detalles de la cuenta', + 'webhook_response_none_NONE' => 'Sin detalles', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspeccionar', + 'create_new_webhook' => 'Crear un nuevo webhook', + 'webhooks_create_breadcrumb' => 'Crear un nuevo Webhook', + 'webhook_trigger_form_help' => 'Indica en qué evento se activará el webhook', + 'webhook_response_form_help' => 'Indique lo que el webhook debe enviar a la URL.', + 'webhook_delivery_form_help' => 'En qué formato debe entregar los datos el webhook.', + 'webhook_active_form_help' => 'El webhook debe estar activo o no será llamado.', + 'stored_new_webhook' => 'Nuevo webhook almacenado ":title"', + 'delete_webhook' => 'Eliminar webhook', + 'deleted_webhook' => 'Webhook eliminado ":title"', + 'edit_webhook' => 'Editar webhook ":title " "', + 'updated_webhook' => 'Webhook actualizado ":title"', + 'edit_webhook_js' => 'Editar webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'El disparador se activó en la transacción indicada. Por favor, espere a que aparezcan los resultados.', + 'webhook_messages' => 'Mensaje de Webhook', + 'view_message' => 'Ver mensaje', + 'view_attempts' => 'Ver intentos fallidos', + 'message_content_title' => 'Contenido del mensaje del webhook', + 'message_content_help' => 'Este es el contenido del mensaje que se envió (o se intentó) usando este webhook.', + 'attempt_content_title' => 'Intentos de webhook', + 'attempt_content_help' => 'Estos son todos los intentos fallidos de enviar este mensaje de webhook a la URL configurada. Después de algún tiempo, Firefly III dejará de intentarlo.', + 'no_attempts' => 'No hay intentos fallidos. ¡Eso es bueno!', + 'webhook_attempt_at' => 'Intento a las {moment}', + 'logs' => 'Registros', + 'response' => 'Respuesta', + 'visit_webhook_url' => 'Visita la URL del webhook', + 'reset_webhook_secret' => 'Restablecer secreto del webhook', + 'webhook_stored_link' => 'El webhook #{ID} ("{title}") ha sido almacenado.', + 'webhook_updated_link' => 'El webhook #{ID} ("{title}") ha sido actualizado.', // API access - 'authorization_request' => 'Firefly III v:version Solicitud de autorización', - 'authorization_request_intro' => ':client está pidiendo permiso para acceder a la administración de tus finanzas. ¿Deseas autorizar a :client a acceder a estos datos?', - 'authorization_request_site' => 'Serás redirigido a :url, que podrá acceder a tus datos de Firefly III.', - 'authorization_request_invalid' => 'Esta solicitud de acceso no es válida. Por favor, no vuelva a abrir este enlace.', - 'scopes_will_be_able' => 'Esta aplicación podrá:', - 'button_authorize' => 'Autorizar', - 'none_in_select_list' => '(ninguno)', - 'no_piggy_bank' => '(sin hucha)', - 'name_in_currency' => ':name en :currency', - 'paid_in_currency' => 'Pagado en :currency', - 'unpaid_in_currency' => 'Impagado en :currency', - 'is_alpha_warning' => 'Estás ejecutando una versión ALPHA. Ten cuidado con los errores y problemas.', - 'is_beta_warning' => 'Estás ejecutando una versión BETA. Ten cuidado con los errores y problemas.', - 'all_destination_accounts' => 'Cuentas destino', - 'all_source_accounts' => 'Cuentas origen', - 'back_to_index' => 'Volver al Índice', - 'cant_logout_guard' => 'Firefly III no puede cerrar sesión.', - 'internal_reference' => 'Referencia interna', + 'authorization_request' => 'Firefly III v:version Solicitud de autorización', + 'authorization_request_intro' => ':client está pidiendo permiso para acceder a la administración de tus finanzas. ¿Deseas autorizar a :client a acceder a estos datos?', + 'authorization_request_site' => 'Serás redirigido a :url, que podrá acceder a tus datos de Firefly III.', + 'authorization_request_invalid' => 'Esta solicitud de acceso no es válida. Por favor, no vuelva a abrir este enlace.', + 'scopes_will_be_able' => 'Esta aplicación podrá:', + 'button_authorize' => 'Autorizar', + 'none_in_select_list' => '(ninguno)', + 'no_piggy_bank' => '(sin hucha)', + 'name_in_currency' => ':name en :currency', + 'paid_in_currency' => 'Pagado en :currency', + 'unpaid_in_currency' => 'Impagado en :currency', + 'is_alpha_warning' => 'Estás ejecutando una versión ALPHA. Ten cuidado con los errores y problemas.', + 'is_beta_warning' => 'Estás ejecutando una versión BETA. Ten cuidado con los errores y problemas.', + 'all_destination_accounts' => 'Cuentas destino', + 'all_source_accounts' => 'Cuentas origen', + 'back_to_index' => 'Volver al Índice', + 'cant_logout_guard' => 'Firefly III no puede cerrar sesión.', + 'internal_reference' => 'Referencia interna', // check for updates: - 'update_check_title' => 'Buscar actualizaciones', - 'admin_update_check_title' => 'Buscar actualizaciones automáticamente', - 'admin_update_check_explain' => 'Firefly III puede buscar actualizaciones automáticamente. Cuando habilitas esta configuración, Firefly III contactará con el servidor de actualizaciones para comprobar si hay disponible una nueva versión. Cuando sea así, te llegará una notificación. Puedes probar esta notificación usando el botón de la derecha. Por favor, indica abajo si quieres que Firefly III busque actualizaciones.', - 'check_for_updates_permission' => 'Firefly III puede buscar actualizaciones, pero necesita tu permiso para hacerlo. Por favor, ve a administracionpara indicar si deseas que esta característica sea habilitada.', - 'updates_ask_me_later' => 'Preguntarme mas tarde', - 'updates_do_not_check' => 'No buscar actualizaciones', - 'updates_enable_check' => 'Habilitar el buscar actualizaciones', - 'admin_update_check_now_title' => 'Buscar actualizaciones ahora', - 'admin_update_check_now_explain' => 'SI pulsas el botón, Firefly III comprobará si tu actual versión es la última.', - 'check_for_updates_button' => '¡Comprobar ahora!', - 'update_new_version_alert' => 'Una nueva versión de Firefly III esta disponible. Estás usando :your_version, la ultima versión es :new_version que se lanzó en :date.', - 'update_version_beta' => 'Esta versión es una versión BETA. Puede tener problemas.', - 'update_version_alpha' => 'Esta versión es una versión de ALPHA. Puede tener problemas.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Estás usando :version, que es la última versión disponible.', - 'update_newer_version_alert' => 'Estás usando :your_version, que es más reciente que la última versión, :new_version.', - 'update_check_error' => 'Se ha producido un error al buscar actualizaciones: :error', - 'unknown_error' => 'Error desconocido. Lo sentimos.', - 'disabled_but_check' => 'Has desactivado la comprobación de actualizaciones. Así que no olvides comprobar las actualizaciones tú mismo de vez en cuando. ¡Gracias!', - 'admin_update_channel_title' => 'Canal de actualizaciones', - 'admin_update_channel_explain' => 'Firefly III tiene tres "canales" de actualización que determinan cuán por delante está en términos de características, mejoras y errores. Usa el canal "beta" si eres aventurero y el "alfa" cuando quieras vivir la vida peligrosamente.', - 'update_channel_stable' => 'Estable. Todo debería funcionar como se espera.', - 'update_channel_beta' => 'Beta. Nuevas funcionalidades, pero las cosas pueden romperse.', - 'update_channel_alpha' => 'Alpha. Tiramos cosas y usamos lo que sea que se pegue.', + 'update_check_title' => 'Buscar actualizaciones', + 'admin_update_check_title' => 'Buscar actualizaciones automáticamente', + 'admin_update_check_explain' => 'Firefly III puede buscar actualizaciones automáticamente. Cuando habilitas esta configuración, Firefly III contactará con el servidor de actualizaciones para comprobar si hay disponible una nueva versión. Cuando sea así, te llegará una notificación. Puedes probar esta notificación usando el botón de la derecha. Por favor, indica abajo si quieres que Firefly III busque actualizaciones.', + 'check_for_updates_permission' => 'Firefly III puede buscar actualizaciones, pero necesita tu permiso para hacerlo. Por favor, ve a administracionpara indicar si deseas que esta característica sea habilitada.', + 'updates_ask_me_later' => 'Preguntarme mas tarde', + 'updates_do_not_check' => 'No buscar actualizaciones', + 'updates_enable_check' => 'Habilitar el buscar actualizaciones', + 'admin_update_check_now_title' => 'Buscar actualizaciones ahora', + 'admin_update_check_now_explain' => 'SI pulsas el botón, Firefly III comprobará si tu actual versión es la última.', + 'check_for_updates_button' => '¡Comprobar ahora!', + 'update_new_version_alert' => 'Una nueva versión de Firefly III esta disponible. Estás usando :your_version, la ultima versión es :new_version que se lanzó en :date.', + 'update_version_beta' => 'Esta versión es una versión BETA. Puede tener problemas.', + 'update_version_alpha' => 'Esta versión es una versión de ALPHA. Puede tener problemas.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Estás usando :version, que es la última versión disponible.', + 'update_newer_version_alert' => 'Estás usando :your_version, que es más reciente que la última versión, :new_version.', + 'update_check_error' => 'Se ha producido un error al buscar actualizaciones: :error', + 'unknown_error' => 'Error desconocido. Lo sentimos.', + 'disabled_but_check' => 'Has desactivado la comprobación de actualizaciones. Así que no olvides comprobar las actualizaciones tú mismo de vez en cuando. ¡Gracias!', + 'admin_update_channel_title' => 'Canal de actualizaciones', + 'admin_update_channel_explain' => 'Firefly III tiene tres "canales" de actualización que determinan cuán por delante está en términos de características, mejoras y errores. Usa el canal "beta" si eres aventurero y el "alfa" cuando quieras vivir la vida peligrosamente.', + 'update_channel_stable' => 'Estable. Todo debería funcionar como se espera.', + 'update_channel_beta' => 'Beta. Nuevas funcionalidades, pero las cosas pueden romperse.', + 'update_channel_alpha' => 'Alpha. Tiramos cosas y usamos lo que sea que se pegue.', // search - 'search' => 'Buscar', - 'search_query' => 'Consulta', - 'search_found_transactions' => 'Firefly III encontrada :count transacción en :time segundos.|Firefly III encontradas :count transacciones en :time segundos.', - 'search_found_more_transactions' => 'Firefly III encontró más de :count transacciones en :time segundos.', - 'search_for_query' => 'Firefly III está buscando transacciones que contengan todas estas palabras: :query', - 'invalid_operators_list' => 'Estos parámetros de búsqueda no son válidos y han sido ignorados.', + 'search' => 'Buscar', + 'search_query' => 'Consulta', + 'search_found_transactions' => 'Firefly III encontrada :count transacción en :time segundos.|Firefly III encontradas :count transacciones en :time segundos.', + 'search_found_more_transactions' => 'Firefly III encontró más de :count transacciones en :time segundos.', + 'search_for_query' => 'Firefly III está buscando transacciones que contengan todas estas palabras: :query', + 'invalid_operators_list' => 'Estos parámetros de búsqueda no son válidos y han sido ignorados.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'La fecha de la transacción es ":value"', - 'search_modifier_not_date_on' => 'La fecha de la transacción no es ":value"', - 'search_modifier_reconciled' => 'La transacción está conciliada', - 'search_modifier_not_reconciled' => 'La transacción no está conciliada', - 'search_modifier_id' => 'El ID de la transacción es ":value"', - 'search_modifier_not_id' => 'El ID de la transacción no es ":value"', - 'search_modifier_date_before' => 'La fecha de la transacción es anterior al ":value"', - 'search_modifier_date_after' => 'La fecha de la transacción es posterior al ":value"', - 'search_modifier_external_id_is' => 'La ID externo es ":value"', - 'search_modifier_not_external_id_is' => 'El ID externo no es ":value"', - 'search_modifier_no_external_url' => 'La transacción no tiene URL externa', - 'search_modifier_no_external_id' => 'La transacción no tiene ID externa', - 'search_modifier_not_any_external_url' => 'La transacción no tiene URL externa', - 'search_modifier_not_any_external_id' => 'La transacción no tiene ID externa', - 'search_modifier_any_external_url' => 'La transacción debe tener alguna URL externa', - 'search_modifier_any_external_id' => 'La transacción debe tener una ID externa (cualquiera)', - 'search_modifier_not_no_external_url' => 'La transacción debe tener una URL externa (cualquiera)', - 'search_modifier_not_no_external_id' => 'La transacción debe tener una ID externa (cualquiera)', - 'search_modifier_internal_reference_is' => 'La referencia interna es ":value"', - 'search_modifier_not_internal_reference_is' => 'La referencia interna no es ":value"', - 'search_modifier_description_starts' => 'La descripción comienza con ":value"', - 'search_modifier_not_description_starts' => 'La descripción no comienza con ":value"', - 'search_modifier_description_ends' => 'La descripción termina en ":value"', - 'search_modifier_not_description_ends' => 'La descripción no termina en ":value"', - 'search_modifier_description_contains' => 'La descripción contiene ":value"', - 'search_modifier_not_description_contains' => 'La descripción no contiene ":value"', - 'search_modifier_description_is' => 'La descripción es exactamente ":value"', - 'search_modifier_not_description_is' => 'La descripción no es exactamente ":value"', - 'search_modifier_currency_is' => 'La transacción en moneda (extranjera) es ":value"', - 'search_modifier_not_currency_is' => 'La moneda (extranjera) de la transacción no es ":value"', - 'search_modifier_foreign_currency_is' => 'La transacción en moneda extranjera es ":value"', - 'search_modifier_not_foreign_currency_is' => 'La moneda extranjera de la transacción no es ":value"', - 'search_modifier_has_attachments' => 'La transacción debe tener un archivo adjunto', - 'search_modifier_has_no_category' => 'La transacción no debe tener categoría', - 'search_modifier_not_has_no_category' => 'La transacción debe tener una categoría (cualquiera)', - 'search_modifier_not_has_any_category' => 'La transacción no debe tener categoría', - 'search_modifier_has_any_category' => 'La transacción debe tener alguna categoría', - 'search_modifier_has_no_budget' => 'La transacción no debe tener presupuesto', - 'search_modifier_not_has_any_budget' => 'La transacción no debe tener presupuesto', - 'search_modifier_has_any_budget' => 'La transacción debe tener un presupuesto', - 'search_modifier_not_has_no_budget' => 'La transacción debe tener un presupuesto (cualquiera)', - 'search_modifier_has_no_bill' => 'La transacción no debe tener factura', - 'search_modifier_not_has_no_bill' => 'La transacción debe tener una factura (cualquiera)', - 'search_modifier_has_any_bill' => 'La transacción debe tener una (cualquier) factura', - 'search_modifier_not_has_any_bill' => 'La transacción no debe tener factura', - 'search_modifier_has_no_tag' => 'La transacción no debe tener etiquetas', - 'search_modifier_not_has_any_tag' => 'La transacción no debe tener etiquetas', - 'search_modifier_not_has_no_tag' => 'La transacción debe tener una etiqueta (cualquiera)', - 'search_modifier_has_any_tag' => 'La transacción debe tener (alguna) etiqueta', - 'search_modifier_notes_contains' => 'Las notas de la transacción contienen ":value"', - 'search_modifier_not_notes_contains' => 'Las notas de la transacción no contienen ":value"', - 'search_modifier_notes_starts' => 'Las notas de la transacción comienzan con ":value"', - 'search_modifier_not_notes_starts' => 'Las notas de la transacción no comienzan con ":value"', - 'search_modifier_notes_ends' => 'Las notas de la transacción terminan con ":value"', - 'search_modifier_not_notes_ends' => 'Las notas de la transacción no terminan con ":value"', - 'search_modifier_notes_is' => 'Las notas de la transacción son exactamente ":value"', - 'search_modifier_not_notes_is' => 'Las notas de la transacción no son exactamente ":value"', - 'search_modifier_no_notes' => 'La transacción no tiene notas', - 'search_modifier_not_no_notes' => 'La transacción debe tener notas', - 'search_modifier_any_notes' => 'La transacción debe tener notas', - 'search_modifier_not_any_notes' => 'La transacción no tiene notas', - 'search_modifier_amount_is' => 'La cantidad es exactamente :value', - 'search_modifier_not_amount_is' => 'La cantidad no es :value', - 'search_modifier_amount_less' => 'Cantidad es menor o igual a :value', - 'search_modifier_not_amount_more' => 'La cantidad es menor o igual a :value', - 'search_modifier_amount_more' => 'Cantidad es mayor o igual a :value', - 'search_modifier_not_amount_less' => 'Cantidad es mayor o igual a :value', - 'search_modifier_source_account_is' => 'El nombre de la cuenta de origen es exactamente ":value"', - 'search_modifier_not_source_account_is' => 'El nombre de la cuenta de origen no es exactamente ":value"', - 'search_modifier_source_account_contains' => 'El nombre de la cuenta de origen contiene ":value"', - 'search_modifier_not_source_account_contains' => 'El nombre de cuenta de origen no contiene ":value"', - 'search_modifier_source_account_starts' => 'El nombre de la cuenta de origen comienza con ":value"', - 'search_modifier_not_source_account_starts' => 'El nombre de cuenta de origen no comienza con ":value"', - 'search_modifier_source_account_ends' => 'El nombre de la cuenta de origen termina con ":value"', - 'search_modifier_not_source_account_ends' => 'El nombre de la cuenta de origen no termina con ":value"', - 'search_modifier_source_account_id' => 'El ID de cuenta original es :value', - 'search_modifier_not_source_account_id' => 'El ID de la cuenta de origen no es :value', - 'search_modifier_source_account_nr_is' => 'Número de cuenta de origen (IBAN) es ":value"', - 'search_modifier_not_source_account_nr_is' => 'El número de cuenta de origen (IBAN) no es ":value"', - 'search_modifier_source_account_nr_contains' => 'El número de cuenta de origen (IBAN) contiene ":value"', - 'search_modifier_not_source_account_nr_contains' => 'El número de la cuenta de origen (IBAN) no contiene ":value"', - 'search_modifier_source_account_nr_starts' => 'El número de cuenta de origen (IBAN) comienza con ":value"', - 'search_modifier_not_source_account_nr_starts' => 'El número de cuenta de origen (IBAN) no comienza con ":value"', - 'search_modifier_source_account_nr_ends' => 'El número de cuenta fuente (IBAN) termina en ":value"', - 'search_modifier_not_source_account_nr_ends' => 'El número de cuenta de origen (IBAN) no termina en ":value"', - 'search_modifier_destination_account_is' => 'El nombre de la cuenta de destino es exactamente ":value"', - 'search_modifier_not_destination_account_is' => 'El nombre de cuenta de destino no es ":value"', - 'search_modifier_destination_account_contains' => 'El nombre de la cuenta de destino contiene ":value"', - 'search_modifier_not_destination_account_contains' => 'El nombre de cuenta de destino no contiene ":value"', - 'search_modifier_destination_account_starts' => 'El nombre de cuenta de destino comienza con ":value"', - 'search_modifier_not_destination_account_starts' => 'El nombre de cuenta de destino no comienza con ":value"', - 'search_modifier_destination_account_ends' => 'El nombre de la cuenta de destino termina en ":value"', - 'search_modifier_not_destination_account_ends' => 'El nombre de la cuenta de destino no termina en ":value"', - 'search_modifier_destination_account_id' => 'El ID de la cuenta de destino es :value', - 'search_modifier_not_destination_account_id' => 'El ID de cuenta de destino no es :value', - 'search_modifier_destination_is_cash' => 'La cuenta de destino es la cuenta "(efectivo)"', - 'search_modifier_not_destination_is_cash' => 'La cuenta de destino no es la cuenta "(efectivo)"', - 'search_modifier_source_is_cash' => 'La cuenta de origen es la cuenta "(efectivo)"', - 'search_modifier_not_source_is_cash' => 'La cuenta de origen no es la cuenta "(efectivo)"', - 'search_modifier_destination_account_nr_is' => 'El número de cuenta de destino (IBAN) es ":value"', - 'search_modifier_not_destination_account_nr_is' => 'El número de cuenta de destino (IBAN) es ":value"', - 'search_modifier_destination_account_nr_contains' => 'El número de cuenta de destino (IBAN) contiene ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'El número de cuenta de destino (IBAN) no contiene ":value"', - 'search_modifier_destination_account_nr_starts' => 'El número de cuenta de destino (IBAN) comienza con ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'El número de cuenta de destino (IBAN) no comienza con ":value"', - 'search_modifier_destination_account_nr_ends' => 'El número de cuenta de destino (IBAN) termina con ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'El número de cuenta de destino (IBAN) no termina con ":value"', - 'search_modifier_account_id' => 'El ID de cuenta de origen o destino es/son: :value', - 'search_modifier_not_account_id' => 'Los ID de la cuenta de origen o destino no es/son: :value', - 'search_modifier_category_is' => 'La categoría es ":value"', - 'search_modifier_not_category_is' => 'La categoría no es ":value"', - 'search_modifier_budget_is' => 'El presupuesto es ":value"', - 'search_modifier_not_budget_is' => 'El presupuesto no es ":value"', - 'search_modifier_bill_is' => 'La factura es ":value"', - 'search_modifier_not_bill_is' => 'La factura no es ":value"', - 'search_modifier_transaction_type' => 'El tipo de transacción es ":value"', - 'search_modifier_not_transaction_type' => 'El tipo de transacción no es ":value"', - 'search_modifier_tag_is' => 'La etiqueta es ":value"', - 'search_modifier_tag_contains' => 'La etiqueta contiene ":value"', - 'search_modifier_not_tag_contains' => 'La etiqueta no contiene ":value"', - 'search_modifier_tag_ends' => 'La etiqueta termina con ":value"', - 'search_modifier_tag_starts' => 'La etiqueta comienza con ":value"', - 'search_modifier_not_tag_is' => 'Ninguna etiqueta es ":value"', - 'search_modifier_date_on_year' => 'El año de la transacción es ":value"', - 'search_modifier_not_date_on_year' => 'El año de la transacción no es ":value"', - 'search_modifier_date_on_month' => 'El mes de la transacción es ":value"', - 'search_modifier_not_date_on_month' => 'El mes de la transacción no es ":value"', - 'search_modifier_date_on_day' => 'El día de la transacción es ":value"', - 'search_modifier_not_date_on_day' => 'La transacción no es el día del mes ":value"', - 'search_modifier_date_before_year' => 'El año de la transacción es anterior o igual a ":value"', - 'search_modifier_date_before_month' => 'El mes de la transacción es anterior o igual a ":value"', - 'search_modifier_date_before_day' => 'El día de la transacción es anterior o igual a ":value"', - 'search_modifier_date_after_year' => 'El año de la transacción es posterior o igual a ":value"', - 'search_modifier_date_after_month' => 'El mes de la transacción es posterior o igual a ":value"', - 'search_modifier_date_after_day' => 'El día de la transacción es posterior o igual a ":value"', + 'search_modifier_date_on' => 'La fecha de la transacción es ":value"', + 'search_modifier_not_date_on' => 'La fecha de la transacción no es ":value"', + 'search_modifier_reconciled' => 'La transacción está conciliada', + 'search_modifier_not_reconciled' => 'La transacción no está conciliada', + 'search_modifier_id' => 'El ID de la transacción es ":value"', + 'search_modifier_not_id' => 'El ID de la transacción no es ":value"', + 'search_modifier_date_before' => 'La fecha de la transacción es anterior al ":value"', + 'search_modifier_date_after' => 'La fecha de la transacción es posterior al ":value"', + 'search_modifier_external_id_is' => 'La ID externo es ":value"', + 'search_modifier_not_external_id_is' => 'El ID externo no es ":value"', + 'search_modifier_no_external_url' => 'La transacción no tiene URL externa', + 'search_modifier_no_external_id' => 'La transacción no tiene ID externa', + 'search_modifier_not_any_external_url' => 'La transacción no tiene URL externa', + 'search_modifier_not_any_external_id' => 'La transacción no tiene ID externa', + 'search_modifier_any_external_url' => 'La transacción debe tener alguna URL externa', + 'search_modifier_any_external_id' => 'La transacción debe tener una ID externa (cualquiera)', + 'search_modifier_not_no_external_url' => 'La transacción debe tener una URL externa (cualquiera)', + 'search_modifier_not_no_external_id' => 'La transacción debe tener una ID externa (cualquiera)', + 'search_modifier_internal_reference_is' => 'La referencia interna es ":value"', + 'search_modifier_not_internal_reference_is' => 'La referencia interna no es ":value"', + 'search_modifier_description_starts' => 'La descripción comienza con ":value"', + 'search_modifier_not_description_starts' => 'La descripción no comienza con ":value"', + 'search_modifier_description_ends' => 'La descripción termina en ":value"', + 'search_modifier_not_description_ends' => 'La descripción no termina en ":value"', + 'search_modifier_description_contains' => 'La descripción contiene ":value"', + 'search_modifier_not_description_contains' => 'La descripción no contiene ":value"', + 'search_modifier_description_is' => 'La descripción es exactamente ":value"', + 'search_modifier_not_description_is' => 'La descripción no es exactamente ":value"', + 'search_modifier_currency_is' => 'La transacción en moneda (extranjera) es ":value"', + 'search_modifier_not_currency_is' => 'La moneda (extranjera) de la transacción no es ":value"', + 'search_modifier_foreign_currency_is' => 'La transacción en moneda extranjera es ":value"', + 'search_modifier_not_foreign_currency_is' => 'La moneda extranjera de la transacción no es ":value"', + 'search_modifier_has_attachments' => 'La transacción debe tener un archivo adjunto', + 'search_modifier_has_no_category' => 'La transacción no debe tener categoría', + 'search_modifier_not_has_no_category' => 'La transacción debe tener una categoría (cualquiera)', + 'search_modifier_not_has_any_category' => 'La transacción no debe tener categoría', + 'search_modifier_has_any_category' => 'La transacción debe tener alguna categoría', + 'search_modifier_has_no_budget' => 'La transacción no debe tener presupuesto', + 'search_modifier_not_has_any_budget' => 'La transacción no debe tener presupuesto', + 'search_modifier_has_any_budget' => 'La transacción debe tener un presupuesto', + 'search_modifier_not_has_no_budget' => 'La transacción debe tener un presupuesto (cualquiera)', + 'search_modifier_has_no_bill' => 'La transacción no debe tener factura', + 'search_modifier_not_has_no_bill' => 'La transacción debe tener una factura (cualquiera)', + 'search_modifier_has_any_bill' => 'La transacción debe tener una (cualquier) factura', + 'search_modifier_not_has_any_bill' => 'La transacción no debe tener factura', + 'search_modifier_has_no_tag' => 'La transacción no debe tener etiquetas', + 'search_modifier_not_has_any_tag' => 'La transacción no debe tener etiquetas', + 'search_modifier_not_has_no_tag' => 'La transacción debe tener una etiqueta (cualquiera)', + 'search_modifier_has_any_tag' => 'La transacción debe tener (alguna) etiqueta', + 'search_modifier_notes_contains' => 'Las notas de la transacción contienen ":value"', + 'search_modifier_not_notes_contains' => 'Las notas de la transacción no contienen ":value"', + 'search_modifier_notes_starts' => 'Las notas de la transacción comienzan con ":value"', + 'search_modifier_not_notes_starts' => 'Las notas de la transacción no comienzan con ":value"', + 'search_modifier_notes_ends' => 'Las notas de la transacción terminan con ":value"', + 'search_modifier_not_notes_ends' => 'Las notas de la transacción no terminan con ":value"', + 'search_modifier_notes_is' => 'Las notas de la transacción son exactamente ":value"', + 'search_modifier_not_notes_is' => 'Las notas de la transacción no son exactamente ":value"', + 'search_modifier_no_notes' => 'La transacción no tiene notas', + 'search_modifier_not_no_notes' => 'La transacción debe tener notas', + 'search_modifier_any_notes' => 'La transacción debe tener notas', + 'search_modifier_not_any_notes' => 'La transacción no tiene notas', + 'search_modifier_amount_is' => 'La cantidad es exactamente :value', + 'search_modifier_not_amount_is' => 'La cantidad no es :value', + 'search_modifier_amount_less' => 'Cantidad es menor o igual a :value', + 'search_modifier_not_amount_more' => 'La cantidad es menor o igual a :value', + 'search_modifier_amount_more' => 'Cantidad es mayor o igual a :value', + 'search_modifier_not_amount_less' => 'Cantidad es mayor o igual a :value', + 'search_modifier_source_account_is' => 'El nombre de la cuenta de origen es exactamente ":value"', + 'search_modifier_not_source_account_is' => 'El nombre de la cuenta de origen no es exactamente ":value"', + 'search_modifier_source_account_contains' => 'El nombre de la cuenta de origen contiene ":value"', + 'search_modifier_not_source_account_contains' => 'El nombre de cuenta de origen no contiene ":value"', + 'search_modifier_source_account_starts' => 'El nombre de la cuenta de origen comienza con ":value"', + 'search_modifier_not_source_account_starts' => 'El nombre de cuenta de origen no comienza con ":value"', + 'search_modifier_source_account_ends' => 'El nombre de la cuenta de origen termina con ":value"', + 'search_modifier_not_source_account_ends' => 'El nombre de la cuenta de origen no termina con ":value"', + 'search_modifier_source_account_id' => 'El ID de cuenta original es :value', + 'search_modifier_not_source_account_id' => 'El ID de la cuenta de origen no es :value', + 'search_modifier_source_account_nr_is' => 'Número de cuenta de origen (IBAN) es ":value"', + 'search_modifier_not_source_account_nr_is' => 'El número de cuenta de origen (IBAN) no es ":value"', + 'search_modifier_source_account_nr_contains' => 'El número de cuenta de origen (IBAN) contiene ":value"', + 'search_modifier_not_source_account_nr_contains' => 'El número de la cuenta de origen (IBAN) no contiene ":value"', + 'search_modifier_source_account_nr_starts' => 'El número de cuenta de origen (IBAN) comienza con ":value"', + 'search_modifier_not_source_account_nr_starts' => 'El número de cuenta de origen (IBAN) no comienza con ":value"', + 'search_modifier_source_account_nr_ends' => 'El número de cuenta fuente (IBAN) termina en ":value"', + 'search_modifier_not_source_account_nr_ends' => 'El número de cuenta de origen (IBAN) no termina en ":value"', + 'search_modifier_destination_account_is' => 'El nombre de la cuenta de destino es exactamente ":value"', + 'search_modifier_not_destination_account_is' => 'El nombre de cuenta de destino no es ":value"', + 'search_modifier_destination_account_contains' => 'El nombre de la cuenta de destino contiene ":value"', + 'search_modifier_not_destination_account_contains' => 'El nombre de cuenta de destino no contiene ":value"', + 'search_modifier_destination_account_starts' => 'El nombre de cuenta de destino comienza con ":value"', + 'search_modifier_not_destination_account_starts' => 'El nombre de cuenta de destino no comienza con ":value"', + 'search_modifier_destination_account_ends' => 'El nombre de la cuenta de destino termina en ":value"', + 'search_modifier_not_destination_account_ends' => 'El nombre de la cuenta de destino no termina en ":value"', + 'search_modifier_destination_account_id' => 'El ID de la cuenta de destino es :value', + 'search_modifier_not_destination_account_id' => 'El ID de cuenta de destino no es :value', + 'search_modifier_destination_is_cash' => 'La cuenta de destino es la cuenta "(efectivo)"', + 'search_modifier_not_destination_is_cash' => 'La cuenta de destino no es la cuenta "(efectivo)"', + 'search_modifier_source_is_cash' => 'La cuenta de origen es la cuenta "(efectivo)"', + 'search_modifier_not_source_is_cash' => 'La cuenta de origen no es la cuenta "(efectivo)"', + 'search_modifier_destination_account_nr_is' => 'El número de cuenta de destino (IBAN) es ":value"', + 'search_modifier_not_destination_account_nr_is' => 'El número de cuenta de destino (IBAN) es ":value"', + 'search_modifier_destination_account_nr_contains' => 'El número de cuenta de destino (IBAN) contiene ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'El número de cuenta de destino (IBAN) no contiene ":value"', + 'search_modifier_destination_account_nr_starts' => 'El número de cuenta de destino (IBAN) comienza con ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'El número de cuenta de destino (IBAN) no comienza con ":value"', + 'search_modifier_destination_account_nr_ends' => 'El número de cuenta de destino (IBAN) termina con ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'El número de cuenta de destino (IBAN) no termina con ":value"', + 'search_modifier_account_id' => 'El ID de cuenta de origen o destino es/son: :value', + 'search_modifier_not_account_id' => 'Los ID de la cuenta de origen o destino no es/son: :value', + 'search_modifier_category_is' => 'La categoría es ":value"', + 'search_modifier_not_category_is' => 'La categoría no es ":value"', + 'search_modifier_budget_is' => 'El presupuesto es ":value"', + 'search_modifier_not_budget_is' => 'El presupuesto no es ":value"', + 'search_modifier_bill_is' => 'La factura es ":value"', + 'search_modifier_not_bill_is' => 'La factura no es ":value"', + 'search_modifier_transaction_type' => 'El tipo de transacción es ":value"', + 'search_modifier_not_transaction_type' => 'El tipo de transacción no es ":value"', + 'search_modifier_tag_is' => 'La etiqueta es ":value"', + 'search_modifier_tag_contains' => 'La etiqueta contiene ":value"', + 'search_modifier_not_tag_contains' => 'La etiqueta no contiene ":value"', + 'search_modifier_tag_ends' => 'La etiqueta termina con ":value"', + 'search_modifier_tag_starts' => 'La etiqueta comienza con ":value"', + 'search_modifier_not_tag_is' => 'Ninguna etiqueta es ":value"', + 'search_modifier_date_on_year' => 'El año de la transacción es ":value"', + 'search_modifier_not_date_on_year' => 'El año de la transacción no es ":value"', + 'search_modifier_date_on_month' => 'El mes de la transacción es ":value"', + 'search_modifier_not_date_on_month' => 'El mes de la transacción no es ":value"', + 'search_modifier_date_on_day' => 'El día de la transacción es ":value"', + 'search_modifier_not_date_on_day' => 'La transacción no es el día del mes ":value"', + 'search_modifier_date_before_year' => 'El año de la transacción es anterior o igual a ":value"', + 'search_modifier_date_before_month' => 'El mes de la transacción es anterior o igual a ":value"', + 'search_modifier_date_before_day' => 'El día de la transacción es anterior o igual a ":value"', + 'search_modifier_date_after_year' => 'El año de la transacción es posterior o igual a ":value"', + 'search_modifier_date_after_month' => 'El mes de la transacción es posterior o igual a ":value"', + 'search_modifier_date_after_day' => 'El día de la transacción es posterior o igual a ":value"', // new - 'search_modifier_tag_is_not' => 'La etiqueta no es ":value"', - 'search_modifier_not_tag_is_not' => 'La etiqueta es ":value"', - 'search_modifier_account_is' => 'Cualquier cuenta es ":value"', - 'search_modifier_not_account_is' => 'Ninguna cuenta es ":value"', - 'search_modifier_account_contains' => 'Cualquier cuenta contiene ":value"', - 'search_modifier_not_account_contains' => 'Ninguna cuenta contiene ":value"', - 'search_modifier_account_ends' => 'Cualquier cuenta termina con ":value"', - 'search_modifier_not_account_ends' => 'Ninguna cuenta termina con ":value"', - 'search_modifier_account_starts' => 'Cualquier cuenta comienza con ":value"', - 'search_modifier_not_account_starts' => 'Ninguna cuenta comienza con ":value"', - 'search_modifier_account_nr_is' => 'Número / IBAN de cualquier cuenta es ":value"', - 'search_modifier_not_account_nr_is' => 'Ninguno de los números de cuenta / IBAN es ":value"', - 'search_modifier_account_nr_contains' => 'Número de cuenta / IBAN de cualquier cuenta contiene ":value"', - 'search_modifier_not_account_nr_contains' => 'Ninguno de los números de cuenta / IBAN contiene ":value"', - 'search_modifier_account_nr_ends' => 'Número de cuenta / IBAN de cualquier cuenta termina con ":value"', - 'search_modifier_not_account_nr_ends' => 'Ninguno de los números de cuenta / IBAN termina con ":value"', - 'search_modifier_account_nr_starts' => 'Número de cuenta / IBAN de cualquier cuenta empieza con ":value"', - 'search_modifier_not_account_nr_starts' => 'Ninguno de los números de cuenta / IBAN comienza con ":value"', - 'search_modifier_category_contains' => 'La categoría contiene ":value"', - 'search_modifier_not_category_contains' => 'La categoría no contiene ":value"', - 'search_modifier_category_ends' => 'La categoría termina en ":value"', - 'search_modifier_not_category_ends' => 'La categoría no termina en ":value"', - 'search_modifier_category_starts' => 'La categoría comienza con ":value"', - 'search_modifier_not_category_starts' => 'La categoría no empieza con ":value"', - 'search_modifier_budget_contains' => 'El presupuesto contiene ":value"', - 'search_modifier_not_budget_contains' => 'El presupuesto no contiene ":value"', - 'search_modifier_budget_ends' => 'El presupuesto termina con ":value"', - 'search_modifier_not_budget_ends' => 'El presupuesto no termina en ":value"', - 'search_modifier_budget_starts' => 'El presupuesto comienza con ":value"', - 'search_modifier_not_budget_starts' => 'El presupuesto no empieza con ":value"', - 'search_modifier_bill_contains' => 'La factura contiene ":value"', - 'search_modifier_not_bill_contains' => 'La factura no contiene ":value"', - 'search_modifier_bill_ends' => 'La factura termina con ":value"', - 'search_modifier_not_bill_ends' => 'La factura no termina en ":value"', - 'search_modifier_bill_starts' => 'La factura comienza con ":value"', - 'search_modifier_not_bill_starts' => 'La factura no empieza con ":value"', - 'search_modifier_external_id_contains' => 'La ID externa contiene ":value"', - 'search_modifier_not_external_id_contains' => 'El ID externo no contiene ":value"', - 'search_modifier_external_id_ends' => 'La ID externa termina con ":value"', - 'search_modifier_not_external_id_ends' => 'El ID externo no termina en ":value"', - 'search_modifier_external_id_starts' => 'La ID externa comienza con ":value"', - 'search_modifier_not_external_id_starts' => 'El ID externo no empieza con ":value"', - 'search_modifier_internal_reference_contains' => 'La referencia interna contiene ":value"', - 'search_modifier_not_internal_reference_contains' => 'La referencia interna no contiene ":value"', - 'search_modifier_internal_reference_ends' => 'La referencia interna termina con ":value"', - 'search_modifier_internal_reference_starts' => 'La referencia interna comienza con ":value"', - 'search_modifier_not_internal_reference_ends' => 'La referencia interna no termina en ":value"', - 'search_modifier_not_internal_reference_starts' => 'La referencia interna no empieza con ":value"', - 'search_modifier_external_url_is' => 'La URL externa es ":value"', - 'search_modifier_not_external_url_is' => 'La URL externa no es ":value"', - 'search_modifier_external_url_contains' => 'La URL externa contiene ":value"', - 'search_modifier_not_external_url_contains' => 'La URL externa no contiene ":value"', - 'search_modifier_external_url_ends' => 'La URL externa termina con ":value"', - 'search_modifier_not_external_url_ends' => 'La URL externa no termina en ":value"', - 'search_modifier_external_url_starts' => 'La URL externa comienza con ":value"', - 'search_modifier_not_external_url_starts' => 'La URL externa no empieza con ":value"', - 'search_modifier_has_no_attachments' => 'La transacción no tiene archivos adjuntos', - 'search_modifier_not_has_no_attachments' => 'La transacción tiene archivos adjuntos', - 'search_modifier_not_has_attachments' => 'La transacción no tiene archivos adjuntos', - 'search_modifier_account_is_cash' => 'Cualquier cuenta es la cuenta de efectivo.', - 'search_modifier_not_account_is_cash' => 'Ninguna cuenta es la cuenta de efectivo.', - 'search_modifier_journal_id' => 'La ID del registro es ":value"', - 'search_modifier_not_journal_id' => 'La ID del registro no es ":value"', - 'search_modifier_recurrence_id' => 'El ID de transacción recurrente es ":value"', - 'search_modifier_not_recurrence_id' => 'El ID de transacción recurrente no es ":value"', - 'search_modifier_foreign_amount_is' => 'La cantidad en divisa extranjera es ":value"', - 'search_modifier_not_foreign_amount_is' => 'La cantidad en divisa extranjera no es ":value"', - 'search_modifier_foreign_amount_less' => 'La cantidad en divisa extranjera es menor que ":value"', - 'search_modifier_not_foreign_amount_more' => 'La cantidad en divisa extranjera es menor que ":value"', - 'search_modifier_not_foreign_amount_less' => 'La cantidad en divisa extranjera es superior a ":value"', - 'search_modifier_foreign_amount_more' => 'La cantidad en divisa extranjera es superior a ":value"', - 'search_modifier_exists' => 'La transacción existe (cualquier transacción)', - 'search_modifier_not_exists' => 'La transacción no existe (ninguna transacción)', + 'search_modifier_tag_is_not' => 'La etiqueta no es ":value"', + 'search_modifier_not_tag_is_not' => 'La etiqueta es ":value"', + 'search_modifier_account_is' => 'Cualquier cuenta es ":value"', + 'search_modifier_not_account_is' => 'Ninguna cuenta es ":value"', + 'search_modifier_account_contains' => 'Cualquier cuenta contiene ":value"', + 'search_modifier_not_account_contains' => 'Ninguna cuenta contiene ":value"', + 'search_modifier_account_ends' => 'Cualquier cuenta termina con ":value"', + 'search_modifier_not_account_ends' => 'Ninguna cuenta termina con ":value"', + 'search_modifier_account_starts' => 'Cualquier cuenta comienza con ":value"', + 'search_modifier_not_account_starts' => 'Ninguna cuenta comienza con ":value"', + 'search_modifier_account_nr_is' => 'Número / IBAN de cualquier cuenta es ":value"', + 'search_modifier_not_account_nr_is' => 'Ninguno de los números de cuenta / IBAN es ":value"', + 'search_modifier_account_nr_contains' => 'Número de cuenta / IBAN de cualquier cuenta contiene ":value"', + 'search_modifier_not_account_nr_contains' => 'Ninguno de los números de cuenta / IBAN contiene ":value"', + 'search_modifier_account_nr_ends' => 'Número de cuenta / IBAN de cualquier cuenta termina con ":value"', + 'search_modifier_not_account_nr_ends' => 'Ninguno de los números de cuenta / IBAN termina con ":value"', + 'search_modifier_account_nr_starts' => 'Número de cuenta / IBAN de cualquier cuenta empieza con ":value"', + 'search_modifier_not_account_nr_starts' => 'Ninguno de los números de cuenta / IBAN comienza con ":value"', + 'search_modifier_category_contains' => 'La categoría contiene ":value"', + 'search_modifier_not_category_contains' => 'La categoría no contiene ":value"', + 'search_modifier_category_ends' => 'La categoría termina en ":value"', + 'search_modifier_not_category_ends' => 'La categoría no termina en ":value"', + 'search_modifier_category_starts' => 'La categoría comienza con ":value"', + 'search_modifier_not_category_starts' => 'La categoría no empieza con ":value"', + 'search_modifier_budget_contains' => 'El presupuesto contiene ":value"', + 'search_modifier_not_budget_contains' => 'El presupuesto no contiene ":value"', + 'search_modifier_budget_ends' => 'El presupuesto termina con ":value"', + 'search_modifier_not_budget_ends' => 'El presupuesto no termina en ":value"', + 'search_modifier_budget_starts' => 'El presupuesto comienza con ":value"', + 'search_modifier_not_budget_starts' => 'El presupuesto no empieza con ":value"', + 'search_modifier_bill_contains' => 'La factura contiene ":value"', + 'search_modifier_not_bill_contains' => 'La factura no contiene ":value"', + 'search_modifier_bill_ends' => 'La factura termina con ":value"', + 'search_modifier_not_bill_ends' => 'La factura no termina en ":value"', + 'search_modifier_bill_starts' => 'La factura comienza con ":value"', + 'search_modifier_not_bill_starts' => 'La factura no empieza con ":value"', + 'search_modifier_external_id_contains' => 'La ID externa contiene ":value"', + 'search_modifier_not_external_id_contains' => 'El ID externo no contiene ":value"', + 'search_modifier_external_id_ends' => 'La ID externa termina con ":value"', + 'search_modifier_not_external_id_ends' => 'El ID externo no termina en ":value"', + 'search_modifier_external_id_starts' => 'La ID externa comienza con ":value"', + 'search_modifier_not_external_id_starts' => 'El ID externo no empieza con ":value"', + 'search_modifier_internal_reference_contains' => 'La referencia interna contiene ":value"', + 'search_modifier_not_internal_reference_contains' => 'La referencia interna no contiene ":value"', + 'search_modifier_internal_reference_ends' => 'La referencia interna termina con ":value"', + 'search_modifier_internal_reference_starts' => 'La referencia interna comienza con ":value"', + 'search_modifier_not_internal_reference_ends' => 'La referencia interna no termina en ":value"', + 'search_modifier_not_internal_reference_starts' => 'La referencia interna no empieza con ":value"', + 'search_modifier_external_url_is' => 'La URL externa es ":value"', + 'search_modifier_not_external_url_is' => 'La URL externa no es ":value"', + 'search_modifier_external_url_contains' => 'La URL externa contiene ":value"', + 'search_modifier_not_external_url_contains' => 'La URL externa no contiene ":value"', + 'search_modifier_external_url_ends' => 'La URL externa termina con ":value"', + 'search_modifier_not_external_url_ends' => 'La URL externa no termina en ":value"', + 'search_modifier_external_url_starts' => 'La URL externa comienza con ":value"', + 'search_modifier_not_external_url_starts' => 'La URL externa no empieza con ":value"', + 'search_modifier_has_no_attachments' => 'La transacción no tiene archivos adjuntos', + 'search_modifier_not_has_no_attachments' => 'La transacción tiene archivos adjuntos', + 'search_modifier_not_has_attachments' => 'La transacción no tiene archivos adjuntos', + 'search_modifier_account_is_cash' => 'Cualquier cuenta es la cuenta de efectivo.', + 'search_modifier_not_account_is_cash' => 'Ninguna cuenta es la cuenta de efectivo.', + 'search_modifier_journal_id' => 'La ID del registro es ":value"', + 'search_modifier_not_journal_id' => 'La ID del registro no es ":value"', + 'search_modifier_recurrence_id' => 'El ID de transacción recurrente es ":value"', + 'search_modifier_not_recurrence_id' => 'El ID de transacción recurrente no es ":value"', + 'search_modifier_foreign_amount_is' => 'La cantidad en divisa extranjera es ":value"', + 'search_modifier_not_foreign_amount_is' => 'La cantidad en divisa extranjera no es ":value"', + 'search_modifier_foreign_amount_less' => 'La cantidad en divisa extranjera es menor que ":value"', + 'search_modifier_not_foreign_amount_more' => 'La cantidad en divisa extranjera es menor que ":value"', + 'search_modifier_not_foreign_amount_less' => 'La cantidad en divisa extranjera es superior a ":value"', + 'search_modifier_foreign_amount_more' => 'La cantidad en divisa extranjera es superior a ":value"', + 'search_modifier_exists' => 'La transacción existe (cualquier transacción)', + 'search_modifier_not_exists' => 'La transacción no existe (ninguna transacción)', // date fields - 'search_modifier_interest_date_on' => 'La fecha de interés de la transacción es ":value"', - 'search_modifier_not_interest_date_on' => 'La fecha de interés de la transacción no es ":value"', - 'search_modifier_interest_date_on_year' => 'La fecha de interés de la transacción es en el año ":value"', - 'search_modifier_not_interest_date_on_year' => 'La fecha de interés de la transacción no es en el año ":value"', - 'search_modifier_interest_date_on_month' => 'La fecha de interés de la transacción es en el mes ":value"', - 'search_modifier_not_interest_date_on_month' => 'La fecha de interés de la transacción no es en el mes ":value"', - 'search_modifier_interest_date_on_day' => 'La fecha de interés de la transacción es en el día ":value"', - 'search_modifier_not_interest_date_on_day' => 'La fecha de interés de la transacción no es en el día del mes ":value"', - 'search_modifier_interest_date_before_year' => 'El año de interés de la transacción es anterior o igual a ":value"', - 'search_modifier_interest_date_before_month' => 'La fecha de interés de la transacción es anterior o en el mes ":value"', - 'search_modifier_interest_date_before_day' => 'La fecha de interés de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_interest_date_after_year' => 'La fecha de interés de la transacción es posterior o en el año ":value"', - 'search_modifier_interest_date_after_month' => 'La fecha de interés de la transacción es posterior o en el mes ":value"', - 'search_modifier_interest_date_after_day' => 'La fecha de interés de la transacción es posterior o el día del mes ":value"', - 'search_modifier_book_date_on_year' => 'La fecha del registro de la transacción es en el año ":value"', - 'search_modifier_book_date_on_month' => 'La fecha del registro de la transacción es en el mes ":value"', - 'search_modifier_book_date_on_day' => 'La fecha del registro de la transacción es en el día del mes ":value"', - 'search_modifier_not_book_date_on_year' => 'La fecha del registro de la transacción no es en el año ":value"', - 'search_modifier_not_book_date_on_month' => 'La fecha del registro de la transacción no es en el mes ":value"', - 'search_modifier_not_book_date_on_day' => 'La fecha del registro de la transacción no es en el día del mes ":value"', - 'search_modifier_book_date_before_year' => 'La fecha del registro de la transacción es antes o en el año ":value"', - 'search_modifier_book_date_before_month' => 'La fecha del registro de la transacción es antes o en el mes ":value"', - 'search_modifier_book_date_before_day' => 'La fecha de registro de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_book_date_after_year' => 'La fecha del registro de la transacción es después o en el año ":value"', - 'search_modifier_book_date_after_month' => 'La fecha del registro de la transacción es después o en el mes ":value"', - 'search_modifier_book_date_after_day' => 'La fecha de registro de la transacción es después o en el día del mes ":value"', - 'search_modifier_process_date_on_year' => 'La fecha del proceso de transacción es el año ":value"', - 'search_modifier_process_date_on_month' => 'La fecha del proceso de transacción es en el mes ":value"', - 'search_modifier_process_date_on_day' => 'La fecha del proceso de transacción es el día del mes ":value"', - 'search_modifier_not_process_date_on_year' => 'La fecha del proceso de transacción no es el año ":value"', - 'search_modifier_not_process_date_on_month' => 'La fecha del proceso de transacción no es en el mes ":value"', - 'search_modifier_not_process_date_on_day' => 'La fecha del proceso de transacción no es el día del mes ":value"', - 'search_modifier_process_date_before_year' => 'La fecha del proceso de la transacción es antes o en el año ":value"', - 'search_modifier_process_date_before_month' => 'La fecha del proceso de la transacción es antes o en el mes ":value"', - 'search_modifier_process_date_before_day' => 'La fecha de proceso de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_process_date_after_year' => 'La fecha del proceso de la transacción es después o en el año ":value"', - 'search_modifier_process_date_after_month' => 'La fecha del proceso de la transacción es después o en el mes ":value"', - 'search_modifier_process_date_after_day' => 'La fecha de proceso de la transacción es después o en el día del mes ":value"', - 'search_modifier_due_date_on_year' => 'La fecha de vencimiento de la transacción es en el año ":value"', - 'search_modifier_due_date_on_month' => 'La fecha del vencimiento de la transacción es en el mes ":value"', - 'search_modifier_due_date_on_day' => 'La fecha del vencimiento de la transacción es en el día del mes ":value"', - 'search_modifier_not_due_date_on_year' => 'La fecha del vencimiento de la transacción no es en el año ":value"', - 'search_modifier_not_due_date_on_month' => 'La fecha del vencimiento de la transacción no es en el mes ":value"', - 'search_modifier_not_due_date_on_day' => 'La fecha del vencimiento de la transacción no es en el día del mes ":value"', - 'search_modifier_due_date_before_year' => 'La fecha de vencimiento de la transacción es antes o en el año ":value"', - 'search_modifier_due_date_before_month' => 'La fecha de vencimiento de la transacción es antes o en el mes ":value"', - 'search_modifier_due_date_before_day' => 'La fecha de vencimiento de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_due_date_after_year' => 'La fecha del vencimiento de la transacción es después o en el año ":value"', - 'search_modifier_due_date_after_month' => 'La fecha del vencimiento de la transacción es después o en el mes ":value"', - 'search_modifier_due_date_after_day' => 'La fecha de vencimiento de la transacción es después o en el día del mes ":value"', - 'search_modifier_payment_date_on_year' => 'La fecha de pago de la transacción es en el año ":value"', - 'search_modifier_payment_date_on_month' => 'La fecha de pago de la transacción es en el mes ":value"', - 'search_modifier_payment_date_on_day' => 'La fecha de pago de la transacción es el día del mes ":value"', - 'search_modifier_not_payment_date_on_year' => 'La fecha de pago de la transacción no es en el año ":value"', - 'search_modifier_not_payment_date_on_month' => 'La fecha de pago de la transacción no es en el mes ":value"', - 'search_modifier_not_payment_date_on_day' => 'La fecha de pago de la transacción no es el día del mes ":value"', - 'search_modifier_payment_date_before_year' => 'La fecha de pago de la transacción es antes o en el año ":value"', - 'search_modifier_payment_date_before_month' => 'La fecha de pago de la transacción es antes o en el mes ":value"', - 'search_modifier_payment_date_before_day' => 'La fecha de pago de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_payment_date_after_year' => 'La fecha de pago de la transacción es después o en el año ":value"', - 'search_modifier_payment_date_after_month' => 'La fecha de pago de la transacción es después o en el mes ":value"', - 'search_modifier_payment_date_after_day' => 'La fecha de pago de la transacción es después o en el día del mes ":value"', - 'search_modifier_invoice_date_on_year' => 'La fecha de facturación de la transacción es en el año ":value"', - 'search_modifier_invoice_date_on_month' => 'La fecha de facturación de la transacción es en el mes ":value"', - 'search_modifier_invoice_date_on_day' => 'La fecha de facturación de la transacción es en el día ":value"', - 'search_modifier_not_invoice_date_on_year' => 'La fecha de facturación de la transacción no es en el año ":value"', - 'search_modifier_not_invoice_date_on_month' => 'La fecha de facturación de la transacción es en el mes ":value"', - 'search_modifier_not_invoice_date_on_day' => 'La fecha de facturación de la transacción no es en el día del mes ":value"', - 'search_modifier_invoice_date_before_year' => 'La fecha de facturación de la transacción es antes o en el año ":value"', - 'search_modifier_invoice_date_before_month' => 'La fecha de facturación de la transacción es antes o en el mes ":value"', - 'search_modifier_invoice_date_before_day' => 'La fecha de facturación de la transacción es anterior o en el día del mes ":value"', - 'search_modifier_invoice_date_after_year' => 'La fecha de facturación de la transacción es después o en el año ":value"', - 'search_modifier_invoice_date_after_month' => 'La fecha de facturación de la transacción es después o en el mes ":value"', - 'search_modifier_invoice_date_after_day' => 'La fecha de facturación de la transacción es después o en el día del mes ":value"', + 'search_modifier_interest_date_on' => 'La fecha de interés de la transacción es ":value"', + 'search_modifier_not_interest_date_on' => 'La fecha de interés de la transacción no es ":value"', + 'search_modifier_interest_date_on_year' => 'La fecha de interés de la transacción es en el año ":value"', + 'search_modifier_not_interest_date_on_year' => 'La fecha de interés de la transacción no es en el año ":value"', + 'search_modifier_interest_date_on_month' => 'La fecha de interés de la transacción es en el mes ":value"', + 'search_modifier_not_interest_date_on_month' => 'La fecha de interés de la transacción no es en el mes ":value"', + 'search_modifier_interest_date_on_day' => 'La fecha de interés de la transacción es en el día ":value"', + 'search_modifier_not_interest_date_on_day' => 'La fecha de interés de la transacción no es en el día del mes ":value"', + 'search_modifier_interest_date_before_year' => 'El año de interés de la transacción es anterior o igual a ":value"', + 'search_modifier_interest_date_before_month' => 'La fecha de interés de la transacción es anterior o en el mes ":value"', + 'search_modifier_interest_date_before_day' => 'La fecha de interés de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_interest_date_after_year' => 'La fecha de interés de la transacción es posterior o en el año ":value"', + 'search_modifier_interest_date_after_month' => 'La fecha de interés de la transacción es posterior o en el mes ":value"', + 'search_modifier_interest_date_after_day' => 'La fecha de interés de la transacción es posterior o el día del mes ":value"', + 'search_modifier_book_date_on_year' => 'La fecha del registro de la transacción es en el año ":value"', + 'search_modifier_book_date_on_month' => 'La fecha del registro de la transacción es en el mes ":value"', + 'search_modifier_book_date_on_day' => 'La fecha del registro de la transacción es en el día del mes ":value"', + 'search_modifier_not_book_date_on_year' => 'La fecha del registro de la transacción no es en el año ":value"', + 'search_modifier_not_book_date_on_month' => 'La fecha del registro de la transacción no es en el mes ":value"', + 'search_modifier_not_book_date_on_day' => 'La fecha del registro de la transacción no es en el día del mes ":value"', + 'search_modifier_book_date_before_year' => 'La fecha del registro de la transacción es antes o en el año ":value"', + 'search_modifier_book_date_before_month' => 'La fecha del registro de la transacción es antes o en el mes ":value"', + 'search_modifier_book_date_before_day' => 'La fecha de registro de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_book_date_after_year' => 'La fecha del registro de la transacción es después o en el año ":value"', + 'search_modifier_book_date_after_month' => 'La fecha del registro de la transacción es después o en el mes ":value"', + 'search_modifier_book_date_after_day' => 'La fecha de registro de la transacción es después o en el día del mes ":value"', + 'search_modifier_process_date_on_year' => 'La fecha del proceso de transacción es el año ":value"', + 'search_modifier_process_date_on_month' => 'La fecha del proceso de transacción es en el mes ":value"', + 'search_modifier_process_date_on_day' => 'La fecha del proceso de transacción es el día del mes ":value"', + 'search_modifier_not_process_date_on_year' => 'La fecha del proceso de transacción no es el año ":value"', + 'search_modifier_not_process_date_on_month' => 'La fecha del proceso de transacción no es en el mes ":value"', + 'search_modifier_not_process_date_on_day' => 'La fecha del proceso de transacción no es el día del mes ":value"', + 'search_modifier_process_date_before_year' => 'La fecha del proceso de la transacción es antes o en el año ":value"', + 'search_modifier_process_date_before_month' => 'La fecha del proceso de la transacción es antes o en el mes ":value"', + 'search_modifier_process_date_before_day' => 'La fecha de proceso de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_process_date_after_year' => 'La fecha del proceso de la transacción es después o en el año ":value"', + 'search_modifier_process_date_after_month' => 'La fecha del proceso de la transacción es después o en el mes ":value"', + 'search_modifier_process_date_after_day' => 'La fecha de proceso de la transacción es después o en el día del mes ":value"', + 'search_modifier_due_date_on_year' => 'La fecha de vencimiento de la transacción es en el año ":value"', + 'search_modifier_due_date_on_month' => 'La fecha del vencimiento de la transacción es en el mes ":value"', + 'search_modifier_due_date_on_day' => 'La fecha del vencimiento de la transacción es en el día del mes ":value"', + 'search_modifier_not_due_date_on_year' => 'La fecha del vencimiento de la transacción no es en el año ":value"', + 'search_modifier_not_due_date_on_month' => 'La fecha del vencimiento de la transacción no es en el mes ":value"', + 'search_modifier_not_due_date_on_day' => 'La fecha del vencimiento de la transacción no es en el día del mes ":value"', + 'search_modifier_due_date_before_year' => 'La fecha de vencimiento de la transacción es antes o en el año ":value"', + 'search_modifier_due_date_before_month' => 'La fecha de vencimiento de la transacción es antes o en el mes ":value"', + 'search_modifier_due_date_before_day' => 'La fecha de vencimiento de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_due_date_after_year' => 'La fecha del vencimiento de la transacción es después o en el año ":value"', + 'search_modifier_due_date_after_month' => 'La fecha del vencimiento de la transacción es después o en el mes ":value"', + 'search_modifier_due_date_after_day' => 'La fecha de vencimiento de la transacción es después o en el día del mes ":value"', + 'search_modifier_payment_date_on_year' => 'La fecha de pago de la transacción es en el año ":value"', + 'search_modifier_payment_date_on_month' => 'La fecha de pago de la transacción es en el mes ":value"', + 'search_modifier_payment_date_on_day' => 'La fecha de pago de la transacción es el día del mes ":value"', + 'search_modifier_not_payment_date_on_year' => 'La fecha de pago de la transacción no es en el año ":value"', + 'search_modifier_not_payment_date_on_month' => 'La fecha de pago de la transacción no es en el mes ":value"', + 'search_modifier_not_payment_date_on_day' => 'La fecha de pago de la transacción no es el día del mes ":value"', + 'search_modifier_payment_date_before_year' => 'La fecha de pago de la transacción es antes o en el año ":value"', + 'search_modifier_payment_date_before_month' => 'La fecha de pago de la transacción es antes o en el mes ":value"', + 'search_modifier_payment_date_before_day' => 'La fecha de pago de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_payment_date_after_year' => 'La fecha de pago de la transacción es después o en el año ":value"', + 'search_modifier_payment_date_after_month' => 'La fecha de pago de la transacción es después o en el mes ":value"', + 'search_modifier_payment_date_after_day' => 'La fecha de pago de la transacción es después o en el día del mes ":value"', + 'search_modifier_invoice_date_on_year' => 'La fecha de facturación de la transacción es en el año ":value"', + 'search_modifier_invoice_date_on_month' => 'La fecha de facturación de la transacción es en el mes ":value"', + 'search_modifier_invoice_date_on_day' => 'La fecha de facturación de la transacción es en el día ":value"', + 'search_modifier_not_invoice_date_on_year' => 'La fecha de facturación de la transacción no es en el año ":value"', + 'search_modifier_not_invoice_date_on_month' => 'La fecha de facturación de la transacción es en el mes ":value"', + 'search_modifier_not_invoice_date_on_day' => 'La fecha de facturación de la transacción no es en el día del mes ":value"', + 'search_modifier_invoice_date_before_year' => 'La fecha de facturación de la transacción es antes o en el año ":value"', + 'search_modifier_invoice_date_before_month' => 'La fecha de facturación de la transacción es antes o en el mes ":value"', + 'search_modifier_invoice_date_before_day' => 'La fecha de facturación de la transacción es anterior o en el día del mes ":value"', + 'search_modifier_invoice_date_after_year' => 'La fecha de facturación de la transacción es después o en el año ":value"', + 'search_modifier_invoice_date_after_month' => 'La fecha de facturación de la transacción es después o en el mes ":value"', + 'search_modifier_invoice_date_after_day' => 'La fecha de facturación de la transacción es después o en el día del mes ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'La transacción fue actualizada por última vez en el año":value"', - 'search_modifier_updated_at_on_month' => 'La transacción fue actualizada por última vez en el mes ":value"', - 'search_modifier_updated_at_on_day' => 'La transacción fue actualizada por última vez en el día del mes: ":value"', - 'search_modifier_not_updated_at_on_year' => 'La transacción no fue actualizada por última vez en el año":value"', - 'search_modifier_not_updated_at_on_month' => 'La transacción no fue actualizada por última vez en el mes ":value"', - 'search_modifier_not_updated_at_on_day' => 'La transacción no fue actualizada por última vez en el día del mes ":value"', - 'search_modifier_updated_at_before_year' => 'La transacción fue actualizada por última vez en o antes del año":value"', - 'search_modifier_updated_at_before_month' => 'La transacción se actualizó por última vez en o antes del mes ":value"', - 'search_modifier_updated_at_before_day' => 'La transacción se actualizó por última vez en o antes del día del mes ":value"', - 'search_modifier_updated_at_after_year' => 'La transacción se actualizó por última vez en o después del año ":value"', - 'search_modifier_updated_at_after_month' => 'La transacción se actualizó por última vez en o después del mes ":value"', - 'search_modifier_updated_at_after_day' => 'La transacción se actualizó por última vez en o después día del mes ":value"', - 'search_modifier_created_at_on_year' => 'La transacción fue creada en el año":value"', - 'search_modifier_created_at_on_month' => 'La transacción fue creada en el mes ":value"', - 'search_modifier_created_at_on_day' => 'La transacción fue creada en el día del mes ":value"', - 'search_modifier_not_created_at_on_year' => 'La transacción no fue creada en el año ":value"', - 'search_modifier_not_created_at_on_month' => 'La transacción no fue creada en el mes ":value"', - 'search_modifier_not_created_at_on_day' => 'La transacción no fue creada en el día del mes ":value"', - 'search_modifier_created_at_before_year' => 'La transacción fue creada en o antes del año ":value"', - 'search_modifier_created_at_before_month' => 'La transacción fue creada en o antes del mes ":value"', - 'search_modifier_created_at_before_day' => 'La transacción fue creada en o antes del día del mes ":value"', - 'search_modifier_created_at_after_year' => 'La transacción fue creada en o después del año ":value"', - 'search_modifier_created_at_after_month' => 'La transacción fue creada en o después del mes ":value"', - 'search_modifier_created_at_after_day' => 'La transacción fue creada en o después del día del mes ":value"', - 'search_modifier_interest_date_before' => 'La fecha de interés de la transacción es en o antes de ":value"', - 'search_modifier_interest_date_after' => 'La fecha de interés de la transacción es en o después de ":value"', - 'search_modifier_book_date_on' => 'La fecha del registro de la transacción es en ":value"', - 'search_modifier_not_book_date_on' => 'La fecha del registro de la transacción no es en ":value"', - 'search_modifier_book_date_before' => 'La fecha de registro de la transacción es en o antes de ":value"', - 'search_modifier_book_date_after' => 'La fecha de registro de la transacción es en o después de ":value"', - 'search_modifier_process_date_on' => 'La fecha del proceso de transacción es el ":value"', - 'search_modifier_not_process_date_on' => 'La fecha del proceso de transacción no es el ":value"', - 'search_modifier_process_date_before' => 'La fecha de proceso de la transacción es en o antes de ":value"', - 'search_modifier_process_date_after' => 'La fecha de proceso de la transacción es en o después de ":value"', - 'search_modifier_due_date_on' => 'La fecha del vencimiento de la transacción es el ":value"', - 'search_modifier_not_due_date_on' => 'La fecha del vencimiento de la transacción no es el ":value"', - 'search_modifier_due_date_before' => 'La fecha de vencimiento de la transacción es en o antes de ":value"', - 'search_modifier_due_date_after' => 'La fecha de vencimiento de la transacción es en o después de ":value"', - 'search_modifier_payment_date_on' => 'La fecha de pago de transacción es el ":value"', - 'search_modifier_not_payment_date_on' => 'La fecha de pago de transacción no es el ":value"', - 'search_modifier_payment_date_before' => 'La fecha de pago de la transacción es en o antes de ":value"', - 'search_modifier_payment_date_after' => 'La fecha de pago de la transacción es en o después de ":value"', - 'search_modifier_invoice_date_on' => 'La fecha del facturación de la transacción es el ":value"', - 'search_modifier_not_invoice_date_on' => 'La fecha del facturación de la transacción no es el ":value"', - 'search_modifier_invoice_date_before' => 'La fecha de facturación de la transacción es en o antes de ":value"', - 'search_modifier_invoice_date_after' => 'La fecha de facturación de la transacción es en o después de ":value"', - 'search_modifier_created_at_on' => 'La transacción fue creada el ":value"', - 'search_modifier_not_created_at_on' => 'La transacción no fue creada el ":value"', - 'search_modifier_created_at_before' => 'La transacción fue creada en o antes de ":value"', - 'search_modifier_created_at_after' => 'La transacción fue creada en o después de ":value"', - 'search_modifier_updated_at_on' => 'La transacción fue actualizada el ":value"', - 'search_modifier_not_updated_at_on' => 'La transacción no fue actualizada el ":value"', - 'search_modifier_updated_at_before' => 'La transacción fue actualizada en o antes de ":value"', - 'search_modifier_updated_at_after' => 'La transacción fue actualizada en o después de ":value"', + 'search_modifier_updated_at_on_year' => 'La transacción fue actualizada por última vez en el año":value"', + 'search_modifier_updated_at_on_month' => 'La transacción fue actualizada por última vez en el mes ":value"', + 'search_modifier_updated_at_on_day' => 'La transacción fue actualizada por última vez en el día del mes: ":value"', + 'search_modifier_not_updated_at_on_year' => 'La transacción no fue actualizada por última vez en el año":value"', + 'search_modifier_not_updated_at_on_month' => 'La transacción no fue actualizada por última vez en el mes ":value"', + 'search_modifier_not_updated_at_on_day' => 'La transacción no fue actualizada por última vez en el día del mes ":value"', + 'search_modifier_updated_at_before_year' => 'La transacción fue actualizada por última vez en o antes del año":value"', + 'search_modifier_updated_at_before_month' => 'La transacción se actualizó por última vez en o antes del mes ":value"', + 'search_modifier_updated_at_before_day' => 'La transacción se actualizó por última vez en o antes del día del mes ":value"', + 'search_modifier_updated_at_after_year' => 'La transacción se actualizó por última vez en o después del año ":value"', + 'search_modifier_updated_at_after_month' => 'La transacción se actualizó por última vez en o después del mes ":value"', + 'search_modifier_updated_at_after_day' => 'La transacción se actualizó por última vez en o después día del mes ":value"', + 'search_modifier_created_at_on_year' => 'La transacción fue creada en el año":value"', + 'search_modifier_created_at_on_month' => 'La transacción fue creada en el mes ":value"', + 'search_modifier_created_at_on_day' => 'La transacción fue creada en el día del mes ":value"', + 'search_modifier_not_created_at_on_year' => 'La transacción no fue creada en el año ":value"', + 'search_modifier_not_created_at_on_month' => 'La transacción no fue creada en el mes ":value"', + 'search_modifier_not_created_at_on_day' => 'La transacción no fue creada en el día del mes ":value"', + 'search_modifier_created_at_before_year' => 'La transacción fue creada en o antes del año ":value"', + 'search_modifier_created_at_before_month' => 'La transacción fue creada en o antes del mes ":value"', + 'search_modifier_created_at_before_day' => 'La transacción fue creada en o antes del día del mes ":value"', + 'search_modifier_created_at_after_year' => 'La transacción fue creada en o después del año ":value"', + 'search_modifier_created_at_after_month' => 'La transacción fue creada en o después del mes ":value"', + 'search_modifier_created_at_after_day' => 'La transacción fue creada en o después del día del mes ":value"', + 'search_modifier_interest_date_before' => 'La fecha de interés de la transacción es en o antes de ":value"', + 'search_modifier_interest_date_after' => 'La fecha de interés de la transacción es en o después de ":value"', + 'search_modifier_book_date_on' => 'La fecha del registro de la transacción es en ":value"', + 'search_modifier_not_book_date_on' => 'La fecha del registro de la transacción no es en ":value"', + 'search_modifier_book_date_before' => 'La fecha de registro de la transacción es en o antes de ":value"', + 'search_modifier_book_date_after' => 'La fecha de registro de la transacción es en o después de ":value"', + 'search_modifier_process_date_on' => 'La fecha del proceso de transacción es el ":value"', + 'search_modifier_not_process_date_on' => 'La fecha del proceso de transacción no es el ":value"', + 'search_modifier_process_date_before' => 'La fecha de proceso de la transacción es en o antes de ":value"', + 'search_modifier_process_date_after' => 'La fecha de proceso de la transacción es en o después de ":value"', + 'search_modifier_due_date_on' => 'La fecha del vencimiento de la transacción es el ":value"', + 'search_modifier_not_due_date_on' => 'La fecha del vencimiento de la transacción no es el ":value"', + 'search_modifier_due_date_before' => 'La fecha de vencimiento de la transacción es en o antes de ":value"', + 'search_modifier_due_date_after' => 'La fecha de vencimiento de la transacción es en o después de ":value"', + 'search_modifier_payment_date_on' => 'La fecha de pago de transacción es el ":value"', + 'search_modifier_not_payment_date_on' => 'La fecha de pago de transacción no es el ":value"', + 'search_modifier_payment_date_before' => 'La fecha de pago de la transacción es en o antes de ":value"', + 'search_modifier_payment_date_after' => 'La fecha de pago de la transacción es en o después de ":value"', + 'search_modifier_invoice_date_on' => 'La fecha del facturación de la transacción es el ":value"', + 'search_modifier_not_invoice_date_on' => 'La fecha del facturación de la transacción no es el ":value"', + 'search_modifier_invoice_date_before' => 'La fecha de facturación de la transacción es en o antes de ":value"', + 'search_modifier_invoice_date_after' => 'La fecha de facturación de la transacción es en o después de ":value"', + 'search_modifier_created_at_on' => 'La transacción fue creada el ":value"', + 'search_modifier_not_created_at_on' => 'La transacción no fue creada el ":value"', + 'search_modifier_created_at_before' => 'La transacción fue creada en o antes de ":value"', + 'search_modifier_created_at_after' => 'La transacción fue creada en o después de ":value"', + 'search_modifier_updated_at_on' => 'La transacción fue actualizada el ":value"', + 'search_modifier_not_updated_at_on' => 'La transacción no fue actualizada el ":value"', + 'search_modifier_updated_at_before' => 'La transacción fue actualizada en o antes de ":value"', + 'search_modifier_updated_at_after' => 'La transacción fue actualizada en o después de ":value"', - 'search_modifier_attachment_name_is' => 'El nombre de cualquier adjunto es ":value"', - 'search_modifier_attachment_name_contains' => 'El nombre de cualquier adjunto contiene ":value"', - 'search_modifier_attachment_name_starts' => 'El nombre de cualquier adjunto comienza con ":value"', - 'search_modifier_attachment_name_ends' => 'El nombre de cualquier adjunto termina con ":value"', - 'search_modifier_attachment_notes_are' => 'Las notas de cualquier adjunto son ":value"', - 'search_modifier_attachment_notes_contains' => 'Las notas de cualquier adjunto contienen ":value"', - 'search_modifier_attachment_notes_starts' => 'Las notas de cualquier adjunto comienzan con ":value"', - 'search_modifier_attachment_notes_ends' => 'Las notas de cualquier adjunto terminan con ":value"', - 'search_modifier_not_attachment_name_is' => 'El nombre de cualquier adjunto no es ":value"', - 'search_modifier_not_attachment_name_contains' => 'El nombre de cualquier adjunto no contiene ":value"', - 'search_modifier_not_attachment_name_starts' => 'El nombre de cualquier adjunto no comienza con ":value"', - 'search_modifier_not_attachment_name_ends' => 'El nombre de cualquier adjunto no termina con ":value"', - 'search_modifier_not_attachment_notes_are' => 'Las notas de cualquier adjunto no son ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Las notas de cualquier adjunto no contienen ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Las notas de cualquier adjunto comienzan con ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Las notas de cualquier adjunto no terminan con ":value"', - 'search_modifier_sepa_ct_is' => 'El SEPA CT es ":value"', - 'update_rule_from_query' => 'Actualizar regla ":rule" de la consulta de búsqueda', - 'create_rule_from_query' => 'Crear nueva regla a partir de la consulta de búsqueda', - 'rule_from_search_words' => 'El motor de reglas tiene un manejo difícil ":string". La regla sugerida que se ajusta a su consulta de búsqueda puede dar diferentes resultados. Por favor verifique los activadores de la regla cuidadosamente.', + 'search_modifier_attachment_name_is' => 'El nombre de cualquier adjunto es ":value"', + 'search_modifier_attachment_name_contains' => 'El nombre de cualquier adjunto contiene ":value"', + 'search_modifier_attachment_name_starts' => 'El nombre de cualquier adjunto comienza con ":value"', + 'search_modifier_attachment_name_ends' => 'El nombre de cualquier adjunto termina con ":value"', + 'search_modifier_attachment_notes_are' => 'Las notas de cualquier adjunto son ":value"', + 'search_modifier_attachment_notes_contains' => 'Las notas de cualquier adjunto contienen ":value"', + 'search_modifier_attachment_notes_starts' => 'Las notas de cualquier adjunto comienzan con ":value"', + 'search_modifier_attachment_notes_ends' => 'Las notas de cualquier adjunto terminan con ":value"', + 'search_modifier_not_attachment_name_is' => 'El nombre de cualquier adjunto no es ":value"', + 'search_modifier_not_attachment_name_contains' => 'El nombre de cualquier adjunto no contiene ":value"', + 'search_modifier_not_attachment_name_starts' => 'El nombre de cualquier adjunto no comienza con ":value"', + 'search_modifier_not_attachment_name_ends' => 'El nombre de cualquier adjunto no termina con ":value"', + 'search_modifier_not_attachment_notes_are' => 'Las notas de cualquier adjunto no son ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Las notas de cualquier adjunto no contienen ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Las notas de cualquier adjunto comienzan con ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Las notas de cualquier adjunto no terminan con ":value"', + 'search_modifier_sepa_ct_is' => 'El SEPA CT es ":value"', + 'update_rule_from_query' => 'Actualizar regla ":rule" de la consulta de búsqueda', + 'create_rule_from_query' => 'Crear nueva regla a partir de la consulta de búsqueda', + 'rule_from_search_words' => 'El motor de reglas tiene un manejo difícil ":string". La regla sugerida que se ajusta a su consulta de búsqueda puede dar diferentes resultados. Por favor verifique los activadores de la regla cuidadosamente.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Los siguientes modificadores también se aplican a la búsqueda:', - 'general_search_error' => 'Se ha producido un error durante la búsqueda. Por favor, compruebe los archivos de registro para obtener más información.', - 'search_box' => 'Buscar', - 'search_box_intro' => 'Bienvenido a la función de búsqueda de Firefly III. Introduce tu consulta de búsqueda en el cuadro. Asegúrate de revisar el archivo de ayuda porque el buscador es bastante avanzado.', - 'search_error' => 'Error durante la búsqueda', - 'search_searching' => 'Buscando...', - 'search_results' => 'Buscar resultados', + 'modifiers_applies_are' => 'Los siguientes modificadores también se aplican a la búsqueda:', + 'general_search_error' => 'Se ha producido un error durante la búsqueda. Por favor, compruebe los archivos de registro para obtener más información.', + 'search_box' => 'Buscar', + 'search_box_intro' => 'Bienvenido a la función de búsqueda de Firefly III. Introduce tu consulta de búsqueda en el cuadro. Asegúrate de revisar el archivo de ayuda porque el buscador es bastante avanzado.', + 'search_error' => 'Error durante la búsqueda', + 'search_searching' => 'Buscando...', + 'search_results' => 'Buscar resultados', // repeat frequencies: - 'repeat_freq_yearly' => 'anualmente', - 'repeat_freq_half-year' => 'cada medio año', - 'repeat_freq_quarterly' => 'trimestralmente', - 'repeat_freq_monthly' => 'mensualmente', - 'repeat_freq_weekly' => 'semanalmente', - 'repeat_freq_daily' => 'diariamente', - 'daily' => 'diariamente', - 'weekly' => 'semanalmente', - 'quarterly' => 'trimestralmente', - 'half-year' => 'cada medio año', - 'yearly' => 'anualmente', + 'repeat_freq_yearly' => 'anualmente', + 'repeat_freq_half-year' => 'cada medio año', + 'repeat_freq_quarterly' => 'trimestralmente', + 'repeat_freq_monthly' => 'mensualmente', + 'repeat_freq_weekly' => 'semanalmente', + 'repeat_freq_daily' => 'diariamente', + 'daily' => 'diariamente', + 'weekly' => 'semanalmente', + 'quarterly' => 'trimestralmente', + 'half-year' => 'cada medio año', + 'yearly' => 'anualmente', // rules - 'is_not_rule_trigger' => 'No', - 'cannot_fire_inactive_rules' => 'No puedes ejecutar reglas inactivas.', - 'show_triggers' => 'Mostrar disparadores', - 'show_actions' => 'Mostrar acciones', - 'rules' => 'Reglas', - 'rule_name' => 'Nombre de la regla', - 'rule_triggers' => 'La regla se activa cuando', - 'rule_actions' => 'La regla será', - 'new_rule' => 'Nueva regla', - 'new_rule_group' => 'Nuevo grupo de reglas', - 'rule_priority_up' => 'Dar más prioridad a una regla', - 'rule_priority_down' => 'Dar menos prioridad a una regla', - 'make_new_rule_group' => 'Hacer un nuevo grupo de reglas', - 'store_new_rule_group' => 'Crear grupo de reglas', - 'created_new_rule_group' => '¡Nuevo grupo de reglas ":title" guardado!', - 'updated_rule_group' => 'Grupo de reglas actualizado correctamente ":title".', - 'edit_rule_group' => 'Editar grupo de reglas ":title"', - 'duplicate_rule' => 'Duplicar regla ":title"', - 'rule_copy_of' => 'Copia de ":title"', - 'duplicated_rule' => 'Regla ":title" duplicada en ":newTitle"', - 'delete_rule_group' => 'Eliminar grupo de reglas ":title"', - 'deleted_rule_group' => 'Eliminar grupo de reglas ":title"', - 'update_rule_group' => 'Actualizar grupo de reglas', - 'no_rules_in_group' => 'No hay reglas en este grupo', - 'move_rule_group_up' => 'Mover la regla hacia arriba', - 'move_rule_group_down' => 'Mover el grupo de reglas hacia abajo', - 'save_rules_by_moving' => 'Guardar esta regla moviéndola a otro grupo de reglas:|Guardar estas reglas moviéndolas a otro grupo de reglas:', - 'make_new_rule' => 'Crea una nueva regla en el grupo ":title"', - 'make_new_rule_no_group' => 'Crea una nueva regla', - 'instructions_rule_from_bill' => 'A fin de hacer coincidir las transacciones con su nueva cuenta ":name", Firefly III puede crear una regla que chequeará automáticamente todas las transacciones que guardes. Por favor, verifique los detalles debajo y guarde la regla para que Firefly III automáticamente haga coincidir las transacciones con su nueva cuenta.', - 'instructions_rule_from_journal' => 'Cree una regla basada en una de sus transacciones. Complemente o envíe el siguiente formulario.', - 'rule_is_strict' => 'regla estricta', - 'rule_is_not_strict' => 'regla no estricta', - 'rule_help_stop_processing' => 'Al marcar esta casilla, las reglas posteriores de este grupo no se ejecutarán.', - 'rule_help_strict' => 'En las reglas estrictas TODOS los desencadenadores deben actuar para acción(es) que será(n) ejecutada(s). En las reglas no estrictas, CUALQUIER desencadenador es suficiente para que la(s) acción(es) se ejecute(n).', - 'rule_help_active' => 'Las reglas inactivas nunca se ejecutan.', - 'stored_new_rule' => 'Guardar la nueva regla con titulo ":title"', - 'deleted_rule' => 'Regla eliminada con titulo ":title"', - 'store_new_rule' => 'Crear regla', - 'updated_rule' => 'Regla actualizada con titulo ":title"', - 'default_rule_group_name' => 'Reglaspredeterminada', - 'default_rule_group_description' => 'Todas las reglas que no pertenecen a ningún grupo.', - 'trigger' => 'Disparador', - 'trigger_value' => 'Disparador en valor', - 'stop_processing_other_triggers' => 'Pare el procesamiento de otros disparadores', - 'add_rule_trigger' => 'Añadir nuevo disparador', - 'action' => 'Acción', - 'action_value' => 'Valor de acción', - 'stop_executing_other_actions' => 'Dejar de ejecutar otras acciones', - 'add_rule_action' => 'Añadir nueva acción', - 'edit_rule' => 'Editar regla ":title"', - 'delete_rule' => 'Eliminar regla ":title"', - 'update_rule' => 'Actualizar regla', - 'test_rule_triggers' => 'Ver transacciones que coinciden', - 'warning_no_matching_transactions' => 'No se encontraron transacciones coincidentes.', - 'warning_no_valid_triggers' => 'No se proveen disparadores validos.', - 'apply_rule_selection' => 'Aplique la regla ":title" a una seleccion de sus transacciones', - 'apply_rule_selection_intro' => 'Las reglas como ":title" normalmente sólo se aplican a transacciones nuevas o actualizadas, pero puedes indicarle a Firefly III que las ejecute en una selección de transacciones existentes. Esto puede ser útil si has actualizado una regla y necesitas que los cambios se apliquen a todas tus otras transacciones.', - 'include_transactions_from_accounts' => 'Introduzca transacciones desde estas cuentas', - 'include' => '¿Incluir?', - 'applied_rule_selection' => '{0} Ninguna transacción en su selección fue cambiada por la regla ":title".|[1] Una transacción en su selección fue cambiada por la regla ":title".|[2,*] :count transacciones en su selección fueron cambiadas por la regla ":title".', - 'execute' => 'Ejecutar', - 'apply_rule_group_selection' => 'Aplique la regla de grupo ":title" a una selección de sus transacciones', - 'apply_rule_group_selection_intro' => 'Los grupos de reglas como ":title" normalmente sólo se aplican a transacciones nuevas o actualizadas, pero puedes indicarle a Firefly III que ejecute todas las reglas de este grupo en una selección de transacciones existentes. Esto puede ser útil si has actualizado un grupo de reglas y necesitas que los cambios se apliquen a todas tus otras transacciones.', - 'applied_rule_group_selection' => 'El grupo de reglas ":title" ha sido aplicada a su selección.', + 'is_not_rule_trigger' => 'No', + 'cannot_fire_inactive_rules' => 'No puedes ejecutar reglas inactivas.', + 'show_triggers' => 'Mostrar disparadores', + 'show_actions' => 'Mostrar acciones', + 'rules' => 'Reglas', + 'rule_name' => 'Nombre de la regla', + 'rule_triggers' => 'La regla se activa cuando', + 'rule_actions' => 'La regla será', + 'new_rule' => 'Nueva regla', + 'new_rule_group' => 'Nuevo grupo de reglas', + 'rule_priority_up' => 'Dar más prioridad a una regla', + 'rule_priority_down' => 'Dar menos prioridad a una regla', + 'make_new_rule_group' => 'Hacer un nuevo grupo de reglas', + 'store_new_rule_group' => 'Crear grupo de reglas', + 'created_new_rule_group' => '¡Nuevo grupo de reglas ":title" guardado!', + 'updated_rule_group' => 'Grupo de reglas actualizado correctamente ":title".', + 'edit_rule_group' => 'Editar grupo de reglas ":title"', + 'duplicate_rule' => 'Duplicar regla ":title"', + 'rule_copy_of' => 'Copia de ":title"', + 'duplicated_rule' => 'Regla ":title" duplicada en ":newTitle"', + 'delete_rule_group' => 'Eliminar grupo de reglas ":title"', + 'deleted_rule_group' => 'Eliminar grupo de reglas ":title"', + 'update_rule_group' => 'Actualizar grupo de reglas', + 'no_rules_in_group' => 'No hay reglas en este grupo', + 'move_rule_group_up' => 'Mover la regla hacia arriba', + 'move_rule_group_down' => 'Mover el grupo de reglas hacia abajo', + 'save_rules_by_moving' => 'Guardar esta regla moviéndola a otro grupo de reglas:|Guardar estas reglas moviéndolas a otro grupo de reglas:', + 'make_new_rule' => 'Crea una nueva regla en el grupo ":title"', + 'make_new_rule_no_group' => 'Crea una nueva regla', + 'instructions_rule_from_bill' => 'A fin de hacer coincidir las transacciones con su nueva cuenta ":name", Firefly III puede crear una regla que chequeará automáticamente todas las transacciones que guardes. Por favor, verifique los detalles debajo y guarde la regla para que Firefly III automáticamente haga coincidir las transacciones con su nueva cuenta.', + 'instructions_rule_from_journal' => 'Cree una regla basada en una de sus transacciones. Complemente o envíe el siguiente formulario.', + 'rule_is_strict' => 'regla estricta', + 'rule_is_not_strict' => 'regla no estricta', + 'rule_help_stop_processing' => 'Al marcar esta casilla, las reglas posteriores de este grupo no se ejecutarán.', + 'rule_help_strict' => 'En las reglas estrictas TODOS los desencadenadores deben actuar para acción(es) que será(n) ejecutada(s). En las reglas no estrictas, CUALQUIER desencadenador es suficiente para que la(s) acción(es) se ejecute(n).', + 'rule_help_active' => 'Las reglas inactivas nunca se ejecutan.', + 'stored_new_rule' => 'Guardar la nueva regla con titulo ":title"', + 'deleted_rule' => 'Regla eliminada con titulo ":title"', + 'store_new_rule' => 'Crear regla', + 'updated_rule' => 'Regla actualizada con titulo ":title"', + 'default_rule_group_name' => 'Reglaspredeterminada', + 'default_rule_group_description' => 'Todas las reglas que no pertenecen a ningún grupo.', + 'trigger' => 'Disparador', + 'trigger_value' => 'Disparador en valor', + 'stop_processing_other_triggers' => 'Pare el procesamiento de otros disparadores', + 'add_rule_trigger' => 'Añadir nuevo disparador', + 'action' => 'Acción', + 'action_value' => 'Valor de acción', + 'stop_executing_other_actions' => 'Dejar de ejecutar otras acciones', + 'add_rule_action' => 'Añadir nueva acción', + 'edit_rule' => 'Editar regla ":title"', + 'delete_rule' => 'Eliminar regla ":title"', + 'update_rule' => 'Actualizar regla', + 'test_rule_triggers' => 'Ver transacciones que coinciden', + 'warning_no_matching_transactions' => 'No se encontraron transacciones coincidentes.', + 'warning_no_valid_triggers' => 'No se proveen disparadores validos.', + 'apply_rule_selection' => 'Aplique la regla ":title" a una seleccion de sus transacciones', + 'apply_rule_selection_intro' => 'Las reglas como ":title" normalmente sólo se aplican a transacciones nuevas o actualizadas, pero puedes indicarle a Firefly III que las ejecute en una selección de transacciones existentes. Esto puede ser útil si has actualizado una regla y necesitas que los cambios se apliquen a todas tus otras transacciones.', + 'include_transactions_from_accounts' => 'Introduzca transacciones desde estas cuentas', + 'include' => '¿Incluir?', + 'applied_rule_selection' => '{0} Ninguna transacción en su selección fue cambiada por la regla ":title".|[1] Una transacción en su selección fue cambiada por la regla ":title".|[2,*] :count transacciones en su selección fueron cambiadas por la regla ":title".', + 'execute' => 'Ejecutar', + 'apply_rule_group_selection' => 'Aplique la regla de grupo ":title" a una selección de sus transacciones', + 'apply_rule_group_selection_intro' => 'Los grupos de reglas como ":title" normalmente sólo se aplican a transacciones nuevas o actualizadas, pero puedes indicarle a Firefly III que ejecute todas las reglas de este grupo en una selección de transacciones existentes. Esto puede ser útil si has actualizado un grupo de reglas y necesitas que los cambios se apliquen a todas tus otras transacciones.', + 'applied_rule_group_selection' => 'El grupo de reglas ":title" ha sido aplicada a su selección.', // actions and triggers - 'rule_trigger_store_journal' => 'Cuando la transacción es creada', - 'rule_trigger_update_journal' => 'Cuando la transacción es actualizada', - 'rule_trigger_user_action' => 'La acción del usuario es ":trigger_value"', + 'rule_trigger_store_journal' => 'Cuando la transacción es creada', + 'rule_trigger_update_journal' => 'Cuando la transacción es actualizada', + 'rule_trigger_user_action' => 'La acción del usuario es ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'El nombre de la cuenta de origen comienza con..', - 'rule_trigger_source_account_starts' => 'El nombre de la cuenta de origen comienza con ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'El nombre de la cuenta de origen termina con..', - 'rule_trigger_source_account_ends' => 'El nombre de la cuenta de origen termina con ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'El nombre de la cuenta origen es..', - 'rule_trigger_source_account_is' => 'El nombre de la cuenta origen es ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'El nombre de cuenta de origen contiene..', - 'rule_trigger_source_account_contains' => 'El nombre de la cuenta origen contiene ":trigger_value"', - 'rule_trigger_account_id_choice' => 'El ID de cualquiera de las cuentas es exactamente..', - 'rule_trigger_account_id' => 'El ID de cualquiera de las cuentas es exactamente :trigger_value', - 'rule_trigger_source_account_id_choice' => 'El ID de la cuenta de origen es exactamente..', - 'rule_trigger_source_account_id' => 'El ID de cuenta origen es exactamente :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'El ID de la cuenta de destino es exactamente..', - 'rule_trigger_destination_account_id' => 'El ID de cuenta de destino es exactamente :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Cualquiera de las cuentas es efectivo', - 'rule_trigger_account_is_cash' => 'Cualquiera de las cuentas es efectivo', - 'rule_trigger_source_is_cash_choice' => 'La cuenta de origen es de efectivo', - 'rule_trigger_source_is_cash' => 'La cuenta de origen es de efectivo', - 'rule_trigger_destination_is_cash_choice' => 'La cuenta de destino es de efectivo', - 'rule_trigger_destination_is_cash' => 'La cuenta de origen es de efectivo', - 'rule_trigger_source_account_nr_starts_choice' => 'Número de la cuenta de origen / IBAN comienza con..', - 'rule_trigger_source_account_nr_starts' => 'Número / IBAN de la cuenta origen empieza con ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Número / IBAN de la cuenta de origen termina con..', - 'rule_trigger_source_account_nr_ends' => 'Número de la cuenta de origen / IBAN termina con ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Número de la cuenta de origen / IBAN es..', - 'rule_trigger_source_account_nr_is' => 'Número de cuenta de origen / IBAN es ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Número de cuenta de origen / IBAN contiene..', - 'rule_trigger_source_account_nr_contains' => 'Número de cuenta de origen / IBAN contiene ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'El nombre de cuenta de destino comienza con..', - 'rule_trigger_destination_account_starts' => 'El nombre de cuenta de destino comienza con ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'El nombre de cuenta de destino termina con...', - 'rule_trigger_destination_account_ends' => 'El nombre de la cuenta de destino termina con ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'El nombre de cuenta de destino es...', - 'rule_trigger_destination_account_is' => 'El nombre de la cuenta de destino es ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'El nombre de cuenta de destino contiene..', - 'rule_trigger_destination_account_contains' => 'El nombre de la cuenta de destino contiene ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Número / IBAN de la cuenta de destino empieza con..', - 'rule_trigger_destination_account_nr_starts' => 'Número de la cuenta de destino / IBAN comienza con ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Número de la cuenta de destino / IBAN termina con..', - 'rule_trigger_destination_account_nr_ends' => 'Número de la cuenta de destino / IBAN termina con ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Número de la cuenta de destino / IBAN es..', - 'rule_trigger_destination_account_nr_is' => 'Número de la cuenta de destino / IBAN es ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'El número de la cuenta de destino / IBAN contiene..', - 'rule_trigger_destination_account_nr_contains' => 'El número de la cuenta de destino / IBAN contiene ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transacción es del tipo..', - 'rule_trigger_transaction_type' => 'La transacción es de tipo ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Categoría es..', - 'rule_trigger_category_is' => 'Categoría es ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'La cantidad es menor o igual a ..', - 'rule_trigger_amount_less' => 'La cantidad es menor o igual a :trigger_value', - 'rule_trigger_amount_is_choice' => 'Cantidad es..', - 'rule_trigger_amount_is' => 'Cantidad es :trigger_value', - 'rule_trigger_amount_more_choice' => 'Cantidad es mayor o igual a..', - 'rule_trigger_amount_more' => 'Cantidad es mayor o igual a :trigger_value', - 'rule_trigger_description_starts_choice' => 'Descripción comienza con..', - 'rule_trigger_description_starts' => 'La descripción comienza con ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Descripción termina con..', - 'rule_trigger_description_ends' => 'La descripción termina con ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Descripción contiene..', - 'rule_trigger_description_contains' => 'La descripción contiene ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Descripción es..', - 'rule_trigger_description_is' => 'La descripción es ":trigger_value"', - 'rule_trigger_date_on_choice' => 'La fecha de la transacción es..', - 'rule_trigger_date_on' => 'La fecha de la transacción es ":trigger_value"', - 'rule_trigger_date_before_choice' => 'La fecha de la transacción es anterior a..', - 'rule_trigger_date_before' => 'La fecha de la transacción es anterior a ":trigger_value"', - 'rule_trigger_date_after_choice' => 'La fecha de la transacción es después de..', - 'rule_trigger_date_after' => 'La fecha de la transacción es después de ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'La transacción se realizó el..', - 'rule_trigger_created_at_on' => 'La transacción se realizó el ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'La transacción fue editada por última vez el..', - 'rule_trigger_updated_at_on' => 'La transacción fue editada por última vez el ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Presupuesto es..', - 'rule_trigger_budget_is' => 'Presupuesto es ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Cualquier etiqueta es..', - 'rule_trigger_tag_is' => 'Cualquier etiqueta es ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'La moneda de la transacción es..', - 'rule_trigger_currency_is' => 'La moneda de la transacción es ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'La transacción en moneda extranjera es..', - 'rule_trigger_foreign_currency_is' => 'La transacción en moneda extranjera es ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Tiene al menos tantos archivos adjuntos', - 'rule_trigger_has_attachments' => 'Tiene al menos :trigger_value anexo(s)', - 'rule_trigger_has_no_category_choice' => 'No tiene categoría', - 'rule_trigger_has_no_category' => 'La transacción no tiene categoría', - 'rule_trigger_has_any_category_choice' => 'Tiene (cualquier) categoría', - 'rule_trigger_has_any_category' => 'La transacción tiene (cualquier) categoría', - 'rule_trigger_has_no_budget_choice' => 'No tiene presupuesto', - 'rule_trigger_has_no_budget' => 'Transacción no tiene presupuesto', - 'rule_trigger_has_any_budget_choice' => 'Tiene un (cualquier) presupuesto', - 'rule_trigger_has_any_budget' => 'La transacción tiene (cualquier) presupuesto', - 'rule_trigger_has_no_bill_choice' => 'No tiene factura', - 'rule_trigger_has_no_bill' => 'Transacción no tiene factura', - 'rule_trigger_has_any_bill_choice' => 'Tiene una (cualquier) factura', - 'rule_trigger_has_any_bill' => 'Transacción tiene una (cualquier) factura', - 'rule_trigger_has_no_tag_choice' => 'No tiene etiqueta(s)', - 'rule_trigger_has_no_tag' => 'La transacción no tiene etiqueta(s)', - 'rule_trigger_has_any_tag_choice' => 'Tiene una o mas (cualquier) etiquetas', - 'rule_trigger_has_any_tag' => 'La transacción tiene una o mas (cualquier) etiquetas', - 'rule_trigger_any_notes_choice' => 'Tiene (cualquier) notas', - 'rule_trigger_any_notes' => 'La transacción tiene (cualquier) notas', - 'rule_trigger_no_notes_choice' => 'No tiene notas', - 'rule_trigger_no_notes' => 'Transacción no tiene notas', - 'rule_trigger_notes_is_choice' => 'Las notas son..', - 'rule_trigger_notes_is' => 'Las notas son ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Las notas contienen..', - 'rule_trigger_notes_contains' => 'Las notas contienen ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Las notas comienzan con..', - 'rule_trigger_notes_starts' => 'Las notas comienzan con ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Las notas terminan con..', - 'rule_trigger_notes_ends' => 'Las notas terminan con ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'La factura es..', - 'rule_trigger_bill_is' => 'La factura es ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'El ID externo es..', - 'rule_trigger_external_id_is' => 'El ID externo es ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'La referencia interna es..', - 'rule_trigger_internal_reference_is' => 'La referencia interna es ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'El ID del diario de transacciones es..', - 'rule_trigger_journal_id' => 'El ID del diario de transacciones es ":trigger_value"', - 'rule_trigger_any_external_url' => 'La transacción tiene una (cualquiera) URL externa', - 'rule_trigger_any_external_url_choice' => 'La transacción tiene una (cualquiera) URL externa', - 'rule_trigger_any_external_id' => 'La transacción tiene un (cualquiera) ID externo', - 'rule_trigger_any_external_id_choice' => 'La transacción tiene un (cualquiera) ID externo', - 'rule_trigger_no_external_url_choice' => 'La transacción no tiene URL externa', - 'rule_trigger_no_external_url' => 'La transacción no tiene URL externa', - 'rule_trigger_no_external_id_choice' => 'La transacción no tiene ID externa', - 'rule_trigger_no_external_id' => 'La transacción no tiene ID externa', - 'rule_trigger_id_choice' => 'La ID de la transacción es..', - 'rule_trigger_id' => 'La ID de la transacción es ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'El SEPA CT es..', - 'rule_trigger_sepa_ct_is' => 'El SEPA CT es ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'El nombre de la cuenta de origen comienza con..', + 'rule_trigger_source_account_starts' => 'El nombre de la cuenta de origen comienza con ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'El nombre de la cuenta de origen termina con..', + 'rule_trigger_source_account_ends' => 'El nombre de la cuenta de origen termina con ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'El nombre de la cuenta origen es..', + 'rule_trigger_source_account_is' => 'El nombre de la cuenta origen es ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'El nombre de cuenta de origen contiene..', + 'rule_trigger_source_account_contains' => 'El nombre de la cuenta origen contiene ":trigger_value"', + 'rule_trigger_account_id_choice' => 'El ID de cualquiera de las cuentas es exactamente..', + 'rule_trigger_account_id' => 'El ID de cualquiera de las cuentas es exactamente :trigger_value', + 'rule_trigger_source_account_id_choice' => 'El ID de la cuenta de origen es exactamente..', + 'rule_trigger_source_account_id' => 'El ID de cuenta origen es exactamente :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'El ID de la cuenta de destino es exactamente..', + 'rule_trigger_destination_account_id' => 'El ID de cuenta de destino es exactamente :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Cualquiera de las cuentas es efectivo', + 'rule_trigger_account_is_cash' => 'Cualquiera de las cuentas es efectivo', + 'rule_trigger_source_is_cash_choice' => 'La cuenta de origen es de efectivo', + 'rule_trigger_source_is_cash' => 'La cuenta de origen es de efectivo', + 'rule_trigger_destination_is_cash_choice' => 'La cuenta de destino es de efectivo', + 'rule_trigger_destination_is_cash' => 'La cuenta de origen es de efectivo', + 'rule_trigger_source_account_nr_starts_choice' => 'Número de la cuenta de origen / IBAN comienza con..', + 'rule_trigger_source_account_nr_starts' => 'Número / IBAN de la cuenta origen empieza con ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Número / IBAN de la cuenta de origen termina con..', + 'rule_trigger_source_account_nr_ends' => 'Número de la cuenta de origen / IBAN termina con ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Número de la cuenta de origen / IBAN es..', + 'rule_trigger_source_account_nr_is' => 'Número de cuenta de origen / IBAN es ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Número de cuenta de origen / IBAN contiene..', + 'rule_trigger_source_account_nr_contains' => 'Número de cuenta de origen / IBAN contiene ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'El nombre de cuenta de destino comienza con..', + 'rule_trigger_destination_account_starts' => 'El nombre de cuenta de destino comienza con ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'El nombre de cuenta de destino termina con...', + 'rule_trigger_destination_account_ends' => 'El nombre de la cuenta de destino termina con ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'El nombre de cuenta de destino es...', + 'rule_trigger_destination_account_is' => 'El nombre de la cuenta de destino es ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'El nombre de cuenta de destino contiene..', + 'rule_trigger_destination_account_contains' => 'El nombre de la cuenta de destino contiene ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Número / IBAN de la cuenta de destino empieza con..', + 'rule_trigger_destination_account_nr_starts' => 'Número de la cuenta de destino / IBAN comienza con ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Número de la cuenta de destino / IBAN termina con..', + 'rule_trigger_destination_account_nr_ends' => 'Número de la cuenta de destino / IBAN termina con ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Número de la cuenta de destino / IBAN es..', + 'rule_trigger_destination_account_nr_is' => 'Número de la cuenta de destino / IBAN es ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'El número de la cuenta de destino / IBAN contiene..', + 'rule_trigger_destination_account_nr_contains' => 'El número de la cuenta de destino / IBAN contiene ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transacción es del tipo..', + 'rule_trigger_transaction_type' => 'La transacción es de tipo ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Categoría es..', + 'rule_trigger_category_is' => 'Categoría es ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'La cantidad es menor o igual a ..', + 'rule_trigger_amount_less' => 'La cantidad es menor o igual a :trigger_value', + 'rule_trigger_amount_is_choice' => 'Cantidad es..', + 'rule_trigger_amount_is' => 'Cantidad es :trigger_value', + 'rule_trigger_amount_more_choice' => 'Cantidad es mayor o igual a..', + 'rule_trigger_amount_more' => 'Cantidad es mayor o igual a :trigger_value', + 'rule_trigger_description_starts_choice' => 'Descripción comienza con..', + 'rule_trigger_description_starts' => 'La descripción comienza con ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Descripción termina con..', + 'rule_trigger_description_ends' => 'La descripción termina con ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Descripción contiene..', + 'rule_trigger_description_contains' => 'La descripción contiene ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Descripción es..', + 'rule_trigger_description_is' => 'La descripción es ":trigger_value"', + 'rule_trigger_date_on_choice' => 'La fecha de la transacción es..', + 'rule_trigger_date_on' => 'La fecha de la transacción es ":trigger_value"', + 'rule_trigger_date_before_choice' => 'La fecha de la transacción es anterior a..', + 'rule_trigger_date_before' => 'La fecha de la transacción es anterior a ":trigger_value"', + 'rule_trigger_date_after_choice' => 'La fecha de la transacción es después de..', + 'rule_trigger_date_after' => 'La fecha de la transacción es después de ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'La transacción se realizó el..', + 'rule_trigger_created_at_on' => 'La transacción se realizó el ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'La transacción fue editada por última vez el..', + 'rule_trigger_updated_at_on' => 'La transacción fue editada por última vez el ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Presupuesto es..', + 'rule_trigger_budget_is' => 'Presupuesto es ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Cualquier etiqueta es..', + 'rule_trigger_tag_is' => 'Cualquier etiqueta es ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'La moneda de la transacción es..', + 'rule_trigger_currency_is' => 'La moneda de la transacción es ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'La transacción en moneda extranjera es..', + 'rule_trigger_foreign_currency_is' => 'La transacción en moneda extranjera es ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Tiene al menos tantos archivos adjuntos', + 'rule_trigger_has_attachments' => 'Tiene al menos :trigger_value anexo(s)', + 'rule_trigger_has_no_category_choice' => 'No tiene categoría', + 'rule_trigger_has_no_category' => 'La transacción no tiene categoría', + 'rule_trigger_has_any_category_choice' => 'Tiene (cualquier) categoría', + 'rule_trigger_has_any_category' => 'La transacción tiene (cualquier) categoría', + 'rule_trigger_has_no_budget_choice' => 'No tiene presupuesto', + 'rule_trigger_has_no_budget' => 'Transacción no tiene presupuesto', + 'rule_trigger_has_any_budget_choice' => 'Tiene un (cualquier) presupuesto', + 'rule_trigger_has_any_budget' => 'La transacción tiene (cualquier) presupuesto', + 'rule_trigger_has_no_bill_choice' => 'No tiene factura', + 'rule_trigger_has_no_bill' => 'Transacción no tiene factura', + 'rule_trigger_has_any_bill_choice' => 'Tiene una (cualquier) factura', + 'rule_trigger_has_any_bill' => 'Transacción tiene una (cualquier) factura', + 'rule_trigger_has_no_tag_choice' => 'No tiene etiqueta(s)', + 'rule_trigger_has_no_tag' => 'La transacción no tiene etiqueta(s)', + 'rule_trigger_has_any_tag_choice' => 'Tiene una o mas (cualquier) etiquetas', + 'rule_trigger_has_any_tag' => 'La transacción tiene una o mas (cualquier) etiquetas', + 'rule_trigger_any_notes_choice' => 'Tiene (cualquier) notas', + 'rule_trigger_any_notes' => 'La transacción tiene (cualquier) notas', + 'rule_trigger_no_notes_choice' => 'No tiene notas', + 'rule_trigger_no_notes' => 'Transacción no tiene notas', + 'rule_trigger_notes_is_choice' => 'Las notas son..', + 'rule_trigger_notes_is' => 'Las notas son ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Las notas contienen..', + 'rule_trigger_notes_contains' => 'Las notas contienen ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Las notas comienzan con..', + 'rule_trigger_notes_starts' => 'Las notas comienzan con ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Las notas terminan con..', + 'rule_trigger_notes_ends' => 'Las notas terminan con ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'La factura es..', + 'rule_trigger_bill_is' => 'La factura es ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'El ID externo es..', + 'rule_trigger_external_id_is' => 'El ID externo es ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'La referencia interna es..', + 'rule_trigger_internal_reference_is' => 'La referencia interna es ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'El ID del diario de transacciones es..', + 'rule_trigger_journal_id' => 'El ID del diario de transacciones es ":trigger_value"', + 'rule_trigger_any_external_url' => 'La transacción tiene una (cualquiera) URL externa', + 'rule_trigger_any_external_url_choice' => 'La transacción tiene una (cualquiera) URL externa', + 'rule_trigger_any_external_id' => 'La transacción tiene un (cualquiera) ID externo', + 'rule_trigger_any_external_id_choice' => 'La transacción tiene un (cualquiera) ID externo', + 'rule_trigger_no_external_url_choice' => 'La transacción no tiene URL externa', + 'rule_trigger_no_external_url' => 'La transacción no tiene URL externa', + 'rule_trigger_no_external_id_choice' => 'La transacción no tiene ID externa', + 'rule_trigger_no_external_id' => 'La transacción no tiene ID externa', + 'rule_trigger_id_choice' => 'La ID de la transacción es..', + 'rule_trigger_id' => 'La ID de la transacción es ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'El SEPA CT es..', + 'rule_trigger_sepa_ct_is' => 'El SEPA CT es ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'La acción del usuario es ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Ninguna etiqueta es..', - 'rule_trigger_tag_is_not' => 'Ninguna etiqueta es ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Cualquiera de las cuentas es exactamente..', - 'rule_trigger_account_is' => 'Cualquiera de las cuentas es exactamente:trigger_value', - 'rule_trigger_account_contains_choice' => 'Cualquier cuenta contiene..', - 'rule_trigger_account_contains' => 'Cualquier cuenta contiene ":trigger_value " "', - 'rule_trigger_account_ends_choice' => 'Cualquier cuenta termina con..', - 'rule_trigger_account_ends' => 'Cualquier cuenta termina con ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Cualquiera cuenta comienza con..', - 'rule_trigger_account_starts' => 'Cualquiera cuenta comienza con ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Cualquier número de cuenta / IBAN es..', - 'rule_trigger_account_nr_is' => 'Cualquier número de cuenta / IBAN es ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Cualquiera de los números de cuenta / IBAN contiene..', - 'rule_trigger_account_nr_contains' => 'Cualquiera de los números de cuenta / IBAN contiene ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Cualquiera de los números de cuenta / IBAN termina en..', - 'rule_trigger_account_nr_ends' => 'Cualquiera de los números de cuenta / IBAN termina en ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Cualquiera de los números de cuenta / IBAN comienza por..', - 'rule_trigger_account_nr_starts' => 'Cualquiera de los números de cuenta / IBAN comienza por ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'La categoría contiene..', - 'rule_trigger_category_contains' => 'La categoría contiene ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'La categoría termina con..', - 'rule_trigger_category_ends' => 'La categoría termina con ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'La categoría empieza por..', - 'rule_trigger_category_starts' => 'La categoría comienza con ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'El presupuesto contiene..', - 'rule_trigger_budget_contains' => 'El presupuesto contiene ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'El presupuesto termina con..', - 'rule_trigger_budget_ends' => 'El presupuesto termina con ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'El presupuesto comienza con..', - 'rule_trigger_budget_starts' => 'El presupuesto comienza con ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'La factura contiene..', - 'rule_trigger_bill_contains' => 'La factura contiene ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'La factura termina con..', - 'rule_trigger_bill_ends' => 'La factura termina con ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'La factura comienza con..', - 'rule_trigger_bill_starts' => 'La factura comienza con ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'El ID externo contiene..', - 'rule_trigger_external_id_contains' => 'El ID externo contiene ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'El ID externo termina con..', - 'rule_trigger_external_id_ends' => 'El ID externo termina con ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'ID externo comienza con..', - 'rule_trigger_external_id_starts' => 'ID externo comienza con ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'La referencia interna contiene..', - 'rule_trigger_internal_reference_contains' => 'La referencia interna contiene ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'La referencia interna termina con..', - 'rule_trigger_internal_reference_ends' => 'La referencia interna termina con ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Referencia interna comienza con..', - 'rule_trigger_internal_reference_starts' => 'La referencia interna comienza con ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'La URL externa es..', - 'rule_trigger_external_url_is' => 'La URL externa es ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'La URL externa contiene..', - 'rule_trigger_external_url_contains' => 'La URL externa contiene ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'La URL externa termina con..', - 'rule_trigger_external_url_ends' => 'La URL externa termina con ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'La URL externa comienza con..', - 'rule_trigger_external_url_starts' => 'La URL externa comienza con ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'No tiene adjuntos', - 'rule_trigger_has_no_attachments' => 'La transacción no tiene adjuntos', - 'rule_trigger_recurrence_id_choice' => 'El ID de la transacción recurrente es..', - 'rule_trigger_recurrence_id' => 'El ID de la transacción recurrente es ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'La fecha de interés es el..', - 'rule_trigger_interest_date_on' => 'La fecha de interés es el ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'La fecha de interés es antes del..', - 'rule_trigger_interest_date_before' => 'La fecha de interés es anterior al ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'La fecha de interés es después del..', - 'rule_trigger_interest_date_after' => 'La fecha de interés es posterior al ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'La fecha de registro es el..', - 'rule_trigger_book_date_on' => 'La fecha del libro es el ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'La fecha del libro es anterior al..', - 'rule_trigger_book_date_before' => 'La fecha del libro es anterior al ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'La fecha del libro es posterior al..', - 'rule_trigger_book_date_after' => 'La fecha del libro es posterior al ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'La fecha de procesamiento es el..', - 'rule_trigger_process_date_on' => 'La fecha de procesamiento es el ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'La fecha de procesamientos es antes del..', - 'rule_trigger_process_date_before' => 'La fecha de procesamiento es antes del ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'La fecha de procesamiento es después del..', - 'rule_trigger_process_date_after' => 'La fecha de procesamiento es después del ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'La fecha de vencimiento es el..', - 'rule_trigger_due_date_on' => 'La fecha de vencimiento es el ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'La fecha de vencimiento es anterior al..', - 'rule_trigger_due_date_before' => 'La fecha de vencimiento es anterior al ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'La fecha de vencimiento es posterior al..', - 'rule_trigger_due_date_after' => 'La fecha de vencimiento es posterior al ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'La fecha de pago es el..', - 'rule_trigger_payment_date_on' => 'La fecha de pago es el ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'La fecha de pago es antes del..', - 'rule_trigger_payment_date_before' => 'La fecha de pago es anterior al ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'La fecha de pago es posterior al..', - 'rule_trigger_payment_date_after' => 'La fecha de pago es posterior al ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'La fecha de la factura es el..', - 'rule_trigger_invoice_date_on' => 'La fecha de la factura es el ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'La fecha de la factura es anterior al..', - 'rule_trigger_invoice_date_before' => 'La fecha de la factura es anterior al ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'La fecha de la factura es posterior al..', - 'rule_trigger_invoice_date_after' => 'La fecha de la factura es posterior al ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'La transacción fue creada antes del..', - 'rule_trigger_created_at_before' => 'La transacción se creó antes del ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'La transacción fue creada después del..', - 'rule_trigger_created_at_after' => 'La transacción se creó antes del ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'La transacción fue actualizada por última vez antes del..', - 'rule_trigger_updated_at_before' => 'La transacción se actualizó por última vez antes del ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'La transacción se actualizó por última vez después del..', - 'rule_trigger_updated_at_after' => 'La transacción se actualizó por última vez antes del ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'El importe extranjero es exactamente..', - 'rule_trigger_foreign_amount_is' => 'El importe extranjero es exactamente ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'El importe extranjero es menor que..', - 'rule_trigger_foreign_amount_less' => 'El importe extranjero es menor que ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'El importe extranjero es mayor que..', - 'rule_trigger_foreign_amount_more' => 'El importe extranjero es menor que ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'El nombre de cualquier archivo adjunto es..', - 'rule_trigger_attachment_name_is' => 'El nombre de cualquier archivo adjunto es ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'El nombre de cualquier archivo adjunto contiene..', - 'rule_trigger_attachment_name_contains' => 'El nombre de cualquier archivo adjunto contiene ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'El nombre de cualquier archivo adjunto comienza con..', - 'rule_trigger_attachment_name_starts' => 'El nombre de cualquier archivo adjunto comienza con ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'El nombre de cualquier archivo adjunto termina con..', - 'rule_trigger_attachment_name_ends' => 'El nombre de cualquier archivo adjunto termina con ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Cualquier nota de archivos adjuntos es..', - 'rule_trigger_attachment_notes_are' => 'Cualquier nota de archivos adjuntos es ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Cualquier nota de archivos adjuntos contiene..', - 'rule_trigger_attachment_notes_contains' => 'Cualquier nota de archivos adjuntos contiene ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Cualquier nota de archivos adjuntos comienza por..', - 'rule_trigger_attachment_notes_starts' => 'Cualquier nota de archivos adjuntos comienza por ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Cualquier nota de archivos adjuntos termina con..', - 'rule_trigger_attachment_notes_ends' => 'Cualquier nota de archivos adjuntos termina con ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transacción conciliada', - 'rule_trigger_reconciled' => 'Transacción conciliada', - 'rule_trigger_exists_choice' => 'Cualquier transacción coincide(!)', - 'rule_trigger_exists' => 'Cualquier transacción coincide', + 'rule_trigger_user_action_choice' => 'La acción del usuario es ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Ninguna etiqueta es..', + 'rule_trigger_tag_is_not' => 'Ninguna etiqueta es ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Cualquiera de las cuentas es exactamente..', + 'rule_trigger_account_is' => 'Cualquiera de las cuentas es exactamente:trigger_value', + 'rule_trigger_account_contains_choice' => 'Cualquier cuenta contiene..', + 'rule_trigger_account_contains' => 'Cualquier cuenta contiene ":trigger_value " "', + 'rule_trigger_account_ends_choice' => 'Cualquier cuenta termina con..', + 'rule_trigger_account_ends' => 'Cualquier cuenta termina con ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Cualquiera cuenta comienza con..', + 'rule_trigger_account_starts' => 'Cualquiera cuenta comienza con ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Cualquier número de cuenta / IBAN es..', + 'rule_trigger_account_nr_is' => 'Cualquier número de cuenta / IBAN es ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Cualquiera de los números de cuenta / IBAN contiene..', + 'rule_trigger_account_nr_contains' => 'Cualquiera de los números de cuenta / IBAN contiene ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Cualquiera de los números de cuenta / IBAN termina en..', + 'rule_trigger_account_nr_ends' => 'Cualquiera de los números de cuenta / IBAN termina en ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Cualquiera de los números de cuenta / IBAN comienza por..', + 'rule_trigger_account_nr_starts' => 'Cualquiera de los números de cuenta / IBAN comienza por ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'La categoría contiene..', + 'rule_trigger_category_contains' => 'La categoría contiene ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'La categoría termina con..', + 'rule_trigger_category_ends' => 'La categoría termina con ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'La categoría empieza por..', + 'rule_trigger_category_starts' => 'La categoría comienza con ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'El presupuesto contiene..', + 'rule_trigger_budget_contains' => 'El presupuesto contiene ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'El presupuesto termina con..', + 'rule_trigger_budget_ends' => 'El presupuesto termina con ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'El presupuesto comienza con..', + 'rule_trigger_budget_starts' => 'El presupuesto comienza con ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'La factura contiene..', + 'rule_trigger_bill_contains' => 'La factura contiene ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'La factura termina con..', + 'rule_trigger_bill_ends' => 'La factura termina con ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'La factura comienza con..', + 'rule_trigger_bill_starts' => 'La factura comienza con ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'El ID externo contiene..', + 'rule_trigger_external_id_contains' => 'El ID externo contiene ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'El ID externo termina con..', + 'rule_trigger_external_id_ends' => 'El ID externo termina con ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'ID externo comienza con..', + 'rule_trigger_external_id_starts' => 'ID externo comienza con ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'La referencia interna contiene..', + 'rule_trigger_internal_reference_contains' => 'La referencia interna contiene ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'La referencia interna termina con..', + 'rule_trigger_internal_reference_ends' => 'La referencia interna termina con ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Referencia interna comienza con..', + 'rule_trigger_internal_reference_starts' => 'La referencia interna comienza con ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'La URL externa es..', + 'rule_trigger_external_url_is' => 'La URL externa es ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'La URL externa contiene..', + 'rule_trigger_external_url_contains' => 'La URL externa contiene ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'La URL externa termina con..', + 'rule_trigger_external_url_ends' => 'La URL externa termina con ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'La URL externa comienza con..', + 'rule_trigger_external_url_starts' => 'La URL externa comienza con ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'No tiene adjuntos', + 'rule_trigger_has_no_attachments' => 'La transacción no tiene adjuntos', + 'rule_trigger_recurrence_id_choice' => 'El ID de la transacción recurrente es..', + 'rule_trigger_recurrence_id' => 'El ID de la transacción recurrente es ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'La fecha de interés es el..', + 'rule_trigger_interest_date_on' => 'La fecha de interés es el ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'La fecha de interés es antes del..', + 'rule_trigger_interest_date_before' => 'La fecha de interés es anterior al ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'La fecha de interés es después del..', + 'rule_trigger_interest_date_after' => 'La fecha de interés es posterior al ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'La fecha de registro es el..', + 'rule_trigger_book_date_on' => 'La fecha del libro es el ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'La fecha del libro es anterior al..', + 'rule_trigger_book_date_before' => 'La fecha del libro es anterior al ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'La fecha del libro es posterior al..', + 'rule_trigger_book_date_after' => 'La fecha del libro es posterior al ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'La fecha de procesamiento es el..', + 'rule_trigger_process_date_on' => 'La fecha de procesamiento es el ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'La fecha de procesamientos es antes del..', + 'rule_trigger_process_date_before' => 'La fecha de procesamiento es antes del ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'La fecha de procesamiento es después del..', + 'rule_trigger_process_date_after' => 'La fecha de procesamiento es después del ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'La fecha de vencimiento es el..', + 'rule_trigger_due_date_on' => 'La fecha de vencimiento es el ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'La fecha de vencimiento es anterior al..', + 'rule_trigger_due_date_before' => 'La fecha de vencimiento es anterior al ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'La fecha de vencimiento es posterior al..', + 'rule_trigger_due_date_after' => 'La fecha de vencimiento es posterior al ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'La fecha de pago es el..', + 'rule_trigger_payment_date_on' => 'La fecha de pago es el ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'La fecha de pago es antes del..', + 'rule_trigger_payment_date_before' => 'La fecha de pago es anterior al ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'La fecha de pago es posterior al..', + 'rule_trigger_payment_date_after' => 'La fecha de pago es posterior al ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'La fecha de la factura es el..', + 'rule_trigger_invoice_date_on' => 'La fecha de la factura es el ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'La fecha de la factura es anterior al..', + 'rule_trigger_invoice_date_before' => 'La fecha de la factura es anterior al ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'La fecha de la factura es posterior al..', + 'rule_trigger_invoice_date_after' => 'La fecha de la factura es posterior al ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'La transacción fue creada antes del..', + 'rule_trigger_created_at_before' => 'La transacción se creó antes del ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'La transacción fue creada después del..', + 'rule_trigger_created_at_after' => 'La transacción se creó antes del ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'La transacción fue actualizada por última vez antes del..', + 'rule_trigger_updated_at_before' => 'La transacción se actualizó por última vez antes del ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'La transacción se actualizó por última vez después del..', + 'rule_trigger_updated_at_after' => 'La transacción se actualizó por última vez antes del ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'El importe extranjero es exactamente..', + 'rule_trigger_foreign_amount_is' => 'El importe extranjero es exactamente ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'El importe extranjero es menor que..', + 'rule_trigger_foreign_amount_less' => 'El importe extranjero es menor que ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'El importe extranjero es mayor que..', + 'rule_trigger_foreign_amount_more' => 'El importe extranjero es menor que ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'El nombre de cualquier archivo adjunto es..', + 'rule_trigger_attachment_name_is' => 'El nombre de cualquier archivo adjunto es ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'El nombre de cualquier archivo adjunto contiene..', + 'rule_trigger_attachment_name_contains' => 'El nombre de cualquier archivo adjunto contiene ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'El nombre de cualquier archivo adjunto comienza con..', + 'rule_trigger_attachment_name_starts' => 'El nombre de cualquier archivo adjunto comienza con ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'El nombre de cualquier archivo adjunto termina con..', + 'rule_trigger_attachment_name_ends' => 'El nombre de cualquier archivo adjunto termina con ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Cualquier nota de archivos adjuntos es..', + 'rule_trigger_attachment_notes_are' => 'Cualquier nota de archivos adjuntos es ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Cualquier nota de archivos adjuntos contiene..', + 'rule_trigger_attachment_notes_contains' => 'Cualquier nota de archivos adjuntos contiene ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Cualquier nota de archivos adjuntos comienza por..', + 'rule_trigger_attachment_notes_starts' => 'Cualquier nota de archivos adjuntos comienza por ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Cualquier nota de archivos adjuntos termina con..', + 'rule_trigger_attachment_notes_ends' => 'Cualquier nota de archivos adjuntos termina con ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transacción conciliada', + 'rule_trigger_reconciled' => 'Transacción conciliada', + 'rule_trigger_exists_choice' => 'Cualquier transacción coincide(!)', + 'rule_trigger_exists' => 'Cualquier transacción coincide', // more values for new types: - 'rule_trigger_not_account_id' => 'El ID de la cuenta no es ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'El ID de cuenta de origen no es ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'El ID de cuenta de destino no es ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'El tipo de transacción no es ":trigger_value"', - 'rule_trigger_not_tag_is' => 'La etiqueta no es ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'La etiqueta es ":trigger_value"', - 'rule_trigger_not_description_is' => 'La descripción no es ":trigger_value"', - 'rule_trigger_not_description_contains' => 'La descripción no contiene', - 'rule_trigger_not_description_ends' => 'La descripción no termina con ":trigger_value"', - 'rule_trigger_not_description_starts' => 'La descripción no comienza con ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Las notas no son ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Las notas no contienen ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Las notas no terminan en ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Las notas no comienzan con ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'La cuenta de origen no es ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'La cuenta de origen no contiene ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'La cuenta de origen no termina en ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'La cuenta de origen no comienza con ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'El número / IBAN de la cuenta de origen no es ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'El número / IBAN de la cuenta de origen no contiene ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'El número / IBAN de la cuenta de origen no termina en ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'El número / IBAN de la cuenta de origen no comienza con ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'La cuenta de destino no es ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'La cuenta de destino no contiene ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'La cuenta de destino no termina en ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'La cuenta de destino no comienza con ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'El número / IBAN de la cuenta de destino no es ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'El número / IBAN de la cuenta de destino no contiene ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'El número / IBAN de la cuenta de destino no termina en ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'El número / IBAN de la cuenta de destino no comienza por ":trigger_value"', - 'rule_trigger_not_account_is' => 'Ninguna cuenta es ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Ninguna cuenta contiene ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Ninguna cuenta termina en ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Ninguna cuenta comienza con ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Ninguno de los números de cuenta / IBAN es ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Ninguno de los números de cuenta / IBAN contiene ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Ninguno de los números de cuenta / IBAN termina en ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Ninguno de los números de cuenta / IBAN comienza con ":trigger_value"', - 'rule_trigger_not_category_is' => 'La categoría no es ":trigger_value"', - 'rule_trigger_not_category_contains' => 'La categoría no contiene ":trigger_value"', - 'rule_trigger_not_category_ends' => 'La categoría no termina en ":trigger_value"', - 'rule_trigger_not_category_starts' => 'La categoría no empieza con ":trigger_value"', - 'rule_trigger_not_budget_is' => 'El presupuesto no es ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'El presupuesto no contiene ":trigger_value " "', - 'rule_trigger_not_budget_ends' => 'El presupuesto no termina en ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'El presupuesto no comienza con ":trigger_value"', - 'rule_trigger_not_bill_is' => 'La factura no es ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'La factura no contiene ":trigger_value " "', - 'rule_trigger_not_bill_ends' => 'La factura no termina en ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'La factura no termina con ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'El ID externo no es ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'El ID externo no contiene ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'El ID externo no termina en ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'El ID externo no comienza con ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'La referencia interna no es ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'La referencia interna no contiene ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'La referencia interna no termina en ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'La referencia interna no comienza con ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'La URL externa no es ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'La URL externa no contiene ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'La URL externa no termina en ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'La URL externa no comienza por ":trigger_value"', - 'rule_trigger_not_currency_is' => 'La moneda no es ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'La moneda extranjera no es ":trigger_value"', - 'rule_trigger_not_id' => 'El ID de la transacción no es ":trigger_value"', - 'rule_trigger_not_journal_id' => 'El ID del diario de transacciones no es ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'El ID recurrente no es ":trigger_value"', - 'rule_trigger_not_date_on' => 'La fecha no está en ":trigger_value"', - 'rule_trigger_not_date_before' => 'La fecha no es anterior al ":trigger_value"', - 'rule_trigger_not_date_after' => 'La fecha no es posterior al ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'La fecha de interés no es el ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'La fecha de interés no es anterior al ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'La fecha de interés no es posterior al ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'La fecha de registro no es el ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'La fecha de registro no es anterior al ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'La fecha de registro no es posterior al ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'La fecha de procesamiento no es el ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'La fecha de procesamiento no es anterior al ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'La fecha de procesamiento no es posterior al ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'La fecha de vencimiento no es el ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'La fecha de vencimiento no es anterior al ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'La fecha vencimiento no es posterior al ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'La fecha de pago no es el ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'La fecha de pago no es anterior al ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'La fecha de pago no es posterior al ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'La fecha de la factura no es el ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'La fecha de la factura no es anterior al ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'La fecha de la factura no es posterior al ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'La transacción no se creó el ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'La transacción no se creó antes del ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'La transacción no se crea después de ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'La transacción no se actualiza en ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'La transacción no se actualiza antes de ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'La transacción no se actualiza después de ":trigger_value"', - 'rule_trigger_not_amount_is' => 'El importe de la transacción no es ":trigger_value"', - 'rule_trigger_not_amount_less' => 'El importe de la transacción es superior a ":trigger_value"', - 'rule_trigger_not_amount_more' => 'El importe de la transacción es menor que ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'El importe de la transacción extranjera no es ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'El importe de la transacción extranjera es superior a ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'El importe de la transacción extranjera es menor de ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Ningún archivo adjunto se llama ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Ningún nombre de adjunto contiene ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Ningún nombre de adjuntos comienza con ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Ningún nombre de adjuntos termina en ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No hay notas adjuntas que sean ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No hay notas adjuntas que contengan ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No hay notas adjuntas que comiencen con ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No hay notas adjuntas que terminen en ":trigger_value"', - 'rule_trigger_not_reconciled' => 'La transacción no ha sido conciliada', - 'rule_trigger_not_exists' => 'La transacción no existe', - 'rule_trigger_not_has_attachments' => 'La transacción no tiene adjuntos', - 'rule_trigger_not_has_any_category' => 'La transacción no tiene categoría', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'La transacción no tiene factura', - 'rule_trigger_not_has_any_tag' => 'La transacción no tiene etiquetas', - 'rule_trigger_not_any_notes' => 'La transacción no tiene notas', - 'rule_trigger_not_any_external_url' => 'La transacción no tiene URL externa', - 'rule_trigger_not_has_no_attachments' => 'La transacción tiene (cualquier) adjunto(s)', - 'rule_trigger_not_has_no_category' => 'La transacción tiene una (cualquiera) categoría', - 'rule_trigger_not_has_no_budget' => 'La transacción tiene un (cualquiera) presupuesto', - 'rule_trigger_not_has_no_bill' => 'La transacción tiene factura(s)', - 'rule_trigger_not_has_no_tag' => 'La transacción tiene una etiqueta (cualquiera)', - 'rule_trigger_not_no_notes' => 'La transacción tiene notas', - 'rule_trigger_not_no_external_url' => 'La transacción tiene una URL externa', - 'rule_trigger_not_source_is_cash' => 'La cuenta origen no es una cuenta de efectivo', - 'rule_trigger_not_destination_is_cash' => 'La cuenta de destino no es una cuenta de efectivo', - 'rule_trigger_not_account_is_cash' => 'Ninguna de las cuentas es una cuenta de efectivo', + 'rule_trigger_not_account_id' => 'El ID de la cuenta no es ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'El ID de cuenta de origen no es ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'El ID de cuenta de destino no es ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'El tipo de transacción no es ":trigger_value"', + 'rule_trigger_not_tag_is' => 'La etiqueta no es ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'La etiqueta es ":trigger_value"', + 'rule_trigger_not_description_is' => 'La descripción no es ":trigger_value"', + 'rule_trigger_not_description_contains' => 'La descripción no contiene', + 'rule_trigger_not_description_ends' => 'La descripción no termina con ":trigger_value"', + 'rule_trigger_not_description_starts' => 'La descripción no comienza con ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Las notas no son ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Las notas no contienen ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Las notas no terminan en ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Las notas no comienzan con ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'La cuenta de origen no es ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'La cuenta de origen no contiene ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'La cuenta de origen no termina en ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'La cuenta de origen no comienza con ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'El número / IBAN de la cuenta de origen no es ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'El número / IBAN de la cuenta de origen no contiene ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'El número / IBAN de la cuenta de origen no termina en ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'El número / IBAN de la cuenta de origen no comienza con ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'La cuenta de destino no es ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'La cuenta de destino no contiene ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'La cuenta de destino no termina en ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'La cuenta de destino no comienza con ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'El número / IBAN de la cuenta de destino no es ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'El número / IBAN de la cuenta de destino no contiene ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'El número / IBAN de la cuenta de destino no termina en ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'El número / IBAN de la cuenta de destino no comienza por ":trigger_value"', + 'rule_trigger_not_account_is' => 'Ninguna cuenta es ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Ninguna cuenta contiene ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Ninguna cuenta termina en ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Ninguna cuenta comienza con ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Ninguno de los números de cuenta / IBAN es ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Ninguno de los números de cuenta / IBAN contiene ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Ninguno de los números de cuenta / IBAN termina en ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Ninguno de los números de cuenta / IBAN comienza con ":trigger_value"', + 'rule_trigger_not_category_is' => 'La categoría no es ":trigger_value"', + 'rule_trigger_not_category_contains' => 'La categoría no contiene ":trigger_value"', + 'rule_trigger_not_category_ends' => 'La categoría no termina en ":trigger_value"', + 'rule_trigger_not_category_starts' => 'La categoría no empieza con ":trigger_value"', + 'rule_trigger_not_budget_is' => 'El presupuesto no es ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'El presupuesto no contiene ":trigger_value " "', + 'rule_trigger_not_budget_ends' => 'El presupuesto no termina en ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'El presupuesto no comienza con ":trigger_value"', + 'rule_trigger_not_bill_is' => 'La factura no es ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'La factura no contiene ":trigger_value " "', + 'rule_trigger_not_bill_ends' => 'La factura no termina en ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'La factura no termina con ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'El ID externo no es ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'El ID externo no contiene ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'El ID externo no termina en ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'El ID externo no comienza con ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'La referencia interna no es ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'La referencia interna no contiene ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'La referencia interna no termina en ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'La referencia interna no comienza con ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'La URL externa no es ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'La URL externa no contiene ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'La URL externa no termina en ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'La URL externa no comienza por ":trigger_value"', + 'rule_trigger_not_currency_is' => 'La moneda no es ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'La moneda extranjera no es ":trigger_value"', + 'rule_trigger_not_id' => 'El ID de la transacción no es ":trigger_value"', + 'rule_trigger_not_journal_id' => 'El ID del diario de transacciones no es ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'El ID recurrente no es ":trigger_value"', + 'rule_trigger_not_date_on' => 'La fecha no está en ":trigger_value"', + 'rule_trigger_not_date_before' => 'La fecha no es anterior al ":trigger_value"', + 'rule_trigger_not_date_after' => 'La fecha no es posterior al ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'La fecha de interés no es el ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'La fecha de interés no es anterior al ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'La fecha de interés no es posterior al ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'La fecha de registro no es el ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'La fecha de registro no es anterior al ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'La fecha de registro no es posterior al ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'La fecha de procesamiento no es el ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'La fecha de procesamiento no es anterior al ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'La fecha de procesamiento no es posterior al ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'La fecha de vencimiento no es el ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'La fecha de vencimiento no es anterior al ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'La fecha vencimiento no es posterior al ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'La fecha de pago no es el ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'La fecha de pago no es anterior al ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'La fecha de pago no es posterior al ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'La fecha de la factura no es el ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'La fecha de la factura no es anterior al ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'La fecha de la factura no es posterior al ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'La transacción no se creó el ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'La transacción no se creó antes del ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'La transacción no se crea después de ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'La transacción no se actualiza en ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'La transacción no se actualiza antes de ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'La transacción no se actualiza después de ":trigger_value"', + 'rule_trigger_not_amount_is' => 'El importe de la transacción no es ":trigger_value"', + 'rule_trigger_not_amount_less' => 'El importe de la transacción es superior a ":trigger_value"', + 'rule_trigger_not_amount_more' => 'El importe de la transacción es menor que ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'El importe de la transacción extranjera no es ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'El importe de la transacción extranjera es superior a ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'El importe de la transacción extranjera es menor de ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Ningún archivo adjunto se llama ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Ningún nombre de adjunto contiene ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Ningún nombre de adjuntos comienza con ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Ningún nombre de adjuntos termina en ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No hay notas adjuntas que sean ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No hay notas adjuntas que contengan ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No hay notas adjuntas que comiencen con ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No hay notas adjuntas que terminen en ":trigger_value"', + 'rule_trigger_not_reconciled' => 'La transacción no ha sido conciliada', + 'rule_trigger_not_exists' => 'La transacción no existe', + 'rule_trigger_not_has_attachments' => 'La transacción no tiene adjuntos', + 'rule_trigger_not_has_any_category' => 'La transacción no tiene categoría', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'La transacción no tiene factura', + 'rule_trigger_not_has_any_tag' => 'La transacción no tiene etiquetas', + 'rule_trigger_not_any_notes' => 'La transacción no tiene notas', + 'rule_trigger_not_any_external_url' => 'La transacción no tiene URL externa', + 'rule_trigger_not_has_no_attachments' => 'La transacción tiene (cualquier) adjunto(s)', + 'rule_trigger_not_has_no_category' => 'La transacción tiene una (cualquiera) categoría', + 'rule_trigger_not_has_no_budget' => 'La transacción tiene un (cualquiera) presupuesto', + 'rule_trigger_not_has_no_bill' => 'La transacción tiene factura(s)', + 'rule_trigger_not_has_no_tag' => 'La transacción tiene una etiqueta (cualquiera)', + 'rule_trigger_not_no_notes' => 'La transacción tiene notas', + 'rule_trigger_not_no_external_url' => 'La transacción tiene una URL externa', + 'rule_trigger_not_source_is_cash' => 'La cuenta origen no es una cuenta de efectivo', + 'rule_trigger_not_destination_is_cash' => 'La cuenta de destino no es una cuenta de efectivo', + 'rule_trigger_not_account_is_cash' => 'Ninguna de las cuentas es una cuenta de efectivo', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'ELIMINAR transacción(!)', - 'rule_action_delete_transaction' => 'ELIMINAR transacción(!)', - 'rule_action_set_category' => 'Establecer categoría en ":action_value"', - 'rule_action_clear_category' => 'Borrar categoría', - 'rule_action_set_budget' => 'Establecer presupuesto en ":action_value "', - 'rule_action_clear_budget' => 'Borrar presupuesto', - 'rule_action_add_tag' => 'Añadir etiqueta ":action_value"', - 'rule_action_remove_tag' => 'Quitar la etiqueta ":action_value"', - 'rule_action_remove_all_tags' => 'Eliminar todas las etiquetas', - 'rule_action_set_description' => 'Establecer la descripcion en ":action_value"', - 'rule_action_append_description' => 'Anexar la descripción con ":action_value"', - 'rule_action_prepend_description' => 'Anteponer la descripción con ":action_value"', - 'rule_action_set_category_choice' => 'Establecer categoría ..', - 'rule_action_clear_category_choice' => 'Eliminar cualquier categoría', - 'rule_action_set_budget_choice' => 'Establecer presupuesto ..', - 'rule_action_clear_budget_choice' => 'Eliminar cualquier presupuesto', - 'rule_action_add_tag_choice' => 'Añadir etiqueta ..', - 'rule_action_remove_tag_choice' => 'Quitar etiqueta ..', - 'rule_action_remove_all_tags_choice' => 'Eliminar todas las etiquetas', - 'rule_action_set_description_choice' => 'Añadir descripción ..', - 'rule_action_update_piggy_choice' => 'Añadir / quitar el importe de la transacción de la hucha ..', - 'rule_action_update_piggy' => 'Añadir / quitar el importe de la transacción de la hucha ":action_value"', - 'rule_action_append_description_choice' => 'Añadir descripción con ..', - 'rule_action_prepend_description_choice' => 'Anteponer descripción con ..', - 'rule_action_set_source_account_choice' => 'Establecer cuenta de origen ..', - 'rule_action_set_source_account' => 'Establecer cuenta de origen en :action_value', - 'rule_action_set_destination_account_choice' => 'Establecer cuenta de destino ..', - 'rule_action_set_destination_account' => 'Establecer cuenta de destino en :action_value', - 'rule_action_append_notes_choice' => 'Añadir notas con ..', - 'rule_action_append_notes' => 'Anexar notas con ":action_value"', - 'rule_action_prepend_notes_choice' => 'Anteponer notas con ..', - 'rule_action_prepend_notes' => 'Prepara notas con ":action_value"', - 'rule_action_clear_notes_choice' => 'Eliminar cualquier nota', - 'rule_action_clear_notes' => 'Eliminar cualquier nota', - 'rule_action_set_notes_choice' => 'Establecer nota ..', - 'rule_action_link_to_bill_choice' => 'Enlazar a una factura ..', - 'rule_action_link_to_bill' => 'Enlace a una factura ":action_value"', - 'rule_action_switch_accounts_choice' => 'Cambiar cuentas de origen y destino (sólo transferencias!)', - 'rule_action_switch_accounts' => 'Cambiar origen y destino', - 'rule_action_set_notes' => 'Establecer notas para:action_value', - 'rule_action_convert_deposit_choice' => 'Convertir transacción en un ingreso', - 'rule_action_convert_deposit' => 'Convertir transacción en un ingreso de ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convierta esta transacción en un gasto', - 'rule_action_convert_withdrawal' => 'Convierta la transacción en un gasto de ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convierta la transacción a una transferencia', - 'rule_action_convert_transfer' => 'Convierta la transacción a una transferencia con ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Añadir la descripción a las notas de la transacción', - 'rule_action_append_notes_to_descr_choice' => 'Añadir las notas de la transacción a la descripción', - 'rule_action_move_descr_to_notes_choice' => 'Reemplazar las notas de transacción actuales por la descripción', - 'rule_action_move_notes_to_descr_choice' => 'Reemplazar la descripción actual por las notas de la transacción', - 'rule_action_append_descr_to_notes' => 'Añadir descripción a las notas', - 'rule_action_append_notes_to_descr' => 'Añadir las notas a la descripción', - 'rule_action_move_descr_to_notes' => 'Reemplazar las notas con la descripción', - 'rule_action_move_notes_to_descr' => 'Reemplazar la descripción con notas', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Establecer cuenta de destino a (cash)', - 'rule_action_set_source_to_cash_choice' => 'Establecer cuenta de origen a (cash)', - 'rulegroup_for_bills_title' => 'Regla de grupo para facturas', - 'rulegroup_for_bills_description' => 'Un grupo de reglas especiales para todas las reglas que involucren facturas.', - 'rule_for_bill_title' => 'Regla autogenerada para la factura ":name"', - 'rule_for_bill_description' => 'Esta regla se genera automáticamente para intentar coincidir con la factura ":name".', - 'create_rule_for_bill' => 'Crear una nueva regla para la factura ":name"', - 'create_rule_for_bill_txt' => 'Acaba de crear una nueva factura llamada ":name", ¡enhorabuena! Firefly III puede asociar de manera automágica nuevos gastos con esta factura. Por ejemplo, siempre que pague su alquiler, la factura "alquiler" será enlazada a ese gasto. De esta manera, Firefly III puede mostrarle de forma precisa qué facturas han vencido y cuáles no. Para ello, debe crear una nueva regla. Si estos valores son correctos, Firefly III enlazará automáticamente el gasto correspondiente con la factura correcta. Por favor, revise los disparadores para ver si son correctos, y añada algunos si son incorrectos.', - 'new_rule_for_bill_title' => 'Regla para la factura ":name"', - 'new_rule_for_bill_description' => 'Esta regla marca las transacciones para la cuenta ":name".', + 'rule_action_delete_transaction_choice' => 'ELIMINAR transacción(!)', + 'rule_action_delete_transaction' => 'ELIMINAR transacción(!)', + 'rule_action_set_category' => 'Establecer categoría en ":action_value"', + 'rule_action_clear_category' => 'Borrar categoría', + 'rule_action_set_budget' => 'Establecer presupuesto en ":action_value "', + 'rule_action_clear_budget' => 'Borrar presupuesto', + 'rule_action_add_tag' => 'Añadir etiqueta ":action_value"', + 'rule_action_remove_tag' => 'Quitar la etiqueta ":action_value"', + 'rule_action_remove_all_tags' => 'Eliminar todas las etiquetas', + 'rule_action_set_description' => 'Establecer la descripcion en ":action_value"', + 'rule_action_append_description' => 'Anexar la descripción con ":action_value"', + 'rule_action_prepend_description' => 'Anteponer la descripción con ":action_value"', + 'rule_action_set_category_choice' => 'Establecer categoría ..', + 'rule_action_clear_category_choice' => 'Eliminar cualquier categoría', + 'rule_action_set_budget_choice' => 'Establecer presupuesto ..', + 'rule_action_clear_budget_choice' => 'Eliminar cualquier presupuesto', + 'rule_action_add_tag_choice' => 'Añadir etiqueta ..', + 'rule_action_remove_tag_choice' => 'Quitar etiqueta ..', + 'rule_action_remove_all_tags_choice' => 'Eliminar todas las etiquetas', + 'rule_action_set_description_choice' => 'Añadir descripción ..', + 'rule_action_update_piggy_choice' => 'Añadir / quitar el importe de la transacción de la hucha ..', + 'rule_action_update_piggy' => 'Añadir / quitar el importe de la transacción de la hucha ":action_value"', + 'rule_action_append_description_choice' => 'Añadir descripción con ..', + 'rule_action_prepend_description_choice' => 'Anteponer descripción con ..', + 'rule_action_set_source_account_choice' => 'Establecer cuenta de origen ..', + 'rule_action_set_source_account' => 'Establecer cuenta de origen en :action_value', + 'rule_action_set_destination_account_choice' => 'Establecer cuenta de destino ..', + 'rule_action_set_destination_account' => 'Establecer cuenta de destino en :action_value', + 'rule_action_append_notes_choice' => 'Añadir notas con ..', + 'rule_action_append_notes' => 'Anexar notas con ":action_value"', + 'rule_action_prepend_notes_choice' => 'Anteponer notas con ..', + 'rule_action_prepend_notes' => 'Prepara notas con ":action_value"', + 'rule_action_clear_notes_choice' => 'Eliminar cualquier nota', + 'rule_action_clear_notes' => 'Eliminar cualquier nota', + 'rule_action_set_notes_choice' => 'Establecer nota ..', + 'rule_action_link_to_bill_choice' => 'Enlazar a una factura ..', + 'rule_action_link_to_bill' => 'Enlace a una factura ":action_value"', + 'rule_action_switch_accounts_choice' => 'Cambiar cuentas de origen y destino (sólo transferencias!)', + 'rule_action_switch_accounts' => 'Cambiar origen y destino', + 'rule_action_set_notes' => 'Establecer notas para:action_value', + 'rule_action_convert_deposit_choice' => 'Convertir transacción en un ingreso', + 'rule_action_convert_deposit' => 'Convertir transacción en un ingreso de ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convierta esta transacción en un gasto', + 'rule_action_convert_withdrawal' => 'Convierta la transacción en un gasto de ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convierta la transacción a una transferencia', + 'rule_action_convert_transfer' => 'Convierta la transacción a una transferencia con ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Añadir la descripción a las notas de la transacción', + 'rule_action_append_notes_to_descr_choice' => 'Añadir las notas de la transacción a la descripción', + 'rule_action_move_descr_to_notes_choice' => 'Reemplazar las notas de transacción actuales por la descripción', + 'rule_action_move_notes_to_descr_choice' => 'Reemplazar la descripción actual por las notas de la transacción', + 'rule_action_append_descr_to_notes' => 'Añadir descripción a las notas', + 'rule_action_append_notes_to_descr' => 'Añadir las notas a la descripción', + 'rule_action_move_descr_to_notes' => 'Reemplazar las notas con la descripción', + 'rule_action_move_notes_to_descr' => 'Reemplazar la descripción con notas', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Establecer cuenta de destino a (cash)', + 'rule_action_set_source_to_cash_choice' => 'Establecer cuenta de origen a (cash)', + 'rulegroup_for_bills_title' => 'Regla de grupo para facturas', + 'rulegroup_for_bills_description' => 'Un grupo de reglas especiales para todas las reglas que involucren facturas.', + 'rule_for_bill_title' => 'Regla autogenerada para la factura ":name"', + 'rule_for_bill_description' => 'Esta regla se genera automáticamente para intentar coincidir con la factura ":name".', + 'create_rule_for_bill' => 'Crear una nueva regla para la factura ":name"', + 'create_rule_for_bill_txt' => 'Acaba de crear una nueva factura llamada ":name", ¡enhorabuena! Firefly III puede asociar de manera automágica nuevos gastos con esta factura. Por ejemplo, siempre que pague su alquiler, la factura "alquiler" será enlazada a ese gasto. De esta manera, Firefly III puede mostrarle de forma precisa qué facturas han vencido y cuáles no. Para ello, debe crear una nueva regla. Si estos valores son correctos, Firefly III enlazará automáticamente el gasto correspondiente con la factura correcta. Por favor, revise los disparadores para ver si son correctos, y añada algunos si son incorrectos.', + 'new_rule_for_bill_title' => 'Regla para la factura ":name"', + 'new_rule_for_bill_description' => 'Esta regla marca las transacciones para la cuenta ":name".', - 'new_rule_for_journal_title' => 'Regla basada en la transacción ":description"', - 'new_rule_for_journal_description' => 'Esta regla se basa en la transacción ":description". Coincidirá con las transacciones que son exactamente iguales.', + 'new_rule_for_journal_title' => 'Regla basada en la transacción ":description"', + 'new_rule_for_journal_description' => 'Esta regla se basa en la transacción ":description". Coincidirá con las transacciones que son exactamente iguales.', // tags - 'store_new_tag' => 'Crear etiqueta', - 'update_tag' => 'Actualizar etiqueta', - 'no_location_set' => 'Ubicación no establecida.', - 'meta_data' => 'Meta Datos', - 'location' => 'Ubicación', - 'location_first_split' => 'La ubicación de esta transacción puede establecerse en la primera división de esta transacción.', - 'without_date' => 'Sin fecha', - 'result' => 'Resultado', - 'sums_apply_to_range' => 'Todas las sumas aplican al rango seleccionado', - 'mapbox_api_key' => 'Para usar el mapa, obtenga una clave API de MapboxAbra su.env y introduzca este código después de MAPBOX_API_KEY=.', - 'press_object_location' => 'Haga clic o pulse de forma prolongada para definir la ubicación del objeto.', - 'click_tap_location' => 'Haga clic o toque el mapa para agregar una ubicación', - 'clear_location' => 'Eliminar ubicación', - 'delete_all_selected_tags' => 'Eliminar todas las etiquetas seleccionadas', - 'select_tags_to_delete' => 'No olvide seleccionar algunas etiquetas.', - 'deleted_x_tags' => 'Eliminado :count etiqueta.|Eliminado :count etiquetas.', - 'create_rule_from_transaction' => 'Crear regla basada en la transacción', - 'create_recurring_from_transaction' => 'Crear una transacción recurrente basada en la transacción', + 'store_new_tag' => 'Crear etiqueta', + 'update_tag' => 'Actualizar etiqueta', + 'no_location_set' => 'Ubicación no establecida.', + 'meta_data' => 'Meta Datos', + 'location' => 'Ubicación', + 'location_first_split' => 'La ubicación de esta transacción puede establecerse en la primera división de esta transacción.', + 'without_date' => 'Sin fecha', + 'result' => 'Resultado', + 'sums_apply_to_range' => 'Todas las sumas aplican al rango seleccionado', + 'mapbox_api_key' => 'Para usar el mapa, obtenga una clave API de MapboxAbra su.env y introduzca este código después de MAPBOX_API_KEY=.', + 'press_object_location' => 'Haga clic o pulse de forma prolongada para definir la ubicación del objeto.', + 'click_tap_location' => 'Haga clic o toque el mapa para agregar una ubicación', + 'clear_location' => 'Eliminar ubicación', + 'delete_all_selected_tags' => 'Eliminar todas las etiquetas seleccionadas', + 'select_tags_to_delete' => 'No olvide seleccionar algunas etiquetas.', + 'deleted_x_tags' => 'Eliminado :count etiqueta.|Eliminado :count etiquetas.', + 'create_rule_from_transaction' => 'Crear regla basada en la transacción', + 'create_recurring_from_transaction' => 'Crear una transacción recurrente basada en la transacción', // preferences - 'dark_mode_option_browser' => 'Deja que tu navegador decida', - 'dark_mode_option_light' => 'Siempre claro', - 'dark_mode_option_dark' => 'Siempre oscuro', - 'equal_to_language' => '(igual al idioma)', - 'dark_mode_preference' => 'Modo oscuro', - 'dark_mode_preference_help' => 'Dígale a Firefly III cuándo usar el modo oscuro.', - 'pref_home_screen_accounts' => 'Cuentas de la pantalla de inicio', - 'pref_home_screen_accounts_help' => '¿Qué cuentas se deben mostrar en la página de inicio?', - 'pref_view_range' => 'Rango de vision', - 'pref_view_range_help' => 'Algunas gráficas se agrupan automáticamente en periodos. Sus presupuestos se agruparán también en períodos. ¿Qué período prefieres?', - 'pref_1D' => 'Un dia', - 'pref_1W' => 'Una semana', - 'pref_1M' => 'Un mes', - 'pref_3M' => 'Tres meses (trimestre)', - 'pref_6M' => 'Seis meses', - 'pref_1Y' => 'Un año', - 'pref_last365' => 'Año pasado', - 'pref_last90' => 'Últimos 90 días', - 'pref_last30' => 'Últimos 30 días', - 'pref_last7' => 'Últimos 7 días', - 'pref_YTD' => 'Año hasta hoy', - 'pref_QTD' => 'Trimestre hasta hoy', - 'pref_MTD' => 'Mes hasta hoy', - 'pref_languages' => 'Idiomas', - 'pref_locale' => 'Configuración del idioma', - 'pref_languages_help' => 'Firefly III soporta varios idiomas. ¿Cuál prefieres?', - 'pref_locale_help' => 'Firefly III le permite configurar otros ajustes locales, como cómo se da formato a las monedas, números y fechas. Las entradas en esta lista pueden no ser soportadas por su sistema. Firefly III no tiene los ajustes de fecha correctos para cada local; póngase en contacto conmigo para obtener mejoras.', - 'pref_locale_no_demo' => 'Esta característica no funcionará para el usuario demo.', - 'pref_custom_fiscal_year' => 'Configuraciónes del año fiscal', - 'pref_custom_fiscal_year_label' => 'Habilitado', - 'pref_custom_fiscal_year_help' => 'En países que utilizan año fiscal diferente del 1 al 31 de diciembre, usted puede cambiarlo y especificar los días de inicio / y termino del año fiscal', - 'pref_fiscal_year_start_label' => 'Fecha de inicio del año fiscal', - 'pref_two_factor_auth' => 'Verificación en 2 pasos', - 'pref_two_factor_auth_help' => 'Cuando usted habilita la verificación en 2 pasos ( también conocida como autenticacion de dos factores) usted agrega una capa adicional de seguridad a su cuenta. usted inicia la sesión que conoce (código de verificación). los códigos de generación son generados por una aplicación de su teléfono, tales como Authy o Google Authenticador.', - 'pref_enable_two_factor_auth' => 'Permita la verificación de 2 pasos', - 'pref_two_factor_auth_disabled' => 'Codigo de verificacion en 2 pasos removido y inabilitado', - 'pref_two_factor_auth_remove_it' => 'No olvide eliminar la cuenta de su aplicación de autenticacion!', - 'pref_two_factor_auth_code' => 'Verificar código', - 'pref_two_factor_auth_code_help' => 'Escanee el código QR con una aplicación en su teléfono como Authy o Google autenticator y ingrese el código generado.', - 'pref_two_factor_auth_reset_code' => 'Reiniciar código de verificación', - 'pref_two_factor_auth_disable_2fa' => 'Deshabilitar 2FA', - '2fa_use_secret_instead' => 'Si no puede escanear el código QR, no dude en utilizar en su lugar el código secreto: :secret.', - '2fa_backup_codes' => 'Almacena estos códigos de copia de seguridad para acceder en caso de que pierda su dispositivo.', - '2fa_already_enabled' => 'La verificación de dos pasos ya está activada.', - 'wrong_mfa_code' => 'Este código MFA no es válido.', - 'pref_save_settings' => 'Guardar la configuración', - 'saved_preferences' => '¡Preferencias guardadas!', - 'preferences_general' => 'General', - 'preferences_frontpage' => 'Pantalla de inicio', - 'preferences_security' => 'Seguridad', - 'preferences_layout' => 'Diseño', - 'preferences_notifications' => 'Notificaciones', - 'pref_home_show_deposits' => 'Mostrar ingresos en la pantalla de inicio', - 'pref_home_show_deposits_info' => 'La pantalla de inicio ya muestra sus cuentas de gastos. ¿debería mostrar también su cuenta de ingresos?', - 'pref_home_do_show_deposits' => 'Sí, mostrarlos', - 'successful_count' => 'de cual :count exitoso', - 'list_page_size_title' => 'Tamaño de pagina', - 'list_page_size_help' => 'Cualquier lista de cosas (cuentas, transacciones, etc) muestra como mucho esta cantidad por pagina.', - 'list_page_size_label' => 'Tamaño de pagina', - 'between_dates' => '(:start y :end)', - 'pref_optional_fields_transaction' => 'Campos opcionales para transacciones', - 'pref_optional_fields_transaction_help' => 'Por defecto no todos los campos se habilitan al crear una nueva transacción (debido al desorden). Aquí puedes habilitar estos campos si crees que pueden ser útiles. Aunque los campos estén desactivados, si los has rellenado serán visibles.', - 'optional_tj_date_fields' => 'Campos de fecha', - 'optional_tj_other_fields' => 'Otros campos', - 'optional_tj_attachment_fields' => 'Campos de datos adjuntos', - 'pref_optional_tj_interest_date' => 'Fecha de intereses', - 'pref_optional_tj_book_date' => 'Fecha del libro de registro', - 'pref_optional_tj_process_date' => 'Fecha de procesamiento', - 'pref_optional_tj_due_date' => 'Fecha de caducidad', - 'pref_optional_tj_payment_date' => 'Fecha de pago', - 'pref_optional_tj_invoice_date' => 'Fecha de la factura', - 'pref_optional_tj_internal_reference' => 'Referencia interna', - 'pref_optional_tj_notes' => 'Notas', - 'pref_optional_tj_attachments' => 'Adjuntos', - 'pref_optional_tj_external_url' => 'URL externa', - 'pref_optional_tj_location' => 'Ubicación', - 'pref_optional_tj_links' => 'Enlaces de transacciones', - 'optional_field_meta_dates' => 'Fechas', - 'optional_field_meta_business' => 'Negocios', - 'optional_field_attachments' => 'Adjuntos', - 'optional_field_meta_data' => 'Opcional meta datos', - 'external_url' => 'URL externa', - 'pref_notification_bill_reminder' => 'Recordatorio sobre facturas que caducan pronto', - 'pref_notification_new_access_token' => 'Alerta cuando se crea un nuevo token de acceso API', - 'pref_notification_transaction_creation' => 'Alerta cuando una transacción se crea automáticamente', - 'pref_notification_user_login' => 'Alertar cuando se inicie sesión desde una nueva ubicación', - 'pref_notification_rule_action_failures' => 'Alerta cuando las acciones de regla fallan al ejecutar (Slack o Discord solamente)', - 'pref_notifications' => 'Notificaciones', - 'pref_notifications_help' => 'Indique si desea recibir estas notificaciones. Algunas notificaciones pueden contener información financiera sensible.', - 'slack_webhook_url' => 'URL del Webhook de Slack', - 'slack_webhook_url_help' => 'Si desea recibir notificaciones de Firefly III a través de Slack, introduzca la URL del webhook aquí. De lo contrario, deje el campo en blanco. Si usted es un administrador, también necesitará establecer esta URL en la administración.', - 'slack_url_label' => 'URL del webhook entrante de Slack', + 'dark_mode_option_browser' => 'Deja que tu navegador decida', + 'dark_mode_option_light' => 'Siempre claro', + 'dark_mode_option_dark' => 'Siempre oscuro', + 'equal_to_language' => '(igual al idioma)', + 'dark_mode_preference' => 'Modo oscuro', + 'dark_mode_preference_help' => 'Dígale a Firefly III cuándo usar el modo oscuro.', + 'pref_home_screen_accounts' => 'Cuentas de la pantalla de inicio', + 'pref_home_screen_accounts_help' => '¿Qué cuentas se deben mostrar en la página de inicio?', + 'pref_view_range' => 'Rango de vision', + 'pref_view_range_help' => 'Algunas gráficas se agrupan automáticamente en periodos. Sus presupuestos se agruparán también en períodos. ¿Qué período prefieres?', + 'pref_1D' => 'Un dia', + 'pref_1W' => 'Una semana', + 'pref_1M' => 'Un mes', + 'pref_3M' => 'Tres meses (trimestre)', + 'pref_6M' => 'Seis meses', + 'pref_1Y' => 'Un año', + 'pref_last365' => 'Año pasado', + 'pref_last90' => 'Últimos 90 días', + 'pref_last30' => 'Últimos 30 días', + 'pref_last7' => 'Últimos 7 días', + 'pref_YTD' => 'Año hasta hoy', + 'pref_QTD' => 'Trimestre hasta hoy', + 'pref_MTD' => 'Mes hasta hoy', + 'pref_languages' => 'Idiomas', + 'pref_locale' => 'Configuración del idioma', + 'pref_languages_help' => 'Firefly III soporta varios idiomas. ¿Cuál prefieres?', + 'pref_locale_help' => 'Firefly III le permite configurar otros ajustes locales, como cómo se da formato a las monedas, números y fechas. Las entradas en esta lista pueden no ser soportadas por su sistema. Firefly III no tiene los ajustes de fecha correctos para cada local; póngase en contacto conmigo para obtener mejoras.', + 'pref_locale_no_demo' => 'Esta característica no funcionará para el usuario demo.', + 'pref_custom_fiscal_year' => 'Configuraciónes del año fiscal', + 'pref_custom_fiscal_year_label' => 'Habilitado', + 'pref_custom_fiscal_year_help' => 'En países que utilizan año fiscal diferente del 1 al 31 de diciembre, usted puede cambiarlo y especificar los días de inicio / y termino del año fiscal', + 'pref_fiscal_year_start_label' => 'Fecha de inicio del año fiscal', + 'pref_two_factor_auth' => 'Verificación en 2 pasos', + 'pref_two_factor_auth_help' => 'Cuando usted habilita la verificación en 2 pasos ( también conocida como autenticacion de dos factores) usted agrega una capa adicional de seguridad a su cuenta. usted inicia la sesión que conoce (código de verificación). los códigos de generación son generados por una aplicación de su teléfono, tales como Authy o Google Authenticador.', + 'pref_enable_two_factor_auth' => 'Permita la verificación de 2 pasos', + 'pref_two_factor_auth_disabled' => 'Codigo de verificacion en 2 pasos removido y inabilitado', + 'pref_two_factor_auth_remove_it' => 'No olvide eliminar la cuenta de su aplicación de autenticacion!', + 'pref_two_factor_auth_code' => 'Verificar código', + 'pref_two_factor_auth_code_help' => 'Escanee el código QR con una aplicación en su teléfono como Authy o Google autenticator y ingrese el código generado.', + 'pref_two_factor_auth_reset_code' => 'Reiniciar código de verificación', + 'pref_two_factor_auth_disable_2fa' => 'Deshabilitar 2FA', + '2fa_use_secret_instead' => 'Si no puede escanear el código QR, no dude en utilizar en su lugar el código secreto: :secret.', + '2fa_backup_codes' => 'Almacena estos códigos de copia de seguridad para acceder en caso de que pierda su dispositivo.', + '2fa_already_enabled' => 'La verificación de dos pasos ya está activada.', + 'wrong_mfa_code' => 'Este código MFA no es válido.', + 'pref_save_settings' => 'Guardar la configuración', + 'saved_preferences' => '¡Preferencias guardadas!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Pantalla de inicio', + 'preferences_security' => 'Seguridad', + 'preferences_layout' => 'Diseño', + 'preferences_notifications' => 'Notificaciones', + 'pref_home_show_deposits' => 'Mostrar ingresos en la pantalla de inicio', + 'pref_home_show_deposits_info' => 'La pantalla de inicio ya muestra sus cuentas de gastos. ¿debería mostrar también su cuenta de ingresos?', + 'pref_home_do_show_deposits' => 'Sí, mostrarlos', + 'successful_count' => 'de cual :count exitoso', + 'list_page_size_title' => 'Tamaño de pagina', + 'list_page_size_help' => 'Cualquier lista de cosas (cuentas, transacciones, etc) muestra como mucho esta cantidad por pagina.', + 'list_page_size_label' => 'Tamaño de pagina', + 'between_dates' => '(:start y :end)', + 'pref_optional_fields_transaction' => 'Campos opcionales para transacciones', + 'pref_optional_fields_transaction_help' => 'Por defecto no todos los campos se habilitan al crear una nueva transacción (debido al desorden). Aquí puedes habilitar estos campos si crees que pueden ser útiles. Aunque los campos estén desactivados, si los has rellenado serán visibles.', + 'optional_tj_date_fields' => 'Campos de fecha', + 'optional_tj_other_fields' => 'Otros campos', + 'optional_tj_attachment_fields' => 'Campos de datos adjuntos', + 'pref_optional_tj_interest_date' => 'Fecha de intereses', + 'pref_optional_tj_book_date' => 'Fecha del libro de registro', + 'pref_optional_tj_process_date' => 'Fecha de procesamiento', + 'pref_optional_tj_due_date' => 'Fecha de caducidad', + 'pref_optional_tj_payment_date' => 'Fecha de pago', + 'pref_optional_tj_invoice_date' => 'Fecha de la factura', + 'pref_optional_tj_internal_reference' => 'Referencia interna', + 'pref_optional_tj_notes' => 'Notas', + 'pref_optional_tj_attachments' => 'Adjuntos', + 'pref_optional_tj_external_url' => 'URL externa', + 'pref_optional_tj_location' => 'Ubicación', + 'pref_optional_tj_links' => 'Enlaces de transacciones', + 'optional_field_meta_dates' => 'Fechas', + 'optional_field_meta_business' => 'Negocios', + 'optional_field_attachments' => 'Adjuntos', + 'optional_field_meta_data' => 'Opcional meta datos', + 'external_url' => 'URL externa', + 'pref_notification_bill_reminder' => 'Recordatorio sobre facturas que caducan pronto', + 'pref_notification_new_access_token' => 'Alerta cuando se crea un nuevo token de acceso API', + 'pref_notification_transaction_creation' => 'Alerta cuando una transacción se crea automáticamente', + 'pref_notification_user_login' => 'Alertar cuando se inicie sesión desde una nueva ubicación', + 'pref_notification_rule_action_failures' => 'Alerta cuando las acciones de regla fallan al ejecutar (Slack o Discord solamente)', + 'pref_notifications' => 'Notificaciones', + 'pref_notifications_help' => 'Indique si desea recibir estas notificaciones. Algunas notificaciones pueden contener información financiera sensible.', + 'slack_webhook_url' => 'URL del Webhook de Slack', + 'slack_webhook_url_help' => 'Si desea recibir notificaciones de Firefly III a través de Slack, introduzca la URL del webhook aquí. De lo contrario, deje el campo en blanco. Si usted es un administrador, también necesitará establecer esta URL en la administración.', + 'slack_url_label' => 'URL del webhook entrante de Slack', // Financial administrations - 'administration_index' => 'Administración financiera', - 'administrations_index_menu' => 'Administración(es) financiera(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administración financiera', + 'administrations_index_menu' => 'Administración(es) financiera(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purgar datos de Firefly III', - 'purge_data_expl' => '"Purgar" significa "eliminar lo que ya está eliminado". En circunstancias normales, Firefly III no elimina nada permanentemente. Sólo lo oculta. El botón de abajo borra todos estos registros previamente "eliminados" PARA SIEMPRE.', - 'delete_stuff_header' => 'Borrar y purgar datos', - 'purge_all_data' => 'Purgar todos los registros borrados', - 'purge_data' => 'Purgar datos', - 'purged_all_records' => 'Se han limpiado todos los registros borrados.', - 'delete_data_title' => 'Eliminar datos de Firefly III', - 'permanent_delete_stuff' => 'Puedes eliminar cosas de Firefly III. Usar los botones de abajo significa que tus objetos serán ocultados. No hay ningún botón de deshacer para esto, pero los elementos pueden permanecer en la base de datos y ser recuperados si es necesario.', - 'other_sessions_logged_out' => 'Todas las demás sesiones han sido desconectadas.', - 'delete_unused_accounts' => 'Eliminar cuentas sin usar limpiará sus listas de autocompletado.', - 'delete_all_unused_accounts' => 'Eliminar cuentas no utilizadas', - 'deleted_all_unused_accounts' => 'Todas las cuentas no utilizadas han sido eliminadas', - 'delete_all_budgets' => 'Eliminar todos sus presupuestos', - 'delete_all_categories' => 'Eliminar todas sus categorías', - 'delete_all_tags' => 'Eliminar todas sus etiquetas', - 'delete_all_bills' => 'Borrar TODAS sus facturas', - 'delete_all_piggy_banks' => 'Borrar TODAS sus huchas', - 'delete_all_rules' => 'Borrar TODAS sus reglas', - 'delete_all_recurring' => 'Borrar TODAS sus transacciones recurrentes', - 'delete_all_object_groups' => 'Borrar TODOS sus grupos de objetos', - 'delete_all_accounts' => 'Borrar TODAS sus cuentas', - 'delete_all_asset_accounts' => 'Borrar TODAS sus cuentas de activos', - 'delete_all_expense_accounts' => 'Borrar TODAS sus cuentas de gastos', - 'delete_all_revenue_accounts' => 'Borrar TODAS sus cuentas de ingresos', - 'delete_all_liabilities' => 'Borrar TODOS sus pasivos', - 'delete_all_transactions' => 'Borrar TODAS sus transacciones', - 'delete_all_withdrawals' => 'Borrar TODOS sus gastos', - 'delete_all_deposits' => 'Borrar TODOS sus ingresos', - 'delete_all_transfers' => 'Borrar TODAS sus transferencias', - 'also_delete_transactions' => '¡Eliminar cuentas también eliminará TODAS los gastos, ingresos y transferencias asociados!', - 'deleted_all_budgets' => 'Todos los presupuestos han sido eliminados', - 'deleted_all_categories' => 'Todas las categorías han sido eliminadas', - 'deleted_all_tags' => 'Todas las etiquetas han sido eliminadas', - 'deleted_all_bills' => 'Todas las facturas han sido eliminadas', - 'deleted_all_piggy_banks' => 'Todas las huchas han sido eliminadas', - 'deleted_all_rules' => 'Todas las reglas y grupos de reglas se han eliminado', - 'deleted_all_object_groups' => 'Todos los grupos han sido eliminados', - 'deleted_all_accounts' => 'Todas las cuentas han sido eliminadas', - 'deleted_all_asset_accounts' => 'Todas las cuentas de activos han sido eliminadas', - 'deleted_all_expense_accounts' => 'Todas las cuentas de gastos han sido eliminadas', - 'deleted_all_revenue_accounts' => 'Todas las cuentas de ingresos han sido eliminadas', - 'deleted_all_liabilities' => 'Todos los pasivos se han eliminado', - 'deleted_all_transactions' => 'Todas las transacciones han sido eliminadas', - 'deleted_all_withdrawals' => 'Todos los gastos se han eliminado', - 'deleted_all_deposits' => 'Todos los ingresos han sido eliminados', - 'deleted_all_transfers' => 'Todas las transferencias han sido eliminadas', - 'deleted_all_recurring' => 'Todas las transacciones recurrentes han sido eliminadas', - 'change_your_password' => 'Cambie su contraseña', - 'delete_account' => 'Eliminar cuenta', - 'current_password' => 'Contraseña actual', - 'new_password' => 'Nueva contraseña', - 'new_password_again' => 'Nueva contraseña (de nuevo)', - 'delete_your_account' => 'Borre su cuenta', - 'delete_your_account_help' => 'Eliminando su cuenta también eliminara cualquier otra cuenta, transacciones,cualquierque podría haber salvado en Firefly III. se habrá IDO.', - 'delete_your_account_password' => 'Introduzca su contraseña para continuar.', - 'password' => 'Contraseña', - 'are_you_sure' => '¿Esta usted seguro? usted no puede deshacer esto.', - 'delete_account_button' => 'Borre su cuenta', - 'invalid_current_password' => 'Contraseña actual invalida!', - 'password_changed' => 'Contraseña cambiada!', - 'should_change' => 'La idea es cambiar su contraseña.', - 'invalid_password' => 'Contraseña invalida!', - 'what_is_pw_security' => '¿Que es "verificar la seguridad de contraseña?', - 'secure_pw_title' => 'Como escoger una contraseña segura', - 'forgot_password_response' => 'Gracias. Si existe una cuenta con esta dirección de correo electrónico, encontrarás instrucciones en tu bandeja de entrada.', - 'secure_pw_history' => 'Cada semana leemos en las noticias sobre un sitio que pierde las contraseñas de sus usuarios. Hackers y ladrones utilizan estas contraseñas para intentar robar tu información privada. Esta información es valiosa.', - 'secure_pw_ff' => '¿Utiliza la misma contraseña a través de Internet? Si un sitio pierde su contraseña, los hackers tienen acceso a todos sus datos. Firefly III depende de usted para elegir una contraseña fuerte y única para proteger sus registros financieros.', - 'secure_pw_check_box' => 'Para ayudarte a hacer eso Firefly III puede comprobar si la contraseña que quieres usar ha sido robada en el pasado. Si este es el caso, Firefly III te aconseja NO usar esa contraseña.', - 'secure_pw_working_title' => '¿Cómo funciona?', - 'secure_pw_working' => 'Marcando la casilla, Firefly III enviará los cinco primeros caracteres del hash SHA1 de su contraseña al sitio web de Troy Hunt para ver si esta en la lista. Esto le impedirá a usted usar contraseñas inseguras como se recomienda en la última Publicación Especial de NISH sobre este tema.', - 'secure_pw_should' => '¿Debo chequear la casilla?', - 'secure_pw_long_password' => 'Sí. Verificar siempre que su contraseña es segura.', - 'command_line_token' => 'Token de linea de comando', - 'explain_command_line_token' => 'Necesita este token para realizar opciones de línea de comandos, como exportar datos. Sin él, ese comando sensible no funcionará. No comparta el token de línea de comandos. Nadie le pedirá este token, ni siquiera yo. Si teme que lo haya perdido, o si es paranoico, vuelva a generar este token usando el botón.', - 'regenerate_command_line_token' => 'Regenerar token de línea de comando', - 'token_regenerated' => 'Se generó un nuevo token de línea de comandos', - 'change_your_email' => 'Cambie su dirección de correo', - 'email_verification' => 'Un mensaje de correo electrónico sera enviado a su nueva dirección de correo viejas y nuevas. por motivos de seguridad, usted no podrá iniciar sesión hasta que verifique su nueva dirección de correo electrónico. Si no esta seguro de si su instalación Firefly III puede enviar correos electrónicos, por favor no use esta función. Si usted es administrador, usted puede probar esto en la administracion.', - 'email_changed_logout' => 'Hasta que usted verifique su dirección de correo electrónico, usted no puede iniciar sesión.', - 'login_with_new_email' => 'Usted puede ahora iniciar sesión con su nueva dirección de correo electrónico.', - 'login_with_old_email' => 'Usted puede ahora iniciar sesión con su vieja dirección de correo electrónico otra vez.', - 'login_provider_local_only' => 'Esta acción no está disponible cuando se identifica a través de ":login_provider".', - 'external_user_mgt_disabled' => 'Esta acción no está disponible cuando Firefly III no es responsable de la gestión de usuarios o de la autenticación.', - 'external_auth_disabled' => 'Esta acción no está disponible cuando Firefly III no es responsable del manejo de la autenticación.', - 'delete_local_info_only' => 'Debido a que Firefly III no es responsable de la gestión de usuarios o de la autenticación, esta función sólo eliminará la información local de Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clientes de OAuth', - 'profile_oauth_no_clients' => 'No ha creado ningún cliente OAuth.', - 'profile_oauth_clients_external_auth' => 'Si está utilizando un proveedor de autenticación externo como Authelia, los clientes OAuth no funcionarán. Sólo puede utilizar tokens de acceso personal.', - 'profile_oauth_clients_header' => 'Clientes', - 'profile_oauth_client_id' => 'ID del cliente', - 'profile_oauth_client_name' => 'Nombre', - 'profile_oauth_client_secret' => 'Secreto', - 'profile_oauth_create_new_client' => 'Crear un Nuevo Cliente', - 'profile_oauth_create_client' => 'Crear Cliente', - 'profile_oauth_edit_client' => 'Editar Cliente', - 'profile_oauth_name_help' => 'Algo que sus usuarios reconocerán y confiarán.', - 'profile_oauth_redirect_url' => 'Redirigir URL', - 'profile_oauth_redirect_url_help' => 'La URL de devolución de autorización de su aplicación.', - 'profile_authorized_apps' => 'Aplicaciones autorizadas', - 'profile_authorized_clients' => 'Clientes autorizados', - 'profile_scopes' => 'Ámbitos', - 'profile_revoke' => 'Revocar', - 'profile_oauth_client_secret_title' => 'Secreto del Cliente', - 'profile_oauth_client_secret_expl' => 'Aquí está su nuevo secreto de cliente. Esta es la única vez que se mostrará así que no lo pierda! Ahora puede usar este secreto para hacer solicitudes de API.', - 'profile_personal_access_tokens' => 'Tokens de acceso personal', - 'profile_personal_access_token' => 'Token de acceso personal', - 'profile_oauth_confidential' => 'Confidencial', - 'profile_oauth_confidential_help' => 'Requerir que el cliente se autentifique con un secreto. Los clientes confidenciales pueden mantener las credenciales de forma segura sin exponerlas a partes no autorizadas. Las aplicaciones públicas, como aplicaciones de escritorio nativo o SPA de JavaScript, no pueden guardar secretos de forma segura.', - 'profile_personal_access_token_explanation' => 'Aquí está su nuevo token de acceso personal. Esta es la única vez que se mostrará así que ¡no lo pierda! Ahora puede usar este token para hacer solicitudes de la API.', - 'profile_no_personal_access_token' => 'No ha creado ningún token de acceso personal.', - 'profile_create_new_token' => 'Crear nuevo token', - 'profile_create_token' => 'Crear token', - 'profile_create' => 'Crear', - 'profile_save_changes' => 'Guardar cambios', - 'profile_whoops' => '¡Ups!', - 'profile_something_wrong' => '¡Algo salió mal!', - 'profile_try_again' => 'Algo salió mal. Por favor, vuelva a intentarlo.', - 'amounts' => 'Importes', - 'multi_account_warning_unknown' => 'Dependiendo del tipo de transacción que cree, la cuenta de origen y/o destino de divisiones posteriores puede ser anulada por lo que se define en la primera división de la transacción.', - 'multi_account_warning_withdrawal' => 'Tenga en cuenta que la cuenta de origen de las divisiones posteriores será anulada por lo que se defina en la primera división del gasto.', - 'multi_account_warning_deposit' => 'Tenga en cuenta que la cuenta de destino de las divisiones posteriores será anulada por lo que se defina en la primera división del retiro.', - 'multi_account_warning_transfer' => 'Tenga en cuenta que la cuenta de origen + destino de divisiones posteriores será anulada por lo que se defina en la primera división de la transferencia.', + 'purge_data_title' => 'Purgar datos de Firefly III', + 'purge_data_expl' => '"Purgar" significa "eliminar lo que ya está eliminado". En circunstancias normales, Firefly III no elimina nada permanentemente. Sólo lo oculta. El botón de abajo borra todos estos registros previamente "eliminados" PARA SIEMPRE.', + 'delete_stuff_header' => 'Borrar y purgar datos', + 'purge_all_data' => 'Purgar todos los registros borrados', + 'purge_data' => 'Purgar datos', + 'purged_all_records' => 'Se han limpiado todos los registros borrados.', + 'delete_data_title' => 'Eliminar datos de Firefly III', + 'permanent_delete_stuff' => 'Puedes eliminar cosas de Firefly III. Usar los botones de abajo significa que tus objetos serán ocultados. No hay ningún botón de deshacer para esto, pero los elementos pueden permanecer en la base de datos y ser recuperados si es necesario.', + 'other_sessions_logged_out' => 'Todas las demás sesiones han sido desconectadas.', + 'delete_unused_accounts' => 'Eliminar cuentas sin usar limpiará sus listas de autocompletado.', + 'delete_all_unused_accounts' => 'Eliminar cuentas no utilizadas', + 'deleted_all_unused_accounts' => 'Todas las cuentas no utilizadas han sido eliminadas', + 'delete_all_budgets' => 'Eliminar todos sus presupuestos', + 'delete_all_categories' => 'Eliminar todas sus categorías', + 'delete_all_tags' => 'Eliminar todas sus etiquetas', + 'delete_all_bills' => 'Borrar TODAS sus facturas', + 'delete_all_piggy_banks' => 'Borrar TODAS sus huchas', + 'delete_all_rules' => 'Borrar TODAS sus reglas', + 'delete_all_recurring' => 'Borrar TODAS sus transacciones recurrentes', + 'delete_all_object_groups' => 'Borrar TODOS sus grupos de objetos', + 'delete_all_accounts' => 'Borrar TODAS sus cuentas', + 'delete_all_asset_accounts' => 'Borrar TODAS sus cuentas de activos', + 'delete_all_expense_accounts' => 'Borrar TODAS sus cuentas de gastos', + 'delete_all_revenue_accounts' => 'Borrar TODAS sus cuentas de ingresos', + 'delete_all_liabilities' => 'Borrar TODOS sus pasivos', + 'delete_all_transactions' => 'Borrar TODAS sus transacciones', + 'delete_all_withdrawals' => 'Borrar TODOS sus gastos', + 'delete_all_deposits' => 'Borrar TODOS sus ingresos', + 'delete_all_transfers' => 'Borrar TODAS sus transferencias', + 'also_delete_transactions' => '¡Eliminar cuentas también eliminará TODAS los gastos, ingresos y transferencias asociados!', + 'deleted_all_budgets' => 'Todos los presupuestos han sido eliminados', + 'deleted_all_categories' => 'Todas las categorías han sido eliminadas', + 'deleted_all_tags' => 'Todas las etiquetas han sido eliminadas', + 'deleted_all_bills' => 'Todas las facturas han sido eliminadas', + 'deleted_all_piggy_banks' => 'Todas las huchas han sido eliminadas', + 'deleted_all_rules' => 'Todas las reglas y grupos de reglas se han eliminado', + 'deleted_all_object_groups' => 'Todos los grupos han sido eliminados', + 'deleted_all_accounts' => 'Todas las cuentas han sido eliminadas', + 'deleted_all_asset_accounts' => 'Todas las cuentas de activos han sido eliminadas', + 'deleted_all_expense_accounts' => 'Todas las cuentas de gastos han sido eliminadas', + 'deleted_all_revenue_accounts' => 'Todas las cuentas de ingresos han sido eliminadas', + 'deleted_all_liabilities' => 'Todos los pasivos se han eliminado', + 'deleted_all_transactions' => 'Todas las transacciones han sido eliminadas', + 'deleted_all_withdrawals' => 'Todos los gastos se han eliminado', + 'deleted_all_deposits' => 'Todos los ingresos han sido eliminados', + 'deleted_all_transfers' => 'Todas las transferencias han sido eliminadas', + 'deleted_all_recurring' => 'Todas las transacciones recurrentes han sido eliminadas', + 'change_your_password' => 'Cambie su contraseña', + 'delete_account' => 'Eliminar cuenta', + 'current_password' => 'Contraseña actual', + 'new_password' => 'Nueva contraseña', + 'new_password_again' => 'Nueva contraseña (de nuevo)', + 'delete_your_account' => 'Borre su cuenta', + 'delete_your_account_help' => 'Eliminando su cuenta también eliminara cualquier otra cuenta, transacciones,cualquierque podría haber salvado en Firefly III. se habrá IDO.', + 'delete_your_account_password' => 'Introduzca su contraseña para continuar.', + 'password' => 'Contraseña', + 'are_you_sure' => '¿Esta usted seguro? usted no puede deshacer esto.', + 'delete_account_button' => 'Borre su cuenta', + 'invalid_current_password' => 'Contraseña actual invalida!', + 'password_changed' => 'Contraseña cambiada!', + 'should_change' => 'La idea es cambiar su contraseña.', + 'invalid_password' => 'Contraseña invalida!', + 'what_is_pw_security' => '¿Que es "verificar la seguridad de contraseña?', + 'secure_pw_title' => 'Como escoger una contraseña segura', + 'forgot_password_response' => 'Gracias. Si existe una cuenta con esta dirección de correo electrónico, encontrarás instrucciones en tu bandeja de entrada.', + 'secure_pw_history' => 'Cada semana leemos en las noticias sobre un sitio que pierde las contraseñas de sus usuarios. Hackers y ladrones utilizan estas contraseñas para intentar robar tu información privada. Esta información es valiosa.', + 'secure_pw_ff' => '¿Utiliza la misma contraseña a través de Internet? Si un sitio pierde su contraseña, los hackers tienen acceso a todos sus datos. Firefly III depende de usted para elegir una contraseña fuerte y única para proteger sus registros financieros.', + 'secure_pw_check_box' => 'Para ayudarte a hacer eso Firefly III puede comprobar si la contraseña que quieres usar ha sido robada en el pasado. Si este es el caso, Firefly III te aconseja NO usar esa contraseña.', + 'secure_pw_working_title' => '¿Cómo funciona?', + 'secure_pw_working' => 'Marcando la casilla, Firefly III enviará los cinco primeros caracteres del hash SHA1 de su contraseña al sitio web de Troy Hunt para ver si esta en la lista. Esto le impedirá a usted usar contraseñas inseguras como se recomienda en la última Publicación Especial de NISH sobre este tema.', + 'secure_pw_should' => '¿Debo chequear la casilla?', + 'secure_pw_long_password' => 'Sí. Verificar siempre que su contraseña es segura.', + 'command_line_token' => 'Token de linea de comando', + 'explain_command_line_token' => 'Necesita este token para realizar opciones de línea de comandos, como exportar datos. Sin él, ese comando sensible no funcionará. No comparta el token de línea de comandos. Nadie le pedirá este token, ni siquiera yo. Si teme que lo haya perdido, o si es paranoico, vuelva a generar este token usando el botón.', + 'regenerate_command_line_token' => 'Regenerar token de línea de comando', + 'token_regenerated' => 'Se generó un nuevo token de línea de comandos', + 'change_your_email' => 'Cambie su dirección de correo', + 'email_verification' => 'Un mensaje de correo electrónico sera enviado a su nueva dirección de correo viejas y nuevas. por motivos de seguridad, usted no podrá iniciar sesión hasta que verifique su nueva dirección de correo electrónico. Si no esta seguro de si su instalación Firefly III puede enviar correos electrónicos, por favor no use esta función. Si usted es administrador, usted puede probar esto en la administracion.', + 'email_changed_logout' => 'Hasta que usted verifique su dirección de correo electrónico, usted no puede iniciar sesión.', + 'login_with_new_email' => 'Usted puede ahora iniciar sesión con su nueva dirección de correo electrónico.', + 'login_with_old_email' => 'Usted puede ahora iniciar sesión con su vieja dirección de correo electrónico otra vez.', + 'login_provider_local_only' => 'Esta acción no está disponible cuando se identifica a través de ":login_provider".', + 'external_user_mgt_disabled' => 'Esta acción no está disponible cuando Firefly III no es responsable de la gestión de usuarios o de la autenticación.', + 'external_auth_disabled' => 'Esta acción no está disponible cuando Firefly III no es responsable del manejo de la autenticación.', + 'delete_local_info_only' => 'Debido a que Firefly III no es responsable de la gestión de usuarios o de la autenticación, esta función sólo eliminará la información local de Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clientes de OAuth', + 'profile_oauth_no_clients' => 'No ha creado ningún cliente OAuth.', + 'profile_oauth_clients_external_auth' => 'Si está utilizando un proveedor de autenticación externo como Authelia, los clientes OAuth no funcionarán. Sólo puede utilizar tokens de acceso personal.', + 'profile_oauth_clients_header' => 'Clientes', + 'profile_oauth_client_id' => 'ID del cliente', + 'profile_oauth_client_name' => 'Nombre', + 'profile_oauth_client_secret' => 'Secreto', + 'profile_oauth_create_new_client' => 'Crear un Nuevo Cliente', + 'profile_oauth_create_client' => 'Crear Cliente', + 'profile_oauth_edit_client' => 'Editar Cliente', + 'profile_oauth_name_help' => 'Algo que sus usuarios reconocerán y confiarán.', + 'profile_oauth_redirect_url' => 'Redirigir URL', + 'profile_oauth_redirect_url_help' => 'La URL de devolución de autorización de su aplicación.', + 'profile_authorized_apps' => 'Aplicaciones autorizadas', + 'profile_authorized_clients' => 'Clientes autorizados', + 'profile_scopes' => 'Ámbitos', + 'profile_revoke' => 'Revocar', + 'profile_oauth_client_secret_title' => 'Secreto del Cliente', + 'profile_oauth_client_secret_expl' => 'Aquí está su nuevo secreto de cliente. Esta es la única vez que se mostrará así que no lo pierda! Ahora puede usar este secreto para hacer solicitudes de API.', + 'profile_personal_access_tokens' => 'Tokens de acceso personal', + 'profile_personal_access_token' => 'Token de acceso personal', + 'profile_oauth_confidential' => 'Confidencial', + 'profile_oauth_confidential_help' => 'Requerir que el cliente se autentifique con un secreto. Los clientes confidenciales pueden mantener las credenciales de forma segura sin exponerlas a partes no autorizadas. Las aplicaciones públicas, como aplicaciones de escritorio nativo o SPA de JavaScript, no pueden guardar secretos de forma segura.', + 'profile_personal_access_token_explanation' => 'Aquí está su nuevo token de acceso personal. Esta es la única vez que se mostrará así que ¡no lo pierda! Ahora puede usar este token para hacer solicitudes de la API.', + 'profile_no_personal_access_token' => 'No ha creado ningún token de acceso personal.', + 'profile_create_new_token' => 'Crear nuevo token', + 'profile_create_token' => 'Crear token', + 'profile_create' => 'Crear', + 'profile_save_changes' => 'Guardar cambios', + 'profile_whoops' => '¡Ups!', + 'profile_something_wrong' => '¡Algo salió mal!', + 'profile_try_again' => 'Algo salió mal. Por favor, vuelva a intentarlo.', + 'amounts' => 'Importes', + 'multi_account_warning_unknown' => 'Dependiendo del tipo de transacción que cree, la cuenta de origen y/o destino de divisiones posteriores puede ser anulada por lo que se define en la primera división de la transacción.', + 'multi_account_warning_withdrawal' => 'Tenga en cuenta que la cuenta de origen de las divisiones posteriores será anulada por lo que se defina en la primera división del gasto.', + 'multi_account_warning_deposit' => 'Tenga en cuenta que la cuenta de destino de las divisiones posteriores será anulada por lo que se defina en la primera división del retiro.', + 'multi_account_warning_transfer' => 'Tenga en cuenta que la cuenta de origen + destino de divisiones posteriores será anulada por lo que se defina en la primera división de la transferencia.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportar datos de Firefly III', - 'export_data_menu' => 'Exportar datos', - 'export_data_bc' => 'Exportar datos de Firefly III', - 'export_data_main_title' => 'Exportar datos de Firefly III', - 'export_data_expl' => 'Este enlace le permite exportar todas las transacciones + metadatos de Firefly III. Por favor, consulte la ayuda (icono (?) superior derecho) para obtener más información sobre el proceso.', - 'export_data_all_transactions' => 'Exportar todas las transacciones', - 'export_data_advanced_expl' => 'Si necesita un tipo de exportación más avanzado o específico, lea la ayuda sobre cómo usar el comando de consola php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportar datos de Firefly III', + 'export_data_menu' => 'Exportar datos', + 'export_data_bc' => 'Exportar datos de Firefly III', + 'export_data_main_title' => 'Exportar datos de Firefly III', + 'export_data_expl' => 'Este enlace le permite exportar todas las transacciones + metadatos de Firefly III. Por favor, consulte la ayuda (icono (?) superior derecho) para obtener más información sobre el proceso.', + 'export_data_all_transactions' => 'Exportar todas las transacciones', + 'export_data_advanced_expl' => 'Si necesita un tipo de exportación más avanzado o específico, lea la ayuda sobre cómo usar el comando de consola php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Un archivo adjunto:count archivos adjuntos', - 'attachments' => 'Archivos adjuntos', - 'edit_attachment' => 'Editar cuenta de archivos ":name"', - 'update_attachment' => 'Actualizar archivo adjunto', - 'delete_attachment' => 'Eliminar archivo adjunto ":name"', - 'attachment_deleted' => 'Eliminar archivo adjunto ":name"', - 'liabilities_deleted' => 'Pasivo eliminado ":name"', - 'attachment_updated' => 'Actualizar archivo adjunto ":name"', - 'upload_max_file_size' => 'Tamaño máximo de archivo::size', - 'list_all_attachments' => 'Listado de documentos adjuntos', + 'nr_of_attachments' => 'Un archivo adjunto:count archivos adjuntos', + 'attachments' => 'Archivos adjuntos', + 'edit_attachment' => 'Editar cuenta de archivos ":name"', + 'update_attachment' => 'Actualizar archivo adjunto', + 'delete_attachment' => 'Eliminar archivo adjunto ":name"', + 'attachment_deleted' => 'Eliminar archivo adjunto ":name"', + 'liabilities_deleted' => 'Pasivo eliminado ":name"', + 'attachment_updated' => 'Actualizar archivo adjunto ":name"', + 'upload_max_file_size' => 'Tamaño máximo de archivo::size', + 'list_all_attachments' => 'Listado de documentos adjuntos', // transaction index - 'is_reconciled_fields_dropped' => 'Debido a que esta transacción está reconciliada, no podrá actualizar las cuentas, ni las cantidades.', - 'title_expenses' => 'Gastos', - 'title_withdrawal' => 'Gastos', - 'title_revenue' => 'Ingresos / salarios', - 'title_deposit' => 'Ingresos / salarios', - 'title_transfer' => 'Transferencias', - 'title_transfers' => 'Transferencias', - 'submission_options' => 'Opciones de envío', - 'apply_rules_checkbox' => 'Aplicar reglas', - 'fire_webhooks_checkbox' => 'Disparar webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Debido a que esta transacción está reconciliada, no podrá actualizar las cuentas, ni las cantidades.', + 'title_expenses' => 'Gastos', + 'title_withdrawal' => 'Gastos', + 'title_revenue' => 'Ingresos / salarios', + 'title_deposit' => 'Ingresos / salarios', + 'title_transfer' => 'Transferencias', + 'title_transfers' => 'Transferencias', + 'submission_options' => 'Opciones de envío', + 'apply_rules_checkbox' => 'Aplicar reglas', + 'fire_webhooks_checkbox' => 'Disparar webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Esta transferencia ya es un gasto', - 'convert_is_already_type_Deposit' => 'Esta transacción ya es un deposito', - 'convert_is_already_type_Transfer' => 'Esta transacción ya es una transferencia', - 'convert_to_Withdrawal' => 'Convierta ":description" a un gasto', - 'convert_to_Deposit' => 'Convierta ":description" en un ingreso', - 'convert_to_Transfer' => 'Convierta ":description" en una transferencia', - 'convert_options_WithdrawalDeposit' => 'Convertir un gasto de efectivo en un ingreso', - 'convert_options_WithdrawalTransfer' => 'Convertir una retirada de efectivo en una transferencia', - 'convert_options_DepositTransfer' => 'Convertir un ingreso en una transferencia', - 'convert_options_DepositWithdrawal' => 'Convertir un depósito en una retirada de efectivo', - 'convert_options_TransferWithdrawal' => 'Convertir una transferencia en una retirada de efectivo', - 'convert_options_TransferDeposit' => 'Convertir una transferencia en un ingreso', - 'convert_Withdrawal_to_deposit' => 'Convierta este gasto en un ingreso', - 'convert_Withdrawal_to_transfer' => 'Convierta este gasto en una transferencia', - 'convert_Deposit_to_withdrawal' => 'Convierta este ingreso en un gasto', - 'convert_Deposit_to_transfer' => 'Convierta este ingreso en una transferencia', - 'convert_Transfer_to_deposit' => 'Convierta esta transferencia en un deposito', - 'convert_Transfer_to_withdrawal' => 'Convierta esta transferencia en un gasto', - 'convert_please_set_revenue_source' => 'Por favor elija la cuenta de ingresos de donde vendrá el dinero.', - 'convert_please_set_asset_destination' => 'Por favor elija la cuenta de activos a donde el dinero se destinara.', - 'convert_please_set_expense_destination' => 'Por favor elija la cuenta de gastos a la que ira el dinero.', - 'convert_please_set_asset_source' => 'Por favor elija la cuenta de activos de donde vendrá el dinero.', - 'convert_expl_w_d' => 'Al convertir de un gasto a un ingreso, el dinero será depositado en la cuenta de destino indicada en lugar de ser retirado de la misma.| Cuando se convierte de un gasto a un ingreso, el dinero será depositado en las cuentas de destino indicadas en lugar de ser retirado de las mismas.', - 'convert_expl_w_t' => 'Al convertir un gasto en una transferencia, el dinero se transferirá fuera de la cuenta de origen a otra cuenta de activos o pasivos en lugar de ser gastado en la cuenta de gastos originales. |Al convertir un gasto en una transferencia, el dinero se transferirá fuera de las cuentas de origen a otras cuentas de activos o pasivos en lugar de gastarse en las cuentas de gastos originales.', - 'convert_expl_d_w' => 'Al convertir un ingreso en gasto, el dinero será retirado de la cuenta de origen mostrada en lugar de ser depositado en ella. |Al convertir un ingreso en un gasto, el dinero se retirará de las cuentas de origen mostradas en lugar de depositarse en ellas.', - 'convert_expl_d_t' => 'Cuando convierte un depósito en una transferencia, el dinero será depositado en la cuenta de destino listada desde cualquiera de sus cuentas de activos o pasivos. Cuando usted convierte un depósito en una transferencia, el dinero será depositado en las cuentas de destino listadas desde cualquiera de sus cuentas de activos o de responsabilidad.', - 'convert_expl_t_w' => 'Cuando usted convierte una transferencia en un gasto, el dinero se gastará en la cuenta de destino que haya establecido aquí, en lugar de ser transferido.|Cuando usted convierte una transferencia en un gasto, el dinero se gastará en las cuentas de destino que haya establecido aquí, en lugar de ser transferido.', - 'convert_expl_t_d' => 'Cuando usted convierte una transferencia en un depósito, el dinero será depositado en la cuenta de destino que usted ve aquí, en lugar de ser transferido a ella. |Cuando usted convierte una transferencia en un depósito, el dinero será depositado en las cuentas de destino que usted ve aquí, en lugar de ser transferido a ellas.', - 'convert_select_sources' => 'Para completar la conversión, por favor establezca la nueva cuenta de origen a continuación.|Para completar la conversión, por favor configure las nuevas cuentas de origen a continuación.', - 'convert_select_destinations' => 'Para completar la conversión, por favor establezca la nueva cuenta de origen a continuación.|Para completar la conversión, por favor configure las nuevas cuentas de origen a continuación.', - 'converted_to_Withdrawal' => 'La transacción se convirtió en un gasto', - 'converted_to_Deposit' => 'La transacción se ha convertido en un ingreso', - 'converted_to_Transfer' => 'La transacción se convirtió en transferencia', - 'invalid_convert_selection' => 'L a cuenta que usted ha selecionado ya esta en uso o no existe.', - 'source_or_dest_invalid' => 'No pude encontrar los detalles correctos de la transacción. La conversión no es posible.', - 'convert_to_withdrawal' => 'Convertir a gasto', - 'convert_to_deposit' => 'Convertir a ingreso', - 'convert_to_transfer' => 'Convertir a transferencia', + 'convert_is_already_type_Withdrawal' => 'Esta transferencia ya es un gasto', + 'convert_is_already_type_Deposit' => 'Esta transacción ya es un deposito', + 'convert_is_already_type_Transfer' => 'Esta transacción ya es una transferencia', + 'convert_to_Withdrawal' => 'Convierta ":description" a un gasto', + 'convert_to_Deposit' => 'Convierta ":description" en un ingreso', + 'convert_to_Transfer' => 'Convierta ":description" en una transferencia', + 'convert_options_WithdrawalDeposit' => 'Convertir un gasto de efectivo en un ingreso', + 'convert_options_WithdrawalTransfer' => 'Convertir una retirada de efectivo en una transferencia', + 'convert_options_DepositTransfer' => 'Convertir un ingreso en una transferencia', + 'convert_options_DepositWithdrawal' => 'Convertir un depósito en una retirada de efectivo', + 'convert_options_TransferWithdrawal' => 'Convertir una transferencia en una retirada de efectivo', + 'convert_options_TransferDeposit' => 'Convertir una transferencia en un ingreso', + 'convert_Withdrawal_to_deposit' => 'Convierta este gasto en un ingreso', + 'convert_Withdrawal_to_transfer' => 'Convierta este gasto en una transferencia', + 'convert_Deposit_to_withdrawal' => 'Convierta este ingreso en un gasto', + 'convert_Deposit_to_transfer' => 'Convierta este ingreso en una transferencia', + 'convert_Transfer_to_deposit' => 'Convierta esta transferencia en un deposito', + 'convert_Transfer_to_withdrawal' => 'Convierta esta transferencia en un gasto', + 'convert_please_set_revenue_source' => 'Por favor elija la cuenta de ingresos de donde vendrá el dinero.', + 'convert_please_set_asset_destination' => 'Por favor elija la cuenta de activos a donde el dinero se destinara.', + 'convert_please_set_expense_destination' => 'Por favor elija la cuenta de gastos a la que ira el dinero.', + 'convert_please_set_asset_source' => 'Por favor elija la cuenta de activos de donde vendrá el dinero.', + 'convert_expl_w_d' => 'Al convertir de un gasto a un ingreso, el dinero será depositado en la cuenta de destino indicada en lugar de ser retirado de la misma.| Cuando se convierte de un gasto a un ingreso, el dinero será depositado en las cuentas de destino indicadas en lugar de ser retirado de las mismas.', + 'convert_expl_w_t' => 'Al convertir un gasto en una transferencia, el dinero se transferirá fuera de la cuenta de origen a otra cuenta de activos o pasivos en lugar de ser gastado en la cuenta de gastos originales. |Al convertir un gasto en una transferencia, el dinero se transferirá fuera de las cuentas de origen a otras cuentas de activos o pasivos en lugar de gastarse en las cuentas de gastos originales.', + 'convert_expl_d_w' => 'Al convertir un ingreso en gasto, el dinero será retirado de la cuenta de origen mostrada en lugar de ser depositado en ella. |Al convertir un ingreso en un gasto, el dinero se retirará de las cuentas de origen mostradas en lugar de depositarse en ellas.', + 'convert_expl_d_t' => 'Cuando convierte un depósito en una transferencia, el dinero será depositado en la cuenta de destino listada desde cualquiera de sus cuentas de activos o pasivos. Cuando usted convierte un depósito en una transferencia, el dinero será depositado en las cuentas de destino listadas desde cualquiera de sus cuentas de activos o de responsabilidad.', + 'convert_expl_t_w' => 'Cuando usted convierte una transferencia en un gasto, el dinero se gastará en la cuenta de destino que haya establecido aquí, en lugar de ser transferido.|Cuando usted convierte una transferencia en un gasto, el dinero se gastará en las cuentas de destino que haya establecido aquí, en lugar de ser transferido.', + 'convert_expl_t_d' => 'Cuando usted convierte una transferencia en un depósito, el dinero será depositado en la cuenta de destino que usted ve aquí, en lugar de ser transferido a ella. |Cuando usted convierte una transferencia en un depósito, el dinero será depositado en las cuentas de destino que usted ve aquí, en lugar de ser transferido a ellas.', + 'convert_select_sources' => 'Para completar la conversión, por favor establezca la nueva cuenta de origen a continuación.|Para completar la conversión, por favor configure las nuevas cuentas de origen a continuación.', + 'convert_select_destinations' => 'Para completar la conversión, por favor establezca la nueva cuenta de origen a continuación.|Para completar la conversión, por favor configure las nuevas cuentas de origen a continuación.', + 'converted_to_Withdrawal' => 'La transacción se convirtió en un gasto', + 'converted_to_Deposit' => 'La transacción se ha convertido en un ingreso', + 'converted_to_Transfer' => 'La transacción se convirtió en transferencia', + 'invalid_convert_selection' => 'L a cuenta que usted ha selecionado ya esta en uso o no existe.', + 'source_or_dest_invalid' => 'No pude encontrar los detalles correctos de la transacción. La conversión no es posible.', + 'convert_to_withdrawal' => 'Convertir a gasto', + 'convert_to_deposit' => 'Convertir a ingreso', + 'convert_to_transfer' => 'Convertir a transferencia', // create new stuff: - 'create_new_withdrawal' => 'Crear nuevo gasto', - 'create_new_deposit' => 'Crear nuevo ingreso', - 'create_new_transfer' => 'Crear nueva transferencia', - 'create_new_asset' => 'Crear nueva cuenta de activos', - 'create_new_liabilities' => 'Crear nuevo pasivo', - 'create_new_expense' => 'Crear nueva cuenta de gastos', - 'create_new_revenue' => 'Crear nueva cuenta de ingresos', - 'create_new_piggy_bank' => 'Crear nueva hucha', - 'create_new_bill' => 'Crear nueva factura', - 'create_new_subscription' => 'Crear nueva suscripción', - 'create_new_rule' => 'Crear nueva regla', + 'create_new_withdrawal' => 'Crear nuevo gasto', + 'create_new_deposit' => 'Crear nuevo ingreso', + 'create_new_transfer' => 'Crear nueva transferencia', + 'create_new_asset' => 'Crear nueva cuenta de activos', + 'create_new_liabilities' => 'Crear nuevo pasivo', + 'create_new_expense' => 'Crear nueva cuenta de gastos', + 'create_new_revenue' => 'Crear nueva cuenta de ingresos', + 'create_new_piggy_bank' => 'Crear nueva hucha', + 'create_new_bill' => 'Crear nueva factura', + 'create_new_subscription' => 'Crear nueva suscripción', + 'create_new_rule' => 'Crear nueva regla', // currencies: - 'create_currency' => 'Crear nueva moneda', - 'store_currency' => 'Crear moneda', - 'update_currency' => 'Actualizar moneda', - 'new_default_currency' => '":name" es ahora la moneda predeterminada.', - 'default_currency_failed' => 'No se pudo establecer ":name" como moneda predeterminada. Por favor, compruebe los registros.', - 'cannot_delete_currency' => 'No puede eliminar :name porque todavía esta en uso.', - 'cannot_delete_fallback_currency' => ':name es la moneda de reserva del sistema y no se puede eliminar.', - 'cannot_disable_currency_journals' => 'No se puede desactivar :name porque las transacciones siguen utilizándola.', - 'cannot_disable_currency_last_left' => 'No se puede desactivar :name porque es la última moneda habilitada.', - 'cannot_disable_currency_account_meta' => 'No se puede desactivar :name porque se utiliza en cuentas de activos.', - 'cannot_disable_currency_bills' => 'No se puede desactivar :name porque se utiliza en facturas.', - 'cannot_disable_currency_recurring' => 'No se puede desactivar :name porque se utiliza en transacciones recurrentes.', - 'cannot_disable_currency_available_budgets' => 'No se puede desactivar :name porque se utiliza en presupuestos disponibles.', - 'cannot_disable_currency_budget_limits' => 'No se puede desactivar :name porque se utiliza en límites presupuestarios.', - 'cannot_disable_currency_current_default' => 'No se puede desactivar :name porque es la moneda por defecto actual.', - 'cannot_disable_currency_system_fallback' => 'No se puede desactivar :name porque es la moneda por defecto del sistema.', - 'disable_EUR_side_effects' => 'El Euro es la moneda de emergencia del sistema. Desactivarla puede tener efectos secundarios no deseados y puede anular su garantía.', - 'deleted_currency' => 'Moneda :name eliminada', - 'created_currency' => 'Moneda :name creada', - 'could_not_store_currency' => 'No se puede crear la nueva moneda.', - 'updated_currency' => 'Moneda :name actualizada', - 'ask_site_owner' => 'Por favor pregunte :owner por agregar,elimine o edite monedas.', - 'currencies_intro' => 'Firefly III respalda varias monedas que usted puede establecer y habilitar aquí.', - 'make_default_currency' => 'Establecer por defecto', - 'default_currency' => 'por defecto', - 'currency_is_disabled' => 'Deshabilitado', - 'enable_currency' => 'Activar', - 'disable_currency' => 'Desactivar', - 'currencies_default_disabled' => 'La mayoría de estas monedas están desactivadas por defecto. Para usarlas, debes activarlas primero.', - 'currency_is_now_enabled' => 'Moneda ":name" ha sido activada', - 'could_not_enable_currency' => 'No se pudo habilitar la moneda ":name". Por favor, revise los registros.', - 'currency_is_now_disabled' => 'Moneda ":name" ha sido desactivada', - 'could_not_disable_currency' => 'No se pudo deshabilitar la moneda ":name". ¿Tal vez todavía esté en uso?', + 'create_currency' => 'Crear nueva moneda', + 'store_currency' => 'Crear moneda', + 'update_currency' => 'Actualizar moneda', + 'new_default_currency' => '":name" es ahora la moneda predeterminada.', + 'default_currency_failed' => 'No se pudo establecer ":name" como moneda predeterminada. Por favor, compruebe los registros.', + 'cannot_delete_currency' => 'No puede eliminar :name porque todavía esta en uso.', + 'cannot_delete_fallback_currency' => ':name es la moneda de reserva del sistema y no se puede eliminar.', + 'cannot_disable_currency_journals' => 'No se puede desactivar :name porque las transacciones siguen utilizándola.', + 'cannot_disable_currency_last_left' => 'No se puede desactivar :name porque es la última moneda habilitada.', + 'cannot_disable_currency_account_meta' => 'No se puede desactivar :name porque se utiliza en cuentas de activos.', + 'cannot_disable_currency_bills' => 'No se puede desactivar :name porque se utiliza en facturas.', + 'cannot_disable_currency_recurring' => 'No se puede desactivar :name porque se utiliza en transacciones recurrentes.', + 'cannot_disable_currency_available_budgets' => 'No se puede desactivar :name porque se utiliza en presupuestos disponibles.', + 'cannot_disable_currency_budget_limits' => 'No se puede desactivar :name porque se utiliza en límites presupuestarios.', + 'cannot_disable_currency_current_default' => 'No se puede desactivar :name porque es la moneda por defecto actual.', + 'cannot_disable_currency_system_fallback' => 'No se puede desactivar :name porque es la moneda por defecto del sistema.', + 'disable_EUR_side_effects' => 'El Euro es la moneda de emergencia del sistema. Desactivarla puede tener efectos secundarios no deseados y puede anular su garantía.', + 'deleted_currency' => 'Moneda :name eliminada', + 'created_currency' => 'Moneda :name creada', + 'could_not_store_currency' => 'No se puede crear la nueva moneda.', + 'updated_currency' => 'Moneda :name actualizada', + 'ask_site_owner' => 'Por favor pregunte :owner por agregar,elimine o edite monedas.', + 'currencies_intro' => 'Firefly III respalda varias monedas que usted puede establecer y habilitar aquí.', + 'make_default_currency' => 'Establecer por defecto', + 'default_currency' => 'por defecto', + 'currency_is_disabled' => 'Deshabilitado', + 'enable_currency' => 'Activar', + 'disable_currency' => 'Desactivar', + 'currencies_default_disabled' => 'La mayoría de estas monedas están desactivadas por defecto. Para usarlas, debes activarlas primero.', + 'currency_is_now_enabled' => 'Moneda ":name" ha sido activada', + 'could_not_enable_currency' => 'No se pudo habilitar la moneda ":name". Por favor, revise los registros.', + 'currency_is_now_disabled' => 'Moneda ":name" ha sido desactivada', + 'could_not_disable_currency' => 'No se pudo deshabilitar la moneda ":name". ¿Tal vez todavía esté en uso?', // forms: - 'mandatoryFields' => 'Campos obligatorios', - 'optionalFields' => 'Campos opcionales', - 'options' => 'Opciones', + 'mandatoryFields' => 'Campos obligatorios', + 'optionalFields' => 'Campos opcionales', + 'options' => 'Opciones', // budgets: - 'daily_budgets' => 'Presupuestos diarios', - 'weekly_budgets' => 'Presupuestos semanales', - 'monthly_budgets' => 'Presupuestos mensuales', - 'quarterly_budgets' => 'Presupuestos trimestrales', - 'half_year_budgets' => 'Presupuestos semestrales', - 'yearly_budgets' => 'Presupuestos anuales', - 'other_budgets' => 'Presupuestos de tiempo personalizado', - 'budget_limit_not_in_range' => 'Esta cantidad se aplica desde :start hasta :end:', - 'total_available_budget' => 'Presupuesto total disponible (entre :start y :end)', - 'total_available_budget_in_currency' => 'Presupuesto total disponible en :currency', - 'see_below' => 'ver abajo', - 'create_new_budget' => 'Crear un nuevo presupuesto', - 'store_new_budget' => 'Almacene el nuevo presupuesto', - 'stored_new_budget' => 'Presupuesto ":name" creado', - 'available_between' => 'Disponible entre :start y :end', - 'transactionsWithoutBudget' => 'Gastos sin presupuesto', - 'transactions_no_budget' => 'Gastos sin presupuesto entre :start y :end', - 'spent_between' => 'Gastado entre :start y :end', - 'spent_between_left' => 'Gastado :spent entre :start y :end, dejando :left.', - 'set_available_amount' => 'Fijar cantidad disponible', - 'update_available_amount' => 'Actualizar cantidad disponible', - 'ab_basic_modal_explain' => 'Utilice este formulario para indicar cuánto espera poder presupuestar (en total, en :currency) en el período indicado.', - 'createBudget' => 'Nuevo presupuesto', - 'invalid_currency' => 'Esta es una divisa no válida', - 'invalid_amount' => 'Por favor, introduzca una cantidad', - 'set_ab' => 'Se ha establecido el presupuesto disponible', - 'updated_ab' => 'El presupuesto disponible ha sido actualizado', - 'deleted_ab' => 'El presupuesto disponible ha sido eliminado', - 'deleted_bl' => 'La cantidad presupuestada ha sido eliminada', - 'alt_currency_ab_create' => 'Establecer el presupuesto disponible en otra divisa', - 'bl_create_btn' => 'Establecer presupuesto en otra divisa', - 'inactiveBudgets' => 'Presupuestos inactivos', - 'without_budget_between' => 'Transacciones sin presupuesto entre :start y :end', - 'delete_budget' => 'Eliminar presupuesto ":name"', - 'deleted_budget' => 'Presupuesto eliminado ":name"', - 'edit_budget' => 'Editar presupuesto ":name"', - 'updated_budget' => 'Presupuesto actualizado ":name"', - 'update_amount' => 'Actualizar cantidad', - 'update_budget' => 'Actualizar presupuesto', - 'update_budget_amount_range' => 'Cantidad disponible (esperada) actualizada entre :start y :end', - 'set_budget_limit_title' => 'Establecer el importe para el presupuesto :budget entre :start y :end', - 'set_budget_limit' => 'Establecer cantidad presupuestada', - 'budget_period_navigator' => 'Periodo navegador', - 'info_on_available_amount' => '¿ que tengo disponible?', - 'available_amount_indication' => 'Utilice estas cantidades para obtener una indicación de lo que podría ser su presupuesto total.', - 'suggested' => 'Sugerido', - 'average_between' => 'Promedio entre :start y :end', - 'transferred_in' => 'Transferido (dentro)', - 'transferred_away' => 'Transferido (fuera)', - 'auto_budget_none' => 'Sin autopresupuesto', - 'auto_budget_reset' => 'Establecer una cantidad fija cada periodo', - 'auto_budget_rollover' => 'Añadir una cantidad cada período', - 'auto_budget_adjusted' => 'Añadir una cantidad cada periodo y corregir el sobregasto', - 'auto_budget_period_daily' => 'Diario', - 'auto_budget_period_weekly' => 'Semanal', - 'auto_budget_period_monthly' => 'Mensual', - 'auto_budget_period_quarterly' => 'Trimestral', - 'auto_budget_period_half_year' => 'Cada medio año', - 'auto_budget_period_yearly' => 'Anual', - 'auto_budget_help' => 'Puedes leer más sobre esta función en la ayuda. Haz clic en el icono de la parte superior derecha (?).', - 'auto_budget_reset_icon' => 'Este presupuesto se establecerá periódicamente', - 'auto_budget_rollover_icon' => 'La cantidad del presupuesto aumentará periódicamente', - 'auto_budget_adjusted_icon' => 'La cantidad del presupuesto aumentará de forma periódica y se corregirá el sobregasto', - 'remove_budgeted_amount' => 'Eliminar la cantidad presupuestada en :currency', + 'daily_budgets' => 'Presupuestos diarios', + 'weekly_budgets' => 'Presupuestos semanales', + 'monthly_budgets' => 'Presupuestos mensuales', + 'quarterly_budgets' => 'Presupuestos trimestrales', + 'half_year_budgets' => 'Presupuestos semestrales', + 'yearly_budgets' => 'Presupuestos anuales', + 'other_budgets' => 'Presupuestos de tiempo personalizado', + 'budget_limit_not_in_range' => 'Esta cantidad se aplica desde :start hasta :end:', + 'total_available_budget' => 'Presupuesto total disponible (entre :start y :end)', + 'total_available_budget_in_currency' => 'Presupuesto total disponible en :currency', + 'see_below' => 'ver abajo', + 'create_new_budget' => 'Crear un nuevo presupuesto', + 'store_new_budget' => 'Almacene el nuevo presupuesto', + 'stored_new_budget' => 'Presupuesto ":name" creado', + 'available_between' => 'Disponible entre :start y :end', + 'transactionsWithoutBudget' => 'Gastos sin presupuesto', + 'transactions_no_budget' => 'Gastos sin presupuesto entre :start y :end', + 'spent_between' => 'Gastado entre :start y :end', + 'spent_between_left' => 'Gastado :spent entre :start y :end, dejando :left.', + 'set_available_amount' => 'Fijar cantidad disponible', + 'update_available_amount' => 'Actualizar cantidad disponible', + 'ab_basic_modal_explain' => 'Utilice este formulario para indicar cuánto espera poder presupuestar (en total, en :currency) en el período indicado.', + 'createBudget' => 'Nuevo presupuesto', + 'invalid_currency' => 'Esta es una divisa no válida', + 'invalid_amount' => 'Por favor, introduzca una cantidad', + 'set_ab' => 'Se ha establecido el presupuesto disponible', + 'updated_ab' => 'El presupuesto disponible ha sido actualizado', + 'deleted_ab' => 'El presupuesto disponible ha sido eliminado', + 'deleted_bl' => 'La cantidad presupuestada ha sido eliminada', + 'alt_currency_ab_create' => 'Establecer el presupuesto disponible en otra divisa', + 'bl_create_btn' => 'Establecer presupuesto en otra divisa', + 'inactiveBudgets' => 'Presupuestos inactivos', + 'without_budget_between' => 'Transacciones sin presupuesto entre :start y :end', + 'delete_budget' => 'Eliminar presupuesto ":name"', + 'deleted_budget' => 'Presupuesto eliminado ":name"', + 'edit_budget' => 'Editar presupuesto ":name"', + 'updated_budget' => 'Presupuesto actualizado ":name"', + 'update_amount' => 'Actualizar cantidad', + 'update_budget' => 'Actualizar presupuesto', + 'update_budget_amount_range' => 'Cantidad disponible (esperada) actualizada entre :start y :end', + 'set_budget_limit_title' => 'Establecer el importe para el presupuesto :budget entre :start y :end', + 'set_budget_limit' => 'Establecer cantidad presupuestada', + 'budget_period_navigator' => 'Periodo navegador', + 'info_on_available_amount' => '¿ que tengo disponible?', + 'available_amount_indication' => 'Utilice estas cantidades para obtener una indicación de lo que podría ser su presupuesto total.', + 'suggested' => 'Sugerido', + 'average_between' => 'Promedio entre :start y :end', + 'transferred_in' => 'Transferido (dentro)', + 'transferred_away' => 'Transferido (fuera)', + 'auto_budget_none' => 'Sin autopresupuesto', + 'auto_budget_reset' => 'Establecer una cantidad fija cada periodo', + 'auto_budget_rollover' => 'Añadir una cantidad cada período', + 'auto_budget_adjusted' => 'Añadir una cantidad cada periodo y corregir el sobregasto', + 'auto_budget_period_daily' => 'Diario', + 'auto_budget_period_weekly' => 'Semanal', + 'auto_budget_period_monthly' => 'Mensual', + 'auto_budget_period_quarterly' => 'Trimestral', + 'auto_budget_period_half_year' => 'Cada medio año', + 'auto_budget_period_yearly' => 'Anual', + 'auto_budget_help' => 'Puedes leer más sobre esta función en la ayuda. Haz clic en el icono de la parte superior derecha (?).', + 'auto_budget_reset_icon' => 'Este presupuesto se establecerá periódicamente', + 'auto_budget_rollover_icon' => 'La cantidad del presupuesto aumentará periódicamente', + 'auto_budget_adjusted_icon' => 'La cantidad del presupuesto aumentará de forma periódica y se corregirá el sobregasto', + 'remove_budgeted_amount' => 'Eliminar la cantidad presupuestada en :currency', // bills: - 'subscription' => 'Subscripción', - 'not_expected_period' => 'No se espera en este período', - 'subscriptions_in_group' => 'Suscripciones en el grupo "%{title}"', - 'subscr_expected_x_times' => 'Se espera pagar %{amount} %{times} veces este periodo', - 'not_or_not_yet' => 'No (todavía)', - 'visit_bill' => 'Ver factura ":name" en Firefly III', - 'match_between_amounts' => 'La factura iguala transacciones entre :low y :high.', - 'running_again_loss' => 'Las transacciones previamente vinculadas a esta factura pueden perder su conexión, si (ya) no coinciden con la(s) regla(s).', - 'bill_related_rules' => 'Reglas relacionadas con esta cuenta', - 'repeats' => 'Repeticiones', - 'bill_end_date_help' => 'Campo opcional. Se espera que la factura venza en esta fecha.', - 'bill_extension_date_help' => 'Campo opcional. La factura debe ser prorrogada (o cancelada) en o antes de esta fecha.', - 'bill_end_index_line' => 'Esta factura termina el :date', - 'bill_extension_index_line' => 'Esta factura debe ser extendida o cancelada el :date', - 'connected_journals' => 'Transacciones conectadas', - 'auto_match_on' => 'Automáticamente igualado por Firefly III', - 'auto_match_off' => 'No igualado automaticamente por Firefly III', - 'next_expected_match' => 'Próxima coincidencia esperada', - 'delete_bill' => 'Eliminar factura ":name"', - 'deleted_bill' => 'Eliminar factura ":name"', - 'edit_bill' => 'Editar factura ":name"', - 'more' => 'Mas', - 'rescan_old' => 'Ejecutar las reglas de nuevo, en todas las transacciones', - 'update_bill' => 'Actualizar factura', - 'updated_bill' => 'Actualizar factura ":name"', - 'store_new_bill' => 'Crear factura', - 'stored_new_bill' => 'Factura ":name" creada', - 'cannot_scan_inactive_bill' => 'Las facturas inactivas no pueden ser escaneadas.', - 'rescanned_bill' => 'Se volvió a escanear todo, y vinculó :count transacción a la factura. | Se volvió a escanear todo, y vinculó :count transacciones a la factura.', - 'average_bill_amount_year' => 'Cantidad media de la factura (:year)', - 'average_bill_amount_overall' => 'Cantidad media de las facturas (total)', - 'bill_is_active' => 'La factura esta activa', - 'bill_expected_between' => 'Esperado entre :start y :end', - 'bill_will_automatch' => 'La factura se vinculará automáticamente a las transacciones coincidentes', - 'skips_over' => 'salta sobre', - 'bill_store_error' => 'Se ha producido un error inesperado mientras se almacenaba su nueva factura. Por favor, compruebe los archivos de registro', - 'list_inactive_rule' => 'regla inactiva', - 'bill_edit_rules' => 'Firefly III también intentará editar la regla relacionada con esta factura. Sin embargo, si ha editado esta regla usted mismo, Firefly III no cambiará nada.|Firefly III intentará editar también las :count reglas relacionadas con esta factura. Sin embargo, si ha editado estas reglas usted mismo, Firefly III no cambiará nada.', - 'bill_expected_date' => 'Se espera :date', - 'bill_expected_date_js' => 'Fecha prevista {date}', - 'expected_amount' => 'Cantidad (esperada)', - 'bill_paid_on' => 'Pagado el {date}', - 'bill_repeats_weekly' => 'Repetir semanalmente', - 'bill_repeats_monthly' => 'Repetir mensualmente', - 'bill_repeats_quarterly' => 'Repite trimestralmente', - 'bill_repeats_half-year' => 'Repetir cada 6 meses', - 'bill_repeats_yearly' => 'Repetir anualmente', - 'bill_repeats_weekly_other' => 'Repetir cada dos semanas', - 'bill_repeats_monthly_other' => 'Repetir cada dos meses', - 'bill_repeats_quarterly_other' => 'Repetir cada dos trimestres', - 'bill_repeats_half-year_other' => 'Repetir anualmente', - 'bill_repeats_yearly_other' => 'Repetir cada dos años', - 'bill_repeats_weekly_skip' => 'Repetir cada {skip} semanas', - 'bill_repeats_monthly_skip' => 'Repetir cada {skip} meses', - 'bill_repeats_quarterly_skip' => 'Repetir cada {skip} trimestres', - 'bill_repeats_half-year_skip' => 'Repetir cada {skip} medios años', - 'bill_repeats_yearly_skip' => 'Repetir cada {skip} años', - 'subscriptions' => 'Suscripciones', - 'go_to_subscriptions' => 'Ir a tus suscripciones', - 'forever' => 'Siempre', - 'extension_date_is' => 'Fecha de extensión es {date}', + 'subscription' => 'Subscripción', + 'not_expected_period' => 'No se espera en este período', + 'subscriptions_in_group' => 'Suscripciones en el grupo "%{title}"', + 'subscr_expected_x_times' => 'Se espera pagar %{amount} %{times} veces este periodo', + 'not_or_not_yet' => 'No (todavía)', + 'visit_bill' => 'Ver factura ":name" en Firefly III', + 'match_between_amounts' => 'La factura iguala transacciones entre :low y :high.', + 'running_again_loss' => 'Las transacciones previamente vinculadas a esta factura pueden perder su conexión, si (ya) no coinciden con la(s) regla(s).', + 'bill_related_rules' => 'Reglas relacionadas con esta cuenta', + 'repeats' => 'Repeticiones', + 'bill_end_date_help' => 'Campo opcional. Se espera que la factura venza en esta fecha.', + 'bill_extension_date_help' => 'Campo opcional. La factura debe ser prorrogada (o cancelada) en o antes de esta fecha.', + 'bill_end_index_line' => 'Esta factura termina el :date', + 'bill_extension_index_line' => 'Esta factura debe ser extendida o cancelada el :date', + 'connected_journals' => 'Transacciones conectadas', + 'auto_match_on' => 'Automáticamente igualado por Firefly III', + 'auto_match_off' => 'No igualado automaticamente por Firefly III', + 'next_expected_match' => 'Próxima coincidencia esperada', + 'delete_bill' => 'Eliminar factura ":name"', + 'deleted_bill' => 'Eliminar factura ":name"', + 'edit_bill' => 'Editar factura ":name"', + 'more' => 'Mas', + 'rescan_old' => 'Ejecutar las reglas de nuevo, en todas las transacciones', + 'update_bill' => 'Actualizar factura', + 'updated_bill' => 'Actualizar factura ":name"', + 'store_new_bill' => 'Crear factura', + 'stored_new_bill' => 'Factura ":name" creada', + 'cannot_scan_inactive_bill' => 'Las facturas inactivas no pueden ser escaneadas.', + 'rescanned_bill' => 'Se volvió a escanear todo, y vinculó :count transacción a la factura. | Se volvió a escanear todo, y vinculó :count transacciones a la factura.', + 'average_bill_amount_year' => 'Cantidad media de la factura (:year)', + 'average_bill_amount_overall' => 'Cantidad media de las facturas (total)', + 'bill_is_active' => 'La factura esta activa', + 'bill_expected_between' => 'Esperado entre :start y :end', + 'bill_will_automatch' => 'La factura se vinculará automáticamente a las transacciones coincidentes', + 'skips_over' => 'salta sobre', + 'bill_store_error' => 'Se ha producido un error inesperado mientras se almacenaba su nueva factura. Por favor, compruebe los archivos de registro', + 'list_inactive_rule' => 'regla inactiva', + 'bill_edit_rules' => 'Firefly III también intentará editar la regla relacionada con esta factura. Sin embargo, si ha editado esta regla usted mismo, Firefly III no cambiará nada.|Firefly III intentará editar también las :count reglas relacionadas con esta factura. Sin embargo, si ha editado estas reglas usted mismo, Firefly III no cambiará nada.', + 'bill_expected_date' => 'Se espera :date', + 'bill_expected_date_js' => 'Fecha prevista {date}', + 'expected_amount' => 'Cantidad (esperada)', + 'bill_paid_on' => 'Pagado el {date}', + 'bill_repeats_weekly' => 'Repetir semanalmente', + 'bill_repeats_monthly' => 'Repetir mensualmente', + 'bill_repeats_quarterly' => 'Repite trimestralmente', + 'bill_repeats_half-year' => 'Repetir cada 6 meses', + 'bill_repeats_yearly' => 'Repetir anualmente', + 'bill_repeats_weekly_other' => 'Repetir cada dos semanas', + 'bill_repeats_monthly_other' => 'Repetir cada dos meses', + 'bill_repeats_quarterly_other' => 'Repetir cada dos trimestres', + 'bill_repeats_half-year_other' => 'Repetir anualmente', + 'bill_repeats_yearly_other' => 'Repetir cada dos años', + 'bill_repeats_weekly_skip' => 'Repetir cada {skip} semanas', + 'bill_repeats_monthly_skip' => 'Repetir cada {skip} meses', + 'bill_repeats_quarterly_skip' => 'Repetir cada {skip} trimestres', + 'bill_repeats_half-year_skip' => 'Repetir cada {skip} medios años', + 'bill_repeats_yearly_skip' => 'Repetir cada {skip} años', + 'subscriptions' => 'Suscripciones', + 'go_to_subscriptions' => 'Ir a tus suscripciones', + 'forever' => 'Siempre', + 'extension_date_is' => 'Fecha de extensión es {date}', // accounts: - 'i_am_owed_amount' => 'Se me debe una cantidad', - 'i_owe_amount' => 'Debo una cantidad', - 'inactive_account_link' => 'Tiene :count cuenta inactiva (archivada), que puedes ver en esta página separada.|Tienes cuentas :count inactivas (archivadas), que puedes ver en esta página separada.', - 'all_accounts_inactive' => 'Estas son sus cuentas inactivas.', - 'active_account_link' => 'Este enlace se regresa a sus cuentas activas.', - 'account_missing_transaction' => 'Cuenta #:id (":name") no puede ser vista directamente, Firefly perdió información de redirección.', - 'cc_monthly_payment_date_help' => 'Seleccione cualquier año y mes, será ignorado de todos modos. Sólo el día del mes es relevante.', - 'details_for_asset' => 'Detalles para la cuenta de activos ":name"', - 'details_for_expense' => 'Detalles para la cuenta de gastos ":name"', - 'details_for_revenue' => 'Detalles para la cuenta de ingresos ":name"', - 'details_for_cash' => 'Detalle para la cuenta de efectivo ":name"', - 'store_new_asset_account' => 'Crear cuenta de activos', - 'store_new_expense_account' => 'Crear cuenta de gastos', - 'store_new_revenue_account' => 'Crear cuenta de ingresos', - 'edit_asset_account' => 'Editar cuenta de activos ":name"', - 'edit_expense_account' => 'Editar cuenta de gastos ":name"', - 'edit_revenue_account' => 'Editar cuenta de ganancias ":name"', - 'delete_asset_account' => 'Eliminar cuenta de activo ":name"', - 'delete_expense_account' => 'Eliminar cuenta de gastos ":name"', - 'delete_revenue_account' => 'Eliminar cuenta de ganancias ":name"', - 'delete_liabilities_account' => 'Eliminar pasivo ":name"', - 'asset_deleted' => 'Se ha eliminado exitosamente la cuenta de activos ":name"', - 'account_deleted' => 'Cuenta "::name" eliminada con éxito', - 'expense_deleted' => 'Exitosamente eliminado la cuenta de gastos ":name"', - 'revenue_deleted' => 'Exitosamente eliminado cuenta de ganacias ":name"', - 'update_asset_account' => 'Actualizar cuenta de activos', - 'update_undefined_account' => 'Actualizar cuenta', - 'update_liabilities_account' => 'Actualizar pasivo', - 'update_expense_account' => 'Actualizar cuenta de gastos', - 'update_revenue_account' => 'Actualizar cuenta de ingresos', - 'make_new_asset_account' => 'Crear nueva cuenta de activo', - 'make_new_expense_account' => 'Crear nueva cuenta de gastos', - 'make_new_revenue_account' => 'Crear nueva cuenta de ingresos', - 'make_new_liabilities_account' => 'Crear un nuevo pasivo', - 'asset_accounts' => 'Cuenta de activos', - 'undefined_accounts' => 'Cuentas', - 'asset_accounts_inactive' => 'Cuentas de activos (inactivas)', - 'expense_account' => 'Cuenta de gastos', - 'expense_accounts' => 'Cuentas de gastos', - 'expense_accounts_inactive' => 'Cuentas de gastos (inactivas)', - 'revenue_account' => 'Cuenta de ingresos', - 'revenue_accounts' => 'Cuentas de ingresos', - 'revenue_accounts_inactive' => 'Cuentas de ingresos (inactivas)', - 'cash_accounts' => 'Cuentas de efectivo', - 'Cash account' => 'Cuenta de efectivo', - 'liabilities_accounts' => 'Pasivos', - 'liabilities_accounts_inactive' => 'Pasivos (inactivos)', - 'reconcile_account' => 'Reconciliar cuenta ":account"', - 'overview_of_reconcile_modal' => 'Resumen de reconciliación', - 'delete_reconciliation' => 'Eliminar reconciliacion', - 'update_reconciliation' => 'Actualizar reconciliacion', - 'amount_cannot_be_zero' => 'La cantidad no puede ser cero', - 'end_of_reconcile_period' => 'Fin del periodo de reconciliacion::period', - 'start_of_reconcile_period' => 'Inicio de periodo de reconciliación::period', - 'start_balance' => 'Balance inicial', - 'end_balance' => 'Balance final', - 'update_balance_dates_instruction' => 'Coinciden con las cantidades y fechas sobre su estado de cuenta, y presione "comenzar reconciliación"', - 'select_transactions_instruction' => 'Seleccione las transacciones que aparecen en su estado bancario.', - 'select_range_and_balance' => 'Primero verifique el rango de las fechas y los saldos. luego presione "comenzar reconciliación"', - 'date_change_instruction' => 'Si usted cambia el rango de las fechas ahora, se perderá cualquier progreso.', - 'update_selection' => 'Selección de actualización', - 'store_reconcile' => 'Guardar reconciliación', - 'reconciliation_transaction' => 'Transacción de reconciliación', - 'Reconciliation' => 'Reconciliacion', - 'reconciliation' => 'Reconciliacion', - 'reconcile_options' => 'Opciones de reconciliacion', - 'reconcile_range' => 'Rango de reconciliacion', - 'start_reconcile' => 'Comienzo de reconciliación', - 'cash_account_type' => 'Efectivo', - 'cash' => 'efectivo', - 'cant_find_redirect_account' => 'Firefly III le intentó redirigir pero no pudo. Lo sentimos. Volver al índice.', - 'account_type' => 'Tipo de cuenta', - 'save_transactions_by_moving' => 'Guardar esta transacción moviéndola a otra cuenta:|Guardar estas transacciones moviéndolas a otra cuenta:', - 'save_transactions_by_moving_js' => 'Ninguna transacción|Guardar esta transacción moviéndola a otra cuenta. |Guardar estas transacciones moviéndolas a otra cuenta.', - 'stored_new_account' => 'Nueva cuenta ":name" almacenada!', - 'stored_new_account_js' => 'Nueva cuenta "{name}" guardada!', - 'updated_account' => 'Cuenta actualizada ":name"', - 'updated_account_js' => 'Cuenta actualizada "{title}".', - 'credit_card_options' => 'Opciones de tarjeta de crédito', - 'no_transactions_account' => 'No hay transacciones ( en este periodo) para cuenta de activos ":name".', - 'no_transactions_period' => 'No hay transacciones (en este período).', - 'no_data_for_chart' => 'No hay suficiente información (todavía) para generar este gráfico.', - 'select_at_least_one_account' => 'Por favor, seleccione al menos una cuenta', - 'select_at_least_one_category' => 'Por favor, seleccione al menos una categoría', - 'select_at_least_one_budget' => 'Por favor, seleccione al menos un presupuesto', - 'select_at_least_one_tag' => 'Por favor, seleccione al menos una etiqueta', - 'select_at_least_one_expense' => 'Por favor, seleccione al menos una combinación de cuentas de gastos/ingresos. Si no tiene ninguna (la lista está vacía) este informe no está disponible.', - 'account_default_currency' => 'Esta será la moneda por defecto asociada a esta cuenta.', - 'reconcile_has_more' => 'Su libro principal de Firefly III tiene mas dinero de lo que su banco afirma debería tener, Hay varias opciones. por favor elija que hacer. luego, presione "confirmar reconciliación".', - 'reconcile_has_less' => 'Su libro principal de Firefly III tiene menos dinero de el que su banco dice que usted debería tener. hay varias opciones. Por favor elija que hacer, luego presione " Confirmar reconciliación".', - 'reconcile_is_equal' => 'Su libro principal de Firefly III y sus estados de cuenta coinciden. No hay nada que hacer. por favor presione "Confirmar reconciliación" para confirmar su entrada.', - 'create_pos_reconcile_transaction' => 'Borre las transacciones seleccionadas, y cree una corrección agregando :amount a esta cuenta de activo.', - 'create_neg_reconcile_transaction' => 'Borre las transacciones seleccionadas, y cree una corrección eliminando :amount de esta cuenta de activo.', - 'reconcile_do_nothing' => 'Borre la transacciones seleccionadas, pero no las corrija.', - 'reconcile_go_back' => 'Usted puede siempre editar o eliminar una corrección mas tarde.', - 'must_be_asset_account' => 'Usted solo puede reconciliar cuentas de activos', - 'reconciliation_stored' => 'Reconciliación almacenada', - 'reconciliation_error' => 'Debido a un error, las transacciones fueron marcadas como reconciliadas, pero la corrección no se ha guardado: :error.', - 'reconciliation_transaction_title' => 'Reconciliación (:from a :to)', - 'sum_of_reconciliation' => 'Suma de reconciliación', - 'reconcile_this_account' => 'Reconciliar esta cuenta', - 'reconcile' => 'Reconciliar', - 'show' => 'Mostrar', - 'confirm_reconciliation' => 'Confirmar la reconciliacion', - 'submitted_start_balance' => 'Balance final enviado', - 'selected_transactions' => 'Transacciones seleccionadas (:count)', - 'already_cleared_transactions' => 'Transacciones ya despejadas (:count)', - 'submitted_end_balance' => 'Balance final enviado', - 'initial_balance_description' => 'Balance inicial para ":account"', - 'liability_credit_description' => 'Crédito pasivo para ":account"', - 'interest_calc_' => 'desconocido', - 'interest_calc_daily' => 'Por dia', - 'interest_calc_monthly' => 'Por mes', - 'interest_calc_yearly' => 'Por año', - 'interest_calc_weekly' => 'Por semana', - 'interest_calc_half-year' => 'Por semestre', - 'interest_calc_quarterly' => 'Por trimestre', - 'initial_balance_account' => 'Balance inicial de la cuenta :account', - 'list_options' => 'Opciones de lista', + 'i_am_owed_amount' => 'Se me debe una cantidad', + 'i_owe_amount' => 'Debo una cantidad', + 'inactive_account_link' => 'Tiene :count cuenta inactiva (archivada), que puedes ver en esta página separada.|Tienes cuentas :count inactivas (archivadas), que puedes ver en esta página separada.', + 'all_accounts_inactive' => 'Estas son sus cuentas inactivas.', + 'active_account_link' => 'Este enlace se regresa a sus cuentas activas.', + 'account_missing_transaction' => 'Cuenta #:id (":name") no puede ser vista directamente, Firefly perdió información de redirección.', + 'cc_monthly_payment_date_help' => 'Seleccione cualquier año y mes, será ignorado de todos modos. Sólo el día del mes es relevante.', + 'details_for_asset' => 'Detalles para la cuenta de activos ":name"', + 'details_for_expense' => 'Detalles para la cuenta de gastos ":name"', + 'details_for_revenue' => 'Detalles para la cuenta de ingresos ":name"', + 'details_for_cash' => 'Detalle para la cuenta de efectivo ":name"', + 'store_new_asset_account' => 'Crear cuenta de activos', + 'store_new_expense_account' => 'Crear cuenta de gastos', + 'store_new_revenue_account' => 'Crear cuenta de ingresos', + 'edit_asset_account' => 'Editar cuenta de activos ":name"', + 'edit_expense_account' => 'Editar cuenta de gastos ":name"', + 'edit_revenue_account' => 'Editar cuenta de ganancias ":name"', + 'delete_asset_account' => 'Eliminar cuenta de activo ":name"', + 'delete_expense_account' => 'Eliminar cuenta de gastos ":name"', + 'delete_revenue_account' => 'Eliminar cuenta de ganancias ":name"', + 'delete_liabilities_account' => 'Eliminar pasivo ":name"', + 'asset_deleted' => 'Se ha eliminado exitosamente la cuenta de activos ":name"', + 'account_deleted' => 'Cuenta "::name" eliminada con éxito', + 'expense_deleted' => 'Exitosamente eliminado la cuenta de gastos ":name"', + 'revenue_deleted' => 'Exitosamente eliminado cuenta de ganacias ":name"', + 'update_asset_account' => 'Actualizar cuenta de activos', + 'update_undefined_account' => 'Actualizar cuenta', + 'update_liabilities_account' => 'Actualizar pasivo', + 'update_expense_account' => 'Actualizar cuenta de gastos', + 'update_revenue_account' => 'Actualizar cuenta de ingresos', + 'make_new_asset_account' => 'Crear nueva cuenta de activo', + 'make_new_expense_account' => 'Crear nueva cuenta de gastos', + 'make_new_revenue_account' => 'Crear nueva cuenta de ingresos', + 'make_new_liabilities_account' => 'Crear un nuevo pasivo', + 'asset_accounts' => 'Cuenta de activos', + 'undefined_accounts' => 'Cuentas', + 'asset_accounts_inactive' => 'Cuentas de activos (inactivas)', + 'expense_account' => 'Cuenta de gastos', + 'expense_accounts' => 'Cuentas de gastos', + 'expense_accounts_inactive' => 'Cuentas de gastos (inactivas)', + 'revenue_account' => 'Cuenta de ingresos', + 'revenue_accounts' => 'Cuentas de ingresos', + 'revenue_accounts_inactive' => 'Cuentas de ingresos (inactivas)', + 'cash_accounts' => 'Cuentas de efectivo', + 'Cash account' => 'Cuenta de efectivo', + 'liabilities_accounts' => 'Pasivos', + 'liabilities_accounts_inactive' => 'Pasivos (inactivos)', + 'reconcile_account' => 'Reconciliar cuenta ":account"', + 'overview_of_reconcile_modal' => 'Resumen de reconciliación', + 'delete_reconciliation' => 'Eliminar reconciliacion', + 'update_reconciliation' => 'Actualizar reconciliacion', + 'amount_cannot_be_zero' => 'La cantidad no puede ser cero', + 'end_of_reconcile_period' => 'Fin del periodo de reconciliacion::period', + 'start_of_reconcile_period' => 'Inicio de periodo de reconciliación::period', + 'start_balance' => 'Balance inicial', + 'end_balance' => 'Balance final', + 'update_balance_dates_instruction' => 'Coinciden con las cantidades y fechas sobre su estado de cuenta, y presione "comenzar reconciliación"', + 'select_transactions_instruction' => 'Seleccione las transacciones que aparecen en su estado bancario.', + 'select_range_and_balance' => 'Primero verifique el rango de las fechas y los saldos. luego presione "comenzar reconciliación"', + 'date_change_instruction' => 'Si usted cambia el rango de las fechas ahora, se perderá cualquier progreso.', + 'update_selection' => 'Selección de actualización', + 'store_reconcile' => 'Guardar reconciliación', + 'reconciliation_transaction' => 'Transacción de reconciliación', + 'Reconciliation' => 'Reconciliacion', + 'reconciliation' => 'Reconciliacion', + 'reconcile_options' => 'Opciones de reconciliacion', + 'reconcile_range' => 'Rango de reconciliacion', + 'start_reconcile' => 'Comienzo de reconciliación', + 'cash_account_type' => 'Efectivo', + 'cash' => 'efectivo', + 'cant_find_redirect_account' => 'Firefly III le intentó redirigir pero no pudo. Lo sentimos. Volver al índice.', + 'account_type' => 'Tipo de cuenta', + 'save_transactions_by_moving' => 'Guardar esta transacción moviéndola a otra cuenta:|Guardar estas transacciones moviéndolas a otra cuenta:', + 'save_transactions_by_moving_js' => 'Ninguna transacción|Guardar esta transacción moviéndola a otra cuenta. |Guardar estas transacciones moviéndolas a otra cuenta.', + 'stored_new_account' => 'Nueva cuenta ":name" almacenada!', + 'stored_new_account_js' => 'Nueva cuenta "{name}" guardada!', + 'updated_account' => 'Cuenta actualizada ":name"', + 'updated_account_js' => 'Cuenta actualizada "{title}".', + 'credit_card_options' => 'Opciones de tarjeta de crédito', + 'no_transactions_account' => 'No hay transacciones ( en este periodo) para cuenta de activos ":name".', + 'no_transactions_period' => 'No hay transacciones (en este período).', + 'no_data_for_chart' => 'No hay suficiente información (todavía) para generar este gráfico.', + 'select_at_least_one_account' => 'Por favor, seleccione al menos una cuenta', + 'select_at_least_one_category' => 'Por favor, seleccione al menos una categoría', + 'select_at_least_one_budget' => 'Por favor, seleccione al menos un presupuesto', + 'select_at_least_one_tag' => 'Por favor, seleccione al menos una etiqueta', + 'select_at_least_one_expense' => 'Por favor, seleccione al menos una combinación de cuentas de gastos/ingresos. Si no tiene ninguna (la lista está vacía) este informe no está disponible.', + 'account_default_currency' => 'Esta será la moneda por defecto asociada a esta cuenta.', + 'reconcile_has_more' => 'Su libro principal de Firefly III tiene mas dinero de lo que su banco afirma debería tener, Hay varias opciones. por favor elija que hacer. luego, presione "confirmar reconciliación".', + 'reconcile_has_less' => 'Su libro principal de Firefly III tiene menos dinero de el que su banco dice que usted debería tener. hay varias opciones. Por favor elija que hacer, luego presione " Confirmar reconciliación".', + 'reconcile_is_equal' => 'Su libro principal de Firefly III y sus estados de cuenta coinciden. No hay nada que hacer. por favor presione "Confirmar reconciliación" para confirmar su entrada.', + 'create_pos_reconcile_transaction' => 'Borre las transacciones seleccionadas, y cree una corrección agregando :amount a esta cuenta de activo.', + 'create_neg_reconcile_transaction' => 'Borre las transacciones seleccionadas, y cree una corrección eliminando :amount de esta cuenta de activo.', + 'reconcile_do_nothing' => 'Borre la transacciones seleccionadas, pero no las corrija.', + 'reconcile_go_back' => 'Usted puede siempre editar o eliminar una corrección mas tarde.', + 'must_be_asset_account' => 'Usted solo puede reconciliar cuentas de activos', + 'reconciliation_stored' => 'Reconciliación almacenada', + 'reconciliation_error' => 'Debido a un error, las transacciones fueron marcadas como reconciliadas, pero la corrección no se ha guardado: :error.', + 'reconciliation_transaction_title' => 'Reconciliación (:from a :to)', + 'sum_of_reconciliation' => 'Suma de reconciliación', + 'reconcile_this_account' => 'Reconciliar esta cuenta', + 'reconcile' => 'Reconciliar', + 'show' => 'Mostrar', + 'confirm_reconciliation' => 'Confirmar la reconciliacion', + 'submitted_start_balance' => 'Balance final enviado', + 'selected_transactions' => 'Transacciones seleccionadas (:count)', + 'already_cleared_transactions' => 'Transacciones ya despejadas (:count)', + 'submitted_end_balance' => 'Balance final enviado', + 'initial_balance_description' => 'Balance inicial para ":account"', + 'liability_credit_description' => 'Crédito pasivo para ":account"', + 'interest_calc_' => 'desconocido', + 'interest_calc_daily' => 'Por dia', + 'interest_calc_monthly' => 'Por mes', + 'interest_calc_yearly' => 'Por año', + 'interest_calc_weekly' => 'Por semana', + 'interest_calc_half-year' => 'Por semestre', + 'interest_calc_quarterly' => 'Por trimestre', + 'initial_balance_account' => 'Balance inicial de la cuenta :account', + 'list_options' => 'Opciones de lista', // categories: - 'new_category' => 'Nueva categoría', - 'create_new_category' => 'Crear una nueva categoria', - 'without_category' => 'Sin categoría', - 'update_category' => 'Actualizar categoría', - 'updated_category' => 'Actualizar categoría ":name"', - 'categories' => 'Categorías', - 'edit_category' => 'Editar categoría ":name"', - 'no_category' => '(sin categoría)', - 'unknown_category_plain' => 'Sin categoría', - 'category' => 'Categoria', - 'delete_category' => 'Eliminar categoría ":name"', - 'deleted_category' => 'Categoría eliminada ":name"', - 'store_category' => 'Guardar nueva categoria', - 'stored_category' => 'Nueva categoría guardada ":name"', - 'without_category_between' => 'Sin categoría entre :start y:end', + 'new_category' => 'Nueva categoría', + 'create_new_category' => 'Crear una nueva categoria', + 'without_category' => 'Sin categoría', + 'update_category' => 'Actualizar categoría', + 'updated_category' => 'Actualizar categoría ":name"', + 'categories' => 'Categorías', + 'edit_category' => 'Editar categoría ":name"', + 'no_category' => '(sin categoría)', + 'unknown_category_plain' => 'Sin categoría', + 'category' => 'Categoria', + 'delete_category' => 'Eliminar categoría ":name"', + 'deleted_category' => 'Categoría eliminada ":name"', + 'store_category' => 'Guardar nueva categoria', + 'stored_category' => 'Nueva categoría guardada ":name"', + 'without_category_between' => 'Sin categoría entre :start y:end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Por favor, espere a que se cargue el formulario', - 'wait_loading_data' => 'Por favor, espere a que su información se cargue...', - 'wait_attachments' => 'Por favor, espere a que se carguen los archivos adjuntos.', - 'errors_upload' => 'La carga ha fallado. Por favor, comprueba el error en la consola de tu navegador.', - 'amount_foreign_if' => 'Importe en moneda extranjera, si existe', - 'amount_destination_account' => 'Importe en la moneda de la cuenta de destino', - 'edit_transaction_title' => 'Editar transacción ":description"', - 'unreconcile' => 'Deshacer reconciliación', - 'update_withdrawal' => 'Actualización de gasto', - 'update_deposit' => 'Actualizar ingreso', - 'update_transaction' => 'Actualizar transacción', - 'update_transfer' => 'Actualización de transferencia', - 'updated_withdrawal' => 'Gasto actualizado', - 'updated_deposit' => 'Actualizado ingreso ":description"', - 'updated_transfer' => 'Transferencia actualizada ":description"', - 'no_changes_withdrawal' => 'El gasto ":description" no se cambió.', - 'no_changes_deposit' => 'El ingreso ":description" no se cambió.', - 'no_changes_transfer' => 'Transferencia ":description" no se cambió.', - 'delete_withdrawal' => 'Eliminar gasto ":description"', - 'delete_deposit' => 'Eliminar ingreso ":description"', - 'delete_transfer' => 'Eliminar transferencia ":description"', - 'deleted_withdrawal' => 'Eliminado correctamente', - 'deleted_deposit' => 'Ingreso eliminado correctamente ":description"', - 'deleted_transfer' => 'Transferencia eliminada exitosamente ":description"', - 'deleted_reconciliation' => 'Transacción de conciliación eliminada con éxito "::description"', - 'stored_journal' => 'Nueva transacción creada exitosamente ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Se ha creado tu nueva transacción con éxito', - 'updated_journal_no_descr' => 'Se ha actualizado tu transacción con éxito', - 'select_transactions' => 'Seleccionar transacciones', - 'rule_group_select_transactions' => 'Aplicar ":title" a las transacciones', - 'rule_select_transactions' => 'Aplicar ":title" a las transacciones', - 'stop_selection' => 'Pare de seleccionas transacciones', - 'reconcile_selected' => 'Reconciliar', - 'mass_delete_journals' => 'Eliminar un numero de transacciones', - 'mass_edit_journals' => 'Editar un numero de transacciones', - 'mass_bulk_journals' => 'Editar múltiples transacciones', - 'mass_bulk_journals_explain' => 'Este formulario le permite cambiar las propiedades de las transacciones que aparecen a continuación en una actualización de barrido. Todas las transacciones en la tabla se actualizarán cuando cambie los parámetros que vea aquí.', - 'part_of_split' => 'Esta transacción es parte de una transacción dividida. Si no ha seleccionado todas las partes, puede terminar con cambiar sólo la mitad de la transacción.', - 'bulk_set_new_values' => 'Use las entradas abajo para establecer nuevos valores. Si usted los deja vacíos, serán vacíos para todos. también, tenga en cuenta que solo los gastos tendrán un presupuesto.', - 'no_bulk_category' => 'No actualizar la categoria', - 'no_bulk_budget' => 'No actualizar el presupuesto', - 'no_bulk_tags' => 'No actualizar etiqueta(s)', - 'replace_with_these_tags' => 'Reemplazar con estas etiquetas', - 'append_these_tags' => 'Añadir esas etiquetas', - 'mass_edit' => 'Editar seleccionado individualmente', - 'bulk_edit' => 'Editar seleccionados en masa', - 'mass_delete' => 'Eliminar seleccionados', - 'cannot_edit_other_fields' => 'Usted no puede editar en masa otros campos ademas de los que están aquí, porque no hay espacio para mostrarlos. siga el enlace y editelo uno a uno, si usted necesita editar estos campos.', - 'cannot_change_amount_reconciled' => 'No puede cambiar la cantidad de transacciones conciliadas.', - 'no_budget' => '(sin presupuesto)', - 'no_bill' => '(sin factura)', - 'account_per_budget' => 'Cuenta por presupuesto', - 'account_per_category' => 'Cuenta por categoría', - 'create_new_object' => 'Crear', - 'empty' => '(vacío)', - 'all_other_budgets' => '(todos los demás presupuestos)', - 'all_other_accounts' => '(todas las demás cuentas)', - 'expense_per_source_account' => 'Gastos por cuenta de origen', - 'expense_per_destination_account' => 'Gastos por cuenta destino', - 'income_per_destination_account' => 'Ingresos por cuenta de destino', - 'spent_in_specific_category' => 'Gastado en categoría ":category"', - 'earned_in_specific_category' => 'Ganado en la categoría ":category"', - 'spent_in_specific_tag' => 'Gastado en etiqueta ":tag"', - 'earned_in_specific_tag' => 'Ganado en etiqueta ":tag"', - 'income_per_source_account' => 'Ingresos por cuenta fuente', - 'average_spending_per_destination' => 'Gasto promedio por cuenta de destino', - 'average_spending_per_source' => 'Gasto promedio por cuenta de origen', - 'average_earning_per_source' => 'Ingreso promedio por cuenta de origen', - 'average_earning_per_destination' => 'Ingreso promedio por cuenta de destino', - 'account_per_tag' => 'Cuenta por etiqueta', - 'tag_report_expenses_listed_once' => 'Los gastos y los ingresos nunca se enumeran dos veces. Si una transacción tiene múltiples etiquetas, sólo puede aparecer bajo una de sus etiquetas. Esta lista puede parecer que faltan datos, pero las cantidades serán correctas.', - 'double_report_expenses_charted_once' => 'Los gastos y los ingresos nunca se muestran dos veces. Si una transacción tiene múltiples etiquetas, sólo puede aparecer bajo una de sus etiquetas. Este gráfico puede parecer que faltan datos, pero las cantidades serán correctas.', - 'tag_report_chart_single_tag' => 'Este gráfico se aplica a una sola etiqueta. Si una transacción tiene múltiples etiquetas, lo que ve aquí puede reflejarse también en los gráficos de otras etiquetas.', - 'tag' => 'Etiqueta', - 'no_budget_squared' => '(sin presupuesto)', - 'perm-delete-many' => 'Eliminar muchos elementos en una sola vez puede ser muy perturbador. Por favor, tenga cuidado. Puede eliminar parte de una transacción dividida de esta página, así que tenga cuidado.', - 'mass_deleted_transactions_success' => 'Eliminado :count transacción.|Eliminado :count transacciones.', - 'mass_edited_transactions_success' => 'Actualizado :count transaction.|Actualizado :count transacciones.', - 'opt_group_' => '(Sin tipo de cuenta)', - 'opt_group_no_account_type' => '(Sin tipo de cuenta)', - 'opt_group_defaultAsset' => 'Cuentas de activos por defecto', - 'opt_group_savingAsset' => 'Cuenta de ahorros', - 'opt_group_sharedAsset' => 'Cuenta de activos compartidas', - 'opt_group_ccAsset' => 'Tarjetas de credito', - 'opt_group_cashWalletAsset' => 'Billeteras de efectivo', - 'opt_group_expense_account' => 'Cuentas de gastos', - 'opt_group_revenue_account' => 'Cuentas de ingresos', - 'opt_group_l_Loan' => 'Pasivo: Préstamo', - 'opt_group_cash_account' => 'Cuenta de efectivo', - 'opt_group_l_Debt' => 'Pasivo: Deuda', - 'opt_group_l_Mortgage' => 'Pasivo: Hipoteca', - 'opt_group_l_Credit card' => 'Pasivo: Tarjeta de crédito', - 'notes' => 'Notas', - 'unknown_journal_error' => 'No se pudo guardar la transacción. Por favor, revise los archivos de registro.', - 'attachment_not_found' => 'No se pudo encontrar este adjunto.', - 'journal_link_bill' => 'Esta transacción está vinculada a la factura :name. Para eliminar la conexión, desmarca la casilla de verificación. Usa reglas para conectarla a otra factura.', - 'transaction_stored_link' => 'La transacción #{ID} ("{title}") ha sido almacenada.', - 'transaction_new_stored_link' => 'La transacción #{ID} ha sido guardada.', - 'transaction_updated_link' => 'La transacción #{ID} ("{title}") ha sido actualizada.', - 'transaction_updated_no_changes' => 'La transacción #{ID} ("{title}") no recibió ningún cambio.', - 'first_split_decides' => 'La primera división determina el valor de este campo', - 'first_split_overrules_source' => 'La primera división puede anular la cuenta de origen', - 'first_split_overrules_destination' => 'La primera división puede anular la cuenta de destino', - 'spent_x_of_y' => '{amount} gastado de {total}', + 'wait_loading_transaction' => 'Por favor, espere a que se cargue el formulario', + 'wait_loading_data' => 'Por favor, espere a que su información se cargue...', + 'wait_attachments' => 'Por favor, espere a que se carguen los archivos adjuntos.', + 'errors_upload' => 'La carga ha fallado. Por favor, comprueba el error en la consola de tu navegador.', + 'amount_foreign_if' => 'Importe en moneda extranjera, si existe', + 'amount_destination_account' => 'Importe en la moneda de la cuenta de destino', + 'edit_transaction_title' => 'Editar transacción ":description"', + 'unreconcile' => 'Deshacer reconciliación', + 'update_withdrawal' => 'Actualización de gasto', + 'update_deposit' => 'Actualizar ingreso', + 'update_transaction' => 'Actualizar transacción', + 'update_transfer' => 'Actualización de transferencia', + 'updated_withdrawal' => 'Gasto actualizado', + 'updated_deposit' => 'Actualizado ingreso ":description"', + 'updated_transfer' => 'Transferencia actualizada ":description"', + 'no_changes_withdrawal' => 'El gasto ":description" no se cambió.', + 'no_changes_deposit' => 'El ingreso ":description" no se cambió.', + 'no_changes_transfer' => 'Transferencia ":description" no se cambió.', + 'delete_withdrawal' => 'Eliminar gasto ":description"', + 'delete_deposit' => 'Eliminar ingreso ":description"', + 'delete_transfer' => 'Eliminar transferencia ":description"', + 'deleted_withdrawal' => 'Eliminado correctamente', + 'deleted_deposit' => 'Ingreso eliminado correctamente ":description"', + 'deleted_transfer' => 'Transferencia eliminada exitosamente ":description"', + 'deleted_reconciliation' => 'Transacción de conciliación eliminada con éxito "::description"', + 'stored_journal' => 'Nueva transacción creada exitosamente ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Se ha creado tu nueva transacción con éxito', + 'updated_journal_no_descr' => 'Se ha actualizado tu transacción con éxito', + 'select_transactions' => 'Seleccionar transacciones', + 'rule_group_select_transactions' => 'Aplicar ":title" a las transacciones', + 'rule_select_transactions' => 'Aplicar ":title" a las transacciones', + 'stop_selection' => 'Pare de seleccionas transacciones', + 'reconcile_selected' => 'Reconciliar', + 'mass_delete_journals' => 'Eliminar un numero de transacciones', + 'mass_edit_journals' => 'Editar un numero de transacciones', + 'mass_bulk_journals' => 'Editar múltiples transacciones', + 'mass_bulk_journals_explain' => 'Este formulario le permite cambiar las propiedades de las transacciones que aparecen a continuación en una actualización de barrido. Todas las transacciones en la tabla se actualizarán cuando cambie los parámetros que vea aquí.', + 'part_of_split' => 'Esta transacción es parte de una transacción dividida. Si no ha seleccionado todas las partes, puede terminar con cambiar sólo la mitad de la transacción.', + 'bulk_set_new_values' => 'Use las entradas abajo para establecer nuevos valores. Si usted los deja vacíos, serán vacíos para todos. también, tenga en cuenta que solo los gastos tendrán un presupuesto.', + 'no_bulk_category' => 'No actualizar la categoria', + 'no_bulk_budget' => 'No actualizar el presupuesto', + 'no_bulk_tags' => 'No actualizar etiqueta(s)', + 'replace_with_these_tags' => 'Reemplazar con estas etiquetas', + 'append_these_tags' => 'Añadir esas etiquetas', + 'mass_edit' => 'Editar seleccionado individualmente', + 'bulk_edit' => 'Editar seleccionados en masa', + 'mass_delete' => 'Eliminar seleccionados', + 'cannot_edit_other_fields' => 'Usted no puede editar en masa otros campos ademas de los que están aquí, porque no hay espacio para mostrarlos. siga el enlace y editelo uno a uno, si usted necesita editar estos campos.', + 'cannot_change_amount_reconciled' => 'No puede cambiar la cantidad de transacciones conciliadas.', + 'no_budget' => '(sin presupuesto)', + 'no_bill' => '(sin factura)', + 'account_per_budget' => 'Cuenta por presupuesto', + 'account_per_category' => 'Cuenta por categoría', + 'create_new_object' => 'Crear', + 'empty' => '(vacío)', + 'all_other_budgets' => '(todos los demás presupuestos)', + 'all_other_accounts' => '(todas las demás cuentas)', + 'expense_per_source_account' => 'Gastos por cuenta de origen', + 'expense_per_destination_account' => 'Gastos por cuenta destino', + 'income_per_destination_account' => 'Ingresos por cuenta de destino', + 'spent_in_specific_category' => 'Gastado en categoría ":category"', + 'earned_in_specific_category' => 'Ganado en la categoría ":category"', + 'spent_in_specific_tag' => 'Gastado en etiqueta ":tag"', + 'earned_in_specific_tag' => 'Ganado en etiqueta ":tag"', + 'income_per_source_account' => 'Ingresos por cuenta fuente', + 'average_spending_per_destination' => 'Gasto promedio por cuenta de destino', + 'average_spending_per_source' => 'Gasto promedio por cuenta de origen', + 'average_earning_per_source' => 'Ingreso promedio por cuenta de origen', + 'average_earning_per_destination' => 'Ingreso promedio por cuenta de destino', + 'account_per_tag' => 'Cuenta por etiqueta', + 'tag_report_expenses_listed_once' => 'Los gastos y los ingresos nunca se enumeran dos veces. Si una transacción tiene múltiples etiquetas, sólo puede aparecer bajo una de sus etiquetas. Esta lista puede parecer que faltan datos, pero las cantidades serán correctas.', + 'double_report_expenses_charted_once' => 'Los gastos y los ingresos nunca se muestran dos veces. Si una transacción tiene múltiples etiquetas, sólo puede aparecer bajo una de sus etiquetas. Este gráfico puede parecer que faltan datos, pero las cantidades serán correctas.', + 'tag_report_chart_single_tag' => 'Este gráfico se aplica a una sola etiqueta. Si una transacción tiene múltiples etiquetas, lo que ve aquí puede reflejarse también en los gráficos de otras etiquetas.', + 'tag' => 'Etiqueta', + 'no_budget_squared' => '(sin presupuesto)', + 'perm-delete-many' => 'Eliminar muchos elementos en una sola vez puede ser muy perturbador. Por favor, tenga cuidado. Puede eliminar parte de una transacción dividida de esta página, así que tenga cuidado.', + 'mass_deleted_transactions_success' => 'Eliminado :count transacción.|Eliminado :count transacciones.', + 'mass_edited_transactions_success' => 'Actualizado :count transaction.|Actualizado :count transacciones.', + 'opt_group_' => '(Sin tipo de cuenta)', + 'opt_group_no_account_type' => '(Sin tipo de cuenta)', + 'opt_group_defaultAsset' => 'Cuentas de activos por defecto', + 'opt_group_savingAsset' => 'Cuenta de ahorros', + 'opt_group_sharedAsset' => 'Cuenta de activos compartidas', + 'opt_group_ccAsset' => 'Tarjetas de credito', + 'opt_group_cashWalletAsset' => 'Billeteras de efectivo', + 'opt_group_expense_account' => 'Cuentas de gastos', + 'opt_group_revenue_account' => 'Cuentas de ingresos', + 'opt_group_l_Loan' => 'Pasivo: Préstamo', + 'opt_group_cash_account' => 'Cuenta de efectivo', + 'opt_group_l_Debt' => 'Pasivo: Deuda', + 'opt_group_l_Mortgage' => 'Pasivo: Hipoteca', + 'opt_group_l_Credit card' => 'Pasivo: Tarjeta de crédito', + 'notes' => 'Notas', + 'unknown_journal_error' => 'No se pudo guardar la transacción. Por favor, revise los archivos de registro.', + 'attachment_not_found' => 'No se pudo encontrar este adjunto.', + 'journal_link_bill' => 'Esta transacción está vinculada a la factura :name. Para eliminar la conexión, desmarca la casilla de verificación. Usa reglas para conectarla a otra factura.', + 'transaction_stored_link' => 'La transacción #{ID} ("{title}") ha sido almacenada.', + 'transaction_new_stored_link' => 'La transacción #{ID} ha sido guardada.', + 'transaction_updated_link' => 'La transacción #{ID} ("{title}") ha sido actualizada.', + 'transaction_updated_no_changes' => 'La transacción #{ID} ("{title}") no recibió ningún cambio.', + 'first_split_decides' => 'La primera división determina el valor de este campo', + 'first_split_overrules_source' => 'La primera división puede anular la cuenta de origen', + 'first_split_overrules_destination' => 'La primera división puede anular la cuenta de destino', + 'spent_x_of_y' => '{amount} gastado de {total}', // new user: - 'welcome' => 'Bienvenido a Firefly III!', - 'submit' => 'Enviar', - 'submission' => 'Envío', - 'submit_yes_really' => 'Enviar (Se lo que estoy haciendo)', - 'getting_started' => 'Comenzando', - 'to_get_started' => 'Felicidades, has instalado con éxito Firefly III. Para empezar en esta herramienta, por favor escribe el nombre de tu banco y el saldo de su cuenta principal. Si tienes más de una cuenta, podrás agregarla más tarde. Firefly III necesita algo por lo que empezar.', - 'savings_balance_text' => 'Firefly III creará automáticamente una cuenta de ahorros. Por defecto, no habrá dinero en su cuenta de ahorros, pero si le dice a Firefly III el saldo se almacenará como tal.', - 'finish_up_new_user' => '¡Todo listo! Puedes continuar pulsando Enviar. Serás redirigido al inicio de Firefly III.', - 'stored_new_accounts_new_user' => '¡Bien! Tus nuevas cuentas han sido almacenadas.', - 'set_preferred_language' => 'Si prefiere usar Firefly III en otro lenguaje, por favor indíquelo aquí.', - 'language' => 'Idioma', - 'new_savings_account' => ':bank_name Cuenta de ahorros', - 'cash_wallet' => 'Billetera de efectivo', - 'currency_not_present' => 'Si la moneda que normalmente utiliza no se encuentra listada, no se preocupe. Puede crear su propia moneda desde Opciones>Monedas.', + 'welcome' => 'Bienvenido a Firefly III!', + 'submit' => 'Enviar', + 'submission' => 'Envío', + 'submit_yes_really' => 'Enviar (Se lo que estoy haciendo)', + 'getting_started' => 'Comenzando', + 'to_get_started' => 'Felicidades, has instalado con éxito Firefly III. Para empezar en esta herramienta, por favor escribe el nombre de tu banco y el saldo de su cuenta principal. Si tienes más de una cuenta, podrás agregarla más tarde. Firefly III necesita algo por lo que empezar.', + 'savings_balance_text' => 'Firefly III creará automáticamente una cuenta de ahorros. Por defecto, no habrá dinero en su cuenta de ahorros, pero si le dice a Firefly III el saldo se almacenará como tal.', + 'finish_up_new_user' => '¡Todo listo! Puedes continuar pulsando Enviar. Serás redirigido al inicio de Firefly III.', + 'stored_new_accounts_new_user' => '¡Bien! Tus nuevas cuentas han sido almacenadas.', + 'set_preferred_language' => 'Si prefiere usar Firefly III en otro lenguaje, por favor indíquelo aquí.', + 'language' => 'Idioma', + 'new_savings_account' => ':bank_name Cuenta de ahorros', + 'cash_wallet' => 'Billetera de efectivo', + 'currency_not_present' => 'Si la moneda que normalmente utiliza no se encuentra listada, no se preocupe. Puede crear su propia moneda desde Opciones>Monedas.', // home page: - 'transaction_table_description' => 'Una tabla que contiene sus transacciones', - 'opposing_account' => 'Cuenta opuesta', - 'yourAccounts' => 'Tus cuentas', - 'your_accounts' => 'Resumen de su cuenta', - 'category_overview' => 'Resumen de categorías', - 'expense_overview' => 'Resumen de la cuenta de gastos', - 'revenue_overview' => 'Resumen de la cuenta de ingresos', - 'budgetsAndSpending' => 'Presupuestos y gastos', - 'budgets_and_spending' => 'Presupuestos y gastos', - 'go_to_budget' => 'Ir al presupuesto "{budget}"', - 'go_to_deposits' => 'Ir a ingresos', - 'go_to_expenses' => 'Ir a gastos', - 'savings' => 'Ahorros', - 'newWithdrawal' => 'Nuevo gasto', - 'newDeposit' => 'Nuevo ingreso', - 'newTransfer' => 'Nueva transferencia', - 'bills_to_pay' => 'Facturas por pagar', - 'per_day' => 'Por dia', - 'left_to_spend_per_day' => 'Disponible para gasto diario', - 'bills_paid' => 'Facturas pagadas', - 'custom_period' => 'Período personalizado', - 'reset_to_current' => 'Restablecer al período actual', - 'select_period' => 'Seleccione un período', + 'transaction_table_description' => 'Una tabla que contiene sus transacciones', + 'opposing_account' => 'Cuenta opuesta', + 'yourAccounts' => 'Tus cuentas', + 'your_accounts' => 'Resumen de su cuenta', + 'category_overview' => 'Resumen de categorías', + 'expense_overview' => 'Resumen de la cuenta de gastos', + 'revenue_overview' => 'Resumen de la cuenta de ingresos', + 'budgetsAndSpending' => 'Presupuestos y gastos', + 'budgets_and_spending' => 'Presupuestos y gastos', + 'go_to_budget' => 'Ir al presupuesto "{budget}"', + 'go_to_deposits' => 'Ir a ingresos', + 'go_to_expenses' => 'Ir a gastos', + 'savings' => 'Ahorros', + 'newWithdrawal' => 'Nuevo gasto', + 'newDeposit' => 'Nuevo ingreso', + 'newTransfer' => 'Nueva transferencia', + 'bills_to_pay' => 'Facturas por pagar', + 'per_day' => 'Por dia', + 'left_to_spend_per_day' => 'Disponible para gasto diario', + 'bills_paid' => 'Facturas pagadas', + 'custom_period' => 'Período personalizado', + 'reset_to_current' => 'Restablecer al período actual', + 'select_period' => 'Seleccione un período', // menu and titles, should be recycled as often as possible: - 'currency' => 'Moneda', - 'preferences' => 'Preferencias', - 'logout' => 'Cerrar sesión', - 'logout_other_sessions' => 'Desconectar todas las demás sesiones', - 'toggleNavigation' => 'Activar navegación', - 'searchPlaceholder' => 'Buscar...', - 'version' => 'Versión', - 'dashboard' => 'Panel de control', - 'income_and_expense' => 'Ingresos y gastos', - 'all_money' => 'Todo tu dinero', - 'unknown_source_plain' => 'Cuenta origen desconocida', - 'unknown_dest_plain' => 'Dirección de destino desconocida', - 'unknown_any_plain' => 'Cuenta desconocida', - 'unknown_budget_plain' => 'Sin presupuesto', - 'available_budget' => 'Presupuesto disponible ({currency})', - 'currencies' => 'Divisas', - 'activity' => 'Actividad', - 'usage' => 'Uso', - 'accounts' => 'Cuentas', - 'Asset account' => 'Cuenta de activos', - 'Default account' => 'Cuenta de activos', - 'Expense account' => 'Cuenta de gastos', - 'Revenue account' => 'Cuenta de ganancia', - 'Initial balance account' => 'Cuenta de balance inicial', - 'account_type_Asset account' => 'Cuenta de activos', - 'account_type_Expense account' => 'Cuenta de gastos', - 'account_type_Revenue account' => 'Cuenta de ingresos', - 'account_type_Debt' => 'Deuda', - 'account_type_Loan' => 'Préstamo', - 'account_type_Mortgage' => 'Hipoteca', - 'account_type_debt' => 'Deuda', - 'account_type_loan' => 'Préstamo', - 'account_type_mortgage' => 'Hipoteca', - 'account_type_Credit card' => 'Tarjeta de crédito', - 'credit_card_type_monthlyFull' => 'Pago completo cada mes', - 'liability_direction_credit' => 'Se me debe esta deuda', - 'liability_direction_debit' => 'Le debo esta deuda a otra persona', - 'liability_direction_credit_short' => 'Tenía esta deuda', - 'liability_direction_debit_short' => 'Tiene esta deuda', - 'liability_direction__short' => 'Desconocido', - 'liability_direction_null_short' => 'Desconocido', - 'Liability credit' => 'Crédito pasivo', - 'budgets' => 'Presupuestos', - 'tags' => 'Etiquetas', - 'reports' => 'Informes', - 'transactions' => 'Transacciones', - 'expenses' => 'Gastos', - 'income' => 'Ingresos / salarios', - 'transfers' => 'Transferencias', - 'moneyManagement' => 'Gestión del dinero', - 'money_management' => 'Gestión del dinero', - 'tools' => 'Herramientas', - 'piggyBanks' => 'Huchas', - 'piggy_banks' => 'Huchas', - 'amount_x_of_y' => '{current} de {total}', - 'bills' => 'Facturas', - 'withdrawal' => 'gasto', - 'opening_balance' => 'Saldo inicial', - 'deposit' => 'Ingreso', - 'account' => 'Cuenta', - 'transfer' => 'Transferencia', - 'Withdrawal' => 'Gasto', - 'Deposit' => 'Ingreso', - 'Transfer' => 'Transferencia', - 'bill' => 'Factura', - 'yes' => 'Si', - 'no' => 'No', - 'amount' => 'Cantidad', - 'overview' => 'Resumen', - 'saveOnAccount' => 'Guardar en cuenta', - 'unknown' => 'Desconocido', - 'monthly' => 'Mensual', - 'profile' => 'Perfil', - 'errors' => 'Errores', - 'debt_start_date' => 'Fecha de inicio de deuda', - 'debt_start_amount' => 'Cantidad inicial de la deuda', - 'debt_start_amount_help' => 'Siempre es mejor establecer este valor a una cantidad negativa. Lea las páginas de ayuda (arriba a la derecha (icono-?)) para más información.', - 'interest_period_help' => 'Este campo es meramente cosmético y no se calculará para usted. Como resulta que los bancos son muy estrepitosos, por lo que Firefly III nunca lo hace bien.', - 'store_new_liabilities_account' => 'Crear nuevo pasivo', - 'edit_liabilities_account' => 'Editar pasivo ":name"', - 'financial_control' => 'Control financiero', - 'accounting' => 'Contabilidad', - 'automation' => 'Automatización', - 'others' => 'Otros', - 'classification' => 'Clasificación', - 'store_transaction' => 'Guardar transacción', + 'currency' => 'Moneda', + 'preferences' => 'Preferencias', + 'logout' => 'Cerrar sesión', + 'logout_other_sessions' => 'Desconectar todas las demás sesiones', + 'toggleNavigation' => 'Activar navegación', + 'searchPlaceholder' => 'Buscar...', + 'version' => 'Versión', + 'dashboard' => 'Panel de control', + 'income_and_expense' => 'Ingresos y gastos', + 'all_money' => 'Todo tu dinero', + 'unknown_source_plain' => 'Cuenta origen desconocida', + 'unknown_dest_plain' => 'Dirección de destino desconocida', + 'unknown_any_plain' => 'Cuenta desconocida', + 'unknown_budget_plain' => 'Sin presupuesto', + 'available_budget' => 'Presupuesto disponible ({currency})', + 'currencies' => 'Divisas', + 'activity' => 'Actividad', + 'usage' => 'Uso', + 'accounts' => 'Cuentas', + 'Asset account' => 'Cuenta de activos', + 'Default account' => 'Cuenta de activos', + 'Expense account' => 'Cuenta de gastos', + 'Revenue account' => 'Cuenta de ganancia', + 'Initial balance account' => 'Cuenta de balance inicial', + 'account_type_Asset account' => 'Cuenta de activos', + 'account_type_Expense account' => 'Cuenta de gastos', + 'account_type_Revenue account' => 'Cuenta de ingresos', + 'account_type_Debt' => 'Deuda', + 'account_type_Loan' => 'Préstamo', + 'account_type_Mortgage' => 'Hipoteca', + 'account_type_debt' => 'Deuda', + 'account_type_loan' => 'Préstamo', + 'account_type_mortgage' => 'Hipoteca', + 'account_type_Credit card' => 'Tarjeta de crédito', + 'credit_card_type_monthlyFull' => 'Pago completo cada mes', + 'liability_direction_credit' => 'Se me debe esta deuda', + 'liability_direction_debit' => 'Le debo esta deuda a otra persona', + 'liability_direction_credit_short' => 'Tenía esta deuda', + 'liability_direction_debit_short' => 'Tiene esta deuda', + 'liability_direction__short' => 'Desconocido', + 'liability_direction_null_short' => 'Desconocido', + 'Liability credit' => 'Crédito pasivo', + 'budgets' => 'Presupuestos', + 'tags' => 'Etiquetas', + 'reports' => 'Informes', + 'transactions' => 'Transacciones', + 'expenses' => 'Gastos', + 'income' => 'Ingresos / salarios', + 'transfers' => 'Transferencias', + 'moneyManagement' => 'Gestión del dinero', + 'money_management' => 'Gestión del dinero', + 'tools' => 'Herramientas', + 'piggyBanks' => 'Huchas', + 'piggy_banks' => 'Huchas', + 'amount_x_of_y' => '{current} de {total}', + 'bills' => 'Facturas', + 'withdrawal' => 'gasto', + 'opening_balance' => 'Saldo inicial', + 'deposit' => 'Ingreso', + 'account' => 'Cuenta', + 'transfer' => 'Transferencia', + 'Withdrawal' => 'Gasto', + 'Deposit' => 'Ingreso', + 'Transfer' => 'Transferencia', + 'bill' => 'Factura', + 'yes' => 'Si', + 'no' => 'No', + 'amount' => 'Cantidad', + 'overview' => 'Resumen', + 'saveOnAccount' => 'Guardar en cuenta', + 'unknown' => 'Desconocido', + 'monthly' => 'Mensual', + 'profile' => 'Perfil', + 'errors' => 'Errores', + 'debt_start_date' => 'Fecha de inicio de deuda', + 'debt_start_amount' => 'Cantidad inicial de la deuda', + 'debt_start_amount_help' => 'Siempre es mejor establecer este valor a una cantidad negativa. Lea las páginas de ayuda (arriba a la derecha (icono-?)) para más información.', + 'interest_period_help' => 'Este campo es meramente cosmético y no se calculará para usted. Como resulta que los bancos son muy estrepitosos, por lo que Firefly III nunca lo hace bien.', + 'store_new_liabilities_account' => 'Crear nuevo pasivo', + 'edit_liabilities_account' => 'Editar pasivo ":name"', + 'financial_control' => 'Control financiero', + 'accounting' => 'Contabilidad', + 'automation' => 'Automatización', + 'others' => 'Otros', + 'classification' => 'Clasificación', + 'store_transaction' => 'Guardar transacción', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Reporte financiero por defecto entre :start y :end', - 'report_audit' => 'Transacción general del historial entre :start y :end', - 'report_category' => 'Reporte de categoría entre :start y :end', - 'report_double' => 'Informe de cuenta de gastos/ingresos entre :start y :end', - 'report_budget' => 'Reporte de presupuesto entre :start y :end', - 'report_tag' => 'Reporte de etiqueta entre :start y :end', - 'quick_link_reports' => 'Enlaces rápidos', - 'quick_link_examples' => 'Estos son sólo algunos enlaces de ejemplo para empezar. Echa un vistazo a las páginas de ayuda bajo el botón (?)-para obtener información sobre todos los informes y las palabras mágicas que puedes usar.', - 'quick_link_default_report' => 'Reporte financiero por defecto', - 'quick_link_audit_report' => 'Resumen del historial de transacciones', - 'report_this_month_quick' => 'Mes en curso, todas las cuentas', - 'report_last_month_quick' => 'Último mes, todas las cuentas', - 'report_this_year_quick' => 'Año en curso, todas las cuentas', - 'report_this_fiscal_year_quick' => 'Año fiscal en curso, todas las cuentas', - 'report_all_time_quick' => 'Todo el tiempo, todas las cuentas', - 'reports_can_bookmark' => 'Recuerda que los informes pueden ser marcados como favoritos.', - 'incomeVsExpenses' => 'Ingresos vs. gastos', - 'accountBalances' => 'Balances de cuentas', - 'balanceStart' => 'Balance al inicio de un periodo', - 'balanceEnd' => 'Balance al final de un periodo', - 'splitByAccount' => 'Separada por cuenta', - 'coveredWithTags' => 'Cubierta con etiquetas', - 'leftInBudget' => 'Disponible en presupuesto', - 'left_in_debt' => 'Importe debido', - 'sumOfSums' => 'Suma de sumas', - 'noCategory' => '(sin categoría)', - 'notCharged' => 'No cargado (todavía)', - 'inactive' => 'Inactivo', - 'active' => 'Activo', - 'difference' => 'Diferente', - 'money_flowing_in' => 'Entrada', - 'money_flowing_out' => 'Salida', - 'topX' => 'tope :number', - 'show_full_list' => 'Mostrar lista entera', - 'show_only_top' => 'Mostrar solo tope :number', - 'report_type' => 'Tipo de reporte', - 'report_type_default' => 'Informe financiero predeterminado', - 'report_type_audit' => 'Resumen del historial de transacciones (auditar)', - 'report_type_category' => 'Reporte de categoría', - 'report_type_budget' => 'Reporte de presupuesto', - 'report_type_tag' => 'Reporte de etiqueta', - 'report_type_double' => 'Informe de cuenta de gastos/ingresos', - 'more_info_help' => 'Puedes encontrar más información sobre estos tipos de informes en las páginas de ayuda. Pulsa el icono (?) En la esquina superior derecha.', - 'report_included_accounts' => 'Cuentas incluidas', - 'report_date_range' => 'Rango de fechas', - 'report_preset_ranges' => 'Rangos preestablecidos', - 'shared' => 'Compartido', - 'fiscal_year' => 'Año fiscal', - 'income_entry' => 'Ingresos de la cuenta ":name" entre :start y :end', - 'expense_entry' => 'Gastos a cuenta ":name" entre :start y :end', - 'category_entry' => 'Gastos e ingresos en la categoría ":name" entre :start y :end', - 'budget_spent_amount' => 'Gastos en presupuesto ":budget" entre :start y :end', - 'balance_amount' => 'Gastos en presupuesto ":budget" pago desde la cuenta ":account" entre :start y :end', - 'no_audit_activity' => 'Ninguna actividad fue registrada en la cuenta :account_name entre :start y :end.', - 'audit_end_balance' => 'Saldo de cuenta de :account_name en el final de :end fue :balance', - 'reports_extra_options' => 'Opciones adicionales', - 'report_has_no_extra_options' => 'Este informe no tiene opciones adicionales', - 'reports_submit' => 'Ver informe', - 'end_after_start_date' => 'Fecha final de reporte debe ser después de la fecha de inicio.', - 'select_category' => 'Seleccionar categoría (as)', - 'select_budget' => 'Seleccionar presupuesto (s).', - 'select_tag' => 'Seleccionar etiqueta (s).', - 'income_per_category' => 'Ingresos por categoria', - 'expense_per_category' => 'Gastos por categoria', - 'expense_per_budget' => 'Gastos por presupuestos', - 'income_per_account' => 'Ingresos por cuenta', - 'expense_per_account' => 'Gastos por cuenta', - 'expense_per_tag' => 'Gastos por etiqueta', - 'income_per_tag' => 'Ingreso por etiqueta', - 'include_expense_not_in_budget' => 'Gastos incluidos que no están en el presupuesto (s) seleccionado', - 'include_expense_not_in_account' => 'Gastos incluidos que no están en la cuenta (s) seleccionada', - 'include_expense_not_in_category' => 'Gastos incluidos que no están en la categoría (s) seleccionada', - 'include_income_not_in_category' => 'Ingresos incluidos que no estan en la categoria (s) seleccionada', - 'include_income_not_in_account' => 'Ingresos incluidos que no están en la cuenta (s) seleccionada', - 'include_income_not_in_tags' => 'Ingresos incluidos no en la etiqueta (s) seleccionadas', - 'include_expense_not_in_tags' => 'Gastos incluidos no seleccionados con etiqueta', - 'everything_else' => 'Todo lo demas', - 'income_and_expenses' => 'Ingresos y gastos', - 'spent_average' => 'Gastado (promedio)', - 'income_average' => 'Ingresos (promedio)', - 'transaction_count' => 'Cuenta de transacciones', - 'average_spending_per_account' => 'Promedio de gasto por cuenta', - 'average_income_per_account' => 'Promedio de ingreso por cuenta', - 'total' => 'Total', - 'description' => 'Descripción', - 'sum_of_period' => 'Suma de período', - 'average_in_period' => 'Promedio en el período', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Cuentas de ingresos por defecto', - 'account_role_sharedAsset' => 'Cuenta de ingresos compartida', - 'account_role_savingAsset' => 'Cuentas de ahorros', - 'account_role_ccAsset' => 'Tarjeta de Crédito', - 'account_role_cashWalletAsset' => 'Billetera de efectivo', - 'budget_chart_click' => 'Por favor de click el nombre del presupuesto en la tabla de arriba para ver el cuadro.', - 'category_chart_click' => 'Por favor de click en el nombre de categoría en la tabla de arriba para ver el cuadro.', - 'in_out_accounts' => 'Ganado y gastado por combinación', - 'in_out_accounts_per_asset' => 'Ganado y gastado (por cuenta de activos)', - 'in_out_per_category' => 'Ganado y gastado por categoría', - 'out_per_budget' => 'Gasto por presupuesto', - 'select_expense_revenue' => 'Seleccione cuenta de gastos/ingresos', - 'multi_currency_report_sum' => 'Como esta lista contiene cuentas con múltiples monedas, la(s) suma(s) que veas puede no tener sentido. El reporte siempre figurará en tu moneda predeterminada.', - 'sum_in_default_currency' => 'La suma siempre estará en tu moneda predeterminada.', - 'net_filtered_prefs' => 'Este gráfico nunca incluirá cuentas que tengan la opción "Incluir en el valor neto" no marcada.', + 'report_default' => 'Reporte financiero por defecto entre :start y :end', + 'report_audit' => 'Transacción general del historial entre :start y :end', + 'report_category' => 'Reporte de categoría entre :start y :end', + 'report_double' => 'Informe de cuenta de gastos/ingresos entre :start y :end', + 'report_budget' => 'Reporte de presupuesto entre :start y :end', + 'report_tag' => 'Reporte de etiqueta entre :start y :end', + 'quick_link_reports' => 'Enlaces rápidos', + 'quick_link_examples' => 'Estos son sólo algunos enlaces de ejemplo para empezar. Echa un vistazo a las páginas de ayuda bajo el botón (?)-para obtener información sobre todos los informes y las palabras mágicas que puedes usar.', + 'quick_link_default_report' => 'Reporte financiero por defecto', + 'quick_link_audit_report' => 'Resumen del historial de transacciones', + 'report_this_month_quick' => 'Mes en curso, todas las cuentas', + 'report_last_month_quick' => 'Último mes, todas las cuentas', + 'report_this_year_quick' => 'Año en curso, todas las cuentas', + 'report_this_fiscal_year_quick' => 'Año fiscal en curso, todas las cuentas', + 'report_all_time_quick' => 'Todo el tiempo, todas las cuentas', + 'reports_can_bookmark' => 'Recuerda que los informes pueden ser marcados como favoritos.', + 'incomeVsExpenses' => 'Ingresos vs. gastos', + 'accountBalances' => 'Balances de cuentas', + 'balanceStart' => 'Balance al inicio de un periodo', + 'balanceEnd' => 'Balance al final de un periodo', + 'splitByAccount' => 'Separada por cuenta', + 'coveredWithTags' => 'Cubierta con etiquetas', + 'leftInBudget' => 'Disponible en presupuesto', + 'left_in_debt' => 'Importe debido', + 'sumOfSums' => 'Suma de sumas', + 'noCategory' => '(sin categoría)', + 'notCharged' => 'No cargado (todavía)', + 'inactive' => 'Inactivo', + 'active' => 'Activo', + 'difference' => 'Diferente', + 'money_flowing_in' => 'Entrada', + 'money_flowing_out' => 'Salida', + 'topX' => 'tope :number', + 'show_full_list' => 'Mostrar lista entera', + 'show_only_top' => 'Mostrar solo tope :number', + 'report_type' => 'Tipo de reporte', + 'report_type_default' => 'Informe financiero predeterminado', + 'report_type_audit' => 'Resumen del historial de transacciones (auditar)', + 'report_type_category' => 'Reporte de categoría', + 'report_type_budget' => 'Reporte de presupuesto', + 'report_type_tag' => 'Reporte de etiqueta', + 'report_type_double' => 'Informe de cuenta de gastos/ingresos', + 'more_info_help' => 'Puedes encontrar más información sobre estos tipos de informes en las páginas de ayuda. Pulsa el icono (?) En la esquina superior derecha.', + 'report_included_accounts' => 'Cuentas incluidas', + 'report_date_range' => 'Rango de fechas', + 'report_preset_ranges' => 'Rangos preestablecidos', + 'shared' => 'Compartido', + 'fiscal_year' => 'Año fiscal', + 'income_entry' => 'Ingresos de la cuenta ":name" entre :start y :end', + 'expense_entry' => 'Gastos a cuenta ":name" entre :start y :end', + 'category_entry' => 'Gastos e ingresos en la categoría ":name" entre :start y :end', + 'budget_spent_amount' => 'Gastos en presupuesto ":budget" entre :start y :end', + 'balance_amount' => 'Gastos en presupuesto ":budget" pago desde la cuenta ":account" entre :start y :end', + 'no_audit_activity' => 'Ninguna actividad fue registrada en la cuenta :account_name entre :start y :end.', + 'audit_end_balance' => 'Saldo de cuenta de :account_name en el final de :end fue :balance', + 'reports_extra_options' => 'Opciones adicionales', + 'report_has_no_extra_options' => 'Este informe no tiene opciones adicionales', + 'reports_submit' => 'Ver informe', + 'end_after_start_date' => 'Fecha final de reporte debe ser después de la fecha de inicio.', + 'select_category' => 'Seleccionar categoría (as)', + 'select_budget' => 'Seleccionar presupuesto (s).', + 'select_tag' => 'Seleccionar etiqueta (s).', + 'income_per_category' => 'Ingresos por categoria', + 'expense_per_category' => 'Gastos por categoria', + 'expense_per_budget' => 'Gastos por presupuestos', + 'income_per_account' => 'Ingresos por cuenta', + 'expense_per_account' => 'Gastos por cuenta', + 'expense_per_tag' => 'Gastos por etiqueta', + 'income_per_tag' => 'Ingreso por etiqueta', + 'include_expense_not_in_budget' => 'Gastos incluidos que no están en el presupuesto (s) seleccionado', + 'include_expense_not_in_account' => 'Gastos incluidos que no están en la cuenta (s) seleccionada', + 'include_expense_not_in_category' => 'Gastos incluidos que no están en la categoría (s) seleccionada', + 'include_income_not_in_category' => 'Ingresos incluidos que no estan en la categoria (s) seleccionada', + 'include_income_not_in_account' => 'Ingresos incluidos que no están en la cuenta (s) seleccionada', + 'include_income_not_in_tags' => 'Ingresos incluidos no en la etiqueta (s) seleccionadas', + 'include_expense_not_in_tags' => 'Gastos incluidos no seleccionados con etiqueta', + 'everything_else' => 'Todo lo demas', + 'income_and_expenses' => 'Ingresos y gastos', + 'spent_average' => 'Gastado (promedio)', + 'income_average' => 'Ingresos (promedio)', + 'transaction_count' => 'Cuenta de transacciones', + 'average_spending_per_account' => 'Promedio de gasto por cuenta', + 'average_income_per_account' => 'Promedio de ingreso por cuenta', + 'total' => 'Total', + 'description' => 'Descripción', + 'sum_of_period' => 'Suma de período', + 'average_in_period' => 'Promedio en el período', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Cuentas de ingresos por defecto', + 'account_role_sharedAsset' => 'Cuenta de ingresos compartida', + 'account_role_savingAsset' => 'Cuentas de ahorros', + 'account_role_ccAsset' => 'Tarjeta de Crédito', + 'account_role_cashWalletAsset' => 'Billetera de efectivo', + 'budget_chart_click' => 'Por favor de click el nombre del presupuesto en la tabla de arriba para ver el cuadro.', + 'category_chart_click' => 'Por favor de click en el nombre de categoría en la tabla de arriba para ver el cuadro.', + 'in_out_accounts' => 'Ganado y gastado por combinación', + 'in_out_accounts_per_asset' => 'Ganado y gastado (por cuenta de activos)', + 'in_out_per_category' => 'Ganado y gastado por categoría', + 'out_per_budget' => 'Gasto por presupuesto', + 'select_expense_revenue' => 'Seleccione cuenta de gastos/ingresos', + 'multi_currency_report_sum' => 'Como esta lista contiene cuentas con múltiples monedas, la(s) suma(s) que veas puede no tener sentido. El reporte siempre figurará en tu moneda predeterminada.', + 'sum_in_default_currency' => 'La suma siempre estará en tu moneda predeterminada.', + 'net_filtered_prefs' => 'Este gráfico nunca incluirá cuentas que tengan la opción "Incluir en el valor neto" no marcada.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Grafico', - 'month' => 'Mes', - 'budget' => 'Presupuesto', - 'spent' => 'Gastado', - 'spent_capped' => 'Gastado (tope)', - 'spent_in_budget' => 'Gastado en presupuesto', - 'left_to_spend' => 'Disponible para gastar', - 'earned' => 'Ganado', - 'overspent' => 'Sobrepasadas', - 'left' => 'Disponible', - 'max-amount' => 'Cantidad máxima', - 'min-amount' => 'Monto mínimo', - 'journal-amount' => 'Entrada actual de factura', - 'name' => 'Nombre', - 'date' => 'Fecha', - 'date_and_time' => 'Fecha y hora', - 'time' => 'Hora', - 'paid' => 'Pagado', - 'unpaid' => 'No pagado', - 'day' => 'Día', - 'budgeted' => 'Presupuestado', - 'period' => 'Período', - 'balance' => 'Balance', - 'in_out_period' => 'Entrada y salida este periodo', - 'sum' => 'Suma', - 'summary' => 'Resumen', - 'average' => 'Promedio', - 'balanceFor' => 'Saldo por :name', - 'no_tags' => '(sin etiquetas)', - 'nothing_found' => '(no se encontró nada)', + 'chart' => 'Grafico', + 'month' => 'Mes', + 'budget' => 'Presupuesto', + 'spent' => 'Gastado', + 'spent_capped' => 'Gastado (tope)', + 'spent_in_budget' => 'Gastado en presupuesto', + 'left_to_spend' => 'Disponible para gastar', + 'earned' => 'Ganado', + 'overspent' => 'Sobrepasadas', + 'left' => 'Disponible', + 'max-amount' => 'Cantidad máxima', + 'min-amount' => 'Monto mínimo', + 'journal-amount' => 'Entrada actual de factura', + 'name' => 'Nombre', + 'date' => 'Fecha', + 'date_and_time' => 'Fecha y hora', + 'time' => 'Hora', + 'paid' => 'Pagado', + 'unpaid' => 'No pagado', + 'day' => 'Día', + 'budgeted' => 'Presupuestado', + 'period' => 'Período', + 'balance' => 'Balance', + 'in_out_period' => 'Entrada y salida este periodo', + 'sum' => 'Suma', + 'summary' => 'Resumen', + 'average' => 'Promedio', + 'balanceFor' => 'Saldo por :name', + 'no_tags' => '(sin etiquetas)', + 'nothing_found' => '(no se encontró nada)', // piggy banks: - 'event_history' => 'Historial de eventos', - 'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"', - 'piggy_bank' => 'Hucha', - 'new_piggy_bank' => 'Nueva hucha', - 'store_piggy_bank' => 'Crear hucha', - 'stored_piggy_bank' => 'Crear hucha ":name"', - 'account_status' => 'Estado de cuenta', - 'left_for_piggy_banks' => 'Apartado para las huchas', - 'sum_of_piggy_banks' => 'Total de las huchas', - 'saved_so_far' => 'Guardado hasta el momento', - 'left_to_save' => 'Disponible para ahorro', - 'suggested_amount' => 'Cantidad mensual sugerida para ahorrar', - 'add_money_to_piggy_title' => 'Añadir dinero a la hucha ":name"', - 'remove_money_from_piggy_title' => 'Quitar dinero de la hucha ":name"', - 'add' => 'Añadir', - 'no_money_for_piggy' => 'Usted no tiene dinero para añadir a esta hucha.', - 'suggested_savings_per_month' => 'Sugerido por mes', + 'event_history' => 'Historial de eventos', + 'add_money_to_piggy' => 'Añadir dinero a la hucha ":name"', + 'piggy_bank' => 'Hucha', + 'new_piggy_bank' => 'Nueva hucha', + 'store_piggy_bank' => 'Crear hucha', + 'stored_piggy_bank' => 'Crear hucha ":name"', + 'account_status' => 'Estado de cuenta', + 'left_for_piggy_banks' => 'Apartado para las huchas', + 'sum_of_piggy_banks' => 'Total de las huchas', + 'saved_so_far' => 'Guardado hasta el momento', + 'left_to_save' => 'Disponible para ahorro', + 'suggested_amount' => 'Cantidad mensual sugerida para ahorrar', + 'add_money_to_piggy_title' => 'Añadir dinero a la hucha ":name"', + 'remove_money_from_piggy_title' => 'Quitar dinero de la hucha ":name"', + 'add' => 'Añadir', + 'no_money_for_piggy' => 'Usted no tiene dinero para añadir a esta hucha.', + 'suggested_savings_per_month' => 'Sugerido por mes', - 'remove' => 'Eliminar', - 'max_amount_add' => 'La cantidad máxima que usted puede agregar es', - 'max_amount_remove' => 'La cantidad máxima que usted puede retirar es', - 'update_piggy_button' => 'Actualizar hucha', - 'update_piggy_title' => 'Actualizar hucha ":name"', - 'updated_piggy_bank' => 'Hucha ":name" actualizada', - 'details' => 'Detalles', - 'events' => 'Eventos', - 'target_amount' => 'Cantidad objetivo', - 'start_date' => 'Fecha de inicio', - 'no_start_date' => 'Sin fecha de inicio', - 'target_date' => 'Fecha objetivo', - 'no_target_date' => 'Sin fecha de objetivo', - 'table' => 'Mesa', - 'delete_piggy_bank' => 'Eliminar hucha ":name"', - 'cannot_add_amount_piggy' => 'No se pudo agregar :amount a ":name.".', - 'cannot_remove_from_piggy' => 'No se pudo eliminar :amount de :name.', - 'deleted_piggy_bank' => 'Hucha ":name" eliminada', - 'added_amount_to_piggy' => 'Agregado :amount a ":name"', - 'removed_amount_from_piggy' => 'Eliminado :amount de :name', - 'piggy_events' => 'Huchas relacionadas', + 'remove' => 'Eliminar', + 'max_amount_add' => 'La cantidad máxima que usted puede agregar es', + 'max_amount_remove' => 'La cantidad máxima que usted puede retirar es', + 'update_piggy_button' => 'Actualizar hucha', + 'update_piggy_title' => 'Actualizar hucha ":name"', + 'updated_piggy_bank' => 'Hucha ":name" actualizada', + 'details' => 'Detalles', + 'events' => 'Eventos', + 'target_amount' => 'Cantidad objetivo', + 'start_date' => 'Fecha de inicio', + 'no_start_date' => 'Sin fecha de inicio', + 'target_date' => 'Fecha objetivo', + 'no_target_date' => 'Sin fecha de objetivo', + 'table' => 'Mesa', + 'delete_piggy_bank' => 'Eliminar hucha ":name"', + 'cannot_add_amount_piggy' => 'No se pudo agregar :amount a ":name.".', + 'cannot_remove_from_piggy' => 'No se pudo eliminar :amount de :name.', + 'deleted_piggy_bank' => 'Hucha ":name" eliminada', + 'added_amount_to_piggy' => 'Agregado :amount a ":name"', + 'removed_amount_from_piggy' => 'Eliminado :amount de :name', + 'piggy_events' => 'Huchas relacionadas', // tags - 'delete_tag' => 'Eliminar etiqueta ":tag"', - 'deleted_tag' => 'Eliminar etiqueta ":tag"', - 'new_tag' => 'Hacer nueva etiqueta', - 'edit_tag' => 'Editar etiqueta ":tag"', - 'updated_tag' => 'Actualizar etiqueta ":tag"', - 'created_tag' => 'Etiqueta ":tag" ha sido creado!', + 'delete_tag' => 'Eliminar etiqueta ":tag"', + 'deleted_tag' => 'Eliminar etiqueta ":tag"', + 'new_tag' => 'Hacer nueva etiqueta', + 'edit_tag' => 'Editar etiqueta ":tag"', + 'updated_tag' => 'Actualizar etiqueta ":tag"', + 'created_tag' => 'Etiqueta ":tag" ha sido creado!', - 'transaction_journal_information' => 'Información de transacción', - 'transaction_journal_amount' => 'Información de cantidad', - 'transaction_journal_meta' => 'Información Meta', - 'transaction_journal_more' => 'Más información', - 'basic_journal_information' => 'Información básica de transacción', - 'transaction_journal_extra' => 'Información adicional', - 'att_part_of_journal' => 'Guardado en ":journal"', - 'total_amount' => 'Cantidad total', - 'number_of_decimals' => 'Número de decimales', + 'transaction_journal_information' => 'Información de transacción', + 'transaction_journal_amount' => 'Información de cantidad', + 'transaction_journal_meta' => 'Información Meta', + 'transaction_journal_more' => 'Más información', + 'basic_journal_information' => 'Información básica de transacción', + 'transaction_journal_extra' => 'Información adicional', + 'att_part_of_journal' => 'Guardado en ":journal"', + 'total_amount' => 'Cantidad total', + 'number_of_decimals' => 'Número de decimales', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'La invitación a ":address" ya ha sido canjeada.', - 'invite_is_deleted' => 'La invitación a ":address" ha sido eliminada.', - 'invite_new_user_title' => 'Invitar a un nuevo usuario', - 'invite_new_user_text' => 'Como administrador, puede invitar a los usuarios a registrarse en su instancia de Firefly III. Usando el enlace directo que puede compartir con ellos, podrán registrar una cuenta. El usuario invitado y su enlace de invitación aparecerán en la tabla de abajo. Es libre de compartir el enlace de invitación con ellos.', - 'invited_user_mail' => 'Dirección de correo electrónico', - 'invite_user' => 'Invitar a un usuario', - 'user_is_invited' => 'La dirección de correo electrónico ":address" ha sido invitada a Firefly III', - 'administration' => 'Administración', - 'system_settings' => 'Ajustes del sistema', - 'code_already_used' => 'Se ha utilizado el código de invitación', - 'user_administration' => 'Administración de usuarios', - 'list_all_users' => 'Todos los usuarios', - 'all_users' => 'Todo usuario', - 'instance_configuration' => 'Configuracion', - 'firefly_instance_configuration' => 'Opciones de configuración de Firefly III', - 'setting_single_user_mode' => 'Modo de usuario único', - 'setting_single_user_mode_explain' => 'Por defecto, Firefly III solo acepta un único usuario: tú. Esto es una medida de seguridad para impedir que otros utilicen su instancia a menos que lo permitas. Si desmarcas esta casilla, otros podrán registrarse en esta instancia si tienen acceso a ella.', - 'store_configuration' => 'Guardar configuración', - 'single_user_administration' => 'Administración de usuarios para :email', - 'edit_user' => 'Editar usuario :email', - 'hidden_fields_preferences' => 'Puede habilitar más opciones de transacción en sus ajustes .', - 'user_data_information' => 'Datos del usuario', - 'user_information' => 'Información del usuario', - 'total_size' => 'tamaño total', - 'budget_or_budgets' => ':count presupuesto|:count presupuestos', - 'budgets_with_limits' => ':count presupuesto con cantidad configurada|:count presupuestos con cantidad configurada', - 'nr_of_rules_in_total_groups' => ':count_rules reglas en :count_groups grupo de reglas', - 'tag_or_tags' => ':count etiqueta|:count etiquetas', - 'configuration_updated' => 'La configuración ha sido actualizada', - 'setting_is_demo_site' => 'Sitio de demostracion', - 'setting_is_demo_site_explain' => 'Si usted chequea esta casilla, esta instalación se comportara como si fuera el sitio de demostración, que puede tener efectos secundarios extraños.', - 'block_code_bounced' => 'Mensaje (s) de correo rebotados', - 'block_code_expired' => 'Cuenta de demostración vencida', - 'no_block_code' => 'No hay razón para el bloqueo o usuario bloqueado', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'El usuario no ha confirmado aun una nueva dirección de correo', - 'admin_update_email' => 'Contrario a la pagina de perfil, El usuario NO se notificara que su dirección de correo ha cambiado!', - 'update_user' => 'Actualizar usuario', - 'updated_user' => 'Los datos del usuario han sido cambiados.', - 'delete_user' => 'Eliminar usuario :email', - 'user_deleted' => 'El usuario ha sido eliminado', - 'send_test_email' => 'Enviar mensaje de correo electrónico de prueba', - 'send_test_email_text' => 'Para comprobar si su instalación es capaz de enviar correos o enviar mensajes en Slack, presione este botón. No verá un error aquí (si existiera), los registros mostrarán cualquier error. Puede usar este botón todas las veces que desee. No existe control de spam. El mensaje será enviado a :email y debería llegar en breve.', - 'send_message' => 'Enviar mensaje', - 'send_test_triggered' => 'La prueba fue disparada. Chequee su bandeja de entrada y archivos de registro.', - 'give_admin_careful' => 'Los usuarios a los que se les conceden derechos de administrador pueden quitarte el tuyo. Ten cuidado.', - 'admin_maintanance_title' => 'Mantenimiento', - 'admin_maintanance_expl' => 'Algunos botones útiles para mantenimiento de Firefly III', - 'admin_maintenance_clear_cache' => 'Limpiar cache', - 'admin_notifications' => 'Notificaciones del administrador', - 'admin_notifications_expl' => 'Las siguientes notificaciones pueden ser activadas o desactivadas por el administrador. Si quiere recibir estos mensajes a través de Slack también, establezca la URL de "webhook entrante".', - 'admin_notification_check_user_new_reg' => 'El usuario recibe un mensaje de bienvenida tras el registro', - 'admin_notification_check_admin_new_reg' => 'Administrador(es) reciben una notificación de registro de un nuevo usuario', - 'admin_notification_check_new_version' => 'Una nueva versión está disponible', - 'admin_notification_check_invite_created' => 'Un usuario ha sido invitado a Firefly III', - 'admin_notification_check_invite_redeemed' => 'Una invitación de usuario ha sido canjeada', - 'all_invited_users' => 'Todos los usuarios invitados', - 'save_notification_settings' => 'Guardar ajustes', - 'notification_settings_saved' => 'Se han guardado los ajustes de notificación', + 'invite_is_already_redeemed' => 'La invitación a ":address" ya ha sido canjeada.', + 'invite_is_deleted' => 'La invitación a ":address" ha sido eliminada.', + 'invite_new_user_title' => 'Invitar a un nuevo usuario', + 'invite_new_user_text' => 'Como administrador, puede invitar a los usuarios a registrarse en su instancia de Firefly III. Usando el enlace directo que puede compartir con ellos, podrán registrar una cuenta. El usuario invitado y su enlace de invitación aparecerán en la tabla de abajo. Es libre de compartir el enlace de invitación con ellos.', + 'invited_user_mail' => 'Dirección de correo electrónico', + 'invite_user' => 'Invitar a un usuario', + 'user_is_invited' => 'La dirección de correo electrónico ":address" ha sido invitada a Firefly III', + 'administration' => 'Administración', + 'system_settings' => 'Ajustes del sistema', + 'code_already_used' => 'Se ha utilizado el código de invitación', + 'user_administration' => 'Administración de usuarios', + 'list_all_users' => 'Todos los usuarios', + 'all_users' => 'Todo usuario', + 'instance_configuration' => 'Configuracion', + 'firefly_instance_configuration' => 'Opciones de configuración de Firefly III', + 'setting_single_user_mode' => 'Modo de usuario único', + 'setting_single_user_mode_explain' => 'Por defecto, Firefly III solo acepta un único usuario: tú. Esto es una medida de seguridad para impedir que otros utilicen su instancia a menos que lo permitas. Si desmarcas esta casilla, otros podrán registrarse en esta instancia si tienen acceso a ella.', + 'store_configuration' => 'Guardar configuración', + 'single_user_administration' => 'Administración de usuarios para :email', + 'edit_user' => 'Editar usuario :email', + 'hidden_fields_preferences' => 'Puede habilitar más opciones de transacción en sus ajustes .', + 'user_data_information' => 'Datos del usuario', + 'user_information' => 'Información del usuario', + 'total_size' => 'tamaño total', + 'budget_or_budgets' => ':count presupuesto|:count presupuestos', + 'budgets_with_limits' => ':count presupuesto con cantidad configurada|:count presupuestos con cantidad configurada', + 'nr_of_rules_in_total_groups' => ':count_rules reglas en :count_groups grupo de reglas', + 'tag_or_tags' => ':count etiqueta|:count etiquetas', + 'configuration_updated' => 'La configuración ha sido actualizada', + 'setting_is_demo_site' => 'Sitio de demostracion', + 'setting_is_demo_site_explain' => 'Si usted chequea esta casilla, esta instalación se comportara como si fuera el sitio de demostración, que puede tener efectos secundarios extraños.', + 'block_code_bounced' => 'Mensaje (s) de correo rebotados', + 'block_code_expired' => 'Cuenta de demostración vencida', + 'no_block_code' => 'No hay razón para el bloqueo o usuario bloqueado', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'El usuario no ha confirmado aun una nueva dirección de correo', + 'admin_update_email' => 'Contrario a la pagina de perfil, El usuario NO se notificara que su dirección de correo ha cambiado!', + 'update_user' => 'Actualizar usuario', + 'updated_user' => 'Los datos del usuario han sido cambiados.', + 'delete_user' => 'Eliminar usuario :email', + 'user_deleted' => 'El usuario ha sido eliminado', + 'send_test_email' => 'Enviar mensaje de correo electrónico de prueba', + 'send_test_email_text' => 'Para comprobar si su instalación es capaz de enviar correos o enviar mensajes en Slack, presione este botón. No verá un error aquí (si existiera), los registros mostrarán cualquier error. Puede usar este botón todas las veces que desee. No existe control de spam. El mensaje será enviado a :email y debería llegar en breve.', + 'send_message' => 'Enviar mensaje', + 'send_test_triggered' => 'La prueba fue disparada. Chequee su bandeja de entrada y archivos de registro.', + 'give_admin_careful' => 'Los usuarios a los que se les conceden derechos de administrador pueden quitarte el tuyo. Ten cuidado.', + 'admin_maintanance_title' => 'Mantenimiento', + 'admin_maintanance_expl' => 'Algunos botones útiles para mantenimiento de Firefly III', + 'admin_maintenance_clear_cache' => 'Limpiar cache', + 'admin_notifications' => 'Notificaciones del administrador', + 'admin_notifications_expl' => 'Las siguientes notificaciones pueden ser activadas o desactivadas por el administrador. Si quiere recibir estos mensajes a través de Slack también, establezca la URL de "webhook entrante".', + 'admin_notification_check_user_new_reg' => 'El usuario recibe un mensaje de bienvenida tras el registro', + 'admin_notification_check_admin_new_reg' => 'Administrador(es) reciben una notificación de registro de un nuevo usuario', + 'admin_notification_check_new_version' => 'Una nueva versión está disponible', + 'admin_notification_check_invite_created' => 'Un usuario ha sido invitado a Firefly III', + 'admin_notification_check_invite_redeemed' => 'Una invitación de usuario ha sido canjeada', + 'all_invited_users' => 'Todos los usuarios invitados', + 'save_notification_settings' => 'Guardar ajustes', + 'notification_settings_saved' => 'Se han guardado los ajustes de notificación', - 'split_transaction_title' => 'Descripción de la transacción dividida', - 'split_transaction_title_help' => 'Si crea una transacción dividida, debe existir una descripción global para todas las divisiones de la transacción.', - 'split_title_help' => 'Si crea una transacción dividida, debe haber una descripción global para todos los fragmentos de la transacción.', - 'you_create_transfer' => 'Está creando una transferencia.', - 'you_create_withdrawal' => 'Está creando un gasto.', - 'you_create_deposit' => 'Está creando un ingreso.', + 'split_transaction_title' => 'Descripción de la transacción dividida', + 'split_transaction_title_help' => 'Si crea una transacción dividida, debe existir una descripción global para todas las divisiones de la transacción.', + 'split_title_help' => 'Si crea una transacción dividida, debe haber una descripción global para todos los fragmentos de la transacción.', + 'you_create_transfer' => 'Está creando una transferencia.', + 'you_create_withdrawal' => 'Está creando un gasto.', + 'you_create_deposit' => 'Está creando un ingreso.', // links - 'journal_link_configuration' => 'Configuración de enlaces de transacción', - 'create_new_link_type' => 'Crear un nuevo tipo de enlace', - 'store_new_link_type' => 'Crear tipo de enlace', - 'update_link_type' => 'Actualizar tipo de enlace', - 'edit_link_type' => 'Editar tipo de enlace ":name"', - 'updated_link_type' => 'Actualizar tipo de enlace ":name"', - 'delete_link_type' => 'Eliminar tipo de enlace ":name"', - 'deleted_link_type' => 'Eliminar tipo de enlace ":name"', - 'stored_new_link_type' => 'Guardar nuevo tipo de enlace ":name"', - 'cannot_edit_link_type' => 'No puede editar el tipo de enlace ":name"', - 'link_type_help_name' => 'Ie "Duplicados"', - 'link_type_help_inward' => 'Ie."duplicados"', - 'link_type_help_outward' => 'Ie."esta duplicado por"', - 'save_connections_by_moving' => 'Guarde el enlace entre estas transacciones moviéndolas a otro tipo de enlace:', - 'do_not_save_connection' => '(no guarde la conexión)', - 'link_transaction' => 'Enlazar transacción', - 'link_to_other_transaction' => 'Enlazar esta transacción con otra', - 'select_transaction_to_link' => 'Seleccione una transacción para enlazar esta transacción. Los enlaces no están siendo utilizados actualmente en Firefly III (aparte de ser mostrados), esto cambiará en el futuro. Utilice la casilla de búsqueda para seleccionar una transacción por título o por ID. Si desea agregar tipos de enlace personalizados, compruebe la sección de administración.', - 'this_transaction' => 'Esta transacción', - 'transaction' => 'Transaccion', - 'comments' => 'Comentarios', - 'link_notes' => 'Cualquier nota que desee almacenar con el enlace.', - 'invalid_link_selection' => 'No se puede vincular esta transacción', - 'selected_transaction' => 'Transacción seleccionada', - 'journals_linked' => 'Las transacciones están vinculadas.', - 'journals_error_linked' => 'Estas transacciones ya están vinculadas.', - 'journals_link_to_self' => 'No puede relacionar una transacción consigo misma', - 'journal_links' => 'Enlaces de transacciones', - 'this_withdrawal' => 'Este gasto', - 'this_deposit' => 'Este ingreso', - 'this_transfer' => 'Esta transferencia', - 'overview_for_link' => 'Visión en conjunto para el tipo de enlace ":name"', - 'source_transaction' => 'Transacción fuente', - 'link_description' => 'Descripción de enlace', - 'destination_transaction' => 'Transacción de destino', - 'delete_journal_link' => 'Elimine el link entre :source y :destination', - 'deleted_link' => 'Enlace borrado', + 'journal_link_configuration' => 'Configuración de enlaces de transacción', + 'create_new_link_type' => 'Crear un nuevo tipo de enlace', + 'store_new_link_type' => 'Crear tipo de enlace', + 'update_link_type' => 'Actualizar tipo de enlace', + 'edit_link_type' => 'Editar tipo de enlace ":name"', + 'updated_link_type' => 'Actualizar tipo de enlace ":name"', + 'delete_link_type' => 'Eliminar tipo de enlace ":name"', + 'deleted_link_type' => 'Eliminar tipo de enlace ":name"', + 'stored_new_link_type' => 'Guardar nuevo tipo de enlace ":name"', + 'cannot_edit_link_type' => 'No puede editar el tipo de enlace ":name"', + 'link_type_help_name' => 'Ie "Duplicados"', + 'link_type_help_inward' => 'Ie."duplicados"', + 'link_type_help_outward' => 'Ie."esta duplicado por"', + 'save_connections_by_moving' => 'Guarde el enlace entre estas transacciones moviéndolas a otro tipo de enlace:', + 'do_not_save_connection' => '(no guarde la conexión)', + 'link_transaction' => 'Enlazar transacción', + 'link_to_other_transaction' => 'Enlazar esta transacción con otra', + 'select_transaction_to_link' => 'Seleccione una transacción para enlazar esta transacción. Los enlaces no están siendo utilizados actualmente en Firefly III (aparte de ser mostrados), esto cambiará en el futuro. Utilice la casilla de búsqueda para seleccionar una transacción por título o por ID. Si desea agregar tipos de enlace personalizados, compruebe la sección de administración.', + 'this_transaction' => 'Esta transacción', + 'transaction' => 'Transaccion', + 'comments' => 'Comentarios', + 'link_notes' => 'Cualquier nota que desee almacenar con el enlace.', + 'invalid_link_selection' => 'No se puede vincular esta transacción', + 'selected_transaction' => 'Transacción seleccionada', + 'journals_linked' => 'Las transacciones están vinculadas.', + 'journals_error_linked' => 'Estas transacciones ya están vinculadas.', + 'journals_link_to_self' => 'No puede relacionar una transacción consigo misma', + 'journal_links' => 'Enlaces de transacciones', + 'this_withdrawal' => 'Este gasto', + 'this_deposit' => 'Este ingreso', + 'this_transfer' => 'Esta transferencia', + 'overview_for_link' => 'Visión en conjunto para el tipo de enlace ":name"', + 'source_transaction' => 'Transacción fuente', + 'link_description' => 'Descripción de enlace', + 'destination_transaction' => 'Transacción de destino', + 'delete_journal_link' => 'Elimine el link entre :source y :destination', + 'deleted_link' => 'Enlace borrado', // link translations: - 'Paid_name' => 'Pagado', - 'Refund_name' => 'Reembolso', - 'Reimbursement_name' => 'Reembolso', - 'Related_name' => 'Relacionado', - 'relates to_inward' => 'relacionado con', - 'is (partially) refunded by_inward' => 'es (parcialmente) devuelto por', - 'is (partially) paid for by_inward' => 'es(parcialmente) pagado por', - 'is (partially) reimbursed by_inward' => 'es(parcialmente) reembolsado por', - 'inward_transaction' => 'Transacción interna', - 'outward_transaction' => 'Transacción externa', - 'relates to_outward' => 'relacionado con', - '(partially) refunds_outward' => '(parcialmente) reembolso', - '(partially) pays for_outward' => '(parcialmente) paga por', - '(partially) reimburses_outward' => '(parcialmente) reembolsa', - 'is (partially) refunded by' => 'es (parcialmente) devuelto por', - 'is (partially) paid for by' => 'es(parcialmente) pagado por', - 'is (partially) reimbursed by' => 'es(parcialmente) reembolsado por', - 'relates to' => 'relacionado con', - '(partially) refunds' => '(parcialmente) reembolsado', - '(partially) pays for' => 'paga (parcialmente) por', - '(partially) reimburses' => 'reembolsa (parcialmente)', + 'Paid_name' => 'Pagado', + 'Refund_name' => 'Reembolso', + 'Reimbursement_name' => 'Reembolso', + 'Related_name' => 'Relacionado', + 'relates to_inward' => 'relacionado con', + 'is (partially) refunded by_inward' => 'es (parcialmente) devuelto por', + 'is (partially) paid for by_inward' => 'es(parcialmente) pagado por', + 'is (partially) reimbursed by_inward' => 'es(parcialmente) reembolsado por', + 'inward_transaction' => 'Transacción interna', + 'outward_transaction' => 'Transacción externa', + 'relates to_outward' => 'relacionado con', + '(partially) refunds_outward' => '(parcialmente) reembolso', + '(partially) pays for_outward' => '(parcialmente) paga por', + '(partially) reimburses_outward' => '(parcialmente) reembolsa', + 'is (partially) refunded by' => 'es (parcialmente) devuelto por', + 'is (partially) paid for by' => 'es(parcialmente) pagado por', + 'is (partially) reimbursed by' => 'es(parcialmente) reembolsado por', + 'relates to' => 'relacionado con', + '(partially) refunds' => '(parcialmente) reembolsado', + '(partially) pays for' => 'paga (parcialmente) por', + '(partially) reimburses' => 'reembolsa (parcialmente)', // split a transaction: - 'splits' => 'Divisiones', - 'add_another_split' => 'Añadir otra división', - 'cannot_edit_opening_balance' => 'Usted no puede editar el balance de apertura de una cuenta.', - 'no_edit_multiple_left' => 'Usted no ha seleccionado transacciones válidas para editar.', - 'breadcrumb_convert_group' => 'Convertir transacción', - 'convert_invalid_source' => 'La información de origen no es válida para la transacción #%d.', - 'convert_invalid_destination' => 'La información de destino no es válida para la transacción #%d.', - 'create_another' => 'Después de guardar, vuelve aquí para crear otro.', - 'after_update_create_another' => 'Después de actualizar, vuelve aquí para continuar editando.', - 'store_as_new' => 'Almacenar como una nueva transacción en lugar de actualizar.', - 'reset_after' => 'Restablecer formulario después del envío', - 'errors_submission' => 'Hubo un problema con su envío. Por favor, compruebe los siguientes errores.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expandir división', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Colapsar división', + 'splits' => 'Divisiones', + 'add_another_split' => 'Añadir otra división', + 'cannot_edit_opening_balance' => 'Usted no puede editar el balance de apertura de una cuenta.', + 'no_edit_multiple_left' => 'Usted no ha seleccionado transacciones válidas para editar.', + 'breadcrumb_convert_group' => 'Convertir transacción', + 'convert_invalid_source' => 'La información de origen no es válida para la transacción #%d.', + 'convert_invalid_destination' => 'La información de destino no es válida para la transacción #%d.', + 'create_another' => 'Después de guardar, vuelve aquí para crear otro.', + 'after_update_create_another' => 'Después de actualizar, vuelve aquí para continuar editando.', + 'store_as_new' => 'Almacenar como una nueva transacción en lugar de actualizar.', + 'reset_after' => 'Restablecer formulario después del envío', + 'errors_submission' => 'Hubo un problema con su envío. Por favor, compruebe los siguientes errores.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expandir división', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Colapsar división', // object groups - 'default_group_title_name' => '(sin agrupación)', - 'default_group_title_name_plain' => 'sin agrupar', + 'default_group_title_name' => '(sin agrupación)', + 'default_group_title_name_plain' => 'sin agrupar', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => '¡Vamos a crear una cuenta de activos!', - 'no_accounts_intro_asset' => 'Usted aun no tiene cuenta de activos. las cuentas de activos son sus cuentas principales: sus cuentas de cheques, cuenta de ahorros, cuenta compartida o incluso su tarjeta de crédito.', - 'no_accounts_imperative_asset' => 'Para comenzar a utilizar Firefly III Usted debe crear al menos una cuenta de activo. Vamos a hacerlo ahora:', - 'no_accounts_create_asset' => 'Crear una cuenta de activos', - 'no_accounts_title_expense' => '¡Vamos a crear una cuenta de gastos!', - 'no_accounts_intro_expense' => 'Usted aun no tiene cuentas de gastos. Las cuentas de gastos son los lugares donde se gasta dinero, tales como tiendas y supermercados.', - 'no_accounts_imperative_expense' => 'Las cuentas de gastos se crean automáticamente cuando crea transacciones, pero usted puede crear una manualmente también. si usted quiere. vamos a crear una ahora:', - 'no_accounts_create_expense' => 'Crear una cuenta de gastos', - 'no_accounts_title_revenue' => '¡Vamos a crear una cuenta de ingresos!', - 'no_accounts_intro_revenue' => 'Usted no tiene cuentas de ingresos aun. Cuentas de ingresos son los lugares donde usted recibe dinero, como su empleador.', - 'no_accounts_imperative_revenue' => 'Las cuentas de ganancias se crean automáticamente cuando usted crea transacciones, pero usted puede crear una manualmente también, si usted quiere. vamos a crear una ahora:', - 'no_accounts_create_revenue' => 'Crear una cuenta de ingresos', - 'no_accounts_title_liabilities' => '¡Vamos a crear un pasivo!', - 'no_accounts_intro_liabilities' => 'Todavía no tienes pasivos. Los pasivos son las cuentas que registran sus préstamos y otras deudas.', - 'no_accounts_imperative_liabilities' => 'No necesita usar esta función pero, puede ser muy útil si desea hacer un seguimiento de estas cosas.', - 'no_accounts_create_liabilities' => 'Crear un pasivo', - 'no_budgets_title_default' => 'Vamos a crear un presupuesto', - 'no_rules_title_default' => 'Vamos a crear una regla', - 'no_budgets_intro_default' => 'Todavía no tienes presupuestos. Los presupuestos se usan para organizar tus gastos en grupos, a los que puedes asignar un tope para limitarlos.', - 'no_rules_intro_default' => 'Aún no tiene reglas. Las reglas son potentes automatizaciones que pueden manejar transacciones por usted.', - 'no_rules_imperative_default' => 'Las reglas pueden ser muy útiles cuando está gestionando transacciones. Vamos a crear una ahora:', - 'no_budgets_imperative_default' => 'Los presupuestos son las herramientas básicas de la gestión financiera. Vamos a crear uno ahora:', - 'no_budgets_create_default' => 'Crear un presupuesto', - 'no_rules_create_default' => 'Crear regla', - 'no_categories_title_default' => '¡Vamos a crear una categoría!', - 'no_categories_intro_default' => 'Todavía no tienes categorías. Las categorías se utilizan para ajustar sus transacciones y etiquetarlas con su categoría designada.', - 'no_categories_imperative_default' => 'Las categorías se crean automáticamente al crear transacciones, pero también puedes crearlas manualmente. Vamos a crear una:', - 'no_categories_create_default' => 'Crear una categoría', - 'no_tags_title_default' => '¡Vamos a crear una etiqueta!', - 'no_tags_intro_default' => 'Todavía no tienes etiquetas. Las etiquetas se utilizan para ajustar tus transacciones y etiquetarlas con palabras clave específicas.', - 'no_tags_imperative_default' => 'Las etiquetas se crean automáticamente al crear transacciones, pero también puedes crearlas manualmente. Vamos a crear una:', - 'no_tags_create_default' => 'Crear etiqueta', - 'no_transactions_title_withdrawal' => '¡Vamos a crear un gasto!', - 'no_transactions_intro_withdrawal' => 'Usted no tiene gastos todavía. Usted debe crear gastos paran comenzar a administrar sus finanzas.', - 'no_transactions_imperative_withdrawal' => '¿Has gastado algo de dinero? Entonces usted debería escribirlo:', - 'no_transactions_create_withdrawal' => 'Crear un gasto', - 'no_transactions_title_deposit' => '¡Vamos a crear algún ingreso!', - 'no_transactions_intro_deposit' => 'Usted no tiene gastos grabados todavía. Usted debe crear entradas de ingresos para comenzar a gerenciar sus finanzas.', - 'no_transactions_imperative_deposit' => '¿ A recibido usted algún dinero? Entonces usted debería escribirlo:', - 'no_transactions_create_deposit' => 'Cree un ingreso', - 'no_transactions_title_transfers' => '¡Vamos a crear una tranferencia!', - 'no_transactions_intro_transfers' => 'Usted no tiene transferencias aun. Cuando usted mueve dinero entre cuentas de activos, se registra como una transferencia.', - 'no_transactions_imperative_transfers' => '¿Has movido algo de dinero? Entonces usted debería escribirlo:', - 'no_transactions_create_transfers' => 'Crear una transferencia', - 'no_piggies_title_default' => '¡Vamos a crear una hucha!', - 'no_piggies_intro_default' => 'Aún no tienes huchas. Puedes crear huchas para dividir tus ahorros y hacer un seguimiento de lo que estés ahorrando.', - 'no_piggies_imperative_default' => '¿Tiene cosas para las cuales está ahorrando dinero? Cree una hucha y haga su seguimiento:', - 'no_piggies_create_default' => 'Crear una nueva hucha', - 'no_bills_title_default' => '¡Vamos a crear una factura!', - 'no_bills_intro_default' => 'Usted no tiene facturas aun. Usted puede crear facturas para hacer un seguimiento de los gastos regulares, como su alquiler o el seguro.', - 'no_bills_imperative_default' => '¿Tienes facturas periódicas? Crea una factura y haz un seguimiento de tus pagos:', - 'no_bills_create_default' => 'Crear una factura', + 'no_accounts_title_asset' => '¡Vamos a crear una cuenta de activos!', + 'no_accounts_intro_asset' => 'Usted aun no tiene cuenta de activos. las cuentas de activos son sus cuentas principales: sus cuentas de cheques, cuenta de ahorros, cuenta compartida o incluso su tarjeta de crédito.', + 'no_accounts_imperative_asset' => 'Para comenzar a utilizar Firefly III Usted debe crear al menos una cuenta de activo. Vamos a hacerlo ahora:', + 'no_accounts_create_asset' => 'Crear una cuenta de activos', + 'no_accounts_title_expense' => '¡Vamos a crear una cuenta de gastos!', + 'no_accounts_intro_expense' => 'Usted aun no tiene cuentas de gastos. Las cuentas de gastos son los lugares donde se gasta dinero, tales como tiendas y supermercados.', + 'no_accounts_imperative_expense' => 'Las cuentas de gastos se crean automáticamente cuando crea transacciones, pero usted puede crear una manualmente también. si usted quiere. vamos a crear una ahora:', + 'no_accounts_create_expense' => 'Crear una cuenta de gastos', + 'no_accounts_title_revenue' => '¡Vamos a crear una cuenta de ingresos!', + 'no_accounts_intro_revenue' => 'Usted no tiene cuentas de ingresos aun. Cuentas de ingresos son los lugares donde usted recibe dinero, como su empleador.', + 'no_accounts_imperative_revenue' => 'Las cuentas de ganancias se crean automáticamente cuando usted crea transacciones, pero usted puede crear una manualmente también, si usted quiere. vamos a crear una ahora:', + 'no_accounts_create_revenue' => 'Crear una cuenta de ingresos', + 'no_accounts_title_liabilities' => '¡Vamos a crear un pasivo!', + 'no_accounts_intro_liabilities' => 'Todavía no tienes pasivos. Los pasivos son las cuentas que registran sus préstamos y otras deudas.', + 'no_accounts_imperative_liabilities' => 'No necesita usar esta función pero, puede ser muy útil si desea hacer un seguimiento de estas cosas.', + 'no_accounts_create_liabilities' => 'Crear un pasivo', + 'no_budgets_title_default' => 'Vamos a crear un presupuesto', + 'no_rules_title_default' => 'Vamos a crear una regla', + 'no_budgets_intro_default' => 'Todavía no tienes presupuestos. Los presupuestos se usan para organizar tus gastos en grupos, a los que puedes asignar un tope para limitarlos.', + 'no_rules_intro_default' => 'Aún no tiene reglas. Las reglas son potentes automatizaciones que pueden manejar transacciones por usted.', + 'no_rules_imperative_default' => 'Las reglas pueden ser muy útiles cuando está gestionando transacciones. Vamos a crear una ahora:', + 'no_budgets_imperative_default' => 'Los presupuestos son las herramientas básicas de la gestión financiera. Vamos a crear uno ahora:', + 'no_budgets_create_default' => 'Crear un presupuesto', + 'no_rules_create_default' => 'Crear regla', + 'no_categories_title_default' => '¡Vamos a crear una categoría!', + 'no_categories_intro_default' => 'Todavía no tienes categorías. Las categorías se utilizan para ajustar sus transacciones y etiquetarlas con su categoría designada.', + 'no_categories_imperative_default' => 'Las categorías se crean automáticamente al crear transacciones, pero también puedes crearlas manualmente. Vamos a crear una:', + 'no_categories_create_default' => 'Crear una categoría', + 'no_tags_title_default' => '¡Vamos a crear una etiqueta!', + 'no_tags_intro_default' => 'Todavía no tienes etiquetas. Las etiquetas se utilizan para ajustar tus transacciones y etiquetarlas con palabras clave específicas.', + 'no_tags_imperative_default' => 'Las etiquetas se crean automáticamente al crear transacciones, pero también puedes crearlas manualmente. Vamos a crear una:', + 'no_tags_create_default' => 'Crear etiqueta', + 'no_transactions_title_withdrawal' => '¡Vamos a crear un gasto!', + 'no_transactions_intro_withdrawal' => 'Usted no tiene gastos todavía. Usted debe crear gastos paran comenzar a administrar sus finanzas.', + 'no_transactions_imperative_withdrawal' => '¿Has gastado algo de dinero? Entonces usted debería escribirlo:', + 'no_transactions_create_withdrawal' => 'Crear un gasto', + 'no_transactions_title_deposit' => '¡Vamos a crear algún ingreso!', + 'no_transactions_intro_deposit' => 'Usted no tiene gastos grabados todavía. Usted debe crear entradas de ingresos para comenzar a gerenciar sus finanzas.', + 'no_transactions_imperative_deposit' => '¿ A recibido usted algún dinero? Entonces usted debería escribirlo:', + 'no_transactions_create_deposit' => 'Cree un ingreso', + 'no_transactions_title_transfers' => '¡Vamos a crear una tranferencia!', + 'no_transactions_intro_transfers' => 'Usted no tiene transferencias aun. Cuando usted mueve dinero entre cuentas de activos, se registra como una transferencia.', + 'no_transactions_imperative_transfers' => '¿Has movido algo de dinero? Entonces usted debería escribirlo:', + 'no_transactions_create_transfers' => 'Crear una transferencia', + 'no_piggies_title_default' => '¡Vamos a crear una hucha!', + 'no_piggies_intro_default' => 'Aún no tienes huchas. Puedes crear huchas para dividir tus ahorros y hacer un seguimiento de lo que estés ahorrando.', + 'no_piggies_imperative_default' => '¿Tiene cosas para las cuales está ahorrando dinero? Cree una hucha y haga su seguimiento:', + 'no_piggies_create_default' => 'Crear una nueva hucha', + 'no_bills_title_default' => '¡Vamos a crear una factura!', + 'no_bills_intro_default' => 'Usted no tiene facturas aun. Usted puede crear facturas para hacer un seguimiento de los gastos regulares, como su alquiler o el seguro.', + 'no_bills_imperative_default' => '¿Tienes facturas periódicas? Crea una factura y haz un seguimiento de tus pagos:', + 'no_bills_create_default' => 'Crear una factura', // recurring transactions - 'create_right_now' => 'Crear ahora mismo', - 'no_new_transaction_in_recurrence' => 'No se ha creado ninguna nueva transacción. ¿Tal vez ya ha sido lanzada para esta fecha?', - 'recurrences' => 'Transacciones Recurrentes', - 'repeat_until_in_past' => 'Esta transacción recurrente dejó de repetirse el :date.', - 'recurring_calendar_view' => 'Calendario', - 'no_recurring_title_default' => 'Vamos a crear una transacción recurrente!', - 'no_recurring_intro_default' => 'Usted no tiene transacciones recurrentes aún. Puede usar esto para hacer que Firefly III cree transacciones por usted.', - 'no_recurring_imperative_default' => 'Esta es una característica bastante avanzada pero, puede ser extremadamente útil. Asegúrese de haber leído la documentación (?- Icono en la esquina derecha) antes de continuar.', - 'no_recurring_create_default' => 'Crear una transacción recurrente', - 'make_new_recurring' => 'Crear una transacción recurrente', - 'recurring_daily' => 'Diario', - 'recurring_weekly' => 'Cada semana los :weekday', - 'recurring_weekly_skip' => 'Cada :skip(er/a) semana en :weekday', - 'recurring_monthly' => 'Todos los meses, el :dayOfMonthº día', - 'recurring_monthly_skip' => 'Cada :skip(er/o) mes en el :dayOfMonth(er/o) día', - 'recurring_ndom' => 'Todos los meses, el :dayOfMonthº :weekday', - 'recurring_yearly' => 'Cada año en :date', - 'overview_for_recurrence' => 'Resumen de transacción recurrente ":title"', - 'warning_duplicates_repetitions' => 'En algunas ocasiones, las fechas aparecen duplicadas en esta lista. Esto puede ocurrir porque múltiples repeticiones chocan. Firefly III siempre generará una transacción por día.', - 'created_transactions' => 'Transacciones relacionadas', - 'expected_withdrawals' => 'Gastos previstos', - 'expected_deposits' => 'Ingresos previstos', - 'expected_transfers' => 'Transferencias previstas', - 'created_withdrawals' => 'Gastos creados', - 'created_deposits' => 'Ingresos creados', - 'created_transfers' => 'Transferencias creadas', - 'recurring_info' => 'Transacción recurrente :count / :total', - 'created_from_recurrence' => 'Creado a partir de transacción recurrente ":title" (#:id)', - 'recurring_never_cron' => 'Al parecer, el cron job necesario para realizar las transacciones recurrentes nunca se ejecutó. Esto es normal por supuesto, cuando acabas de instalar Firefly III pero, es algo que deberías configurar lo antes posible. Por favor, revisa las páginas de ayuda usando el ícono-(?) en la esquina derecha de la página.', - 'recurring_cron_long_ago' => 'Aparentemente han pasado mas de 36 horas desde que el cron job para dar soporte a las transacciones recurrentes se ha disparado por última vez. Está usted seguro que lo ha configurado correctamente? Por favor, revise las páginas de ayuda usando el ícono-(?) en la esquina derecha de la página.', + 'create_right_now' => 'Crear ahora mismo', + 'no_new_transaction_in_recurrence' => 'No se ha creado ninguna nueva transacción. ¿Tal vez ya ha sido lanzada para esta fecha?', + 'recurrences' => 'Transacciones Recurrentes', + 'repeat_until_in_past' => 'Esta transacción recurrente dejó de repetirse el :date.', + 'recurring_calendar_view' => 'Calendario', + 'no_recurring_title_default' => 'Vamos a crear una transacción recurrente!', + 'no_recurring_intro_default' => 'Usted no tiene transacciones recurrentes aún. Puede usar esto para hacer que Firefly III cree transacciones por usted.', + 'no_recurring_imperative_default' => 'Esta es una característica bastante avanzada pero, puede ser extremadamente útil. Asegúrese de haber leído la documentación (?- Icono en la esquina derecha) antes de continuar.', + 'no_recurring_create_default' => 'Crear una transacción recurrente', + 'make_new_recurring' => 'Crear una transacción recurrente', + 'recurring_daily' => 'Diario', + 'recurring_weekly' => 'Cada semana los :weekday', + 'recurring_weekly_skip' => 'Cada :skip(er/a) semana en :weekday', + 'recurring_monthly' => 'Todos los meses, el :dayOfMonthº día', + 'recurring_monthly_skip' => 'Cada :skip(er/o) mes en el :dayOfMonth(er/o) día', + 'recurring_ndom' => 'Todos los meses, el :dayOfMonthº :weekday', + 'recurring_yearly' => 'Cada año en :date', + 'overview_for_recurrence' => 'Resumen de transacción recurrente ":title"', + 'warning_duplicates_repetitions' => 'En algunas ocasiones, las fechas aparecen duplicadas en esta lista. Esto puede ocurrir porque múltiples repeticiones chocan. Firefly III siempre generará una transacción por día.', + 'created_transactions' => 'Transacciones relacionadas', + 'expected_withdrawals' => 'Gastos previstos', + 'expected_deposits' => 'Ingresos previstos', + 'expected_transfers' => 'Transferencias previstas', + 'created_withdrawals' => 'Gastos creados', + 'created_deposits' => 'Ingresos creados', + 'created_transfers' => 'Transferencias creadas', + 'recurring_info' => 'Transacción recurrente :count / :total', + 'created_from_recurrence' => 'Creado a partir de transacción recurrente ":title" (#:id)', + 'recurring_never_cron' => 'Al parecer, el cron job necesario para realizar las transacciones recurrentes nunca se ejecutó. Esto es normal por supuesto, cuando acabas de instalar Firefly III pero, es algo que deberías configurar lo antes posible. Por favor, revisa las páginas de ayuda usando el ícono-(?) en la esquina derecha de la página.', + 'recurring_cron_long_ago' => 'Aparentemente han pasado mas de 36 horas desde que el cron job para dar soporte a las transacciones recurrentes se ha disparado por última vez. Está usted seguro que lo ha configurado correctamente? Por favor, revise las páginas de ayuda usando el ícono-(?) en la esquina derecha de la página.', - 'create_new_recurrence' => 'Crear transacción recurrente', - 'help_first_date' => 'Indique la primera recurrencia esperada. Esto debe ser en un tiempo futuro.', - 'help_first_date_no_past' => 'Indique la primera recurrencia esperada. Firefly III no creará transacciones en el pasado.', - 'no_currency' => '(sin moneda)', - 'mandatory_for_recurring' => 'Información de recurrencia obligatorio', - 'mandatory_for_transaction' => 'Información obligatoria de transacción', - 'optional_for_recurring' => 'Información de recurrencia opcional', - 'optional_for_transaction' => 'Información de transacción opcional', - 'change_date_other_options' => 'Cambie la "primera fecha" para ver más opciones.', - 'mandatory_fields_for_tranaction' => 'Los valores de aquí van a terminar en las transaccion(es) que se están creando', - 'click_for_calendar' => 'Haga clic aquí para ver un calendario que le muestra cuando se repetirá la transacción.', - 'repeat_forever' => 'Repetir por siempre', - 'repeat_until_date' => 'Repetir hasta', - 'repeat_times' => 'Repetir un número de veces', - 'recurring_skips_one' => 'Intercalado', - 'recurring_skips_more' => 'Saltea :count ocurrencias', - 'store_new_recurrence' => 'Crear transacción recurrente', - 'stored_new_recurrence' => 'Transacción recurrente ":title" almacenada con éxito.', - 'edit_recurrence' => 'Editar transacción recurrente ":title"', - 'recurring_repeats_until' => 'Repetir hasta :date', - 'recurring_repeats_forever' => 'Repetir por siempre', - 'recurring_repeats_x_times' => 'Repetir :count vez|Repetir :count veces', - 'update_recurrence' => 'Actualizar transacción recurrente', - 'updated_recurrence' => 'Transacción recurrente ":title" actualizada', - 'recurrence_is_inactive' => 'Esta transacción recurrente no está activa y no generará nuevas transacciones.', - 'delete_recurring' => 'Borrar Transacción Recurrente ":title"', - 'new_recurring_transaction' => 'Nueva Transacción Recurrente', - 'help_weekend' => '¿Qué debe hacer Firefly III cuando la transacción recurrente cae el sábado o el domingo?', - 'do_nothing' => 'Sólo crear la transacción', - 'skip_transaction' => 'Saltar la ocurrencia', - 'jump_to_friday' => 'Crear la transacción el viernes anterior en su lugar', - 'jump_to_monday' => 'Crear la transacción el lunes próximo en su lugar', - 'will_jump_friday' => 'Se creará el viernes en lugar de los fines de semana.', - 'will_jump_monday' => 'Se creará el lunes en lugar de los fines de semana.', - 'except_weekends' => 'Excluir los fines de semana', - 'recurrence_deleted' => 'Transacción recurrente ":title" eliminada', + 'create_new_recurrence' => 'Crear transacción recurrente', + 'help_first_date' => 'Indique la primera recurrencia esperada. Esto debe ser en un tiempo futuro.', + 'help_first_date_no_past' => 'Indique la primera recurrencia esperada. Firefly III no creará transacciones en el pasado.', + 'no_currency' => '(sin moneda)', + 'mandatory_for_recurring' => 'Información de recurrencia obligatorio', + 'mandatory_for_transaction' => 'Información obligatoria de transacción', + 'optional_for_recurring' => 'Información de recurrencia opcional', + 'optional_for_transaction' => 'Información de transacción opcional', + 'change_date_other_options' => 'Cambie la "primera fecha" para ver más opciones.', + 'mandatory_fields_for_tranaction' => 'Los valores de aquí van a terminar en las transaccion(es) que se están creando', + 'click_for_calendar' => 'Haga clic aquí para ver un calendario que le muestra cuando se repetirá la transacción.', + 'repeat_forever' => 'Repetir por siempre', + 'repeat_until_date' => 'Repetir hasta', + 'repeat_times' => 'Repetir un número de veces', + 'recurring_skips_one' => 'Intercalado', + 'recurring_skips_more' => 'Saltea :count ocurrencias', + 'store_new_recurrence' => 'Crear transacción recurrente', + 'stored_new_recurrence' => 'Transacción recurrente ":title" almacenada con éxito.', + 'edit_recurrence' => 'Editar transacción recurrente ":title"', + 'recurring_repeats_until' => 'Repetir hasta :date', + 'recurring_repeats_forever' => 'Repetir por siempre', + 'recurring_repeats_x_times' => 'Repetir :count vez|Repetir :count veces', + 'update_recurrence' => 'Actualizar transacción recurrente', + 'updated_recurrence' => 'Transacción recurrente ":title" actualizada', + 'recurrence_is_inactive' => 'Esta transacción recurrente no está activa y no generará nuevas transacciones.', + 'delete_recurring' => 'Borrar Transacción Recurrente ":title"', + 'new_recurring_transaction' => 'Nueva Transacción Recurrente', + 'help_weekend' => '¿Qué debe hacer Firefly III cuando la transacción recurrente cae el sábado o el domingo?', + 'do_nothing' => 'Sólo crear la transacción', + 'skip_transaction' => 'Saltar la ocurrencia', + 'jump_to_friday' => 'Crear la transacción el viernes anterior en su lugar', + 'jump_to_monday' => 'Crear la transacción el lunes próximo en su lugar', + 'will_jump_friday' => 'Se creará el viernes en lugar de los fines de semana.', + 'will_jump_monday' => 'Se creará el lunes en lugar de los fines de semana.', + 'except_weekends' => 'Excluir los fines de semana', + 'recurrence_deleted' => 'Transacción recurrente ":title" eliminada', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Gasto (:currency)', - 'box_earned_in_currency' => 'Ganado (:currency)', - 'box_budgeted_in_currency' => 'Presupuestado (:currency)', - 'box_bill_paid_in_currency' => 'Facturas pagadas (:currency)', - 'box_bill_unpaid_in_currency' => 'Facturas sin pagar (:currency)', - 'box_left_to_spend_in_currency' => 'Disponible para gasto (:currency)', - 'box_net_worth_in_currency' => 'Valor neto (:currency)', - 'box_spend_per_day' => 'Disponible para gasto diario: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Gasto (:currency)', + 'box_earned_in_currency' => 'Ganado (:currency)', + 'box_budgeted_in_currency' => 'Presupuestado (:currency)', + 'box_bill_paid_in_currency' => 'Facturas pagadas (:currency)', + 'box_bill_unpaid_in_currency' => 'Facturas sin pagar (:currency)', + 'box_left_to_spend_in_currency' => 'Disponible para gasto (:currency)', + 'box_net_worth_in_currency' => 'Valor neto (:currency)', + 'box_spend_per_day' => 'Disponible para gasto diario: :amount', // debug page - 'debug_page' => 'Pagina de depuración', - 'debug_submit_instructions' => 'Si está teniendo problemas, puede usar la información en este cuadro como información de depuración. Por favor, copie y pegue en un nuevo o existente GitHub issue. Generará una hermosa tabla que se puede utilizar para diagnosticar rápidamente su problema.', - 'debug_pretty_table' => 'Si copia/pega la casilla de abajo en un problema de GitHub, generará una tabla. Por favor, no envuelva este texto con comillas.', - 'debug_additional_data' => 'También puede compartir el contenido del cuadro de abajo. También puede copiar y pegar esto en un GitHub issue nuevo o existente. Sin embargo, el contenido de este cuadro puede contener información privada como nombres de cuenta, detalles de transacción o direcciones de correo electrónico.', + 'debug_page' => 'Pagina de depuración', + 'debug_submit_instructions' => 'Si está teniendo problemas, puede usar la información en este cuadro como información de depuración. Por favor, copie y pegue en un nuevo o existente GitHub issue. Generará una hermosa tabla que se puede utilizar para diagnosticar rápidamente su problema.', + 'debug_pretty_table' => 'Si copia/pega la casilla de abajo en un problema de GitHub, generará una tabla. Por favor, no envuelva este texto con comillas.', + 'debug_additional_data' => 'También puede compartir el contenido del cuadro de abajo. También puede copiar y pegar esto en un GitHub issue nuevo o existente. Sin embargo, el contenido de este cuadro puede contener información privada como nombres de cuenta, detalles de transacción o direcciones de correo electrónico.', // object groups - 'object_groups_menu_bar' => 'Grupos', - 'object_groups_page_title' => 'Grupos', - 'object_groups_breadcrumb' => 'Grupos', - 'object_groups_index' => 'Resumen', - 'object_groups' => 'Grupos', - 'object_groups_empty_explain' => 'Algunas cosas en Firefly III se pueden dividir en grupos. Las huchas, por ejemplo, incluyen un campo "Grupo" en las pantallas de edición y creación. Cuando establece este campo, puede editar los nombres y el orden de los grupos en esta página. Para obtener más información, consulte las páginas de ayuda en la esquina superior derecha, debajo del icono (?).', - 'object_group_title' => 'Título', - 'edit_object_group' => 'Editar grupo ":title"', - 'delete_object_group' => 'Eliminar grupo ":title"', - 'update_object_group' => 'Actualizar grupo', - 'updated_object_group' => 'Grupo ":title" actualizado con éxito', - 'deleted_object_group' => 'Grupo ":title" eliminado con éxito', - 'object_group' => 'Grupo', + 'object_groups_menu_bar' => 'Grupos', + 'object_groups_page_title' => 'Grupos', + 'object_groups_breadcrumb' => 'Grupos', + 'object_groups_index' => 'Resumen', + 'object_groups' => 'Grupos', + 'object_groups_empty_explain' => 'Algunas cosas en Firefly III se pueden dividir en grupos. Las huchas, por ejemplo, incluyen un campo "Grupo" en las pantallas de edición y creación. Cuando establece este campo, puede editar los nombres y el orden de los grupos en esta página. Para obtener más información, consulte las páginas de ayuda en la esquina superior derecha, debajo del icono (?).', + 'object_group_title' => 'Título', + 'edit_object_group' => 'Editar grupo ":title"', + 'delete_object_group' => 'Eliminar grupo ":title"', + 'update_object_group' => 'Actualizar grupo', + 'updated_object_group' => 'Grupo ":title" actualizado con éxito', + 'deleted_object_group' => 'Grupo ":title" eliminado con éxito', + 'object_group' => 'Grupo', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Auditoría de entradas de registro', - 'ale_action_log_add' => 'Añadido :amount a la hucha ":name"', - 'ale_action_log_remove' => 'Eliminado :amount de la hucha ":name"', - 'ale_action_clear_budget' => 'Eliminado del presupuesto', - 'ale_action_update_group_title' => 'Título del grupo de transacciones actualizado', - 'ale_action_update_date' => 'Fecha de transacción actualizada', - 'ale_action_update_order' => 'Orden de transacción actualizado', - 'ale_action_clear_category' => 'Eliminado de la categoría', - 'ale_action_clear_notes' => 'Notas eliminadas', - 'ale_action_clear_tag' => 'Etiqueta limpiada', - 'ale_action_clear_all_tags' => 'Limpiar todas las etiquetas', - 'ale_action_set_bill' => 'Vinculado a la factura', - 'ale_action_switch_accounts' => 'Cuentas de origen y destino cambiadas', - 'ale_action_set_budget' => 'Establecer presupuesto', - 'ale_action_set_category' => 'Establecer categoría', - 'ale_action_set_source' => 'Establecer cuenta de origen', - 'ale_action_set_destination' => 'Establecer cuenta de destino', - 'ale_action_update_transaction_type' => 'Tipo de transacción cambiado', - 'ale_action_update_notes' => 'Notas cambiadas', - 'ale_action_update_description' => 'Descripción cambiada', - 'ale_action_add_to_piggy' => 'Hucha', - 'ale_action_remove_from_piggy' => 'Hucha', - 'ale_action_add_tag' => 'Etiqueta añadida', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Auditoría de entradas de registro', + 'ale_action_log_add' => 'Añadido :amount a la hucha ":name"', + 'ale_action_log_remove' => 'Eliminado :amount de la hucha ":name"', + 'ale_action_clear_budget' => 'Eliminado del presupuesto', + 'ale_action_update_group_title' => 'Título del grupo de transacciones actualizado', + 'ale_action_update_date' => 'Fecha de transacción actualizada', + 'ale_action_update_order' => 'Orden de transacción actualizado', + 'ale_action_clear_category' => 'Eliminado de la categoría', + 'ale_action_clear_notes' => 'Notas eliminadas', + 'ale_action_clear_tag' => 'Etiqueta limpiada', + 'ale_action_clear_all_tags' => 'Limpiar todas las etiquetas', + 'ale_action_set_bill' => 'Vinculado a la factura', + 'ale_action_switch_accounts' => 'Cuentas de origen y destino cambiadas', + 'ale_action_set_budget' => 'Establecer presupuesto', + 'ale_action_set_category' => 'Establecer categoría', + 'ale_action_set_source' => 'Establecer cuenta de origen', + 'ale_action_set_destination' => 'Establecer cuenta de destino', + 'ale_action_update_transaction_type' => 'Tipo de transacción cambiado', + 'ale_action_update_notes' => 'Notas cambiadas', + 'ale_action_update_description' => 'Descripción cambiada', + 'ale_action_add_to_piggy' => 'Hucha', + 'ale_action_remove_from_piggy' => 'Hucha', + 'ale_action_add_tag' => 'Etiqueta añadida', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Habilitar conversión de moneda', - 'disable_auto_convert' => 'Deshabilitar conversión de moneda', + 'enable_auto_convert' => 'Habilitar conversión de moneda', + 'disable_auto_convert' => 'Deshabilitar conversión de moneda', ]; /* diff --git a/resources/lang/es_ES/validation.php b/resources/lang/es_ES/validation.php index 0bfb17fa1a..ccb0b3df63 100644 --- a/resources/lang/es_ES/validation.php +++ b/resources/lang/es_ES/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'No tiene permisos para esta administración.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/fi_FI/firefly.php b/resources/lang/fi_FI/firefly.php index ad6936082a..a0623aee2b 100644 --- a/resources/lang/fi_FI/firefly.php +++ b/resources/lang/fi_FI/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Sulje', - 'actions' => 'Toiminnot', - 'edit' => 'Muokkaa', - 'delete' => 'Poista', - 'split' => 'Jaa', - 'single_split' => 'Jako', - 'clone' => 'Kopioi', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Vahvista toiminto', - 'last_seven_days' => 'Viimeiset 7 päivää', - 'last_thirty_days' => 'Viimeiset 30 päivää', - 'last_180_days' => 'Viimeiset 180 päivää', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'Vuoden alusta', - 'welcome_back' => 'Mitä kuuluu?', - 'everything' => 'Kaikki', - 'today' => 'tänään', - 'customRange' => 'Muokattu jakso', - 'date_range' => 'Ajanjakso', - 'apply' => 'Käytä', - 'select_date' => 'Valitse päivämäärä ...', - 'cancel' => 'Peruuta', - 'from' => 'Lähettäjä', - 'to' => 'Saaja', - 'structure' => 'Rakenne', - 'help_translating' => 'Tämä opasteteksti ei ole vielä saatavilla Suomeksi. Haluatko auttaa käännöstyössä?', - 'showEverything' => 'Näytä kaikki', - 'never' => 'Ei koskaan', - 'no_results_for_empty_search' => 'Hakusi oli tyhjä, joten mitään ei löytynyt.', - 'removed_amount' => 'Poistettiin :amount', - 'added_amount' => 'Lisättiin :amount', - 'asset_account_role_help' => 'Kaikki valinnoistasi seuraavat lisäoptiot voidaan asettaa myöhemmin.', - 'Opening balance' => 'Alkusaldo', - 'create_new_stuff' => 'Luo uusia juttuja', - 'new_withdrawal' => 'Uusi nosto', - 'create_new_transaction' => 'Luo uusi tapahtuma', - 'sidebar_frontpage_create' => 'Luo', - 'new_transaction' => 'Uusi tapahtuma', - 'no_rules_for_bill' => 'Tälle laskulle ei ole lisätty yhtään sääntöä.', - 'go_to_asset_accounts' => 'Tarkastele omaisuustilejäsi', - 'go_to_budgets' => 'Avaa omat budjetit', - 'go_to_withdrawals' => 'Siirry sinun nostoihisi', - 'clones_journal_x' => 'Tämä on kopio tapahtumasta ":description" (#:id)', - 'go_to_categories' => 'Avaa omat kategoriat', - 'go_to_bills' => 'Avaa omat laskut', - 'go_to_expense_accounts' => 'Tarkastele kulutustilejäsi', - 'go_to_revenue_accounts' => 'Tarkastele tuottotilejäsi', - 'go_to_piggies' => 'Tarkastele säästöpossujasi', - 'new_deposit' => 'Uusi talletus', - 'new_transfer' => 'Uusi siirto', - 'new_transfers' => 'Uusi siirto', - 'new_asset_account' => 'Uusi omaisuustili', - 'new_expense_account' => 'Uusi kulutustili', - 'new_revenue_account' => 'Uusi tuottotili', - 'new_liabilities_account' => 'Uusi laina', - 'new_budget' => 'Uusi budjetti', - 'new_bill' => 'Uusi lasku', - 'block_account_logout' => 'Sinut on kirjattu ulos. Estetyt käyttäjät eivät pysty käyttämään tätä sivustoa. Rekisteröidyitkö oikealla sähköpostiosoitteella?', - 'flash_success' => 'Valmista tuli!', - 'flash_info' => 'Viesti', - 'flash_warning' => 'Varoitus!', - 'flash_error' => 'Virhe!', - 'flash_danger' => 'Vaara!', - 'flash_info_multiple' => 'Sinulle on yksi viesti|Sinulle on :count viestiä', - 'flash_error_multiple' => 'On tapahtunut virhe|On tapahtunut :count virhettä', - 'net_worth' => 'Varallisuus', - 'help_for_this_page' => 'Opastus tälle sivulle', - 'help_for_this_page_body' => 'Löydät lisätietoja tästä sivusta dokumentaatiosta.', - 'two_factor_welcome' => 'Tervehdys!', - 'two_factor_enter_code' => 'Jatkaaksesi, anna kaksivaiheisen tunnistautumisen koodi. Tunnistautumisohjelmasi voi luoda sen sinulle.', - 'two_factor_code_here' => 'Kirjoita koodi tähän', - 'two_factor_title' => 'Kaksivaiheinen tunnistautuminen', - 'authenticate' => 'Tunnistaudu', - 'two_factor_forgot_title' => 'Kaksivaiheisen tunnistuksen tiedot ovat hävinneet', - 'two_factor_forgot' => 'Unohdin kaksivaiheisen tunnistusjuttuni.', - 'two_factor_lost_header' => 'Unohdit kaksivaiheisen tunnistuksen koodisi?', - 'two_factor_lost_intro' => 'Jos olet hävittänyt myös varakoodisi, onnesi on kääntynyt. Tätä et ikävä kyllä pysty korjaamaan selaimella. Sinulla on nyt kaksi vaihtoehtoa.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Muussa tapauksessa, ota yhteyttä ylläpitäjään, :site_owner ja pyydä että kaksivaiheinen tunnistautumisesi nollataan.', - 'mfa_backup_code' => 'Olet käyttänyt varakoodin kirjautuessasi Firefly III:een. Varakoodi on kertakäyttöinen, joten muista merkitä se käytetyksi.', - 'pref_two_factor_new_backup_codes' => 'Luo uudet varmistuskoodit', - 'pref_two_factor_backup_code_count' => 'Sinulla on :count voimassa oleva varmuuskopiokoodi.|Sinulla on :count voimassa olevaa varmuuskopiokoodia.', - '2fa_i_have_them' => 'Tallensin ne!', - 'warning_much_data' => ':days päivän tietojen lataus saattaa kestää jonkin aikaa.', - 'registered' => 'Rekisteröitymisesi onnistui!', - 'Default asset account' => 'Oletusomaisuustili', - 'no_budget_pointer' => 'Sinulla ei näytä olevan vielä budjetteja. Sinun pitäisi luoda joitakin budjetit-sivulla. Budjetit auttavat sinua pitämään kirjaa kuluista.', - 'no_bill_pointer' => 'Sinulla ei näytä olevan vielä laskuja. Sinun pitäisi luoda joitakin laskut-sivulla. Laskut auttavat sinua pitämään kirjaa kuluista.', - 'Savings account' => 'Säästötili', - 'Credit card' => 'Luottokortti', - 'source_accounts' => 'Lähdetili|Lähdetilit', - 'destination_accounts' => 'Kohdetili|Kohdetilit', - 'user_id_is' => 'Käyttäjätunnuksesi on :user', - 'field_supports_markdown' => 'Tämä kenttä tukee Markdownia.', - 'need_more_help' => 'Jos tarvitset lisäopastusta Firefly III:n käyttöön, avaa tiketti Githubissa (englanniksi).', - 'reenable_intro_text' => 'Täältä voit kytkeä esittelytoiminnon uudelleen päälle.', - 'intro_boxes_after_refresh' => 'Esittelytekstit ilmestyvät jälleen kun päivität tämän sivun.', - 'show_all_no_filter' => 'Näytä kaikki tapahtumat ryhmittelemättä niitä päivämäärittäin.', - 'expenses_by_category' => 'Kustannukset kategorioittain', - 'expenses_by_budget' => 'Kustannukset budjeteittain', - 'income_by_category' => 'Tulot kategorioittain', - 'expenses_by_asset_account' => 'Kulut omaisuustileittäin', - 'expenses_by_expense_account' => 'Kulut kulutileittäin', - 'cannot_redirect_to_account' => 'Firefly III ei pysty ohjaamaan sinua oikealle sivulle. Pahoittelut.', - 'sum_of_expenses' => 'Kulut yhteensä', - 'sum_of_income' => 'Tulot yhteensä', - 'liabilities' => 'Lainat', - 'spent_in_specific_budget' => 'Kulutettu budjetista ":budget"', - 'spent_in_specific_double' => 'Kulutettu tililtä ":account"', - 'earned_in_specific_double' => 'Tulot tilillä ":account"', - 'source_account' => 'Lähdetili', - 'source_account_reconciliation' => 'Et voi muokata täsmäytystapahtuman lähdetiliä.', - 'destination_account' => 'Kohdetili', - 'destination_account_reconciliation' => 'Et voi muokata täsmäytystapahtuman kohdetiliä.', - 'sum_of_expenses_in_budget' => 'Kulutettu yhteensä budjetista ":budget"', - 'left_in_budget_limit' => 'Budjetissa jäljellä', - 'current_period' => 'Nykyinen jakso', - 'show_the_current_period_and_overview' => 'Näytä nykyinen jakso sekä yhteenveto', - 'pref_languages_locale' => 'Jotta muut kielet kuin Englanti toimisivat oikein, käyttöjärjestelmässäsi täytyy olla myös vastaavat kieliasetukset. Jos näitä ei ole, valuuttatiedot, päivämäärät ja summat voivat näkyä väärin.', - 'budget_in_period' => 'Kaikki tapahtumat budjetissa ":name" välillä :start ja :end valuutassa :currency', - 'chart_budget_in_period' => 'Kuvaaja kaikista tapahtumista budjetissa ":name" välillä :start ja :end valuutassa :currency', - 'chart_budget_in_period_only_currency' => 'Budjetoitu summa oli merkitty valuutassa :currency, joten tämä kuvaaja näyttää tapahtumat ainoastaan samassa valuutassa :currency.', - 'chart_account_in_period' => 'Kuvaaja kaikista tapahtumista tilillä ":name" (:balance) välillä :start ja :end', - 'chart_category_in_period' => 'Kuvaaja kaikista tapahtumista kategoriassa ":name" välillä :start ja :end', - 'chart_category_all' => 'Kuvaaja kaikista tapahtumista kategoriassa ":name"', - 'clone_withdrawal' => 'Kopioi tämä nosto', - 'clone_deposit' => 'Kopioi tämä talletus', - 'clone_transfer' => 'Kopioi tämä siirto', - 'multi_select_no_selection' => 'Ei valintaa', - 'multi_select_select_all' => 'Valitse kaikki', - 'multi_select_n_selected' => 'valittu', - 'multi_select_all_selected' => 'Kaikki valitut', - 'multi_select_filter_placeholder' => 'Etsi ...', - 'intro_next_label' => 'Seuraava', - 'intro_prev_label' => 'Edellinen', - 'intro_skip_label' => 'Ohita', - 'intro_done_label' => 'Valmis', - 'between_dates_breadcrumb' => 'Välillä :start ja :end', - 'all_journals_without_budget' => 'Kaikki budjetoimattomat tapahtumat', - 'journals_without_budget' => 'Budjetoimattomat tapahtumat', - 'all_journals_without_category' => 'Kaikki tapahtumat ilman kategoriaa', - 'journals_without_category' => 'Tapahtumat ilman kategoriaa', - 'all_journals_for_account' => 'Kaikki tapahtumat tilillä :name', - 'chart_all_journals_for_account' => 'Kuvaaja kaikista tapahtumista tilillä :name', - 'journals_in_period_for_account' => 'Kaikki tapahtumat tilillä :name välillä :start ja :end', - 'journals_in_period_for_account_js' => 'Kaikki tapahtumat tilillä {title} välillä {start} ja {end}', - 'transferred' => 'Siirretty', - 'all_withdrawal' => 'Kaikki kustannukset', - 'all_transactions' => 'Kaikki tapahtumat', - 'title_withdrawal_between' => 'Kaikki kustannukset välillä :start ja :end', - 'all_deposit' => 'Kaikki tuotot', - 'title_deposit_between' => 'Kaikki tuotot välillä :start ja :end', - 'all_transfers' => 'Kaikki siirrot', - 'title_transfers_between' => 'Kaikki siirrot välillä :start ja :end', - 'all_transfer' => 'Kaikki siirrot', - 'all_journals_for_tag' => 'Kaikki tapahtumat tägillä ":tag"', - 'title_transfer_between' => 'Kaikki siirrot välillä :start ja :end', - 'all_journals_for_category' => 'Kaikki tapahtumat kategoriassa :name', - 'all_journals_for_budget' => 'Kaikki tapahtumat budjetissa :name', - 'chart_all_journals_for_budget' => 'Kuvaaja kaikista tapahtumista budjetissa :name', - 'journals_in_period_for_category' => 'Kaikki tapahtumat kategoriassa :name välillä :start ja :end', - 'journals_in_period_for_tag' => 'Kaikki tapahtumat tägillä :tag välillä :start ja :end', - 'not_available_demo_user' => 'Tämä toiminto ei ole käytössä esittelytilassa.', - 'exchange_rate_instructions' => 'Voit lisätä tapahtumia tilille "@name" ainoastaan valuutassa @native_currency. Jos haluat käyttää valuuttaa @foreign_currency, täytä myös summa valuutassa @native_currency:', - 'transfer_exchange_rate_instructions' => 'Lähdetili "@source_name" hyväksyy tapahtumia ainoastaan valuutassa @source_currency. Kohdetili "@dest_name" hyväksyy tapahtumia ainoastaan valuutassa @dest_currency. Siirretty summa täytyy syöttää oikein - molemmilla valuutoilla.', - 'transaction_data' => 'Tapahtuman tiedot', - 'invalid_server_configuration' => 'Serverin asetukset eivät ole kunnossa', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Pikakytkin', - 'sign_in_to_start' => 'Aloita istunto kirjautumalla sisään', - 'sign_in' => 'Kirjaudu sisään', - 'register_new_account' => 'Rekisteröi uusi käyttäjätili', - 'forgot_my_password' => 'Unohdin salasanani', - 'problems_with_input' => 'Antamiesi tietojen kanssa oli ongelmia.', - 'reset_password' => 'Nollaa salasanasi', - 'button_reset_password' => 'Nollaa salasana', - 'reset_button' => 'Nollaa', - 'want_to_login' => 'Haluan kirjautua', - 'login_page_title' => 'Kirjaudu Firefly III:een', - 'register_page_title' => 'Rekisteröidy Firefly III:een', - 'forgot_pw_page_title' => 'Unohdit salasanasi Firefly III:een', - 'reset_pw_page_title' => 'Nollaa salasanasi Firefly III:een', - 'cannot_reset_demo_user' => 'Demokäyttäjän salasanaa ei voi nollata.', - 'no_att_demo_user' => 'Demokäyttäjä ei voi lähettää liitteitä.', - 'button_register' => 'Rekisteröidy', - 'authorization' => 'Valtuutus', - 'active_bills_only' => 'vain aktiiviset laskut', - 'active_bills_only_total' => 'kaikki aktiiviset laskut', - 'active_exp_bills_only' => 'vain aktiiviset ja odotettavissa olevat laskut', - 'active_exp_bills_only_total' => 'kaikki aktiiviset odotettavissa olevat laskut', - 'per_period_sum_1D' => 'Odotettavissa olevat päivittäiset kulut', - 'per_period_sum_1W' => 'Odotettavissa olevat viikottaiset kulut', - 'per_period_sum_1M' => 'Odotettavissa olevat kuukausittaiset kulut', - 'per_period_sum_3M' => 'Odotettavissa olevat neljännesvuosittaiset kustannukset', - 'per_period_sum_6M' => 'Odotettavissa olevat puolivuotiskulut', - 'per_period_sum_1Y' => 'Odotettavissa olevat vuotuiset kulut', - 'average_per_bill' => 'keskiarvo laskuittain', - 'expected_total' => 'odotettavissa yhteensä', - 'reconciliation_account_name' => ':name täsmäytys (:currency)', - 'saved' => 'Tallennettu', - 'advanced_options' => 'Lisävalinnat', - 'advanced_options_explain' => 'Joillakin Firefly III:n sivuilla on lisäasetukset piilossa tämän painikkeen takana. Tällä sivulla täällä ei ole mitään hienoa, mutta tutustu muihin!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Sulje', + 'actions' => 'Toiminnot', + 'edit' => 'Muokkaa', + 'delete' => 'Poista', + 'split' => 'Jaa', + 'single_split' => 'Jako', + 'clone' => 'Kopioi', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Vahvista toiminto', + 'last_seven_days' => 'Viimeiset 7 päivää', + 'last_thirty_days' => 'Viimeiset 30 päivää', + 'last_180_days' => 'Viimeiset 180 päivää', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'Vuoden alusta', + 'welcome_back' => 'Mitä kuuluu?', + 'everything' => 'Kaikki', + 'today' => 'tänään', + 'customRange' => 'Muokattu jakso', + 'date_range' => 'Ajanjakso', + 'apply' => 'Käytä', + 'select_date' => 'Valitse päivämäärä ...', + 'cancel' => 'Peruuta', + 'from' => 'Lähettäjä', + 'to' => 'Saaja', + 'structure' => 'Rakenne', + 'help_translating' => 'Tämä opasteteksti ei ole vielä saatavilla Suomeksi. Haluatko auttaa käännöstyössä?', + 'showEverything' => 'Näytä kaikki', + 'never' => 'Ei koskaan', + 'no_results_for_empty_search' => 'Hakusi oli tyhjä, joten mitään ei löytynyt.', + 'removed_amount' => 'Poistettiin :amount', + 'added_amount' => 'Lisättiin :amount', + 'asset_account_role_help' => 'Kaikki valinnoistasi seuraavat lisäoptiot voidaan asettaa myöhemmin.', + 'Opening balance' => 'Alkusaldo', + 'create_new_stuff' => 'Luo uusia juttuja', + 'new_withdrawal' => 'Uusi nosto', + 'create_new_transaction' => 'Luo uusi tapahtuma', + 'sidebar_frontpage_create' => 'Luo', + 'new_transaction' => 'Uusi tapahtuma', + 'no_rules_for_bill' => 'Tälle laskulle ei ole lisätty yhtään sääntöä.', + 'go_to_asset_accounts' => 'Tarkastele omaisuustilejäsi', + 'go_to_budgets' => 'Avaa omat budjetit', + 'go_to_withdrawals' => 'Siirry sinun nostoihisi', + 'clones_journal_x' => 'Tämä on kopio tapahtumasta ":description" (#:id)', + 'go_to_categories' => 'Avaa omat kategoriat', + 'go_to_bills' => 'Avaa omat laskut', + 'go_to_expense_accounts' => 'Tarkastele kulutustilejäsi', + 'go_to_revenue_accounts' => 'Tarkastele tuottotilejäsi', + 'go_to_piggies' => 'Tarkastele säästöpossujasi', + 'new_deposit' => 'Uusi talletus', + 'new_transfer' => 'Uusi siirto', + 'new_transfers' => 'Uusi siirto', + 'new_asset_account' => 'Uusi omaisuustili', + 'new_expense_account' => 'Uusi kulutustili', + 'new_revenue_account' => 'Uusi tuottotili', + 'new_liabilities_account' => 'Uusi laina', + 'new_budget' => 'Uusi budjetti', + 'new_bill' => 'Uusi lasku', + 'block_account_logout' => 'Sinut on kirjattu ulos. Estetyt käyttäjät eivät pysty käyttämään tätä sivustoa. Rekisteröidyitkö oikealla sähköpostiosoitteella?', + 'flash_success' => 'Valmista tuli!', + 'flash_info' => 'Viesti', + 'flash_warning' => 'Varoitus!', + 'flash_error' => 'Virhe!', + 'flash_danger' => 'Vaara!', + 'flash_info_multiple' => 'Sinulle on yksi viesti|Sinulle on :count viestiä', + 'flash_error_multiple' => 'On tapahtunut virhe|On tapahtunut :count virhettä', + 'net_worth' => 'Varallisuus', + 'help_for_this_page' => 'Opastus tälle sivulle', + 'help_for_this_page_body' => 'Löydät lisätietoja tästä sivusta dokumentaatiosta.', + 'two_factor_welcome' => 'Tervehdys!', + 'two_factor_enter_code' => 'Jatkaaksesi, anna kaksivaiheisen tunnistautumisen koodi. Tunnistautumisohjelmasi voi luoda sen sinulle.', + 'two_factor_code_here' => 'Kirjoita koodi tähän', + 'two_factor_title' => 'Kaksivaiheinen tunnistautuminen', + 'authenticate' => 'Tunnistaudu', + 'two_factor_forgot_title' => 'Kaksivaiheisen tunnistuksen tiedot ovat hävinneet', + 'two_factor_forgot' => 'Unohdin kaksivaiheisen tunnistusjuttuni.', + 'two_factor_lost_header' => 'Unohdit kaksivaiheisen tunnistuksen koodisi?', + 'two_factor_lost_intro' => 'Jos olet hävittänyt myös varakoodisi, onnesi on kääntynyt. Tätä et ikävä kyllä pysty korjaamaan selaimella. Sinulla on nyt kaksi vaihtoehtoa.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Muussa tapauksessa, ota yhteyttä ylläpitäjään, :site_owner ja pyydä että kaksivaiheinen tunnistautumisesi nollataan.', + 'mfa_backup_code' => 'Olet käyttänyt varakoodin kirjautuessasi Firefly III:een. Varakoodi on kertakäyttöinen, joten muista merkitä se käytetyksi.', + 'pref_two_factor_new_backup_codes' => 'Luo uudet varmistuskoodit', + 'pref_two_factor_backup_code_count' => 'Sinulla on :count voimassa oleva varmuuskopiokoodi.|Sinulla on :count voimassa olevaa varmuuskopiokoodia.', + '2fa_i_have_them' => 'Tallensin ne!', + 'warning_much_data' => ':days päivän tietojen lataus saattaa kestää jonkin aikaa.', + 'registered' => 'Rekisteröitymisesi onnistui!', + 'Default asset account' => 'Oletusomaisuustili', + 'no_budget_pointer' => 'Sinulla ei näytä olevan vielä budjetteja. Sinun pitäisi luoda joitakin budjetit-sivulla. Budjetit auttavat sinua pitämään kirjaa kuluista.', + 'no_bill_pointer' => 'Sinulla ei näytä olevan vielä laskuja. Sinun pitäisi luoda joitakin laskut-sivulla. Laskut auttavat sinua pitämään kirjaa kuluista.', + 'Savings account' => 'Säästötili', + 'Credit card' => 'Luottokortti', + 'source_accounts' => 'Lähdetili|Lähdetilit', + 'destination_accounts' => 'Kohdetili|Kohdetilit', + 'user_id_is' => 'Käyttäjätunnuksesi on :user', + 'field_supports_markdown' => 'Tämä kenttä tukee Markdownia.', + 'need_more_help' => 'Jos tarvitset lisäopastusta Firefly III:n käyttöön, avaa tiketti Githubissa (englanniksi).', + 'reenable_intro_text' => 'Täältä voit kytkeä esittelytoiminnon uudelleen päälle.', + 'intro_boxes_after_refresh' => 'Esittelytekstit ilmestyvät jälleen kun päivität tämän sivun.', + 'show_all_no_filter' => 'Näytä kaikki tapahtumat ryhmittelemättä niitä päivämäärittäin.', + 'expenses_by_category' => 'Kustannukset kategorioittain', + 'expenses_by_budget' => 'Kustannukset budjeteittain', + 'income_by_category' => 'Tulot kategorioittain', + 'expenses_by_asset_account' => 'Kulut omaisuustileittäin', + 'expenses_by_expense_account' => 'Kulut kulutileittäin', + 'cannot_redirect_to_account' => 'Firefly III ei pysty ohjaamaan sinua oikealle sivulle. Pahoittelut.', + 'sum_of_expenses' => 'Kulut yhteensä', + 'sum_of_income' => 'Tulot yhteensä', + 'liabilities' => 'Lainat', + 'spent_in_specific_budget' => 'Kulutettu budjetista ":budget"', + 'spent_in_specific_double' => 'Kulutettu tililtä ":account"', + 'earned_in_specific_double' => 'Tulot tilillä ":account"', + 'source_account' => 'Lähdetili', + 'source_account_reconciliation' => 'Et voi muokata täsmäytystapahtuman lähdetiliä.', + 'destination_account' => 'Kohdetili', + 'destination_account_reconciliation' => 'Et voi muokata täsmäytystapahtuman kohdetiliä.', + 'sum_of_expenses_in_budget' => 'Kulutettu yhteensä budjetista ":budget"', + 'left_in_budget_limit' => 'Budjetissa jäljellä', + 'current_period' => 'Nykyinen jakso', + 'show_the_current_period_and_overview' => 'Näytä nykyinen jakso sekä yhteenveto', + 'pref_languages_locale' => 'Jotta muut kielet kuin Englanti toimisivat oikein, käyttöjärjestelmässäsi täytyy olla myös vastaavat kieliasetukset. Jos näitä ei ole, valuuttatiedot, päivämäärät ja summat voivat näkyä väärin.', + 'budget_in_period' => 'Kaikki tapahtumat budjetissa ":name" välillä :start ja :end valuutassa :currency', + 'chart_budget_in_period' => 'Kuvaaja kaikista tapahtumista budjetissa ":name" välillä :start ja :end valuutassa :currency', + 'chart_budget_in_period_only_currency' => 'Budjetoitu summa oli merkitty valuutassa :currency, joten tämä kuvaaja näyttää tapahtumat ainoastaan samassa valuutassa :currency.', + 'chart_account_in_period' => 'Kuvaaja kaikista tapahtumista tilillä ":name" (:balance) välillä :start ja :end', + 'chart_category_in_period' => 'Kuvaaja kaikista tapahtumista kategoriassa ":name" välillä :start ja :end', + 'chart_category_all' => 'Kuvaaja kaikista tapahtumista kategoriassa ":name"', + 'clone_withdrawal' => 'Kopioi tämä nosto', + 'clone_deposit' => 'Kopioi tämä talletus', + 'clone_transfer' => 'Kopioi tämä siirto', + 'multi_select_no_selection' => 'Ei valintaa', + 'multi_select_select_all' => 'Valitse kaikki', + 'multi_select_n_selected' => 'valittu', + 'multi_select_all_selected' => 'Kaikki valitut', + 'multi_select_filter_placeholder' => 'Etsi ...', + 'intro_next_label' => 'Seuraava', + 'intro_prev_label' => 'Edellinen', + 'intro_skip_label' => 'Ohita', + 'intro_done_label' => 'Valmis', + 'between_dates_breadcrumb' => 'Välillä :start ja :end', + 'all_journals_without_budget' => 'Kaikki budjetoimattomat tapahtumat', + 'journals_without_budget' => 'Budjetoimattomat tapahtumat', + 'all_journals_without_category' => 'Kaikki tapahtumat ilman kategoriaa', + 'journals_without_category' => 'Tapahtumat ilman kategoriaa', + 'all_journals_for_account' => 'Kaikki tapahtumat tilillä :name', + 'chart_all_journals_for_account' => 'Kuvaaja kaikista tapahtumista tilillä :name', + 'journals_in_period_for_account' => 'Kaikki tapahtumat tilillä :name välillä :start ja :end', + 'journals_in_period_for_account_js' => 'Kaikki tapahtumat tilillä {title} välillä {start} ja {end}', + 'transferred' => 'Siirretty', + 'all_withdrawal' => 'Kaikki kustannukset', + 'all_transactions' => 'Kaikki tapahtumat', + 'title_withdrawal_between' => 'Kaikki kustannukset välillä :start ja :end', + 'all_deposit' => 'Kaikki tuotot', + 'title_deposit_between' => 'Kaikki tuotot välillä :start ja :end', + 'all_transfers' => 'Kaikki siirrot', + 'title_transfers_between' => 'Kaikki siirrot välillä :start ja :end', + 'all_transfer' => 'Kaikki siirrot', + 'all_journals_for_tag' => 'Kaikki tapahtumat tägillä ":tag"', + 'title_transfer_between' => 'Kaikki siirrot välillä :start ja :end', + 'all_journals_for_category' => 'Kaikki tapahtumat kategoriassa :name', + 'all_journals_for_budget' => 'Kaikki tapahtumat budjetissa :name', + 'chart_all_journals_for_budget' => 'Kuvaaja kaikista tapahtumista budjetissa :name', + 'journals_in_period_for_category' => 'Kaikki tapahtumat kategoriassa :name välillä :start ja :end', + 'journals_in_period_for_tag' => 'Kaikki tapahtumat tägillä :tag välillä :start ja :end', + 'not_available_demo_user' => 'Tämä toiminto ei ole käytössä esittelytilassa.', + 'exchange_rate_instructions' => 'Voit lisätä tapahtumia tilille "@name" ainoastaan valuutassa @native_currency. Jos haluat käyttää valuuttaa @foreign_currency, täytä myös summa valuutassa @native_currency:', + 'transfer_exchange_rate_instructions' => 'Lähdetili "@source_name" hyväksyy tapahtumia ainoastaan valuutassa @source_currency. Kohdetili "@dest_name" hyväksyy tapahtumia ainoastaan valuutassa @dest_currency. Siirretty summa täytyy syöttää oikein - molemmilla valuutoilla.', + 'transaction_data' => 'Tapahtuman tiedot', + 'invalid_server_configuration' => 'Serverin asetukset eivät ole kunnossa', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Pikakytkin', + 'sign_in_to_start' => 'Aloita istunto kirjautumalla sisään', + 'sign_in' => 'Kirjaudu sisään', + 'register_new_account' => 'Rekisteröi uusi käyttäjätili', + 'forgot_my_password' => 'Unohdin salasanani', + 'problems_with_input' => 'Antamiesi tietojen kanssa oli ongelmia.', + 'reset_password' => 'Nollaa salasanasi', + 'button_reset_password' => 'Nollaa salasana', + 'reset_button' => 'Nollaa', + 'want_to_login' => 'Haluan kirjautua', + 'login_page_title' => 'Kirjaudu Firefly III:een', + 'register_page_title' => 'Rekisteröidy Firefly III:een', + 'forgot_pw_page_title' => 'Unohdit salasanasi Firefly III:een', + 'reset_pw_page_title' => 'Nollaa salasanasi Firefly III:een', + 'cannot_reset_demo_user' => 'Demokäyttäjän salasanaa ei voi nollata.', + 'no_att_demo_user' => 'Demokäyttäjä ei voi lähettää liitteitä.', + 'button_register' => 'Rekisteröidy', + 'authorization' => 'Valtuutus', + 'active_bills_only' => 'vain aktiiviset laskut', + 'active_bills_only_total' => 'kaikki aktiiviset laskut', + 'active_exp_bills_only' => 'vain aktiiviset ja odotettavissa olevat laskut', + 'active_exp_bills_only_total' => 'kaikki aktiiviset odotettavissa olevat laskut', + 'per_period_sum_1D' => 'Odotettavissa olevat päivittäiset kulut', + 'per_period_sum_1W' => 'Odotettavissa olevat viikottaiset kulut', + 'per_period_sum_1M' => 'Odotettavissa olevat kuukausittaiset kulut', + 'per_period_sum_3M' => 'Odotettavissa olevat neljännesvuosittaiset kustannukset', + 'per_period_sum_6M' => 'Odotettavissa olevat puolivuotiskulut', + 'per_period_sum_1Y' => 'Odotettavissa olevat vuotuiset kulut', + 'average_per_bill' => 'keskiarvo laskuittain', + 'expected_total' => 'odotettavissa yhteensä', + 'reconciliation_account_name' => ':name täsmäytys (:currency)', + 'saved' => 'Tallennettu', + 'advanced_options' => 'Lisävalinnat', + 'advanced_options_explain' => 'Joillakin Firefly III:n sivuilla on lisäasetukset piilossa tämän painikkeen takana. Tällä sivulla täällä ei ole mitään hienoa, mutta tutustu muihin!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhookit', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhookit', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö', - 'authorization_request_intro' => 'Sovellus ":client" pyytää lupaa saada pääsy taloushallintoosi. Haluatko sallia :client pääsyn näihin tietoihin?', - 'authorization_request_site' => 'Sinut ohjataan uudelleen osoitteeseen :url joka sitten voi käyttää Firefly III -tietoja.', - 'authorization_request_invalid' => 'Tämä käyttöoikeuspyyntö on virheellinen. Ole hyvä äläkä koskaan enää seuraa tätä linkkiä.', - 'scopes_will_be_able' => 'Tämä sovellus voi:', - 'button_authorize' => 'Valtuuta', - 'none_in_select_list' => '(ei mitään)', - 'no_piggy_bank' => '(ei säästöpossu)', - 'name_in_currency' => ':name valuutassa :currency', - 'paid_in_currency' => 'Maksettu valuutassa :currency', - 'unpaid_in_currency' => 'Maksamatta valuutassa :currency', - 'is_alpha_warning' => 'Käytät ALPHA-versiota. Varaudu virheisiin ja ongelmiin.', - 'is_beta_warning' => 'Käytät BETA-versiota. Varaudu virheisiin ja ongelmiin.', - 'all_destination_accounts' => 'Kohdetilit', - 'all_source_accounts' => 'Lähdetilit', - 'back_to_index' => 'Takaisin valikkoon', - 'cant_logout_guard' => 'Firefly III ei voi kirjata sinua ulos.', - 'internal_reference' => 'Sisäinen viite', + 'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö', + 'authorization_request_intro' => 'Sovellus ":client" pyytää lupaa saada pääsy taloushallintoosi. Haluatko sallia :client pääsyn näihin tietoihin?', + 'authorization_request_site' => 'Sinut ohjataan uudelleen osoitteeseen :url joka sitten voi käyttää Firefly III -tietoja.', + 'authorization_request_invalid' => 'Tämä käyttöoikeuspyyntö on virheellinen. Ole hyvä äläkä koskaan enää seuraa tätä linkkiä.', + 'scopes_will_be_able' => 'Tämä sovellus voi:', + 'button_authorize' => 'Valtuuta', + 'none_in_select_list' => '(ei mitään)', + 'no_piggy_bank' => '(ei säästöpossu)', + 'name_in_currency' => ':name valuutassa :currency', + 'paid_in_currency' => 'Maksettu valuutassa :currency', + 'unpaid_in_currency' => 'Maksamatta valuutassa :currency', + 'is_alpha_warning' => 'Käytät ALPHA-versiota. Varaudu virheisiin ja ongelmiin.', + 'is_beta_warning' => 'Käytät BETA-versiota. Varaudu virheisiin ja ongelmiin.', + 'all_destination_accounts' => 'Kohdetilit', + 'all_source_accounts' => 'Lähdetilit', + 'back_to_index' => 'Takaisin valikkoon', + 'cant_logout_guard' => 'Firefly III ei voi kirjata sinua ulos.', + 'internal_reference' => 'Sisäinen viite', // check for updates: - 'update_check_title' => 'Tarkista päivitykset', - 'admin_update_check_title' => 'Tarkista päivitykset automaattisesti', - 'admin_update_check_explain' => 'Firefly III voi tarkistaa päivitykset puolestasi automaattisesti. Kun tämä asetus otetaan käyttöön, järjestelmä ottaa yhteyden Firefly III päivityspalvelimeen tarkistaakseen onko uusi versio julkaistu. Saat näytölle viestin kun ohjelmaan on tarjolla päivitys. Voit testata tätä viestiä käyttämällä oikeanpuoleista nappia. Valitse alla haluatko Firefly III:n tarkistavan päivitykset puolestasi.', - 'check_for_updates_permission' => 'Firefly III voi tarkistaa päivitykset puolestasi, mutta se tarvitsee luvan tehdäkseen niin. Käy ylläpito-sivulla jos haluat ottaa automaattisen tarkistuksen käyttöön.', - 'updates_ask_me_later' => 'Kysy myöhemmin', - 'updates_do_not_check' => 'Älä tarkista päivityksiä', - 'updates_enable_check' => 'Ota käyttöön päivityksen automaattinen tarkistus', - 'admin_update_check_now_title' => 'Tarkista päivitykset nyt', - 'admin_update_check_now_explain' => 'Jos painat tätä, Firefly III käy tarkistamassa onko nykyiseen versioosi tullut päivityksiä.', - 'check_for_updates_button' => 'Tarkista nyt!', - 'update_new_version_alert' => 'Firefly III:sta on julkaistu uusi versio. Käytät versiota :your_version, viimeisin versio :new_version on julkaistu :date.', - 'update_version_beta' => 'Tämä on BETA versio. Saatat törmätä hankaluuksiin.', - 'update_version_alpha' => 'Tämä on ALPHA versio. Saatat törmätä hankaluuksiin.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Käytät versiota :version, se on viimeisin julkaistu versio.', - 'update_newer_version_alert' => 'Käytät versiota :your_version, joka on uudempi kuin viimeisin julkaistu versio, :new_version.', - 'update_check_error' => 'Päivityksiä tarkistettaessa tapahtui virhe: :error', - 'unknown_error' => 'Tuntematon virhe. Pahoittelut siitä.', - 'disabled_but_check' => 'Poistit päivityksen tarkistuksen käytöstä. Älä unohda tarkistaa päivityksiä aina silloin tällöin. Kiitos!', - 'admin_update_channel_title' => 'Päivityskanava', - 'admin_update_channel_explain' => 'Firefly III:lla on kolme päivitys-"kanavaa" jotka määrittävät kuinka kehityksen huipulla olet ominaisuuksissa, parannuksissa ja ohjelmavirheissä. Käytä "beta"-kanavaa jos olet seikkailija ja "alpha"-kanavaa jos haluat elää vaarallisesti.', - 'update_channel_stable' => 'Vakaa. Kaiken pitäisi toimia kuten oletat.', - 'update_channel_beta' => 'Beta. Uusia ominaisuuksia mutta kaikki ei välttämättä toimi kunnolla.', - 'update_channel_alpha' => 'Alpha. Heitämme uusia ominaisuuksia pinon päällimmäiseksi ja käytämme kaikkea mikä ei tipu tai irtoile.', + 'update_check_title' => 'Tarkista päivitykset', + 'admin_update_check_title' => 'Tarkista päivitykset automaattisesti', + 'admin_update_check_explain' => 'Firefly III voi tarkistaa päivitykset puolestasi automaattisesti. Kun tämä asetus otetaan käyttöön, järjestelmä ottaa yhteyden Firefly III päivityspalvelimeen tarkistaakseen onko uusi versio julkaistu. Saat näytölle viestin kun ohjelmaan on tarjolla päivitys. Voit testata tätä viestiä käyttämällä oikeanpuoleista nappia. Valitse alla haluatko Firefly III:n tarkistavan päivitykset puolestasi.', + 'check_for_updates_permission' => 'Firefly III voi tarkistaa päivitykset puolestasi, mutta se tarvitsee luvan tehdäkseen niin. Käy ylläpito-sivulla jos haluat ottaa automaattisen tarkistuksen käyttöön.', + 'updates_ask_me_later' => 'Kysy myöhemmin', + 'updates_do_not_check' => 'Älä tarkista päivityksiä', + 'updates_enable_check' => 'Ota käyttöön päivityksen automaattinen tarkistus', + 'admin_update_check_now_title' => 'Tarkista päivitykset nyt', + 'admin_update_check_now_explain' => 'Jos painat tätä, Firefly III käy tarkistamassa onko nykyiseen versioosi tullut päivityksiä.', + 'check_for_updates_button' => 'Tarkista nyt!', + 'update_new_version_alert' => 'Firefly III:sta on julkaistu uusi versio. Käytät versiota :your_version, viimeisin versio :new_version on julkaistu :date.', + 'update_version_beta' => 'Tämä on BETA versio. Saatat törmätä hankaluuksiin.', + 'update_version_alpha' => 'Tämä on ALPHA versio. Saatat törmätä hankaluuksiin.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Käytät versiota :version, se on viimeisin julkaistu versio.', + 'update_newer_version_alert' => 'Käytät versiota :your_version, joka on uudempi kuin viimeisin julkaistu versio, :new_version.', + 'update_check_error' => 'Päivityksiä tarkistettaessa tapahtui virhe: :error', + 'unknown_error' => 'Tuntematon virhe. Pahoittelut siitä.', + 'disabled_but_check' => 'Poistit päivityksen tarkistuksen käytöstä. Älä unohda tarkistaa päivityksiä aina silloin tällöin. Kiitos!', + 'admin_update_channel_title' => 'Päivityskanava', + 'admin_update_channel_explain' => 'Firefly III:lla on kolme päivitys-"kanavaa" jotka määrittävät kuinka kehityksen huipulla olet ominaisuuksissa, parannuksissa ja ohjelmavirheissä. Käytä "beta"-kanavaa jos olet seikkailija ja "alpha"-kanavaa jos haluat elää vaarallisesti.', + 'update_channel_stable' => 'Vakaa. Kaiken pitäisi toimia kuten oletat.', + 'update_channel_beta' => 'Beta. Uusia ominaisuuksia mutta kaikki ei välttämättä toimi kunnolla.', + 'update_channel_alpha' => 'Alpha. Heitämme uusia ominaisuuksia pinon päällimmäiseksi ja käytämme kaikkea mikä ei tipu tai irtoile.', // search - 'search' => 'Hae', - 'search_query' => 'Kysely', - 'search_found_transactions' => 'Firefly III löysi :count tapahtuman :time sekunnissa.| Firefly III löysi :count tapahtumaa :time sekunnissa.', - 'search_found_more_transactions' => 'Firefly III löysi enemmän kuin :count tapahtumaa :time sekunnissa.', - 'search_for_query' => 'Firefly III hakee tapahtumia kaikilla näillä hakusanoilla: :query', - 'invalid_operators_list' => 'Nämä hakuparametrit eivät ole kelvollisia ja ne on ohitettu.', + 'search' => 'Hae', + 'search_query' => 'Kysely', + 'search_found_transactions' => 'Firefly III löysi :count tapahtuman :time sekunnissa.| Firefly III löysi :count tapahtumaa :time sekunnissa.', + 'search_found_more_transactions' => 'Firefly III löysi enemmän kuin :count tapahtumaa :time sekunnissa.', + 'search_for_query' => 'Firefly III hakee tapahtumia kaikilla näillä hakusanoilla: :query', + 'invalid_operators_list' => 'Nämä hakuparametrit eivät ole kelvollisia ja ne on ohitettu.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Tapahtumapäivä on ":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_id' => 'Tapahtuman tunniste on ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Tapahtumapäivä on joko ":value" tai sitä ennen', - 'search_modifier_date_after' => 'Tapahtumapäivä on joko ":value" tai sen jälkeen', - 'search_modifier_external_id_is' => 'Ulkoinen tunnus on ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', - '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_any_external_url' => 'Tapahtumalla on oltava ulkoinen URL (mikä tahansa)', - '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' => 'Sisäinen viite on ":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_description_contains' => 'Kuvaus sisältää ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Kuvaus on tarkalleen ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Tapahtuman (ulkomaan) valuutta on ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'Tapahtumalla on oltava liite', - 'search_modifier_has_no_category' => 'Tapahtumalla ei saa olla kategoriaa', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'Tapahtumalla on oltava kategoria (mikä tahansa)', - 'search_modifier_has_no_budget' => 'Tapahtumalla ei saa olla budjettia', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'Tapahtumalla on oltava budjetti', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'Tapahtumalla ei saa olla laskua', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'Tapahtumalla on oltava lasku (mikä tahansa)', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'Tapahtumalla ei saa olla tageja', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'Tapahtumalla on oltava tagi (mikä tahansa)', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Tapahtumalla ei ole muistiinpanoja', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'Tapahtumalla on oltava muistiinpanoja', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Summa on tarkalleen :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Summa on pienempi tai yhtä suuri kuin :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Summa on suurempi tai yhtä suuri kuin :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Lähdetilin nimi on täsmälleen ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Lähdetilin nimi sisältää ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Lähdetilin nimi alkaa ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Lähdetilin nimi päättyy ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Lähdetilin tunnus on :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Lähdetilin numero (IBAN) on ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Lähdetilin numero (IBAN) sisältää ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Lähdetilin numero (IBAN) alkaa ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Kohdetilin nimi on täsmälleen ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Kohdetilin nimi sisältää ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Kohdetilin nimi alkaa ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Kohdetilin tunnus on :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Kohdetilin numero (IBAN) on ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Kohdetilin numero (IBAN) sisältää ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Kohdetilin numero (IBAN) alkaa ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Kohdetilin numero (IBAN) päättyy ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Lähde- tai kohdetilin tunnus on/tunnukset ovat: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Kategoria on ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budjetti on ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Lasku on ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Tapahtuman tyyppi on ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tägi on ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Tapahtuma on vuonna ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Tapahtuman vuosi on joko ":value" tai sitä ennen', - 'search_modifier_date_before_month' => 'Tapahtuman kuukausi on joko ":value" tai sitä ennen', - 'search_modifier_date_before_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sitä ennen', - 'search_modifier_date_after_year' => 'Tapahtuman vuosi on joko ":value" tai sen jälkeen', - 'search_modifier_date_after_month' => 'Tapahtuman kuukausi on joko ":value" tai sen jälkeen', - 'search_modifier_date_after_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sen jälkeen', + 'search_modifier_date_on' => 'Tapahtumapäivä on ":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_id' => 'Tapahtuman tunniste on ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Tapahtumapäivä on joko ":value" tai sitä ennen', + 'search_modifier_date_after' => 'Tapahtumapäivä on joko ":value" tai sen jälkeen', + 'search_modifier_external_id_is' => 'Ulkoinen tunnus on ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', + '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_any_external_url' => 'Tapahtumalla on oltava ulkoinen URL (mikä tahansa)', + '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' => 'Sisäinen viite on ":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_description_contains' => 'Kuvaus sisältää ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Kuvaus on tarkalleen ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Tapahtuman (ulkomaan) valuutta on ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'Tapahtumalla on oltava liite', + 'search_modifier_has_no_category' => 'Tapahtumalla ei saa olla kategoriaa', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'Tapahtumalla on oltava kategoria (mikä tahansa)', + 'search_modifier_has_no_budget' => 'Tapahtumalla ei saa olla budjettia', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'Tapahtumalla on oltava budjetti', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'Tapahtumalla ei saa olla laskua', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'Tapahtumalla on oltava lasku (mikä tahansa)', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'Tapahtumalla ei saa olla tageja', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'Tapahtumalla on oltava tagi (mikä tahansa)', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Tapahtumalla ei ole muistiinpanoja', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'Tapahtumalla on oltava muistiinpanoja', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Summa on tarkalleen :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Summa on pienempi tai yhtä suuri kuin :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Summa on suurempi tai yhtä suuri kuin :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Lähdetilin nimi on täsmälleen ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Lähdetilin nimi sisältää ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Lähdetilin nimi alkaa ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Lähdetilin nimi päättyy ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Lähdetilin tunnus on :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Lähdetilin numero (IBAN) on ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Lähdetilin numero (IBAN) sisältää ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Lähdetilin numero (IBAN) alkaa ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Kohdetilin nimi on täsmälleen ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Kohdetilin nimi sisältää ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Kohdetilin nimi alkaa ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Kohdetilin tunnus on :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Kohdetilin numero (IBAN) on ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Kohdetilin numero (IBAN) sisältää ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Kohdetilin numero (IBAN) alkaa ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Kohdetilin numero (IBAN) päättyy ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Lähde- tai kohdetilin tunnus on/tunnukset ovat: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Kategoria on ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budjetti on ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Lasku on ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Tapahtuman tyyppi on ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tägi on ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Tapahtuma on vuonna ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Tapahtuman vuosi on joko ":value" tai sitä ennen', + 'search_modifier_date_before_month' => 'Tapahtuman kuukausi on joko ":value" tai sitä ennen', + 'search_modifier_date_before_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sitä ennen', + 'search_modifier_date_after_year' => 'Tapahtuman vuosi on joko ":value" tai sen jälkeen', + 'search_modifier_date_after_month' => 'Tapahtuman kuukausi on joko ":value" tai sen jälkeen', + 'search_modifier_date_after_day' => 'Tapahtuman kuukauden päivä on joko ":value" tai sen jälkeen', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Kategoria sisältää ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Kategoria alkaa ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budjetti sisältää ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budjetti päättyy ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budjetti alkaa ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Lasku sisältää ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Lasku päättyy ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Lasku alkaa ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Tapahtumassa ei ole liitteitä', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Kategoria sisältää ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Kategoria alkaa ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budjetti sisältää ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budjetti päättyy ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budjetti alkaa ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Lasku sisältää ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Lasku päättyy ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Lasku alkaa ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Tapahtumassa ei ole liitteitä', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Tapahtuman eräpäivä on vuonna ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Tapahtuman eräpäivä on vuonna ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Tapahtuma luotiin vuonna ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Tapahtuma luotiin vuonna ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Päivitä sääntö ":rule" hausta', - 'create_rule_from_query' => 'Luo uusi sääntö hausta', - 'rule_from_search_words' => 'Sääntömoottorilla on vaikeuksia käsitellä ":string". Ehdotettu sääntö, joka sopii hakuusi, voi antaa erilaisia tuloksia. Tarkista säännön ehdot huolellisesti.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Päivitä sääntö ":rule" hausta', + 'create_rule_from_query' => 'Luo uusi sääntö hausta', + 'rule_from_search_words' => 'Sääntömoottorilla on vaikeuksia käsitellä ":string". Ehdotettu sääntö, joka sopii hakuusi, voi antaa erilaisia tuloksia. Tarkista säännön ehdot huolellisesti.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Seuraavat muokkaukset vaikuttavat myös hakuun:', - 'general_search_error' => 'Haussa tapahtui virhe. Virhe tallennettiin lokitiedostoon.', - 'search_box' => 'Hae', - 'search_box_intro' => 'Tervetuloa Firefly III:n hakutoimintoon. Kirjoita hakusi hakukenttään. Lue huolella opastiedostot koska haku on hyvin kehittynyt.', - 'search_error' => 'Hakuvirhe', - 'search_searching' => 'Haetaan ...', - 'search_results' => 'Haun tulokset', + 'modifiers_applies_are' => 'Seuraavat muokkaukset vaikuttavat myös hakuun:', + 'general_search_error' => 'Haussa tapahtui virhe. Virhe tallennettiin lokitiedostoon.', + 'search_box' => 'Hae', + 'search_box_intro' => 'Tervetuloa Firefly III:n hakutoimintoon. Kirjoita hakusi hakukenttään. Lue huolella opastiedostot koska haku on hyvin kehittynyt.', + 'search_error' => 'Hakuvirhe', + 'search_searching' => 'Haetaan ...', + 'search_results' => 'Haun tulokset', // repeat frequencies: - 'repeat_freq_yearly' => 'vuosittain', - 'repeat_freq_half-year' => 'puoli-vuosittain', - 'repeat_freq_quarterly' => 'neljännesvuosittain', - 'repeat_freq_monthly' => 'kuukausittain', - 'repeat_freq_weekly' => 'viikoittain', - 'repeat_freq_daily' => 'päivittäin', - 'daily' => 'päivittäin', - 'weekly' => 'viikoittain', - 'quarterly' => 'neljännesvuosittain', - 'half-year' => 'puoli-vuosittain', - 'yearly' => 'vuosittain', + 'repeat_freq_yearly' => 'vuosittain', + 'repeat_freq_half-year' => 'puoli-vuosittain', + 'repeat_freq_quarterly' => 'neljännesvuosittain', + 'repeat_freq_monthly' => 'kuukausittain', + 'repeat_freq_weekly' => 'viikoittain', + 'repeat_freq_daily' => 'päivittäin', + 'daily' => 'päivittäin', + 'weekly' => 'viikoittain', + 'quarterly' => 'neljännesvuosittain', + 'half-year' => 'puoli-vuosittain', + 'yearly' => 'vuosittain', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Et voi suorittaa aktivoimattomia sääntöjä.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Säännöt', - 'rule_name' => 'Säännön nimi', - 'rule_triggers' => 'Sääntö toteutuu kun', - 'rule_actions' => 'Säännön toiminto', - 'new_rule' => 'Uusi sääntö', - 'new_rule_group' => 'Uusi sääntöryhmä', - 'rule_priority_up' => 'Kasvata säännön tärkeysjärjestystä', - 'rule_priority_down' => 'Pienennä säännön tärkeysjärjestystä', - 'make_new_rule_group' => 'Luo uusi sääntöryhmä', - 'store_new_rule_group' => 'Tallenna uusi sääntöryhmä', - 'created_new_rule_group' => 'Uusi sääntöryhmä ":title" tallennettiin!', - 'updated_rule_group' => 'Sääntöryhmän ":title" päivitys onnistui.', - 'edit_rule_group' => 'Muokkaa sääntöryhmää ":title"', - 'duplicate_rule' => 'Kopioi sääntö ":title"', - 'rule_copy_of' => 'Kopioitu säännöstä ":title"', - 'duplicated_rule' => 'Sääntö ":title" kopioitu uudeksi säännöksi ":newTitle"', - 'delete_rule_group' => 'Poista sääntöryhmä ":title"', - 'deleted_rule_group' => 'Poistettiin sääntöryhmä ":title"', - 'update_rule_group' => 'Päivitä sääntöryhmä', - 'no_rules_in_group' => 'Tässä ryhmässä ei ole yhtään sääntöä', - 'move_rule_group_up' => 'Siirrä sääntöryhmää ylös', - 'move_rule_group_down' => 'Siirrä sääntöryhmää alas', - 'save_rules_by_moving' => 'Tallenna tämä sääntö siirtämällä se toiseen sääntöryhmään:|Tallenna nämä säännöt siirtämällä ne toiseen sääntöryhmään:', - 'make_new_rule' => 'Luo uusi sääntö ryhmään ":title"', - 'make_new_rule_no_group' => 'Luo uusi sääntö', - 'instructions_rule_from_bill' => 'Tapahtumien yhdistäminen laskuun ":name" voi tapahtua automaattisesti. Firefly III voi luoda säännön jota automaattisesti verrataan kaikkiin tapahtumiin jotka talletat. Varmista että alla olevat yksityiskohdat ovat oikein ja tallenna sääntö jotta Firefly III yhdistää ehdot täyttävät tapahtumat automaattisesti uuteen laskuusi.', - 'instructions_rule_from_journal' => 'Luo tapahtumaasi perustuva sääntö. Täydennä tai hyväksy alla oleva lomake.', - 'rule_is_strict' => 'tiukka sääntö', - 'rule_is_not_strict' => 'pehmeä sääntö', - 'rule_help_stop_processing' => 'Kun valitset tämän, seuraavia tämän ryhmän sääntöjä ei toteuteta.', - 'rule_help_strict' => 'Tiukoissa säännöissä KAIKKIEN ehtojen täytyy toteutua jotta toiminto tapahtuu. Pehmeissä säännöissä MINKÄ TAHANSA ehdon toteutuminen riittää toiminnon tapahtumiseen.', - 'rule_help_active' => 'Aktivoimattomat säännöt eivät koskaan toteudu.', - 'stored_new_rule' => 'Tallennettiin uusi sääntö nimellä ":title"', - 'deleted_rule' => 'Poistettiin sääntö ":title"', - 'store_new_rule' => 'Tallenna uusi sääntö', - 'updated_rule' => 'Päivitettiin sääntö ":title"', - 'default_rule_group_name' => 'Oletussäännöt', - 'default_rule_group_description' => 'Kaikki ryhmittämättömät sääntösi.', - 'trigger' => 'Ehto', - 'trigger_value' => 'Ehdon arvo', - 'stop_processing_other_triggers' => 'Älä arvioi loppuja ehtoja', - 'add_rule_trigger' => 'Lisää uusi ehto', - 'action' => 'Toiminto', - 'action_value' => 'Toiminnon arvo', - 'stop_executing_other_actions' => 'Älä suorita loppuja toimintoja', - 'add_rule_action' => 'Lisää uusi toiminto', - 'edit_rule' => 'Muokkaa sääntöä ":title"', - 'delete_rule' => 'Poista sääntö ":title"', - 'update_rule' => 'Päivitä sääntö', - 'test_rule_triggers' => 'Testaa sääntöä - näytä sääntöön sopivat tapahtumat', - 'warning_no_matching_transactions' => 'Vastaavia tapahtumia ei löytynyt.', - 'warning_no_valid_triggers' => 'Yhtään kelvollista ehtoa ei ole annettu.', - 'apply_rule_selection' => 'Aja sääntö ":title" valitsemillesi tapahtumille', - 'apply_rule_selection_intro' => 'Säännöt kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan sen myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun päivität sääntöä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.', - 'include_transactions_from_accounts' => 'Sisällytä tapahtumat näiltä tileiltä', - 'include' => 'Sisällytä?', - 'applied_rule_selection' => '{0} Sääntö ":title" ei muuttanut yhtään tapahtumaa valinnastasi.|[1] Yhtä valintasi tapahtumaa muutettiin säännöllä ":title".|[2,*] :count tapahtumaa valinnastasi muutettiin säännöllä ":title".', - 'execute' => 'Suorita', - 'apply_rule_group_selection' => 'Aja sääntöryhmä ":title" valituille tapahtumille', - 'apply_rule_group_selection_intro' => 'Sääntöryhmät kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan kaikki ryhmän säännöt myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun olet päivittänyt ryhmän sääntöjä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.', - 'applied_rule_group_selection' => 'Sääntöryhmä ":title" on ajettu valituille tapahtumille.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Et voi suorittaa aktivoimattomia sääntöjä.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Säännöt', + 'rule_name' => 'Säännön nimi', + 'rule_triggers' => 'Sääntö toteutuu kun', + 'rule_actions' => 'Säännön toiminto', + 'new_rule' => 'Uusi sääntö', + 'new_rule_group' => 'Uusi sääntöryhmä', + 'rule_priority_up' => 'Kasvata säännön tärkeysjärjestystä', + 'rule_priority_down' => 'Pienennä säännön tärkeysjärjestystä', + 'make_new_rule_group' => 'Luo uusi sääntöryhmä', + 'store_new_rule_group' => 'Tallenna uusi sääntöryhmä', + 'created_new_rule_group' => 'Uusi sääntöryhmä ":title" tallennettiin!', + 'updated_rule_group' => 'Sääntöryhmän ":title" päivitys onnistui.', + 'edit_rule_group' => 'Muokkaa sääntöryhmää ":title"', + 'duplicate_rule' => 'Kopioi sääntö ":title"', + 'rule_copy_of' => 'Kopioitu säännöstä ":title"', + 'duplicated_rule' => 'Sääntö ":title" kopioitu uudeksi säännöksi ":newTitle"', + 'delete_rule_group' => 'Poista sääntöryhmä ":title"', + 'deleted_rule_group' => 'Poistettiin sääntöryhmä ":title"', + 'update_rule_group' => 'Päivitä sääntöryhmä', + 'no_rules_in_group' => 'Tässä ryhmässä ei ole yhtään sääntöä', + 'move_rule_group_up' => 'Siirrä sääntöryhmää ylös', + 'move_rule_group_down' => 'Siirrä sääntöryhmää alas', + 'save_rules_by_moving' => 'Tallenna tämä sääntö siirtämällä se toiseen sääntöryhmään:|Tallenna nämä säännöt siirtämällä ne toiseen sääntöryhmään:', + 'make_new_rule' => 'Luo uusi sääntö ryhmään ":title"', + 'make_new_rule_no_group' => 'Luo uusi sääntö', + 'instructions_rule_from_bill' => 'Tapahtumien yhdistäminen laskuun ":name" voi tapahtua automaattisesti. Firefly III voi luoda säännön jota automaattisesti verrataan kaikkiin tapahtumiin jotka talletat. Varmista että alla olevat yksityiskohdat ovat oikein ja tallenna sääntö jotta Firefly III yhdistää ehdot täyttävät tapahtumat automaattisesti uuteen laskuusi.', + 'instructions_rule_from_journal' => 'Luo tapahtumaasi perustuva sääntö. Täydennä tai hyväksy alla oleva lomake.', + 'rule_is_strict' => 'tiukka sääntö', + 'rule_is_not_strict' => 'pehmeä sääntö', + 'rule_help_stop_processing' => 'Kun valitset tämän, seuraavia tämän ryhmän sääntöjä ei toteuteta.', + 'rule_help_strict' => 'Tiukoissa säännöissä KAIKKIEN ehtojen täytyy toteutua jotta toiminto tapahtuu. Pehmeissä säännöissä MINKÄ TAHANSA ehdon toteutuminen riittää toiminnon tapahtumiseen.', + 'rule_help_active' => 'Aktivoimattomat säännöt eivät koskaan toteudu.', + 'stored_new_rule' => 'Tallennettiin uusi sääntö nimellä ":title"', + 'deleted_rule' => 'Poistettiin sääntö ":title"', + 'store_new_rule' => 'Tallenna uusi sääntö', + 'updated_rule' => 'Päivitettiin sääntö ":title"', + 'default_rule_group_name' => 'Oletussäännöt', + 'default_rule_group_description' => 'Kaikki ryhmittämättömät sääntösi.', + 'trigger' => 'Ehto', + 'trigger_value' => 'Ehdon arvo', + 'stop_processing_other_triggers' => 'Älä arvioi loppuja ehtoja', + 'add_rule_trigger' => 'Lisää uusi ehto', + 'action' => 'Toiminto', + 'action_value' => 'Toiminnon arvo', + 'stop_executing_other_actions' => 'Älä suorita loppuja toimintoja', + 'add_rule_action' => 'Lisää uusi toiminto', + 'edit_rule' => 'Muokkaa sääntöä ":title"', + 'delete_rule' => 'Poista sääntö ":title"', + 'update_rule' => 'Päivitä sääntö', + 'test_rule_triggers' => 'Testaa sääntöä - näytä sääntöön sopivat tapahtumat', + 'warning_no_matching_transactions' => 'Vastaavia tapahtumia ei löytynyt.', + 'warning_no_valid_triggers' => 'Yhtään kelvollista ehtoa ei ole annettu.', + 'apply_rule_selection' => 'Aja sääntö ":title" valitsemillesi tapahtumille', + 'apply_rule_selection_intro' => 'Säännöt kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan sen myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun päivität sääntöä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.', + 'include_transactions_from_accounts' => 'Sisällytä tapahtumat näiltä tileiltä', + 'include' => 'Sisällytä?', + 'applied_rule_selection' => '{0} Sääntö ":title" ei muuttanut yhtään tapahtumaa valinnastasi.|[1] Yhtä valintasi tapahtumaa muutettiin säännöllä ":title".|[2,*] :count tapahtumaa valinnastasi muutettiin säännöllä ":title".', + 'execute' => 'Suorita', + 'apply_rule_group_selection' => 'Aja sääntöryhmä ":title" valituille tapahtumille', + 'apply_rule_group_selection_intro' => 'Sääntöryhmät kuten ":title" ajetaan normaalisti ainoastaan uusille tai päivitetyille tapahtumille, mutta voit pyytää Firefly III:a ajamaan kaikki ryhmän säännöt myös sinun valitsemillesi, jo olemassa oleville tapahtumille. Tämä voi olla kätevää kun olet päivittänyt ryhmän sääntöjä ja haluat muutosten vaikuttavan jo olemassaoleviin tapahtumiin.', + 'applied_rule_group_selection' => 'Sääntöryhmä ":title" on ajettu valituille tapahtumille.', // actions and triggers - 'rule_trigger_store_journal' => 'Kun tapahtuma luodaan', - 'rule_trigger_update_journal' => 'Kun tapahtuma päivitetään', - 'rule_trigger_user_action' => 'Käyttäjän toiminto on ":trigger_value"', + 'rule_trigger_store_journal' => 'Kun tapahtuma luodaan', + 'rule_trigger_update_journal' => 'Kun tapahtuma päivitetään', + 'rule_trigger_user_action' => 'Käyttäjän toiminto on ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Lähdetilin nimi alkaa ...', - 'rule_trigger_source_account_starts' => 'Lähdetilin nimi alkaa tekstillä ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Lähdetilin nimi päättyy..', - 'rule_trigger_source_account_ends' => 'Lähdetilin nimi loppuu tekstiin ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Lähdetilin nimi on..', - 'rule_trigger_source_account_is' => 'Lähdetilin nimi on ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Lähdetilin nimi sisältää..', - 'rule_trigger_source_account_contains' => 'Lähdetilin nimi sisältää ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Lähdetili ID on tarkalleen..', - 'rule_trigger_source_account_id' => 'Lähdetilin tunniste on täsmälleen :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Kohdetilin ID on tarkalleen..', - 'rule_trigger_destination_account_id' => 'Kohdetilin tunniste on täsmälleen :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Lähdetili on (käteis) tili', - 'rule_trigger_source_is_cash' => 'Lähdetili on (käteis) tili', - 'rule_trigger_destination_is_cash_choice' => 'Kohdetili on (käteis) tili', - 'rule_trigger_destination_is_cash' => 'Kohdetili on (käteis) tili', - 'rule_trigger_source_account_nr_starts_choice' => 'Lähdetilin numero / IBAN alkaa..', - 'rule_trigger_source_account_nr_starts' => 'Lähdetilin numero / IBAN alkaa ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Lähdetilin numero / IBAN päättyy..', - 'rule_trigger_source_account_nr_ends' => 'Lähdetilin numero / IBAN päättyy ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Lähdetilin numero / IBAN on..', - 'rule_trigger_source_account_nr_is' => 'Lähdetilin numero / IBAN on ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Lähdetilin numero / IBAN sisältää..', - 'rule_trigger_source_account_nr_contains' => 'Lähdetilin numero / IBAN sisältää ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Kohdetilin nimi alkaa..', - 'rule_trigger_destination_account_starts' => 'Kohdetilin nimi alkaa ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Kohdetilin nimi päättyy..', - 'rule_trigger_destination_account_ends' => 'Kohdetilin nimi päättyy ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Kohdetilin nimi on..', - 'rule_trigger_destination_account_is' => 'Kohdetilin nimi on ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Kohdetilin nimi sisältää..', - 'rule_trigger_destination_account_contains' => 'Kohdetilin nimi sisältää ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Kohdetilin numero / IBAN alkaa..', - 'rule_trigger_destination_account_nr_starts' => 'Kohdetilin numero / IBAN alkaa ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Kohdetilin numero / IBAN päättyy..', - 'rule_trigger_destination_account_nr_ends' => 'Kohdetilin numero / IBAN päättyy ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Kohdetilin numero / IBAN on..', - 'rule_trigger_destination_account_nr_is' => 'Kohdetilin numero / IBAN on ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Kohdetilin numero / IBAN sisältää..', - 'rule_trigger_destination_account_nr_contains' => 'Kohdetilin numero / IBAN sisältää ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Tapahtuman tyyppi on ...', - 'rule_trigger_transaction_type' => 'Tapahtuman tyyppi on ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategoria on ...', - 'rule_trigger_category_is' => 'Kategoria on ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Summa on..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Kuvaus alkaa tekstillä ...', - 'rule_trigger_description_starts' => 'Kuvaus alkaa tekstillä ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Kuvaus päättyy tekstiin ...', - 'rule_trigger_description_ends' => 'Kuvaus päättyy tekstiin ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Kuvaus sisältää ...', - 'rule_trigger_description_contains' => 'Kuvaus sisältää tekstin ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Kuvaus on ...', - 'rule_trigger_description_is' => 'Kuvaus on ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Tapahtumapäivä on..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Tapahtumapäivä on ennen..', - 'rule_trigger_date_before' => 'Tapahtumapäivä on ennen: ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Tapahtumapäivä on jälkeen..', - 'rule_trigger_date_after' => 'Tapahtumapäivä on jälkeen: ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budjetti on ...', - 'rule_trigger_budget_is' => 'Budjetti on ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Tapahtuman valuutta on ...', - 'rule_trigger_currency_is' => 'Tapahtuman valuutta on ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Tapahtuman valuutta on..', - 'rule_trigger_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Tapahtumalla on vähintään näin monta liitettä', - 'rule_trigger_has_attachments' => 'On vähintään :trigger_value liitettä', - 'rule_trigger_has_no_category_choice' => 'Ei kategoriaa', - 'rule_trigger_has_no_category' => 'Tapahtumalla ei ole kategoriaa', - 'rule_trigger_has_any_category_choice' => 'Mikä tahansa kategoria', - 'rule_trigger_has_any_category' => 'Tapahtumalla on kategoria (mikä tahansa)', - 'rule_trigger_has_no_budget_choice' => 'Ei budjettia', - 'rule_trigger_has_no_budget' => 'Tapahtumalla ei ole budjettia', - 'rule_trigger_has_any_budget_choice' => 'On budjetti (mikä tahansa)', - 'rule_trigger_has_any_budget' => 'Tapahtumalla on budjetti (mikä tahansa)', - 'rule_trigger_has_no_bill_choice' => 'Ei laskua', - 'rule_trigger_has_no_bill' => 'Tapahtumalla ei ole laskua', - 'rule_trigger_has_any_bill_choice' => 'On lasku (mikä tahansa)', - 'rule_trigger_has_any_bill' => 'Tapahtumalla on lasku (mikä tahansa)', - 'rule_trigger_has_no_tag_choice' => 'Ei tägejä', - 'rule_trigger_has_no_tag' => 'Tapahtumalla ei ole tägejä', - 'rule_trigger_has_any_tag_choice' => 'On tägi/tägejä (mitä tahansa)', - 'rule_trigger_has_any_tag' => 'Tapahtumalla on tägi tai tägejä (mitä tahansa)', - 'rule_trigger_any_notes_choice' => 'On muistiinpano (mitä tahansa)', - 'rule_trigger_any_notes' => 'Tapahtumalla on muistiinpano (mitä tahansa)', - 'rule_trigger_no_notes_choice' => 'Ei muistiinpanoja', - 'rule_trigger_no_notes' => 'Tapahtumalla ei ole muistiinpanoja', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Lasku on..', - 'rule_trigger_bill_is' => 'Lasku on ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Tapahtumatietueen tunnus on..', - 'rule_trigger_journal_id' => 'Tapahtumatietueen tunnus on ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', - 'rule_trigger_no_external_url' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Tapahtuman tunnus on..', - 'rule_trigger_id' => 'Tapahtumatunnus on ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Lähdetilin nimi alkaa ...', + 'rule_trigger_source_account_starts' => 'Lähdetilin nimi alkaa tekstillä ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Lähdetilin nimi päättyy..', + 'rule_trigger_source_account_ends' => 'Lähdetilin nimi loppuu tekstiin ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Lähdetilin nimi on..', + 'rule_trigger_source_account_is' => 'Lähdetilin nimi on ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Lähdetilin nimi sisältää..', + 'rule_trigger_source_account_contains' => 'Lähdetilin nimi sisältää ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Lähdetili ID on tarkalleen..', + 'rule_trigger_source_account_id' => 'Lähdetilin tunniste on täsmälleen :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Kohdetilin ID on tarkalleen..', + 'rule_trigger_destination_account_id' => 'Kohdetilin tunniste on täsmälleen :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Lähdetili on (käteis) tili', + 'rule_trigger_source_is_cash' => 'Lähdetili on (käteis) tili', + 'rule_trigger_destination_is_cash_choice' => 'Kohdetili on (käteis) tili', + 'rule_trigger_destination_is_cash' => 'Kohdetili on (käteis) tili', + 'rule_trigger_source_account_nr_starts_choice' => 'Lähdetilin numero / IBAN alkaa..', + 'rule_trigger_source_account_nr_starts' => 'Lähdetilin numero / IBAN alkaa ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Lähdetilin numero / IBAN päättyy..', + 'rule_trigger_source_account_nr_ends' => 'Lähdetilin numero / IBAN päättyy ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Lähdetilin numero / IBAN on..', + 'rule_trigger_source_account_nr_is' => 'Lähdetilin numero / IBAN on ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Lähdetilin numero / IBAN sisältää..', + 'rule_trigger_source_account_nr_contains' => 'Lähdetilin numero / IBAN sisältää ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Kohdetilin nimi alkaa..', + 'rule_trigger_destination_account_starts' => 'Kohdetilin nimi alkaa ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Kohdetilin nimi päättyy..', + 'rule_trigger_destination_account_ends' => 'Kohdetilin nimi päättyy ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Kohdetilin nimi on..', + 'rule_trigger_destination_account_is' => 'Kohdetilin nimi on ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Kohdetilin nimi sisältää..', + 'rule_trigger_destination_account_contains' => 'Kohdetilin nimi sisältää ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Kohdetilin numero / IBAN alkaa..', + 'rule_trigger_destination_account_nr_starts' => 'Kohdetilin numero / IBAN alkaa ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Kohdetilin numero / IBAN päättyy..', + 'rule_trigger_destination_account_nr_ends' => 'Kohdetilin numero / IBAN päättyy ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Kohdetilin numero / IBAN on..', + 'rule_trigger_destination_account_nr_is' => 'Kohdetilin numero / IBAN on ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Kohdetilin numero / IBAN sisältää..', + 'rule_trigger_destination_account_nr_contains' => 'Kohdetilin numero / IBAN sisältää ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Tapahtuman tyyppi on ...', + 'rule_trigger_transaction_type' => 'Tapahtuman tyyppi on ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategoria on ...', + 'rule_trigger_category_is' => 'Kategoria on ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Summa on..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Kuvaus alkaa tekstillä ...', + 'rule_trigger_description_starts' => 'Kuvaus alkaa tekstillä ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Kuvaus päättyy tekstiin ...', + 'rule_trigger_description_ends' => 'Kuvaus päättyy tekstiin ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Kuvaus sisältää ...', + 'rule_trigger_description_contains' => 'Kuvaus sisältää tekstin ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Kuvaus on ...', + 'rule_trigger_description_is' => 'Kuvaus on ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Tapahtumapäivä on..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Tapahtumapäivä on ennen..', + 'rule_trigger_date_before' => 'Tapahtumapäivä on ennen: ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Tapahtumapäivä on jälkeen..', + 'rule_trigger_date_after' => 'Tapahtumapäivä on jälkeen: ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budjetti on ...', + 'rule_trigger_budget_is' => 'Budjetti on ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Tapahtuman valuutta on ...', + 'rule_trigger_currency_is' => 'Tapahtuman valuutta on ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Tapahtuman valuutta on..', + 'rule_trigger_foreign_currency_is' => 'Tapahtuman ulkomaan valuutta on ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Tapahtumalla on vähintään näin monta liitettä', + 'rule_trigger_has_attachments' => 'On vähintään :trigger_value liitettä', + 'rule_trigger_has_no_category_choice' => 'Ei kategoriaa', + 'rule_trigger_has_no_category' => 'Tapahtumalla ei ole kategoriaa', + 'rule_trigger_has_any_category_choice' => 'Mikä tahansa kategoria', + 'rule_trigger_has_any_category' => 'Tapahtumalla on kategoria (mikä tahansa)', + 'rule_trigger_has_no_budget_choice' => 'Ei budjettia', + 'rule_trigger_has_no_budget' => 'Tapahtumalla ei ole budjettia', + 'rule_trigger_has_any_budget_choice' => 'On budjetti (mikä tahansa)', + 'rule_trigger_has_any_budget' => 'Tapahtumalla on budjetti (mikä tahansa)', + 'rule_trigger_has_no_bill_choice' => 'Ei laskua', + 'rule_trigger_has_no_bill' => 'Tapahtumalla ei ole laskua', + 'rule_trigger_has_any_bill_choice' => 'On lasku (mikä tahansa)', + 'rule_trigger_has_any_bill' => 'Tapahtumalla on lasku (mikä tahansa)', + 'rule_trigger_has_no_tag_choice' => 'Ei tägejä', + 'rule_trigger_has_no_tag' => 'Tapahtumalla ei ole tägejä', + 'rule_trigger_has_any_tag_choice' => 'On tägi/tägejä (mitä tahansa)', + 'rule_trigger_has_any_tag' => 'Tapahtumalla on tägi tai tägejä (mitä tahansa)', + 'rule_trigger_any_notes_choice' => 'On muistiinpano (mitä tahansa)', + 'rule_trigger_any_notes' => 'Tapahtumalla on muistiinpano (mitä tahansa)', + 'rule_trigger_no_notes_choice' => 'Ei muistiinpanoja', + 'rule_trigger_no_notes' => 'Tapahtumalla ei ole muistiinpanoja', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Lasku on..', + 'rule_trigger_bill_is' => 'Lasku on ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Tapahtumatietueen tunnus on..', + 'rule_trigger_journal_id' => 'Tapahtumatietueen tunnus on ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', + 'rule_trigger_no_external_url' => 'Tapahtumalla ei ole ulkoista URL-osoitetta', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Tapahtuman tunnus on..', + 'rule_trigger_id' => 'Tapahtumatunnus on ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Lasku sisältää..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Lasku päättyy..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Lasku alkaa..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Lasku sisältää..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Lasku päättyy..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Lasku alkaa..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Aseta kategoriaksi ":action_value"', - 'rule_action_clear_category' => 'Tyhjennä kategoria', - 'rule_action_set_budget' => 'Aseta budjetiksi ":action_value"', - 'rule_action_clear_budget' => 'Tyhjennä budjetti', - 'rule_action_add_tag' => 'Lisää tägi ":action_value"', - 'rule_action_remove_tag' => 'Poista tägi ":action_value"', - 'rule_action_remove_all_tags' => 'Poista kaikki tägit', - 'rule_action_set_description' => 'Aseta kuvaus ":action_value"', - 'rule_action_append_description' => 'Liitä kuvauksen loppuun teksti ":action_value"', - 'rule_action_prepend_description' => 'Aloita kuvaus tekstillä ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Tyhjennä kategoria', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Tyhjennä budjetti', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Poista kaikki tägit', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Aseta lähdetiliksi :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Aseta kohdetiliksi :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Liitä muistiinpanon loppuun teksti ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Aloita muistiinpano tekstillä ":action_value"', - 'rule_action_clear_notes_choice' => 'Poista kaikki muistiinpanot', - 'rule_action_clear_notes' => 'Poista kaikki muistiinpanot', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Yhdistä laskuun ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Aseta muistiinpano tapahtumalle ":action_value"', - 'rule_action_convert_deposit_choice' => 'Muuta tapahtuma talletukseksi', - 'rule_action_convert_deposit' => 'Muuta ":action_value" talletukseksi', - 'rule_action_convert_withdrawal_choice' => 'Muuta tapahtuma nostoksi', - 'rule_action_convert_withdrawal' => 'Muuta ":action_value" nostoksi', - 'rule_action_convert_transfer_choice' => 'Muuta tapahtuma siirroksi', - 'rule_action_convert_transfer' => 'Muunna tapahtuma siirroksi tilin ":action_value" kanssa', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Sääntöryhmä laskuille', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Luo uusi sääntö laskulle ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Sääntö laskulle ":name"', - 'new_rule_for_bill_description' => 'Tämä sääntö merkitsee tapahtumia laskulle ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Aseta kategoriaksi ":action_value"', + 'rule_action_clear_category' => 'Tyhjennä kategoria', + 'rule_action_set_budget' => 'Aseta budjetiksi ":action_value"', + 'rule_action_clear_budget' => 'Tyhjennä budjetti', + 'rule_action_add_tag' => 'Lisää tägi ":action_value"', + 'rule_action_remove_tag' => 'Poista tägi ":action_value"', + 'rule_action_remove_all_tags' => 'Poista kaikki tägit', + 'rule_action_set_description' => 'Aseta kuvaus ":action_value"', + 'rule_action_append_description' => 'Liitä kuvauksen loppuun teksti ":action_value"', + 'rule_action_prepend_description' => 'Aloita kuvaus tekstillä ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Tyhjennä kategoria', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Tyhjennä budjetti', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Poista kaikki tägit', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Aseta lähdetiliksi :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Aseta kohdetiliksi :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Liitä muistiinpanon loppuun teksti ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Aloita muistiinpano tekstillä ":action_value"', + 'rule_action_clear_notes_choice' => 'Poista kaikki muistiinpanot', + 'rule_action_clear_notes' => 'Poista kaikki muistiinpanot', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Yhdistä laskuun ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Aseta muistiinpano tapahtumalle ":action_value"', + 'rule_action_convert_deposit_choice' => 'Muuta tapahtuma talletukseksi', + 'rule_action_convert_deposit' => 'Muuta ":action_value" talletukseksi', + 'rule_action_convert_withdrawal_choice' => 'Muuta tapahtuma nostoksi', + 'rule_action_convert_withdrawal' => 'Muuta ":action_value" nostoksi', + 'rule_action_convert_transfer_choice' => 'Muuta tapahtuma siirroksi', + 'rule_action_convert_transfer' => 'Muunna tapahtuma siirroksi tilin ":action_value" kanssa', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Sääntöryhmä laskuille', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Luo uusi sääntö laskulle ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Sääntö laskulle ":name"', + 'new_rule_for_bill_description' => 'Tämä sääntö merkitsee tapahtumia laskulle ":name".', - 'new_rule_for_journal_title' => 'Tapahtumaan ":description" perustuva sääntö', - 'new_rule_for_journal_description' => 'Tämä sääntö perustuu tapahtumaan ":description". Se täsmää tapahtumiin jotka ovat tarkalleen samanlaisia.', + 'new_rule_for_journal_title' => 'Tapahtumaan ":description" perustuva sääntö', + 'new_rule_for_journal_description' => 'Tämä sääntö perustuu tapahtumaan ":description". Se täsmää tapahtumiin jotka ovat tarkalleen samanlaisia.', // tags - 'store_new_tag' => 'Tallenna uusi tägi', - 'update_tag' => 'Päivitä tägi', - 'no_location_set' => 'Sijaintia ei ole asetettu.', - 'meta_data' => 'Metatieto', - 'location' => 'Sijainti', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Ilman päiväystä', - 'result' => 'Tulos', - 'sums_apply_to_range' => 'Kaikki summat sisältyvät valittuun jaksoon', - 'mapbox_api_key' => 'Käyttääksesi karttaa, hanki API-avain Mapboxilta. Avaa .env tiedostosi ja lisää koodi MAPBOX_API_KEY= perään.', - 'press_object_location' => 'Oikealla hiiren napilla (tai pitkä painallus) voit asettaa paikkatiedon.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Tyhjennä sijainti', - 'delete_all_selected_tags' => 'Poista kaikki valitut tägit', - 'select_tags_to_delete' => 'Älä unohda valita tägejä.', - 'deleted_x_tags' => 'Poistettu :count tagi.|Poistettu :count tagia.', - 'create_rule_from_transaction' => 'Luo tapahtumaan perustuva sääntö', - 'create_recurring_from_transaction' => 'Luo toistuva tapahtuma tämän tapahtuman perusteella', + 'store_new_tag' => 'Tallenna uusi tägi', + 'update_tag' => 'Päivitä tägi', + 'no_location_set' => 'Sijaintia ei ole asetettu.', + 'meta_data' => 'Metatieto', + 'location' => 'Sijainti', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Ilman päiväystä', + 'result' => 'Tulos', + 'sums_apply_to_range' => 'Kaikki summat sisältyvät valittuun jaksoon', + 'mapbox_api_key' => 'Käyttääksesi karttaa, hanki API-avain Mapboxilta. Avaa .env tiedostosi ja lisää koodi MAPBOX_API_KEY= perään.', + 'press_object_location' => 'Oikealla hiiren napilla (tai pitkä painallus) voit asettaa paikkatiedon.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Tyhjennä sijainti', + 'delete_all_selected_tags' => 'Poista kaikki valitut tägit', + 'select_tags_to_delete' => 'Älä unohda valita tägejä.', + 'deleted_x_tags' => 'Poistettu :count tagi.|Poistettu :count tagia.', + 'create_rule_from_transaction' => 'Luo tapahtumaan perustuva sääntö', + 'create_recurring_from_transaction' => 'Luo toistuva tapahtuma tämän tapahtuman perusteella', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(sama kuin kieli)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Etusivun tilit', - 'pref_home_screen_accounts_help' => 'Mitkä tilit näytetään etusivulla?', - 'pref_view_range' => 'Tarkasteltava jakso', - 'pref_view_range_help' => 'Osa kuvaajista ryhmitellään automaattisesti jaksoihin. Budjettisi ryhmitellään myös jaksoihin. Minkälaista jaksoa haluat käyttää?', - 'pref_1D' => 'Yksi päivä', - 'pref_1W' => 'Yksi viikko', - 'pref_1M' => 'Yksi kuukausi', - 'pref_3M' => 'Kolme kuukautta (vuosineljännes)', - 'pref_6M' => 'Kuusi kuukautta', - 'pref_1Y' => 'Yksi vuosi', - 'pref_last365' => 'Edellinen vuosi', - 'pref_last90' => 'Viimeiset 90 päivää', - 'pref_last30' => 'Viimeiset 30 päivää', - 'pref_last7' => 'Viimeiset 7 päivää', - 'pref_YTD' => 'Vuoden alusta', - 'pref_QTD' => 'Neljännesvuoden alusta', - 'pref_MTD' => 'Kuukauden alusta', - 'pref_languages' => 'Kielet', - 'pref_locale' => 'Alueasetukset', - 'pref_languages_help' => 'Firefly III tukee useita kieliä. Mitä niistä haluat käyttää?', - 'pref_locale_help' => 'Firefly III antaa sinun asettaa erikseen paikallisia asetuksia, kuten valuuttojen, numeroiden ja päivämäärien muotoilun. Järjestelmäsi ei ehkä tue kaikkia tämän luettelon alueasetuksia. Firefly III:lla ei ole oikeita päivämääräasetuksia jokaiselle alueelle; ota minuun yhteyttä saadaksesi parannuksia.', - 'pref_locale_no_demo' => 'Tämä ominaisuus ei toimi demokäyttäjälle.', - 'pref_custom_fiscal_year' => 'Tilikauden asetukset', - 'pref_custom_fiscal_year_label' => 'Käytössä', - 'pref_custom_fiscal_year_help' => 'Maissa joiden tilikausi on jokin muu kuin Tammikuun 1:stä Joulukuun 31:seen päivään, voit valita tämän ja määrittää tilikauden aloitus- ja lopetuspäivän', - 'pref_fiscal_year_start_label' => 'Tilikauden aloituspäivä', - 'pref_two_factor_auth' => '2-vaiheinen tunnistus', - 'pref_two_factor_auth_help' => 'Kun aktivoit kaksivaiheisen tunnistuksen (tunnetaan myös kaksivaiheisena kirjautumisena), lisäät uuden turvallisuuskerroksen tilillesi. Kirjaudut sisään jollain minkä tiedät (salasanasi) ja jollain mitä sinulla on (vahvistuskoodi). Vahvistuskoodi luodaan puhelimesi tunnistusohjelmalla, vaihtoehtoina esimerkiksi Authy tai Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Ota kaksivaiheinen tunnistus käyttöön', - 'pref_two_factor_auth_disabled' => 'Kaksivaiheisen tunnistuksen vahvistuskoodi mitätöity ja poistettu käytöstä', - 'pref_two_factor_auth_remove_it' => 'Älä unohda poistaa tiliä tunnistusohjelmastasi!', - 'pref_two_factor_auth_code' => 'Tarkista koodi', - 'pref_two_factor_auth_code_help' => 'Skannaa QR koodi puhelimesi tunnistusohjelmalla (Authy tai Google Authenticator) ja anna tähän saamasi koodi.', - 'pref_two_factor_auth_reset_code' => 'Nollaa vahvistuskoodi', - 'pref_two_factor_auth_disable_2fa' => 'Poista kaksivaiheinen tunnistautuminen käytöstä', - '2fa_use_secret_instead' => 'Jos et voi skannata QR koodia, voit sen sijaan käyttää koodia: :secret.', - '2fa_backup_codes' => 'Tallenna nämä varakoodit, jotta et menetä pääsyä Firefly III:een jos vaikka puhelimesi pääsee häviämään.', - '2fa_already_enabled' => 'Kaksivaiheinen tunnistus on jo otettu käyttöön.', - 'wrong_mfa_code' => 'Tämä MFA-koodi ei ole voimassa.', - 'pref_save_settings' => 'Tallenna asetukset', - 'saved_preferences' => 'Asetukset tallennettu!', - 'preferences_general' => 'Yleiset', - 'preferences_frontpage' => 'Etusivu', - 'preferences_security' => 'Turvallisuus', - 'preferences_layout' => 'Asettelu', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Näytä talletukset etusivulla', - 'pref_home_show_deposits_info' => 'Kulutustilisi näkyvät jo etusivulla. Pitäisikö tuottotilisi myös näkyä siellä?', - 'pref_home_do_show_deposits' => 'Kyllä, näytä ne', - 'successful_count' => 'joista :count onnistui', - 'list_page_size_title' => 'Sivun koko', - 'list_page_size_help' => 'Listojen pituus - koskee mitä tahansa listaa asioista (tilit, tapahtumat, jne).', - 'list_page_size_label' => 'Sivun koko', - 'between_dates' => '(:start ja :end)', - 'pref_optional_fields_transaction' => 'Tapahtumien valinnaiset kentät', - 'pref_optional_fields_transaction_help' => 'Yksinkertaisuuden nimissä kaikki kentät eivät alkuun ole näkyvissä luodessasi uusia tapahtumia. Alla voit ottaa käyttöön sinulle hyödyllisiä kenttiä. Asetuksesta huolimatta kaikki kentät joissa jo on sisältöä näytetään - tietenkin.', - 'optional_tj_date_fields' => 'Päivämääräkentät', - 'optional_tj_other_fields' => 'Muut kentät', - 'optional_tj_attachment_fields' => 'Liitekentät', - 'pref_optional_tj_interest_date' => 'Korkopäivä', - 'pref_optional_tj_book_date' => 'Kirjauspäivä', - 'pref_optional_tj_process_date' => 'Käsittelypäivä', - 'pref_optional_tj_due_date' => 'Eräpäivä', - 'pref_optional_tj_payment_date' => 'Maksupäivä', - 'pref_optional_tj_invoice_date' => 'Laskun päivämäärä', - 'pref_optional_tj_internal_reference' => 'Sisäinen viite', - 'pref_optional_tj_notes' => 'Muistiinpanot', - 'pref_optional_tj_attachments' => 'Liitteet', - 'pref_optional_tj_external_url' => 'Ulkoinen URL', - 'pref_optional_tj_location' => 'Sijainti', - 'pref_optional_tj_links' => 'Tapahtuman linkit', - 'optional_field_meta_dates' => 'Päivämäärät', - 'optional_field_meta_business' => 'Yritys', - 'optional_field_attachments' => 'Liitteet', - 'optional_field_meta_data' => 'Valinnainen metatieto', - 'external_url' => 'Ulkoinen URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(sama kuin kieli)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Etusivun tilit', + 'pref_home_screen_accounts_help' => 'Mitkä tilit näytetään etusivulla?', + 'pref_view_range' => 'Tarkasteltava jakso', + 'pref_view_range_help' => 'Osa kuvaajista ryhmitellään automaattisesti jaksoihin. Budjettisi ryhmitellään myös jaksoihin. Minkälaista jaksoa haluat käyttää?', + 'pref_1D' => 'Yksi päivä', + 'pref_1W' => 'Yksi viikko', + 'pref_1M' => 'Yksi kuukausi', + 'pref_3M' => 'Kolme kuukautta (vuosineljännes)', + 'pref_6M' => 'Kuusi kuukautta', + 'pref_1Y' => 'Yksi vuosi', + 'pref_last365' => 'Edellinen vuosi', + 'pref_last90' => 'Viimeiset 90 päivää', + 'pref_last30' => 'Viimeiset 30 päivää', + 'pref_last7' => 'Viimeiset 7 päivää', + 'pref_YTD' => 'Vuoden alusta', + 'pref_QTD' => 'Neljännesvuoden alusta', + 'pref_MTD' => 'Kuukauden alusta', + 'pref_languages' => 'Kielet', + 'pref_locale' => 'Alueasetukset', + 'pref_languages_help' => 'Firefly III tukee useita kieliä. Mitä niistä haluat käyttää?', + 'pref_locale_help' => 'Firefly III antaa sinun asettaa erikseen paikallisia asetuksia, kuten valuuttojen, numeroiden ja päivämäärien muotoilun. Järjestelmäsi ei ehkä tue kaikkia tämän luettelon alueasetuksia. Firefly III:lla ei ole oikeita päivämääräasetuksia jokaiselle alueelle; ota minuun yhteyttä saadaksesi parannuksia.', + 'pref_locale_no_demo' => 'Tämä ominaisuus ei toimi demokäyttäjälle.', + 'pref_custom_fiscal_year' => 'Tilikauden asetukset', + 'pref_custom_fiscal_year_label' => 'Käytössä', + 'pref_custom_fiscal_year_help' => 'Maissa joiden tilikausi on jokin muu kuin Tammikuun 1:stä Joulukuun 31:seen päivään, voit valita tämän ja määrittää tilikauden aloitus- ja lopetuspäivän', + 'pref_fiscal_year_start_label' => 'Tilikauden aloituspäivä', + 'pref_two_factor_auth' => '2-vaiheinen tunnistus', + 'pref_two_factor_auth_help' => 'Kun aktivoit kaksivaiheisen tunnistuksen (tunnetaan myös kaksivaiheisena kirjautumisena), lisäät uuden turvallisuuskerroksen tilillesi. Kirjaudut sisään jollain minkä tiedät (salasanasi) ja jollain mitä sinulla on (vahvistuskoodi). Vahvistuskoodi luodaan puhelimesi tunnistusohjelmalla, vaihtoehtoina esimerkiksi Authy tai Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Ota kaksivaiheinen tunnistus käyttöön', + 'pref_two_factor_auth_disabled' => 'Kaksivaiheisen tunnistuksen vahvistuskoodi mitätöity ja poistettu käytöstä', + 'pref_two_factor_auth_remove_it' => 'Älä unohda poistaa tiliä tunnistusohjelmastasi!', + 'pref_two_factor_auth_code' => 'Tarkista koodi', + 'pref_two_factor_auth_code_help' => 'Skannaa QR koodi puhelimesi tunnistusohjelmalla (Authy tai Google Authenticator) ja anna tähän saamasi koodi.', + 'pref_two_factor_auth_reset_code' => 'Nollaa vahvistuskoodi', + 'pref_two_factor_auth_disable_2fa' => 'Poista kaksivaiheinen tunnistautuminen käytöstä', + '2fa_use_secret_instead' => 'Jos et voi skannata QR koodia, voit sen sijaan käyttää koodia: :secret.', + '2fa_backup_codes' => 'Tallenna nämä varakoodit, jotta et menetä pääsyä Firefly III:een jos vaikka puhelimesi pääsee häviämään.', + '2fa_already_enabled' => 'Kaksivaiheinen tunnistus on jo otettu käyttöön.', + 'wrong_mfa_code' => 'Tämä MFA-koodi ei ole voimassa.', + 'pref_save_settings' => 'Tallenna asetukset', + 'saved_preferences' => 'Asetukset tallennettu!', + 'preferences_general' => 'Yleiset', + 'preferences_frontpage' => 'Etusivu', + 'preferences_security' => 'Turvallisuus', + 'preferences_layout' => 'Asettelu', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Näytä talletukset etusivulla', + 'pref_home_show_deposits_info' => 'Kulutustilisi näkyvät jo etusivulla. Pitäisikö tuottotilisi myös näkyä siellä?', + 'pref_home_do_show_deposits' => 'Kyllä, näytä ne', + 'successful_count' => 'joista :count onnistui', + 'list_page_size_title' => 'Sivun koko', + 'list_page_size_help' => 'Listojen pituus - koskee mitä tahansa listaa asioista (tilit, tapahtumat, jne).', + 'list_page_size_label' => 'Sivun koko', + 'between_dates' => '(:start ja :end)', + 'pref_optional_fields_transaction' => 'Tapahtumien valinnaiset kentät', + 'pref_optional_fields_transaction_help' => 'Yksinkertaisuuden nimissä kaikki kentät eivät alkuun ole näkyvissä luodessasi uusia tapahtumia. Alla voit ottaa käyttöön sinulle hyödyllisiä kenttiä. Asetuksesta huolimatta kaikki kentät joissa jo on sisältöä näytetään - tietenkin.', + 'optional_tj_date_fields' => 'Päivämääräkentät', + 'optional_tj_other_fields' => 'Muut kentät', + 'optional_tj_attachment_fields' => 'Liitekentät', + 'pref_optional_tj_interest_date' => 'Korkopäivä', + 'pref_optional_tj_book_date' => 'Kirjauspäivä', + 'pref_optional_tj_process_date' => 'Käsittelypäivä', + 'pref_optional_tj_due_date' => 'Eräpäivä', + 'pref_optional_tj_payment_date' => 'Maksupäivä', + 'pref_optional_tj_invoice_date' => 'Laskun päivämäärä', + 'pref_optional_tj_internal_reference' => 'Sisäinen viite', + 'pref_optional_tj_notes' => 'Muistiinpanot', + 'pref_optional_tj_attachments' => 'Liitteet', + 'pref_optional_tj_external_url' => 'Ulkoinen URL', + 'pref_optional_tj_location' => 'Sijainti', + 'pref_optional_tj_links' => 'Tapahtuman linkit', + 'optional_field_meta_dates' => 'Päivämäärät', + 'optional_field_meta_business' => 'Yritys', + 'optional_field_attachments' => 'Liitteet', + 'optional_field_meta_data' => 'Valinnainen metatieto', + 'external_url' => 'Ulkoinen URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Kaikki muut istuntosi on kirjattu ulos.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Poista KAIKKI budjettisi', - 'delete_all_categories' => 'Poista KAIKKI kategoriasi', - 'delete_all_tags' => 'Poista KAIKKI tägit', - 'delete_all_bills' => 'Poista KAIKKI laskusi', - 'delete_all_piggy_banks' => 'Poista KAIKKI säästöpossusi', - 'delete_all_rules' => 'Poista KAIKKI sääntösi', - 'delete_all_recurring' => 'Poista KAIKKI toistuvat tapahtumasi', - 'delete_all_object_groups' => 'Poista KAIKKI objektiryhmät', - 'delete_all_accounts' => 'Poista KAIKKI tilisi', - 'delete_all_asset_accounts' => 'Poista KAIKKI tulotilisi', - 'delete_all_expense_accounts' => 'Poista KAIKKI kulutilisi', - 'delete_all_revenue_accounts' => 'Poista kaikki tulotilisi', - 'delete_all_liabilities' => 'Poista KAIKKI lainasi', - 'delete_all_transactions' => 'Poista KAIKKI tapahtumasi', - 'delete_all_withdrawals' => 'Poista KAIKKI nostosi', - 'delete_all_deposits' => 'Poista KAIKKI talletuksesi', - 'delete_all_transfers' => 'Poista KAIKKI siirtosi', - 'also_delete_transactions' => 'Tilien poistaminen poistaa myös KAIKKI niille tehdyt nostot, talletukset ja siirrot!', - 'deleted_all_budgets' => 'Kaikki budjetit on poistettu', - 'deleted_all_categories' => 'Kaikki kategoriat on poistettu', - 'deleted_all_tags' => 'Kaikki tägit on poistettu', - 'deleted_all_bills' => 'Kaikki laskut on poistettu', - 'deleted_all_piggy_banks' => 'Kaikki säästöpossut on poistettu', - 'deleted_all_rules' => 'Kaikki säännöt ja sääntöryhmät on poistettu', - 'deleted_all_object_groups' => 'Kaikki ryhmät on poistettu', - 'deleted_all_accounts' => 'Kaikki tilit on poistettu', - 'deleted_all_asset_accounts' => 'Kaikki omaisuustilit on poistettu', - 'deleted_all_expense_accounts' => 'Kaikki kulutilit on poistettu', - 'deleted_all_revenue_accounts' => 'Kaikki tulotilit on poistettu', - 'deleted_all_liabilities' => 'Kaikki lainat on poistettu', - 'deleted_all_transactions' => 'Kaikki tapahtumat on poistettu', - 'deleted_all_withdrawals' => 'Kaikki nostot on poistettu', - 'deleted_all_deposits' => 'Kaikki talletukset on poistettu', - 'deleted_all_transfers' => 'Kaikki siirrot on poistettu', - 'deleted_all_recurring' => 'Kaikki toistuvat tapahtumat on poistettu', - 'change_your_password' => 'Vaihda salasana', - 'delete_account' => 'Poista käyttäjätili', - 'current_password' => 'Nykyinen salasana', - 'new_password' => 'Uusi salasana', - 'new_password_again' => 'Salasana (uudestaan)', - 'delete_your_account' => 'Poista käyttäjätunnuksesi', - 'delete_your_account_help' => 'Poistamalla käyttäjätilisi poistat myös kaikki tilisi, tapahtumasi, kaikki mitä olet tallentanut Firefly III:een. Nämä kaikki POISTETAAN LOPULLISESTI.', - 'delete_your_account_password' => 'Syötä salasanasi jatkaaksesi.', - 'password' => 'Salasana', - 'are_you_sure' => 'Oletko varma? Et pysty perumaan tätä.', - 'delete_account_button' => 'POISTA käyttäjätilisi', - 'invalid_current_password' => 'Virheellinen nykyinen salasana!', - 'password_changed' => 'Salasana vaihdettu!', - 'should_change' => 'Tarkoituksena olisi vaihtaa salasanasi.', - 'invalid_password' => 'Virheellinen salasana!', - 'what_is_pw_security' => 'Mikä on "varmista salasanan turvallisuus"?', - 'secure_pw_title' => 'Turvallisen salasanan valitseminen', - 'forgot_password_response' => 'Kiitos. Jos sinulla on tili tällä sähköpostiosoitteella, löydät ohjeet saapuneet-kansiostasi.', - 'secure_pw_history' => 'Yhtään viikkoa ei kulu ilman uutisia verkkosivustojen vuotaneista käyttäjien kirjautumistiedoista. Hakkerit ja varkaat käyttävät näitä salasanoja yrittäessään varastaa sinun yksityisiä tietoja. Tämä tieto on arvokasta.', - 'secure_pw_ff' => 'Käytätkö samaa salasanaa kaikkialla internetissä? Jos yksi sivusto vuotaa sinun salasanasi, hakkereilla on pääsy kaikkiin sinun tietoihin. Firefly III luottaa, että sinä valitset vahvan ja yksilöllisen salasanan suojellaksesi taloudellisia tietojasi.', - 'secure_pw_check_box' => 'Auttaaksesi sinua tässä Firefly III voi tarkistaa onko ehdottamasi ja/tai käyttämäsi salasana jo aikaisemmin vuotaneiden joukossa. Jos näin on päässyt tapahtumaan, Firefly III neuvoo sinua olemaan käyttämättä valittua salasanaa.', - 'secure_pw_working_title' => 'Kuinka se toimii?', - 'secure_pw_working' => 'Kun valitset tämän valintaruudun, Firefly III lähettää ensimmäiset 5 kirjainta salasanasi SHA1 tarkisteesta Troy Huntin verkkosivulle vertailua varten. Jos listalta löytyy osumia, salasanasi saattaa olla vaarantunut. Tämä (toivottavasti) estää sinua käyttämästä vaarantuneita salasanoja kuten viimeisin NIST Erikoisjulkaisukin suosittelee.', - 'secure_pw_should' => 'Pitäisikö minun valita tämä?', - 'secure_pw_long_password' => 'Kyllä. Varmista aina, että salasanasi on turvallinen.', - 'command_line_token' => 'Komentorivin tunnus', - 'explain_command_line_token' => 'Tarvitset tämän tunnuksen käyttääksesi komentorivikomentoja kuten tietojen vienti. Ilman sitä, nämä komennot eivät toimi. Älä koskaan kerro kenellekään sinun komentorivitunnustasi. Kukaan ei kysy sinulta sitä, en edes minä. Jos pelkäät kadottaneesi tunnuksen tai olet vähän edes epävarma, voit aina luoda uuden tunnuksen tällä napilla.', - 'regenerate_command_line_token' => 'Luo uusi komentorivitunnus', - 'token_regenerated' => 'Uusi komentorivitunnus luotiin', - 'change_your_email' => 'Muuta sähköpostiosoitetta', - 'email_verification' => 'Sähköpostiviesti lähetetään sekä vanhaan ETTÄ uuteen osoitteeseesi. Turvallisuussyistä et pysty kirjautumaan tilillesi ennen kuin vahvistat uuden sähköpostiosoitteesi. Jos et tiedä pystyykö tämä Firefly III instanssi lähettämään sähköpostia, älä käytä tätä toimintoa. Jos olet ylläpitäjä, voit testata sähköpostin lähetystä Ylläpito-sivulla.', - 'email_changed_logout' => 'Et voi kirjautua sisään, ennen kuin olet vahvistanut sähköpostiosoitteesi.', - 'login_with_new_email' => 'Voit nyt kirjautua uudella sähköpostiosoitteella.', - 'login_with_old_email' => 'Voit kirjautua jälleen vanhalla sähköpostiosoitteellasi.', - 'login_provider_local_only' => 'Tämä toiminto ei ole käytettävissä käytettäessä palveluntarjoajaa ":login_provider" tunnistautumiseen.', - 'external_user_mgt_disabled' => 'Tämä toiminto ei ole käytettävissä, kun Firefly III ei vastaa käyttäjän hallinnasta tai todennuksen käsittelystä.', - 'external_auth_disabled' => 'Tämä toiminto ei ole käytettävissä, kun Firefly III ei vastaa todennuksen käsittelystä.', - 'delete_local_info_only' => 'Koska Firefly III ei ole vastuussa käyttäjän hallinnasta tai todentamisen käsittelystä, tämä toiminto poistaa vain paikalliset Firefly III tiedot.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Asiakkaat', - 'profile_oauth_no_clients' => 'Et ole luonut yhtään OAuth-asiakasta.', - '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_header' => 'Asiakasohjelmat', - 'profile_oauth_client_id' => 'Asiakastunnus', - 'profile_oauth_client_name' => 'Nimi', - 'profile_oauth_client_secret' => 'Salaisuus', - 'profile_oauth_create_new_client' => 'Luo Uusi Asiakas', - 'profile_oauth_create_client' => 'Luo Asiakas', - 'profile_oauth_edit_client' => 'Muokkaa asiakasta', - 'profile_oauth_name_help' => 'Jotain käyttäjillesi tuttua ja luotettavaa.', - 'profile_oauth_redirect_url' => 'URL:n uudelleenohjaus', - 'profile_oauth_redirect_url_help' => 'Sovelluksesi valtuutuksen callback URL.', - 'profile_authorized_apps' => 'Valtuutetut sovellukset', - 'profile_authorized_clients' => 'Valtuutetut asiakkaat', - 'profile_scopes' => 'Aihepiirit', - 'profile_revoke' => 'Peruuta', - 'profile_oauth_client_secret_title' => 'Asiakkaan salausavain (Client secret)', - 'profile_oauth_client_secret_expl' => 'Tässä on uusi asiakkaan salausavaimesi. Tämä on ainoa kerta kun se näytetään, joten älä hukkaa sitä! Voit nyt käyttää tätä avainta tehdäksesi API komentoja.', - 'profile_personal_access_tokens' => 'Henkilökohtaiset Käyttöoikeuskoodit', - 'profile_personal_access_token' => 'Henkilökohtainen Käyttöoikeuskoodi', - 'profile_oauth_confidential' => 'Luottamuksellinen', - 'profile_oauth_confidential_help' => 'Vaadi asiakasta tunnistautumaan salausavaimella. Luotettavat asiakkaat pystyvät ylläpitämään käyttäjätunnuksia turvallisella tavalla paljastamatta niitä luvattomille osapuolille. Julkiset sovellukset, kuten natiivi työpöytä tai JavaScript SPA sovellukset, eivät pysty pitämään salausavaimia tietoturvallisesti.', - 'profile_personal_access_token_explanation' => 'Tässä on uusi henkilökohtainen pääsytunnuksesi. Tämä on ainoa kerta, kun se näytetään, joten älä hävitä sitä! Voit nyt käyttää tätä tunnusta tehdäksesi API-pyyntöjä.', - 'profile_no_personal_access_token' => 'Et ole luonut henkilökohtaisia käyttöoikeustunnuksia.', - 'profile_create_new_token' => 'Luo uusi tunnus', - 'profile_create_token' => 'Luo tunnus', - 'profile_create' => 'Luo', - 'profile_save_changes' => 'Tallenna muutokset', - 'profile_whoops' => 'Hupsis!', - 'profile_something_wrong' => 'Jokin meni vikaan!', - 'profile_try_again' => 'Jokin meni vikaan. Yritä uudelleen.', - 'amounts' => 'Summat', - 'multi_account_warning_unknown' => 'Riippuen luomasi tapahtuman tyypistä, myöhempien jaotteluiden lähde- ja/tai kohdetilin tyyppi voidaan kumota sen mukaan, mitä on määritelty tapahtuman ensimmäisessä jaossa.', - 'multi_account_warning_withdrawal' => 'Muista, että myöhempien jakojen lähdetili määräytyy noston ensimmäisen jaon määritysten mukaan.', - 'multi_account_warning_deposit' => 'Muista, että myöhempien jakojen kohdetili määräytyy talletuksen ensimmäisen jaon määritysten mukaan.', - 'multi_account_warning_transfer' => 'Muista, että myöhempien jakojen lähde- ja kohdetili määräytyvät ensimmäisen jaon määritysten mukaan.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Kaikki muut istuntosi on kirjattu ulos.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Poista KAIKKI budjettisi', + 'delete_all_categories' => 'Poista KAIKKI kategoriasi', + 'delete_all_tags' => 'Poista KAIKKI tägit', + 'delete_all_bills' => 'Poista KAIKKI laskusi', + 'delete_all_piggy_banks' => 'Poista KAIKKI säästöpossusi', + 'delete_all_rules' => 'Poista KAIKKI sääntösi', + 'delete_all_recurring' => 'Poista KAIKKI toistuvat tapahtumasi', + 'delete_all_object_groups' => 'Poista KAIKKI objektiryhmät', + 'delete_all_accounts' => 'Poista KAIKKI tilisi', + 'delete_all_asset_accounts' => 'Poista KAIKKI tulotilisi', + 'delete_all_expense_accounts' => 'Poista KAIKKI kulutilisi', + 'delete_all_revenue_accounts' => 'Poista kaikki tulotilisi', + 'delete_all_liabilities' => 'Poista KAIKKI lainasi', + 'delete_all_transactions' => 'Poista KAIKKI tapahtumasi', + 'delete_all_withdrawals' => 'Poista KAIKKI nostosi', + 'delete_all_deposits' => 'Poista KAIKKI talletuksesi', + 'delete_all_transfers' => 'Poista KAIKKI siirtosi', + 'also_delete_transactions' => 'Tilien poistaminen poistaa myös KAIKKI niille tehdyt nostot, talletukset ja siirrot!', + 'deleted_all_budgets' => 'Kaikki budjetit on poistettu', + 'deleted_all_categories' => 'Kaikki kategoriat on poistettu', + 'deleted_all_tags' => 'Kaikki tägit on poistettu', + 'deleted_all_bills' => 'Kaikki laskut on poistettu', + 'deleted_all_piggy_banks' => 'Kaikki säästöpossut on poistettu', + 'deleted_all_rules' => 'Kaikki säännöt ja sääntöryhmät on poistettu', + 'deleted_all_object_groups' => 'Kaikki ryhmät on poistettu', + 'deleted_all_accounts' => 'Kaikki tilit on poistettu', + 'deleted_all_asset_accounts' => 'Kaikki omaisuustilit on poistettu', + 'deleted_all_expense_accounts' => 'Kaikki kulutilit on poistettu', + 'deleted_all_revenue_accounts' => 'Kaikki tulotilit on poistettu', + 'deleted_all_liabilities' => 'Kaikki lainat on poistettu', + 'deleted_all_transactions' => 'Kaikki tapahtumat on poistettu', + 'deleted_all_withdrawals' => 'Kaikki nostot on poistettu', + 'deleted_all_deposits' => 'Kaikki talletukset on poistettu', + 'deleted_all_transfers' => 'Kaikki siirrot on poistettu', + 'deleted_all_recurring' => 'Kaikki toistuvat tapahtumat on poistettu', + 'change_your_password' => 'Vaihda salasana', + 'delete_account' => 'Poista käyttäjätili', + 'current_password' => 'Nykyinen salasana', + 'new_password' => 'Uusi salasana', + 'new_password_again' => 'Salasana (uudestaan)', + 'delete_your_account' => 'Poista käyttäjätunnuksesi', + 'delete_your_account_help' => 'Poistamalla käyttäjätilisi poistat myös kaikki tilisi, tapahtumasi, kaikki mitä olet tallentanut Firefly III:een. Nämä kaikki POISTETAAN LOPULLISESTI.', + 'delete_your_account_password' => 'Syötä salasanasi jatkaaksesi.', + 'password' => 'Salasana', + 'are_you_sure' => 'Oletko varma? Et pysty perumaan tätä.', + 'delete_account_button' => 'POISTA käyttäjätilisi', + 'invalid_current_password' => 'Virheellinen nykyinen salasana!', + 'password_changed' => 'Salasana vaihdettu!', + 'should_change' => 'Tarkoituksena olisi vaihtaa salasanasi.', + 'invalid_password' => 'Virheellinen salasana!', + 'what_is_pw_security' => 'Mikä on "varmista salasanan turvallisuus"?', + 'secure_pw_title' => 'Turvallisen salasanan valitseminen', + 'forgot_password_response' => 'Kiitos. Jos sinulla on tili tällä sähköpostiosoitteella, löydät ohjeet saapuneet-kansiostasi.', + 'secure_pw_history' => 'Yhtään viikkoa ei kulu ilman uutisia verkkosivustojen vuotaneista käyttäjien kirjautumistiedoista. Hakkerit ja varkaat käyttävät näitä salasanoja yrittäessään varastaa sinun yksityisiä tietoja. Tämä tieto on arvokasta.', + 'secure_pw_ff' => 'Käytätkö samaa salasanaa kaikkialla internetissä? Jos yksi sivusto vuotaa sinun salasanasi, hakkereilla on pääsy kaikkiin sinun tietoihin. Firefly III luottaa, että sinä valitset vahvan ja yksilöllisen salasanan suojellaksesi taloudellisia tietojasi.', + 'secure_pw_check_box' => 'Auttaaksesi sinua tässä Firefly III voi tarkistaa onko ehdottamasi ja/tai käyttämäsi salasana jo aikaisemmin vuotaneiden joukossa. Jos näin on päässyt tapahtumaan, Firefly III neuvoo sinua olemaan käyttämättä valittua salasanaa.', + 'secure_pw_working_title' => 'Kuinka se toimii?', + 'secure_pw_working' => 'Kun valitset tämän valintaruudun, Firefly III lähettää ensimmäiset 5 kirjainta salasanasi SHA1 tarkisteesta Troy Huntin verkkosivulle vertailua varten. Jos listalta löytyy osumia, salasanasi saattaa olla vaarantunut. Tämä (toivottavasti) estää sinua käyttämästä vaarantuneita salasanoja kuten viimeisin NIST Erikoisjulkaisukin suosittelee.', + 'secure_pw_should' => 'Pitäisikö minun valita tämä?', + 'secure_pw_long_password' => 'Kyllä. Varmista aina, että salasanasi on turvallinen.', + 'command_line_token' => 'Komentorivin tunnus', + 'explain_command_line_token' => 'Tarvitset tämän tunnuksen käyttääksesi komentorivikomentoja kuten tietojen vienti. Ilman sitä, nämä komennot eivät toimi. Älä koskaan kerro kenellekään sinun komentorivitunnustasi. Kukaan ei kysy sinulta sitä, en edes minä. Jos pelkäät kadottaneesi tunnuksen tai olet vähän edes epävarma, voit aina luoda uuden tunnuksen tällä napilla.', + 'regenerate_command_line_token' => 'Luo uusi komentorivitunnus', + 'token_regenerated' => 'Uusi komentorivitunnus luotiin', + 'change_your_email' => 'Muuta sähköpostiosoitetta', + 'email_verification' => 'Sähköpostiviesti lähetetään sekä vanhaan ETTÄ uuteen osoitteeseesi. Turvallisuussyistä et pysty kirjautumaan tilillesi ennen kuin vahvistat uuden sähköpostiosoitteesi. Jos et tiedä pystyykö tämä Firefly III instanssi lähettämään sähköpostia, älä käytä tätä toimintoa. Jos olet ylläpitäjä, voit testata sähköpostin lähetystä Ylläpito-sivulla.', + 'email_changed_logout' => 'Et voi kirjautua sisään, ennen kuin olet vahvistanut sähköpostiosoitteesi.', + 'login_with_new_email' => 'Voit nyt kirjautua uudella sähköpostiosoitteella.', + 'login_with_old_email' => 'Voit kirjautua jälleen vanhalla sähköpostiosoitteellasi.', + 'login_provider_local_only' => 'Tämä toiminto ei ole käytettävissä käytettäessä palveluntarjoajaa ":login_provider" tunnistautumiseen.', + 'external_user_mgt_disabled' => 'Tämä toiminto ei ole käytettävissä, kun Firefly III ei vastaa käyttäjän hallinnasta tai todennuksen käsittelystä.', + 'external_auth_disabled' => 'Tämä toiminto ei ole käytettävissä, kun Firefly III ei vastaa todennuksen käsittelystä.', + 'delete_local_info_only' => 'Koska Firefly III ei ole vastuussa käyttäjän hallinnasta tai todentamisen käsittelystä, tämä toiminto poistaa vain paikalliset Firefly III tiedot.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Asiakkaat', + 'profile_oauth_no_clients' => 'Et ole luonut yhtään OAuth-asiakasta.', + '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_header' => 'Asiakasohjelmat', + 'profile_oauth_client_id' => 'Asiakastunnus', + 'profile_oauth_client_name' => 'Nimi', + 'profile_oauth_client_secret' => 'Salaisuus', + 'profile_oauth_create_new_client' => 'Luo Uusi Asiakas', + 'profile_oauth_create_client' => 'Luo Asiakas', + 'profile_oauth_edit_client' => 'Muokkaa asiakasta', + 'profile_oauth_name_help' => 'Jotain käyttäjillesi tuttua ja luotettavaa.', + 'profile_oauth_redirect_url' => 'URL:n uudelleenohjaus', + 'profile_oauth_redirect_url_help' => 'Sovelluksesi valtuutuksen callback URL.', + 'profile_authorized_apps' => 'Valtuutetut sovellukset', + 'profile_authorized_clients' => 'Valtuutetut asiakkaat', + 'profile_scopes' => 'Aihepiirit', + 'profile_revoke' => 'Peruuta', + 'profile_oauth_client_secret_title' => 'Asiakkaan salausavain (Client secret)', + 'profile_oauth_client_secret_expl' => 'Tässä on uusi asiakkaan salausavaimesi. Tämä on ainoa kerta kun se näytetään, joten älä hukkaa sitä! Voit nyt käyttää tätä avainta tehdäksesi API komentoja.', + 'profile_personal_access_tokens' => 'Henkilökohtaiset Käyttöoikeuskoodit', + 'profile_personal_access_token' => 'Henkilökohtainen Käyttöoikeuskoodi', + 'profile_oauth_confidential' => 'Luottamuksellinen', + 'profile_oauth_confidential_help' => 'Vaadi asiakasta tunnistautumaan salausavaimella. Luotettavat asiakkaat pystyvät ylläpitämään käyttäjätunnuksia turvallisella tavalla paljastamatta niitä luvattomille osapuolille. Julkiset sovellukset, kuten natiivi työpöytä tai JavaScript SPA sovellukset, eivät pysty pitämään salausavaimia tietoturvallisesti.', + 'profile_personal_access_token_explanation' => 'Tässä on uusi henkilökohtainen pääsytunnuksesi. Tämä on ainoa kerta, kun se näytetään, joten älä hävitä sitä! Voit nyt käyttää tätä tunnusta tehdäksesi API-pyyntöjä.', + 'profile_no_personal_access_token' => 'Et ole luonut henkilökohtaisia käyttöoikeustunnuksia.', + 'profile_create_new_token' => 'Luo uusi tunnus', + 'profile_create_token' => 'Luo tunnus', + 'profile_create' => 'Luo', + 'profile_save_changes' => 'Tallenna muutokset', + 'profile_whoops' => 'Hupsis!', + 'profile_something_wrong' => 'Jokin meni vikaan!', + 'profile_try_again' => 'Jokin meni vikaan. Yritä uudelleen.', + 'amounts' => 'Summat', + 'multi_account_warning_unknown' => 'Riippuen luomasi tapahtuman tyypistä, myöhempien jaotteluiden lähde- ja/tai kohdetilin tyyppi voidaan kumota sen mukaan, mitä on määritelty tapahtuman ensimmäisessä jaossa.', + 'multi_account_warning_withdrawal' => 'Muista, että myöhempien jakojen lähdetili määräytyy noston ensimmäisen jaon määritysten mukaan.', + 'multi_account_warning_deposit' => 'Muista, että myöhempien jakojen kohdetili määräytyy talletuksen ensimmäisen jaon määritysten mukaan.', + 'multi_account_warning_transfer' => 'Muista, että myöhempien jakojen lähde- ja kohdetili määräytyvät ensimmäisen jaon määritysten mukaan.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Vie tietoja Firefly III:sta', - 'export_data_menu' => 'Vie tietoja', - 'export_data_bc' => 'Vie tietoja Firefly III:sta', - 'export_data_main_title' => 'Vie tietoja Firefly III:sta', - 'export_data_expl' => 'Tämän linkin avulla voit viedä kaikki tapahtumat ja metatiedot Firefly III:sta. Katso ohjeista (oikeassa yläkulmassa (?) - kuvake) saadaksesi lisätietoja prosessista.', - 'export_data_all_transactions' => 'Vie kaikki tapahtumat', - 'export_data_advanced_expl' => 'Jos tarvitset edistyneempää tai tietyn tyyppistä vientiä, lue ohjeet konsolikomennon käytöstä php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Vie tietoja Firefly III:sta', + 'export_data_menu' => 'Vie tietoja', + 'export_data_bc' => 'Vie tietoja Firefly III:sta', + 'export_data_main_title' => 'Vie tietoja Firefly III:sta', + 'export_data_expl' => 'Tämän linkin avulla voit viedä kaikki tapahtumat ja metatiedot Firefly III:sta. Katso ohjeista (oikeassa yläkulmassa (?) - kuvake) saadaksesi lisätietoja prosessista.', + 'export_data_all_transactions' => 'Vie kaikki tapahtumat', + 'export_data_advanced_expl' => 'Jos tarvitset edistyneempää tai tietyn tyyppistä vientiä, lue ohjeet konsolikomennon käytöstä php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Yksi liite|:count liitettä', - 'attachments' => 'Liitteet', - 'edit_attachment' => 'Muokkaa liitettä ":name"', - 'update_attachment' => 'Päivitä liite', - 'delete_attachment' => 'Poista liite ":name"', - 'attachment_deleted' => 'Liite ":name" poistettu', - 'liabilities_deleted' => 'Laina ":name" poistettu', - 'attachment_updated' => 'Liite ":name" päivitetty', - 'upload_max_file_size' => 'Tiedoston enimmäiskoko: :size', - 'list_all_attachments' => 'Lista kaikista liitteistä', + 'nr_of_attachments' => 'Yksi liite|:count liitettä', + 'attachments' => 'Liitteet', + 'edit_attachment' => 'Muokkaa liitettä ":name"', + 'update_attachment' => 'Päivitä liite', + 'delete_attachment' => 'Poista liite ":name"', + 'attachment_deleted' => 'Liite ":name" poistettu', + 'liabilities_deleted' => 'Laina ":name" poistettu', + 'attachment_updated' => 'Liite ":name" päivitetty', + 'upload_max_file_size' => 'Tiedoston enimmäiskoko: :size', + 'list_all_attachments' => 'Lista kaikista liitteistä', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Kustannukset', - 'title_withdrawal' => 'Kustannukset', - 'title_revenue' => 'Tuotto / ansio', - 'title_deposit' => 'Tuotto / ansio', - 'title_transfer' => 'Tilisiirrot', - 'title_transfers' => 'Tilisiirrot', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Kustannukset', + 'title_withdrawal' => 'Kustannukset', + 'title_revenue' => 'Tuotto / ansio', + 'title_deposit' => 'Tuotto / ansio', + 'title_transfer' => 'Tilisiirrot', + 'title_transfers' => 'Tilisiirrot', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Tämä tapahtuma on jo nosto', - 'convert_is_already_type_Deposit' => 'Tämä tapahtuma on jo talletus', - 'convert_is_already_type_Transfer' => 'Tämä tapahtuma on jo siirto', - 'convert_to_Withdrawal' => 'Muuta ":description" nostoksi', - 'convert_to_Deposit' => 'Muuta ":description" talletukseksi', - 'convert_to_Transfer' => 'Muuta ":description" siirroksi', - 'convert_options_WithdrawalDeposit' => 'Muuta nosto talletukseksi', - 'convert_options_WithdrawalTransfer' => 'Muuta nosto siirroksi', - 'convert_options_DepositTransfer' => 'Muuta talletus siirroksi', - 'convert_options_DepositWithdrawal' => 'Muuta talletus nostoksi', - 'convert_options_TransferWithdrawal' => 'Muuta siirto nostoksi', - 'convert_options_TransferDeposit' => 'Muuta siirto talletukseksi', - 'convert_Withdrawal_to_deposit' => 'Muuta tämä nosto talletukseksi', - 'convert_Withdrawal_to_transfer' => 'Muuta tämä nosto siirroksi', - 'convert_Deposit_to_withdrawal' => 'Muuta tämä talletus nostoksi', - 'convert_Deposit_to_transfer' => 'Muuta tämä talletus siirroksi', - 'convert_Transfer_to_deposit' => 'Muuta tämä siirto talletukseksi', - 'convert_Transfer_to_withdrawal' => 'Muuta tämä siirto nostoksi', - 'convert_please_set_revenue_source' => 'Valitse tuottotili jolta raha tulee.', - 'convert_please_set_asset_destination' => 'Valitse omaisuustili jonne raha menee.', - 'convert_please_set_expense_destination' => 'Valitse kulutustili jonne raha menee.', - 'convert_please_set_asset_source' => 'Valitse omaisuustili jolta raha tulee.', - 'convert_expl_w_d' => 'Kun nosto muunnetaan talletukseksi, summa talletetaan näytettävälle kohdetilille sen sijaan, että ne poistettaisiin siltä.|Kun nosto muunnetaan talletukseksi, summa talletetaan näytettäville määrätileille sen sijaan, että se poistettaisiin niiltä.', - 'convert_expl_w_t' => 'Kun nosto muutetaan siirroksi, raha siirretään pois lähdetililtä muuhun omaisuus- tai lainatilille sen sijaan, että se käytettäisiin alkuperäiseen kulutiliin.|Kun nosto muutetaan siirroksi, raha siirretään pois lähdetileiltä muihin omaisuus- tai lainatileille sen sijaan, että se käytettäisiin alkuperäisiin kulutileihin.', - 'convert_expl_d_w' => 'Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyltä lähdetililtä sen sijaan, että ne talletettaisiin sille.|Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyiltä lähdetileiltä sen sijaan, että ne talletettaisiin niille.', - 'convert_expl_d_t' => 'Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetilille miltä tahansa omaisuus- tai lainatililtäsi.|Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetileille miltä tahansa omaisuus- tai lainatileiltäsi.', - 'convert_expl_t_w' => 'Kun muunnat siirron nostoksi, rahat talletetaan kohdetilille, jonka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.|Kun muunnat siirron nostoksi, rahat talletetaan kohdetileille, jotka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.', - 'convert_expl_t_d' => 'Kun muunnat siirron talletukseksi, summa talletetaan kohdetilille, jonka näet täällä, sen sijaan että se siirrettäisiin sille.|Kun muunnat siirron talletukseksi, summa talletetaan kohdetileille, jotka näet täällä, sen sijaan että se siirrettäisiin niille.', - 'convert_select_sources' => 'Viimeistelläksesi muuntamisen, aseta alla uusi lähdetili.|Viimeistelläksesi muuntamisen, aseta alla uudet lähdetilit.', - 'convert_select_destinations' => 'Viimeistelläksesi muuntamisen, valitse alta uusi kohdetili.|Viimeistelläksesi muuntamisen, valitse alta uudet kohdetilit.', - 'converted_to_Withdrawal' => 'Tapahtuma on muutettu nostoksi', - 'converted_to_Deposit' => 'Tapahtuma on muutettu talletukseksi', - 'converted_to_Transfer' => 'Tapahtuma on muutettu siirroksi', - 'invalid_convert_selection' => 'Valitsemaasi tiliä on joko jo käytetty tässä tapahtumassa tai sitä ei ole olemassa.', - 'source_or_dest_invalid' => 'Tapahtuman tiedot eivät joko riitä tai kelpaa muunnoksen tekemiseen. Muunnos ei ole mahdollinen.', - 'convert_to_withdrawal' => 'Muuta nostoksi', - 'convert_to_deposit' => 'Muuta talletukseksi', - 'convert_to_transfer' => 'Muuta siirroksi', + 'convert_is_already_type_Withdrawal' => 'Tämä tapahtuma on jo nosto', + 'convert_is_already_type_Deposit' => 'Tämä tapahtuma on jo talletus', + 'convert_is_already_type_Transfer' => 'Tämä tapahtuma on jo siirto', + 'convert_to_Withdrawal' => 'Muuta ":description" nostoksi', + 'convert_to_Deposit' => 'Muuta ":description" talletukseksi', + 'convert_to_Transfer' => 'Muuta ":description" siirroksi', + 'convert_options_WithdrawalDeposit' => 'Muuta nosto talletukseksi', + 'convert_options_WithdrawalTransfer' => 'Muuta nosto siirroksi', + 'convert_options_DepositTransfer' => 'Muuta talletus siirroksi', + 'convert_options_DepositWithdrawal' => 'Muuta talletus nostoksi', + 'convert_options_TransferWithdrawal' => 'Muuta siirto nostoksi', + 'convert_options_TransferDeposit' => 'Muuta siirto talletukseksi', + 'convert_Withdrawal_to_deposit' => 'Muuta tämä nosto talletukseksi', + 'convert_Withdrawal_to_transfer' => 'Muuta tämä nosto siirroksi', + 'convert_Deposit_to_withdrawal' => 'Muuta tämä talletus nostoksi', + 'convert_Deposit_to_transfer' => 'Muuta tämä talletus siirroksi', + 'convert_Transfer_to_deposit' => 'Muuta tämä siirto talletukseksi', + 'convert_Transfer_to_withdrawal' => 'Muuta tämä siirto nostoksi', + 'convert_please_set_revenue_source' => 'Valitse tuottotili jolta raha tulee.', + 'convert_please_set_asset_destination' => 'Valitse omaisuustili jonne raha menee.', + 'convert_please_set_expense_destination' => 'Valitse kulutustili jonne raha menee.', + 'convert_please_set_asset_source' => 'Valitse omaisuustili jolta raha tulee.', + 'convert_expl_w_d' => 'Kun nosto muunnetaan talletukseksi, summa talletetaan näytettävälle kohdetilille sen sijaan, että ne poistettaisiin siltä.|Kun nosto muunnetaan talletukseksi, summa talletetaan näytettäville määrätileille sen sijaan, että se poistettaisiin niiltä.', + 'convert_expl_w_t' => 'Kun nosto muutetaan siirroksi, raha siirretään pois lähdetililtä muuhun omaisuus- tai lainatilille sen sijaan, että se käytettäisiin alkuperäiseen kulutiliin.|Kun nosto muutetaan siirroksi, raha siirretään pois lähdetileiltä muihin omaisuus- tai lainatileille sen sijaan, että se käytettäisiin alkuperäisiin kulutileihin.', + 'convert_expl_d_w' => 'Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyltä lähdetililtä sen sijaan, että ne talletettaisiin sille.|Kun talletus muunnetaan nostoksi, rahat poistetaan näytetyiltä lähdetileiltä sen sijaan, että ne talletettaisiin niille.', + 'convert_expl_d_t' => 'Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetilille miltä tahansa omaisuus- tai lainatililtäsi.|Kun muutat talletuksen siirroksi, rahat talletetaan listan kohdetileille miltä tahansa omaisuus- tai lainatileiltäsi.', + 'convert_expl_t_w' => 'Kun muunnat siirron nostoksi, rahat talletetaan kohdetilille, jonka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.|Kun muunnat siirron nostoksi, rahat talletetaan kohdetileille, jotka olet määrittänyt täällä, sen sijaan, että ne siirrettäisiin pois.', + 'convert_expl_t_d' => 'Kun muunnat siirron talletukseksi, summa talletetaan kohdetilille, jonka näet täällä, sen sijaan että se siirrettäisiin sille.|Kun muunnat siirron talletukseksi, summa talletetaan kohdetileille, jotka näet täällä, sen sijaan että se siirrettäisiin niille.', + 'convert_select_sources' => 'Viimeistelläksesi muuntamisen, aseta alla uusi lähdetili.|Viimeistelläksesi muuntamisen, aseta alla uudet lähdetilit.', + 'convert_select_destinations' => 'Viimeistelläksesi muuntamisen, valitse alta uusi kohdetili.|Viimeistelläksesi muuntamisen, valitse alta uudet kohdetilit.', + 'converted_to_Withdrawal' => 'Tapahtuma on muutettu nostoksi', + 'converted_to_Deposit' => 'Tapahtuma on muutettu talletukseksi', + 'converted_to_Transfer' => 'Tapahtuma on muutettu siirroksi', + 'invalid_convert_selection' => 'Valitsemaasi tiliä on joko jo käytetty tässä tapahtumassa tai sitä ei ole olemassa.', + 'source_or_dest_invalid' => 'Tapahtuman tiedot eivät joko riitä tai kelpaa muunnoksen tekemiseen. Muunnos ei ole mahdollinen.', + 'convert_to_withdrawal' => 'Muuta nostoksi', + 'convert_to_deposit' => 'Muuta talletukseksi', + 'convert_to_transfer' => 'Muuta siirroksi', // create new stuff: - 'create_new_withdrawal' => 'Luo uusi nosto', - 'create_new_deposit' => 'Luo uusi talletus', - 'create_new_transfer' => 'Luo uusi siirto', - 'create_new_asset' => 'Luo uusi omaisuustili', - 'create_new_liabilities' => 'Luo uusi laina', - 'create_new_expense' => 'Luo uusi maksutili', - 'create_new_revenue' => 'Luo uusi tuottotili', - 'create_new_piggy_bank' => 'Luo uusi säästöpossu', - 'create_new_bill' => 'Luo uusi lasku', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Luo uusi nosto', + 'create_new_deposit' => 'Luo uusi talletus', + 'create_new_transfer' => 'Luo uusi siirto', + 'create_new_asset' => 'Luo uusi omaisuustili', + 'create_new_liabilities' => 'Luo uusi laina', + 'create_new_expense' => 'Luo uusi maksutili', + 'create_new_revenue' => 'Luo uusi tuottotili', + 'create_new_piggy_bank' => 'Luo uusi säästöpossu', + 'create_new_bill' => 'Luo uusi lasku', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Luo uusi valuutta', - 'store_currency' => 'Tallenna uusi valuutta', - 'update_currency' => 'Päivitä valuutta', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Valuuttaa :name ei voida poistaa koska se on yhä käytössä.', - 'cannot_delete_fallback_currency' => ':name on järjestelmän varavaluutta eikä sitä voi poistaa.', - 'cannot_disable_currency_journals' => 'Valuuttaa :name ei voi poistaa käytöstä koska tapahtumat käyttävät sitä yhä.', - 'cannot_disable_currency_last_left' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on viimeinen käytössä oleva valuutta.', - 'cannot_disable_currency_account_meta' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä omaisuustileissä.', - 'cannot_disable_currency_bills' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä laskuissa.', - 'cannot_disable_currency_recurring' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä toistuvissa tapahtumissa.', - 'cannot_disable_currency_available_budgets' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä budjeteissa.', - 'cannot_disable_currency_budget_limits' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä budjettirajoissa.', - 'cannot_disable_currency_current_default' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on tämän hetkinen oletusvaluutta.', - 'cannot_disable_currency_system_fallback' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on Firefly III:n oletusvaluutta.', - 'disable_EUR_side_effects' => 'Euro on Firefly III:n hätävaraoletusvaluutta. Sen poistaminen käytöstä voi aiheuttaa epätoivottuja ja yllättäviä oireita ja ainakin mitätöi tuotetakuun.', - 'deleted_currency' => 'Valuutta :name poistettu', - 'created_currency' => 'Valuutta :name luotu', - 'could_not_store_currency' => 'Uutta valuuttaa ei voitu tallentaa.', - 'updated_currency' => 'Valuutta :name päivitetty', - 'ask_site_owner' => 'Pyydä että :owner lisää, poistaa tai muokkaa valuuttoja.', - 'currencies_intro' => 'Firefly III tukee useita valuuttoja joita voit luoda ja ottaa käyttöön täällä.', - 'make_default_currency' => 'Aseta oletukseksi', - 'default_currency' => 'oletus', - 'currency_is_disabled' => 'Ei käytössä', - 'enable_currency' => 'Ota käyttöön', - 'disable_currency' => 'Poista käytöstä', - 'currencies_default_disabled' => 'Suurin osa näistä valuutoista on alkuun poistettu käytöstä. Ne pitää erikseen kytkeä päälle jos haluat käyttää niitä.', - 'currency_is_now_enabled' => 'Valuutta ":name" on otettu käyttöön', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Valuutta ":name" poistettiin käytöstä', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Luo uusi valuutta', + 'store_currency' => 'Tallenna uusi valuutta', + 'update_currency' => 'Päivitä valuutta', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Valuuttaa :name ei voida poistaa koska se on yhä käytössä.', + 'cannot_delete_fallback_currency' => ':name on järjestelmän varavaluutta eikä sitä voi poistaa.', + 'cannot_disable_currency_journals' => 'Valuuttaa :name ei voi poistaa käytöstä koska tapahtumat käyttävät sitä yhä.', + 'cannot_disable_currency_last_left' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on viimeinen käytössä oleva valuutta.', + 'cannot_disable_currency_account_meta' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä omaisuustileissä.', + 'cannot_disable_currency_bills' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä laskuissa.', + 'cannot_disable_currency_recurring' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä toistuvissa tapahtumissa.', + 'cannot_disable_currency_available_budgets' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä budjeteissa.', + 'cannot_disable_currency_budget_limits' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on käytössä budjettirajoissa.', + 'cannot_disable_currency_current_default' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on tämän hetkinen oletusvaluutta.', + 'cannot_disable_currency_system_fallback' => 'Valuuttaa :name ei voi poistaa käytöstä koska se on Firefly III:n oletusvaluutta.', + 'disable_EUR_side_effects' => 'Euro on Firefly III:n hätävaraoletusvaluutta. Sen poistaminen käytöstä voi aiheuttaa epätoivottuja ja yllättäviä oireita ja ainakin mitätöi tuotetakuun.', + 'deleted_currency' => 'Valuutta :name poistettu', + 'created_currency' => 'Valuutta :name luotu', + 'could_not_store_currency' => 'Uutta valuuttaa ei voitu tallentaa.', + 'updated_currency' => 'Valuutta :name päivitetty', + 'ask_site_owner' => 'Pyydä että :owner lisää, poistaa tai muokkaa valuuttoja.', + 'currencies_intro' => 'Firefly III tukee useita valuuttoja joita voit luoda ja ottaa käyttöön täällä.', + 'make_default_currency' => 'Aseta oletukseksi', + 'default_currency' => 'oletus', + 'currency_is_disabled' => 'Ei käytössä', + 'enable_currency' => 'Ota käyttöön', + 'disable_currency' => 'Poista käytöstä', + 'currencies_default_disabled' => 'Suurin osa näistä valuutoista on alkuun poistettu käytöstä. Ne pitää erikseen kytkeä päälle jos haluat käyttää niitä.', + 'currency_is_now_enabled' => 'Valuutta ":name" on otettu käyttöön', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Valuutta ":name" poistettiin käytöstä', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Pakolliset kentät', - 'optionalFields' => 'Valinnaiset kentät', - 'options' => 'Valinnat', + 'mandatoryFields' => 'Pakolliset kentät', + 'optionalFields' => 'Valinnaiset kentät', + 'options' => 'Valinnat', // budgets: - 'daily_budgets' => 'Päivittäiset budjetit', - 'weekly_budgets' => 'Viikoittaiset budjetit', - 'monthly_budgets' => 'Kuukausittaiset budjetit', - 'quarterly_budgets' => 'Neljännesvuosittaiset budjetit', - 'half_year_budgets' => 'Puolivuosittaiset budjetit', - 'yearly_budgets' => 'Vuosittaiset budjetit', - 'other_budgets' => 'Mukautetun ajan budjetit', - 'budget_limit_not_in_range' => 'Tämä summa on voimassa välillä :start - :end:', - 'total_available_budget' => 'Budjetissa jäljellä (välillä :start ja :end)', - 'total_available_budget_in_currency' => 'Budjetissa jäljellä valuutassa :currency', - 'see_below' => 'katso alla', - 'create_new_budget' => 'Luo uusi budjetti', - 'store_new_budget' => 'Tallenna uusi budjetti', - 'stored_new_budget' => 'Tallennettiin uusi budjetti ":name"', - 'available_between' => 'Rahaa jäljellä välillä :start ja :end', - 'transactionsWithoutBudget' => 'Kulut ilman budjettia', - 'transactions_no_budget' => 'Kulut ilman budjettia välillä :start ja :end', - 'spent_between' => 'Jo kulutettu välillä :start ja :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Aseta käytettävissä oleva summa', - 'update_available_amount' => 'Päivitä käytettävissä oleva summa', - 'ab_basic_modal_explain' => 'Käytä tätä lomaketta arvioidessasi kuinka paljon uskot pystyväsi budjetoimaan (kokonaisuudessaan, valuutassa :currency) valitulla jaksolla.', - 'createBudget' => 'Uusi budjetti', - 'invalid_currency' => 'Tämä ei kelpaa valuutaksi', - 'invalid_amount' => 'Anna summa', - 'set_ab' => 'Käytettävissä oleva budjetti on asetettu', - 'updated_ab' => 'Käytettävissä oleva budjetti on päivitetty', - 'deleted_ab' => 'Käytettävissä oleva budjetti on poistettu', - 'deleted_bl' => 'Budjetoitu summa on poistettu', - 'alt_currency_ab_create' => 'Aseta käytettävissä oleva budjetti toisessa valuutassa', - 'bl_create_btn' => 'Aseta budjetti toisessa valuutassa', - 'inactiveBudgets' => 'Ei käytössä olevat budjetit', - 'without_budget_between' => 'Siirrot ilman budjettia välillä :start ja :end', - 'delete_budget' => 'Poista budjetti ":name"', - 'deleted_budget' => 'Poistettiin budjetti ":name"', - 'edit_budget' => 'Muokkaa budjettia ":name"', - 'updated_budget' => 'Päivitettiin budjetti ":name"', - 'update_amount' => 'Päivitä summa', - 'update_budget' => 'Päivitä budjetti', - 'update_budget_amount_range' => 'Päivitä (odotettavissa oleva) jäljellä oleva summa välillä :start ja :end', - 'set_budget_limit_title' => 'Aseta budjetoitu summa budjetille :budget välillä :start ja :end', - 'set_budget_limit' => 'Aseta budjetoitu summa', - 'budget_period_navigator' => 'Jakson valitsin', - 'info_on_available_amount' => 'Paljonko rahaa minulla on jäljellä?', - 'available_amount_indication' => 'Käytä näitä arvoja arvioidaksesi kokonaisbudjettiasi.', - 'suggested' => 'Ehdotus', - 'average_between' => 'Keskiarvo välillä :start ja :end', - 'transferred_in' => 'Siirretty (sisään)', - 'transferred_away' => 'Siirretty (ulos)', - 'auto_budget_none' => 'Ei automaattibudjettia', - 'auto_budget_reset' => 'Aseta sama kiinteä summa kaikille jaksoille', - 'auto_budget_rollover' => 'Kasvata summaa joka jaksossa', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Päivittäin', - 'auto_budget_period_weekly' => 'Viikoittain', - 'auto_budget_period_monthly' => 'Kuukausittain', - 'auto_budget_period_quarterly' => 'Neljännesvuosittain', - 'auto_budget_period_half_year' => 'Puoli-vuosittain', - 'auto_budget_period_yearly' => 'Vuosittain', - 'auto_budget_help' => 'Voit lukea lisää tästä ominaisuudesta ohjeesta. Napsauta oikean yläkulman (?)-kuvaketta.', - 'auto_budget_reset_icon' => 'Tämä budjetti asetetaan määräajoin', - 'auto_budget_rollover_icon' => 'Budjetin summa kasvaa säännöllisesti', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Poista budjetoitu summa :currency', + 'daily_budgets' => 'Päivittäiset budjetit', + 'weekly_budgets' => 'Viikoittaiset budjetit', + 'monthly_budgets' => 'Kuukausittaiset budjetit', + 'quarterly_budgets' => 'Neljännesvuosittaiset budjetit', + 'half_year_budgets' => 'Puolivuosittaiset budjetit', + 'yearly_budgets' => 'Vuosittaiset budjetit', + 'other_budgets' => 'Mukautetun ajan budjetit', + 'budget_limit_not_in_range' => 'Tämä summa on voimassa välillä :start - :end:', + 'total_available_budget' => 'Budjetissa jäljellä (välillä :start ja :end)', + 'total_available_budget_in_currency' => 'Budjetissa jäljellä valuutassa :currency', + 'see_below' => 'katso alla', + 'create_new_budget' => 'Luo uusi budjetti', + 'store_new_budget' => 'Tallenna uusi budjetti', + 'stored_new_budget' => 'Tallennettiin uusi budjetti ":name"', + 'available_between' => 'Rahaa jäljellä välillä :start ja :end', + 'transactionsWithoutBudget' => 'Kulut ilman budjettia', + 'transactions_no_budget' => 'Kulut ilman budjettia välillä :start ja :end', + 'spent_between' => 'Jo kulutettu välillä :start ja :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Aseta käytettävissä oleva summa', + 'update_available_amount' => 'Päivitä käytettävissä oleva summa', + 'ab_basic_modal_explain' => 'Käytä tätä lomaketta arvioidessasi kuinka paljon uskot pystyväsi budjetoimaan (kokonaisuudessaan, valuutassa :currency) valitulla jaksolla.', + 'createBudget' => 'Uusi budjetti', + 'invalid_currency' => 'Tämä ei kelpaa valuutaksi', + 'invalid_amount' => 'Anna summa', + 'set_ab' => 'Käytettävissä oleva budjetti on asetettu', + 'updated_ab' => 'Käytettävissä oleva budjetti on päivitetty', + 'deleted_ab' => 'Käytettävissä oleva budjetti on poistettu', + 'deleted_bl' => 'Budjetoitu summa on poistettu', + 'alt_currency_ab_create' => 'Aseta käytettävissä oleva budjetti toisessa valuutassa', + 'bl_create_btn' => 'Aseta budjetti toisessa valuutassa', + 'inactiveBudgets' => 'Ei käytössä olevat budjetit', + 'without_budget_between' => 'Siirrot ilman budjettia välillä :start ja :end', + 'delete_budget' => 'Poista budjetti ":name"', + 'deleted_budget' => 'Poistettiin budjetti ":name"', + 'edit_budget' => 'Muokkaa budjettia ":name"', + 'updated_budget' => 'Päivitettiin budjetti ":name"', + 'update_amount' => 'Päivitä summa', + 'update_budget' => 'Päivitä budjetti', + 'update_budget_amount_range' => 'Päivitä (odotettavissa oleva) jäljellä oleva summa välillä :start ja :end', + 'set_budget_limit_title' => 'Aseta budjetoitu summa budjetille :budget välillä :start ja :end', + 'set_budget_limit' => 'Aseta budjetoitu summa', + 'budget_period_navigator' => 'Jakson valitsin', + 'info_on_available_amount' => 'Paljonko rahaa minulla on jäljellä?', + 'available_amount_indication' => 'Käytä näitä arvoja arvioidaksesi kokonaisbudjettiasi.', + 'suggested' => 'Ehdotus', + 'average_between' => 'Keskiarvo välillä :start ja :end', + 'transferred_in' => 'Siirretty (sisään)', + 'transferred_away' => 'Siirretty (ulos)', + 'auto_budget_none' => 'Ei automaattibudjettia', + 'auto_budget_reset' => 'Aseta sama kiinteä summa kaikille jaksoille', + 'auto_budget_rollover' => 'Kasvata summaa joka jaksossa', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Päivittäin', + 'auto_budget_period_weekly' => 'Viikoittain', + 'auto_budget_period_monthly' => 'Kuukausittain', + 'auto_budget_period_quarterly' => 'Neljännesvuosittain', + 'auto_budget_period_half_year' => 'Puoli-vuosittain', + 'auto_budget_period_yearly' => 'Vuosittain', + 'auto_budget_help' => 'Voit lukea lisää tästä ominaisuudesta ohjeesta. Napsauta oikean yläkulman (?)-kuvaketta.', + 'auto_budget_reset_icon' => 'Tämä budjetti asetetaan määräajoin', + 'auto_budget_rollover_icon' => 'Budjetin summa kasvaa säännöllisesti', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Poista budjetoitu summa :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Ei odotettavissa tässä jaksossa', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Ei (vielä)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Lasku täsmää tapahtumiin välillä :low ja :high.', - 'running_again_loss' => 'Aikaisemmin tälle laskulle yhdistetyt tapahtumat saattavat menettää yhteytensä, jos ne eivät (enää) täytä säännön ehtoja.', - 'bill_related_rules' => 'Tähän laskuun liittyvät säännöt', - 'repeats' => 'Toistot', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Linkitetyt tapahtumat', - 'auto_match_on' => 'Firefly III:n automaattisesti yhdistämät', - 'auto_match_off' => 'Näitä Firefly III ei ole automaattisesti yhdistänyt', - 'next_expected_match' => 'Seuraava lasku odotettavissa', - 'delete_bill' => 'Poista lasku ":name"', - 'deleted_bill' => 'Poistettiin lasku ":name"', - 'edit_bill' => 'Muokkaa laskua ":name"', - 'more' => 'Lisää', - 'rescan_old' => 'Aja säännöt uudestaan, kaikille tapahtumille', - 'update_bill' => 'Päivitä lasku', - 'updated_bill' => 'Päivitettiin lasku ":name"', - 'store_new_bill' => 'Tallenna uusi lasku', - 'stored_new_bill' => 'Tallennettiin uusi lasku ":name"', - 'cannot_scan_inactive_bill' => 'Käytöstä poistetuille laskuille ei tehdä sääntövertailua.', - 'rescanned_bill' => 'Kaikki skannattiin uudelleen ja linkitettiin :count tapahtuma laskuun.|Kaikki skannattiin uudelleen ja linkitettiin :count tapahtumaa laskuun.', - 'average_bill_amount_year' => 'Laskun summa keskimäärin (:year)', - 'average_bill_amount_overall' => 'Laskun summa keskimäärin (kaikenkaikkiaan)', - 'bill_is_active' => 'Lasku on aktiivinen', - 'bill_expected_between' => 'Odotettavissa välillä :start ja :end', - 'bill_will_automatch' => 'Lasku yhdistetään automaattisesti ehdot täyttäviin tapahtumiin', - 'skips_over' => 'ohittaa', - 'bill_store_error' => 'Uuden laskusi tallentamisessa tapahtui odottamaton virhe. Virhe kirjattiin lokitiedostoon.', - 'list_inactive_rule' => 'käytöstä poistettu sääntö', - 'bill_edit_rules' => 'Firefly III yrittää muokata myös tähän laskuun liittyvää sääntöä. Jos kuitenkin olet muokannut tätä sääntöä itse, Firefly III ei muuta mitään. Firefly III yrittää muokata myös tähän laskuun liittyviä :count sääntöä. Jos kuitenkin olet muokannut näitä sääntöjä itse, Firefly III ei muuta mitään.', - 'bill_expected_date' => 'Odotettavissa :date', - 'bill_expected_date_js' => 'Odotettavissa {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Maksettu {date}', - 'bill_repeats_weekly' => 'Toistuu viikoittain', - 'bill_repeats_monthly' => 'Toistuu kuukausittain', - 'bill_repeats_quarterly' => 'Toistuu neljännesvuosittain', - 'bill_repeats_half-year' => 'Toistuu puolen vuoden välein', - 'bill_repeats_yearly' => 'Toistuu vuosittain', - 'bill_repeats_weekly_other' => 'Toistuu joka toinen viikko', - 'bill_repeats_monthly_other' => 'Toistuu joka toinen kuukausi', - 'bill_repeats_quarterly_other' => 'Toistuu joka toinen neljännes', - 'bill_repeats_half-year_other' => 'Toistuu vuosittain', - 'bill_repeats_yearly_other' => 'Toistuu joka toinen vuosi', - 'bill_repeats_weekly_skip' => 'Toistuu {skip} viikon välein', - 'bill_repeats_monthly_skip' => 'Toistuu {skip} kuukauden välein', - 'bill_repeats_quarterly_skip' => 'Toista {skip} vuosineljänneksen välein', - 'bill_repeats_half-year_skip' => 'Toistuu {skip} puolen vuoden välein', - 'bill_repeats_yearly_skip' => 'Toistuu {skip} vuoden välein', - 'subscriptions' => 'Tilaukset', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Ikuisesti', - 'extension_date_is' => 'Laajennuksen päivämäärä on {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Ei odotettavissa tässä jaksossa', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Ei (vielä)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Lasku täsmää tapahtumiin välillä :low ja :high.', + 'running_again_loss' => 'Aikaisemmin tälle laskulle yhdistetyt tapahtumat saattavat menettää yhteytensä, jos ne eivät (enää) täytä säännön ehtoja.', + 'bill_related_rules' => 'Tähän laskuun liittyvät säännöt', + 'repeats' => 'Toistot', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Linkitetyt tapahtumat', + 'auto_match_on' => 'Firefly III:n automaattisesti yhdistämät', + 'auto_match_off' => 'Näitä Firefly III ei ole automaattisesti yhdistänyt', + 'next_expected_match' => 'Seuraava lasku odotettavissa', + 'delete_bill' => 'Poista lasku ":name"', + 'deleted_bill' => 'Poistettiin lasku ":name"', + 'edit_bill' => 'Muokkaa laskua ":name"', + 'more' => 'Lisää', + 'rescan_old' => 'Aja säännöt uudestaan, kaikille tapahtumille', + 'update_bill' => 'Päivitä lasku', + 'updated_bill' => 'Päivitettiin lasku ":name"', + 'store_new_bill' => 'Tallenna uusi lasku', + 'stored_new_bill' => 'Tallennettiin uusi lasku ":name"', + 'cannot_scan_inactive_bill' => 'Käytöstä poistetuille laskuille ei tehdä sääntövertailua.', + 'rescanned_bill' => 'Kaikki skannattiin uudelleen ja linkitettiin :count tapahtuma laskuun.|Kaikki skannattiin uudelleen ja linkitettiin :count tapahtumaa laskuun.', + 'average_bill_amount_year' => 'Laskun summa keskimäärin (:year)', + 'average_bill_amount_overall' => 'Laskun summa keskimäärin (kaikenkaikkiaan)', + 'bill_is_active' => 'Lasku on aktiivinen', + 'bill_expected_between' => 'Odotettavissa välillä :start ja :end', + 'bill_will_automatch' => 'Lasku yhdistetään automaattisesti ehdot täyttäviin tapahtumiin', + 'skips_over' => 'ohittaa', + 'bill_store_error' => 'Uuden laskusi tallentamisessa tapahtui odottamaton virhe. Virhe kirjattiin lokitiedostoon.', + 'list_inactive_rule' => 'käytöstä poistettu sääntö', + 'bill_edit_rules' => 'Firefly III yrittää muokata myös tähän laskuun liittyvää sääntöä. Jos kuitenkin olet muokannut tätä sääntöä itse, Firefly III ei muuta mitään. Firefly III yrittää muokata myös tähän laskuun liittyviä :count sääntöä. Jos kuitenkin olet muokannut näitä sääntöjä itse, Firefly III ei muuta mitään.', + 'bill_expected_date' => 'Odotettavissa :date', + 'bill_expected_date_js' => 'Odotettavissa {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Maksettu {date}', + 'bill_repeats_weekly' => 'Toistuu viikoittain', + 'bill_repeats_monthly' => 'Toistuu kuukausittain', + 'bill_repeats_quarterly' => 'Toistuu neljännesvuosittain', + 'bill_repeats_half-year' => 'Toistuu puolen vuoden välein', + 'bill_repeats_yearly' => 'Toistuu vuosittain', + 'bill_repeats_weekly_other' => 'Toistuu joka toinen viikko', + 'bill_repeats_monthly_other' => 'Toistuu joka toinen kuukausi', + 'bill_repeats_quarterly_other' => 'Toistuu joka toinen neljännes', + 'bill_repeats_half-year_other' => 'Toistuu vuosittain', + 'bill_repeats_yearly_other' => 'Toistuu joka toinen vuosi', + 'bill_repeats_weekly_skip' => 'Toistuu {skip} viikon välein', + 'bill_repeats_monthly_skip' => 'Toistuu {skip} kuukauden välein', + 'bill_repeats_quarterly_skip' => 'Toista {skip} vuosineljänneksen välein', + 'bill_repeats_half-year_skip' => 'Toistuu {skip} puolen vuoden välein', + 'bill_repeats_yearly_skip' => 'Toistuu {skip} vuoden välein', + 'subscriptions' => 'Tilaukset', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Ikuisesti', + 'extension_date_is' => 'Laajennuksen päivämäärä on {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Sinulla on :count passiivinen (arkistoitu) tili, jota voit tarkastella tällä erillisellä sivulla.|Sinulla on :count passiivista (arkistoitua) tiliä, joita voit tarkastella tällä erillisellä sivulla.', - 'all_accounts_inactive' => 'Nämä ovat käytöstä poistettuja tilejä.', - 'active_account_link' => 'Tämä linkki vie sinut takaisin aktiivisiin tileihisi.', - 'account_missing_transaction' => 'Tiliä #:id (":name") ei voi tarkastella suoraan, mutta Firefly:lta puuttuvat uudelleenohjaustiedot.', - 'cc_monthly_payment_date_help' => 'Valitse mikä tahansa vuosi ja mikä tahansa kuukausi, ne jätetään kuitenkin huomiotta. Vain kuukauden päivä on merkityksellinen.', - 'details_for_asset' => 'Yksityiskohdat omaisuustilille ":name"', - 'details_for_expense' => 'Yksityiskohdat kulutustilille ":name"', - 'details_for_revenue' => 'Yksityiskohdat tuottotilille ":name"', - 'details_for_cash' => 'Yksityiskohdat käteistilille ":name"', - 'store_new_asset_account' => 'Tallenna uusi omaisuustili', - 'store_new_expense_account' => 'Tallenna uusi kulutustili', - 'store_new_revenue_account' => 'Tallenna uusi tuottotili', - 'edit_asset_account' => 'Muokkaa omaisuustiliä ":name"', - 'edit_expense_account' => 'Muokkaa kulutustiliä ":name"', - 'edit_revenue_account' => 'Muokkaa tuottotiliä ":name"', - 'delete_asset_account' => 'Poista omaisuustili ":name"', - 'delete_expense_account' => 'Poista kulutustili ":name"', - 'delete_revenue_account' => 'Poista tuottotili ":name"', - 'delete_liabilities_account' => 'Poista laina ":name"', - 'asset_deleted' => 'Poistettiin onnistuneesti omaisuustili ":name"', - 'account_deleted' => 'Tilin ":name" poistaminen onnistui', - 'expense_deleted' => 'Poistettiin onnistuneesti kulutustili ":name"', - 'revenue_deleted' => 'Poistettiin onnistuneesti tuottotili ":name"', - 'update_asset_account' => 'Päivitä omaisuustili', - 'update_undefined_account' => 'Päivitä tili', - 'update_liabilities_account' => 'Päivitä laina', - 'update_expense_account' => 'Päivitä kulutustili', - 'update_revenue_account' => 'Päivitä tuottotili', - 'make_new_asset_account' => 'Luo uusi omaisuustili', - 'make_new_expense_account' => 'Luo uusi kulutustili', - 'make_new_revenue_account' => 'Luo uusi tuottotili', - 'make_new_liabilities_account' => 'Luo uusi laina', - 'asset_accounts' => 'Käyttötilit', - 'undefined_accounts' => 'Tilit', - 'asset_accounts_inactive' => 'Käyttötilit (ei käytössä)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Kulutustilit', - 'expense_accounts_inactive' => 'Kulutustilit (ei käytössä)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Tuottotilit', - 'revenue_accounts_inactive' => 'Tuottotilit (ei käytössä)', - 'cash_accounts' => 'Käteistilit', - 'Cash account' => 'Käteistili', - 'liabilities_accounts' => 'Lainat', - 'liabilities_accounts_inactive' => 'Lainat (Ei aktiiviset)', - 'reconcile_account' => 'Täsmäytä tili ":account"', - 'overview_of_reconcile_modal' => 'Täsmäytyksen yleiskatsaus', - 'delete_reconciliation' => 'Poista täsmäytys', - 'update_reconciliation' => 'Päivitä täsmäytys', - 'amount_cannot_be_zero' => 'Summa yhteensä ei voi olla nolla', - 'end_of_reconcile_period' => 'Täsmäytysjakson loppu: :period', - 'start_of_reconcile_period' => 'Täsmäytysjakson alku: :period', - 'start_balance' => 'Alkusaldo', - 'end_balance' => 'Loppusaldo', - 'update_balance_dates_instruction' => 'Täsmää yllä olevat summat ja päivämäärät tiliotteesi kanssa ja paina "Aloita täsmäytys"', - 'select_transactions_instruction' => 'Valitse tapahtumat jotka löytyvät pankkisi tiliotteesta.', - 'select_range_and_balance' => 'Varmista ensin päivämäärärajat sekä saldot. Valitse sitten "Aloita täsmäytys"', - 'date_change_instruction' => 'Jos muutat päivämäärärajoja nyt, kaikki muutokset menetetään.', - 'update_selection' => 'Päivitä valinta', - 'store_reconcile' => 'Tallenna täsmäytys', - 'reconciliation_transaction' => 'Täsmäytystapahtuma', - 'Reconciliation' => 'Täsmäytys', - 'reconciliation' => 'Täsmäytys', - 'reconcile_options' => 'Täsmäytysvalinnat', - 'reconcile_range' => 'Täsmäytyksen aikarajat', - 'start_reconcile' => 'Aloita täsmäytys', - 'cash_account_type' => 'Käteinen', - 'cash' => 'käteinen', - 'cant_find_redirect_account' => 'Firefly III yritti tehdä pyytämääsi uudelleenohjausta mutta epäonnistui. Pahoittelut siitä. Takaisin valikkoon.', - 'account_type' => 'Tilin tyyppi', - 'save_transactions_by_moving' => 'Tallenna tämä tapahtuma siirtämällä se toiselle tilille:|Tallenna nämä tapahtumat siirtämällä ne toiselle tilille:', - 'save_transactions_by_moving_js' => 'Ei tapahtumia|Tallenna tämä tapahtuma siirtämällä se toiselle tilille. |Tallenna nämä tapahtumat siirtämällä ne toiselle tilille.', - 'stored_new_account' => 'Uusi tili ":name" tallennettiin!', - 'stored_new_account_js' => 'Uusi tili "{name}" tallennettu!', - 'updated_account' => 'Tiliä ":name" päivitettiin', - 'updated_account_js' => 'Päivitetty tili "{title}".', - 'credit_card_options' => 'Luottokorttivalinnat', - 'no_transactions_account' => 'Tilillä ":name" ei ole yhtään tapahtumaa (tässä jaksossa).', - 'no_transactions_period' => 'Ei tapahtumia (tässä jaksossa).', - 'no_data_for_chart' => 'Tämän kuvaajan luomiseen ei ole (vielä) riittävästi tietoja.', - 'select_at_least_one_account' => 'Valitse vähintään yksi omaisuustili', - 'select_at_least_one_category' => 'Valitse vähintään yksi kategoria', - 'select_at_least_one_budget' => 'Valitse vähintään yksi budjetti', - 'select_at_least_one_tag' => 'Valitse vähintään yksi tägi', - 'select_at_least_one_expense' => 'Valitse vähintään yksi meno- ja tulotilien kombinaatio. Jos sinulla ei ole yhtään (lista on tyhjä) tämä raportti ei ole saatavilla.', - 'account_default_currency' => 'Valitsit tälle tilille juuri oletusvaluutan.', - 'reconcile_has_more' => 'Firefly III:n pääkirjassa on enemmän rahaa kuin mitä sinun pankkisi sanoo sinulla olevan. Sinulla on useita valintoja - valitse mitä haluat tehdä. Kun olet valmis valitse "Vahvista täsmäytys".', - 'reconcile_has_less' => 'Firefly III:n pääkirjassa on vähemmän rahaa kuin mitä sinun pankkisi sanoo sinulla olevan. Sinulla on useita valintoja - valitse mitä haluat tehdä. Kun olet valmis valitse "Vahvista täsmäytys".', - 'reconcile_is_equal' => 'Firefly III:n pääkirja ja sinun pankkisi lausunnot täsmäävät. Mitään ei tarvitse tehdä. Valitse "Vahvista täsmäytys" vahvistaaksesi antamasi tiedot.', - 'create_pos_reconcile_transaction' => 'Merkitse valitut tapahtumat selvitetyksi ja luo korjaus lisäämällä :amount tälle omaisuustilille.', - 'create_neg_reconcile_transaction' => 'Merkitse valitut tapahtumat selvitetyksi ja luo korjaus poistamalla :amount tältä omaisuustililtä.', - 'reconcile_do_nothing' => 'Merkitse valitut tapahtumat selvitetyksi, mutta älä korjaa.', - 'reconcile_go_back' => 'Voit aina muokata tai poistaa korjauksia myöhemmin.', - 'must_be_asset_account' => 'Voit täsmäyttää ainoastaan omaisuustilejä', - 'reconciliation_stored' => 'Täsmäytys tallennettu', - 'reconciliation_error' => 'Tapahtuneen virheen vuoksi tapahtumat merkittiin tarkistetuiksi mutta korjausta ei tallennettu: :error.', - 'reconciliation_transaction_title' => 'Täsmäytys (:from - :to)', - 'sum_of_reconciliation' => 'Täsmäytykset yhteensä', - 'reconcile_this_account' => 'Täsmäytä tämä tili', - 'reconcile' => 'Täsmäytä', - 'show' => 'Näytä', - 'confirm_reconciliation' => 'Vahvista täsmäytys', - 'submitted_start_balance' => 'Annettu avaussaldo', - 'selected_transactions' => 'Valitut tapahtumat (:count)', - 'already_cleared_transactions' => 'Jo selvitetyt tapahtumat (:count)', - 'submitted_end_balance' => 'Annettu loppusaldo', - 'initial_balance_description' => 'Avaussaldo tilille ":account"', - 'liability_credit_description' => 'Lainan luotto tilille ":account"', - 'interest_calc_' => 'tuntematon', - 'interest_calc_daily' => 'Päivässä', - 'interest_calc_monthly' => 'Kuukaudessa', - 'interest_calc_yearly' => 'Vuodessa', - 'interest_calc_weekly' => 'Viikossa', - 'interest_calc_half-year' => 'Puolessa vuodessa', - 'interest_calc_quarterly' => 'Neljännestä kohden', - 'initial_balance_account' => 'Alkutasetili :account', - 'list_options' => 'Listan valinnat', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Sinulla on :count passiivinen (arkistoitu) tili, jota voit tarkastella tällä erillisellä sivulla.|Sinulla on :count passiivista (arkistoitua) tiliä, joita voit tarkastella tällä erillisellä sivulla.', + 'all_accounts_inactive' => 'Nämä ovat käytöstä poistettuja tilejä.', + 'active_account_link' => 'Tämä linkki vie sinut takaisin aktiivisiin tileihisi.', + 'account_missing_transaction' => 'Tiliä #:id (":name") ei voi tarkastella suoraan, mutta Firefly:lta puuttuvat uudelleenohjaustiedot.', + 'cc_monthly_payment_date_help' => 'Valitse mikä tahansa vuosi ja mikä tahansa kuukausi, ne jätetään kuitenkin huomiotta. Vain kuukauden päivä on merkityksellinen.', + 'details_for_asset' => 'Yksityiskohdat omaisuustilille ":name"', + 'details_for_expense' => 'Yksityiskohdat kulutustilille ":name"', + 'details_for_revenue' => 'Yksityiskohdat tuottotilille ":name"', + 'details_for_cash' => 'Yksityiskohdat käteistilille ":name"', + 'store_new_asset_account' => 'Tallenna uusi omaisuustili', + 'store_new_expense_account' => 'Tallenna uusi kulutustili', + 'store_new_revenue_account' => 'Tallenna uusi tuottotili', + 'edit_asset_account' => 'Muokkaa omaisuustiliä ":name"', + 'edit_expense_account' => 'Muokkaa kulutustiliä ":name"', + 'edit_revenue_account' => 'Muokkaa tuottotiliä ":name"', + 'delete_asset_account' => 'Poista omaisuustili ":name"', + 'delete_expense_account' => 'Poista kulutustili ":name"', + 'delete_revenue_account' => 'Poista tuottotili ":name"', + 'delete_liabilities_account' => 'Poista laina ":name"', + 'asset_deleted' => 'Poistettiin onnistuneesti omaisuustili ":name"', + 'account_deleted' => 'Tilin ":name" poistaminen onnistui', + 'expense_deleted' => 'Poistettiin onnistuneesti kulutustili ":name"', + 'revenue_deleted' => 'Poistettiin onnistuneesti tuottotili ":name"', + 'update_asset_account' => 'Päivitä omaisuustili', + 'update_undefined_account' => 'Päivitä tili', + 'update_liabilities_account' => 'Päivitä laina', + 'update_expense_account' => 'Päivitä kulutustili', + 'update_revenue_account' => 'Päivitä tuottotili', + 'make_new_asset_account' => 'Luo uusi omaisuustili', + 'make_new_expense_account' => 'Luo uusi kulutustili', + 'make_new_revenue_account' => 'Luo uusi tuottotili', + 'make_new_liabilities_account' => 'Luo uusi laina', + 'asset_accounts' => 'Käyttötilit', + 'undefined_accounts' => 'Tilit', + 'asset_accounts_inactive' => 'Käyttötilit (ei käytössä)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Kulutustilit', + 'expense_accounts_inactive' => 'Kulutustilit (ei käytössä)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Tuottotilit', + 'revenue_accounts_inactive' => 'Tuottotilit (ei käytössä)', + 'cash_accounts' => 'Käteistilit', + 'Cash account' => 'Käteistili', + 'liabilities_accounts' => 'Lainat', + 'liabilities_accounts_inactive' => 'Lainat (Ei aktiiviset)', + 'reconcile_account' => 'Täsmäytä tili ":account"', + 'overview_of_reconcile_modal' => 'Täsmäytyksen yleiskatsaus', + 'delete_reconciliation' => 'Poista täsmäytys', + 'update_reconciliation' => 'Päivitä täsmäytys', + 'amount_cannot_be_zero' => 'Summa yhteensä ei voi olla nolla', + 'end_of_reconcile_period' => 'Täsmäytysjakson loppu: :period', + 'start_of_reconcile_period' => 'Täsmäytysjakson alku: :period', + 'start_balance' => 'Alkusaldo', + 'end_balance' => 'Loppusaldo', + 'update_balance_dates_instruction' => 'Täsmää yllä olevat summat ja päivämäärät tiliotteesi kanssa ja paina "Aloita täsmäytys"', + 'select_transactions_instruction' => 'Valitse tapahtumat jotka löytyvät pankkisi tiliotteesta.', + 'select_range_and_balance' => 'Varmista ensin päivämäärärajat sekä saldot. Valitse sitten "Aloita täsmäytys"', + 'date_change_instruction' => 'Jos muutat päivämäärärajoja nyt, kaikki muutokset menetetään.', + 'update_selection' => 'Päivitä valinta', + 'store_reconcile' => 'Tallenna täsmäytys', + 'reconciliation_transaction' => 'Täsmäytystapahtuma', + 'Reconciliation' => 'Täsmäytys', + 'reconciliation' => 'Täsmäytys', + 'reconcile_options' => 'Täsmäytysvalinnat', + 'reconcile_range' => 'Täsmäytyksen aikarajat', + 'start_reconcile' => 'Aloita täsmäytys', + 'cash_account_type' => 'Käteinen', + 'cash' => 'käteinen', + 'cant_find_redirect_account' => 'Firefly III yritti tehdä pyytämääsi uudelleenohjausta mutta epäonnistui. Pahoittelut siitä. Takaisin valikkoon.', + 'account_type' => 'Tilin tyyppi', + 'save_transactions_by_moving' => 'Tallenna tämä tapahtuma siirtämällä se toiselle tilille:|Tallenna nämä tapahtumat siirtämällä ne toiselle tilille:', + 'save_transactions_by_moving_js' => 'Ei tapahtumia|Tallenna tämä tapahtuma siirtämällä se toiselle tilille. |Tallenna nämä tapahtumat siirtämällä ne toiselle tilille.', + 'stored_new_account' => 'Uusi tili ":name" tallennettiin!', + 'stored_new_account_js' => 'Uusi tili "{name}" tallennettu!', + 'updated_account' => 'Tiliä ":name" päivitettiin', + 'updated_account_js' => 'Päivitetty tili "{title}".', + 'credit_card_options' => 'Luottokorttivalinnat', + 'no_transactions_account' => 'Tilillä ":name" ei ole yhtään tapahtumaa (tässä jaksossa).', + 'no_transactions_period' => 'Ei tapahtumia (tässä jaksossa).', + 'no_data_for_chart' => 'Tämän kuvaajan luomiseen ei ole (vielä) riittävästi tietoja.', + 'select_at_least_one_account' => 'Valitse vähintään yksi omaisuustili', + 'select_at_least_one_category' => 'Valitse vähintään yksi kategoria', + 'select_at_least_one_budget' => 'Valitse vähintään yksi budjetti', + 'select_at_least_one_tag' => 'Valitse vähintään yksi tägi', + 'select_at_least_one_expense' => 'Valitse vähintään yksi meno- ja tulotilien kombinaatio. Jos sinulla ei ole yhtään (lista on tyhjä) tämä raportti ei ole saatavilla.', + 'account_default_currency' => 'Valitsit tälle tilille juuri oletusvaluutan.', + 'reconcile_has_more' => 'Firefly III:n pääkirjassa on enemmän rahaa kuin mitä sinun pankkisi sanoo sinulla olevan. Sinulla on useita valintoja - valitse mitä haluat tehdä. Kun olet valmis valitse "Vahvista täsmäytys".', + 'reconcile_has_less' => 'Firefly III:n pääkirjassa on vähemmän rahaa kuin mitä sinun pankkisi sanoo sinulla olevan. Sinulla on useita valintoja - valitse mitä haluat tehdä. Kun olet valmis valitse "Vahvista täsmäytys".', + 'reconcile_is_equal' => 'Firefly III:n pääkirja ja sinun pankkisi lausunnot täsmäävät. Mitään ei tarvitse tehdä. Valitse "Vahvista täsmäytys" vahvistaaksesi antamasi tiedot.', + 'create_pos_reconcile_transaction' => 'Merkitse valitut tapahtumat selvitetyksi ja luo korjaus lisäämällä :amount tälle omaisuustilille.', + 'create_neg_reconcile_transaction' => 'Merkitse valitut tapahtumat selvitetyksi ja luo korjaus poistamalla :amount tältä omaisuustililtä.', + 'reconcile_do_nothing' => 'Merkitse valitut tapahtumat selvitetyksi, mutta älä korjaa.', + 'reconcile_go_back' => 'Voit aina muokata tai poistaa korjauksia myöhemmin.', + 'must_be_asset_account' => 'Voit täsmäyttää ainoastaan omaisuustilejä', + 'reconciliation_stored' => 'Täsmäytys tallennettu', + 'reconciliation_error' => 'Tapahtuneen virheen vuoksi tapahtumat merkittiin tarkistetuiksi mutta korjausta ei tallennettu: :error.', + 'reconciliation_transaction_title' => 'Täsmäytys (:from - :to)', + 'sum_of_reconciliation' => 'Täsmäytykset yhteensä', + 'reconcile_this_account' => 'Täsmäytä tämä tili', + 'reconcile' => 'Täsmäytä', + 'show' => 'Näytä', + 'confirm_reconciliation' => 'Vahvista täsmäytys', + 'submitted_start_balance' => 'Annettu avaussaldo', + 'selected_transactions' => 'Valitut tapahtumat (:count)', + 'already_cleared_transactions' => 'Jo selvitetyt tapahtumat (:count)', + 'submitted_end_balance' => 'Annettu loppusaldo', + 'initial_balance_description' => 'Avaussaldo tilille ":account"', + 'liability_credit_description' => 'Lainan luotto tilille ":account"', + 'interest_calc_' => 'tuntematon', + 'interest_calc_daily' => 'Päivässä', + 'interest_calc_monthly' => 'Kuukaudessa', + 'interest_calc_yearly' => 'Vuodessa', + 'interest_calc_weekly' => 'Viikossa', + 'interest_calc_half-year' => 'Puolessa vuodessa', + 'interest_calc_quarterly' => 'Neljännestä kohden', + 'initial_balance_account' => 'Alkutasetili :account', + 'list_options' => 'Listan valinnat', // categories: - 'new_category' => 'Uusi kategoria', - 'create_new_category' => 'Luo uusi kategoria', - 'without_category' => 'Ilman kategoriaa', - 'update_category' => 'Päivitä kategoria', - 'updated_category' => 'Päivitettiin kategoria ":name"', - 'categories' => 'Kategoriat', - 'edit_category' => 'Muokkaa kategoriaa ":name"', - 'no_category' => '(ei kategoriaa)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategoria', - 'delete_category' => 'Poista kategoria ":name"', - 'deleted_category' => 'Poistettiin kategoria ":name"', - 'store_category' => 'Tallenna uusi kategoria', - 'stored_category' => 'Tallennettiin uusi kategoria ":name"', - 'without_category_between' => 'Ilman kategoriaa välillä :start ja :end', + 'new_category' => 'Uusi kategoria', + 'create_new_category' => 'Luo uusi kategoria', + 'without_category' => 'Ilman kategoriaa', + 'update_category' => 'Päivitä kategoria', + 'updated_category' => 'Päivitettiin kategoria ":name"', + 'categories' => 'Kategoriat', + 'edit_category' => 'Muokkaa kategoriaa ":name"', + 'no_category' => '(ei kategoriaa)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategoria', + 'delete_category' => 'Poista kategoria ":name"', + 'deleted_category' => 'Poistettiin kategoria ":name"', + 'store_category' => 'Tallenna uusi kategoria', + 'stored_category' => 'Tallennettiin uusi kategoria ":name"', + 'without_category_between' => 'Ilman kategoriaa välillä :start ja :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Päivitä nosto', - 'update_deposit' => 'Päivitä talletus', - 'update_transaction' => 'Päivitä tapahtuma', - 'update_transfer' => 'Päivitä siirto', - 'updated_withdrawal' => 'Päivitettiin nosto ":description"', - 'updated_deposit' => 'Päivitettiin talletus ":description"', - 'updated_transfer' => 'Päivitettiin siirto ":description"', - 'no_changes_withdrawal' => 'Nosto ":description" ei muuttunut.', - 'no_changes_deposit' => 'Talletus ":description" ei muuttunut.', - 'no_changes_transfer' => 'Tilisiirto ":description" ei muuttunut.', - 'delete_withdrawal' => 'Poista nosto ":description"', - 'delete_deposit' => 'Poista talletus ":description"', - 'delete_transfer' => 'Poista siirto ":description"', - 'deleted_withdrawal' => 'Noston ":description" poisto onnistui', - 'deleted_deposit' => 'Talletuksen ":description" poisto onnistui', - 'deleted_transfer' => 'Siirron ":description" poisto onnistui', - 'deleted_reconciliation' => 'Täsmäytystapahtuma ":description" poistettiin onnistuneesti', - 'stored_journal' => 'Loit onnistuneesti uuden tapahtuman ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Loit onnistuneesti uuden tapahtumasi', - 'updated_journal_no_descr' => 'Päivitit tapahtumaasi onnistuneesti', - 'select_transactions' => 'Valitse tapahtumat', - 'rule_group_select_transactions' => 'Aja tapahtumille sääntöryhmä ":title"', - 'rule_select_transactions' => 'Aja tapahtumille sääntö ":title"', - 'stop_selection' => 'Lopeta tapahtumien valinta', - 'reconcile_selected' => 'Täsmäytä', - 'mass_delete_journals' => 'Poista tapahtumia', - 'mass_edit_journals' => 'Muokkaa tapahtumia', - 'mass_bulk_journals' => 'Muokkaa valittuja tapahtumia yhdessä', - 'mass_bulk_journals_explain' => 'Tällä lomakkeella voit muuttaa alla listattujen tapahtumien ominaisuuksia yhdellä päivityksellä. Kaikki taulukon tapahtumat päivitetään kun muutat tässä näkyviä ominaisuuksia.', - 'part_of_split' => 'Tämä tapahtuma on osa jaettua tapahtumaa. Jos et ole valinnut kaikkia tapahtuman osia, saatat tehdä muutoksen ainoastaan osaan tapahtumasta.', - 'bulk_set_new_values' => 'Käytä alla olevia kenttiä uusien arvojen antamiseen. Jos jätät ne tyhjiksi, ne tyhjennetään kaikilta. Huomaa lisäksi, että ainoastaan nostoille asetetaan budjetti.', - 'no_bulk_category' => 'Älä päivitä kategoriaa', - 'no_bulk_budget' => 'Älä päivitä budjettia', - 'no_bulk_tags' => 'Älä päivitä tägejä', - 'replace_with_these_tags' => 'Korvaa näillä tageilla', - 'append_these_tags' => 'Lisää nämä tagit', - 'mass_edit' => 'Muokkaa valittuja yksitellen', - 'bulk_edit' => 'Muokkaa kaikkia valittuja yhtäaikaa', - 'mass_delete' => 'Poista valitut', - 'cannot_edit_other_fields' => 'Et voi massamuuttaa tapahtumien muita kuin tässä näkyviä kenttiä, koska ne eivät mahdu ruudulle. Jos niitä täytyy kuitenkin muokata, seuraa linkkiä ja muokkaa niitä yksitellen.', - 'cannot_change_amount_reconciled' => 'Et voi muuttaa täsmäytettyjen tapahtumien summia.', - 'no_budget' => '(ei budjettia)', - 'no_bill' => '(ei laskua)', - 'account_per_budget' => 'Tili per budjetti', - 'account_per_category' => 'Tili per kategoria', - 'create_new_object' => 'Luo', - 'empty' => '(tyhjä)', - 'all_other_budgets' => '(kaikki muut budjetit)', - 'all_other_accounts' => '(kaikki muut tilit)', - 'expense_per_source_account' => 'Menot lähdetileittäin', - 'expense_per_destination_account' => 'Menot kohdetileittäin', - 'income_per_destination_account' => 'Tuotot kohdetileittäin', - 'spent_in_specific_category' => 'Kulutettu kategoriassa ":category"', - 'earned_in_specific_category' => 'Ansaittu kategoriassa ":category"', - 'spent_in_specific_tag' => 'Kulutettu tägillä ":tag"', - 'earned_in_specific_tag' => 'Ansaittu tägillä ":tag"', - 'income_per_source_account' => 'Tulot lähdetileittäin', - 'average_spending_per_destination' => 'Keskimääräinen kulu kohdetileittäin', - 'average_spending_per_source' => 'Keskimääräinen kulu lähdetileittäin', - 'average_earning_per_source' => 'Keskimääräinen tulo lähdetileittäin', - 'average_earning_per_destination' => 'Keskimääräinen tulo kohdetileittäin', - 'account_per_tag' => 'Tilit tägeittäin', - 'tag_report_expenses_listed_once' => 'Kuluja ja ansioita ei koskaan listata kahdesti. Jos tapahtumalla on useita tägejä, se näkyy ainoastaan yhden tägin alla. Tämä lista saattaa näyttää, että siitä puuttuu tietoja, mutta summat ovat silti oikein.', - 'double_report_expenses_charted_once' => 'Kuluja ja ansioita ei koskaan näytetä kahdesti. Jos tapahtumalla on useita tägejä, se näkyy ainoastaan yhden tägin alla. Tämä kuvaaja saattaa näyttää, että siitä puuttuu tietoja, mutta summat ovat silti oikein.', - 'tag_report_chart_single_tag' => 'Tämä kuvaaja kuvaa yhden tägin alta löytyvät tapahtumat. Jos tapahtumalla on useita tägejä, täällä näkyvät asiat saattavat näkyä myös muiden tägien kuvaajissa.', - 'tag' => 'Tägi', - 'no_budget_squared' => '(ei budjettia)', - 'perm-delete-many' => 'Suuren tapahtumamäärän poistaminen kerralla on hyvin riskialtista. Olethan varovainen. Täällä saatat tuhota esimerkiksi osia jaetuista tapahtumista, joten ole tarkkana.', - 'mass_deleted_transactions_success' => 'Poistettiin :count tapahtuma.|Poistettiin :count tapahtumaa.', - 'mass_edited_transactions_success' => 'Päivitettiin :count tapahtuma.|Päivitettiin :count tapahtumaa.', - 'opt_group_' => '(ei tilityyppiä)', - 'opt_group_no_account_type' => '(ei tilityyppiä)', - 'opt_group_defaultAsset' => 'Oletuskäyttötilit', - 'opt_group_savingAsset' => 'Säästötilit', - 'opt_group_sharedAsset' => 'Jaetut käyttötilit', - 'opt_group_ccAsset' => 'Luottokortit', - 'opt_group_cashWalletAsset' => 'Käteinen', - 'opt_group_expense_account' => 'Kulutustilit', - 'opt_group_revenue_account' => 'Tuottotilit', - 'opt_group_l_Loan' => 'Laina: Laina', - 'opt_group_cash_account' => 'Käteistili', - 'opt_group_l_Debt' => 'Laina: Velka', - 'opt_group_l_Mortgage' => 'Laina: Kiinnelaina', - 'opt_group_l_Credit card' => 'Laina: Luottokortti', - 'notes' => 'Muistiinpanot', - 'unknown_journal_error' => 'Tapahtuman tallennus epäonnistui. Syy tallentui lokitiedostoon.', - 'attachment_not_found' => 'Tätä liitettä ei löydy.', - 'journal_link_bill' => 'Tämä tapahtuma liittyy laskuun :name. Jos haluat poistaa yhteyden, poista valinta liitos-valintaruudusta. Käytä sääntöjä yhdistääksesi tapahtuma toiseen laskuun.', - 'transaction_stored_link' => 'Tapahtuma #{ID} ("{title}") on tallennettu.', - 'transaction_new_stored_link' => 'Tapahtuma #{ID} on tallennettu.', - 'transaction_updated_link' => 'Tapahtuma #{ID} ("{title}") on päivitetty.', - 'transaction_updated_no_changes' => 'Tapahtuma #{ID} ("{title}") ei muuttunut.', - 'first_split_decides' => 'Ensimmäinen jako määrittää tämän kentän arvon', - 'first_split_overrules_source' => 'Ensimmäinen jako voi kumota lähdetilin', - 'first_split_overrules_destination' => 'Ensimmäinen jako voi kumota kohdetilin', - 'spent_x_of_y' => 'Käytetty {amount} / {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Päivitä nosto', + 'update_deposit' => 'Päivitä talletus', + 'update_transaction' => 'Päivitä tapahtuma', + 'update_transfer' => 'Päivitä siirto', + 'updated_withdrawal' => 'Päivitettiin nosto ":description"', + 'updated_deposit' => 'Päivitettiin talletus ":description"', + 'updated_transfer' => 'Päivitettiin siirto ":description"', + 'no_changes_withdrawal' => 'Nosto ":description" ei muuttunut.', + 'no_changes_deposit' => 'Talletus ":description" ei muuttunut.', + 'no_changes_transfer' => 'Tilisiirto ":description" ei muuttunut.', + 'delete_withdrawal' => 'Poista nosto ":description"', + 'delete_deposit' => 'Poista talletus ":description"', + 'delete_transfer' => 'Poista siirto ":description"', + 'deleted_withdrawal' => 'Noston ":description" poisto onnistui', + 'deleted_deposit' => 'Talletuksen ":description" poisto onnistui', + 'deleted_transfer' => 'Siirron ":description" poisto onnistui', + 'deleted_reconciliation' => 'Täsmäytystapahtuma ":description" poistettiin onnistuneesti', + 'stored_journal' => 'Loit onnistuneesti uuden tapahtuman ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Loit onnistuneesti uuden tapahtumasi', + 'updated_journal_no_descr' => 'Päivitit tapahtumaasi onnistuneesti', + 'select_transactions' => 'Valitse tapahtumat', + 'rule_group_select_transactions' => 'Aja tapahtumille sääntöryhmä ":title"', + 'rule_select_transactions' => 'Aja tapahtumille sääntö ":title"', + 'stop_selection' => 'Lopeta tapahtumien valinta', + 'reconcile_selected' => 'Täsmäytä', + 'mass_delete_journals' => 'Poista tapahtumia', + 'mass_edit_journals' => 'Muokkaa tapahtumia', + 'mass_bulk_journals' => 'Muokkaa valittuja tapahtumia yhdessä', + 'mass_bulk_journals_explain' => 'Tällä lomakkeella voit muuttaa alla listattujen tapahtumien ominaisuuksia yhdellä päivityksellä. Kaikki taulukon tapahtumat päivitetään kun muutat tässä näkyviä ominaisuuksia.', + 'part_of_split' => 'Tämä tapahtuma on osa jaettua tapahtumaa. Jos et ole valinnut kaikkia tapahtuman osia, saatat tehdä muutoksen ainoastaan osaan tapahtumasta.', + 'bulk_set_new_values' => 'Käytä alla olevia kenttiä uusien arvojen antamiseen. Jos jätät ne tyhjiksi, ne tyhjennetään kaikilta. Huomaa lisäksi, että ainoastaan nostoille asetetaan budjetti.', + 'no_bulk_category' => 'Älä päivitä kategoriaa', + 'no_bulk_budget' => 'Älä päivitä budjettia', + 'no_bulk_tags' => 'Älä päivitä tägejä', + 'replace_with_these_tags' => 'Korvaa näillä tageilla', + 'append_these_tags' => 'Lisää nämä tagit', + 'mass_edit' => 'Muokkaa valittuja yksitellen', + 'bulk_edit' => 'Muokkaa kaikkia valittuja yhtäaikaa', + 'mass_delete' => 'Poista valitut', + 'cannot_edit_other_fields' => 'Et voi massamuuttaa tapahtumien muita kuin tässä näkyviä kenttiä, koska ne eivät mahdu ruudulle. Jos niitä täytyy kuitenkin muokata, seuraa linkkiä ja muokkaa niitä yksitellen.', + 'cannot_change_amount_reconciled' => 'Et voi muuttaa täsmäytettyjen tapahtumien summia.', + 'no_budget' => '(ei budjettia)', + 'no_bill' => '(ei laskua)', + 'account_per_budget' => 'Tili per budjetti', + 'account_per_category' => 'Tili per kategoria', + 'create_new_object' => 'Luo', + 'empty' => '(tyhjä)', + 'all_other_budgets' => '(kaikki muut budjetit)', + 'all_other_accounts' => '(kaikki muut tilit)', + 'expense_per_source_account' => 'Menot lähdetileittäin', + 'expense_per_destination_account' => 'Menot kohdetileittäin', + 'income_per_destination_account' => 'Tuotot kohdetileittäin', + 'spent_in_specific_category' => 'Kulutettu kategoriassa ":category"', + 'earned_in_specific_category' => 'Ansaittu kategoriassa ":category"', + 'spent_in_specific_tag' => 'Kulutettu tägillä ":tag"', + 'earned_in_specific_tag' => 'Ansaittu tägillä ":tag"', + 'income_per_source_account' => 'Tulot lähdetileittäin', + 'average_spending_per_destination' => 'Keskimääräinen kulu kohdetileittäin', + 'average_spending_per_source' => 'Keskimääräinen kulu lähdetileittäin', + 'average_earning_per_source' => 'Keskimääräinen tulo lähdetileittäin', + 'average_earning_per_destination' => 'Keskimääräinen tulo kohdetileittäin', + 'account_per_tag' => 'Tilit tägeittäin', + 'tag_report_expenses_listed_once' => 'Kuluja ja ansioita ei koskaan listata kahdesti. Jos tapahtumalla on useita tägejä, se näkyy ainoastaan yhden tägin alla. Tämä lista saattaa näyttää, että siitä puuttuu tietoja, mutta summat ovat silti oikein.', + 'double_report_expenses_charted_once' => 'Kuluja ja ansioita ei koskaan näytetä kahdesti. Jos tapahtumalla on useita tägejä, se näkyy ainoastaan yhden tägin alla. Tämä kuvaaja saattaa näyttää, että siitä puuttuu tietoja, mutta summat ovat silti oikein.', + 'tag_report_chart_single_tag' => 'Tämä kuvaaja kuvaa yhden tägin alta löytyvät tapahtumat. Jos tapahtumalla on useita tägejä, täällä näkyvät asiat saattavat näkyä myös muiden tägien kuvaajissa.', + 'tag' => 'Tägi', + 'no_budget_squared' => '(ei budjettia)', + 'perm-delete-many' => 'Suuren tapahtumamäärän poistaminen kerralla on hyvin riskialtista. Olethan varovainen. Täällä saatat tuhota esimerkiksi osia jaetuista tapahtumista, joten ole tarkkana.', + 'mass_deleted_transactions_success' => 'Poistettiin :count tapahtuma.|Poistettiin :count tapahtumaa.', + 'mass_edited_transactions_success' => 'Päivitettiin :count tapahtuma.|Päivitettiin :count tapahtumaa.', + 'opt_group_' => '(ei tilityyppiä)', + 'opt_group_no_account_type' => '(ei tilityyppiä)', + 'opt_group_defaultAsset' => 'Oletuskäyttötilit', + 'opt_group_savingAsset' => 'Säästötilit', + 'opt_group_sharedAsset' => 'Jaetut käyttötilit', + 'opt_group_ccAsset' => 'Luottokortit', + 'opt_group_cashWalletAsset' => 'Käteinen', + 'opt_group_expense_account' => 'Kulutustilit', + 'opt_group_revenue_account' => 'Tuottotilit', + 'opt_group_l_Loan' => 'Laina: Laina', + 'opt_group_cash_account' => 'Käteistili', + 'opt_group_l_Debt' => 'Laina: Velka', + 'opt_group_l_Mortgage' => 'Laina: Kiinnelaina', + 'opt_group_l_Credit card' => 'Laina: Luottokortti', + 'notes' => 'Muistiinpanot', + 'unknown_journal_error' => 'Tapahtuman tallennus epäonnistui. Syy tallentui lokitiedostoon.', + 'attachment_not_found' => 'Tätä liitettä ei löydy.', + 'journal_link_bill' => 'Tämä tapahtuma liittyy laskuun :name. Jos haluat poistaa yhteyden, poista valinta liitos-valintaruudusta. Käytä sääntöjä yhdistääksesi tapahtuma toiseen laskuun.', + 'transaction_stored_link' => 'Tapahtuma #{ID} ("{title}") on tallennettu.', + 'transaction_new_stored_link' => 'Tapahtuma #{ID} on tallennettu.', + 'transaction_updated_link' => 'Tapahtuma #{ID} ("{title}") on päivitetty.', + 'transaction_updated_no_changes' => 'Tapahtuma #{ID} ("{title}") ei muuttunut.', + 'first_split_decides' => 'Ensimmäinen jako määrittää tämän kentän arvon', + 'first_split_overrules_source' => 'Ensimmäinen jako voi kumota lähdetilin', + 'first_split_overrules_destination' => 'Ensimmäinen jako voi kumota kohdetilin', + 'spent_x_of_y' => 'Käytetty {amount} / {total}', // new user: - 'welcome' => 'Tervetuloa Firefly III:een!', - 'submit' => 'Vahvista', - 'submission' => 'Vahvistus', - 'submit_yes_really' => 'Vahvista (Tiedän mitä olen tekemässä)', - 'getting_started' => 'Käytön aloittaminen', - 'to_get_started' => 'Hienoa, olet onnistuneesti asentanut Firefly III:en. Alkuun päästäksesi anna käyttötilisi saldo sekä pankin nimi. Älä vielä tässä vaiheessa välitä vaikka tilejä olisi useita, voit lisätä loput myöhemmin. Firefly III tarvitsee alkutietoja näyttääkseen pääkäyttöliittymässä jotain.', - 'savings_balance_text' => 'Firefly III luo sinulle tarvittessa automaattisesti tilin. Alkuun tilillä ei ole yhtään rahaa, mutta voit kertoa Firefly III:lle saldon jolloin se tallennetaan.', - 'finish_up_new_user' => 'Valmista tuli! Voit jatkaa painamalla Vahvista. Sinut viedään Firefly III:en valikkoon.', - 'stored_new_accounts_new_user' => 'No niin! Uudet tilisi on tallennettu.', - 'set_preferred_language' => 'Jos haluat käyttää Firefly III:a jollain toisella kielellä, valitse se tässä.', - 'language' => 'Kieli', - 'new_savings_account' => ':bank_name säästötili', - 'cash_wallet' => 'Käteinen', - 'currency_not_present' => 'Älä välitä vaikka normaalisti käyttämäsi valuutta ei olisi listalla. Voit luoda omia valuuttoja Optiot > Valuutat valikossa.', + 'welcome' => 'Tervetuloa Firefly III:een!', + 'submit' => 'Vahvista', + 'submission' => 'Vahvistus', + 'submit_yes_really' => 'Vahvista (Tiedän mitä olen tekemässä)', + 'getting_started' => 'Käytön aloittaminen', + 'to_get_started' => 'Hienoa, olet onnistuneesti asentanut Firefly III:en. Alkuun päästäksesi anna käyttötilisi saldo sekä pankin nimi. Älä vielä tässä vaiheessa välitä vaikka tilejä olisi useita, voit lisätä loput myöhemmin. Firefly III tarvitsee alkutietoja näyttääkseen pääkäyttöliittymässä jotain.', + 'savings_balance_text' => 'Firefly III luo sinulle tarvittessa automaattisesti tilin. Alkuun tilillä ei ole yhtään rahaa, mutta voit kertoa Firefly III:lle saldon jolloin se tallennetaan.', + 'finish_up_new_user' => 'Valmista tuli! Voit jatkaa painamalla Vahvista. Sinut viedään Firefly III:en valikkoon.', + 'stored_new_accounts_new_user' => 'No niin! Uudet tilisi on tallennettu.', + 'set_preferred_language' => 'Jos haluat käyttää Firefly III:a jollain toisella kielellä, valitse se tässä.', + 'language' => 'Kieli', + 'new_savings_account' => ':bank_name säästötili', + 'cash_wallet' => 'Käteinen', + 'currency_not_present' => 'Älä välitä vaikka normaalisti käyttämäsi valuutta ei olisi listalla. Voit luoda omia valuuttoja Optiot > Valuutat valikossa.', // home page: - 'transaction_table_description' => 'Taulu, joka sisältää tapahtumasi', - 'opposing_account' => 'Vastatili', - 'yourAccounts' => 'Omat tilisi', - 'your_accounts' => 'Tiliesi yleiskuva', - 'category_overview' => 'Kategorioiden tarkastelu', - 'expense_overview' => 'Kulutustilien tarkastelu', - 'revenue_overview' => 'Tuottotilien tarkastelu', - 'budgetsAndSpending' => 'Budjetit ja kulutus', - 'budgets_and_spending' => 'Budjetit ja kulutus', - 'go_to_budget' => 'Avaa budjetti "{budget}"', - 'go_to_deposits' => 'Siirry talletuksiin', - 'go_to_expenses' => 'Siirry kuluihin', - 'savings' => 'Säästöt', - 'newWithdrawal' => 'Uusi kustannus', - 'newDeposit' => 'Uusi talletus', - 'newTransfer' => 'Uusi siirto', - 'bills_to_pay' => 'Laskuja maksettavana', - 'per_day' => 'Päivässä', - 'left_to_spend_per_day' => 'Käytettävissä per päivä', - 'bills_paid' => 'Maksetut laskut', - 'custom_period' => 'Mukautettu jakso', - 'reset_to_current' => 'Palauta nykyiselle kaudelle', - 'select_period' => 'Valitse kausi', + 'transaction_table_description' => 'Taulu, joka sisältää tapahtumasi', + 'opposing_account' => 'Vastatili', + 'yourAccounts' => 'Omat tilisi', + 'your_accounts' => 'Tiliesi yleiskuva', + 'category_overview' => 'Kategorioiden tarkastelu', + 'expense_overview' => 'Kulutustilien tarkastelu', + 'revenue_overview' => 'Tuottotilien tarkastelu', + 'budgetsAndSpending' => 'Budjetit ja kulutus', + 'budgets_and_spending' => 'Budjetit ja kulutus', + 'go_to_budget' => 'Avaa budjetti "{budget}"', + 'go_to_deposits' => 'Siirry talletuksiin', + 'go_to_expenses' => 'Siirry kuluihin', + 'savings' => 'Säästöt', + 'newWithdrawal' => 'Uusi kustannus', + 'newDeposit' => 'Uusi talletus', + 'newTransfer' => 'Uusi siirto', + 'bills_to_pay' => 'Laskuja maksettavana', + 'per_day' => 'Päivässä', + 'left_to_spend_per_day' => 'Käytettävissä per päivä', + 'bills_paid' => 'Maksetut laskut', + 'custom_period' => 'Mukautettu jakso', + 'reset_to_current' => 'Palauta nykyiselle kaudelle', + 'select_period' => 'Valitse kausi', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuutta', - 'preferences' => 'Asetukset', - 'logout' => 'Kirjaudu ulos', - 'logout_other_sessions' => 'Kirjaudu ulos kaikista muista istunnoista', - 'toggleNavigation' => 'Vaihda navigointia', - 'searchPlaceholder' => 'Hae ...', - 'version' => 'Versio', - 'dashboard' => 'Etusivu', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Budjetista jäljellä ({currency})', - 'currencies' => 'Valuutat', - 'activity' => 'Toiminta', - 'usage' => 'Käyttö', - 'accounts' => 'Tilit', - 'Asset account' => 'Käyttötili', - 'Default account' => 'Käyttötili', - 'Expense account' => 'Kulutustili', - 'Revenue account' => 'Tuottotili', - 'Initial balance account' => 'Alkutasetili', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Velka', - 'account_type_Loan' => 'Laina', - 'account_type_Mortgage' => 'Kiinnelaina', - 'account_type_debt' => 'Velka', - 'account_type_loan' => 'Laina', - 'account_type_mortgage' => 'Kiinnelaina', - 'account_type_Credit card' => 'Luottokortti', - 'credit_card_type_monthlyFull' => 'Täysi maksu joka kuukausi', - 'liability_direction_credit' => 'Minulle ollaan velkaa tämä', - 'liability_direction_debit' => 'Olen tämän velkaa jollekin muulle', - 'liability_direction_credit_short' => 'Minulle ollaan velkaa', - 'liability_direction_debit_short' => 'Olen velkaa', - 'liability_direction__short' => 'Tuntematon', - 'liability_direction_null_short' => 'Tuntematon', - 'Liability credit' => 'Lainan luotto', - 'budgets' => 'Budjetit', - 'tags' => 'Tägit', - 'reports' => 'Raportit', - 'transactions' => 'Tapahtumat', - 'expenses' => 'Kustannukset', - 'income' => 'Tuotto / ansio', - 'transfers' => 'Tilisiirrot', - 'moneyManagement' => 'Talouden hallinta', - 'money_management' => 'Talouden hallinta', - 'tools' => 'Työkalut', - 'piggyBanks' => 'Säästöpossut', - 'piggy_banks' => 'Säästöpossut', - 'amount_x_of_y' => '{current} / {total}', - 'bills' => 'Laskut', - 'withdrawal' => 'Nosto', - 'opening_balance' => 'Alkusaldo', - 'deposit' => 'Talletus', - 'account' => 'Tili', - 'transfer' => 'Siirto', - 'Withdrawal' => 'Nosto', - 'Deposit' => 'Talletus', - 'Transfer' => 'Siirto', - 'bill' => 'Lasku', - 'yes' => 'Kyllä', - 'no' => 'Ei', - 'amount' => 'Summa', - 'overview' => 'Yleiskatsaus', - 'saveOnAccount' => 'Tallenna tilille', - 'unknown' => 'Tuntematon', - 'monthly' => 'Kuukausittain', - 'profile' => 'Profiili', - 'errors' => 'Virheet', - 'debt_start_date' => 'Velan aloituspäivä', - 'debt_start_amount' => 'Velan aloitussaldo', - 'debt_start_amount_help' => 'Tämä arvo on aina paras asettaa negatiiviseksi. Lue lisätietoja ohjesivuilta ((?) - kuvake oikeassa yläkulmassa).', - 'interest_period_help' => 'Tämä kenttä on puhtaasti kosmeettinen, eikä sitä lasketa sinulle. Kuten huomaat, pankit ovat erittäin salaperäisiä, joten Firefly III ei koskaan osaa tehdä näitä oikein.', - 'store_new_liabilities_account' => 'Tallenna uusi laina', - 'edit_liabilities_account' => 'Muokkaa lainaa ":name"', - 'financial_control' => 'Talouden hallinta', - 'accounting' => 'Kirjanpito', - 'automation' => 'Automaatio', - 'others' => 'Muut', - 'classification' => 'Luokitus', - 'store_transaction' => 'Tallenna tapahtuma', + 'currency' => 'Valuutta', + 'preferences' => 'Asetukset', + 'logout' => 'Kirjaudu ulos', + 'logout_other_sessions' => 'Kirjaudu ulos kaikista muista istunnoista', + 'toggleNavigation' => 'Vaihda navigointia', + 'searchPlaceholder' => 'Hae ...', + 'version' => 'Versio', + 'dashboard' => 'Etusivu', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Budjetista jäljellä ({currency})', + 'currencies' => 'Valuutat', + 'activity' => 'Toiminta', + 'usage' => 'Käyttö', + 'accounts' => 'Tilit', + 'Asset account' => 'Käyttötili', + 'Default account' => 'Käyttötili', + 'Expense account' => 'Kulutustili', + 'Revenue account' => 'Tuottotili', + 'Initial balance account' => 'Alkutasetili', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Velka', + 'account_type_Loan' => 'Laina', + 'account_type_Mortgage' => 'Kiinnelaina', + 'account_type_debt' => 'Velka', + 'account_type_loan' => 'Laina', + 'account_type_mortgage' => 'Kiinnelaina', + 'account_type_Credit card' => 'Luottokortti', + 'credit_card_type_monthlyFull' => 'Täysi maksu joka kuukausi', + 'liability_direction_credit' => 'Minulle ollaan velkaa tämä', + 'liability_direction_debit' => 'Olen tämän velkaa jollekin muulle', + 'liability_direction_credit_short' => 'Minulle ollaan velkaa', + 'liability_direction_debit_short' => 'Olen velkaa', + 'liability_direction__short' => 'Tuntematon', + 'liability_direction_null_short' => 'Tuntematon', + 'Liability credit' => 'Lainan luotto', + 'budgets' => 'Budjetit', + 'tags' => 'Tägit', + 'reports' => 'Raportit', + 'transactions' => 'Tapahtumat', + 'expenses' => 'Kustannukset', + 'income' => 'Tuotto / ansio', + 'transfers' => 'Tilisiirrot', + 'moneyManagement' => 'Talouden hallinta', + 'money_management' => 'Talouden hallinta', + 'tools' => 'Työkalut', + 'piggyBanks' => 'Säästöpossut', + 'piggy_banks' => 'Säästöpossut', + 'amount_x_of_y' => '{current} / {total}', + 'bills' => 'Laskut', + 'withdrawal' => 'Nosto', + 'opening_balance' => 'Alkusaldo', + 'deposit' => 'Talletus', + 'account' => 'Tili', + 'transfer' => 'Siirto', + 'Withdrawal' => 'Nosto', + 'Deposit' => 'Talletus', + 'Transfer' => 'Siirto', + 'bill' => 'Lasku', + 'yes' => 'Kyllä', + 'no' => 'Ei', + 'amount' => 'Summa', + 'overview' => 'Yleiskatsaus', + 'saveOnAccount' => 'Tallenna tilille', + 'unknown' => 'Tuntematon', + 'monthly' => 'Kuukausittain', + 'profile' => 'Profiili', + 'errors' => 'Virheet', + 'debt_start_date' => 'Velan aloituspäivä', + 'debt_start_amount' => 'Velan aloitussaldo', + 'debt_start_amount_help' => 'Tämä arvo on aina paras asettaa negatiiviseksi. Lue lisätietoja ohjesivuilta ((?) - kuvake oikeassa yläkulmassa).', + 'interest_period_help' => 'Tämä kenttä on puhtaasti kosmeettinen, eikä sitä lasketa sinulle. Kuten huomaat, pankit ovat erittäin salaperäisiä, joten Firefly III ei koskaan osaa tehdä näitä oikein.', + 'store_new_liabilities_account' => 'Tallenna uusi laina', + 'edit_liabilities_account' => 'Muokkaa lainaa ":name"', + 'financial_control' => 'Talouden hallinta', + 'accounting' => 'Kirjanpito', + 'automation' => 'Automaatio', + 'others' => 'Muut', + 'classification' => 'Luokitus', + 'store_transaction' => 'Tallenna tapahtuma', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Talousraportti välillä :start ja :end', - 'report_audit' => 'Tapahtumahistorian yleiskatsaus välillä :start ja :end', - 'report_category' => 'Kategoriaraportti välillä :start ja :end', - 'report_double' => 'Kulutus- ja ansiotilien raportti välillä :start ja :end', - 'report_budget' => 'Budjettiraportti välillä :start ja :end', - 'report_tag' => 'Tägiraportti välillä :start ja :end', - 'quick_link_reports' => 'Pikalinkit', - 'quick_link_examples' => 'Nämä ovat vain esimerkkilinkkejä helpottamaan alkuun pääsyä. Lue opassivut (?)-painikkeen alta löytääksesi tietoa kaikista raporteista ja taikasanoista joita voit käyttää.', - 'quick_link_default_report' => 'Talousraportti', - 'quick_link_audit_report' => 'Tapahtumahistorian yleiskatsaus', - 'report_this_month_quick' => 'Kuluva kuukausi, kaikki tilit', - 'report_last_month_quick' => 'Viime kuu, kaikki tilit', - 'report_this_year_quick' => 'Kuluva vuosi, kaikki tilit', - 'report_this_fiscal_year_quick' => 'Kuluva tilivuosi, kaikki tilit', - 'report_all_time_quick' => 'Kaikki tiedot, kaikki tilit', - 'reports_can_bookmark' => 'Muista: pystyt tekemään kirjanmerkin raporttiin.', - 'incomeVsExpenses' => 'Tulot ja menot', - 'accountBalances' => 'Tilien saldot', - 'balanceStart' => 'Saldo jakson alussa', - 'balanceEnd' => 'Saldo jakson lopussa', - 'splitByAccount' => 'Tileittäin', - 'coveredWithTags' => 'Tägitetty', - 'leftInBudget' => 'Budjetissa jäljellä', - 'left_in_debt' => 'Maksettavaa', - 'sumOfSums' => 'Summat yhteensä', - 'noCategory' => '(ei kategoriaa)', - 'notCharged' => 'Ei veloitettu (vielä)', - 'inactive' => 'Ei aktiivinen', - 'active' => 'Aktiivinen', - 'difference' => 'Ero', - 'money_flowing_in' => 'Sisään', - 'money_flowing_out' => 'Ulos', - 'topX' => 'ensimmäiset :number', - 'show_full_list' => 'Näytä koko lista', - 'show_only_top' => 'Näytä vain ensimmäiset :number', - 'report_type' => 'Raportin tyyppi', - 'report_type_default' => 'Talousraportti', - 'report_type_audit' => 'Tapahtumahistorian yleisnäkymä (tilintarkastus)', - 'report_type_category' => 'Kategoriaraportti', - 'report_type_budget' => 'Budjettiraportti', - 'report_type_tag' => 'Tägiraportti', - 'report_type_double' => 'Kulutus- ja tuottotilien raportti', - 'more_info_help' => 'Lisätietoja tämän tyyppisistä raporteista löydät opastesivuilta. Valitse (?) ikoni oikeassa yläkulmassa.', - 'report_included_accounts' => 'Sisältää tilit', - 'report_date_range' => 'Aikaväli', - 'report_preset_ranges' => 'Esiasetetut jaksot', - 'shared' => 'Yhteiset', - 'fiscal_year' => 'Tilikausi', - 'income_entry' => 'Tulot tililtä ":name" välillä :start ja :end', - 'expense_entry' => 'Kulut tilillä ":name" välillä :start ja :end', - 'category_entry' => 'Kulut ja ansiot kategoriassa ":name" välillä :start ja :end', - 'budget_spent_amount' => 'Kulut budjetissa ":budget" välillä :start ja :end', - 'balance_amount' => 'Kulut budjetissa ":budget" tililtä ":account" välillä :start ja :end', - 'no_audit_activity' => 'Tilillä :account_name ei ole kirjattuja tapahtumia välillä :start ja :end.', - 'audit_end_balance' => 'Tilin :account_name saldo jakson :end lopussa: :balance', - 'reports_extra_options' => 'Lisävalinnat', - 'report_has_no_extra_options' => 'Tällä raportilla ei ole lisävalintoja', - 'reports_submit' => 'Näytä raportti', - 'end_after_start_date' => 'Raportin aloituspäivän täytyy olla ennen loppupäivää.', - 'select_category' => 'Valitse kategoria(t)', - 'select_budget' => 'Valitse budjetti/budjetit.', - 'select_tag' => 'Valitse tägi(t).', - 'income_per_category' => 'Tulot kategorioittain', - 'expense_per_category' => 'Kulut kategorioittain', - 'expense_per_budget' => 'Kulut budjeteittain', - 'income_per_account' => 'Tulot tileittäin', - 'expense_per_account' => 'Menot tileittäin', - 'expense_per_tag' => 'Kulut tägeittäin', - 'income_per_tag' => 'Tulot tägeittäin', - 'include_expense_not_in_budget' => 'Sisällytetyt kulut eivät kuulu valittuihin budjetteihin', - 'include_expense_not_in_account' => 'Sisällytetyt kulut eivät kuulu valittuihin tileihin', - 'include_expense_not_in_category' => 'Sisällytetyt kulut eivät kuulu valittuihin kategorioihin', - 'include_income_not_in_category' => 'Sisällytetyt tulot eivät kuulu valittuihin kategorioihin', - 'include_income_not_in_account' => 'Sisällytetyt tulot eivät kuulu valittuihin tileihin', - 'include_income_not_in_tags' => 'Sisällytetyt tulot eivät kuulu valittuihin tägeihin', - 'include_expense_not_in_tags' => 'Sisällytetyt kulut eivät kuulu valittuihin tägeihin', - 'everything_else' => 'Kaikki muu', - 'income_and_expenses' => 'Tulot ja menot', - 'spent_average' => 'Kulutettu (keskiarvo)', - 'income_average' => 'Tulot (keskiarvo)', - 'transaction_count' => 'Tapahtumien lukumäärä', - 'average_spending_per_account' => 'Keskimääräinen meno tileittäin', - 'average_income_per_account' => 'Keskimääräinen tulo tileittäin', - 'total' => 'Yhteensä', - 'description' => 'Kuvaus', - 'sum_of_period' => 'Jakson loppusumma', - 'average_in_period' => 'Keskiarvo tässä jaksossa', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Oletuskäyttötili', - 'account_role_sharedAsset' => 'Jaettu käyttötili', - 'account_role_savingAsset' => 'Säästötili', - 'account_role_ccAsset' => 'Luottokortti', - 'account_role_cashWalletAsset' => 'Käteinen', - 'budget_chart_click' => 'Valitse yllä olevasta taulukosta budjetin nimi nähdäksesi tämän kuvaajan.', - 'category_chart_click' => 'Valitse yllä olevasta taulukosta kategorian nimi nähdäksesi tämän kuvaajan.', - 'in_out_accounts' => 'Tulot ja menot kombinaatioittain', - 'in_out_accounts_per_asset' => 'Tulot ja menot (käyttötileittäin)', - 'in_out_per_category' => 'Tulot ja menot kategorioittain', - 'out_per_budget' => 'Kulut budjeteittain', - 'select_expense_revenue' => 'Valitse kulutus- tai tuottotili', - 'multi_currency_report_sum' => 'Koska tämä listä sisältää tilejä useammalla valuutalla, summat eivät välttämättä pidä paikkaansa. Raportti käyttää aina oletusvaluuttaasi.', - 'sum_in_default_currency' => 'Summa on aina oletusvaluutassasi.', - 'net_filtered_prefs' => 'Tässä kuvaajassa ei koskaan ole tilejä joissa on "Sisällytä varallisuuteen"-optio valitsematta.', + 'report_default' => 'Talousraportti välillä :start ja :end', + 'report_audit' => 'Tapahtumahistorian yleiskatsaus välillä :start ja :end', + 'report_category' => 'Kategoriaraportti välillä :start ja :end', + 'report_double' => 'Kulutus- ja ansiotilien raportti välillä :start ja :end', + 'report_budget' => 'Budjettiraportti välillä :start ja :end', + 'report_tag' => 'Tägiraportti välillä :start ja :end', + 'quick_link_reports' => 'Pikalinkit', + 'quick_link_examples' => 'Nämä ovat vain esimerkkilinkkejä helpottamaan alkuun pääsyä. Lue opassivut (?)-painikkeen alta löytääksesi tietoa kaikista raporteista ja taikasanoista joita voit käyttää.', + 'quick_link_default_report' => 'Talousraportti', + 'quick_link_audit_report' => 'Tapahtumahistorian yleiskatsaus', + 'report_this_month_quick' => 'Kuluva kuukausi, kaikki tilit', + 'report_last_month_quick' => 'Viime kuu, kaikki tilit', + 'report_this_year_quick' => 'Kuluva vuosi, kaikki tilit', + 'report_this_fiscal_year_quick' => 'Kuluva tilivuosi, kaikki tilit', + 'report_all_time_quick' => 'Kaikki tiedot, kaikki tilit', + 'reports_can_bookmark' => 'Muista: pystyt tekemään kirjanmerkin raporttiin.', + 'incomeVsExpenses' => 'Tulot ja menot', + 'accountBalances' => 'Tilien saldot', + 'balanceStart' => 'Saldo jakson alussa', + 'balanceEnd' => 'Saldo jakson lopussa', + 'splitByAccount' => 'Tileittäin', + 'coveredWithTags' => 'Tägitetty', + 'leftInBudget' => 'Budjetissa jäljellä', + 'left_in_debt' => 'Maksettavaa', + 'sumOfSums' => 'Summat yhteensä', + 'noCategory' => '(ei kategoriaa)', + 'notCharged' => 'Ei veloitettu (vielä)', + 'inactive' => 'Ei aktiivinen', + 'active' => 'Aktiivinen', + 'difference' => 'Ero', + 'money_flowing_in' => 'Sisään', + 'money_flowing_out' => 'Ulos', + 'topX' => 'ensimmäiset :number', + 'show_full_list' => 'Näytä koko lista', + 'show_only_top' => 'Näytä vain ensimmäiset :number', + 'report_type' => 'Raportin tyyppi', + 'report_type_default' => 'Talousraportti', + 'report_type_audit' => 'Tapahtumahistorian yleisnäkymä (tilintarkastus)', + 'report_type_category' => 'Kategoriaraportti', + 'report_type_budget' => 'Budjettiraportti', + 'report_type_tag' => 'Tägiraportti', + 'report_type_double' => 'Kulutus- ja tuottotilien raportti', + 'more_info_help' => 'Lisätietoja tämän tyyppisistä raporteista löydät opastesivuilta. Valitse (?) ikoni oikeassa yläkulmassa.', + 'report_included_accounts' => 'Sisältää tilit', + 'report_date_range' => 'Aikaväli', + 'report_preset_ranges' => 'Esiasetetut jaksot', + 'shared' => 'Yhteiset', + 'fiscal_year' => 'Tilikausi', + 'income_entry' => 'Tulot tililtä ":name" välillä :start ja :end', + 'expense_entry' => 'Kulut tilillä ":name" välillä :start ja :end', + 'category_entry' => 'Kulut ja ansiot kategoriassa ":name" välillä :start ja :end', + 'budget_spent_amount' => 'Kulut budjetissa ":budget" välillä :start ja :end', + 'balance_amount' => 'Kulut budjetissa ":budget" tililtä ":account" välillä :start ja :end', + 'no_audit_activity' => 'Tilillä :account_name ei ole kirjattuja tapahtumia välillä :start ja :end.', + 'audit_end_balance' => 'Tilin :account_name saldo jakson :end lopussa: :balance', + 'reports_extra_options' => 'Lisävalinnat', + 'report_has_no_extra_options' => 'Tällä raportilla ei ole lisävalintoja', + 'reports_submit' => 'Näytä raportti', + 'end_after_start_date' => 'Raportin aloituspäivän täytyy olla ennen loppupäivää.', + 'select_category' => 'Valitse kategoria(t)', + 'select_budget' => 'Valitse budjetti/budjetit.', + 'select_tag' => 'Valitse tägi(t).', + 'income_per_category' => 'Tulot kategorioittain', + 'expense_per_category' => 'Kulut kategorioittain', + 'expense_per_budget' => 'Kulut budjeteittain', + 'income_per_account' => 'Tulot tileittäin', + 'expense_per_account' => 'Menot tileittäin', + 'expense_per_tag' => 'Kulut tägeittäin', + 'income_per_tag' => 'Tulot tägeittäin', + 'include_expense_not_in_budget' => 'Sisällytetyt kulut eivät kuulu valittuihin budjetteihin', + 'include_expense_not_in_account' => 'Sisällytetyt kulut eivät kuulu valittuihin tileihin', + 'include_expense_not_in_category' => 'Sisällytetyt kulut eivät kuulu valittuihin kategorioihin', + 'include_income_not_in_category' => 'Sisällytetyt tulot eivät kuulu valittuihin kategorioihin', + 'include_income_not_in_account' => 'Sisällytetyt tulot eivät kuulu valittuihin tileihin', + 'include_income_not_in_tags' => 'Sisällytetyt tulot eivät kuulu valittuihin tägeihin', + 'include_expense_not_in_tags' => 'Sisällytetyt kulut eivät kuulu valittuihin tägeihin', + 'everything_else' => 'Kaikki muu', + 'income_and_expenses' => 'Tulot ja menot', + 'spent_average' => 'Kulutettu (keskiarvo)', + 'income_average' => 'Tulot (keskiarvo)', + 'transaction_count' => 'Tapahtumien lukumäärä', + 'average_spending_per_account' => 'Keskimääräinen meno tileittäin', + 'average_income_per_account' => 'Keskimääräinen tulo tileittäin', + 'total' => 'Yhteensä', + 'description' => 'Kuvaus', + 'sum_of_period' => 'Jakson loppusumma', + 'average_in_period' => 'Keskiarvo tässä jaksossa', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Oletuskäyttötili', + 'account_role_sharedAsset' => 'Jaettu käyttötili', + 'account_role_savingAsset' => 'Säästötili', + 'account_role_ccAsset' => 'Luottokortti', + 'account_role_cashWalletAsset' => 'Käteinen', + 'budget_chart_click' => 'Valitse yllä olevasta taulukosta budjetin nimi nähdäksesi tämän kuvaajan.', + 'category_chart_click' => 'Valitse yllä olevasta taulukosta kategorian nimi nähdäksesi tämän kuvaajan.', + 'in_out_accounts' => 'Tulot ja menot kombinaatioittain', + 'in_out_accounts_per_asset' => 'Tulot ja menot (käyttötileittäin)', + 'in_out_per_category' => 'Tulot ja menot kategorioittain', + 'out_per_budget' => 'Kulut budjeteittain', + 'select_expense_revenue' => 'Valitse kulutus- tai tuottotili', + 'multi_currency_report_sum' => 'Koska tämä listä sisältää tilejä useammalla valuutalla, summat eivät välttämättä pidä paikkaansa. Raportti käyttää aina oletusvaluuttaasi.', + 'sum_in_default_currency' => 'Summa on aina oletusvaluutassasi.', + 'net_filtered_prefs' => 'Tässä kuvaajassa ei koskaan ole tilejä joissa on "Sisällytä varallisuuteen"-optio valitsematta.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Kuvaaja', - 'month' => 'Kuukausi', - 'budget' => 'Budjetti', - 'spent' => 'Käytetty', - 'spent_capped' => 'Käytetty (rajattu)', - 'spent_in_budget' => 'Budjetista käytetty', - 'left_to_spend' => 'Käytettävissä', - 'earned' => 'Ansaittu', - 'overspent' => 'Varojen ylitys', - 'left' => 'Jäljellä', - 'max-amount' => 'Enimmäissumma', - 'min-amount' => 'Vähimmäissumma', - 'journal-amount' => 'Nykyisen laskun summa', - 'name' => 'Nimi', - 'date' => 'Päivämäärä', - 'date_and_time' => 'Päivämäärä ja aika', - 'time' => 'Aika', - 'paid' => 'Maksettu', - 'unpaid' => 'Maksamatta', - 'day' => 'Päivä', - 'budgeted' => 'Budjetoitu', - 'period' => 'Jakso', - 'balance' => 'Saldo', - 'in_out_period' => 'In + out this period', - 'sum' => 'Yhteensä', - 'summary' => 'Yhteenveto', - 'average' => 'Keskiarvo', - 'balanceFor' => 'Tilin :name saldo', - 'no_tags' => '(ei tägejä)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Kuvaaja', + 'month' => 'Kuukausi', + 'budget' => 'Budjetti', + 'spent' => 'Käytetty', + 'spent_capped' => 'Käytetty (rajattu)', + 'spent_in_budget' => 'Budjetista käytetty', + 'left_to_spend' => 'Käytettävissä', + 'earned' => 'Ansaittu', + 'overspent' => 'Varojen ylitys', + 'left' => 'Jäljellä', + 'max-amount' => 'Enimmäissumma', + 'min-amount' => 'Vähimmäissumma', + 'journal-amount' => 'Nykyisen laskun summa', + 'name' => 'Nimi', + 'date' => 'Päivämäärä', + 'date_and_time' => 'Päivämäärä ja aika', + 'time' => 'Aika', + 'paid' => 'Maksettu', + 'unpaid' => 'Maksamatta', + 'day' => 'Päivä', + 'budgeted' => 'Budjetoitu', + 'period' => 'Jakso', + 'balance' => 'Saldo', + 'in_out_period' => 'In + out this period', + 'sum' => 'Yhteensä', + 'summary' => 'Yhteenveto', + 'average' => 'Keskiarvo', + 'balanceFor' => 'Tilin :name saldo', + 'no_tags' => '(ei tägejä)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"', - 'piggy_bank' => 'Säästöpossu', - 'new_piggy_bank' => 'Uusi säästöpossu', - 'store_piggy_bank' => 'Tallenna uusi säästöpossu', - 'stored_piggy_bank' => 'Tallenna uusi säästöpossu ":name"', - 'account_status' => 'Tilin tilanne', - 'left_for_piggy_banks' => 'Jäljellä säästöpossuihin', - 'sum_of_piggy_banks' => 'Säästöpossut yhteensä', - 'saved_so_far' => 'Tähän mennessä säästetty', - 'left_to_save' => 'Säästettävää jäljellä', - 'suggested_amount' => 'Ehdotettu kuukausittainen säästösumma', - 'add_money_to_piggy_title' => 'Lisää rahaa säästöpossuun ":name"', - 'remove_money_from_piggy_title' => 'Poista rahaa säästöpossusta ":name"', - 'add' => 'Lisää', - 'no_money_for_piggy' => 'Sinulla ei ole rahaa pistää tähän säästöpossuun.', - 'suggested_savings_per_month' => 'Ehdotus per kuukausi', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Lisää rahaa säästöpossuun ":name"', + 'piggy_bank' => 'Säästöpossu', + 'new_piggy_bank' => 'Uusi säästöpossu', + 'store_piggy_bank' => 'Tallenna uusi säästöpossu', + 'stored_piggy_bank' => 'Tallenna uusi säästöpossu ":name"', + 'account_status' => 'Tilin tilanne', + 'left_for_piggy_banks' => 'Jäljellä säästöpossuihin', + 'sum_of_piggy_banks' => 'Säästöpossut yhteensä', + 'saved_so_far' => 'Tähän mennessä säästetty', + 'left_to_save' => 'Säästettävää jäljellä', + 'suggested_amount' => 'Ehdotettu kuukausittainen säästösumma', + 'add_money_to_piggy_title' => 'Lisää rahaa säästöpossuun ":name"', + 'remove_money_from_piggy_title' => 'Poista rahaa säästöpossusta ":name"', + 'add' => 'Lisää', + 'no_money_for_piggy' => 'Sinulla ei ole rahaa pistää tähän säästöpossuun.', + 'suggested_savings_per_month' => 'Ehdotus per kuukausi', - 'remove' => 'Poista', - 'max_amount_add' => 'Maksimisumma jonka voit lisätä', - 'max_amount_remove' => 'Maksimisumma jonka voit poistaa', - 'update_piggy_button' => 'Päivitä säästöpossu', - 'update_piggy_title' => 'Päivitä säästöpossu ":name"', - 'updated_piggy_bank' => 'Päivitettiin säästöpossu ":name"', - 'details' => 'Yksityiskohdat', - 'events' => 'Tapahtumat', - 'target_amount' => 'Tavoitesumma', - 'start_date' => 'Aloituspäivä', - 'no_start_date' => 'Ei aloituspäivää', - 'target_date' => 'Tavoitepäivä', - 'no_target_date' => 'Ei tavoitepäivää', - 'table' => 'Taulukko', - 'delete_piggy_bank' => 'Poista säästöpossu ":name"', - 'cannot_add_amount_piggy' => 'Summan :amount lisääminen possuun ":name" epäonnistui.', - 'cannot_remove_from_piggy' => 'Summan :amount poistaminen possusta ":name" epäonnistui.', - 'deleted_piggy_bank' => 'Poistettiin säästöpossu ":name"', - 'added_amount_to_piggy' => 'Lisättiin :amount possuun ":name"', - 'removed_amount_from_piggy' => 'Poistettiin :amount possusta ":name"', - 'piggy_events' => 'Tähän liittyvät säästöporsaat', + 'remove' => 'Poista', + 'max_amount_add' => 'Maksimisumma jonka voit lisätä', + 'max_amount_remove' => 'Maksimisumma jonka voit poistaa', + 'update_piggy_button' => 'Päivitä säästöpossu', + 'update_piggy_title' => 'Päivitä säästöpossu ":name"', + 'updated_piggy_bank' => 'Päivitettiin säästöpossu ":name"', + 'details' => 'Yksityiskohdat', + 'events' => 'Tapahtumat', + 'target_amount' => 'Tavoitesumma', + 'start_date' => 'Aloituspäivä', + 'no_start_date' => 'Ei aloituspäivää', + 'target_date' => 'Tavoitepäivä', + 'no_target_date' => 'Ei tavoitepäivää', + 'table' => 'Taulukko', + 'delete_piggy_bank' => 'Poista säästöpossu ":name"', + 'cannot_add_amount_piggy' => 'Summan :amount lisääminen possuun ":name" epäonnistui.', + 'cannot_remove_from_piggy' => 'Summan :amount poistaminen possusta ":name" epäonnistui.', + 'deleted_piggy_bank' => 'Poistettiin säästöpossu ":name"', + 'added_amount_to_piggy' => 'Lisättiin :amount possuun ":name"', + 'removed_amount_from_piggy' => 'Poistettiin :amount possusta ":name"', + 'piggy_events' => 'Tähän liittyvät säästöporsaat', // tags - 'delete_tag' => 'Poista tägi ":tag"', - 'deleted_tag' => 'Poistettiin tägi ":tag"', - 'new_tag' => 'Luo uusi tägi', - 'edit_tag' => 'Muokkaa tägiä ":tag"', - 'updated_tag' => 'Päivitettiin tägi ":tag"', - 'created_tag' => 'Luotiin ":tag"-tägi!', + 'delete_tag' => 'Poista tägi ":tag"', + 'deleted_tag' => 'Poistettiin tägi ":tag"', + 'new_tag' => 'Luo uusi tägi', + 'edit_tag' => 'Muokkaa tägiä ":tag"', + 'updated_tag' => 'Päivitettiin tägi ":tag"', + 'created_tag' => 'Luotiin ":tag"-tägi!', - 'transaction_journal_information' => 'Tapahtumatiedot', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Metatiedot', - 'transaction_journal_more' => 'Lisätietoja', - 'basic_journal_information' => 'Tapahtuman perustiedot', - 'transaction_journal_extra' => 'Lisätiedot', - 'att_part_of_journal' => 'Tallennettu tietueeseen ":journal"', - 'total_amount' => 'Kokonaissumma', - 'number_of_decimals' => 'Desimaalien määrä', + 'transaction_journal_information' => 'Tapahtumatiedot', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Metatiedot', + 'transaction_journal_more' => 'Lisätietoja', + 'basic_journal_information' => 'Tapahtuman perustiedot', + 'transaction_journal_extra' => 'Lisätiedot', + 'att_part_of_journal' => 'Tallennettu tietueeseen ":journal"', + 'total_amount' => 'Kokonaissumma', + 'number_of_decimals' => 'Desimaalien määrä', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Ylläpito', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Käyttäjähallinta', - 'list_all_users' => 'Kaikki käyttäjät', - 'all_users' => 'Kaikki käyttäjät', - 'instance_configuration' => 'Asetukset', - 'firefly_instance_configuration' => 'Firefly III asetukset', - 'setting_single_user_mode' => 'Yhden käyttäjän tila', - 'setting_single_user_mode_explain' => 'Normaalisti Firefly III hyväksyy vain yhden käyttäjän rekisteröitymisen - Sinut. Tämä on tehty turvallisuutesi takia, estämään muita käyttämästä ohjelmaa ilman sinun lupaasi. Seuraavat rekisteröitymiset on estetty. Jos poistat valinnan tästä valintaruudusta, muut pystyvät myös kirjautumaan. Verkon yli kirjautuminen vaatii, että ohjelman internet-yhteysasetukset ovat myös oikein määritelty.', - 'store_configuration' => 'Tallenna asetukset', - 'single_user_administration' => 'Käyttäjän :email ylläpito', - 'edit_user' => 'Muokkaa käyttäjää :email', - 'hidden_fields_preferences' => 'Voit ottaa käyttöön lisää tapahtumavalintoja asetuksissa.', - 'user_data_information' => 'Käyttäjätiedot', - 'user_information' => 'Käyttäjätiedot', - 'total_size' => 'koko yhteensä', - 'budget_or_budgets' => ':count budjetti|:count budjettia', - 'budgets_with_limits' => ':count budjetti määritetyllä summalla|:count budjettia määritetyllä summalla', - 'nr_of_rules_in_total_groups' => ':count_rules sääntöä :count_groups sääntöryhmässä', - 'tag_or_tags' => ':count tagi|:count tagia', - 'configuration_updated' => 'Asetukset on päivitetty', - 'setting_is_demo_site' => 'Esittelytila', - 'setting_is_demo_site_explain' => 'Tämä valintaruutu aktivoi esittelytilan - valinnalla saattaa olla outoja sivuvaikutuksia.', - 'block_code_bounced' => 'Sähköpostiviesti palautui', - 'block_code_expired' => 'Demokäyttäjän tili on vanhentunut', - 'no_block_code' => 'Ei syytä estoon tai käyttäjää ei ole estetty', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Käyttäjä ei ole vielä vahvistanut uutta sähköpostiosoitetta', - 'admin_update_email' => 'Profiilisivun tiedoista poiketen käyttäjää ei informoida sähköpostiosoitteen muutoksesta!', - 'update_user' => 'Päivitä käyttäjä', - 'updated_user' => 'Käyttäjän tiedot on muutettu.', - 'delete_user' => 'Poista käyttäjätili ":email"', - 'user_deleted' => 'Käyttäjä on poistettu', - 'send_test_email' => 'Testaa sähköpostin lähetystä', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Lähetä viesti', - 'send_test_triggered' => 'Testiviesti lähetettiin. Tarkista sähköpostisi sekä lokitiedostot.', - 'give_admin_careful' => 'Käyttäjät, joille on annettu järjestelmänvalvojan oikeudet, voivat poistaa oikeudet sinulta. Ole varovainen.', - 'admin_maintanance_title' => 'Huolto', - 'admin_maintanance_expl' => 'Joitakin käteviä nappeja Firefly III -huoltoon', - 'admin_maintenance_clear_cache' => 'Tyhjennä välimuisti', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Ylläpito', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Käyttäjähallinta', + 'list_all_users' => 'Kaikki käyttäjät', + 'all_users' => 'Kaikki käyttäjät', + 'instance_configuration' => 'Asetukset', + 'firefly_instance_configuration' => 'Firefly III asetukset', + 'setting_single_user_mode' => 'Yhden käyttäjän tila', + 'setting_single_user_mode_explain' => 'Normaalisti Firefly III hyväksyy vain yhden käyttäjän rekisteröitymisen - Sinut. Tämä on tehty turvallisuutesi takia, estämään muita käyttämästä ohjelmaa ilman sinun lupaasi. Seuraavat rekisteröitymiset on estetty. Jos poistat valinnan tästä valintaruudusta, muut pystyvät myös kirjautumaan. Verkon yli kirjautuminen vaatii, että ohjelman internet-yhteysasetukset ovat myös oikein määritelty.', + 'store_configuration' => 'Tallenna asetukset', + 'single_user_administration' => 'Käyttäjän :email ylläpito', + 'edit_user' => 'Muokkaa käyttäjää :email', + 'hidden_fields_preferences' => 'Voit ottaa käyttöön lisää tapahtumavalintoja asetuksissa.', + 'user_data_information' => 'Käyttäjätiedot', + 'user_information' => 'Käyttäjätiedot', + 'total_size' => 'koko yhteensä', + 'budget_or_budgets' => ':count budjetti|:count budjettia', + 'budgets_with_limits' => ':count budjetti määritetyllä summalla|:count budjettia määritetyllä summalla', + 'nr_of_rules_in_total_groups' => ':count_rules sääntöä :count_groups sääntöryhmässä', + 'tag_or_tags' => ':count tagi|:count tagia', + 'configuration_updated' => 'Asetukset on päivitetty', + 'setting_is_demo_site' => 'Esittelytila', + 'setting_is_demo_site_explain' => 'Tämä valintaruutu aktivoi esittelytilan - valinnalla saattaa olla outoja sivuvaikutuksia.', + 'block_code_bounced' => 'Sähköpostiviesti palautui', + 'block_code_expired' => 'Demokäyttäjän tili on vanhentunut', + 'no_block_code' => 'Ei syytä estoon tai käyttäjää ei ole estetty', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Käyttäjä ei ole vielä vahvistanut uutta sähköpostiosoitetta', + 'admin_update_email' => 'Profiilisivun tiedoista poiketen käyttäjää ei informoida sähköpostiosoitteen muutoksesta!', + 'update_user' => 'Päivitä käyttäjä', + 'updated_user' => 'Käyttäjän tiedot on muutettu.', + 'delete_user' => 'Poista käyttäjätili ":email"', + 'user_deleted' => 'Käyttäjä on poistettu', + 'send_test_email' => 'Testaa sähköpostin lähetystä', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Lähetä viesti', + 'send_test_triggered' => 'Testiviesti lähetettiin. Tarkista sähköpostisi sekä lokitiedostot.', + 'give_admin_careful' => 'Käyttäjät, joille on annettu järjestelmänvalvojan oikeudet, voivat poistaa oikeudet sinulta. Ole varovainen.', + 'admin_maintanance_title' => 'Huolto', + 'admin_maintanance_expl' => 'Joitakin käteviä nappeja Firefly III -huoltoon', + 'admin_maintenance_clear_cache' => 'Tyhjennä välimuisti', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Jaetun tapahtuman kuvaus', - 'split_transaction_title_help' => 'Jos luot jaetun tapahtuman, kokonaisuudelle tarvitaan nimi.', - 'split_title_help' => 'Jos luot jaetun tapahtuman, kokonaisuudelle tarvitaan nimi.', - 'you_create_transfer' => 'Olet luomassa siirtoa.', - 'you_create_withdrawal' => 'Olet luomassa nostoa.', - 'you_create_deposit' => 'Olet luomassa talletusta.', + 'split_transaction_title' => 'Jaetun tapahtuman kuvaus', + 'split_transaction_title_help' => 'Jos luot jaetun tapahtuman, kokonaisuudelle tarvitaan nimi.', + 'split_title_help' => 'Jos luot jaetun tapahtuman, kokonaisuudelle tarvitaan nimi.', + 'you_create_transfer' => 'Olet luomassa siirtoa.', + 'you_create_withdrawal' => 'Olet luomassa nostoa.', + 'you_create_deposit' => 'Olet luomassa talletusta.', // links - 'journal_link_configuration' => 'Tapahtumien linkitysasetukset', - 'create_new_link_type' => 'Luo uusi linkkityyppi', - 'store_new_link_type' => 'Tallenna uusi linkkityyppi', - 'update_link_type' => 'Päivitä linkkityyppi', - 'edit_link_type' => 'Muokkaa linkkityyppiä ":name"', - 'updated_link_type' => 'Päivitettiin linkkityyppi ":name"', - 'delete_link_type' => 'Poista linkkityyppi ":name"', - 'deleted_link_type' => 'Poistettiin linkkityyppi ":name"', - 'stored_new_link_type' => 'Tallenna uusi linkkityyppi ":name"', - 'cannot_edit_link_type' => 'Linkkityyppiä ":name" ei voi muokata', - 'link_type_help_name' => 'Ts. "Kopioi"', - 'link_type_help_inward' => 'Ts. "kopioi"', - 'link_type_help_outward' => 'Ts. "on kopioitu"', - 'save_connections_by_moving' => 'Tallenna linkki näiden tapahtumien välillä siirtämällä ne toiseen linkkityyppiin:', - 'do_not_save_connection' => '(älä tallenna linkkiä)', - 'link_transaction' => 'Linkitä tapahtuma', - 'link_to_other_transaction' => 'Linkitä tämä tapahtuma toiseen tapahtumaan', - 'select_transaction_to_link' => 'Valitse tapahtuma johon tämä tapahtuma yhdistetään. Linkkejä ei tällä hetkellä käytetä Firefly III:ssa (muuten kuin että ne näytetään), mutta suunnittelen muuttavani tämän tulevaisuudessa. Voit käyttää hakua otsikon tai ID:n perusteella löytääksesi tapahtuman. Jos haluat lisätä valinnaisen yhteystyypin, lue lisää Ylläpito sivulta.', - 'this_transaction' => 'Tämä tapahtuma', - 'transaction' => 'Tapahtuma', - 'comments' => 'Kommentit', - 'link_notes' => 'Haluatko tallentaa linkille muistiinpanoja.', - 'invalid_link_selection' => 'Näitä tapahtumia ei voi linkittää', - 'selected_transaction' => 'Valittu tapahtuma', - 'journals_linked' => 'Tapahtumat on linkitetty.', - 'journals_error_linked' => 'Tapahtumilla on jo linkki.', - 'journals_link_to_self' => 'Et voi linkittää tapahtumaa itseensä', - 'journal_links' => 'Tapahtuman linkit', - 'this_withdrawal' => 'Tämä nosto', - 'this_deposit' => 'Tämä talletus', - 'this_transfer' => 'Tämä siirto', - 'overview_for_link' => 'Yleisnäkymä linkkityypille ":name"', - 'source_transaction' => 'Lähdetapahtuma', - 'link_description' => 'Linkin kuvaus', - 'destination_transaction' => 'Kohdetapahtuma', - 'delete_journal_link' => 'Poista tapahtumien :source ja :destination linkki', - 'deleted_link' => 'Linkki poistettiin', + 'journal_link_configuration' => 'Tapahtumien linkitysasetukset', + 'create_new_link_type' => 'Luo uusi linkkityyppi', + 'store_new_link_type' => 'Tallenna uusi linkkityyppi', + 'update_link_type' => 'Päivitä linkkityyppi', + 'edit_link_type' => 'Muokkaa linkkityyppiä ":name"', + 'updated_link_type' => 'Päivitettiin linkkityyppi ":name"', + 'delete_link_type' => 'Poista linkkityyppi ":name"', + 'deleted_link_type' => 'Poistettiin linkkityyppi ":name"', + 'stored_new_link_type' => 'Tallenna uusi linkkityyppi ":name"', + 'cannot_edit_link_type' => 'Linkkityyppiä ":name" ei voi muokata', + 'link_type_help_name' => 'Ts. "Kopioi"', + 'link_type_help_inward' => 'Ts. "kopioi"', + 'link_type_help_outward' => 'Ts. "on kopioitu"', + 'save_connections_by_moving' => 'Tallenna linkki näiden tapahtumien välillä siirtämällä ne toiseen linkkityyppiin:', + 'do_not_save_connection' => '(älä tallenna linkkiä)', + 'link_transaction' => 'Linkitä tapahtuma', + 'link_to_other_transaction' => 'Linkitä tämä tapahtuma toiseen tapahtumaan', + 'select_transaction_to_link' => 'Valitse tapahtuma johon tämä tapahtuma yhdistetään. Linkkejä ei tällä hetkellä käytetä Firefly III:ssa (muuten kuin että ne näytetään), mutta suunnittelen muuttavani tämän tulevaisuudessa. Voit käyttää hakua otsikon tai ID:n perusteella löytääksesi tapahtuman. Jos haluat lisätä valinnaisen yhteystyypin, lue lisää Ylläpito sivulta.', + 'this_transaction' => 'Tämä tapahtuma', + 'transaction' => 'Tapahtuma', + 'comments' => 'Kommentit', + 'link_notes' => 'Haluatko tallentaa linkille muistiinpanoja.', + 'invalid_link_selection' => 'Näitä tapahtumia ei voi linkittää', + 'selected_transaction' => 'Valittu tapahtuma', + 'journals_linked' => 'Tapahtumat on linkitetty.', + 'journals_error_linked' => 'Tapahtumilla on jo linkki.', + 'journals_link_to_self' => 'Et voi linkittää tapahtumaa itseensä', + 'journal_links' => 'Tapahtuman linkit', + 'this_withdrawal' => 'Tämä nosto', + 'this_deposit' => 'Tämä talletus', + 'this_transfer' => 'Tämä siirto', + 'overview_for_link' => 'Yleisnäkymä linkkityypille ":name"', + 'source_transaction' => 'Lähdetapahtuma', + 'link_description' => 'Linkin kuvaus', + 'destination_transaction' => 'Kohdetapahtuma', + 'delete_journal_link' => 'Poista tapahtumien :source ja :destination linkki', + 'deleted_link' => 'Linkki poistettiin', // link translations: - 'Paid_name' => 'Maksettu', - 'Refund_name' => 'Hyvitys', - 'Reimbursement_name' => 'Korvaus', - 'Related_name' => 'Liittyvä', - 'relates to_inward' => 'liittyy', - 'is (partially) refunded by_inward' => 'on (osittain) palauttanut', - 'is (partially) paid for by_inward' => 'on (osittain) maksanut', - 'is (partially) reimbursed by_inward' => 'on (osittain) korvannut', - 'inward_transaction' => 'Tapahtuma sisäänpäin', - 'outward_transaction' => 'Tapahtuma ulospäin', - 'relates to_outward' => 'liittyy', - '(partially) refunds_outward' => '(osittainen) palautus', - '(partially) pays for_outward' => '(osittainen) maksu', - '(partially) reimburses_outward' => '(osittainen) korvaus', - 'is (partially) refunded by' => 'on (osittain) palauttanut', - 'is (partially) paid for by' => 'on (osittain) maksanut', - 'is (partially) reimbursed by' => 'on (osittain) korvannut', - 'relates to' => 'liittyy', - '(partially) refunds' => '(osittainen) palautus', - '(partially) pays for' => '(osittainen) maksu', - '(partially) reimburses' => '(osittainen) korvaus', + 'Paid_name' => 'Maksettu', + 'Refund_name' => 'Hyvitys', + 'Reimbursement_name' => 'Korvaus', + 'Related_name' => 'Liittyvä', + 'relates to_inward' => 'liittyy', + 'is (partially) refunded by_inward' => 'on (osittain) palauttanut', + 'is (partially) paid for by_inward' => 'on (osittain) maksanut', + 'is (partially) reimbursed by_inward' => 'on (osittain) korvannut', + 'inward_transaction' => 'Tapahtuma sisäänpäin', + 'outward_transaction' => 'Tapahtuma ulospäin', + 'relates to_outward' => 'liittyy', + '(partially) refunds_outward' => '(osittainen) palautus', + '(partially) pays for_outward' => '(osittainen) maksu', + '(partially) reimburses_outward' => '(osittainen) korvaus', + 'is (partially) refunded by' => 'on (osittain) palauttanut', + 'is (partially) paid for by' => 'on (osittain) maksanut', + 'is (partially) reimbursed by' => 'on (osittain) korvannut', + 'relates to' => 'liittyy', + '(partially) refunds' => '(osittainen) palautus', + '(partially) pays for' => '(osittainen) maksu', + '(partially) reimburses' => '(osittainen) korvaus', // split a transaction: - 'splits' => 'Tapahtuman osat', - 'add_another_split' => 'Lisää tapahtumaan uusi osa', - 'cannot_edit_opening_balance' => 'Et voi muokata tilin alkusaldoa.', - 'no_edit_multiple_left' => 'Yhtään kelvollista tapahtumaa ei ole valittu.', - 'breadcrumb_convert_group' => 'Muuta tapahtumaa', - 'convert_invalid_source' => 'Lähtötilin tiedot eivät kelpaa tapahtumalle #%d.', - 'convert_invalid_destination' => 'Kohdetilin tiedot eivät kelpaa tapahtumalle #%d.', - 'create_another' => 'Tallennuksen jälkeen, palaa takaisin luomaan uusi tapahtuma.', - 'after_update_create_another' => 'Päivityksen jälkeen, palaa takaisin jatkamaan muokkausta.', - 'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.', - 'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Laajenna jako', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Yhdistä jako', + 'splits' => 'Tapahtuman osat', + 'add_another_split' => 'Lisää tapahtumaan uusi osa', + 'cannot_edit_opening_balance' => 'Et voi muokata tilin alkusaldoa.', + 'no_edit_multiple_left' => 'Yhtään kelvollista tapahtumaa ei ole valittu.', + 'breadcrumb_convert_group' => 'Muuta tapahtumaa', + 'convert_invalid_source' => 'Lähtötilin tiedot eivät kelpaa tapahtumalle #%d.', + 'convert_invalid_destination' => 'Kohdetilin tiedot eivät kelpaa tapahtumalle #%d.', + 'create_another' => 'Tallennuksen jälkeen, palaa takaisin luomaan uusi tapahtuma.', + 'after_update_create_another' => 'Päivityksen jälkeen, palaa takaisin jatkamaan muokkausta.', + 'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.', + 'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Laajenna jako', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Yhdistä jako', // object groups - 'default_group_title_name' => '(ryhmittelemättömät)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ryhmittelemättömät)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Luodaan käyttötili!', - 'no_accounts_intro_asset' => 'Sinulla ei ole vielä yhtään käyttötiliä. Käyttötilit ovat päätilejäsi: palkkatili, säästötili, pankkikortti, jaetut tilit ja jopa luottokorttisi.', - 'no_accounts_imperative_asset' => 'Aloittaaksesi käyttämään Firefly III:sta joudut luomaan ainakin yhden käyttötilin. Luodaan se nyt:', - 'no_accounts_create_asset' => 'Luo käyttötili', - 'no_accounts_title_expense' => 'Luodaan kulutustili!', - 'no_accounts_intro_expense' => 'Sinulla ei ole vielä yhtään kulutustiliä. Kulutustilit ovat paikkoja tai henkilöitä joille maksat rahaa, esimerkiksi kaupat ja supermarketit.', - 'no_accounts_imperative_expense' => 'Käyttötili luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit halutessasi luoda niitä myös tässä. Luodaan yksi nyt:', - 'no_accounts_create_expense' => 'Luo kulutustili', - 'no_accounts_title_revenue' => 'Luodaan tuottotili!', - 'no_accounts_intro_revenue' => 'Sinulla ei ole vielä yhtään tuottotiliä. Tuottotilit ovat tilejä, joille saat rahaa jostain - esimerkiksi palkkana työnantajaltasi.', - 'no_accounts_imperative_revenue' => 'Tuottotili luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit halutessasi luoda niitä myös tässä. Luodaan yksi nyt:', - 'no_accounts_create_revenue' => 'Luo tuottotili', - 'no_accounts_title_liabilities' => 'Luodaan laina!', - 'no_accounts_intro_liabilities' => 'Sinulla ei ole vielä yhtään lainatilejä. Lainat ovat tilejä joille merkitset lainat ja velat. Esimerkkeinä opinto- tai asuntolaina.', - 'no_accounts_imperative_liabilities' => 'Tätä ominaisuutta ei tarvitse käyttää, mutta se on käytännöllinen jos sinun täytyy seurata tällaisia asioita.', - 'no_accounts_create_liabilities' => 'Luo laina', - 'no_budgets_title_default' => 'Luodaan budjetti', - 'no_rules_title_default' => 'Luodaan sääntö', - 'no_budgets_intro_default' => 'Sinulla ei ole vielä yhtään budjettia. Budjetteja käytetään organisoimaan kustannuksiasi loogisiin ryhmiin, joissa voit asettaa arvioita menoillesi.', - 'no_rules_intro_default' => 'Sinulla ei ole vielä sääntöjä. Säännöt ovat tehokkaita automaatioita, jotka voivat käsitellä tapahtumia sinulle.', - 'no_rules_imperative_default' => 'Säännöt voivat olla erittäin hyödyllisiä, kun hallinnoit maksutapahtumia. Luodaan sellainen nyt:', - 'no_budgets_imperative_default' => 'Budjetit ovat rahojen hallinnan perustyökaluja. Luodaan sellainen nyt:', - 'no_budgets_create_default' => 'Luo budjetti', - 'no_rules_create_default' => 'Luo sääntö', - 'no_categories_title_default' => 'Luodaan kategoria!', - 'no_categories_intro_default' => 'Sinulla ei ole vielä yhtään kategoriaa. Kategorioita käytetään tapahtumien hienosäätämiseen - kategorioimaan niitä.', - 'no_categories_imperative_default' => 'Kategorioita luodaan tarvittaessa automaattisesti samalla kun luot tapahtumia, mutta voit luoda niitä myös tässä. Luodaanpa sellainen nyt:', - 'no_categories_create_default' => 'Luo kategoria', - 'no_tags_title_default' => 'Luodaan tägi!', - 'no_tags_intro_default' => 'Sinulla ei ole vielä yhtään tägiä. Tägejä käytetään hienosäätämään tapahtumiasi ja merkitsemään niitä valituilla avainsanoilla.', - 'no_tags_imperative_default' => 'Tägit luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit luoda sellaisen tässä. Luotaisiinko yksi tägi nyt:', - 'no_tags_create_default' => 'Luo tägi', - 'no_transactions_title_withdrawal' => 'Luodaan kustannus!', - 'no_transactions_intro_withdrawal' => 'Sinulla ei ole vielä kustannuksia. Talouden hallintaa varten tänne kirjataan kustannukset.', - 'no_transactions_imperative_withdrawal' => 'Oletko kuluttanut rahaa? Se pitää kirjata tänne:', - 'no_transactions_create_withdrawal' => 'Luo kustannus', - 'no_transactions_title_deposit' => 'Luodaanpa sitten hieman ansioita!', - 'no_transactions_intro_deposit' => 'Sinulla ei ole vielä ansioita. Talouden hallintaa varten tänne kirjataan ansiot.', - 'no_transactions_imperative_deposit' => 'Oletko vastaanottanut rahaa? Se kirjataan tänne:', - 'no_transactions_create_deposit' => 'Luo talletus', - 'no_transactions_title_transfers' => 'Luodaan siirto!', - 'no_transactions_intro_transfers' => 'Sinulla ei ole vielä yhtään siirtoa. Kun siirrät rahaa omaisuustilien välillä, se tallennetaan siirtona.', - 'no_transactions_imperative_transfers' => 'Oletko siirtänyt rahaa tiliesi välillä, eli tehnyt siirtoja? Ne kirjataan tänne:', - 'no_transactions_create_transfers' => 'Luo siirto', - 'no_piggies_title_default' => 'Luodaan säästöpossu!', - 'no_piggies_intro_default' => 'Sinulla ei ole vielä yhtään säästöpossua. Voit luoda säästöpossuja jaotellaksesi säästöjäsi ja pitääksesi kirjaa asioista joihin olet säästämässä rahaa.', - 'no_piggies_imperative_default' => 'Säästätkö rahaa johonkin tarkoitukseen? Luo säästöpossu ja seuraa edistymistäsi:', - 'no_piggies_create_default' => 'Luo uusi säästöpossu', - 'no_bills_title_default' => 'Luodaan lasku!', - 'no_bills_intro_default' => 'Sinulla ei ole vielä yhtään laskua. Voit luoda laskuja pitääksesi kirjaa säännöllisistä menoistasi. Esimerkiksi vuokra ja vakuutus.', - 'no_bills_imperative_default' => 'Tuleeko sinulle säännöllisesti jotain laskuja? Luo lasku ja pidä kirjaa maksuistasi:', - 'no_bills_create_default' => 'Luo lasku', + 'no_accounts_title_asset' => 'Luodaan käyttötili!', + 'no_accounts_intro_asset' => 'Sinulla ei ole vielä yhtään käyttötiliä. Käyttötilit ovat päätilejäsi: palkkatili, säästötili, pankkikortti, jaetut tilit ja jopa luottokorttisi.', + 'no_accounts_imperative_asset' => 'Aloittaaksesi käyttämään Firefly III:sta joudut luomaan ainakin yhden käyttötilin. Luodaan se nyt:', + 'no_accounts_create_asset' => 'Luo käyttötili', + 'no_accounts_title_expense' => 'Luodaan kulutustili!', + 'no_accounts_intro_expense' => 'Sinulla ei ole vielä yhtään kulutustiliä. Kulutustilit ovat paikkoja tai henkilöitä joille maksat rahaa, esimerkiksi kaupat ja supermarketit.', + 'no_accounts_imperative_expense' => 'Käyttötili luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit halutessasi luoda niitä myös tässä. Luodaan yksi nyt:', + 'no_accounts_create_expense' => 'Luo kulutustili', + 'no_accounts_title_revenue' => 'Luodaan tuottotili!', + 'no_accounts_intro_revenue' => 'Sinulla ei ole vielä yhtään tuottotiliä. Tuottotilit ovat tilejä, joille saat rahaa jostain - esimerkiksi palkkana työnantajaltasi.', + 'no_accounts_imperative_revenue' => 'Tuottotili luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit halutessasi luoda niitä myös tässä. Luodaan yksi nyt:', + 'no_accounts_create_revenue' => 'Luo tuottotili', + 'no_accounts_title_liabilities' => 'Luodaan laina!', + 'no_accounts_intro_liabilities' => 'Sinulla ei ole vielä yhtään lainatilejä. Lainat ovat tilejä joille merkitset lainat ja velat. Esimerkkeinä opinto- tai asuntolaina.', + 'no_accounts_imperative_liabilities' => 'Tätä ominaisuutta ei tarvitse käyttää, mutta se on käytännöllinen jos sinun täytyy seurata tällaisia asioita.', + 'no_accounts_create_liabilities' => 'Luo laina', + 'no_budgets_title_default' => 'Luodaan budjetti', + 'no_rules_title_default' => 'Luodaan sääntö', + 'no_budgets_intro_default' => 'Sinulla ei ole vielä yhtään budjettia. Budjetteja käytetään organisoimaan kustannuksiasi loogisiin ryhmiin, joissa voit asettaa arvioita menoillesi.', + 'no_rules_intro_default' => 'Sinulla ei ole vielä sääntöjä. Säännöt ovat tehokkaita automaatioita, jotka voivat käsitellä tapahtumia sinulle.', + 'no_rules_imperative_default' => 'Säännöt voivat olla erittäin hyödyllisiä, kun hallinnoit maksutapahtumia. Luodaan sellainen nyt:', + 'no_budgets_imperative_default' => 'Budjetit ovat rahojen hallinnan perustyökaluja. Luodaan sellainen nyt:', + 'no_budgets_create_default' => 'Luo budjetti', + 'no_rules_create_default' => 'Luo sääntö', + 'no_categories_title_default' => 'Luodaan kategoria!', + 'no_categories_intro_default' => 'Sinulla ei ole vielä yhtään kategoriaa. Kategorioita käytetään tapahtumien hienosäätämiseen - kategorioimaan niitä.', + 'no_categories_imperative_default' => 'Kategorioita luodaan tarvittaessa automaattisesti samalla kun luot tapahtumia, mutta voit luoda niitä myös tässä. Luodaanpa sellainen nyt:', + 'no_categories_create_default' => 'Luo kategoria', + 'no_tags_title_default' => 'Luodaan tägi!', + 'no_tags_intro_default' => 'Sinulla ei ole vielä yhtään tägiä. Tägejä käytetään hienosäätämään tapahtumiasi ja merkitsemään niitä valituilla avainsanoilla.', + 'no_tags_imperative_default' => 'Tägit luodaan tarvittaessa automaattisesti kun luot tapahtumia, mutta voit luoda sellaisen tässä. Luotaisiinko yksi tägi nyt:', + 'no_tags_create_default' => 'Luo tägi', + 'no_transactions_title_withdrawal' => 'Luodaan kustannus!', + 'no_transactions_intro_withdrawal' => 'Sinulla ei ole vielä kustannuksia. Talouden hallintaa varten tänne kirjataan kustannukset.', + 'no_transactions_imperative_withdrawal' => 'Oletko kuluttanut rahaa? Se pitää kirjata tänne:', + 'no_transactions_create_withdrawal' => 'Luo kustannus', + 'no_transactions_title_deposit' => 'Luodaanpa sitten hieman ansioita!', + 'no_transactions_intro_deposit' => 'Sinulla ei ole vielä ansioita. Talouden hallintaa varten tänne kirjataan ansiot.', + 'no_transactions_imperative_deposit' => 'Oletko vastaanottanut rahaa? Se kirjataan tänne:', + 'no_transactions_create_deposit' => 'Luo talletus', + 'no_transactions_title_transfers' => 'Luodaan siirto!', + 'no_transactions_intro_transfers' => 'Sinulla ei ole vielä yhtään siirtoa. Kun siirrät rahaa omaisuustilien välillä, se tallennetaan siirtona.', + 'no_transactions_imperative_transfers' => 'Oletko siirtänyt rahaa tiliesi välillä, eli tehnyt siirtoja? Ne kirjataan tänne:', + 'no_transactions_create_transfers' => 'Luo siirto', + 'no_piggies_title_default' => 'Luodaan säästöpossu!', + 'no_piggies_intro_default' => 'Sinulla ei ole vielä yhtään säästöpossua. Voit luoda säästöpossuja jaotellaksesi säästöjäsi ja pitääksesi kirjaa asioista joihin olet säästämässä rahaa.', + 'no_piggies_imperative_default' => 'Säästätkö rahaa johonkin tarkoitukseen? Luo säästöpossu ja seuraa edistymistäsi:', + 'no_piggies_create_default' => 'Luo uusi säästöpossu', + 'no_bills_title_default' => 'Luodaan lasku!', + 'no_bills_intro_default' => 'Sinulla ei ole vielä yhtään laskua. Voit luoda laskuja pitääksesi kirjaa säännöllisistä menoistasi. Esimerkiksi vuokra ja vakuutus.', + 'no_bills_imperative_default' => 'Tuleeko sinulle säännöllisesti jotain laskuja? Luo lasku ja pidä kirjaa maksuistasi:', + 'no_bills_create_default' => 'Luo lasku', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Toistuvat tapahtumat', - 'repeat_until_in_past' => 'Tämä toistuva tapahtuma lakkasi toistumasta :date.', - 'recurring_calendar_view' => 'Kalenteri', - 'no_recurring_title_default' => 'Luodaan toistuva tapahtuma!', - 'no_recurring_intro_default' => 'Sinulla ei ole vielä yhtään toistuvaa tapahtumaa. Niiden avulla Firefly III osaa luoda automaattisesti tapahtumia sinulle.', - 'no_recurring_imperative_default' => 'Tämä on aika edistynyt toiminto, mutta siitä voi olla paljon hyötyä. Lue käyttöohje (?)-ikonin alta oikeasta ylänurkasta ennen jatkamista.', - 'no_recurring_create_default' => 'Luo toistuva tapahtuma', - 'make_new_recurring' => 'Luo toistuva tapahtuma', - 'recurring_daily' => 'Joka päivä', - 'recurring_weekly' => 'Joka viikon :weekday', - 'recurring_weekly_skip' => ':weekday joka :skip. viikko', - 'recurring_monthly' => 'Joka kuun :dayOfMonth. päivä', - 'recurring_monthly_skip' => 'Joka :skip. kuun :dayOfMonth. päivä', - 'recurring_ndom' => 'Joka kuun :dayOfMonth. :weekday', - 'recurring_yearly' => ':date vuosittain', - 'overview_for_recurrence' => 'Toistuvan tapahtuman ":title" yleisnäkymä', - 'warning_duplicates_repetitions' => 'Joissain harvoissa tapauksissa päivämäärät näkyvät kahdesti tällä listalla. Näin saattaa tapahtua kun toistuvissa tapahtumissa tapahtuu törmäyksiä. Firefly III luo vain yhden tapahtuman päivässä.', - 'created_transactions' => 'Liittyy tapahtumiin', - 'expected_withdrawals' => 'Odotettavissa olevat nostot', - 'expected_deposits' => 'Odotettavissa olevat talletukset', - 'expected_transfers' => 'Odotettavissa olevat siirrot', - 'created_withdrawals' => 'Luodut nostot', - 'created_deposits' => 'Luodut talletukset', - 'created_transfers' => 'Luodut siirrot', - 'recurring_info' => 'Toistuva tapahtuma :count / :total', - 'created_from_recurrence' => 'Luotu toistuvasta tapahtumasta ":title" (#:id)', - 'recurring_never_cron' => '"Cron" ajoitustapahtuma jota käytetään toistuvien tapahtumien suoritukseen ei ole kertaakaan käynnistynyt. Tämä on normaalia kun Firefly III:n asennus on uusi, mutta tämä kannattaisi korjata niin pian kuin suinkin. Lue opastus Cronin määrittämisestä (?)-ikonista sivun oikeasta yläkulmasta.', - 'recurring_cron_long_ago' => 'Näyttää siltä että toistuvia tapahtumia tukevan "Cron" prosessin edellisestä ajosta on kulunut yli 36 tuntia. Oletko varma että se on määritelty oikein? Lue ohjeet ohjesivuilta, löydät ne tämän sivun oikean yläkulman (?)-ikonin alta.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Toistuvat tapahtumat', + 'repeat_until_in_past' => 'Tämä toistuva tapahtuma lakkasi toistumasta :date.', + 'recurring_calendar_view' => 'Kalenteri', + 'no_recurring_title_default' => 'Luodaan toistuva tapahtuma!', + 'no_recurring_intro_default' => 'Sinulla ei ole vielä yhtään toistuvaa tapahtumaa. Niiden avulla Firefly III osaa luoda automaattisesti tapahtumia sinulle.', + 'no_recurring_imperative_default' => 'Tämä on aika edistynyt toiminto, mutta siitä voi olla paljon hyötyä. Lue käyttöohje (?)-ikonin alta oikeasta ylänurkasta ennen jatkamista.', + 'no_recurring_create_default' => 'Luo toistuva tapahtuma', + 'make_new_recurring' => 'Luo toistuva tapahtuma', + 'recurring_daily' => 'Joka päivä', + 'recurring_weekly' => 'Joka viikon :weekday', + 'recurring_weekly_skip' => ':weekday joka :skip. viikko', + 'recurring_monthly' => 'Joka kuun :dayOfMonth. päivä', + 'recurring_monthly_skip' => 'Joka :skip. kuun :dayOfMonth. päivä', + 'recurring_ndom' => 'Joka kuun :dayOfMonth. :weekday', + 'recurring_yearly' => ':date vuosittain', + 'overview_for_recurrence' => 'Toistuvan tapahtuman ":title" yleisnäkymä', + 'warning_duplicates_repetitions' => 'Joissain harvoissa tapauksissa päivämäärät näkyvät kahdesti tällä listalla. Näin saattaa tapahtua kun toistuvissa tapahtumissa tapahtuu törmäyksiä. Firefly III luo vain yhden tapahtuman päivässä.', + 'created_transactions' => 'Liittyy tapahtumiin', + 'expected_withdrawals' => 'Odotettavissa olevat nostot', + 'expected_deposits' => 'Odotettavissa olevat talletukset', + 'expected_transfers' => 'Odotettavissa olevat siirrot', + 'created_withdrawals' => 'Luodut nostot', + 'created_deposits' => 'Luodut talletukset', + 'created_transfers' => 'Luodut siirrot', + 'recurring_info' => 'Toistuva tapahtuma :count / :total', + 'created_from_recurrence' => 'Luotu toistuvasta tapahtumasta ":title" (#:id)', + 'recurring_never_cron' => '"Cron" ajoitustapahtuma jota käytetään toistuvien tapahtumien suoritukseen ei ole kertaakaan käynnistynyt. Tämä on normaalia kun Firefly III:n asennus on uusi, mutta tämä kannattaisi korjata niin pian kuin suinkin. Lue opastus Cronin määrittämisestä (?)-ikonista sivun oikeasta yläkulmasta.', + 'recurring_cron_long_ago' => 'Näyttää siltä että toistuvia tapahtumia tukevan "Cron" prosessin edellisestä ajosta on kulunut yli 36 tuntia. Oletko varma että se on määritelty oikein? Lue ohjeet ohjesivuilta, löydät ne tämän sivun oikean yläkulman (?)-ikonin alta.', - 'create_new_recurrence' => 'Luo uusi toistuva tapahtuma', - 'help_first_date' => 'Milloin tapahtuma tapahtuu ensimmäisen kerran? Valitun päivämäärän täytyy olla tulevaisuudessa. Päivän voi korjata myöhemmin.', - 'help_first_date_no_past' => 'Milloin tapahtuma toistuu ensimmäisen kerran? Firefly III ei luo näitä tapahtumia menneisyyteen.', - 'no_currency' => '(ei valuuttaa)', - 'mandatory_for_recurring' => 'Pakolliset toistuvan tapahtuman tiedot', - 'mandatory_for_transaction' => 'Pakollinen tapahtuman tieto', - 'optional_for_recurring' => 'Valinnainen toistuvan tapahtuman tieto', - 'optional_for_transaction' => 'Valinnainen tapahtuman tieto', - 'change_date_other_options' => 'Muuta "Aloituspäivämäärä" nähdäksesi lisää valintoja.', - 'mandatory_fields_for_tranaction' => 'Nämä arvot päätyvät tapahtumiin joita olet luomassa', - 'click_for_calendar' => 'Tästä saat avattua kalenterinäytön nähdäksesi tapahtuman toistot.', - 'repeat_forever' => 'Toista tästä eteenpäin', - 'repeat_until_date' => 'Toisto päättyy päivämäärään', - 'repeat_times' => 'Lisää toistojen lukumäärä', - 'recurring_skips_one' => 'Joka toinen', - 'recurring_skips_more' => 'Ohitetaan :count tapahtumaa', - 'store_new_recurrence' => 'Tallenna toistuva tapahtuma', - 'stored_new_recurrence' => 'Toistuva tapahtuma ":title" tallennettu onnistuneesti.', - 'edit_recurrence' => 'Muokkaa toistuvaa tapahtumaa ":title"', - 'recurring_repeats_until' => 'Toistuu :date asti', - 'recurring_repeats_forever' => 'Toistuu loputtomiin', - 'recurring_repeats_x_times' => 'Toistuu :count kerran|Toistuu :count kertaa', - 'update_recurrence' => 'Päivitä toistuva tapahtuma', - 'updated_recurrence' => 'Päivitettiin toistuva tapahtuma ":title"', - 'recurrence_is_inactive' => 'Tämä toistuva tapahtuma ei ole aktiivinen, eikä tule luomaan uusi tapahtumia.', - 'delete_recurring' => 'Poista toistuva tapahtuma ":title"', - 'new_recurring_transaction' => 'Uusi toistuva tapahtuma', - 'help_weekend' => 'Mitä Firefly III:n pitäisi tehdä kun toistuva tapahtuma osuu Lauantaille tai Sunnuntaille?', - 'do_nothing' => 'Luo vain tämä tapahtuma', - 'skip_transaction' => 'Ohita tämä tapahtuma', - 'jump_to_friday' => 'Luo tapahtuma jo edellisenä Perjantaina', - 'jump_to_monday' => 'Luo tapahtuma vasta seuraavana Maanantaina', - 'will_jump_friday' => 'Luodaan perjantaina osuttaessa viikonloppuun.', - 'will_jump_monday' => 'Siirtyy maanantaille osuttaessa viikonloppuun.', - 'except_weekends' => 'Paitsi viikonloppuisin', - 'recurrence_deleted' => 'Toistuva tapahtuma ":title" poistettu', + 'create_new_recurrence' => 'Luo uusi toistuva tapahtuma', + 'help_first_date' => 'Milloin tapahtuma tapahtuu ensimmäisen kerran? Valitun päivämäärän täytyy olla tulevaisuudessa. Päivän voi korjata myöhemmin.', + 'help_first_date_no_past' => 'Milloin tapahtuma toistuu ensimmäisen kerran? Firefly III ei luo näitä tapahtumia menneisyyteen.', + 'no_currency' => '(ei valuuttaa)', + 'mandatory_for_recurring' => 'Pakolliset toistuvan tapahtuman tiedot', + 'mandatory_for_transaction' => 'Pakollinen tapahtuman tieto', + 'optional_for_recurring' => 'Valinnainen toistuvan tapahtuman tieto', + 'optional_for_transaction' => 'Valinnainen tapahtuman tieto', + 'change_date_other_options' => 'Muuta "Aloituspäivämäärä" nähdäksesi lisää valintoja.', + 'mandatory_fields_for_tranaction' => 'Nämä arvot päätyvät tapahtumiin joita olet luomassa', + 'click_for_calendar' => 'Tästä saat avattua kalenterinäytön nähdäksesi tapahtuman toistot.', + 'repeat_forever' => 'Toista tästä eteenpäin', + 'repeat_until_date' => 'Toisto päättyy päivämäärään', + 'repeat_times' => 'Lisää toistojen lukumäärä', + 'recurring_skips_one' => 'Joka toinen', + 'recurring_skips_more' => 'Ohitetaan :count tapahtumaa', + 'store_new_recurrence' => 'Tallenna toistuva tapahtuma', + 'stored_new_recurrence' => 'Toistuva tapahtuma ":title" tallennettu onnistuneesti.', + 'edit_recurrence' => 'Muokkaa toistuvaa tapahtumaa ":title"', + 'recurring_repeats_until' => 'Toistuu :date asti', + 'recurring_repeats_forever' => 'Toistuu loputtomiin', + 'recurring_repeats_x_times' => 'Toistuu :count kerran|Toistuu :count kertaa', + 'update_recurrence' => 'Päivitä toistuva tapahtuma', + 'updated_recurrence' => 'Päivitettiin toistuva tapahtuma ":title"', + 'recurrence_is_inactive' => 'Tämä toistuva tapahtuma ei ole aktiivinen, eikä tule luomaan uusi tapahtumia.', + 'delete_recurring' => 'Poista toistuva tapahtuma ":title"', + 'new_recurring_transaction' => 'Uusi toistuva tapahtuma', + 'help_weekend' => 'Mitä Firefly III:n pitäisi tehdä kun toistuva tapahtuma osuu Lauantaille tai Sunnuntaille?', + 'do_nothing' => 'Luo vain tämä tapahtuma', + 'skip_transaction' => 'Ohita tämä tapahtuma', + 'jump_to_friday' => 'Luo tapahtuma jo edellisenä Perjantaina', + 'jump_to_monday' => 'Luo tapahtuma vasta seuraavana Maanantaina', + 'will_jump_friday' => 'Luodaan perjantaina osuttaessa viikonloppuun.', + 'will_jump_monday' => 'Siirtyy maanantaille osuttaessa viikonloppuun.', + 'except_weekends' => 'Paitsi viikonloppuisin', + 'recurrence_deleted' => 'Toistuva tapahtuma ":title" poistettu', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Kulutettu (:currency)', - 'box_earned_in_currency' => 'Tienattu (:currency)', - 'box_budgeted_in_currency' => 'Budjetoitu (:currency)', - 'box_bill_paid_in_currency' => 'Maksetut laskut (:currency)', - 'box_bill_unpaid_in_currency' => 'Maksamattomat laskut (:currency)', - 'box_left_to_spend_in_currency' => 'Kulutettavaa (:currency)', - 'box_net_worth_in_currency' => 'Varallisuus (:currency)', - 'box_spend_per_day' => 'Käytettävissä per päivä: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Kulutettu (:currency)', + 'box_earned_in_currency' => 'Tienattu (:currency)', + 'box_budgeted_in_currency' => 'Budjetoitu (:currency)', + 'box_bill_paid_in_currency' => 'Maksetut laskut (:currency)', + 'box_bill_unpaid_in_currency' => 'Maksamattomat laskut (:currency)', + 'box_left_to_spend_in_currency' => 'Kulutettavaa (:currency)', + 'box_net_worth_in_currency' => 'Varallisuus (:currency)', + 'box_spend_per_day' => 'Käytettävissä per päivä: :amount', // debug page - 'debug_page' => 'Virheenkorjaussivu', - 'debug_submit_instructions' => 'Jos sinulla on ongelmia, voit käyttää tässä ruudussa olevia tietoja virheenjäljitystietoina. Kopioi ja liitä uuteen tai olemassa olevaan GitHub ongelmaan. Se luo kauniin taulukon, jolla voidaan nopeasti diagnosoida ongelmia.', - 'debug_pretty_table' => 'Jos kopioit/liität alla olevan ruudun GitHub-tikettiin, se luo taulukon. Älä lisää tähän tekstiin lainausmerkkejä.', - 'debug_additional_data' => 'Voit myös jakaa alla olevan laatikon sisällön. Voit myös kopioida ja liittää tämän uuteen tai olemassa olevaan GitHub tikettiin. Tämän kentän sisältö voi kuitenkin sisältää yksityisiä tietoja, kuten tilien nimiä, tapahtumatietoja tai sähköpostiosoitteita.', + 'debug_page' => 'Virheenkorjaussivu', + 'debug_submit_instructions' => 'Jos sinulla on ongelmia, voit käyttää tässä ruudussa olevia tietoja virheenjäljitystietoina. Kopioi ja liitä uuteen tai olemassa olevaan GitHub ongelmaan. Se luo kauniin taulukon, jolla voidaan nopeasti diagnosoida ongelmia.', + 'debug_pretty_table' => 'Jos kopioit/liität alla olevan ruudun GitHub-tikettiin, se luo taulukon. Älä lisää tähän tekstiin lainausmerkkejä.', + 'debug_additional_data' => 'Voit myös jakaa alla olevan laatikon sisällön. Voit myös kopioida ja liittää tämän uuteen tai olemassa olevaan GitHub tikettiin. Tämän kentän sisältö voi kuitenkin sisältää yksityisiä tietoja, kuten tilien nimiä, tapahtumatietoja tai sähköpostiosoitteita.', // object groups - 'object_groups_menu_bar' => 'Ryhmät', - 'object_groups_page_title' => 'Ryhmät', - 'object_groups_breadcrumb' => 'Ryhmät', - 'object_groups_index' => 'Yleiskatsaus', - 'object_groups' => 'Ryhmät', - 'object_groups_empty_explain' => 'Joitakin asioita Firefly III:ssa voidaan jakaa ryhmiin. Esimerkiksi Säästöpossuilla on kenttä nimeltä "Ryhmä" muokkaa ja luo sivuilla. Kun asetat tälle kentälle arvon, voit muokata ryhmien nimiä ja järjestystä tällä sivulla. Lisätietoja saat tutustumalla ohjeisiin oikean yläkulman (?)-kuvakkeen alla.', - 'object_group_title' => 'Otsikko', - 'edit_object_group' => 'Muokkaa ryhmää ":title"', - 'delete_object_group' => 'Poista ryhmä ":title"', - 'update_object_group' => 'Päivitä ryhmä', - 'updated_object_group' => 'Ryhmän ":title" päivitys onnistui', - 'deleted_object_group' => 'Ryhmän ":title" poistaminen onnistui', - 'object_group' => 'Ryhmä', + 'object_groups_menu_bar' => 'Ryhmät', + 'object_groups_page_title' => 'Ryhmät', + 'object_groups_breadcrumb' => 'Ryhmät', + 'object_groups_index' => 'Yleiskatsaus', + 'object_groups' => 'Ryhmät', + 'object_groups_empty_explain' => 'Joitakin asioita Firefly III:ssa voidaan jakaa ryhmiin. Esimerkiksi Säästöpossuilla on kenttä nimeltä "Ryhmä" muokkaa ja luo sivuilla. Kun asetat tälle kentälle arvon, voit muokata ryhmien nimiä ja järjestystä tällä sivulla. Lisätietoja saat tutustumalla ohjeisiin oikean yläkulman (?)-kuvakkeen alla.', + 'object_group_title' => 'Otsikko', + 'edit_object_group' => 'Muokkaa ryhmää ":title"', + 'delete_object_group' => 'Poista ryhmä ":title"', + 'update_object_group' => 'Päivitä ryhmä', + 'updated_object_group' => 'Ryhmän ":title" päivitys onnistui', + 'deleted_object_group' => 'Ryhmän ":title" poistaminen onnistui', + 'object_group' => 'Ryhmä', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/fi_FI/validation.php b/resources/lang/fi_FI/validation.php index 9949ff11fc..3ffdd782a8 100644 --- a/resources/lang/fi_FI/validation.php +++ b/resources/lang/fi_FI/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/fr_FR/firefly.php b/resources/lang/fr_FR/firefly.php index 6277f0940c..002e60e265 100644 --- a/resources/lang/fr_FR/firefly.php +++ b/resources/lang/fr_FR/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Fermer', - 'actions' => 'Actions', - 'edit' => 'Modifier', - 'delete' => 'Supprimer', - 'split' => 'Séparation', - 'single_split' => 'Séparation unique', - 'clone' => 'Cloner', - 'clone_and_edit' => 'Cloner et modifier', - 'confirm_action' => 'Confirmer l\'action', - 'last_seven_days' => '7 Derniers Jours', - 'last_thirty_days' => 'Trente derniers jours', - 'last_180_days' => '180 derniers jours', - 'month_to_date' => 'Ce mois-ci', - 'year_to_date' => 'Année en cours', - 'YTD' => 'Année en cours', - 'welcome_back' => 'Quoi de neuf ?', - 'everything' => 'Tout', - 'today' => 'aujourd\'hui', - 'customRange' => 'Intervalle personnalisé', - 'date_range' => 'Intervalle de dates', - 'apply' => 'Appliquer', - 'select_date' => 'Sélectionner une date...', - 'cancel' => 'Annuler', - 'from' => 'Depuis', - 'to' => 'A', - 'structure' => 'Structure', - 'help_translating' => 'Ce texte d\'aide n\'est pas encore disponible en français. Voulez-vous aider à le traduire ?', - 'showEverything' => 'Tout Afficher', - 'never' => 'Jamais', - 'no_results_for_empty_search' => 'Votre recherche était vide, rien n’a été trouvé.', - 'removed_amount' => 'Supprimé :amount', - 'added_amount' => 'Ajouté :amount', - 'asset_account_role_help' => 'Toutes options supplémentaires résultant de votre choix peuvent être réglées plus tard.', - 'Opening balance' => 'Solde initial', - 'create_new_stuff' => 'Créer de nouvelles choses', - 'new_withdrawal' => 'Nouvelle dépense', - 'create_new_transaction' => 'Créer une nouvelle opération', - 'sidebar_frontpage_create' => 'Créer', - 'new_transaction' => 'Nouvelle opération', - 'no_rules_for_bill' => 'Cette facture n\'a aucune règle associée.', - 'go_to_asset_accounts' => 'Afficher vos comptes d\'actifs', - 'go_to_budgets' => 'Gérer vos budgets', - 'go_to_withdrawals' => 'Accéder à vos retraits', - 'clones_journal_x' => 'Cette opération est un clone de ":description" (#:id)', - 'go_to_categories' => 'Gérer vos catégories', - 'go_to_bills' => 'Gérer vos factures', - 'go_to_expense_accounts' => 'Voir vos comptes de dépenses', - 'go_to_revenue_accounts' => 'Voir vos comptes de revenus', - 'go_to_piggies' => 'Gérer vos tirelires', - 'new_deposit' => 'Nouveau dépôt', - 'new_transfer' => 'Nouveau transfert', - 'new_transfers' => 'Nouveau transfert', - 'new_asset_account' => 'Nouveau compte d’actif', - 'new_expense_account' => 'Nouveau compte de dépenses', - 'new_revenue_account' => 'Nouveau compte de recettes', - 'new_liabilities_account' => 'Nouveau passif', - 'new_budget' => 'Nouveau budget', - 'new_bill' => 'Nouvelle facture', - 'block_account_logout' => 'Vous avez été déconnecté. Les comptes bloqués ne peuvent pas utiliser ce site. Vous êtes-vous enregistré avec une adresse e-mail valide ?', - 'flash_success' => 'Super !', - 'flash_info' => 'Message', - 'flash_warning' => 'Attention !', - 'flash_error' => 'Erreur !', - 'flash_danger' => 'Danger !', - 'flash_info_multiple' => 'Il y a un message| Il y a :count messages', - 'flash_error_multiple' => 'Il y a une erreur|Il y a :count erreurs', - 'net_worth' => 'Avoir net', - 'help_for_this_page' => 'Aide pour cette page', - 'help_for_this_page_body' => 'Vous pouvez trouver plus d\'informations sur cette page dans la documentation.', - 'two_factor_welcome' => 'Bonjour !', - 'two_factor_enter_code' => 'Pour continuer, veuillez entrer votre code d’authentification à deux facteurs. Votre application peut la générer pour vous.', - 'two_factor_code_here' => 'Entrez votre code ici', - 'two_factor_title' => 'Authentification à deux facteurs', - 'authenticate' => 'S\'authentifier', - 'two_factor_forgot_title' => 'Perte de l’authentification à deux facteurs', - 'two_factor_forgot' => 'J’ai oublié mon code d\'identification à deux facteurs.', - 'two_factor_lost_header' => 'Perdu votre authentification à deux facteurs ?', - 'two_factor_lost_intro' => 'Si vous avez aussi perdu vos codes de récupération, vous n\'avez pas de chance. Ce n\'est pas quelque chose que vous pouvez corriger depuis l\'interface web. Vous avez deux choix.', - 'two_factor_lost_fix_self' => 'Si vous utilisez votre propre instance de Firefly III, lisez cette entrée de la FAQ pour obtenir des instructions.', - 'two_factor_lost_fix_owner' => 'Dans le cas contraire, contactez le propriétaire du site par courriel :site_owner et demandez-lui de réinitialiser votre authentification à deux facteurs.', - 'mfa_backup_code' => 'Vous avez utilisé un code de récupération pour vous connecter à Firefly III. Il ne peut être réutilisé, donc rayez-le de votre liste.', - 'pref_two_factor_new_backup_codes' => 'Obtenir de nouveaux codes de récupération', - 'pref_two_factor_backup_code_count' => 'Vous avez :count code de récupération valide.|Vous avez :count codes de récupération valides.', - '2fa_i_have_them' => 'Je les ai enregistrés !', - 'warning_much_data' => ':days jours de données peuvent prendre un certain temps à charger.', - 'registered' => 'Vous avez été enregistré avec succès !', - 'Default asset account' => 'Compte d’actif par défaut', - 'no_budget_pointer' => 'Vous semblez n’avoir encore aucun budget. Vous devriez en créer un sur la page des budgets. Les budgets peuvent vous aider à garder une trace des dépenses.', - 'no_bill_pointer' => 'Vous semblez n\'avoir encore aucune facture. Vous devriez en créer une sur la page factures-. Les factures peuvent vous aider à garder une trace des dépenses.', - 'Savings account' => 'Compte d’épargne', - 'Credit card' => 'Carte de Crédit', - 'source_accounts' => 'Compte source|Comptes source', - 'destination_accounts' => 'Compte de destination|Comptes de destination', - 'user_id_is' => 'Votre identifiant d’utilisateur est :user', - 'field_supports_markdown' => 'Ce champ prend en charge la syntaxe Markdown.', - 'need_more_help' => 'Si vous désirez plus de renseignements sur l\'utilisation de Firefly III, merci d\'ouvrir un ticket sur Github.', - 'reenable_intro_text' => 'Vous pouvez également réactiver le guide d\'introduction.', - 'intro_boxes_after_refresh' => 'Les boîtes d\'introduction réapparaîtront lorsque vous actualiserez la page.', - 'show_all_no_filter' => 'Montrer toutes les opérations sans les classer par date.', - 'expenses_by_category' => 'Dépenses par catégorie', - 'expenses_by_budget' => 'Dépenses par budget', - 'income_by_category' => 'Revenu par catégorie', - 'expenses_by_asset_account' => 'Dépenses par compte d’actif', - 'expenses_by_expense_account' => 'Dépenses par compte de dépenses', - 'cannot_redirect_to_account' => 'Firefly III n\'est pas en mesure de vous rediriger vers la bonne page. Veuillez nous en excuser.', - 'sum_of_expenses' => 'Montant des dépenses', - 'sum_of_income' => 'Montant des revenus', - 'liabilities' => 'Passifs', - 'spent_in_specific_budget' => 'Dépensé dans le budget ":budget"', - 'spent_in_specific_double' => 'Dépensé dans le compte ":account"', - 'earned_in_specific_double' => 'Gagné dans le compte ":account"', - 'source_account' => 'Compte source', - 'source_account_reconciliation' => 'Vous ne pouvez pas modifier le compte source d\'une opération de rapprochement.', - 'destination_account' => 'Compte de destination', - 'destination_account_reconciliation' => 'Vous ne pouvez pas modifier le compte de destination d\'une opération de rapprochement.', - 'sum_of_expenses_in_budget' => 'Total dépensé dans le budget ":budget"', - 'left_in_budget_limit' => 'Reste à dépenser selon budget', - 'current_period' => 'Période en cours', - 'show_the_current_period_and_overview' => 'Afficher l’exercice en cours et sa vue d’ensemble', - 'pref_languages_locale' => 'Pour une langue autre que l’anglais et pour fonctionner correctement, votre système d’exploitation doit être équipé avec les paramètres régionaux corrects. S\'ils ne sont pas présents, les données de devises, les dates et les montants peuvent être mal formatés.', - 'budget_in_period' => "Toutes les opérations pour le budget\u{a0}\":name\" entre\u{a0}:start et\u{a0}:end dans la monnaie :currency", - 'chart_budget_in_period' => 'Graphique pour toutes les opérations pour le budget ":name" entre :start et :end dans :currency', - 'chart_budget_in_period_only_currency' => 'Le montant que vous avez budgété était en :currency, ce graphique ne montrera donc que les opérations en :currency.', - 'chart_account_in_period' => "Graphique pour toutes les opérations pour le compte \":name\" (:balance) entre\u{a0}:start et :end", - 'chart_category_in_period' => "Graphique pour toutes les opérations pour la catégorie \":name\" entre\u{a0}:start et :end", - 'chart_category_all' => 'Graphique pour toutes les opérations pour la catégorie ":name"', - 'clone_withdrawal' => 'Cloner cette dépense', - 'clone_deposit' => 'Cloner ce dépôt', - 'clone_transfer' => 'Cloner ce transfert', - 'multi_select_no_selection' => 'Aucun sélectionné', - 'multi_select_select_all' => 'Tout sélectionner', - 'multi_select_n_selected' => 'sélectionné', - 'multi_select_all_selected' => 'Tous sélectionnés', - 'multi_select_filter_placeholder' => 'Rechercher..', - 'intro_next_label' => 'Suivant', - 'intro_prev_label' => 'Précédent', - 'intro_skip_label' => 'Ignorer', - 'intro_done_label' => 'Terminé', - 'between_dates_breadcrumb' => "Entre\u{a0}:start et\u{a0}:end", - 'all_journals_without_budget' => 'Toutes les opérations sans budget', - 'journals_without_budget' => 'Opérations sans budget', - 'all_journals_without_category' => 'Toutes les opérations sans catégorie', - 'journals_without_category' => 'Opérations sans catégorie', - 'all_journals_for_account' => "Toutes les opérations pour le compte\u{a0}:name", - 'chart_all_journals_for_account' => "Tableau de toutes les opérations pour le compte\u{a0}:name", - 'journals_in_period_for_account' => "Toutes les opérations pour le compte\u{a0}:name entre\u{a0}:start et\u{a0}:end", - 'journals_in_period_for_account_js' => 'Toutes les opérations pour le compte {title} entre {start} et {end}', - 'transferred' => 'Transféré', - 'all_withdrawal' => 'Toutes les dépenses', - 'all_transactions' => 'Toutes les opérations', - 'title_withdrawal_between' => "Toutes les dépenses entre\u{a0}:start et\u{a0}:end", - 'all_deposit' => 'Toutes les recettes', - 'title_deposit_between' => "Toutes les recettes entre\u{a0}:start et\u{a0}:end", - 'all_transfers' => 'Tous les transferts', - 'title_transfers_between' => "Tous les transferts entre\u{a0}:start et\u{a0}:end", - 'all_transfer' => 'Tous les transferts', - 'all_journals_for_tag' => 'Toutes les opérations pour le tag ":tag"', - 'title_transfer_between' => "Tous les transferts entre\u{a0}:start et\u{a0}:end", - 'all_journals_for_category' => "Toutes les opérations pour la catégorie\u{a0}:name", - 'all_journals_for_budget' => "Toutes les opérations pour le budget\u{a0}:name", - 'chart_all_journals_for_budget' => 'Graphique pour toutes les opérations pour le budget :name', - 'journals_in_period_for_category' => "Toutes les opérations pour la catégorie\u{a0}:name entre\u{a0}:start et\u{a0}:end", - 'journals_in_period_for_tag' => "Toutes les opérations de tag\u{a0}:tag entre\u{a0}:start et\u{a0}:end", - 'not_available_demo_user' => 'La fonctionnalité à laquelle vous essayez d’accéder n’est pas disponible pour les utilisateurs de la démo.', - 'exchange_rate_instructions' => "Le compte d’actif \"@name\" n’accepte que les opérations en @native_currency. Si vous souhaitez utiliser @foreign_currency à la place, assurez-vous que le montant en @native_currency est aussi bien connu\u{a0}:", - 'transfer_exchange_rate_instructions' => 'Compte d’actif source "@source_name" n’accepte que les opérations en @source_currency. Compte d’actif "@dest_name" de destination n’accepte que les opérations en @dest_currency. Vous devez fournir le montant transféré correctement dans les deux devises.', - 'transaction_data' => 'Données d\'opération', - 'invalid_server_configuration' => 'Configuration de serveur invalide', - 'invalid_locale_settings' => 'Firefly III ne parvient pas à formater les montants monétaires car il manque des paquets logiciels sur votre serveur. Voici des instructions sur comment procéder.', - 'quickswitch' => 'Changement rapide', - 'sign_in_to_start' => 'Identifiez-vous pour commencer votre session', - 'sign_in' => 'S\'identifier', - 'register_new_account' => 'Créer un nouveau compte', - 'forgot_my_password' => 'J\'ai oublié mon mot de passe', - 'problems_with_input' => 'Il y a eu quelques problèmes avec votre saisie.', - 'reset_password' => 'Réinitialisez votre mot de passe', - 'button_reset_password' => 'Réinitialiser le mot de passe', - 'reset_button' => 'Réinitialiser', - 'want_to_login' => 'Je veux me connecter', - 'login_page_title' => 'Connectez-vous à Firefly III', - 'register_page_title' => 'Enregistrez-vous à Firefly III', - 'forgot_pw_page_title' => 'Mot de passe Firefly III oublié', - 'reset_pw_page_title' => 'Réinitialiser votre mot de passe Firefly III', - 'cannot_reset_demo_user' => 'Vous ne pouvez pas réinitialiser le mot de passe de l\'utilisateur de démonstration.', - 'no_att_demo_user' => 'L\'utilisateur de la démo ne peut pas envoyer de pièces jointes.', - 'button_register' => 'S\'inscrire', - 'authorization' => 'Autorisation', - 'active_bills_only' => 'factures actives seulement', - 'active_bills_only_total' => 'toutes les factures actives', - 'active_exp_bills_only' => 'uniquement les factures actives et attendues', - 'active_exp_bills_only_total' => 'uniquement les factures actives et attendues', - 'per_period_sum_1D' => 'Coûts journaliers attendus', - 'per_period_sum_1W' => 'Coûts hebdomadaires attendus', - 'per_period_sum_1M' => 'Coûts mensuels attendus', - 'per_period_sum_3M' => 'Coûts trimestriels attendus', - 'per_period_sum_6M' => 'Coûts semestriels attendus', - 'per_period_sum_1Y' => 'Coûts annuels attendus', - 'average_per_bill' => 'moyenne par facture', - 'expected_total' => 'total prévu', - 'reconciliation_account_name' => 'Régularisation de :name (:currency)', - 'saved' => 'Sauvegardé', - 'advanced_options' => 'Options avancées', - 'advanced_options_explain' => 'Certaines pages de Firefly III ont des options avancées cachées derrière ce bouton. Cette page n\'a rien de bien utile ici, mais regardez les autres !', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Fermer', + 'actions' => 'Actions', + 'edit' => 'Modifier', + 'delete' => 'Supprimer', + 'split' => 'Séparation', + 'single_split' => 'Séparation unique', + 'clone' => 'Cloner', + 'clone_and_edit' => 'Cloner et modifier', + 'confirm_action' => 'Confirmer l\'action', + 'last_seven_days' => '7 Derniers Jours', + 'last_thirty_days' => 'Trente derniers jours', + 'last_180_days' => '180 derniers jours', + 'month_to_date' => 'Ce mois-ci', + 'year_to_date' => 'Année en cours', + 'YTD' => 'Année en cours', + 'welcome_back' => 'Quoi de neuf ?', + 'everything' => 'Tout', + 'today' => 'aujourd\'hui', + 'customRange' => 'Intervalle personnalisé', + 'date_range' => 'Intervalle de dates', + 'apply' => 'Appliquer', + 'select_date' => 'Sélectionner une date...', + 'cancel' => 'Annuler', + 'from' => 'Depuis', + 'to' => 'A', + 'structure' => 'Structure', + 'help_translating' => 'Ce texte d\'aide n\'est pas encore disponible en français. Voulez-vous aider à le traduire ?', + 'showEverything' => 'Tout Afficher', + 'never' => 'Jamais', + 'no_results_for_empty_search' => 'Votre recherche était vide, rien n’a été trouvé.', + 'removed_amount' => 'Supprimé :amount', + 'added_amount' => 'Ajouté :amount', + 'asset_account_role_help' => 'Toutes options supplémentaires résultant de votre choix peuvent être réglées plus tard.', + 'Opening balance' => 'Solde initial', + 'create_new_stuff' => 'Créer de nouvelles choses', + 'new_withdrawal' => 'Nouvelle dépense', + 'create_new_transaction' => 'Créer une nouvelle opération', + 'sidebar_frontpage_create' => 'Créer', + 'new_transaction' => 'Nouvelle opération', + 'no_rules_for_bill' => 'Cette facture n\'a aucune règle associée.', + 'go_to_asset_accounts' => 'Afficher vos comptes d\'actifs', + 'go_to_budgets' => 'Gérer vos budgets', + 'go_to_withdrawals' => 'Accéder à vos retraits', + 'clones_journal_x' => 'Cette opération est un clone de ":description" (#:id)', + 'go_to_categories' => 'Gérer vos catégories', + 'go_to_bills' => 'Gérer vos factures', + 'go_to_expense_accounts' => 'Voir vos comptes de dépenses', + 'go_to_revenue_accounts' => 'Voir vos comptes de revenus', + 'go_to_piggies' => 'Gérer vos tirelires', + 'new_deposit' => 'Nouveau dépôt', + 'new_transfer' => 'Nouveau transfert', + 'new_transfers' => 'Nouveau transfert', + 'new_asset_account' => 'Nouveau compte d’actif', + 'new_expense_account' => 'Nouveau compte de dépenses', + 'new_revenue_account' => 'Nouveau compte de recettes', + 'new_liabilities_account' => 'Nouveau passif', + 'new_budget' => 'Nouveau budget', + 'new_bill' => 'Nouvelle facture', + 'block_account_logout' => 'Vous avez été déconnecté. Les comptes bloqués ne peuvent pas utiliser ce site. Vous êtes-vous enregistré avec une adresse e-mail valide ?', + 'flash_success' => 'Super !', + 'flash_info' => 'Message', + 'flash_warning' => 'Attention !', + 'flash_error' => 'Erreur !', + 'flash_danger' => 'Danger !', + 'flash_info_multiple' => 'Il y a un message| Il y a :count messages', + 'flash_error_multiple' => 'Il y a une erreur|Il y a :count erreurs', + 'net_worth' => 'Avoir net', + 'help_for_this_page' => 'Aide pour cette page', + 'help_for_this_page_body' => 'Vous pouvez trouver plus d\'informations sur cette page dans la documentation.', + 'two_factor_welcome' => 'Bonjour !', + 'two_factor_enter_code' => 'Pour continuer, veuillez entrer votre code d’authentification à deux facteurs. Votre application peut la générer pour vous.', + 'two_factor_code_here' => 'Entrez votre code ici', + 'two_factor_title' => 'Authentification à deux facteurs', + 'authenticate' => 'S\'authentifier', + 'two_factor_forgot_title' => 'Perte de l’authentification à deux facteurs', + 'two_factor_forgot' => 'J’ai oublié mon code d\'identification à deux facteurs.', + 'two_factor_lost_header' => 'Perdu votre authentification à deux facteurs ?', + 'two_factor_lost_intro' => 'Si vous avez aussi perdu vos codes de récupération, vous n\'avez pas de chance. Ce n\'est pas quelque chose que vous pouvez corriger depuis l\'interface web. Vous avez deux choix.', + 'two_factor_lost_fix_self' => 'Si vous utilisez votre propre instance de Firefly III, lisez cette entrée de la FAQ pour obtenir des instructions.', + 'two_factor_lost_fix_owner' => 'Dans le cas contraire, contactez le propriétaire du site par courriel :site_owner et demandez-lui de réinitialiser votre authentification à deux facteurs.', + 'mfa_backup_code' => 'Vous avez utilisé un code de récupération pour vous connecter à Firefly III. Il ne peut être réutilisé, donc rayez-le de votre liste.', + 'pref_two_factor_new_backup_codes' => 'Obtenir de nouveaux codes de récupération', + 'pref_two_factor_backup_code_count' => 'Vous avez :count code de récupération valide.|Vous avez :count codes de récupération valides.', + '2fa_i_have_them' => 'Je les ai enregistrés !', + 'warning_much_data' => ':days jours de données peuvent prendre un certain temps à charger.', + 'registered' => 'Vous avez été enregistré avec succès !', + 'Default asset account' => 'Compte d’actif par défaut', + 'no_budget_pointer' => 'Vous semblez n’avoir encore aucun budget. Vous devriez en créer un sur la page des budgets. Les budgets peuvent vous aider à garder une trace des dépenses.', + 'no_bill_pointer' => 'Vous semblez n\'avoir encore aucune facture. Vous devriez en créer une sur la page factures-. Les factures peuvent vous aider à garder une trace des dépenses.', + 'Savings account' => 'Compte d’épargne', + 'Credit card' => 'Carte de Crédit', + 'source_accounts' => 'Compte source|Comptes source', + 'destination_accounts' => 'Compte de destination|Comptes de destination', + 'user_id_is' => 'Votre identifiant d’utilisateur est :user', + 'field_supports_markdown' => 'Ce champ prend en charge la syntaxe Markdown.', + 'need_more_help' => 'Si vous désirez plus de renseignements sur l\'utilisation de Firefly III, merci d\'ouvrir un ticket sur Github.', + 'reenable_intro_text' => 'Vous pouvez également réactiver le guide d\'introduction.', + 'intro_boxes_after_refresh' => 'Les boîtes d\'introduction réapparaîtront lorsque vous actualiserez la page.', + 'show_all_no_filter' => 'Montrer toutes les opérations sans les classer par date.', + 'expenses_by_category' => 'Dépenses par catégorie', + 'expenses_by_budget' => 'Dépenses par budget', + 'income_by_category' => 'Revenu par catégorie', + 'expenses_by_asset_account' => 'Dépenses par compte d’actif', + 'expenses_by_expense_account' => 'Dépenses par compte de dépenses', + 'cannot_redirect_to_account' => 'Firefly III n\'est pas en mesure de vous rediriger vers la bonne page. Veuillez nous en excuser.', + 'sum_of_expenses' => 'Montant des dépenses', + 'sum_of_income' => 'Montant des revenus', + 'liabilities' => 'Passifs', + 'spent_in_specific_budget' => 'Dépensé dans le budget ":budget"', + 'spent_in_specific_double' => 'Dépensé dans le compte ":account"', + 'earned_in_specific_double' => 'Gagné dans le compte ":account"', + 'source_account' => 'Compte source', + 'source_account_reconciliation' => 'Vous ne pouvez pas modifier le compte source d\'une opération de rapprochement.', + 'destination_account' => 'Compte de destination', + 'destination_account_reconciliation' => 'Vous ne pouvez pas modifier le compte de destination d\'une opération de rapprochement.', + 'sum_of_expenses_in_budget' => 'Total dépensé dans le budget ":budget"', + 'left_in_budget_limit' => 'Reste à dépenser selon budget', + 'current_period' => 'Période en cours', + 'show_the_current_period_and_overview' => 'Afficher l’exercice en cours et sa vue d’ensemble', + 'pref_languages_locale' => 'Pour une langue autre que l’anglais et pour fonctionner correctement, votre système d’exploitation doit être équipé avec les paramètres régionaux corrects. S\'ils ne sont pas présents, les données de devises, les dates et les montants peuvent être mal formatés.', + 'budget_in_period' => "Toutes les opérations pour le budget\u{a0}\":name\" entre\u{a0}:start et\u{a0}:end dans la monnaie :currency", + 'chart_budget_in_period' => 'Graphique pour toutes les opérations pour le budget ":name" entre :start et :end dans :currency', + 'chart_budget_in_period_only_currency' => 'Le montant que vous avez budgété était en :currency, ce graphique ne montrera donc que les opérations en :currency.', + 'chart_account_in_period' => "Graphique pour toutes les opérations pour le compte \":name\" (:balance) entre\u{a0}:start et :end", + 'chart_category_in_period' => "Graphique pour toutes les opérations pour la catégorie \":name\" entre\u{a0}:start et :end", + 'chart_category_all' => 'Graphique pour toutes les opérations pour la catégorie ":name"', + 'clone_withdrawal' => 'Cloner cette dépense', + 'clone_deposit' => 'Cloner ce dépôt', + 'clone_transfer' => 'Cloner ce transfert', + 'multi_select_no_selection' => 'Aucun sélectionné', + 'multi_select_select_all' => 'Tout sélectionner', + 'multi_select_n_selected' => 'sélectionné', + 'multi_select_all_selected' => 'Tous sélectionnés', + 'multi_select_filter_placeholder' => 'Rechercher..', + 'intro_next_label' => 'Suivant', + 'intro_prev_label' => 'Précédent', + 'intro_skip_label' => 'Ignorer', + 'intro_done_label' => 'Terminé', + 'between_dates_breadcrumb' => "Entre\u{a0}:start et\u{a0}:end", + 'all_journals_without_budget' => 'Toutes les opérations sans budget', + 'journals_without_budget' => 'Opérations sans budget', + 'all_journals_without_category' => 'Toutes les opérations sans catégorie', + 'journals_without_category' => 'Opérations sans catégorie', + 'all_journals_for_account' => "Toutes les opérations pour le compte\u{a0}:name", + 'chart_all_journals_for_account' => "Tableau de toutes les opérations pour le compte\u{a0}:name", + 'journals_in_period_for_account' => "Toutes les opérations pour le compte\u{a0}:name entre\u{a0}:start et\u{a0}:end", + 'journals_in_period_for_account_js' => 'Toutes les opérations pour le compte {title} entre {start} et {end}', + 'transferred' => 'Transféré', + 'all_withdrawal' => 'Toutes les dépenses', + 'all_transactions' => 'Toutes les opérations', + 'title_withdrawal_between' => "Toutes les dépenses entre\u{a0}:start et\u{a0}:end", + 'all_deposit' => 'Toutes les recettes', + 'title_deposit_between' => "Toutes les recettes entre\u{a0}:start et\u{a0}:end", + 'all_transfers' => 'Tous les transferts', + 'title_transfers_between' => "Tous les transferts entre\u{a0}:start et\u{a0}:end", + 'all_transfer' => 'Tous les transferts', + 'all_journals_for_tag' => 'Toutes les opérations pour le tag ":tag"', + 'title_transfer_between' => "Tous les transferts entre\u{a0}:start et\u{a0}:end", + 'all_journals_for_category' => "Toutes les opérations pour la catégorie\u{a0}:name", + 'all_journals_for_budget' => "Toutes les opérations pour le budget\u{a0}:name", + 'chart_all_journals_for_budget' => 'Graphique pour toutes les opérations pour le budget :name', + 'journals_in_period_for_category' => "Toutes les opérations pour la catégorie\u{a0}:name entre\u{a0}:start et\u{a0}:end", + 'journals_in_period_for_tag' => "Toutes les opérations de tag\u{a0}:tag entre\u{a0}:start et\u{a0}:end", + 'not_available_demo_user' => 'La fonctionnalité à laquelle vous essayez d’accéder n’est pas disponible pour les utilisateurs de la démo.', + 'exchange_rate_instructions' => "Le compte d’actif \"@name\" n’accepte que les opérations en @native_currency. Si vous souhaitez utiliser @foreign_currency à la place, assurez-vous que le montant en @native_currency est aussi bien connu\u{a0}:", + 'transfer_exchange_rate_instructions' => 'Compte d’actif source "@source_name" n’accepte que les opérations en @source_currency. Compte d’actif "@dest_name" de destination n’accepte que les opérations en @dest_currency. Vous devez fournir le montant transféré correctement dans les deux devises.', + 'transaction_data' => 'Données d\'opération', + 'invalid_server_configuration' => 'Configuration de serveur invalide', + 'invalid_locale_settings' => 'Firefly III ne parvient pas à formater les montants monétaires car il manque des paquets logiciels sur votre serveur. Voici des instructions sur comment procéder.', + 'quickswitch' => 'Changement rapide', + 'sign_in_to_start' => 'Identifiez-vous pour commencer votre session', + 'sign_in' => 'S\'identifier', + 'register_new_account' => 'Créer un nouveau compte', + 'forgot_my_password' => 'J\'ai oublié mon mot de passe', + 'problems_with_input' => 'Il y a eu quelques problèmes avec votre saisie.', + 'reset_password' => 'Réinitialisez votre mot de passe', + 'button_reset_password' => 'Réinitialiser le mot de passe', + 'reset_button' => 'Réinitialiser', + 'want_to_login' => 'Je veux me connecter', + 'login_page_title' => 'Connectez-vous à Firefly III', + 'register_page_title' => 'Enregistrez-vous à Firefly III', + 'forgot_pw_page_title' => 'Mot de passe Firefly III oublié', + 'reset_pw_page_title' => 'Réinitialiser votre mot de passe Firefly III', + 'cannot_reset_demo_user' => 'Vous ne pouvez pas réinitialiser le mot de passe de l\'utilisateur de démonstration.', + 'no_att_demo_user' => 'L\'utilisateur de la démo ne peut pas envoyer de pièces jointes.', + 'button_register' => 'S\'inscrire', + 'authorization' => 'Autorisation', + 'active_bills_only' => 'factures actives seulement', + 'active_bills_only_total' => 'toutes les factures actives', + 'active_exp_bills_only' => 'uniquement les factures actives et attendues', + 'active_exp_bills_only_total' => 'uniquement les factures actives et attendues', + 'per_period_sum_1D' => 'Coûts journaliers attendus', + 'per_period_sum_1W' => 'Coûts hebdomadaires attendus', + 'per_period_sum_1M' => 'Coûts mensuels attendus', + 'per_period_sum_3M' => 'Coûts trimestriels attendus', + 'per_period_sum_6M' => 'Coûts semestriels attendus', + 'per_period_sum_1Y' => 'Coûts annuels attendus', + 'average_per_bill' => 'moyenne par facture', + 'expected_total' => 'total prévu', + 'reconciliation_account_name' => 'Régularisation de :name (:currency)', + 'saved' => 'Sauvegardé', + 'advanced_options' => 'Options avancées', + 'advanced_options_explain' => 'Certaines pages de Firefly III ont des options avancées cachées derrière ce bouton. Cette page n\'a rien de bien utile ici, mais regardez les autres !', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'désactivé', - 'no_webhook_messages' => 'Il n\'y a pas de messages webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Après la création de l\'opération', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Après la mise à jour de l\'opération', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Après la suppression de l\'opération', - 'webhook_response_TRANSACTIONS' => 'Détails de l\'opération', - 'webhook_response_ACCOUNTS' => 'Détails du compte', - 'webhook_response_none_NONE' => 'Aucun détail', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspecter', - 'create_new_webhook' => 'Créer un nouveau webhook', - 'webhooks_create_breadcrumb' => 'Créer un nouveau webhook', - 'webhook_trigger_form_help' => 'Indique sur quel événement le webhook va se déclencher', - 'webhook_response_form_help' => 'Indiquer ce que le webhook doit envoyer à l\'URL.', - 'webhook_delivery_form_help' => 'Le format dans lequel le webhook doit fournir des données.', - 'webhook_active_form_help' => 'Le webhook doit être actif, sinon il ne sera pas appelé.', - 'stored_new_webhook' => 'Nouveau webhook ":title " sauvegardé', - 'delete_webhook' => 'Supprimer le webhook', - 'deleted_webhook' => 'Webhook ":title" supprimé', - 'edit_webhook' => 'Modifier le webhook ":title"', - 'updated_webhook' => 'Webhook ":title" mis à jour', - 'edit_webhook_js' => 'Modifier le webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Le webhook a été déclenché sur l\'opération indiquée. Veuillez attendre que les résultats apparaissent.', - 'webhook_messages' => 'Message webhook', - 'view_message' => 'Afficher le message', - 'view_attempts' => 'Voir les tentatives échouées', - 'message_content_title' => 'Contenu du message webhook', - 'message_content_help' => 'Il s\'agit du contenu du message qui a été envoyé (ou essayé) avec ce webhook.', - 'attempt_content_title' => 'Tentatives de webhook', - 'attempt_content_help' => 'Ce sont toutes les tentatives infructueuses de ce message webhook à envoyer à l\'URL configurée. Après un certain temps, Firefly III cessera d\'essayer.', - 'no_attempts' => 'Il n\'y a pas de tentatives infructueuses. C\'est une bonne chose !', - 'webhook_attempt_at' => 'Tentative à {moment}', - 'logs' => 'Journaux', - 'response' => 'Réponse', - 'visit_webhook_url' => 'Visiter l\'URL du webhook', - 'reset_webhook_secret' => 'Réinitialiser le secret du webhook', - 'webhook_stored_link' => 'Le Webhook #{ID} ("{title}") a été enregistré.', - 'webhook_updated_link' => 'Le webhook #{ID} ("{title}") a été mis à jour.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'désactivé', + 'no_webhook_messages' => 'Il n\'y a pas de messages webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Après la création de l\'opération', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Après la mise à jour de l\'opération', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Après la suppression de l\'opération', + 'webhook_response_TRANSACTIONS' => 'Détails de l\'opération', + 'webhook_response_ACCOUNTS' => 'Détails du compte', + 'webhook_response_none_NONE' => 'Aucun détail', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspecter', + 'create_new_webhook' => 'Créer un nouveau webhook', + 'webhooks_create_breadcrumb' => 'Créer un nouveau webhook', + 'webhook_trigger_form_help' => 'Indique sur quel événement le webhook va se déclencher', + 'webhook_response_form_help' => 'Indiquer ce que le webhook doit envoyer à l\'URL.', + 'webhook_delivery_form_help' => 'Le format dans lequel le webhook doit fournir des données.', + 'webhook_active_form_help' => 'Le webhook doit être actif, sinon il ne sera pas appelé.', + 'stored_new_webhook' => 'Nouveau webhook ":title " sauvegardé', + 'delete_webhook' => 'Supprimer le webhook', + 'deleted_webhook' => 'Webhook ":title" supprimé', + 'edit_webhook' => 'Modifier le webhook ":title"', + 'updated_webhook' => 'Webhook ":title" mis à jour', + 'edit_webhook_js' => 'Modifier le webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Le webhook a été déclenché sur l\'opération indiquée. Veuillez attendre que les résultats apparaissent.', + 'webhook_messages' => 'Message webhook', + 'view_message' => 'Afficher le message', + 'view_attempts' => 'Voir les tentatives échouées', + 'message_content_title' => 'Contenu du message webhook', + 'message_content_help' => 'Il s\'agit du contenu du message qui a été envoyé (ou essayé) avec ce webhook.', + 'attempt_content_title' => 'Tentatives de webhook', + 'attempt_content_help' => 'Ce sont toutes les tentatives infructueuses de ce message webhook à envoyer à l\'URL configurée. Après un certain temps, Firefly III cessera d\'essayer.', + 'no_attempts' => 'Il n\'y a pas de tentatives infructueuses. C\'est une bonne chose !', + 'webhook_attempt_at' => 'Tentative à {moment}', + 'logs' => 'Journaux', + 'response' => 'Réponse', + 'visit_webhook_url' => 'Visiter l\'URL du webhook', + 'reset_webhook_secret' => 'Réinitialiser le secret du webhook', + 'webhook_stored_link' => 'Le Webhook #{ID} ("{title}") a été enregistré.', + 'webhook_updated_link' => 'Le webhook #{ID} ("{title}") a été mis à jour.', // API access - 'authorization_request' => 'Firefly III v:version demande d\'autorisation', - 'authorization_request_intro' => 'L\'application ":client" demande l\'autorisation d\'accéder à votre administration financière. Voulez-vous autoriser :client à accéder à ces enregistrements ?', - 'authorization_request_site' => 'Vous allez être redirigé vers :url qui pourra ensuite accéder à vos données Firefly III.', - 'authorization_request_invalid' => 'Cette demande d\'accès n\'est pas valide. Veuillez ne plus suivre ce lien.', - 'scopes_will_be_able' => 'Cette application pourra :', - 'button_authorize' => 'Autoriser', - 'none_in_select_list' => '(aucun)', - 'no_piggy_bank' => '(aucune tirelire)', - 'name_in_currency' => ':name en :currency', - 'paid_in_currency' => 'Payé en :currency', - 'unpaid_in_currency' => 'Non payé en :currency', - 'is_alpha_warning' => 'Vous utilisez une version ALPHA. Méfiez-vous des bogues et des problèmes.', - 'is_beta_warning' => 'Vous utilisez une version BETA. Méfiez-vous des bogues et des problèmes.', - 'all_destination_accounts' => 'Comptes de destination', - 'all_source_accounts' => 'Comptes source', - 'back_to_index' => 'Retour à l\'accueil', - 'cant_logout_guard' => 'Firefly III ne peut pas vous déconnecter.', - 'internal_reference' => 'Référence interne', + 'authorization_request' => 'Firefly III v:version demande d\'autorisation', + 'authorization_request_intro' => 'L\'application ":client" demande l\'autorisation d\'accéder à votre administration financière. Voulez-vous autoriser :client à accéder à ces enregistrements ?', + 'authorization_request_site' => 'Vous allez être redirigé vers :url qui pourra ensuite accéder à vos données Firefly III.', + 'authorization_request_invalid' => 'Cette demande d\'accès n\'est pas valide. Veuillez ne plus suivre ce lien.', + 'scopes_will_be_able' => 'Cette application pourra :', + 'button_authorize' => 'Autoriser', + 'none_in_select_list' => '(aucun)', + 'no_piggy_bank' => '(aucune tirelire)', + 'name_in_currency' => ':name en :currency', + 'paid_in_currency' => 'Payé en :currency', + 'unpaid_in_currency' => 'Non payé en :currency', + 'is_alpha_warning' => 'Vous utilisez une version ALPHA. Méfiez-vous des bogues et des problèmes.', + 'is_beta_warning' => 'Vous utilisez une version BETA. Méfiez-vous des bogues et des problèmes.', + 'all_destination_accounts' => 'Comptes de destination', + 'all_source_accounts' => 'Comptes source', + 'back_to_index' => 'Retour à l\'accueil', + 'cant_logout_guard' => 'Firefly III ne peut pas vous déconnecter.', + 'internal_reference' => 'Référence interne', // check for updates: - 'update_check_title' => 'Vérifier les mises à jour', - 'admin_update_check_title' => 'Rechercher automatiquement les mises à jour', - 'admin_update_check_explain' => 'Firefly III peut vérifier les mises à jour automatiquement. Lorsque vous activez ce paramètre, il contacte le serveur de mise à jour de Firefly III pour voir si une nouvelle version de Firefly III est disponible. Quand c\'est le cas, vous recevrez une notification. Vous pouvez tester cette notification en utilisant le bouton sur la droite. Veuillez indiquer ci-dessous si vous voulez que Firefly III vérifie les mises à jour.', - 'check_for_updates_permission' => 'Firefly III peut vérifier les mises à jour, mais il a besoin de votre permission pour le faire. Veuillez vous rendre à l\'adresse administration pour indiquer si vous souhaitez que cette fonctionnalité soit activée.', - 'updates_ask_me_later' => 'Me demander plus tard', - 'updates_do_not_check' => 'Ne pas vérifier les mises à jour', - 'updates_enable_check' => 'Activer la vérification des mises à jour', - 'admin_update_check_now_title' => 'Vérifier les mises à jour maintenant', - 'admin_update_check_now_explain' => 'Si vous appuyez sur le bouton, Firefly III verra si votre version actuelle est la dernière.', - 'check_for_updates_button' => 'Vérifier maintenant !', - 'update_new_version_alert' => 'Une nouvelle version de Firefly III est disponible. Vous utilisez v:your_version. La dernière version v:new_version a été publiée le :date.', - 'update_version_beta' => 'Cette version est une version BETA. Vous pouvez rencontrer des problèmes.', - 'update_version_alpha' => 'Cette version est une version ALPHA. Vous pourriez rencontrer des problèmes.', - 'update_current_dev_older' => 'Vous utilisez la version de développement ":version", qui est plus ancienne que la dernière version :new_version. Veuillez la mettre à jour !', - 'update_current_dev_newer' => 'Vous utilisez la version de développement ":version", qui est plus récente que la dernière version :new_version.', - 'update_current_version_alert' => 'Vous utilisez v:version, la dernière version disponible.', - 'update_newer_version_alert' => 'Vous utilisez v:your_version, qui est plus récente que la dernière version, v:new_version.', - 'update_check_error' => 'Une erreur est survenue lors de la vérification d\'une mise à jour : :error', - 'unknown_error' => 'Erreur inconnue. Désolé.', - 'disabled_but_check' => 'Vous avez désactivé la vérification des mises à jour. N\'oubliez donc pas de vérifier vous-même les mises à jour de temps en temps. Merci !', - 'admin_update_channel_title' => 'Canal de mise à jour', - 'admin_update_channel_explain' => 'Firefly III dispose de trois canaux de mise à jour qui déterminent ce que vous êtes prêt à accepter en termes de fonctionnalités, d\'améliorations et de bogues. Utilisez le canal « bêta » si vous êtes aventurier et le « alpha » lorsque vous aimez vivre dangereusement.', - 'update_channel_stable' => 'Stable. Tout devrait fonctionner comme prévu.', - 'update_channel_beta' => 'Bêta. De nouvelles fonctionnalités sont présentes, mais il peut exister des régressions.', - 'update_channel_alpha' => 'Alpha. Nous essayons des choses et gardons ce qui fonctionne.', + 'update_check_title' => 'Vérifier les mises à jour', + 'admin_update_check_title' => 'Rechercher automatiquement les mises à jour', + 'admin_update_check_explain' => 'Firefly III peut vérifier les mises à jour automatiquement. Lorsque vous activez ce paramètre, il contacte le serveur de mise à jour de Firefly III pour voir si une nouvelle version de Firefly III est disponible. Quand c\'est le cas, vous recevrez une notification. Vous pouvez tester cette notification en utilisant le bouton sur la droite. Veuillez indiquer ci-dessous si vous voulez que Firefly III vérifie les mises à jour.', + 'check_for_updates_permission' => 'Firefly III peut vérifier les mises à jour, mais il a besoin de votre permission pour le faire. Veuillez vous rendre à l\'adresse administration pour indiquer si vous souhaitez que cette fonctionnalité soit activée.', + 'updates_ask_me_later' => 'Me demander plus tard', + 'updates_do_not_check' => 'Ne pas vérifier les mises à jour', + 'updates_enable_check' => 'Activer la vérification des mises à jour', + 'admin_update_check_now_title' => 'Vérifier les mises à jour maintenant', + 'admin_update_check_now_explain' => 'Si vous appuyez sur le bouton, Firefly III verra si votre version actuelle est la dernière.', + 'check_for_updates_button' => 'Vérifier maintenant !', + 'update_new_version_alert' => 'Une nouvelle version de Firefly III est disponible. Vous utilisez v:your_version. La dernière version v:new_version a été publiée le :date.', + 'update_version_beta' => 'Cette version est une version BETA. Vous pouvez rencontrer des problèmes.', + 'update_version_alpha' => 'Cette version est une version ALPHA. Vous pourriez rencontrer des problèmes.', + 'update_current_dev_older' => 'Vous utilisez la version de développement ":version", qui est plus ancienne que la dernière version :new_version. Veuillez la mettre à jour !', + 'update_current_dev_newer' => 'Vous utilisez la version de développement ":version", qui est plus récente que la dernière version :new_version.', + 'update_current_version_alert' => 'Vous utilisez v:version, la dernière version disponible.', + 'update_newer_version_alert' => 'Vous utilisez v:your_version, qui est plus récente que la dernière version, v:new_version.', + 'update_check_error' => 'Une erreur est survenue lors de la vérification d\'une mise à jour : :error', + 'unknown_error' => 'Erreur inconnue. Désolé.', + 'disabled_but_check' => 'Vous avez désactivé la vérification des mises à jour. N\'oubliez donc pas de vérifier vous-même les mises à jour de temps en temps. Merci !', + 'admin_update_channel_title' => 'Canal de mise à jour', + 'admin_update_channel_explain' => 'Firefly III dispose de trois canaux de mise à jour qui déterminent ce que vous êtes prêt à accepter en termes de fonctionnalités, d\'améliorations et de bogues. Utilisez le canal « bêta » si vous êtes aventurier et le « alpha » lorsque vous aimez vivre dangereusement.', + 'update_channel_stable' => 'Stable. Tout devrait fonctionner comme prévu.', + 'update_channel_beta' => 'Bêta. De nouvelles fonctionnalités sont présentes, mais il peut exister des régressions.', + 'update_channel_alpha' => 'Alpha. Nous essayons des choses et gardons ce qui fonctionne.', // search - 'search' => 'Rechercher', - 'search_query' => 'Requête', - 'search_found_transactions' => 'Firefly III a trouvé :count opération en :time secondes.|Firefly III a trouvé :count opérations en :time secondes.', - 'search_found_more_transactions' => 'Firefly III a trouvé plus de :count transactions en :time secondes.', - 'search_for_query' => 'Firefly III recherche des opérations contenant tous ces mots : :query', - 'invalid_operators_list' => 'Ces paramètres de recherche ne sont pas valides et ont été ignorés.', + 'search' => 'Rechercher', + 'search_query' => 'Requête', + 'search_found_transactions' => 'Firefly III a trouvé :count opération en :time secondes.|Firefly III a trouvé :count opérations en :time secondes.', + 'search_found_more_transactions' => 'Firefly III a trouvé plus de :count transactions en :time secondes.', + 'search_for_query' => 'Firefly III recherche des opérations contenant tous ces mots : :query', + 'invalid_operators_list' => 'Ces paramètres de recherche ne sont pas valides et ont été ignorés.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'La date de l\'opération est ":value"', - 'search_modifier_not_date_on' => 'La date de l\'opération n\'est pas ":value"', - 'search_modifier_reconciled' => 'L\'opération est rapprochée', - 'search_modifier_not_reconciled' => 'L\'opération n\'est pas rapprochée', - 'search_modifier_id' => 'L\'ID de l\'opération est ":value"', - 'search_modifier_not_id' => 'L\'ID de l\'opération n\'est pas ":value"', - 'search_modifier_date_before' => 'La date de l\'opération est avant ou le ":value"', - 'search_modifier_date_after' => 'La date de l\'opération est après ou le ":value"', - 'search_modifier_external_id_is' => 'L\'ID externe est ":value"', - 'search_modifier_not_external_id_is' => 'L\'ID externe n\'est pas ":value"', - 'search_modifier_no_external_url' => 'L\'opération n\'a pas d\'URL externe', - 'search_modifier_no_external_id' => 'L\'opération n\'a pas d\'ID externe', - 'search_modifier_not_any_external_url' => 'L\'opération n\'a pas d\'URL externe', - 'search_modifier_not_any_external_id' => 'L\'opération n\'a pas d\'ID externe', - 'search_modifier_any_external_url' => 'L\'opération doit avoir une URL externe', - 'search_modifier_any_external_id' => 'L\'opération doit avoir un ID externe (n\'importe lequel)', - 'search_modifier_not_no_external_url' => 'L\'opération doit avoir une URL externe', - 'search_modifier_not_no_external_id' => 'L\'opération doit avoir un ID externe (n\'importe lequel)', - 'search_modifier_internal_reference_is' => 'La référence interne est ":value"', - 'search_modifier_not_internal_reference_is' => 'La référence interne n\'est pas ":value"', - 'search_modifier_description_starts' => 'La description commence par ":value"', - 'search_modifier_not_description_starts' => 'La description ne commence pas par ":value"', - 'search_modifier_description_ends' => 'La description se termine par ":value"', - 'search_modifier_not_description_ends' => 'La description ne se termine pas par ":value"', - 'search_modifier_description_contains' => 'La description contient ":value"', - 'search_modifier_not_description_contains' => 'La description ne contient pas ":value"', - 'search_modifier_description_is' => 'La description est exactement ":value"', - 'search_modifier_not_description_is' => 'La description n\'est pas exactement ":value"', - 'search_modifier_currency_is' => 'La devise (étrangère) de l\'opération est ":value"', - 'search_modifier_not_currency_is' => 'La devise (étrangère) de l\'opération n\'est pas ":value"', - 'search_modifier_foreign_currency_is' => 'La devise étrangère de l\'opération est ":value"', - 'search_modifier_not_foreign_currency_is' => 'La devise étrangère de l\'opération n\'est pas ":value"', - 'search_modifier_has_attachments' => 'L\'opération doit avoir une pièce jointe', - 'search_modifier_has_no_category' => 'L\'opération ne doit pas avoir de catégorie', - 'search_modifier_not_has_no_category' => 'L\'opération doit avoir une catégorie', - 'search_modifier_not_has_any_category' => 'L\'opération ne doit pas avoir de catégorie', - 'search_modifier_has_any_category' => 'L\'opération doit avoir une catégorie', - 'search_modifier_has_no_budget' => 'L\'opération ne doit pas avoir de budget', - 'search_modifier_not_has_any_budget' => 'L\'opération ne doit pas avoir de budget', - 'search_modifier_has_any_budget' => 'L\'opération doit avoir un budget', - 'search_modifier_not_has_no_budget' => 'L\'opération doit avoir un budget', - 'search_modifier_has_no_bill' => 'L\'opération ne doit pas avoir de facture', - 'search_modifier_not_has_no_bill' => 'L\'opération doit avoir (au moins) une facture', - 'search_modifier_has_any_bill' => 'L\'opération doit avoir (au moins) une facture', - 'search_modifier_not_has_any_bill' => 'L\'opération ne doit pas avoir de facture', - 'search_modifier_has_no_tag' => 'L\'opération ne doit pas avoir de tags', - 'search_modifier_not_has_any_tag' => 'L\'opération ne doit pas avoir de tags', - 'search_modifier_not_has_no_tag' => 'L\'opération doit avoir (au moins) un tag', - 'search_modifier_has_any_tag' => 'L\'opération doit avoir un tag (n\'importe lequel)', - 'search_modifier_notes_contains' => 'Les notes de l\'opération contiennent ":value"', - 'search_modifier_not_notes_contains' => 'Les notes de l\'opération ne contiennent pas ":value"', - 'search_modifier_notes_starts' => 'Les notes de l\'opération commencent par ":value"', - 'search_modifier_not_notes_starts' => 'Les notes de l\'opération ne commencent pas par ":value"', - 'search_modifier_notes_ends' => 'Les notes de l\'opération se terminent par ":value"', - 'search_modifier_not_notes_ends' => 'Les notes de l\'opération ne se terminent pas par ":value"', - 'search_modifier_notes_is' => 'Les notes de l\'opération sont exactement ":value"', - 'search_modifier_not_notes_is' => 'Les notes de l\'opération ne sont pas exactement ":value"', - 'search_modifier_no_notes' => 'L\'opération n\'a pas de note', - 'search_modifier_not_no_notes' => 'L\'opération doit avoir des notes', - 'search_modifier_any_notes' => 'L\'opération doit avoir des notes', - 'search_modifier_not_any_notes' => 'L\'opération n\'a pas de note', - 'search_modifier_amount_is' => 'Le montant est exactement :value', - 'search_modifier_not_amount_is' => 'Le montant n\'est pas :value', - 'search_modifier_amount_less' => 'Le montant est inférieur ou égal à :value', - 'search_modifier_not_amount_more' => 'Le montant est inférieur ou égal à :value', - 'search_modifier_amount_more' => 'Le montant est supérieur ou égal à :value', - 'search_modifier_not_amount_less' => 'Le montant est supérieur ou égal à :value', - 'search_modifier_source_account_is' => 'Le nom du compte source est exactement ":value"', - 'search_modifier_not_source_account_is' => 'Le nom du compte source n\'est pas ":value"', - 'search_modifier_source_account_contains' => 'Le nom du compte source contient ":value"', - 'search_modifier_not_source_account_contains' => 'Le nom du compte source ne contient pas ":value"', - 'search_modifier_source_account_starts' => 'Le nom du compte source commence par ":value"', - 'search_modifier_not_source_account_starts' => 'Le nom du compte source ne commence pas par ":value"', - 'search_modifier_source_account_ends' => 'Le nom du compte source se termine par ":value"', - 'search_modifier_not_source_account_ends' => 'Le nom du compte source ne se termine pas par «:value»', - 'search_modifier_source_account_id' => 'L\'ID du compte source est :value', - 'search_modifier_not_source_account_id' => 'L\'ID du compte source n\'est pas :value', - 'search_modifier_source_account_nr_is' => 'Le numéro du compte source (IBAN) est ":value"', - 'search_modifier_not_source_account_nr_is' => 'Le numéro du compte source (IBAN) n\'est pas «:value»', - 'search_modifier_source_account_nr_contains' => 'Le numéro du compte source (IBAN) contient ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Le numéro du compte source (IBAN) ne contient pas ":value"', - 'search_modifier_source_account_nr_starts' => 'Le numéro du compte source (IBAN) commence par ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Le numéro du compte source (IBAN) ne commence pas par ":value"', - 'search_modifier_source_account_nr_ends' => 'Le numéro du compte source (IBAN) se termine par ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Le numéro du compte source (IBAN) ne se termine pas par ":value"', - 'search_modifier_destination_account_is' => 'Le nom du compte de destination est exactement ":value"', - 'search_modifier_not_destination_account_is' => 'Le nom du compte de destination n\'est pas «:value»', - 'search_modifier_destination_account_contains' => 'Le nom du compte de destination contient ":value"', - 'search_modifier_not_destination_account_contains' => 'Le nom du compte de destination ne contient pas «:value»', - 'search_modifier_destination_account_starts' => 'Le nom du compte de destination commence par ":value"', - 'search_modifier_not_destination_account_starts' => 'Le nom du compte de destination ne commence pas par ":value"', - 'search_modifier_destination_account_ends' => 'Le nom du compte de destination se termine par ":value"', - 'search_modifier_not_destination_account_ends' => 'Le nom du compte de destination ne se termine pas par ":value"', - 'search_modifier_destination_account_id' => 'L\'ID du compte de destination est :value', - 'search_modifier_not_destination_account_id' => 'L\'ID du compte de destination n\'est pas :value', - 'search_modifier_destination_is_cash' => 'Le compte de destination est le compte "(espèces)"', - 'search_modifier_not_destination_is_cash' => 'Le compte de destination n\'est pas le compte "(espèces)"', - 'search_modifier_source_is_cash' => 'Le compte source est le compte "(espèces)"', - 'search_modifier_not_source_is_cash' => 'Le compte source n\'est pas le compte "(espèces)"', - 'search_modifier_destination_account_nr_is' => 'Le numéro du compte de destination (IBAN) est ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Le numéro du compte de destination (IBAN) est ":value"', - 'search_modifier_destination_account_nr_contains' => 'Le numéro du compte de destination (IBAN) contient ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Le numéro du compte de destination (IBAN) ne contient pas «:value»', - 'search_modifier_destination_account_nr_starts' => 'Le numéro du compte de destination (IBAN) commence par ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Le numéro du compte de destination (IBAN) ne commence pas par ":value"', - 'search_modifier_destination_account_nr_ends' => 'Le numéro du compte de destination (IBAN) se termine par ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Le numéro du compte de destination (IBAN) ne se termine pas par «:value»', - 'search_modifier_account_id' => 'Les IDs du compte source ou de destination est/sont : :value', - 'search_modifier_not_account_id' => 'Les IDs du compte source ou de destination n\'est/ne sont pas : :value', - 'search_modifier_category_is' => 'La catégorie est ":value"', - 'search_modifier_not_category_is' => 'La catégorie n\'est pas ":value"', - 'search_modifier_budget_is' => 'Le budget est ":value"', - 'search_modifier_not_budget_is' => 'Le budget n\'est pas ":value"', - 'search_modifier_bill_is' => 'La facture est ":value"', - 'search_modifier_not_bill_is' => 'La facture n\'est pas ":value"', - 'search_modifier_transaction_type' => 'Le type de transaction est ":value"', - 'search_modifier_not_transaction_type' => 'Le type de l\'opération n\'est pas :value', - 'search_modifier_tag_is' => 'Le tag est ":value"', - 'search_modifier_tag_contains' => 'Le tag contient ":value"', - 'search_modifier_not_tag_contains' => 'Le tag ne contient pas «:value»', - 'search_modifier_tag_ends' => 'Le tag se termine par «:value»', - 'search_modifier_tag_starts' => 'Le tag commence par «:value»', - 'search_modifier_not_tag_is' => 'Aucun tag n\'est ":value"', - 'search_modifier_date_on_year' => 'L\'opération est dans l\'année ":value"', - 'search_modifier_not_date_on_year' => 'L\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_date_on_month' => 'L\'opération est dans le mois ":value"', - 'search_modifier_not_date_on_month' => 'L\'opération n\'est dans le mois de ":value"', - 'search_modifier_date_on_day' => 'L\'opération est le jour du mois ":value"', - 'search_modifier_not_date_on_day' => 'L\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_date_before_year' => 'L\'opération est avant ou dans l\'année ":value"', - 'search_modifier_date_before_month' => 'L\'opération est avant ou dans le mois ":value"', - 'search_modifier_date_before_day' => 'L\'opération est avant ou le jour du mois ":value"', - 'search_modifier_date_after_year' => 'L\'opération est dans ou après l\'année ":value"', - 'search_modifier_date_after_month' => 'L\'opération est dans ou après le mois ":value"', - 'search_modifier_date_after_day' => 'L\'opération est après ou le jour du mois ":value"', + 'search_modifier_date_on' => 'La date de l\'opération est ":value"', + 'search_modifier_not_date_on' => 'La date de l\'opération n\'est pas ":value"', + 'search_modifier_reconciled' => 'L\'opération est rapprochée', + 'search_modifier_not_reconciled' => 'L\'opération n\'est pas rapprochée', + 'search_modifier_id' => 'L\'ID de l\'opération est ":value"', + 'search_modifier_not_id' => 'L\'ID de l\'opération n\'est pas ":value"', + 'search_modifier_date_before' => 'La date de l\'opération est avant ou le ":value"', + 'search_modifier_date_after' => 'La date de l\'opération est après ou le ":value"', + 'search_modifier_external_id_is' => 'L\'ID externe est ":value"', + 'search_modifier_not_external_id_is' => 'L\'ID externe n\'est pas ":value"', + 'search_modifier_no_external_url' => 'L\'opération n\'a pas d\'URL externe', + 'search_modifier_no_external_id' => 'L\'opération n\'a pas d\'ID externe', + 'search_modifier_not_any_external_url' => 'L\'opération n\'a pas d\'URL externe', + 'search_modifier_not_any_external_id' => 'L\'opération n\'a pas d\'ID externe', + 'search_modifier_any_external_url' => 'L\'opération doit avoir une URL externe', + 'search_modifier_any_external_id' => 'L\'opération doit avoir un ID externe (n\'importe lequel)', + 'search_modifier_not_no_external_url' => 'L\'opération doit avoir une URL externe', + 'search_modifier_not_no_external_id' => 'L\'opération doit avoir un ID externe (n\'importe lequel)', + 'search_modifier_internal_reference_is' => 'La référence interne est ":value"', + 'search_modifier_not_internal_reference_is' => 'La référence interne n\'est pas ":value"', + 'search_modifier_description_starts' => 'La description commence par ":value"', + 'search_modifier_not_description_starts' => 'La description ne commence pas par ":value"', + 'search_modifier_description_ends' => 'La description se termine par ":value"', + 'search_modifier_not_description_ends' => 'La description ne se termine pas par ":value"', + 'search_modifier_description_contains' => 'La description contient ":value"', + 'search_modifier_not_description_contains' => 'La description ne contient pas ":value"', + 'search_modifier_description_is' => 'La description est exactement ":value"', + 'search_modifier_not_description_is' => 'La description n\'est pas exactement ":value"', + 'search_modifier_currency_is' => 'La devise (étrangère) de l\'opération est ":value"', + 'search_modifier_not_currency_is' => 'La devise (étrangère) de l\'opération n\'est pas ":value"', + 'search_modifier_foreign_currency_is' => 'La devise étrangère de l\'opération est ":value"', + 'search_modifier_not_foreign_currency_is' => 'La devise étrangère de l\'opération n\'est pas ":value"', + 'search_modifier_has_attachments' => 'L\'opération doit avoir une pièce jointe', + 'search_modifier_has_no_category' => 'L\'opération ne doit pas avoir de catégorie', + 'search_modifier_not_has_no_category' => 'L\'opération doit avoir une catégorie', + 'search_modifier_not_has_any_category' => 'L\'opération ne doit pas avoir de catégorie', + 'search_modifier_has_any_category' => 'L\'opération doit avoir une catégorie', + 'search_modifier_has_no_budget' => 'L\'opération ne doit pas avoir de budget', + 'search_modifier_not_has_any_budget' => 'L\'opération ne doit pas avoir de budget', + 'search_modifier_has_any_budget' => 'L\'opération doit avoir un budget', + 'search_modifier_not_has_no_budget' => 'L\'opération doit avoir un budget', + 'search_modifier_has_no_bill' => 'L\'opération ne doit pas avoir de facture', + 'search_modifier_not_has_no_bill' => 'L\'opération doit avoir (au moins) une facture', + 'search_modifier_has_any_bill' => 'L\'opération doit avoir (au moins) une facture', + 'search_modifier_not_has_any_bill' => 'L\'opération ne doit pas avoir de facture', + 'search_modifier_has_no_tag' => 'L\'opération ne doit pas avoir de tags', + 'search_modifier_not_has_any_tag' => 'L\'opération ne doit pas avoir de tags', + 'search_modifier_not_has_no_tag' => 'L\'opération doit avoir (au moins) un tag', + 'search_modifier_has_any_tag' => 'L\'opération doit avoir un tag (n\'importe lequel)', + 'search_modifier_notes_contains' => 'Les notes de l\'opération contiennent ":value"', + 'search_modifier_not_notes_contains' => 'Les notes de l\'opération ne contiennent pas ":value"', + 'search_modifier_notes_starts' => 'Les notes de l\'opération commencent par ":value"', + 'search_modifier_not_notes_starts' => 'Les notes de l\'opération ne commencent pas par ":value"', + 'search_modifier_notes_ends' => 'Les notes de l\'opération se terminent par ":value"', + 'search_modifier_not_notes_ends' => 'Les notes de l\'opération ne se terminent pas par ":value"', + 'search_modifier_notes_is' => 'Les notes de l\'opération sont exactement ":value"', + 'search_modifier_not_notes_is' => 'Les notes de l\'opération ne sont pas exactement ":value"', + 'search_modifier_no_notes' => 'L\'opération n\'a pas de note', + 'search_modifier_not_no_notes' => 'L\'opération doit avoir des notes', + 'search_modifier_any_notes' => 'L\'opération doit avoir des notes', + 'search_modifier_not_any_notes' => 'L\'opération n\'a pas de note', + 'search_modifier_amount_is' => 'Le montant est exactement :value', + 'search_modifier_not_amount_is' => 'Le montant n\'est pas :value', + 'search_modifier_amount_less' => 'Le montant est inférieur ou égal à :value', + 'search_modifier_not_amount_more' => 'Le montant est inférieur ou égal à :value', + 'search_modifier_amount_more' => 'Le montant est supérieur ou égal à :value', + 'search_modifier_not_amount_less' => 'Le montant est supérieur ou égal à :value', + 'search_modifier_source_account_is' => 'Le nom du compte source est exactement ":value"', + 'search_modifier_not_source_account_is' => 'Le nom du compte source n\'est pas ":value"', + 'search_modifier_source_account_contains' => 'Le nom du compte source contient ":value"', + 'search_modifier_not_source_account_contains' => 'Le nom du compte source ne contient pas ":value"', + 'search_modifier_source_account_starts' => 'Le nom du compte source commence par ":value"', + 'search_modifier_not_source_account_starts' => 'Le nom du compte source ne commence pas par ":value"', + 'search_modifier_source_account_ends' => 'Le nom du compte source se termine par ":value"', + 'search_modifier_not_source_account_ends' => 'Le nom du compte source ne se termine pas par «:value»', + 'search_modifier_source_account_id' => 'L\'ID du compte source est :value', + 'search_modifier_not_source_account_id' => 'L\'ID du compte source n\'est pas :value', + 'search_modifier_source_account_nr_is' => 'Le numéro du compte source (IBAN) est ":value"', + 'search_modifier_not_source_account_nr_is' => 'Le numéro du compte source (IBAN) n\'est pas «:value»', + 'search_modifier_source_account_nr_contains' => 'Le numéro du compte source (IBAN) contient ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Le numéro du compte source (IBAN) ne contient pas ":value"', + 'search_modifier_source_account_nr_starts' => 'Le numéro du compte source (IBAN) commence par ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Le numéro du compte source (IBAN) ne commence pas par ":value"', + 'search_modifier_source_account_nr_ends' => 'Le numéro du compte source (IBAN) se termine par ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Le numéro du compte source (IBAN) ne se termine pas par ":value"', + 'search_modifier_destination_account_is' => 'Le nom du compte de destination est exactement ":value"', + 'search_modifier_not_destination_account_is' => 'Le nom du compte de destination n\'est pas «:value»', + 'search_modifier_destination_account_contains' => 'Le nom du compte de destination contient ":value"', + 'search_modifier_not_destination_account_contains' => 'Le nom du compte de destination ne contient pas «:value»', + 'search_modifier_destination_account_starts' => 'Le nom du compte de destination commence par ":value"', + 'search_modifier_not_destination_account_starts' => 'Le nom du compte de destination ne commence pas par ":value"', + 'search_modifier_destination_account_ends' => 'Le nom du compte de destination se termine par ":value"', + 'search_modifier_not_destination_account_ends' => 'Le nom du compte de destination ne se termine pas par ":value"', + 'search_modifier_destination_account_id' => 'L\'ID du compte de destination est :value', + 'search_modifier_not_destination_account_id' => 'L\'ID du compte de destination n\'est pas :value', + 'search_modifier_destination_is_cash' => 'Le compte de destination est le compte "(espèces)"', + 'search_modifier_not_destination_is_cash' => 'Le compte de destination n\'est pas le compte "(espèces)"', + 'search_modifier_source_is_cash' => 'Le compte source est le compte "(espèces)"', + 'search_modifier_not_source_is_cash' => 'Le compte source n\'est pas le compte "(espèces)"', + 'search_modifier_destination_account_nr_is' => 'Le numéro du compte de destination (IBAN) est ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Le numéro du compte de destination (IBAN) est ":value"', + 'search_modifier_destination_account_nr_contains' => 'Le numéro du compte de destination (IBAN) contient ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Le numéro du compte de destination (IBAN) ne contient pas «:value»', + 'search_modifier_destination_account_nr_starts' => 'Le numéro du compte de destination (IBAN) commence par ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Le numéro du compte de destination (IBAN) ne commence pas par ":value"', + 'search_modifier_destination_account_nr_ends' => 'Le numéro du compte de destination (IBAN) se termine par ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Le numéro du compte de destination (IBAN) ne se termine pas par «:value»', + 'search_modifier_account_id' => 'Les IDs du compte source ou de destination est/sont : :value', + 'search_modifier_not_account_id' => 'Les IDs du compte source ou de destination n\'est/ne sont pas : :value', + 'search_modifier_category_is' => 'La catégorie est ":value"', + 'search_modifier_not_category_is' => 'La catégorie n\'est pas ":value"', + 'search_modifier_budget_is' => 'Le budget est ":value"', + 'search_modifier_not_budget_is' => 'Le budget n\'est pas ":value"', + 'search_modifier_bill_is' => 'La facture est ":value"', + 'search_modifier_not_bill_is' => 'La facture n\'est pas ":value"', + 'search_modifier_transaction_type' => 'Le type de transaction est ":value"', + 'search_modifier_not_transaction_type' => 'Le type de l\'opération n\'est pas :value', + 'search_modifier_tag_is' => 'Le tag est ":value"', + 'search_modifier_tag_contains' => 'Le tag contient ":value"', + 'search_modifier_not_tag_contains' => 'Le tag ne contient pas «:value»', + 'search_modifier_tag_ends' => 'Le tag se termine par «:value»', + 'search_modifier_tag_starts' => 'Le tag commence par «:value»', + 'search_modifier_not_tag_is' => 'Aucun tag n\'est ":value"', + 'search_modifier_date_on_year' => 'L\'opération est dans l\'année ":value"', + 'search_modifier_not_date_on_year' => 'L\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_date_on_month' => 'L\'opération est dans le mois ":value"', + 'search_modifier_not_date_on_month' => 'L\'opération n\'est dans le mois de ":value"', + 'search_modifier_date_on_day' => 'L\'opération est le jour du mois ":value"', + 'search_modifier_not_date_on_day' => 'L\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_date_before_year' => 'L\'opération est avant ou dans l\'année ":value"', + 'search_modifier_date_before_month' => 'L\'opération est avant ou dans le mois ":value"', + 'search_modifier_date_before_day' => 'L\'opération est avant ou le jour du mois ":value"', + 'search_modifier_date_after_year' => 'L\'opération est dans ou après l\'année ":value"', + 'search_modifier_date_after_month' => 'L\'opération est dans ou après le mois ":value"', + 'search_modifier_date_after_day' => 'L\'opération est après ou le jour du mois ":value"', // new - 'search_modifier_tag_is_not' => 'Aucun tag n\'est ":value"', - 'search_modifier_not_tag_is_not' => 'Le tag est ":value"', - 'search_modifier_account_is' => 'L\'un des comptes est ":value"', - 'search_modifier_not_account_is' => 'Aucun compte n\'est ":value"', - 'search_modifier_account_contains' => 'L\'un des comptes contient ":value"', - 'search_modifier_not_account_contains' => 'Aucun compte ne contient ":value"', - 'search_modifier_account_ends' => 'L\'un des comptes se termine par ":value"', - 'search_modifier_not_account_ends' => 'Aucun compte ne se termine par ":value"', - 'search_modifier_account_starts' => 'L\'un des comptes commence par ":value"', - 'search_modifier_not_account_starts' => 'Aucun compte ne commence par ":value"', - 'search_modifier_account_nr_is' => 'L\'un des numéros de compte / IBAN est ":value"', - 'search_modifier_not_account_nr_is' => 'Aucun n° de compte n\'est ":value"', - 'search_modifier_account_nr_contains' => 'L\'un des numéros de compte / IBAN contient ":value"', - 'search_modifier_not_account_nr_contains' => 'Aucun n° de compte ne contient ":value"', - 'search_modifier_account_nr_ends' => 'L\'un des numéros de compte / IBAN se termine par ":value"', - 'search_modifier_not_account_nr_ends' => 'Aucun n° de compte ne se termine par ":value"', - 'search_modifier_account_nr_starts' => 'L\'un des numéros de compte / IBAN commence par ":value"', - 'search_modifier_not_account_nr_starts' => 'Aucun n° de compte ne commence par ":value"', - 'search_modifier_category_contains' => 'La catégorie contient ":value"', - 'search_modifier_not_category_contains' => 'La catégorie ne contient pas «:value»', - 'search_modifier_category_ends' => 'La catégorie se termine par ":value"', - 'search_modifier_not_category_ends' => 'La catégorie ne se termine pas par ":value"', - 'search_modifier_category_starts' => 'La catégorie commence par ":value"', - 'search_modifier_not_category_starts' => 'La catégorie ne commence pas par ":value"', - 'search_modifier_budget_contains' => 'Le budget contient ":value"', - 'search_modifier_not_budget_contains' => 'Le budget ne contient pas ":value"', - 'search_modifier_budget_ends' => 'Le budget se termine par ":value"', - 'search_modifier_not_budget_ends' => 'Le budget ne se termine pas par ":value"', - 'search_modifier_budget_starts' => 'Le budget commence par ":value"', - 'search_modifier_not_budget_starts' => 'Le budget ne commence pas par ":value"', - 'search_modifier_bill_contains' => 'La facture contient ":value"', - 'search_modifier_not_bill_contains' => 'La facture ne contient pas ":value"', - 'search_modifier_bill_ends' => 'La facture se termine par ":value"', - 'search_modifier_not_bill_ends' => 'La facture ne se termine pas par ":value"', - 'search_modifier_bill_starts' => 'La facture commence par ":value"', - 'search_modifier_not_bill_starts' => 'La facture ne commence pas par ":value"', - 'search_modifier_external_id_contains' => 'L\'ID externe contient ":value"', - 'search_modifier_not_external_id_contains' => 'L\'ID externe ne contient pas ":value"', - 'search_modifier_external_id_ends' => 'L\'ID externe se termine par ":value"', - 'search_modifier_not_external_id_ends' => 'L\'ID externe ne se termine pas par ":value"', - 'search_modifier_external_id_starts' => 'L\'ID externe commence par ":value"', - 'search_modifier_not_external_id_starts' => 'L\'ID externe ne commence pas par ":value"', - 'search_modifier_internal_reference_contains' => 'La référence interne contient ":value"', - 'search_modifier_not_internal_reference_contains' => 'La référence interne ne contient pas ":value"', - 'search_modifier_internal_reference_ends' => 'La référence interne se termine par ":value"', - 'search_modifier_internal_reference_starts' => 'La référence interne commence par ":value"', - 'search_modifier_not_internal_reference_ends' => 'La référence interne ne se termine pas par ":value"', - 'search_modifier_not_internal_reference_starts' => 'La référence interne ne commence pas par ":value"', - 'search_modifier_external_url_is' => 'L\'URL externe est ":value"', - 'search_modifier_not_external_url_is' => 'L\'URL externe n\'est pas ":value"', - 'search_modifier_external_url_contains' => 'L\'URL externe contient ":value"', - 'search_modifier_not_external_url_contains' => 'L\'URL externe ne contient pas ":value"', - 'search_modifier_external_url_ends' => 'L\'URL externe se termine par ":value"', - 'search_modifier_not_external_url_ends' => 'L\'URL externe ne se termine pas par ":value"', - 'search_modifier_external_url_starts' => 'L\'URL externe commence par ":value"', - 'search_modifier_not_external_url_starts' => 'L\'URL externe ne commence pas par ":value"', - 'search_modifier_has_no_attachments' => 'L\'opération n\'a pas de pièces jointes', - 'search_modifier_not_has_no_attachments' => 'L\'opération a des pièces jointes', - 'search_modifier_not_has_attachments' => 'L\'opération n\'a pas de pièces jointes', - 'search_modifier_account_is_cash' => 'L\'un des comptes est le compte "(espèces)".', - 'search_modifier_not_account_is_cash' => 'Aucun compte n\'est le compte "(espèces)".', - 'search_modifier_journal_id' => 'L\'ID du journal est ":value"', - 'search_modifier_not_journal_id' => 'L\'ID du journal n\'est pas «:value»', - 'search_modifier_recurrence_id' => 'L\'ID de l\'opération récurrente est ":value"', - 'search_modifier_not_recurrence_id' => 'L\'ID de l\'opération récurrente n\'est pas ":value"', - 'search_modifier_foreign_amount_is' => 'Le montant en devise étrangère est ":value"', - 'search_modifier_not_foreign_amount_is' => 'Le montant en devise étrangère n\'est pas ":value"', - 'search_modifier_foreign_amount_less' => 'Le montant en devise étrangère est inférieur à ":value"', - 'search_modifier_not_foreign_amount_more' => 'Le montant en devise étrangère est inférieur à ":value"', - 'search_modifier_not_foreign_amount_less' => 'Le montant en devise étrangère est supérieur à ":value"', - 'search_modifier_foreign_amount_more' => 'Le montant en devise étrangère est supérieur à ":value"', - 'search_modifier_exists' => 'Une opération existe', - 'search_modifier_not_exists' => 'L\'opération n\'existe pas (aucune opération)', + 'search_modifier_tag_is_not' => 'Aucun tag n\'est ":value"', + 'search_modifier_not_tag_is_not' => 'Le tag est ":value"', + 'search_modifier_account_is' => 'L\'un des comptes est ":value"', + 'search_modifier_not_account_is' => 'Aucun compte n\'est ":value"', + 'search_modifier_account_contains' => 'L\'un des comptes contient ":value"', + 'search_modifier_not_account_contains' => 'Aucun compte ne contient ":value"', + 'search_modifier_account_ends' => 'L\'un des comptes se termine par ":value"', + 'search_modifier_not_account_ends' => 'Aucun compte ne se termine par ":value"', + 'search_modifier_account_starts' => 'L\'un des comptes commence par ":value"', + 'search_modifier_not_account_starts' => 'Aucun compte ne commence par ":value"', + 'search_modifier_account_nr_is' => 'L\'un des numéros de compte / IBAN est ":value"', + 'search_modifier_not_account_nr_is' => 'Aucun n° de compte n\'est ":value"', + 'search_modifier_account_nr_contains' => 'L\'un des numéros de compte / IBAN contient ":value"', + 'search_modifier_not_account_nr_contains' => 'Aucun n° de compte ne contient ":value"', + 'search_modifier_account_nr_ends' => 'L\'un des numéros de compte / IBAN se termine par ":value"', + 'search_modifier_not_account_nr_ends' => 'Aucun n° de compte ne se termine par ":value"', + 'search_modifier_account_nr_starts' => 'L\'un des numéros de compte / IBAN commence par ":value"', + 'search_modifier_not_account_nr_starts' => 'Aucun n° de compte ne commence par ":value"', + 'search_modifier_category_contains' => 'La catégorie contient ":value"', + 'search_modifier_not_category_contains' => 'La catégorie ne contient pas «:value»', + 'search_modifier_category_ends' => 'La catégorie se termine par ":value"', + 'search_modifier_not_category_ends' => 'La catégorie ne se termine pas par ":value"', + 'search_modifier_category_starts' => 'La catégorie commence par ":value"', + 'search_modifier_not_category_starts' => 'La catégorie ne commence pas par ":value"', + 'search_modifier_budget_contains' => 'Le budget contient ":value"', + 'search_modifier_not_budget_contains' => 'Le budget ne contient pas ":value"', + 'search_modifier_budget_ends' => 'Le budget se termine par ":value"', + 'search_modifier_not_budget_ends' => 'Le budget ne se termine pas par ":value"', + 'search_modifier_budget_starts' => 'Le budget commence par ":value"', + 'search_modifier_not_budget_starts' => 'Le budget ne commence pas par ":value"', + 'search_modifier_bill_contains' => 'La facture contient ":value"', + 'search_modifier_not_bill_contains' => 'La facture ne contient pas ":value"', + 'search_modifier_bill_ends' => 'La facture se termine par ":value"', + 'search_modifier_not_bill_ends' => 'La facture ne se termine pas par ":value"', + 'search_modifier_bill_starts' => 'La facture commence par ":value"', + 'search_modifier_not_bill_starts' => 'La facture ne commence pas par ":value"', + 'search_modifier_external_id_contains' => 'L\'ID externe contient ":value"', + 'search_modifier_not_external_id_contains' => 'L\'ID externe ne contient pas ":value"', + 'search_modifier_external_id_ends' => 'L\'ID externe se termine par ":value"', + 'search_modifier_not_external_id_ends' => 'L\'ID externe ne se termine pas par ":value"', + 'search_modifier_external_id_starts' => 'L\'ID externe commence par ":value"', + 'search_modifier_not_external_id_starts' => 'L\'ID externe ne commence pas par ":value"', + 'search_modifier_internal_reference_contains' => 'La référence interne contient ":value"', + 'search_modifier_not_internal_reference_contains' => 'La référence interne ne contient pas ":value"', + 'search_modifier_internal_reference_ends' => 'La référence interne se termine par ":value"', + 'search_modifier_internal_reference_starts' => 'La référence interne commence par ":value"', + 'search_modifier_not_internal_reference_ends' => 'La référence interne ne se termine pas par ":value"', + 'search_modifier_not_internal_reference_starts' => 'La référence interne ne commence pas par ":value"', + 'search_modifier_external_url_is' => 'L\'URL externe est ":value"', + 'search_modifier_not_external_url_is' => 'L\'URL externe n\'est pas ":value"', + 'search_modifier_external_url_contains' => 'L\'URL externe contient ":value"', + 'search_modifier_not_external_url_contains' => 'L\'URL externe ne contient pas ":value"', + 'search_modifier_external_url_ends' => 'L\'URL externe se termine par ":value"', + 'search_modifier_not_external_url_ends' => 'L\'URL externe ne se termine pas par ":value"', + 'search_modifier_external_url_starts' => 'L\'URL externe commence par ":value"', + 'search_modifier_not_external_url_starts' => 'L\'URL externe ne commence pas par ":value"', + 'search_modifier_has_no_attachments' => 'L\'opération n\'a pas de pièces jointes', + 'search_modifier_not_has_no_attachments' => 'L\'opération a des pièces jointes', + 'search_modifier_not_has_attachments' => 'L\'opération n\'a pas de pièces jointes', + 'search_modifier_account_is_cash' => 'L\'un des comptes est le compte "(espèces)".', + 'search_modifier_not_account_is_cash' => 'Aucun compte n\'est le compte "(espèces)".', + 'search_modifier_journal_id' => 'L\'ID du journal est ":value"', + 'search_modifier_not_journal_id' => 'L\'ID du journal n\'est pas «:value»', + 'search_modifier_recurrence_id' => 'L\'ID de l\'opération récurrente est ":value"', + 'search_modifier_not_recurrence_id' => 'L\'ID de l\'opération récurrente n\'est pas ":value"', + 'search_modifier_foreign_amount_is' => 'Le montant en devise étrangère est ":value"', + 'search_modifier_not_foreign_amount_is' => 'Le montant en devise étrangère n\'est pas ":value"', + 'search_modifier_foreign_amount_less' => 'Le montant en devise étrangère est inférieur à ":value"', + 'search_modifier_not_foreign_amount_more' => 'Le montant en devise étrangère est inférieur à ":value"', + 'search_modifier_not_foreign_amount_less' => 'Le montant en devise étrangère est supérieur à ":value"', + 'search_modifier_foreign_amount_more' => 'Le montant en devise étrangère est supérieur à ":value"', + 'search_modifier_exists' => 'Une opération existe', + 'search_modifier_not_exists' => 'L\'opération n\'existe pas (aucune opération)', // date fields - 'search_modifier_interest_date_on' => 'La date d\'intérêt de l\'opération est ":value"', - 'search_modifier_not_interest_date_on' => 'La date d\'intérêt de l\'opération n\'est pas ":value"', - 'search_modifier_interest_date_on_year' => 'La date d\'intérêt de l\'opération est dans l\'année ":value"', - 'search_modifier_not_interest_date_on_year' => 'La date d\'intérêt de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_interest_date_on_month' => 'La date d\'intérêt de l\'opération est dans le mois ":value"', - 'search_modifier_not_interest_date_on_month' => 'La date d\'intérêt de l\'opération n\'est dans le mois de ":value"', - 'search_modifier_interest_date_on_day' => 'La date d\'intérêt de l\'opération est le jour du mois ":value"', - 'search_modifier_not_interest_date_on_day' => 'La date d\'intérêt de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_interest_date_before_year' => 'La date d\'intérêt de l\'opération est antérieure à ou dans l\'année ":value"', - 'search_modifier_interest_date_before_month' => 'La date d\'intérêt de l\'opération est antérieure à ou dans le mois ":value"', - 'search_modifier_interest_date_before_day' => 'La date d\'intérêt de l\'opération est antérieure à ou le jour du mois «:value»', - 'search_modifier_interest_date_after_year' => 'La date d\'intérêt de l\'opération est postérieure ou dans l\'année ":value"', - 'search_modifier_interest_date_after_month' => 'La date d\'intérêt de l\'opération est postérieure ou dans le mois ":value"', - 'search_modifier_interest_date_after_day' => 'La date d\'intérêt de l\'opération est postérieure ou le jour du mois ":value"', - 'search_modifier_book_date_on_year' => 'La date d\'enregistrement de l\'opération est dans l\'année ":value"', - 'search_modifier_book_date_on_month' => 'La date d\'enregistrement de l\'opération est dans le mois ":value"', - 'search_modifier_book_date_on_day' => 'La date d\'enregistrement de l\'opération est le jour du mois ":value"', - 'search_modifier_not_book_date_on_year' => 'La date d\'enregistrement de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_not_book_date_on_month' => 'La date d\'enregistrement de l\'opération n\'est pas dans le mois de ":value"', - 'search_modifier_not_book_date_on_day' => 'La date d\'enregistrement de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_book_date_before_year' => 'La date d\'enregistrement de l\'opération est avant ou dans l\'année ":value"', - 'search_modifier_book_date_before_month' => 'La date d\'enregistrement de l\'opération est avant ou dans le mois ":value"', - 'search_modifier_book_date_before_day' => 'La date d\'enregistrement de l\'opération est avant ou le jour du mois ":value"', - 'search_modifier_book_date_after_year' => 'La date d\'enregistrement de l\'opération est après ou dans l\'année ":value"', - 'search_modifier_book_date_after_month' => 'La date d\'enregistrement de l\'opération est après ou dans le mois ":value"', - 'search_modifier_book_date_after_day' => 'La date d\'enregistrement de l\'opération est après ou le jour du mois ":value"', - 'search_modifier_process_date_on_year' => 'La date de traitement de l\'opération est dans l\'année ":value"', - 'search_modifier_process_date_on_month' => 'La date de traitement de l\'opération est dans le mois ":value"', - 'search_modifier_process_date_on_day' => 'La date de traitement de l\'opération est le jour du mois ":value"', - 'search_modifier_not_process_date_on_year' => 'La date de traitement de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_not_process_date_on_month' => 'La date de traitement de l\'opération n\'est pas dans le mois de ":value"', - 'search_modifier_not_process_date_on_day' => 'La date de traitement de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_process_date_before_year' => 'La date de traitement de l\'opération est avant ou dans l\'année ":value"', - 'search_modifier_process_date_before_month' => 'La date de traitement de l\'opération est avant ou dans le mois ":value"', - 'search_modifier_process_date_before_day' => 'La date de traitement de l\'opération est avant ou le jour du mois ":value"', - 'search_modifier_process_date_after_year' => 'La date de traitement de l\'opération est après ou dans l\'année ":value"', - 'search_modifier_process_date_after_month' => 'La date de traitement de l\'opération est après ou dans le mois ":value"', - 'search_modifier_process_date_after_day' => 'La date de traitement de l\'opération est après ou le jour du mois ":value"', - 'search_modifier_due_date_on_year' => 'La date d\'échéance de l\'opération est dans l\'année ":value"', - 'search_modifier_due_date_on_month' => 'La date d\'échéance de l\'opération est dans le mois ":value"', - 'search_modifier_due_date_on_day' => 'La date d\'échéance de l\'opération est le jour du mois ":value"', - 'search_modifier_not_due_date_on_year' => 'La date d\'échéance de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_not_due_date_on_month' => 'La date d\'échéance de l\'opération n\'est pas dans le mois de ":value"', - 'search_modifier_not_due_date_on_day' => 'La date d\'échéance de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_due_date_before_year' => 'La date d\'échéance de l\'opération est avant ou dans l\'année ":value"', - 'search_modifier_due_date_before_month' => 'La date d\'échéance de l\'opération est avant ou dans le mois ":value"', - 'search_modifier_due_date_before_day' => 'La date d\'échéance de l\'opération est avant ou le jour du mois ":value"', - 'search_modifier_due_date_after_year' => 'La date d\'échéance de l\'opération est après ou dans l\'année ":value"', - 'search_modifier_due_date_after_month' => 'La date d\'échéance de l\'opération est après ou dans le mois ":value"', - 'search_modifier_due_date_after_day' => 'La date d\'échéance de l\'opération est après ou le jour du mois ":value"', - 'search_modifier_payment_date_on_year' => 'La date de paiement de l\'opération est dans l\'année ":value"', - 'search_modifier_payment_date_on_month' => 'La date de paiement de l\'opération est dans le mois ":value"', - 'search_modifier_payment_date_on_day' => 'La date de paiement de l\'opération est le jour du mois ":value"', - 'search_modifier_not_payment_date_on_year' => 'La date de paiement de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_not_payment_date_on_month' => 'La date de paiement de l\'opération n\'est dans le mois de ":value"', - 'search_modifier_not_payment_date_on_day' => 'La date de paiement de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_payment_date_before_year' => 'La date de paiement de l\'opération est avant ou dans l\'année ":value"', - 'search_modifier_payment_date_before_month' => 'La date de paiement de l\'opération est avant ou dans le mois ":value"', - 'search_modifier_payment_date_before_day' => 'La date de paiement de l\'opération est avant ou le jour du mois ":value"', - 'search_modifier_payment_date_after_year' => 'La date de paiement de l\'opération est après ou dans l\'année "\':value"', - 'search_modifier_payment_date_after_month' => 'La date de paiement de l\'opération est après ou dans le mois ":value"', - 'search_modifier_payment_date_after_day' => 'La date de paiement de l\'opération est après ou le jour du mois ":value"', - 'search_modifier_invoice_date_on_year' => 'La date de facturation de l\'opération est dans l\'année ":value"', - 'search_modifier_invoice_date_on_month' => 'La date de facturation de l\'opération est dans le mois de ":value"', - 'search_modifier_invoice_date_on_day' => 'La date de facturation de l\'opération est le jour du mois ":value"', - 'search_modifier_not_invoice_date_on_year' => 'La date de facturation de l\'opération n\'est pas dans l\'année ":value"', - 'search_modifier_not_invoice_date_on_month' => 'La date de facturation de l\'opération n\'est pas dans le mois de ":value"', - 'search_modifier_not_invoice_date_on_day' => 'La date de facturation de l\'opération n\'est pas le jour du mois ":value"', - 'search_modifier_invoice_date_before_year' => 'La date de facturation de l\'opération est avant ou dans l\'année ":value"', - 'search_modifier_invoice_date_before_month' => 'La date de facturation de l\'opération est avant ou dans le mois de ":value"', - 'search_modifier_invoice_date_before_day' => 'La date de facturation de l\'opération est avant ou le jour du mois ":value"', - 'search_modifier_invoice_date_after_year' => 'La date de facture de l\'opération est après ou dans l\'année ":value"', - 'search_modifier_invoice_date_after_month' => 'La date de facture de l\'opération est après ou dans le mois ":value"', - 'search_modifier_invoice_date_after_day' => 'La date de facturation de l\'opération est après ou le jour du mois ":value"', + 'search_modifier_interest_date_on' => 'La date d\'intérêt de l\'opération est ":value"', + 'search_modifier_not_interest_date_on' => 'La date d\'intérêt de l\'opération n\'est pas ":value"', + 'search_modifier_interest_date_on_year' => 'La date d\'intérêt de l\'opération est dans l\'année ":value"', + 'search_modifier_not_interest_date_on_year' => 'La date d\'intérêt de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_interest_date_on_month' => 'La date d\'intérêt de l\'opération est dans le mois ":value"', + 'search_modifier_not_interest_date_on_month' => 'La date d\'intérêt de l\'opération n\'est dans le mois de ":value"', + 'search_modifier_interest_date_on_day' => 'La date d\'intérêt de l\'opération est le jour du mois ":value"', + 'search_modifier_not_interest_date_on_day' => 'La date d\'intérêt de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_interest_date_before_year' => 'La date d\'intérêt de l\'opération est antérieure à ou dans l\'année ":value"', + 'search_modifier_interest_date_before_month' => 'La date d\'intérêt de l\'opération est antérieure à ou dans le mois ":value"', + 'search_modifier_interest_date_before_day' => 'La date d\'intérêt de l\'opération est antérieure à ou le jour du mois «:value»', + 'search_modifier_interest_date_after_year' => 'La date d\'intérêt de l\'opération est postérieure ou dans l\'année ":value"', + 'search_modifier_interest_date_after_month' => 'La date d\'intérêt de l\'opération est postérieure ou dans le mois ":value"', + 'search_modifier_interest_date_after_day' => 'La date d\'intérêt de l\'opération est postérieure ou le jour du mois ":value"', + 'search_modifier_book_date_on_year' => 'La date d\'enregistrement de l\'opération est dans l\'année ":value"', + 'search_modifier_book_date_on_month' => 'La date d\'enregistrement de l\'opération est dans le mois ":value"', + 'search_modifier_book_date_on_day' => 'La date d\'enregistrement de l\'opération est le jour du mois ":value"', + 'search_modifier_not_book_date_on_year' => 'La date d\'enregistrement de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_not_book_date_on_month' => 'La date d\'enregistrement de l\'opération n\'est pas dans le mois de ":value"', + 'search_modifier_not_book_date_on_day' => 'La date d\'enregistrement de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_book_date_before_year' => 'La date d\'enregistrement de l\'opération est avant ou dans l\'année ":value"', + 'search_modifier_book_date_before_month' => 'La date d\'enregistrement de l\'opération est avant ou dans le mois ":value"', + 'search_modifier_book_date_before_day' => 'La date d\'enregistrement de l\'opération est avant ou le jour du mois ":value"', + 'search_modifier_book_date_after_year' => 'La date d\'enregistrement de l\'opération est après ou dans l\'année ":value"', + 'search_modifier_book_date_after_month' => 'La date d\'enregistrement de l\'opération est après ou dans le mois ":value"', + 'search_modifier_book_date_after_day' => 'La date d\'enregistrement de l\'opération est après ou le jour du mois ":value"', + 'search_modifier_process_date_on_year' => 'La date de traitement de l\'opération est dans l\'année ":value"', + 'search_modifier_process_date_on_month' => 'La date de traitement de l\'opération est dans le mois ":value"', + 'search_modifier_process_date_on_day' => 'La date de traitement de l\'opération est le jour du mois ":value"', + 'search_modifier_not_process_date_on_year' => 'La date de traitement de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_not_process_date_on_month' => 'La date de traitement de l\'opération n\'est pas dans le mois de ":value"', + 'search_modifier_not_process_date_on_day' => 'La date de traitement de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_process_date_before_year' => 'La date de traitement de l\'opération est avant ou dans l\'année ":value"', + 'search_modifier_process_date_before_month' => 'La date de traitement de l\'opération est avant ou dans le mois ":value"', + 'search_modifier_process_date_before_day' => 'La date de traitement de l\'opération est avant ou le jour du mois ":value"', + 'search_modifier_process_date_after_year' => 'La date de traitement de l\'opération est après ou dans l\'année ":value"', + 'search_modifier_process_date_after_month' => 'La date de traitement de l\'opération est après ou dans le mois ":value"', + 'search_modifier_process_date_after_day' => 'La date de traitement de l\'opération est après ou le jour du mois ":value"', + 'search_modifier_due_date_on_year' => 'La date d\'échéance de l\'opération est dans l\'année ":value"', + 'search_modifier_due_date_on_month' => 'La date d\'échéance de l\'opération est dans le mois ":value"', + 'search_modifier_due_date_on_day' => 'La date d\'échéance de l\'opération est le jour du mois ":value"', + 'search_modifier_not_due_date_on_year' => 'La date d\'échéance de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_not_due_date_on_month' => 'La date d\'échéance de l\'opération n\'est pas dans le mois de ":value"', + 'search_modifier_not_due_date_on_day' => 'La date d\'échéance de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_due_date_before_year' => 'La date d\'échéance de l\'opération est avant ou dans l\'année ":value"', + 'search_modifier_due_date_before_month' => 'La date d\'échéance de l\'opération est avant ou dans le mois ":value"', + 'search_modifier_due_date_before_day' => 'La date d\'échéance de l\'opération est avant ou le jour du mois ":value"', + 'search_modifier_due_date_after_year' => 'La date d\'échéance de l\'opération est après ou dans l\'année ":value"', + 'search_modifier_due_date_after_month' => 'La date d\'échéance de l\'opération est après ou dans le mois ":value"', + 'search_modifier_due_date_after_day' => 'La date d\'échéance de l\'opération est après ou le jour du mois ":value"', + 'search_modifier_payment_date_on_year' => 'La date de paiement de l\'opération est dans l\'année ":value"', + 'search_modifier_payment_date_on_month' => 'La date de paiement de l\'opération est dans le mois ":value"', + 'search_modifier_payment_date_on_day' => 'La date de paiement de l\'opération est le jour du mois ":value"', + 'search_modifier_not_payment_date_on_year' => 'La date de paiement de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_not_payment_date_on_month' => 'La date de paiement de l\'opération n\'est dans le mois de ":value"', + 'search_modifier_not_payment_date_on_day' => 'La date de paiement de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_payment_date_before_year' => 'La date de paiement de l\'opération est avant ou dans l\'année ":value"', + 'search_modifier_payment_date_before_month' => 'La date de paiement de l\'opération est avant ou dans le mois ":value"', + 'search_modifier_payment_date_before_day' => 'La date de paiement de l\'opération est avant ou le jour du mois ":value"', + 'search_modifier_payment_date_after_year' => 'La date de paiement de l\'opération est après ou dans l\'année "\':value"', + 'search_modifier_payment_date_after_month' => 'La date de paiement de l\'opération est après ou dans le mois ":value"', + 'search_modifier_payment_date_after_day' => 'La date de paiement de l\'opération est après ou le jour du mois ":value"', + 'search_modifier_invoice_date_on_year' => 'La date de facturation de l\'opération est dans l\'année ":value"', + 'search_modifier_invoice_date_on_month' => 'La date de facturation de l\'opération est dans le mois de ":value"', + 'search_modifier_invoice_date_on_day' => 'La date de facturation de l\'opération est le jour du mois ":value"', + 'search_modifier_not_invoice_date_on_year' => 'La date de facturation de l\'opération n\'est pas dans l\'année ":value"', + 'search_modifier_not_invoice_date_on_month' => 'La date de facturation de l\'opération n\'est pas dans le mois de ":value"', + 'search_modifier_not_invoice_date_on_day' => 'La date de facturation de l\'opération n\'est pas le jour du mois ":value"', + 'search_modifier_invoice_date_before_year' => 'La date de facturation de l\'opération est avant ou dans l\'année ":value"', + 'search_modifier_invoice_date_before_month' => 'La date de facturation de l\'opération est avant ou dans le mois de ":value"', + 'search_modifier_invoice_date_before_day' => 'La date de facturation de l\'opération est avant ou le jour du mois ":value"', + 'search_modifier_invoice_date_after_year' => 'La date de facture de l\'opération est après ou dans l\'année ":value"', + 'search_modifier_invoice_date_after_month' => 'La date de facture de l\'opération est après ou dans le mois ":value"', + 'search_modifier_invoice_date_after_day' => 'La date de facturation de l\'opération est après ou le jour du mois ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'L\'opération a été mise à jour pour la dernière fois en ":value"', - 'search_modifier_updated_at_on_month' => 'L\'opération a été mise à jour pour la dernière fois en ":value"', - 'search_modifier_updated_at_on_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value"', - 'search_modifier_not_updated_at_on_year' => 'L\'opération n\'a pas été mise à jour pour la dernière fois en ":value"', - 'search_modifier_not_updated_at_on_month' => 'L\'opération n\'a pas été mise à jour pour la dernière fois en ":value"', - 'search_modifier_not_updated_at_on_day' => 'La dernière mise à jour de l\'opération ne date pas du jour du mois ":value"', - 'search_modifier_updated_at_before_year' => 'La transaction a été mise à jour la dernière fois ":value" ou avant', - 'search_modifier_updated_at_before_month' => 'L\'opération a été mise à jour pour la dernière fois en ":value" ou avant', - 'search_modifier_updated_at_before_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value" ou avant', - 'search_modifier_updated_at_after_year' => 'L\'opération a été mise à jour pour la dernière fois après ":value"', - 'search_modifier_updated_at_after_month' => 'La dernière mise à jour de l\'opération date du mois de ":value" ou après', - 'search_modifier_updated_at_after_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value" ou après', - 'search_modifier_created_at_on_year' => 'L\'opération a été créée dans l\'année ":value"', - 'search_modifier_created_at_on_month' => 'L\'opération a été créée au mois de ":value"', - 'search_modifier_created_at_on_day' => 'L\'opération a été créée le jour du mois ":value"', - 'search_modifier_not_created_at_on_year' => 'L\'opération n\'a pas été créée dans l\'année ":value"', - 'search_modifier_not_created_at_on_month' => 'L\'opération n\'a pas été créée au mois de ":value"', - 'search_modifier_not_created_at_on_day' => 'L\'opération n\'a pas été créée le jour du mois ":value"', - 'search_modifier_created_at_before_year' => 'L\'opération a été créée dans l\'année ":value" ou avant', - 'search_modifier_created_at_before_month' => 'L\'opération a été créée dans le mois de ":value" ou avant', - 'search_modifier_created_at_before_day' => 'L\'opération a été créée le jour du mois ":value" ou avant', - 'search_modifier_created_at_after_year' => 'L\'opération a été créée dans l\'année ":value" ou après', - 'search_modifier_created_at_after_month' => 'L\'opération a été créée au mois de ":value" ou après', - 'search_modifier_created_at_after_day' => 'L\'opération a été créée le jour du mois ":value" ou après', - 'search_modifier_interest_date_before' => 'La date d\'intérêt de l\'opération est dans le mois de ":value" ou avant', - 'search_modifier_interest_date_after' => 'La date d\'intérêt de l\'opération est le ":value" ou après', - 'search_modifier_book_date_on' => 'La date d\'enregistrement de l\'opération est le ":value"', - 'search_modifier_not_book_date_on' => 'La date d\'enregistrement de l\'opération n\'est pas le ":value"', - 'search_modifier_book_date_before' => 'La date d\'enregistrement de l\'opération est avant ou le ":value"', - 'search_modifier_book_date_after' => 'La date d\'enregistrement de l\'opération est après ou le ":value"', - 'search_modifier_process_date_on' => 'La date de traitement de l\'opération est le ":value"', - 'search_modifier_not_process_date_on' => 'La date de traitement de l\'opération n\'est pas le ":value"', - 'search_modifier_process_date_before' => 'La date de traitement de l\'opération est le ":value" ou avant', - 'search_modifier_process_date_after' => 'La date de traitement de l\'opération est le ":value" ou après', - 'search_modifier_due_date_on' => 'La date d\'échéance de l\'opération est le ":value"', - 'search_modifier_not_due_date_on' => 'La date d\'échéance de l\'opération n\'est pas le ":value"', - 'search_modifier_due_date_before' => 'La date d\'échéance de l\'opération est le ":value" ou avant', - 'search_modifier_due_date_after' => 'La date d\'échéance de l\'opération est le ":value" ou après', - 'search_modifier_payment_date_on' => 'La date d\'échéance de l\'opération est le ":value"', - 'search_modifier_not_payment_date_on' => 'La date d\'échéance de l\'opération n\'est pas le ":value"', - 'search_modifier_payment_date_before' => 'La date de paiement de l\'opération est le ":value" ou avant', - 'search_modifier_payment_date_after' => 'La date de paiement de l\'opération est le ":value" ou après', - 'search_modifier_invoice_date_on' => 'La date de facturation de l\'opération est le ":value"', - 'search_modifier_not_invoice_date_on' => 'La date de facturation de l\'opération n\'est pas le ":value"', - 'search_modifier_invoice_date_before' => 'La date de facturation de l\'opération est le ":value" ou avant', - 'search_modifier_invoice_date_after' => 'La date de facturation de l\'opération est le ":value" ou après', - 'search_modifier_created_at_on' => 'L\'opération a été créée le ":value"', - 'search_modifier_not_created_at_on' => 'L\'opération n\'a pas été créée le ":value"', - 'search_modifier_created_at_before' => 'L\'opération a été créée le ":value" ou avant', - 'search_modifier_created_at_after' => 'L\'opération a été créée le ":value" ou après', - 'search_modifier_updated_at_on' => 'L\'opération a été mise à jour le ":value"', - 'search_modifier_not_updated_at_on' => 'L\'opération n\'a pas été mise à jour pour la dernière fois le ":value"', - 'search_modifier_updated_at_before' => 'L\'opération a été mise à jour le ":value" ou avant', - 'search_modifier_updated_at_after' => 'L\'opération a été mise à jour le ":value" ou après', + 'search_modifier_updated_at_on_year' => 'L\'opération a été mise à jour pour la dernière fois en ":value"', + 'search_modifier_updated_at_on_month' => 'L\'opération a été mise à jour pour la dernière fois en ":value"', + 'search_modifier_updated_at_on_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value"', + 'search_modifier_not_updated_at_on_year' => 'L\'opération n\'a pas été mise à jour pour la dernière fois en ":value"', + 'search_modifier_not_updated_at_on_month' => 'L\'opération n\'a pas été mise à jour pour la dernière fois en ":value"', + 'search_modifier_not_updated_at_on_day' => 'La dernière mise à jour de l\'opération ne date pas du jour du mois ":value"', + 'search_modifier_updated_at_before_year' => 'La transaction a été mise à jour la dernière fois ":value" ou avant', + 'search_modifier_updated_at_before_month' => 'L\'opération a été mise à jour pour la dernière fois en ":value" ou avant', + 'search_modifier_updated_at_before_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value" ou avant', + 'search_modifier_updated_at_after_year' => 'L\'opération a été mise à jour pour la dernière fois après ":value"', + 'search_modifier_updated_at_after_month' => 'La dernière mise à jour de l\'opération date du mois de ":value" ou après', + 'search_modifier_updated_at_after_day' => 'La dernière mise à jour de l\'opération date du jour du mois ":value" ou après', + 'search_modifier_created_at_on_year' => 'L\'opération a été créée dans l\'année ":value"', + 'search_modifier_created_at_on_month' => 'L\'opération a été créée au mois de ":value"', + 'search_modifier_created_at_on_day' => 'L\'opération a été créée le jour du mois ":value"', + 'search_modifier_not_created_at_on_year' => 'L\'opération n\'a pas été créée dans l\'année ":value"', + 'search_modifier_not_created_at_on_month' => 'L\'opération n\'a pas été créée au mois de ":value"', + 'search_modifier_not_created_at_on_day' => 'L\'opération n\'a pas été créée le jour du mois ":value"', + 'search_modifier_created_at_before_year' => 'L\'opération a été créée dans l\'année ":value" ou avant', + 'search_modifier_created_at_before_month' => 'L\'opération a été créée dans le mois de ":value" ou avant', + 'search_modifier_created_at_before_day' => 'L\'opération a été créée le jour du mois ":value" ou avant', + 'search_modifier_created_at_after_year' => 'L\'opération a été créée dans l\'année ":value" ou après', + 'search_modifier_created_at_after_month' => 'L\'opération a été créée au mois de ":value" ou après', + 'search_modifier_created_at_after_day' => 'L\'opération a été créée le jour du mois ":value" ou après', + 'search_modifier_interest_date_before' => 'La date d\'intérêt de l\'opération est dans le mois de ":value" ou avant', + 'search_modifier_interest_date_after' => 'La date d\'intérêt de l\'opération est le ":value" ou après', + 'search_modifier_book_date_on' => 'La date d\'enregistrement de l\'opération est le ":value"', + 'search_modifier_not_book_date_on' => 'La date d\'enregistrement de l\'opération n\'est pas le ":value"', + 'search_modifier_book_date_before' => 'La date d\'enregistrement de l\'opération est avant ou le ":value"', + 'search_modifier_book_date_after' => 'La date d\'enregistrement de l\'opération est après ou le ":value"', + 'search_modifier_process_date_on' => 'La date de traitement de l\'opération est le ":value"', + 'search_modifier_not_process_date_on' => 'La date de traitement de l\'opération n\'est pas le ":value"', + 'search_modifier_process_date_before' => 'La date de traitement de l\'opération est le ":value" ou avant', + 'search_modifier_process_date_after' => 'La date de traitement de l\'opération est le ":value" ou après', + 'search_modifier_due_date_on' => 'La date d\'échéance de l\'opération est le ":value"', + 'search_modifier_not_due_date_on' => 'La date d\'échéance de l\'opération n\'est pas le ":value"', + 'search_modifier_due_date_before' => 'La date d\'échéance de l\'opération est le ":value" ou avant', + 'search_modifier_due_date_after' => 'La date d\'échéance de l\'opération est le ":value" ou après', + 'search_modifier_payment_date_on' => 'La date d\'échéance de l\'opération est le ":value"', + 'search_modifier_not_payment_date_on' => 'La date d\'échéance de l\'opération n\'est pas le ":value"', + 'search_modifier_payment_date_before' => 'La date de paiement de l\'opération est le ":value" ou avant', + 'search_modifier_payment_date_after' => 'La date de paiement de l\'opération est le ":value" ou après', + 'search_modifier_invoice_date_on' => 'La date de facturation de l\'opération est le ":value"', + 'search_modifier_not_invoice_date_on' => 'La date de facturation de l\'opération n\'est pas le ":value"', + 'search_modifier_invoice_date_before' => 'La date de facturation de l\'opération est le ":value" ou avant', + 'search_modifier_invoice_date_after' => 'La date de facturation de l\'opération est le ":value" ou après', + 'search_modifier_created_at_on' => 'L\'opération a été créée le ":value"', + 'search_modifier_not_created_at_on' => 'L\'opération n\'a pas été créée le ":value"', + 'search_modifier_created_at_before' => 'L\'opération a été créée le ":value" ou avant', + 'search_modifier_created_at_after' => 'L\'opération a été créée le ":value" ou après', + 'search_modifier_updated_at_on' => 'L\'opération a été mise à jour le ":value"', + 'search_modifier_not_updated_at_on' => 'L\'opération n\'a pas été mise à jour pour la dernière fois le ":value"', + 'search_modifier_updated_at_before' => 'L\'opération a été mise à jour le ":value" ou avant', + 'search_modifier_updated_at_after' => 'L\'opération a été mise à jour le ":value" ou après', - 'search_modifier_attachment_name_is' => 'Une pièce jointe se nomme ":value"', - 'search_modifier_attachment_name_contains' => 'Le nom d\'une pièce jointe contient ":value"', - 'search_modifier_attachment_name_starts' => 'Le nom d\'une pièce jointe commence par ":value"', - 'search_modifier_attachment_name_ends' => 'Le nom d\'une pièce jointe se termine par ":value"', - 'search_modifier_attachment_notes_are' => 'Les notes d\'une pièce jointe sont ":value"', - 'search_modifier_attachment_notes_contains' => 'Les notes d\'une pièce jointe contiennent ":value"', - 'search_modifier_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":value"', - 'search_modifier_attachment_notes_ends' => 'Les notes d\'une pièce jointe se terminent par ":value"', - 'search_modifier_not_attachment_name_is' => 'Une pièce jointe ne se nomme pas ":value"', - 'search_modifier_not_attachment_name_contains' => 'Les notes d\'une pièce jointe ne contiennent pas ":value"', - 'search_modifier_not_attachment_name_starts' => 'Les notes d\'une pièce jointe ne commencent pas par ":value"', - 'search_modifier_not_attachment_name_ends' => 'Le nom d\'une pièce jointe ne se termine pas par ":value"', - 'search_modifier_not_attachment_notes_are' => 'Les notes d\'une pièce jointe ne sont pas ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Les notes d\'une pièce jointe ne contiennent pas ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Les notes d\'une pièce jointe ne se terminent pas par ":value"', - 'search_modifier_sepa_ct_is' => 'Le virement SEPA est ":value"', - 'update_rule_from_query' => 'Mettre à jour la règle ":rule" à partir de la requête de recherche', - 'create_rule_from_query' => 'Créer une nouvelle règle à partir de la requête de recherche', - 'rule_from_search_words' => 'Le moteur de règles a du mal à gérer ":string". La règle suggérée qui correspond à votre requête de recherche peut donner des résultats différents. Veuillez vérifier que la règle se déclenche correctement.', + 'search_modifier_attachment_name_is' => 'Une pièce jointe se nomme ":value"', + 'search_modifier_attachment_name_contains' => 'Le nom d\'une pièce jointe contient ":value"', + 'search_modifier_attachment_name_starts' => 'Le nom d\'une pièce jointe commence par ":value"', + 'search_modifier_attachment_name_ends' => 'Le nom d\'une pièce jointe se termine par ":value"', + 'search_modifier_attachment_notes_are' => 'Les notes d\'une pièce jointe sont ":value"', + 'search_modifier_attachment_notes_contains' => 'Les notes d\'une pièce jointe contiennent ":value"', + 'search_modifier_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":value"', + 'search_modifier_attachment_notes_ends' => 'Les notes d\'une pièce jointe se terminent par ":value"', + 'search_modifier_not_attachment_name_is' => 'Une pièce jointe ne se nomme pas ":value"', + 'search_modifier_not_attachment_name_contains' => 'Les notes d\'une pièce jointe ne contiennent pas ":value"', + 'search_modifier_not_attachment_name_starts' => 'Les notes d\'une pièce jointe ne commencent pas par ":value"', + 'search_modifier_not_attachment_name_ends' => 'Le nom d\'une pièce jointe ne se termine pas par ":value"', + 'search_modifier_not_attachment_notes_are' => 'Les notes d\'une pièce jointe ne sont pas ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Les notes d\'une pièce jointe ne contiennent pas ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Les notes d\'une pièce jointe ne se terminent pas par ":value"', + 'search_modifier_sepa_ct_is' => 'Le virement SEPA est ":value"', + 'update_rule_from_query' => 'Mettre à jour la règle ":rule" à partir de la requête de recherche', + 'create_rule_from_query' => 'Créer une nouvelle règle à partir de la requête de recherche', + 'rule_from_search_words' => 'Le moteur de règles a du mal à gérer ":string". La règle suggérée qui correspond à votre requête de recherche peut donner des résultats différents. Veuillez vérifier que la règle se déclenche correctement.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Les modificateurs suivants sont aussi appliqués à la recherche :', - 'general_search_error' => 'Une erreur s\'est produite lors de la recherche. Veuillez vérifier les fichiers journaux pour plus d\'informations.', - 'search_box' => 'Rechercher', - 'search_box_intro' => 'Bienvenue à la fonction de recherche de Firefly III. Entrez votre requête de recherche dans la zone. Assurez-vous de consulter le fichier d’aide parce que la recherche est assez avancée.', - 'search_error' => 'Erreur lors de la recherche', - 'search_searching' => 'Recherche ...', - 'search_results' => 'Résultats de la recherche', + 'modifiers_applies_are' => 'Les modificateurs suivants sont aussi appliqués à la recherche :', + 'general_search_error' => 'Une erreur s\'est produite lors de la recherche. Veuillez vérifier les fichiers journaux pour plus d\'informations.', + 'search_box' => 'Rechercher', + 'search_box_intro' => 'Bienvenue à la fonction de recherche de Firefly III. Entrez votre requête de recherche dans la zone. Assurez-vous de consulter le fichier d’aide parce que la recherche est assez avancée.', + 'search_error' => 'Erreur lors de la recherche', + 'search_searching' => 'Recherche ...', + 'search_results' => 'Résultats de la recherche', // repeat frequencies: - 'repeat_freq_yearly' => 'annuellement', - 'repeat_freq_half-year' => 'semestriel', - 'repeat_freq_quarterly' => 'trimestriel', - 'repeat_freq_monthly' => 'mensuel', - 'repeat_freq_weekly' => 'hebdomadaire', - 'repeat_freq_daily' => 'quotidien', - 'daily' => 'quotidien', - 'weekly' => 'hebdomadaire', - 'quarterly' => 'trimestriel', - 'half-year' => 'semestriel', - 'yearly' => 'annuel', + 'repeat_freq_yearly' => 'annuellement', + 'repeat_freq_half-year' => 'semestriel', + 'repeat_freq_quarterly' => 'trimestriel', + 'repeat_freq_monthly' => 'mensuel', + 'repeat_freq_weekly' => 'hebdomadaire', + 'repeat_freq_daily' => 'quotidien', + 'daily' => 'quotidien', + 'weekly' => 'hebdomadaire', + 'quarterly' => 'trimestriel', + 'half-year' => 'semestriel', + 'yearly' => 'annuel', // rules - 'is_not_rule_trigger' => 'Pas', - 'cannot_fire_inactive_rules' => 'Vous ne pouvez pas exécuter des règles inactives.', - 'show_triggers' => 'Afficher les déclencheurs', - 'show_actions' => 'Afficher les actions', - 'rules' => 'Règles', - 'rule_name' => 'Nom de la règle', - 'rule_triggers' => 'La règle se déclenchera lorsque', - 'rule_actions' => 'La règle va', - 'new_rule' => 'Nouvelle règle', - 'new_rule_group' => 'Nouveau groupe de règles', - 'rule_priority_up' => 'Donner à la règle plus de priorité', - 'rule_priority_down' => 'Donner à la règle moins de priorité', - 'make_new_rule_group' => 'Créer un nouveau groupe de règles', - 'store_new_rule_group' => 'Créer un nouveau groupe de règles', - 'created_new_rule_group' => 'Le nouveau groupe de règles ":title" est créé !', - 'updated_rule_group' => 'Groupe de règles ":title" mis à jour avec succès.', - 'edit_rule_group' => 'Modifier le groupe de règles ":title"', - 'duplicate_rule' => 'Dupliquer la règle ":title"', - 'rule_copy_of' => 'Copie de ":title"', - 'duplicated_rule' => 'Règle ":title" dupliquée en ":newTitle"', - 'delete_rule_group' => 'Supprimer le groupe de règles ":title"', - 'deleted_rule_group' => 'Groupe de règles ":title" supprimé', - 'update_rule_group' => 'Mettre à jour le groupe de règles', - 'no_rules_in_group' => 'Il n’y a pas de règle dans ce groupe', - 'move_rule_group_up' => 'Monter le groupe de règles', - 'move_rule_group_down' => 'Descendre le groupe de règles', - 'save_rules_by_moving' => 'Enregistrer cette règle en la déplaçant dans un autre groupe de règles :|Enregistrer ces règles en les déplaçant dans un autre groupe de règles :', - 'make_new_rule' => 'Créer une nouvelle règle dans le groupe de règles ":title"', - 'make_new_rule_no_group' => 'Créer une nouvelle règle', - 'instructions_rule_from_bill' => "Afin d’associer des opérations à votre nouvelle facture «\u{a0}:name\u{a0}», Firefly III peut créer une règle qui sera automatiquement appliquée sur toutes les opérations déjà enregistrées. Veuillez vérifier les détails ci-après et enregistrer la règle pour que Firefly III associe automatiquement des opérations à votre nouvelle facture.", - 'instructions_rule_from_journal' => 'Créez une règle basée sur une de vos opérations. Complétez ou soumettez le formulaire ci-dessous.', - 'rule_is_strict' => 'règle stricte', - 'rule_is_not_strict' => 'règle non stricte', - 'rule_help_stop_processing' => 'Lorsque vous cochez cette case, les règles suivantes de ce groupe ne seront pas exécutées.', - 'rule_help_strict' => 'En mode strict, TOUS les déclencheurs doivent être activés pour que les actions s\'exécutent. Si décoché, N\'IMPORTE QUEL déclencheur est suffisant pour que les actions soit exécutées.', - 'rule_help_active' => 'Les règles inactives ne se déclencheront jamais.', - 'stored_new_rule' => 'Nouvelle règle créée avec le titre ":title"', - 'deleted_rule' => 'Règle avec le titre ":title" supprimée', - 'store_new_rule' => 'Créer une nouvelle règle', - 'updated_rule' => 'Règle avec le titre ":title" mise à jour', - 'default_rule_group_name' => 'Règles par défaut', - 'default_rule_group_description' => 'Toutes vos règles n\'étant pas dans un groupe particulier.', - 'trigger' => 'Déclencheur', - 'trigger_value' => 'Déclenchement sur valeur', - 'stop_processing_other_triggers' => 'Arrêter le traitement d’autres déclencheurs', - 'add_rule_trigger' => 'Ajouter un nouveau déclencheur', - 'action' => 'Action', - 'action_value' => 'Valeur de l’action', - 'stop_executing_other_actions' => 'Arrêter l’exécution des autres actions', - 'add_rule_action' => 'Ajouter une nouvelle action', - 'edit_rule' => 'Modifier la règle ":title"', - 'delete_rule' => 'Supprimer la règle ":title"', - 'update_rule' => 'Mettre à jour la règle', - 'test_rule_triggers' => 'Voir les opérations correspondantes', - 'warning_no_matching_transactions' => 'Aucune opération trouvée.', - 'warning_no_valid_triggers' => 'Aucun déclencheur valide fourni.', - 'apply_rule_selection' => 'Appliquer la règle ":title" à une sélection de vos opérations', - 'apply_rule_selection_intro' => 'Les règles comme ":title" ne s\'appliquent normalement qu\'aux opérations nouvelles ou mises à jour, mais vous pouvez dire à Firefly III de l’exécuter sur une sélection de vos opérations existantes. Cela peut être utile lorsque vous avez mis à jour une règle et avez besoin que les modifications soient appliquées à l’ensemble de vos autres opérations.', - 'include_transactions_from_accounts' => 'Inclure les opérations depuis ces comptes', - 'include' => 'Inclure ?', - 'applied_rule_selection' => '{0} Aucune opération dans votre sélection n\'a été modifiée par la règle ":title".|[1] Une opération dans votre sélection a été modifiée par la règle ":title".|[2,*] :count opérations dans votre sélection ont été modifiées par la règle ":title".', - 'execute' => 'Exécuter', - 'apply_rule_group_selection' => 'Appliquer le groupe de règles ":title" à une sélection de vos opérations', - 'apply_rule_group_selection_intro' => 'Les groupes de règles comme ":title" ne s\'appliquent normalement qu\'aux opérations nouvelles ou mises à jour, mais vous pouvez dire à Firefly III d\'exécuter toutes les règles de ce groupe sur une sélection de vos opérations existantes. Cela peut être utile lorsque vous avez mis à jour un groupe de règles et avez besoin que les modifications soient appliquées à l’ensemble de vos autres opérations.', - 'applied_rule_group_selection' => 'Le groupe de règles ":title" a été appliqué à votre sélection.', + 'is_not_rule_trigger' => 'Pas', + 'cannot_fire_inactive_rules' => 'Vous ne pouvez pas exécuter des règles inactives.', + 'show_triggers' => 'Afficher les déclencheurs', + 'show_actions' => 'Afficher les actions', + 'rules' => 'Règles', + 'rule_name' => 'Nom de la règle', + 'rule_triggers' => 'La règle se déclenchera lorsque', + 'rule_actions' => 'La règle va', + 'new_rule' => 'Nouvelle règle', + 'new_rule_group' => 'Nouveau groupe de règles', + 'rule_priority_up' => 'Donner à la règle plus de priorité', + 'rule_priority_down' => 'Donner à la règle moins de priorité', + 'make_new_rule_group' => 'Créer un nouveau groupe de règles', + 'store_new_rule_group' => 'Créer un nouveau groupe de règles', + 'created_new_rule_group' => 'Le nouveau groupe de règles ":title" est créé !', + 'updated_rule_group' => 'Groupe de règles ":title" mis à jour avec succès.', + 'edit_rule_group' => 'Modifier le groupe de règles ":title"', + 'duplicate_rule' => 'Dupliquer la règle ":title"', + 'rule_copy_of' => 'Copie de ":title"', + 'duplicated_rule' => 'Règle ":title" dupliquée en ":newTitle"', + 'delete_rule_group' => 'Supprimer le groupe de règles ":title"', + 'deleted_rule_group' => 'Groupe de règles ":title" supprimé', + 'update_rule_group' => 'Mettre à jour le groupe de règles', + 'no_rules_in_group' => 'Il n’y a pas de règle dans ce groupe', + 'move_rule_group_up' => 'Monter le groupe de règles', + 'move_rule_group_down' => 'Descendre le groupe de règles', + 'save_rules_by_moving' => 'Enregistrer cette règle en la déplaçant dans un autre groupe de règles :|Enregistrer ces règles en les déplaçant dans un autre groupe de règles :', + 'make_new_rule' => 'Créer une nouvelle règle dans le groupe de règles ":title"', + 'make_new_rule_no_group' => 'Créer une nouvelle règle', + 'instructions_rule_from_bill' => "Afin d’associer des opérations à votre nouvelle facture «\u{a0}:name\u{a0}», Firefly III peut créer une règle qui sera automatiquement appliquée sur toutes les opérations déjà enregistrées. Veuillez vérifier les détails ci-après et enregistrer la règle pour que Firefly III associe automatiquement des opérations à votre nouvelle facture.", + 'instructions_rule_from_journal' => 'Créez une règle basée sur une de vos opérations. Complétez ou soumettez le formulaire ci-dessous.', + 'rule_is_strict' => 'règle stricte', + 'rule_is_not_strict' => 'règle non stricte', + 'rule_help_stop_processing' => 'Lorsque vous cochez cette case, les règles suivantes de ce groupe ne seront pas exécutées.', + 'rule_help_strict' => 'En mode strict, TOUS les déclencheurs doivent être activés pour que les actions s\'exécutent. Si décoché, N\'IMPORTE QUEL déclencheur est suffisant pour que les actions soit exécutées.', + 'rule_help_active' => 'Les règles inactives ne se déclencheront jamais.', + 'stored_new_rule' => 'Nouvelle règle créée avec le titre ":title"', + 'deleted_rule' => 'Règle avec le titre ":title" supprimée', + 'store_new_rule' => 'Créer une nouvelle règle', + 'updated_rule' => 'Règle avec le titre ":title" mise à jour', + 'default_rule_group_name' => 'Règles par défaut', + 'default_rule_group_description' => 'Toutes vos règles n\'étant pas dans un groupe particulier.', + 'trigger' => 'Déclencheur', + 'trigger_value' => 'Déclenchement sur valeur', + 'stop_processing_other_triggers' => 'Arrêter le traitement d’autres déclencheurs', + 'add_rule_trigger' => 'Ajouter un nouveau déclencheur', + 'action' => 'Action', + 'action_value' => 'Valeur de l’action', + 'stop_executing_other_actions' => 'Arrêter l’exécution des autres actions', + 'add_rule_action' => 'Ajouter une nouvelle action', + 'edit_rule' => 'Modifier la règle ":title"', + 'delete_rule' => 'Supprimer la règle ":title"', + 'update_rule' => 'Mettre à jour la règle', + 'test_rule_triggers' => 'Voir les opérations correspondantes', + 'warning_no_matching_transactions' => 'Aucune opération trouvée.', + 'warning_no_valid_triggers' => 'Aucun déclencheur valide fourni.', + 'apply_rule_selection' => 'Appliquer la règle ":title" à une sélection de vos opérations', + 'apply_rule_selection_intro' => 'Les règles comme ":title" ne s\'appliquent normalement qu\'aux opérations nouvelles ou mises à jour, mais vous pouvez dire à Firefly III de l’exécuter sur une sélection de vos opérations existantes. Cela peut être utile lorsque vous avez mis à jour une règle et avez besoin que les modifications soient appliquées à l’ensemble de vos autres opérations.', + 'include_transactions_from_accounts' => 'Inclure les opérations depuis ces comptes', + 'include' => 'Inclure ?', + 'applied_rule_selection' => '{0} Aucune opération dans votre sélection n\'a été modifiée par la règle ":title".|[1] Une opération dans votre sélection a été modifiée par la règle ":title".|[2,*] :count opérations dans votre sélection ont été modifiées par la règle ":title".', + 'execute' => 'Exécuter', + 'apply_rule_group_selection' => 'Appliquer le groupe de règles ":title" à une sélection de vos opérations', + 'apply_rule_group_selection_intro' => 'Les groupes de règles comme ":title" ne s\'appliquent normalement qu\'aux opérations nouvelles ou mises à jour, mais vous pouvez dire à Firefly III d\'exécuter toutes les règles de ce groupe sur une sélection de vos opérations existantes. Cela peut être utile lorsque vous avez mis à jour un groupe de règles et avez besoin que les modifications soient appliquées à l’ensemble de vos autres opérations.', + 'applied_rule_group_selection' => 'Le groupe de règles ":title" a été appliqué à votre sélection.', // actions and triggers - 'rule_trigger_store_journal' => 'Lorsqu’une opération est créée', - 'rule_trigger_update_journal' => 'Lorsqu’une opération est mise à jour', - 'rule_trigger_user_action' => 'L\'action de l’utilisateur est ":trigger_value"', + 'rule_trigger_store_journal' => 'Lorsqu’une opération est créée', + 'rule_trigger_update_journal' => 'Lorsqu’une opération est mise à jour', + 'rule_trigger_user_action' => 'L\'action de l’utilisateur est ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Le nom du compte source commence par..', - 'rule_trigger_source_account_starts' => 'Le nom du compte source commence par ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Le nom du compte source se termine par..', - 'rule_trigger_source_account_ends' => 'Le nom du compte source se termine par ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Le nom du compte source est..', - 'rule_trigger_source_account_is' => 'Le nom du compte source est ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Le nom du compte source contient..', - 'rule_trigger_source_account_contains' => 'Le nom du compte source contient ":trigger_value"', - 'rule_trigger_account_id_choice' => 'L\'un des deux comptes a pour identifiant..', - 'rule_trigger_account_id' => 'L\'un des deux comptes a pour identifiant :trigger_value', - 'rule_trigger_source_account_id_choice' => 'L\'ID du compte source est exactement..', - 'rule_trigger_source_account_id' => 'L\'ID du compte source est exactement :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'L\'ID du compte de destination est exactement..', - 'rule_trigger_destination_account_id' => 'L\'ID du compte de destination est exactement :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'L\'un des deux comptes est en espèces', - 'rule_trigger_account_is_cash' => 'L\'un des deux comptes est en espèces', - 'rule_trigger_source_is_cash_choice' => 'Le compte source est un compte (d\'espèces)', - 'rule_trigger_source_is_cash' => 'Le compte source est un compte (d\'espèces)', - 'rule_trigger_destination_is_cash_choice' => 'Le compte de destination est un compte (d\'espèces)', - 'rule_trigger_destination_is_cash' => 'Le compte de destination est un compte (d\'espèces)', - 'rule_trigger_source_account_nr_starts_choice' => 'Le numéro / IBAN du compte source commence par..', - 'rule_trigger_source_account_nr_starts' => 'Le numéro / IBAN du compte source commence par ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Le numéro / IBAN du compte source se termine par..', - 'rule_trigger_source_account_nr_ends' => 'Le numéro / IBAN du compte source se termine par ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Le numéro / IBAN du compte source est..', - 'rule_trigger_source_account_nr_is' => 'Le numéro / IBAN du compte source est ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Le numéro / IBAN du compte source contient..', - 'rule_trigger_source_account_nr_contains' => 'Le numéro / IBAN du compte source contient ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Le nom du compte de destination commence par..', - 'rule_trigger_destination_account_starts' => 'Le nom du compte de destination commence par ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Le nom du compte de destination se termine par..', - 'rule_trigger_destination_account_ends' => 'Le nom du compte de destination se termine par ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Le nom du compte de destination est..', - 'rule_trigger_destination_account_is' => 'Le nom du compte de destination est ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Le nom du compte de destination contient..', - 'rule_trigger_destination_account_contains' => 'Le nom du compte de destination contient ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Le numéro / IBAN du compte de destination commence par..', - 'rule_trigger_destination_account_nr_starts' => 'Le numéro / IBAN du compte de destination commence par ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Le numéro / IBAN du compte de destination se termine par..', - 'rule_trigger_destination_account_nr_ends' => 'Le numéro / IBAN du compte de destination se termine par.. ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Le numéro / IBAN du compte de destination est..', - 'rule_trigger_destination_account_nr_is' => 'Le numéro / IBAN du compte de destination est ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Le numéro / IBAN du compte de destination contient..', - 'rule_trigger_destination_account_nr_contains' => 'Le numéro / IBAN du compte de destination contient ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'L\'opération est du type..', - 'rule_trigger_transaction_type' => 'L\'opération est du type ":trigger_value"', - 'rule_trigger_category_is_choice' => 'La catégorie est..', - 'rule_trigger_category_is' => 'La catégorie est ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Le montant est inférieur ou égal à ..', - 'rule_trigger_amount_less' => 'Le montant est inférieur ou égal à :trigger_value', - 'rule_trigger_amount_is_choice' => 'Le montant est..', - 'rule_trigger_amount_is' => 'Le montant est :trigger_value', - 'rule_trigger_amount_more_choice' => 'Le montant est supérieur ou égal à..', - 'rule_trigger_amount_more' => 'Le montant est supérieur ou égal à :trigger_value', - 'rule_trigger_description_starts_choice' => 'Le description commence par..', - 'rule_trigger_description_starts' => 'La description commence par ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'La description se termine par..', - 'rule_trigger_description_ends' => 'La description se termine par ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'La description contient..', - 'rule_trigger_description_contains' => 'La description contient ":trigger_value"', - 'rule_trigger_description_is_choice' => 'La description est..', - 'rule_trigger_description_is' => 'La description est ":trigger_value"', - 'rule_trigger_date_on_choice' => 'La date de l\'opération est..', - 'rule_trigger_date_on' => 'La date de l\'opération est.. ":trigger_value"', - 'rule_trigger_date_before_choice' => 'La date de l\'opération se situe avant..', - 'rule_trigger_date_before' => 'La date de l\'opération se situe avant ":trigger_value"', - 'rule_trigger_date_after_choice' => 'La date de l\'opération se situe après..', - 'rule_trigger_date_after' => 'La date de l\'opération se situe après ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'L\'opération a été créée le..', - 'rule_trigger_created_at_on' => 'L\'opération a été créée le ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'L\'opération a été mise à jour pour la dernière fois le..', - 'rule_trigger_updated_at_on' => 'L\'opération a été mise à jour pour la dernière fois le ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Le budget est..', - 'rule_trigger_budget_is' => 'Le budget est ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Un tag est..', - 'rule_trigger_tag_is' => 'Un tag est ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'N\'importe quel tag contient..', - 'rule_trigger_tag_contains' => 'N\'importe quel tag contient ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'N\'importe quel tag se termine par..', - 'rule_trigger_tag_ends' => 'N\'importe quel tag se termine par ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'N\'importe quel tag commence par..', - 'rule_trigger_tag_starts' => 'N\'importe quel tag commence par ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'La devise de l\'opération est..', - 'rule_trigger_currency_is' => 'La devise de l\'opération est ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'La devise étrangère de l\'opération est..', - 'rule_trigger_foreign_currency_is' => 'La devise étrangère de l\'opération est ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'A au moins autant de pièces jointes', - 'rule_trigger_has_attachments' => "A au moins\u{a0}:trigger_value pièce(s) jointe(s)", - 'rule_trigger_has_no_category_choice' => 'N\'a pas de catégorie', - 'rule_trigger_has_no_category' => 'L\'opération n\'a pas de catégorie', - 'rule_trigger_has_any_category_choice' => 'A une catégorie', - 'rule_trigger_has_any_category' => 'L\'opération comporte une catégorie', - 'rule_trigger_has_no_budget_choice' => 'N\'a pas de budget', - 'rule_trigger_has_no_budget' => 'L\'opération n\'a pas de budget', - 'rule_trigger_has_any_budget_choice' => 'A un budget', - 'rule_trigger_has_any_budget' => 'L\'opération a un(des) budget(s)', - 'rule_trigger_has_no_bill_choice' => 'N\'a pas de facture', - 'rule_trigger_has_no_bill' => 'L\'opération n\'a pas de facture', - 'rule_trigger_has_any_bill_choice' => 'A (au moins) une facture', - 'rule_trigger_has_any_bill' => 'L\'opération transaction a (au moins) une facture', - 'rule_trigger_has_no_tag_choice' => 'N\'a pas de tag·s', - 'rule_trigger_has_no_tag' => 'L\'opération n\'a pas de tag·s', - 'rule_trigger_has_any_tag_choice' => 'Dispose d\'un ou de plusieurs tags', - 'rule_trigger_has_any_tag' => 'L\'opération comporte un ou plusieurs tags', - 'rule_trigger_any_notes_choice' => 'A une (ou plusieurs) note(s)', - 'rule_trigger_any_notes' => 'L\'opération a une (ou plusieurs) note(s)', - 'rule_trigger_no_notes_choice' => 'N\'a pas de note', - 'rule_trigger_no_notes' => 'L\'opération n\'a pas de note', - 'rule_trigger_notes_is_choice' => 'Les notes sont..', - 'rule_trigger_notes_is' => 'Les notes sont ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Les notes contiennent..', - 'rule_trigger_notes_contains' => 'Les notes contiennent ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Les notes commencent par..', - 'rule_trigger_notes_starts' => 'Les notes commencent par ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Les notes se terminent par..', - 'rule_trigger_notes_ends' => 'Les notes se finissent par ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'La facture est..', - 'rule_trigger_bill_is' => 'La facture est ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'L\'ID externe est..', - 'rule_trigger_external_id_is' => 'L\'ID externe est ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'La référence interne est..', - 'rule_trigger_internal_reference_is' => 'La référence interne est ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'L\'ID du journal d\'opérations est..', - 'rule_trigger_journal_id' => 'L\'ID du journal d\'opérations est ":trigger_value"', - 'rule_trigger_any_external_url' => 'La transaction a une (quelconque) URL externe', - 'rule_trigger_any_external_url_choice' => 'La transaction a une (quelconque) URL externe', - 'rule_trigger_any_external_id' => 'La transaction a un ID externe (quelconque)', - 'rule_trigger_any_external_id_choice' => 'La transaction a un ID externe (quelconque)', - 'rule_trigger_no_external_url_choice' => 'L\'opération n\'a pas d\'URL externe', - 'rule_trigger_no_external_url' => 'L\'opération n\'a pas d\'URL externe', - 'rule_trigger_no_external_id_choice' => 'La transaction n\'a pas d\'ID externe', - 'rule_trigger_no_external_id' => 'La transaction n\'a pas d\'ID externe', - 'rule_trigger_id_choice' => 'L\'ID de l\'opération est..', - 'rule_trigger_id' => 'L\'ID de l\'opération est ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'Le virement SEPA est..', - 'rule_trigger_sepa_ct_is' => 'Le virement SEPA est ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Le nom du compte source commence par..', + 'rule_trigger_source_account_starts' => 'Le nom du compte source commence par ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Le nom du compte source se termine par..', + 'rule_trigger_source_account_ends' => 'Le nom du compte source se termine par ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Le nom du compte source est..', + 'rule_trigger_source_account_is' => 'Le nom du compte source est ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Le nom du compte source contient..', + 'rule_trigger_source_account_contains' => 'Le nom du compte source contient ":trigger_value"', + 'rule_trigger_account_id_choice' => 'L\'un des deux comptes a pour identifiant..', + 'rule_trigger_account_id' => 'L\'un des deux comptes a pour identifiant :trigger_value', + 'rule_trigger_source_account_id_choice' => 'L\'ID du compte source est exactement..', + 'rule_trigger_source_account_id' => 'L\'ID du compte source est exactement :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'L\'ID du compte de destination est exactement..', + 'rule_trigger_destination_account_id' => 'L\'ID du compte de destination est exactement :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'L\'un des deux comptes est en espèces', + 'rule_trigger_account_is_cash' => 'L\'un des deux comptes est en espèces', + 'rule_trigger_source_is_cash_choice' => 'Le compte source est un compte (d\'espèces)', + 'rule_trigger_source_is_cash' => 'Le compte source est un compte (d\'espèces)', + 'rule_trigger_destination_is_cash_choice' => 'Le compte de destination est un compte (d\'espèces)', + 'rule_trigger_destination_is_cash' => 'Le compte de destination est un compte (d\'espèces)', + 'rule_trigger_source_account_nr_starts_choice' => 'Le numéro / IBAN du compte source commence par..', + 'rule_trigger_source_account_nr_starts' => 'Le numéro / IBAN du compte source commence par ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Le numéro / IBAN du compte source se termine par..', + 'rule_trigger_source_account_nr_ends' => 'Le numéro / IBAN du compte source se termine par ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Le numéro / IBAN du compte source est..', + 'rule_trigger_source_account_nr_is' => 'Le numéro / IBAN du compte source est ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Le numéro / IBAN du compte source contient..', + 'rule_trigger_source_account_nr_contains' => 'Le numéro / IBAN du compte source contient ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Le nom du compte de destination commence par..', + 'rule_trigger_destination_account_starts' => 'Le nom du compte de destination commence par ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Le nom du compte de destination se termine par..', + 'rule_trigger_destination_account_ends' => 'Le nom du compte de destination se termine par ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Le nom du compte de destination est..', + 'rule_trigger_destination_account_is' => 'Le nom du compte de destination est ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Le nom du compte de destination contient..', + 'rule_trigger_destination_account_contains' => 'Le nom du compte de destination contient ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Le numéro / IBAN du compte de destination commence par..', + 'rule_trigger_destination_account_nr_starts' => 'Le numéro / IBAN du compte de destination commence par ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Le numéro / IBAN du compte de destination se termine par..', + 'rule_trigger_destination_account_nr_ends' => 'Le numéro / IBAN du compte de destination se termine par.. ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Le numéro / IBAN du compte de destination est..', + 'rule_trigger_destination_account_nr_is' => 'Le numéro / IBAN du compte de destination est ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Le numéro / IBAN du compte de destination contient..', + 'rule_trigger_destination_account_nr_contains' => 'Le numéro / IBAN du compte de destination contient ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'L\'opération est du type..', + 'rule_trigger_transaction_type' => 'L\'opération est du type ":trigger_value"', + 'rule_trigger_category_is_choice' => 'La catégorie est..', + 'rule_trigger_category_is' => 'La catégorie est ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Le montant est inférieur ou égal à ..', + 'rule_trigger_amount_less' => 'Le montant est inférieur ou égal à :trigger_value', + 'rule_trigger_amount_is_choice' => 'Le montant est..', + 'rule_trigger_amount_is' => 'Le montant est :trigger_value', + 'rule_trigger_amount_more_choice' => 'Le montant est supérieur ou égal à..', + 'rule_trigger_amount_more' => 'Le montant est supérieur ou égal à :trigger_value', + 'rule_trigger_description_starts_choice' => 'Le description commence par..', + 'rule_trigger_description_starts' => 'La description commence par ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'La description se termine par..', + 'rule_trigger_description_ends' => 'La description se termine par ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'La description contient..', + 'rule_trigger_description_contains' => 'La description contient ":trigger_value"', + 'rule_trigger_description_is_choice' => 'La description est..', + 'rule_trigger_description_is' => 'La description est ":trigger_value"', + 'rule_trigger_date_on_choice' => 'La date de l\'opération est..', + 'rule_trigger_date_on' => 'La date de l\'opération est.. ":trigger_value"', + 'rule_trigger_date_before_choice' => 'La date de l\'opération se situe avant..', + 'rule_trigger_date_before' => 'La date de l\'opération se situe avant ":trigger_value"', + 'rule_trigger_date_after_choice' => 'La date de l\'opération se situe après..', + 'rule_trigger_date_after' => 'La date de l\'opération se situe après ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'L\'opération a été créée le..', + 'rule_trigger_created_at_on' => 'L\'opération a été créée le ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'L\'opération a été mise à jour pour la dernière fois le..', + 'rule_trigger_updated_at_on' => 'L\'opération a été mise à jour pour la dernière fois le ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Le budget est..', + 'rule_trigger_budget_is' => 'Le budget est ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Un tag est..', + 'rule_trigger_tag_is' => 'Un tag est ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'N\'importe quel tag contient..', + 'rule_trigger_tag_contains' => 'N\'importe quel tag contient ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'N\'importe quel tag se termine par..', + 'rule_trigger_tag_ends' => 'N\'importe quel tag se termine par ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'N\'importe quel tag commence par..', + 'rule_trigger_tag_starts' => 'N\'importe quel tag commence par ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'La devise de l\'opération est..', + 'rule_trigger_currency_is' => 'La devise de l\'opération est ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'La devise étrangère de l\'opération est..', + 'rule_trigger_foreign_currency_is' => 'La devise étrangère de l\'opération est ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'A au moins autant de pièces jointes', + 'rule_trigger_has_attachments' => "A au moins\u{a0}:trigger_value pièce(s) jointe(s)", + 'rule_trigger_has_no_category_choice' => 'N\'a pas de catégorie', + 'rule_trigger_has_no_category' => 'L\'opération n\'a pas de catégorie', + 'rule_trigger_has_any_category_choice' => 'A une catégorie', + 'rule_trigger_has_any_category' => 'L\'opération comporte une catégorie', + 'rule_trigger_has_no_budget_choice' => 'N\'a pas de budget', + 'rule_trigger_has_no_budget' => 'L\'opération n\'a pas de budget', + 'rule_trigger_has_any_budget_choice' => 'A un budget', + 'rule_trigger_has_any_budget' => 'L\'opération a un(des) budget(s)', + 'rule_trigger_has_no_bill_choice' => 'N\'a pas de facture', + 'rule_trigger_has_no_bill' => 'L\'opération n\'a pas de facture', + 'rule_trigger_has_any_bill_choice' => 'A (au moins) une facture', + 'rule_trigger_has_any_bill' => 'L\'opération transaction a (au moins) une facture', + 'rule_trigger_has_no_tag_choice' => 'N\'a pas de tag·s', + 'rule_trigger_has_no_tag' => 'L\'opération n\'a pas de tag·s', + 'rule_trigger_has_any_tag_choice' => 'Dispose d\'un ou de plusieurs tags', + 'rule_trigger_has_any_tag' => 'L\'opération comporte un ou plusieurs tags', + 'rule_trigger_any_notes_choice' => 'A une (ou plusieurs) note(s)', + 'rule_trigger_any_notes' => 'L\'opération a une (ou plusieurs) note(s)', + 'rule_trigger_no_notes_choice' => 'N\'a pas de note', + 'rule_trigger_no_notes' => 'L\'opération n\'a pas de note', + 'rule_trigger_notes_is_choice' => 'Les notes sont..', + 'rule_trigger_notes_is' => 'Les notes sont ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Les notes contiennent..', + 'rule_trigger_notes_contains' => 'Les notes contiennent ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Les notes commencent par..', + 'rule_trigger_notes_starts' => 'Les notes commencent par ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Les notes se terminent par..', + 'rule_trigger_notes_ends' => 'Les notes se finissent par ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'La facture est..', + 'rule_trigger_bill_is' => 'La facture est ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'L\'ID externe est..', + 'rule_trigger_external_id_is' => 'L\'ID externe est ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'La référence interne est..', + 'rule_trigger_internal_reference_is' => 'La référence interne est ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'L\'ID du journal d\'opérations est..', + 'rule_trigger_journal_id' => 'L\'ID du journal d\'opérations est ":trigger_value"', + 'rule_trigger_any_external_url' => 'La transaction a une (quelconque) URL externe', + 'rule_trigger_any_external_url_choice' => 'La transaction a une (quelconque) URL externe', + 'rule_trigger_any_external_id' => 'La transaction a un ID externe (quelconque)', + 'rule_trigger_any_external_id_choice' => 'La transaction a un ID externe (quelconque)', + 'rule_trigger_no_external_url_choice' => 'L\'opération n\'a pas d\'URL externe', + 'rule_trigger_no_external_url' => 'L\'opération n\'a pas d\'URL externe', + 'rule_trigger_no_external_id_choice' => 'La transaction n\'a pas d\'ID externe', + 'rule_trigger_no_external_id' => 'La transaction n\'a pas d\'ID externe', + 'rule_trigger_id_choice' => 'L\'ID de l\'opération est..', + 'rule_trigger_id' => 'L\'ID de l\'opération est ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'Le virement SEPA est..', + 'rule_trigger_sepa_ct_is' => 'Le virement SEPA est ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'L\'action de l’utilisateur est ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Aucun tag n\'est..', - 'rule_trigger_tag_is_not' => 'Aucun tag n\'est ":trigger_value"', - 'rule_trigger_account_is_choice' => 'L\'un des comptes est exactement..', - 'rule_trigger_account_is' => 'L\'un des comptes est exactement ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'L\'un des comptes contient..', - 'rule_trigger_account_contains' => 'L\'un des comptes contient ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'L\'un des comptes se termine par..', - 'rule_trigger_account_ends' => 'L\'un des comptes se termine par ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'L\'un des comptes commence par..', - 'rule_trigger_account_starts' => 'L\'un des comptes commence par ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'L\'un des numéros de compte / IBAN est..', - 'rule_trigger_account_nr_is' => 'L\'un des numéros de compte / IBAN est ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'L\'un des numéros de compte / IBAN contient..', - 'rule_trigger_account_nr_contains' => 'L\'un des numéros de compte / IBAN contient ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'L\'un des numéros de compte / IBAN se termine par..', - 'rule_trigger_account_nr_ends' => 'L\'un des numéros de compte / IBAN se termine par ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'L\'un des numéros de compte / IBAN commence par..', - 'rule_trigger_account_nr_starts' => 'L\'un des numéros de compte / IBAN commence par ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'La catégorie contient..', - 'rule_trigger_category_contains' => 'La catégorie contient ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'La catégorie se termine par..', - 'rule_trigger_category_ends' => 'La catégorie se termine par ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'La catégorie commence par..', - 'rule_trigger_category_starts' => 'La catégorie commence par ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Le budget contient..', - 'rule_trigger_budget_contains' => 'Le budget contient ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Le budget se termine par..', - 'rule_trigger_budget_ends' => 'Le budget se termine par «:trigger_value»', - 'rule_trigger_budget_starts_choice' => 'Le budget commence par..', - 'rule_trigger_budget_starts' => 'Le budget commence par «:trigger_value»', - 'rule_trigger_bill_contains_choice' => 'La facture contient..', - 'rule_trigger_bill_contains' => 'La facture contient ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'La facture se termine par..', - 'rule_trigger_bill_ends' => 'La facture se termine par «:trigger_value»', - 'rule_trigger_bill_starts_choice' => 'La facture commence par..', - 'rule_trigger_bill_starts' => 'La facture commence par «:trigger_value»', - 'rule_trigger_external_id_contains_choice' => 'L\'ID externe contient..', - 'rule_trigger_external_id_contains' => 'L\'ID externe contient ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'L\'ID externe se termine par..', - 'rule_trigger_external_id_ends' => 'L\'ID externe se termine par ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'L\'ID externe commence par..', - 'rule_trigger_external_id_starts' => 'L\'ID externe commence par ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'La référence interne contient..', - 'rule_trigger_internal_reference_contains' => 'La référence interne contient ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'La référence interne se termine par..', - 'rule_trigger_internal_reference_ends' => 'La référence interne se termine par ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'La référence interne commence par..', - 'rule_trigger_internal_reference_starts' => 'La référence interne commence par «:trigger_value»', - 'rule_trigger_external_url_is_choice' => 'L\'URL externe est..', - 'rule_trigger_external_url_is' => 'L\'URL externe est ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'L\'URL externe contient..', - 'rule_trigger_external_url_contains' => 'L\'URL externe contient ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'L\'URL externe se termine par..', - 'rule_trigger_external_url_ends' => 'L\'URL externe se termine par ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'L\'URL externe commence par..', - 'rule_trigger_external_url_starts' => 'L\'URL externe commence par ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'N\'a pas de pièce jointe', - 'rule_trigger_has_no_attachments' => 'L\'opération n\'a pas de pièces jointes', - 'rule_trigger_recurrence_id_choice' => 'L\'ID de l\'opération récurrente est..', - 'rule_trigger_recurrence_id' => 'L\'ID de l\'opération récurrente est «:trigger_value»', - 'rule_trigger_interest_date_on_choice' => 'La date d\'intérêt est le..', - 'rule_trigger_interest_date_on' => 'La date d\'intérêt est le ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'La date d\'intérêt est antérieure à..', - 'rule_trigger_interest_date_before' => 'La date d\'intérêt est antérieure à ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'La date d\'intérêt est postérieure à..', - 'rule_trigger_interest_date_after' => 'La date d\'intérêt est après ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'La date d\'enregistrement est le..', - 'rule_trigger_book_date_on' => 'La date d\'enregistrement est le ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'La date d\'enregistrement est avant..', - 'rule_trigger_book_date_before' => 'La date d\'enregistrement est avant ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'La date d\'enregistrement est après..', - 'rule_trigger_book_date_after' => 'La date d\'enregistrement est après le ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'La date de traitement est le..', - 'rule_trigger_process_date_on' => 'La date de traitement est le ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'La date de traitement est antérieure à..', - 'rule_trigger_process_date_before' => 'La date de traitement est antérieure au ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'La date de traitement est postérieure au..', - 'rule_trigger_process_date_after' => 'La date de traitement est postérieure au ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'La date d\'échéance est le..', - 'rule_trigger_due_date_on' => 'La date d\'échéance est le ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'La date d\'échéance est avant..', - 'rule_trigger_due_date_before' => 'La date d\'échéance est avant le ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'La date d\'échéance est après..', - 'rule_trigger_due_date_after' => 'La date d\'échéance est après le ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'La date de paiement est le..', - 'rule_trigger_payment_date_on' => 'La date de paiement est le ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'La date de paiement est avant le..', - 'rule_trigger_payment_date_before' => 'La date de paiement est avant le ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'La date de paiement est après..', - 'rule_trigger_payment_date_after' => 'La date de paiement est après le ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'La date de facturation est..', - 'rule_trigger_invoice_date_on' => 'La date de facturation est le ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'La date de facturation est avant..', - 'rule_trigger_invoice_date_before' => 'La date de facturation est avant le ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'La date de facturation est après..', - 'rule_trigger_invoice_date_after' => 'La date de facturation est après le ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'L\'opération a été créée avant..', - 'rule_trigger_created_at_before' => 'L\'opération a été créée avant le ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'L\'opération a été créée après..', - 'rule_trigger_created_at_after' => 'L\'opération a été créée après le ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'L\'opération a été mise à jour pour la dernière fois avant..', - 'rule_trigger_updated_at_before' => 'L\'opération a été mise à jour pour la dernière fois avant le ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'L\'opération a été mise à jour pour la dernière fois après..', - 'rule_trigger_updated_at_after' => 'L\'opération a été mise à jour pour la dernière fois après le ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Le montant en devise étrangère est exactement..', - 'rule_trigger_foreign_amount_is' => 'Le montant en devise étrangère est exactement ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Le montant en devise étrangère est inférieur à..', - 'rule_trigger_foreign_amount_less' => 'Le montant en devise étrangère est inférieur à ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Le montant en devise étrangère est supérieur à..', - 'rule_trigger_foreign_amount_more' => 'Le montant en devise étrangère est supérieur à ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Une pièce jointe se nomme..', - 'rule_trigger_attachment_name_is' => 'Une pièce jointe se nomme ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Le nom d\'une pièce jointe contient..', - 'rule_trigger_attachment_name_contains' => 'Le nom d\'une pièce jointe contient ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Le nom d\'une pièce jointe commence par..', - 'rule_trigger_attachment_name_starts' => 'Le nom d\'une pièce jointe commence par ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Le nom d\'une pièce jointe se termine par..', - 'rule_trigger_attachment_name_ends' => 'Le nom d\'une pièce jointe se termine par ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Les notes d\'une pièce jointe sont..', - 'rule_trigger_attachment_notes_are' => 'Les notes d\'une pièce jointe sont ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Les notes d\'une pièce jointe contiennent..', - 'rule_trigger_attachment_notes_contains' => 'Les notes d\'une pièce jointe contiennent ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Les notes d\'une pièce jointe commencent par..', - 'rule_trigger_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Les notes d\'une pièce jointe se terminent par..', - 'rule_trigger_attachment_notes_ends' => 'Les notes d\'une pièce jointe se termine par ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'L\'opération est rapprochée', - 'rule_trigger_reconciled' => 'L\'opération est rapprochée', - 'rule_trigger_exists_choice' => 'N\'importe quelle opération correspond (!)', - 'rule_trigger_exists' => 'N\'importe quelle opération correspond', + 'rule_trigger_user_action_choice' => 'L\'action de l’utilisateur est ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Aucun tag n\'est..', + 'rule_trigger_tag_is_not' => 'Aucun tag n\'est ":trigger_value"', + 'rule_trigger_account_is_choice' => 'L\'un des comptes est exactement..', + 'rule_trigger_account_is' => 'L\'un des comptes est exactement ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'L\'un des comptes contient..', + 'rule_trigger_account_contains' => 'L\'un des comptes contient ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'L\'un des comptes se termine par..', + 'rule_trigger_account_ends' => 'L\'un des comptes se termine par ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'L\'un des comptes commence par..', + 'rule_trigger_account_starts' => 'L\'un des comptes commence par ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'L\'un des numéros de compte / IBAN est..', + 'rule_trigger_account_nr_is' => 'L\'un des numéros de compte / IBAN est ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'L\'un des numéros de compte / IBAN contient..', + 'rule_trigger_account_nr_contains' => 'L\'un des numéros de compte / IBAN contient ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'L\'un des numéros de compte / IBAN se termine par..', + 'rule_trigger_account_nr_ends' => 'L\'un des numéros de compte / IBAN se termine par ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'L\'un des numéros de compte / IBAN commence par..', + 'rule_trigger_account_nr_starts' => 'L\'un des numéros de compte / IBAN commence par ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'La catégorie contient..', + 'rule_trigger_category_contains' => 'La catégorie contient ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'La catégorie se termine par..', + 'rule_trigger_category_ends' => 'La catégorie se termine par ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'La catégorie commence par..', + 'rule_trigger_category_starts' => 'La catégorie commence par ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Le budget contient..', + 'rule_trigger_budget_contains' => 'Le budget contient ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Le budget se termine par..', + 'rule_trigger_budget_ends' => 'Le budget se termine par «:trigger_value»', + 'rule_trigger_budget_starts_choice' => 'Le budget commence par..', + 'rule_trigger_budget_starts' => 'Le budget commence par «:trigger_value»', + 'rule_trigger_bill_contains_choice' => 'La facture contient..', + 'rule_trigger_bill_contains' => 'La facture contient ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'La facture se termine par..', + 'rule_trigger_bill_ends' => 'La facture se termine par «:trigger_value»', + 'rule_trigger_bill_starts_choice' => 'La facture commence par..', + 'rule_trigger_bill_starts' => 'La facture commence par «:trigger_value»', + 'rule_trigger_external_id_contains_choice' => 'L\'ID externe contient..', + 'rule_trigger_external_id_contains' => 'L\'ID externe contient ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'L\'ID externe se termine par..', + 'rule_trigger_external_id_ends' => 'L\'ID externe se termine par ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'L\'ID externe commence par..', + 'rule_trigger_external_id_starts' => 'L\'ID externe commence par ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'La référence interne contient..', + 'rule_trigger_internal_reference_contains' => 'La référence interne contient ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'La référence interne se termine par..', + 'rule_trigger_internal_reference_ends' => 'La référence interne se termine par ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'La référence interne commence par..', + 'rule_trigger_internal_reference_starts' => 'La référence interne commence par «:trigger_value»', + 'rule_trigger_external_url_is_choice' => 'L\'URL externe est..', + 'rule_trigger_external_url_is' => 'L\'URL externe est ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'L\'URL externe contient..', + 'rule_trigger_external_url_contains' => 'L\'URL externe contient ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'L\'URL externe se termine par..', + 'rule_trigger_external_url_ends' => 'L\'URL externe se termine par ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'L\'URL externe commence par..', + 'rule_trigger_external_url_starts' => 'L\'URL externe commence par ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'N\'a pas de pièce jointe', + 'rule_trigger_has_no_attachments' => 'L\'opération n\'a pas de pièces jointes', + 'rule_trigger_recurrence_id_choice' => 'L\'ID de l\'opération récurrente est..', + 'rule_trigger_recurrence_id' => 'L\'ID de l\'opération récurrente est «:trigger_value»', + 'rule_trigger_interest_date_on_choice' => 'La date d\'intérêt est le..', + 'rule_trigger_interest_date_on' => 'La date d\'intérêt est le ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'La date d\'intérêt est antérieure à..', + 'rule_trigger_interest_date_before' => 'La date d\'intérêt est antérieure à ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'La date d\'intérêt est postérieure à..', + 'rule_trigger_interest_date_after' => 'La date d\'intérêt est après ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'La date d\'enregistrement est le..', + 'rule_trigger_book_date_on' => 'La date d\'enregistrement est le ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'La date d\'enregistrement est avant..', + 'rule_trigger_book_date_before' => 'La date d\'enregistrement est avant ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'La date d\'enregistrement est après..', + 'rule_trigger_book_date_after' => 'La date d\'enregistrement est après le ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'La date de traitement est le..', + 'rule_trigger_process_date_on' => 'La date de traitement est le ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'La date de traitement est antérieure à..', + 'rule_trigger_process_date_before' => 'La date de traitement est antérieure au ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'La date de traitement est postérieure au..', + 'rule_trigger_process_date_after' => 'La date de traitement est postérieure au ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'La date d\'échéance est le..', + 'rule_trigger_due_date_on' => 'La date d\'échéance est le ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'La date d\'échéance est avant..', + 'rule_trigger_due_date_before' => 'La date d\'échéance est avant le ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'La date d\'échéance est après..', + 'rule_trigger_due_date_after' => 'La date d\'échéance est après le ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'La date de paiement est le..', + 'rule_trigger_payment_date_on' => 'La date de paiement est le ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'La date de paiement est avant le..', + 'rule_trigger_payment_date_before' => 'La date de paiement est avant le ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'La date de paiement est après..', + 'rule_trigger_payment_date_after' => 'La date de paiement est après le ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'La date de facturation est..', + 'rule_trigger_invoice_date_on' => 'La date de facturation est le ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'La date de facturation est avant..', + 'rule_trigger_invoice_date_before' => 'La date de facturation est avant le ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'La date de facturation est après..', + 'rule_trigger_invoice_date_after' => 'La date de facturation est après le ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'L\'opération a été créée avant..', + 'rule_trigger_created_at_before' => 'L\'opération a été créée avant le ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'L\'opération a été créée après..', + 'rule_trigger_created_at_after' => 'L\'opération a été créée après le ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'L\'opération a été mise à jour pour la dernière fois avant..', + 'rule_trigger_updated_at_before' => 'L\'opération a été mise à jour pour la dernière fois avant le ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'L\'opération a été mise à jour pour la dernière fois après..', + 'rule_trigger_updated_at_after' => 'L\'opération a été mise à jour pour la dernière fois après le ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Le montant en devise étrangère est exactement..', + 'rule_trigger_foreign_amount_is' => 'Le montant en devise étrangère est exactement ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Le montant en devise étrangère est inférieur à..', + 'rule_trigger_foreign_amount_less' => 'Le montant en devise étrangère est inférieur à ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Le montant en devise étrangère est supérieur à..', + 'rule_trigger_foreign_amount_more' => 'Le montant en devise étrangère est supérieur à ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Une pièce jointe se nomme..', + 'rule_trigger_attachment_name_is' => 'Une pièce jointe se nomme ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Le nom d\'une pièce jointe contient..', + 'rule_trigger_attachment_name_contains' => 'Le nom d\'une pièce jointe contient ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Le nom d\'une pièce jointe commence par..', + 'rule_trigger_attachment_name_starts' => 'Le nom d\'une pièce jointe commence par ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Le nom d\'une pièce jointe se termine par..', + 'rule_trigger_attachment_name_ends' => 'Le nom d\'une pièce jointe se termine par ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Les notes d\'une pièce jointe sont..', + 'rule_trigger_attachment_notes_are' => 'Les notes d\'une pièce jointe sont ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Les notes d\'une pièce jointe contiennent..', + 'rule_trigger_attachment_notes_contains' => 'Les notes d\'une pièce jointe contiennent ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Les notes d\'une pièce jointe commencent par..', + 'rule_trigger_attachment_notes_starts' => 'Les notes d\'une pièce jointe commencent par ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Les notes d\'une pièce jointe se terminent par..', + 'rule_trigger_attachment_notes_ends' => 'Les notes d\'une pièce jointe se termine par ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'L\'opération est rapprochée', + 'rule_trigger_reconciled' => 'L\'opération est rapprochée', + 'rule_trigger_exists_choice' => 'N\'importe quelle opération correspond (!)', + 'rule_trigger_exists' => 'N\'importe quelle opération correspond', // more values for new types: - 'rule_trigger_not_account_id' => 'L\'ID du compte n\'est pas «:trigger_value»', - 'rule_trigger_not_source_account_id' => 'L\'ID du compte source n\'est pas «:trigger_value»', - 'rule_trigger_not_destination_account_id' => 'L\'ID du compte de destination n\'est pas «:trigger_value»', - 'rule_trigger_not_transaction_type' => 'Le type d\'opération n\'est pas «:trigger_value»', - 'rule_trigger_not_tag_is' => 'Le tag n\'est pas «:trigger_value»', - 'rule_trigger_not_tag_is_not' => 'Le tag est ":trigger_value"', - 'rule_trigger_not_description_is' => 'La description n\'est pas «:trigger_value»', - 'rule_trigger_not_description_contains' => 'La description ne contient pas', - 'rule_trigger_not_description_ends' => 'La description ne se termine pas par «:trigger_value»', - 'rule_trigger_not_description_starts' => 'La description ne commence pas par ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Les notes ne sont pas «:trigger_value»', - 'rule_trigger_not_notes_contains' => 'Les notes ne contiennent pas «:trigger_value»', - 'rule_trigger_not_notes_ends' => 'Les notes ne se terminent pas sur ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Les notes ne commencent pas par ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Le compte source n\'est pas «:trigger_value»', - 'rule_trigger_not_source_account_contains' => 'Le compte source ne contient pas «:trigger_value»', - 'rule_trigger_not_source_account_ends' => 'Le compte source ne se termine pas par ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Le compte source ne commence pas par «:trigger_value»', - 'rule_trigger_not_source_account_nr_is' => 'Le numéro / IBAN du compte source n\'est pas ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Le numéro / IBAN du compte source ne contient pas ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Le numéro / IBAN du compte source ne se termine pas par ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Le numéro / IBAN du compte source ne commence pas par ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Le compte de destination n\'est pas «:trigger_value»', - 'rule_trigger_not_destination_account_contains' => 'Le compte de destination ne contient pas ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Le compte de destination ne se termine pas par ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Le compte de destination ne commence pas par ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Le numéro / IBAN du compte de destination n\'est pas ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Le numéro / IBAN du compte de destination ne contient pas ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Le numéro / IBAN du compte de destination ne se termine pas par ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Le numéro / IBAN du compte de destination ne commence pas par ":trigger_value"', - 'rule_trigger_not_account_is' => 'Aucun compte n\'est ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Aucun compte ne contient ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Aucun compte ne se termine par ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Aucun compte ne commence par ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Aucun numéro / IBAN de compte n\'est ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Aucun numéro / IBAN de compte ne contient ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Aucun numéro / IBAN de compte ne se termine par ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Aucun numéro / IBAN de compte ne commence par ":trigger_value"', - 'rule_trigger_not_category_is' => 'La catégorie n\'est pas «:trigger_value»', - 'rule_trigger_not_category_contains' => 'La catégorie ne contient pas «:trigger_value»', - 'rule_trigger_not_category_ends' => 'La catégorie ne se termine pas par ":trigger_value"', - 'rule_trigger_not_category_starts' => 'La catégorie ne commence pas par ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Le budget n\'est pas «:trigger_value»', - 'rule_trigger_not_budget_contains' => 'Le budget ne contient pas ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Le budget ne se termine pas par ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Le budget ne commence pas par ":trigger_value"', - 'rule_trigger_not_bill_is' => 'La facture n\'est pas ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'La facture ne contient pas ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'La facture ne se termine pas par ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'La facture ne se termine pas par «:trigger_value»', - 'rule_trigger_not_external_id_is' => 'L\'ID externe n\'est pas ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'L\'ID externe ne contient pas ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'L\'ID externe ne se termine pas par ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'L\'ID externe ne commence pas par ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'La référence interne n\'est pas ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'La référence interne ne contient pas ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'La référence interne ne se termine pas par ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'La référence interne ne commence pas par «:trigger_value»', - 'rule_trigger_not_external_url_is' => 'L\'URL externe n\'est pas ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'L\'URL externe ne contient pas ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'L\'URL externe ne se termine pas par ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'L\'URL externe ne commence pas par ":trigger_value"', - 'rule_trigger_not_currency_is' => 'La devise n\'est pas «:trigger_value»', - 'rule_trigger_not_foreign_currency_is' => 'La devise étrangère n\'est pas «:trigger_value»', - 'rule_trigger_not_id' => 'L\'ID de l\'opération n\'est pas ":trigger_value"', - 'rule_trigger_not_journal_id' => 'L\'ID du journal d\'opérations n\'est pas ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'L\'ID de récurrence n\'est pas «:trigger_value»', - 'rule_trigger_not_date_on' => 'La date n\'est pas le ":trigger_value"', - 'rule_trigger_not_date_before' => 'La date n\'est pas antérieure à ":trigger_value"', - 'rule_trigger_not_date_after' => 'La date n\'est pas après ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'La date d\'intérêt n\'est pas le ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'La date d\'intérêt n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'La date d\'intérêt n\'est pas après le ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'La date d\'enregistrement n\'est pas le ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'La date d\'enregistrement n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'La date d\'enregistrement n\'est pas après le ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'La date de traitement n\'est pas le ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'La date de traitement n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'La date de traitement n\'est pas après le ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'La date d\'échéance n\'est pas le ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'La date d\'échéance n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'La date d\'échéance n\'est pas après le ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'La date de paiement n\'est pas le ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'La date de paiement n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'La date de paiement n\'est pas après le ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'La date de facturation n\'est pas le ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'La date de facturation n\'est pas avant le ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'La date de facturation n\'est pas après le ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'L\'opération n\'a pas été créée le ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'L\'opération n\'a pas été créée avant le ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'L\'opération n\'a pas été créée après le ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'L\'opération n\'a pas été mise à jour le ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'L\'opération n\'a pas été mise à jour avant le ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'L\'opération n\'a pas été mise à jour après le ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Le montant de l\'opération n\'est pas ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Le montant de l\'opération n\'est pas supérieur à ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Le montant de l\'opération n\'est pas inférieur à ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Le montant en devise étrangère n\'est pas ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Le montant en devise étrangère n\'est pas supérieur à ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Le montant en devise étrangère n\'est pas inférieur à ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Aucune pièce jointe ne se nomme ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Aucun nom de pièce jointe ne contient ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Aucun nom de pièce jointe ne commence par ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Aucun nom de pièce jointe ne se termine par ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Aucune note de pièce jointe n\'est ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Aucune note de pièce jointe ne contient ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Aucune note de pièce jointe ne commence par ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Aucune note de pièce jointe ne se termine par ":trigger_value"', - 'rule_trigger_not_reconciled' => 'L\'opération n\'est pas rapprochée', - 'rule_trigger_not_exists' => 'L\'opération n\'existe pas', - 'rule_trigger_not_has_attachments' => 'L\'opération n\'a pas de pièce jointe', - 'rule_trigger_not_has_any_category' => 'L\'opération n\'a pas de catégorie', - 'rule_trigger_not_has_any_budget' => 'L\'opération n\'a pas de budget', - 'rule_trigger_not_has_any_bill' => 'L\'opération n\'a pas de facture', - 'rule_trigger_not_has_any_tag' => 'L\'opération n\'a pas de tag', - 'rule_trigger_not_any_notes' => 'L\'opération n\'a pas de note', - 'rule_trigger_not_any_external_url' => 'L\'opération n\'a pas d\'URL externe', - 'rule_trigger_not_has_no_attachments' => 'L\'opération a au moins une pièce jointe', - 'rule_trigger_not_has_no_category' => 'L\'opération a une catégorie', - 'rule_trigger_not_has_no_budget' => 'L\'opération a un budget', - 'rule_trigger_not_has_no_bill' => 'L\'opération a une facture', - 'rule_trigger_not_has_no_tag' => 'L\'opération a un tag', - 'rule_trigger_not_no_notes' => 'L\'opération a au moins une note', - 'rule_trigger_not_no_external_url' => 'L\'opération a une URL externe', - 'rule_trigger_not_source_is_cash' => 'Le compte source n\'est pas un compte en espèces', - 'rule_trigger_not_destination_is_cash' => 'Le compte de destination n\'est pas un compte en espèces', - 'rule_trigger_not_account_is_cash' => 'Aucun compte n\'est un compte en espèces', + 'rule_trigger_not_account_id' => 'L\'ID du compte n\'est pas «:trigger_value»', + 'rule_trigger_not_source_account_id' => 'L\'ID du compte source n\'est pas «:trigger_value»', + 'rule_trigger_not_destination_account_id' => 'L\'ID du compte de destination n\'est pas «:trigger_value»', + 'rule_trigger_not_transaction_type' => 'Le type d\'opération n\'est pas «:trigger_value»', + 'rule_trigger_not_tag_is' => 'Le tag n\'est pas «:trigger_value»', + 'rule_trigger_not_tag_is_not' => 'Le tag est ":trigger_value"', + 'rule_trigger_not_description_is' => 'La description n\'est pas «:trigger_value»', + 'rule_trigger_not_description_contains' => 'La description ne contient pas', + 'rule_trigger_not_description_ends' => 'La description ne se termine pas par «:trigger_value»', + 'rule_trigger_not_description_starts' => 'La description ne commence pas par ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Les notes ne sont pas «:trigger_value»', + 'rule_trigger_not_notes_contains' => 'Les notes ne contiennent pas «:trigger_value»', + 'rule_trigger_not_notes_ends' => 'Les notes ne se terminent pas sur ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Les notes ne commencent pas par ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Le compte source n\'est pas «:trigger_value»', + 'rule_trigger_not_source_account_contains' => 'Le compte source ne contient pas «:trigger_value»', + 'rule_trigger_not_source_account_ends' => 'Le compte source ne se termine pas par ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Le compte source ne commence pas par «:trigger_value»', + 'rule_trigger_not_source_account_nr_is' => 'Le numéro / IBAN du compte source n\'est pas ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Le numéro / IBAN du compte source ne contient pas ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Le numéro / IBAN du compte source ne se termine pas par ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Le numéro / IBAN du compte source ne commence pas par ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Le compte de destination n\'est pas «:trigger_value»', + 'rule_trigger_not_destination_account_contains' => 'Le compte de destination ne contient pas ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Le compte de destination ne se termine pas par ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Le compte de destination ne commence pas par ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Le numéro / IBAN du compte de destination n\'est pas ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Le numéro / IBAN du compte de destination ne contient pas ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Le numéro / IBAN du compte de destination ne se termine pas par ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Le numéro / IBAN du compte de destination ne commence pas par ":trigger_value"', + 'rule_trigger_not_account_is' => 'Aucun compte n\'est ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Aucun compte ne contient ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Aucun compte ne se termine par ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Aucun compte ne commence par ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Aucun numéro / IBAN de compte n\'est ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Aucun numéro / IBAN de compte ne contient ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Aucun numéro / IBAN de compte ne se termine par ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Aucun numéro / IBAN de compte ne commence par ":trigger_value"', + 'rule_trigger_not_category_is' => 'La catégorie n\'est pas «:trigger_value»', + 'rule_trigger_not_category_contains' => 'La catégorie ne contient pas «:trigger_value»', + 'rule_trigger_not_category_ends' => 'La catégorie ne se termine pas par ":trigger_value"', + 'rule_trigger_not_category_starts' => 'La catégorie ne commence pas par ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Le budget n\'est pas «:trigger_value»', + 'rule_trigger_not_budget_contains' => 'Le budget ne contient pas ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Le budget ne se termine pas par ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Le budget ne commence pas par ":trigger_value"', + 'rule_trigger_not_bill_is' => 'La facture n\'est pas ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'La facture ne contient pas ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'La facture ne se termine pas par ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'La facture ne se termine pas par «:trigger_value»', + 'rule_trigger_not_external_id_is' => 'L\'ID externe n\'est pas ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'L\'ID externe ne contient pas ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'L\'ID externe ne se termine pas par ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'L\'ID externe ne commence pas par ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'La référence interne n\'est pas ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'La référence interne ne contient pas ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'La référence interne ne se termine pas par ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'La référence interne ne commence pas par «:trigger_value»', + 'rule_trigger_not_external_url_is' => 'L\'URL externe n\'est pas ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'L\'URL externe ne contient pas ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'L\'URL externe ne se termine pas par ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'L\'URL externe ne commence pas par ":trigger_value"', + 'rule_trigger_not_currency_is' => 'La devise n\'est pas «:trigger_value»', + 'rule_trigger_not_foreign_currency_is' => 'La devise étrangère n\'est pas «:trigger_value»', + 'rule_trigger_not_id' => 'L\'ID de l\'opération n\'est pas ":trigger_value"', + 'rule_trigger_not_journal_id' => 'L\'ID du journal d\'opérations n\'est pas ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'L\'ID de récurrence n\'est pas «:trigger_value»', + 'rule_trigger_not_date_on' => 'La date n\'est pas le ":trigger_value"', + 'rule_trigger_not_date_before' => 'La date n\'est pas antérieure à ":trigger_value"', + 'rule_trigger_not_date_after' => 'La date n\'est pas après ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'La date d\'intérêt n\'est pas le ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'La date d\'intérêt n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'La date d\'intérêt n\'est pas après le ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'La date d\'enregistrement n\'est pas le ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'La date d\'enregistrement n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'La date d\'enregistrement n\'est pas après le ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'La date de traitement n\'est pas le ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'La date de traitement n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'La date de traitement n\'est pas après le ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'La date d\'échéance n\'est pas le ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'La date d\'échéance n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'La date d\'échéance n\'est pas après le ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'La date de paiement n\'est pas le ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'La date de paiement n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'La date de paiement n\'est pas après le ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'La date de facturation n\'est pas le ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'La date de facturation n\'est pas avant le ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'La date de facturation n\'est pas après le ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'L\'opération n\'a pas été créée le ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'L\'opération n\'a pas été créée avant le ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'L\'opération n\'a pas été créée après le ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'L\'opération n\'a pas été mise à jour le ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'L\'opération n\'a pas été mise à jour avant le ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'L\'opération n\'a pas été mise à jour après le ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Le montant de l\'opération n\'est pas ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Le montant de l\'opération n\'est pas supérieur à ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Le montant de l\'opération n\'est pas inférieur à ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Le montant en devise étrangère n\'est pas ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Le montant en devise étrangère n\'est pas supérieur à ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Le montant en devise étrangère n\'est pas inférieur à ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Aucune pièce jointe ne se nomme ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Aucun nom de pièce jointe ne contient ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Aucun nom de pièce jointe ne commence par ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Aucun nom de pièce jointe ne se termine par ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Aucune note de pièce jointe n\'est ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Aucune note de pièce jointe ne contient ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Aucune note de pièce jointe ne commence par ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Aucune note de pièce jointe ne se termine par ":trigger_value"', + 'rule_trigger_not_reconciled' => 'L\'opération n\'est pas rapprochée', + 'rule_trigger_not_exists' => 'L\'opération n\'existe pas', + 'rule_trigger_not_has_attachments' => 'L\'opération n\'a pas de pièce jointe', + 'rule_trigger_not_has_any_category' => 'L\'opération n\'a pas de catégorie', + 'rule_trigger_not_has_any_budget' => 'L\'opération n\'a pas de budget', + 'rule_trigger_not_has_any_bill' => 'L\'opération n\'a pas de facture', + 'rule_trigger_not_has_any_tag' => 'L\'opération n\'a pas de tag', + 'rule_trigger_not_any_notes' => 'L\'opération n\'a pas de note', + 'rule_trigger_not_any_external_url' => 'L\'opération n\'a pas d\'URL externe', + 'rule_trigger_not_has_no_attachments' => 'L\'opération a au moins une pièce jointe', + 'rule_trigger_not_has_no_category' => 'L\'opération a une catégorie', + 'rule_trigger_not_has_no_budget' => 'L\'opération a un budget', + 'rule_trigger_not_has_no_bill' => 'L\'opération a une facture', + 'rule_trigger_not_has_no_tag' => 'L\'opération a un tag', + 'rule_trigger_not_no_notes' => 'L\'opération a au moins une note', + 'rule_trigger_not_no_external_url' => 'L\'opération a une URL externe', + 'rule_trigger_not_source_is_cash' => 'Le compte source n\'est pas un compte en espèces', + 'rule_trigger_not_destination_is_cash' => 'Le compte de destination n\'est pas un compte en espèces', + 'rule_trigger_not_account_is_cash' => 'Aucun compte n\'est un compte en espèces', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'SUPPRIMER l\'opération(!)', - 'rule_action_delete_transaction' => 'SUPPRIMER l\'opération(!)', - 'rule_action_set_category' => 'Définir la catégorie à ":action_value"', - 'rule_action_clear_category' => 'Supprimer de la catégorie', - 'rule_action_set_budget' => 'Définir le budget à ":action_value"', - 'rule_action_clear_budget' => 'Supprimer du budget', - 'rule_action_add_tag' => 'Ajouter un tag ":action_value"', - 'rule_action_remove_tag' => 'Retirer le tag ":action_value"', - 'rule_action_remove_all_tags' => 'Retirer tous les tags', - 'rule_action_set_description' => 'Définir la description à ":action_value"', - 'rule_action_append_description' => 'Ajouter à la description ":action_value"', - 'rule_action_prepend_description' => 'Préfixer la description avec ":action_value"', - 'rule_action_set_category_choice' => 'Définir la catégorie à..', - 'rule_action_clear_category_choice' => 'Effacer les catégories', - 'rule_action_set_budget_choice' => 'Définir le budget à..', - 'rule_action_clear_budget_choice' => 'Effacer les budgets', - 'rule_action_add_tag_choice' => 'Ajouter un tag..', - 'rule_action_remove_tag_choice' => 'Retirer le tag..', - 'rule_action_remove_all_tags_choice' => 'Supprimer tous les tags', - 'rule_action_set_description_choice' => 'Définir la description à..', - 'rule_action_update_piggy_choice' => 'Ajouter/supprimer un montant dans la tirelire..', - 'rule_action_update_piggy' => 'Ajouter/supprimer le montant de l\'opération dans la tirelire ":action_value"', - 'rule_action_append_description_choice' => 'Suffixer la description avec..', - 'rule_action_prepend_description_choice' => 'Préfixer la description avec..', - 'rule_action_set_source_account_choice' => 'Définir le compte source à..', - 'rule_action_set_source_account' => "Définir le compte source à\u{a0}:action_value", - 'rule_action_set_destination_account_choice' => 'Définir le compte de destination à..', - 'rule_action_set_destination_account' => 'Définir le compte de destination à :action_value', - 'rule_action_append_notes_choice' => 'Ajouter aux notes ..', - 'rule_action_append_notes' => 'Rajouter aux notes ":action_value"', - 'rule_action_prepend_notes_choice' => 'Ajouter au début des notes..', - 'rule_action_prepend_notes' => 'Rajouter au début des notes ":action_value"', - 'rule_action_clear_notes_choice' => 'Supprimer les notes', - 'rule_action_clear_notes' => 'Supprimer les notes', - 'rule_action_set_notes_choice' => 'Remplacer les notes par..', - 'rule_action_link_to_bill_choice' => 'Lier à une facture..', - 'rule_action_link_to_bill' => 'Lien vers la facture ":action_value"', - 'rule_action_switch_accounts_choice' => 'Intervertir les comptes source et destination (transferts uniquement !)', - 'rule_action_switch_accounts' => 'Inverser source et destination', - 'rule_action_set_notes' => 'Remplacer les notes par ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convertir cette opération en dépôt', - 'rule_action_convert_deposit' => 'Convertir cette opération en dépôt depuis ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convertir cette opération en dépense', - 'rule_action_convert_withdrawal' => 'Convertir cette opération en dépense vers ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convertir cette opération en transfert', - 'rule_action_convert_transfer' => 'Convertir cette opération en transfert avec ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Ajouter la description à la fin des notes de l\'opération', - 'rule_action_append_notes_to_descr_choice' => 'Ajouter les notes de l\'opération à la description', - 'rule_action_move_descr_to_notes_choice' => 'Remplacer les notes actuelles de l\'opération par la description', - 'rule_action_move_notes_to_descr_choice' => 'Remplacer la description actuelle par les notes de l\'opération', - 'rule_action_append_descr_to_notes' => 'Ajouter la description aux notes', - 'rule_action_append_notes_to_descr' => 'Ajouter les notes à la description', - 'rule_action_move_descr_to_notes' => 'Remplacer les notes par la description', - 'rule_action_move_notes_to_descr' => 'Remplacer la description par les notes', - 'rule_action_set_amount_choice' => 'Définir le montant à ..', - 'rule_action_set_amount' => 'Définir le montant à ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Définir le compte de destination à (espèces)', - 'rule_action_set_source_to_cash_choice' => 'Définir le compte source à (espèces)', - 'rulegroup_for_bills_title' => 'Groupe de règles pour les factures', - 'rulegroup_for_bills_description' => 'Un groupe de règles spécial pour toutes les règles impliquant des factures.', - 'rule_for_bill_title' => 'Règle générée automatiquement pour la facture ":name"', - 'rule_for_bill_description' => 'Cette règle est générée automatiquement pour essayer de faire correspondre la facture ":name".', - 'create_rule_for_bill' => 'Créer une nouvelle règle pour la facture ":name"', - 'create_rule_for_bill_txt' => 'Vous venez de créer une nouvelle facture appelée ":name", félicitations ! Firefly III peut automatiquement faire correspondre de nouvelles dépenses à cette facture. Par exemple, chaque fois que vous payez votre loyer, la facture "loyer" sera liée à la dépense. De cette façon, Firefly III peut vous montrer exactement quelles factures sont dues et lesquelles ne le sont pas. Pour ce faire, une nouvelle règle doit être créée. Firefly III a rempli certaines valeurs qui doivent être logiques pour vous. Veuillez vous assurer qu\'elles sont correctes. Si c\'est le cas, Firefly III liera automatiquement la bonne dépense à la bonne facture. Veuillez également vérifier les déclencheurs pour voir s\'ils sont corrects, en ajouter ou les corriger si nécessaire.', - 'new_rule_for_bill_title' => 'Règle pour la facture ":name"', - 'new_rule_for_bill_description' => 'Cette règle marque les opérations pour la facture ":name".', + 'rule_action_delete_transaction_choice' => 'SUPPRIMER l\'opération(!)', + 'rule_action_delete_transaction' => 'SUPPRIMER l\'opération(!)', + 'rule_action_set_category' => 'Définir la catégorie à ":action_value"', + 'rule_action_clear_category' => 'Supprimer de la catégorie', + 'rule_action_set_budget' => 'Définir le budget à ":action_value"', + 'rule_action_clear_budget' => 'Supprimer du budget', + 'rule_action_add_tag' => 'Ajouter un tag ":action_value"', + 'rule_action_remove_tag' => 'Retirer le tag ":action_value"', + 'rule_action_remove_all_tags' => 'Retirer tous les tags', + 'rule_action_set_description' => 'Définir la description à ":action_value"', + 'rule_action_append_description' => 'Ajouter à la description ":action_value"', + 'rule_action_prepend_description' => 'Préfixer la description avec ":action_value"', + 'rule_action_set_category_choice' => 'Définir la catégorie à..', + 'rule_action_clear_category_choice' => 'Effacer les catégories', + 'rule_action_set_budget_choice' => 'Définir le budget à..', + 'rule_action_clear_budget_choice' => 'Effacer les budgets', + 'rule_action_add_tag_choice' => 'Ajouter un tag..', + 'rule_action_remove_tag_choice' => 'Retirer le tag..', + 'rule_action_remove_all_tags_choice' => 'Supprimer tous les tags', + 'rule_action_set_description_choice' => 'Définir la description à..', + 'rule_action_update_piggy_choice' => 'Ajouter/supprimer un montant dans la tirelire..', + 'rule_action_update_piggy' => 'Ajouter/supprimer le montant de l\'opération dans la tirelire ":action_value"', + 'rule_action_append_description_choice' => 'Suffixer la description avec..', + 'rule_action_prepend_description_choice' => 'Préfixer la description avec..', + 'rule_action_set_source_account_choice' => 'Définir le compte source à..', + 'rule_action_set_source_account' => "Définir le compte source à\u{a0}:action_value", + 'rule_action_set_destination_account_choice' => 'Définir le compte de destination à..', + 'rule_action_set_destination_account' => 'Définir le compte de destination à :action_value', + 'rule_action_append_notes_choice' => 'Ajouter aux notes ..', + 'rule_action_append_notes' => 'Rajouter aux notes ":action_value"', + 'rule_action_prepend_notes_choice' => 'Ajouter au début des notes..', + 'rule_action_prepend_notes' => 'Rajouter au début des notes ":action_value"', + 'rule_action_clear_notes_choice' => 'Supprimer les notes', + 'rule_action_clear_notes' => 'Supprimer les notes', + 'rule_action_set_notes_choice' => 'Remplacer les notes par..', + 'rule_action_link_to_bill_choice' => 'Lier à une facture..', + 'rule_action_link_to_bill' => 'Lien vers la facture ":action_value"', + 'rule_action_switch_accounts_choice' => 'Intervertir les comptes source et destination (transferts uniquement !)', + 'rule_action_switch_accounts' => 'Inverser source et destination', + 'rule_action_set_notes' => 'Remplacer les notes par ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convertir cette opération en dépôt', + 'rule_action_convert_deposit' => 'Convertir cette opération en dépôt depuis ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convertir cette opération en dépense', + 'rule_action_convert_withdrawal' => 'Convertir cette opération en dépense vers ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convertir cette opération en transfert', + 'rule_action_convert_transfer' => 'Convertir cette opération en transfert avec ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Ajouter la description à la fin des notes de l\'opération', + 'rule_action_append_notes_to_descr_choice' => 'Ajouter les notes de l\'opération à la description', + 'rule_action_move_descr_to_notes_choice' => 'Remplacer les notes actuelles de l\'opération par la description', + 'rule_action_move_notes_to_descr_choice' => 'Remplacer la description actuelle par les notes de l\'opération', + 'rule_action_append_descr_to_notes' => 'Ajouter la description aux notes', + 'rule_action_append_notes_to_descr' => 'Ajouter les notes à la description', + 'rule_action_move_descr_to_notes' => 'Remplacer les notes par la description', + 'rule_action_move_notes_to_descr' => 'Remplacer la description par les notes', + 'rule_action_set_amount_choice' => 'Définir le montant à ..', + 'rule_action_set_amount' => 'Définir le montant à ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Définir le compte de destination à (espèces)', + 'rule_action_set_source_to_cash_choice' => 'Définir le compte source à (espèces)', + 'rulegroup_for_bills_title' => 'Groupe de règles pour les factures', + 'rulegroup_for_bills_description' => 'Un groupe de règles spécial pour toutes les règles impliquant des factures.', + 'rule_for_bill_title' => 'Règle générée automatiquement pour la facture ":name"', + 'rule_for_bill_description' => 'Cette règle est générée automatiquement pour essayer de faire correspondre la facture ":name".', + 'create_rule_for_bill' => 'Créer une nouvelle règle pour la facture ":name"', + 'create_rule_for_bill_txt' => 'Vous venez de créer une nouvelle facture appelée ":name", félicitations ! Firefly III peut automatiquement faire correspondre de nouvelles dépenses à cette facture. Par exemple, chaque fois que vous payez votre loyer, la facture "loyer" sera liée à la dépense. De cette façon, Firefly III peut vous montrer exactement quelles factures sont dues et lesquelles ne le sont pas. Pour ce faire, une nouvelle règle doit être créée. Firefly III a rempli certaines valeurs qui doivent être logiques pour vous. Veuillez vous assurer qu\'elles sont correctes. Si c\'est le cas, Firefly III liera automatiquement la bonne dépense à la bonne facture. Veuillez également vérifier les déclencheurs pour voir s\'ils sont corrects, en ajouter ou les corriger si nécessaire.', + 'new_rule_for_bill_title' => 'Règle pour la facture ":name"', + 'new_rule_for_bill_description' => 'Cette règle marque les opérations pour la facture ":name".', - 'new_rule_for_journal_title' => 'Règle basée sur l\'opération ":description"', - 'new_rule_for_journal_description' => 'Cette règle est basée sur l\'opération ":description". Elle générera une correspondance sur les opérations strictement identiques.', + 'new_rule_for_journal_title' => 'Règle basée sur l\'opération ":description"', + 'new_rule_for_journal_description' => 'Cette règle est basée sur l\'opération ":description". Elle générera une correspondance sur les opérations strictement identiques.', // tags - 'store_new_tag' => 'Créer un nouveau tag', - 'update_tag' => 'Mettre à jour le tag', - 'no_location_set' => 'Aucun emplacement défini.', - 'meta_data' => 'Métadonnées', - 'location' => 'Emplacement', - 'location_first_split' => 'La localisation de cette opération peut être définie lors du premier fractionnement de cette opération.', - 'without_date' => 'Sans date', - 'result' => 'Résultat', - 'sums_apply_to_range' => 'Toutes les sommes s\'appliquent à l\'ensemble sélectionné', - 'mapbox_api_key' => 'Pour utiliser la carte, obtenez une clé d\'API auprès de Mapbox. Ouvrez votre fichier .env et saisissez le code après MAPBOX_API_KEY=.', - 'press_object_location' => 'Faites un clic droit ou appuyez longuement pour définir l\'emplacement de l\'objet.', - 'click_tap_location' => 'Cliquez ou appuyez sur la carte pour ajouter un emplacement', - 'clear_location' => 'Effacer la localisation', - 'delete_all_selected_tags' => 'Supprimer tous les tags sélectionnés', - 'select_tags_to_delete' => 'N\'oubliez pas de sélectionner des tags.', - 'deleted_x_tags' => ':count tag supprimé.|:count tags supprimés.', - 'create_rule_from_transaction' => 'Créer une règle basée sur une opération', - 'create_recurring_from_transaction' => 'Créer une opération récurrente sur base d\'une opération', + 'store_new_tag' => 'Créer un nouveau tag', + 'update_tag' => 'Mettre à jour le tag', + 'no_location_set' => 'Aucun emplacement défini.', + 'meta_data' => 'Métadonnées', + 'location' => 'Emplacement', + 'location_first_split' => 'La localisation de cette opération peut être définie lors du premier fractionnement de cette opération.', + 'without_date' => 'Sans date', + 'result' => 'Résultat', + 'sums_apply_to_range' => 'Toutes les sommes s\'appliquent à l\'ensemble sélectionné', + 'mapbox_api_key' => 'Pour utiliser la carte, obtenez une clé d\'API auprès de Mapbox. Ouvrez votre fichier .env et saisissez le code après MAPBOX_API_KEY=.', + 'press_object_location' => 'Faites un clic droit ou appuyez longuement pour définir l\'emplacement de l\'objet.', + 'click_tap_location' => 'Cliquez ou appuyez sur la carte pour ajouter un emplacement', + 'clear_location' => 'Effacer la localisation', + 'delete_all_selected_tags' => 'Supprimer tous les tags sélectionnés', + 'select_tags_to_delete' => 'N\'oubliez pas de sélectionner des tags.', + 'deleted_x_tags' => ':count tag supprimé.|:count tags supprimés.', + 'create_rule_from_transaction' => 'Créer une règle basée sur une opération', + 'create_recurring_from_transaction' => 'Créer une opération récurrente sur base d\'une opération', // preferences - 'dark_mode_option_browser' => 'Laisser le navigateur décider', - 'dark_mode_option_light' => 'Toujours clair', - 'dark_mode_option_dark' => 'Toujours sombre', - 'equal_to_language' => '(égal à la langue)', - 'dark_mode_preference' => 'Mode sombre', - 'dark_mode_preference_help' => 'Dire à Firefly III quand utiliser le mode sombre.', - 'pref_home_screen_accounts' => 'Comptes de l’écran d’accueil', - 'pref_home_screen_accounts_help' => 'Quels sont les comptes à afficher sur la page d’accueil ?', - 'pref_view_range' => 'Intervalle d\'affichage', - 'pref_view_range_help' => "Certains graphiques sont automatiquement regroupés par périodes. Vos budgets seront aussi organisés par périodes. Quelle période préférez-vous\u{a0}?", - 'pref_1D' => 'Un jour', - 'pref_1W' => 'Une semaine', - 'pref_1M' => 'Un mois', - 'pref_3M' => 'Trois mois (trimestre)', - 'pref_6M' => 'Six mois', - 'pref_1Y' => 'Un an', - 'pref_last365' => 'L\'année dernière', - 'pref_last90' => 'Les 90 derniers jours', - 'pref_last30' => 'Les 30 derniers jours', - 'pref_last7' => 'Les 7 derniers jours', - 'pref_YTD' => 'Année en cours', - 'pref_QTD' => 'Ce trimestre', - 'pref_MTD' => 'Depuis le début du mois', - 'pref_languages' => 'Langues', - 'pref_locale' => 'Paramètres régionaux', - 'pref_languages_help' => 'Firefly III prend en charge plusieurs langues. Laquelle préférez-vous ?', - 'pref_locale_help' => 'Firefly III vous permet de définir d\'autres paramètres locaux, comme la façon dont les devises, les nombres et les dates sont formatées. Les entrées dans cette liste peuvent ne pas être prises en charge par votre système. Firefly III n\'est pas paramétré correctement pour toutes les langues ; contactez-moi pour les améliorer.', - 'pref_locale_no_demo' => 'Cette fonctionnalité ne fonctionnera pas pour l\'utilisateur de démonstration.', - 'pref_custom_fiscal_year' => 'Paramètres fiscaux de l\'année', - 'pref_custom_fiscal_year_label' => 'Activé', - 'pref_custom_fiscal_year_help' => 'Dans les pays qui utilisent une année financière autre que du 1er janvier au 31 décembre, vous pouvez la changer en spécifiant le jour de début et de fin de l\'année fiscale', - 'pref_fiscal_year_start_label' => 'Date du début de l\'année fiscale', - 'pref_two_factor_auth' => 'Validation en 2 étapes', - 'pref_two_factor_auth_help' => 'Lorsque vous activez la validation en 2 étapes (également connu sous le nom de deux facteurs d’authentification), vous ajoutez une couche de sécurité supplémentaire à votre compte. Vous vous connectez avec quelque chose que vous connaissez (votre mot de passe) et quelque chose que vous avez (un code de vérification). Les codes de vérification sont générés par une application sur votre téléphone, comme par exemple Authy ou Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Activez la validation en 2 étapes', - 'pref_two_factor_auth_disabled' => 'Le code de vérification en deux étapes a été enlevé et désactivé', - 'pref_two_factor_auth_remove_it' => 'N’oubliez pas de supprimer ce compte de votre application d’authentification !', - 'pref_two_factor_auth_code' => 'Vérifier le code', - 'pref_two_factor_auth_code_help' => 'Scanner le code QR avec une application sur votre téléphone comme Authy ou Google Authenticator et entrez le code généré.', - 'pref_two_factor_auth_reset_code' => 'Réinitialiser le code de vérification', - 'pref_two_factor_auth_disable_2fa' => 'Désactiver l\'authentification en deux étapes', - '2fa_use_secret_instead' => "Si vous ne pouvez pas scanner le code QR, vous pouvez utiliser le code suivant à\u{a0}la place :\u{a0}:secret.", - '2fa_backup_codes' => 'Stockez ces codes de récupération pour vous connecter au cas où vous perdez votre appareil.', - '2fa_already_enabled' => 'La vérification à deux étapes est déjà activée.', - 'wrong_mfa_code' => 'Le code MFA n\'est pas valide.', - 'pref_save_settings' => 'Enregistrer les paramètres', - 'saved_preferences' => 'Préférences enregistrées !', - 'preferences_general' => 'Général', - 'preferences_frontpage' => 'Écran d\'accueil', - 'preferences_security' => 'Sécurité', - 'preferences_layout' => 'Mise en Page', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Afficher les dépôts sur l\'écran d\'accueil', - 'pref_home_show_deposits_info' => 'L\'écran d\'accueil affiche déjà vos comptes de dépenses. Devrait-il aussi afficher vos comptes de revenus ?', - 'pref_home_do_show_deposits' => 'Oui, montrez-les', - 'successful_count' => 'dont :count avec succès', - 'list_page_size_title' => 'Taille de la page', - 'list_page_size_help' => 'Les listes d\'éléments (comptes, opérations, etc) affichent un nombre maximum d\'élément par page.', - 'list_page_size_label' => 'Nombre d\'élément par page', - 'between_dates' => '(:start et :end)', - 'pref_optional_fields_transaction' => 'Champs optionnels pour les opérations', - 'pref_optional_fields_transaction_help' => 'Par défaut, tous les champs ne sont pas disponibles lors de la création d\'une nouvelle opération (pour éviter de surcharger la page). Vous pouvez activer les champs suivants si vous pensez qu\'ils peuvent vous être utiles. Bien sûr, tout champ désactivé mais précédemment rempli restera visible quel que soit son paramétrage.', - 'optional_tj_date_fields' => 'Champ date', - 'optional_tj_other_fields' => 'Autres champs', - 'optional_tj_attachment_fields' => 'Champs de pièces jointes', - 'pref_optional_tj_interest_date' => 'Date de valeur (intérêts)', - 'pref_optional_tj_book_date' => 'Date d\'enregistrement', - 'pref_optional_tj_process_date' => 'Date de traitement', - 'pref_optional_tj_due_date' => 'Échéance', - 'pref_optional_tj_payment_date' => 'Date de paiement', - 'pref_optional_tj_invoice_date' => 'Date de facturation', - 'pref_optional_tj_internal_reference' => 'Référence interne', - 'pref_optional_tj_notes' => 'Notes', - 'pref_optional_tj_attachments' => 'Pièces jointes', - 'pref_optional_tj_external_url' => 'URL externe', - 'pref_optional_tj_location' => 'Emplacement', - 'pref_optional_tj_links' => 'Liens d\'opération', - 'optional_field_meta_dates' => 'Dates', - 'optional_field_meta_business' => 'Commerce', - 'optional_field_attachments' => 'Pièces jointes', - 'optional_field_meta_data' => 'Métadonnées facultatives', - 'external_url' => 'URL externe', - 'pref_notification_bill_reminder' => 'Rappel à l\'expiration des factures', - 'pref_notification_new_access_token' => 'Alerte à la création d\'un nouveau jeton d\'accès API', - 'pref_notification_transaction_creation' => 'Alerte à la création automatique d\'une opération', - 'pref_notification_user_login' => 'Alerte à la connexion depuis un nouvel emplacement', - 'pref_notification_rule_action_failures' => 'Alerte lorsque les actions des règles ne s\'exécutent pas (Slack ou Discord uniquement)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Sélectionnez les notifications que vous souhaitez recevoir. Certaines notifications peuvent contenir des informations financières sensibles.', - 'slack_webhook_url' => 'Webhook URL de Slack', - 'slack_webhook_url_help' => 'Si vous voulez que Firefly III vous avertisse en utilisant Slack, entrez l\'URL du webhook ici. Sinon, laissez le champ vide. Si vous êtes un administrateur, vous devez également définir cette URL dans l\'administration.', - 'slack_url_label' => 'URL du webhook entrant de Slack', + 'dark_mode_option_browser' => 'Laisser le navigateur décider', + 'dark_mode_option_light' => 'Toujours clair', + 'dark_mode_option_dark' => 'Toujours sombre', + 'equal_to_language' => '(égal à la langue)', + 'dark_mode_preference' => 'Mode sombre', + 'dark_mode_preference_help' => 'Dire à Firefly III quand utiliser le mode sombre.', + 'pref_home_screen_accounts' => 'Comptes de l’écran d’accueil', + 'pref_home_screen_accounts_help' => 'Quels sont les comptes à afficher sur la page d’accueil ?', + 'pref_view_range' => 'Intervalle d\'affichage', + 'pref_view_range_help' => "Certains graphiques sont automatiquement regroupés par périodes. Vos budgets seront aussi organisés par périodes. Quelle période préférez-vous\u{a0}?", + 'pref_1D' => 'Un jour', + 'pref_1W' => 'Une semaine', + 'pref_1M' => 'Un mois', + 'pref_3M' => 'Trois mois (trimestre)', + 'pref_6M' => 'Six mois', + 'pref_1Y' => 'Un an', + 'pref_last365' => 'L\'année dernière', + 'pref_last90' => 'Les 90 derniers jours', + 'pref_last30' => 'Les 30 derniers jours', + 'pref_last7' => 'Les 7 derniers jours', + 'pref_YTD' => 'Année en cours', + 'pref_QTD' => 'Ce trimestre', + 'pref_MTD' => 'Depuis le début du mois', + 'pref_languages' => 'Langues', + 'pref_locale' => 'Paramètres régionaux', + 'pref_languages_help' => 'Firefly III prend en charge plusieurs langues. Laquelle préférez-vous ?', + 'pref_locale_help' => 'Firefly III vous permet de définir d\'autres paramètres locaux, comme la façon dont les devises, les nombres et les dates sont formatées. Les entrées dans cette liste peuvent ne pas être prises en charge par votre système. Firefly III n\'est pas paramétré correctement pour toutes les langues ; contactez-moi pour les améliorer.', + 'pref_locale_no_demo' => 'Cette fonctionnalité ne fonctionnera pas pour l\'utilisateur de démonstration.', + 'pref_custom_fiscal_year' => 'Paramètres fiscaux de l\'année', + 'pref_custom_fiscal_year_label' => 'Activé', + 'pref_custom_fiscal_year_help' => 'Dans les pays qui utilisent une année financière autre que du 1er janvier au 31 décembre, vous pouvez la changer en spécifiant le jour de début et de fin de l\'année fiscale', + 'pref_fiscal_year_start_label' => 'Date du début de l\'année fiscale', + 'pref_two_factor_auth' => 'Validation en 2 étapes', + 'pref_two_factor_auth_help' => 'Lorsque vous activez la validation en 2 étapes (également connu sous le nom de deux facteurs d’authentification), vous ajoutez une couche de sécurité supplémentaire à votre compte. Vous vous connectez avec quelque chose que vous connaissez (votre mot de passe) et quelque chose que vous avez (un code de vérification). Les codes de vérification sont générés par une application sur votre téléphone, comme par exemple Authy ou Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Activez la validation en 2 étapes', + 'pref_two_factor_auth_disabled' => 'Le code de vérification en deux étapes a été enlevé et désactivé', + 'pref_two_factor_auth_remove_it' => 'N’oubliez pas de supprimer ce compte de votre application d’authentification !', + 'pref_two_factor_auth_code' => 'Vérifier le code', + 'pref_two_factor_auth_code_help' => 'Scanner le code QR avec une application sur votre téléphone comme Authy ou Google Authenticator et entrez le code généré.', + 'pref_two_factor_auth_reset_code' => 'Réinitialiser le code de vérification', + 'pref_two_factor_auth_disable_2fa' => 'Désactiver l\'authentification en deux étapes', + '2fa_use_secret_instead' => "Si vous ne pouvez pas scanner le code QR, vous pouvez utiliser le code suivant à\u{a0}la place :\u{a0}:secret.", + '2fa_backup_codes' => 'Stockez ces codes de récupération pour vous connecter au cas où vous perdez votre appareil.', + '2fa_already_enabled' => 'La vérification à deux étapes est déjà activée.', + 'wrong_mfa_code' => 'Le code MFA n\'est pas valide.', + 'pref_save_settings' => 'Enregistrer les paramètres', + 'saved_preferences' => 'Préférences enregistrées !', + 'preferences_general' => 'Général', + 'preferences_frontpage' => 'Écran d\'accueil', + 'preferences_security' => 'Sécurité', + 'preferences_layout' => 'Mise en Page', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Afficher les dépôts sur l\'écran d\'accueil', + 'pref_home_show_deposits_info' => 'L\'écran d\'accueil affiche déjà vos comptes de dépenses. Devrait-il aussi afficher vos comptes de revenus ?', + 'pref_home_do_show_deposits' => 'Oui, montrez-les', + 'successful_count' => 'dont :count avec succès', + 'list_page_size_title' => 'Taille de la page', + 'list_page_size_help' => 'Les listes d\'éléments (comptes, opérations, etc) affichent un nombre maximum d\'élément par page.', + 'list_page_size_label' => 'Nombre d\'élément par page', + 'between_dates' => '(:start et :end)', + 'pref_optional_fields_transaction' => 'Champs optionnels pour les opérations', + 'pref_optional_fields_transaction_help' => 'Par défaut, tous les champs ne sont pas disponibles lors de la création d\'une nouvelle opération (pour éviter de surcharger la page). Vous pouvez activer les champs suivants si vous pensez qu\'ils peuvent vous être utiles. Bien sûr, tout champ désactivé mais précédemment rempli restera visible quel que soit son paramétrage.', + 'optional_tj_date_fields' => 'Champ date', + 'optional_tj_other_fields' => 'Autres champs', + 'optional_tj_attachment_fields' => 'Champs de pièces jointes', + 'pref_optional_tj_interest_date' => 'Date de valeur (intérêts)', + 'pref_optional_tj_book_date' => 'Date d\'enregistrement', + 'pref_optional_tj_process_date' => 'Date de traitement', + 'pref_optional_tj_due_date' => 'Échéance', + 'pref_optional_tj_payment_date' => 'Date de paiement', + 'pref_optional_tj_invoice_date' => 'Date de facturation', + 'pref_optional_tj_internal_reference' => 'Référence interne', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Pièces jointes', + 'pref_optional_tj_external_url' => 'URL externe', + 'pref_optional_tj_location' => 'Emplacement', + 'pref_optional_tj_links' => 'Liens d\'opération', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Commerce', + 'optional_field_attachments' => 'Pièces jointes', + 'optional_field_meta_data' => 'Métadonnées facultatives', + 'external_url' => 'URL externe', + 'pref_notification_bill_reminder' => 'Rappel à l\'expiration des factures', + 'pref_notification_new_access_token' => 'Alerte à la création d\'un nouveau jeton d\'accès API', + 'pref_notification_transaction_creation' => 'Alerte à la création automatique d\'une opération', + 'pref_notification_user_login' => 'Alerte à la connexion depuis un nouvel emplacement', + 'pref_notification_rule_action_failures' => 'Alerte lorsque les actions des règles ne s\'exécutent pas (Slack ou Discord uniquement)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Sélectionnez les notifications que vous souhaitez recevoir. Certaines notifications peuvent contenir des informations financières sensibles.', + 'slack_webhook_url' => 'Webhook URL de Slack', + 'slack_webhook_url_help' => 'Si vous voulez que Firefly III vous avertisse en utilisant Slack, entrez l\'URL du webhook ici. Sinon, laissez le champ vide. Si vous êtes un administrateur, vous devez également définir cette URL dans l\'administration.', + 'slack_url_label' => 'URL du webhook entrant de Slack', // Financial administrations - 'administration_index' => 'Administration financière', - 'administrations_index_menu' => 'Administration(s) financière(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administration financière', + 'administrations_index_menu' => 'Administration(s) financière(s)', + 'administrations_breadcrumb' => 'Administrations financières', + 'administrations_page_title' => 'Administrations financières', + 'administrations_page_sub_title' => 'Vue d\'ensemble', + 'create_administration' => 'Créer une nouvelle administration', + 'administration_owner' => 'Propriétaire de l\'administration : {{email}}', + 'administration_you' => 'Votre rôle : {{role}}', + 'other_users_in_admin' => 'Autres utilisateurs dans cette administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Propriétaire', + 'administration_role_ro' => 'Lecture seule', + 'administration_role_mng_trx' => 'Gérer les opérations', + 'administration_role_mng_meta' => 'Gérer la classification et les métadonnées', + 'administration_role_mng_budgets' => 'Gérer les budgets', + 'administration_role_mng_piggies' => 'Gérer les tirelires', + 'administration_role_mng_subscriptions' => 'Gérer les abonnements', + 'administration_role_mng_rules' => 'Gérer les règles', + 'administration_role_mng_recurring' => 'Gérer les opérations périodiques ', + 'administration_role_mng_webhooks' => 'Gérer les webhooks', + 'administration_role_mng_currencies' => 'Gérer les devises', + 'administration_role_view_reports' => 'Afficher les rapports', + 'administration_role_full' => 'Accès complet', // profile: - 'purge_data_title' => 'Purger des données de Firefly III', - 'purge_data_expl' => '« Purger » signifie « supprimer ce qui est déjà supprimé ». En temps normal, Firefly III ne supprime rien définitivement. Il ne fait que le cacher. Le bouton ci-dessous supprime tous ces enregistrements précédemment "supprimés".', - 'delete_stuff_header' => 'Supprimer et purger les données', - 'purge_all_data' => 'Purger tous les enregistrements supprimés', - 'purge_data' => 'Purger les données', - 'purged_all_records' => 'Tous les enregistrements supprimés ont été purgés.', - 'delete_data_title' => 'Supprimer des données de Firefly III', - 'permanent_delete_stuff' => 'Vous pouvez supprimer des éléments de Firefly III. En utilisant les boutons ci-dessous, vos éléments seront cachés. Il n\'y a pas de bouton d\'annulation pour cela, mais les éléments peuvent rester dans la base de données où vous pouvez les restaurer si nécessaire.', - 'other_sessions_logged_out' => 'Toutes vos autres sessions ont été déconnectées.', - 'delete_unused_accounts' => 'La suppression des comptes inutilisés effacera vos listes de remplissage automatique.', - 'delete_all_unused_accounts' => 'Supprimer les comptes inutilisés', - 'deleted_all_unused_accounts' => 'Tous les comptes inutilisés sont supprimés', - 'delete_all_budgets' => 'Supprimer TOUS vos budgets', - 'delete_all_categories' => 'Supprimer TOUTES vos catégories', - 'delete_all_tags' => 'Supprimer TOUS vos tags', - 'delete_all_bills' => 'Supprimer TOUTES vos factures', - 'delete_all_piggy_banks' => 'Supprimer TOUTES vos tirelires', - 'delete_all_rules' => 'Supprimer TOUTES vos règles', - 'delete_all_recurring' => 'Supprimer TOUTES vos opérations récurrentes', - 'delete_all_object_groups' => 'Supprimer TOUS vos groupes d\'objets', - 'delete_all_accounts' => 'Supprimer TOUS vos comptes', - 'delete_all_asset_accounts' => 'Supprimer TOUS vos comptes d\'actifs', - 'delete_all_expense_accounts' => 'Supprimer TOUS vos comptes de dépenses', - 'delete_all_revenue_accounts' => 'Supprimer TOUS vos comptes de revenus', - 'delete_all_liabilities' => 'Supprimer TOUS vos passifs', - 'delete_all_transactions' => 'Supprimer TOUTES vos opérations', - 'delete_all_withdrawals' => 'Supprimer TOUTES vos dépenses', - 'delete_all_deposits' => 'Supprimer TOUS vos dépôts', - 'delete_all_transfers' => 'Supprimer TOUS vos transferts', - 'also_delete_transactions' => 'La suppression des comptes supprimera également TOU(TE)S les dépenses, dépôts et transferts associé(e)s !', - 'deleted_all_budgets' => 'Tous les budgets ont été supprimés', - 'deleted_all_categories' => 'Toutes les catégories ont été supprimées', - 'deleted_all_tags' => 'Tous les étiquettes ont été supprimés', - 'deleted_all_bills' => 'Toutes les factures ont été supprimées', - 'deleted_all_piggy_banks' => 'Toutes les tirelires ont été supprimées', - 'deleted_all_rules' => 'Toutes les règles et les groupes de règles ont été supprimés', - 'deleted_all_object_groups' => 'Tous les groupes ont été supprimés', - 'deleted_all_accounts' => 'Tous les comptes ont été supprimés', - 'deleted_all_asset_accounts' => 'Tous les comptes d\'actifs ont été supprimés', - 'deleted_all_expense_accounts' => 'Tous les comptes de dépenses ont été supprimés', - 'deleted_all_revenue_accounts' => 'Tous les comptes de revenus ont été supprimés', - 'deleted_all_liabilities' => 'Tous les passifs ont été supprimés', - 'deleted_all_transactions' => 'Toutes les opérations ont été supprimées', - 'deleted_all_withdrawals' => 'Toutes les dépenses ont été supprimés', - 'deleted_all_deposits' => 'Tous les dépôts ont été supprimés', - 'deleted_all_transfers' => 'Tous les transferts ont été supprimés', - 'deleted_all_recurring' => 'Toutes les opérations récurrentes ont été supprimées', - 'change_your_password' => 'Modifier votre mot de passe', - 'delete_account' => 'Supprimer le compte', - 'current_password' => 'Mot de passe actuel', - 'new_password' => "Nouveau mot de passe\u{a0}", - 'new_password_again' => "Nouveau mot de passe\u{a0}(confirmation)", - 'delete_your_account' => 'Supprimer votre compte', - 'delete_your_account_help' => 'La suppression de votre compte supprimera également les comptes, les opérations, tout ce que vous pourriez avoir enregistré dans Firefly III. Tout sera SUPPRIMÉ.', - 'delete_your_account_password' => 'Entrez votre mot de passe pour continuer.', - 'password' => 'Mot de passe', - 'are_you_sure' => 'Êtes-vous sûr ? Vous ne pourrez pas annuler cette action.', - 'delete_account_button' => 'SUPPRIMER votre compte', - 'invalid_current_password' => 'Mot de passe actuel non valide !', - 'password_changed' => 'Mot de passe modifié !', - 'should_change' => 'L’idée est de changer votre mot de passe.', - 'invalid_password' => 'Mot de passe incorrect !', - 'what_is_pw_security' => 'Qu\'est-ce que "vérifier la sécurité du mot de passe" ?', - 'secure_pw_title' => 'Comment choisir un mot de passe sécurisé', - 'forgot_password_response' => 'Merci. Si un compte existe avec cette adresse e-mail, vous trouverez des instructions dans votre boîte de réception.', - 'secure_pw_history' => 'Pas une semaine ne se passe sans que vous lisiez dans la presse qu\'un site s\'est fait dérober les mots de passe de ses utilisateurs. Les pirates et les voleurs utilisent ces mots de passe pour tenter de voler vos informations personnelles. Cette information est précieuse.', - 'secure_pw_ff' => 'Vous utilisez le même mot de passe partout sur Internet ? Si un seul site se fait dérober ce mot de passe, c\'est l\'ensemble de vos comptes et données qui sont exposées aux pirates. Firefly III compte sur vous pour choisir un mot de passe unique et fort pour protéger vos informations financières.', - 'secure_pw_check_box' => 'Pour vous y aider Firefly III peut vérifier que le mot de passe que vous souhaitez utiliser n\'a jamais été dérobé auparavant. Si c\'est le cas, Firefly III vous conseille de NE PAS utiliser ce mot de passe.', - 'secure_pw_working_title' => "Comment est-ce que cela fonctionne\u{a0}?", - 'secure_pw_working' => 'Si vous cochez l\'option, Firefly III enverra les 5 premiers caractères de l\'empreinte SHA1 de votre mot de passe au site Web de Troy Hunt pour contrôler si elle y apparait. Cela vous empêchera d\'utiliser des mots de passe non sûrs tel que recommandé par la dernière publication spéciale NIST sur le sujet.', - 'secure_pw_should' => 'Dois-je cocher la case ?', - 'secure_pw_long_password' => 'Oui. Toujours vérifier que votre mot de passe est sûr.', - 'command_line_token' => 'Jeton de ligne de commande', - 'explain_command_line_token' => 'Vous avez besoin de ce jeton pour exécuter des lignes de commande telles qu\'exporter des données. Sans celui-ci, une telle commande ne fonctionnera pas. Ne partagez jamais votre jeton. Personne ne vous le demandera, pas même moi. Si vous craignez de le perdre, ou si vous êtes parano, régénérez ce jeton à l\'aide du bouton.', - 'regenerate_command_line_token' => 'Régénérer le jeton de ligne de commande', - 'token_regenerated' => 'Un nouveau jeton en ligne de commande a été généré', - 'change_your_email' => 'Changer votre adresse e-mail', - 'email_verification' => 'Un e-mail sera envoyé à votre ancienne ET votre nouvelle adresse. Pour des raisons de sécurité, vous ne pourrez pas vous connecter jusqu\'à ce que vous ayez vérifié votre nouvelle adresse. Si vous n\'êtes pas certain que votre installation de Firefly III soit capable d\'envoyer un e-mail, n\'utilisez pas cette fonctionnalité. Si vous êtes un administrateur, vous pouvez tester l\'envoi des e-mails en allant dans le menu Administration.', - 'email_changed_logout' => 'Vous ne pouvez pas vous connecter tant que vous n\'aurez pas vérifié votre adresse e-mail.', - 'login_with_new_email' => 'Vous pouvez désormais vous connecter avec votre nouvelle adresse e-mail.', - 'login_with_old_email' => 'Vous pouvez à nouveau vous connecter à l\'aide de votre ancienne adresse e-mail.', - 'login_provider_local_only' => 'Cette action n’est pas disponible lors de l’authentification par ":login_provider".', - 'external_user_mgt_disabled' => 'Cette action n\'est pas disponible lorsque Firefly III n\'est pas responsable de la gestion des utilisateurs ou de l\'authentification.', - 'external_auth_disabled' => 'Cette action n\'est pas disponible lorsque Firefly III n\'est pas responsable de la gestion de l\'authentification.', - 'delete_local_info_only' => "Comme Firefly III n'est pas responsable de la gestion des utilisateurs ou de l'authentification, cette fonction ne supprimera que les informations locales de Firefly III.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clients OAuth', - 'profile_oauth_no_clients' => 'Vous n’avez pas encore créé de client OAuth.', - 'profile_oauth_clients_external_auth' => 'Si vous utilisez un fournisseur d\'authentification externe comme Authelia, les clients OAuth ne fonctionneront pas. Vous ne pouvez utiliser que des jetons d\'accès personnel.', - 'profile_oauth_clients_header' => 'Clients', - 'profile_oauth_client_id' => 'Identifiant', - 'profile_oauth_client_name' => 'Nom', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Créer un nouveau client', - 'profile_oauth_create_client' => 'Créer un client', - 'profile_oauth_edit_client' => 'Modifier le client', - 'profile_oauth_name_help' => 'Quelque chose que vos utilisateurs reconnaîtront et qui inspirera confiance.', - 'profile_oauth_redirect_url' => 'URL de redirection', - 'profile_oauth_redirect_url_help' => 'URL de callback de votre application.', - 'profile_authorized_apps' => 'Applications autorisées', - 'profile_authorized_clients' => 'Clients autorisés', - 'profile_scopes' => 'Permissions', - 'profile_revoke' => 'Révoquer', - 'profile_oauth_client_secret_title' => 'Secret du client', - 'profile_oauth_client_secret_expl' => 'Voici votre nouveau secret de client. C\'est la seule fois qu\'il sera affiché, donc ne le perdez pas ! Vous pouvez maintenant utiliser ce secret pour faire des requêtes d\'API.', - 'profile_personal_access_tokens' => 'Jetons d\'accès personnels', - 'profile_personal_access_token' => 'Jeton d\'accès personnel', - 'profile_oauth_confidential' => 'Confidentiel', - 'profile_oauth_confidential_help' => 'Exiger que le client s\'authentifie avec un secret. Les clients confidentiels peuvent détenir des informations d\'identification de manière sécurisée sans les exposer à des tiers non autorisés. Les applications publiques, telles que les applications de bureau natif ou les SPA JavaScript, ne peuvent pas tenir des secrets en toute sécurité.', - 'profile_personal_access_token_explanation' => 'Voici votre nouveau jeton d’accès personnel. Ceci est la seule fois où vous pourrez le voir, ne le perdez pas ! Vous pouvez dès à présent utiliser ce jeton pour lancer des requêtes avec l’API.', - 'profile_no_personal_access_token' => 'Vous n’avez pas encore créé de jeton d’accès personnel.', - 'profile_create_new_token' => 'Créer un nouveau jeton', - 'profile_create_token' => 'Créer un jeton', - 'profile_create' => 'Créer', - 'profile_save_changes' => 'Enregistrer les modifications', - 'profile_whoops' => 'Oups !', - 'profile_something_wrong' => 'Une erreur s\'est produite !', - 'profile_try_again' => 'Une erreur s’est produite. Merci d’essayer à nouveau.', - 'amounts' => 'Montants', - 'multi_account_warning_unknown' => 'Selon le type d\'opération que vous créez, le(s) compte(s) source et/ou de destination des séparations suivantes peuvent être remplacés par celui de la première séparation de l\'opération.', - 'multi_account_warning_withdrawal' => 'Gardez en tête que le compte source des séparations suivantes peut être remplacé par celui de la première séparation de la dépense.', - 'multi_account_warning_deposit' => 'Gardez en tête que le compte de destination des séparations suivantes peut être remplacé par celui de la première séparation du dépôt.', - 'multi_account_warning_transfer' => 'Gardez en tête que les comptes source et de destination des séparations suivantes peuvent être remplacés par ceux de la première séparation du transfert.', + 'purge_data_title' => 'Purger des données de Firefly III', + 'purge_data_expl' => '« Purger » signifie « supprimer ce qui est déjà supprimé ». En temps normal, Firefly III ne supprime rien définitivement. Il ne fait que le cacher. Le bouton ci-dessous supprime tous ces enregistrements précédemment "supprimés".', + 'delete_stuff_header' => 'Supprimer et purger les données', + 'purge_all_data' => 'Purger tous les enregistrements supprimés', + 'purge_data' => 'Purger les données', + 'purged_all_records' => 'Tous les enregistrements supprimés ont été purgés.', + 'delete_data_title' => 'Supprimer des données de Firefly III', + 'permanent_delete_stuff' => 'Vous pouvez supprimer des éléments de Firefly III. En utilisant les boutons ci-dessous, vos éléments seront cachés. Il n\'y a pas de bouton d\'annulation pour cela, mais les éléments peuvent rester dans la base de données où vous pouvez les restaurer si nécessaire.', + 'other_sessions_logged_out' => 'Toutes vos autres sessions ont été déconnectées.', + 'delete_unused_accounts' => 'La suppression des comptes inutilisés effacera vos listes de remplissage automatique.', + 'delete_all_unused_accounts' => 'Supprimer les comptes inutilisés', + 'deleted_all_unused_accounts' => 'Tous les comptes inutilisés sont supprimés', + 'delete_all_budgets' => 'Supprimer TOUS vos budgets', + 'delete_all_categories' => 'Supprimer TOUTES vos catégories', + 'delete_all_tags' => 'Supprimer TOUS vos tags', + 'delete_all_bills' => 'Supprimer TOUTES vos factures', + 'delete_all_piggy_banks' => 'Supprimer TOUTES vos tirelires', + 'delete_all_rules' => 'Supprimer TOUTES vos règles', + 'delete_all_recurring' => 'Supprimer TOUTES vos opérations récurrentes', + 'delete_all_object_groups' => 'Supprimer TOUS vos groupes d\'objets', + 'delete_all_accounts' => 'Supprimer TOUS vos comptes', + 'delete_all_asset_accounts' => 'Supprimer TOUS vos comptes d\'actifs', + 'delete_all_expense_accounts' => 'Supprimer TOUS vos comptes de dépenses', + 'delete_all_revenue_accounts' => 'Supprimer TOUS vos comptes de revenus', + 'delete_all_liabilities' => 'Supprimer TOUS vos passifs', + 'delete_all_transactions' => 'Supprimer TOUTES vos opérations', + 'delete_all_withdrawals' => 'Supprimer TOUTES vos dépenses', + 'delete_all_deposits' => 'Supprimer TOUS vos dépôts', + 'delete_all_transfers' => 'Supprimer TOUS vos transferts', + 'also_delete_transactions' => 'La suppression des comptes supprimera également TOU(TE)S les dépenses, dépôts et transferts associé(e)s !', + 'deleted_all_budgets' => 'Tous les budgets ont été supprimés', + 'deleted_all_categories' => 'Toutes les catégories ont été supprimées', + 'deleted_all_tags' => 'Tous les étiquettes ont été supprimés', + 'deleted_all_bills' => 'Toutes les factures ont été supprimées', + 'deleted_all_piggy_banks' => 'Toutes les tirelires ont été supprimées', + 'deleted_all_rules' => 'Toutes les règles et les groupes de règles ont été supprimés', + 'deleted_all_object_groups' => 'Tous les groupes ont été supprimés', + 'deleted_all_accounts' => 'Tous les comptes ont été supprimés', + 'deleted_all_asset_accounts' => 'Tous les comptes d\'actifs ont été supprimés', + 'deleted_all_expense_accounts' => 'Tous les comptes de dépenses ont été supprimés', + 'deleted_all_revenue_accounts' => 'Tous les comptes de revenus ont été supprimés', + 'deleted_all_liabilities' => 'Tous les passifs ont été supprimés', + 'deleted_all_transactions' => 'Toutes les opérations ont été supprimées', + 'deleted_all_withdrawals' => 'Toutes les dépenses ont été supprimés', + 'deleted_all_deposits' => 'Tous les dépôts ont été supprimés', + 'deleted_all_transfers' => 'Tous les transferts ont été supprimés', + 'deleted_all_recurring' => 'Toutes les opérations récurrentes ont été supprimées', + 'change_your_password' => 'Modifier votre mot de passe', + 'delete_account' => 'Supprimer le compte', + 'current_password' => 'Mot de passe actuel', + 'new_password' => "Nouveau mot de passe\u{a0}", + 'new_password_again' => "Nouveau mot de passe\u{a0}(confirmation)", + 'delete_your_account' => 'Supprimer votre compte', + 'delete_your_account_help' => 'La suppression de votre compte supprimera également les comptes, les opérations, tout ce que vous pourriez avoir enregistré dans Firefly III. Tout sera SUPPRIMÉ.', + 'delete_your_account_password' => 'Entrez votre mot de passe pour continuer.', + 'password' => 'Mot de passe', + 'are_you_sure' => 'Êtes-vous sûr ? Vous ne pourrez pas annuler cette action.', + 'delete_account_button' => 'SUPPRIMER votre compte', + 'invalid_current_password' => 'Mot de passe actuel non valide !', + 'password_changed' => 'Mot de passe modifié !', + 'should_change' => 'L’idée est de changer votre mot de passe.', + 'invalid_password' => 'Mot de passe incorrect !', + 'what_is_pw_security' => 'Qu\'est-ce que "vérifier la sécurité du mot de passe" ?', + 'secure_pw_title' => 'Comment choisir un mot de passe sécurisé', + 'forgot_password_response' => 'Merci. Si un compte existe avec cette adresse e-mail, vous trouverez des instructions dans votre boîte de réception.', + 'secure_pw_history' => 'Pas une semaine ne se passe sans que vous lisiez dans la presse qu\'un site s\'est fait dérober les mots de passe de ses utilisateurs. Les pirates et les voleurs utilisent ces mots de passe pour tenter de voler vos informations personnelles. Cette information est précieuse.', + 'secure_pw_ff' => 'Vous utilisez le même mot de passe partout sur Internet ? Si un seul site se fait dérober ce mot de passe, c\'est l\'ensemble de vos comptes et données qui sont exposées aux pirates. Firefly III compte sur vous pour choisir un mot de passe unique et fort pour protéger vos informations financières.', + 'secure_pw_check_box' => 'Pour vous y aider Firefly III peut vérifier que le mot de passe que vous souhaitez utiliser n\'a jamais été dérobé auparavant. Si c\'est le cas, Firefly III vous conseille de NE PAS utiliser ce mot de passe.', + 'secure_pw_working_title' => "Comment est-ce que cela fonctionne\u{a0}?", + 'secure_pw_working' => 'Si vous cochez l\'option, Firefly III enverra les 5 premiers caractères de l\'empreinte SHA1 de votre mot de passe au site Web de Troy Hunt pour contrôler si elle y apparait. Cela vous empêchera d\'utiliser des mots de passe non sûrs tel que recommandé par la dernière publication spéciale NIST sur le sujet.', + 'secure_pw_should' => 'Dois-je cocher la case ?', + 'secure_pw_long_password' => 'Oui. Toujours vérifier que votre mot de passe est sûr.', + 'command_line_token' => 'Jeton de ligne de commande', + 'explain_command_line_token' => 'Vous avez besoin de ce jeton pour exécuter des lignes de commande telles qu\'exporter des données. Sans celui-ci, une telle commande ne fonctionnera pas. Ne partagez jamais votre jeton. Personne ne vous le demandera, pas même moi. Si vous craignez de le perdre, ou si vous êtes parano, régénérez ce jeton à l\'aide du bouton.', + 'regenerate_command_line_token' => 'Régénérer le jeton de ligne de commande', + 'token_regenerated' => 'Un nouveau jeton en ligne de commande a été généré', + 'change_your_email' => 'Changer votre adresse e-mail', + 'email_verification' => 'Un e-mail sera envoyé à votre ancienne ET votre nouvelle adresse. Pour des raisons de sécurité, vous ne pourrez pas vous connecter jusqu\'à ce que vous ayez vérifié votre nouvelle adresse. Si vous n\'êtes pas certain que votre installation de Firefly III soit capable d\'envoyer un e-mail, n\'utilisez pas cette fonctionnalité. Si vous êtes un administrateur, vous pouvez tester l\'envoi des e-mails en allant dans le menu Administration.', + 'email_changed_logout' => 'Vous ne pouvez pas vous connecter tant que vous n\'aurez pas vérifié votre adresse e-mail.', + 'login_with_new_email' => 'Vous pouvez désormais vous connecter avec votre nouvelle adresse e-mail.', + 'login_with_old_email' => 'Vous pouvez à nouveau vous connecter à l\'aide de votre ancienne adresse e-mail.', + 'login_provider_local_only' => 'Cette action n’est pas disponible lors de l’authentification par ":login_provider".', + 'external_user_mgt_disabled' => 'Cette action n\'est pas disponible lorsque Firefly III n\'est pas responsable de la gestion des utilisateurs ou de l\'authentification.', + 'external_auth_disabled' => 'Cette action n\'est pas disponible lorsque Firefly III n\'est pas responsable de la gestion de l\'authentification.', + 'delete_local_info_only' => "Comme Firefly III n'est pas responsable de la gestion des utilisateurs ou de l'authentification, cette fonction ne supprimera que les informations locales de Firefly III.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clients OAuth', + 'profile_oauth_no_clients' => 'Vous n’avez pas encore créé de client OAuth.', + 'profile_oauth_clients_external_auth' => 'Si vous utilisez un fournisseur d\'authentification externe comme Authelia, les clients OAuth ne fonctionneront pas. Vous ne pouvez utiliser que des jetons d\'accès personnel.', + 'profile_oauth_clients_header' => 'Clients', + 'profile_oauth_client_id' => 'Identifiant', + 'profile_oauth_client_name' => 'Nom', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Créer un nouveau client', + 'profile_oauth_create_client' => 'Créer un client', + 'profile_oauth_edit_client' => 'Modifier le client', + 'profile_oauth_name_help' => 'Quelque chose que vos utilisateurs reconnaîtront et qui inspirera confiance.', + 'profile_oauth_redirect_url' => 'URL de redirection', + 'profile_oauth_redirect_url_help' => 'URL de callback de votre application.', + 'profile_authorized_apps' => 'Applications autorisées', + 'profile_authorized_clients' => 'Clients autorisés', + 'profile_scopes' => 'Permissions', + 'profile_revoke' => 'Révoquer', + 'profile_oauth_client_secret_title' => 'Secret du client', + 'profile_oauth_client_secret_expl' => 'Voici votre nouveau secret de client. C\'est la seule fois qu\'il sera affiché, donc ne le perdez pas ! Vous pouvez maintenant utiliser ce secret pour faire des requêtes d\'API.', + 'profile_personal_access_tokens' => 'Jetons d\'accès personnels', + 'profile_personal_access_token' => 'Jeton d\'accès personnel', + 'profile_oauth_confidential' => 'Confidentiel', + 'profile_oauth_confidential_help' => 'Exiger que le client s\'authentifie avec un secret. Les clients confidentiels peuvent détenir des informations d\'identification de manière sécurisée sans les exposer à des tiers non autorisés. Les applications publiques, telles que les applications de bureau natif ou les SPA JavaScript, ne peuvent pas tenir des secrets en toute sécurité.', + 'profile_personal_access_token_explanation' => 'Voici votre nouveau jeton d’accès personnel. Ceci est la seule fois où vous pourrez le voir, ne le perdez pas ! Vous pouvez dès à présent utiliser ce jeton pour lancer des requêtes avec l’API.', + 'profile_no_personal_access_token' => 'Vous n’avez pas encore créé de jeton d’accès personnel.', + 'profile_create_new_token' => 'Créer un nouveau jeton', + 'profile_create_token' => 'Créer un jeton', + 'profile_create' => 'Créer', + 'profile_save_changes' => 'Enregistrer les modifications', + 'profile_whoops' => 'Oups !', + 'profile_something_wrong' => 'Une erreur s\'est produite !', + 'profile_try_again' => 'Une erreur s’est produite. Merci d’essayer à nouveau.', + 'amounts' => 'Montants', + 'multi_account_warning_unknown' => 'Selon le type d\'opération que vous créez, le(s) compte(s) source et/ou de destination des séparations suivantes peuvent être remplacés par celui de la première séparation de l\'opération.', + 'multi_account_warning_withdrawal' => 'Gardez en tête que le compte source des séparations suivantes peut être remplacé par celui de la première séparation de la dépense.', + 'multi_account_warning_deposit' => 'Gardez en tête que le compte de destination des séparations suivantes peut être remplacé par celui de la première séparation du dépôt.', + 'multi_account_warning_transfer' => 'Gardez en tête que les comptes source et de destination des séparations suivantes peuvent être remplacés par ceux de la première séparation du transfert.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exporter des données depuis Firefly III', - 'export_data_menu' => 'Exporter des données', - 'export_data_bc' => 'Exporter des données depuis Firefly III', - 'export_data_main_title' => 'Exporter des données depuis Firefly III', - 'export_data_expl' => 'Ce lien vous permet d\'exporter toutes les opérations et métadonnées de Firefly III. Plus d\'informations dans l\'aide (icône (?) en haut à droite).', - 'export_data_all_transactions' => 'Exporter toutes les opérations', - 'export_data_advanced_expl' => 'Si vous avez besoin d\'un type d\'exportation plus avancé ou plus spécifique, lisez l\'aide sur comment utiliser la commande php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exporter des données depuis Firefly III', + 'export_data_menu' => 'Exporter des données', + 'export_data_bc' => 'Exporter des données depuis Firefly III', + 'export_data_main_title' => 'Exporter des données depuis Firefly III', + 'export_data_expl' => 'Ce lien vous permet d\'exporter toutes les opérations et métadonnées de Firefly III. Plus d\'informations dans l\'aide (icône (?) en haut à droite).', + 'export_data_all_transactions' => 'Exporter toutes les opérations', + 'export_data_advanced_expl' => 'Si vous avez besoin d\'un type d\'exportation plus avancé ou plus spécifique, lisez l\'aide sur comment utiliser la commande php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Une pièce jointe|:count pièces jointes', - 'attachments' => 'Pièces jointes', - 'edit_attachment' => 'Modifier la pièce jointe ":name"', - 'update_attachment' => 'Mettre à jour la pièce jointe', - 'delete_attachment' => 'Supprimer la pièce jointe ":name"', - 'attachment_deleted' => 'Pièce jointe ":name" supprimée', - 'liabilities_deleted' => 'Passif ":name" supprimé', - 'attachment_updated' => 'Pièce jointe ":name" mise à jour', - 'upload_max_file_size' => 'Taille maximum du fichier : :size', - 'list_all_attachments' => 'Liste de toutes les pièces jointes', + 'nr_of_attachments' => 'Une pièce jointe|:count pièces jointes', + 'attachments' => 'Pièces jointes', + 'edit_attachment' => 'Modifier la pièce jointe ":name"', + 'update_attachment' => 'Mettre à jour la pièce jointe', + 'delete_attachment' => 'Supprimer la pièce jointe ":name"', + 'attachment_deleted' => 'Pièce jointe ":name" supprimée', + 'liabilities_deleted' => 'Passif ":name" supprimé', + 'attachment_updated' => 'Pièce jointe ":name" mise à jour', + 'upload_max_file_size' => 'Taille maximum du fichier : :size', + 'list_all_attachments' => 'Liste de toutes les pièces jointes', // transaction index - 'is_reconciled_fields_dropped' => 'Comme cette opération est rapprochée, vous ne pourrez pas modifier les comptes, ni le(s) montant(s).', - 'title_expenses' => 'Dépenses', - 'title_withdrawal' => 'Dépenses', - 'title_revenue' => 'Recette / revenu', - 'title_deposit' => 'Recette / revenu', - 'title_transfer' => 'Transferts', - 'title_transfers' => 'Transferts', - 'submission_options' => 'Options de soumission', - 'apply_rules_checkbox' => 'Appliquer les règles', - 'fire_webhooks_checkbox' => 'Lancer les webhooks', - 'select_source_account' => 'Veuillez sélectionner ou saisir un nom de compte source valide', - 'select_dest_account' => 'Veuillez sélectionner ou saisir un nom de compte de destination valide', + 'is_reconciled_fields_dropped' => 'Comme cette opération est rapprochée, vous ne pourrez pas modifier les comptes, ni le(s) montant(s).', + 'title_expenses' => 'Dépenses', + 'title_withdrawal' => 'Dépenses', + 'title_revenue' => 'Recette / revenu', + 'title_deposit' => 'Recette / revenu', + 'title_transfer' => 'Transferts', + 'title_transfers' => 'Transferts', + 'submission_options' => 'Options de soumission', + 'apply_rules_checkbox' => 'Appliquer les règles', + 'fire_webhooks_checkbox' => 'Lancer les webhooks', + 'select_source_account' => 'Veuillez sélectionner ou saisir un nom de compte source valide', + 'select_dest_account' => 'Veuillez sélectionner ou saisir un nom de compte de destination valide', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Cette opération est déjà une dépense', - 'convert_is_already_type_Deposit' => 'Cette opération est déjà un dépôt', - 'convert_is_already_type_Transfer' => 'Cette opération est déjà un transfert', - 'convert_to_Withdrawal' => 'Convertir ":description" en dépense', - 'convert_to_Deposit' => 'Convertir ":description" en dépôt', - 'convert_to_Transfer' => 'Convertir ":description" en transfert', - 'convert_options_WithdrawalDeposit' => 'Convertir un retrait en dépôt', - 'convert_options_WithdrawalTransfer' => 'Convertir une dépense en transfert', - 'convert_options_DepositTransfer' => 'Convertir un dépôt en transfert', - 'convert_options_DepositWithdrawal' => 'Convertir un dépôt en dépense', - 'convert_options_TransferWithdrawal' => 'Convertir un transfert en dépense', - 'convert_options_TransferDeposit' => 'Convertir un transfert en dépôt', - 'convert_Withdrawal_to_deposit' => 'Convertir cette dépense en dépôt', - 'convert_Withdrawal_to_transfer' => 'Convertir cette dépense en transfert', - 'convert_Deposit_to_withdrawal' => 'Convertir ce dépôt en dépense', - 'convert_Deposit_to_transfer' => 'Convertir ce dépôt en transfert', - 'convert_Transfer_to_deposit' => 'Convertir ce transfert en dépôt', - 'convert_Transfer_to_withdrawal' => 'Convertir ce transfert en dépense', - 'convert_please_set_revenue_source' => 'Veuillez choisir le compte de recettes d\'où proviendra l’argent.', - 'convert_please_set_asset_destination' => 'Veuillez choisir le compte d\'actifs sur lequel l\'argent sera versé.', - 'convert_please_set_expense_destination' => 'Veuillez choisir le compte de dépenses sur lequel l\'argent sera versé.', - 'convert_please_set_asset_source' => 'Veuillez choisir le compte d’actifs d\'où proviendra l’argent.', - 'convert_expl_w_d' => 'Lors de la conversion d\'une dépense en dépôt, l\'argent sera déposé dans le compte de destination affiché, au lieu d\'en être retiré.|Lors de la conversion d\'une dépense en dépôt, l\'argent sera déposé dans les comptes de destination affichés, au lieu de leur être retiré.', - 'convert_expl_w_t' => 'Lors de la conversion d\'une dépense en transfert, l\'argent sera transféré du compte source vers un autre compte d\'actif ou de passif au lieu d\'être dépensé sur le comptes de dépenses originaux.|Lors de la conversion d\'une dépense en transfert, l\'argent sera transféré des comptes source vers d\'autres comptes d\'actif ou de passif au lieu d\'être dépensé sur les comptes de dépenses originaux.', - 'convert_expl_d_w' => 'Lors de la conversion d\'un dépôt en dépense, l\'argent sera retiré du compte source affiché, au lieu d\'y être déposé.|Lors de la conversion d\'un dépôt en dépense, l\'argent sera retiré des comptes source affichés, au lieu d\'y être déposé.', - 'convert_expl_d_t' => 'Lorsque vous convertissez un dépôt en transfert, l\'argent sera déposé dans le compte de destination affiché à partir de l\'un de vos comptes d\'actif ou passif.|Lorsque vous convertissez un dépôt en transfert, l\'argent sera déposé dans les comptes de destination affichés à partir de l\'un de vos comptes d\'actif ou passif.', - 'convert_expl_t_w' => 'Lorsque vous convertissez un transfert en dépense, l\'argent sera dépensé sur le compte de destination que vous avez défini ici, au lieu d\'être transféré.|Lorsque vous convertissez un transfert en dépense, l\'argent sera dépensé sur les comptes de destination que vous avez définis ici, au lieu d\'être transféré.', - 'convert_expl_t_d' => 'Lorsque vous convertissez un transfert en dépôt, l\'argent sera déposé dans le compte de destination que vous voyez ici, au lieu de lui être transféré.|Lorsque vous convertissez un transfert en dépôt, l\'argent sera déposé dans les comptes de destination que vous voyez ici, au lieu de leur être transféré.', - 'convert_select_sources' => 'Veuillez sélectionner le nouveau compte source pour terminer la conversion.| Veuillez sélectionner les nouveaux comptes source pour terminer la conversion.', - 'convert_select_destinations' => 'Veuillez sélectionner le nouveau compte de destination pour terminer la conversion.|Veuillez sélectionner les nouveaux comptes de destination pour terminer la conversion.', - 'converted_to_Withdrawal' => 'L\'opération a été convertie en dépense', - 'converted_to_Deposit' => 'L\'opération a été convertie en dépôt', - 'converted_to_Transfer' => 'L\'opération a été convertie en transfert', - 'invalid_convert_selection' => 'Le compte que vous avez sélectionné est déjà utilisé dans cette opération ou n\'existe pas.', - 'source_or_dest_invalid' => 'Impossible de trouver les détails d\'opération corrects. La conversion n\'est pas possible.', - 'convert_to_withdrawal' => 'Convertir en dépense', - 'convert_to_deposit' => 'Convertir en dépôt', - 'convert_to_transfer' => 'Convertir en transfert', + 'convert_is_already_type_Withdrawal' => 'Cette opération est déjà une dépense', + 'convert_is_already_type_Deposit' => 'Cette opération est déjà un dépôt', + 'convert_is_already_type_Transfer' => 'Cette opération est déjà un transfert', + 'convert_to_Withdrawal' => 'Convertir ":description" en dépense', + 'convert_to_Deposit' => 'Convertir ":description" en dépôt', + 'convert_to_Transfer' => 'Convertir ":description" en transfert', + 'convert_options_WithdrawalDeposit' => 'Convertir un retrait en dépôt', + 'convert_options_WithdrawalTransfer' => 'Convertir une dépense en transfert', + 'convert_options_DepositTransfer' => 'Convertir un dépôt en transfert', + 'convert_options_DepositWithdrawal' => 'Convertir un dépôt en dépense', + 'convert_options_TransferWithdrawal' => 'Convertir un transfert en dépense', + 'convert_options_TransferDeposit' => 'Convertir un transfert en dépôt', + 'convert_Withdrawal_to_deposit' => 'Convertir cette dépense en dépôt', + 'convert_Withdrawal_to_transfer' => 'Convertir cette dépense en transfert', + 'convert_Deposit_to_withdrawal' => 'Convertir ce dépôt en dépense', + 'convert_Deposit_to_transfer' => 'Convertir ce dépôt en transfert', + 'convert_Transfer_to_deposit' => 'Convertir ce transfert en dépôt', + 'convert_Transfer_to_withdrawal' => 'Convertir ce transfert en dépense', + 'convert_please_set_revenue_source' => 'Veuillez choisir le compte de recettes d\'où proviendra l’argent.', + 'convert_please_set_asset_destination' => 'Veuillez choisir le compte d\'actifs sur lequel l\'argent sera versé.', + 'convert_please_set_expense_destination' => 'Veuillez choisir le compte de dépenses sur lequel l\'argent sera versé.', + 'convert_please_set_asset_source' => 'Veuillez choisir le compte d’actifs d\'où proviendra l’argent.', + 'convert_expl_w_d' => 'Lors de la conversion d\'une dépense en dépôt, l\'argent sera déposé dans le compte de destination affiché, au lieu d\'en être retiré.|Lors de la conversion d\'une dépense en dépôt, l\'argent sera déposé dans les comptes de destination affichés, au lieu de leur être retiré.', + 'convert_expl_w_t' => 'Lors de la conversion d\'une dépense en transfert, l\'argent sera transféré du compte source vers un autre compte d\'actif ou de passif au lieu d\'être dépensé sur le comptes de dépenses originaux.|Lors de la conversion d\'une dépense en transfert, l\'argent sera transféré des comptes source vers d\'autres comptes d\'actif ou de passif au lieu d\'être dépensé sur les comptes de dépenses originaux.', + 'convert_expl_d_w' => 'Lors de la conversion d\'un dépôt en dépense, l\'argent sera retiré du compte source affiché, au lieu d\'y être déposé.|Lors de la conversion d\'un dépôt en dépense, l\'argent sera retiré des comptes source affichés, au lieu d\'y être déposé.', + 'convert_expl_d_t' => 'Lorsque vous convertissez un dépôt en transfert, l\'argent sera déposé dans le compte de destination affiché à partir de l\'un de vos comptes d\'actif ou passif.|Lorsque vous convertissez un dépôt en transfert, l\'argent sera déposé dans les comptes de destination affichés à partir de l\'un de vos comptes d\'actif ou passif.', + 'convert_expl_t_w' => 'Lorsque vous convertissez un transfert en dépense, l\'argent sera dépensé sur le compte de destination que vous avez défini ici, au lieu d\'être transféré.|Lorsque vous convertissez un transfert en dépense, l\'argent sera dépensé sur les comptes de destination que vous avez définis ici, au lieu d\'être transféré.', + 'convert_expl_t_d' => 'Lorsque vous convertissez un transfert en dépôt, l\'argent sera déposé dans le compte de destination que vous voyez ici, au lieu de lui être transféré.|Lorsque vous convertissez un transfert en dépôt, l\'argent sera déposé dans les comptes de destination que vous voyez ici, au lieu de leur être transféré.', + 'convert_select_sources' => 'Veuillez sélectionner le nouveau compte source pour terminer la conversion.| Veuillez sélectionner les nouveaux comptes source pour terminer la conversion.', + 'convert_select_destinations' => 'Veuillez sélectionner le nouveau compte de destination pour terminer la conversion.|Veuillez sélectionner les nouveaux comptes de destination pour terminer la conversion.', + 'converted_to_Withdrawal' => 'L\'opération a été convertie en dépense', + 'converted_to_Deposit' => 'L\'opération a été convertie en dépôt', + 'converted_to_Transfer' => 'L\'opération a été convertie en transfert', + 'invalid_convert_selection' => 'Le compte que vous avez sélectionné est déjà utilisé dans cette opération ou n\'existe pas.', + 'source_or_dest_invalid' => 'Impossible de trouver les détails d\'opération corrects. La conversion n\'est pas possible.', + 'convert_to_withdrawal' => 'Convertir en dépense', + 'convert_to_deposit' => 'Convertir en dépôt', + 'convert_to_transfer' => 'Convertir en transfert', // create new stuff: - 'create_new_withdrawal' => 'Créer une nouvelle dépense', - 'create_new_deposit' => 'Créer un nouveau dépôt', - 'create_new_transfer' => 'Créer un nouveau transfert', - 'create_new_asset' => 'Créer un nouveau compte d’actif', - 'create_new_liabilities' => 'Créer un nouveau passif', - 'create_new_expense' => 'Créer nouveau compte de dépenses', - 'create_new_revenue' => 'Créer nouveau compte de recettes', - 'create_new_piggy_bank' => 'Créer une nouvelle tirelire', - 'create_new_bill' => 'Créer une nouvelle facture', - 'create_new_subscription' => 'Créer un nouvel abonnement', - 'create_new_rule' => 'Créer une nouvelle règle', + 'create_new_withdrawal' => 'Créer une nouvelle dépense', + 'create_new_deposit' => 'Créer un nouveau dépôt', + 'create_new_transfer' => 'Créer un nouveau transfert', + 'create_new_asset' => 'Créer un nouveau compte d’actif', + 'create_new_liabilities' => 'Créer un nouveau passif', + 'create_new_expense' => 'Créer nouveau compte de dépenses', + 'create_new_revenue' => 'Créer nouveau compte de recettes', + 'create_new_piggy_bank' => 'Créer une nouvelle tirelire', + 'create_new_bill' => 'Créer une nouvelle facture', + 'create_new_subscription' => 'Créer un nouvel abonnement', + 'create_new_rule' => 'Créer une nouvelle règle', // currencies: - 'create_currency' => 'Créer une nouvelle devise', - 'store_currency' => 'Créer une nouvelle devise', - 'update_currency' => 'Mise à jour de la devise', - 'new_default_currency' => '«:name» est maintenant la devise par défaut.', - 'default_currency_failed' => 'Impossible de faire de modifier la devise par défaut à «:name». Veuillez vérifier les logs.', - 'cannot_delete_currency' => 'Impossible de supprimer :name car il est encore utilisé.', - 'cannot_delete_fallback_currency' => ':name est la devise par défaut du système et ne peut pas être supprimée.', - 'cannot_disable_currency_journals' => 'Impossible de désactiver la devise :name car les opérations l\'utilisent toujours.', - 'cannot_disable_currency_last_left' => 'Impossible de désactiver la devise :name car c\'est la dernière activée.', - 'cannot_disable_currency_account_meta' => 'Impossible de désactiver la devise :name car elle est utilisée dans les comptes d\'actifs.', - 'cannot_disable_currency_bills' => 'Impossible de désactiver la devise :name car elle est utilisée dans les factures.', - 'cannot_disable_currency_recurring' => 'Impossible de désactiver la devise :name car elle est utilisée dans les opérations périodiques.', - 'cannot_disable_currency_available_budgets' => 'Impossible de désactiver la devise :name car elle est utilisée dans les budgets existants.', - 'cannot_disable_currency_budget_limits' => 'Impossible de désactiver la devise :name car elle est utilisée dans les limites des budgets.', - 'cannot_disable_currency_current_default' => 'Impossible de désactiver la devise :name car elle est définie comme devise par défaut.', - 'cannot_disable_currency_system_fallback' => 'Impossible de désactiver la devise :name car elle est définie comme devise par défaut du système.', - 'disable_EUR_side_effects' => 'L\'Euro est la devise de secours utilisée par le système. La désactiver peut provoquer des effets indésirables et peut annuler votre garantie.', - 'deleted_currency' => 'Devise ":name" supprimée', - 'created_currency' => 'Devise ":name" créée', - 'could_not_store_currency' => 'Impossible d\'enregistrer la nouvelle devise.', - 'updated_currency' => 'Devise ":name" mise à jour', - 'ask_site_owner' => 'Merci de demander à :owner pour ajouter, modifier ou supprimer des devises.', - 'currencies_intro' => 'Firefly III prend en charge diverses devises que vous pouvez configurer et activer ici.', - 'make_default_currency' => 'Utiliser par défaut', - 'default_currency' => 'par défaut', - 'currency_is_disabled' => 'Désactivé', - 'enable_currency' => 'Activer', - 'disable_currency' => 'Désactiver', - 'currencies_default_disabled' => 'La plupart de ces devises sont désactivées par défaut. Vous devez d\'abord les activer pour pouvoir les utiliser.', - 'currency_is_now_enabled' => 'La devise ":name" a été activée', - 'could_not_enable_currency' => 'Impossible d\'activer la devise ":name". Veuillez consulter les logs.', - 'currency_is_now_disabled' => 'La devise ":name" a été désactivée', - 'could_not_disable_currency' => 'Impossible de désactiver la devise «:name». Peut-être est-elle encore utilisée ?', + 'create_currency' => 'Créer une nouvelle devise', + 'store_currency' => 'Créer une nouvelle devise', + 'update_currency' => 'Mise à jour de la devise', + 'new_default_currency' => '«:name» est maintenant la devise par défaut.', + 'default_currency_failed' => 'Impossible de faire de modifier la devise par défaut à «:name». Veuillez vérifier les logs.', + 'cannot_delete_currency' => 'Impossible de supprimer :name car il est encore utilisé.', + 'cannot_delete_fallback_currency' => ':name est la devise par défaut du système et ne peut pas être supprimée.', + 'cannot_disable_currency_journals' => 'Impossible de désactiver la devise :name car les opérations l\'utilisent toujours.', + 'cannot_disable_currency_last_left' => 'Impossible de désactiver la devise :name car c\'est la dernière activée.', + 'cannot_disable_currency_account_meta' => 'Impossible de désactiver la devise :name car elle est utilisée dans les comptes d\'actifs.', + 'cannot_disable_currency_bills' => 'Impossible de désactiver la devise :name car elle est utilisée dans les factures.', + 'cannot_disable_currency_recurring' => 'Impossible de désactiver la devise :name car elle est utilisée dans les opérations périodiques.', + 'cannot_disable_currency_available_budgets' => 'Impossible de désactiver la devise :name car elle est utilisée dans les budgets existants.', + 'cannot_disable_currency_budget_limits' => 'Impossible de désactiver la devise :name car elle est utilisée dans les limites des budgets.', + 'cannot_disable_currency_current_default' => 'Impossible de désactiver la devise :name car elle est définie comme devise par défaut.', + 'cannot_disable_currency_system_fallback' => 'Impossible de désactiver la devise :name car elle est définie comme devise par défaut du système.', + 'disable_EUR_side_effects' => 'L\'Euro est la devise de secours utilisée par le système. La désactiver peut provoquer des effets indésirables et peut annuler votre garantie.', + 'deleted_currency' => 'Devise ":name" supprimée', + 'created_currency' => 'Devise ":name" créée', + 'could_not_store_currency' => 'Impossible d\'enregistrer la nouvelle devise.', + 'updated_currency' => 'Devise ":name" mise à jour', + 'ask_site_owner' => 'Merci de demander à :owner pour ajouter, modifier ou supprimer des devises.', + 'currencies_intro' => 'Firefly III prend en charge diverses devises que vous pouvez configurer et activer ici.', + 'make_default_currency' => 'Utiliser par défaut', + 'default_currency' => 'par défaut', + 'currency_is_disabled' => 'Désactivé', + 'enable_currency' => 'Activer', + 'disable_currency' => 'Désactiver', + 'currencies_default_disabled' => 'La plupart de ces devises sont désactivées par défaut. Vous devez d\'abord les activer pour pouvoir les utiliser.', + 'currency_is_now_enabled' => 'La devise ":name" a été activée', + 'could_not_enable_currency' => 'Impossible d\'activer la devise ":name". Veuillez consulter les logs.', + 'currency_is_now_disabled' => 'La devise ":name" a été désactivée', + 'could_not_disable_currency' => 'Impossible de désactiver la devise «:name». Peut-être est-elle encore utilisée ?', // forms: - 'mandatoryFields' => 'Champs obligatoires', - 'optionalFields' => 'Champs optionnels', - 'options' => 'Options', + 'mandatoryFields' => 'Champs obligatoires', + 'optionalFields' => 'Champs optionnels', + 'options' => 'Options', // budgets: - 'daily_budgets' => 'Budgets quotidiens', - 'weekly_budgets' => 'Budgets hebdomadaires', - 'monthly_budgets' => 'Budgets mensuels', - 'quarterly_budgets' => 'Budgets trimestriels', - 'half_year_budgets' => 'Budgets semestriels', - 'yearly_budgets' => 'Budgets annuels', - 'other_budgets' => 'Budgets à période personnalisée', - 'budget_limit_not_in_range' => 'Ce montant s\'applique du :start au :end :', - 'total_available_budget' => 'Budget total disponible (entre :start et :end)', - 'total_available_budget_in_currency' => 'Budget total disponible en :currency', - 'see_below' => 'voir ci-dessous', - 'create_new_budget' => 'Créer un nouveau budget', - 'store_new_budget' => 'Créer un nouveau budget', - 'stored_new_budget' => 'Nouveau budget ":name" créé', - 'available_between' => 'Disponible entre le :start et le :end', - 'transactionsWithoutBudget' => 'Dépenses non budgétisées', - 'transactions_no_budget' => 'Dépenses non budgétisées entre le :start et le :end', - 'spent_between' => 'Déjà dépensé entre le :start et le :end', - 'spent_between_left' => ':spent dépensé du :start au :end, :left restant.', - 'set_available_amount' => 'Définir le montant disponible', - 'update_available_amount' => 'Mettre à jour le montant disponible', - 'ab_basic_modal_explain' => 'Utilisez ce formulaire pour indiquer combien vous vous attendez à pouvoir budgéter (au total, en :currency) dans la période indiquée.', - 'createBudget' => 'Nouveau budget', - 'invalid_currency' => 'Ceci est une devise invalide', - 'invalid_amount' => 'Veuillez saisir un montant', - 'set_ab' => 'Le montant du budget disponible a été fixé', - 'updated_ab' => 'Le montant du budget disponible a été mis à jour', - 'deleted_ab' => 'Le montant du budget disponible a été supprimé', - 'deleted_bl' => 'Le montant budgétisé a été supprimé', - 'alt_currency_ab_create' => 'Définir le budget disponible dans une autre devise', - 'bl_create_btn' => 'Définir le budget dans une autre devise', - 'inactiveBudgets' => 'Budgets inactifs', - 'without_budget_between' => 'Opérations non budgétisées entre le :start et le :end', - 'delete_budget' => 'Supprimer le budget ":name"', - 'deleted_budget' => 'Budget ":name" supprimé', - 'edit_budget' => 'Modifier le budget ":name"', - 'updated_budget' => 'Budget ":name" mis à jour', - 'update_amount' => 'Mettre à jour le montant', - 'update_budget' => 'Mettre à jour le budget', - 'update_budget_amount_range' => 'Mettre à jour le montant disponible (prévu) entre le :start et le :end', - 'set_budget_limit_title' => 'Définir le montant budgétisé pour le budget :budget entre le :start et le :end', - 'set_budget_limit' => 'Définir le montant budgétisé', - 'budget_period_navigator' => 'Navigateur de période', - 'info_on_available_amount' => 'Qu\'est-ce que j\'ai de disponible ?', - 'available_amount_indication' => 'Utilisez ces montants pour avoir une indication de ce que pourrait être votre budget total.', - 'suggested' => 'Suggéré', - 'average_between' => 'Moyenne entre :start et :end', - 'transferred_in' => 'Transféré (entrant)', - 'transferred_away' => 'Transféré (sortant)', - 'auto_budget_none' => 'Pas de budget automatique', - 'auto_budget_reset' => 'Définir un montant fixe à chaque période', - 'auto_budget_rollover' => 'Ajouter un montant à chaque période', - 'auto_budget_adjusted' => 'Ajouter un montant à chaque période et rectifier en fonction des dépenses excessives', - 'auto_budget_period_daily' => 'Quotidien', - 'auto_budget_period_weekly' => 'Hebdomadaire', - 'auto_budget_period_monthly' => 'Mensuel', - 'auto_budget_period_quarterly' => 'Trimestriel', - 'auto_budget_period_half_year' => 'Semestriel', - 'auto_budget_period_yearly' => 'Annuel', - 'auto_budget_help' => 'Vous pouvez en savoir plus sur cette fonctionnalité dans l\'aide. Cliquez sur l\'icône (?) en haut à droite.', - 'auto_budget_reset_icon' => 'Ce budget sera défini périodiquement', - 'auto_budget_rollover_icon' => 'Le montant du budget augmentera périodiquement', - 'auto_budget_adjusted_icon' => 'Le montant du budget augmentera périodiquement et corrigera les dépassements de budget', - 'remove_budgeted_amount' => 'Supprimer le montant budgétisé en :currency', + 'daily_budgets' => 'Budgets quotidiens', + 'weekly_budgets' => 'Budgets hebdomadaires', + 'monthly_budgets' => 'Budgets mensuels', + 'quarterly_budgets' => 'Budgets trimestriels', + 'half_year_budgets' => 'Budgets semestriels', + 'yearly_budgets' => 'Budgets annuels', + 'other_budgets' => 'Budgets à période personnalisée', + 'budget_limit_not_in_range' => 'Ce montant s\'applique du :start au :end :', + 'total_available_budget' => 'Budget total disponible (entre :start et :end)', + 'total_available_budget_in_currency' => 'Budget total disponible en :currency', + 'see_below' => 'voir ci-dessous', + 'create_new_budget' => 'Créer un nouveau budget', + 'store_new_budget' => 'Créer un nouveau budget', + 'stored_new_budget' => 'Nouveau budget ":name" créé', + 'available_between' => 'Disponible entre le :start et le :end', + 'transactionsWithoutBudget' => 'Dépenses non budgétisées', + 'transactions_no_budget' => 'Dépenses non budgétisées entre le :start et le :end', + 'spent_between' => 'Déjà dépensé entre le :start et le :end', + 'spent_between_left' => ':spent dépensé du :start au :end, :left restant.', + 'set_available_amount' => 'Définir le montant disponible', + 'update_available_amount' => 'Mettre à jour le montant disponible', + 'ab_basic_modal_explain' => 'Utilisez ce formulaire pour indiquer combien vous vous attendez à pouvoir budgéter (au total, en :currency) dans la période indiquée.', + 'createBudget' => 'Nouveau budget', + 'invalid_currency' => 'Ceci est une devise invalide', + 'invalid_amount' => 'Veuillez saisir un montant', + 'set_ab' => 'Le montant du budget disponible a été fixé', + 'updated_ab' => 'Le montant du budget disponible a été mis à jour', + 'deleted_ab' => 'Le montant du budget disponible a été supprimé', + 'deleted_bl' => 'Le montant budgétisé a été supprimé', + 'alt_currency_ab_create' => 'Définir le budget disponible dans une autre devise', + 'bl_create_btn' => 'Définir le budget dans une autre devise', + 'inactiveBudgets' => 'Budgets inactifs', + 'without_budget_between' => 'Opérations non budgétisées entre le :start et le :end', + 'delete_budget' => 'Supprimer le budget ":name"', + 'deleted_budget' => 'Budget ":name" supprimé', + 'edit_budget' => 'Modifier le budget ":name"', + 'updated_budget' => 'Budget ":name" mis à jour', + 'update_amount' => 'Mettre à jour le montant', + 'update_budget' => 'Mettre à jour le budget', + 'update_budget_amount_range' => 'Mettre à jour le montant disponible (prévu) entre le :start et le :end', + 'set_budget_limit_title' => 'Définir le montant budgétisé pour le budget :budget entre le :start et le :end', + 'set_budget_limit' => 'Définir le montant budgétisé', + 'budget_period_navigator' => 'Navigateur de période', + 'info_on_available_amount' => 'Qu\'est-ce que j\'ai de disponible ?', + 'available_amount_indication' => 'Utilisez ces montants pour avoir une indication de ce que pourrait être votre budget total.', + 'suggested' => 'Suggéré', + 'average_between' => 'Moyenne entre :start et :end', + 'transferred_in' => 'Transféré (entrant)', + 'transferred_away' => 'Transféré (sortant)', + 'auto_budget_none' => 'Pas de budget automatique', + 'auto_budget_reset' => 'Définir un montant fixe à chaque période', + 'auto_budget_rollover' => 'Ajouter un montant à chaque période', + 'auto_budget_adjusted' => 'Ajouter un montant à chaque période et rectifier en fonction des dépenses excessives', + 'auto_budget_period_daily' => 'Quotidien', + 'auto_budget_period_weekly' => 'Hebdomadaire', + 'auto_budget_period_monthly' => 'Mensuel', + 'auto_budget_period_quarterly' => 'Trimestriel', + 'auto_budget_period_half_year' => 'Semestriel', + 'auto_budget_period_yearly' => 'Annuel', + 'auto_budget_help' => 'Vous pouvez en savoir plus sur cette fonctionnalité dans l\'aide. Cliquez sur l\'icône (?) en haut à droite.', + 'auto_budget_reset_icon' => 'Ce budget sera défini périodiquement', + 'auto_budget_rollover_icon' => 'Le montant du budget augmentera périodiquement', + 'auto_budget_adjusted_icon' => 'Le montant du budget augmentera périodiquement et corrigera les dépassements de budget', + 'remove_budgeted_amount' => 'Supprimer le montant budgétisé en :currency', // bills: - 'subscription' => 'Abonnement', - 'not_expected_period' => 'Pas attendu cette période', - 'subscriptions_in_group' => 'Abonnements dans le groupe "%{title}"', - 'subscr_expected_x_times' => '%{amount} à payer %{times} fois cette période', - 'not_or_not_yet' => 'Non (pas encore)', - 'visit_bill' => 'Consultez la facture ":name" sur Firefly III', - 'match_between_amounts' => 'La facture correspond à des opérations entre :low et :high.', - 'running_again_loss' => 'Les opérations précédemment liées à cette facture peuvent perdre leur connexion, si elles ne correspondent plus à la ou les règles.', - 'bill_related_rules' => 'Règles reliées à cette facture', - 'repeats' => 'Répétitions', - 'bill_end_date_help' => 'Champ facultatif. La facture devrait se terminer à cette date.', - 'bill_extension_date_help' => 'Champ facultatif. La facture doit être prolongée (ou annulée) à cette date au plus tard.', - 'bill_end_index_line' => 'Cette facture se termine le :date', - 'bill_extension_index_line' => 'Cette facture doit être prolongée ou annulée le :date', - 'connected_journals' => 'Opérations liées', - 'auto_match_on' => 'Automatiquement mis en correspondance par Firefly III', - 'auto_match_off' => 'Pas mis automatiquement en correspondance par Firefly III', - 'next_expected_match' => 'Prochain montant attendu', - 'delete_bill' => 'Supprimer la facture ":name"', - 'deleted_bill' => 'Facture ":name" supprimée', - 'edit_bill' => 'Modifier la facture : ":name"', - 'more' => 'Plus', - 'rescan_old' => 'Exécuter les règles à nouveau, sur toutes les opérations', - 'update_bill' => 'Mettre à jour la facture', - 'updated_bill' => 'Facture ":name" mise à jour', - 'store_new_bill' => 'Créer une nouvelle facture', - 'stored_new_bill' => 'Nouvelle facture ":name" créée', - 'cannot_scan_inactive_bill' => 'Les factures inactives ne peuvent pas être analysées.', - 'rescanned_bill' => 'Tout a été à nouveau scanné. :count opération a été liée à la facture.|Tout a été à nouveau scanné. :count opérations ont été liées à la facture.', - 'average_bill_amount_year' => "Montant moyen des factures (\u{a0}:year)", - 'average_bill_amount_overall' => 'Montant moyen des factures (global)', - 'bill_is_active' => 'Facture en cours', - 'bill_expected_between' => 'Attendu entre le :start et le :end', - 'bill_will_automatch' => 'La facture sera automatiquement liée aux opérations correspondantes', - 'skips_over' => 'saute', - 'bill_store_error' => 'Une erreur inattendue s\'est produite lors du stockage de votre nouvelle facture. Veuillez vérifier les fichiers journaux', - 'list_inactive_rule' => 'règle inactive', - 'bill_edit_rules' => 'Firefly III tentera également de modifier la règle relative à cette facture. Si vous avez modifié cette règle vous-même, Firefly III ne changera rien. Firefly III tentera également de modifier les :count règles relatives à cette facture. Si vous avez modifié ces règles vous-même, Firefly III ne changera rien.', - 'bill_expected_date' => 'Prévu :date', - 'bill_expected_date_js' => 'Attendu le {date}', - 'expected_amount' => 'Montant (attendu)', - 'bill_paid_on' => 'Payé le {date}', - 'bill_repeats_weekly' => 'Se répète toutes les semaines', - 'bill_repeats_monthly' => 'Se répète tous les mois', - 'bill_repeats_quarterly' => 'Se répète tous les trimestres', - 'bill_repeats_half-year' => 'Se répète tous les semestres', - 'bill_repeats_yearly' => 'Se répète tous les ans', - 'bill_repeats_weekly_other' => 'Se répète toutes les deux semaines', - 'bill_repeats_monthly_other' => 'Se répète tous les deux mois', - 'bill_repeats_quarterly_other' => 'Se répète tous les deux trimestres', - 'bill_repeats_half-year_other' => 'Se répète tous les ans', - 'bill_repeats_yearly_other' => 'Se répète tous les deux ans', - 'bill_repeats_weekly_skip' => 'Se répète toutes les {skip} semaines', - 'bill_repeats_monthly_skip' => 'Se répète tous les {skip} mois', - 'bill_repeats_quarterly_skip' => 'Se répète tous les {skip} trimestres', - 'bill_repeats_half-year_skip' => 'Se répète tous les {skip} semestres', - 'bill_repeats_yearly_skip' => 'Se répète tous les {skip} ans', - 'subscriptions' => 'Abonnements', - 'go_to_subscriptions' => 'Accédez à vos abonnements', - 'forever' => 'Pour toujours', - 'extension_date_is' => 'La date de l\'extension est {date}', + 'subscription' => 'Abonnement', + 'not_expected_period' => 'Pas attendu cette période', + 'subscriptions_in_group' => 'Abonnements dans le groupe "%{title}"', + 'subscr_expected_x_times' => '%{amount} à payer %{times} fois cette période', + 'not_or_not_yet' => 'Non (pas encore)', + 'visit_bill' => 'Consultez la facture ":name" sur Firefly III', + 'match_between_amounts' => 'La facture correspond à des opérations entre :low et :high.', + 'running_again_loss' => 'Les opérations précédemment liées à cette facture peuvent perdre leur connexion, si elles ne correspondent plus à la ou les règles.', + 'bill_related_rules' => 'Règles reliées à cette facture', + 'repeats' => 'Répétitions', + 'bill_end_date_help' => 'Champ facultatif. La facture devrait se terminer à cette date.', + 'bill_extension_date_help' => 'Champ facultatif. La facture doit être prolongée (ou annulée) à cette date au plus tard.', + 'bill_end_index_line' => 'Cette facture se termine le :date', + 'bill_extension_index_line' => 'Cette facture doit être prolongée ou annulée le :date', + 'connected_journals' => 'Opérations liées', + 'auto_match_on' => 'Automatiquement mis en correspondance par Firefly III', + 'auto_match_off' => 'Pas mis automatiquement en correspondance par Firefly III', + 'next_expected_match' => 'Prochain montant attendu', + 'delete_bill' => 'Supprimer la facture ":name"', + 'deleted_bill' => 'Facture ":name" supprimée', + 'edit_bill' => 'Modifier la facture : ":name"', + 'more' => 'Plus', + 'rescan_old' => 'Exécuter les règles à nouveau, sur toutes les opérations', + 'update_bill' => 'Mettre à jour la facture', + 'updated_bill' => 'Facture ":name" mise à jour', + 'store_new_bill' => 'Créer une nouvelle facture', + 'stored_new_bill' => 'Nouvelle facture ":name" créée', + 'cannot_scan_inactive_bill' => 'Les factures inactives ne peuvent pas être analysées.', + 'rescanned_bill' => 'Tout a été à nouveau scanné. :count opération a été liée à la facture.|Tout a été à nouveau scanné. :count opérations ont été liées à la facture.', + 'average_bill_amount_year' => "Montant moyen des factures (\u{a0}:year)", + 'average_bill_amount_overall' => 'Montant moyen des factures (global)', + 'bill_is_active' => 'Facture en cours', + 'bill_expected_between' => 'Attendu entre le :start et le :end', + 'bill_will_automatch' => 'La facture sera automatiquement liée aux opérations correspondantes', + 'skips_over' => 'saute', + 'bill_store_error' => 'Une erreur inattendue s\'est produite lors du stockage de votre nouvelle facture. Veuillez vérifier les fichiers journaux', + 'list_inactive_rule' => 'règle inactive', + 'bill_edit_rules' => 'Firefly III tentera également de modifier la règle relative à cette facture. Si vous avez modifié cette règle vous-même, Firefly III ne changera rien. Firefly III tentera également de modifier les :count règles relatives à cette facture. Si vous avez modifié ces règles vous-même, Firefly III ne changera rien.', + 'bill_expected_date' => 'Prévu :date', + 'bill_expected_date_js' => 'Attendu le {date}', + 'expected_amount' => 'Montant (attendu)', + 'bill_paid_on' => 'Payé le {date}', + 'bill_repeats_weekly' => 'Se répète toutes les semaines', + 'bill_repeats_monthly' => 'Se répète tous les mois', + 'bill_repeats_quarterly' => 'Se répète tous les trimestres', + 'bill_repeats_half-year' => 'Se répète tous les semestres', + 'bill_repeats_yearly' => 'Se répète tous les ans', + 'bill_repeats_weekly_other' => 'Se répète toutes les deux semaines', + 'bill_repeats_monthly_other' => 'Se répète tous les deux mois', + 'bill_repeats_quarterly_other' => 'Se répète tous les deux trimestres', + 'bill_repeats_half-year_other' => 'Se répète tous les ans', + 'bill_repeats_yearly_other' => 'Se répète tous les deux ans', + 'bill_repeats_weekly_skip' => 'Se répète toutes les {skip} semaines', + 'bill_repeats_monthly_skip' => 'Se répète tous les {skip} mois', + 'bill_repeats_quarterly_skip' => 'Se répète tous les {skip} trimestres', + 'bill_repeats_half-year_skip' => 'Se répète tous les {skip} semestres', + 'bill_repeats_yearly_skip' => 'Se répète tous les {skip} ans', + 'subscriptions' => 'Abonnements', + 'go_to_subscriptions' => 'Accédez à vos abonnements', + 'forever' => 'Pour toujours', + 'extension_date_is' => 'La date de l\'extension est {date}', // accounts: - 'i_am_owed_amount' => 'On me doit le montant', - 'i_owe_amount' => 'Je dois le montant', - 'inactive_account_link' => 'Vous avez :count compte inactif (archivé) que vous pouvez consulter sur cette page dédiée.| Vous avez :count comptes inactifs (archivés) que vous pouvez consulter sur cette page dédiée.', - 'all_accounts_inactive' => 'Voici vos comptes inactifs.', - 'active_account_link' => 'Ce lien renvoie à vos comptes actifs.', - 'account_missing_transaction' => 'Le compte #:id (":name") ne peut pas être consulté directement et Firefly ne dispose d\'aucune information pour vous rediriger.', - 'cc_monthly_payment_date_help' => 'Sélectionnez n\'importe quelle année et n\'importe quel mois, il sera ignoré de toute façon. Seul le jour du mois est pertinent.', - 'details_for_asset' => 'Détails pour le compte d’actif ":name"', - 'details_for_expense' => 'Détails du compte de dépenses ":name"', - 'details_for_revenue' => 'Détails du comptes de recettes ":name"', - 'details_for_cash' => 'Détails pour le compte de trésorerie ":name"', - 'store_new_asset_account' => 'Créer un nouveau compte d’actif', - 'store_new_expense_account' => 'Créer un nouveau compte de dépenses', - 'store_new_revenue_account' => 'Créer un compte de recettes', - 'edit_asset_account' => 'Modifier le compte d’actif ":name"', - 'edit_expense_account' => 'Modifier le compte de dépenses ";name"', - 'edit_revenue_account' => 'Modifier le compte de recettes ":name"', - 'delete_asset_account' => 'Supprimer le compte d’actif ":name"', - 'delete_expense_account' => 'Supprimer le compte de dépenses ":name"', - 'delete_revenue_account' => 'Supprimer le compte de recettes ":name"', - 'delete_liabilities_account' => 'Supprimer le passif ":name"', - 'asset_deleted' => 'Compte d’actif ":name" correctement supprimé', - 'account_deleted' => 'Compte ":name" supprimé avec succès', - 'expense_deleted' => 'Compte de dépenses ":name" correctement supprimé', - 'revenue_deleted' => 'Compte de recettes ":name" correctement supprimé', - 'update_asset_account' => 'Mettre à jour le compte d’actif', - 'update_undefined_account' => 'Mettre à jour le compte', - 'update_liabilities_account' => 'Mettre à jour le passif', - 'update_expense_account' => 'Mettre à jour le compte de dépenses', - 'update_revenue_account' => 'Mettre à jour le compte de recettes', - 'make_new_asset_account' => 'Créer un nouveau compte d’actif', - 'make_new_expense_account' => 'Créer un nouveau compte de dépenses', - 'make_new_revenue_account' => 'Créer un nouveau compte de recettes', - 'make_new_liabilities_account' => 'Créer un nouveau passif', - 'asset_accounts' => 'Comptes d’actif', - 'undefined_accounts' => 'Comptes', - 'asset_accounts_inactive' => 'Comptes d\'actifs (inactif)', - 'expense_account' => 'Compte de dépenses', - 'expense_accounts' => 'Comptes de dépenses', - 'expense_accounts_inactive' => 'Comptes de dépenses (inactif)', - 'revenue_account' => 'Compte de recettes', - 'revenue_accounts' => 'Comptes de recettes', - 'revenue_accounts_inactive' => 'Comptes de recette (inactifs)', - 'cash_accounts' => 'Comptes de trésorerie', - 'Cash account' => 'Compte de trésorerie', - 'liabilities_accounts' => 'Passifs', - 'liabilities_accounts_inactive' => 'Passifs (inactifs)', - 'reconcile_account' => 'Rapprocher le compte ":account"', - 'overview_of_reconcile_modal' => 'Vue d’ensemble du rapprochement', - 'delete_reconciliation' => 'Supprimer le rapprochement', - 'update_reconciliation' => 'Mettre à jour le rapprochement', - 'amount_cannot_be_zero' => 'Le montant ne peut pas être zéro', - 'end_of_reconcile_period' => 'Fin de la période de rapptrochement : :period', - 'start_of_reconcile_period' => 'Début de la période de rapprochement : :period', - 'start_balance' => 'Solde initial', - 'end_balance' => 'Solde de clôture', - 'update_balance_dates_instruction' => 'Faites correspondre les montants et les dates ci-dessus à votre relevé bancaire et appuyez sur "Commencer le rapprochement"', - 'select_transactions_instruction' => 'Sélectionnez les opérations qui apparaissent sur votre relevé bancaire.', - 'select_range_and_balance' => 'Vérifiez d\'abord l\'intervalle de dates et les soldes. Puis appuyez sur "Commencer le rapprochement"', - 'date_change_instruction' => 'Si vous modifiez l\'intervalle de dates maintenant, toute progression sera perdue.', - 'update_selection' => 'Mettre à jour la sélection', - 'store_reconcile' => 'Stocker le rapprochement', - 'reconciliation_transaction' => 'Opération de régularisation', - 'Reconciliation' => 'Rapprochement', - 'reconciliation' => 'Rapprochement', - 'reconcile_options' => 'Options de rapprochement', - 'reconcile_range' => 'Intervalle de rapprochement', - 'start_reconcile' => 'Commencer le rapprochement', - 'cash_account_type' => 'Espèces', - 'cash' => 'espèces', - 'cant_find_redirect_account' => 'Firefly III a essayé de vous rediriger mais n\'a pas pu. Désolé. Retour à l\'index.', - 'account_type' => 'Type de compte', - 'save_transactions_by_moving' => 'Conserver cette opération en la déplaçant vers un autre compte :|Conserver ces opération sen les déplaçant vers un autre compte :', - 'save_transactions_by_moving_js' => 'Aucune opération|Conserver cette opération en la déplaçant vers un autre compte. |Conserver ces opérations en les déplaçant vers un autre compte.', - 'stored_new_account' => 'Nouveau compte ":name" créé !', - 'stored_new_account_js' => 'Nouveau compte "{name}" enregistré !', - 'updated_account' => 'Compte ":name" mis à jour', - 'updated_account_js' => 'Compte "{title}" mis à jour.', - 'credit_card_options' => 'Cartes de crédit', - 'no_transactions_account' => 'Il n\'y a pas d\'opération (sur cette période) pour le compte d\'actif ":name".', - 'no_transactions_period' => 'Il n\'y a aucune opération (sur cette période).', - 'no_data_for_chart' => 'Il n\'y a pas assez d\'informations (pour le moment) pour générer ce graphique.', - 'select_at_least_one_account' => 'Merci de sélectionner au moins un compte d\'actif', - 'select_at_least_one_category' => 'Merci de sélectionner au moins une catégorie', - 'select_at_least_one_budget' => 'Merci de sélectionner au moins un budget', - 'select_at_least_one_tag' => 'Merci de sélectionner au moins un tag', - 'select_at_least_one_expense' => 'Merci de sélectionner au moins une combinaison de comptes de dépense/revenu. Si vous n\'en avez aucun (la liste est vide) ce rapport n\'est pas utilisable.', - 'account_default_currency' => 'Ce sera la devise par défaut associée à ce compte.', - 'reconcile_has_more' => 'Votre registre Firefly III a plus d\'argent que ce que votre banque prétend que vous devriez avoir. Veuillez choisir comment gérer la situation parmi les différentes possibilités offertes. Ensuite, appuyez sur "Confirmer le rapprochement".', - 'reconcile_has_less' => 'Votre registre Firefly III a moins d\'argent que ce que votre banque prétend que vous devriez avoir. Veuillez choisir comment gérer la situation parmi les différentes possibilités offertes. Ensuite, appuyez sur "Confirmer le rapprochement".', - 'reconcile_is_equal' => 'Votre registre Firefly III et vos relevés bancaires correspondent. Il n\'y a rien à faire. Appuyez sur "Confirmer le rapprochement" pour confirmer votre entrée.', - 'create_pos_reconcile_transaction' => 'Pointer les opérations sélectionnées et créer une correction en ajoutant :amount à ce compte d\'actif.', - 'create_neg_reconcile_transaction' => 'Pointer les opérations sélectionnées et créer une correction en enlevant :amount à ce compte d\'actif.', - 'reconcile_do_nothing' => 'Pointer les opérations sélectionnées, sans effectuer de correction.', - 'reconcile_go_back' => 'Vous pouvez toujours modifier ou supprimer une correction ultérieurement.', - 'must_be_asset_account' => 'Vous pouvez uniquement rapprocher les comptes d\'actifs', - 'reconciliation_stored' => 'Rapprochement enregistré', - 'reconciliation_error' => 'En raison d\'une erreur, les opérations ont été marquées comme rapprochées, mais la correction n\'a pas été enregistrée : :error.', - 'reconciliation_transaction_title' => 'Régularisation (du :from au :to)', - 'sum_of_reconciliation' => 'Total des rapprochements', - 'reconcile_this_account' => 'Rapprocher ce compte', - 'reconcile' => 'Rapprocher', - 'show' => 'Afficher', - 'confirm_reconciliation' => 'Confirmer le rapprochement', - 'submitted_start_balance' => 'Solde initial soumis', - 'selected_transactions' => 'Opérations sélectionnées ( :count)', - 'already_cleared_transactions' => 'Opérations déjà pointées ( :count)', - 'submitted_end_balance' => 'Solde final soumis', - 'initial_balance_description' => 'Balance initiale pour ":account"', - 'liability_credit_description' => 'Passif de crédit pour ":account"', - 'interest_calc_' => 'inconnu', - 'interest_calc_daily' => 'Par jour', - 'interest_calc_monthly' => 'Par mois', - 'interest_calc_yearly' => 'Par an', - 'interest_calc_weekly' => 'Par semaine', - 'interest_calc_half-year' => 'Par semestre', - 'interest_calc_quarterly' => 'Par trimestre', - 'initial_balance_account' => 'Solde initial du compte :account', - 'list_options' => 'Lister les options', + 'i_am_owed_amount' => 'On me doit le montant', + 'i_owe_amount' => 'Je dois le montant', + 'inactive_account_link' => 'Vous avez :count compte inactif (archivé) que vous pouvez consulter sur cette page dédiée.| Vous avez :count comptes inactifs (archivés) que vous pouvez consulter sur cette page dédiée.', + 'all_accounts_inactive' => 'Voici vos comptes inactifs.', + 'active_account_link' => 'Ce lien renvoie à vos comptes actifs.', + 'account_missing_transaction' => 'Le compte #:id (":name") ne peut pas être consulté directement et Firefly ne dispose d\'aucune information pour vous rediriger.', + 'cc_monthly_payment_date_help' => 'Sélectionnez n\'importe quelle année et n\'importe quel mois, il sera ignoré de toute façon. Seul le jour du mois est pertinent.', + 'details_for_asset' => 'Détails pour le compte d’actif ":name"', + 'details_for_expense' => 'Détails du compte de dépenses ":name"', + 'details_for_revenue' => 'Détails du comptes de recettes ":name"', + 'details_for_cash' => 'Détails pour le compte de trésorerie ":name"', + 'store_new_asset_account' => 'Créer un nouveau compte d’actif', + 'store_new_expense_account' => 'Créer un nouveau compte de dépenses', + 'store_new_revenue_account' => 'Créer un compte de recettes', + 'edit_asset_account' => 'Modifier le compte d’actif ":name"', + 'edit_expense_account' => 'Modifier le compte de dépenses ";name"', + 'edit_revenue_account' => 'Modifier le compte de recettes ":name"', + 'delete_asset_account' => 'Supprimer le compte d’actif ":name"', + 'delete_expense_account' => 'Supprimer le compte de dépenses ":name"', + 'delete_revenue_account' => 'Supprimer le compte de recettes ":name"', + 'delete_liabilities_account' => 'Supprimer le passif ":name"', + 'asset_deleted' => 'Compte d’actif ":name" correctement supprimé', + 'account_deleted' => 'Compte ":name" supprimé avec succès', + 'expense_deleted' => 'Compte de dépenses ":name" correctement supprimé', + 'revenue_deleted' => 'Compte de recettes ":name" correctement supprimé', + 'update_asset_account' => 'Mettre à jour le compte d’actif', + 'update_undefined_account' => 'Mettre à jour le compte', + 'update_liabilities_account' => 'Mettre à jour le passif', + 'update_expense_account' => 'Mettre à jour le compte de dépenses', + 'update_revenue_account' => 'Mettre à jour le compte de recettes', + 'make_new_asset_account' => 'Créer un nouveau compte d’actif', + 'make_new_expense_account' => 'Créer un nouveau compte de dépenses', + 'make_new_revenue_account' => 'Créer un nouveau compte de recettes', + 'make_new_liabilities_account' => 'Créer un nouveau passif', + 'asset_accounts' => 'Comptes d’actif', + 'undefined_accounts' => 'Comptes', + 'asset_accounts_inactive' => 'Comptes d\'actifs (inactif)', + 'expense_account' => 'Compte de dépenses', + 'expense_accounts' => 'Comptes de dépenses', + 'expense_accounts_inactive' => 'Comptes de dépenses (inactif)', + 'revenue_account' => 'Compte de recettes', + 'revenue_accounts' => 'Comptes de recettes', + 'revenue_accounts_inactive' => 'Comptes de recette (inactifs)', + 'cash_accounts' => 'Comptes de trésorerie', + 'Cash account' => 'Compte de trésorerie', + 'liabilities_accounts' => 'Passifs', + 'liabilities_accounts_inactive' => 'Passifs (inactifs)', + 'reconcile_account' => 'Rapprocher le compte ":account"', + 'overview_of_reconcile_modal' => 'Vue d’ensemble du rapprochement', + 'delete_reconciliation' => 'Supprimer le rapprochement', + 'update_reconciliation' => 'Mettre à jour le rapprochement', + 'amount_cannot_be_zero' => 'Le montant ne peut pas être zéro', + 'end_of_reconcile_period' => 'Fin de la période de rapptrochement : :period', + 'start_of_reconcile_period' => 'Début de la période de rapprochement : :period', + 'start_balance' => 'Solde initial', + 'end_balance' => 'Solde de clôture', + 'update_balance_dates_instruction' => 'Faites correspondre les montants et les dates ci-dessus à votre relevé bancaire et appuyez sur "Commencer le rapprochement"', + 'select_transactions_instruction' => 'Sélectionnez les opérations qui apparaissent sur votre relevé bancaire.', + 'select_range_and_balance' => 'Vérifiez d\'abord l\'intervalle de dates et les soldes. Puis appuyez sur "Commencer le rapprochement"', + 'date_change_instruction' => 'Si vous modifiez l\'intervalle de dates maintenant, toute progression sera perdue.', + 'update_selection' => 'Mettre à jour la sélection', + 'store_reconcile' => 'Stocker le rapprochement', + 'reconciliation_transaction' => 'Opération de régularisation', + 'Reconciliation' => 'Rapprochement', + 'reconciliation' => 'Rapprochement', + 'reconcile_options' => 'Options de rapprochement', + 'reconcile_range' => 'Intervalle de rapprochement', + 'start_reconcile' => 'Commencer le rapprochement', + 'cash_account_type' => 'Espèces', + 'cash' => 'espèces', + 'cant_find_redirect_account' => 'Firefly III a essayé de vous rediriger mais n\'a pas pu. Désolé. Retour à l\'index.', + 'account_type' => 'Type de compte', + 'save_transactions_by_moving' => 'Conserver cette opération en la déplaçant vers un autre compte :|Conserver ces opération sen les déplaçant vers un autre compte :', + 'save_transactions_by_moving_js' => 'Aucune opération|Conserver cette opération en la déplaçant vers un autre compte. |Conserver ces opérations en les déplaçant vers un autre compte.', + 'stored_new_account' => 'Nouveau compte ":name" créé !', + 'stored_new_account_js' => 'Nouveau compte "{name}" enregistré !', + 'updated_account' => 'Compte ":name" mis à jour', + 'updated_account_js' => 'Compte "{title}" mis à jour.', + 'credit_card_options' => 'Cartes de crédit', + 'no_transactions_account' => 'Il n\'y a pas d\'opération (sur cette période) pour le compte d\'actif ":name".', + 'no_transactions_period' => 'Il n\'y a aucune opération (sur cette période).', + 'no_data_for_chart' => 'Il n\'y a pas assez d\'informations (pour le moment) pour générer ce graphique.', + 'select_at_least_one_account' => 'Merci de sélectionner au moins un compte d\'actif', + 'select_at_least_one_category' => 'Merci de sélectionner au moins une catégorie', + 'select_at_least_one_budget' => 'Merci de sélectionner au moins un budget', + 'select_at_least_one_tag' => 'Merci de sélectionner au moins un tag', + 'select_at_least_one_expense' => 'Merci de sélectionner au moins une combinaison de comptes de dépense/revenu. Si vous n\'en avez aucun (la liste est vide) ce rapport n\'est pas utilisable.', + 'account_default_currency' => 'Ce sera la devise par défaut associée à ce compte.', + 'reconcile_has_more' => 'Votre registre Firefly III a plus d\'argent que ce que votre banque prétend que vous devriez avoir. Veuillez choisir comment gérer la situation parmi les différentes possibilités offertes. Ensuite, appuyez sur "Confirmer le rapprochement".', + 'reconcile_has_less' => 'Votre registre Firefly III a moins d\'argent que ce que votre banque prétend que vous devriez avoir. Veuillez choisir comment gérer la situation parmi les différentes possibilités offertes. Ensuite, appuyez sur "Confirmer le rapprochement".', + 'reconcile_is_equal' => 'Votre registre Firefly III et vos relevés bancaires correspondent. Il n\'y a rien à faire. Appuyez sur "Confirmer le rapprochement" pour confirmer votre entrée.', + 'create_pos_reconcile_transaction' => 'Pointer les opérations sélectionnées et créer une correction en ajoutant :amount à ce compte d\'actif.', + 'create_neg_reconcile_transaction' => 'Pointer les opérations sélectionnées et créer une correction en enlevant :amount à ce compte d\'actif.', + 'reconcile_do_nothing' => 'Pointer les opérations sélectionnées, sans effectuer de correction.', + 'reconcile_go_back' => 'Vous pouvez toujours modifier ou supprimer une correction ultérieurement.', + 'must_be_asset_account' => 'Vous pouvez uniquement rapprocher les comptes d\'actifs', + 'reconciliation_stored' => 'Rapprochement enregistré', + 'reconciliation_error' => 'En raison d\'une erreur, les opérations ont été marquées comme rapprochées, mais la correction n\'a pas été enregistrée : :error.', + 'reconciliation_transaction_title' => 'Régularisation (du :from au :to)', + 'sum_of_reconciliation' => 'Total des rapprochements', + 'reconcile_this_account' => 'Rapprocher ce compte', + 'reconcile' => 'Rapprocher', + 'show' => 'Afficher', + 'confirm_reconciliation' => 'Confirmer le rapprochement', + 'submitted_start_balance' => 'Solde initial soumis', + 'selected_transactions' => 'Opérations sélectionnées ( :count)', + 'already_cleared_transactions' => 'Opérations déjà pointées ( :count)', + 'submitted_end_balance' => 'Solde final soumis', + 'initial_balance_description' => 'Balance initiale pour ":account"', + 'liability_credit_description' => 'Passif de crédit pour ":account"', + 'interest_calc_' => 'inconnu', + 'interest_calc_daily' => 'Par jour', + 'interest_calc_monthly' => 'Par mois', + 'interest_calc_yearly' => 'Par an', + 'interest_calc_weekly' => 'Par semaine', + 'interest_calc_half-year' => 'Par semestre', + 'interest_calc_quarterly' => 'Par trimestre', + 'initial_balance_account' => 'Solde initial du compte :account', + 'list_options' => 'Lister les options', // categories: - 'new_category' => 'Nouvelle catégorie', - 'create_new_category' => 'Créer une nouvelle catégorie', - 'without_category' => 'Sans catégorie', - 'update_category' => 'Modifier la catégorie', - 'updated_category' => 'Catégorie ":name" mise à jour', - 'categories' => 'Catégories', - 'edit_category' => 'Modifier la catégorie ":name"', - 'no_category' => '(aucune catégorie)', - 'unknown_category_plain' => 'Sans catégorie', - 'category' => 'Catégorie', - 'delete_category' => 'Supprimer la catégorie ":name"', - 'deleted_category' => 'Catégorie ":name" supprimée', - 'store_category' => 'Créer une nouvelle catégorie', - 'stored_category' => 'Nouvelle catégorie stockée ":name"', - 'without_category_between' => 'Sans catégorie entre :start et :end', + 'new_category' => 'Nouvelle catégorie', + 'create_new_category' => 'Créer une nouvelle catégorie', + 'without_category' => 'Sans catégorie', + 'update_category' => 'Modifier la catégorie', + 'updated_category' => 'Catégorie ":name" mise à jour', + 'categories' => 'Catégories', + 'edit_category' => 'Modifier la catégorie ":name"', + 'no_category' => '(aucune catégorie)', + 'unknown_category_plain' => 'Sans catégorie', + 'category' => 'Catégorie', + 'delete_category' => 'Supprimer la catégorie ":name"', + 'deleted_category' => 'Catégorie ":name" supprimée', + 'store_category' => 'Créer une nouvelle catégorie', + 'stored_category' => 'Nouvelle catégorie stockée ":name"', + 'without_category_between' => 'Sans catégorie entre :start et :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Veuillez patienter pendant le chargement du formulaire', - 'wait_loading_data' => 'Veuillez attendre que vos informations soient chargées...', - 'wait_attachments' => 'Veuillez patienter pendant le chargement des pièces jointes.', - 'errors_upload' => 'L\'envoi a échoué. Veuillez consulter l\'erreur dans votre console de navigateur.', - 'amount_foreign_if' => 'Montant en devise étrangère, le cas échéant', - 'amount_destination_account' => 'Montant dans la devise du compte de destination', - 'edit_transaction_title' => 'Modifier l\'opération ":description"', - 'unreconcile' => 'Annuler le rapprochement', - 'update_withdrawal' => 'Mettre à jour une dépense', - 'update_deposit' => 'Mettre à jour un dépôt', - 'update_transaction' => 'Mettre à jour l\'opération', - 'update_transfer' => 'Mettre à jour un transfert', - 'updated_withdrawal' => 'Dépense ":description" mise à jour', - 'updated_deposit' => 'Dépôt ":description" mis à jour', - 'updated_transfer' => 'Transfert ":description" mis à jour', - 'no_changes_withdrawal' => 'Le retrait ":description" n\'a pas été modifié.', - 'no_changes_deposit' => 'Le dépôt ":description" n\'a pas été modifié.', - 'no_changes_transfer' => 'Le transfert ":description" n\'a pas été changé.', - 'delete_withdrawal' => 'Supprimer la dépense ":description"', - 'delete_deposit' => 'Supprimer le dépôt ":description"', - 'delete_transfer' => 'Supprimer le transfert ":description"', - 'deleted_withdrawal' => 'Dépense ":description" correctement supprimée', - 'deleted_deposit' => 'Dépôt ":description" correctement supprimé', - 'deleted_transfer' => 'Opération ":description" correctement supprimée', - 'deleted_reconciliation' => 'Opération ":description" supprimée avec succès', - 'stored_journal' => 'Opération ":description" créée avec succès', - 'stored_journal_js' => 'Opération "{{description}}" créée avec succès', - 'stored_journal_no_descr' => 'Nouvelle opération créée avec succès', - 'updated_journal_no_descr' => 'Votre opération a été mise à jour avec succès', - 'select_transactions' => 'Sélectionner des opérations', - 'rule_group_select_transactions' => 'Appliquer le groupe de règles ":title" sur les opérations', - 'rule_select_transactions' => 'Appliquer la règle ":title" sur les opérations', - 'stop_selection' => 'Arrêter de sélectionner les opérations', - 'reconcile_selected' => 'Rapprocher', - 'mass_delete_journals' => 'Supprimer un certain nombre de opérations', - 'mass_edit_journals' => 'Modifier un certain nombre d’opérations', - 'mass_bulk_journals' => 'Modifier un certain nombre d’opérations en masse', - 'mass_bulk_journals_explain' => 'Ce formulaire vous permet de modifier les propriétés des opérations listées ci-dessous d\'un coup. Toutes les opérations dans le tableau seront mises à jour lorsque vous changerez les paramètres que vous voyez ici.', - 'part_of_split' => 'Cette opération fait partie d\'une opération scindée. Si vous n\'avez pas sélectionné toutes les parties, vous risquez de n\'impacter que la moitié de l\'opération.', - 'bulk_set_new_values' => 'Utilisez les entrées ci-dessous pour définir de nouvelles valeurs. Si vous les laissez vides, ils seront vides pour tous. Notez également que seuls les dépenses recevront un budget.', - 'no_bulk_category' => 'Ne pas mettre à jour la catégorie', - 'no_bulk_budget' => 'Ne pas mettre à jour le budget', - 'no_bulk_tags' => 'Ne pas mettre à jour le·s tag·s', - 'replace_with_these_tags' => 'Remplacer par ces tags', - 'append_these_tags' => 'Ajouter ces tags', - 'mass_edit' => 'Modifier la sélection individuellement', - 'bulk_edit' => 'Modifier la sélection en masse', - 'mass_delete' => 'Supprimer la sélection', - 'cannot_edit_other_fields' => 'Vous ne pouvez pas modifier en masse d\'autres champs que ceux-ci, car il n’y a pas de place pour tous les afficher. S’il vous plaît suivez le lien et modifiez les un par un si vous devez modifier ces champs.', - 'cannot_change_amount_reconciled' => 'Vous ne pouvez pas modifier le montant d\'opérations réconciliées.', - 'no_budget' => '(pas de budget)', - 'no_bill' => '(aucune facture)', - 'account_per_budget' => 'Compte par budget', - 'account_per_category' => 'Compte par catégorie', - 'create_new_object' => 'Créer', - 'empty' => '(vide)', - 'all_other_budgets' => '(tous les autres budgets)', - 'all_other_accounts' => '(tous les autres comptes)', - 'expense_per_source_account' => 'Dépenses par compte source', - 'expense_per_destination_account' => 'Dépenses par compte de destination', - 'income_per_destination_account' => 'Revenu par compte de destination', - 'spent_in_specific_category' => 'Dépense dans la catégorie ":category"', - 'earned_in_specific_category' => 'Gagné dans la catégorie ":category"', - 'spent_in_specific_tag' => 'Dépenser dans le mot-clé ":tag"', - 'earned_in_specific_tag' => 'Gagné dans le mot-clé ":tag"', - 'income_per_source_account' => 'Revenu par compte source', - 'average_spending_per_destination' => 'Dépense moyenne par compte de destination', - 'average_spending_per_source' => 'Dépense moyenne par compte source', - 'average_earning_per_source' => 'Revenu moyen par compte source', - 'average_earning_per_destination' => 'Revenu moyen par compte de destination', - 'account_per_tag' => 'Compte par mot-clé', - 'tag_report_expenses_listed_once' => 'Les dépenses et les revenus ne sont jamais listés deux fois. Si une opération a plusieurs mots-clés, elle ne peut apparaître que sous l\'un de ses mots-clés. Cette liste peut sembler manquer de données, mais les montants seront corrects.', - 'double_report_expenses_charted_once' => 'Les dépenses et les revenus ne sont jamais affichés deux fois. Si une opération a plusieurs mots-clés, elle ne peut apparaître que sous l\'un de ses mots-clés. Ce graphique peut sembler manquer de données, mais les montants seront corrects.', - 'tag_report_chart_single_tag' => 'Ce graphique s\'applique à un seul mot-clé. Si une opération a plusieurs mots-clés, ce que vous voyez ici peut également être reflété dans les graphiques d\'autres mots-clés.', - 'tag' => 'Mot-clé', - 'no_budget_squared' => '(pas de budget)', - 'perm-delete-many' => 'Supprimer beaucoup d\'éléments d\'un coup peut être très perturbateur. Soyez prudent. Vous pouvez supprimer une partie d\'une opération scindée à partir de cette page, alors faites attention.', - 'mass_deleted_transactions_success' => ':count opération supprimée.|:count opérations supprimées.', - 'mass_edited_transactions_success' => ':count opération mise à jour.|:count opérations mises à jour.', - 'opt_group_' => '(aucun type de compte)', - 'opt_group_no_account_type' => '(aucun type de compte)', - 'opt_group_defaultAsset' => 'Comptes d\'actifs par défaut', - 'opt_group_savingAsset' => 'Comptes d\'épargne', - 'opt_group_sharedAsset' => 'Comptes d\'actifs partagés', - 'opt_group_ccAsset' => 'Cartes de crédit', - 'opt_group_cashWalletAsset' => 'Porte-monnaie', - 'opt_group_expense_account' => 'Comptes de dépenses', - 'opt_group_revenue_account' => 'Comptes de recettes', - 'opt_group_l_Loan' => 'Passif: Prêt', - 'opt_group_cash_account' => 'Compte de trésorerie', - 'opt_group_l_Debt' => 'Passif: Dette', - 'opt_group_l_Mortgage' => 'Passif: Prêt hypothécaire', - 'opt_group_l_Credit card' => 'Passif: Carte de crédit', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Impossible de stocker l\'opération. Veuillez vérifier les fichiers journaux.', - 'attachment_not_found' => 'Cette pièce jointe est introuvable.', - 'journal_link_bill' => 'Cette opération est liée à la facture :name. Pour supprimer l\'association, décocher la case. Utilisez les règles pour la connecter à une autre facture.', - 'transaction_stored_link' => 'L\'opération n°{ID} ("{title}") a été enregistrée.', - 'transaction_new_stored_link' => 'L\'opération n°{ID} a été enregistrée.', - 'transaction_updated_link' => 'L\'opération n°{ID} ("{title}") a été mise à jour.', - 'transaction_updated_no_changes' => 'L\'opération n°{ID} ("{title}") n\'a pas été modifiée.', - 'first_split_decides' => 'La première séparation détermine la valeur de ce champ', - 'first_split_overrules_source' => 'La première séparation peut remplacer le compte source', - 'first_split_overrules_destination' => 'La première séparation peut remplacer le compte de destination', - 'spent_x_of_y' => 'Dépensé {amount} sur {total}', + 'wait_loading_transaction' => 'Veuillez patienter pendant le chargement du formulaire', + 'wait_loading_data' => 'Veuillez attendre que vos informations soient chargées...', + 'wait_attachments' => 'Veuillez patienter pendant le chargement des pièces jointes.', + 'errors_upload' => 'L\'envoi a échoué. Veuillez consulter l\'erreur dans votre console de navigateur.', + 'amount_foreign_if' => 'Montant en devise étrangère, le cas échéant', + 'amount_destination_account' => 'Montant dans la devise du compte de destination', + 'edit_transaction_title' => 'Modifier l\'opération ":description"', + 'unreconcile' => 'Annuler le rapprochement', + 'update_withdrawal' => 'Mettre à jour une dépense', + 'update_deposit' => 'Mettre à jour un dépôt', + 'update_transaction' => 'Mettre à jour l\'opération', + 'update_transfer' => 'Mettre à jour un transfert', + 'updated_withdrawal' => 'Dépense ":description" mise à jour', + 'updated_deposit' => 'Dépôt ":description" mis à jour', + 'updated_transfer' => 'Transfert ":description" mis à jour', + 'no_changes_withdrawal' => 'Le retrait ":description" n\'a pas été modifié.', + 'no_changes_deposit' => 'Le dépôt ":description" n\'a pas été modifié.', + 'no_changes_transfer' => 'Le transfert ":description" n\'a pas été changé.', + 'delete_withdrawal' => 'Supprimer la dépense ":description"', + 'delete_deposit' => 'Supprimer le dépôt ":description"', + 'delete_transfer' => 'Supprimer le transfert ":description"', + 'deleted_withdrawal' => 'Dépense ":description" correctement supprimée', + 'deleted_deposit' => 'Dépôt ":description" correctement supprimé', + 'deleted_transfer' => 'Opération ":description" correctement supprimée', + 'deleted_reconciliation' => 'Opération ":description" supprimée avec succès', + 'stored_journal' => 'Opération ":description" créée avec succès', + 'stored_journal_js' => 'Opération "{{description}}" créée avec succès', + 'stored_journal_no_descr' => 'Nouvelle opération créée avec succès', + 'updated_journal_no_descr' => 'Votre opération a été mise à jour avec succès', + 'select_transactions' => 'Sélectionner des opérations', + 'rule_group_select_transactions' => 'Appliquer le groupe de règles ":title" sur les opérations', + 'rule_select_transactions' => 'Appliquer la règle ":title" sur les opérations', + 'stop_selection' => 'Arrêter de sélectionner les opérations', + 'reconcile_selected' => 'Rapprocher', + 'mass_delete_journals' => 'Supprimer un certain nombre de opérations', + 'mass_edit_journals' => 'Modifier un certain nombre d’opérations', + 'mass_bulk_journals' => 'Modifier un certain nombre d’opérations en masse', + 'mass_bulk_journals_explain' => 'Ce formulaire vous permet de modifier les propriétés des opérations listées ci-dessous d\'un coup. Toutes les opérations dans le tableau seront mises à jour lorsque vous changerez les paramètres que vous voyez ici.', + 'part_of_split' => 'Cette opération fait partie d\'une opération scindée. Si vous n\'avez pas sélectionné toutes les parties, vous risquez de n\'impacter que la moitié de l\'opération.', + 'bulk_set_new_values' => 'Utilisez les entrées ci-dessous pour définir de nouvelles valeurs. Si vous les laissez vides, ils seront vides pour tous. Notez également que seuls les dépenses recevront un budget.', + 'no_bulk_category' => 'Ne pas mettre à jour la catégorie', + 'no_bulk_budget' => 'Ne pas mettre à jour le budget', + 'no_bulk_tags' => 'Ne pas mettre à jour le·s tag·s', + 'replace_with_these_tags' => 'Remplacer par ces tags', + 'append_these_tags' => 'Ajouter ces tags', + 'mass_edit' => 'Modifier la sélection individuellement', + 'bulk_edit' => 'Modifier la sélection en masse', + 'mass_delete' => 'Supprimer la sélection', + 'cannot_edit_other_fields' => 'Vous ne pouvez pas modifier en masse d\'autres champs que ceux-ci, car il n’y a pas de place pour tous les afficher. S’il vous plaît suivez le lien et modifiez les un par un si vous devez modifier ces champs.', + 'cannot_change_amount_reconciled' => 'Vous ne pouvez pas modifier le montant d\'opérations réconciliées.', + 'no_budget' => '(pas de budget)', + 'no_bill' => '(aucune facture)', + 'account_per_budget' => 'Compte par budget', + 'account_per_category' => 'Compte par catégorie', + 'create_new_object' => 'Créer', + 'empty' => '(vide)', + 'all_other_budgets' => '(tous les autres budgets)', + 'all_other_accounts' => '(tous les autres comptes)', + 'expense_per_source_account' => 'Dépenses par compte source', + 'expense_per_destination_account' => 'Dépenses par compte de destination', + 'income_per_destination_account' => 'Revenu par compte de destination', + 'spent_in_specific_category' => 'Dépense dans la catégorie ":category"', + 'earned_in_specific_category' => 'Gagné dans la catégorie ":category"', + 'spent_in_specific_tag' => 'Dépenser dans le mot-clé ":tag"', + 'earned_in_specific_tag' => 'Gagné dans le mot-clé ":tag"', + 'income_per_source_account' => 'Revenu par compte source', + 'average_spending_per_destination' => 'Dépense moyenne par compte de destination', + 'average_spending_per_source' => 'Dépense moyenne par compte source', + 'average_earning_per_source' => 'Revenu moyen par compte source', + 'average_earning_per_destination' => 'Revenu moyen par compte de destination', + 'account_per_tag' => 'Compte par mot-clé', + 'tag_report_expenses_listed_once' => 'Les dépenses et les revenus ne sont jamais listés deux fois. Si une opération a plusieurs mots-clés, elle ne peut apparaître que sous l\'un de ses mots-clés. Cette liste peut sembler manquer de données, mais les montants seront corrects.', + 'double_report_expenses_charted_once' => 'Les dépenses et les revenus ne sont jamais affichés deux fois. Si une opération a plusieurs mots-clés, elle ne peut apparaître que sous l\'un de ses mots-clés. Ce graphique peut sembler manquer de données, mais les montants seront corrects.', + 'tag_report_chart_single_tag' => 'Ce graphique s\'applique à un seul mot-clé. Si une opération a plusieurs mots-clés, ce que vous voyez ici peut également être reflété dans les graphiques d\'autres mots-clés.', + 'tag' => 'Mot-clé', + 'no_budget_squared' => '(pas de budget)', + 'perm-delete-many' => 'Supprimer beaucoup d\'éléments d\'un coup peut être très perturbateur. Soyez prudent. Vous pouvez supprimer une partie d\'une opération scindée à partir de cette page, alors faites attention.', + 'mass_deleted_transactions_success' => ':count opération supprimée.|:count opérations supprimées.', + 'mass_edited_transactions_success' => ':count opération mise à jour.|:count opérations mises à jour.', + 'opt_group_' => '(aucun type de compte)', + 'opt_group_no_account_type' => '(aucun type de compte)', + 'opt_group_defaultAsset' => 'Comptes d\'actifs par défaut', + 'opt_group_savingAsset' => 'Comptes d\'épargne', + 'opt_group_sharedAsset' => 'Comptes d\'actifs partagés', + 'opt_group_ccAsset' => 'Cartes de crédit', + 'opt_group_cashWalletAsset' => 'Porte-monnaie', + 'opt_group_expense_account' => 'Comptes de dépenses', + 'opt_group_revenue_account' => 'Comptes de recettes', + 'opt_group_l_Loan' => 'Passif: Prêt', + 'opt_group_cash_account' => 'Compte de trésorerie', + 'opt_group_l_Debt' => 'Passif: Dette', + 'opt_group_l_Mortgage' => 'Passif: Prêt hypothécaire', + 'opt_group_l_Credit card' => 'Passif: Carte de crédit', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Impossible de stocker l\'opération. Veuillez vérifier les fichiers journaux.', + 'attachment_not_found' => 'Cette pièce jointe est introuvable.', + 'journal_link_bill' => 'Cette opération est liée à la facture :name. Pour supprimer l\'association, décocher la case. Utilisez les règles pour la connecter à une autre facture.', + 'transaction_stored_link' => 'L\'opération n°{ID} ("{title}") a été enregistrée.', + 'transaction_new_stored_link' => 'L\'opération n°{ID} a été enregistrée.', + 'transaction_updated_link' => 'L\'opération n°{ID} ("{title}") a été mise à jour.', + 'transaction_updated_no_changes' => 'L\'opération n°{ID} ("{title}") n\'a pas été modifiée.', + 'first_split_decides' => 'La première séparation détermine la valeur de ce champ', + 'first_split_overrules_source' => 'La première séparation peut remplacer le compte source', + 'first_split_overrules_destination' => 'La première séparation peut remplacer le compte de destination', + 'spent_x_of_y' => 'Dépensé {amount} sur {total}', // new user: - 'welcome' => 'Bienvenue sur Firefly III !', - 'submit' => 'Soumettre', - 'submission' => 'Soumission', - 'submit_yes_really' => 'Soumettre (je sais ce que je fais)', - 'getting_started' => 'Mise en route', - 'to_get_started' => 'Vous venez d\'installer Firefly III avec succès. Pour commencer avec cet outil, entrez le nom de votre banque et le solde de votre compte courant principal. Ne vous inquiétez pas si vous avez plusieurs comptes. Vous pourrez les ajouter plus tard. Firefly III a simplement besoin de quelque chose pour commencer.', - 'savings_balance_text' => 'Firefly III créera automatiquement un compte d\'épargne pour vous. Par défaut, il n\'y aura pas d\'argent sur ce compte d\'épargne, mais si vous indiquez un montant à Firefly III, il l\'enregistrera en tant que solde.', - 'finish_up_new_user' => 'C\'est tout ! Vous pouvez continuer en appuyant sur Envoyer. Vous passerez à l\'index de Firefly III.', - 'stored_new_accounts_new_user' => 'Super ! Vos nouveaux comptes ont été créés.', - 'set_preferred_language' => 'Si vous préférez utiliser Firefly III dans une autre langue, veuillez l\'indiquer ici.', - 'language' => 'Langue', - 'new_savings_account' => ':bank_name compte d\'épargne', - 'cash_wallet' => 'Porte-monnaie', - 'currency_not_present' => 'Si la devise que vous utilisez habituellement n\'est pas répertoriée, ne vous inquiétez pas. Vous pouvez créer vos propres devises dans Options > Devises.', + 'welcome' => 'Bienvenue sur Firefly III !', + 'submit' => 'Soumettre', + 'submission' => 'Soumission', + 'submit_yes_really' => 'Soumettre (je sais ce que je fais)', + 'getting_started' => 'Mise en route', + 'to_get_started' => 'Vous venez d\'installer Firefly III avec succès. Pour commencer avec cet outil, entrez le nom de votre banque et le solde de votre compte courant principal. Ne vous inquiétez pas si vous avez plusieurs comptes. Vous pourrez les ajouter plus tard. Firefly III a simplement besoin de quelque chose pour commencer.', + 'savings_balance_text' => 'Firefly III créera automatiquement un compte d\'épargne pour vous. Par défaut, il n\'y aura pas d\'argent sur ce compte d\'épargne, mais si vous indiquez un montant à Firefly III, il l\'enregistrera en tant que solde.', + 'finish_up_new_user' => 'C\'est tout ! Vous pouvez continuer en appuyant sur Envoyer. Vous passerez à l\'index de Firefly III.', + 'stored_new_accounts_new_user' => 'Super ! Vos nouveaux comptes ont été créés.', + 'set_preferred_language' => 'Si vous préférez utiliser Firefly III dans une autre langue, veuillez l\'indiquer ici.', + 'language' => 'Langue', + 'new_savings_account' => ':bank_name compte d\'épargne', + 'cash_wallet' => 'Porte-monnaie', + 'currency_not_present' => 'Si la devise que vous utilisez habituellement n\'est pas répertoriée, ne vous inquiétez pas. Vous pouvez créer vos propres devises dans Options > Devises.', // home page: - 'transaction_table_description' => 'Une table contenant vos opérations', - 'opposing_account' => 'Compte opposé', - 'yourAccounts' => 'Vos comptes', - 'your_accounts' => 'Aperçu de votre compte', - 'category_overview' => 'Aperçu des catégories', - 'expense_overview' => 'Aperçu des comptes de dépense', - 'revenue_overview' => 'Aperçu des comptes de revenu', - 'budgetsAndSpending' => 'Budgets et dépenses', - 'budgets_and_spending' => 'Budgets et dépenses', - 'go_to_budget' => 'Aller au budget "{budget}"', - 'go_to_deposits' => 'Aller aux dépôts', - 'go_to_expenses' => 'Aller aux dépenses', - 'savings' => 'Épargne', - 'newWithdrawal' => 'Nouvelle dépense', - 'newDeposit' => 'Nouveau dépôt', - 'newTransfer' => 'Nouveau transfert', - 'bills_to_pay' => 'Factures à payer', - 'per_day' => 'Par jour', - 'left_to_spend_per_day' => 'Reste à dépenser par jour', - 'bills_paid' => 'Factures payées', - 'custom_period' => 'Période personnalisée', - 'reset_to_current' => 'Réinitialiser à la période en cours', - 'select_period' => 'Sélectionnez une période', + 'transaction_table_description' => 'Une table contenant vos opérations', + 'opposing_account' => 'Compte opposé', + 'yourAccounts' => 'Vos comptes', + 'your_accounts' => 'Aperçu de votre compte', + 'category_overview' => 'Aperçu des catégories', + 'expense_overview' => 'Aperçu des comptes de dépense', + 'revenue_overview' => 'Aperçu des comptes de revenu', + 'budgetsAndSpending' => 'Budgets et dépenses', + 'budgets_and_spending' => 'Budgets et dépenses', + 'go_to_budget' => 'Aller au budget "{budget}"', + 'go_to_deposits' => 'Aller aux dépôts', + 'go_to_expenses' => 'Aller aux dépenses', + 'savings' => 'Épargne', + 'newWithdrawal' => 'Nouvelle dépense', + 'newDeposit' => 'Nouveau dépôt', + 'newTransfer' => 'Nouveau transfert', + 'bills_to_pay' => 'Factures à payer', + 'per_day' => 'Par jour', + 'left_to_spend_per_day' => 'Reste à dépenser par jour', + 'bills_paid' => 'Factures payées', + 'custom_period' => 'Période personnalisée', + 'reset_to_current' => 'Réinitialiser à la période en cours', + 'select_period' => 'Sélectionnez une période', // menu and titles, should be recycled as often as possible: - 'currency' => 'Devise', - 'preferences' => 'Préférences', - 'logout' => 'Se déconnecter', - 'logout_other_sessions' => 'Déconnecter toutes les autres sessions', - 'toggleNavigation' => 'Activer navigation', - 'searchPlaceholder' => 'Rechercher...', - 'version' => 'Version', - 'dashboard' => 'Tableau de bord', - 'income_and_expense' => 'Revenus et dépenses', - 'all_money' => 'Tout votre argent', - 'unknown_source_plain' => 'Compte source inconnu', - 'unknown_dest_plain' => 'Compte de destination inconnu', - 'unknown_any_plain' => 'Compte inconnu', - 'unknown_budget_plain' => 'Pas de budget', - 'available_budget' => 'Budget disponible ({currency})', - 'currencies' => 'Devises', - 'activity' => 'Activité', - 'usage' => 'Utilisation', - 'accounts' => 'Comptes', - 'Asset account' => 'Compte d’actif', - 'Default account' => 'Compte d’actif', - 'Expense account' => 'Compte de dépenses', - 'Revenue account' => 'Compte de recettes', - 'Initial balance account' => 'Balance initiale', - 'account_type_Asset account' => 'Compte d’actif', - 'account_type_Expense account' => 'Compte de dépenses', - 'account_type_Revenue account' => 'Compte de recettes', - 'account_type_Debt' => 'Dette', - 'account_type_Loan' => 'Prêt', - 'account_type_Mortgage' => 'Prêt hypothécaire', - 'account_type_debt' => 'Dette', - 'account_type_loan' => 'Emprunt', - 'account_type_mortgage' => 'Prêt immobilier', - 'account_type_Credit card' => 'Carte de crédit', - 'credit_card_type_monthlyFull' => 'Paiement complet tous les mois', - 'liability_direction_credit' => 'On me doit cette dette', - 'liability_direction_debit' => 'Je dois cette dette à quelqu\'un d\'autre', - 'liability_direction_credit_short' => 'Emprunteur', - 'liability_direction_debit_short' => 'Prêteur', - 'liability_direction__short' => 'Inconnu', - 'liability_direction_null_short' => 'Inconnu', - 'Liability credit' => 'Passif de crédit', - 'budgets' => 'Budgets', - 'tags' => 'Tags', - 'reports' => 'Rapports', - 'transactions' => 'Opérations', - 'expenses' => 'Dépenses', - 'income' => 'Recette / revenu', - 'transfers' => 'Transferts', - 'moneyManagement' => 'Gestion financière', - 'money_management' => 'Gestion financière', - 'tools' => 'Outils', - 'piggyBanks' => 'Tirelires', - 'piggy_banks' => 'Tirelires', - 'amount_x_of_y' => '{current} sur {total}', - 'bills' => 'Factures', - 'withdrawal' => 'Dépense', - 'opening_balance' => 'Solde d\'ouverture', - 'deposit' => 'Dépôt', - 'account' => 'Compte', - 'transfer' => 'Transfert', - 'Withdrawal' => 'Dépense', - 'Deposit' => 'Dépôt', - 'Transfer' => 'Transfert', - 'bill' => 'Facture', - 'yes' => 'Oui', - 'no' => 'Non', - 'amount' => 'Montant', - 'overview' => 'Vue globale', - 'saveOnAccount' => 'Mis de côté sur le compte', - 'unknown' => 'Inconnu', - 'monthly' => 'Mensuel', - 'profile' => 'Profil', - 'errors' => 'Erreurs', - 'debt_start_date' => 'Date de début de la dette', - 'debt_start_amount' => 'Montant initial de la dette', - 'debt_start_amount_help' => 'Il est toujours préférable de définir cette valeur à un montant négatif. Lisez les pages d\'aide (icône (?) en haut à droite) pour plus d\'informations.', - 'interest_period_help' => 'Ce champ est purement cosmétique et ne sera pas calculé pour vous. Il se trouve que les banques ont chacune leur façon de faire et Firefly III ne fournira pas de bonne solution.', - 'store_new_liabilities_account' => 'Enregistrer un nouveau passif', - 'edit_liabilities_account' => 'Modifier le passif ":name"', - 'financial_control' => 'Gestion des finances', - 'accounting' => 'Comptabilité', - 'automation' => 'Automatisation', - 'others' => 'Autres', - 'classification' => 'Classification', - 'store_transaction' => 'Enregistrer l\'opération', + 'currency' => 'Devise', + 'preferences' => 'Préférences', + 'logout' => 'Se déconnecter', + 'logout_other_sessions' => 'Déconnecter toutes les autres sessions', + 'toggleNavigation' => 'Activer navigation', + 'searchPlaceholder' => 'Rechercher...', + 'version' => 'Version', + 'dashboard' => 'Tableau de bord', + 'income_and_expense' => 'Revenus et dépenses', + 'all_money' => 'Tout votre argent', + 'unknown_source_plain' => 'Compte source inconnu', + 'unknown_dest_plain' => 'Compte de destination inconnu', + 'unknown_any_plain' => 'Compte inconnu', + 'unknown_budget_plain' => 'Pas de budget', + 'available_budget' => 'Budget disponible ({currency})', + 'currencies' => 'Devises', + 'activity' => 'Activité', + 'usage' => 'Utilisation', + 'accounts' => 'Comptes', + 'Asset account' => 'Compte d’actif', + 'Default account' => 'Compte d’actif', + 'Expense account' => 'Compte de dépenses', + 'Revenue account' => 'Compte de recettes', + 'Initial balance account' => 'Balance initiale', + 'account_type_Asset account' => 'Compte d’actif', + 'account_type_Expense account' => 'Compte de dépenses', + 'account_type_Revenue account' => 'Compte de recettes', + 'account_type_Debt' => 'Dette', + 'account_type_Loan' => 'Prêt', + 'account_type_Mortgage' => 'Prêt hypothécaire', + 'account_type_debt' => 'Dette', + 'account_type_loan' => 'Emprunt', + 'account_type_mortgage' => 'Prêt immobilier', + 'account_type_Credit card' => 'Carte de crédit', + 'credit_card_type_monthlyFull' => 'Paiement complet tous les mois', + 'liability_direction_credit' => 'On me doit cette dette', + 'liability_direction_debit' => 'Je dois cette dette à quelqu\'un d\'autre', + 'liability_direction_credit_short' => 'Emprunteur', + 'liability_direction_debit_short' => 'Prêteur', + 'liability_direction__short' => 'Inconnu', + 'liability_direction_null_short' => 'Inconnu', + 'Liability credit' => 'Passif de crédit', + 'budgets' => 'Budgets', + 'tags' => 'Tags', + 'reports' => 'Rapports', + 'transactions' => 'Opérations', + 'expenses' => 'Dépenses', + 'income' => 'Recette / revenu', + 'transfers' => 'Transferts', + 'moneyManagement' => 'Gestion financière', + 'money_management' => 'Gestion financière', + 'tools' => 'Outils', + 'piggyBanks' => 'Tirelires', + 'piggy_banks' => 'Tirelires', + 'amount_x_of_y' => '{current} sur {total}', + 'bills' => 'Factures', + 'withdrawal' => 'Dépense', + 'opening_balance' => 'Solde d\'ouverture', + 'deposit' => 'Dépôt', + 'account' => 'Compte', + 'transfer' => 'Transfert', + 'Withdrawal' => 'Dépense', + 'Deposit' => 'Dépôt', + 'Transfer' => 'Transfert', + 'bill' => 'Facture', + 'yes' => 'Oui', + 'no' => 'Non', + 'amount' => 'Montant', + 'overview' => 'Vue globale', + 'saveOnAccount' => 'Mis de côté sur le compte', + 'unknown' => 'Inconnu', + 'monthly' => 'Mensuel', + 'profile' => 'Profil', + 'errors' => 'Erreurs', + 'debt_start_date' => 'Date de début de la dette', + 'debt_start_amount' => 'Montant initial de la dette', + 'debt_start_amount_help' => 'Il est toujours préférable de définir cette valeur à un montant négatif. Lisez les pages d\'aide (icône (?) en haut à droite) pour plus d\'informations.', + 'interest_period_help' => 'Ce champ est purement cosmétique et ne sera pas calculé pour vous. Il se trouve que les banques ont chacune leur façon de faire et Firefly III ne fournira pas de bonne solution.', + 'store_new_liabilities_account' => 'Enregistrer un nouveau passif', + 'edit_liabilities_account' => 'Modifier le passif ":name"', + 'financial_control' => 'Gestion des finances', + 'accounting' => 'Comptabilité', + 'automation' => 'Automatisation', + 'others' => 'Autres', + 'classification' => 'Classification', + 'store_transaction' => 'Enregistrer l\'opération', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Rapport financier par défaut entre le :start et le :end', - 'report_audit' => 'Aperçu de l\'historique des opérations entre le :start et le :end', - 'report_category' => 'Rapport de catégorie entre :start et :end', - 'report_double' => 'Rapport de compte de dépenses / recettes entre le :start et le :end', - 'report_budget' => 'Rapport du budget entre le :start et le :end', - 'report_tag' => "Rapport de tag entre le\u{a0}:start et le :end", - 'quick_link_reports' => 'Liens rapides', - 'quick_link_examples' => 'Voici quelques exemples de liens pour vous aider à démarrer. Consultez les pages d\'aide en cliquant le bouton (?) pour plus d\'informations sur les rapports et les mots magiques que vous pouvez utiliser.', - 'quick_link_default_report' => 'Rapport financier par défaut', - 'quick_link_audit_report' => 'Historique des opérations', - 'report_this_month_quick' => 'Mois en cours, tous les comptes', - 'report_last_month_quick' => 'Mois dernier, tous les comptes', - 'report_this_year_quick' => 'Année en cours, tous les comptes', - 'report_this_fiscal_year_quick' => 'Année fiscale en cours, tous les comptes', - 'report_all_time_quick' => 'Tous les temps, tous les comptes', - 'reports_can_bookmark' => 'N’oubliez pas que les rapports peuvent être mis en favori.', - 'incomeVsExpenses' => 'Revenus vs dépenses', - 'accountBalances' => 'Soldes du compte', - 'balanceStart' => 'Solde au début de la période', - 'balanceEnd' => 'Solde à la fin de la période', - 'splitByAccount' => 'Séparation par compte', - 'coveredWithTags' => 'Couvert par des tags', - 'leftInBudget' => 'Budget restant', - 'left_in_debt' => 'Montant dû', - 'sumOfSums' => 'Somme des montants', - 'noCategory' => '(aucune catégorie)', - 'notCharged' => 'Pas (encore) facturé', - 'inactive' => 'Inactif', - 'active' => 'Actif', - 'difference' => 'Différence', - 'money_flowing_in' => 'Entrée', - 'money_flowing_out' => 'Sortie', - 'topX' => ':number premiers', - 'show_full_list' => 'Afficher la liste complète', - 'show_only_top' => 'Afficher uniquement :number premiers', - 'report_type' => 'Type de rapport', - 'report_type_default' => 'Rapport financier par défaut', - 'report_type_audit' => 'Historique des opérations', - 'report_type_category' => 'Rapport par catégories', - 'report_type_budget' => 'Rapport du budget', - 'report_type_tag' => 'Rapport de tag', - 'report_type_double' => 'Rapport de compte de dépenses/recettes', - 'more_info_help' => 'Vous trouverez plus d’informations sur ces différents types de rapports dans les pages d’aide. Appuyez sur l’icône (?) dans le coin supérieur droit.', - 'report_included_accounts' => 'Comptes inclus', - 'report_date_range' => 'Intervalle de dates', - 'report_preset_ranges' => 'Intervalles pré-configurés', - 'shared' => 'Partagé', - 'fiscal_year' => 'Année fiscale', - 'income_entry' => 'Revenus du compte ":name" entre le :start et le :end', - 'expense_entry' => 'Dépenses du compte ":name" entre le :start et le :end', - 'category_entry' => 'Dépenses et revenus dans la catégorie ":name" entre le :start et le :end', - 'budget_spent_amount' => 'Dépenses dans le budget ":budget" entre le :start et le :end', - 'balance_amount' => 'Dépenses dans le budget ":budget" payé depuis le compte ":account" entre le :start et le :end', - 'no_audit_activity' => 'Aucune activité n\'a été enregistrée sur le compte :account_name entre le :start et le :end.', - 'audit_end_balance' => 'Le solde du compte :account_name à la fin du :end était de : :balance', - 'reports_extra_options' => 'Options supplémentaires', - 'report_has_no_extra_options' => 'Ce rapport n\'a pas d\'options supplémentaires', - 'reports_submit' => 'Afficher le rapport', - 'end_after_start_date' => 'La date de fin du rapport doit être postérieure à la date de début.', - 'select_category' => 'Sélectionner la(les) catégorie(s)', - 'select_budget' => 'Sélectionnez le(s) budget(s).', - 'select_tag' => 'Sélectionnez le·s tag·s.', - 'income_per_category' => 'Revenus par catégorie', - 'expense_per_category' => 'Dépenses par catégorie', - 'expense_per_budget' => 'Dépenses par budget', - 'income_per_account' => 'Revenus par compte', - 'expense_per_account' => 'Dépenses par compte', - 'expense_per_tag' => 'Dépenses par tag', - 'income_per_tag' => 'Revenus par tag', - 'include_expense_not_in_budget' => 'Les dépenses incluses ne sont pas dans le(s) budget(s) sélectionné(s)', - 'include_expense_not_in_account' => 'Les dépenses incluses ne sont pas dans le(s) compte(s) sélectionné(s)', - 'include_expense_not_in_category' => 'Les dépenses incluses ne sont pas dans la(les) catégorie(s) sélectionnée(s)', - 'include_income_not_in_category' => 'Les revenus inclus ne sont pas dans la(les) catégorie(s) sélectionnée(s)', - 'include_income_not_in_account' => 'Revenus inclus non compris dans le(s) compte(s) sélectionné(s)', - 'include_income_not_in_tags' => 'Les revenus inclus ne sont pas dans la (les) catégorie·s sélectionnée·s', - 'include_expense_not_in_tags' => 'Les dépenses incluses ne sont pas dans le·s tag·s sélectionnée·s', - 'everything_else' => 'Tout le reste', - 'income_and_expenses' => 'Recettes et dépenses', - 'spent_average' => 'Dépenses (moyenne)', - 'income_average' => 'Revenus (moyenne)', - 'transaction_count' => 'Nombre d\'opérations', - 'average_spending_per_account' => 'Dépenses moyennes par compte', - 'average_income_per_account' => 'Revenus moyens par compte', - 'total' => 'Total', - 'description' => 'Description', - 'sum_of_period' => 'Somme pour la période', - 'average_in_period' => 'Moyenne pour la période', - 'no_account_role' => '(aucun rôle)', - 'account_role_defaultAsset' => 'Compte d\'actif par défaut', - 'account_role_sharedAsset' => 'Compte d\'actif partagé', - 'account_role_savingAsset' => 'Compte d’épargne', - 'account_role_ccAsset' => 'Carte de crédit', - 'account_role_cashWalletAsset' => 'Porte-monnaie', - 'budget_chart_click' => 'Cliquez sur le nom du budget dans le tableau ci-dessus pour voir un graphique.', - 'category_chart_click' => 'Cliquez sur un nom de catégorie dans le tableau ci-dessus pour voir un graphique.', - 'in_out_accounts' => 'Gagné et dépensé par compte', - 'in_out_accounts_per_asset' => 'Gagné et dépensé (par compte d\'actif)', - 'in_out_per_category' => 'Gagné et dépensé par catégorie', - 'out_per_budget' => 'Dépensé par budget', - 'select_expense_revenue' => 'Sélectionner le compte de dépenses / recettes', - 'multi_currency_report_sum' => 'Cette liste contenant des comptes dans des devises différentes, les sommes que vous voyez peuvent ne pas faire sens. Le rapport sera lui toujours généré dans votre devise par défaut.', - 'sum_in_default_currency' => 'La somme sera toujours dans votre devise par défaut.', - 'net_filtered_prefs' => "Ce graphique n’inclura jamais les comptes dont l'option «\u{a0}inclure dans l'avoir net » n'est pas cochée.", + 'report_default' => 'Rapport financier par défaut entre le :start et le :end', + 'report_audit' => 'Aperçu de l\'historique des opérations entre le :start et le :end', + 'report_category' => 'Rapport de catégorie entre :start et :end', + 'report_double' => 'Rapport de compte de dépenses / recettes entre le :start et le :end', + 'report_budget' => 'Rapport du budget entre le :start et le :end', + 'report_tag' => "Rapport de tag entre le\u{a0}:start et le :end", + 'quick_link_reports' => 'Liens rapides', + 'quick_link_examples' => 'Voici quelques exemples de liens pour vous aider à démarrer. Consultez les pages d\'aide en cliquant le bouton (?) pour plus d\'informations sur les rapports et les mots magiques que vous pouvez utiliser.', + 'quick_link_default_report' => 'Rapport financier par défaut', + 'quick_link_audit_report' => 'Historique des opérations', + 'report_this_month_quick' => 'Mois en cours, tous les comptes', + 'report_last_month_quick' => 'Mois dernier, tous les comptes', + 'report_this_year_quick' => 'Année en cours, tous les comptes', + 'report_this_fiscal_year_quick' => 'Année fiscale en cours, tous les comptes', + 'report_all_time_quick' => 'Tous les temps, tous les comptes', + 'reports_can_bookmark' => 'N’oubliez pas que les rapports peuvent être mis en favori.', + 'incomeVsExpenses' => 'Revenus vs dépenses', + 'accountBalances' => 'Soldes du compte', + 'balanceStart' => 'Solde au début de la période', + 'balanceEnd' => 'Solde à la fin de la période', + 'splitByAccount' => 'Séparation par compte', + 'coveredWithTags' => 'Couvert par des tags', + 'leftInBudget' => 'Budget restant', + 'left_in_debt' => 'Montant dû', + 'sumOfSums' => 'Somme des montants', + 'noCategory' => '(aucune catégorie)', + 'notCharged' => 'Pas (encore) facturé', + 'inactive' => 'Inactif', + 'active' => 'Actif', + 'difference' => 'Différence', + 'money_flowing_in' => 'Entrée', + 'money_flowing_out' => 'Sortie', + 'topX' => ':number premiers', + 'show_full_list' => 'Afficher la liste complète', + 'show_only_top' => 'Afficher uniquement :number premiers', + 'report_type' => 'Type de rapport', + 'report_type_default' => 'Rapport financier par défaut', + 'report_type_audit' => 'Historique des opérations', + 'report_type_category' => 'Rapport par catégories', + 'report_type_budget' => 'Rapport du budget', + 'report_type_tag' => 'Rapport de tag', + 'report_type_double' => 'Rapport de compte de dépenses/recettes', + 'more_info_help' => 'Vous trouverez plus d’informations sur ces différents types de rapports dans les pages d’aide. Appuyez sur l’icône (?) dans le coin supérieur droit.', + 'report_included_accounts' => 'Comptes inclus', + 'report_date_range' => 'Intervalle de dates', + 'report_preset_ranges' => 'Intervalles pré-configurés', + 'shared' => 'Partagé', + 'fiscal_year' => 'Année fiscale', + 'income_entry' => 'Revenus du compte ":name" entre le :start et le :end', + 'expense_entry' => 'Dépenses du compte ":name" entre le :start et le :end', + 'category_entry' => 'Dépenses et revenus dans la catégorie ":name" entre le :start et le :end', + 'budget_spent_amount' => 'Dépenses dans le budget ":budget" entre le :start et le :end', + 'balance_amount' => 'Dépenses dans le budget ":budget" payé depuis le compte ":account" entre le :start et le :end', + 'no_audit_activity' => 'Aucune activité n\'a été enregistrée sur le compte :account_name entre le :start et le :end.', + 'audit_end_balance' => 'Le solde du compte :account_name à la fin du :end était de : :balance', + 'reports_extra_options' => 'Options supplémentaires', + 'report_has_no_extra_options' => 'Ce rapport n\'a pas d\'options supplémentaires', + 'reports_submit' => 'Afficher le rapport', + 'end_after_start_date' => 'La date de fin du rapport doit être postérieure à la date de début.', + 'select_category' => 'Sélectionner la(les) catégorie(s)', + 'select_budget' => 'Sélectionnez le(s) budget(s).', + 'select_tag' => 'Sélectionnez le·s tag·s.', + 'income_per_category' => 'Revenus par catégorie', + 'expense_per_category' => 'Dépenses par catégorie', + 'expense_per_budget' => 'Dépenses par budget', + 'income_per_account' => 'Revenus par compte', + 'expense_per_account' => 'Dépenses par compte', + 'expense_per_tag' => 'Dépenses par tag', + 'income_per_tag' => 'Revenus par tag', + 'include_expense_not_in_budget' => 'Les dépenses incluses ne sont pas dans le(s) budget(s) sélectionné(s)', + 'include_expense_not_in_account' => 'Les dépenses incluses ne sont pas dans le(s) compte(s) sélectionné(s)', + 'include_expense_not_in_category' => 'Les dépenses incluses ne sont pas dans la(les) catégorie(s) sélectionnée(s)', + 'include_income_not_in_category' => 'Les revenus inclus ne sont pas dans la(les) catégorie(s) sélectionnée(s)', + 'include_income_not_in_account' => 'Revenus inclus non compris dans le(s) compte(s) sélectionné(s)', + 'include_income_not_in_tags' => 'Les revenus inclus ne sont pas dans la (les) catégorie·s sélectionnée·s', + 'include_expense_not_in_tags' => 'Les dépenses incluses ne sont pas dans le·s tag·s sélectionnée·s', + 'everything_else' => 'Tout le reste', + 'income_and_expenses' => 'Recettes et dépenses', + 'spent_average' => 'Dépenses (moyenne)', + 'income_average' => 'Revenus (moyenne)', + 'transaction_count' => 'Nombre d\'opérations', + 'average_spending_per_account' => 'Dépenses moyennes par compte', + 'average_income_per_account' => 'Revenus moyens par compte', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Somme pour la période', + 'average_in_period' => 'Moyenne pour la période', + 'no_account_role' => '(aucun rôle)', + 'account_role_defaultAsset' => 'Compte d\'actif par défaut', + 'account_role_sharedAsset' => 'Compte d\'actif partagé', + 'account_role_savingAsset' => 'Compte d’épargne', + 'account_role_ccAsset' => 'Carte de crédit', + 'account_role_cashWalletAsset' => 'Porte-monnaie', + 'budget_chart_click' => 'Cliquez sur le nom du budget dans le tableau ci-dessus pour voir un graphique.', + 'category_chart_click' => 'Cliquez sur un nom de catégorie dans le tableau ci-dessus pour voir un graphique.', + 'in_out_accounts' => 'Gagné et dépensé par compte', + 'in_out_accounts_per_asset' => 'Gagné et dépensé (par compte d\'actif)', + 'in_out_per_category' => 'Gagné et dépensé par catégorie', + 'out_per_budget' => 'Dépensé par budget', + 'select_expense_revenue' => 'Sélectionner le compte de dépenses / recettes', + 'multi_currency_report_sum' => 'Cette liste contenant des comptes dans des devises différentes, les sommes que vous voyez peuvent ne pas faire sens. Le rapport sera lui toujours généré dans votre devise par défaut.', + 'sum_in_default_currency' => 'La somme sera toujours dans votre devise par défaut.', + 'net_filtered_prefs' => "Ce graphique n’inclura jamais les comptes dont l'option «\u{a0}inclure dans l'avoir net » n'est pas cochée.", /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Graphique', - 'month' => 'Mois', - 'budget' => 'Budget', - 'spent' => 'Dépensé', - 'spent_capped' => 'Dépensé (plafonné)', - 'spent_in_budget' => 'Dépensé dans le budget', - 'left_to_spend' => 'Reste à dépenser', - 'earned' => 'Gagné', - 'overspent' => 'Trop dépensé', - 'left' => 'Reste', - 'max-amount' => 'Montant maximum', - 'min-amount' => 'Montant minimum', - 'journal-amount' => 'Entrée de la facture courante', - 'name' => 'Nom', - 'date' => 'Date', - 'date_and_time' => 'Date et heure', - 'time' => 'Heure', - 'paid' => 'Payé', - 'unpaid' => 'Impayé', - 'day' => 'Jour', - 'budgeted' => 'Budgétisé', - 'period' => 'Période', - 'balance' => 'Solde', - 'in_out_period' => 'Entrée + sortie de la période', - 'sum' => 'Somme', - 'summary' => 'Résumé', - 'average' => 'Moyenne', - 'balanceFor' => 'Solde pour :name', - 'no_tags' => '(pas de mot-clé)', - 'nothing_found' => '(aucun résultat)', + 'chart' => 'Graphique', + 'month' => 'Mois', + 'budget' => 'Budget', + 'spent' => 'Dépensé', + 'spent_capped' => 'Dépensé (plafonné)', + 'spent_in_budget' => 'Dépensé dans le budget', + 'left_to_spend' => 'Reste à dépenser', + 'earned' => 'Gagné', + 'overspent' => 'Trop dépensé', + 'left' => 'Reste', + 'max-amount' => 'Montant maximum', + 'min-amount' => 'Montant minimum', + 'journal-amount' => 'Entrée de la facture courante', + 'name' => 'Nom', + 'date' => 'Date', + 'date_and_time' => 'Date et heure', + 'time' => 'Heure', + 'paid' => 'Payé', + 'unpaid' => 'Impayé', + 'day' => 'Jour', + 'budgeted' => 'Budgétisé', + 'period' => 'Période', + 'balance' => 'Solde', + 'in_out_period' => 'Entrée + sortie de la période', + 'sum' => 'Somme', + 'summary' => 'Résumé', + 'average' => 'Moyenne', + 'balanceFor' => 'Solde pour :name', + 'no_tags' => '(pas de mot-clé)', + 'nothing_found' => '(aucun résultat)', // piggy banks: - 'event_history' => 'Historique des événements', - 'add_money_to_piggy' => 'Ajouter de l’argent à la tirelire ":name"', - 'piggy_bank' => 'Tirelire', - 'new_piggy_bank' => 'Nouvelle tirelire', - 'store_piggy_bank' => 'Créer une nouvelle tirelire', - 'stored_piggy_bank' => 'Créer une nouvelle tirelire ":name"', - 'account_status' => 'État du compte', - 'left_for_piggy_banks' => 'Reste pour les tirelires', - 'sum_of_piggy_banks' => 'Somme des tirelires', - 'saved_so_far' => 'Mis de côté jusqu\'à présent', - 'left_to_save' => 'Reste à mettre de côté', - 'suggested_amount' => 'Montant mensuel suggéré à économiser', - 'add_money_to_piggy_title' => 'Ajouter de l’argent à la tirelire ":name"', - 'remove_money_from_piggy_title' => 'Retirer l’argent de la tirelire ":name"', - 'add' => 'Ajouter', - 'no_money_for_piggy' => 'Vous n\'avez pas d\'argent à placer dans cette tirelire.', - 'suggested_savings_per_month' => 'Suggéré par mois', + 'event_history' => 'Historique des événements', + 'add_money_to_piggy' => 'Ajouter de l’argent à la tirelire ":name"', + 'piggy_bank' => 'Tirelire', + 'new_piggy_bank' => 'Nouvelle tirelire', + 'store_piggy_bank' => 'Créer une nouvelle tirelire', + 'stored_piggy_bank' => 'Créer une nouvelle tirelire ":name"', + 'account_status' => 'État du compte', + 'left_for_piggy_banks' => 'Reste pour les tirelires', + 'sum_of_piggy_banks' => 'Somme des tirelires', + 'saved_so_far' => 'Mis de côté jusqu\'à présent', + 'left_to_save' => 'Reste à mettre de côté', + 'suggested_amount' => 'Montant mensuel suggéré à économiser', + 'add_money_to_piggy_title' => 'Ajouter de l’argent à la tirelire ":name"', + 'remove_money_from_piggy_title' => 'Retirer l’argent de la tirelire ":name"', + 'add' => 'Ajouter', + 'no_money_for_piggy' => 'Vous n\'avez pas d\'argent à placer dans cette tirelire.', + 'suggested_savings_per_month' => 'Suggéré par mois', - 'remove' => 'Enlever', - 'max_amount_add' => 'Le montant maximum que vous pouvez ajouter est', - 'max_amount_remove' => 'Le montant maximum que vous pouvez supprimer est', - 'update_piggy_button' => 'Mise à jour de la tirelire', - 'update_piggy_title' => 'Mise à jour de la tirelire ":name"', - 'updated_piggy_bank' => 'Tirelire ":name" mise à jour', - 'details' => 'Détails', - 'events' => 'Evènements', - 'target_amount' => 'Montant cible', - 'start_date' => 'Date de début', - 'no_start_date' => 'Pas de date de début', - 'target_date' => 'Date cible', - 'no_target_date' => 'Aucune date butoir', - 'table' => 'Tableau', - 'delete_piggy_bank' => 'Supprimer la tirelire ":name"', - 'cannot_add_amount_piggy' => "Impossible d'ajouter\u{a0}:amount à \":name\".", - 'cannot_remove_from_piggy' => "Impossible de supprimer\u{a0}:amount à \":name\".", - 'deleted_piggy_bank' => 'Tirelire ":name" supprimée', - 'added_amount_to_piggy' => "Ajouté\u{a0}:amount à \":name\"", - 'removed_amount_from_piggy' => ':amount retiré de ":name"', - 'piggy_events' => 'Tirelires associées', + 'remove' => 'Enlever', + 'max_amount_add' => 'Le montant maximum que vous pouvez ajouter est', + 'max_amount_remove' => 'Le montant maximum que vous pouvez supprimer est', + 'update_piggy_button' => 'Mise à jour de la tirelire', + 'update_piggy_title' => 'Mise à jour de la tirelire ":name"', + 'updated_piggy_bank' => 'Tirelire ":name" mise à jour', + 'details' => 'Détails', + 'events' => 'Evènements', + 'target_amount' => 'Montant cible', + 'start_date' => 'Date de début', + 'no_start_date' => 'Pas de date de début', + 'target_date' => 'Date cible', + 'no_target_date' => 'Aucune date butoir', + 'table' => 'Tableau', + 'delete_piggy_bank' => 'Supprimer la tirelire ":name"', + 'cannot_add_amount_piggy' => "Impossible d'ajouter\u{a0}:amount à \":name\".", + 'cannot_remove_from_piggy' => "Impossible de supprimer\u{a0}:amount à \":name\".", + 'deleted_piggy_bank' => 'Tirelire ":name" supprimée', + 'added_amount_to_piggy' => "Ajouté\u{a0}:amount à \":name\"", + 'removed_amount_from_piggy' => ':amount retiré de ":name"', + 'piggy_events' => 'Tirelires associées', // tags - 'delete_tag' => 'Supprimer le tag ":tag"', - 'deleted_tag' => 'Tag ":tag" supprimé', - 'new_tag' => 'Créer un nouveau tag', - 'edit_tag' => 'Modifier le tag ":tag"', - 'updated_tag' => 'Mise à jour du tag ":tag"', - 'created_tag' => "Tag \" : tag\" a été créé\u{a0}!", + 'delete_tag' => 'Supprimer le tag ":tag"', + 'deleted_tag' => 'Tag ":tag" supprimé', + 'new_tag' => 'Créer un nouveau tag', + 'edit_tag' => 'Modifier le tag ":tag"', + 'updated_tag' => 'Mise à jour du tag ":tag"', + 'created_tag' => "Tag \" : tag\" a été créé\u{a0}!", - 'transaction_journal_information' => 'Informations sur l\'opération', - 'transaction_journal_amount' => 'Informations sur les montants', - 'transaction_journal_meta' => 'Méta informations', - 'transaction_journal_more' => 'Plus d\'informations', - 'basic_journal_information' => 'Informations de base sur l\'opération', - 'transaction_journal_extra' => 'Informations supplémentaires', - 'att_part_of_journal' => 'Stocké dans ":journal"', - 'total_amount' => 'Montant total', - 'number_of_decimals' => 'Nombre de décimales', + 'transaction_journal_information' => 'Informations sur l\'opération', + 'transaction_journal_amount' => 'Informations sur les montants', + 'transaction_journal_meta' => 'Méta informations', + 'transaction_journal_more' => 'Plus d\'informations', + 'basic_journal_information' => 'Informations de base sur l\'opération', + 'transaction_journal_extra' => 'Informations supplémentaires', + 'att_part_of_journal' => 'Stocké dans ":journal"', + 'total_amount' => 'Montant total', + 'number_of_decimals' => 'Nombre de décimales', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'L\'invitation à ":address" a déjà été utilisée.', - 'invite_is_deleted' => 'L\'invitation à ":address" a été supprimée.', - 'invite_new_user_title' => 'Inviter un nouvel utilisateur', - 'invite_new_user_text' => 'En tant qu\'administrateur, vous pouvez inviter des utilisateurs à s\'inscrire sur votre administration Firefly III. En partageant avec eux le lien direct, ils seront en mesure de créer un compte. L\'utilisateur invité et son lien d\'invitation apparaîtront dans le tableau ci-dessous. Vous êtes libre de partager le lien d\'invitation avec eux.', - 'invited_user_mail' => 'Adresse e-mail', - 'invite_user' => 'Inviter l’utilisateur', - 'user_is_invited' => 'L\'adresse e-mail ":address" a été invitée à rejoindre Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'Paramètres du système', - 'code_already_used' => 'Le code d\'invitation a été utilisé', - 'user_administration' => 'Gestion des utilisateurs', - 'list_all_users' => 'Tous les utilisateurs', - 'all_users' => 'Tous les utilisateurs', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Options de configuration pour Firefly III', - 'setting_single_user_mode' => 'Mode utilisateur unique', - 'setting_single_user_mode_explain' => 'Par défaut, Firefly III accepte uniquement une (1) inscription : vous. Il s\'agit d\'une mesure de sécurité qui empêche les inconnus d\'utiliser votre instance, à moins que vous ne les y autorisiez. Les inscriptions futures sont bloquées. Lorsque vous désactivez cette case, d\'autres personnes peuvent utiliser votre instance, en supposant qu\'elles puissent l\'atteindre (quand elle est connectée à Internet).', - 'store_configuration' => 'Sauvegarder la configuration', - 'single_user_administration' => "Gestion de l'utilisateur pour\u{a0}:email", - 'edit_user' => "Modifier l'utilisateur\u{a0}:email", - 'hidden_fields_preferences' => 'Vous pouvez activer plus d\'options d\'opérations dans vos paramètres.', - 'user_data_information' => 'Données utilisateur', - 'user_information' => 'Informations utilisateur', - 'total_size' => 'taille totale', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget avec un montant configuré|:count budgets avec un montant configuré', - 'nr_of_rules_in_total_groups' => ':count_rules règle(s) dans :count_groups groupe(s) de règles', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'La configuration a été mise à jour', - 'setting_is_demo_site' => 'Site de démonstration', - 'setting_is_demo_site_explain' => 'Si vous cochez cette case, cette installation se comportera comme si c\'était le site de démonstration, ce qui comporte certaines limitations.', - 'block_code_bounced' => 'Rebond des emails', - 'block_code_expired' => 'Compte démo expiré', - 'no_block_code' => 'Aucune raison pour le blocage ou utilisateur non bloqué', - 'demo_user_export' => 'L\'utilisateur du compte de démonstration ne peut pas exporter de données', - 'block_code_email_changed' => 'L\'utilisateur n\'a pas encore confirmé sa nouvelle adresse e-mail', - 'admin_update_email' => 'Contrairement à la page de profil, l\'utilisateur NE SERA PAS informé que son adresse email a changé !', - 'update_user' => 'Utilisateur mis à jour', - 'updated_user' => 'Les données utilisateur ont bien été modifiées.', - 'delete_user' => 'Supprimer l\'utilisateur :email', - 'user_deleted' => 'L\'utilisateur a été supprimé', - 'send_test_email' => 'Envoyer un message de test', - 'send_test_email_text' => 'Pour vérifier que votre installation est capable d\'envoyer des emails ou de poster des messages Slack, utilisez ce bouton. Vous ne verrez pas d\'erreur ici (s\'il y en a), elles seront enregistrées dans les logs. Utilisez ce bouton autant de fois que vous le voulez, il n\'y a pas de contrôle de spam. Le message sera envoyé à :email et devrait arriver sous peu.', - 'send_message' => 'Envoyer le message', - 'send_test_triggered' => 'Le test a été initié. Vérifiez votre boîte de réception (et les logs si nécessaire).', - 'give_admin_careful' => 'Les utilisateurs disposant de droits d\'administration peuvent révoquer les vôtres. Soyez prudent.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Quelques boutons intéressants pour la maintenance de Firefly III', - 'admin_maintenance_clear_cache' => 'Vider le cache', - 'admin_notifications' => 'Notifications administrateur', - 'admin_notifications_expl' => 'Les notifications suivantes peuvent être activées ou désactivées par l\'administrateur. Si vous voulez également obtenir ces messages sur Slack, définissez l\'URL "webhook entrant".', - 'admin_notification_check_user_new_reg' => 'L\'utilisateur reçoit un message de bienvenue après inscription', - 'admin_notification_check_admin_new_reg' => 'Les administrateurs reçoivent une notification à l\'inscription de nouveaux utilisateurs', - 'admin_notification_check_new_version' => 'Une nouvelle version est disponible', - 'admin_notification_check_invite_created' => 'Un utilisateur est invité à rejoindre Firefly III', - 'admin_notification_check_invite_redeemed' => 'Une invitation d\'utilisateur a été utilisée', - 'all_invited_users' => 'Tous les utilisateurs invités', - 'save_notification_settings' => 'Enregistrer les paramètres', - 'notification_settings_saved' => 'Les paramètres de notification ont été enregistrés', + 'invite_is_already_redeemed' => 'L\'invitation à ":address" a déjà été utilisée.', + 'invite_is_deleted' => 'L\'invitation à ":address" a été supprimée.', + 'invite_new_user_title' => 'Inviter un nouvel utilisateur', + 'invite_new_user_text' => 'En tant qu\'administrateur, vous pouvez inviter des utilisateurs à s\'inscrire sur votre administration Firefly III. En partageant avec eux le lien direct, ils seront en mesure de créer un compte. L\'utilisateur invité et son lien d\'invitation apparaîtront dans le tableau ci-dessous. Vous êtes libre de partager le lien d\'invitation avec eux.', + 'invited_user_mail' => 'Adresse e-mail', + 'invite_user' => 'Inviter l’utilisateur', + 'user_is_invited' => 'L\'adresse e-mail ":address" a été invitée à rejoindre Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'Paramètres du système', + 'code_already_used' => 'Le code d\'invitation a été utilisé', + 'user_administration' => 'Gestion des utilisateurs', + 'list_all_users' => 'Tous les utilisateurs', + 'all_users' => 'Tous les utilisateurs', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Options de configuration pour Firefly III', + 'setting_single_user_mode' => 'Mode utilisateur unique', + 'setting_single_user_mode_explain' => 'Par défaut, Firefly III accepte uniquement une (1) inscription : vous. Il s\'agit d\'une mesure de sécurité qui empêche les inconnus d\'utiliser votre instance, à moins que vous ne les y autorisiez. Les inscriptions futures sont bloquées. Lorsque vous désactivez cette case, d\'autres personnes peuvent utiliser votre instance, en supposant qu\'elles puissent l\'atteindre (quand elle est connectée à Internet).', + 'store_configuration' => 'Sauvegarder la configuration', + 'single_user_administration' => "Gestion de l'utilisateur pour\u{a0}:email", + 'edit_user' => "Modifier l'utilisateur\u{a0}:email", + 'hidden_fields_preferences' => 'Vous pouvez activer plus d\'options d\'opérations dans vos paramètres.', + 'user_data_information' => 'Données utilisateur', + 'user_information' => 'Informations utilisateur', + 'total_size' => 'taille totale', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget avec un montant configuré|:count budgets avec un montant configuré', + 'nr_of_rules_in_total_groups' => ':count_rules règle(s) dans :count_groups groupe(s) de règles', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'La configuration a été mise à jour', + 'setting_is_demo_site' => 'Site de démonstration', + 'setting_is_demo_site_explain' => 'Si vous cochez cette case, cette installation se comportera comme si c\'était le site de démonstration, ce qui comporte certaines limitations.', + 'block_code_bounced' => 'Rebond des emails', + 'block_code_expired' => 'Compte démo expiré', + 'no_block_code' => 'Aucune raison pour le blocage ou utilisateur non bloqué', + 'demo_user_export' => 'L\'utilisateur du compte de démonstration ne peut pas exporter de données', + 'block_code_email_changed' => 'L\'utilisateur n\'a pas encore confirmé sa nouvelle adresse e-mail', + 'admin_update_email' => 'Contrairement à la page de profil, l\'utilisateur NE SERA PAS informé que son adresse email a changé !', + 'update_user' => 'Utilisateur mis à jour', + 'updated_user' => 'Les données utilisateur ont bien été modifiées.', + 'delete_user' => 'Supprimer l\'utilisateur :email', + 'user_deleted' => 'L\'utilisateur a été supprimé', + 'send_test_email' => 'Envoyer un message de test', + 'send_test_email_text' => 'Pour vérifier que votre installation est capable d\'envoyer des emails ou de poster des messages Slack, utilisez ce bouton. Vous ne verrez pas d\'erreur ici (s\'il y en a), elles seront enregistrées dans les logs. Utilisez ce bouton autant de fois que vous le voulez, il n\'y a pas de contrôle de spam. Le message sera envoyé à :email et devrait arriver sous peu.', + 'send_message' => 'Envoyer le message', + 'send_test_triggered' => 'Le test a été initié. Vérifiez votre boîte de réception (et les logs si nécessaire).', + 'give_admin_careful' => 'Les utilisateurs disposant de droits d\'administration peuvent révoquer les vôtres. Soyez prudent.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Quelques boutons intéressants pour la maintenance de Firefly III', + 'admin_maintenance_clear_cache' => 'Vider le cache', + 'admin_notifications' => 'Notifications administrateur', + 'admin_notifications_expl' => 'Les notifications suivantes peuvent être activées ou désactivées par l\'administrateur. Si vous voulez également obtenir ces messages sur Slack, définissez l\'URL "webhook entrant".', + 'admin_notification_check_user_new_reg' => 'L\'utilisateur reçoit un message de bienvenue après inscription', + 'admin_notification_check_admin_new_reg' => 'Les administrateurs reçoivent une notification à l\'inscription de nouveaux utilisateurs', + 'admin_notification_check_new_version' => 'Une nouvelle version est disponible', + 'admin_notification_check_invite_created' => 'Un utilisateur est invité à rejoindre Firefly III', + 'admin_notification_check_invite_redeemed' => 'Une invitation d\'utilisateur a été utilisée', + 'all_invited_users' => 'Tous les utilisateurs invités', + 'save_notification_settings' => 'Enregistrer les paramètres', + 'notification_settings_saved' => 'Les paramètres de notification ont été enregistrés', - 'split_transaction_title' => 'Description de l\'opération séparée', - 'split_transaction_title_help' => 'Si vous créez une opération séparée, il doit y avoir une description globale pour chaque fraction de l\'opération.', - 'split_title_help' => 'Si vous créez une opération séparée, il doit y avoir une description globale pour chaque fraction de l\'opération.', - 'you_create_transfer' => 'Vous saisissez un transfert.', - 'you_create_withdrawal' => 'Vous saisissez une dépense.', - 'you_create_deposit' => 'Vous saisissez un dépôt.', + 'split_transaction_title' => 'Description de l\'opération séparée', + 'split_transaction_title_help' => 'Si vous créez une opération séparée, il doit y avoir une description globale pour chaque fraction de l\'opération.', + 'split_title_help' => 'Si vous créez une opération séparée, il doit y avoir une description globale pour chaque fraction de l\'opération.', + 'you_create_transfer' => 'Vous saisissez un transfert.', + 'you_create_withdrawal' => 'Vous saisissez une dépense.', + 'you_create_deposit' => 'Vous saisissez un dépôt.', // links - 'journal_link_configuration' => 'Configuration des liens d\'opération', - 'create_new_link_type' => 'Créer un nouveau type de lien', - 'store_new_link_type' => 'Enregistrer un nouveau type de lien', - 'update_link_type' => 'Mettre à jour le type de lien', - 'edit_link_type' => 'Modifier le type de lien ":name"', - 'updated_link_type' => 'Type de lien mis à jour ":name"', - 'delete_link_type' => 'Supprimer le type de lien ":name"', - 'deleted_link_type' => 'Type de lien supprimé ":name"', - 'stored_new_link_type' => 'Enregistrer le nouveau type de lien ":name"', - 'cannot_edit_link_type' => 'Impossible d\'éditer le type de lien ":name"', - 'link_type_help_name' => 'Par exemple "Duplique"', - 'link_type_help_inward' => 'Par exemple "duplique"', - 'link_type_help_outward' => 'Par exemple "est dupliqué par"', - 'save_connections_by_moving' => 'Enregistrer le lien entre ces opérations en les déplaçant vers un autre type de lien :', - 'do_not_save_connection' => '(ne pas enregistrer la connexion)', - 'link_transaction' => 'Lier l\'opération', - 'link_to_other_transaction' => 'Lier cette opération à une autre opération', - 'select_transaction_to_link' => 'Sélectionnez une autre opération à laquelle lier cette opération. Les liens sont actuellement inutilisés dans Firefly III (ils sont juste montrés), mais je compte changer cela dans le futur. Utilisez le champ de recherche pour sélectionner une opération soit par titre ou par ID. Si vous voulez ajouter des types de liens personnalisés, consultez la section administration.', - 'this_transaction' => 'Cette opération', - 'transaction' => 'Opération', - 'comments' => 'Commentaires', - 'link_notes' => 'Toutes les notes que vous souhaitez enregistrer avec le lien.', - 'invalid_link_selection' => 'Impossible de lier ces opérations', - 'selected_transaction' => 'Opération sélectionnée', - 'journals_linked' => 'Ces opérations sont liées.', - 'journals_error_linked' => 'Ces opérations sont déjà liées.', - 'journals_link_to_self' => 'Vous ne pouvez pas lier une opération à elle-même', - 'journal_links' => 'Liens d\'opération', - 'this_withdrawal' => 'Cette dépense', - 'this_deposit' => 'Ce dépôt', - 'this_transfer' => 'Ce transfert', - 'overview_for_link' => 'Aperçu pour le type de lien ":name"', - 'source_transaction' => 'Source de l\'opération', - 'link_description' => 'Description du lien', - 'destination_transaction' => 'Destination de l\'opération', - 'delete_journal_link' => 'Supprimez le lien entre :source et :destination', - 'deleted_link' => 'Lien supprimé', + 'journal_link_configuration' => 'Configuration des liens d\'opération', + 'create_new_link_type' => 'Créer un nouveau type de lien', + 'store_new_link_type' => 'Enregistrer un nouveau type de lien', + 'update_link_type' => 'Mettre à jour le type de lien', + 'edit_link_type' => 'Modifier le type de lien ":name"', + 'updated_link_type' => 'Type de lien mis à jour ":name"', + 'delete_link_type' => 'Supprimer le type de lien ":name"', + 'deleted_link_type' => 'Type de lien supprimé ":name"', + 'stored_new_link_type' => 'Enregistrer le nouveau type de lien ":name"', + 'cannot_edit_link_type' => 'Impossible d\'éditer le type de lien ":name"', + 'link_type_help_name' => 'Par exemple "Duplique"', + 'link_type_help_inward' => 'Par exemple "duplique"', + 'link_type_help_outward' => 'Par exemple "est dupliqué par"', + 'save_connections_by_moving' => 'Enregistrer le lien entre ces opérations en les déplaçant vers un autre type de lien :', + 'do_not_save_connection' => '(ne pas enregistrer la connexion)', + 'link_transaction' => 'Lier l\'opération', + 'link_to_other_transaction' => 'Lier cette opération à une autre opération', + 'select_transaction_to_link' => 'Sélectionnez une autre opération à laquelle lier cette opération. Les liens sont actuellement inutilisés dans Firefly III (ils sont juste montrés), mais je compte changer cela dans le futur. Utilisez le champ de recherche pour sélectionner une opération soit par titre ou par ID. Si vous voulez ajouter des types de liens personnalisés, consultez la section administration.', + 'this_transaction' => 'Cette opération', + 'transaction' => 'Opération', + 'comments' => 'Commentaires', + 'link_notes' => 'Toutes les notes que vous souhaitez enregistrer avec le lien.', + 'invalid_link_selection' => 'Impossible de lier ces opérations', + 'selected_transaction' => 'Opération sélectionnée', + 'journals_linked' => 'Ces opérations sont liées.', + 'journals_error_linked' => 'Ces opérations sont déjà liées.', + 'journals_link_to_self' => 'Vous ne pouvez pas lier une opération à elle-même', + 'journal_links' => 'Liens d\'opération', + 'this_withdrawal' => 'Cette dépense', + 'this_deposit' => 'Ce dépôt', + 'this_transfer' => 'Ce transfert', + 'overview_for_link' => 'Aperçu pour le type de lien ":name"', + 'source_transaction' => 'Source de l\'opération', + 'link_description' => 'Description du lien', + 'destination_transaction' => 'Destination de l\'opération', + 'delete_journal_link' => 'Supprimez le lien entre :source et :destination', + 'deleted_link' => 'Lien supprimé', // link translations: - 'Paid_name' => 'Payé', - 'Refund_name' => 'Remboursement', - 'Reimbursement_name' => 'Remboursement', - 'Related_name' => 'Associé', - 'relates to_inward' => 'se rapporte à', - 'is (partially) refunded by_inward' => 'est (partiellement) remboursé par', - 'is (partially) paid for by_inward' => 'est (partiellement) payé par', - 'is (partially) reimbursed by_inward' => 'est (partiellement) remboursé par', - 'inward_transaction' => 'Opération entrante', - 'outward_transaction' => 'Opération sortante', - 'relates to_outward' => 'se rapporte à', - '(partially) refunds_outward' => 'rembourse (partiellement)', - '(partially) pays for_outward' => 'paye (partiellement) pour', - '(partially) reimburses_outward' => 'rembourse (partiellement)', - 'is (partially) refunded by' => 'est (partiellement) remboursé par', - 'is (partially) paid for by' => 'est (partiellement) payé par', - 'is (partially) reimbursed by' => 'est (partiellement) remboursé par', - 'relates to' => 'se rapporte à', - '(partially) refunds' => 'rembourse (partiellement)', - '(partially) pays for' => 'paye (partiellement) pour', - '(partially) reimburses' => 'rembourse (partiellement)', + 'Paid_name' => 'Payé', + 'Refund_name' => 'Remboursement', + 'Reimbursement_name' => 'Remboursement', + 'Related_name' => 'Associé', + 'relates to_inward' => 'se rapporte à', + 'is (partially) refunded by_inward' => 'est (partiellement) remboursé par', + 'is (partially) paid for by_inward' => 'est (partiellement) payé par', + 'is (partially) reimbursed by_inward' => 'est (partiellement) remboursé par', + 'inward_transaction' => 'Opération entrante', + 'outward_transaction' => 'Opération sortante', + 'relates to_outward' => 'se rapporte à', + '(partially) refunds_outward' => 'rembourse (partiellement)', + '(partially) pays for_outward' => 'paye (partiellement) pour', + '(partially) reimburses_outward' => 'rembourse (partiellement)', + 'is (partially) refunded by' => 'est (partiellement) remboursé par', + 'is (partially) paid for by' => 'est (partiellement) payé par', + 'is (partially) reimbursed by' => 'est (partiellement) remboursé par', + 'relates to' => 'se rapporte à', + '(partially) refunds' => 'rembourse (partiellement)', + '(partially) pays for' => 'paye (partiellement) pour', + '(partially) reimburses' => 'rembourse (partiellement)', // split a transaction: - 'splits' => 'Séparations', - 'add_another_split' => 'Ajouter une autre fraction', - 'cannot_edit_opening_balance' => 'Vous ne pouvez pas modifier le solde d\'ouverture d\'un compte.', - 'no_edit_multiple_left' => 'Vous n\'avez sélectionné aucune opération valide à éditer.', - 'breadcrumb_convert_group' => 'Convertir l\'opération', - 'convert_invalid_source' => 'La source est invalide pour l\'opération n°%d.', - 'convert_invalid_destination' => 'Le compte de destination est invalide pour l\'opération n°%d.', - 'create_another' => 'Après enregistrement, revenir ici pour en créer un nouveau.', - 'after_update_create_another' => 'Après la mise à jour, revenir ici pour continuer l\'édition.', - 'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.', - 'reset_after' => 'Réinitialiser le formulaire après soumission', - 'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous.', - 'errors_submission_v2' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous : {{errorMessage}}', - 'transaction_expand_split' => 'Développer la séparation', - 'transaction_remove_split' => 'Supprimer la division', - 'transaction_collapse_split' => 'Réduire la séparation', + 'splits' => 'Séparations', + 'add_another_split' => 'Ajouter une autre fraction', + 'cannot_edit_opening_balance' => 'Vous ne pouvez pas modifier le solde d\'ouverture d\'un compte.', + 'no_edit_multiple_left' => 'Vous n\'avez sélectionné aucune opération valide à éditer.', + 'breadcrumb_convert_group' => 'Convertir l\'opération', + 'convert_invalid_source' => 'La source est invalide pour l\'opération n°%d.', + 'convert_invalid_destination' => 'Le compte de destination est invalide pour l\'opération n°%d.', + 'create_another' => 'Après enregistrement, revenir ici pour en créer un nouveau.', + 'after_update_create_another' => 'Après la mise à jour, revenir ici pour continuer l\'édition.', + 'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.', + 'reset_after' => 'Réinitialiser le formulaire après soumission', + 'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous.', + 'errors_submission_v2' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs ci-dessous : {{errorMessage}}', + 'transaction_expand_split' => 'Développer la séparation', + 'transaction_remove_split' => 'Supprimer la division', + 'transaction_collapse_split' => 'Réduire la séparation', // object groups - 'default_group_title_name' => '(Sans groupement)', - 'default_group_title_name_plain' => 'non groupé', + 'default_group_title_name' => '(Sans groupement)', + 'default_group_title_name_plain' => 'non groupé', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => "Nous allons créer un compte d’actif\u{a0}!", - 'no_accounts_intro_asset' => 'Vous n\'avez pas encore de compte d\'actif. Les comptes d\'actifs sont vos comptes principaux : votre compte courant, votre compte d\'épargne, votre compte partagé ou même votre carte de crédit.', - 'no_accounts_imperative_asset' => 'Pour commencer à utiliser Firefly III, vous devez créer au moins un compte d\'actif. Faisons-le maintenant :', - 'no_accounts_create_asset' => 'Créer un compte d\'actif', - 'no_accounts_title_expense' => "Nous allons créer un compte de dépenses\u{a0}!", - 'no_accounts_intro_expense' => 'Vous n\'avez pas encore de compte de dépenses. Les comptes de dépenses sont les endroits où vous dépensez, comme les magasins et les supermarchés.', - 'no_accounts_imperative_expense' => 'Les comptes de dépenses sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', - 'no_accounts_create_expense' => 'Créer un compte de dépenses', - 'no_accounts_title_revenue' => 'Nous allons créer un compte de revenus !', - 'no_accounts_intro_revenue' => 'Vous n\'avez pas encore de compte de revenus. Les comptes de revenus sont les endroits où vous recevez de l\'argent, comme votre employeur.', - 'no_accounts_imperative_revenue' => 'Les comptes de revenus sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', - 'no_accounts_create_revenue' => 'Créer un compte de revenus', - 'no_accounts_title_liabilities' => "Nous allons créer un passif\u{a0}!", - 'no_accounts_intro_liabilities' => 'Vous n’avez encore aucun passif. Les passifs sont des comptes qui inscrivent vos emprunts et autres dettes.', - 'no_accounts_imperative_liabilities' => 'Vous n’êtes pas obligé d\'utiliser cette fonctionnalité, mais elle peut être utile si vous souhaitez garder une trace de ces éléments.', - 'no_accounts_create_liabilities' => 'Créer un passif', - 'no_budgets_title_default' => 'Nous allons créer un budget', - 'no_rules_title_default' => 'Nous allons créer une règle', - 'no_budgets_intro_default' => 'Vous n\'avez pas encore de budget. Les budgets sont utilisés pour organiser vos dépenses en groupes logiques, ce que vous permet d\'établir des seuils pour limiter ces dépenses.', - 'no_rules_intro_default' => 'Vous n\'avez pas encore de règles. Les règles sont des automatisations puissantes qui peuvent gérer les opérations pour vous.', - 'no_rules_imperative_default' => 'Les règles peuvent être très utiles lorsque vous gérez des opérations. Créons-en une maintenant :', - 'no_budgets_imperative_default' => "Les budgets sont les outils de base de la gestion financière. Nous allons en créer un maintenant\u{a0}:", - 'no_budgets_create_default' => 'Créer un budget', - 'no_rules_create_default' => 'Créer une règle', - 'no_categories_title_default' => "Nous allons créer une catégorie\u{a0}!", - 'no_categories_intro_default' => 'Vous n\'avez pas encore de catégories. Les catégories sont utilisées pour affiner vos opérations et les étiqueter avec leur catégorie désignée.', - 'no_categories_imperative_default' => 'Les catégories sont créées automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement. Nous allons en créer une maintenant :', - 'no_categories_create_default' => 'Créer une catégorie', - 'no_tags_title_default' => "Nous allons créer un tag\u{a0}!", - 'no_tags_intro_default' => 'Vous n\'avez pas encore de tags. Les tags sont utilisés pour affiner vos opérations en les associant avec des mots-clés spécifiques.', - 'no_tags_imperative_default' => "Les tags sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement. Nous allons en créer un maintenant\u{a0}:", - 'no_tags_create_default' => 'Créer un tag', - 'no_transactions_title_withdrawal' => "Nous allons créer une dépense\u{a0}!", - 'no_transactions_intro_withdrawal' => 'Vous n\'avez pas encore de dépenses. Vous devriez créer des dépenses pour commencer à gérer vos finances.', - 'no_transactions_imperative_withdrawal' => "Avez-vous dépensé de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", - 'no_transactions_create_withdrawal' => 'Créer une dépense', - 'no_transactions_title_deposit' => "Nous allons créer un revenu\u{a0}!", - 'no_transactions_intro_deposit' => 'Vous n\'avez pas encore enregistré de revenus. Vous devriez créer des entrées de revenus pour commencer à gérer vos finances.', - 'no_transactions_imperative_deposit' => "Est-ce que vous avez reçu de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", - 'no_transactions_create_deposit' => 'Créer un dépôt', - 'no_transactions_title_transfers' => "Nous allons créer un transfert\u{a0}!", - 'no_transactions_intro_transfers' => 'Vous n\'avez pas encore de transferts. Lorsque vous transférez de l\'argent entre les comptes d\'actifs, c\'est enregistré comme un transfert.', - 'no_transactions_imperative_transfers' => "Avez vous déplacé de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", - 'no_transactions_create_transfers' => 'Créer un transfert', - 'no_piggies_title_default' => "Nous allons créer une tirelire\u{a0}!", - 'no_piggies_intro_default' => 'Vous n\'avez encore pas de tirelire. Vous pouvez créer des tirelires pour diviser vos économies et garder une trace de ce que vous économisez.', - 'no_piggies_imperative_default' => 'Avez-vous des choses pour lesquelles vous économisez de l\'argent ? Créer une tirelire et suivez-là :', - 'no_piggies_create_default' => 'Créer une nouvelle tirelire', - 'no_bills_title_default' => "Nous allons créer une facture\u{a0}!", - 'no_bills_intro_default' => 'Vous n\'avez pas encore de factures. Vous pouvez créer des factures pour suivre les dépenses ordinaires, comme votre loyer ou l\'assurance.', - 'no_bills_imperative_default' => 'Avez-vous des factures régulières ? Créez une facture et suivez vos paiements :', - 'no_bills_create_default' => 'Créer une facture', + 'no_accounts_title_asset' => "Nous allons créer un compte d’actif\u{a0}!", + 'no_accounts_intro_asset' => 'Vous n\'avez pas encore de compte d\'actif. Les comptes d\'actifs sont vos comptes principaux : votre compte courant, votre compte d\'épargne, votre compte partagé ou même votre carte de crédit.', + 'no_accounts_imperative_asset' => 'Pour commencer à utiliser Firefly III, vous devez créer au moins un compte d\'actif. Faisons-le maintenant :', + 'no_accounts_create_asset' => 'Créer un compte d\'actif', + 'no_accounts_title_expense' => "Nous allons créer un compte de dépenses\u{a0}!", + 'no_accounts_intro_expense' => 'Vous n\'avez pas encore de compte de dépenses. Les comptes de dépenses sont les endroits où vous dépensez, comme les magasins et les supermarchés.', + 'no_accounts_imperative_expense' => 'Les comptes de dépenses sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', + 'no_accounts_create_expense' => 'Créer un compte de dépenses', + 'no_accounts_title_revenue' => 'Nous allons créer un compte de revenus !', + 'no_accounts_intro_revenue' => 'Vous n\'avez pas encore de compte de revenus. Les comptes de revenus sont les endroits où vous recevez de l\'argent, comme votre employeur.', + 'no_accounts_imperative_revenue' => 'Les comptes de revenus sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', + 'no_accounts_create_revenue' => 'Créer un compte de revenus', + 'no_accounts_title_liabilities' => "Nous allons créer un passif\u{a0}!", + 'no_accounts_intro_liabilities' => 'Vous n’avez encore aucun passif. Les passifs sont des comptes qui inscrivent vos emprunts et autres dettes.', + 'no_accounts_imperative_liabilities' => 'Vous n’êtes pas obligé d\'utiliser cette fonctionnalité, mais elle peut être utile si vous souhaitez garder une trace de ces éléments.', + 'no_accounts_create_liabilities' => 'Créer un passif', + 'no_budgets_title_default' => 'Nous allons créer un budget', + 'no_rules_title_default' => 'Nous allons créer une règle', + 'no_budgets_intro_default' => 'Vous n\'avez pas encore de budget. Les budgets sont utilisés pour organiser vos dépenses en groupes logiques, ce que vous permet d\'établir des seuils pour limiter ces dépenses.', + 'no_rules_intro_default' => 'Vous n\'avez pas encore de règles. Les règles sont des automatisations puissantes qui peuvent gérer les opérations pour vous.', + 'no_rules_imperative_default' => 'Les règles peuvent être très utiles lorsque vous gérez des opérations. Créons-en une maintenant :', + 'no_budgets_imperative_default' => "Les budgets sont les outils de base de la gestion financière. Nous allons en créer un maintenant\u{a0}:", + 'no_budgets_create_default' => 'Créer un budget', + 'no_rules_create_default' => 'Créer une règle', + 'no_categories_title_default' => "Nous allons créer une catégorie\u{a0}!", + 'no_categories_intro_default' => 'Vous n\'avez pas encore de catégories. Les catégories sont utilisées pour affiner vos opérations et les étiqueter avec leur catégorie désignée.', + 'no_categories_imperative_default' => 'Les catégories sont créées automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement. Nous allons en créer une maintenant :', + 'no_categories_create_default' => 'Créer une catégorie', + 'no_tags_title_default' => "Nous allons créer un tag\u{a0}!", + 'no_tags_intro_default' => 'Vous n\'avez pas encore de tags. Les tags sont utilisés pour affiner vos opérations en les associant avec des mots-clés spécifiques.', + 'no_tags_imperative_default' => "Les tags sont créés automatiquement lorsque vous créez des opérations, mais vous pouvez en créer manuellement. Nous allons en créer un maintenant\u{a0}:", + 'no_tags_create_default' => 'Créer un tag', + 'no_transactions_title_withdrawal' => "Nous allons créer une dépense\u{a0}!", + 'no_transactions_intro_withdrawal' => 'Vous n\'avez pas encore de dépenses. Vous devriez créer des dépenses pour commencer à gérer vos finances.', + 'no_transactions_imperative_withdrawal' => "Avez-vous dépensé de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", + 'no_transactions_create_withdrawal' => 'Créer une dépense', + 'no_transactions_title_deposit' => "Nous allons créer un revenu\u{a0}!", + 'no_transactions_intro_deposit' => 'Vous n\'avez pas encore enregistré de revenus. Vous devriez créer des entrées de revenus pour commencer à gérer vos finances.', + 'no_transactions_imperative_deposit' => "Est-ce que vous avez reçu de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", + 'no_transactions_create_deposit' => 'Créer un dépôt', + 'no_transactions_title_transfers' => "Nous allons créer un transfert\u{a0}!", + 'no_transactions_intro_transfers' => 'Vous n\'avez pas encore de transferts. Lorsque vous transférez de l\'argent entre les comptes d\'actifs, c\'est enregistré comme un transfert.', + 'no_transactions_imperative_transfers' => "Avez vous déplacé de l’argent\u{a0}? Alors vous devriez l’écrire\u{a0}:", + 'no_transactions_create_transfers' => 'Créer un transfert', + 'no_piggies_title_default' => "Nous allons créer une tirelire\u{a0}!", + 'no_piggies_intro_default' => 'Vous n\'avez encore pas de tirelire. Vous pouvez créer des tirelires pour diviser vos économies et garder une trace de ce que vous économisez.', + 'no_piggies_imperative_default' => 'Avez-vous des choses pour lesquelles vous économisez de l\'argent ? Créer une tirelire et suivez-là :', + 'no_piggies_create_default' => 'Créer une nouvelle tirelire', + 'no_bills_title_default' => "Nous allons créer une facture\u{a0}!", + 'no_bills_intro_default' => 'Vous n\'avez pas encore de factures. Vous pouvez créer des factures pour suivre les dépenses ordinaires, comme votre loyer ou l\'assurance.', + 'no_bills_imperative_default' => 'Avez-vous des factures régulières ? Créez une facture et suivez vos paiements :', + 'no_bills_create_default' => 'Créer une facture', // recurring transactions - 'create_right_now' => 'Créer maintenant', - 'no_new_transaction_in_recurrence' => 'Aucune nouvelle opération n\'a été créée. Peut-être a-t-elle déjà été déclenchée pour cette date ?', - 'recurrences' => 'Opérations périodiques', - 'repeat_until_in_past' => 'Cette opération récurrente a cessé de se répéter le :date.', - 'recurring_calendar_view' => 'Calendrier', - 'no_recurring_title_default' => "Créons une opération périodique\u{a0}!", - 'no_recurring_intro_default' => 'Vous n’avez pas encore d\'opérations périodiques. Vous pouvez en utiliser pour que Firefly III crée automatiquement des opérations pour vous.', - 'no_recurring_imperative_default' => 'Il s’agit d’une fonctionnalité plutôt poussée, mais elle peut être très utile. Assurez-vous de lire la documentation ( icône ? en haut à droite) avant de continuer.', - 'no_recurring_create_default' => 'Créer une opération périodique', - 'make_new_recurring' => 'Créer une opération périodique', - 'recurring_daily' => 'Tous les jours', - 'recurring_weekly' => 'Chaque semaine le :weekday', - 'recurring_weekly_skip' => 'Chaque :skip(ière/ième) semaine le :weekday', - 'recurring_monthly' => 'Le :dayOfMonth de chaque mois', - 'recurring_monthly_skip' => 'Chaque :skip(ier/ième) mois le :dayOfMonth(ier,ième) jour', - 'recurring_ndom' => 'Le :dayOfMonth(er/ème) :weekday de chaque mois', - 'recurring_yearly' => 'Chaque année le :date', - 'overview_for_recurrence' => 'Aperçu de l’opération périodique ":title"', - 'warning_duplicates_repetitions' => 'Dans de rares cas, des dates apparaissent en double dans cette liste. Cela peut arriver lorsque plusieurs répétitions se superposent. Firefly III générera toujours une seule opération par jour.', - 'created_transactions' => 'Opérations associées', - 'expected_withdrawals' => 'Dépenses attendues', - 'expected_deposits' => 'Dépôts attendus', - 'expected_transfers' => 'Transferts attendus', - 'created_withdrawals' => 'Dépenses créées', - 'created_deposits' => 'Dépôts créés', - 'created_transfers' => 'Transferts créés', - 'recurring_info' => 'Opération périodique :count / :total', - 'created_from_recurrence' => 'Créé à partir de l\'opération périodique ":title" (#:id)', - 'recurring_never_cron' => 'Il semble que la tâche cron qui supporte les opérations périodiques n\'a jamais été exécutée. Ceci est normal si vous venez juste d\'installer Firefly III, mais pensez à la configurer dès que possible. Veuillez consulter la page d\'aide associée en cliquant sur l\'icône (?) en haut à droite de la page.', - 'recurring_cron_long_ago' => 'Il semble que la dernière exécution de la tâche cron supportant les opérations périodiques date de plus de 36 heures. Êtes-vous surs qu\'elle est configurée correctement ? Veuillez consulter la page d\'aide associée en cliquant sur l\'icône (?) en haut à droite de la page.', + 'create_right_now' => 'Créer maintenant', + 'no_new_transaction_in_recurrence' => 'Aucune nouvelle opération n\'a été créée. Peut-être a-t-elle déjà été déclenchée pour cette date ?', + 'recurrences' => 'Opérations périodiques', + 'repeat_until_in_past' => 'Cette opération récurrente a cessé de se répéter le :date.', + 'recurring_calendar_view' => 'Calendrier', + 'no_recurring_title_default' => "Créons une opération périodique\u{a0}!", + 'no_recurring_intro_default' => 'Vous n’avez pas encore d\'opérations périodiques. Vous pouvez en utiliser pour que Firefly III crée automatiquement des opérations pour vous.', + 'no_recurring_imperative_default' => 'Il s’agit d’une fonctionnalité plutôt poussée, mais elle peut être très utile. Assurez-vous de lire la documentation ( icône ? en haut à droite) avant de continuer.', + 'no_recurring_create_default' => 'Créer une opération périodique', + 'make_new_recurring' => 'Créer une opération périodique', + 'recurring_daily' => 'Tous les jours', + 'recurring_weekly' => 'Chaque semaine le :weekday', + 'recurring_weekly_skip' => 'Chaque :skip(ière/ième) semaine le :weekday', + 'recurring_monthly' => 'Le :dayOfMonth de chaque mois', + 'recurring_monthly_skip' => 'Chaque :skip(ier/ième) mois le :dayOfMonth(ier,ième) jour', + 'recurring_ndom' => 'Le :dayOfMonth(er/ème) :weekday de chaque mois', + 'recurring_yearly' => 'Chaque année le :date', + 'overview_for_recurrence' => 'Aperçu de l’opération périodique ":title"', + 'warning_duplicates_repetitions' => 'Dans de rares cas, des dates apparaissent en double dans cette liste. Cela peut arriver lorsque plusieurs répétitions se superposent. Firefly III générera toujours une seule opération par jour.', + 'created_transactions' => 'Opérations associées', + 'expected_withdrawals' => 'Dépenses attendues', + 'expected_deposits' => 'Dépôts attendus', + 'expected_transfers' => 'Transferts attendus', + 'created_withdrawals' => 'Dépenses créées', + 'created_deposits' => 'Dépôts créés', + 'created_transfers' => 'Transferts créés', + 'recurring_info' => 'Opération périodique :count / :total', + 'created_from_recurrence' => 'Créé à partir de l\'opération périodique ":title" (#:id)', + 'recurring_never_cron' => 'Il semble que la tâche cron qui supporte les opérations périodiques n\'a jamais été exécutée. Ceci est normal si vous venez juste d\'installer Firefly III, mais pensez à la configurer dès que possible. Veuillez consulter la page d\'aide associée en cliquant sur l\'icône (?) en haut à droite de la page.', + 'recurring_cron_long_ago' => 'Il semble que la dernière exécution de la tâche cron supportant les opérations périodiques date de plus de 36 heures. Êtes-vous surs qu\'elle est configurée correctement ? Veuillez consulter la page d\'aide associée en cliquant sur l\'icône (?) en haut à droite de la page.', - 'create_new_recurrence' => 'Créer une nouvelle opération périodique', - 'help_first_date' => 'Indiquer la première occurrence attendue. Doit être dans le futur.', - 'help_first_date_no_past' => 'Indiquer la première occurrence attendue. Firefly III ne créera pas d\'opérations dans le passé.', - 'no_currency' => '(pas de devise)', - 'mandatory_for_recurring' => 'Informations de répétition obligatoires', - 'mandatory_for_transaction' => 'Informations d\'opération obligatoires', - 'optional_for_recurring' => 'Informations de répétition optionnelles', - 'optional_for_transaction' => 'Informations d\'opération optionnelles', - 'change_date_other_options' => 'Modifiez la date de début pour voir plus d\'options.', - 'mandatory_fields_for_tranaction' => 'Les valeurs ci-dessous seront enregistrées dans les opérations créées', - 'click_for_calendar' => 'Cliquez ici pour voir les répétitions des opérations sur un calendrier.', - 'repeat_forever' => 'Répéter pour toujours', - 'repeat_until_date' => 'Répéter jusqu\'à une date', - 'repeat_times' => 'Répéter un nombre de fois', - 'recurring_skips_one' => 'Tous les', - 'recurring_skips_more' => 'Omettre :count répétitions', - 'store_new_recurrence' => 'Enregistrer l\'opération périodique', - 'stored_new_recurrence' => 'Opération périodique ":title" enregistrée avec succès.', - 'edit_recurrence' => 'Modifier l\'opération périodique ":title"', - 'recurring_repeats_until' => 'Se répète jusqu\'à :date', - 'recurring_repeats_forever' => 'Se répète pour toujours', - 'recurring_repeats_x_times' => 'Répéter :count fois', - 'update_recurrence' => 'Mettre à jour l\'opération périodique', - 'updated_recurrence' => 'Opération périodique ":title" mise à jour', - 'recurrence_is_inactive' => 'Cette opération périodique n’est pas active et ne génère pas de nouvelles opérations.', - 'delete_recurring' => 'Supprimer l\'opération périodique ":title"', - 'new_recurring_transaction' => 'Nouvelle opération périodique', - 'help_weekend' => "Que doit faire Firefly III lorsque l’opération périodique tombe un samedi ou un dimanche\u{a0}?", - 'do_nothing' => 'Créer l\'opération tout de même', - 'skip_transaction' => 'Ignorer l\'occurrence', - 'jump_to_friday' => 'Créer l\'opération le vendredi précédent', - 'jump_to_monday' => 'Créer l\'opération le lundi suivant', - 'will_jump_friday' => 'Sera créée le vendredi plutôt que les week-ends.', - 'will_jump_monday' => 'Sera créée le lundi plutôt que les week-ends.', - 'except_weekends' => 'Sauf les week-ends', - 'recurrence_deleted' => 'Opération périodique ":title" supprimée', + 'create_new_recurrence' => 'Créer une nouvelle opération périodique', + 'help_first_date' => 'Indiquer la première occurrence attendue. Doit être dans le futur.', + 'help_first_date_no_past' => 'Indiquer la première occurrence attendue. Firefly III ne créera pas d\'opérations dans le passé.', + 'no_currency' => '(pas de devise)', + 'mandatory_for_recurring' => 'Informations de répétition obligatoires', + 'mandatory_for_transaction' => 'Informations d\'opération obligatoires', + 'optional_for_recurring' => 'Informations de répétition optionnelles', + 'optional_for_transaction' => 'Informations d\'opération optionnelles', + 'change_date_other_options' => 'Modifiez la date de début pour voir plus d\'options.', + 'mandatory_fields_for_tranaction' => 'Les valeurs ci-dessous seront enregistrées dans les opérations créées', + 'click_for_calendar' => 'Cliquez ici pour voir les répétitions des opérations sur un calendrier.', + 'repeat_forever' => 'Répéter pour toujours', + 'repeat_until_date' => 'Répéter jusqu\'à une date', + 'repeat_times' => 'Répéter un nombre de fois', + 'recurring_skips_one' => 'Tous les', + 'recurring_skips_more' => 'Omettre :count répétitions', + 'store_new_recurrence' => 'Enregistrer l\'opération périodique', + 'stored_new_recurrence' => 'Opération périodique ":title" enregistrée avec succès.', + 'edit_recurrence' => 'Modifier l\'opération périodique ":title"', + 'recurring_repeats_until' => 'Se répète jusqu\'à :date', + 'recurring_repeats_forever' => 'Se répète pour toujours', + 'recurring_repeats_x_times' => 'Répéter :count fois', + 'update_recurrence' => 'Mettre à jour l\'opération périodique', + 'updated_recurrence' => 'Opération périodique ":title" mise à jour', + 'recurrence_is_inactive' => 'Cette opération périodique n’est pas active et ne génère pas de nouvelles opérations.', + 'delete_recurring' => 'Supprimer l\'opération périodique ":title"', + 'new_recurring_transaction' => 'Nouvelle opération périodique', + 'help_weekend' => "Que doit faire Firefly III lorsque l’opération périodique tombe un samedi ou un dimanche\u{a0}?", + 'do_nothing' => 'Créer l\'opération tout de même', + 'skip_transaction' => 'Ignorer l\'occurrence', + 'jump_to_friday' => 'Créer l\'opération le vendredi précédent', + 'jump_to_monday' => 'Créer l\'opération le lundi suivant', + 'will_jump_friday' => 'Sera créée le vendredi plutôt que les week-ends.', + 'will_jump_monday' => 'Sera créée le lundi plutôt que les week-ends.', + 'except_weekends' => 'Sauf les week-ends', + 'recurrence_deleted' => 'Opération périodique ":title" supprimée', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Solde (:currency)', - 'box_spent_in_currency' => 'Dépensé (:currency)', - 'box_earned_in_currency' => 'Gagné (:currency)', - 'box_budgeted_in_currency' => 'Budgétisé (:currency)', - 'box_bill_paid_in_currency' => 'Factures payées (:currency)', - 'box_bill_unpaid_in_currency' => 'Factures impayées (:currency)', - 'box_left_to_spend_in_currency' => 'Reste à dépenser (:currency)', - 'box_net_worth_in_currency' => 'Avoir net (:currency)', - 'box_spend_per_day' => 'Reste à dépenser par jour: :amount', + 'box_balance_in_currency' => 'Solde (:currency)', + 'box_spent_in_currency' => 'Dépensé (:currency)', + 'box_earned_in_currency' => 'Gagné (:currency)', + 'box_budgeted_in_currency' => 'Budgétisé (:currency)', + 'box_bill_paid_in_currency' => 'Factures payées (:currency)', + 'box_bill_unpaid_in_currency' => 'Factures impayées (:currency)', + 'box_left_to_spend_in_currency' => 'Reste à dépenser (:currency)', + 'box_net_worth_in_currency' => 'Avoir net (:currency)', + 'box_spend_per_day' => 'Reste à dépenser par jour: :amount', // debug page - 'debug_page' => 'Page de débogage', - 'debug_submit_instructions' => 'Si vous rencontrez des problèmes, vous pouvez utiliser les informations contenues dans ce cadre comme informations de débogage. Veuillez copier-coller dans une nouvelle "issue" GitHub (en anglais). Cela générera une belle table qui peut être utilisée pour diagnostiquer rapidement votre problème.', - 'debug_pretty_table' => 'Si vous copiez/collez le cadre ci-dessous dans une "issue" GitHub, cela générera un tableau. Veuillez ne pas entourer ce texte avec des apostrophes ou des guillemets.', - 'debug_additional_data' => 'Vous pouvez également partager le contenu du cadre ci-dessous. Vous pouvez également copier/coller cela dans une "issue" GitHub déjà existante ou nouvellement créée. Cependant, le contenu de ce cadre peut contenir des informations privées telles que les noms de compte, les détails de transaction ou les adresses électroniques.', + 'debug_page' => 'Page de débogage', + 'debug_submit_instructions' => 'Si vous rencontrez des problèmes, vous pouvez utiliser les informations contenues dans ce cadre comme informations de débogage. Veuillez copier-coller dans une nouvelle "issue" GitHub (en anglais). Cela générera une belle table qui peut être utilisée pour diagnostiquer rapidement votre problème.', + 'debug_pretty_table' => 'Si vous copiez/collez le cadre ci-dessous dans une "issue" GitHub, cela générera un tableau. Veuillez ne pas entourer ce texte avec des apostrophes ou des guillemets.', + 'debug_additional_data' => 'Vous pouvez également partager le contenu du cadre ci-dessous. Vous pouvez également copier/coller cela dans une "issue" GitHub déjà existante ou nouvellement créée. Cependant, le contenu de ce cadre peut contenir des informations privées telles que les noms de compte, les détails de transaction ou les adresses électroniques.', // object groups - 'object_groups_menu_bar' => 'Groupes', - 'object_groups_page_title' => 'Groupes', - 'object_groups_breadcrumb' => 'Groupes', - 'object_groups_index' => 'Vue d\'ensemble', - 'object_groups' => 'Groupes', - 'object_groups_empty_explain' => 'Certaines choses dans Firefly III peuvent être divisées en groupes. Les tirelires, par exemple, présentent un champ "Groupe" dans les écrans d\'édition et de création. Lorsque vous définissez ce champ, vous pouvez modifier les noms et l\'ordre des groupes sur cette page. Pour plus d\'informations, consultez les pages d\'aide dans le coin supérieur droit, sous l\'icône (?).', - 'object_group_title' => 'Titre', - 'edit_object_group' => 'Modifier le groupe ":title"', - 'delete_object_group' => 'Supprimer le groupe ":title"', - 'update_object_group' => 'Mettre à jour le groupe', - 'updated_object_group' => 'Groupe ":title" mis à jour avec succès', - 'deleted_object_group' => 'Groupe ":title" supprimé avec succès', - 'object_group' => 'Groupe', + 'object_groups_menu_bar' => 'Groupes', + 'object_groups_page_title' => 'Groupes', + 'object_groups_breadcrumb' => 'Groupes', + 'object_groups_index' => 'Vue d\'ensemble', + 'object_groups' => 'Groupes', + 'object_groups_empty_explain' => 'Certaines choses dans Firefly III peuvent être divisées en groupes. Les tirelires, par exemple, présentent un champ "Groupe" dans les écrans d\'édition et de création. Lorsque vous définissez ce champ, vous pouvez modifier les noms et l\'ordre des groupes sur cette page. Pour plus d\'informations, consultez les pages d\'aide dans le coin supérieur droit, sous l\'icône (?).', + 'object_group_title' => 'Titre', + 'edit_object_group' => 'Modifier le groupe ":title"', + 'delete_object_group' => 'Supprimer le groupe ":title"', + 'update_object_group' => 'Mettre à jour le groupe', + 'updated_object_group' => 'Groupe ":title" mis à jour avec succès', + 'deleted_object_group' => 'Groupe ":title" supprimé avec succès', + 'object_group' => 'Groupe', // other stuff - 'placeholder' => '[Réservé]', + 'placeholder' => '[Réservé]', // audit log entries - 'audit_log_entries' => 'Auditer les entrées du journal', - 'ale_action_log_add' => ':amount ajouté à la tirelire ":name"', - 'ale_action_log_remove' => ':amount retiré de la tirelire ":name"', - 'ale_action_clear_budget' => 'Supprimé du budget', - 'ale_action_update_group_title' => 'Titre du groupe d\'opérations mis à jour', - 'ale_action_update_date' => 'Date de l\'opération mise à jour', - 'ale_action_update_order' => 'Ordre de l\'opération mis à jour', - 'ale_action_clear_category' => 'Supprimé de la catégorie', - 'ale_action_clear_notes' => 'Notes supprimées', - 'ale_action_clear_tag' => 'Tag retiré', - 'ale_action_clear_all_tags' => 'Tous les tags ont été retirés', - 'ale_action_set_bill' => 'Lié à la facture', - 'ale_action_switch_accounts' => 'Comptes source et destination inversés', - 'ale_action_set_budget' => 'Budget défini', - 'ale_action_set_category' => 'Catégorie définie', - 'ale_action_set_source' => 'Compte source défini', - 'ale_action_set_destination' => 'Compte de destination défini', - 'ale_action_update_transaction_type' => 'Type d\'opération modifié', - 'ale_action_update_notes' => 'Notes modifiées', - 'ale_action_update_description' => 'Decription modifiée', - 'ale_action_add_to_piggy' => 'Tirelire', - 'ale_action_remove_from_piggy' => 'Tirelire', - 'ale_action_add_tag' => 'Tag ajouté', - 'ale_action_update_amount' => 'Montant actualisé', + 'audit_log_entries' => 'Auditer les entrées du journal', + 'ale_action_log_add' => ':amount ajouté à la tirelire ":name"', + 'ale_action_log_remove' => ':amount retiré de la tirelire ":name"', + 'ale_action_clear_budget' => 'Supprimé du budget', + 'ale_action_update_group_title' => 'Titre du groupe d\'opérations mis à jour', + 'ale_action_update_date' => 'Date de l\'opération mise à jour', + 'ale_action_update_order' => 'Ordre de l\'opération mis à jour', + 'ale_action_clear_category' => 'Supprimé de la catégorie', + 'ale_action_clear_notes' => 'Notes supprimées', + 'ale_action_clear_tag' => 'Tag retiré', + 'ale_action_clear_all_tags' => 'Tous les tags ont été retirés', + 'ale_action_set_bill' => 'Lié à la facture', + 'ale_action_switch_accounts' => 'Comptes source et destination inversés', + 'ale_action_set_budget' => 'Budget défini', + 'ale_action_set_category' => 'Catégorie définie', + 'ale_action_set_source' => 'Compte source défini', + 'ale_action_set_destination' => 'Compte de destination défini', + 'ale_action_update_transaction_type' => 'Type d\'opération modifié', + 'ale_action_update_notes' => 'Notes modifiées', + 'ale_action_update_description' => 'Decription modifiée', + 'ale_action_add_to_piggy' => 'Tirelire', + 'ale_action_remove_from_piggy' => 'Tirelire', + 'ale_action_add_tag' => 'Tag ajouté', + 'ale_action_update_amount' => 'Montant actualisé', // dashboard - 'enable_auto_convert' => 'Activer la conversion des devises', - 'disable_auto_convert' => 'Désactiver la conversion des devises', + 'enable_auto_convert' => 'Activer la conversion des devises', + 'disable_auto_convert' => 'Désactiver la conversion des devises', ]; /* diff --git a/resources/lang/fr_FR/validation.php b/resources/lang/fr_FR/validation.php index 0419e62aab..238eadf42b 100644 --- a/resources/lang/fr_FR/validation.php +++ b/resources/lang/fr_FR/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Vous n\'avez pas les droits d\'accès corrects pour cette administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/hu_HU/firefly.php b/resources/lang/hu_HU/firefly.php index 662fa520c7..fb11121e46 100644 --- a/resources/lang/hu_HU/firefly.php +++ b/resources/lang/hu_HU/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Bezárás', - 'actions' => 'Műveletek', - 'edit' => 'Szerkesztés', - 'delete' => 'Törlés', - 'split' => 'Felosztás', - 'single_split' => 'Felosztás', - 'clone' => 'Másolás', - 'clone_and_edit' => 'Másol és szerkeszt', - 'confirm_action' => 'Művelet megerősítése', - 'last_seven_days' => 'Utolsó hét nap', - 'last_thirty_days' => 'Elmúlt harminc nap', - 'last_180_days' => 'Az utóbbi 180 nap', - 'month_to_date' => 'Hónap a mai napig', - 'year_to_date' => 'Év elejétől', - 'YTD' => 'Folyó év', - 'welcome_back' => 'Mi a helyzet?', - 'everything' => 'Minden', - 'today' => 'ma', - 'customRange' => 'Egyéni tartomány', - 'date_range' => 'Dátum intervallum', - 'apply' => 'Alkalmaz', - 'select_date' => 'Dátum kiválasztása..', - 'cancel' => 'Mégse', - 'from' => 'Honnan', - 'to' => 'Hova', - 'structure' => 'Struktúra', - 'help_translating' => 'Ez a súgószöveg még nem elérhető az oldal nyelvén. Itt lehet segíteni a fordításban.', - 'showEverything' => 'Összes megjelenítése', - 'never' => 'Soha', - 'no_results_for_empty_search' => 'A keresés üres volt, így nincs találat.', - 'removed_amount' => ':amount eltávolítva', - 'added_amount' => ':amount hozzáadva', - 'asset_account_role_help' => 'A választásoktól függő további lehetőségeket később lehet beállítani.', - 'Opening balance' => 'Nyitó egyenleg', - 'create_new_stuff' => 'Új dolog létrehozása', - 'new_withdrawal' => 'Új költség', - 'create_new_transaction' => 'Új tranzakció létrehozása', - 'sidebar_frontpage_create' => 'Létrehozás', - 'new_transaction' => 'Új tranzakció', - 'no_rules_for_bill' => 'Ehhez a számlához nincsenek szabályok kapcsolva.', - 'go_to_asset_accounts' => 'Eszközszámlák megtekintése', - 'go_to_budgets' => 'Ugrás a költségkeretekhez', - 'go_to_withdrawals' => 'Ugrás a költségekhez', - 'clones_journal_x' => 'Ez a tranzakció ":description" (#:id) klónja', - 'go_to_categories' => 'Ugrás a kategóriákhoz', - 'go_to_bills' => 'Ugrás a számlákhoz', - 'go_to_expense_accounts' => 'Költségszámlák megtekintése', - 'go_to_revenue_accounts' => 'Jövedelemszámlák megtekintése', - 'go_to_piggies' => 'Ugrás a malacperselyekhez', - 'new_deposit' => 'Új bevétel', - 'new_transfer' => 'Új átvezetés', - 'new_transfers' => 'Új átvezetés', - 'new_asset_account' => 'Új eszközszámla', - 'new_expense_account' => 'Új költségszámla', - 'new_revenue_account' => 'Új jövedelemszámla', - 'new_liabilities_account' => 'Új kötelezettség', - 'new_budget' => 'Új költségkeret', - 'new_bill' => 'Új számla', - 'block_account_logout' => 'Ön kijelentkezett. A blokkolt fiókok nem használhatják ezt a webhelyet. Érvényes e-mail címmel regisztrált?', - 'flash_success' => 'Siker!', - 'flash_info' => 'Üzenet', - 'flash_warning' => 'Figyelmeztetés!', - 'flash_error' => 'Hiba!', - 'flash_danger' => 'Vigyázat!', - 'flash_info_multiple' => 'Egy üzenet érkezett | :count üzenet érkezett', - 'flash_error_multiple' => 'Egy hiba történt|:count hiba történt', - 'net_worth' => 'Nettó érték', - 'help_for_this_page' => 'Az oldal súgója', - 'help_for_this_page_body' => 'További információkat találhat erről a lapról a dokumentációban.', - 'two_factor_welcome' => 'Helló!', - 'two_factor_enter_code' => 'A folytatáshoz meg kell adni a kétlépcsős azonosítás kódját. Az alkalmazás létre tudja hozni ezt a kódot.', - 'two_factor_code_here' => 'Kód beírása', - 'two_factor_title' => 'Kétlépcsős hitelesítés', - 'authenticate' => 'Hitelesítés', - 'two_factor_forgot_title' => 'Elvesztett kétlépcsős hitelesítés', - 'two_factor_forgot' => 'Elfelejtett kétlépcsős azonosítás.', - 'two_factor_lost_header' => 'Elvesztett kétlépcsős hitelesítés?', - 'two_factor_lost_intro' => 'Ha a biztonsági kódok is elvesztek, akkor bajban vagy. Ezt nem lehet a webes felületről megjavítani, így két lehetőséged van.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Ellenkező esetben emailt kell küldeni a webhely tulajdonosának a :site_owner címre, és meg kell kérni, hogy állítsa vissza a kétfaktoros hitelesítést.', - 'mfa_backup_code' => 'A biztonsági kód fel lett használva a Firefly III-hoz. Ezt többé nem használhatod fel, így a listáról ez kihúzható.', - 'pref_two_factor_new_backup_codes' => 'Új biztonsági kódok igénylése', - 'pref_two_factor_backup_code_count' => 'Még :count érvényes visszaállítási kódod van.|Még :count érvényes visszaállítási kódod van.', - '2fa_i_have_them' => 'Eltároltam!', - 'warning_much_data' => ':days napi adat betöltése eltarthat egy ideig.', - 'registered' => 'A regisztráció sikeres!', - 'Default asset account' => 'Alapértelmezett eszközszámla', - 'no_budget_pointer' => 'Úgy tűnik, még nincsenek költségkeretek. Költségkereteket a költségkeretek oldalon lehet létrehozni. A költségkeretek segítenek nyomon követni a költségeket.', - 'no_bill_pointer' => 'Úgy tűnik, még nincsenek költségkeretek. Költségkereteket a költségkeretek oldalon lehet létrehozni. A költségkeretek segítenek nyomon követni a költségeket.', - 'Savings account' => 'Megtakarítási számla', - 'Credit card' => 'Hitelkártya', - 'source_accounts' => 'Forrásszámla|Forrásszámlák', - 'destination_accounts' => 'Célszámla|Célszámlák', - 'user_id_is' => 'A felhasználói azonosító :user', - 'field_supports_markdown' => 'Ez a mező támogatja a Markdown használatát.', - 'need_more_help' => 'A Firefly III használatához további segítség kérhető a a Githubon egy hibajegy nyitásával.', - 'reenable_intro_text' => 'A bevezető útmutatót újra lehet engedélyezni.', - 'intro_boxes_after_refresh' => 'A bevezető dobozok újra megjelennek az oldal frissítésekor.', - 'show_all_no_filter' => 'Az összes tranzakció megjelenítése dátum szerinti csoportosítás nélkül.', - 'expenses_by_category' => 'Költségek kategóriák szerint', - 'expenses_by_budget' => 'Költségek költségkeretek szerint', - 'income_by_category' => 'Jövedelem kategória szerint', - 'expenses_by_asset_account' => 'Költségek eszközszámla szerint', - 'expenses_by_expense_account' => 'Költségek költségszámla szerint', - 'cannot_redirect_to_account' => 'A Firefly III nem tud átirányítani a megfelelő oldalra. Elnézést.', - 'sum_of_expenses' => 'A költségek összege', - 'sum_of_income' => 'Jövedelem összege', - 'liabilities' => 'Kötelezettségek', - 'spent_in_specific_budget' => 'Költés ":budget" költségkeretben', - 'spent_in_specific_double' => 'A(z) ":account" fiókon elköltött', - 'earned_in_specific_double' => 'A(z) ":account" fiókon megkeresett', - 'source_account' => 'Forrás számla', - 'source_account_reconciliation' => 'Nem lehet szerkeszteni egy egyeztetett tranzakció forrásszámláját.', - 'destination_account' => 'Célszámla', - 'destination_account_reconciliation' => 'Nem lehet szerkeszteni egy egyeztetett tranzakció célszámláját.', - 'sum_of_expenses_in_budget' => 'Összes költés ":budget" költségkeretben', - 'left_in_budget_limit' => 'A költségvetés szerinti elkölthető összeg', - 'current_period' => 'Jelenlegi időszak', - 'show_the_current_period_and_overview' => 'Az aktuális időszak és az áttekintés megjelenítése', - 'pref_languages_locale' => 'Ahhoz, hogy egy angoltól eltérő nyelv megfelelően működjön, az operációs rendszernek a helyes helyspecifikus információkkal kell rendelkeznie. Ha ezek nincsenek jelen, akkor a pénznem adat, a dátumok és az összegek formázása hibás lehet.', - 'budget_in_period' => '":name" költségkeret összes tranzakciója :start és :end között :currency pénznemben', - 'chart_budget_in_period' => 'Diagram ":name" költségkeret minden tranzakciójáról :start és :end között :currency pénznemben', - 'chart_budget_in_period_only_currency' => 'A költségkeretben előirányzott összeg pénzneme :currency, Így ez a diagram csak azokat a tranzakciókat mutatja amiknek a pénznem :currency.', - 'chart_account_in_period' => 'Diagram ":name" (:balance) bankszámla minden tranzakciójáról :start és :end között', - 'chart_category_in_period' => 'Diagram ":name" kategória minden tranzakciójáról :start és :end között', - 'chart_category_all' => 'Diagram ":name" kategória minden tranzakciójáról', - 'clone_withdrawal' => 'Költség klónozása', - 'clone_deposit' => 'Bevétel klónozása', - 'clone_transfer' => 'Átvezetés klónozása', - 'multi_select_no_selection' => 'Egy sincs kiválasztva', - 'multi_select_select_all' => 'Összes kijelölése', - 'multi_select_n_selected' => 'kijelölt', - 'multi_select_all_selected' => 'Minden kiválasztott', - 'multi_select_filter_placeholder' => 'Keresés..', - 'intro_next_label' => 'Következő', - 'intro_prev_label' => 'Előző', - 'intro_skip_label' => 'Kihagyás', - 'intro_done_label' => 'Kész', - 'between_dates_breadcrumb' => ':start és :end között', - 'all_journals_without_budget' => 'Minden költségkeret nélküli tranzakció', - 'journals_without_budget' => 'Költségkeret nélküli tranzakciók', - 'all_journals_without_category' => 'Minden kategória nélküli tranzakció', - 'journals_without_category' => 'Kategória nélküli tranzakciók', - 'all_journals_for_account' => ':name bankszámla összes tranzakciója', - 'chart_all_journals_for_account' => 'Diagram :name bankszámla minden tranzakciójáról', - 'journals_in_period_for_account' => '":name" bankszámla összes tranzakciója :start és :end között', - 'journals_in_period_for_account_js' => 'Minden tranzakció a(z) {title} számlán {start} és {end} között', - 'transferred' => 'Átvezetett', - 'all_withdrawal' => 'Minden költség', - 'all_transactions' => 'Minden tranzakció', - 'title_withdrawal_between' => 'Minden költség :start és :end között', - 'all_deposit' => 'Összes jövedelem', - 'title_deposit_between' => 'Összes jövedelem :start és :end között', - 'all_transfers' => 'Minden átvezetés', - 'title_transfers_between' => 'Minden átvezetés :start és :end között', - 'all_transfer' => 'Minden átvezetés', - 'all_journals_for_tag' => '":tag" címke összes tranzakciója', - 'title_transfer_between' => 'Minden átvezetés :start és :end között', - 'all_journals_for_category' => ':name kategória összes tranzakciója', - 'all_journals_for_budget' => ':name költségkeret összes tranzakciója', - 'chart_all_journals_for_budget' => 'Diagram :name költségkeret minden tranzakciójáról', - 'journals_in_period_for_category' => ':name kategória összes tranzakciója :start és :end között', - 'journals_in_period_for_tag' => ':tag címke összes tranzakciója :start és :end között', - 'not_available_demo_user' => 'A használni kívánt szolgáltatás nem érhető el a bemutató felhasználók számára.', - 'exchange_rate_instructions' => 'A "@name" vagyonszámla csak a @native_currency tranzakciókat fogadja el. Ha inkább @foreign_currency pénznemet szeretne használni, győződjön meg róla, hogy a @native_currency összege is ismert:', - 'transfer_exchange_rate_instructions' => 'A "@source_name" forrás vagyonszámla csak a @source_currency tranzakciókat fogadja el. A "@dest_name" cél vagyonszámla csak a @dest_currency tranzakciókat fogadja el. Mindkét pénznemben helyesen kell megadnia az átutalt összeget.', - 'transaction_data' => 'Tranzakciós adatok', - 'invalid_server_configuration' => 'Érvénytelen kiszolgálóbeállítás', - 'invalid_locale_settings' => 'Firefly II nem tudja megfelelően formázni a pénznemeket, mert a szerverről hiányoznak a szükséges csomagok. Itt talál iránymutatást a javításra.', - 'quickswitch' => 'Gyorsváltó', - 'sign_in_to_start' => 'A munkamenet megkezdéséhez be kell jelentkezni', - 'sign_in' => 'Bejelentkezés', - 'register_new_account' => 'Új fiók regisztrációja', - 'forgot_my_password' => 'Elfelejtett jelszó', - 'problems_with_input' => 'Volt néhány probléma a bevitt adatokkal.', - 'reset_password' => 'Jelszó visszaállítása', - 'button_reset_password' => 'Jelszó visszaállítása', - 'reset_button' => 'Visszaállítás', - 'want_to_login' => 'Bejelentkezés', - 'login_page_title' => 'Bejelentkezés a Firefly III-ba', - 'register_page_title' => 'Regisztrálás a Firefly III-ba', - 'forgot_pw_page_title' => 'Elfelejtette a jelszavát a Firefly III-hoz', - 'reset_pw_page_title' => 'Firefly III jelszó visszaállítása', - 'cannot_reset_demo_user' => 'A bemutató felhasználónak nem nem lehet visszaállítani a jelszavát.', - 'no_att_demo_user' => 'Demo felhasználó nem tölthet fel csatolmányokat.', - 'button_register' => 'Regisztráció', - 'authorization' => 'Hitelesítés', - 'active_bills_only' => 'csak az aktív számlák', - 'active_bills_only_total' => 'összes aktív fizetendő számla', - 'active_exp_bills_only' => 'csak az aktív és a várható számlák', - 'active_exp_bills_only_total' => 'az összes aktív, várható számla', - 'per_period_sum_1D' => 'Várható napi költségek', - 'per_period_sum_1W' => 'Várható heti költségek', - 'per_period_sum_1M' => 'Várható havi költségek', - 'per_period_sum_3M' => 'Várható negyedéves költségek', - 'per_period_sum_6M' => 'Várható féléves költségek', - 'per_period_sum_1Y' => 'Várható éves költségek', - 'average_per_bill' => 'számlánkénti átlag', - 'expected_total' => 'várható teljes összeg', - 'reconciliation_account_name' => ':name egyeztetés (:currency)', - 'saved' => 'Mentve', - 'advanced_options' => 'Haladó beállítások', - 'advanced_options_explain' => 'A Firefly III egyes oldalakon spceiális beálításokat rejt emögött a gomb mögött. Ezen az oldalon nincs itt semmi érdekes, de érdemes megnézni a többit!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Bezárás', + 'actions' => 'Műveletek', + 'edit' => 'Szerkesztés', + 'delete' => 'Törlés', + 'split' => 'Felosztás', + 'single_split' => 'Felosztás', + 'clone' => 'Másolás', + 'clone_and_edit' => 'Másol és szerkeszt', + 'confirm_action' => 'Művelet megerősítése', + 'last_seven_days' => 'Utolsó hét nap', + 'last_thirty_days' => 'Elmúlt harminc nap', + 'last_180_days' => 'Az utóbbi 180 nap', + 'month_to_date' => 'Hónap a mai napig', + 'year_to_date' => 'Év elejétől', + 'YTD' => 'Folyó év', + 'welcome_back' => 'Mi a helyzet?', + 'everything' => 'Minden', + 'today' => 'ma', + 'customRange' => 'Egyéni tartomány', + 'date_range' => 'Dátum intervallum', + 'apply' => 'Alkalmaz', + 'select_date' => 'Dátum kiválasztása..', + 'cancel' => 'Mégse', + 'from' => 'Honnan', + 'to' => 'Hova', + 'structure' => 'Struktúra', + 'help_translating' => 'Ez a súgószöveg még nem elérhető az oldal nyelvén. Itt lehet segíteni a fordításban.', + 'showEverything' => 'Összes megjelenítése', + 'never' => 'Soha', + 'no_results_for_empty_search' => 'A keresés üres volt, így nincs találat.', + 'removed_amount' => ':amount eltávolítva', + 'added_amount' => ':amount hozzáadva', + 'asset_account_role_help' => 'A választásoktól függő további lehetőségeket később lehet beállítani.', + 'Opening balance' => 'Nyitó egyenleg', + 'create_new_stuff' => 'Új dolog létrehozása', + 'new_withdrawal' => 'Új költség', + 'create_new_transaction' => 'Új tranzakció létrehozása', + 'sidebar_frontpage_create' => 'Létrehozás', + 'new_transaction' => 'Új tranzakció', + 'no_rules_for_bill' => 'Ehhez a számlához nincsenek szabályok kapcsolva.', + 'go_to_asset_accounts' => 'Eszközszámlák megtekintése', + 'go_to_budgets' => 'Ugrás a költségkeretekhez', + 'go_to_withdrawals' => 'Ugrás a költségekhez', + 'clones_journal_x' => 'Ez a tranzakció ":description" (#:id) klónja', + 'go_to_categories' => 'Ugrás a kategóriákhoz', + 'go_to_bills' => 'Ugrás a számlákhoz', + 'go_to_expense_accounts' => 'Költségszámlák megtekintése', + 'go_to_revenue_accounts' => 'Jövedelemszámlák megtekintése', + 'go_to_piggies' => 'Ugrás a malacperselyekhez', + 'new_deposit' => 'Új bevétel', + 'new_transfer' => 'Új átvezetés', + 'new_transfers' => 'Új átvezetés', + 'new_asset_account' => 'Új eszközszámla', + 'new_expense_account' => 'Új költségszámla', + 'new_revenue_account' => 'Új jövedelemszámla', + 'new_liabilities_account' => 'Új kötelezettség', + 'new_budget' => 'Új költségkeret', + 'new_bill' => 'Új számla', + 'block_account_logout' => 'Ön kijelentkezett. A blokkolt fiókok nem használhatják ezt a webhelyet. Érvényes e-mail címmel regisztrált?', + 'flash_success' => 'Siker!', + 'flash_info' => 'Üzenet', + 'flash_warning' => 'Figyelmeztetés!', + 'flash_error' => 'Hiba!', + 'flash_danger' => 'Vigyázat!', + 'flash_info_multiple' => 'Egy üzenet érkezett | :count üzenet érkezett', + 'flash_error_multiple' => 'Egy hiba történt|:count hiba történt', + 'net_worth' => 'Nettó érték', + 'help_for_this_page' => 'Az oldal súgója', + 'help_for_this_page_body' => 'További információkat találhat erről a lapról a dokumentációban.', + 'two_factor_welcome' => 'Helló!', + 'two_factor_enter_code' => 'A folytatáshoz meg kell adni a kétlépcsős azonosítás kódját. Az alkalmazás létre tudja hozni ezt a kódot.', + 'two_factor_code_here' => 'Kód beírása', + 'two_factor_title' => 'Kétlépcsős hitelesítés', + 'authenticate' => 'Hitelesítés', + 'two_factor_forgot_title' => 'Elvesztett kétlépcsős hitelesítés', + 'two_factor_forgot' => 'Elfelejtett kétlépcsős azonosítás.', + 'two_factor_lost_header' => 'Elvesztett kétlépcsős hitelesítés?', + 'two_factor_lost_intro' => 'Ha a biztonsági kódok is elvesztek, akkor bajban vagy. Ezt nem lehet a webes felületről megjavítani, így két lehetőséged van.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Ellenkező esetben emailt kell küldeni a webhely tulajdonosának a :site_owner címre, és meg kell kérni, hogy állítsa vissza a kétfaktoros hitelesítést.', + 'mfa_backup_code' => 'A biztonsági kód fel lett használva a Firefly III-hoz. Ezt többé nem használhatod fel, így a listáról ez kihúzható.', + 'pref_two_factor_new_backup_codes' => 'Új biztonsági kódok igénylése', + 'pref_two_factor_backup_code_count' => 'Még :count érvényes visszaállítási kódod van.|Még :count érvényes visszaállítási kódod van.', + '2fa_i_have_them' => 'Eltároltam!', + 'warning_much_data' => ':days napi adat betöltése eltarthat egy ideig.', + 'registered' => 'A regisztráció sikeres!', + 'Default asset account' => 'Alapértelmezett eszközszámla', + 'no_budget_pointer' => 'Úgy tűnik, még nincsenek költségkeretek. Költségkereteket a költségkeretek oldalon lehet létrehozni. A költségkeretek segítenek nyomon követni a költségeket.', + 'no_bill_pointer' => 'Úgy tűnik, még nincsenek költségkeretek. Költségkereteket a költségkeretek oldalon lehet létrehozni. A költségkeretek segítenek nyomon követni a költségeket.', + 'Savings account' => 'Megtakarítási számla', + 'Credit card' => 'Hitelkártya', + 'source_accounts' => 'Forrásszámla|Forrásszámlák', + 'destination_accounts' => 'Célszámla|Célszámlák', + 'user_id_is' => 'A felhasználói azonosító :user', + 'field_supports_markdown' => 'Ez a mező támogatja a Markdown használatát.', + 'need_more_help' => 'A Firefly III használatához további segítség kérhető a a Githubon egy hibajegy nyitásával.', + 'reenable_intro_text' => 'A bevezető útmutatót újra lehet engedélyezni.', + 'intro_boxes_after_refresh' => 'A bevezető dobozok újra megjelennek az oldal frissítésekor.', + 'show_all_no_filter' => 'Az összes tranzakció megjelenítése dátum szerinti csoportosítás nélkül.', + 'expenses_by_category' => 'Költségek kategóriák szerint', + 'expenses_by_budget' => 'Költségek költségkeretek szerint', + 'income_by_category' => 'Jövedelem kategória szerint', + 'expenses_by_asset_account' => 'Költségek eszközszámla szerint', + 'expenses_by_expense_account' => 'Költségek költségszámla szerint', + 'cannot_redirect_to_account' => 'A Firefly III nem tud átirányítani a megfelelő oldalra. Elnézést.', + 'sum_of_expenses' => 'A költségek összege', + 'sum_of_income' => 'Jövedelem összege', + 'liabilities' => 'Kötelezettségek', + 'spent_in_specific_budget' => 'Költés ":budget" költségkeretben', + 'spent_in_specific_double' => 'A(z) ":account" fiókon elköltött', + 'earned_in_specific_double' => 'A(z) ":account" fiókon megkeresett', + 'source_account' => 'Forrás számla', + 'source_account_reconciliation' => 'Nem lehet szerkeszteni egy egyeztetett tranzakció forrásszámláját.', + 'destination_account' => 'Célszámla', + 'destination_account_reconciliation' => 'Nem lehet szerkeszteni egy egyeztetett tranzakció célszámláját.', + 'sum_of_expenses_in_budget' => 'Összes költés ":budget" költségkeretben', + 'left_in_budget_limit' => 'A költségvetés szerinti elkölthető összeg', + 'current_period' => 'Jelenlegi időszak', + 'show_the_current_period_and_overview' => 'Az aktuális időszak és az áttekintés megjelenítése', + 'pref_languages_locale' => 'Ahhoz, hogy egy angoltól eltérő nyelv megfelelően működjön, az operációs rendszernek a helyes helyspecifikus információkkal kell rendelkeznie. Ha ezek nincsenek jelen, akkor a pénznem adat, a dátumok és az összegek formázása hibás lehet.', + 'budget_in_period' => '":name" költségkeret összes tranzakciója :start és :end között :currency pénznemben', + 'chart_budget_in_period' => 'Diagram ":name" költségkeret minden tranzakciójáról :start és :end között :currency pénznemben', + 'chart_budget_in_period_only_currency' => 'A költségkeretben előirányzott összeg pénzneme :currency, Így ez a diagram csak azokat a tranzakciókat mutatja amiknek a pénznem :currency.', + 'chart_account_in_period' => 'Diagram ":name" (:balance) bankszámla minden tranzakciójáról :start és :end között', + 'chart_category_in_period' => 'Diagram ":name" kategória minden tranzakciójáról :start és :end között', + 'chart_category_all' => 'Diagram ":name" kategória minden tranzakciójáról', + 'clone_withdrawal' => 'Költség klónozása', + 'clone_deposit' => 'Bevétel klónozása', + 'clone_transfer' => 'Átvezetés klónozása', + 'multi_select_no_selection' => 'Egy sincs kiválasztva', + 'multi_select_select_all' => 'Összes kijelölése', + 'multi_select_n_selected' => 'kijelölt', + 'multi_select_all_selected' => 'Minden kiválasztott', + 'multi_select_filter_placeholder' => 'Keresés..', + 'intro_next_label' => 'Következő', + 'intro_prev_label' => 'Előző', + 'intro_skip_label' => 'Kihagyás', + 'intro_done_label' => 'Kész', + 'between_dates_breadcrumb' => ':start és :end között', + 'all_journals_without_budget' => 'Minden költségkeret nélküli tranzakció', + 'journals_without_budget' => 'Költségkeret nélküli tranzakciók', + 'all_journals_without_category' => 'Minden kategória nélküli tranzakció', + 'journals_without_category' => 'Kategória nélküli tranzakciók', + 'all_journals_for_account' => ':name bankszámla összes tranzakciója', + 'chart_all_journals_for_account' => 'Diagram :name bankszámla minden tranzakciójáról', + 'journals_in_period_for_account' => '":name" bankszámla összes tranzakciója :start és :end között', + 'journals_in_period_for_account_js' => 'Minden tranzakció a(z) {title} számlán {start} és {end} között', + 'transferred' => 'Átvezetett', + 'all_withdrawal' => 'Minden költség', + 'all_transactions' => 'Minden tranzakció', + 'title_withdrawal_between' => 'Minden költség :start és :end között', + 'all_deposit' => 'Összes jövedelem', + 'title_deposit_between' => 'Összes jövedelem :start és :end között', + 'all_transfers' => 'Minden átvezetés', + 'title_transfers_between' => 'Minden átvezetés :start és :end között', + 'all_transfer' => 'Minden átvezetés', + 'all_journals_for_tag' => '":tag" címke összes tranzakciója', + 'title_transfer_between' => 'Minden átvezetés :start és :end között', + 'all_journals_for_category' => ':name kategória összes tranzakciója', + 'all_journals_for_budget' => ':name költségkeret összes tranzakciója', + 'chart_all_journals_for_budget' => 'Diagram :name költségkeret minden tranzakciójáról', + 'journals_in_period_for_category' => ':name kategória összes tranzakciója :start és :end között', + 'journals_in_period_for_tag' => ':tag címke összes tranzakciója :start és :end között', + 'not_available_demo_user' => 'A használni kívánt szolgáltatás nem érhető el a bemutató felhasználók számára.', + 'exchange_rate_instructions' => 'A "@name" vagyonszámla csak a @native_currency tranzakciókat fogadja el. Ha inkább @foreign_currency pénznemet szeretne használni, győződjön meg róla, hogy a @native_currency összege is ismert:', + 'transfer_exchange_rate_instructions' => 'A "@source_name" forrás vagyonszámla csak a @source_currency tranzakciókat fogadja el. A "@dest_name" cél vagyonszámla csak a @dest_currency tranzakciókat fogadja el. Mindkét pénznemben helyesen kell megadnia az átutalt összeget.', + 'transaction_data' => 'Tranzakciós adatok', + 'invalid_server_configuration' => 'Érvénytelen kiszolgálóbeállítás', + 'invalid_locale_settings' => 'Firefly II nem tudja megfelelően formázni a pénznemeket, mert a szerverről hiányoznak a szükséges csomagok. Itt talál iránymutatást a javításra.', + 'quickswitch' => 'Gyorsváltó', + 'sign_in_to_start' => 'A munkamenet megkezdéséhez be kell jelentkezni', + 'sign_in' => 'Bejelentkezés', + 'register_new_account' => 'Új fiók regisztrációja', + 'forgot_my_password' => 'Elfelejtett jelszó', + 'problems_with_input' => 'Volt néhány probléma a bevitt adatokkal.', + 'reset_password' => 'Jelszó visszaállítása', + 'button_reset_password' => 'Jelszó visszaállítása', + 'reset_button' => 'Visszaállítás', + 'want_to_login' => 'Bejelentkezés', + 'login_page_title' => 'Bejelentkezés a Firefly III-ba', + 'register_page_title' => 'Regisztrálás a Firefly III-ba', + 'forgot_pw_page_title' => 'Elfelejtette a jelszavát a Firefly III-hoz', + 'reset_pw_page_title' => 'Firefly III jelszó visszaállítása', + 'cannot_reset_demo_user' => 'A bemutató felhasználónak nem nem lehet visszaállítani a jelszavát.', + 'no_att_demo_user' => 'Demo felhasználó nem tölthet fel csatolmányokat.', + 'button_register' => 'Regisztráció', + 'authorization' => 'Hitelesítés', + 'active_bills_only' => 'csak az aktív számlák', + 'active_bills_only_total' => 'összes aktív fizetendő számla', + 'active_exp_bills_only' => 'csak az aktív és a várható számlák', + 'active_exp_bills_only_total' => 'az összes aktív, várható számla', + 'per_period_sum_1D' => 'Várható napi költségek', + 'per_period_sum_1W' => 'Várható heti költségek', + 'per_period_sum_1M' => 'Várható havi költségek', + 'per_period_sum_3M' => 'Várható negyedéves költségek', + 'per_period_sum_6M' => 'Várható féléves költségek', + 'per_period_sum_1Y' => 'Várható éves költségek', + 'average_per_bill' => 'számlánkénti átlag', + 'expected_total' => 'várható teljes összeg', + 'reconciliation_account_name' => ':name egyeztetés (:currency)', + 'saved' => 'Mentve', + 'advanced_options' => 'Haladó beállítások', + 'advanced_options_explain' => 'A Firefly III egyes oldalakon spceiális beálításokat rejt emögött a gomb mögött. Ezen az oldalon nincs itt semmi érdekes, de érdemes megnézni a többit!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhook-ok', - 'webhooks_breadcrumb' => 'Webhook-ok', - 'webhooks_menu_disabled' => 'letiltva', - 'no_webhook_messages' => 'Nincsenek webhook üzenetek', - 'webhook_trigger_STORE_TRANSACTION' => 'Tranzakció létrehozása után', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Tranzakció frissítése után', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Tranzakció törlése után', - 'webhook_response_TRANSACTIONS' => 'Tranzakció részletei', - 'webhook_response_ACCOUNTS' => 'Számlaadatok', - 'webhook_response_none_NONE' => 'Nincsenek részletek', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Vizsgálat', - 'create_new_webhook' => 'Új webhook létrehozása', - 'webhooks_create_breadcrumb' => 'Új webhook létrehozása', - 'webhook_trigger_form_help' => 'Adja meg, hogy a webhook-ot milyen eseményre indítja el', - 'webhook_response_form_help' => 'Adja meg, hogy a webhook mit küldjön az URL-re.', - 'webhook_delivery_form_help' => 'Milyen formátumban kézbesítse a webhook az adatokat.', - 'webhook_active_form_help' => 'A webhook-nak aktívnak kell lennie, különben nem fogják meghívni.', - 'stored_new_webhook' => 'Új webhook ":title" tárolva', - 'delete_webhook' => 'Webhook törlése', - 'deleted_webhook' => 'Webhook ":title" törölve', - 'edit_webhook' => 'Webhook ":title" módosítása', - 'updated_webhook' => 'Webhook ":title" frissítve', - 'edit_webhook_js' => 'Webhook "{title}" módosítása', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'A webhook a jelzett tranzakciónál aktiválódott. Kérem, várjon az eredmények megjelítésére.', - 'webhook_messages' => 'Webhook üzenet', - 'view_message' => 'Üzenet megtekintése', - 'view_attempts' => 'Sikertelen kísérletek megjelenítése', - 'message_content_title' => 'Webhook üzenet tartalma', - 'message_content_help' => 'Az üzenet tartalma amit a webhook küldött (vagy kísérelt meg küldeni).', - 'attempt_content_title' => 'Webhook kísérletek', - 'attempt_content_help' => 'Az összes sikertelenül küldött webhook üzenet a beállított URL-re. Idővel a Firefly III felhagy a próbálkozással.', - 'no_attempts' => 'Nincsenek sikertelen kísérletek. Nagyon jó!', - 'webhook_attempt_at' => 'Kísérlet {moment}-kor', - 'logs' => 'Naplók', - 'response' => 'Válasz', - 'visit_webhook_url' => 'Webhook URL meglátogatása', - 'reset_webhook_secret' => 'Webhook titok visszaállítása', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") eltárolva.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") frissítve.', + 'webhooks' => 'Webhook-ok', + 'webhooks_breadcrumb' => 'Webhook-ok', + 'webhooks_menu_disabled' => 'letiltva', + 'no_webhook_messages' => 'Nincsenek webhook üzenetek', + 'webhook_trigger_STORE_TRANSACTION' => 'Tranzakció létrehozása után', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Tranzakció frissítése után', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Tranzakció törlése után', + 'webhook_response_TRANSACTIONS' => 'Tranzakció részletei', + 'webhook_response_ACCOUNTS' => 'Számlaadatok', + 'webhook_response_none_NONE' => 'Nincsenek részletek', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Vizsgálat', + 'create_new_webhook' => 'Új webhook létrehozása', + 'webhooks_create_breadcrumb' => 'Új webhook létrehozása', + 'webhook_trigger_form_help' => 'Adja meg, hogy a webhook-ot milyen eseményre indítja el', + 'webhook_response_form_help' => 'Adja meg, hogy a webhook mit küldjön az URL-re.', + 'webhook_delivery_form_help' => 'Milyen formátumban kézbesítse a webhook az adatokat.', + 'webhook_active_form_help' => 'A webhook-nak aktívnak kell lennie, különben nem fogják meghívni.', + 'stored_new_webhook' => 'Új webhook ":title" tárolva', + 'delete_webhook' => 'Webhook törlése', + 'deleted_webhook' => 'Webhook ":title" törölve', + 'edit_webhook' => 'Webhook ":title" módosítása', + 'updated_webhook' => 'Webhook ":title" frissítve', + 'edit_webhook_js' => 'Webhook "{title}" módosítása', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'A webhook a jelzett tranzakciónál aktiválódott. Kérem, várjon az eredmények megjelítésére.', + 'webhook_messages' => 'Webhook üzenet', + 'view_message' => 'Üzenet megtekintése', + 'view_attempts' => 'Sikertelen kísérletek megjelenítése', + 'message_content_title' => 'Webhook üzenet tartalma', + 'message_content_help' => 'Az üzenet tartalma amit a webhook küldött (vagy kísérelt meg küldeni).', + 'attempt_content_title' => 'Webhook kísérletek', + 'attempt_content_help' => 'Az összes sikertelenül küldött webhook üzenet a beállított URL-re. Idővel a Firefly III felhagy a próbálkozással.', + 'no_attempts' => 'Nincsenek sikertelen kísérletek. Nagyon jó!', + 'webhook_attempt_at' => 'Kísérlet {moment}-kor', + 'logs' => 'Naplók', + 'response' => 'Válasz', + 'visit_webhook_url' => 'Webhook URL meglátogatása', + 'reset_webhook_secret' => 'Webhook titok visszaállítása', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") eltárolva.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") frissítve.', // API access - 'authorization_request' => 'Firefly III v:version engedély kérelem', - 'authorization_request_intro' => 'A(z) ":client" alkalmazás hozzáférést kér a pénzügyi nyilvántartásához. Szeretné megadni a hozzáférést ezekhez az adatokhoz a(z) ":client" részére?', - 'authorization_request_site' => 'Átirányítjuk a :url címre, ami aztán képes lesz hozzáférni az Ön Firefly III adataihoz.', - 'authorization_request_invalid' => 'Ez a hozzáférési kérelem érvénytelen. Kérjük, soha többé ne kövesse ezt a linket.', - 'scopes_will_be_able' => 'Ez az alkalmazás képes lesz arra, hogy:', - 'button_authorize' => 'Engedélyezés', - 'none_in_select_list' => '(nincs)', - 'no_piggy_bank' => '(nincs malacpersely)', - 'name_in_currency' => ':name - :currency', - 'paid_in_currency' => 'Fizetve :currency -ban', - 'unpaid_in_currency' => 'Be nem fizetett :currency -ban', - 'is_alpha_warning' => 'Jelenleg egy ALPHA verzió fut. Felléphetnek programhibák és problémák.', - 'is_beta_warning' => 'Jelenleg egy BETA verzió fut. Felléphetnek programhibák és problémák.', - 'all_destination_accounts' => 'Célszámlák', - 'all_source_accounts' => 'Forrásszámlák', - 'back_to_index' => 'Vissza a kezdőoldalra', - 'cant_logout_guard' => 'Firefly III nem tudja kijelentkeztetni.', - 'internal_reference' => 'Belső hivatkozás', + 'authorization_request' => 'Firefly III v:version engedély kérelem', + 'authorization_request_intro' => 'A(z) ":client" alkalmazás hozzáférést kér a pénzügyi nyilvántartásához. Szeretné megadni a hozzáférést ezekhez az adatokhoz a(z) ":client" részére?', + 'authorization_request_site' => 'Átirányítjuk a :url címre, ami aztán képes lesz hozzáférni az Ön Firefly III adataihoz.', + 'authorization_request_invalid' => 'Ez a hozzáférési kérelem érvénytelen. Kérjük, soha többé ne kövesse ezt a linket.', + 'scopes_will_be_able' => 'Ez az alkalmazás képes lesz arra, hogy:', + 'button_authorize' => 'Engedélyezés', + 'none_in_select_list' => '(nincs)', + 'no_piggy_bank' => '(nincs malacpersely)', + 'name_in_currency' => ':name - :currency', + 'paid_in_currency' => 'Fizetve :currency -ban', + 'unpaid_in_currency' => 'Be nem fizetett :currency -ban', + 'is_alpha_warning' => 'Jelenleg egy ALPHA verzió fut. Felléphetnek programhibák és problémák.', + 'is_beta_warning' => 'Jelenleg egy BETA verzió fut. Felléphetnek programhibák és problémák.', + 'all_destination_accounts' => 'Célszámlák', + 'all_source_accounts' => 'Forrásszámlák', + 'back_to_index' => 'Vissza a kezdőoldalra', + 'cant_logout_guard' => 'Firefly III nem tudja kijelentkeztetni.', + 'internal_reference' => 'Belső hivatkozás', // check for updates: - 'update_check_title' => 'Frissítések ellenőrzése', - 'admin_update_check_title' => 'Frissítés automatikus ellenőrzése', - 'admin_update_check_explain' => 'A Firefly III képes automatikusan ellenőrizni a frissítéseket. Ha engedélyezi ezt a beállítást, akkor a Firefly III frissítési kiszolgálóval kommunikálva ellenőrzésre kerül, hogy rendelkezésre áll-e a Firefly III új verziója. Ha igen, értesítést kap. Ezt az értesítést a jobb oldalon található gombra kattintva tesztelheti. Kérjük jelezze alább, ha szeretné, hogy a Firefly III ellenőrizze a frissítéseket.', - 'check_for_updates_permission' => 'A Firefly III automatikusan ellenőrizheti a frissítéseket, ha Ön ezt engedélyezi. Kérjük, keresse meg a adminisztráció menüpontot, ha engedélyezni szeretné ezt a funkciót.', - 'updates_ask_me_later' => 'Kérdezze később', - 'updates_do_not_check' => 'Ne ellenőrizze a frissítéseket', - 'updates_enable_check' => 'Frissítések ellenőrzésének engedélyezése', - 'admin_update_check_now_title' => 'Frissítések keresése most', - 'admin_update_check_now_explain' => 'Ha megnyomja a gombot, a Firefly III ellenőrinzi fogja, hogy a legfrissebb változatot használja -e.', - 'check_for_updates_button' => 'Ellenőrzés most!', - 'update_new_version_alert' => 'A Firefly III új verziója elérhető. A jelenleg használt verzió :your_version, a legújabb verzió pedig :new_version, amely ekkor jelent meg: :date.', - 'update_version_beta' => 'Ez egy BETA verzió. Előfordulhatnak problémák.', - 'update_version_alpha' => 'Ez egy ALPHA verzió. Előfordulhatnak problémák.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'A jelenlegi verzió :version, ez egyben a legfrissebb elérhető verzió is.', - 'update_newer_version_alert' => 'A jelenlegi verzió :your_version, amely újabb, mint a legfrissebb kiadott verzió, ami a :new_version.', - 'update_check_error' => 'Hiba történt a frissítések ellenőrzése közben: :error', - 'unknown_error' => 'Ismeretlen hiba. Elnézést kérünk.', - 'disabled_but_check' => 'Kikapcsolta a frissítések automata keresését. Ne feledje az elérhető verziók rendszeres ellenőrzését. Köszönjük!', - 'admin_update_channel_title' => 'Frissítési csatorna', - 'admin_update_channel_explain' => 'A Firefly III-hoz három frissítési csatorna létezik, melyek meghatározzák, hogy a felhasználók mennyivel járnak előbbre a funkciók, fejlesztések és hibák szempontjából. A kalandvágyók használhatják a "beta" csatornát, míg azok akik szeretnek veszélyesen élni az "alpha"-t.', - 'update_channel_stable' => 'Stabil. Mindennek az elvártnak megfelelően kell működnie.', - 'update_channel_beta' => 'Beta. Új funkciók, de elromolhatnak dolgok.', - 'update_channel_alpha' => 'Alpha. Bedobálunk dolgokat, és azt használjuk, ami hasznosnak ígérkezik.', + 'update_check_title' => 'Frissítések ellenőrzése', + 'admin_update_check_title' => 'Frissítés automatikus ellenőrzése', + 'admin_update_check_explain' => 'A Firefly III képes automatikusan ellenőrizni a frissítéseket. Ha engedélyezi ezt a beállítást, akkor a Firefly III frissítési kiszolgálóval kommunikálva ellenőrzésre kerül, hogy rendelkezésre áll-e a Firefly III új verziója. Ha igen, értesítést kap. Ezt az értesítést a jobb oldalon található gombra kattintva tesztelheti. Kérjük jelezze alább, ha szeretné, hogy a Firefly III ellenőrizze a frissítéseket.', + 'check_for_updates_permission' => 'A Firefly III automatikusan ellenőrizheti a frissítéseket, ha Ön ezt engedélyezi. Kérjük, keresse meg a adminisztráció menüpontot, ha engedélyezni szeretné ezt a funkciót.', + 'updates_ask_me_later' => 'Kérdezze később', + 'updates_do_not_check' => 'Ne ellenőrizze a frissítéseket', + 'updates_enable_check' => 'Frissítések ellenőrzésének engedélyezése', + 'admin_update_check_now_title' => 'Frissítések keresése most', + 'admin_update_check_now_explain' => 'Ha megnyomja a gombot, a Firefly III ellenőrinzi fogja, hogy a legfrissebb változatot használja -e.', + 'check_for_updates_button' => 'Ellenőrzés most!', + 'update_new_version_alert' => 'A Firefly III új verziója elérhető. A jelenleg használt verzió :your_version, a legújabb verzió pedig :new_version, amely ekkor jelent meg: :date.', + 'update_version_beta' => 'Ez egy BETA verzió. Előfordulhatnak problémák.', + 'update_version_alpha' => 'Ez egy ALPHA verzió. Előfordulhatnak problémák.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'A jelenlegi verzió :version, ez egyben a legfrissebb elérhető verzió is.', + 'update_newer_version_alert' => 'A jelenlegi verzió :your_version, amely újabb, mint a legfrissebb kiadott verzió, ami a :new_version.', + 'update_check_error' => 'Hiba történt a frissítések ellenőrzése közben: :error', + 'unknown_error' => 'Ismeretlen hiba. Elnézést kérünk.', + 'disabled_but_check' => 'Kikapcsolta a frissítések automata keresését. Ne feledje az elérhető verziók rendszeres ellenőrzését. Köszönjük!', + 'admin_update_channel_title' => 'Frissítési csatorna', + 'admin_update_channel_explain' => 'A Firefly III-hoz három frissítési csatorna létezik, melyek meghatározzák, hogy a felhasználók mennyivel járnak előbbre a funkciók, fejlesztések és hibák szempontjából. A kalandvágyók használhatják a "beta" csatornát, míg azok akik szeretnek veszélyesen élni az "alpha"-t.', + 'update_channel_stable' => 'Stabil. Mindennek az elvártnak megfelelően kell működnie.', + 'update_channel_beta' => 'Beta. Új funkciók, de elromolhatnak dolgok.', + 'update_channel_alpha' => 'Alpha. Bedobálunk dolgokat, és azt használjuk, ami hasznosnak ígérkezik.', // search - 'search' => 'Keresés', - 'search_query' => 'Lekérdezés', - 'search_found_transactions' => 'Firefly III :count tranzakciót talált :time másodperc alatt.|Firefly III :count tranzakciót talált :time másodperc alatt.', - 'search_found_more_transactions' => 'A Firefly III :count tranzakciót talált :time másodperc alatt.', - 'search_for_query' => 'A Firefly III tranzakciókat keres amelyben ez a kifejezés található: :query', - 'invalid_operators_list' => 'Ezek a keresési paraméterek érvénytelenek, és figyelmen kívül hagytuk őket.', + 'search' => 'Keresés', + 'search_query' => 'Lekérdezés', + 'search_found_transactions' => 'Firefly III :count tranzakciót talált :time másodperc alatt.|Firefly III :count tranzakciót talált :time másodperc alatt.', + 'search_found_more_transactions' => 'A Firefly III :count tranzakciót talált :time másodperc alatt.', + 'search_for_query' => 'A Firefly III tranzakciókat keres amelyben ez a kifejezés található: :query', + 'invalid_operators_list' => 'Ezek a keresési paraméterek érvénytelenek, és figyelmen kívül hagytuk őket.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Tranzakció dátuma ":value"', - 'search_modifier_not_date_on' => 'Tranzakció dátuma nem ":value"', - 'search_modifier_reconciled' => 'Tranzakció kiegyenlítve', - 'search_modifier_not_reconciled' => 'Tranzakció nincs kiegyenlítve', - 'search_modifier_id' => 'Tranzakció azonosító ":value"', - 'search_modifier_not_id' => 'Tranzakció azonosító nem ":value"', - 'search_modifier_date_before' => 'Tranzakció dátuma :value előtt van', - 'search_modifier_date_after' => 'Tranzakció dátuma :value után van', - 'search_modifier_external_id_is' => 'Külső azonosító ":value"', - 'search_modifier_not_external_id_is' => 'Külső azonosító nem ":value"', - 'search_modifier_no_external_url' => 'A tranzakciónak nincs külső URL-je', - 'search_modifier_no_external_id' => 'A tranzakciónak nincs külső azonosítója', - 'search_modifier_not_any_external_url' => 'A tranzakciónak nincs külső URL-je', - 'search_modifier_not_any_external_id' => 'A tranzakciónak nincs külső azonosítója', - 'search_modifier_any_external_url' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső URL-el', - 'search_modifier_any_external_id' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső azonosítóval', - 'search_modifier_not_no_external_url' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső URL-el', - 'search_modifier_not_no_external_id' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső azonosítóval', - 'search_modifier_internal_reference_is' => 'Belső hivatkozás: :value', - 'search_modifier_not_internal_reference_is' => 'Belső hivatkozás nem ":value"', - 'search_modifier_description_starts' => 'Leírás eleje: ":value"', - 'search_modifier_not_description_starts' => 'Leírás eleje nem: ":value"', - 'search_modifier_description_ends' => 'Leírás vége: ":value"', - 'search_modifier_not_description_ends' => 'Leírás vége nem: ":value"', - 'search_modifier_description_contains' => 'Leírás tartalmazza: ":value"', - 'search_modifier_not_description_contains' => 'Leírás nem tartalmazza: ":value"', - 'search_modifier_description_is' => 'Leírás: ":value"', - 'search_modifier_not_description_is' => 'Leírás pontosan nem ":value"', - 'search_modifier_currency_is' => 'Tranzakció valutája ":value"', - 'search_modifier_not_currency_is' => 'Tranzakció valutája nem ":value"', - 'search_modifier_foreign_currency_is' => 'Tranzakció valutája ":value"', - 'search_modifier_not_foreign_currency_is' => 'Tranzakció valutája nem ":value"', - 'search_modifier_has_attachments' => 'Tranzakcióhoz kell legyen melléklet', - 'search_modifier_has_no_category' => 'A tranzakcióhoz nincs kategória', - 'search_modifier_not_has_no_category' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) kategóriával', - 'search_modifier_not_has_any_category' => 'A tranzakciónak nem lehet kategóriája', - 'search_modifier_has_any_category' => 'A tranzakciónak van kategóriája', - 'search_modifier_has_no_budget' => 'A tranzakcióhoz nincs költségkeret', - 'search_modifier_not_has_any_budget' => 'A tranzakciónak nem lehet kültségkerete', - 'search_modifier_has_any_budget' => 'A tranzakciónak van költségkerete', - 'search_modifier_not_has_no_budget' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) költségkerettel', - 'search_modifier_has_no_bill' => 'A tranzakciónak nem lehet fizetendő számlája', - 'search_modifier_not_has_no_bill' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) fizetendő számlával', - 'search_modifier_has_any_bill' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) fizetendő számlával', - 'search_modifier_not_has_any_bill' => 'A tranzakciónak nem lehet fizetendő számlája', - 'search_modifier_has_no_tag' => 'A tranzakcióhoz nincs címke', - 'search_modifier_not_has_any_tag' => 'A tranzakciónak nem lehet cimkéje', - 'search_modifier_not_has_no_tag' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) cimkével', - 'search_modifier_has_any_tag' => 'A tranzakciónak van címkéje', - 'search_modifier_notes_contains' => 'Tranzakció megjegyzése tartalmazza ":value"', - 'search_modifier_not_notes_contains' => 'Tranzakció megjegyzése nem tartalmazza ":value"', - 'search_modifier_notes_starts' => 'Tranzakció megjegyzésének kezdete ":value"', - 'search_modifier_not_notes_starts' => 'Tranzakció megjegyzésének kezdete nem ":value"', - 'search_modifier_notes_ends' => 'Tranzakció megjegyzésének vége ":value"', - 'search_modifier_not_notes_ends' => 'Tranzakció megjegyzésének vége nem ":value"', - 'search_modifier_notes_is' => 'Tranzakció megjegyzése pontosan ":value"', - 'search_modifier_not_notes_is' => 'Tranzakció megjegyzése pontosan nem ":value"', - 'search_modifier_no_notes' => 'Tranzakciónak nincs megjegyzése', - 'search_modifier_not_no_notes' => 'Tranzakciónak rendelkeznie kell megjegyzéssel', - 'search_modifier_any_notes' => 'Tranzakciónak van megjegyzése', - 'search_modifier_not_any_notes' => 'Tranzakciónak nincs megjegyzése', - 'search_modifier_amount_is' => 'Összeg pontosan :value', - 'search_modifier_not_amount_is' => 'Összeg nem :value', - 'search_modifier_amount_less' => 'Összeg legfeljebb :value', - 'search_modifier_not_amount_more' => 'Összeg legfeljebb :value', - 'search_modifier_amount_more' => 'Összeg legalább :value', - 'search_modifier_not_amount_less' => 'Összeg legalább :value', - 'search_modifier_source_account_is' => 'Forrásszámla neve pontosan ":value"', - 'search_modifier_not_source_account_is' => 'Forrásszámla vége nem ":value"', - 'search_modifier_source_account_contains' => 'Forrásszámla neve tartalmazza ":value"', - 'search_modifier_not_source_account_contains' => 'Forrásszámla neve nem tartalmazza ":value"', - 'search_modifier_source_account_starts' => 'Forrásszámla nevének eleje":value"', - 'search_modifier_not_source_account_starts' => 'Forrásszámla nevének eleje nem ":value"', - 'search_modifier_source_account_ends' => 'Forrásszámla vége ":value"', - 'search_modifier_not_source_account_ends' => 'Forrásszámla nevének vége nem ":value"', - 'search_modifier_source_account_id' => 'Forrásszámla ID pontosan :value', - 'search_modifier_not_source_account_id' => 'Forrásszámla ID nem :value', - 'search_modifier_source_account_nr_is' => 'Forrásszámla számlaszáma (IBAN) pontosan ":value"', - 'search_modifier_not_source_account_nr_is' => 'Forrásszámla számlaszáma (IBAN) nem ":value"', - 'search_modifier_source_account_nr_contains' => 'Forrásszámla számlaszáma (IBAN) tartalmazza ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Forrásszámla számlaszáma (IBAN) nem tartalmazza ":value"', - 'search_modifier_source_account_nr_starts' => 'Forrásszámla számlaszáma (IBAN) kezdete ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Forrásszámla számlaszám (IBAN) kezdete nem ":value"', - 'search_modifier_source_account_nr_ends' => 'Forrásszámla számlaszáma (IBAN) vége ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Forrásszámla számlaszáma (IBAN) nem így végződik ":value"', - 'search_modifier_destination_account_is' => 'Célszámla neve pontosan ":value"', - 'search_modifier_not_destination_account_is' => 'Célszámla neve nem ":value"', - 'search_modifier_destination_account_contains' => 'Célszámla neve tartalmazza ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Célszámla nevének eleje: ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Célszámla számlaszám (IBAN) pontosan: ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Célszámla számlaszám (IBAN) tartalmazza ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Célszámla számlaszáma (IBAN) eleje: ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Célszámla számlaszám (IBAN) vége ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'A kategória ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'A költségkeret ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'A számla ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Tranzakció típusa: :value', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'A címke ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + 'search_modifier_date_on' => 'Tranzakció dátuma ":value"', + 'search_modifier_not_date_on' => 'Tranzakció dátuma nem ":value"', + 'search_modifier_reconciled' => 'Tranzakció kiegyenlítve', + 'search_modifier_not_reconciled' => 'Tranzakció nincs kiegyenlítve', + 'search_modifier_id' => 'Tranzakció azonosító ":value"', + 'search_modifier_not_id' => 'Tranzakció azonosító nem ":value"', + 'search_modifier_date_before' => 'Tranzakció dátuma :value előtt van', + 'search_modifier_date_after' => 'Tranzakció dátuma :value után van', + 'search_modifier_external_id_is' => 'Külső azonosító ":value"', + 'search_modifier_not_external_id_is' => 'Külső azonosító nem ":value"', + 'search_modifier_no_external_url' => 'A tranzakciónak nincs külső URL-je', + 'search_modifier_no_external_id' => 'A tranzakciónak nincs külső azonosítója', + 'search_modifier_not_any_external_url' => 'A tranzakciónak nincs külső URL-je', + 'search_modifier_not_any_external_id' => 'A tranzakciónak nincs külső azonosítója', + 'search_modifier_any_external_url' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső URL-el', + 'search_modifier_any_external_id' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső azonosítóval', + 'search_modifier_not_no_external_url' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső URL-el', + 'search_modifier_not_no_external_id' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) külső azonosítóval', + 'search_modifier_internal_reference_is' => 'Belső hivatkozás: :value', + 'search_modifier_not_internal_reference_is' => 'Belső hivatkozás nem ":value"', + 'search_modifier_description_starts' => 'Leírás eleje: ":value"', + 'search_modifier_not_description_starts' => 'Leírás eleje nem: ":value"', + 'search_modifier_description_ends' => 'Leírás vége: ":value"', + 'search_modifier_not_description_ends' => 'Leírás vége nem: ":value"', + 'search_modifier_description_contains' => 'Leírás tartalmazza: ":value"', + 'search_modifier_not_description_contains' => 'Leírás nem tartalmazza: ":value"', + 'search_modifier_description_is' => 'Leírás: ":value"', + 'search_modifier_not_description_is' => 'Leírás pontosan nem ":value"', + 'search_modifier_currency_is' => 'Tranzakció valutája ":value"', + 'search_modifier_not_currency_is' => 'Tranzakció valutája nem ":value"', + 'search_modifier_foreign_currency_is' => 'Tranzakció valutája ":value"', + 'search_modifier_not_foreign_currency_is' => 'Tranzakció valutája nem ":value"', + 'search_modifier_has_attachments' => 'Tranzakcióhoz kell legyen melléklet', + 'search_modifier_has_no_category' => 'A tranzakcióhoz nincs kategória', + 'search_modifier_not_has_no_category' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) kategóriával', + 'search_modifier_not_has_any_category' => 'A tranzakciónak nem lehet kategóriája', + 'search_modifier_has_any_category' => 'A tranzakciónak van kategóriája', + 'search_modifier_has_no_budget' => 'A tranzakcióhoz nincs költségkeret', + 'search_modifier_not_has_any_budget' => 'A tranzakciónak nem lehet kültségkerete', + 'search_modifier_has_any_budget' => 'A tranzakciónak van költségkerete', + 'search_modifier_not_has_no_budget' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) költségkerettel', + 'search_modifier_has_no_bill' => 'A tranzakciónak nem lehet fizetendő számlája', + 'search_modifier_not_has_no_bill' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) fizetendő számlával', + 'search_modifier_has_any_bill' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) fizetendő számlával', + 'search_modifier_not_has_any_bill' => 'A tranzakciónak nem lehet fizetendő számlája', + 'search_modifier_has_no_tag' => 'A tranzakcióhoz nincs címke', + 'search_modifier_not_has_any_tag' => 'A tranzakciónak nem lehet cimkéje', + 'search_modifier_not_has_no_tag' => 'A tranzakciónak rendelkeznie kell egy (bármilyen) cimkével', + 'search_modifier_has_any_tag' => 'A tranzakciónak van címkéje', + 'search_modifier_notes_contains' => 'Tranzakció megjegyzése tartalmazza ":value"', + 'search_modifier_not_notes_contains' => 'Tranzakció megjegyzése nem tartalmazza ":value"', + 'search_modifier_notes_starts' => 'Tranzakció megjegyzésének kezdete ":value"', + 'search_modifier_not_notes_starts' => 'Tranzakció megjegyzésének kezdete nem ":value"', + 'search_modifier_notes_ends' => 'Tranzakció megjegyzésének vége ":value"', + 'search_modifier_not_notes_ends' => 'Tranzakció megjegyzésének vége nem ":value"', + 'search_modifier_notes_is' => 'Tranzakció megjegyzése pontosan ":value"', + 'search_modifier_not_notes_is' => 'Tranzakció megjegyzése pontosan nem ":value"', + 'search_modifier_no_notes' => 'Tranzakciónak nincs megjegyzése', + 'search_modifier_not_no_notes' => 'Tranzakciónak rendelkeznie kell megjegyzéssel', + 'search_modifier_any_notes' => 'Tranzakciónak van megjegyzése', + 'search_modifier_not_any_notes' => 'Tranzakciónak nincs megjegyzése', + 'search_modifier_amount_is' => 'Összeg pontosan :value', + 'search_modifier_not_amount_is' => 'Összeg nem :value', + 'search_modifier_amount_less' => 'Összeg legfeljebb :value', + 'search_modifier_not_amount_more' => 'Összeg legfeljebb :value', + 'search_modifier_amount_more' => 'Összeg legalább :value', + 'search_modifier_not_amount_less' => 'Összeg legalább :value', + 'search_modifier_source_account_is' => 'Forrásszámla neve pontosan ":value"', + 'search_modifier_not_source_account_is' => 'Forrásszámla vége nem ":value"', + 'search_modifier_source_account_contains' => 'Forrásszámla neve tartalmazza ":value"', + 'search_modifier_not_source_account_contains' => 'Forrásszámla neve nem tartalmazza ":value"', + 'search_modifier_source_account_starts' => 'Forrásszámla nevének eleje":value"', + 'search_modifier_not_source_account_starts' => 'Forrásszámla nevének eleje nem ":value"', + 'search_modifier_source_account_ends' => 'Forrásszámla vége ":value"', + 'search_modifier_not_source_account_ends' => 'Forrásszámla nevének vége nem ":value"', + 'search_modifier_source_account_id' => 'Forrásszámla ID pontosan :value', + 'search_modifier_not_source_account_id' => 'Forrásszámla ID nem :value', + 'search_modifier_source_account_nr_is' => 'Forrásszámla számlaszáma (IBAN) pontosan ":value"', + 'search_modifier_not_source_account_nr_is' => 'Forrásszámla számlaszáma (IBAN) nem ":value"', + 'search_modifier_source_account_nr_contains' => 'Forrásszámla számlaszáma (IBAN) tartalmazza ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Forrásszámla számlaszáma (IBAN) nem tartalmazza ":value"', + 'search_modifier_source_account_nr_starts' => 'Forrásszámla számlaszáma (IBAN) kezdete ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Forrásszámla számlaszám (IBAN) kezdete nem ":value"', + 'search_modifier_source_account_nr_ends' => 'Forrásszámla számlaszáma (IBAN) vége ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Forrásszámla számlaszáma (IBAN) nem így végződik ":value"', + 'search_modifier_destination_account_is' => 'Célszámla neve pontosan ":value"', + 'search_modifier_not_destination_account_is' => 'Célszámla neve nem ":value"', + 'search_modifier_destination_account_contains' => 'Célszámla neve tartalmazza ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Célszámla nevének eleje: ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Célszámla számlaszám (IBAN) pontosan: ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Célszámla számlaszám (IBAN) tartalmazza ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Célszámla számlaszáma (IBAN) eleje: ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Célszámla számlaszám (IBAN) vége ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'A kategória ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'A költségkeret ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'A számla ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Tranzakció típusa: :value', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'A címke ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => '":rule" szabály frissítése a keresési feltételek alapján', - 'create_rule_from_query' => 'Új szabály létrehozása a keresési feltételek alapján', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => '":rule" szabály frissítése a keresési feltételek alapján', + 'create_rule_from_query' => 'Új szabály létrehozása a keresési feltételek alapján', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'A következő módosítókat a keresésre is alkalmaztuk:', - 'general_search_error' => 'Hiba történt keresés közben. További információ a naplófájlokban található.', - 'search_box' => 'Keresés', - 'search_box_intro' => 'Üdvözöljük a Firefly III kereső funkciójában. Írja be a keresési kifejezését a mezőbe. Győződjön meg róla, hogy alaposan tanulmányozta a súgót, mert a keresés meglhetősen összetett funkció.', - 'search_error' => 'Hiba történt keresés közben', - 'search_searching' => 'Keresés ...', - 'search_results' => 'Keresési eredmények', + 'modifiers_applies_are' => 'A következő módosítókat a keresésre is alkalmaztuk:', + 'general_search_error' => 'Hiba történt keresés közben. További információ a naplófájlokban található.', + 'search_box' => 'Keresés', + 'search_box_intro' => 'Üdvözöljük a Firefly III kereső funkciójában. Írja be a keresési kifejezését a mezőbe. Győződjön meg róla, hogy alaposan tanulmányozta a súgót, mert a keresés meglhetősen összetett funkció.', + 'search_error' => 'Hiba történt keresés közben', + 'search_searching' => 'Keresés ...', + 'search_results' => 'Keresési eredmények', // repeat frequencies: - 'repeat_freq_yearly' => 'éves', - 'repeat_freq_half-year' => 'félévente', - 'repeat_freq_quarterly' => 'negyedéves', - 'repeat_freq_monthly' => 'havi', - 'repeat_freq_weekly' => 'heti', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'heti', - 'quarterly' => 'negyedéves', - 'half-year' => 'félévente', - 'yearly' => 'éves', + 'repeat_freq_yearly' => 'éves', + 'repeat_freq_half-year' => 'félévente', + 'repeat_freq_quarterly' => 'negyedéves', + 'repeat_freq_monthly' => 'havi', + 'repeat_freq_weekly' => 'heti', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'heti', + 'quarterly' => 'negyedéves', + 'half-year' => 'félévente', + 'yearly' => 'éves', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Inaktív szabályokat nem lehet futtatni.', - 'show_triggers' => 'Mutasd az eseményindítókat', - 'show_actions' => 'Műveletek mutatása', - 'rules' => 'Szabályok', - 'rule_name' => 'Szabály neve', - 'rule_triggers' => 'A szabály életbe lép amikor', - 'rule_actions' => 'A szabály ez lesz', - 'new_rule' => 'Új szabály', - 'new_rule_group' => 'Új szabálycsoport', - 'rule_priority_up' => 'Nagyobb prioritás a szabálynak', - 'rule_priority_down' => 'Kissebb prioritás a szabálynak', - 'make_new_rule_group' => 'Új szabálycsoport létrehozása', - 'store_new_rule_group' => 'Új szabálycsoport tárolása', - 'created_new_rule_group' => '":title" szabálycsoport tárolva!', - 'updated_rule_group' => '":title" szabálycsoport sikeresen frissítve.', - 'edit_rule_group' => '":title" szabálycsoport szerkesztése', - 'duplicate_rule' => 'Duplikált szabály: ":title"', - 'rule_copy_of' => '":title" másolata', - 'duplicated_rule' => '":title" szabály duplikálva ide: ":newTitle"', - 'delete_rule_group' => '":title" szabálycsoport törlése', - 'deleted_rule_group' => '":title" szabálycsoport törölve', - 'update_rule_group' => 'Szabálycsoport frissítése', - 'no_rules_in_group' => 'Ebben a csoportban nincsenek szabályok', - 'move_rule_group_up' => 'Szabálycsoport felfelé mozgatása', - 'move_rule_group_down' => 'Szabálycsoport lefelé mozgatása', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Új szabály létrehozása a ":title" szabálycsoportban', - 'make_new_rule_no_group' => 'Szabály létrehozás', - 'instructions_rule_from_bill' => 'Annak érdekében, hogy a tranzakciók egyeztetve legyenek az új ":name" számlával, a Firefly III létrehoz egy szabályt, ami automatikusan ellenőrzi az összes letárolt tranzakciót. Ellenőrizd a lent található részleteket, és tárold el a szabályt, hogy a Firefly III automatikusan egyeztesse a tranzakciókat az új számlával.', - 'instructions_rule_from_journal' => 'Szabály létrehozása egy tranzakció alapján. Ki kell egészíteni vagy be kell küldeni a lenti űrlapot.', - 'rule_is_strict' => 'szigorú szabály', - 'rule_is_not_strict' => 'nem szigorú szabály', - 'rule_help_stop_processing' => 'Ha bejelölt, a csoport későbbi szabályai nem lesznek végrehajtva.', - 'rule_help_strict' => 'A szigorú szabályokban a műveletek végrehajtásához MINDEN eseményindítónak el kell indulnia. A nem szigorú szabályokban BÁRMELY eseményindító elég a műveletek végrehajtásához.', - 'rule_help_active' => 'Az inaktív szabályok sose fognak életbe lépni.', - 'stored_new_rule' => 'Új szabály ":title" címmel eltárolva', - 'deleted_rule' => '":title" című szabály törölve', - 'store_new_rule' => 'Új szabály tárolása', - 'updated_rule' => '":title" című szabály frissítve', - 'default_rule_group_name' => 'Alapértelmezés szerinti szabályok', - 'default_rule_group_description' => 'Csoporthoz nem rendelt szabályok.', - 'trigger' => 'Eseményindító', - 'trigger_value' => 'Eseményindító értéke', - 'stop_processing_other_triggers' => 'Egyéb eseményindítók feldolgozásának leállítása', - 'add_rule_trigger' => 'Új eseményindító hozzáadása', - 'action' => 'Művelet', - 'action_value' => 'Művelet érték', - 'stop_executing_other_actions' => 'Egyéb műveletek végrehajtásának leállítása', - 'add_rule_action' => 'Új művelet hozzáadása', - 'edit_rule' => '":title" szabály szerkesztése', - 'delete_rule' => '":title" szabály törlése', - 'update_rule' => 'Frissítési szabály', - 'test_rule_triggers' => 'Egyező tranzakciók mutatása', - 'warning_no_matching_transactions' => 'Nincs a feltételeknek megfelelő tranzakció.', - 'warning_no_valid_triggers' => 'Nincs megadva érvényes eseményindító.', - 'apply_rule_selection' => '":title" szabály alkalmazása a tranzakciók egy csoportján', - 'apply_rule_selection_intro' => 'Az olyan szabályok mint a ":title" normális esetben csak az új vagy a frissített tranzakciókon lesznek alkalmazva, de meg lehet mondani a Firefly III-nak, hogy futtassa le a már létező tranzakciókon. Ez hasznos lehet, ha egy szabály frissítve lett és a módosításokat az összes tranzakción alkalmazni kell.', - 'include_transactions_from_accounts' => 'Beleértve a tranzakciókat ezekből a számlákból', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Végrehajtás', - 'apply_rule_group_selection' => '":title" szabálycsoport alkalmazása a tranzakciók egy csoportján', - 'apply_rule_group_selection_intro' => 'Az olyan szabálycsoportok mint a ":title" normális esetben csak az új vagy a frissített tranzakciókon lesznek alkalmazva, de meg lehet mondani a Firefly III-nak, hogy futtassa le a csoportban lévő összes szabályt a már létező tranzakciókon. Ez hasznos lehet, ha egy szabálycsoport frissítve lett és a módosításokat az összes tranzakción alkalmazni kell.', - 'applied_rule_group_selection' => '":title" szabálycsoport alkalmazva a kiválasztásra.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Inaktív szabályokat nem lehet futtatni.', + 'show_triggers' => 'Mutasd az eseményindítókat', + 'show_actions' => 'Műveletek mutatása', + 'rules' => 'Szabályok', + 'rule_name' => 'Szabály neve', + 'rule_triggers' => 'A szabály életbe lép amikor', + 'rule_actions' => 'A szabály ez lesz', + 'new_rule' => 'Új szabály', + 'new_rule_group' => 'Új szabálycsoport', + 'rule_priority_up' => 'Nagyobb prioritás a szabálynak', + 'rule_priority_down' => 'Kissebb prioritás a szabálynak', + 'make_new_rule_group' => 'Új szabálycsoport létrehozása', + 'store_new_rule_group' => 'Új szabálycsoport tárolása', + 'created_new_rule_group' => '":title" szabálycsoport tárolva!', + 'updated_rule_group' => '":title" szabálycsoport sikeresen frissítve.', + 'edit_rule_group' => '":title" szabálycsoport szerkesztése', + 'duplicate_rule' => 'Duplikált szabály: ":title"', + 'rule_copy_of' => '":title" másolata', + 'duplicated_rule' => '":title" szabály duplikálva ide: ":newTitle"', + 'delete_rule_group' => '":title" szabálycsoport törlése', + 'deleted_rule_group' => '":title" szabálycsoport törölve', + 'update_rule_group' => 'Szabálycsoport frissítése', + 'no_rules_in_group' => 'Ebben a csoportban nincsenek szabályok', + 'move_rule_group_up' => 'Szabálycsoport felfelé mozgatása', + 'move_rule_group_down' => 'Szabálycsoport lefelé mozgatása', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Új szabály létrehozása a ":title" szabálycsoportban', + 'make_new_rule_no_group' => 'Szabály létrehozás', + 'instructions_rule_from_bill' => 'Annak érdekében, hogy a tranzakciók egyeztetve legyenek az új ":name" számlával, a Firefly III létrehoz egy szabályt, ami automatikusan ellenőrzi az összes letárolt tranzakciót. Ellenőrizd a lent található részleteket, és tárold el a szabályt, hogy a Firefly III automatikusan egyeztesse a tranzakciókat az új számlával.', + 'instructions_rule_from_journal' => 'Szabály létrehozása egy tranzakció alapján. Ki kell egészíteni vagy be kell küldeni a lenti űrlapot.', + 'rule_is_strict' => 'szigorú szabály', + 'rule_is_not_strict' => 'nem szigorú szabály', + 'rule_help_stop_processing' => 'Ha bejelölt, a csoport későbbi szabályai nem lesznek végrehajtva.', + 'rule_help_strict' => 'A szigorú szabályokban a műveletek végrehajtásához MINDEN eseményindítónak el kell indulnia. A nem szigorú szabályokban BÁRMELY eseményindító elég a műveletek végrehajtásához.', + 'rule_help_active' => 'Az inaktív szabályok sose fognak életbe lépni.', + 'stored_new_rule' => 'Új szabály ":title" címmel eltárolva', + 'deleted_rule' => '":title" című szabály törölve', + 'store_new_rule' => 'Új szabály tárolása', + 'updated_rule' => '":title" című szabály frissítve', + 'default_rule_group_name' => 'Alapértelmezés szerinti szabályok', + 'default_rule_group_description' => 'Csoporthoz nem rendelt szabályok.', + 'trigger' => 'Eseményindító', + 'trigger_value' => 'Eseményindító értéke', + 'stop_processing_other_triggers' => 'Egyéb eseményindítók feldolgozásának leállítása', + 'add_rule_trigger' => 'Új eseményindító hozzáadása', + 'action' => 'Művelet', + 'action_value' => 'Művelet érték', + 'stop_executing_other_actions' => 'Egyéb műveletek végrehajtásának leállítása', + 'add_rule_action' => 'Új művelet hozzáadása', + 'edit_rule' => '":title" szabály szerkesztése', + 'delete_rule' => '":title" szabály törlése', + 'update_rule' => 'Frissítési szabály', + 'test_rule_triggers' => 'Egyező tranzakciók mutatása', + 'warning_no_matching_transactions' => 'Nincs a feltételeknek megfelelő tranzakció.', + 'warning_no_valid_triggers' => 'Nincs megadva érvényes eseményindító.', + 'apply_rule_selection' => '":title" szabály alkalmazása a tranzakciók egy csoportján', + 'apply_rule_selection_intro' => 'Az olyan szabályok mint a ":title" normális esetben csak az új vagy a frissített tranzakciókon lesznek alkalmazva, de meg lehet mondani a Firefly III-nak, hogy futtassa le a már létező tranzakciókon. Ez hasznos lehet, ha egy szabály frissítve lett és a módosításokat az összes tranzakción alkalmazni kell.', + 'include_transactions_from_accounts' => 'Beleértve a tranzakciókat ezekből a számlákból', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Végrehajtás', + 'apply_rule_group_selection' => '":title" szabálycsoport alkalmazása a tranzakciók egy csoportján', + 'apply_rule_group_selection_intro' => 'Az olyan szabálycsoportok mint a ":title" normális esetben csak az új vagy a frissített tranzakciókon lesznek alkalmazva, de meg lehet mondani a Firefly III-nak, hogy futtassa le a csoportban lévő összes szabályt a már létező tranzakciókon. Ez hasznos lehet, ha egy szabálycsoport frissítve lett és a módosításokat az összes tranzakción alkalmazni kell.', + 'applied_rule_group_selection' => '":title" szabálycsoport alkalmazva a kiválasztásra.', // actions and triggers - 'rule_trigger_store_journal' => 'Tranzakció létrehozásakor', - 'rule_trigger_update_journal' => 'Tranzakció frissítésekor', - 'rule_trigger_user_action' => 'A felhasználói művelet ":trigger_value"', + 'rule_trigger_store_journal' => 'Tranzakció létrehozásakor', + 'rule_trigger_update_journal' => 'Tranzakció frissítésekor', + 'rule_trigger_user_action' => 'A felhasználói művelet ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Forrásszámla nevének eleje..', - 'rule_trigger_source_account_starts' => 'Forrásszámla nevének eleje: ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Forrásszámla nevének vége..', - 'rule_trigger_source_account_ends' => 'Forrásszámla nevének vége ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'A forrásszámla neve..', - 'rule_trigger_source_account_is' => 'Forrásszámla neve: ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Forrásszámla neve tartalmazza..', - 'rule_trigger_source_account_contains' => 'Forrásszámla neve tartalmazza: ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Forrásszámla ID pontosan..', - 'rule_trigger_source_account_id' => 'Forrásszámla ID pontosan :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Célszámla ID pontosan..', - 'rule_trigger_destination_account_id' => 'Célszámla ID pontosan :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Forrásszámla egy készpénz számla', - 'rule_trigger_source_is_cash' => 'Forrásszámla egy készpénz számla', - 'rule_trigger_destination_is_cash_choice' => 'Célszámla egy készpénz számla', - 'rule_trigger_destination_is_cash' => 'Célszámla egy készpénz számla', - 'rule_trigger_source_account_nr_starts_choice' => 'Forrásszámla számlaszáma / IBAN eleje..', - 'rule_trigger_source_account_nr_starts' => 'Forrásszámla számlaszáma / IBAN eleje: ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Forrásszámla számlaszáma / IBAN vége..', - 'rule_trigger_source_account_nr_ends' => 'Forrásszámla számlaszáma / IBAN vége: ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Forrásszámla száma / IBAN..', - 'rule_trigger_source_account_nr_is' => 'Forrásszámla száma / IBAN: ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Forrásszámla száma / IBAN tartalmazza..', - 'rule_trigger_source_account_nr_contains' => 'Forrásszámla száma / IBAN tartalmazza: ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Célszámla nevének eleje..', - 'rule_trigger_destination_account_starts' => 'Célszámla nevének eleje: ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Célszámla nevének vége..', - 'rule_trigger_destination_account_ends' => 'Célszámla nevének vége: ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'A célszámla neve..', - 'rule_trigger_destination_account_is' => 'Célszámla neve: ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'A célszámla neve tartalmazza..', - 'rule_trigger_destination_account_contains' => 'Célszámla neve tartalmazza: ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Célszámla számlaszáma / IBAN eleje..', - 'rule_trigger_destination_account_nr_starts' => 'Célszámla számlaszáma / IBAN eleje: ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Célszámla számlaszáma / IBAN eleje..', - 'rule_trigger_destination_account_nr_ends' => 'Célszámla számlaszáma / IBAN vége: ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Célszámla száma / IBAN..', - 'rule_trigger_destination_account_nr_is' => 'Célszámla száma / IBAN: ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Célszámla száma / IBAN tartalmazza..', - 'rule_trigger_destination_account_nr_contains' => 'Célszámla száma / IBAN tartalmazza: ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'A tranzakció típusa..', - 'rule_trigger_transaction_type' => 'Tranzakció típusa ":trigger_value"', - 'rule_trigger_category_is_choice' => 'A kategória..', - 'rule_trigger_category_is' => 'A kategória ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Leírás eleje..', - 'rule_trigger_description_starts' => 'Leírás eleje: ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Leírás vége..', - 'rule_trigger_description_ends' => 'Leírás vége: ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'A leírás tartalmazza..', - 'rule_trigger_description_contains' => 'Leírás tartalmazza: ":trigger_value"', - 'rule_trigger_description_is_choice' => 'A leírás pontosan..', - 'rule_trigger_description_is' => 'Leírás: ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Tranzakció dátuma korábbi, mint..', - 'rule_trigger_date_before' => 'Tranzakció dátuma korábbi, mint ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Tranzakció dátuma későbbi, mint..', - 'rule_trigger_date_after' => 'Tranzakció dátuma későbbi, mint ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'A költségkeret..', - 'rule_trigger_budget_is' => 'Költségkeret: ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'A tranzakció pénzneme..', - 'rule_trigger_currency_is' => 'A tranzakció pénzneme: ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Legalább ennyi melléklete van', - 'rule_trigger_has_attachments' => 'Legalább :trigger_value melléklete van', - 'rule_trigger_has_no_category_choice' => 'Nincs kategóriája', - 'rule_trigger_has_no_category' => 'A tranzakcióhoz nincs kategóriája', - 'rule_trigger_has_any_category_choice' => 'Van kategóriája', - 'rule_trigger_has_any_category' => 'A tranzakciónak van kategóriája', - 'rule_trigger_has_no_budget_choice' => 'Nincs költségkerete', - 'rule_trigger_has_no_budget' => 'Költségkeret nélküli tranzakciók', - 'rule_trigger_has_any_budget_choice' => 'Van költségkerete', - 'rule_trigger_has_any_budget' => 'Költségkerettel rendelkező tranzakció', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Nincsenek címkéi', - 'rule_trigger_has_no_tag' => 'Címke nélküli tranzakció', - 'rule_trigger_has_any_tag_choice' => 'Van legalább egy címkéje', - 'rule_trigger_has_any_tag' => 'A tranzakciónak van legalább egy címkéje', - 'rule_trigger_any_notes_choice' => 'Van megjegyzése', - 'rule_trigger_any_notes' => 'A tranzakciónak van megjegyzése', - 'rule_trigger_no_notes_choice' => 'Nincsenek megjegyzései', - 'rule_trigger_no_notes' => 'A tranzakciónak nincs megjegyzése', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'A számla..', - 'rule_trigger_bill_is' => 'A számla ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Forrásszámla nevének eleje..', + 'rule_trigger_source_account_starts' => 'Forrásszámla nevének eleje: ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Forrásszámla nevének vége..', + 'rule_trigger_source_account_ends' => 'Forrásszámla nevének vége ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'A forrásszámla neve..', + 'rule_trigger_source_account_is' => 'Forrásszámla neve: ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Forrásszámla neve tartalmazza..', + 'rule_trigger_source_account_contains' => 'Forrásszámla neve tartalmazza: ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Forrásszámla ID pontosan..', + 'rule_trigger_source_account_id' => 'Forrásszámla ID pontosan :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Célszámla ID pontosan..', + 'rule_trigger_destination_account_id' => 'Célszámla ID pontosan :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Forrásszámla egy készpénz számla', + 'rule_trigger_source_is_cash' => 'Forrásszámla egy készpénz számla', + 'rule_trigger_destination_is_cash_choice' => 'Célszámla egy készpénz számla', + 'rule_trigger_destination_is_cash' => 'Célszámla egy készpénz számla', + 'rule_trigger_source_account_nr_starts_choice' => 'Forrásszámla számlaszáma / IBAN eleje..', + 'rule_trigger_source_account_nr_starts' => 'Forrásszámla számlaszáma / IBAN eleje: ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Forrásszámla számlaszáma / IBAN vége..', + 'rule_trigger_source_account_nr_ends' => 'Forrásszámla számlaszáma / IBAN vége: ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Forrásszámla száma / IBAN..', + 'rule_trigger_source_account_nr_is' => 'Forrásszámla száma / IBAN: ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Forrásszámla száma / IBAN tartalmazza..', + 'rule_trigger_source_account_nr_contains' => 'Forrásszámla száma / IBAN tartalmazza: ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Célszámla nevének eleje..', + 'rule_trigger_destination_account_starts' => 'Célszámla nevének eleje: ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Célszámla nevének vége..', + 'rule_trigger_destination_account_ends' => 'Célszámla nevének vége: ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'A célszámla neve..', + 'rule_trigger_destination_account_is' => 'Célszámla neve: ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'A célszámla neve tartalmazza..', + 'rule_trigger_destination_account_contains' => 'Célszámla neve tartalmazza: ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Célszámla számlaszáma / IBAN eleje..', + 'rule_trigger_destination_account_nr_starts' => 'Célszámla számlaszáma / IBAN eleje: ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Célszámla számlaszáma / IBAN eleje..', + 'rule_trigger_destination_account_nr_ends' => 'Célszámla számlaszáma / IBAN vége: ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Célszámla száma / IBAN..', + 'rule_trigger_destination_account_nr_is' => 'Célszámla száma / IBAN: ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Célszámla száma / IBAN tartalmazza..', + 'rule_trigger_destination_account_nr_contains' => 'Célszámla száma / IBAN tartalmazza: ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'A tranzakció típusa..', + 'rule_trigger_transaction_type' => 'Tranzakció típusa ":trigger_value"', + 'rule_trigger_category_is_choice' => 'A kategória..', + 'rule_trigger_category_is' => 'A kategória ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Leírás eleje..', + 'rule_trigger_description_starts' => 'Leírás eleje: ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Leírás vége..', + 'rule_trigger_description_ends' => 'Leírás vége: ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'A leírás tartalmazza..', + 'rule_trigger_description_contains' => 'Leírás tartalmazza: ":trigger_value"', + 'rule_trigger_description_is_choice' => 'A leírás pontosan..', + 'rule_trigger_description_is' => 'Leírás: ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Tranzakció dátuma korábbi, mint..', + 'rule_trigger_date_before' => 'Tranzakció dátuma korábbi, mint ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Tranzakció dátuma későbbi, mint..', + 'rule_trigger_date_after' => 'Tranzakció dátuma későbbi, mint ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'A költségkeret..', + 'rule_trigger_budget_is' => 'Költségkeret: ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'A tranzakció pénzneme..', + 'rule_trigger_currency_is' => 'A tranzakció pénzneme: ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Legalább ennyi melléklete van', + 'rule_trigger_has_attachments' => 'Legalább :trigger_value melléklete van', + 'rule_trigger_has_no_category_choice' => 'Nincs kategóriája', + 'rule_trigger_has_no_category' => 'A tranzakcióhoz nincs kategóriája', + 'rule_trigger_has_any_category_choice' => 'Van kategóriája', + 'rule_trigger_has_any_category' => 'A tranzakciónak van kategóriája', + 'rule_trigger_has_no_budget_choice' => 'Nincs költségkerete', + 'rule_trigger_has_no_budget' => 'Költségkeret nélküli tranzakciók', + 'rule_trigger_has_any_budget_choice' => 'Van költségkerete', + 'rule_trigger_has_any_budget' => 'Költségkerettel rendelkező tranzakció', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Nincsenek címkéi', + 'rule_trigger_has_no_tag' => 'Címke nélküli tranzakció', + 'rule_trigger_has_any_tag_choice' => 'Van legalább egy címkéje', + 'rule_trigger_has_any_tag' => 'A tranzakciónak van legalább egy címkéje', + 'rule_trigger_any_notes_choice' => 'Van megjegyzése', + 'rule_trigger_any_notes' => 'A tranzakciónak van megjegyzése', + 'rule_trigger_no_notes_choice' => 'Nincsenek megjegyzései', + 'rule_trigger_no_notes' => 'A tranzakciónak nincs megjegyzése', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'A számla..', + 'rule_trigger_bill_is' => 'A számla ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Kategória beállítása ":action_value"', - 'rule_action_clear_category' => 'Kategória törlése', - 'rule_action_set_budget' => 'Költségvetés beállítása: ":action_value"', - 'rule_action_clear_budget' => 'Költségkeret törlése', - 'rule_action_add_tag' => 'Címke hozzáadása ":action_value"', - 'rule_action_remove_tag' => 'Címke eltávolítása ":action_value"', - 'rule_action_remove_all_tags' => 'Minden címke eltávolítása', - 'rule_action_set_description' => 'Leírást megadása: ":action_value"', - 'rule_action_append_description' => 'Hozzáfűzés a leírás végéhez ":action_value"', - 'rule_action_prepend_description' => 'Hozzáfűzés a leírás elejéhez ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Minden kategória törlése', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Minden költségvetés törlése', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Minden címke eltávolítása', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Forrásfiók beállítása :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Célfiók beállítása :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Hozzáfűzés a jegyzetekhez ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Hozzáfűzés a jegyzetek elejéhez ":action_value"', - 'rule_action_clear_notes_choice' => 'Megjegyzések eltávolítása', - 'rule_action_clear_notes' => 'Megjegyzések eltávolítása', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Számlához csatolás: ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Jegyzetek megadása: ":action_value"', - 'rule_action_convert_deposit_choice' => 'A tranzakció bevétellé konvertálása', - 'rule_action_convert_deposit' => 'Tranzakció bevétellé konvertálása innen: ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'A tranzakció költséggé konvertálása', - 'rule_action_convert_withdrawal' => 'Tranzakció költséggé konvertálása ide: ":action_value"', - 'rule_action_convert_transfer_choice' => 'A tranzakció átvezetéssé konvertálása', - 'rule_action_convert_transfer' => 'Tranzakció átvezetéssé konvertálása ezzel: ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Szabálycsoport a számlákhoz', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Új szabály létrehozás a számlához ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Szabály a számlához: ":name"', - 'new_rule_for_bill_description' => 'Ez a szabály megjelöli a tranzakciókat ":name" számla számára.', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Kategória beállítása ":action_value"', + 'rule_action_clear_category' => 'Kategória törlése', + 'rule_action_set_budget' => 'Költségvetés beállítása: ":action_value"', + 'rule_action_clear_budget' => 'Költségkeret törlése', + 'rule_action_add_tag' => 'Címke hozzáadása ":action_value"', + 'rule_action_remove_tag' => 'Címke eltávolítása ":action_value"', + 'rule_action_remove_all_tags' => 'Minden címke eltávolítása', + 'rule_action_set_description' => 'Leírást megadása: ":action_value"', + 'rule_action_append_description' => 'Hozzáfűzés a leírás végéhez ":action_value"', + 'rule_action_prepend_description' => 'Hozzáfűzés a leírás elejéhez ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Minden kategória törlése', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Minden költségvetés törlése', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Minden címke eltávolítása', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Forrásfiók beállítása :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Célfiók beállítása :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Hozzáfűzés a jegyzetekhez ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Hozzáfűzés a jegyzetek elejéhez ":action_value"', + 'rule_action_clear_notes_choice' => 'Megjegyzések eltávolítása', + 'rule_action_clear_notes' => 'Megjegyzések eltávolítása', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Számlához csatolás: ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Jegyzetek megadása: ":action_value"', + 'rule_action_convert_deposit_choice' => 'A tranzakció bevétellé konvertálása', + 'rule_action_convert_deposit' => 'Tranzakció bevétellé konvertálása innen: ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'A tranzakció költséggé konvertálása', + 'rule_action_convert_withdrawal' => 'Tranzakció költséggé konvertálása ide: ":action_value"', + 'rule_action_convert_transfer_choice' => 'A tranzakció átvezetéssé konvertálása', + 'rule_action_convert_transfer' => 'Tranzakció átvezetéssé konvertálása ezzel: ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Szabálycsoport a számlákhoz', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Új szabály létrehozás a számlához ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Szabály a számlához: ":name"', + 'new_rule_for_bill_description' => 'Ez a szabály megjelöli a tranzakciókat ":name" számla számára.', - 'new_rule_for_journal_title' => '":description" tranzakción alapuló szabály', - 'new_rule_for_journal_description' => 'Ez a szabály ":description" tranzakción alapul. A pontosan azonos tranzakciókkal fog egyezni.', + 'new_rule_for_journal_title' => '":description" tranzakción alapuló szabály', + 'new_rule_for_journal_description' => 'Ez a szabály ":description" tranzakción alapul. A pontosan azonos tranzakciókkal fog egyezni.', // tags - 'store_new_tag' => 'Új címke tárolása', - 'update_tag' => 'Címke frissítése', - 'no_location_set' => 'Nincs hely beállítása.', - 'meta_data' => 'Metaadat', - 'location' => 'Hely', - 'location_first_split' => 'A tranzakció helyszíne a tranzakció első bontásánál állítható be.', - 'without_date' => 'Dátum nélkül', - 'result' => 'Eredmény', - 'sums_apply_to_range' => 'Minden összeg alkalmazása a kiválasztott tartományra', - 'mapbox_api_key' => 'A térkép használatához be kell szerezni egy API kulcsot a Mapbox oldalról. A kódot a .env fájlba, a MAPBOX_API_KEY = után kell beírni.', - 'press_object_location' => 'Jobb kattintással vagy az egérgomb hosszan nyomva tartásával lehet beállítani az objektum helyét.', - 'click_tap_location' => 'Kattints, vagy érintsd meg a térképet helyszín hozzáadásához', - 'clear_location' => 'Hely törlése', - 'delete_all_selected_tags' => 'Minden kiválasztott címke törlése', - 'select_tags_to_delete' => 'Ki kell választani néhány címkét.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Szabály létrehozása tranzakció alapján', - 'create_recurring_from_transaction' => 'Ismétlődő tranzakció létrehozása a tranzakció alapján', + 'store_new_tag' => 'Új címke tárolása', + 'update_tag' => 'Címke frissítése', + 'no_location_set' => 'Nincs hely beállítása.', + 'meta_data' => 'Metaadat', + 'location' => 'Hely', + 'location_first_split' => 'A tranzakció helyszíne a tranzakció első bontásánál állítható be.', + 'without_date' => 'Dátum nélkül', + 'result' => 'Eredmény', + 'sums_apply_to_range' => 'Minden összeg alkalmazása a kiválasztott tartományra', + 'mapbox_api_key' => 'A térkép használatához be kell szerezni egy API kulcsot a Mapbox oldalról. A kódot a .env fájlba, a MAPBOX_API_KEY = után kell beírni.', + 'press_object_location' => 'Jobb kattintással vagy az egérgomb hosszan nyomva tartásával lehet beállítani az objektum helyét.', + 'click_tap_location' => 'Kattints, vagy érintsd meg a térképet helyszín hozzáadásához', + 'clear_location' => 'Hely törlése', + 'delete_all_selected_tags' => 'Minden kiválasztott címke törlése', + 'select_tags_to_delete' => 'Ki kell választani néhány címkét.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Szabály létrehozása tranzakció alapján', + 'create_recurring_from_transaction' => 'Ismétlődő tranzakció létrehozása a tranzakció alapján', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(nyelvvel megegyező)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Kezdőoldali számlák', - 'pref_home_screen_accounts_help' => 'Melyik számlák legyenek megjelenítve a kezdőoldalon?', - 'pref_view_range' => 'Tartomány mutatása', - 'pref_view_range_help' => 'Néhány diagram automatikusan időszakokba lesz csoportosítva. A költségkeretek szintén időszakokba lesznek csoportosítva. Milyen időszakot részesít előnyben?', - 'pref_1D' => 'Egy nap', - 'pref_1W' => 'Egy hét', - 'pref_1M' => 'Egy hónap', - 'pref_3M' => 'Három hónap (negyedév)', - 'pref_6M' => 'Hat hónap', - 'pref_1Y' => 'Egy év', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Nyelvek', - 'pref_locale' => 'Területi beállítások', - 'pref_languages_help' => 'A Firefly III több nyelven is elérhető. Melyiket szeretné használni?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'Ez a funkció nem működik a demo felhasználónak.', - 'pref_custom_fiscal_year' => 'Költségvetési év beállításai', - 'pref_custom_fiscal_year_label' => 'Engedélyezett', - 'pref_custom_fiscal_year_help' => 'Azokban az országokban ahol a pénzügyi év nem Január 1 és December 31 közé esik, be lehet ezt kapcsolni és meg lehet adni a pénzügyi év kezdő- és végdátumát', - 'pref_fiscal_year_start_label' => 'Üzleti év kezdődátuma', - 'pref_two_factor_auth' => 'Kétlépcsős azonosítás', - 'pref_two_factor_auth_help' => 'Ha a kétlépéses igazolás (más néven kétfaktoros hitelesítés) engedélyezett, egy extra réteg lesz hozzáadva a fiók biztonságához. A bejelentkezéshez kell valami ismert (a jelszó) és valami meglévő (egy ellenőrző kód). Az ellenőrző kódokat olyan telefonos alkalmazások generálják, mint az Authy vagy a Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Kétlépcsős azonosítás engedélyezése', - 'pref_two_factor_auth_disabled' => '2 lépcsős azonosítási kód eltávolítva és letilva', - 'pref_two_factor_auth_remove_it' => 'Ne felejtse el törölni a fiókot a hitelesítő alkalmazásából!', - 'pref_two_factor_auth_code' => 'Kód megerősítése', - 'pref_two_factor_auth_code_help' => 'Be kell olvasni a QR kódot a telefonon található Authy, Google Authenticator vagy egy ezekhez hasonló alkalmazással, majd be kell írni a létrehozott kódot.', - 'pref_two_factor_auth_reset_code' => 'Ellenőrző kód visszaállítása', - 'pref_two_factor_auth_disable_2fa' => '2FA kikapcsolása', - '2fa_use_secret_instead' => 'Ha nincs lehetőség a QR kód beolvasására, akkor helyette a titkos kulcs is hasznáható: :secret.', - '2fa_backup_codes' => 'Mentsd el a biztonsági kódokat, arra az esetre, ha elveszted az eszközödet.', - '2fa_already_enabled' => 'A kétlépéses ellenőrzés már engedélyezve van.', - 'wrong_mfa_code' => 'Ez az MFA kód nem érvényes.', - 'pref_save_settings' => 'Beállítások mentése', - 'saved_preferences' => 'Beállítások elmentve!', - 'preferences_general' => 'Általános', - 'preferences_frontpage' => 'Kezdőoldal', - 'preferences_security' => 'Biztonság', - 'preferences_layout' => 'Elrendezés', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Bevételek mutatása a kezdőoldalon', - 'pref_home_show_deposits_info' => 'A kezdőoldalon már látszanak a költségszámlák. Szeretné a jövedelemszámlákat is megjeleníteni?', - 'pref_home_do_show_deposits' => 'Igen, mutasd', - 'successful_count' => 'ebből :count sikeres', - 'list_page_size_title' => 'Oldal mérete', - 'list_page_size_help' => 'Minden dologból (számlák, tranzakciók, stb) legfeljebb ennyi lesz megjelenítve oldalanként.', - 'list_page_size_label' => 'Oldal mérete', - 'between_dates' => '(:start és :end)', - 'pref_optional_fields_transaction' => 'Tranzakciók választható mezői', - 'pref_optional_fields_transaction_help' => 'Alapértelmezés szerint új tranzakció létrehozásakor nem minden mező engedélyezett (hogy elkerüljük a túlzsúfoltságot). Ezeket a mezőket lent lehet engedélyezni ha valamelyikre szükség van. Természetesen azok a letiltott mezők amelyek már ki vannak töltve, a beállítástól függetlenül láthatóak lesznek.', - 'optional_tj_date_fields' => 'Dátummezők', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Melléklet mezők', - 'pref_optional_tj_interest_date' => 'Kamatfizetési időpont', - 'pref_optional_tj_book_date' => 'Könyvelés dátuma', - 'pref_optional_tj_process_date' => 'Feldolgozás dátuma', - 'pref_optional_tj_due_date' => 'Esedékesség dátuma', - 'pref_optional_tj_payment_date' => 'Kifizetés dátuma', - 'pref_optional_tj_invoice_date' => 'Számla dátuma', - 'pref_optional_tj_internal_reference' => 'Belső hivatkozás', - 'pref_optional_tj_notes' => 'Megjegyzések', - 'pref_optional_tj_attachments' => 'Mellékletek', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Dátumok', - 'optional_field_meta_business' => 'Üzleti', - 'optional_field_attachments' => 'Mellékletek', - 'optional_field_meta_data' => 'Opcionális metaadat', - 'external_url' => 'External URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(nyelvvel megegyező)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Kezdőoldali számlák', + 'pref_home_screen_accounts_help' => 'Melyik számlák legyenek megjelenítve a kezdőoldalon?', + 'pref_view_range' => 'Tartomány mutatása', + 'pref_view_range_help' => 'Néhány diagram automatikusan időszakokba lesz csoportosítva. A költségkeretek szintén időszakokba lesznek csoportosítva. Milyen időszakot részesít előnyben?', + 'pref_1D' => 'Egy nap', + 'pref_1W' => 'Egy hét', + 'pref_1M' => 'Egy hónap', + 'pref_3M' => 'Három hónap (negyedév)', + 'pref_6M' => 'Hat hónap', + 'pref_1Y' => 'Egy év', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Nyelvek', + 'pref_locale' => 'Területi beállítások', + 'pref_languages_help' => 'A Firefly III több nyelven is elérhető. Melyiket szeretné használni?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'Ez a funkció nem működik a demo felhasználónak.', + 'pref_custom_fiscal_year' => 'Költségvetési év beállításai', + 'pref_custom_fiscal_year_label' => 'Engedélyezett', + 'pref_custom_fiscal_year_help' => 'Azokban az országokban ahol a pénzügyi év nem Január 1 és December 31 közé esik, be lehet ezt kapcsolni és meg lehet adni a pénzügyi év kezdő- és végdátumát', + 'pref_fiscal_year_start_label' => 'Üzleti év kezdődátuma', + 'pref_two_factor_auth' => 'Kétlépcsős azonosítás', + 'pref_two_factor_auth_help' => 'Ha a kétlépéses igazolás (más néven kétfaktoros hitelesítés) engedélyezett, egy extra réteg lesz hozzáadva a fiók biztonságához. A bejelentkezéshez kell valami ismert (a jelszó) és valami meglévő (egy ellenőrző kód). Az ellenőrző kódokat olyan telefonos alkalmazások generálják, mint az Authy vagy a Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Kétlépcsős azonosítás engedélyezése', + 'pref_two_factor_auth_disabled' => '2 lépcsős azonosítási kód eltávolítva és letilva', + 'pref_two_factor_auth_remove_it' => 'Ne felejtse el törölni a fiókot a hitelesítő alkalmazásából!', + 'pref_two_factor_auth_code' => 'Kód megerősítése', + 'pref_two_factor_auth_code_help' => 'Be kell olvasni a QR kódot a telefonon található Authy, Google Authenticator vagy egy ezekhez hasonló alkalmazással, majd be kell írni a létrehozott kódot.', + 'pref_two_factor_auth_reset_code' => 'Ellenőrző kód visszaállítása', + 'pref_two_factor_auth_disable_2fa' => '2FA kikapcsolása', + '2fa_use_secret_instead' => 'Ha nincs lehetőség a QR kód beolvasására, akkor helyette a titkos kulcs is hasznáható: :secret.', + '2fa_backup_codes' => 'Mentsd el a biztonsági kódokat, arra az esetre, ha elveszted az eszközödet.', + '2fa_already_enabled' => 'A kétlépéses ellenőrzés már engedélyezve van.', + 'wrong_mfa_code' => 'Ez az MFA kód nem érvényes.', + 'pref_save_settings' => 'Beállítások mentése', + 'saved_preferences' => 'Beállítások elmentve!', + 'preferences_general' => 'Általános', + 'preferences_frontpage' => 'Kezdőoldal', + 'preferences_security' => 'Biztonság', + 'preferences_layout' => 'Elrendezés', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Bevételek mutatása a kezdőoldalon', + 'pref_home_show_deposits_info' => 'A kezdőoldalon már látszanak a költségszámlák. Szeretné a jövedelemszámlákat is megjeleníteni?', + 'pref_home_do_show_deposits' => 'Igen, mutasd', + 'successful_count' => 'ebből :count sikeres', + 'list_page_size_title' => 'Oldal mérete', + 'list_page_size_help' => 'Minden dologból (számlák, tranzakciók, stb) legfeljebb ennyi lesz megjelenítve oldalanként.', + 'list_page_size_label' => 'Oldal mérete', + 'between_dates' => '(:start és :end)', + 'pref_optional_fields_transaction' => 'Tranzakciók választható mezői', + 'pref_optional_fields_transaction_help' => 'Alapértelmezés szerint új tranzakció létrehozásakor nem minden mező engedélyezett (hogy elkerüljük a túlzsúfoltságot). Ezeket a mezőket lent lehet engedélyezni ha valamelyikre szükség van. Természetesen azok a letiltott mezők amelyek már ki vannak töltve, a beállítástól függetlenül láthatóak lesznek.', + 'optional_tj_date_fields' => 'Dátummezők', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Melléklet mezők', + 'pref_optional_tj_interest_date' => 'Kamatfizetési időpont', + 'pref_optional_tj_book_date' => 'Könyvelés dátuma', + 'pref_optional_tj_process_date' => 'Feldolgozás dátuma', + 'pref_optional_tj_due_date' => 'Esedékesség dátuma', + 'pref_optional_tj_payment_date' => 'Kifizetés dátuma', + 'pref_optional_tj_invoice_date' => 'Számla dátuma', + 'pref_optional_tj_internal_reference' => 'Belső hivatkozás', + 'pref_optional_tj_notes' => 'Megjegyzések', + 'pref_optional_tj_attachments' => 'Mellékletek', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Dátumok', + 'optional_field_meta_business' => 'Üzleti', + 'optional_field_attachments' => 'Mellékletek', + 'optional_field_meta_data' => 'Opcionális metaadat', + 'external_url' => 'External URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Minden másik bejelentkezésed ki lett léptetve.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'MINDEN költségkeret törlése', - 'delete_all_categories' => 'MINDEN kategória törlése', - 'delete_all_tags' => 'MINDEN címke törlése', - 'delete_all_bills' => 'MINDEN számla törlése', - 'delete_all_piggy_banks' => 'MINDEN malacpersely törlése', - 'delete_all_rules' => 'MINDEN szabály törlése', - 'delete_all_recurring' => 'MINDEN ismétlődő tranzakció törlése', - 'delete_all_object_groups' => 'MINDEN csoport törlése', - 'delete_all_accounts' => 'MINDEN költségszámla törlése', - 'delete_all_asset_accounts' => 'MINDEN eszközszámla törlése', - 'delete_all_expense_accounts' => 'MINDEN költségszámla törlése', - 'delete_all_revenue_accounts' => 'MINDEN jövedelemszámla törlése', - 'delete_all_liabilities' => 'MINDEN kötelezettség törlése', - 'delete_all_transactions' => 'MINDEN tranzakció törlése', - 'delete_all_withdrawals' => 'MINDEN költség törlése', - 'delete_all_deposits' => 'MINDEN bevétel törlése', - 'delete_all_transfers' => 'MINDEN átvezetés törlése', - 'also_delete_transactions' => 'Számlák törlése során MINDEN hozzá kapcsolódó költség, bevétel és átvezetés is törlődik!', - 'deleted_all_budgets' => 'Minden költségkeret törölve', - 'deleted_all_categories' => 'Minden kategória törölve', - 'deleted_all_tags' => 'Minden címke törölve', - 'deleted_all_bills' => 'Minden számla törölve lett', - 'deleted_all_piggy_banks' => 'Minden malacpersely törölve lett', - 'deleted_all_rules' => 'Minden szabály és szabálycsoport törölve lett', - 'deleted_all_object_groups' => 'Minden csoport törölve lett', - 'deleted_all_accounts' => 'Minden számla törölve lett', - 'deleted_all_asset_accounts' => 'Minden eszközszámla törölve lett', - 'deleted_all_expense_accounts' => 'Minden költségszámla törölve lett', - 'deleted_all_revenue_accounts' => 'Minden jövedelemszámla törölve lett', - 'deleted_all_liabilities' => 'Minden kötelezettség törölve lett', - 'deleted_all_transactions' => 'Minden tranzakció törölve lett', - 'deleted_all_withdrawals' => 'Minden költség törölve lett', - 'deleted_all_deposits' => 'Minden bevétel törölve lett', - 'deleted_all_transfers' => 'Minden átvezetés törölve lett', - 'deleted_all_recurring' => 'Minden ismétlődő tranzakció törölve lett', - 'change_your_password' => 'Jelszó módosítása', - 'delete_account' => 'Fiók törlése', - 'current_password' => 'Jelenlegi jelszó', - 'new_password' => 'Új jelszó', - 'new_password_again' => 'Új jelszó megismétlése', - 'delete_your_account' => 'Saját fiók törlése', - 'delete_your_account_help' => 'A fiók törlése minden a Firefly III-ba elmentett számlát, tranzakciót, MINDENT törölni fog. Ezek EL FOGNAK TŰNNI.', - 'delete_your_account_password' => 'Meg kell adni a jelszót a folytatáshoz.', - 'password' => 'Jelszó', - 'are_you_sure' => 'Biztos? Nem vonható vissza.', - 'delete_account_button' => 'Saját fiók TÖRLÉSE', - 'invalid_current_password' => 'Érvénytelen jelenlegi jelszó!', - 'password_changed' => 'Jelszó módosítva!', - 'should_change' => 'Az ötlet az, hogy megváltoztasd a jelszavad.', - 'invalid_password' => 'Érvénytelen jelszó!', - 'what_is_pw_security' => 'Mit jelent a "jelszóbiztonság ellenőrzése"?', - 'secure_pw_title' => 'Hogyan válasszon biztonságos jelszót', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Nincs olyan hét, hogy a hírekben ne lehetne arról olvasni, hogy egy weboldal elvesztette a felhasználói jelszavait. A hekkerek és a tolvajok a privát információk ellopására használják ezeket az jelszavakat. Ezek az információk értékesek.', - 'secure_pw_ff' => 'Ugyanazt a jelszót használod az egész interneten? Ha egy weboldal elveszti a jelszavadat a hekkerek minden adatodhoz hozzá fognak férni. A Firefly III rád bízza, hogy erős és egyedi jelszót válassz a pénzügyi adataid védelméhez.', - 'secure_pw_check_box' => 'A Firefly III úgy segít ebben, hogy ellenőrzi nem lopták-e el a múltban a megadott jelszót. Ha ez történt a Firefly III javasolni fogja, hogy NE használd ezt a jelszót.', - 'secure_pw_working_title' => 'Hogyan működik?', - 'secure_pw_working' => 'Bejelölve, a Firefly III elküldi a jelszó az SHA1 hashének első őt karakterét Troy Hunt weboldalának, hogy ellenőrizze szerepel-e a listában. Ez megakadályozza, hogy nem biztonságos jelszavakat használj ahogy az a legutolsó NIST Special Publication-ban javasolják.', - 'secure_pw_should' => 'Kipipáljam a négyzetet?', - 'secure_pw_long_password' => 'Igen. Mindig ellenőrizze, hogy a jelszavam biztonságos-e.', - 'command_line_token' => 'Parancssori token', - 'explain_command_line_token' => 'Erre a tokenre parancssori lehetőségek végrehajtásához van szükség, mint például adatok exportálása. Enélkül néhány érzékeny parancs nem fog működni. Ezt a tokent senki nem fogja kérni tőled, még a fejlesztő sem. A lenti gombbal újragenerálhatod, ha félsz hogy illetéktelenek kezébe került.', - 'regenerate_command_line_token' => 'Parancssori token újragenerálása', - 'token_regenerated' => 'Az új parancssori token generálódott', - 'change_your_email' => 'Email cím módosítása', - 'email_verification' => 'Egy email üzenet lesz elküldve a régi ÉS az új email címre. Biztonsági okokból, nem lehet majd bejelentkezni amíg az új email cím nincs ellenőrizve. Ha nem biztos, hogy a Firefly III telepítés képes emaileket küldeni, nem szabad használni ezt a funkciót. Az adminisztrátor ellenőrizheti ezt az Adminisztráció oldalon.', - 'email_changed_logout' => 'Amíg nem ellenőrizted az email címed addig nem tudsz bejelentkezni.', - 'login_with_new_email' => 'Most már bejelentkezhet az új email címével.', - 'login_with_old_email' => 'Most már bejelentkezhet újra a régi email címével.', - 'login_provider_local_only' => 'Ez a művelet nem érhető el ":login_provider" általi hitelesítésekor.', - 'external_user_mgt_disabled' => 'Ez a művelet nem elérhető, amikor a felhasználó kezelést és bejelentkeztetést nem a Firely III végzi.', - 'external_auth_disabled' => 'Ez a művelet nem elérhető, amikor a bejelentkeztetést nem a Firefly III végzi.', - 'delete_local_info_only' => 'Mivel nem a Firefly III végzi a felhasználók kezelését és a bejelentkeztetést, ez a funkció csak a lokális Firefly III információkat törli.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth kliensek', - 'profile_oauth_no_clients' => 'Nincs létrehozva egyetlen OAuth kliens sem.', - '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_header' => 'Kliensek', - 'profile_oauth_client_id' => 'Kliens ID', - 'profile_oauth_client_name' => 'Megnevezés', - 'profile_oauth_client_secret' => 'Titkos kód', - 'profile_oauth_create_new_client' => 'Új kliens létrehozása', - 'profile_oauth_create_client' => 'Kliens létrehozása', - 'profile_oauth_edit_client' => 'Kliens szerkesztése', - 'profile_oauth_name_help' => 'Segítség, hogy a felhasználók tudják mihez kapcsolódik.', - 'profile_oauth_redirect_url' => 'Átirányítási URL', - 'profile_oauth_redirect_url_help' => 'Az alkalmazásban használt autentikációs URL.', - 'profile_authorized_apps' => 'Engedélyezett alkalmazások', - 'profile_authorized_clients' => 'Engedélyezett kliensek', - 'profile_scopes' => 'Hatáskörök', - 'profile_revoke' => 'Visszavonás', - 'profile_oauth_client_secret_title' => 'Kliens titkos kódja', - 'profile_oauth_client_secret_expl' => 'Ez a kliens titkos kódja. Ez az egyetlen alkalom, amikor meg van jelenítve, ne hagyd el! Ezzel a kóddal végezhetsz API hívásokat.', - 'profile_personal_access_tokens' => 'Személyes hozzáférési tokenek', - 'profile_personal_access_token' => 'Személyes hozzáférési token', - 'profile_oauth_confidential' => 'Bizalmas', - 'profile_oauth_confidential_help' => 'Titkos kód használata a kliens bejelentkezéséhez. Bizonyos kliensek biztonságosan tudnak hitelesítő adatokat tárolni, anélkül hogy jogosulatlan fél hozzáférhetne. Nyilvános kliensek, például mint asztali vagy JavaScript SPA alkalmazások nem tudnak biztonságosan titkos kódot tárolni.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'Nincs létrehozva egyetlen személyes hozzáférési token sem.', - 'profile_create_new_token' => 'Új token létrehozása', - 'profile_create_token' => 'Token létrehozása', - 'profile_create' => 'Létrehozás', - 'profile_save_changes' => 'Módosítások mentése', - 'profile_whoops' => 'Hoppá!', - 'profile_something_wrong' => 'Hiba történt!', - 'profile_try_again' => 'Hiba történt. Kérjük, próbálja meg újra.', - 'amounts' => 'Mennyiségek', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Minden másik bejelentkezésed ki lett léptetve.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'MINDEN költségkeret törlése', + 'delete_all_categories' => 'MINDEN kategória törlése', + 'delete_all_tags' => 'MINDEN címke törlése', + 'delete_all_bills' => 'MINDEN számla törlése', + 'delete_all_piggy_banks' => 'MINDEN malacpersely törlése', + 'delete_all_rules' => 'MINDEN szabály törlése', + 'delete_all_recurring' => 'MINDEN ismétlődő tranzakció törlése', + 'delete_all_object_groups' => 'MINDEN csoport törlése', + 'delete_all_accounts' => 'MINDEN költségszámla törlése', + 'delete_all_asset_accounts' => 'MINDEN eszközszámla törlése', + 'delete_all_expense_accounts' => 'MINDEN költségszámla törlése', + 'delete_all_revenue_accounts' => 'MINDEN jövedelemszámla törlése', + 'delete_all_liabilities' => 'MINDEN kötelezettség törlése', + 'delete_all_transactions' => 'MINDEN tranzakció törlése', + 'delete_all_withdrawals' => 'MINDEN költség törlése', + 'delete_all_deposits' => 'MINDEN bevétel törlése', + 'delete_all_transfers' => 'MINDEN átvezetés törlése', + 'also_delete_transactions' => 'Számlák törlése során MINDEN hozzá kapcsolódó költség, bevétel és átvezetés is törlődik!', + 'deleted_all_budgets' => 'Minden költségkeret törölve', + 'deleted_all_categories' => 'Minden kategória törölve', + 'deleted_all_tags' => 'Minden címke törölve', + 'deleted_all_bills' => 'Minden számla törölve lett', + 'deleted_all_piggy_banks' => 'Minden malacpersely törölve lett', + 'deleted_all_rules' => 'Minden szabály és szabálycsoport törölve lett', + 'deleted_all_object_groups' => 'Minden csoport törölve lett', + 'deleted_all_accounts' => 'Minden számla törölve lett', + 'deleted_all_asset_accounts' => 'Minden eszközszámla törölve lett', + 'deleted_all_expense_accounts' => 'Minden költségszámla törölve lett', + 'deleted_all_revenue_accounts' => 'Minden jövedelemszámla törölve lett', + 'deleted_all_liabilities' => 'Minden kötelezettség törölve lett', + 'deleted_all_transactions' => 'Minden tranzakció törölve lett', + 'deleted_all_withdrawals' => 'Minden költség törölve lett', + 'deleted_all_deposits' => 'Minden bevétel törölve lett', + 'deleted_all_transfers' => 'Minden átvezetés törölve lett', + 'deleted_all_recurring' => 'Minden ismétlődő tranzakció törölve lett', + 'change_your_password' => 'Jelszó módosítása', + 'delete_account' => 'Fiók törlése', + 'current_password' => 'Jelenlegi jelszó', + 'new_password' => 'Új jelszó', + 'new_password_again' => 'Új jelszó megismétlése', + 'delete_your_account' => 'Saját fiók törlése', + 'delete_your_account_help' => 'A fiók törlése minden a Firefly III-ba elmentett számlát, tranzakciót, MINDENT törölni fog. Ezek EL FOGNAK TŰNNI.', + 'delete_your_account_password' => 'Meg kell adni a jelszót a folytatáshoz.', + 'password' => 'Jelszó', + 'are_you_sure' => 'Biztos? Nem vonható vissza.', + 'delete_account_button' => 'Saját fiók TÖRLÉSE', + 'invalid_current_password' => 'Érvénytelen jelenlegi jelszó!', + 'password_changed' => 'Jelszó módosítva!', + 'should_change' => 'Az ötlet az, hogy megváltoztasd a jelszavad.', + 'invalid_password' => 'Érvénytelen jelszó!', + 'what_is_pw_security' => 'Mit jelent a "jelszóbiztonság ellenőrzése"?', + 'secure_pw_title' => 'Hogyan válasszon biztonságos jelszót', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Nincs olyan hét, hogy a hírekben ne lehetne arról olvasni, hogy egy weboldal elvesztette a felhasználói jelszavait. A hekkerek és a tolvajok a privát információk ellopására használják ezeket az jelszavakat. Ezek az információk értékesek.', + 'secure_pw_ff' => 'Ugyanazt a jelszót használod az egész interneten? Ha egy weboldal elveszti a jelszavadat a hekkerek minden adatodhoz hozzá fognak férni. A Firefly III rád bízza, hogy erős és egyedi jelszót válassz a pénzügyi adataid védelméhez.', + 'secure_pw_check_box' => 'A Firefly III úgy segít ebben, hogy ellenőrzi nem lopták-e el a múltban a megadott jelszót. Ha ez történt a Firefly III javasolni fogja, hogy NE használd ezt a jelszót.', + 'secure_pw_working_title' => 'Hogyan működik?', + 'secure_pw_working' => 'Bejelölve, a Firefly III elküldi a jelszó az SHA1 hashének első őt karakterét Troy Hunt weboldalának, hogy ellenőrizze szerepel-e a listában. Ez megakadályozza, hogy nem biztonságos jelszavakat használj ahogy az a legutolsó NIST Special Publication-ban javasolják.', + 'secure_pw_should' => 'Kipipáljam a négyzetet?', + 'secure_pw_long_password' => 'Igen. Mindig ellenőrizze, hogy a jelszavam biztonságos-e.', + 'command_line_token' => 'Parancssori token', + 'explain_command_line_token' => 'Erre a tokenre parancssori lehetőségek végrehajtásához van szükség, mint például adatok exportálása. Enélkül néhány érzékeny parancs nem fog működni. Ezt a tokent senki nem fogja kérni tőled, még a fejlesztő sem. A lenti gombbal újragenerálhatod, ha félsz hogy illetéktelenek kezébe került.', + 'regenerate_command_line_token' => 'Parancssori token újragenerálása', + 'token_regenerated' => 'Az új parancssori token generálódott', + 'change_your_email' => 'Email cím módosítása', + 'email_verification' => 'Egy email üzenet lesz elküldve a régi ÉS az új email címre. Biztonsági okokból, nem lehet majd bejelentkezni amíg az új email cím nincs ellenőrizve. Ha nem biztos, hogy a Firefly III telepítés képes emaileket küldeni, nem szabad használni ezt a funkciót. Az adminisztrátor ellenőrizheti ezt az Adminisztráció oldalon.', + 'email_changed_logout' => 'Amíg nem ellenőrizted az email címed addig nem tudsz bejelentkezni.', + 'login_with_new_email' => 'Most már bejelentkezhet az új email címével.', + 'login_with_old_email' => 'Most már bejelentkezhet újra a régi email címével.', + 'login_provider_local_only' => 'Ez a művelet nem érhető el ":login_provider" általi hitelesítésekor.', + 'external_user_mgt_disabled' => 'Ez a művelet nem elérhető, amikor a felhasználó kezelést és bejelentkeztetést nem a Firely III végzi.', + 'external_auth_disabled' => 'Ez a művelet nem elérhető, amikor a bejelentkeztetést nem a Firefly III végzi.', + 'delete_local_info_only' => 'Mivel nem a Firefly III végzi a felhasználók kezelését és a bejelentkeztetést, ez a funkció csak a lokális Firefly III információkat törli.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth kliensek', + 'profile_oauth_no_clients' => 'Nincs létrehozva egyetlen OAuth kliens sem.', + '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_header' => 'Kliensek', + 'profile_oauth_client_id' => 'Kliens ID', + 'profile_oauth_client_name' => 'Megnevezés', + 'profile_oauth_client_secret' => 'Titkos kód', + 'profile_oauth_create_new_client' => 'Új kliens létrehozása', + 'profile_oauth_create_client' => 'Kliens létrehozása', + 'profile_oauth_edit_client' => 'Kliens szerkesztése', + 'profile_oauth_name_help' => 'Segítség, hogy a felhasználók tudják mihez kapcsolódik.', + 'profile_oauth_redirect_url' => 'Átirányítási URL', + 'profile_oauth_redirect_url_help' => 'Az alkalmazásban használt autentikációs URL.', + 'profile_authorized_apps' => 'Engedélyezett alkalmazások', + 'profile_authorized_clients' => 'Engedélyezett kliensek', + 'profile_scopes' => 'Hatáskörök', + 'profile_revoke' => 'Visszavonás', + 'profile_oauth_client_secret_title' => 'Kliens titkos kódja', + 'profile_oauth_client_secret_expl' => 'Ez a kliens titkos kódja. Ez az egyetlen alkalom, amikor meg van jelenítve, ne hagyd el! Ezzel a kóddal végezhetsz API hívásokat.', + 'profile_personal_access_tokens' => 'Személyes hozzáférési tokenek', + 'profile_personal_access_token' => 'Személyes hozzáférési token', + 'profile_oauth_confidential' => 'Bizalmas', + 'profile_oauth_confidential_help' => 'Titkos kód használata a kliens bejelentkezéséhez. Bizonyos kliensek biztonságosan tudnak hitelesítő adatokat tárolni, anélkül hogy jogosulatlan fél hozzáférhetne. Nyilvános kliensek, például mint asztali vagy JavaScript SPA alkalmazások nem tudnak biztonságosan titkos kódot tárolni.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'Nincs létrehozva egyetlen személyes hozzáférési token sem.', + 'profile_create_new_token' => 'Új token létrehozása', + 'profile_create_token' => 'Token létrehozása', + 'profile_create' => 'Létrehozás', + 'profile_save_changes' => 'Módosítások mentése', + 'profile_whoops' => 'Hoppá!', + 'profile_something_wrong' => 'Hiba történt!', + 'profile_try_again' => 'Hiba történt. Kérjük, próbálja meg újra.', + 'amounts' => 'Mennyiségek', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Adatok exportálása a Firefly III-ból', - 'export_data_menu' => 'Adat exportálása', - 'export_data_bc' => 'Adatok exportálása a Firefly III-ból', - 'export_data_main_title' => 'Adatok exportálása a Firefly III-ból', - 'export_data_expl' => 'Ezek a hivatkozások lehetővé teszik az összes tranzakció + a metaadatok exportálását a Firefly III-ból. A folyamatról további információ a súgóban ((?) ikon a jobb felső sarokban) található.', - 'export_data_all_transactions' => 'Összes tranzakció exportálása', - 'export_data_advanced_expl' => 'Ha szükséged van speciális exportálásra, akkor olvass utána a következő parancssori parancsnak: php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Adatok exportálása a Firefly III-ból', + 'export_data_menu' => 'Adat exportálása', + 'export_data_bc' => 'Adatok exportálása a Firefly III-ból', + 'export_data_main_title' => 'Adatok exportálása a Firefly III-ból', + 'export_data_expl' => 'Ezek a hivatkozások lehetővé teszik az összes tranzakció + a metaadatok exportálását a Firefly III-ból. A folyamatról további információ a súgóban ((?) ikon a jobb felső sarokban) található.', + 'export_data_all_transactions' => 'Összes tranzakció exportálása', + 'export_data_advanced_expl' => 'Ha szükséged van speciális exportálásra, akkor olvass utána a következő parancssori parancsnak: php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Egy melléklet|:count melléklet', - 'attachments' => 'Mellékletek', - 'edit_attachment' => 'Melléklet szerkesztése ":name"', - 'update_attachment' => 'Melléklet frissítése', - 'delete_attachment' => '":name" melléklet törlése', - 'attachment_deleted' => 'Törölt melléklet ":name"', - 'liabilities_deleted' => '":name" kötelezettség törölve', - 'attachment_updated' => 'Melléklet frissítve ":name"', - 'upload_max_file_size' => 'Maximális fájlméret: :size', - 'list_all_attachments' => 'Mellékletek listája', + 'nr_of_attachments' => 'Egy melléklet|:count melléklet', + 'attachments' => 'Mellékletek', + 'edit_attachment' => 'Melléklet szerkesztése ":name"', + 'update_attachment' => 'Melléklet frissítése', + 'delete_attachment' => '":name" melléklet törlése', + 'attachment_deleted' => 'Törölt melléklet ":name"', + 'liabilities_deleted' => '":name" kötelezettség törölve', + 'attachment_updated' => 'Melléklet frissítve ":name"', + 'upload_max_file_size' => 'Maximális fájlméret: :size', + 'list_all_attachments' => 'Mellékletek listája', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Költségek', - 'title_withdrawal' => 'Költségek', - 'title_revenue' => 'Jövedelem / bevétel', - 'title_deposit' => 'Jövedelem / bevétel', - 'title_transfer' => 'Átvezetések', - 'title_transfers' => 'Átvezetések', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Költségek', + 'title_withdrawal' => 'Költségek', + 'title_revenue' => 'Jövedelem / bevétel', + 'title_deposit' => 'Jövedelem / bevétel', + 'title_transfer' => 'Átvezetések', + 'title_transfers' => 'Átvezetések', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Ez a tranzakció már egy költség', - 'convert_is_already_type_Deposit' => 'Ez a tranzakció már egy bevétel', - 'convert_is_already_type_Transfer' => 'Ez a tranzakció már egy utalás', - 'convert_to_Withdrawal' => '":description" költséggé konvertálása', - 'convert_to_Deposit' => '":description" bevétellé alakítása', - 'convert_to_Transfer' => 'Átutalássá alakítás ":description"', - 'convert_options_WithdrawalDeposit' => 'Egy költség bevétellé alakítása', - 'convert_options_WithdrawalTransfer' => 'Egy költség átvezetéssé konvertálása', - 'convert_options_DepositTransfer' => 'Egy bevétel átvezetéssé alakítása', - 'convert_options_DepositWithdrawal' => 'Egy bevétel költséggé konvertálása', - 'convert_options_TransferWithdrawal' => 'Utalás kiadássá alakítása', - 'convert_options_TransferDeposit' => 'Egy átvezetés bevétellé alakítása', - 'convert_Withdrawal_to_deposit' => 'Költség bevétellé konvertálása', - 'convert_Withdrawal_to_transfer' => 'Költség átvezetéssé alakítása', - 'convert_Deposit_to_withdrawal' => 'Bevétel költséggé alakítása', - 'convert_Deposit_to_transfer' => 'Bevétel átvezetéssé alakítása', - 'convert_Transfer_to_deposit' => 'Átvezetés bevétellé alakítása', - 'convert_Transfer_to_withdrawal' => 'Átvezetés költséggé konvertálása', - 'convert_please_set_revenue_source' => 'Kérem válasszon ki egy bevételiszámlát, ahonnan a pénz fog érkezni.', - 'convert_please_set_asset_destination' => 'Kérem válasszon ki egy eszközszámlát, ahova a pénz fog menni.', - 'convert_please_set_expense_destination' => 'Ki kell választani egy költségszámlát, ahova a pénz fog menni.', - 'convert_please_set_asset_source' => 'Kérem válasszon ki egy eszközszámlát, ahonnan a pénz fog érkezni.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'A konverzió befejezéséhez be kell állítani az új forrásszámlát.|A konverzió befejezéséhez be kell állítani az új forrásszámlákat.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'Tranzakció költséggé konvertálva', - 'converted_to_Deposit' => 'A tranzakció bevétellé konvertálva', - 'converted_to_Transfer' => 'Tranzakció átvezetéssé konvertálva', - 'invalid_convert_selection' => 'A kiválasztott számla már használatban van ebben a tranzakcióban vagy nem létezik.', - 'source_or_dest_invalid' => 'Nem találhatóak a megfelelő tranzakció részletek. A konverzió nem lehetséges.', - 'convert_to_withdrawal' => 'Konvertálás költséggé', - 'convert_to_deposit' => 'Konvertálás egy bevétellé', - 'convert_to_transfer' => 'Konvertálás átvezetéssé', + 'convert_is_already_type_Withdrawal' => 'Ez a tranzakció már egy költség', + 'convert_is_already_type_Deposit' => 'Ez a tranzakció már egy bevétel', + 'convert_is_already_type_Transfer' => 'Ez a tranzakció már egy utalás', + 'convert_to_Withdrawal' => '":description" költséggé konvertálása', + 'convert_to_Deposit' => '":description" bevétellé alakítása', + 'convert_to_Transfer' => 'Átutalássá alakítás ":description"', + 'convert_options_WithdrawalDeposit' => 'Egy költség bevétellé alakítása', + 'convert_options_WithdrawalTransfer' => 'Egy költség átvezetéssé konvertálása', + 'convert_options_DepositTransfer' => 'Egy bevétel átvezetéssé alakítása', + 'convert_options_DepositWithdrawal' => 'Egy bevétel költséggé konvertálása', + 'convert_options_TransferWithdrawal' => 'Utalás kiadássá alakítása', + 'convert_options_TransferDeposit' => 'Egy átvezetés bevétellé alakítása', + 'convert_Withdrawal_to_deposit' => 'Költség bevétellé konvertálása', + 'convert_Withdrawal_to_transfer' => 'Költség átvezetéssé alakítása', + 'convert_Deposit_to_withdrawal' => 'Bevétel költséggé alakítása', + 'convert_Deposit_to_transfer' => 'Bevétel átvezetéssé alakítása', + 'convert_Transfer_to_deposit' => 'Átvezetés bevétellé alakítása', + 'convert_Transfer_to_withdrawal' => 'Átvezetés költséggé konvertálása', + 'convert_please_set_revenue_source' => 'Kérem válasszon ki egy bevételiszámlát, ahonnan a pénz fog érkezni.', + 'convert_please_set_asset_destination' => 'Kérem válasszon ki egy eszközszámlát, ahova a pénz fog menni.', + 'convert_please_set_expense_destination' => 'Ki kell választani egy költségszámlát, ahova a pénz fog menni.', + 'convert_please_set_asset_source' => 'Kérem válasszon ki egy eszközszámlát, ahonnan a pénz fog érkezni.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'A konverzió befejezéséhez be kell állítani az új forrásszámlát.|A konverzió befejezéséhez be kell állítani az új forrásszámlákat.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'Tranzakció költséggé konvertálva', + 'converted_to_Deposit' => 'A tranzakció bevétellé konvertálva', + 'converted_to_Transfer' => 'Tranzakció átvezetéssé konvertálva', + 'invalid_convert_selection' => 'A kiválasztott számla már használatban van ebben a tranzakcióban vagy nem létezik.', + 'source_or_dest_invalid' => 'Nem találhatóak a megfelelő tranzakció részletek. A konverzió nem lehetséges.', + 'convert_to_withdrawal' => 'Konvertálás költséggé', + 'convert_to_deposit' => 'Konvertálás egy bevétellé', + 'convert_to_transfer' => 'Konvertálás átvezetéssé', // create new stuff: - 'create_new_withdrawal' => 'Új költség létrehozása', - 'create_new_deposit' => 'Új bevétel létrehozása', - 'create_new_transfer' => 'Új átvezetés létrehozása', - 'create_new_asset' => 'Új eszközszámla létrehozása', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Új költségszámla létrehozása', - 'create_new_revenue' => 'Új jövedelemszámla létrehozása', - 'create_new_piggy_bank' => 'Új malacpersely létrehozása', - 'create_new_bill' => 'Új számla létrehozása', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Új költség létrehozása', + 'create_new_deposit' => 'Új bevétel létrehozása', + 'create_new_transfer' => 'Új átvezetés létrehozása', + 'create_new_asset' => 'Új eszközszámla létrehozása', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Új költségszámla létrehozása', + 'create_new_revenue' => 'Új jövedelemszámla létrehozása', + 'create_new_piggy_bank' => 'Új malacpersely létrehozása', + 'create_new_bill' => 'Új számla létrehozása', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Új pénznem létrehozása', - 'store_currency' => 'Új pénznem tárolása', - 'update_currency' => 'Pénznem frissítése', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => ':name nem törölhető mert még használatban van.', - 'cannot_delete_fallback_currency' => ':name a rendszer biztonsági pénzneme és nem törölhető.', - 'cannot_disable_currency_journals' => ':name nem tiltható le mert még használják tranzakciók.', - 'cannot_disable_currency_last_left' => ':name nem tiltható le mert ez az utolsó engedélyezett pénznem.', - 'cannot_disable_currency_account_meta' => ':name nem tiltható le, mert eszközszámlákban használatban van.', - 'cannot_disable_currency_bills' => ':name nem tiltható le, mert számlákban használatban van.', - 'cannot_disable_currency_recurring' => ':name nem tiltható le, mert rendszeres tranzakciókban használva van.', - 'cannot_disable_currency_available_budgets' => ':name nem tiltható le, mert rendelkezésre álló költségkeretekben használatban van.', - 'cannot_disable_currency_budget_limits' => ':name nem tiltható le, mert költségvetési limitekben használatban van.', - 'cannot_disable_currency_current_default' => ':name nem tiltható le, mert ez az aktuális alapértelmezett pénznem.', - 'cannot_disable_currency_system_fallback' => ':name nem tiltható le, mert ez a rendszer alapértelmezett pénzneme.', - 'disable_EUR_side_effects' => 'Az euró a rendszer alapértelmezett vészhelyzeti devizaneme. Inaktiválás esetén nem várt mellékhatások lehetnek.', - 'deleted_currency' => 'A pénznem :name törölve lett', - 'created_currency' => 'Pénznem :name létrehozva', - 'could_not_store_currency' => 'Az új pénznem nem tárolható.', - 'updated_currency' => 'Pénznem :name frissítve', - 'ask_site_owner' => ':owner tud pénznemeket hozzáadni, törölni vagy szerkeszteni.', - 'currencies_intro' => 'A Firefly III különböző pénznemeket támogat amelyeket itt lehet beállítani, és engedélyezni.', - 'make_default_currency' => 'Legyen alapértelmezett', - 'default_currency' => 'alapértelmezett', - 'currency_is_disabled' => 'Letiltva', - 'enable_currency' => 'Engedélyezés', - 'disable_currency' => 'Tiltás', - 'currencies_default_disabled' => 'A pénznemek többsége alapértelmezés szerint tiltva van. A használathoz először engedélyezni kell azokat.', - 'currency_is_now_enabled' => 'Pénznem ":name" engedélyezve', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Pénznem ":name" letiltva', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Új pénznem létrehozása', + 'store_currency' => 'Új pénznem tárolása', + 'update_currency' => 'Pénznem frissítése', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => ':name nem törölhető mert még használatban van.', + 'cannot_delete_fallback_currency' => ':name a rendszer biztonsági pénzneme és nem törölhető.', + 'cannot_disable_currency_journals' => ':name nem tiltható le mert még használják tranzakciók.', + 'cannot_disable_currency_last_left' => ':name nem tiltható le mert ez az utolsó engedélyezett pénznem.', + 'cannot_disable_currency_account_meta' => ':name nem tiltható le, mert eszközszámlákban használatban van.', + 'cannot_disable_currency_bills' => ':name nem tiltható le, mert számlákban használatban van.', + 'cannot_disable_currency_recurring' => ':name nem tiltható le, mert rendszeres tranzakciókban használva van.', + 'cannot_disable_currency_available_budgets' => ':name nem tiltható le, mert rendelkezésre álló költségkeretekben használatban van.', + 'cannot_disable_currency_budget_limits' => ':name nem tiltható le, mert költségvetési limitekben használatban van.', + 'cannot_disable_currency_current_default' => ':name nem tiltható le, mert ez az aktuális alapértelmezett pénznem.', + 'cannot_disable_currency_system_fallback' => ':name nem tiltható le, mert ez a rendszer alapértelmezett pénzneme.', + 'disable_EUR_side_effects' => 'Az euró a rendszer alapértelmezett vészhelyzeti devizaneme. Inaktiválás esetén nem várt mellékhatások lehetnek.', + 'deleted_currency' => 'A pénznem :name törölve lett', + 'created_currency' => 'Pénznem :name létrehozva', + 'could_not_store_currency' => 'Az új pénznem nem tárolható.', + 'updated_currency' => 'Pénznem :name frissítve', + 'ask_site_owner' => ':owner tud pénznemeket hozzáadni, törölni vagy szerkeszteni.', + 'currencies_intro' => 'A Firefly III különböző pénznemeket támogat amelyeket itt lehet beállítani, és engedélyezni.', + 'make_default_currency' => 'Legyen alapértelmezett', + 'default_currency' => 'alapértelmezett', + 'currency_is_disabled' => 'Letiltva', + 'enable_currency' => 'Engedélyezés', + 'disable_currency' => 'Tiltás', + 'currencies_default_disabled' => 'A pénznemek többsége alapértelmezés szerint tiltva van. A használathoz először engedélyezni kell azokat.', + 'currency_is_now_enabled' => 'Pénznem ":name" engedélyezve', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Pénznem ":name" letiltva', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Kötelező mezők', - 'optionalFields' => 'Nem kötelező mezők', - 'options' => 'Beállítások', + 'mandatoryFields' => 'Kötelező mezők', + 'optionalFields' => 'Nem kötelező mezők', + 'options' => 'Beállítások', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Teljes elérhető költségkeret (:start és :end között)', - 'total_available_budget_in_currency' => 'Teljes elérhető költségkeret :currency pénznemben', - 'see_below' => 'lásd lentebb', - 'create_new_budget' => 'Új költségkeret létrehozása', - 'store_new_budget' => 'Új költségkeret létrehozása', - 'stored_new_budget' => 'Új költségkeret létrehozva ":name"', - 'available_between' => ':start és :end között rendelkezésre áll', - 'transactionsWithoutBudget' => 'Költségkeret nélküli költségek', - 'transactions_no_budget' => 'Költségkeret nélküli költségek :start és :end között', - 'spent_between' => 'Már elköltött :start és :end között', - 'spent_between_left' => ':start és :end között :spent költöttél, így maradt :left.', - 'set_available_amount' => 'Rendelkezésre álló összeg beállítása', - 'update_available_amount' => 'Rendelkezésre álló összeg frissítése', - 'ab_basic_modal_explain' => 'Használja ezt az űrlapot a költségvetés beállításához (összesen, :currency devizában) a feltüntetett időszakban.', - 'createBudget' => 'Új költségkeret', - 'invalid_currency' => 'Ez egy érvénytelen pénznem', - 'invalid_amount' => 'Kérlek, írj be egy összeget', - 'set_ab' => 'A rendelkezésre álló költségkeret összeg beéllítva', - 'updated_ab' => 'A rendelkezésre álló költségkeret összeg frissítve', - 'deleted_ab' => 'A rendelkezésre álló költségkeret összeg törölve', - 'deleted_bl' => 'A költségvetésbe felvett összeg el lett távolítva', - 'alt_currency_ab_create' => 'A rendelkezésre álló költségkeret beállítása más pénznemben', - 'bl_create_btn' => 'Költségkeret beállítása más pénznemben', - 'inactiveBudgets' => 'Inaktív költségkeretek', - 'without_budget_between' => 'Költségkeret nélküli tranzakció :start és :end között', - 'delete_budget' => '":name" költségkeret törlése', - 'deleted_budget' => 'Költségkeret törölve ":name"', - 'edit_budget' => '":name" költségkeret szerkesztése', - 'updated_budget' => 'Költségkeret frissítve ":name"', - 'update_amount' => 'Összeg frissítése', - 'update_budget' => 'Költségvetés frissítése', - 'update_budget_amount_range' => 'A (várt) rendelkezésre álló összeg frissítése :start és :end között', - 'set_budget_limit_title' => 'Tervezett költégvetés :start és :end időszakra a(z) :budget költségvetéshez', - 'set_budget_limit' => 'Tervezett költségvetési összeg', - 'budget_period_navigator' => 'Időszak navigátor', - 'info_on_available_amount' => 'Mivel rendelkezem?', - 'available_amount_indication' => 'Ezeket az összeget felhasználva lehet megtudni, hogy mekkorának kéne lennie a teljes költségkeretnek.', - 'suggested' => 'Javasolt', - 'average_between' => 'Átlag :start és :end között', - 'transferred_in' => 'Átvezetett (be)', - 'transferred_away' => '(Máshova) átvezetett', - 'auto_budget_none' => 'Nincs auto-költségkeret', - 'auto_budget_reset' => 'Fix összeg beállítása minden időszakra', - 'auto_budget_rollover' => 'Összeg hozzáadása minden időszakhoz', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Napi', - 'auto_budget_period_weekly' => 'Heti', - 'auto_budget_period_monthly' => 'Havi', - 'auto_budget_period_quarterly' => 'Negyedéves', - 'auto_budget_period_half_year' => 'Félévente', - 'auto_budget_period_yearly' => 'Éves', - 'auto_budget_help' => 'Erről a funkcióról további információ a súgóban található. A súgó a jobb felső (?) ikonra kattintva érhető el.', - 'auto_budget_reset_icon' => 'A költségvetés periodikusan újraszámlálódik', - 'auto_budget_rollover_icon' => 'A költségvetési összeg periodikusan növekszik', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Teljes elérhető költségkeret (:start és :end között)', + 'total_available_budget_in_currency' => 'Teljes elérhető költségkeret :currency pénznemben', + 'see_below' => 'lásd lentebb', + 'create_new_budget' => 'Új költségkeret létrehozása', + 'store_new_budget' => 'Új költségkeret létrehozása', + 'stored_new_budget' => 'Új költségkeret létrehozva ":name"', + 'available_between' => ':start és :end között rendelkezésre áll', + 'transactionsWithoutBudget' => 'Költségkeret nélküli költségek', + 'transactions_no_budget' => 'Költségkeret nélküli költségek :start és :end között', + 'spent_between' => 'Már elköltött :start és :end között', + 'spent_between_left' => ':start és :end között :spent költöttél, így maradt :left.', + 'set_available_amount' => 'Rendelkezésre álló összeg beállítása', + 'update_available_amount' => 'Rendelkezésre álló összeg frissítése', + 'ab_basic_modal_explain' => 'Használja ezt az űrlapot a költségvetés beállításához (összesen, :currency devizában) a feltüntetett időszakban.', + 'createBudget' => 'Új költségkeret', + 'invalid_currency' => 'Ez egy érvénytelen pénznem', + 'invalid_amount' => 'Kérlek, írj be egy összeget', + 'set_ab' => 'A rendelkezésre álló költségkeret összeg beéllítva', + 'updated_ab' => 'A rendelkezésre álló költségkeret összeg frissítve', + 'deleted_ab' => 'A rendelkezésre álló költségkeret összeg törölve', + 'deleted_bl' => 'A költségvetésbe felvett összeg el lett távolítva', + 'alt_currency_ab_create' => 'A rendelkezésre álló költségkeret beállítása más pénznemben', + 'bl_create_btn' => 'Költségkeret beállítása más pénznemben', + 'inactiveBudgets' => 'Inaktív költségkeretek', + 'without_budget_between' => 'Költségkeret nélküli tranzakció :start és :end között', + 'delete_budget' => '":name" költségkeret törlése', + 'deleted_budget' => 'Költségkeret törölve ":name"', + 'edit_budget' => '":name" költségkeret szerkesztése', + 'updated_budget' => 'Költségkeret frissítve ":name"', + 'update_amount' => 'Összeg frissítése', + 'update_budget' => 'Költségvetés frissítése', + 'update_budget_amount_range' => 'A (várt) rendelkezésre álló összeg frissítése :start és :end között', + 'set_budget_limit_title' => 'Tervezett költégvetés :start és :end időszakra a(z) :budget költségvetéshez', + 'set_budget_limit' => 'Tervezett költségvetési összeg', + 'budget_period_navigator' => 'Időszak navigátor', + 'info_on_available_amount' => 'Mivel rendelkezem?', + 'available_amount_indication' => 'Ezeket az összeget felhasználva lehet megtudni, hogy mekkorának kéne lennie a teljes költségkeretnek.', + 'suggested' => 'Javasolt', + 'average_between' => 'Átlag :start és :end között', + 'transferred_in' => 'Átvezetett (be)', + 'transferred_away' => '(Máshova) átvezetett', + 'auto_budget_none' => 'Nincs auto-költségkeret', + 'auto_budget_reset' => 'Fix összeg beállítása minden időszakra', + 'auto_budget_rollover' => 'Összeg hozzáadása minden időszakhoz', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Napi', + 'auto_budget_period_weekly' => 'Heti', + 'auto_budget_period_monthly' => 'Havi', + 'auto_budget_period_quarterly' => 'Negyedéves', + 'auto_budget_period_half_year' => 'Félévente', + 'auto_budget_period_yearly' => 'Éves', + 'auto_budget_help' => 'Erről a funkcióról további információ a súgóban található. A súgó a jobb felső (?) ikonra kattintva érhető el.', + 'auto_budget_reset_icon' => 'A költségvetés periodikusan újraszámlálódik', + 'auto_budget_rollover_icon' => 'A költségvetési összeg periodikusan növekszik', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Nem várható ebben az időszakban', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Nincs (még)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Tranzakciókkal egyező számlák :low és :high között.', - 'running_again_loss' => 'A számlával korábban összekötött tranzakciók összeköttetése törlődhet, ha többé nem felelnek meg egyetlen szabálynak sem.', - 'bill_related_rules' => 'Erre a számlára vonatkozó szabályok', - 'repeats' => 'Ismétlődések', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Kapcsolódó tranzakciók', - 'auto_match_on' => 'A Firefly III által automatikusan egyeztetett', - 'auto_match_off' => 'A Firefly III által nem automatikusan egyeztetett', - 'next_expected_match' => 'Következő várható egyezés', - 'delete_bill' => '":name" számla törlése', - 'deleted_bill' => '":name" számla törölve', - 'edit_bill' => '":name" számla szerkesztése', - 'more' => 'Több', - 'rescan_old' => 'Szabályok újrafuttatása az összes tranzakción', - 'update_bill' => 'Számla frissítése', - 'updated_bill' => '":name" számla frissítve', - 'store_new_bill' => 'Új számla tárolása', - 'stored_new_bill' => 'Új ":name" számla eltárolva', - 'cannot_scan_inactive_bill' => 'Inaktív számlákat nem lehet vizsgálni.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Átlagos számlaösszeg (:year)', - 'average_bill_amount_overall' => 'Átlagos számlaösszeg (összes)', - 'bill_is_active' => 'A számla aktív', - 'bill_expected_between' => 'Várható :start és :end között', - 'bill_will_automatch' => 'A számla automatikusan hozzá lesz csatolva az egyező tranzakciókhoz', - 'skips_over' => 'kihagy', - 'bill_store_error' => 'Nem várt hiba történt az új számla tárolása közben. Ellenőrizd a naplófájlokat', - 'list_inactive_rule' => 'inaktív szabály', - 'bill_edit_rules' => 'A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.|A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó :count szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.', - 'bill_expected_date' => 'Várható dátum :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Nem várható ebben az időszakban', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Nincs (még)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Tranzakciókkal egyező számlák :low és :high között.', + 'running_again_loss' => 'A számlával korábban összekötött tranzakciók összeköttetése törlődhet, ha többé nem felelnek meg egyetlen szabálynak sem.', + 'bill_related_rules' => 'Erre a számlára vonatkozó szabályok', + 'repeats' => 'Ismétlődések', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Kapcsolódó tranzakciók', + 'auto_match_on' => 'A Firefly III által automatikusan egyeztetett', + 'auto_match_off' => 'A Firefly III által nem automatikusan egyeztetett', + 'next_expected_match' => 'Következő várható egyezés', + 'delete_bill' => '":name" számla törlése', + 'deleted_bill' => '":name" számla törölve', + 'edit_bill' => '":name" számla szerkesztése', + 'more' => 'Több', + 'rescan_old' => 'Szabályok újrafuttatása az összes tranzakción', + 'update_bill' => 'Számla frissítése', + 'updated_bill' => '":name" számla frissítve', + 'store_new_bill' => 'Új számla tárolása', + 'stored_new_bill' => 'Új ":name" számla eltárolva', + 'cannot_scan_inactive_bill' => 'Inaktív számlákat nem lehet vizsgálni.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Átlagos számlaösszeg (:year)', + 'average_bill_amount_overall' => 'Átlagos számlaösszeg (összes)', + 'bill_is_active' => 'A számla aktív', + 'bill_expected_between' => 'Várható :start és :end között', + 'bill_will_automatch' => 'A számla automatikusan hozzá lesz csatolva az egyező tranzakciókhoz', + 'skips_over' => 'kihagy', + 'bill_store_error' => 'Nem várt hiba történt az új számla tárolása közben. Ellenőrizd a naplófájlokat', + 'list_inactive_rule' => 'inaktív szabály', + 'bill_edit_rules' => 'A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.|A Firefly III megpróbálja szerkeszteni a a számlához kapcsolódó :count szabályt is. Ha ön már szerkesztette a szabályt, a Firefly III nem fogja módosítani.', + 'bill_expected_date' => 'Várható dátum :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'Ezek az inaktív számlák.', - 'active_account_link' => 'Ez a hivatkozás visszavisz az aktív számlákhoz.', - 'account_missing_transaction' => ':id (":name") számla nem tekinthető meg közvetlenül, de a Fireflyból hiányzik az átirányítási információ.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => '":name" eszközszámla részletei', - 'details_for_expense' => '":name" költségszámla részletei', - 'details_for_revenue' => '":name" jövedelemszámla részletei', - 'details_for_cash' => '":name" készpénzszámla részletei', - 'store_new_asset_account' => 'Új eszközszámla tárolása', - 'store_new_expense_account' => 'Új költségszámla tárolása', - 'store_new_revenue_account' => 'Új jövedelemszámla létrehozása', - 'edit_asset_account' => '":name" eszközszámla szerkesztése', - 'edit_expense_account' => '":name" költségszámla szerkesztése', - 'edit_revenue_account' => '":name" jövedelemszámla szerkesztése', - 'delete_asset_account' => '":name" eszközszámla törlése', - 'delete_expense_account' => '":name" költségszámla törlése', - 'delete_revenue_account' => '":name" jövedelemszámla törlése', - 'delete_liabilities_account' => '":name" kötelezettség törlése', - 'asset_deleted' => '":name" eszközszámla sikeresen törölve', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => '":name" költségszámla sikeresen törölve', - 'revenue_deleted' => '":name" jövedelemszámla sikeresen törölve', - 'update_asset_account' => 'Eszközszámla frissítése', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Kötelezettség frissítése', - 'update_expense_account' => 'Költségszámla frissítése', - 'update_revenue_account' => 'Jövedelemszámla frissítése', - 'make_new_asset_account' => 'Új eszközszámla létrehozása', - 'make_new_expense_account' => 'Új költségszámla létrehozása', - 'make_new_revenue_account' => 'Új jövedelemszámla létrehozása', - 'make_new_liabilities_account' => 'Új kötelezettség létrehozása', - 'asset_accounts' => 'Eszközszámlák', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Eszközszámlák (inaktív)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Költségszámlák', - 'expense_accounts_inactive' => 'Költségszámlák (inaktív)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Jövedelemszámlák', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Készpénzszámlák', - 'Cash account' => 'Készpénzszámla', - 'liabilities_accounts' => 'Kötelezettségek', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => '":account" számla egyeztetése', - 'overview_of_reconcile_modal' => 'Egyeztetés áttekintése', - 'delete_reconciliation' => 'Egyeztetés törlése', - 'update_reconciliation' => 'Egyeztetés frissítése', - 'amount_cannot_be_zero' => 'Az összeg nem lehet nulla', - 'end_of_reconcile_period' => 'Egyeztetési időszak vége: :period', - 'start_of_reconcile_period' => 'Egyeztetési időszak kezdete: :period', - 'start_balance' => 'Kezdő egyenleg', - 'end_balance' => 'Záró egyenleg', - 'update_balance_dates_instruction' => 'Ha a fenti összegek és dátumok összevetése a bankszámlakivonattal megtörtént, az "Egyeztetés indítása" gombra kell kattintani', - 'select_transactions_instruction' => 'A bankszámlakivonaton szereplő tranzakciók kiválasztása.', - 'select_range_and_balance' => 'Először ellenőrizd a dátum időszakot és az egyenlegeket. Utána nyomd meg az "Egyeztetés indítása" gombot', - 'date_change_instruction' => 'Az időintervallum megváltoztatásával minden előrehaladás el fog veszni.', - 'update_selection' => 'Kiválasztás frissítése', - 'store_reconcile' => 'Egyeztetés letárolása', - 'reconciliation_transaction' => 'Tranzakció egyeztetése', - 'Reconciliation' => 'Egyeztetés', - 'reconciliation' => 'Egyeztetés', - 'reconcile_options' => 'Egyeztetés beállításai', - 'reconcile_range' => 'Egyeztetés időszaka', - 'start_reconcile' => 'Egyeztetés indítása', - 'cash_account_type' => 'Készpénz', - 'cash' => 'készpénz', - 'cant_find_redirect_account' => 'A Firefly III megpróbálkozott az átirányítással de az nem sikerült. Elnézést kérünk. Vissza a kezdőlapra.', - 'account_type' => 'Bankszámla típusa', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => '":name" új számla letárolva!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => '":name" számla frissítve', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Hitelkártya opciók', - 'no_transactions_account' => 'Nincsenek tranzakciók (ebben az időszakban) az eszközszámlához: ":name".', - 'no_transactions_period' => 'Nincsenek tranzakció ebben az időszakban.', - 'no_data_for_chart' => 'Nincs elegendő információ (még) a diagram létrehozásához.', - 'select_at_least_one_account' => 'Kérem, jelöljön ki legalább egy eszközszámlát', - 'select_at_least_one_category' => 'Legalább egy kategóriát ki kell választani', - 'select_at_least_one_budget' => 'Legalább egy költségkeretet ki kell választani', - 'select_at_least_one_tag' => 'Legalább egy címkét ki kell választani', - 'select_at_least_one_expense' => 'Legalább egy költség- jövedelemszámla kombinációt ki kell választani. Ha nincs egy sem (a lista üres), ez a jelenés nem érhető el.', - 'account_default_currency' => 'Ez az ehhez a számlához társított alapértelmezett pénznem.', - 'reconcile_has_more' => 'A Firefly III főkönyvben több pénz van mint amennyinek a bank szerint lennie kellene. Több lehetőség van. Ki kell választani mi történjen. Ezután az "Egyeztetés megerősítése" gombra kell kattintani.', - 'reconcile_has_less' => 'A Firefly III főkönyvben kevesebb pénz van mint amennyinek a bank szerint lennie kellene. Több lehetőség van. Ki kell választani mi történjen. Ezután az "Egyeztetés megerősítése" gombra kell kattintani.', - 'reconcile_is_equal' => 'A Firefly III főkönyv és a bankszámlakivonatok egyeznek. Nem kell semmit sem tenni. Az importálás megerősítéséhez az "Egyeztetés megerősítése" gombra kell kattintani.', - 'create_pos_reconcile_transaction' => 'A kiválasztott tranzakciók törlése és egy korrekció létrehozása :amount hozzáadásával ehhez az eszközszámlához.', - 'create_neg_reconcile_transaction' => 'A kiválasztott tranzakciók törlése, és egy korrekció létrehozása :amount eltávolításával az eszközszámláról.', - 'reconcile_do_nothing' => 'Kijelölt tranzakciók ürítése, javítás nélkül.', - 'reconcile_go_back' => 'Egy korrekció később bármikor szerkeszthető vagy törölhető.', - 'must_be_asset_account' => 'Csak eszközszámlákat lehet egyeztetni', - 'reconciliation_stored' => 'Egyeztetés letárolva', - 'reconciliation_error' => 'Hiba miatt a tranzakciók meg lettek jelölve egyeztetésre, de az egyeztetés nem lett eltárolva: :error.', - 'reconciliation_transaction_title' => 'Egyeztetés (:from - :to)', - 'sum_of_reconciliation' => 'Egyeztetés összege', - 'reconcile_this_account' => 'Számla egyeztetése', - 'reconcile' => 'Egyeztetés', - 'show' => 'Mutat', - 'confirm_reconciliation' => 'Számla megerősítése', - 'submitted_start_balance' => 'Beküldött kezdő egyenleg', - 'selected_transactions' => 'Kiválasztott tranzakciók (:count)', - 'already_cleared_transactions' => 'Már törölt tranzakciók (:count)', - 'submitted_end_balance' => 'Beküldött záró egyenleg', - 'initial_balance_description' => '":account" kezdeti egyenlege', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'ismeretlen', - 'interest_calc_daily' => 'Naponta', - 'interest_calc_monthly' => 'Havonta', - 'interest_calc_yearly' => 'Évente', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => ':account kezdeti egyenlegfiókja', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'Ezek az inaktív számlák.', + 'active_account_link' => 'Ez a hivatkozás visszavisz az aktív számlákhoz.', + 'account_missing_transaction' => ':id (":name") számla nem tekinthető meg közvetlenül, de a Fireflyból hiányzik az átirányítási információ.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => '":name" eszközszámla részletei', + 'details_for_expense' => '":name" költségszámla részletei', + 'details_for_revenue' => '":name" jövedelemszámla részletei', + 'details_for_cash' => '":name" készpénzszámla részletei', + 'store_new_asset_account' => 'Új eszközszámla tárolása', + 'store_new_expense_account' => 'Új költségszámla tárolása', + 'store_new_revenue_account' => 'Új jövedelemszámla létrehozása', + 'edit_asset_account' => '":name" eszközszámla szerkesztése', + 'edit_expense_account' => '":name" költségszámla szerkesztése', + 'edit_revenue_account' => '":name" jövedelemszámla szerkesztése', + 'delete_asset_account' => '":name" eszközszámla törlése', + 'delete_expense_account' => '":name" költségszámla törlése', + 'delete_revenue_account' => '":name" jövedelemszámla törlése', + 'delete_liabilities_account' => '":name" kötelezettség törlése', + 'asset_deleted' => '":name" eszközszámla sikeresen törölve', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => '":name" költségszámla sikeresen törölve', + 'revenue_deleted' => '":name" jövedelemszámla sikeresen törölve', + 'update_asset_account' => 'Eszközszámla frissítése', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Kötelezettség frissítése', + 'update_expense_account' => 'Költségszámla frissítése', + 'update_revenue_account' => 'Jövedelemszámla frissítése', + 'make_new_asset_account' => 'Új eszközszámla létrehozása', + 'make_new_expense_account' => 'Új költségszámla létrehozása', + 'make_new_revenue_account' => 'Új jövedelemszámla létrehozása', + 'make_new_liabilities_account' => 'Új kötelezettség létrehozása', + 'asset_accounts' => 'Eszközszámlák', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Eszközszámlák (inaktív)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Költségszámlák', + 'expense_accounts_inactive' => 'Költségszámlák (inaktív)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Jövedelemszámlák', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Készpénzszámlák', + 'Cash account' => 'Készpénzszámla', + 'liabilities_accounts' => 'Kötelezettségek', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => '":account" számla egyeztetése', + 'overview_of_reconcile_modal' => 'Egyeztetés áttekintése', + 'delete_reconciliation' => 'Egyeztetés törlése', + 'update_reconciliation' => 'Egyeztetés frissítése', + 'amount_cannot_be_zero' => 'Az összeg nem lehet nulla', + 'end_of_reconcile_period' => 'Egyeztetési időszak vége: :period', + 'start_of_reconcile_period' => 'Egyeztetési időszak kezdete: :period', + 'start_balance' => 'Kezdő egyenleg', + 'end_balance' => 'Záró egyenleg', + 'update_balance_dates_instruction' => 'Ha a fenti összegek és dátumok összevetése a bankszámlakivonattal megtörtént, az "Egyeztetés indítása" gombra kell kattintani', + 'select_transactions_instruction' => 'A bankszámlakivonaton szereplő tranzakciók kiválasztása.', + 'select_range_and_balance' => 'Először ellenőrizd a dátum időszakot és az egyenlegeket. Utána nyomd meg az "Egyeztetés indítása" gombot', + 'date_change_instruction' => 'Az időintervallum megváltoztatásával minden előrehaladás el fog veszni.', + 'update_selection' => 'Kiválasztás frissítése', + 'store_reconcile' => 'Egyeztetés letárolása', + 'reconciliation_transaction' => 'Tranzakció egyeztetése', + 'Reconciliation' => 'Egyeztetés', + 'reconciliation' => 'Egyeztetés', + 'reconcile_options' => 'Egyeztetés beállításai', + 'reconcile_range' => 'Egyeztetés időszaka', + 'start_reconcile' => 'Egyeztetés indítása', + 'cash_account_type' => 'Készpénz', + 'cash' => 'készpénz', + 'cant_find_redirect_account' => 'A Firefly III megpróbálkozott az átirányítással de az nem sikerült. Elnézést kérünk. Vissza a kezdőlapra.', + 'account_type' => 'Bankszámla típusa', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => '":name" új számla letárolva!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => '":name" számla frissítve', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Hitelkártya opciók', + 'no_transactions_account' => 'Nincsenek tranzakciók (ebben az időszakban) az eszközszámlához: ":name".', + 'no_transactions_period' => 'Nincsenek tranzakció ebben az időszakban.', + 'no_data_for_chart' => 'Nincs elegendő információ (még) a diagram létrehozásához.', + 'select_at_least_one_account' => 'Kérem, jelöljön ki legalább egy eszközszámlát', + 'select_at_least_one_category' => 'Legalább egy kategóriát ki kell választani', + 'select_at_least_one_budget' => 'Legalább egy költségkeretet ki kell választani', + 'select_at_least_one_tag' => 'Legalább egy címkét ki kell választani', + 'select_at_least_one_expense' => 'Legalább egy költség- jövedelemszámla kombinációt ki kell választani. Ha nincs egy sem (a lista üres), ez a jelenés nem érhető el.', + 'account_default_currency' => 'Ez az ehhez a számlához társított alapértelmezett pénznem.', + 'reconcile_has_more' => 'A Firefly III főkönyvben több pénz van mint amennyinek a bank szerint lennie kellene. Több lehetőség van. Ki kell választani mi történjen. Ezután az "Egyeztetés megerősítése" gombra kell kattintani.', + 'reconcile_has_less' => 'A Firefly III főkönyvben kevesebb pénz van mint amennyinek a bank szerint lennie kellene. Több lehetőség van. Ki kell választani mi történjen. Ezután az "Egyeztetés megerősítése" gombra kell kattintani.', + 'reconcile_is_equal' => 'A Firefly III főkönyv és a bankszámlakivonatok egyeznek. Nem kell semmit sem tenni. Az importálás megerősítéséhez az "Egyeztetés megerősítése" gombra kell kattintani.', + 'create_pos_reconcile_transaction' => 'A kiválasztott tranzakciók törlése és egy korrekció létrehozása :amount hozzáadásával ehhez az eszközszámlához.', + 'create_neg_reconcile_transaction' => 'A kiválasztott tranzakciók törlése, és egy korrekció létrehozása :amount eltávolításával az eszközszámláról.', + 'reconcile_do_nothing' => 'Kijelölt tranzakciók ürítése, javítás nélkül.', + 'reconcile_go_back' => 'Egy korrekció később bármikor szerkeszthető vagy törölhető.', + 'must_be_asset_account' => 'Csak eszközszámlákat lehet egyeztetni', + 'reconciliation_stored' => 'Egyeztetés letárolva', + 'reconciliation_error' => 'Hiba miatt a tranzakciók meg lettek jelölve egyeztetésre, de az egyeztetés nem lett eltárolva: :error.', + 'reconciliation_transaction_title' => 'Egyeztetés (:from - :to)', + 'sum_of_reconciliation' => 'Egyeztetés összege', + 'reconcile_this_account' => 'Számla egyeztetése', + 'reconcile' => 'Egyeztetés', + 'show' => 'Mutat', + 'confirm_reconciliation' => 'Számla megerősítése', + 'submitted_start_balance' => 'Beküldött kezdő egyenleg', + 'selected_transactions' => 'Kiválasztott tranzakciók (:count)', + 'already_cleared_transactions' => 'Már törölt tranzakciók (:count)', + 'submitted_end_balance' => 'Beküldött záró egyenleg', + 'initial_balance_description' => '":account" kezdeti egyenlege', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'ismeretlen', + 'interest_calc_daily' => 'Naponta', + 'interest_calc_monthly' => 'Havonta', + 'interest_calc_yearly' => 'Évente', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => ':account kezdeti egyenlegfiókja', + 'list_options' => 'List options', // categories: - 'new_category' => 'Új kategória', - 'create_new_category' => 'Új kategória létrehozása', - 'without_category' => 'Kategória nélkül', - 'update_category' => 'Kategória frissítése', - 'updated_category' => '":name" kategória frissítve', - 'categories' => 'Kategóriák', - 'edit_category' => '":name" kategória szerkesztése', - 'no_category' => '(nincs kategória)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategória', - 'delete_category' => '":name" kategória törlése', - 'deleted_category' => '":name" kategória törlése', - 'store_category' => 'Új kategória tárolása', - 'stored_category' => 'Új kategória létrehozva ":name"', - 'without_category_between' => 'Kategória nélkül :start és :end között', + 'new_category' => 'Új kategória', + 'create_new_category' => 'Új kategória létrehozása', + 'without_category' => 'Kategória nélkül', + 'update_category' => 'Kategória frissítése', + 'updated_category' => '":name" kategória frissítve', + 'categories' => 'Kategóriák', + 'edit_category' => '":name" kategória szerkesztése', + 'no_category' => '(nincs kategória)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategória', + 'delete_category' => '":name" kategória törlése', + 'deleted_category' => '":name" kategória törlése', + 'store_category' => 'Új kategória tárolása', + 'stored_category' => 'Új kategória létrehozva ":name"', + 'without_category_between' => 'Kategória nélkül :start és :end között', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Kérlek várj az űrlap betöltéséig', - 'wait_loading_data' => 'Kérlek várj amíg betöltjük az adatokat...', - 'wait_attachments' => 'Kérlek várj a mellékletek feltöltésére.', - 'errors_upload' => 'A feltöltés sikertelen. A hibáért kérlek, ellenőrizd a böngésző konzolt.', - 'amount_foreign_if' => 'Összeg devizában, ha van ilyen', - 'amount_destination_account' => 'Összeg a célszámla pénznemében', - 'edit_transaction_title' => 'Tranzakció módosítása ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Költség frissítése', - 'update_deposit' => 'Bevétel szerkesztése', - 'update_transaction' => 'Tranzakció frissítése', - 'update_transfer' => 'Utalás szerkesztése', - 'updated_withdrawal' => 'Költség frissítve ":description"', - 'updated_deposit' => '":description" bevétel frissítve', - 'updated_transfer' => 'Átvezetés frissítve ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Költség törölve ":description"', - 'delete_deposit' => '":description" bevétel törlése', - 'delete_transfer' => 'Átvezetés törlése ":description"', - 'deleted_withdrawal' => 'A költség sikeresen törölve ":description"', - 'deleted_deposit' => '":description" bevétel sikeresen törölve', - 'deleted_transfer' => '":description" átvezetés sikeresen törölve', - 'deleted_reconciliation' => '":description" egyeztető tranzakció sikeresen törölve', - 'stored_journal' => '":description" új tranzakció sikeresen létrehozva', - 'stored_journal_js' => '"{{description}}" új tranzakció sikeresen létrehozva', - 'stored_journal_no_descr' => 'Új tranzakció sikeresen létrehozva', - 'updated_journal_no_descr' => 'Tranzakció sikeresen frissítve', - 'select_transactions' => 'Tranzakciók kiválasztása', - 'rule_group_select_transactions' => '":title" alkalmazása tranzakciókon', - 'rule_select_transactions' => '":title" alkalmazása tranzakciókon', - 'stop_selection' => 'Tranzakciók kiválasztásának leállítása', - 'reconcile_selected' => 'Egyeztetés', - 'mass_delete_journals' => 'Több tranzakció törlése', - 'mass_edit_journals' => 'Több tranzakció szerkesztése', - 'mass_bulk_journals' => 'Több tranzakció tömeges szerkesztése', - 'mass_bulk_journals_explain' => 'Az űrlap segítségévle egyszerre lehet több tranzakció tulajdonságát is módosítani. Az űrlapon szereplő minden egyes tranzakció frissítve lesz azokkal a tulajdonságokkal, amelyek a táblázatban megtalálhatóak.', - 'part_of_split' => 'Ez a tranzakció egy része egy felosztott tranzakciónak. Ha nincs a tranzakcióhoz tartozó összes rész kiválasztva, úgy csak a résztranzakció fog módosulni.', - 'bulk_set_new_values' => 'Új értékeket a lenti mezőkben lehet megadni. Üresen hagyva mindig üresek lesznek. Fontos tudni, hogy csak a költségekhez lesz költségkeret rendelve.', - 'no_bulk_category' => 'Ne frissítse a kategóriát', - 'no_bulk_budget' => 'Ne frissítse a költségkeretet', - 'no_bulk_tags' => 'Ne frissítse a cimké(ke)t', - 'replace_with_these_tags' => 'Címkék cseréje', - 'append_these_tags' => 'Címkék hozzáadása', - 'mass_edit' => 'Kijelöltek szerkesztése egyesével', - 'bulk_edit' => 'Kijelöltek tömeges szerkesztése', - 'mass_delete' => 'Kijelöltek törlése', - 'cannot_edit_other_fields' => 'Ezeken kívül nem lehet más mezőket tömegesen szerkeszteni, mert nincs elég hely a megjelenítésükhöz. Ha szerkeszteni kell ezeket a mezőket, a hivatkozás használatával lehet megtenni egyesével.', - 'cannot_change_amount_reconciled' => 'Egyeztetett tranzakciók összegét nem lehet módosítani.', - 'no_budget' => '(nincs költségkeret)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Számla költségkeret szerint', - 'account_per_category' => 'Számal kategória szerint', - 'create_new_object' => 'Létrehozás', - 'empty' => '(üres)', - 'all_other_budgets' => '(minden más költségkeret)', - 'all_other_accounts' => '(minden más számla)', - 'expense_per_source_account' => 'Költségek forrásszámla szerint', - 'expense_per_destination_account' => 'Költségek célszámla szerint', - 'income_per_destination_account' => 'Bevétel célszámla szerint', - 'spent_in_specific_category' => '":category" kategóriában elköltve', - 'earned_in_specific_category' => '":category" kategóriában megkeresve', - 'spent_in_specific_tag' => '":tag" címkében elköltve', - 'earned_in_specific_tag' => '":tag" címkében megkeresve', - 'income_per_source_account' => 'Bevétel forrásszámla szerint', - 'average_spending_per_destination' => 'Átlagos költség célszámla szerint', - 'average_spending_per_source' => 'Átlagos költség forrásszámla alapján', - 'average_earning_per_source' => 'Átlagos bevétel forrásszámlánként', - 'average_earning_per_destination' => 'Átlagos bevétel célszámlánként', - 'account_per_tag' => 'Számla címke alapján', - 'tag_report_expenses_listed_once' => 'Bevételek és kiadások sosem kerülnek egyszerre kilistázásra. Ha a tranzakciónak több címkéje is van, akkor csak egyetlen címke alatt lesz megtalálható. A lista lehet, hogy nem tartalmaz minden egyes elemet, de a végösszeg helyes.', - 'double_report_expenses_charted_once' => 'Bevételek és kiadások sosem kerülnek egyszerre kilistázásra. Ha a tranzakciónak több címkéje is van, akkor csak egyetlen címke alatt lesz megtalálható. A lista lehet, hogy nem tartalmaz minden egyes elemet, de a végösszeg helyes.', - 'tag_report_chart_single_tag' => 'A táblázat egyetlen címkére értendő. Ha a tranzakciónak több címkéje is van, akkor más címkékhez tartozó táblázatokban is meg fog jelenni.', - 'tag' => 'Címke', - 'no_budget_squared' => '(nincs költségkeret)', - 'perm-delete-many' => 'Egyszerre több elem törlése zavaró lehet. Legyen elővigyázatos. Felosztott tranzakciók egyes elemei is törölhetőek erről a lapról.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(nincs számlatípus)', - 'opt_group_no_account_type' => '(nincs számlatípus)', - 'opt_group_defaultAsset' => 'Alapértelmezett eszközszámlák', - 'opt_group_savingAsset' => 'Megtakarítási számlák', - 'opt_group_sharedAsset' => 'Megosztott eszközszámlák', - 'opt_group_ccAsset' => 'Hitelkártyák', - 'opt_group_cashWalletAsset' => 'Készpénz', - 'opt_group_expense_account' => 'Költségszámlák', - 'opt_group_revenue_account' => 'Jövedelemszámlák', - 'opt_group_l_Loan' => 'Kötelezettség: hitel', - 'opt_group_cash_account' => 'Készpénzszámla', - 'opt_group_l_Debt' => 'Kötelezettség: adósság', - 'opt_group_l_Mortgage' => 'Kötelezettség: jelzálog', - 'opt_group_l_Credit card' => 'Kötelezettség: hitelkártya', - 'notes' => 'Megjegyzések', - 'unknown_journal_error' => 'Nem lehet letárolni a tranzakciót. Ellenőrizni kell a naplófájlokat.', - 'attachment_not_found' => 'Ez a melléklet nem található.', - 'journal_link_bill' => 'Ez a tranzakció :name számlához van csatolva. A kapcsolat eltávolításához ki kell venni a jelölést a jelölőnégyzetből. Szabályok használatával másik számlához lehet csatolni.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") mentve.', - 'transaction_new_stored_link' => 'Transaction #{ID} mentve.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Kérlek várj az űrlap betöltéséig', + 'wait_loading_data' => 'Kérlek várj amíg betöltjük az adatokat...', + 'wait_attachments' => 'Kérlek várj a mellékletek feltöltésére.', + 'errors_upload' => 'A feltöltés sikertelen. A hibáért kérlek, ellenőrizd a böngésző konzolt.', + 'amount_foreign_if' => 'Összeg devizában, ha van ilyen', + 'amount_destination_account' => 'Összeg a célszámla pénznemében', + 'edit_transaction_title' => 'Tranzakció módosítása ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Költség frissítése', + 'update_deposit' => 'Bevétel szerkesztése', + 'update_transaction' => 'Tranzakció frissítése', + 'update_transfer' => 'Utalás szerkesztése', + 'updated_withdrawal' => 'Költség frissítve ":description"', + 'updated_deposit' => '":description" bevétel frissítve', + 'updated_transfer' => 'Átvezetés frissítve ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Költség törölve ":description"', + 'delete_deposit' => '":description" bevétel törlése', + 'delete_transfer' => 'Átvezetés törlése ":description"', + 'deleted_withdrawal' => 'A költség sikeresen törölve ":description"', + 'deleted_deposit' => '":description" bevétel sikeresen törölve', + 'deleted_transfer' => '":description" átvezetés sikeresen törölve', + 'deleted_reconciliation' => '":description" egyeztető tranzakció sikeresen törölve', + 'stored_journal' => '":description" új tranzakció sikeresen létrehozva', + 'stored_journal_js' => '"{{description}}" új tranzakció sikeresen létrehozva', + 'stored_journal_no_descr' => 'Új tranzakció sikeresen létrehozva', + 'updated_journal_no_descr' => 'Tranzakció sikeresen frissítve', + 'select_transactions' => 'Tranzakciók kiválasztása', + 'rule_group_select_transactions' => '":title" alkalmazása tranzakciókon', + 'rule_select_transactions' => '":title" alkalmazása tranzakciókon', + 'stop_selection' => 'Tranzakciók kiválasztásának leállítása', + 'reconcile_selected' => 'Egyeztetés', + 'mass_delete_journals' => 'Több tranzakció törlése', + 'mass_edit_journals' => 'Több tranzakció szerkesztése', + 'mass_bulk_journals' => 'Több tranzakció tömeges szerkesztése', + 'mass_bulk_journals_explain' => 'Az űrlap segítségévle egyszerre lehet több tranzakció tulajdonságát is módosítani. Az űrlapon szereplő minden egyes tranzakció frissítve lesz azokkal a tulajdonságokkal, amelyek a táblázatban megtalálhatóak.', + 'part_of_split' => 'Ez a tranzakció egy része egy felosztott tranzakciónak. Ha nincs a tranzakcióhoz tartozó összes rész kiválasztva, úgy csak a résztranzakció fog módosulni.', + 'bulk_set_new_values' => 'Új értékeket a lenti mezőkben lehet megadni. Üresen hagyva mindig üresek lesznek. Fontos tudni, hogy csak a költségekhez lesz költségkeret rendelve.', + 'no_bulk_category' => 'Ne frissítse a kategóriát', + 'no_bulk_budget' => 'Ne frissítse a költségkeretet', + 'no_bulk_tags' => 'Ne frissítse a cimké(ke)t', + 'replace_with_these_tags' => 'Címkék cseréje', + 'append_these_tags' => 'Címkék hozzáadása', + 'mass_edit' => 'Kijelöltek szerkesztése egyesével', + 'bulk_edit' => 'Kijelöltek tömeges szerkesztése', + 'mass_delete' => 'Kijelöltek törlése', + 'cannot_edit_other_fields' => 'Ezeken kívül nem lehet más mezőket tömegesen szerkeszteni, mert nincs elég hely a megjelenítésükhöz. Ha szerkeszteni kell ezeket a mezőket, a hivatkozás használatával lehet megtenni egyesével.', + 'cannot_change_amount_reconciled' => 'Egyeztetett tranzakciók összegét nem lehet módosítani.', + 'no_budget' => '(nincs költségkeret)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Számla költségkeret szerint', + 'account_per_category' => 'Számal kategória szerint', + 'create_new_object' => 'Létrehozás', + 'empty' => '(üres)', + 'all_other_budgets' => '(minden más költségkeret)', + 'all_other_accounts' => '(minden más számla)', + 'expense_per_source_account' => 'Költségek forrásszámla szerint', + 'expense_per_destination_account' => 'Költségek célszámla szerint', + 'income_per_destination_account' => 'Bevétel célszámla szerint', + 'spent_in_specific_category' => '":category" kategóriában elköltve', + 'earned_in_specific_category' => '":category" kategóriában megkeresve', + 'spent_in_specific_tag' => '":tag" címkében elköltve', + 'earned_in_specific_tag' => '":tag" címkében megkeresve', + 'income_per_source_account' => 'Bevétel forrásszámla szerint', + 'average_spending_per_destination' => 'Átlagos költség célszámla szerint', + 'average_spending_per_source' => 'Átlagos költség forrásszámla alapján', + 'average_earning_per_source' => 'Átlagos bevétel forrásszámlánként', + 'average_earning_per_destination' => 'Átlagos bevétel célszámlánként', + 'account_per_tag' => 'Számla címke alapján', + 'tag_report_expenses_listed_once' => 'Bevételek és kiadások sosem kerülnek egyszerre kilistázásra. Ha a tranzakciónak több címkéje is van, akkor csak egyetlen címke alatt lesz megtalálható. A lista lehet, hogy nem tartalmaz minden egyes elemet, de a végösszeg helyes.', + 'double_report_expenses_charted_once' => 'Bevételek és kiadások sosem kerülnek egyszerre kilistázásra. Ha a tranzakciónak több címkéje is van, akkor csak egyetlen címke alatt lesz megtalálható. A lista lehet, hogy nem tartalmaz minden egyes elemet, de a végösszeg helyes.', + 'tag_report_chart_single_tag' => 'A táblázat egyetlen címkére értendő. Ha a tranzakciónak több címkéje is van, akkor más címkékhez tartozó táblázatokban is meg fog jelenni.', + 'tag' => 'Címke', + 'no_budget_squared' => '(nincs költségkeret)', + 'perm-delete-many' => 'Egyszerre több elem törlése zavaró lehet. Legyen elővigyázatos. Felosztott tranzakciók egyes elemei is törölhetőek erről a lapról.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(nincs számlatípus)', + 'opt_group_no_account_type' => '(nincs számlatípus)', + 'opt_group_defaultAsset' => 'Alapértelmezett eszközszámlák', + 'opt_group_savingAsset' => 'Megtakarítási számlák', + 'opt_group_sharedAsset' => 'Megosztott eszközszámlák', + 'opt_group_ccAsset' => 'Hitelkártyák', + 'opt_group_cashWalletAsset' => 'Készpénz', + 'opt_group_expense_account' => 'Költségszámlák', + 'opt_group_revenue_account' => 'Jövedelemszámlák', + 'opt_group_l_Loan' => 'Kötelezettség: hitel', + 'opt_group_cash_account' => 'Készpénzszámla', + 'opt_group_l_Debt' => 'Kötelezettség: adósság', + 'opt_group_l_Mortgage' => 'Kötelezettség: jelzálog', + 'opt_group_l_Credit card' => 'Kötelezettség: hitelkártya', + 'notes' => 'Megjegyzések', + 'unknown_journal_error' => 'Nem lehet letárolni a tranzakciót. Ellenőrizni kell a naplófájlokat.', + 'attachment_not_found' => 'Ez a melléklet nem található.', + 'journal_link_bill' => 'Ez a tranzakció :name számlához van csatolva. A kapcsolat eltávolításához ki kell venni a jelölést a jelölőnégyzetből. Szabályok használatával másik számlához lehet csatolni.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") mentve.', + 'transaction_new_stored_link' => 'Transaction #{ID} mentve.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Üdvözöli a Firefly III!', - 'submit' => 'Beküldés', - 'submission' => 'Feliratkozás', - 'submit_yes_really' => 'Beküldés (tudom mit csinálok)', - 'getting_started' => 'Első lépések', - 'to_get_started' => 'Gratulálunk a Firefly III sikeres telepítéséhez. A használat megkezdéséhez meg kell adni a bank nevét és a főszámla egyenlegét. Semmi probléma ha több bankszámlát is kezelni kell, ezeket később hozzá lehet adni. Most csak a Firefly III használatának elkezdéséhez szükséges néhány adatot kell megadni.', - 'savings_balance_text' => 'A Firefly III automatikusan létrehoz egy megtakarítási számlát. Alapértelmezés szerint pénz nem lesz a megtakarítási számlán, de megadható a Firefly III-nak egy mérleg, ami el lesz tárolva.', - 'finish_up_new_user' => 'Kész is! A továbblépéshez a Beküldés gombra kell kattintani. A gombra kattintás után megnyílik a Firefly III kezdőlapja.', - 'stored_new_accounts_new_user' => 'Hurrá! Az új bankszámlák tárolva lettek.', - 'set_preferred_language' => 'Ha más nyelven szeretnéd használni a Firefly III-at, kérjük jelezd itt.', - 'language' => 'Nyelv', - 'new_savings_account' => ':bank_name megtakarítási számla', - 'cash_wallet' => 'Készpénz', - 'currency_not_present' => 'Ne aggódj ha az általad normál esetben használt pénznem nincs a listában. Létrehozhatod a saját pénznemedet a Beállítások -> Pénznemek alatt.', + 'welcome' => 'Üdvözöli a Firefly III!', + 'submit' => 'Beküldés', + 'submission' => 'Feliratkozás', + 'submit_yes_really' => 'Beküldés (tudom mit csinálok)', + 'getting_started' => 'Első lépések', + 'to_get_started' => 'Gratulálunk a Firefly III sikeres telepítéséhez. A használat megkezdéséhez meg kell adni a bank nevét és a főszámla egyenlegét. Semmi probléma ha több bankszámlát is kezelni kell, ezeket később hozzá lehet adni. Most csak a Firefly III használatának elkezdéséhez szükséges néhány adatot kell megadni.', + 'savings_balance_text' => 'A Firefly III automatikusan létrehoz egy megtakarítási számlát. Alapértelmezés szerint pénz nem lesz a megtakarítási számlán, de megadható a Firefly III-nak egy mérleg, ami el lesz tárolva.', + 'finish_up_new_user' => 'Kész is! A továbblépéshez a Beküldés gombra kell kattintani. A gombra kattintás után megnyílik a Firefly III kezdőlapja.', + 'stored_new_accounts_new_user' => 'Hurrá! Az új bankszámlák tárolva lettek.', + 'set_preferred_language' => 'Ha más nyelven szeretnéd használni a Firefly III-at, kérjük jelezd itt.', + 'language' => 'Nyelv', + 'new_savings_account' => ':bank_name megtakarítási számla', + 'cash_wallet' => 'Készpénz', + 'currency_not_present' => 'Ne aggódj ha az általad normál esetben használt pénznem nincs a listában. Létrehozhatod a saját pénznemedet a Beállítások -> Pénznemek alatt.', // home page: - 'transaction_table_description' => 'Tranzakciókat tartalmazó táblázat', - 'opposing_account' => 'Ellenoldali számla', - 'yourAccounts' => 'Bankszámlák', - 'your_accounts' => 'Számla áttekintése', - 'category_overview' => 'Kategória áttekintés', - 'expense_overview' => 'Költségszámla áttekintése', - 'revenue_overview' => 'Jövedelemszámla áttekintése', - 'budgetsAndSpending' => 'Költségkeretek és kiadások', - 'budgets_and_spending' => 'Költségkeretek és kiadások', - 'go_to_budget' => 'Ugrás költségkerethez "{budget}"', - 'go_to_deposits' => 'Ugrás a bevételekre', - 'go_to_expenses' => 'Ugrás a kiadásokra', - 'savings' => 'Magtakarítások', - 'newWithdrawal' => 'Új költség', - 'newDeposit' => 'Új bevétel', - 'newTransfer' => 'Új átvezetés', - 'bills_to_pay' => 'Fizetendő számlák', - 'per_day' => 'Naponta', - 'left_to_spend_per_day' => 'Naponta elkölthető', - 'bills_paid' => 'Befizetett számlák', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'Tranzakciókat tartalmazó táblázat', + 'opposing_account' => 'Ellenoldali számla', + 'yourAccounts' => 'Bankszámlák', + 'your_accounts' => 'Számla áttekintése', + 'category_overview' => 'Kategória áttekintés', + 'expense_overview' => 'Költségszámla áttekintése', + 'revenue_overview' => 'Jövedelemszámla áttekintése', + 'budgetsAndSpending' => 'Költségkeretek és kiadások', + 'budgets_and_spending' => 'Költségkeretek és kiadások', + 'go_to_budget' => 'Ugrás költségkerethez "{budget}"', + 'go_to_deposits' => 'Ugrás a bevételekre', + 'go_to_expenses' => 'Ugrás a kiadásokra', + 'savings' => 'Magtakarítások', + 'newWithdrawal' => 'Új költség', + 'newDeposit' => 'Új bevétel', + 'newTransfer' => 'Új átvezetés', + 'bills_to_pay' => 'Fizetendő számlák', + 'per_day' => 'Naponta', + 'left_to_spend_per_day' => 'Naponta elkölthető', + 'bills_paid' => 'Befizetett számlák', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Pénznem', - 'preferences' => 'Beállítások', - 'logout' => 'Kijelentkezés', - 'logout_other_sessions' => 'Minden más munkamenet kijelentkeztetése', - 'toggleNavigation' => 'Navigációs mód átkapcsolása', - 'searchPlaceholder' => 'Keresés...', - 'version' => 'Verzió', - 'dashboard' => 'Műszerfal', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Rendelkezésre álló költségkeret ({currency})', - 'currencies' => 'Pénznemek', - 'activity' => 'Tevékenység', - 'usage' => 'Használat', - 'accounts' => 'Számlák', - 'Asset account' => 'Eszközszámla', - 'Default account' => 'Eszközszámla', - 'Expense account' => 'Költségszámla', - 'Revenue account' => 'Jövedelemszámla', - 'Initial balance account' => 'Számla kezdeti egyenlege', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Adósság', - 'account_type_Loan' => 'Hitel', - 'account_type_Mortgage' => 'Jelzálog', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Hitelkártya', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Költségkeretek', - 'tags' => 'Címkék', - 'reports' => 'Jelentések', - 'transactions' => 'Tranzakciók', - 'expenses' => 'Költségek', - 'income' => 'Jövedelem / bevétel', - 'transfers' => 'Átvezetések', - 'moneyManagement' => 'Pénzkezelés', - 'money_management' => 'Pénzkezelés', - 'tools' => 'Eszközök', - 'piggyBanks' => 'Malacperselyek', - 'piggy_banks' => 'Malacperselyek', - 'amount_x_of_y' => '{current} / {total}', - 'bills' => 'Számlák', - 'withdrawal' => 'Költség', - 'opening_balance' => 'Nyitó egyenleg', - 'deposit' => 'Bevétel', - 'account' => 'Bankszámla', - 'transfer' => 'Átvezetés', - 'Withdrawal' => 'Költség', - 'Deposit' => 'Bevétel', - 'Transfer' => 'Átvezetés', - 'bill' => 'Számla', - 'yes' => 'Igen', - 'no' => 'Nem', - 'amount' => 'Összeg', - 'overview' => 'Áttekintés', - 'saveOnAccount' => 'Megtakarítás a számlán:', - 'unknown' => 'Ismeretlen', - 'monthly' => 'Havi', - 'profile' => 'Profil', - 'errors' => 'Hibák', - 'debt_start_date' => 'Adósság kezdete', - 'debt_start_amount' => 'Adósság kezdeti összege', - 'debt_start_amount_help' => 'A legjobb ezt az összeget negatívra állítani. Olvassa el a súgót (a kérdőjel-ikon a jobb felső sarokban) további információkért.', - 'interest_period_help' => 'Ez kizárólag kozmetikázásra használt mező, nem fog a számláláshoz hozzáadódni. Mint kiderült, a bankok néha sunyik és a Firefly III tévedhet.', - 'store_new_liabilities_account' => 'Új kötelezettség eltárolása', - 'edit_liabilities_account' => '":name" kötelezettség szerkesztése', - 'financial_control' => 'Pénzügyi felügyelet', - 'accounting' => 'Számlázás', - 'automation' => 'Automatizálás', - 'others' => 'Egyebek', - 'classification' => 'Besorolás', - 'store_transaction' => 'Store transaction', + 'currency' => 'Pénznem', + 'preferences' => 'Beállítások', + 'logout' => 'Kijelentkezés', + 'logout_other_sessions' => 'Minden más munkamenet kijelentkeztetése', + 'toggleNavigation' => 'Navigációs mód átkapcsolása', + 'searchPlaceholder' => 'Keresés...', + 'version' => 'Verzió', + 'dashboard' => 'Műszerfal', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Rendelkezésre álló költségkeret ({currency})', + 'currencies' => 'Pénznemek', + 'activity' => 'Tevékenység', + 'usage' => 'Használat', + 'accounts' => 'Számlák', + 'Asset account' => 'Eszközszámla', + 'Default account' => 'Eszközszámla', + 'Expense account' => 'Költségszámla', + 'Revenue account' => 'Jövedelemszámla', + 'Initial balance account' => 'Számla kezdeti egyenlege', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Adósság', + 'account_type_Loan' => 'Hitel', + 'account_type_Mortgage' => 'Jelzálog', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Hitelkártya', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Költségkeretek', + 'tags' => 'Címkék', + 'reports' => 'Jelentések', + 'transactions' => 'Tranzakciók', + 'expenses' => 'Költségek', + 'income' => 'Jövedelem / bevétel', + 'transfers' => 'Átvezetések', + 'moneyManagement' => 'Pénzkezelés', + 'money_management' => 'Pénzkezelés', + 'tools' => 'Eszközök', + 'piggyBanks' => 'Malacperselyek', + 'piggy_banks' => 'Malacperselyek', + 'amount_x_of_y' => '{current} / {total}', + 'bills' => 'Számlák', + 'withdrawal' => 'Költség', + 'opening_balance' => 'Nyitó egyenleg', + 'deposit' => 'Bevétel', + 'account' => 'Bankszámla', + 'transfer' => 'Átvezetés', + 'Withdrawal' => 'Költség', + 'Deposit' => 'Bevétel', + 'Transfer' => 'Átvezetés', + 'bill' => 'Számla', + 'yes' => 'Igen', + 'no' => 'Nem', + 'amount' => 'Összeg', + 'overview' => 'Áttekintés', + 'saveOnAccount' => 'Megtakarítás a számlán:', + 'unknown' => 'Ismeretlen', + 'monthly' => 'Havi', + 'profile' => 'Profil', + 'errors' => 'Hibák', + 'debt_start_date' => 'Adósság kezdete', + 'debt_start_amount' => 'Adósság kezdeti összege', + 'debt_start_amount_help' => 'A legjobb ezt az összeget negatívra állítani. Olvassa el a súgót (a kérdőjel-ikon a jobb felső sarokban) további információkért.', + 'interest_period_help' => 'Ez kizárólag kozmetikázásra használt mező, nem fog a számláláshoz hozzáadódni. Mint kiderült, a bankok néha sunyik és a Firefly III tévedhet.', + 'store_new_liabilities_account' => 'Új kötelezettség eltárolása', + 'edit_liabilities_account' => '":name" kötelezettség szerkesztése', + 'financial_control' => 'Pénzügyi felügyelet', + 'accounting' => 'Számlázás', + 'automation' => 'Automatizálás', + 'others' => 'Egyebek', + 'classification' => 'Besorolás', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Alapértelmezett pénzügyi jelentés :start és :end között', - 'report_audit' => 'Tranzakciótörténet áttekintése :start és :end között', - 'report_category' => 'Kategória jelentés :start és :end között', - 'report_double' => 'Költség- jövedelemszámla jelentés :start és :end között', - 'report_budget' => 'Költségkeret jelentés :start és :end között', - 'report_tag' => 'Címke jelentés :start és :end között', - 'quick_link_reports' => 'Gyorshivatkozások', - 'quick_link_examples' => 'Itt csak az indulást segítő néhány példa hivatkozás található. A súgó oldalakon, a (?) ikon alatt, további információ található a jelentésekről és a használható mágikus szavakról.', - 'quick_link_default_report' => 'Alapértelmezett pénzügyi jelentés', - 'quick_link_audit_report' => 'Tranzakciótörténeti áttekintés', - 'report_this_month_quick' => 'Aktuális hónap, minden bankszámla', - 'report_last_month_quick' => 'Utolsó hónap, minden számla', - 'report_this_year_quick' => 'Folyó év, minden bankszámla', - 'report_this_fiscal_year_quick' => 'Jelenlegi pénzügyi év, minden bankszámla', - 'report_all_time_quick' => 'Mindig, minden számla', - 'reports_can_bookmark' => 'A jelentéseket meg lehet jelölni könyvjelzővel.', - 'incomeVsExpenses' => 'Bevételek - Költségek', - 'accountBalances' => 'Számla egyenlegek', - 'balanceStart' => 'Egyenleg az időszak kezdetén', - 'balanceEnd' => 'Egyenleg az időszak végén', - 'splitByAccount' => 'Bankszámlákra osztva', - 'coveredWithTags' => 'Címkékkel fedezve', - 'leftInBudget' => 'Költségkeretből maradt', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Összegek összege', - 'noCategory' => '(nincs kategória)', - 'notCharged' => 'Nem változott (még)', - 'inactive' => 'Inaktív', - 'active' => 'Aktív', - 'difference' => 'Különbség', - 'money_flowing_in' => 'Be', - 'money_flowing_out' => 'Ki', - 'topX' => 'top :number', - 'show_full_list' => 'Teljes lista megjelenítése', - 'show_only_top' => 'Csak a top mutatása: :number', - 'report_type' => 'Jelentés típusa', - 'report_type_default' => 'Alapértelmezett pénzügyi jelentés', - 'report_type_audit' => 'Tranzakciótörténeti áttekintés (auditálás)', - 'report_type_category' => 'Kategória jelentés', - 'report_type_budget' => 'Költségkeret jelentés', - 'report_type_tag' => 'Címke jelentés', - 'report_type_double' => 'Költség- jövedelemszámla jelentés', - 'more_info_help' => 'Ezekkel a jelentéstípusokkal kapcsolatban további információ található a súgóoldalakon. A súgó a jobb felső sarokban található (?) ikonra kattintva érhető el.', - 'report_included_accounts' => 'Befoglalt számlák', - 'report_date_range' => 'Dátum intervallum', - 'report_preset_ranges' => 'Előre beállított intervallumok', - 'shared' => 'Megosztott', - 'fiscal_year' => 'Pénzügyi év', - 'income_entry' => '":name" bevételei :start és :end között', - 'expense_entry' => '":name" számla kiadásai :start és :end között', - 'category_entry' => '":name" kategória kiadásai és bevételei :start és :end között', - 'budget_spent_amount' => '":budget" költségkeret kiadásai :start és :end között', - 'balance_amount' => '":budget" költségkeret ":account" számláról fizetett kiadásai :start és :end között', - 'no_audit_activity' => ':account_name számlán nem volt aktivitás :start és :end között.', - 'audit_end_balance' => ':account_name számlaegyenlege :end végén :balance volt', - 'reports_extra_options' => 'További beállítások', - 'report_has_no_extra_options' => 'Ennek a jelentésnek nincsenek további beállításai', - 'reports_submit' => 'Jelentés megtekintése', - 'end_after_start_date' => 'A jelentés végdátumának a kezdődátum után kell lennie.', - 'select_category' => 'Kategóriák kiválasztása', - 'select_budget' => 'Költségkeretek kiválasztása.', - 'select_tag' => 'Címkék kiválasztása.', - 'income_per_category' => 'Bevétel kategória szerint', - 'expense_per_category' => 'Költség kategória szerint', - 'expense_per_budget' => 'Költség költségkeret szerint', - 'income_per_account' => 'Bevétel bankszámla szerint', - 'expense_per_account' => 'Költség bankszámlák szerint', - 'expense_per_tag' => 'Költség címke szerint', - 'income_per_tag' => 'Bevétel címke szerint', - 'include_expense_not_in_budget' => 'A kiválasztott költségkeretekben nem szereplő költségeket is beleértve', - 'include_expense_not_in_account' => 'A kiválasztott számlákban nem szereplő költségeket is beleértve', - 'include_expense_not_in_category' => 'A kiválasztott kategóriákban nem szereplő költségeket is beleértve', - 'include_income_not_in_category' => 'A kiválasztott kategóriákban nem szereplő bevételeket is beleértve', - 'include_income_not_in_account' => 'A kiválasztott számlákban nem szereplő bevételeket is beleértve', - 'include_income_not_in_tags' => 'A kiválasztott címkékben nem szereplő bevételeket is beleértve', - 'include_expense_not_in_tags' => 'A kiválasztott címkékben nem szereplő költségeket is beleértve', - 'everything_else' => 'Minden más', - 'income_and_expenses' => 'Bevételek és költségek', - 'spent_average' => 'Költés (átlag)', - 'income_average' => 'Bevétel (átlag)', - 'transaction_count' => 'Tranzakciók száma', - 'average_spending_per_account' => 'Átlagos kiadások bankszámlák szerint', - 'average_income_per_account' => 'Átlagos bevétel címke szerint', - 'total' => 'Össszesen', - 'description' => 'Leírás', - 'sum_of_period' => 'Időszak összege', - 'average_in_period' => 'Átlag az időszakban', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Alapértelmezett eszközszámla', - 'account_role_sharedAsset' => 'Megosztott eszközszámla', - 'account_role_savingAsset' => 'Megtakarítási számla', - 'account_role_ccAsset' => 'Hitelkártya', - 'account_role_cashWalletAsset' => 'Készpénz', - 'budget_chart_click' => 'A diagram megjelenítéséhez egy költségkeret nevére kell kattintani a fenti táblázatban.', - 'category_chart_click' => 'A diagram megjelenítéséhez egy kategória nevére kell kattintani a fenti táblázatban.', - 'in_out_accounts' => 'Megkeresett és költött kombinációként', - 'in_out_accounts_per_asset' => 'Bevételek és kiadások (számlánként)', - 'in_out_per_category' => 'Megkeresett és költött kategóriaként', - 'out_per_budget' => 'Kiadás költségkeret szerint', - 'select_expense_revenue' => 'Költség- jövedelemszámla kiválasztása', - 'multi_currency_report_sum' => 'Mivel a lista több eltérő pénznemet használó számlát tartalmaz, az összegeknek nem lesz értelme. A jelentés mindig az alapértelmezés szerinti pénznemet fogja használni.', - 'sum_in_default_currency' => 'Az összeg mindig az alapértelmezett pénznemben lesz.', - 'net_filtered_prefs' => 'Ezen a diagramon sose fognak szerepelni azok a számlák melyeknél a "Befoglalva a nettó értékbe" beállítás nincs bekapcsolva.', + 'report_default' => 'Alapértelmezett pénzügyi jelentés :start és :end között', + 'report_audit' => 'Tranzakciótörténet áttekintése :start és :end között', + 'report_category' => 'Kategória jelentés :start és :end között', + 'report_double' => 'Költség- jövedelemszámla jelentés :start és :end között', + 'report_budget' => 'Költségkeret jelentés :start és :end között', + 'report_tag' => 'Címke jelentés :start és :end között', + 'quick_link_reports' => 'Gyorshivatkozások', + 'quick_link_examples' => 'Itt csak az indulást segítő néhány példa hivatkozás található. A súgó oldalakon, a (?) ikon alatt, további információ található a jelentésekről és a használható mágikus szavakról.', + 'quick_link_default_report' => 'Alapértelmezett pénzügyi jelentés', + 'quick_link_audit_report' => 'Tranzakciótörténeti áttekintés', + 'report_this_month_quick' => 'Aktuális hónap, minden bankszámla', + 'report_last_month_quick' => 'Utolsó hónap, minden számla', + 'report_this_year_quick' => 'Folyó év, minden bankszámla', + 'report_this_fiscal_year_quick' => 'Jelenlegi pénzügyi év, minden bankszámla', + 'report_all_time_quick' => 'Mindig, minden számla', + 'reports_can_bookmark' => 'A jelentéseket meg lehet jelölni könyvjelzővel.', + 'incomeVsExpenses' => 'Bevételek - Költségek', + 'accountBalances' => 'Számla egyenlegek', + 'balanceStart' => 'Egyenleg az időszak kezdetén', + 'balanceEnd' => 'Egyenleg az időszak végén', + 'splitByAccount' => 'Bankszámlákra osztva', + 'coveredWithTags' => 'Címkékkel fedezve', + 'leftInBudget' => 'Költségkeretből maradt', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Összegek összege', + 'noCategory' => '(nincs kategória)', + 'notCharged' => 'Nem változott (még)', + 'inactive' => 'Inaktív', + 'active' => 'Aktív', + 'difference' => 'Különbség', + 'money_flowing_in' => 'Be', + 'money_flowing_out' => 'Ki', + 'topX' => 'top :number', + 'show_full_list' => 'Teljes lista megjelenítése', + 'show_only_top' => 'Csak a top mutatása: :number', + 'report_type' => 'Jelentés típusa', + 'report_type_default' => 'Alapértelmezett pénzügyi jelentés', + 'report_type_audit' => 'Tranzakciótörténeti áttekintés (auditálás)', + 'report_type_category' => 'Kategória jelentés', + 'report_type_budget' => 'Költségkeret jelentés', + 'report_type_tag' => 'Címke jelentés', + 'report_type_double' => 'Költség- jövedelemszámla jelentés', + 'more_info_help' => 'Ezekkel a jelentéstípusokkal kapcsolatban további információ található a súgóoldalakon. A súgó a jobb felső sarokban található (?) ikonra kattintva érhető el.', + 'report_included_accounts' => 'Befoglalt számlák', + 'report_date_range' => 'Dátum intervallum', + 'report_preset_ranges' => 'Előre beállított intervallumok', + 'shared' => 'Megosztott', + 'fiscal_year' => 'Pénzügyi év', + 'income_entry' => '":name" bevételei :start és :end között', + 'expense_entry' => '":name" számla kiadásai :start és :end között', + 'category_entry' => '":name" kategória kiadásai és bevételei :start és :end között', + 'budget_spent_amount' => '":budget" költségkeret kiadásai :start és :end között', + 'balance_amount' => '":budget" költségkeret ":account" számláról fizetett kiadásai :start és :end között', + 'no_audit_activity' => ':account_name számlán nem volt aktivitás :start és :end között.', + 'audit_end_balance' => ':account_name számlaegyenlege :end végén :balance volt', + 'reports_extra_options' => 'További beállítások', + 'report_has_no_extra_options' => 'Ennek a jelentésnek nincsenek további beállításai', + 'reports_submit' => 'Jelentés megtekintése', + 'end_after_start_date' => 'A jelentés végdátumának a kezdődátum után kell lennie.', + 'select_category' => 'Kategóriák kiválasztása', + 'select_budget' => 'Költségkeretek kiválasztása.', + 'select_tag' => 'Címkék kiválasztása.', + 'income_per_category' => 'Bevétel kategória szerint', + 'expense_per_category' => 'Költség kategória szerint', + 'expense_per_budget' => 'Költség költségkeret szerint', + 'income_per_account' => 'Bevétel bankszámla szerint', + 'expense_per_account' => 'Költség bankszámlák szerint', + 'expense_per_tag' => 'Költség címke szerint', + 'income_per_tag' => 'Bevétel címke szerint', + 'include_expense_not_in_budget' => 'A kiválasztott költségkeretekben nem szereplő költségeket is beleértve', + 'include_expense_not_in_account' => 'A kiválasztott számlákban nem szereplő költségeket is beleértve', + 'include_expense_not_in_category' => 'A kiválasztott kategóriákban nem szereplő költségeket is beleértve', + 'include_income_not_in_category' => 'A kiválasztott kategóriákban nem szereplő bevételeket is beleértve', + 'include_income_not_in_account' => 'A kiválasztott számlákban nem szereplő bevételeket is beleértve', + 'include_income_not_in_tags' => 'A kiválasztott címkékben nem szereplő bevételeket is beleértve', + 'include_expense_not_in_tags' => 'A kiválasztott címkékben nem szereplő költségeket is beleértve', + 'everything_else' => 'Minden más', + 'income_and_expenses' => 'Bevételek és költségek', + 'spent_average' => 'Költés (átlag)', + 'income_average' => 'Bevétel (átlag)', + 'transaction_count' => 'Tranzakciók száma', + 'average_spending_per_account' => 'Átlagos kiadások bankszámlák szerint', + 'average_income_per_account' => 'Átlagos bevétel címke szerint', + 'total' => 'Össszesen', + 'description' => 'Leírás', + 'sum_of_period' => 'Időszak összege', + 'average_in_period' => 'Átlag az időszakban', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Alapértelmezett eszközszámla', + 'account_role_sharedAsset' => 'Megosztott eszközszámla', + 'account_role_savingAsset' => 'Megtakarítási számla', + 'account_role_ccAsset' => 'Hitelkártya', + 'account_role_cashWalletAsset' => 'Készpénz', + 'budget_chart_click' => 'A diagram megjelenítéséhez egy költségkeret nevére kell kattintani a fenti táblázatban.', + 'category_chart_click' => 'A diagram megjelenítéséhez egy kategória nevére kell kattintani a fenti táblázatban.', + 'in_out_accounts' => 'Megkeresett és költött kombinációként', + 'in_out_accounts_per_asset' => 'Bevételek és kiadások (számlánként)', + 'in_out_per_category' => 'Megkeresett és költött kategóriaként', + 'out_per_budget' => 'Kiadás költségkeret szerint', + 'select_expense_revenue' => 'Költség- jövedelemszámla kiválasztása', + 'multi_currency_report_sum' => 'Mivel a lista több eltérő pénznemet használó számlát tartalmaz, az összegeknek nem lesz értelme. A jelentés mindig az alapértelmezés szerinti pénznemet fogja használni.', + 'sum_in_default_currency' => 'Az összeg mindig az alapértelmezett pénznemben lesz.', + 'net_filtered_prefs' => 'Ezen a diagramon sose fognak szerepelni azok a számlák melyeknél a "Befoglalva a nettó értékbe" beállítás nincs bekapcsolva.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Diagram', - 'month' => 'Hónap', - 'budget' => 'Költségkeret', - 'spent' => 'Elköltött', - 'spent_capped' => 'Elköltve (korlátozva)', - 'spent_in_budget' => 'Költségkeretből elköltve', - 'left_to_spend' => 'Elkölthető', - 'earned' => 'Megkeresett', - 'overspent' => 'Túlköltött', - 'left' => 'Maradvány', - 'max-amount' => 'Maximális összeg', - 'min-amount' => 'Minimális összeg', - 'journal-amount' => 'Jelenlegi számla bejegyzés', - 'name' => 'Név', - 'date' => 'Dátum', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Kifizetve', - 'unpaid' => 'Nincs fizetve', - 'day' => 'Nap', - 'budgeted' => 'Betervezett', - 'period' => 'Időszak', - 'balance' => 'Egyenleg', - 'in_out_period' => 'In + out this period', - 'sum' => 'Összesen', - 'summary' => 'Összefoglaló', - 'average' => 'Átlag', - 'balanceFor' => 'Egyenleg: :name', - 'no_tags' => '(nincsenek címkék)', - 'nothing_found' => '(nincs találat)', + 'chart' => 'Diagram', + 'month' => 'Hónap', + 'budget' => 'Költségkeret', + 'spent' => 'Elköltött', + 'spent_capped' => 'Elköltve (korlátozva)', + 'spent_in_budget' => 'Költségkeretből elköltve', + 'left_to_spend' => 'Elkölthető', + 'earned' => 'Megkeresett', + 'overspent' => 'Túlköltött', + 'left' => 'Maradvány', + 'max-amount' => 'Maximális összeg', + 'min-amount' => 'Minimális összeg', + 'journal-amount' => 'Jelenlegi számla bejegyzés', + 'name' => 'Név', + 'date' => 'Dátum', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Kifizetve', + 'unpaid' => 'Nincs fizetve', + 'day' => 'Nap', + 'budgeted' => 'Betervezett', + 'period' => 'Időszak', + 'balance' => 'Egyenleg', + 'in_out_period' => 'In + out this period', + 'sum' => 'Összesen', + 'summary' => 'Összefoglaló', + 'average' => 'Átlag', + 'balanceFor' => 'Egyenleg: :name', + 'no_tags' => '(nincsenek címkék)', + 'nothing_found' => '(nincs találat)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez', - 'piggy_bank' => 'Malacpersely', - 'new_piggy_bank' => 'Új malacpersely', - 'store_piggy_bank' => 'Új malacpersely tárolása', - 'stored_piggy_bank' => 'Új ":name" malacpersely eltárolva', - 'account_status' => 'Számla állapota', - 'left_for_piggy_banks' => 'Maradt a malacperselyeknek', - 'sum_of_piggy_banks' => 'Malacperselyek összesen', - 'saved_so_far' => 'Megtakarítás eddig', - 'left_to_save' => 'Megtakarítható', - 'suggested_amount' => 'Javasolt havi megtakarítási összeg', - 'add_money_to_piggy_title' => 'Pénz elhelyezése ":name" malacperselyben', - 'remove_money_from_piggy_title' => 'Pénz kivétele ":name" malacperselyből', - 'add' => 'Hozzáadás', - 'no_money_for_piggy' => 'Nincs pénz amit be lehetne tenni ebbe a malacperselybe.', - 'suggested_savings_per_month' => 'Havonként javasolt', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Pénz hozzáadása ":name" malacperselyhez', + 'piggy_bank' => 'Malacpersely', + 'new_piggy_bank' => 'Új malacpersely', + 'store_piggy_bank' => 'Új malacpersely tárolása', + 'stored_piggy_bank' => 'Új ":name" malacpersely eltárolva', + 'account_status' => 'Számla állapota', + 'left_for_piggy_banks' => 'Maradt a malacperselyeknek', + 'sum_of_piggy_banks' => 'Malacperselyek összesen', + 'saved_so_far' => 'Megtakarítás eddig', + 'left_to_save' => 'Megtakarítható', + 'suggested_amount' => 'Javasolt havi megtakarítási összeg', + 'add_money_to_piggy_title' => 'Pénz elhelyezése ":name" malacperselyben', + 'remove_money_from_piggy_title' => 'Pénz kivétele ":name" malacperselyből', + 'add' => 'Hozzáadás', + 'no_money_for_piggy' => 'Nincs pénz amit be lehetne tenni ebbe a malacperselybe.', + 'suggested_savings_per_month' => 'Havonként javasolt', - 'remove' => 'Eltávolítás', - 'max_amount_add' => 'A maximálisan hozzáadható összeg', - 'max_amount_remove' => 'A maximálisan kivehető összeg', - 'update_piggy_button' => 'Malacpersely frissítése', - 'update_piggy_title' => '":name" malacpersely frissítése', - 'updated_piggy_bank' => '":name" malacpersely frissítve', - 'details' => 'Részletek', - 'events' => 'Események', - 'target_amount' => 'Cél összeg', - 'start_date' => 'Kezdő dátum', - 'no_start_date' => 'Nincs kezdő dátum', - 'target_date' => 'Cél dátum', - 'no_target_date' => 'Nincs kezdő dátuma', - 'table' => 'Táblázat', - 'delete_piggy_bank' => '":name" malacpersely törlése', - 'cannot_add_amount_piggy' => ':amount nem adható hozzá ehhez: ":name".', - 'cannot_remove_from_piggy' => ':amount nem távolítható el innen: ":name".', - 'deleted_piggy_bank' => '":name" malacpersely törölve', - 'added_amount_to_piggy' => ':amount hozzáadva ehhez: ":name"', - 'removed_amount_from_piggy' => ':amount eltávolítva innen: ":name"', - 'piggy_events' => 'Kapcsolódó Malacperselyek', + 'remove' => 'Eltávolítás', + 'max_amount_add' => 'A maximálisan hozzáadható összeg', + 'max_amount_remove' => 'A maximálisan kivehető összeg', + 'update_piggy_button' => 'Malacpersely frissítése', + 'update_piggy_title' => '":name" malacpersely frissítése', + 'updated_piggy_bank' => '":name" malacpersely frissítve', + 'details' => 'Részletek', + 'events' => 'Események', + 'target_amount' => 'Cél összeg', + 'start_date' => 'Kezdő dátum', + 'no_start_date' => 'Nincs kezdő dátum', + 'target_date' => 'Cél dátum', + 'no_target_date' => 'Nincs kezdő dátuma', + 'table' => 'Táblázat', + 'delete_piggy_bank' => '":name" malacpersely törlése', + 'cannot_add_amount_piggy' => ':amount nem adható hozzá ehhez: ":name".', + 'cannot_remove_from_piggy' => ':amount nem távolítható el innen: ":name".', + 'deleted_piggy_bank' => '":name" malacpersely törölve', + 'added_amount_to_piggy' => ':amount hozzáadva ehhez: ":name"', + 'removed_amount_from_piggy' => ':amount eltávolítva innen: ":name"', + 'piggy_events' => 'Kapcsolódó Malacperselyek', // tags - 'delete_tag' => '":tag" címke törlése', - 'deleted_tag' => '":tag" címke törölve', - 'new_tag' => 'Új címke készítése', - 'edit_tag' => '":tag" címke szerkesztése', - 'updated_tag' => '":tag" címke frissítve', - 'created_tag' => '":tag" címke létrehozva!', + 'delete_tag' => '":tag" címke törlése', + 'deleted_tag' => '":tag" címke törölve', + 'new_tag' => 'Új címke készítése', + 'edit_tag' => '":tag" címke szerkesztése', + 'updated_tag' => '":tag" címke frissítve', + 'created_tag' => '":tag" címke létrehozva!', - 'transaction_journal_information' => 'Tranzakciós információk', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta-információ', - 'transaction_journal_more' => 'További információ', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Eltárolva ":journal" alatt', - 'total_amount' => 'Teljes összeg', - 'number_of_decimals' => 'Tizedesjegyek száma', + 'transaction_journal_information' => 'Tranzakciós információk', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta-információ', + 'transaction_journal_more' => 'További információ', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Eltárolva ":journal" alatt', + 'total_amount' => 'Teljes összeg', + 'number_of_decimals' => 'Tizedesjegyek száma', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Adminisztráció', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Felhasználók adminisztrálása', - 'list_all_users' => 'Összes felhasználó', - 'all_users' => 'Összes felhasználó', - 'instance_configuration' => 'Beállítás', - 'firefly_instance_configuration' => 'A Firefly III beállítási lehetőségei', - 'setting_single_user_mode' => 'Egyfelhasználós mód', - 'setting_single_user_mode_explain' => 'Alapértelmezetten Firefly III kizárólag egy felhasználót enged regisztrálni. Ez egy szándékos biztonsági lépés, megakadályozva azt, hogy esetleg más is hozzáférjen a privát adataihoz. További regisztrációk ezen az eszközön tiltottak. Amikor ezt a jelölőt kikattintja, úgy mások is hozzáférhetnek az eszköz adataihoz (ha van internetkapcsolat).', - 'store_configuration' => 'Beállítás tárolása', - 'single_user_administration' => ':email felhasználó adminisztrációja', - 'edit_user' => ':email felhasználó szerkesztése', - 'hidden_fields_preferences' => 'A beállításokban több mező is engedélyezhető.', - 'user_data_information' => 'Felhasználói adatok', - 'user_information' => 'Felhasználó információk', - 'total_size' => 'teljes méret', - 'budget_or_budgets' => ':count költségkeret|:count költségkeret', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules szabály :count_groups szabálycsoportban', - 'tag_or_tags' => ':count címke|:count címke', - 'configuration_updated' => 'A konfiguráció frissítése megtörtént', - 'setting_is_demo_site' => 'Bemutató oldal', - 'setting_is_demo_site_explain' => 'Ha bejelölt, a telepítés bemutató oldalként fog viselkedni, aminek furcsa mellékhatásai lehetnek.', - 'block_code_bounced' => 'Visszapattant email üzenetek', - 'block_code_expired' => 'A Demo számla lejárt', - 'no_block_code' => 'Nincs oka a zárolásnak, vagy a felhasználó nincs zárolva', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'A felhasználó még nem erősítette meg az új email címét', - 'admin_update_email' => 'A profil oldallal ellentétben a felhasználó NEM kap értesítést az email címe megváltozásáról!', - 'update_user' => 'Felhasználó frissítése', - 'updated_user' => 'Felhasználói adatok módosítva.', - 'delete_user' => 'Felhasználó törlése ":email"', - 'user_deleted' => 'A felhasználó törölve lett', - 'send_test_email' => 'Teszt email küldése', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Üzenet küldése', - 'send_test_triggered' => 'Teszt elindítva. Ellenőrizd a bejövő üzeneteidet és a naplófájlokat.', - 'give_admin_careful' => 'Adminisztrátornak kinevezett felhasználók visszavonhatják akár a te adminisztrátori felhatalmazásodat. Légy óvatos.', - 'admin_maintanance_title' => 'Karbantartás', - 'admin_maintanance_expl' => 'Firefly III karbantartását kezelő gombok', - 'admin_maintenance_clear_cache' => 'Gyorsítótár ürítése', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Adminisztráció', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Felhasználók adminisztrálása', + 'list_all_users' => 'Összes felhasználó', + 'all_users' => 'Összes felhasználó', + 'instance_configuration' => 'Beállítás', + 'firefly_instance_configuration' => 'A Firefly III beállítási lehetőségei', + 'setting_single_user_mode' => 'Egyfelhasználós mód', + 'setting_single_user_mode_explain' => 'Alapértelmezetten Firefly III kizárólag egy felhasználót enged regisztrálni. Ez egy szándékos biztonsági lépés, megakadályozva azt, hogy esetleg más is hozzáférjen a privát adataihoz. További regisztrációk ezen az eszközön tiltottak. Amikor ezt a jelölőt kikattintja, úgy mások is hozzáférhetnek az eszköz adataihoz (ha van internetkapcsolat).', + 'store_configuration' => 'Beállítás tárolása', + 'single_user_administration' => ':email felhasználó adminisztrációja', + 'edit_user' => ':email felhasználó szerkesztése', + 'hidden_fields_preferences' => 'A beállításokban több mező is engedélyezhető.', + 'user_data_information' => 'Felhasználói adatok', + 'user_information' => 'Felhasználó információk', + 'total_size' => 'teljes méret', + 'budget_or_budgets' => ':count költségkeret|:count költségkeret', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules szabály :count_groups szabálycsoportban', + 'tag_or_tags' => ':count címke|:count címke', + 'configuration_updated' => 'A konfiguráció frissítése megtörtént', + 'setting_is_demo_site' => 'Bemutató oldal', + 'setting_is_demo_site_explain' => 'Ha bejelölt, a telepítés bemutató oldalként fog viselkedni, aminek furcsa mellékhatásai lehetnek.', + 'block_code_bounced' => 'Visszapattant email üzenetek', + 'block_code_expired' => 'A Demo számla lejárt', + 'no_block_code' => 'Nincs oka a zárolásnak, vagy a felhasználó nincs zárolva', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'A felhasználó még nem erősítette meg az új email címét', + 'admin_update_email' => 'A profil oldallal ellentétben a felhasználó NEM kap értesítést az email címe megváltozásáról!', + 'update_user' => 'Felhasználó frissítése', + 'updated_user' => 'Felhasználói adatok módosítva.', + 'delete_user' => 'Felhasználó törlése ":email"', + 'user_deleted' => 'A felhasználó törölve lett', + 'send_test_email' => 'Teszt email küldése', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Üzenet küldése', + 'send_test_triggered' => 'Teszt elindítva. Ellenőrizd a bejövő üzeneteidet és a naplófájlokat.', + 'give_admin_careful' => 'Adminisztrátornak kinevezett felhasználók visszavonhatják akár a te adminisztrátori felhatalmazásodat. Légy óvatos.', + 'admin_maintanance_title' => 'Karbantartás', + 'admin_maintanance_expl' => 'Firefly III karbantartását kezelő gombok', + 'admin_maintenance_clear_cache' => 'Gyorsítótár ürítése', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Felosztott tranzakció leírása', - 'split_transaction_title_help' => 'Felosztott tranzakció létrehozásakor meg kell adni egy globális leírást a tranzakció összes felosztása részére.', - 'split_title_help' => 'Felosztott tranzakció létrehozásakor meg kell adni egy globális leírást a tranzakció összes felosztása részére.', - 'you_create_transfer' => 'Egy átutalás létrehozása.', - 'you_create_withdrawal' => 'Egy költség létrehozása.', - 'you_create_deposit' => 'Egy bevétel létrehozása.', + 'split_transaction_title' => 'Felosztott tranzakció leírása', + 'split_transaction_title_help' => 'Felosztott tranzakció létrehozásakor meg kell adni egy globális leírást a tranzakció összes felosztása részére.', + 'split_title_help' => 'Felosztott tranzakció létrehozásakor meg kell adni egy globális leírást a tranzakció összes felosztása részére.', + 'you_create_transfer' => 'Egy átutalás létrehozása.', + 'you_create_withdrawal' => 'Egy költség létrehozása.', + 'you_create_deposit' => 'Egy bevétel létrehozása.', // links - 'journal_link_configuration' => 'Tranzakciós kapcsolatok beállítása', - 'create_new_link_type' => 'Új kapcsolattípus létrehozása', - 'store_new_link_type' => 'Új kapcsolattípus tárolása', - 'update_link_type' => 'Kapcsolattípus frissítése', - 'edit_link_type' => '":name" kapcsolattípus szerkesztése', - 'updated_link_type' => '":name" kapcsolattípus frissítve', - 'delete_link_type' => '":name" kapcsolattípus törlése', - 'deleted_link_type' => '":name" kapcsolattípus törölve', - 'stored_new_link_type' => '":name" új kapcsolattípus tárolása', - 'cannot_edit_link_type' => '":name" kapcsolattípus nem szerkeszthető', - 'link_type_help_name' => 'Pl. "Duplikátumok"', - 'link_type_help_inward' => 'Pl. "duplikátumok"', - 'link_type_help_outward' => 'Pl. "duplikálta"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(ne mentse a kapcsolatot)', - 'link_transaction' => 'Tranzakció kapcsolása', - 'link_to_other_transaction' => 'Tranzakció hozzákapcsolása egy másik tranzakcióhoz', - 'select_transaction_to_link' => 'Válassza ki, hogy a tranzakció melyik tranzakcióval van viszonyban. Jelenleg ezek a viszonyok nincsenek aktívan használva a Firefly III-ban (azon kívül, hogy jelezve vannak), de ez a későbbiekben változhat. Tranzakciók kereséséhez a keresőmezőt ahsználhatja, azonosító vagy név alapján. Ha saját viszonytípust szeretne használni, úgy azt a felügyeleti részben teheti meg.', - 'this_transaction' => 'Ez a tranzakció', - 'transaction' => 'Tranzakció', - 'comments' => 'Megjegyzések', - 'link_notes' => 'Bármilyen megjegyzés, amit a hivatkozáshoz tárolni szeretne.', - 'invalid_link_selection' => 'Ezeket a tranzakciókat nem lehet összekapcsolni', - 'selected_transaction' => 'Kiválasztott tranzakció', - 'journals_linked' => 'Tranzakciók összekapcsolva.', - 'journals_error_linked' => 'Ezek a tranzakciók már össze vannak kapcsolva.', - 'journals_link_to_self' => 'Tranzakciót nem lehet saját magához csatolni', - 'journal_links' => 'Tranzakció összekapcsolások', - 'this_withdrawal' => 'Ez a költség', - 'this_deposit' => 'Ez a bevétel', - 'this_transfer' => 'Ez az átvezetés', - 'overview_for_link' => '":name" kapcsolattípus áttekintése', - 'source_transaction' => 'Forrás tranzakció', - 'link_description' => 'Kapcsolat leírása', - 'destination_transaction' => 'Cél tranzakció', - 'delete_journal_link' => ':source és :destination közötti kapcsolat törlése', - 'deleted_link' => 'Törölt kapcsolat', + 'journal_link_configuration' => 'Tranzakciós kapcsolatok beállítása', + 'create_new_link_type' => 'Új kapcsolattípus létrehozása', + 'store_new_link_type' => 'Új kapcsolattípus tárolása', + 'update_link_type' => 'Kapcsolattípus frissítése', + 'edit_link_type' => '":name" kapcsolattípus szerkesztése', + 'updated_link_type' => '":name" kapcsolattípus frissítve', + 'delete_link_type' => '":name" kapcsolattípus törlése', + 'deleted_link_type' => '":name" kapcsolattípus törölve', + 'stored_new_link_type' => '":name" új kapcsolattípus tárolása', + 'cannot_edit_link_type' => '":name" kapcsolattípus nem szerkeszthető', + 'link_type_help_name' => 'Pl. "Duplikátumok"', + 'link_type_help_inward' => 'Pl. "duplikátumok"', + 'link_type_help_outward' => 'Pl. "duplikálta"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(ne mentse a kapcsolatot)', + 'link_transaction' => 'Tranzakció kapcsolása', + 'link_to_other_transaction' => 'Tranzakció hozzákapcsolása egy másik tranzakcióhoz', + 'select_transaction_to_link' => 'Válassza ki, hogy a tranzakció melyik tranzakcióval van viszonyban. Jelenleg ezek a viszonyok nincsenek aktívan használva a Firefly III-ban (azon kívül, hogy jelezve vannak), de ez a későbbiekben változhat. Tranzakciók kereséséhez a keresőmezőt ahsználhatja, azonosító vagy név alapján. Ha saját viszonytípust szeretne használni, úgy azt a felügyeleti részben teheti meg.', + 'this_transaction' => 'Ez a tranzakció', + 'transaction' => 'Tranzakció', + 'comments' => 'Megjegyzések', + 'link_notes' => 'Bármilyen megjegyzés, amit a hivatkozáshoz tárolni szeretne.', + 'invalid_link_selection' => 'Ezeket a tranzakciókat nem lehet összekapcsolni', + 'selected_transaction' => 'Kiválasztott tranzakció', + 'journals_linked' => 'Tranzakciók összekapcsolva.', + 'journals_error_linked' => 'Ezek a tranzakciók már össze vannak kapcsolva.', + 'journals_link_to_self' => 'Tranzakciót nem lehet saját magához csatolni', + 'journal_links' => 'Tranzakció összekapcsolások', + 'this_withdrawal' => 'Ez a költség', + 'this_deposit' => 'Ez a bevétel', + 'this_transfer' => 'Ez az átvezetés', + 'overview_for_link' => '":name" kapcsolattípus áttekintése', + 'source_transaction' => 'Forrás tranzakció', + 'link_description' => 'Kapcsolat leírása', + 'destination_transaction' => 'Cél tranzakció', + 'delete_journal_link' => ':source és :destination közötti kapcsolat törlése', + 'deleted_link' => 'Törölt kapcsolat', // link translations: - 'Paid_name' => 'Fizetve', - 'Refund_name' => 'Visszatérítés', - 'Reimbursement_name' => 'Visszafizetés', - 'Related_name' => 'Kapcsolódó', - 'relates to_inward' => 'kapcsolódó', - 'is (partially) refunded by_inward' => '(részben) visszatérítette', - 'is (partially) paid for by_inward' => '(részben) kifizette', - 'is (partially) reimbursed by_inward' => '(részben) visszafizette', - 'inward_transaction' => 'Bejövő tranzakciók', - 'outward_transaction' => 'Kimenő tranzakciók', - 'relates to_outward' => 'kapcsolódik', - '(partially) refunds_outward' => '(részben) visszatérítve', - '(partially) pays for_outward' => '(részben) fizet', - '(partially) reimburses_outward' => '(részben) visszafizetve', - 'is (partially) refunded by' => '(részben) visszatérítette', - 'is (partially) paid for by' => '(részben) kifizette', - 'is (partially) reimbursed by' => '(részben) visszafizette', - 'relates to' => 'kapcsolódó', - '(partially) refunds' => '(részben) visszatérítve', - '(partially) pays for' => '(részben) fizet', - '(partially) reimburses' => '(részben) visszafizetve', + 'Paid_name' => 'Fizetve', + 'Refund_name' => 'Visszatérítés', + 'Reimbursement_name' => 'Visszafizetés', + 'Related_name' => 'Kapcsolódó', + 'relates to_inward' => 'kapcsolódó', + 'is (partially) refunded by_inward' => '(részben) visszatérítette', + 'is (partially) paid for by_inward' => '(részben) kifizette', + 'is (partially) reimbursed by_inward' => '(részben) visszafizette', + 'inward_transaction' => 'Bejövő tranzakciók', + 'outward_transaction' => 'Kimenő tranzakciók', + 'relates to_outward' => 'kapcsolódik', + '(partially) refunds_outward' => '(részben) visszatérítve', + '(partially) pays for_outward' => '(részben) fizet', + '(partially) reimburses_outward' => '(részben) visszafizetve', + 'is (partially) refunded by' => '(részben) visszatérítette', + 'is (partially) paid for by' => '(részben) kifizette', + 'is (partially) reimbursed by' => '(részben) visszafizette', + 'relates to' => 'kapcsolódó', + '(partially) refunds' => '(részben) visszatérítve', + '(partially) pays for' => '(részben) fizet', + '(partially) reimburses' => '(részben) visszafizetve', // split a transaction: - 'splits' => 'Felosztások', - 'add_another_split' => 'Másik felosztás hozzáadása', - 'cannot_edit_opening_balance' => 'Nem lehet szerkeszteni egy bankszámla nyitóegyenlegét.', - 'no_edit_multiple_left' => 'Nincs kiválasztva érvényes tranzakció a szerkesztéshez.', - 'breadcrumb_convert_group' => 'Tranzakció konvertálása', - 'convert_invalid_source' => 'A forrás információ érvénytelen #%d tranzakció számára.', - 'convert_invalid_destination' => 'A cél információ érvénytelen #%d tranzakció számára.', - 'create_another' => 'A tárolás után térjen vissza ide új létrehozásához.', - 'after_update_create_another' => 'A frissítés után térjen vissza ide a szerkesztés folytatásához.', - 'store_as_new' => 'Tárolás új tranzakcióként frissítés helyett.', - 'reset_after' => 'Űrlap törlése a beküldés után', - 'errors_submission' => 'Hiba történt a beküldés során. Kérlek javítsd az alábbi hibákat.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Felosztások', + 'add_another_split' => 'Másik felosztás hozzáadása', + 'cannot_edit_opening_balance' => 'Nem lehet szerkeszteni egy bankszámla nyitóegyenlegét.', + 'no_edit_multiple_left' => 'Nincs kiválasztva érvényes tranzakció a szerkesztéshez.', + 'breadcrumb_convert_group' => 'Tranzakció konvertálása', + 'convert_invalid_source' => 'A forrás információ érvénytelen #%d tranzakció számára.', + 'convert_invalid_destination' => 'A cél információ érvénytelen #%d tranzakció számára.', + 'create_another' => 'A tárolás után térjen vissza ide új létrehozásához.', + 'after_update_create_another' => 'A frissítés után térjen vissza ide a szerkesztés folytatásához.', + 'store_as_new' => 'Tárolás új tranzakcióként frissítés helyett.', + 'reset_after' => 'Űrlap törlése a beküldés után', + 'errors_submission' => 'Hiba történt a beküldés során. Kérlek javítsd az alábbi hibákat.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(nem csoportosított)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(nem csoportosított)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Ideje létrehozni egy eszközszámlát!', - 'no_accounts_intro_asset' => 'Még nincsenek eszközszámlák. Az eszközszámlák a fő számlák: folyószámla, megtakarítási számlák, megosztott számlák vagy akár hitelkártya.', - 'no_accounts_imperative_asset' => 'A Firefly III használatának megkezdéséhez létre kell hozni legalább egy eszközszámlát. Csináljuk meg most:', - 'no_accounts_create_asset' => 'Egy eszközszámla létrehozása', - 'no_accounts_title_expense' => 'Ideje létrehozni egy költségszámlát!', - 'no_accounts_intro_expense' => 'Még nincs költségszámlád. A költségszámlák azok a helyek, ahol pénzköltés történik, például üzletek és szupermarketek.', - 'no_accounts_imperative_expense' => 'A költségszámlák automatikusan jönnek létre tranzakciók létrehozásakor, de kézzel is létre lehet hozni. Hozzunk létre egyet most:', - 'no_accounts_create_expense' => 'Költségszámla létrehozása', - 'no_accounts_title_revenue' => 'Ideje létrehozni egy jövedelemszámlát!', - 'no_accounts_intro_revenue' => 'Még nincsenek jövedelemszámlák. A jövedelemszámlák azok a helyek, ahonnan pénz jön, ilyen például a munkáltató.', - 'no_accounts_imperative_revenue' => 'A jövedelemszámlák automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', - 'no_accounts_create_revenue' => 'Új jövedelemszámla létrehozása', - 'no_accounts_title_liabilities' => 'Ideje létrehozni egy kötelezettséget!', - 'no_accounts_intro_liabilities' => 'Még nincsenek kötelezettségek. A kötelezettségek azok a számlák amik a (diák)hiteleket és egyéb adósságokat regisztrálják.', - 'no_accounts_imperative_liabilities' => 'Nem kötelező használni ezt a funkciót, de hasznos lehet ha szükséges követni ezeket a dolgokat.', - 'no_accounts_create_liabilities' => 'Új kötelezettség létrehozása', - 'no_budgets_title_default' => 'Ideje létrehozni egy költségkeretet', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'Még nincsenek költségkeretek. A költségkeretek arra szolgálnak, hogy a költségeket logikai csoportokba szervezhessük, amelyekhez a költségek csökkentéséhez megadható egy átléphető felső határ.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'A költségkeretek a pénzügyi menedzsment alapvető eszközei. Létrehozás most:', - 'no_budgets_create_default' => 'Költségkeret létrehozása', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Ideje létrehozni egy kategóriát!', - 'no_categories_intro_default' => 'Még nincsenek kategóriák. A kategóriákat a tranzakciók finomhangolására, kijelölt kategóriákkal történő megjelölésére használják.', - 'no_categories_imperative_default' => 'A kategóriák automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', - 'no_categories_create_default' => 'Kategória létrehozása', - 'no_tags_title_default' => 'Ideje létrehozni egy címkét!', - 'no_tags_intro_default' => 'Még nincsenek címkék. A címkéket a tranzakciók finomhangolására, speciális kulcsszavakkal történő megjelölésére használják.', - 'no_tags_imperative_default' => 'A címkék automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', - 'no_tags_create_default' => 'Címke létrehozása', - 'no_transactions_title_withdrawal' => 'Ideje létrehozni egy költséget!', - 'no_transactions_intro_withdrawal' => 'Még nincsenek költségek. A pénzügyek kezeléséhez létre kell hozni költségeket.', - 'no_transactions_imperative_withdrawal' => 'Pénzt költöttél? Akkor le kellene írni:', - 'no_transactions_create_withdrawal' => 'Költség létrehozása', - 'no_transactions_title_deposit' => 'Hozzunk létre bevételt!', - 'no_transactions_intro_deposit' => 'Még nincs rögzített bevétel. A pénzügyek kezeléséhez létre kell hozni bevételi bejegyzéseket.', - 'no_transactions_imperative_deposit' => 'Pénzhez jutottál? Akkor le kellene írni:', - 'no_transactions_create_deposit' => 'Új bevétel létrehozása', - 'no_transactions_title_transfers' => 'Ideje létrehozni egy átvezetést!', - 'no_transactions_intro_transfers' => 'Még nincsenek átvezetések. Eszközszámlák közötti pénzmozgás átvezetésként lesz rögzítve.', - 'no_transactions_imperative_transfers' => 'Pénzt költöttél? Akkor le kellene írni:', - 'no_transactions_create_transfers' => 'Átvezetés létrehozása', - 'no_piggies_title_default' => 'Ideje létrehozni egy malacperselyt!', - 'no_piggies_intro_default' => 'Még nincsenek malacperselyek. Létre lehet hozni malacperselyeket a megtakarítások felosztásához és a megtakarítások nyomon követéséhez.', - 'no_piggies_imperative_default' => 'Van valami, amire pénzt kellene megtakarítani? Hozz létre egy malacperselyt és kövesd nyomon:', - 'no_piggies_create_default' => 'Új malacpersely létrehozása', - 'no_bills_title_default' => 'Ideje létrehozni egy számlát!', - 'no_bills_intro_default' => 'Még nincsenek számlák. Létre lehet hozni számlákat az olyan rendszeres kiadások nyomon követéséhez mint például a bérleti vagy biztosítási díjak.', - 'no_bills_imperative_default' => 'Vannak rendszeres számlák? Létre lehet hozni egy számlát és nyomon követni a kifizetéseket:', - 'no_bills_create_default' => 'Számla létrehozása', + 'no_accounts_title_asset' => 'Ideje létrehozni egy eszközszámlát!', + 'no_accounts_intro_asset' => 'Még nincsenek eszközszámlák. Az eszközszámlák a fő számlák: folyószámla, megtakarítási számlák, megosztott számlák vagy akár hitelkártya.', + 'no_accounts_imperative_asset' => 'A Firefly III használatának megkezdéséhez létre kell hozni legalább egy eszközszámlát. Csináljuk meg most:', + 'no_accounts_create_asset' => 'Egy eszközszámla létrehozása', + 'no_accounts_title_expense' => 'Ideje létrehozni egy költségszámlát!', + 'no_accounts_intro_expense' => 'Még nincs költségszámlád. A költségszámlák azok a helyek, ahol pénzköltés történik, például üzletek és szupermarketek.', + 'no_accounts_imperative_expense' => 'A költségszámlák automatikusan jönnek létre tranzakciók létrehozásakor, de kézzel is létre lehet hozni. Hozzunk létre egyet most:', + 'no_accounts_create_expense' => 'Költségszámla létrehozása', + 'no_accounts_title_revenue' => 'Ideje létrehozni egy jövedelemszámlát!', + 'no_accounts_intro_revenue' => 'Még nincsenek jövedelemszámlák. A jövedelemszámlák azok a helyek, ahonnan pénz jön, ilyen például a munkáltató.', + 'no_accounts_imperative_revenue' => 'A jövedelemszámlák automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', + 'no_accounts_create_revenue' => 'Új jövedelemszámla létrehozása', + 'no_accounts_title_liabilities' => 'Ideje létrehozni egy kötelezettséget!', + 'no_accounts_intro_liabilities' => 'Még nincsenek kötelezettségek. A kötelezettségek azok a számlák amik a (diák)hiteleket és egyéb adósságokat regisztrálják.', + 'no_accounts_imperative_liabilities' => 'Nem kötelező használni ezt a funkciót, de hasznos lehet ha szükséges követni ezeket a dolgokat.', + 'no_accounts_create_liabilities' => 'Új kötelezettség létrehozása', + 'no_budgets_title_default' => 'Ideje létrehozni egy költségkeretet', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'Még nincsenek költségkeretek. A költségkeretek arra szolgálnak, hogy a költségeket logikai csoportokba szervezhessük, amelyekhez a költségek csökkentéséhez megadható egy átléphető felső határ.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'A költségkeretek a pénzügyi menedzsment alapvető eszközei. Létrehozás most:', + 'no_budgets_create_default' => 'Költségkeret létrehozása', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Ideje létrehozni egy kategóriát!', + 'no_categories_intro_default' => 'Még nincsenek kategóriák. A kategóriákat a tranzakciók finomhangolására, kijelölt kategóriákkal történő megjelölésére használják.', + 'no_categories_imperative_default' => 'A kategóriák automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', + 'no_categories_create_default' => 'Kategória létrehozása', + 'no_tags_title_default' => 'Ideje létrehozni egy címkét!', + 'no_tags_intro_default' => 'Még nincsenek címkék. A címkéket a tranzakciók finomhangolására, speciális kulcsszavakkal történő megjelölésére használják.', + 'no_tags_imperative_default' => 'A címkék automatikusan létrejönnek tranzakciók létrehozásakor, de ha szükséges, létre lehet hozni manuálisan is. Létrehozás most:', + 'no_tags_create_default' => 'Címke létrehozása', + 'no_transactions_title_withdrawal' => 'Ideje létrehozni egy költséget!', + 'no_transactions_intro_withdrawal' => 'Még nincsenek költségek. A pénzügyek kezeléséhez létre kell hozni költségeket.', + 'no_transactions_imperative_withdrawal' => 'Pénzt költöttél? Akkor le kellene írni:', + 'no_transactions_create_withdrawal' => 'Költség létrehozása', + 'no_transactions_title_deposit' => 'Hozzunk létre bevételt!', + 'no_transactions_intro_deposit' => 'Még nincs rögzített bevétel. A pénzügyek kezeléséhez létre kell hozni bevételi bejegyzéseket.', + 'no_transactions_imperative_deposit' => 'Pénzhez jutottál? Akkor le kellene írni:', + 'no_transactions_create_deposit' => 'Új bevétel létrehozása', + 'no_transactions_title_transfers' => 'Ideje létrehozni egy átvezetést!', + 'no_transactions_intro_transfers' => 'Még nincsenek átvezetések. Eszközszámlák közötti pénzmozgás átvezetésként lesz rögzítve.', + 'no_transactions_imperative_transfers' => 'Pénzt költöttél? Akkor le kellene írni:', + 'no_transactions_create_transfers' => 'Átvezetés létrehozása', + 'no_piggies_title_default' => 'Ideje létrehozni egy malacperselyt!', + 'no_piggies_intro_default' => 'Még nincsenek malacperselyek. Létre lehet hozni malacperselyeket a megtakarítások felosztásához és a megtakarítások nyomon követéséhez.', + 'no_piggies_imperative_default' => 'Van valami, amire pénzt kellene megtakarítani? Hozz létre egy malacperselyt és kövesd nyomon:', + 'no_piggies_create_default' => 'Új malacpersely létrehozása', + 'no_bills_title_default' => 'Ideje létrehozni egy számlát!', + 'no_bills_intro_default' => 'Még nincsenek számlák. Létre lehet hozni számlákat az olyan rendszeres kiadások nyomon követéséhez mint például a bérleti vagy biztosítási díjak.', + 'no_bills_imperative_default' => 'Vannak rendszeres számlák? Létre lehet hozni egy számlát és nyomon követni a kifizetéseket:', + 'no_bills_create_default' => 'Számla létrehozása', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Ismétlődő tranzakciók', - 'repeat_until_in_past' => 'Ez a rendszeres tranzakció leállt ekkor: :date.', - 'recurring_calendar_view' => 'Naptár', - 'no_recurring_title_default' => 'Hozzunk létre egy ismétlődő tranzakciót!', - 'no_recurring_intro_default' => 'Még nincsenek ismétlődő tranzakciók. Ezek használatával a Firefly III automatikusan létrehozza a tranzakciókat.', - 'no_recurring_imperative_default' => 'Ez egy elég fejlett funkció ami rendkívül hasznos tud lenni. Erősen ajánlott elolvasni a dokumentációt (?) ikon a jobb felső sarokban) a folytatás előtt.', - 'no_recurring_create_default' => 'Ismétlődő tranzakció létrehozása', - 'make_new_recurring' => 'Ismétlődő tranzakció létrehozása', - 'recurring_daily' => 'Mindennap', - 'recurring_weekly' => 'Minden héten ekkor: :weekday', - 'recurring_weekly_skip' => 'Minden :skip. héten, hétköznap', - 'recurring_monthly' => 'Minden hónap ezen napján: :dayOfMonth', - 'recurring_monthly_skip' => 'Minden :skip. hónapon, a(z) :dayOfMonth. napon', - 'recurring_ndom' => 'Minden hónapban ekkor: :dayOfMonth :weekday', - 'recurring_yearly' => 'Minden évben ekkor: :date', - 'overview_for_recurrence' => '":title" ismétlődő tranzakció áttekintése', - 'warning_duplicates_repetitions' => 'Ritka esetben a dátumok kétszer jelennek meg a listában. Ez akkor fordulhat elő amikor több ismétlődés ütközik egymással. A Firefly III minden esetben csak egy tranzakciót hoz létre naponta.', - 'created_transactions' => 'Kapcsolódó tranzakciók', - 'expected_withdrawals' => 'Várható költségek', - 'expected_deposits' => 'Várható bevételek', - 'expected_transfers' => 'Várható átvezetések', - 'created_withdrawals' => 'Létrehozott költségek', - 'created_deposits' => 'Létrehozott bevételek', - 'created_transfers' => 'Átvezetések létrehozva', - 'recurring_info' => 'Ismétlődő tranzakciók :count / :total', - 'created_from_recurrence' => 'Létrehozva ":title" (#:id) ismétlődő tranzakcióból', - 'recurring_never_cron' => 'Az ismétlődő tranzakció funkcióhoz tartozó ütemezett feladat sosem futott még le. Ez normális jelenség, ha most Firefly III frissen lett telepítve, de ennek rövid időn belül változnia kellene. Ellenőrizd a súgóban a hibaelháítási lehetőségeket, a (?) gombra kattintva a jobb felső sarokban.', - 'recurring_cron_long_ago' => 'Úgy látszik, hogy több, mint 36 óra telt el a legutolsó ismétlődő tranzakciókat végrehajtó ütemezett feladat elindítása óta. Biztos vagy abban, hogy helyesen lett beállítva minden? Ellenőrizd a súgóban a hibaelháítási lehetőségeket, a (?) gombra kattintva a jobb felső sarokban.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Ismétlődő tranzakciók', + 'repeat_until_in_past' => 'Ez a rendszeres tranzakció leállt ekkor: :date.', + 'recurring_calendar_view' => 'Naptár', + 'no_recurring_title_default' => 'Hozzunk létre egy ismétlődő tranzakciót!', + 'no_recurring_intro_default' => 'Még nincsenek ismétlődő tranzakciók. Ezek használatával a Firefly III automatikusan létrehozza a tranzakciókat.', + 'no_recurring_imperative_default' => 'Ez egy elég fejlett funkció ami rendkívül hasznos tud lenni. Erősen ajánlott elolvasni a dokumentációt (?) ikon a jobb felső sarokban) a folytatás előtt.', + 'no_recurring_create_default' => 'Ismétlődő tranzakció létrehozása', + 'make_new_recurring' => 'Ismétlődő tranzakció létrehozása', + 'recurring_daily' => 'Mindennap', + 'recurring_weekly' => 'Minden héten ekkor: :weekday', + 'recurring_weekly_skip' => 'Minden :skip. héten, hétköznap', + 'recurring_monthly' => 'Minden hónap ezen napján: :dayOfMonth', + 'recurring_monthly_skip' => 'Minden :skip. hónapon, a(z) :dayOfMonth. napon', + 'recurring_ndom' => 'Minden hónapban ekkor: :dayOfMonth :weekday', + 'recurring_yearly' => 'Minden évben ekkor: :date', + 'overview_for_recurrence' => '":title" ismétlődő tranzakció áttekintése', + 'warning_duplicates_repetitions' => 'Ritka esetben a dátumok kétszer jelennek meg a listában. Ez akkor fordulhat elő amikor több ismétlődés ütközik egymással. A Firefly III minden esetben csak egy tranzakciót hoz létre naponta.', + 'created_transactions' => 'Kapcsolódó tranzakciók', + 'expected_withdrawals' => 'Várható költségek', + 'expected_deposits' => 'Várható bevételek', + 'expected_transfers' => 'Várható átvezetések', + 'created_withdrawals' => 'Létrehozott költségek', + 'created_deposits' => 'Létrehozott bevételek', + 'created_transfers' => 'Átvezetések létrehozva', + 'recurring_info' => 'Ismétlődő tranzakciók :count / :total', + 'created_from_recurrence' => 'Létrehozva ":title" (#:id) ismétlődő tranzakcióból', + 'recurring_never_cron' => 'Az ismétlődő tranzakció funkcióhoz tartozó ütemezett feladat sosem futott még le. Ez normális jelenség, ha most Firefly III frissen lett telepítve, de ennek rövid időn belül változnia kellene. Ellenőrizd a súgóban a hibaelháítási lehetőségeket, a (?) gombra kattintva a jobb felső sarokban.', + 'recurring_cron_long_ago' => 'Úgy látszik, hogy több, mint 36 óra telt el a legutolsó ismétlődő tranzakciókat végrehajtó ütemezett feladat elindítása óta. Biztos vagy abban, hogy helyesen lett beállítva minden? Ellenőrizd a súgóban a hibaelháítási lehetőségeket, a (?) gombra kattintva a jobb felső sarokban.', - 'create_new_recurrence' => 'Új ismétlődő tranzakció létrehozása', - 'help_first_date' => 'Az első várható ismétlést jelöli. A jövőben kell lennie.', - 'help_first_date_no_past' => 'Az első várható ismétlést jelöli. A Firefly III nem fog tranzakciókat létrehozni a múltban.', - 'no_currency' => '(nincs pénznem)', - 'mandatory_for_recurring' => 'Kötelező ismétlődési információ', - 'mandatory_for_transaction' => 'Kötelező tranzakció információ', - 'optional_for_recurring' => 'Nem kötelező ismétlődési információ', - 'optional_for_transaction' => 'Nem kötelező tranzakció információ', - 'change_date_other_options' => 'További lehetőségek megtekintéséhez módosítani kell az "első dátum"-ot.', - 'mandatory_fields_for_tranaction' => 'Az itteni értékek a létrehozott tranzakciókba kerülnek', - 'click_for_calendar' => 'Ide kattintva egy naptár jelenik meg ami megmutatja, hogy a tranzakció mikor lesz megismételve.', - 'repeat_forever' => 'Folyamatos ismétlés', - 'repeat_until_date' => 'Ismétlés egy időpontig', - 'repeat_times' => 'Ismétlés többször', - 'recurring_skips_one' => 'Minden más', - 'recurring_skips_more' => ':count előfordulás kihagyása', - 'store_new_recurrence' => 'Ismétlődő tranzakció letárolása', - 'stored_new_recurrence' => '":title" ismétlődő tranzakció sikeresen letárolva.', - 'edit_recurrence' => '":title" ismétlődő tranzakció szerkesztése', - 'recurring_repeats_until' => 'Ismétlés :date-ig', - 'recurring_repeats_forever' => 'Folyamatos ismétlés', - 'recurring_repeats_x_times' => ':count alkalommal ismétlődik|:count alkalommal ismétlődik', - 'update_recurrence' => 'Ismétlődő tranzakció frissítése', - 'updated_recurrence' => '":title" ismétlődő tranzakció frissítve', - 'recurrence_is_inactive' => 'Ez az ismétlődő tranzakció nem aktív, nem fog új tranzakciókat létrehozni.', - 'delete_recurring' => '":title" ismétlődő tranzakció törlése', - 'new_recurring_transaction' => 'Új ismétlődő tranzakció', - 'help_weekend' => 'Mit tegyen a Firefly III ha az ismétlődő tranzakció szombatra vagy vasárnapra esik?', - 'do_nothing' => 'Hozza létre a tranzakciót', - 'skip_transaction' => 'Előfordulás kihagyása', - 'jump_to_friday' => 'A tranzakció inkább az előző pénteken jöjjön létre', - 'jump_to_monday' => 'A tranzakció inkább az következő hétfőn jöjjön létre', - 'will_jump_friday' => 'Pénteken lesz létrehozva hétvége helyett.', - 'will_jump_monday' => 'Hétfőn lesz létrehozva hétvége helyett.', - 'except_weekends' => 'Kivéve hétvégék', - 'recurrence_deleted' => '":title" ismétlődő tranzakció törölve', + 'create_new_recurrence' => 'Új ismétlődő tranzakció létrehozása', + 'help_first_date' => 'Az első várható ismétlést jelöli. A jövőben kell lennie.', + 'help_first_date_no_past' => 'Az első várható ismétlést jelöli. A Firefly III nem fog tranzakciókat létrehozni a múltban.', + 'no_currency' => '(nincs pénznem)', + 'mandatory_for_recurring' => 'Kötelező ismétlődési információ', + 'mandatory_for_transaction' => 'Kötelező tranzakció információ', + 'optional_for_recurring' => 'Nem kötelező ismétlődési információ', + 'optional_for_transaction' => 'Nem kötelező tranzakció információ', + 'change_date_other_options' => 'További lehetőségek megtekintéséhez módosítani kell az "első dátum"-ot.', + 'mandatory_fields_for_tranaction' => 'Az itteni értékek a létrehozott tranzakciókba kerülnek', + 'click_for_calendar' => 'Ide kattintva egy naptár jelenik meg ami megmutatja, hogy a tranzakció mikor lesz megismételve.', + 'repeat_forever' => 'Folyamatos ismétlés', + 'repeat_until_date' => 'Ismétlés egy időpontig', + 'repeat_times' => 'Ismétlés többször', + 'recurring_skips_one' => 'Minden más', + 'recurring_skips_more' => ':count előfordulás kihagyása', + 'store_new_recurrence' => 'Ismétlődő tranzakció letárolása', + 'stored_new_recurrence' => '":title" ismétlődő tranzakció sikeresen letárolva.', + 'edit_recurrence' => '":title" ismétlődő tranzakció szerkesztése', + 'recurring_repeats_until' => 'Ismétlés :date-ig', + 'recurring_repeats_forever' => 'Folyamatos ismétlés', + 'recurring_repeats_x_times' => ':count alkalommal ismétlődik|:count alkalommal ismétlődik', + 'update_recurrence' => 'Ismétlődő tranzakció frissítése', + 'updated_recurrence' => '":title" ismétlődő tranzakció frissítve', + 'recurrence_is_inactive' => 'Ez az ismétlődő tranzakció nem aktív, nem fog új tranzakciókat létrehozni.', + 'delete_recurring' => '":title" ismétlődő tranzakció törlése', + 'new_recurring_transaction' => 'Új ismétlődő tranzakció', + 'help_weekend' => 'Mit tegyen a Firefly III ha az ismétlődő tranzakció szombatra vagy vasárnapra esik?', + 'do_nothing' => 'Hozza létre a tranzakciót', + 'skip_transaction' => 'Előfordulás kihagyása', + 'jump_to_friday' => 'A tranzakció inkább az előző pénteken jöjjön létre', + 'jump_to_monday' => 'A tranzakció inkább az következő hétfőn jöjjön létre', + 'will_jump_friday' => 'Pénteken lesz létrehozva hétvége helyett.', + 'will_jump_monday' => 'Hétfőn lesz létrehozva hétvége helyett.', + 'except_weekends' => 'Kivéve hétvégék', + 'recurrence_deleted' => '":title" ismétlődő tranzakció törölve', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Egyenleg (:currency)', - 'box_spent_in_currency' => 'Költés (:currency)', - 'box_earned_in_currency' => 'Megkeresett (:currency)', - 'box_budgeted_in_currency' => 'Megkeresett (:currency)', - 'box_bill_paid_in_currency' => 'Fizetett számlák (:currency)', - 'box_bill_unpaid_in_currency' => 'Fizetetlen számlák (:currency)', - 'box_left_to_spend_in_currency' => 'Elkölthető (:currency)', - 'box_net_worth_in_currency' => 'Nettó érték (:currency)', - 'box_spend_per_day' => 'Naponta elkölthető: :amount', + 'box_balance_in_currency' => 'Egyenleg (:currency)', + 'box_spent_in_currency' => 'Költés (:currency)', + 'box_earned_in_currency' => 'Megkeresett (:currency)', + 'box_budgeted_in_currency' => 'Megkeresett (:currency)', + 'box_bill_paid_in_currency' => 'Fizetett számlák (:currency)', + 'box_bill_unpaid_in_currency' => 'Fizetetlen számlák (:currency)', + 'box_left_to_spend_in_currency' => 'Elkölthető (:currency)', + 'box_net_worth_in_currency' => 'Nettó érték (:currency)', + 'box_spend_per_day' => 'Naponta elkölthető: :amount', // debug page - 'debug_page' => 'Debug információk', - 'debug_submit_instructions' => 'Ha hibába ütköznél, a lenti információk használhatóak a vizsgálatához. Kérlek küld el egy új vagy már létező, hasonló témájú GitHub hibajegybe. Ez így egy átlátható táblázatot fog generálni, ami segíteni fog a hiba okának keresésében.', - 'debug_pretty_table' => 'Ha bemásolod a lenti adatokat egy GitHub hibajegy megjegyzésébe, egy átlátható táblázatot fog generálni. Kérlek ne használj idézőjeleket körülötte.', - 'debug_additional_data' => 'A lenti információkat is megoszthatod. Kimásolható a GitHub hibajegybe. Viszont tartalmazhat szenzitív információkat, mint számla és tranzakció adatok vagy e-mail címek.', + 'debug_page' => 'Debug információk', + 'debug_submit_instructions' => 'Ha hibába ütköznél, a lenti információk használhatóak a vizsgálatához. Kérlek küld el egy új vagy már létező, hasonló témájú GitHub hibajegybe. Ez így egy átlátható táblázatot fog generálni, ami segíteni fog a hiba okának keresésében.', + 'debug_pretty_table' => 'Ha bemásolod a lenti adatokat egy GitHub hibajegy megjegyzésébe, egy átlátható táblázatot fog generálni. Kérlek ne használj idézőjeleket körülötte.', + 'debug_additional_data' => 'A lenti információkat is megoszthatod. Kimásolható a GitHub hibajegybe. Viszont tartalmazhat szenzitív információkat, mint számla és tranzakció adatok vagy e-mail címek.', // object groups - 'object_groups_menu_bar' => 'Csoportok', - 'object_groups_page_title' => 'Csoportok', - 'object_groups_breadcrumb' => 'Csoportok', - 'object_groups_index' => 'Áttekintés', - 'object_groups' => 'Csoportok', - 'object_groups_empty_explain' => 'Sok elem csoportosítható Firefly III-ban. Például malacperselyeknek beállítható a "Csoport" mezője. Szerkeszthető a csoportok megnevezése és sorrendje. További információkért nézd meg a súgót a jobb felső sarokban lévő (?) ikonra kattintva.', - 'object_group_title' => 'Cím', - 'edit_object_group' => '":title" csoport szerkesztése', - 'delete_object_group' => '":title" csoport törlése', - 'update_object_group' => 'Csoport frissítése', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Csoport', + 'object_groups_menu_bar' => 'Csoportok', + 'object_groups_page_title' => 'Csoportok', + 'object_groups_breadcrumb' => 'Csoportok', + 'object_groups_index' => 'Áttekintés', + 'object_groups' => 'Csoportok', + 'object_groups_empty_explain' => 'Sok elem csoportosítható Firefly III-ban. Például malacperselyeknek beállítható a "Csoport" mezője. Szerkeszthető a csoportok megnevezése és sorrendje. További információkért nézd meg a súgót a jobb felső sarokban lévő (?) ikonra kattintva.', + 'object_group_title' => 'Cím', + 'edit_object_group' => '":title" csoport szerkesztése', + 'delete_object_group' => '":title" csoport törlése', + 'update_object_group' => 'Csoport frissítése', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Csoport', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/hu_HU/validation.php b/resources/lang/hu_HU/validation.php index 151abbe6c8..da85dadce1 100644 --- a/resources/lang/hu_HU/validation.php +++ b/resources/lang/hu_HU/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/id_ID/firefly.php b/resources/lang/id_ID/firefly.php index 80353d9acb..2fbb798b01 100644 --- a/resources/lang/id_ID/firefly.php +++ b/resources/lang/id_ID/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Dekat', - 'actions' => 'Tindakan', - 'edit' => 'Edit', - 'delete' => 'Menghapus', - 'split' => 'Pisah', - 'single_split' => 'Pisah', - 'clone' => 'Duplikasi', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => '7 hari terakhir', - 'last_thirty_days' => '30 hari terakhir', - 'last_180_days' => '180 hari terakhir', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'YTD', - 'welcome_back' => 'Apa yang sedang dimainkan?', - 'everything' => 'Segala sesuatu', - 'today' => 'hari ini', - 'customRange' => 'Rentang khusus', - 'date_range' => 'Rentang tanggal', - 'apply' => 'Menerapkan', - 'select_date' => 'Pilih tanggal..', - 'cancel' => 'Membatalkan', - 'from' => 'Dari', - 'to' => 'Untuk', - 'structure' => 'Struktur', - 'help_translating' => 'Bantuan ini belum tersedia di bahasa Anda. Maukah Anda membantu menerjemahkan?', - 'showEverything' => 'Tunjukkan semuanya', - 'never' => 'Tak pernah', - 'no_results_for_empty_search' => 'Pencarian Anda kosong, jadi tidak ada yang ditemukan.', - 'removed_amount' => 'Dihapus :amount', - 'added_amount' => 'Ditambahkan :amount', - 'asset_account_role_help' => 'Setiap pilihan tambahan yang dihasilkan dari pilihan Anda dapat diatur nanti.', - 'Opening balance' => 'Saldo awal', - 'create_new_stuff' => 'Buat barang baru', - 'new_withdrawal' => 'Pengambilan baru', - 'create_new_transaction' => 'Buat transaksi baru', - 'sidebar_frontpage_create' => 'Buat', - 'new_transaction' => 'Transaksi baru', - 'no_rules_for_bill' => 'Bill ini tidak terkait dengan aturan yang telah ada.', - 'go_to_asset_accounts' => 'Menampilkan rekening aset', - 'go_to_budgets' => 'Pergi ke anggaran mu', - 'go_to_withdrawals' => 'Pergi ke penarikan', - 'clones_journal_x' => 'Transaksi ini adalah salinan dari ":description" (#:id)', - 'go_to_categories' => 'Menuju ke kategori yang anda miliki', - 'go_to_bills' => 'Menuju ke bill yang anda miliki', - 'go_to_expense_accounts' => 'Melihat akun pengeluaran anda', - 'go_to_revenue_accounts' => 'Lihat rekening pendapatan Anda', - 'go_to_piggies' => 'Pergi ke celengan', - 'new_deposit' => 'Deposit baru', - 'new_transfer' => 'Transfer baru', - 'new_transfers' => 'Transfer baru', - 'new_asset_account' => 'Akun aset baru', - 'new_expense_account' => 'Akun pengeluaran baru', - 'new_revenue_account' => 'Akun pendapatan baru', - 'new_liabilities_account' => 'Liabilitas baru', - 'new_budget' => 'Anggaran baru', - 'new_bill' => 'Bill baru', - 'block_account_logout' => 'Kamu telah keluar Akun yang ditangguhkan tidak dapat menggunakan situs ini. Apakah Anda mendaftar dengan alamat email yang benar?', - 'flash_success' => 'Keberhasilan!', - 'flash_info' => 'Pesan', - 'flash_warning' => 'PERINGATAN!', - 'flash_error' => 'Kesalahan!', - 'flash_danger' => 'Bahaya!', - 'flash_info_multiple' => 'Ada satu pesan|Ada :count pesan', - 'flash_error_multiple' => 'Ada satu kesalahan|Ada :count kesalahan', - 'net_worth' => 'Nilai bersih', - 'help_for_this_page' => 'Bantuan untuk halaman ini', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'Halo!', - 'two_factor_enter_code' => 'Untuk melanjutkan, masukkan kode Pengecekan keamanan dua faktor Anda. Aplikasi Anda bisa menghasilkannya untuk Anda.', - 'two_factor_code_here' => 'Masukkan kode di sini', - 'two_factor_title' => 'Pengecekan keamanan Dua faktor', - 'authenticate' => 'Pengecekan keamanan', - 'two_factor_forgot_title' => 'Kehilangan Pengecekan keamanan dua faktor', - 'two_factor_forgot' => 'Saya lupa dua faktor saya.', - 'two_factor_lost_header' => 'Kehilangan Pengecekan keamanan dua faktor Anda?', - 'two_factor_lost_intro' => 'Jika Anda kehilangan kode cadangan Anda pula, keberuntungan Anda buruk sudah. Ini bukanlah sesuatu yang Anda dapat perbaiki dari antarmuka web. Anda mempunyai dua pilihan.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Jika tidak, kirimkan email ke pemilik situs, :site_owner dan mintalah mereka untuk menyetel ulang Pengecekan keamanan dua faktor Anda.', - 'mfa_backup_code' => 'Anda telah menggunakan sebuah kode cadangan untuk masuk ke Firefly III. Kode ini tidak dapat digunakan lagi, jadi coret itu dari daftar Anda.', - 'pref_two_factor_new_backup_codes' => 'Hasilkan kode cadangan baru', - 'pref_two_factor_backup_code_count' => 'Anda memiliki :count kode cadangan yang valid.|Anda memiliki :count kode cadangan yang valid.', - '2fa_i_have_them' => 'Saya telah menyimpannya!', - 'warning_much_data' => ':days hari data mungkin perlu beberapa saat untuk memuat.', - 'registered' => 'Anda telah berhasil mendaftar!', - 'Default asset account' => 'Akun aset standar', - 'no_budget_pointer' => 'Anda tampaknya belum memiliki anggaran. Anda harus membuat beberapa di halaman-anggaran. Anggaran dapat membantu anda melacak pengeluaran.', - 'no_bill_pointer' => 'Anda tampaknya belum memiliki tagihan. Anda harus membuat beberapa di halaman-tagihan. Tagihan dapat membantu anda melacak pengeluaran.', - 'Savings account' => 'Rekening tabungan', - 'Credit card' => 'Kartu kredit', - 'source_accounts' => 'Akun Sumber|Akun Sumber', - 'destination_accounts' => 'Akun tujuan|Akun tujuan', - 'user_id_is' => 'Id pengguna Anda adalah :user', - 'field_supports_markdown' => 'Bidang ini mendukung Markdown.', - 'need_more_help' => 'Jika Anda memerlukan bantuan lebih banyak menggunakan Firefly III, silakan opsi tiket di Github.', - 'reenable_intro_text' => 'Anda juga dapat mengaktifkan kembali panduan pengenalan.', - 'intro_boxes_after_refresh' => 'Kotak pengantar akan muncul kembali saat Anda menyegarkan halaman.', - 'show_all_no_filter' => 'Tampilkan semua transaksi tanpa mengelompokkan mereka menurut tanggal.', - 'expenses_by_category' => 'Biaya berdasarkan kategori', - 'expenses_by_budget' => 'Biaya menurut anggaran', - 'income_by_category' => 'Penghasilan menurut kategori', - 'expenses_by_asset_account' => 'Beban menurut akun aset', - 'expenses_by_expense_account' => 'Beban menurut akun beban', - 'cannot_redirect_to_account' => 'Firefly III tidak bisa mengalihkan Anda ke halaman yang benar. Permintaan maaf.', - 'sum_of_expenses' => 'Jumlah pengeluaran', - 'sum_of_income' => 'Jumlah pendapatan', - 'liabilities' => 'Kewajiban', - 'spent_in_specific_budget' => 'Menghabiskan anggaran ":budget"', - 'spent_in_specific_double' => 'Spent in account ":account"', - 'earned_in_specific_double' => 'Earned in account ":account"', - 'source_account' => 'Akun sumber', - 'source_account_reconciliation' => 'Anda tidak dapat mengedit akun sumber dari transaksi rekonsiliasi.', - 'destination_account' => 'Akun tujuan', - 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', - 'sum_of_expenses_in_budget' => 'Menghabiskan total dalam anggaran ":budget"', - 'left_in_budget_limit' => 'Kiri untuk dibelanjakan sesuai budget', - 'current_period' => 'Periode sekarang', - 'show_the_current_period_and_overview' => 'Tunjukkan periode dan ikhtisar saat ini', - 'pref_languages_locale' => 'Agar bahasa selain bahasa Inggris berfungsi dengan benar, sistem operasi Anda harus dilengkapi dengan informasi lokal yang benar. Jika ini tidak ada, data mata uang, tanggal dan jumlah mungkin salah diformat.', - 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', - 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', - 'chart_category_in_period' => 'Bagan untuk semua transaksi untuk kategori ":name" antara :start dan :end', - 'chart_category_all' => 'Bagan untuk semua transaksi untuk kategori ":name"', - 'clone_withdrawal' => 'Kloning penarikan ini', - 'clone_deposit' => 'Kloning deposit ini', - 'clone_transfer' => 'Kloning transfer ini', - 'multi_select_no_selection' => 'Tidak ada yang di pilih', - 'multi_select_select_all' => 'Pilih Semua', - 'multi_select_n_selected' => 'dipilih', - 'multi_select_all_selected' => 'Semua dipilih', - 'multi_select_filter_placeholder' => 'Menemukan..', - 'intro_next_label' => 'Selanjutnya', - 'intro_prev_label' => 'Sebelumnya', - 'intro_skip_label' => 'Lewati', - 'intro_done_label' => 'Selesai', - 'between_dates_breadcrumb' => 'Antara :start dan :end', - 'all_journals_without_budget' => 'Semua transaksi tanpa anggaran', - 'journals_without_budget' => 'Transaksi tanpa anggaran', - 'all_journals_without_category' => 'Semua transaksi tanpa kategori', - 'journals_without_category' => 'Transaksi tanpa kategori', - 'all_journals_for_account' => 'Semua transaksi untuk akun :name', - 'chart_all_journals_for_account' => 'Bagan semua transaksi untuk akun :name', - 'journals_in_period_for_account' => 'Semua transaksi untuk akun :name antara :start dan :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Ditransfer', - 'all_withdrawal' => 'Semua biaya', - 'all_transactions' => 'Semua Transaksi', - 'title_withdrawal_between' => 'Semua biaya antara :start dan :end', - 'all_deposit' => 'Semua pendapatan', - 'title_deposit_between' => 'Semua pendapatan antara :start dan :end', - 'all_transfers' => 'Semua transfer', - 'title_transfers_between' => 'Semua transfer antara :start dan :end', - 'all_transfer' => 'Semua transfer', - 'all_journals_for_tag' => 'Semua transaksi untuk tag ":tag"', - 'title_transfer_between' => 'Semua transfer antara :start dan :end', - 'all_journals_for_category' => 'Semua transaksi untuk kategori :name', - 'all_journals_for_budget' => 'Semua transaksi untuk anggaran :name', - 'chart_all_journals_for_budget' => 'Bagan semua transaksi untuk anggaran :name', - 'journals_in_period_for_category' => 'Semua transaksi untuk kategori :name antara :start dan :end', - 'journals_in_period_for_tag' => 'Semua transaksi untuk tag :tag antara :start and :end', - 'not_available_demo_user' => 'Fitur yang Anda coba akses tidak tersedia untuk pengguna demo.', - 'exchange_rate_instructions' => 'Akun aset "@name" hanya menerima transaksi di @native_currency. Jika Anda ingin menggunakan @foreign_currency sebagai gantinya, pastikan jumlahnya di @native_currency juga diketahui:', - 'transfer_exchange_rate_instructions' => 'Akun aset sumber "@source_name" hanya menerima transaksi di @source_currency. Akun aset tujuan "@dest_name" hanya menerima transaksi di @dest_currency. Anda harus memberikan jumlah yang ditransfer dengan benar pada kedua mata uang tersebut.', - 'transaction_data' => 'Data transaksi', - 'invalid_server_configuration' => 'Konfigurasi server tidak valid', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Quickswitch', - 'sign_in_to_start' => 'Masuk untuk memulai sesi', - 'sign_in' => 'Masuk', - 'register_new_account' => 'Daftar akun baru', - 'forgot_my_password' => 'Lupa password', - 'problems_with_input' => 'Terdapat masalah dengan masukan anda.', - 'reset_password' => 'Atur ulang kata sandi Anda', - 'button_reset_password' => 'Atur ulang kata sandi', - 'reset_button' => 'Atur ulang', - 'want_to_login' => 'Saya ingin masuk', - 'login_page_title' => 'Masuk ke Firefly III', - 'register_page_title' => 'Daftar di Firefly III', - 'forgot_pw_page_title' => 'Lupa kata sandi Anda untuk Firefly III', - 'reset_pw_page_title' => 'Atur ulang kata sandi Anda untuk Firefly III', - 'cannot_reset_demo_user' => 'You cannot reset the password of the demo user.', - 'no_att_demo_user' => 'The demo user can\'t upload attachments.', - 'button_register' => 'Daftar', - 'authorization' => 'Otorisasi', - 'active_bills_only' => 'hanya tagihan aktif', - 'active_bills_only_total' => 'semua tagihan aktif', - 'active_exp_bills_only' => 'active and expected bills only', - 'active_exp_bills_only_total' => 'all active expected bills only', - 'per_period_sum_1D' => 'Expected daily costs', - 'per_period_sum_1W' => 'Expected weekly costs', - 'per_period_sum_1M' => 'Expected monthly costs', - 'per_period_sum_3M' => 'Expected quarterly costs', - 'per_period_sum_6M' => 'Expected half-yearly costs', - 'per_period_sum_1Y' => 'Expected yearly costs', - 'average_per_bill' => 'rata-rata per tagihan', - 'expected_total' => 'total perkiraan', - 'reconciliation_account_name' => ':name rekonsiliasi (:currency)', - 'saved' => 'Tersimpan', - 'advanced_options' => 'Pilihan lanjutan', - 'advanced_options_explain' => 'Beberapa halaman di Firefly III memiliki pilihan lanjutan tersembunyi di belakang tombol ini. Halaman ini tidak memiliki hal yang menarik, tetapi cobalah cek yang lain!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Dekat', + 'actions' => 'Tindakan', + 'edit' => 'Edit', + 'delete' => 'Menghapus', + 'split' => 'Pisah', + 'single_split' => 'Pisah', + 'clone' => 'Duplikasi', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => '7 hari terakhir', + 'last_thirty_days' => '30 hari terakhir', + 'last_180_days' => '180 hari terakhir', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'YTD', + 'welcome_back' => 'Apa yang sedang dimainkan?', + 'everything' => 'Segala sesuatu', + 'today' => 'hari ini', + 'customRange' => 'Rentang khusus', + 'date_range' => 'Rentang tanggal', + 'apply' => 'Menerapkan', + 'select_date' => 'Pilih tanggal..', + 'cancel' => 'Membatalkan', + 'from' => 'Dari', + 'to' => 'Untuk', + 'structure' => 'Struktur', + 'help_translating' => 'Bantuan ini belum tersedia di bahasa Anda. Maukah Anda membantu menerjemahkan?', + 'showEverything' => 'Tunjukkan semuanya', + 'never' => 'Tak pernah', + 'no_results_for_empty_search' => 'Pencarian Anda kosong, jadi tidak ada yang ditemukan.', + 'removed_amount' => 'Dihapus :amount', + 'added_amount' => 'Ditambahkan :amount', + 'asset_account_role_help' => 'Setiap pilihan tambahan yang dihasilkan dari pilihan Anda dapat diatur nanti.', + 'Opening balance' => 'Saldo awal', + 'create_new_stuff' => 'Buat barang baru', + 'new_withdrawal' => 'Pengambilan baru', + 'create_new_transaction' => 'Buat transaksi baru', + 'sidebar_frontpage_create' => 'Buat', + 'new_transaction' => 'Transaksi baru', + 'no_rules_for_bill' => 'Bill ini tidak terkait dengan aturan yang telah ada.', + 'go_to_asset_accounts' => 'Menampilkan rekening aset', + 'go_to_budgets' => 'Pergi ke anggaran mu', + 'go_to_withdrawals' => 'Pergi ke penarikan', + 'clones_journal_x' => 'Transaksi ini adalah salinan dari ":description" (#:id)', + 'go_to_categories' => 'Menuju ke kategori yang anda miliki', + 'go_to_bills' => 'Menuju ke bill yang anda miliki', + 'go_to_expense_accounts' => 'Melihat akun pengeluaran anda', + 'go_to_revenue_accounts' => 'Lihat rekening pendapatan Anda', + 'go_to_piggies' => 'Pergi ke celengan', + 'new_deposit' => 'Deposit baru', + 'new_transfer' => 'Transfer baru', + 'new_transfers' => 'Transfer baru', + 'new_asset_account' => 'Akun aset baru', + 'new_expense_account' => 'Akun pengeluaran baru', + 'new_revenue_account' => 'Akun pendapatan baru', + 'new_liabilities_account' => 'Liabilitas baru', + 'new_budget' => 'Anggaran baru', + 'new_bill' => 'Bill baru', + 'block_account_logout' => 'Kamu telah keluar Akun yang ditangguhkan tidak dapat menggunakan situs ini. Apakah Anda mendaftar dengan alamat email yang benar?', + 'flash_success' => 'Keberhasilan!', + 'flash_info' => 'Pesan', + 'flash_warning' => 'PERINGATAN!', + 'flash_error' => 'Kesalahan!', + 'flash_danger' => 'Bahaya!', + 'flash_info_multiple' => 'Ada satu pesan|Ada :count pesan', + 'flash_error_multiple' => 'Ada satu kesalahan|Ada :count kesalahan', + 'net_worth' => 'Nilai bersih', + 'help_for_this_page' => 'Bantuan untuk halaman ini', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'Halo!', + 'two_factor_enter_code' => 'Untuk melanjutkan, masukkan kode Pengecekan keamanan dua faktor Anda. Aplikasi Anda bisa menghasilkannya untuk Anda.', + 'two_factor_code_here' => 'Masukkan kode di sini', + 'two_factor_title' => 'Pengecekan keamanan Dua faktor', + 'authenticate' => 'Pengecekan keamanan', + 'two_factor_forgot_title' => 'Kehilangan Pengecekan keamanan dua faktor', + 'two_factor_forgot' => 'Saya lupa dua faktor saya.', + 'two_factor_lost_header' => 'Kehilangan Pengecekan keamanan dua faktor Anda?', + 'two_factor_lost_intro' => 'Jika Anda kehilangan kode cadangan Anda pula, keberuntungan Anda buruk sudah. Ini bukanlah sesuatu yang Anda dapat perbaiki dari antarmuka web. Anda mempunyai dua pilihan.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Jika tidak, kirimkan email ke pemilik situs, :site_owner dan mintalah mereka untuk menyetel ulang Pengecekan keamanan dua faktor Anda.', + 'mfa_backup_code' => 'Anda telah menggunakan sebuah kode cadangan untuk masuk ke Firefly III. Kode ini tidak dapat digunakan lagi, jadi coret itu dari daftar Anda.', + 'pref_two_factor_new_backup_codes' => 'Hasilkan kode cadangan baru', + 'pref_two_factor_backup_code_count' => 'Anda memiliki :count kode cadangan yang valid.|Anda memiliki :count kode cadangan yang valid.', + '2fa_i_have_them' => 'Saya telah menyimpannya!', + 'warning_much_data' => ':days hari data mungkin perlu beberapa saat untuk memuat.', + 'registered' => 'Anda telah berhasil mendaftar!', + 'Default asset account' => 'Akun aset standar', + 'no_budget_pointer' => 'Anda tampaknya belum memiliki anggaran. Anda harus membuat beberapa di halaman-anggaran. Anggaran dapat membantu anda melacak pengeluaran.', + 'no_bill_pointer' => 'Anda tampaknya belum memiliki tagihan. Anda harus membuat beberapa di halaman-tagihan. Tagihan dapat membantu anda melacak pengeluaran.', + 'Savings account' => 'Rekening tabungan', + 'Credit card' => 'Kartu kredit', + 'source_accounts' => 'Akun Sumber|Akun Sumber', + 'destination_accounts' => 'Akun tujuan|Akun tujuan', + 'user_id_is' => 'Id pengguna Anda adalah :user', + 'field_supports_markdown' => 'Bidang ini mendukung Markdown.', + 'need_more_help' => 'Jika Anda memerlukan bantuan lebih banyak menggunakan Firefly III, silakan opsi tiket di Github.', + 'reenable_intro_text' => 'Anda juga dapat mengaktifkan kembali panduan pengenalan.', + 'intro_boxes_after_refresh' => 'Kotak pengantar akan muncul kembali saat Anda menyegarkan halaman.', + 'show_all_no_filter' => 'Tampilkan semua transaksi tanpa mengelompokkan mereka menurut tanggal.', + 'expenses_by_category' => 'Biaya berdasarkan kategori', + 'expenses_by_budget' => 'Biaya menurut anggaran', + 'income_by_category' => 'Penghasilan menurut kategori', + 'expenses_by_asset_account' => 'Beban menurut akun aset', + 'expenses_by_expense_account' => 'Beban menurut akun beban', + 'cannot_redirect_to_account' => 'Firefly III tidak bisa mengalihkan Anda ke halaman yang benar. Permintaan maaf.', + 'sum_of_expenses' => 'Jumlah pengeluaran', + 'sum_of_income' => 'Jumlah pendapatan', + 'liabilities' => 'Kewajiban', + 'spent_in_specific_budget' => 'Menghabiskan anggaran ":budget"', + 'spent_in_specific_double' => 'Spent in account ":account"', + 'earned_in_specific_double' => 'Earned in account ":account"', + 'source_account' => 'Akun sumber', + 'source_account_reconciliation' => 'Anda tidak dapat mengedit akun sumber dari transaksi rekonsiliasi.', + 'destination_account' => 'Akun tujuan', + 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', + 'sum_of_expenses_in_budget' => 'Menghabiskan total dalam anggaran ":budget"', + 'left_in_budget_limit' => 'Kiri untuk dibelanjakan sesuai budget', + 'current_period' => 'Periode sekarang', + 'show_the_current_period_and_overview' => 'Tunjukkan periode dan ikhtisar saat ini', + 'pref_languages_locale' => 'Agar bahasa selain bahasa Inggris berfungsi dengan benar, sistem operasi Anda harus dilengkapi dengan informasi lokal yang benar. Jika ini tidak ada, data mata uang, tanggal dan jumlah mungkin salah diformat.', + 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', + 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', + 'chart_category_in_period' => 'Bagan untuk semua transaksi untuk kategori ":name" antara :start dan :end', + 'chart_category_all' => 'Bagan untuk semua transaksi untuk kategori ":name"', + 'clone_withdrawal' => 'Kloning penarikan ini', + 'clone_deposit' => 'Kloning deposit ini', + 'clone_transfer' => 'Kloning transfer ini', + 'multi_select_no_selection' => 'Tidak ada yang di pilih', + 'multi_select_select_all' => 'Pilih Semua', + 'multi_select_n_selected' => 'dipilih', + 'multi_select_all_selected' => 'Semua dipilih', + 'multi_select_filter_placeholder' => 'Menemukan..', + 'intro_next_label' => 'Selanjutnya', + 'intro_prev_label' => 'Sebelumnya', + 'intro_skip_label' => 'Lewati', + 'intro_done_label' => 'Selesai', + 'between_dates_breadcrumb' => 'Antara :start dan :end', + 'all_journals_without_budget' => 'Semua transaksi tanpa anggaran', + 'journals_without_budget' => 'Transaksi tanpa anggaran', + 'all_journals_without_category' => 'Semua transaksi tanpa kategori', + 'journals_without_category' => 'Transaksi tanpa kategori', + 'all_journals_for_account' => 'Semua transaksi untuk akun :name', + 'chart_all_journals_for_account' => 'Bagan semua transaksi untuk akun :name', + 'journals_in_period_for_account' => 'Semua transaksi untuk akun :name antara :start dan :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Ditransfer', + 'all_withdrawal' => 'Semua biaya', + 'all_transactions' => 'Semua Transaksi', + 'title_withdrawal_between' => 'Semua biaya antara :start dan :end', + 'all_deposit' => 'Semua pendapatan', + 'title_deposit_between' => 'Semua pendapatan antara :start dan :end', + 'all_transfers' => 'Semua transfer', + 'title_transfers_between' => 'Semua transfer antara :start dan :end', + 'all_transfer' => 'Semua transfer', + 'all_journals_for_tag' => 'Semua transaksi untuk tag ":tag"', + 'title_transfer_between' => 'Semua transfer antara :start dan :end', + 'all_journals_for_category' => 'Semua transaksi untuk kategori :name', + 'all_journals_for_budget' => 'Semua transaksi untuk anggaran :name', + 'chart_all_journals_for_budget' => 'Bagan semua transaksi untuk anggaran :name', + 'journals_in_period_for_category' => 'Semua transaksi untuk kategori :name antara :start dan :end', + 'journals_in_period_for_tag' => 'Semua transaksi untuk tag :tag antara :start and :end', + 'not_available_demo_user' => 'Fitur yang Anda coba akses tidak tersedia untuk pengguna demo.', + 'exchange_rate_instructions' => 'Akun aset "@name" hanya menerima transaksi di @native_currency. Jika Anda ingin menggunakan @foreign_currency sebagai gantinya, pastikan jumlahnya di @native_currency juga diketahui:', + 'transfer_exchange_rate_instructions' => 'Akun aset sumber "@source_name" hanya menerima transaksi di @source_currency. Akun aset tujuan "@dest_name" hanya menerima transaksi di @dest_currency. Anda harus memberikan jumlah yang ditransfer dengan benar pada kedua mata uang tersebut.', + 'transaction_data' => 'Data transaksi', + 'invalid_server_configuration' => 'Konfigurasi server tidak valid', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Quickswitch', + 'sign_in_to_start' => 'Masuk untuk memulai sesi', + 'sign_in' => 'Masuk', + 'register_new_account' => 'Daftar akun baru', + 'forgot_my_password' => 'Lupa password', + 'problems_with_input' => 'Terdapat masalah dengan masukan anda.', + 'reset_password' => 'Atur ulang kata sandi Anda', + 'button_reset_password' => 'Atur ulang kata sandi', + 'reset_button' => 'Atur ulang', + 'want_to_login' => 'Saya ingin masuk', + 'login_page_title' => 'Masuk ke Firefly III', + 'register_page_title' => 'Daftar di Firefly III', + 'forgot_pw_page_title' => 'Lupa kata sandi Anda untuk Firefly III', + 'reset_pw_page_title' => 'Atur ulang kata sandi Anda untuk Firefly III', + 'cannot_reset_demo_user' => 'You cannot reset the password of the demo user.', + 'no_att_demo_user' => 'The demo user can\'t upload attachments.', + 'button_register' => 'Daftar', + 'authorization' => 'Otorisasi', + 'active_bills_only' => 'hanya tagihan aktif', + 'active_bills_only_total' => 'semua tagihan aktif', + 'active_exp_bills_only' => 'active and expected bills only', + 'active_exp_bills_only_total' => 'all active expected bills only', + 'per_period_sum_1D' => 'Expected daily costs', + 'per_period_sum_1W' => 'Expected weekly costs', + 'per_period_sum_1M' => 'Expected monthly costs', + 'per_period_sum_3M' => 'Expected quarterly costs', + 'per_period_sum_6M' => 'Expected half-yearly costs', + 'per_period_sum_1Y' => 'Expected yearly costs', + 'average_per_bill' => 'rata-rata per tagihan', + 'expected_total' => 'total perkiraan', + 'reconciliation_account_name' => ':name rekonsiliasi (:currency)', + 'saved' => 'Tersimpan', + 'advanced_options' => 'Pilihan lanjutan', + 'advanced_options_explain' => 'Beberapa halaman di Firefly III memiliki pilihan lanjutan tersembunyi di belakang tombol ini. Halaman ini tidak memiliki hal yang menarik, tetapi cobalah cek yang lain!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Permintaan Otorisasi', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'Permintaan akses tidak valid. Mohon untuk tidak mengikuti tautan ini lagi.', - 'scopes_will_be_able' => 'Aplikasi ini akan mampu untuk:', - 'button_authorize' => 'Izinkan', - 'none_in_select_list' => '(tidak ada)', - 'no_piggy_bank' => '(tidak ada celengan)', - 'name_in_currency' => ':name di :currency', - 'paid_in_currency' => 'Dibayarkan dengan :currency', - 'unpaid_in_currency' => 'Belum dibayarkan dengan :currency', - 'is_alpha_warning' => 'Anda menggunakan versi ALPHA. Hati-hati dengan kutu dan isu.', - 'is_beta_warning' => 'Anda menggunakan versi BETA. Hati-hati dengan kutu dan isu.', - 'all_destination_accounts' => 'Rekening tujuan', - 'all_source_accounts' => 'Rekening asal', - 'back_to_index' => 'Kembali ke indeks', - 'cant_logout_guard' => 'Firefly III tidak dapat mengeluarkan Anda.', - 'internal_reference' => 'Referensi internal', + 'authorization_request' => 'Firefly III v:version Permintaan Otorisasi', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'Permintaan akses tidak valid. Mohon untuk tidak mengikuti tautan ini lagi.', + 'scopes_will_be_able' => 'Aplikasi ini akan mampu untuk:', + 'button_authorize' => 'Izinkan', + 'none_in_select_list' => '(tidak ada)', + 'no_piggy_bank' => '(tidak ada celengan)', + 'name_in_currency' => ':name di :currency', + 'paid_in_currency' => 'Dibayarkan dengan :currency', + 'unpaid_in_currency' => 'Belum dibayarkan dengan :currency', + 'is_alpha_warning' => 'Anda menggunakan versi ALPHA. Hati-hati dengan kutu dan isu.', + 'is_beta_warning' => 'Anda menggunakan versi BETA. Hati-hati dengan kutu dan isu.', + 'all_destination_accounts' => 'Rekening tujuan', + 'all_source_accounts' => 'Rekening asal', + 'back_to_index' => 'Kembali ke indeks', + 'cant_logout_guard' => 'Firefly III tidak dapat mengeluarkan Anda.', + 'internal_reference' => 'Referensi internal', // check for updates: - 'update_check_title' => 'Periksa pembaruan', - 'admin_update_check_title' => 'Secara otomatis memeriksa pembaruan', - 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', - 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', - 'updates_ask_me_later' => 'Tanya lagi nanti', - 'updates_do_not_check' => 'Jangan cek pembaharuan', - 'updates_enable_check' => 'Nyalakan cek pembaharuan', - 'admin_update_check_now_title' => 'Periksa pembaruan', - 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', - 'check_for_updates_button' => 'Periksa sekarang!', - 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', - 'update_version_beta' => 'This version is a BETA version. You may run into issues.', - 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'You are running :version, which is the latest available release.', - 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', - 'update_check_error' => 'An error occurred while checking for updates: :error', - 'unknown_error' => 'Unknown error. Sorry about that.', - 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', - 'admin_update_channel_title' => 'Kanal pembaharuan', - 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', - 'update_channel_stable' => 'Stable. Everything should work as expected.', - 'update_channel_beta' => 'Beta. New features but things may be broken.', - 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', + 'update_check_title' => 'Periksa pembaruan', + 'admin_update_check_title' => 'Secara otomatis memeriksa pembaruan', + 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', + 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', + 'updates_ask_me_later' => 'Tanya lagi nanti', + 'updates_do_not_check' => 'Jangan cek pembaharuan', + 'updates_enable_check' => 'Nyalakan cek pembaharuan', + 'admin_update_check_now_title' => 'Periksa pembaruan', + 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', + 'check_for_updates_button' => 'Periksa sekarang!', + 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', + 'update_version_beta' => 'This version is a BETA version. You may run into issues.', + 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'You are running :version, which is the latest available release.', + 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', + 'update_check_error' => 'An error occurred while checking for updates: :error', + 'unknown_error' => 'Unknown error. Sorry about that.', + 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', + 'admin_update_channel_title' => 'Kanal pembaharuan', + 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', + 'update_channel_stable' => 'Stable. Everything should work as expected.', + 'update_channel_beta' => 'Beta. New features but things may be broken.', + 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', // search - 'search' => 'Pencarian', - 'search_query' => 'Pertanyaan', - 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', - 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', - 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', - 'invalid_operators_list' => 'Parameter pencarian ini tidak valdi dan telah diabaikan.', + 'search' => 'Pencarian', + 'search_query' => 'Pertanyaan', + 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', + 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', + 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', + 'invalid_operators_list' => 'Parameter pencarian ini tidak valdi dan telah diabaikan.', // old @@ -351,368 +351,368 @@ 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_id' => 'Transaction ID is ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaction date is before or on ":value"', - 'search_modifier_date_after' => 'Transaction date is after or on ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Description is exactly ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'The transaction must have an attachment', - 'search_modifier_has_no_category' => 'The transaction must have no category', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'The transaction must have a (any) category', - 'search_modifier_has_no_budget' => 'The transaction must have no budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'The transaction must have no bill', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'The transaction has no notes', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'The transaction must have notes', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Amount is less than or equal to :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Amount is more than or equal to :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Source account name contains ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Tagihan adalah ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Tipe transaksi adalah ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + '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_id' => 'Transaction ID is ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaction date is before or on ":value"', + 'search_modifier_date_after' => 'Transaction date is after or on ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Description is exactly ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'The transaction must have an attachment', + 'search_modifier_has_no_category' => 'The transaction must have no category', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'The transaction must have a (any) category', + 'search_modifier_has_no_budget' => 'The transaction must have no budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'The transaction must have no bill', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'The transaction has no notes', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'The transaction must have notes', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Amount is less than or equal to :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Amount is more than or equal to :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Source account name contains ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Tagihan adalah ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Tipe transaksi adalah ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => 'Pencarian', - 'search_box_intro' => 'Selamat datang di fungsi pencarian Firefly III. Masukkan kueri penelusuran Anda di dalam kotak. Pastikan Anda memeriksa file bantuan karena pencariannya cukup canggih.', - 'search_error' => 'Kesalahan saat mencari', - 'search_searching' => 'Mencari...', - 'search_results' => 'Hasil Pencarian', + 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => 'Pencarian', + 'search_box_intro' => 'Selamat datang di fungsi pencarian Firefly III. Masukkan kueri penelusuran Anda di dalam kotak. Pastikan Anda memeriksa file bantuan karena pencariannya cukup canggih.', + 'search_error' => 'Kesalahan saat mencari', + 'search_searching' => 'Mencari...', + 'search_results' => 'Hasil Pencarian', // repeat frequencies: - 'repeat_freq_yearly' => 'tahunan', - 'repeat_freq_half-year' => 'setiap setengah tahun', - 'repeat_freq_quarterly' => 'triwulanan', - 'repeat_freq_monthly' => 'bulanan', - 'repeat_freq_weekly' => 'mingguan', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'mingguan', - 'quarterly' => 'triwulanan', - 'half-year' => 'setiap setengah tahun', - 'yearly' => 'tahunan', + 'repeat_freq_yearly' => 'tahunan', + 'repeat_freq_half-year' => 'setiap setengah tahun', + 'repeat_freq_quarterly' => 'triwulanan', + 'repeat_freq_monthly' => 'bulanan', + 'repeat_freq_weekly' => 'mingguan', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'mingguan', + 'quarterly' => 'triwulanan', + 'half-year' => 'setiap setengah tahun', + 'yearly' => 'tahunan', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Aturan', - 'rule_name' => 'Nama aturan', - 'rule_triggers' => 'Aturan pemicu kapan', - 'rule_actions' => 'Aturan akan', - 'new_rule' => 'Aturan baru', - 'new_rule_group' => 'Kelompok aturan baru', - 'rule_priority_up' => 'Berikan peraturan prioritas lebih', - 'rule_priority_down' => 'Berikan peraturan kurang prioritas', - 'make_new_rule_group' => 'Buat grup aturan baru', - 'store_new_rule_group' => 'Simpan grup aturan baru', - 'created_new_rule_group' => 'Kelompok aturan baru ":title" disimpan!', - 'updated_rule_group' => 'Grup aturan yang berhasil diperbarui ":title".', - 'edit_rule_group' => 'Edit grup aturan ":title"', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => 'Hapus grup aturan ":title"', - 'deleted_rule_group' => 'Grup aturan yang dihapus ":title"', - 'update_rule_group' => 'Perbarui grup aturan', - 'no_rules_in_group' => 'Tidak ada aturan dalam kelompok ini', - 'move_rule_group_up' => 'Pindahkan grup aturan ke atas', - 'move_rule_group_down' => 'Pindahkan grup aturan ke bawah', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Make a new rule in rule group ":title"', - 'make_new_rule_no_group' => 'Make a new rule', - 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => 'strict rule', - 'rule_is_not_strict' => 'non-strict rule', - 'rule_help_stop_processing' => 'Saat Anda mencentang kotak ini, nanti aturan dalam grup ini tidak akan dijalankan.', - 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', - 'rule_help_active' => 'Aturan tidak aktif tidak akan pernah menyala.', - 'stored_new_rule' => 'Aturan baru yang tersimpan dengan judul ":title"', - 'deleted_rule' => 'Aturan yang dihapus dengan judul ":title"', - 'store_new_rule' => 'Simpan peraturan baru', - 'updated_rule' => 'Aturan yang diperbarui dengan judul ":title"', - 'default_rule_group_name' => 'Aturan baku', - 'default_rule_group_description' => 'Semua peraturan Anda tidak ada dalam kelompok tertentu.', - 'trigger' => 'Pelatuk', - 'trigger_value' => 'Memicu nilai', - 'stop_processing_other_triggers' => 'Berhenti memproses pemicu lainnya', - 'add_rule_trigger' => 'Tambahkan pemicu baru', - 'action' => 'Tindakan', - 'action_value' => 'Nilai tindakan', - 'stop_executing_other_actions' => 'Berhenti mengeksekusi tindakan lainnya', - 'add_rule_action' => 'Tambahkan tindakan baru', - 'edit_rule' => 'Edit aturan ":title"', - 'delete_rule' => 'Hapus aturan ":title"', - 'update_rule' => 'Perbarui aturan', - 'test_rule_triggers' => 'Lihat transaksi yang sesuai', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => 'Tidak ada pemicu yang valid.', - 'apply_rule_selection' => 'Terapkan aturan ":title" untuk pilihan transaksi Anda', - 'apply_rule_selection_intro' => 'Aturan seperti ":title" biasanya hanya diterapkan pada transaksi baru atau yang telah diperbarui, namun Anda bisa memberi tahu Firefly III untuk menjalankannya pada pilihan transaksi Anda yang ada. Ini bisa berguna bila Anda telah memperbarui peraturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', - 'include_transactions_from_accounts' => 'Sertakan transaksi dari akun ini', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Menjalankan', - 'apply_rule_group_selection' => 'Terapkan grup aturan ":title" ke pilihan transaksi Anda', - 'apply_rule_group_selection_intro' => 'Kelompok aturan seperti ":title" biasanya hanya diterapkan pada transaksi baru atau yang diperbarui, namun Anda dapat memberi tahu Firefly III untuk menjalankan semua aturan dalam grup ini pada pilihan transaksi Anda saat ini. Ini bisa berguna bila Anda telah memperbarui sekumpulan aturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', - 'applied_rule_group_selection' => 'Rule group ":title" telah diterapkan pada pilihan Anda.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Aturan', + 'rule_name' => 'Nama aturan', + 'rule_triggers' => 'Aturan pemicu kapan', + 'rule_actions' => 'Aturan akan', + 'new_rule' => 'Aturan baru', + 'new_rule_group' => 'Kelompok aturan baru', + 'rule_priority_up' => 'Berikan peraturan prioritas lebih', + 'rule_priority_down' => 'Berikan peraturan kurang prioritas', + 'make_new_rule_group' => 'Buat grup aturan baru', + 'store_new_rule_group' => 'Simpan grup aturan baru', + 'created_new_rule_group' => 'Kelompok aturan baru ":title" disimpan!', + 'updated_rule_group' => 'Grup aturan yang berhasil diperbarui ":title".', + 'edit_rule_group' => 'Edit grup aturan ":title"', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => 'Hapus grup aturan ":title"', + 'deleted_rule_group' => 'Grup aturan yang dihapus ":title"', + 'update_rule_group' => 'Perbarui grup aturan', + 'no_rules_in_group' => 'Tidak ada aturan dalam kelompok ini', + 'move_rule_group_up' => 'Pindahkan grup aturan ke atas', + 'move_rule_group_down' => 'Pindahkan grup aturan ke bawah', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Make a new rule in rule group ":title"', + 'make_new_rule_no_group' => 'Make a new rule', + 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => 'strict rule', + 'rule_is_not_strict' => 'non-strict rule', + 'rule_help_stop_processing' => 'Saat Anda mencentang kotak ini, nanti aturan dalam grup ini tidak akan dijalankan.', + 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', + 'rule_help_active' => 'Aturan tidak aktif tidak akan pernah menyala.', + 'stored_new_rule' => 'Aturan baru yang tersimpan dengan judul ":title"', + 'deleted_rule' => 'Aturan yang dihapus dengan judul ":title"', + 'store_new_rule' => 'Simpan peraturan baru', + 'updated_rule' => 'Aturan yang diperbarui dengan judul ":title"', + 'default_rule_group_name' => 'Aturan baku', + 'default_rule_group_description' => 'Semua peraturan Anda tidak ada dalam kelompok tertentu.', + 'trigger' => 'Pelatuk', + 'trigger_value' => 'Memicu nilai', + 'stop_processing_other_triggers' => 'Berhenti memproses pemicu lainnya', + 'add_rule_trigger' => 'Tambahkan pemicu baru', + 'action' => 'Tindakan', + 'action_value' => 'Nilai tindakan', + 'stop_executing_other_actions' => 'Berhenti mengeksekusi tindakan lainnya', + 'add_rule_action' => 'Tambahkan tindakan baru', + 'edit_rule' => 'Edit aturan ":title"', + 'delete_rule' => 'Hapus aturan ":title"', + 'update_rule' => 'Perbarui aturan', + 'test_rule_triggers' => 'Lihat transaksi yang sesuai', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => 'Tidak ada pemicu yang valid.', + 'apply_rule_selection' => 'Terapkan aturan ":title" untuk pilihan transaksi Anda', + 'apply_rule_selection_intro' => 'Aturan seperti ":title" biasanya hanya diterapkan pada transaksi baru atau yang telah diperbarui, namun Anda bisa memberi tahu Firefly III untuk menjalankannya pada pilihan transaksi Anda yang ada. Ini bisa berguna bila Anda telah memperbarui peraturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', + 'include_transactions_from_accounts' => 'Sertakan transaksi dari akun ini', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Menjalankan', + 'apply_rule_group_selection' => 'Terapkan grup aturan ":title" ke pilihan transaksi Anda', + 'apply_rule_group_selection_intro' => 'Kelompok aturan seperti ":title" biasanya hanya diterapkan pada transaksi baru atau yang diperbarui, namun Anda dapat memberi tahu Firefly III untuk menjalankan semua aturan dalam grup ini pada pilihan transaksi Anda saat ini. Ini bisa berguna bila Anda telah memperbarui sekumpulan aturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', + 'applied_rule_group_selection' => 'Rule group ":title" telah diterapkan pada pilihan Anda.', // actions and triggers - 'rule_trigger_store_journal' => 'Saat transaksi dibuat', - 'rule_trigger_update_journal' => 'Saat transaksi diperbarui', - 'rule_trigger_user_action' => 'Tindakan pengguna adalah ":trigger_value"', + 'rule_trigger_store_journal' => 'Saat transaksi dibuat', + 'rule_trigger_update_journal' => 'Saat transaksi diperbarui', + 'rule_trigger_user_action' => 'Tindakan pengguna adalah ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaksi adalah tipe..', - 'rule_trigger_transaction_type' => 'Transaksi adalah tipe ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategori adalah..', - 'rule_trigger_category_is' => 'Kategori adalah ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Deskripsi dimulai dengan..', - 'rule_trigger_description_starts' => 'Deskripsi dimulai dengan ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Deskripsi diakhiri dengan..', - 'rule_trigger_description_ends' => 'Deskripsi diakhiri dengan ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Deskripsi berisi..', - 'rule_trigger_description_contains' => 'Deskripsi berisi ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Deskripsi adalah..', - 'rule_trigger_description_is' => 'Deskripsi adalah ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaction date is before..', - 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaction date is after..', - 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Anggaran adalah..', - 'rule_trigger_budget_is' => 'Anggaran adalah ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaction currency is..', - 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Paling tidak banyak keterikatan ini', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Tidak memiliki kategori', - 'rule_trigger_has_no_category' => 'Transaksi tidak memiliki kategori', - 'rule_trigger_has_any_category_choice' => 'Memiliki kategori (apapun)', - 'rule_trigger_has_any_category' => 'Transaksi tidak memiliki kategori (apapun)', - 'rule_trigger_has_no_budget_choice' => 'Tidak memiliki anggaran', - 'rule_trigger_has_no_budget' => 'Transaksi tidak memiliki anggaran', - 'rule_trigger_has_any_budget_choice' => 'Memiliki anggaran (apapun)', - 'rule_trigger_has_any_budget' => 'Transaksi memiliki anggaran (apapun)', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Tidak memiliki tag', - 'rule_trigger_has_no_tag' => 'Transaksi tidak memiliki tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Memiliki satu atau beberapa tag (apapun)', - 'rule_trigger_has_any_tag' => 'Transaksi memiliki satu atau lebih tag (apapun)', - 'rule_trigger_any_notes_choice' => 'Telah ada catatan', - 'rule_trigger_any_notes' => 'Transaksi memiliki (ada) catatan', - 'rule_trigger_no_notes_choice' => 'Tidak memiliki catatan', - 'rule_trigger_no_notes' => 'Transaksi tidak memiliki catatan', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaksi adalah tipe..', + 'rule_trigger_transaction_type' => 'Transaksi adalah tipe ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori adalah..', + 'rule_trigger_category_is' => 'Kategori adalah ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Deskripsi dimulai dengan..', + 'rule_trigger_description_starts' => 'Deskripsi dimulai dengan ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Deskripsi diakhiri dengan..', + 'rule_trigger_description_ends' => 'Deskripsi diakhiri dengan ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Deskripsi berisi..', + 'rule_trigger_description_contains' => 'Deskripsi berisi ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Deskripsi adalah..', + 'rule_trigger_description_is' => 'Deskripsi adalah ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaction date is before..', + 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaction date is after..', + 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Anggaran adalah..', + 'rule_trigger_budget_is' => 'Anggaran adalah ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaction currency is..', + 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Paling tidak banyak keterikatan ini', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Tidak memiliki kategori', + 'rule_trigger_has_no_category' => 'Transaksi tidak memiliki kategori', + 'rule_trigger_has_any_category_choice' => 'Memiliki kategori (apapun)', + 'rule_trigger_has_any_category' => 'Transaksi tidak memiliki kategori (apapun)', + 'rule_trigger_has_no_budget_choice' => 'Tidak memiliki anggaran', + 'rule_trigger_has_no_budget' => 'Transaksi tidak memiliki anggaran', + 'rule_trigger_has_any_budget_choice' => 'Memiliki anggaran (apapun)', + 'rule_trigger_has_any_budget' => 'Transaksi memiliki anggaran (apapun)', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Tidak memiliki tag', + 'rule_trigger_has_no_tag' => 'Transaksi tidak memiliki tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Memiliki satu atau beberapa tag (apapun)', + 'rule_trigger_has_any_tag' => 'Transaksi memiliki satu atau lebih tag (apapun)', + 'rule_trigger_any_notes_choice' => 'Telah ada catatan', + 'rule_trigger_any_notes' => 'Transaksi memiliki (ada) catatan', + 'rule_trigger_no_notes_choice' => 'Tidak memiliki catatan', + 'rule_trigger_no_notes' => 'Transaksi tidak memiliki catatan', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Tetapkan kategori ke ":action_value"', - 'rule_action_clear_category' => 'Kategori yang jelas', - 'rule_action_set_budget' => 'Tetapkan anggaran ke ":action_value"', - 'rule_action_clear_budget' => 'Jelas anggaran', - 'rule_action_add_tag' => 'Tambahkan tag ":action_value"', - 'rule_action_remove_tag' => 'Hapus tag ":action_value"', - 'rule_action_remove_all_tags' => 'Hapus semua tag', - 'rule_action_set_description' => 'Tetapkan deskripsi ke ":action_value"', - 'rule_action_append_description' => 'Tambahkan deskripsi dengan ":action_value"', - 'rule_action_prepend_description' => 'Masukan dulu deskripsi dengan ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Kosongkan kategori apapun', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Kosongkan anggaran', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Hapus semua tag', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Tetapkan akun sumber ke :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Tetapkan akun tujuan ke :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Tambahkan catatan dengan ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Catatan prepend dengan ":action_value"', - 'rule_action_clear_notes_choice' => 'Hapus catatan apapun', - 'rule_action_clear_notes' => 'Hapus catatan apapun', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link to bill ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Tetapkan catatan ke ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', - 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', - 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', - 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Rule group for bills', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Create a new rule for bill ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Rule for bill ":name"', - 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Tetapkan kategori ke ":action_value"', + 'rule_action_clear_category' => 'Kategori yang jelas', + 'rule_action_set_budget' => 'Tetapkan anggaran ke ":action_value"', + 'rule_action_clear_budget' => 'Jelas anggaran', + 'rule_action_add_tag' => 'Tambahkan tag ":action_value"', + 'rule_action_remove_tag' => 'Hapus tag ":action_value"', + 'rule_action_remove_all_tags' => 'Hapus semua tag', + 'rule_action_set_description' => 'Tetapkan deskripsi ke ":action_value"', + 'rule_action_append_description' => 'Tambahkan deskripsi dengan ":action_value"', + 'rule_action_prepend_description' => 'Masukan dulu deskripsi dengan ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Kosongkan kategori apapun', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Kosongkan anggaran', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Hapus semua tag', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Tetapkan akun sumber ke :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Tetapkan akun tujuan ke :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Tambahkan catatan dengan ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Catatan prepend dengan ":action_value"', + 'rule_action_clear_notes_choice' => 'Hapus catatan apapun', + 'rule_action_clear_notes' => 'Hapus catatan apapun', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link to bill ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Tetapkan catatan ke ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', + 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', + 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', + 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Rule group for bills', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Create a new rule for bill ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Rule for bill ":name"', + 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => 'Simpan tag baru', - 'update_tag' => 'Perbarui tag', - 'no_location_set' => 'Tidak ada lokasi yang ditetapkan', - 'meta_data' => 'Data meta', - 'location' => 'Lokasi', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Tanpa tanggal', - 'result' => 'Hasil', - 'sums_apply_to_range' => 'Semua jumlah berlaku untuk rentang yang dipilih', - 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Lokasi yang jelas', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Simpan tag baru', + 'update_tag' => 'Perbarui tag', + 'no_location_set' => 'Tidak ada lokasi yang ditetapkan', + 'meta_data' => 'Data meta', + 'location' => 'Lokasi', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Tanpa tanggal', + 'result' => 'Hasil', + 'sums_apply_to_range' => 'Semua jumlah berlaku untuk rentang yang dipilih', + 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Lokasi yang jelas', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(equal to language)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Akun layar utama', - 'pref_home_screen_accounts_help' => 'Akun mana yang harus ditampilkan di beranda?', - 'pref_view_range' => 'Rentang tampilan', - 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', - 'pref_1D' => 'Suatu hari', - 'pref_1W' => 'Satu minggu', - 'pref_1M' => 'Satu bulan', - 'pref_3M' => 'Tiga bulan (seperempat)', - 'pref_6M' => 'Enam bulan', - 'pref_1Y' => 'Satu tahun', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Bahasa', - 'pref_locale' => 'Locale settings', - 'pref_languages_help' => 'Firefly III mendukung beberapa bahasa. Mana yang kamu suka?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => 'Pengaturan tahun fiskal', - 'pref_custom_fiscal_year_label' => 'Diaktifkan', - 'pref_custom_fiscal_year_help' => 'Di negara-negara yang menggunakan tahun keuangan selain 1 Januari sampai 31 Desember, Anda dapat mengaktifkannya dan menentukan hari-hari awal / akhir dari tahun fiskal', - 'pref_fiscal_year_start_label' => 'Tahun anggaran mulai tanggal', - 'pref_two_factor_auth' => 'Verifikasi 2 langkah', - 'pref_two_factor_auth_help' => 'Bila Anda mengaktifkan verifikasi 2 langkah (juga dikenal sebagai autentikasi dua faktor), Anda menambahkan lapisan keamanan ekstra ke akun Anda. Anda masuk dengan sesuatu yang Anda tahu (kata sandi Anda) dan sesuatu yang Anda miliki (kode verifikasi). Kode verifikasi dihasilkan oleh aplikasi di ponsel Anda, seperti Authy atau Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Aktifkan verifikasi 2 langkah', - 'pref_two_factor_auth_disabled' => 'Kode verifikasi 2 langkah dihapus dan dinonaktifkan', - 'pref_two_factor_auth_remove_it' => 'Jangan lupa menghapus akun dari aplikasi autentikasi Anda!', - 'pref_two_factor_auth_code' => 'Kode verifikasi', - 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', - 'pref_two_factor_auth_reset_code' => 'Setel ulang kode verifikasi', - 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => 'Simpan Pengaturan', - 'saved_preferences' => 'Preferensi disimpan!', - 'preferences_general' => 'Umum', - 'preferences_frontpage' => 'Tampilan depan', - 'preferences_security' => 'Keamanan', - 'preferences_layout' => 'Tata ruang', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Tampilkan deposito pada layar awal', - 'pref_home_show_deposits_info' => 'Layar awal sudah menunjukkan rekening pengeluaran Anda. Harus itu juga menunjukkan akun pendapatan Anda?', - 'pref_home_do_show_deposits' => 'Ya, menunjukkan kepada mereka', - 'successful_count' => ':count menghitung sukses', - 'list_page_size_title' => 'Ukuran halaman', - 'list_page_size_help' => 'Setiap daftar hal-hal (rekening, transaksi, dll) menunjukkan paling ini banyak per halaman.', - 'list_page_size_label' => 'Ukuran halaman', - 'between_dates' => '(:start dan :end)', - 'pref_optional_fields_transaction' => 'Bidang opsional untuk transaksi', - 'pref_optional_fields_transaction_help' => 'Secara default tidak semua bidang diaktifkan saat membuat transaksi baru (karena kekacauan). Di bawah, Anda dapat mengaktifkan bidang ini jika Anda berpikir mereka bisa berguna bagi Anda. Tentu saja, setiap bidang yang dinonaktifkan, tapi sudah diisi, akan terlihat terlepas dari pengaturan.', - 'optional_tj_date_fields' => 'Bidang tanggal', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Bidang lampiran', - 'pref_optional_tj_interest_date' => 'Tanggal bunga', - 'pref_optional_tj_book_date' => 'Buku tanggal', - 'pref_optional_tj_process_date' => 'Tanggal pengolahan', - 'pref_optional_tj_due_date' => 'Batas tanggal terakhir', - 'pref_optional_tj_payment_date' => 'Tanggal pembayaran', - 'pref_optional_tj_invoice_date' => 'Tanggal faktur', - 'pref_optional_tj_internal_reference' => 'Referensi internal', - 'pref_optional_tj_notes' => 'Catatan', - 'pref_optional_tj_attachments' => 'Lampiran', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Tanggal', - 'optional_field_meta_business' => 'Bisnis', - 'optional_field_attachments' => 'Lampiran', - 'optional_field_meta_data' => 'Data meta opsional', - 'external_url' => 'URL luar', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(equal to language)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Akun layar utama', + 'pref_home_screen_accounts_help' => 'Akun mana yang harus ditampilkan di beranda?', + 'pref_view_range' => 'Rentang tampilan', + 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', + 'pref_1D' => 'Suatu hari', + 'pref_1W' => 'Satu minggu', + 'pref_1M' => 'Satu bulan', + 'pref_3M' => 'Tiga bulan (seperempat)', + 'pref_6M' => 'Enam bulan', + 'pref_1Y' => 'Satu tahun', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Bahasa', + 'pref_locale' => 'Locale settings', + 'pref_languages_help' => 'Firefly III mendukung beberapa bahasa. Mana yang kamu suka?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => 'Pengaturan tahun fiskal', + 'pref_custom_fiscal_year_label' => 'Diaktifkan', + 'pref_custom_fiscal_year_help' => 'Di negara-negara yang menggunakan tahun keuangan selain 1 Januari sampai 31 Desember, Anda dapat mengaktifkannya dan menentukan hari-hari awal / akhir dari tahun fiskal', + 'pref_fiscal_year_start_label' => 'Tahun anggaran mulai tanggal', + 'pref_two_factor_auth' => 'Verifikasi 2 langkah', + 'pref_two_factor_auth_help' => 'Bila Anda mengaktifkan verifikasi 2 langkah (juga dikenal sebagai autentikasi dua faktor), Anda menambahkan lapisan keamanan ekstra ke akun Anda. Anda masuk dengan sesuatu yang Anda tahu (kata sandi Anda) dan sesuatu yang Anda miliki (kode verifikasi). Kode verifikasi dihasilkan oleh aplikasi di ponsel Anda, seperti Authy atau Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Aktifkan verifikasi 2 langkah', + 'pref_two_factor_auth_disabled' => 'Kode verifikasi 2 langkah dihapus dan dinonaktifkan', + 'pref_two_factor_auth_remove_it' => 'Jangan lupa menghapus akun dari aplikasi autentikasi Anda!', + 'pref_two_factor_auth_code' => 'Kode verifikasi', + 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', + 'pref_two_factor_auth_reset_code' => 'Setel ulang kode verifikasi', + 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => 'Simpan Pengaturan', + 'saved_preferences' => 'Preferensi disimpan!', + 'preferences_general' => 'Umum', + 'preferences_frontpage' => 'Tampilan depan', + 'preferences_security' => 'Keamanan', + 'preferences_layout' => 'Tata ruang', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Tampilkan deposito pada layar awal', + 'pref_home_show_deposits_info' => 'Layar awal sudah menunjukkan rekening pengeluaran Anda. Harus itu juga menunjukkan akun pendapatan Anda?', + 'pref_home_do_show_deposits' => 'Ya, menunjukkan kepada mereka', + 'successful_count' => ':count menghitung sukses', + 'list_page_size_title' => 'Ukuran halaman', + 'list_page_size_help' => 'Setiap daftar hal-hal (rekening, transaksi, dll) menunjukkan paling ini banyak per halaman.', + 'list_page_size_label' => 'Ukuran halaman', + 'between_dates' => '(:start dan :end)', + 'pref_optional_fields_transaction' => 'Bidang opsional untuk transaksi', + 'pref_optional_fields_transaction_help' => 'Secara default tidak semua bidang diaktifkan saat membuat transaksi baru (karena kekacauan). Di bawah, Anda dapat mengaktifkan bidang ini jika Anda berpikir mereka bisa berguna bagi Anda. Tentu saja, setiap bidang yang dinonaktifkan, tapi sudah diisi, akan terlihat terlepas dari pengaturan.', + 'optional_tj_date_fields' => 'Bidang tanggal', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Bidang lampiran', + 'pref_optional_tj_interest_date' => 'Tanggal bunga', + 'pref_optional_tj_book_date' => 'Buku tanggal', + 'pref_optional_tj_process_date' => 'Tanggal pengolahan', + 'pref_optional_tj_due_date' => 'Batas tanggal terakhir', + 'pref_optional_tj_payment_date' => 'Tanggal pembayaran', + 'pref_optional_tj_invoice_date' => 'Tanggal faktur', + 'pref_optional_tj_internal_reference' => 'Referensi internal', + 'pref_optional_tj_notes' => 'Catatan', + 'pref_optional_tj_attachments' => 'Lampiran', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Tanggal', + 'optional_field_meta_business' => 'Bisnis', + 'optional_field_attachments' => 'Lampiran', + 'optional_field_meta_data' => 'Data meta opsional', + 'external_url' => 'URL luar', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Delete ALL your categories', - 'delete_all_tags' => 'Delete ALL your tags', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Ubah password Anda', - 'delete_account' => 'Hapus akun', - 'current_password' => 'Kata sandi saat ini', - 'new_password' => 'Kata sandi baru', - 'new_password_again' => 'Password Baru Lagi)', - 'delete_your_account' => 'Hapus akun anda', - 'delete_your_account_help' => 'Menghapus akun juga akan menghapus akun, transaksi, semua Anda mungkin telah disimpan ke Firefly III. Ini akan HILANG.', - 'delete_your_account_password' => 'Masukkan kata sandi Anda untuk melanjutkan.', - 'password' => 'Kata sandi', - 'are_you_sure' => 'Apakah Anda yakin? Anda tidak dapat membatalkan ini.', - 'delete_account_button' => 'Hapus akun anda', - 'invalid_current_password' => 'Kata sandi tidak valid saat ini!', - 'password_changed' => 'Sandi berubah!', - 'should_change' => 'Idenya adalah untuk mengubah password Anda.', - 'invalid_password' => 'Kata sandi salah!', - 'what_is_pw_security' => 'Apa itu "memverifikasi keamanan password"?', - 'secure_pw_title' => 'Bagaimana memilih sebuah password yang aman', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', - 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', - 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', - 'secure_pw_working_title' => 'How does it work?', - 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Haruskah saya mencentang kotaknya?', - 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', - 'command_line_token' => 'Command line token', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'A new command line token was generated', - 'change_your_email' => 'Ubah alamat email anda', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Sampai Anda memverifikasi alamat email Anda, Anda tidak dapat login.', - 'login_with_new_email' => 'Anda sekarang bisa masuk dengan alamat email baru Anda.', - 'login_with_old_email' => 'Anda sekarang dapat login dengan alamat email lama Anda lagi.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Create Client', - 'profile_oauth_edit_client' => 'Edit Client', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Redirect URL', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Authorized clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Create new token', - 'profile_create_token' => 'Create token', - 'profile_create' => 'Create', - 'profile_save_changes' => 'Save changes', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Delete ALL your categories', + 'delete_all_tags' => 'Delete ALL your tags', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Ubah password Anda', + 'delete_account' => 'Hapus akun', + 'current_password' => 'Kata sandi saat ini', + 'new_password' => 'Kata sandi baru', + 'new_password_again' => 'Password Baru Lagi)', + 'delete_your_account' => 'Hapus akun anda', + 'delete_your_account_help' => 'Menghapus akun juga akan menghapus akun, transaksi, semua Anda mungkin telah disimpan ke Firefly III. Ini akan HILANG.', + 'delete_your_account_password' => 'Masukkan kata sandi Anda untuk melanjutkan.', + 'password' => 'Kata sandi', + 'are_you_sure' => 'Apakah Anda yakin? Anda tidak dapat membatalkan ini.', + 'delete_account_button' => 'Hapus akun anda', + 'invalid_current_password' => 'Kata sandi tidak valid saat ini!', + 'password_changed' => 'Sandi berubah!', + 'should_change' => 'Idenya adalah untuk mengubah password Anda.', + 'invalid_password' => 'Kata sandi salah!', + 'what_is_pw_security' => 'Apa itu "memverifikasi keamanan password"?', + 'secure_pw_title' => 'Bagaimana memilih sebuah password yang aman', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', + 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', + 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', + 'secure_pw_working_title' => 'How does it work?', + 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Haruskah saya mencentang kotaknya?', + 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', + 'command_line_token' => 'Command line token', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'A new command line token was generated', + 'change_your_email' => 'Ubah alamat email anda', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Sampai Anda memverifikasi alamat email Anda, Anda tidak dapat login.', + 'login_with_new_email' => 'Anda sekarang bisa masuk dengan alamat email baru Anda.', + 'login_with_old_email' => 'Anda sekarang dapat login dengan alamat email lama Anda lagi.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Create Client', + 'profile_oauth_edit_client' => 'Edit Client', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Redirect URL', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Authorized clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Create new token', + 'profile_create_token' => 'Create token', + 'profile_create' => 'Create', + 'profile_save_changes' => 'Save changes', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Export data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Export data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Satu lampiran |:count lampiran', - 'attachments' => 'Lampiran', - 'edit_attachment' => 'Edit lampiran ":name"', - 'update_attachment' => 'Perbarui lampiran', - 'delete_attachment' => 'Hapus lampiran ":name"', - 'attachment_deleted' => 'Lampiran yang dihapus ":name"', - 'liabilities_deleted' => 'Deleted liability ":name"', - 'attachment_updated' => 'Lampiran yang diperbarui ":name"', - 'upload_max_file_size' => 'Ukuran file maksimum: :size', - 'list_all_attachments' => 'List of all attachments', + 'nr_of_attachments' => 'Satu lampiran |:count lampiran', + 'attachments' => 'Lampiran', + 'edit_attachment' => 'Edit lampiran ":name"', + 'update_attachment' => 'Perbarui lampiran', + 'delete_attachment' => 'Hapus lampiran ":name"', + 'attachment_deleted' => 'Lampiran yang dihapus ":name"', + 'liabilities_deleted' => 'Deleted liability ":name"', + 'attachment_updated' => 'Lampiran yang diperbarui ":name"', + 'upload_max_file_size' => 'Ukuran file maksimum: :size', + 'list_all_attachments' => 'List of all attachments', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Beban', - 'title_withdrawal' => 'Beban', - 'title_revenue' => 'Pendapatan / penghasilan', - 'title_deposit' => 'Pendapatan / penghasilan', - 'title_transfer' => 'Transfer', - 'title_transfers' => 'Transfer', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Beban', + 'title_withdrawal' => 'Beban', + 'title_revenue' => 'Pendapatan / penghasilan', + 'title_deposit' => 'Pendapatan / penghasilan', + 'title_transfer' => 'Transfer', + 'title_transfers' => 'Transfer', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan', - 'convert_is_already_type_Deposit' => 'Transaksi ini sudah menjadi deposit', - 'convert_is_already_type_Transfer' => 'Transaksi ini sudah di transfer', - 'convert_to_Withdrawal' => 'Convert ":description" ke penarikan', - 'convert_to_Deposit' => 'Convert ":description" ke deposit', - 'convert_to_Transfer' => 'Convert ":description" ke sebuah transfer', - 'convert_options_WithdrawalDeposit' => 'Mengkonversi penarikan menjadi deposit', - 'convert_options_WithdrawalTransfer' => 'Mengkonversi penarikan ke dalam transfer', - 'convert_options_DepositTransfer' => 'Mengkonversi deposit ke transfer', - 'convert_options_DepositWithdrawal' => 'Mengkonversi deposit menjadi penarikan', - 'convert_options_TransferWithdrawal' => 'Mengkonversi transfer menjadi penarikan', - 'convert_options_TransferDeposit' => 'Mengkonversi transfer menjadi deposit', - 'convert_Withdrawal_to_deposit' => 'Mengkonversi penarikan ini ke deposit', - 'convert_Withdrawal_to_transfer' => 'Mengkonversi penarikan ini ke transfer', - 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', - 'convert_Deposit_to_transfer' => 'Konversikan deposit ini ke transfer', - 'convert_Transfer_to_deposit' => 'Mengkonversi transfer ini ke deposit', - 'convert_Transfer_to_withdrawal' => 'Mengkonversi transfer ini ke penarikan', - 'convert_please_set_revenue_source' => 'Silakan pilih akun pendapatan dari mana uang itu berasal.', - 'convert_please_set_asset_destination' => 'Silakan pilih akun aset dimana uangnya akan digunakan.', - 'convert_please_set_expense_destination' => 'Tolong pilih rekening pengeluaran yang akan digunakan untuk uang.', - 'convert_please_set_asset_source' => 'Silakan pilih akun aset dari mana uang itu berasal.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'Transaksi telah dikonversi menjadi penarikan', - 'converted_to_Deposit' => 'Transaksi telah dikonversi menjadi deposit', - 'converted_to_Transfer' => 'Transaksi telah dikonversi menjadi transfer', - 'invalid_convert_selection' => 'Akun yang telah Anda pilih sudah digunakan dalam transaksi ini atau tidak ada.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Convert to a withdrawal', - 'convert_to_deposit' => 'Convert to a deposit', - 'convert_to_transfer' => 'Convert to a transfer', + 'convert_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan', + 'convert_is_already_type_Deposit' => 'Transaksi ini sudah menjadi deposit', + 'convert_is_already_type_Transfer' => 'Transaksi ini sudah di transfer', + 'convert_to_Withdrawal' => 'Convert ":description" ke penarikan', + 'convert_to_Deposit' => 'Convert ":description" ke deposit', + 'convert_to_Transfer' => 'Convert ":description" ke sebuah transfer', + 'convert_options_WithdrawalDeposit' => 'Mengkonversi penarikan menjadi deposit', + 'convert_options_WithdrawalTransfer' => 'Mengkonversi penarikan ke dalam transfer', + 'convert_options_DepositTransfer' => 'Mengkonversi deposit ke transfer', + 'convert_options_DepositWithdrawal' => 'Mengkonversi deposit menjadi penarikan', + 'convert_options_TransferWithdrawal' => 'Mengkonversi transfer menjadi penarikan', + 'convert_options_TransferDeposit' => 'Mengkonversi transfer menjadi deposit', + 'convert_Withdrawal_to_deposit' => 'Mengkonversi penarikan ini ke deposit', + 'convert_Withdrawal_to_transfer' => 'Mengkonversi penarikan ini ke transfer', + 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', + 'convert_Deposit_to_transfer' => 'Konversikan deposit ini ke transfer', + 'convert_Transfer_to_deposit' => 'Mengkonversi transfer ini ke deposit', + 'convert_Transfer_to_withdrawal' => 'Mengkonversi transfer ini ke penarikan', + 'convert_please_set_revenue_source' => 'Silakan pilih akun pendapatan dari mana uang itu berasal.', + 'convert_please_set_asset_destination' => 'Silakan pilih akun aset dimana uangnya akan digunakan.', + 'convert_please_set_expense_destination' => 'Tolong pilih rekening pengeluaran yang akan digunakan untuk uang.', + 'convert_please_set_asset_source' => 'Silakan pilih akun aset dari mana uang itu berasal.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'Transaksi telah dikonversi menjadi penarikan', + 'converted_to_Deposit' => 'Transaksi telah dikonversi menjadi deposit', + 'converted_to_Transfer' => 'Transaksi telah dikonversi menjadi transfer', + 'invalid_convert_selection' => 'Akun yang telah Anda pilih sudah digunakan dalam transaksi ini atau tidak ada.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Convert to a withdrawal', + 'convert_to_deposit' => 'Convert to a deposit', + 'convert_to_transfer' => 'Convert to a transfer', // create new stuff: - 'create_new_withdrawal' => 'Buat penarikan baru', - 'create_new_deposit' => 'Buat deposit baru', - 'create_new_transfer' => 'Buat transfer baru', - 'create_new_asset' => 'Buat akun aset baru', - 'create_new_liabilities' => 'Buat tagihan baru', - 'create_new_expense' => 'Buat akun biaya baru', - 'create_new_revenue' => 'Buat akun pendapatan baru', - 'create_new_piggy_bank' => 'Buat celengan baru', - 'create_new_bill' => 'Buat tagihan baru', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Buat penarikan baru', + 'create_new_deposit' => 'Buat deposit baru', + 'create_new_transfer' => 'Buat transfer baru', + 'create_new_asset' => 'Buat akun aset baru', + 'create_new_liabilities' => 'Buat tagihan baru', + 'create_new_expense' => 'Buat akun biaya baru', + 'create_new_revenue' => 'Buat akun pendapatan baru', + 'create_new_piggy_bank' => 'Buat celengan baru', + 'create_new_bill' => 'Buat tagihan baru', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Buat mata uang baru', - 'store_currency' => 'Simpan mata uang baru', - 'update_currency' => 'Perbarui mata uang', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Tidak dapat menghapus :name karena masih digunakan.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Mata uang :name dihapus', - 'created_currency' => 'Mata uang :name dibuat', - 'could_not_store_currency' => 'Could not store the new currency.', - 'updated_currency' => 'Mata uang :name diperbarui', - 'ask_site_owner' => 'Harap bertanya :owner untuk menambahkan, menghapus atau mengedit mata uang.', - 'currencies_intro' => 'Firefly III mendukung berbagai mata uang yang dapat Anda atur dan aktifkan di sini.', - 'make_default_currency' => 'Make default', - 'default_currency' => 'default', - 'currency_is_disabled' => 'Disabled', - 'enable_currency' => 'Enable', - 'disable_currency' => 'Disable', - 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', - 'currency_is_now_enabled' => 'Currency ":name" has been enabled', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Currency ":name" has been disabled', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Buat mata uang baru', + 'store_currency' => 'Simpan mata uang baru', + 'update_currency' => 'Perbarui mata uang', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Tidak dapat menghapus :name karena masih digunakan.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Mata uang :name dihapus', + 'created_currency' => 'Mata uang :name dibuat', + 'could_not_store_currency' => 'Could not store the new currency.', + 'updated_currency' => 'Mata uang :name diperbarui', + 'ask_site_owner' => 'Harap bertanya :owner untuk menambahkan, menghapus atau mengedit mata uang.', + 'currencies_intro' => 'Firefly III mendukung berbagai mata uang yang dapat Anda atur dan aktifkan di sini.', + 'make_default_currency' => 'Make default', + 'default_currency' => 'default', + 'currency_is_disabled' => 'Disabled', + 'enable_currency' => 'Enable', + 'disable_currency' => 'Disable', + 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', + 'currency_is_now_enabled' => 'Currency ":name" has been enabled', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Currency ":name" has been disabled', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Bidang wajib', - 'optionalFields' => 'Bidang pilihan', - 'options' => 'Pilihan', + 'mandatoryFields' => 'Bidang wajib', + 'optionalFields' => 'Bidang pilihan', + 'options' => 'Pilihan', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => 'Buat anggaran baru', - 'store_new_budget' => 'Simpan anggaran baru', - 'stored_new_budget' => 'Anggaran baru tersimpan ":name"', - 'available_between' => 'Tersedia antara :start dan :end', - 'transactionsWithoutBudget' => 'Biaya tanpa anggaran', - 'transactions_no_budget' => 'Biaya tanpa anggaran antara :start dan :end', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'Anggaran baru', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Anggaran tidak aktif', - 'without_budget_between' => 'Transaksi tanpa anggaran antara :start dan :end', - 'delete_budget' => 'Hapus anggaran ":name"', - 'deleted_budget' => 'Anggaran yang telah dihapus ":name"', - 'edit_budget' => 'Edit anggaran ":name"', - 'updated_budget' => 'Anggaran yang diperbarui ":name"', - 'update_amount' => 'Perbarui jumlah', - 'update_budget' => 'Perbarui anggaran', - 'update_budget_amount_range' => 'Update (expected) jumlah yang tersedia antara :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => 'Navigator periode', - 'info_on_available_amount' => 'Apa yang telah tersedia?', - 'available_amount_indication' => 'Gunakan jumlah ini untuk mendapatkan indikasi berapa total anggaran Anda.', - 'suggested' => 'Disarankan', - 'average_between' => 'Rata-rata antara :start dan :end', - 'transferred_in' => 'Transferred (in)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daily', - 'auto_budget_period_weekly' => 'Weekly', - 'auto_budget_period_monthly' => 'Monthly', - 'auto_budget_period_quarterly' => 'Quarterly', - 'auto_budget_period_half_year' => 'Every half year', - 'auto_budget_period_yearly' => 'Yearly', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => 'Buat anggaran baru', + 'store_new_budget' => 'Simpan anggaran baru', + 'stored_new_budget' => 'Anggaran baru tersimpan ":name"', + 'available_between' => 'Tersedia antara :start dan :end', + 'transactionsWithoutBudget' => 'Biaya tanpa anggaran', + 'transactions_no_budget' => 'Biaya tanpa anggaran antara :start dan :end', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'Anggaran baru', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Anggaran tidak aktif', + 'without_budget_between' => 'Transaksi tanpa anggaran antara :start dan :end', + 'delete_budget' => 'Hapus anggaran ":name"', + 'deleted_budget' => 'Anggaran yang telah dihapus ":name"', + 'edit_budget' => 'Edit anggaran ":name"', + 'updated_budget' => 'Anggaran yang diperbarui ":name"', + 'update_amount' => 'Perbarui jumlah', + 'update_budget' => 'Perbarui anggaran', + 'update_budget_amount_range' => 'Update (expected) jumlah yang tersedia antara :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => 'Navigator periode', + 'info_on_available_amount' => 'Apa yang telah tersedia?', + 'available_amount_indication' => 'Gunakan jumlah ini untuk mendapatkan indikasi berapa total anggaran Anda.', + 'suggested' => 'Disarankan', + 'average_between' => 'Rata-rata antara :start dan :end', + 'transferred_in' => 'Transferred (in)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daily', + 'auto_budget_period_weekly' => 'Weekly', + 'auto_budget_period_monthly' => 'Monthly', + 'auto_budget_period_quarterly' => 'Quarterly', + 'auto_budget_period_half_year' => 'Every half year', + 'auto_budget_period_yearly' => 'Yearly', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Bill matches transactions between :low and :high.', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => 'Rules related to this bill', - 'repeats' => 'Berulang', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Transaksi yang terhubung', - 'auto_match_on' => 'Automatically matched by Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Pertandingan yang diharapkan berikutnya', - 'delete_bill' => 'Hapus tagihan ":name"', - 'deleted_bill' => 'Tagihan yang dihapus ":name"', - 'edit_bill' => 'Edit tagihan ":name"', - 'more' => 'Lebih', - 'rescan_old' => 'Run rules again, on all transactions', - 'update_bill' => 'Perbarui tagihan', - 'updated_bill' => 'Diperbarui tagihan ":name"', - 'store_new_bill' => 'Simpan tagihan baru', - 'stored_new_bill' => 'Stored tagihan baru ":name"', - 'cannot_scan_inactive_bill' => 'Tagihan tidak aktif tidak dapat dipindai.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Jumlah tagihan rata-rata (:year)', - 'average_bill_amount_overall' => 'Jumlah tagihan rata-rata (keseluruhan)', - 'bill_is_active' => 'Tagihan aktif', - 'bill_expected_between' => 'Diharapkan antara :start dan :end', - 'bill_will_automatch' => 'Tagihan akan secara otomatis terhubung ke transaksi yang sesuai', - 'skips_over' => 'melompati', - 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', - 'list_inactive_rule' => 'inactive rule', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Bill matches transactions between :low and :high.', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => 'Rules related to this bill', + 'repeats' => 'Berulang', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Transaksi yang terhubung', + 'auto_match_on' => 'Automatically matched by Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Pertandingan yang diharapkan berikutnya', + 'delete_bill' => 'Hapus tagihan ":name"', + 'deleted_bill' => 'Tagihan yang dihapus ":name"', + 'edit_bill' => 'Edit tagihan ":name"', + 'more' => 'Lebih', + 'rescan_old' => 'Run rules again, on all transactions', + 'update_bill' => 'Perbarui tagihan', + 'updated_bill' => 'Diperbarui tagihan ":name"', + 'store_new_bill' => 'Simpan tagihan baru', + 'stored_new_bill' => 'Stored tagihan baru ":name"', + 'cannot_scan_inactive_bill' => 'Tagihan tidak aktif tidak dapat dipindai.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Jumlah tagihan rata-rata (:year)', + 'average_bill_amount_overall' => 'Jumlah tagihan rata-rata (keseluruhan)', + 'bill_is_active' => 'Tagihan aktif', + 'bill_expected_between' => 'Diharapkan antara :start dan :end', + 'bill_will_automatch' => 'Tagihan akan secara otomatis terhubung ke transaksi yang sesuai', + 'skips_over' => 'melompati', + 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', + 'list_inactive_rule' => 'inactive rule', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Rincian akun aset ":name"', - 'details_for_expense' => 'Rincian untuk akun biaya ":name"', - 'details_for_revenue' => 'Rincian untuk akun pendapatan ":name"', - 'details_for_cash' => 'Rincian untuk rekening kas ":name"', - 'store_new_asset_account' => 'Simpan akun aset baru', - 'store_new_expense_account' => 'Simpan akun pengeluaran baru', - 'store_new_revenue_account' => 'Simpan akun pendapatan baru', - 'edit_asset_account' => 'Edit akun aset ":name"', - 'edit_expense_account' => 'Edit akun biaya ":name"', - 'edit_revenue_account' => 'Edit akun pendapatan ":name"', - 'delete_asset_account' => 'Hapus akun aset ":name"', - 'delete_expense_account' => 'Hapus akun pengeluaran ":name"', - 'delete_revenue_account' => 'Hapus akun pendapatan ":name"', - 'delete_liabilities_account' => 'Delete liability ":name"', - 'asset_deleted' => 'Berhasil menghapus akun aset ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Akun pengeluaran yang berhasil dihapus ":name"', - 'revenue_deleted' => 'Berhasil menghapus akun pendapatan ":name"', - 'update_asset_account' => 'Perbarui akun aset', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Update liability', - 'update_expense_account' => 'Rekening pengeluaran pembaruan', - 'update_revenue_account' => 'Perbarui akun pendapatan', - 'make_new_asset_account' => 'Buat akun aset baru', - 'make_new_expense_account' => 'Buat akun pengeluaran baru', - 'make_new_revenue_account' => 'Buat akun pendapatan baru', - 'make_new_liabilities_account' => 'Create a new liability', - 'asset_accounts' => 'Akun aset', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Rekening pengeluaran', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Akun pendapatan', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Akun kas', - 'Cash account' => 'Akun kas', - 'liabilities_accounts' => 'Liabilities', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Rekonsiliasi akun ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Hapus rekonsiliasi', - 'update_reconciliation' => 'Rekonsiliasi pembaruan', - 'amount_cannot_be_zero' => 'Jumlah tersebut tidak dapat menjadi nol', - 'end_of_reconcile_period' => 'Akhir periode rekonsiliasi: :period', - 'start_of_reconcile_period' => 'Mulai dari periode rekonsiliasi: :period', - 'start_balance' => 'Saldo awal', - 'end_balance' => 'Saldo akhir', - 'update_balance_dates_instruction' => 'Sesuai jumlah dan tanggal di atas pernyataan bank Anda, dan tekan "Mulai rekonsiliasi"', - 'select_transactions_instruction' => 'Pilih transaksi yang muncul di laporan bank Anda.', - 'select_range_and_balance' => 'Pertama memverifikasi rentang tanggal dan saldo. Kemudian tekan "Mulai rekonsiliasi"', - 'date_change_instruction' => 'Jika Anda mengubah rentang tanggal sekarang, kemajuan akan hilang.', - 'update_selection' => 'Memperbarui pilihan', - 'store_reconcile' => 'Rekonsiliasi toko', - 'reconciliation_transaction' => 'Transaksi rekonsiliasi', - 'Reconciliation' => 'Rekonsiliasi', - 'reconciliation' => 'Rekonsiliasi', - 'reconcile_options' => 'Pilihan rekonsiliasi', - 'reconcile_range' => 'Jangkauan rekonsiliasi', - 'start_reconcile' => 'Mulai rekonsiliasi', - 'cash_account_type' => 'Cash', - 'cash' => 'tunai', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Jenis akun', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'Akun baru ":name" disimpan!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Memperbarui akun ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Pilihan kartu kredit', - 'no_transactions_account' => 'Tidak ada transaksi (dalam periode ini) untuk akun aset ":name".', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'Tidak ada informasi yang cukup (belum) untuk menghasilkan grafik ini.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Please select at least one category', - 'select_at_least_one_budget' => 'Please select at least one budget', - 'select_at_least_one_tag' => 'Please select at least one tag', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Buku Firefly III Anda memiliki lebih banyak uang di dalamnya dari bank Anda klaim Anda harus. Ada beberapa pilihan. Silahkan memilih apa yang harus dilakukan. Kemudian, tekan "Konfirmasi rekonsiliasi".', - 'reconcile_has_less' => 'Buku Firefly III Anda memiliki sedikit uang di dalamnya daripada bank Anda klaim Anda harus. Ada beberapa pilihan. Silahkan memilih apa yang harus dilakukan. Kemudian, tekan "Konfirmasi rekonsiliasi".', - 'reconcile_is_equal' => 'Buku Firefly III Anda dan pernyataan bank Anda cocok. Tidak ada hubungannya. Silahkan tekan "Konfirmasi rekonsiliasi" untuk mengkonfirmasi masukan Anda.', - 'create_pos_reconcile_transaction' => 'Menghapus transaksi yang dipilih, dan membuat koreksi menambahkan :amount ke akun aset ini.', - 'create_neg_reconcile_transaction' => 'Menghapus transaksi yang dipilih, dan membuat koreksi menghapus:amount dari akun aset ini.', - 'reconcile_do_nothing' => 'Menghapus transaksi yang dipilih, tetapi tidak benar.', - 'reconcile_go_back' => 'Anda selalu dapat mengedit atau menghapus koreksi kemudian.', - 'must_be_asset_account' => 'Anda hanya bisa mendamaikan akun aset', - 'reconciliation_stored' => 'Rekonsiliasi disimpan', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Rekonsiliasi akun ini', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Konfirmasikan rekonsiliasi', - 'submitted_start_balance' => 'Saldo awal yang dikirim', - 'selected_transactions' => 'Transaksi yang dipilih (:count)', - 'already_cleared_transactions' => 'Sudah dibersihkan transaksi (:count)', - 'submitted_end_balance' => 'Saldo akhir yang dikirim', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'Per day', - 'interest_calc_monthly' => 'Per month', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'Pilihan daftar', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Rincian akun aset ":name"', + 'details_for_expense' => 'Rincian untuk akun biaya ":name"', + 'details_for_revenue' => 'Rincian untuk akun pendapatan ":name"', + 'details_for_cash' => 'Rincian untuk rekening kas ":name"', + 'store_new_asset_account' => 'Simpan akun aset baru', + 'store_new_expense_account' => 'Simpan akun pengeluaran baru', + 'store_new_revenue_account' => 'Simpan akun pendapatan baru', + 'edit_asset_account' => 'Edit akun aset ":name"', + 'edit_expense_account' => 'Edit akun biaya ":name"', + 'edit_revenue_account' => 'Edit akun pendapatan ":name"', + 'delete_asset_account' => 'Hapus akun aset ":name"', + 'delete_expense_account' => 'Hapus akun pengeluaran ":name"', + 'delete_revenue_account' => 'Hapus akun pendapatan ":name"', + 'delete_liabilities_account' => 'Delete liability ":name"', + 'asset_deleted' => 'Berhasil menghapus akun aset ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Akun pengeluaran yang berhasil dihapus ":name"', + 'revenue_deleted' => 'Berhasil menghapus akun pendapatan ":name"', + 'update_asset_account' => 'Perbarui akun aset', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Update liability', + 'update_expense_account' => 'Rekening pengeluaran pembaruan', + 'update_revenue_account' => 'Perbarui akun pendapatan', + 'make_new_asset_account' => 'Buat akun aset baru', + 'make_new_expense_account' => 'Buat akun pengeluaran baru', + 'make_new_revenue_account' => 'Buat akun pendapatan baru', + 'make_new_liabilities_account' => 'Create a new liability', + 'asset_accounts' => 'Akun aset', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Rekening pengeluaran', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Akun pendapatan', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Akun kas', + 'Cash account' => 'Akun kas', + 'liabilities_accounts' => 'Liabilities', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Rekonsiliasi akun ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Hapus rekonsiliasi', + 'update_reconciliation' => 'Rekonsiliasi pembaruan', + 'amount_cannot_be_zero' => 'Jumlah tersebut tidak dapat menjadi nol', + 'end_of_reconcile_period' => 'Akhir periode rekonsiliasi: :period', + 'start_of_reconcile_period' => 'Mulai dari periode rekonsiliasi: :period', + 'start_balance' => 'Saldo awal', + 'end_balance' => 'Saldo akhir', + 'update_balance_dates_instruction' => 'Sesuai jumlah dan tanggal di atas pernyataan bank Anda, dan tekan "Mulai rekonsiliasi"', + 'select_transactions_instruction' => 'Pilih transaksi yang muncul di laporan bank Anda.', + 'select_range_and_balance' => 'Pertama memverifikasi rentang tanggal dan saldo. Kemudian tekan "Mulai rekonsiliasi"', + 'date_change_instruction' => 'Jika Anda mengubah rentang tanggal sekarang, kemajuan akan hilang.', + 'update_selection' => 'Memperbarui pilihan', + 'store_reconcile' => 'Rekonsiliasi toko', + 'reconciliation_transaction' => 'Transaksi rekonsiliasi', + 'Reconciliation' => 'Rekonsiliasi', + 'reconciliation' => 'Rekonsiliasi', + 'reconcile_options' => 'Pilihan rekonsiliasi', + 'reconcile_range' => 'Jangkauan rekonsiliasi', + 'start_reconcile' => 'Mulai rekonsiliasi', + 'cash_account_type' => 'Cash', + 'cash' => 'tunai', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Jenis akun', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'Akun baru ":name" disimpan!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Memperbarui akun ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Pilihan kartu kredit', + 'no_transactions_account' => 'Tidak ada transaksi (dalam periode ini) untuk akun aset ":name".', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'Tidak ada informasi yang cukup (belum) untuk menghasilkan grafik ini.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Please select at least one category', + 'select_at_least_one_budget' => 'Please select at least one budget', + 'select_at_least_one_tag' => 'Please select at least one tag', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Buku Firefly III Anda memiliki lebih banyak uang di dalamnya dari bank Anda klaim Anda harus. Ada beberapa pilihan. Silahkan memilih apa yang harus dilakukan. Kemudian, tekan "Konfirmasi rekonsiliasi".', + 'reconcile_has_less' => 'Buku Firefly III Anda memiliki sedikit uang di dalamnya daripada bank Anda klaim Anda harus. Ada beberapa pilihan. Silahkan memilih apa yang harus dilakukan. Kemudian, tekan "Konfirmasi rekonsiliasi".', + 'reconcile_is_equal' => 'Buku Firefly III Anda dan pernyataan bank Anda cocok. Tidak ada hubungannya. Silahkan tekan "Konfirmasi rekonsiliasi" untuk mengkonfirmasi masukan Anda.', + 'create_pos_reconcile_transaction' => 'Menghapus transaksi yang dipilih, dan membuat koreksi menambahkan :amount ke akun aset ini.', + 'create_neg_reconcile_transaction' => 'Menghapus transaksi yang dipilih, dan membuat koreksi menghapus:amount dari akun aset ini.', + 'reconcile_do_nothing' => 'Menghapus transaksi yang dipilih, tetapi tidak benar.', + 'reconcile_go_back' => 'Anda selalu dapat mengedit atau menghapus koreksi kemudian.', + 'must_be_asset_account' => 'Anda hanya bisa mendamaikan akun aset', + 'reconciliation_stored' => 'Rekonsiliasi disimpan', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Rekonsiliasi akun ini', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Konfirmasikan rekonsiliasi', + 'submitted_start_balance' => 'Saldo awal yang dikirim', + 'selected_transactions' => 'Transaksi yang dipilih (:count)', + 'already_cleared_transactions' => 'Sudah dibersihkan transaksi (:count)', + 'submitted_end_balance' => 'Saldo akhir yang dikirim', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'Per day', + 'interest_calc_monthly' => 'Per month', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'Pilihan daftar', // categories: - 'new_category' => 'Kategori baru', - 'create_new_category' => 'Buat kategori baru', - 'without_category' => 'Tanpa kategori', - 'update_category' => 'Perbarui kategori', - 'updated_category' => 'Kategori yang Diperbarui ":name"', - 'categories' => 'Kategori', - 'edit_category' => 'Edit kategori ":name"', - 'no_category' => '(tidak ada kategori)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategori', - 'delete_category' => 'Hapus kategori ":name"', - 'deleted_category' => 'Kategori yang dihapus ":name"', - 'store_category' => 'Simpan kategori baru', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Tanpa kategori antara :start dan :end', + 'new_category' => 'Kategori baru', + 'create_new_category' => 'Buat kategori baru', + 'without_category' => 'Tanpa kategori', + 'update_category' => 'Perbarui kategori', + 'updated_category' => 'Kategori yang Diperbarui ":name"', + 'categories' => 'Kategori', + 'edit_category' => 'Edit kategori ":name"', + 'no_category' => '(tidak ada kategori)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategori', + 'delete_category' => 'Hapus kategori ":name"', + 'deleted_category' => 'Kategori yang dihapus ":name"', + 'store_category' => 'Simpan kategori baru', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Tanpa kategori antara :start dan :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Perbarui penarikan', - 'update_deposit' => 'Perbarui setoran', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Perbarui transfer', - 'updated_withdrawal' => 'Penarikan yang telah diupdate ":description"', - 'updated_deposit' => 'Deposit Diperbarui ":description"', - 'updated_transfer' => 'Transfer yang diperbarui ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Hapus penarikan ":description"', - 'delete_deposit' => 'Hapus deposit ":description"', - 'delete_transfer' => 'Hapus transfer ":description"', - 'deleted_withdrawal' => 'Penarikan yang berhasil dihapus ":description"', - 'deleted_deposit' => 'Berhasil menghapus deposit ":description"', - 'deleted_transfer' => 'Berhasil menghapus transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Berhasil membuat transaksi baru ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Pilih transaksi', - 'rule_group_select_transactions' => 'Terapkan ":title" untuk transaksi', - 'rule_select_transactions' => 'Terapkan ":title" untuk transaksi', - 'stop_selection' => 'Berhentilah memilih transaksi', - 'reconcile_selected' => 'Mendamaikan', - 'mass_delete_journals' => 'Hapus sejumlah transaksi', - 'mass_edit_journals' => 'Edit sejumlah transaksi', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => 'Anda tidak bisa menyunting bidang lain dari yang lain di sini, karena tidak ada ruang untuk ditunjukkan kepada mereka. Ikuti tautan dan edit dengan satu per satu, jika Anda perlu mengedit bidang ini.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(no budget)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Create', - 'empty' => '(empty)', - 'all_other_budgets' => '(all other budgets)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tag', - 'no_budget_squared' => '(tidak ada anggaran)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(no account type)', - 'opt_group_no_account_type' => '(tidak ada jenis akun)', - 'opt_group_defaultAsset' => 'Akun aset standar', - 'opt_group_savingAsset' => 'Menyimpan akun', - 'opt_group_sharedAsset' => 'Akun aset bersama', - 'opt_group_ccAsset' => 'Kartu kredit', - 'opt_group_cashWalletAsset' => 'Cash wallets', - 'opt_group_expense_account' => 'Expense accounts', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => 'Liability: Loan', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => 'Liability: Debt', - 'opt_group_l_Mortgage' => 'Liability: Mortgage', - 'opt_group_l_Credit card' => 'Liability: Credit card', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', - 'attachment_not_found' => 'This attachment could not be found.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Perbarui penarikan', + 'update_deposit' => 'Perbarui setoran', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Perbarui transfer', + 'updated_withdrawal' => 'Penarikan yang telah diupdate ":description"', + 'updated_deposit' => 'Deposit Diperbarui ":description"', + 'updated_transfer' => 'Transfer yang diperbarui ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Hapus penarikan ":description"', + 'delete_deposit' => 'Hapus deposit ":description"', + 'delete_transfer' => 'Hapus transfer ":description"', + 'deleted_withdrawal' => 'Penarikan yang berhasil dihapus ":description"', + 'deleted_deposit' => 'Berhasil menghapus deposit ":description"', + 'deleted_transfer' => 'Berhasil menghapus transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Berhasil membuat transaksi baru ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Pilih transaksi', + 'rule_group_select_transactions' => 'Terapkan ":title" untuk transaksi', + 'rule_select_transactions' => 'Terapkan ":title" untuk transaksi', + 'stop_selection' => 'Berhentilah memilih transaksi', + 'reconcile_selected' => 'Mendamaikan', + 'mass_delete_journals' => 'Hapus sejumlah transaksi', + 'mass_edit_journals' => 'Edit sejumlah transaksi', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => 'Anda tidak bisa menyunting bidang lain dari yang lain di sini, karena tidak ada ruang untuk ditunjukkan kepada mereka. Ikuti tautan dan edit dengan satu per satu, jika Anda perlu mengedit bidang ini.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(no budget)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Create', + 'empty' => '(empty)', + 'all_other_budgets' => '(all other budgets)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tag', + 'no_budget_squared' => '(tidak ada anggaran)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(no account type)', + 'opt_group_no_account_type' => '(tidak ada jenis akun)', + 'opt_group_defaultAsset' => 'Akun aset standar', + 'opt_group_savingAsset' => 'Menyimpan akun', + 'opt_group_sharedAsset' => 'Akun aset bersama', + 'opt_group_ccAsset' => 'Kartu kredit', + 'opt_group_cashWalletAsset' => 'Cash wallets', + 'opt_group_expense_account' => 'Expense accounts', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => 'Liability: Loan', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => 'Liability: Debt', + 'opt_group_l_Mortgage' => 'Liability: Mortgage', + 'opt_group_l_Credit card' => 'Liability: Credit card', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', + 'attachment_not_found' => 'This attachment could not be found.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Menyerahkan', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Mulai', - 'to_get_started' => 'Senang melihat Anda berhasil memasang Firefly III. Untuk memulai dengan alat ini, harap masukkan nama bank dan saldo rekening giro utama Anda. Jangan khawatir jika Anda memiliki banyak akun. Anda bisa menambahkannya nanti. Hanya saja Firefly III butuh sesuatu untuk memulai.', - 'savings_balance_text' => 'Firefly III secara otomatis akan membuat rekening tabungan untuk Anda. Secara default, tidak akan ada uang di rekening tabungan Anda, tapi jika Anda memberi tahu Firefly III, saldo itu akan disimpan seperti itu.', - 'finish_up_new_user' => 'Itu dia! Anda dapat melanjutkan dengan menekan Kirim. Anda akan dibawa ke indeks Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Akun baru Anda telah disimpan.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Language', - 'new_savings_account' => ':bank_name savings account', - 'cash_wallet' => 'Cash wallet', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Menyerahkan', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Mulai', + 'to_get_started' => 'Senang melihat Anda berhasil memasang Firefly III. Untuk memulai dengan alat ini, harap masukkan nama bank dan saldo rekening giro utama Anda. Jangan khawatir jika Anda memiliki banyak akun. Anda bisa menambahkannya nanti. Hanya saja Firefly III butuh sesuatu untuk memulai.', + 'savings_balance_text' => 'Firefly III secara otomatis akan membuat rekening tabungan untuk Anda. Secara default, tidak akan ada uang di rekening tabungan Anda, tapi jika Anda memberi tahu Firefly III, saldo itu akan disimpan seperti itu.', + 'finish_up_new_user' => 'Itu dia! Anda dapat melanjutkan dengan menekan Kirim. Anda akan dibawa ke indeks Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Akun baru Anda telah disimpan.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Language', + 'new_savings_account' => ':bank_name savings account', + 'cash_wallet' => 'Cash wallet', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Akun anda', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Anggaran dan belanja', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Tabungan', - 'newWithdrawal' => 'Biaya baru', - 'newDeposit' => 'Deposit baru', - 'newTransfer' => 'Transfer baru', - 'bills_to_pay' => 'Bills untuk membayar', - 'per_day' => 'Per hari', - 'left_to_spend_per_day' => 'Kiri untuk dibelanjakan per hari', - 'bills_paid' => 'Tagihan dibayar', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Akun anda', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Anggaran dan belanja', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Tabungan', + 'newWithdrawal' => 'Biaya baru', + 'newDeposit' => 'Deposit baru', + 'newTransfer' => 'Transfer baru', + 'bills_to_pay' => 'Bills untuk membayar', + 'per_day' => 'Per hari', + 'left_to_spend_per_day' => 'Kiri untuk dibelanjakan per hari', + 'bills_paid' => 'Tagihan dibayar', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Mata uang', - 'preferences' => 'Preferensi', - 'logout' => 'Keluar', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Toggle navigation', - 'searchPlaceholder' => 'Pencarian...', - 'version' => 'Versi', - 'dashboard' => 'Dasbor', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Mata uang', - 'activity' => 'Activity', - 'usage' => 'Usage', - 'accounts' => 'Akun', - 'Asset account' => 'Akun aset', - 'Default account' => 'Akun aset', - 'Expense account' => 'Rekening pengeluaran', - 'Revenue account' => 'Akun pendapatan', - 'Initial balance account' => 'Akun saldo awal', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Debt', - 'account_type_Loan' => 'Loan', - 'account_type_Mortgage' => 'Mortgage', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Anggaran', - 'tags' => 'Tag', - 'reports' => 'Laporan', - 'transactions' => 'Transaksi', - 'expenses' => 'Beban', - 'income' => 'Pendapatan / penghasilan', - 'transfers' => 'Transfer', - 'moneyManagement' => 'Manajemen keuangan', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Celengan babi', - 'piggy_banks' => 'Piggy banks', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Tagihan', - 'withdrawal' => 'Penarikan', - 'opening_balance' => 'Saldo awal', - 'deposit' => 'Deposito', - 'account' => 'Rekening', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Penarikan', - 'Deposit' => 'Deposit', - 'Transfer' => 'Transfer', - 'bill' => 'Tagihan', - 'yes' => 'Iya', - 'no' => 'Tidak', - 'amount' => 'Jumlah', - 'overview' => 'Ikhtisar', - 'saveOnAccount' => 'Simpan di rekening', - 'unknown' => 'Tidak diketahui', - 'monthly' => 'Bulanan', - 'profile' => 'Profil', - 'errors' => 'Kesalahan', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Mata uang', + 'preferences' => 'Preferensi', + 'logout' => 'Keluar', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Pencarian...', + 'version' => 'Versi', + 'dashboard' => 'Dasbor', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Mata uang', + 'activity' => 'Activity', + 'usage' => 'Usage', + 'accounts' => 'Akun', + 'Asset account' => 'Akun aset', + 'Default account' => 'Akun aset', + 'Expense account' => 'Rekening pengeluaran', + 'Revenue account' => 'Akun pendapatan', + 'Initial balance account' => 'Akun saldo awal', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Debt', + 'account_type_Loan' => 'Loan', + 'account_type_Mortgage' => 'Mortgage', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Anggaran', + 'tags' => 'Tag', + 'reports' => 'Laporan', + 'transactions' => 'Transaksi', + 'expenses' => 'Beban', + 'income' => 'Pendapatan / penghasilan', + 'transfers' => 'Transfer', + 'moneyManagement' => 'Manajemen keuangan', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Celengan babi', + 'piggy_banks' => 'Piggy banks', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Tagihan', + 'withdrawal' => 'Penarikan', + 'opening_balance' => 'Saldo awal', + 'deposit' => 'Deposito', + 'account' => 'Rekening', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Penarikan', + 'Deposit' => 'Deposit', + 'Transfer' => 'Transfer', + 'bill' => 'Tagihan', + 'yes' => 'Iya', + 'no' => 'Tidak', + 'amount' => 'Jumlah', + 'overview' => 'Ikhtisar', + 'saveOnAccount' => 'Simpan di rekening', + 'unknown' => 'Tidak diketahui', + 'monthly' => 'Bulanan', + 'profile' => 'Profil', + 'errors' => 'Kesalahan', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Laporan keuangan standar antara :start dan :end', - 'report_audit' => 'Ikhtisar riwayat transaksi antara :start dan :end', - 'report_category' => 'Kategori laporan antara :start dan :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Laporan anggaran antara :start dan :end', - 'report_tag' => 'Tag laporan antara :start dan :end', - 'quick_link_reports' => 'Tautan langsung', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Laporan keuangan standar', - 'quick_link_audit_report' => 'Ikhtisar sejarah transaksi', - 'report_this_month_quick' => 'Bulan ini, semua akun', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Tahun berjalan, semua akun', - 'report_this_fiscal_year_quick' => 'Tahun fiskal berjalan, semua akun', - 'report_all_time_quick' => 'Semua waktu, semua akun', - 'reports_can_bookmark' => 'Ingat bahwa laporan bisa di bookmark.', - 'incomeVsExpenses' => 'Penghasilan vs beban', - 'accountBalances' => 'Saldo akun', - 'balanceStart' => 'Saldo awal periode', - 'balanceEnd' => 'Saldo akhir periode', - 'splitByAccount' => 'Dibagi oleh akun', - 'coveredWithTags' => 'Ditutupi dengan tag', - 'leftInBudget' => 'Yang tersisa di anggaran', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Jumlah dari jumlah', - 'noCategory' => '(Tidak ada kategori)', - 'notCharged' => 'Tidak dikenakan biaya (belum)', - 'inactive' => 'Tidak-aktif', - 'active' => 'Aktif', - 'difference' => 'Perbedaan', - 'money_flowing_in' => 'Dalam', - 'money_flowing_out' => 'Keluar', - 'topX' => 'atas :number', - 'show_full_list' => 'Tampilkan seluruh daftar', - 'show_only_top' => 'Tampilkan hanya atas :number', - 'report_type' => 'Tipe laporan', - 'report_type_default' => 'Laporan keuangan standar', - 'report_type_audit' => 'Gambaran riwayat transaksi (audit)', - 'report_type_category' => 'Laporan Kategori', - 'report_type_budget' => 'Laporan anggaran', - 'report_type_tag' => 'Tag laporan', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'Informasi lebih lanjut tentang jenis laporan dapat ditemukan di halaman bantuan. Tekan ikon (?) Di sudut kanan atas.', - 'report_included_accounts' => 'Termasuk akun', - 'report_date_range' => 'Rentang tanggal', - 'report_preset_ranges' => 'Rentang pre-set', - 'shared' => 'Bagikan', - 'fiscal_year' => 'Tahun fiskal', - 'income_entry' => 'Penghasilan dari akun ":name" antara :start dan :end', - 'expense_entry' => 'Biaya untuk akun ":name" antara :start dan :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Biaya anggaran ":budget" antara :start dan :end', - 'balance_amount' => 'Biaya dalam anggaran ":budget" dibayar dari rekening ":account" antara :start dan :end', - 'no_audit_activity' => 'Tidak ada aktivitas yang tercatat dalam akun :account_name antara :start and :end.', - 'audit_end_balance' => 'Saldo akun :account_name di akhir :end adalah :balance', - 'reports_extra_options' => 'Pilihan ekstra', - 'report_has_no_extra_options' => 'Laporan ini tidak memiliki pilihan tambahan', - 'reports_submit' => 'Melihat laporan', - 'end_after_start_date' => 'Tanggal akhir laporan harus setelah tanggal mulai.', - 'select_category' => 'Pilih kategori (ies)', - 'select_budget' => 'Pilih anggaran.', - 'select_tag' => 'Pilih tag.', - 'income_per_category' => 'Pendapatan per kategori', - 'expense_per_category' => 'Biaya per kategori', - 'expense_per_budget' => 'Biaya per anggaran', - 'income_per_account' => 'Pendapatan per rekening', - 'expense_per_account' => 'Biaya per akun', - 'expense_per_tag' => 'Biaya per tag', - 'income_per_tag' => 'Penghasilan per tag', - 'include_expense_not_in_budget' => 'Termasuk biaya tidak dalam anggaran yang dipilih', - 'include_expense_not_in_account' => 'Termasuk biaya yang tidak termasuk dalam akun yang dipilih', - 'include_expense_not_in_category' => 'Termasuk biaya yang tidak termasuk dalam kategori yang dipilih', - 'include_income_not_in_category' => 'Termasuk pendapatan tidak dalam kategori yang dipilih (ies)', - 'include_income_not_in_account' => 'Termasuk pendapatan tidak dalam akun yang dipilih(s)', - 'include_income_not_in_tags' => 'Termasuk pendapatan tidak dalam tag yang dipilih', - 'include_expense_not_in_tags' => 'Termasuk biaya yang tidak termasuk dalam tag yang dipilih', - 'everything_else' => 'Yang lainnya', - 'income_and_expenses' => 'Penghasilan dan beban', - 'spent_average' => 'Menghabiskan (rata-rata)', - 'income_average' => 'Penghasilan (rata-rata)', - 'transaction_count' => 'Jumlah transaksi', - 'average_spending_per_account' => 'Rata-rata pengeluaran per akun', - 'average_income_per_account' => 'Pendapatan rata-rata per rekening', - 'total' => 'Total', - 'description' => 'Deskripsi', - 'sum_of_period' => 'Jumlah periode', - 'average_in_period' => 'Rata-rata dalam periode', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Akun aset standar', - 'account_role_sharedAsset' => 'Akun aset bersama', - 'account_role_savingAsset' => 'Rekening tabungan', - 'account_role_ccAsset' => 'Kartu kredit', - 'account_role_cashWalletAsset' => 'Cash wallet', - 'budget_chart_click' => 'Silahkan klik nama anggaran pada tabel di atas untuk melihat grafik.', - 'category_chart_click' => 'Silahkan klik pada nama kategori pada tabel di atas untuk melihat grafik.', - 'in_out_accounts' => 'Diperoleh dan dihabiskan per kombinasi', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Diperoleh dan dibelanjakan per kategori', - 'out_per_budget' => 'Menghabiskan per anggaran', - 'select_expense_revenue' => 'Pilih akun biaya / pendapatan', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Laporan keuangan standar antara :start dan :end', + 'report_audit' => 'Ikhtisar riwayat transaksi antara :start dan :end', + 'report_category' => 'Kategori laporan antara :start dan :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Laporan anggaran antara :start dan :end', + 'report_tag' => 'Tag laporan antara :start dan :end', + 'quick_link_reports' => 'Tautan langsung', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Laporan keuangan standar', + 'quick_link_audit_report' => 'Ikhtisar sejarah transaksi', + 'report_this_month_quick' => 'Bulan ini, semua akun', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Tahun berjalan, semua akun', + 'report_this_fiscal_year_quick' => 'Tahun fiskal berjalan, semua akun', + 'report_all_time_quick' => 'Semua waktu, semua akun', + 'reports_can_bookmark' => 'Ingat bahwa laporan bisa di bookmark.', + 'incomeVsExpenses' => 'Penghasilan vs beban', + 'accountBalances' => 'Saldo akun', + 'balanceStart' => 'Saldo awal periode', + 'balanceEnd' => 'Saldo akhir periode', + 'splitByAccount' => 'Dibagi oleh akun', + 'coveredWithTags' => 'Ditutupi dengan tag', + 'leftInBudget' => 'Yang tersisa di anggaran', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Jumlah dari jumlah', + 'noCategory' => '(Tidak ada kategori)', + 'notCharged' => 'Tidak dikenakan biaya (belum)', + 'inactive' => 'Tidak-aktif', + 'active' => 'Aktif', + 'difference' => 'Perbedaan', + 'money_flowing_in' => 'Dalam', + 'money_flowing_out' => 'Keluar', + 'topX' => 'atas :number', + 'show_full_list' => 'Tampilkan seluruh daftar', + 'show_only_top' => 'Tampilkan hanya atas :number', + 'report_type' => 'Tipe laporan', + 'report_type_default' => 'Laporan keuangan standar', + 'report_type_audit' => 'Gambaran riwayat transaksi (audit)', + 'report_type_category' => 'Laporan Kategori', + 'report_type_budget' => 'Laporan anggaran', + 'report_type_tag' => 'Tag laporan', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'Informasi lebih lanjut tentang jenis laporan dapat ditemukan di halaman bantuan. Tekan ikon (?) Di sudut kanan atas.', + 'report_included_accounts' => 'Termasuk akun', + 'report_date_range' => 'Rentang tanggal', + 'report_preset_ranges' => 'Rentang pre-set', + 'shared' => 'Bagikan', + 'fiscal_year' => 'Tahun fiskal', + 'income_entry' => 'Penghasilan dari akun ":name" antara :start dan :end', + 'expense_entry' => 'Biaya untuk akun ":name" antara :start dan :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Biaya anggaran ":budget" antara :start dan :end', + 'balance_amount' => 'Biaya dalam anggaran ":budget" dibayar dari rekening ":account" antara :start dan :end', + 'no_audit_activity' => 'Tidak ada aktivitas yang tercatat dalam akun :account_name antara :start and :end.', + 'audit_end_balance' => 'Saldo akun :account_name di akhir :end adalah :balance', + 'reports_extra_options' => 'Pilihan ekstra', + 'report_has_no_extra_options' => 'Laporan ini tidak memiliki pilihan tambahan', + 'reports_submit' => 'Melihat laporan', + 'end_after_start_date' => 'Tanggal akhir laporan harus setelah tanggal mulai.', + 'select_category' => 'Pilih kategori (ies)', + 'select_budget' => 'Pilih anggaran.', + 'select_tag' => 'Pilih tag.', + 'income_per_category' => 'Pendapatan per kategori', + 'expense_per_category' => 'Biaya per kategori', + 'expense_per_budget' => 'Biaya per anggaran', + 'income_per_account' => 'Pendapatan per rekening', + 'expense_per_account' => 'Biaya per akun', + 'expense_per_tag' => 'Biaya per tag', + 'income_per_tag' => 'Penghasilan per tag', + 'include_expense_not_in_budget' => 'Termasuk biaya tidak dalam anggaran yang dipilih', + 'include_expense_not_in_account' => 'Termasuk biaya yang tidak termasuk dalam akun yang dipilih', + 'include_expense_not_in_category' => 'Termasuk biaya yang tidak termasuk dalam kategori yang dipilih', + 'include_income_not_in_category' => 'Termasuk pendapatan tidak dalam kategori yang dipilih (ies)', + 'include_income_not_in_account' => 'Termasuk pendapatan tidak dalam akun yang dipilih(s)', + 'include_income_not_in_tags' => 'Termasuk pendapatan tidak dalam tag yang dipilih', + 'include_expense_not_in_tags' => 'Termasuk biaya yang tidak termasuk dalam tag yang dipilih', + 'everything_else' => 'Yang lainnya', + 'income_and_expenses' => 'Penghasilan dan beban', + 'spent_average' => 'Menghabiskan (rata-rata)', + 'income_average' => 'Penghasilan (rata-rata)', + 'transaction_count' => 'Jumlah transaksi', + 'average_spending_per_account' => 'Rata-rata pengeluaran per akun', + 'average_income_per_account' => 'Pendapatan rata-rata per rekening', + 'total' => 'Total', + 'description' => 'Deskripsi', + 'sum_of_period' => 'Jumlah periode', + 'average_in_period' => 'Rata-rata dalam periode', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Akun aset standar', + 'account_role_sharedAsset' => 'Akun aset bersama', + 'account_role_savingAsset' => 'Rekening tabungan', + 'account_role_ccAsset' => 'Kartu kredit', + 'account_role_cashWalletAsset' => 'Cash wallet', + 'budget_chart_click' => 'Silahkan klik nama anggaran pada tabel di atas untuk melihat grafik.', + 'category_chart_click' => 'Silahkan klik pada nama kategori pada tabel di atas untuk melihat grafik.', + 'in_out_accounts' => 'Diperoleh dan dihabiskan per kombinasi', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Diperoleh dan dibelanjakan per kategori', + 'out_per_budget' => 'Menghabiskan per anggaran', + 'select_expense_revenue' => 'Pilih akun biaya / pendapatan', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Grafik', - 'month' => 'Bulan', - 'budget' => 'Anggaran', - 'spent' => 'Menghabiskan', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Menghabiskan anggaran', - 'left_to_spend' => 'Kiri untuk dibelanjakan', - 'earned' => 'Diperoleh', - 'overspent' => 'Overspent', - 'left' => 'Kiri', - 'max-amount' => 'Jumlah maksimum', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Entri tagihan saat ini', - 'name' => 'Nama', - 'date' => 'Tanggal', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Dibayar', - 'unpaid' => 'Tidak dibayar', - 'day' => 'Hari', - 'budgeted' => 'Dianggarkan', - 'period' => 'Periode', - 'balance' => 'Keseimbangan', - 'in_out_period' => 'In + out this period', - 'sum' => 'Jumlah', - 'summary' => 'Summary', - 'average' => 'Rata-rata', - 'balanceFor' => 'Saldo untuk :name', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Grafik', + 'month' => 'Bulan', + 'budget' => 'Anggaran', + 'spent' => 'Menghabiskan', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Menghabiskan anggaran', + 'left_to_spend' => 'Kiri untuk dibelanjakan', + 'earned' => 'Diperoleh', + 'overspent' => 'Overspent', + 'left' => 'Kiri', + 'max-amount' => 'Jumlah maksimum', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Entri tagihan saat ini', + 'name' => 'Nama', + 'date' => 'Tanggal', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Dibayar', + 'unpaid' => 'Tidak dibayar', + 'day' => 'Hari', + 'budgeted' => 'Dianggarkan', + 'period' => 'Periode', + 'balance' => 'Keseimbangan', + 'in_out_period' => 'In + out this period', + 'sum' => 'Jumlah', + 'summary' => 'Summary', + 'average' => 'Rata-rata', + 'balanceFor' => 'Saldo untuk :name', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"', - 'piggy_bank' => 'Celengan', - 'new_piggy_bank' => 'Celengan baru', - 'store_piggy_bank' => 'Simpan celengan baru', - 'stored_piggy_bank' => 'Simpan celengan baru ":name"', - 'account_status' => 'Status akun', - 'left_for_piggy_banks' => 'Kiri untuk celengan', - 'sum_of_piggy_banks' => 'Jumlah celengan', - 'saved_so_far' => 'Disimpan sejauh ini', - 'left_to_save' => 'Kiri untuk menyimpan', - 'suggested_amount' => 'Jumlah bulanan yang disarankan untuk disimpan', - 'add_money_to_piggy_title' => 'Tambahkan uang ke celengan ":name"', - 'remove_money_from_piggy_title' => 'Hapus uang dari celengan ":name"', - 'add' => 'Menambahkan', - 'no_money_for_piggy' => 'Anda tidak punya uang untuk dimasukkan ke dalam celengan ini.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Tambahkan uang ke celengan ":name"', + 'piggy_bank' => 'Celengan', + 'new_piggy_bank' => 'Celengan baru', + 'store_piggy_bank' => 'Simpan celengan baru', + 'stored_piggy_bank' => 'Simpan celengan baru ":name"', + 'account_status' => 'Status akun', + 'left_for_piggy_banks' => 'Kiri untuk celengan', + 'sum_of_piggy_banks' => 'Jumlah celengan', + 'saved_so_far' => 'Disimpan sejauh ini', + 'left_to_save' => 'Kiri untuk menyimpan', + 'suggested_amount' => 'Jumlah bulanan yang disarankan untuk disimpan', + 'add_money_to_piggy_title' => 'Tambahkan uang ke celengan ":name"', + 'remove_money_from_piggy_title' => 'Hapus uang dari celengan ":name"', + 'add' => 'Menambahkan', + 'no_money_for_piggy' => 'Anda tidak punya uang untuk dimasukkan ke dalam celengan ini.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Menghapus', - 'max_amount_add' => 'Jumlah maksimum yang bisa Anda tambahkan adalah', - 'max_amount_remove' => 'Jumlah maksimal yang bisa Anda hapus adalah', - 'update_piggy_button' => 'Update celengan', - 'update_piggy_title' => 'Update piggy bank ":name"', - 'updated_piggy_bank' => 'Diperbarui piggy bank ":name"', - 'details' => 'Rincian', - 'events' => 'Acara', - 'target_amount' => 'Jumlah target', - 'start_date' => 'Mulai tanggal', - 'no_start_date' => 'No start date', - 'target_date' => 'Tanggal target', - 'no_target_date' => 'Tidak ada tanggal target', - 'table' => 'Meja', - 'delete_piggy_bank' => 'Hapus celengan ":name"', - 'cannot_add_amount_piggy' => 'Tidak dapat menambahkan:amount ke ":name".', - 'cannot_remove_from_piggy' => 'Tidak dapat menghapus:amount dari ":name".', - 'deleted_piggy_bank' => 'Dihapus celengan ":name"', - 'added_amount_to_piggy' => 'Ditambahkan:amount ke ":name"', - 'removed_amount_from_piggy' => 'Dihapus:amount dari ":name"', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Menghapus', + 'max_amount_add' => 'Jumlah maksimum yang bisa Anda tambahkan adalah', + 'max_amount_remove' => 'Jumlah maksimal yang bisa Anda hapus adalah', + 'update_piggy_button' => 'Update celengan', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Diperbarui piggy bank ":name"', + 'details' => 'Rincian', + 'events' => 'Acara', + 'target_amount' => 'Jumlah target', + 'start_date' => 'Mulai tanggal', + 'no_start_date' => 'No start date', + 'target_date' => 'Tanggal target', + 'no_target_date' => 'Tidak ada tanggal target', + 'table' => 'Meja', + 'delete_piggy_bank' => 'Hapus celengan ":name"', + 'cannot_add_amount_piggy' => 'Tidak dapat menambahkan:amount ke ":name".', + 'cannot_remove_from_piggy' => 'Tidak dapat menghapus:amount dari ":name".', + 'deleted_piggy_bank' => 'Dihapus celengan ":name"', + 'added_amount_to_piggy' => 'Ditambahkan:amount ke ":name"', + 'removed_amount_from_piggy' => 'Dihapus:amount dari ":name"', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => 'Hapus tag " :tag"', - 'deleted_tag' => 'Tag dihapus " :tag"', - 'new_tag' => 'Buat tag baru', - 'edit_tag' => 'Edit tag " :tag"', - 'updated_tag' => 'Diperbarui tag " :tag"', - 'created_tag' => 'Tag " :tag" telah dibuat!', + 'delete_tag' => 'Hapus tag " :tag"', + 'deleted_tag' => 'Tag dihapus " :tag"', + 'new_tag' => 'Buat tag baru', + 'edit_tag' => 'Edit tag " :tag"', + 'updated_tag' => 'Diperbarui tag " :tag"', + 'created_tag' => 'Tag " :tag" telah dibuat!', - 'transaction_journal_information' => 'Informasi transaksi', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Informasi meta', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Jumlah total', - 'number_of_decimals' => 'Jumlah desimal', + 'transaction_journal_information' => 'Informasi transaksi', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Informasi meta', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Jumlah total', + 'number_of_decimals' => 'Jumlah desimal', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administrasi', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Administrasi pengguna', - 'list_all_users' => 'Semua pengguna', - 'all_users' => 'Semua pengguna', - 'instance_configuration' => 'Konfigurasi', - 'firefly_instance_configuration' => 'Pilihan konfigurasi untuk Firefly III', - 'setting_single_user_mode' => 'Mode pengguna tunggal', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Konfigurasi toko', - 'single_user_administration' => 'Administrasi pengguna untuk :email', - 'edit_user' => 'Edit pengguna :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Data pengguna', - 'user_information' => 'Informasi pengguna', - 'total_size' => 'ukuran total', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules aturan di:count_groups rule group (s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'Konfigurasi telah diperbarui', - 'setting_is_demo_site' => 'Situs demo', - 'setting_is_demo_site_explain' => 'Jika Anda mencentang kotak ini, instalasi ini akan berperilaku seolah-olah itu adalah situs demo, yang dapat memiliki efek samping yang aneh.', - 'block_code_bounced' => 'Pesan email terpental', - 'block_code_expired' => 'Akun demo kadaluarsa', - 'no_block_code' => 'Tidak ada alasan untuk memblokir atau pengguna tidak diblokir', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Pengguna belum mengkonfirmasi alamat email baru', - 'admin_update_email' => 'Bertentangan dengan halaman profil, pengguna TIDAK akan diberitahu alamat email mereka telah berubah!', - 'update_user' => 'Perbarui pengguna', - 'updated_user' => 'Data pengguna telah diubah.', - 'delete_user' => 'Hapus pengguna :email', - 'user_deleted' => 'Pengguna telah dihapus', - 'send_test_email' => 'Kirim pesan email percobaan', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Mengirim pesan', - 'send_test_triggered' => 'Uji dipicu. Periksa kotak masuk dan file log Anda.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administrasi', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Administrasi pengguna', + 'list_all_users' => 'Semua pengguna', + 'all_users' => 'Semua pengguna', + 'instance_configuration' => 'Konfigurasi', + 'firefly_instance_configuration' => 'Pilihan konfigurasi untuk Firefly III', + 'setting_single_user_mode' => 'Mode pengguna tunggal', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Konfigurasi toko', + 'single_user_administration' => 'Administrasi pengguna untuk :email', + 'edit_user' => 'Edit pengguna :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Data pengguna', + 'user_information' => 'Informasi pengguna', + 'total_size' => 'ukuran total', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules aturan di:count_groups rule group (s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'Konfigurasi telah diperbarui', + 'setting_is_demo_site' => 'Situs demo', + 'setting_is_demo_site_explain' => 'Jika Anda mencentang kotak ini, instalasi ini akan berperilaku seolah-olah itu adalah situs demo, yang dapat memiliki efek samping yang aneh.', + 'block_code_bounced' => 'Pesan email terpental', + 'block_code_expired' => 'Akun demo kadaluarsa', + 'no_block_code' => 'Tidak ada alasan untuk memblokir atau pengguna tidak diblokir', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Pengguna belum mengkonfirmasi alamat email baru', + 'admin_update_email' => 'Bertentangan dengan halaman profil, pengguna TIDAK akan diberitahu alamat email mereka telah berubah!', + 'update_user' => 'Perbarui pengguna', + 'updated_user' => 'Data pengguna telah diubah.', + 'delete_user' => 'Hapus pengguna :email', + 'user_deleted' => 'Pengguna telah dihapus', + 'send_test_email' => 'Kirim pesan email percobaan', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Mengirim pesan', + 'send_test_triggered' => 'Uji dipicu. Periksa kotak masuk dan file log Anda.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Konfigurasi link transaksi', - 'create_new_link_type' => 'Buat jenis tautan baru', - 'store_new_link_type' => 'Simpan jenis tautan baru', - 'update_link_type' => 'Perbarui jenis tautan', - 'edit_link_type' => 'Edit jenis tautan ":name"', - 'updated_link_type' => 'Jenis tautan yang diperbarui ":name"', - 'delete_link_type' => 'Hapus jenis tautan ":name"', - 'deleted_link_type' => 'Jenis tautan yang dihapus ":name"', - 'stored_new_link_type' => 'Simpan jenis tautan baru ":name"', - 'cannot_edit_link_type' => 'Tidak dapat mengedit jenis tautan ":name"', - 'link_type_help_name' => 'Yaitu. "Duplikat"', - 'link_type_help_inward' => 'Yaitu. "duplikat"', - 'link_type_help_outward' => 'Yaitu. "diduplikasi oleh"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(jangan simpan koneksi)', - 'link_transaction' => 'Transaksi link', - 'link_to_other_transaction' => 'Tautkan transaksi ini ke transaksi lain', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'Transaksi ini', - 'transaction' => 'Transaksi', - 'comments' => 'Komentar', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Tidak dapat menautkan transaksi ini', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transaksi terkait.', - 'journals_error_linked' => 'Transaksi ini sudah tertaut.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Link transaksi', - 'this_withdrawal' => 'Penarikan ini', - 'this_deposit' => 'Deposit ini', - 'this_transfer' => 'Transfer ini', - 'overview_for_link' => 'Ikhtisar untuk jenis tautan ":name"', - 'source_transaction' => 'Transaksi sumber', - 'link_description' => 'Deskripsi tautan', - 'destination_transaction' => 'Transaksi tujuan', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Tautan dihapus', + 'journal_link_configuration' => 'Konfigurasi link transaksi', + 'create_new_link_type' => 'Buat jenis tautan baru', + 'store_new_link_type' => 'Simpan jenis tautan baru', + 'update_link_type' => 'Perbarui jenis tautan', + 'edit_link_type' => 'Edit jenis tautan ":name"', + 'updated_link_type' => 'Jenis tautan yang diperbarui ":name"', + 'delete_link_type' => 'Hapus jenis tautan ":name"', + 'deleted_link_type' => 'Jenis tautan yang dihapus ":name"', + 'stored_new_link_type' => 'Simpan jenis tautan baru ":name"', + 'cannot_edit_link_type' => 'Tidak dapat mengedit jenis tautan ":name"', + 'link_type_help_name' => 'Yaitu. "Duplikat"', + 'link_type_help_inward' => 'Yaitu. "duplikat"', + 'link_type_help_outward' => 'Yaitu. "diduplikasi oleh"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(jangan simpan koneksi)', + 'link_transaction' => 'Transaksi link', + 'link_to_other_transaction' => 'Tautkan transaksi ini ke transaksi lain', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'Transaksi ini', + 'transaction' => 'Transaksi', + 'comments' => 'Komentar', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Tidak dapat menautkan transaksi ini', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transaksi terkait.', + 'journals_error_linked' => 'Transaksi ini sudah tertaut.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Link transaksi', + 'this_withdrawal' => 'Penarikan ini', + 'this_deposit' => 'Deposit ini', + 'this_transfer' => 'Transfer ini', + 'overview_for_link' => 'Ikhtisar untuk jenis tautan ":name"', + 'source_transaction' => 'Transaksi sumber', + 'link_description' => 'Deskripsi tautan', + 'destination_transaction' => 'Transaksi tujuan', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Tautan dihapus', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'berhubungan dengan', - 'is (partially) refunded by_inward' => '(sebagian) dikembalikan oleh', - 'is (partially) paid for by_inward' => 'adalah (sebagian) dibayar oleh', - 'is (partially) reimbursed by_inward' => '(sebagian) diganti oleh', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'berhubungan dengan', - '(partially) refunds_outward' => '(sebagian) pengembalian uang', - '(partially) pays for_outward' => '(sebagian) membayar', - '(partially) reimburses_outward' => '(sebagian) penggantian', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'berhubungan dengan', + 'is (partially) refunded by_inward' => '(sebagian) dikembalikan oleh', + 'is (partially) paid for by_inward' => 'adalah (sebagian) dibayar oleh', + 'is (partially) reimbursed by_inward' => '(sebagian) diganti oleh', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'berhubungan dengan', + '(partially) refunds_outward' => '(sebagian) pengembalian uang', + '(partially) pays for_outward' => '(sebagian) membayar', + '(partially) reimburses_outward' => '(sebagian) penggantian', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Perpecahan', - 'add_another_split' => 'Tambahkan perpecahan lagi', - 'cannot_edit_opening_balance' => 'Anda tidak dapat mengedit saldo awal akun.', - 'no_edit_multiple_left' => 'Anda tidak memilih transaksi yang sah untuk diedit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Kembangkan pemisahan', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Kempiskan pemisahan', + 'splits' => 'Perpecahan', + 'add_another_split' => 'Tambahkan perpecahan lagi', + 'cannot_edit_opening_balance' => 'Anda tidak dapat mengedit saldo awal akun.', + 'no_edit_multiple_left' => 'Anda tidak memilih transaksi yang sah untuk diedit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Kembangkan pemisahan', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Kempiskan pemisahan', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Mari buat akun aset!', - 'no_accounts_intro_asset' => 'Anda belum memiliki akun aset. Akun aset adalah akun utama Anda: rekening giro, rekening tabungan, rekening bersama atau bahkan kartu kredit Anda.', - 'no_accounts_imperative_asset' => 'Untuk mulai menggunakan Firefly III Anda harus membuat setidaknya satu akun aset. Mari kita lakukan sekarang:', - 'no_accounts_create_asset' => 'Buat akun aset', - 'no_accounts_title_expense' => 'Mari buat akun pengeluaran!', - 'no_accounts_intro_expense' => 'Anda belum memiliki rekening pengeluaran. Akun pengeluaran adalah tempat Anda menghabiskan uang, seperti toko dan supermarket.', - 'no_accounts_imperative_expense' => 'Akun pengeluaran dibuat secara otomatis saat Anda membuat transaksi, namun Anda dapat membuatnya secara manual juga, jika Anda mau. Mari kita ciptakan sekarang:', - 'no_accounts_create_expense' => 'Buat akun pengeluaran', - 'no_accounts_title_revenue' => 'Mari buat akun pendapatan!', - 'no_accounts_intro_revenue' => 'Anda belum memiliki akun pendapatan. Akun pendapatan adalah tempat di mana Anda menerima uang dari, seperti atasan Anda.', - 'no_accounts_imperative_revenue' => 'Akun pendapatan dibuat secara otomatis saat Anda membuat transaksi, namun Anda dapat membuatnya secara manual juga, jika Anda mau. Mari kita ciptakan sekarang:', - 'no_accounts_create_revenue' => 'Buat akun pendapatan', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Mari buat anggaran', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Anggaran adalah alat dasar pengelolaan keuangan. Mari kita ciptakan sekarang:', - 'no_budgets_create_default' => 'Buat anggaran', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Mari buat kategori!', - 'no_categories_intro_default' => 'Anda belum memiliki kategori. Kategori digunakan untuk menyesuaikan transaksi Anda dan memberi label mereka dengan kategori yang ditentukan.', - 'no_categories_imperative_default' => 'Kategori dibuat secara otomatis saat Anda membuat transaksi, namun Anda juga bisa membuatnya secara manual. Mari kita ciptakan sekarang:', - 'no_categories_create_default' => 'Buat sebuah kategori', - 'no_tags_title_default' => 'Mari buat tag!', - 'no_tags_intro_default' => 'Kamu belum punya tag Tag digunakan untuk menyempurnakan transaksi Anda dan memberi label pada kata kunci tertentu.', - 'no_tags_imperative_default' => 'Tag dibuat secara otomatis saat Anda membuat transaksi, namun Anda bisa membuatnya secara manual juga. Mari kita ciptakan sekarang:', - 'no_tags_create_default' => 'Buat tag', - 'no_transactions_title_withdrawal' => 'Mari buat biaya!', - 'no_transactions_intro_withdrawal' => 'Anda belum memiliki biaya. Anda harus menciptakan biaya untuk mulai mengelola keuangan Anda.', - 'no_transactions_imperative_withdrawal' => 'Sudahkah anda mengeluarkan uang? Maka Anda harus menuliskannya:', - 'no_transactions_create_withdrawal' => 'Buat biaya', - 'no_transactions_title_deposit' => 'Mari buat penghasilan!', - 'no_transactions_intro_deposit' => 'Anda belum memiliki penghasilan yang tercatat. Anda harus membuat entri pendapatan untuk mulai mengelola keuangan Anda.', - 'no_transactions_imperative_deposit' => 'Sudahkah kamu menerima sejumlah uang? Maka Anda harus menuliskannya:', - 'no_transactions_create_deposit' => 'Buat deposit', - 'no_transactions_title_transfers' => 'Mari buat transfer!', - 'no_transactions_intro_transfers' => 'Anda belum memiliki transfer. Bila Anda memindahkan uang antar rekening aset, itu tercatat sebagai transfer.', - 'no_transactions_imperative_transfers' => 'Sudahkah kamu memindahkan sejumlah uang? Maka Anda harus menuliskannya:', - 'no_transactions_create_transfers' => 'Buat transfer', - 'no_piggies_title_default' => 'Ayo buat celengan!', - 'no_piggies_intro_default' => 'Anda belum memiliki piggy bank. Anda dapat membuat bank-bank piggy untuk membagi tabungan Anda dan melacak apa yang Anda menabung.', - 'no_piggies_imperative_default' => 'Apakah Anda memiliki barang-barang yang Anda simpan untuk uang? Buat piggy bank dan tetap track:', - 'no_piggies_create_default' => 'Buat celengan baru', - 'no_bills_title_default' => 'Mari buat tagihan!', - 'no_bills_intro_default' => 'Anda belum memiliki tagihan. Anda bisa membuat tagihan untuk mencatat pengeluaran rutin, seperti sewa atau asuransi Anda.', - 'no_bills_imperative_default' => 'Apakah Anda memiliki tagihan reguler seperti itu? Buat tagihan dan lacak pembayaran Anda:', - 'no_bills_create_default' => 'Buat tagihan', + 'no_accounts_title_asset' => 'Mari buat akun aset!', + 'no_accounts_intro_asset' => 'Anda belum memiliki akun aset. Akun aset adalah akun utama Anda: rekening giro, rekening tabungan, rekening bersama atau bahkan kartu kredit Anda.', + 'no_accounts_imperative_asset' => 'Untuk mulai menggunakan Firefly III Anda harus membuat setidaknya satu akun aset. Mari kita lakukan sekarang:', + 'no_accounts_create_asset' => 'Buat akun aset', + 'no_accounts_title_expense' => 'Mari buat akun pengeluaran!', + 'no_accounts_intro_expense' => 'Anda belum memiliki rekening pengeluaran. Akun pengeluaran adalah tempat Anda menghabiskan uang, seperti toko dan supermarket.', + 'no_accounts_imperative_expense' => 'Akun pengeluaran dibuat secara otomatis saat Anda membuat transaksi, namun Anda dapat membuatnya secara manual juga, jika Anda mau. Mari kita ciptakan sekarang:', + 'no_accounts_create_expense' => 'Buat akun pengeluaran', + 'no_accounts_title_revenue' => 'Mari buat akun pendapatan!', + 'no_accounts_intro_revenue' => 'Anda belum memiliki akun pendapatan. Akun pendapatan adalah tempat di mana Anda menerima uang dari, seperti atasan Anda.', + 'no_accounts_imperative_revenue' => 'Akun pendapatan dibuat secara otomatis saat Anda membuat transaksi, namun Anda dapat membuatnya secara manual juga, jika Anda mau. Mari kita ciptakan sekarang:', + 'no_accounts_create_revenue' => 'Buat akun pendapatan', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Mari buat anggaran', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Anggaran adalah alat dasar pengelolaan keuangan. Mari kita ciptakan sekarang:', + 'no_budgets_create_default' => 'Buat anggaran', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Mari buat kategori!', + 'no_categories_intro_default' => 'Anda belum memiliki kategori. Kategori digunakan untuk menyesuaikan transaksi Anda dan memberi label mereka dengan kategori yang ditentukan.', + 'no_categories_imperative_default' => 'Kategori dibuat secara otomatis saat Anda membuat transaksi, namun Anda juga bisa membuatnya secara manual. Mari kita ciptakan sekarang:', + 'no_categories_create_default' => 'Buat sebuah kategori', + 'no_tags_title_default' => 'Mari buat tag!', + 'no_tags_intro_default' => 'Kamu belum punya tag Tag digunakan untuk menyempurnakan transaksi Anda dan memberi label pada kata kunci tertentu.', + 'no_tags_imperative_default' => 'Tag dibuat secara otomatis saat Anda membuat transaksi, namun Anda bisa membuatnya secara manual juga. Mari kita ciptakan sekarang:', + 'no_tags_create_default' => 'Buat tag', + 'no_transactions_title_withdrawal' => 'Mari buat biaya!', + 'no_transactions_intro_withdrawal' => 'Anda belum memiliki biaya. Anda harus menciptakan biaya untuk mulai mengelola keuangan Anda.', + 'no_transactions_imperative_withdrawal' => 'Sudahkah anda mengeluarkan uang? Maka Anda harus menuliskannya:', + 'no_transactions_create_withdrawal' => 'Buat biaya', + 'no_transactions_title_deposit' => 'Mari buat penghasilan!', + 'no_transactions_intro_deposit' => 'Anda belum memiliki penghasilan yang tercatat. Anda harus membuat entri pendapatan untuk mulai mengelola keuangan Anda.', + 'no_transactions_imperative_deposit' => 'Sudahkah kamu menerima sejumlah uang? Maka Anda harus menuliskannya:', + 'no_transactions_create_deposit' => 'Buat deposit', + 'no_transactions_title_transfers' => 'Mari buat transfer!', + 'no_transactions_intro_transfers' => 'Anda belum memiliki transfer. Bila Anda memindahkan uang antar rekening aset, itu tercatat sebagai transfer.', + 'no_transactions_imperative_transfers' => 'Sudahkah kamu memindahkan sejumlah uang? Maka Anda harus menuliskannya:', + 'no_transactions_create_transfers' => 'Buat transfer', + 'no_piggies_title_default' => 'Ayo buat celengan!', + 'no_piggies_intro_default' => 'Anda belum memiliki piggy bank. Anda dapat membuat bank-bank piggy untuk membagi tabungan Anda dan melacak apa yang Anda menabung.', + 'no_piggies_imperative_default' => 'Apakah Anda memiliki barang-barang yang Anda simpan untuk uang? Buat piggy bank dan tetap track:', + 'no_piggies_create_default' => 'Buat celengan baru', + 'no_bills_title_default' => 'Mari buat tagihan!', + 'no_bills_intro_default' => 'Anda belum memiliki tagihan. Anda bisa membuat tagihan untuk mencatat pengeluaran rutin, seperti sewa atau asuransi Anda.', + 'no_bills_imperative_default' => 'Apakah Anda memiliki tagihan reguler seperti itu? Buat tagihan dan lacak pembayaran Anda:', + 'no_bills_create_default' => 'Buat tagihan', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Every day', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Every day', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Bills paid (:currency)', - 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Bills paid (:currency)', + 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/id_ID/validation.php b/resources/lang/id_ID/validation.php index 0e947c9902..bade13ed72 100644 --- a/resources/lang/id_ID/validation.php +++ b/resources/lang/id_ID/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/it_IT/firefly.php b/resources/lang/it_IT/firefly.php index 5a115e045b..e297dd2f1b 100644 --- a/resources/lang/it_IT/firefly.php +++ b/resources/lang/it_IT/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Chiudi', - 'actions' => 'Azioni', - 'edit' => 'Modifica', - 'delete' => 'Elimina', - 'split' => 'Dividi', - 'single_split' => 'Divisione', - 'clone' => 'Clona', - 'clone_and_edit' => 'Clona e modifica', - 'confirm_action' => 'Conferma azione', - 'last_seven_days' => 'Ultimi sette giorni', - 'last_thirty_days' => 'Ultimi trenta giorni', - 'last_180_days' => 'Ultimi 180 giorni', - 'month_to_date' => 'Ultimo mese', - 'year_to_date' => 'Ultimo anno', - 'YTD' => 'Anno corrente', - 'welcome_back' => 'La tua situazione finanziaria', - 'everything' => 'Tutto', - 'today' => 'oggi', - 'customRange' => 'Intervallo personalizzato', - 'date_range' => 'Intervallo di date', - 'apply' => 'Applica', - 'select_date' => 'Seleziona data...', - 'cancel' => 'Annulla', - 'from' => 'Da', - 'to' => 'A', - 'structure' => 'Struttura', - 'help_translating' => 'Questo testo di aiuto non è ancora disponibile in italiano. Vuoi aiutare con la traduzione?', - 'showEverything' => 'Mostra tutto', - 'never' => 'Mai', - 'no_results_for_empty_search' => 'Chiave di ricerca vuota, quindi non è stato trovato nulla.', - 'removed_amount' => 'Rimosso :amount', - 'added_amount' => 'Aggiunto :amount', - 'asset_account_role_help' => 'Qualsiasi opzione aggiuntiva risultante dalla tua scelta può essere impostata in seguito.', - 'Opening balance' => 'Saldo di apertura', - 'create_new_stuff' => 'Crea nuove cose', - 'new_withdrawal' => 'Nuova uscita', - 'create_new_transaction' => 'Crea una nuova transazione', - 'sidebar_frontpage_create' => 'Crea', - 'new_transaction' => 'Nuova transazione', - 'no_rules_for_bill' => 'Questa bolletta non ha regole ad essa associate.', - 'go_to_asset_accounts' => 'Visualizza i tuoi conti attività', - 'go_to_budgets' => 'Vai ai tuoi budget', - 'go_to_withdrawals' => 'Vai ai tuoi prelievi', - 'clones_journal_x' => 'Questa transazione è un clone di ":description" (#:id)', - 'go_to_categories' => 'Vai alle tue categorie', - 'go_to_bills' => 'Vai alle tue bollette', - 'go_to_expense_accounts' => 'Vedi i tuoi conti spese', - 'go_to_revenue_accounts' => 'Vedi i tuoi conti entrate', - 'go_to_piggies' => 'Vai ai tuoi salvadanai', - 'new_deposit' => 'Nuova entrata', - 'new_transfer' => 'Nuovo trasferimento', - 'new_transfers' => 'Nuovo trasferimento', - 'new_asset_account' => 'Nuovo conto attività', - 'new_expense_account' => 'Nuovo conto spese', - 'new_revenue_account' => 'Nuovo conto entrate', - 'new_liabilities_account' => 'Nuova passività', - 'new_budget' => 'Nuovo budget', - 'new_bill' => 'Nuova bolletta', - 'block_account_logout' => 'Sei stato disconnesso. Gli account bloccati non possono utilizzare questo sito. Ti sei registrato con un indirizzo email valido?', - 'flash_success' => 'Successo!', - 'flash_info' => 'Messaggio', - 'flash_warning' => 'Avviso!', - 'flash_error' => 'Errore!', - 'flash_danger' => 'Attenzione!', - 'flash_info_multiple' => 'C\'è un messaggio | Ci sono :count messaggi', - 'flash_error_multiple' => 'C\'è un errore | Ci sono :count errors', - 'net_worth' => 'Patrimonio', - 'help_for_this_page' => 'Aiuto per questa pagina', - 'help_for_this_page_body' => 'Trovi maggiori informazioni su questa pagina nella documentazione.', - 'two_factor_welcome' => 'Ciao!', - 'two_factor_enter_code' => 'Per continuare inserisci il tuo codice di autenticazione a due fattori. La tua applicazione può generarlo per te.', - 'two_factor_code_here' => 'Inserisci qui il codice', - 'two_factor_title' => 'Autenticazione a due fattori', - 'authenticate' => 'Autenticati', - 'two_factor_forgot_title' => 'Autenticazione a due fattori persa', - 'two_factor_forgot' => 'Ho dimenticato la mia chiave a due fattori.', - 'two_factor_lost_header' => 'Hai perso l\'autenticazione a due fattori?', - 'two_factor_lost_intro' => 'Se hai perso anche i codici di recupero, sei sfortunato. Questo non è qualcosa che puoi risolvere tramite l\'interfaccia web. Hai due scelte.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'In caso contrario, invia un mail al proprietario del sito, :site_owner, e chiedi loro di resettare l\'autenticazione a due fattori.', - 'mfa_backup_code' => 'Hai usato un codice di recupero per accedere a Firefly III. Questo codice non potrà essere utilizzato di nuovo, quindi cancellalo dalla lista.', - 'pref_two_factor_new_backup_codes' => 'Ottieni nuovi codici di recupero', - 'pref_two_factor_backup_code_count' => 'Hai :count codice di backup valido!Hai :count codici di backup validi.', - '2fa_i_have_them' => 'Li ho salvati!', - 'warning_much_data' => ':days di caricamento dei dati potrebbero richiedere un pò di tempo.', - 'registered' => 'Ti sei registrato con successo!', - 'Default asset account' => 'Conto attività predefinito', - 'no_budget_pointer' => 'Sembra che tu non abbia ancora dei budget. Dovresti crearne alcuni nella pagina dei budget. I budget possono aiutarti a tenere traccia delle spese.', - 'no_bill_pointer' => 'Sembra che tu non abbia ancora delle bollette. Dovresti crearne alcune nella pagina delle bollette. Le bollette possono aiutarti a tenere traccia delle spese.', - 'Savings account' => 'Conti risparmio', - 'Credit card' => 'Carta di credito', - 'source_accounts' => 'Conto origine|Conti origine', - 'destination_accounts' => 'Conto destinazione|Conti destinazione', - 'user_id_is' => 'Il tuo ID utente è :user', - 'field_supports_markdown' => 'Questo campo supporta Markdown.', - 'need_more_help' => 'Se hai bisogno di ulteriore aiuto con Firefly III, ti preghiamo di aprire un ticket su Github.', - 'reenable_intro_text' => 'Puoi anche riattivare la guida introduttiva.', - 'intro_boxes_after_refresh' => 'Le caselle di introduzione riappariranno quando si aggiorna la pagina.', - 'show_all_no_filter' => 'Mostra tutte le transazioni senza raggrupparle per data.', - 'expenses_by_category' => 'Spese per categorie', - 'expenses_by_budget' => 'Spese per budget', - 'income_by_category' => 'Entrate per categoria', - 'expenses_by_asset_account' => 'Spese per conto attività', - 'expenses_by_expense_account' => 'Spese per conto spese', - 'cannot_redirect_to_account' => 'Spiacente ma Firefly III non può reindirizzarti alla pagina corretta.', - 'sum_of_expenses' => 'Totale spese', - 'sum_of_income' => 'Somma delle entrate', - 'liabilities' => 'Passività', - 'spent_in_specific_budget' => 'Speso nel budget ":budget"', - 'spent_in_specific_double' => 'Spesi nel conto ":account"', - 'earned_in_specific_double' => 'Entrati nel conto ":account"', - 'source_account' => 'Conto di origine', - 'source_account_reconciliation' => 'Non puoi modificare il conto di origine di una transazione di riconciliazione.', - 'destination_account' => 'Conto destinazione', - 'destination_account_reconciliation' => 'Non è possibile modificare il conto di destinazione di una transazione di riconciliazione.', - 'sum_of_expenses_in_budget' => 'Spesa totale nel budget ":budget"', - 'left_in_budget_limit' => 'Disponibile per spese in base ai budget', - 'current_period' => 'Periodo corrente', - 'show_the_current_period_and_overview' => 'Mostra il periodo e la panoramica correnti', - 'pref_languages_locale' => 'Affinché una lingua diversa dall\'inglese funzioni correttamente, il sistema operativo deve essere dotato delle corrette informazioni locali. Se queste non sono presenti, i dati di valuta, le date e gli importi potrebbero essere formattati in modo errato.', - 'budget_in_period' => 'Tutte le transazioni per il budget ":name" fra :start e :end in :currency', - 'chart_budget_in_period' => 'Grafico di tutte le transazioni per il budget ":name" fra :start e :end in :currency', - 'chart_budget_in_period_only_currency' => 'L\'importo che hai inserito è in :currency, quindi questo grafico mostrerà solo le transazioni in :currency.', - 'chart_account_in_period' => 'Grafico di tutte le transazioni per il conto ":name" (:balance) fra :start e :end', - 'chart_category_in_period' => 'Grafico di tutte le transazioni per la categoria ":name" fra :start e :end', - 'chart_category_all' => 'Grafico di tutte le transazioni per la categoria ":name"', - 'clone_withdrawal' => 'Duplica questo prelievo', - 'clone_deposit' => 'Duplica questa entrata', - 'clone_transfer' => 'Duplica questo trasferimento', - 'multi_select_no_selection' => 'Nessuno selezionato', - 'multi_select_select_all' => 'Seleziona tutto', - 'multi_select_n_selected' => 'selezionato', - 'multi_select_all_selected' => 'Seleziona tutto', - 'multi_select_filter_placeholder' => 'Cerca...', - 'intro_next_label' => 'Avanti', - 'intro_prev_label' => 'Indietro', - 'intro_skip_label' => 'Salta ogni', - 'intro_done_label' => 'Fatto', - 'between_dates_breadcrumb' => 'Fra :start e :end', - 'all_journals_without_budget' => 'Tutte le transazioni senza un budget', - 'journals_without_budget' => 'Transazioni senza budget', - 'all_journals_without_category' => 'Tutte le transazioni senza una categoria', - 'journals_without_category' => 'Transazioni senza categoria', - 'all_journals_for_account' => 'Tutte le transazioni per il conto :name', - 'chart_all_journals_for_account' => 'Grafico di tutte le transazioni per il conto :name', - 'journals_in_period_for_account' => 'Tutte le transazioni per il conto :name fra :start e :end', - 'journals_in_period_for_account_js' => 'Tutte le transazioni per il conto {title} fra {start} e {end}', - 'transferred' => 'Trasferito', - 'all_withdrawal' => 'Tutte le spese', - 'all_transactions' => 'Tutte le Transazioni', - 'title_withdrawal_between' => 'Tutte le spese tra :start e :end', - 'all_deposit' => 'Tutte le entrate', - 'title_deposit_between' => 'Tutte le entrate fra :start e :end', - 'all_transfers' => 'Tutti i trasferimenti', - 'title_transfers_between' => 'Tutti i trasferimenti fra :start e :end', - 'all_transfer' => 'Tutti i trasferimenti', - 'all_journals_for_tag' => 'Tutte le transazioni per l\'etichetta ":tag"', - 'title_transfer_between' => 'Tutti i trasferimenti fra :start e :end', - 'all_journals_for_category' => 'Tutte le transazioni per la categoria :name', - 'all_journals_for_budget' => 'Tutte le transazione per budget :name', - 'chart_all_journals_for_budget' => 'Grafico di tutte le transazioni per il budget :name', - 'journals_in_period_for_category' => 'Tutte le transazioni per Categoria :name fra :start e :end', - 'journals_in_period_for_tag' => 'Tutte le transazioni per l\'etichetta :tag fra :start e :end', - 'not_available_demo_user' => 'La funzione a cui tenti di accedere non è disponibile per gli utenti demo.', - 'exchange_rate_instructions' => 'Il conto attività "@name" accetta solo transazioni in @native_currency. Se invece desideri utilizzare @foreign_currency, assicurati che anche l\'importo in @native_currency sia noto:', - 'transfer_exchange_rate_instructions' => 'Il conto attività di origine "@source_name" accetta solo transazioni in @source_currency. Il conto attività di destinazione "@dest_name" accetta solo transazioni in @dest_currency. È necessario fornire l\'importo trasferito correttamente in entrambe le valute.', - 'transaction_data' => 'Informazioni transazione', - 'invalid_server_configuration' => 'Configurazione del server non corretta', - 'invalid_locale_settings' => 'Firefly III non è in grado di formattare gli importi monetari, poiché il tuo server è privo dei pacchetti necessari. Esistono delle istruzioni su come farlo.', - 'quickswitch' => 'Interruttore veloce', - 'sign_in_to_start' => 'Accedi per iniziare la sessione', - 'sign_in' => 'Accedi', - 'register_new_account' => 'Registra nuovo conto', - 'forgot_my_password' => 'Ho dimenticato la mia password', - 'problems_with_input' => 'Ci sono stati alcuni problemi con il tuo inserimento.', - 'reset_password' => 'reimposta la tua password', - 'button_reset_password' => 'Resetta password', - 'reset_button' => 'Resetta', - 'want_to_login' => 'Voglio accedere', - 'login_page_title' => 'Accedi a Firefly III', - 'register_page_title' => 'Registrati a Firefly III', - 'forgot_pw_page_title' => 'Hai dimenticato la password per Firefly III', - 'reset_pw_page_title' => 'Reimposta la password per Firefly III', - 'cannot_reset_demo_user' => 'Non puoi reimpostare la password dell\'utente demo.', - 'no_att_demo_user' => 'L\'utente demo non può caricare allegati.', - 'button_register' => 'Registrare', - 'authorization' => 'Autorizzazione', - 'active_bills_only' => 'solo bollette attive', - 'active_bills_only_total' => 'tutte le bollette attive', - 'active_exp_bills_only' => 'solo bollette attive e previste', - 'active_exp_bills_only_total' => 'solo bollette attive previste', - 'per_period_sum_1D' => 'Costi giornalieri previsti', - 'per_period_sum_1W' => 'Costi settimanali previsti', - 'per_period_sum_1M' => 'Costi mensili previsti', - 'per_period_sum_3M' => 'Costi trimestrali previsti', - 'per_period_sum_6M' => 'Costi semestrali previsti', - 'per_period_sum_1Y' => 'Costi annui previsti', - 'average_per_bill' => 'media per bolletta', - 'expected_total' => 'totale previsto', - 'reconciliation_account_name' => ':name riconciliazione (:currency)', - 'saved' => 'Salvata', - 'advanced_options' => 'Opzioni avanzate', - 'advanced_options_explain' => 'Alcune pagine in Firefly III hanno opzioni avanzate nascoste dietro questo pulsante. Questa pagina non ha nulla di interessante, ma controlla le altre!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Chiudi', + 'actions' => 'Azioni', + 'edit' => 'Modifica', + 'delete' => 'Elimina', + 'split' => 'Dividi', + 'single_split' => 'Divisione', + 'clone' => 'Clona', + 'clone_and_edit' => 'Clona e modifica', + 'confirm_action' => 'Conferma azione', + 'last_seven_days' => 'Ultimi sette giorni', + 'last_thirty_days' => 'Ultimi trenta giorni', + 'last_180_days' => 'Ultimi 180 giorni', + 'month_to_date' => 'Ultimo mese', + 'year_to_date' => 'Ultimo anno', + 'YTD' => 'Anno corrente', + 'welcome_back' => 'La tua situazione finanziaria', + 'everything' => 'Tutto', + 'today' => 'oggi', + 'customRange' => 'Intervallo personalizzato', + 'date_range' => 'Intervallo di date', + 'apply' => 'Applica', + 'select_date' => 'Seleziona data...', + 'cancel' => 'Annulla', + 'from' => 'Da', + 'to' => 'A', + 'structure' => 'Struttura', + 'help_translating' => 'Questo testo di aiuto non è ancora disponibile in italiano. Vuoi aiutare con la traduzione?', + 'showEverything' => 'Mostra tutto', + 'never' => 'Mai', + 'no_results_for_empty_search' => 'Chiave di ricerca vuota, quindi non è stato trovato nulla.', + 'removed_amount' => 'Rimosso :amount', + 'added_amount' => 'Aggiunto :amount', + 'asset_account_role_help' => 'Qualsiasi opzione aggiuntiva risultante dalla tua scelta può essere impostata in seguito.', + 'Opening balance' => 'Saldo di apertura', + 'create_new_stuff' => 'Crea nuove cose', + 'new_withdrawal' => 'Nuova uscita', + 'create_new_transaction' => 'Crea una nuova transazione', + 'sidebar_frontpage_create' => 'Crea', + 'new_transaction' => 'Nuova transazione', + 'no_rules_for_bill' => 'Questa bolletta non ha regole ad essa associate.', + 'go_to_asset_accounts' => 'Visualizza i tuoi conti attività', + 'go_to_budgets' => 'Vai ai tuoi budget', + 'go_to_withdrawals' => 'Vai ai tuoi prelievi', + 'clones_journal_x' => 'Questa transazione è un clone di ":description" (#:id)', + 'go_to_categories' => 'Vai alle tue categorie', + 'go_to_bills' => 'Vai alle tue bollette', + 'go_to_expense_accounts' => 'Vedi i tuoi conti spese', + 'go_to_revenue_accounts' => 'Vedi i tuoi conti entrate', + 'go_to_piggies' => 'Vai ai tuoi salvadanai', + 'new_deposit' => 'Nuova entrata', + 'new_transfer' => 'Nuovo trasferimento', + 'new_transfers' => 'Nuovo trasferimento', + 'new_asset_account' => 'Nuovo conto attività', + 'new_expense_account' => 'Nuovo conto spese', + 'new_revenue_account' => 'Nuovo conto entrate', + 'new_liabilities_account' => 'Nuova passività', + 'new_budget' => 'Nuovo budget', + 'new_bill' => 'Nuova bolletta', + 'block_account_logout' => 'Sei stato disconnesso. Gli account bloccati non possono utilizzare questo sito. Ti sei registrato con un indirizzo email valido?', + 'flash_success' => 'Successo!', + 'flash_info' => 'Messaggio', + 'flash_warning' => 'Avviso!', + 'flash_error' => 'Errore!', + 'flash_danger' => 'Attenzione!', + 'flash_info_multiple' => 'C\'è un messaggio | Ci sono :count messaggi', + 'flash_error_multiple' => 'C\'è un errore | Ci sono :count errors', + 'net_worth' => 'Patrimonio', + 'help_for_this_page' => 'Aiuto per questa pagina', + 'help_for_this_page_body' => 'Trovi maggiori informazioni su questa pagina nella documentazione.', + 'two_factor_welcome' => 'Ciao!', + 'two_factor_enter_code' => 'Per continuare inserisci il tuo codice di autenticazione a due fattori. La tua applicazione può generarlo per te.', + 'two_factor_code_here' => 'Inserisci qui il codice', + 'two_factor_title' => 'Autenticazione a due fattori', + 'authenticate' => 'Autenticati', + 'two_factor_forgot_title' => 'Autenticazione a due fattori persa', + 'two_factor_forgot' => 'Ho dimenticato la mia chiave a due fattori.', + 'two_factor_lost_header' => 'Hai perso l\'autenticazione a due fattori?', + 'two_factor_lost_intro' => 'Se hai perso anche i codici di recupero, sei sfortunato. Questo non è qualcosa che puoi risolvere tramite l\'interfaccia web. Hai due scelte.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'In caso contrario, invia un mail al proprietario del sito, :site_owner, e chiedi loro di resettare l\'autenticazione a due fattori.', + 'mfa_backup_code' => 'Hai usato un codice di recupero per accedere a Firefly III. Questo codice non potrà essere utilizzato di nuovo, quindi cancellalo dalla lista.', + 'pref_two_factor_new_backup_codes' => 'Ottieni nuovi codici di recupero', + 'pref_two_factor_backup_code_count' => 'Hai :count codice di backup valido!Hai :count codici di backup validi.', + '2fa_i_have_them' => 'Li ho salvati!', + 'warning_much_data' => ':days di caricamento dei dati potrebbero richiedere un pò di tempo.', + 'registered' => 'Ti sei registrato con successo!', + 'Default asset account' => 'Conto attività predefinito', + 'no_budget_pointer' => 'Sembra che tu non abbia ancora dei budget. Dovresti crearne alcuni nella pagina dei budget. I budget possono aiutarti a tenere traccia delle spese.', + 'no_bill_pointer' => 'Sembra che tu non abbia ancora delle bollette. Dovresti crearne alcune nella pagina delle bollette. Le bollette possono aiutarti a tenere traccia delle spese.', + 'Savings account' => 'Conti risparmio', + 'Credit card' => 'Carta di credito', + 'source_accounts' => 'Conto origine|Conti origine', + 'destination_accounts' => 'Conto destinazione|Conti destinazione', + 'user_id_is' => 'Il tuo ID utente è :user', + 'field_supports_markdown' => 'Questo campo supporta Markdown.', + 'need_more_help' => 'Se hai bisogno di ulteriore aiuto con Firefly III, ti preghiamo di aprire un ticket su Github.', + 'reenable_intro_text' => 'Puoi anche riattivare la guida introduttiva.', + 'intro_boxes_after_refresh' => 'Le caselle di introduzione riappariranno quando si aggiorna la pagina.', + 'show_all_no_filter' => 'Mostra tutte le transazioni senza raggrupparle per data.', + 'expenses_by_category' => 'Spese per categorie', + 'expenses_by_budget' => 'Spese per budget', + 'income_by_category' => 'Entrate per categoria', + 'expenses_by_asset_account' => 'Spese per conto attività', + 'expenses_by_expense_account' => 'Spese per conto spese', + 'cannot_redirect_to_account' => 'Spiacente ma Firefly III non può reindirizzarti alla pagina corretta.', + 'sum_of_expenses' => 'Totale spese', + 'sum_of_income' => 'Somma delle entrate', + 'liabilities' => 'Passività', + 'spent_in_specific_budget' => 'Speso nel budget ":budget"', + 'spent_in_specific_double' => 'Spesi nel conto ":account"', + 'earned_in_specific_double' => 'Entrati nel conto ":account"', + 'source_account' => 'Conto di origine', + 'source_account_reconciliation' => 'Non puoi modificare il conto di origine di una transazione di riconciliazione.', + 'destination_account' => 'Conto destinazione', + 'destination_account_reconciliation' => 'Non è possibile modificare il conto di destinazione di una transazione di riconciliazione.', + 'sum_of_expenses_in_budget' => 'Spesa totale nel budget ":budget"', + 'left_in_budget_limit' => 'Disponibile per spese in base ai budget', + 'current_period' => 'Periodo corrente', + 'show_the_current_period_and_overview' => 'Mostra il periodo e la panoramica correnti', + 'pref_languages_locale' => 'Affinché una lingua diversa dall\'inglese funzioni correttamente, il sistema operativo deve essere dotato delle corrette informazioni locali. Se queste non sono presenti, i dati di valuta, le date e gli importi potrebbero essere formattati in modo errato.', + 'budget_in_period' => 'Tutte le transazioni per il budget ":name" fra :start e :end in :currency', + 'chart_budget_in_period' => 'Grafico di tutte le transazioni per il budget ":name" fra :start e :end in :currency', + 'chart_budget_in_period_only_currency' => 'L\'importo che hai inserito è in :currency, quindi questo grafico mostrerà solo le transazioni in :currency.', + 'chart_account_in_period' => 'Grafico di tutte le transazioni per il conto ":name" (:balance) fra :start e :end', + 'chart_category_in_period' => 'Grafico di tutte le transazioni per la categoria ":name" fra :start e :end', + 'chart_category_all' => 'Grafico di tutte le transazioni per la categoria ":name"', + 'clone_withdrawal' => 'Duplica questo prelievo', + 'clone_deposit' => 'Duplica questa entrata', + 'clone_transfer' => 'Duplica questo trasferimento', + 'multi_select_no_selection' => 'Nessuno selezionato', + 'multi_select_select_all' => 'Seleziona tutto', + 'multi_select_n_selected' => 'selezionato', + 'multi_select_all_selected' => 'Seleziona tutto', + 'multi_select_filter_placeholder' => 'Cerca...', + 'intro_next_label' => 'Avanti', + 'intro_prev_label' => 'Indietro', + 'intro_skip_label' => 'Salta ogni', + 'intro_done_label' => 'Fatto', + 'between_dates_breadcrumb' => 'Fra :start e :end', + 'all_journals_without_budget' => 'Tutte le transazioni senza un budget', + 'journals_without_budget' => 'Transazioni senza budget', + 'all_journals_without_category' => 'Tutte le transazioni senza una categoria', + 'journals_without_category' => 'Transazioni senza categoria', + 'all_journals_for_account' => 'Tutte le transazioni per il conto :name', + 'chart_all_journals_for_account' => 'Grafico di tutte le transazioni per il conto :name', + 'journals_in_period_for_account' => 'Tutte le transazioni per il conto :name fra :start e :end', + 'journals_in_period_for_account_js' => 'Tutte le transazioni per il conto {title} fra {start} e {end}', + 'transferred' => 'Trasferito', + 'all_withdrawal' => 'Tutte le spese', + 'all_transactions' => 'Tutte le Transazioni', + 'title_withdrawal_between' => 'Tutte le spese tra :start e :end', + 'all_deposit' => 'Tutte le entrate', + 'title_deposit_between' => 'Tutte le entrate fra :start e :end', + 'all_transfers' => 'Tutti i trasferimenti', + 'title_transfers_between' => 'Tutti i trasferimenti fra :start e :end', + 'all_transfer' => 'Tutti i trasferimenti', + 'all_journals_for_tag' => 'Tutte le transazioni per l\'etichetta ":tag"', + 'title_transfer_between' => 'Tutti i trasferimenti fra :start e :end', + 'all_journals_for_category' => 'Tutte le transazioni per la categoria :name', + 'all_journals_for_budget' => 'Tutte le transazione per budget :name', + 'chart_all_journals_for_budget' => 'Grafico di tutte le transazioni per il budget :name', + 'journals_in_period_for_category' => 'Tutte le transazioni per Categoria :name fra :start e :end', + 'journals_in_period_for_tag' => 'Tutte le transazioni per l\'etichetta :tag fra :start e :end', + 'not_available_demo_user' => 'La funzione a cui tenti di accedere non è disponibile per gli utenti demo.', + 'exchange_rate_instructions' => 'Il conto attività "@name" accetta solo transazioni in @native_currency. Se invece desideri utilizzare @foreign_currency, assicurati che anche l\'importo in @native_currency sia noto:', + 'transfer_exchange_rate_instructions' => 'Il conto attività di origine "@source_name" accetta solo transazioni in @source_currency. Il conto attività di destinazione "@dest_name" accetta solo transazioni in @dest_currency. È necessario fornire l\'importo trasferito correttamente in entrambe le valute.', + 'transaction_data' => 'Informazioni transazione', + 'invalid_server_configuration' => 'Configurazione del server non corretta', + 'invalid_locale_settings' => 'Firefly III non è in grado di formattare gli importi monetari, poiché il tuo server è privo dei pacchetti necessari. Esistono delle istruzioni su come farlo.', + 'quickswitch' => 'Interruttore veloce', + 'sign_in_to_start' => 'Accedi per iniziare la sessione', + 'sign_in' => 'Accedi', + 'register_new_account' => 'Registra nuovo conto', + 'forgot_my_password' => 'Ho dimenticato la mia password', + 'problems_with_input' => 'Ci sono stati alcuni problemi con il tuo inserimento.', + 'reset_password' => 'reimposta la tua password', + 'button_reset_password' => 'Resetta password', + 'reset_button' => 'Resetta', + 'want_to_login' => 'Voglio accedere', + 'login_page_title' => 'Accedi a Firefly III', + 'register_page_title' => 'Registrati a Firefly III', + 'forgot_pw_page_title' => 'Hai dimenticato la password per Firefly III', + 'reset_pw_page_title' => 'Reimposta la password per Firefly III', + 'cannot_reset_demo_user' => 'Non puoi reimpostare la password dell\'utente demo.', + 'no_att_demo_user' => 'L\'utente demo non può caricare allegati.', + 'button_register' => 'Registrare', + 'authorization' => 'Autorizzazione', + 'active_bills_only' => 'solo bollette attive', + 'active_bills_only_total' => 'tutte le bollette attive', + 'active_exp_bills_only' => 'solo bollette attive e previste', + 'active_exp_bills_only_total' => 'solo bollette attive previste', + 'per_period_sum_1D' => 'Costi giornalieri previsti', + 'per_period_sum_1W' => 'Costi settimanali previsti', + 'per_period_sum_1M' => 'Costi mensili previsti', + 'per_period_sum_3M' => 'Costi trimestrali previsti', + 'per_period_sum_6M' => 'Costi semestrali previsti', + 'per_period_sum_1Y' => 'Costi annui previsti', + 'average_per_bill' => 'media per bolletta', + 'expected_total' => 'totale previsto', + 'reconciliation_account_name' => ':name riconciliazione (:currency)', + 'saved' => 'Salvata', + 'advanced_options' => 'Opzioni avanzate', + 'advanced_options_explain' => 'Alcune pagine in Firefly III hanno opzioni avanzate nascoste dietro questo pulsante. Questa pagina non ha nulla di interessante, ma controlla le altre!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhook', - 'webhooks_breadcrumb' => 'Webhook', - 'webhooks_menu_disabled' => 'disabilitato', - 'no_webhook_messages' => 'Non ci sono messaggi webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Dopo aver creato la transazione', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Dopo aver aggiornato la transazione', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Dopo aver eliminato la transazione', - 'webhook_response_TRANSACTIONS' => 'Dettagli transazione', - 'webhook_response_ACCOUNTS' => 'Dettagli conto', - 'webhook_response_none_NONE' => 'Nessun dettaglio', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Ispeziona', - 'create_new_webhook' => 'Crea nuovo webhook', - 'webhooks_create_breadcrumb' => 'Crea nuovo webhook', - 'webhook_trigger_form_help' => 'Indica quale evento attiverà il webhook', - 'webhook_response_form_help' => 'Indica cosa il webhook deve inviare all\'URL.', - 'webhook_delivery_form_help' => 'In quale formato il webhook deve fornire i dati.', - 'webhook_active_form_help' => 'Il webhook deve essere attivo o non verrà chiamato.', - 'stored_new_webhook' => 'Nuovo webhook ":title" salvato', - 'delete_webhook' => 'Elimina Webhook', - 'deleted_webhook' => 'Webhook ":title" eliminato', - 'edit_webhook' => 'Modifica webhook ":title"', - 'updated_webhook' => 'Webhook ":title" aggiornato', - 'edit_webhook_js' => 'Modifica webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Il webhook è stato attivato sulla transazione indicata. Si prega di attendere che i risultati appaiano.', - 'webhook_messages' => 'Messaggio Webhook', - 'view_message' => 'Visualizza messaggio', - 'view_attempts' => 'Visualizza tentativi falliti', - 'message_content_title' => 'Contenuto del messaggio Webhook', - 'message_content_help' => 'Questo è il contenuto del messaggio che è stato inviato (o ha tentato) utilizzando questo webhook.', - 'attempt_content_title' => 'Tentativi del Webhook', - 'attempt_content_help' => 'Questi sono tutti i tentativi falliti di questo messaggio webhook da inviare all\'URL configurato. Dopo qualche tempo, Firefly III smetterà di provare.', - 'no_attempts' => 'Non ci sono tentativi falliti. È una buona cosa!', - 'webhook_attempt_at' => 'Tentativo a {moment}', - 'logs' => 'Log', - 'response' => 'Risposta', - 'visit_webhook_url' => 'Visita URL webhook', - 'reset_webhook_secret' => 'Reimposta il segreto del webhook', - 'webhook_stored_link' => 'Il webhook #{ID} ("{title}") è stato archiviato.', - 'webhook_updated_link' => 'Il webhook #{ID} ("{title}") è stato aggiornato.', + 'webhooks' => 'Webhook', + 'webhooks_breadcrumb' => 'Webhook', + 'webhooks_menu_disabled' => 'disabilitato', + 'no_webhook_messages' => 'Non ci sono messaggi webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Dopo aver creato la transazione', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Dopo aver aggiornato la transazione', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Dopo aver eliminato la transazione', + 'webhook_response_TRANSACTIONS' => 'Dettagli transazione', + 'webhook_response_ACCOUNTS' => 'Dettagli conto', + 'webhook_response_none_NONE' => 'Nessun dettaglio', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Ispeziona', + 'create_new_webhook' => 'Crea nuovo webhook', + 'webhooks_create_breadcrumb' => 'Crea nuovo webhook', + 'webhook_trigger_form_help' => 'Indica quale evento attiverà il webhook', + 'webhook_response_form_help' => 'Indica cosa il webhook deve inviare all\'URL.', + 'webhook_delivery_form_help' => 'In quale formato il webhook deve fornire i dati.', + 'webhook_active_form_help' => 'Il webhook deve essere attivo o non verrà chiamato.', + 'stored_new_webhook' => 'Nuovo webhook ":title" salvato', + 'delete_webhook' => 'Elimina Webhook', + 'deleted_webhook' => 'Webhook ":title" eliminato', + 'edit_webhook' => 'Modifica webhook ":title"', + 'updated_webhook' => 'Webhook ":title" aggiornato', + 'edit_webhook_js' => 'Modifica webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Il webhook è stato attivato sulla transazione indicata. Si prega di attendere che i risultati appaiano.', + 'webhook_messages' => 'Messaggio Webhook', + 'view_message' => 'Visualizza messaggio', + 'view_attempts' => 'Visualizza tentativi falliti', + 'message_content_title' => 'Contenuto del messaggio Webhook', + 'message_content_help' => 'Questo è il contenuto del messaggio che è stato inviato (o ha tentato) utilizzando questo webhook.', + 'attempt_content_title' => 'Tentativi del Webhook', + 'attempt_content_help' => 'Questi sono tutti i tentativi falliti di questo messaggio webhook da inviare all\'URL configurato. Dopo qualche tempo, Firefly III smetterà di provare.', + 'no_attempts' => 'Non ci sono tentativi falliti. È una buona cosa!', + 'webhook_attempt_at' => 'Tentativo a {moment}', + 'logs' => 'Log', + 'response' => 'Risposta', + 'visit_webhook_url' => 'Visita URL webhook', + 'reset_webhook_secret' => 'Reimposta il segreto del webhook', + 'webhook_stored_link' => 'Il webhook #{ID} ("{title}") è stato archiviato.', + 'webhook_updated_link' => 'Il webhook #{ID} ("{title}") è stato aggiornato.', // API access - 'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione', - 'authorization_request_intro' => ':client sta richiedendo l\'autorizzazione per accedere alla tua amministrazione finanziaria. Desideri autorizzare :client ad accedere a questi record?', - 'authorization_request_site' => 'Sarai reindirizzato a :url che sarà quindi in grado di accedere ai tuoi dati di Firefly III.', - 'authorization_request_invalid' => 'Questa richiesta di accesso non è valida. Non seguire più questo link.', - 'scopes_will_be_able' => 'Questa applicazione sarà in grado di:', - 'button_authorize' => 'Autorizza', - 'none_in_select_list' => '(nessuna)', - 'no_piggy_bank' => '(nessun salvadanaio)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Pagata in :currency', - 'unpaid_in_currency' => 'Non pagata in :currency', - 'is_alpha_warning' => 'Stai eseguendo una versione ALHPA. Fai attenzione a bug e problemi.', - 'is_beta_warning' => 'Stai eseguendo una versione BETA. Fai attenzione a bug e problemi.', - 'all_destination_accounts' => 'Conti di destinazione', - 'all_source_accounts' => 'Conti di origine', - 'back_to_index' => 'Torna all\'indice', - 'cant_logout_guard' => 'Firefly III non può disconnetterti.', - 'internal_reference' => 'Riferimento interno', + 'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione', + 'authorization_request_intro' => ':client sta richiedendo l\'autorizzazione per accedere alla tua amministrazione finanziaria. Desideri autorizzare :client ad accedere a questi record?', + 'authorization_request_site' => 'Sarai reindirizzato a :url che sarà quindi in grado di accedere ai tuoi dati di Firefly III.', + 'authorization_request_invalid' => 'Questa richiesta di accesso non è valida. Non seguire più questo link.', + 'scopes_will_be_able' => 'Questa applicazione sarà in grado di:', + 'button_authorize' => 'Autorizza', + 'none_in_select_list' => '(nessuna)', + 'no_piggy_bank' => '(nessun salvadanaio)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Pagata in :currency', + 'unpaid_in_currency' => 'Non pagata in :currency', + 'is_alpha_warning' => 'Stai eseguendo una versione ALHPA. Fai attenzione a bug e problemi.', + 'is_beta_warning' => 'Stai eseguendo una versione BETA. Fai attenzione a bug e problemi.', + 'all_destination_accounts' => 'Conti di destinazione', + 'all_source_accounts' => 'Conti di origine', + 'back_to_index' => 'Torna all\'indice', + 'cant_logout_guard' => 'Firefly III non può disconnetterti.', + 'internal_reference' => 'Riferimento interno', // check for updates: - 'update_check_title' => 'Controlla aggiornamenti', - 'admin_update_check_title' => 'Controlla automaticamente aggiornamento', - 'admin_update_check_explain' => 'Firefly III può verificare automaticamente gli aggiornamenti. Quando attivi questa impostazione, contatterà il server di aggiornamento per verificare se è disponibile una nuova versione di Firefly III. Quando questo è il caso, riceverai una notifica. Puoi testare questa notifica utilizzando il pulsante a destra. Indicare di seguito se si desidera che Firefly III controlli gli aggiornamenti.', - 'check_for_updates_permission' => 'Firefly III può controllare gli aggiornamenti, ma è necessario il tuo permesso per farlo. Vai nell\'amministrazione per indicare se desideri che questa funzione sia abilitata.', - 'updates_ask_me_later' => 'Chiedimelo più tardi', - 'updates_do_not_check' => 'Non controllare gli aggiornamenti', - 'updates_enable_check' => 'Abilita il controllo degli aggiornamenti', - 'admin_update_check_now_title' => 'Controlla gli aggiornamenti ora', - 'admin_update_check_now_explain' => 'Se si preme il pulsante, Firefly III controllerà se la versione corrente è la più recente.', - 'check_for_updates_button' => 'Controlla ora!', - 'update_new_version_alert' => 'È disponibile una nuova versione di Firefly III. Stai utilizzando :your_version, l\'ultima versione è :new_version che è stata rilasciata il :date.', - 'update_version_beta' => 'Questa versione è una versione BETA. Puoi avere problemi.', - 'update_version_alpha' => 'Questa versione è una versione ALPHA. Puoi avere problemi.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Stai utilizzando :version, che è l\'ultima versione disponibile.', - 'update_newer_version_alert' => 'Stai utilizzando :your_version, che è più recente dell\'ultima versione, :new_version.', - 'update_check_error' => 'Si è verificato un errore durante il controllo degli aggiornamenti: :error', - 'unknown_error' => 'Errore sconosciuto. Siamo spiacenti.', - 'disabled_but_check' => 'Hai disabilitato il controllo degli aggiornamenti. Quindi non dimenticarti di controllare gli aggiornamenti di tanto in tanto. Grazie!', - 'admin_update_channel_title' => 'Canale di aggiornamento', - 'admin_update_channel_explain' => 'Firefly III dispone di tre "canali" di aggiornamento che indicano quanto avanti ti trovi in termini di funzionalità, miglioramenti e bug. Usa il canale "beta" se sei avventuroso e quello "alpha" se vuoi vivere pericolosamente.', - 'update_channel_stable' => 'Stabile. Tutto dovrebbe funzionare come previsto.', - 'update_channel_beta' => 'Beta. Nuove funzionalità ma qualcosa potrebbe rompersi.', - 'update_channel_alpha' => 'Alpha. Inseriamo qualsiasi cosa e vediamo cosa funziona.', + 'update_check_title' => 'Controlla aggiornamenti', + 'admin_update_check_title' => 'Controlla automaticamente aggiornamento', + 'admin_update_check_explain' => 'Firefly III può verificare automaticamente gli aggiornamenti. Quando attivi questa impostazione, contatterà il server di aggiornamento per verificare se è disponibile una nuova versione di Firefly III. Quando questo è il caso, riceverai una notifica. Puoi testare questa notifica utilizzando il pulsante a destra. Indicare di seguito se si desidera che Firefly III controlli gli aggiornamenti.', + 'check_for_updates_permission' => 'Firefly III può controllare gli aggiornamenti, ma è necessario il tuo permesso per farlo. Vai nell\'amministrazione per indicare se desideri che questa funzione sia abilitata.', + 'updates_ask_me_later' => 'Chiedimelo più tardi', + 'updates_do_not_check' => 'Non controllare gli aggiornamenti', + 'updates_enable_check' => 'Abilita il controllo degli aggiornamenti', + 'admin_update_check_now_title' => 'Controlla gli aggiornamenti ora', + 'admin_update_check_now_explain' => 'Se si preme il pulsante, Firefly III controllerà se la versione corrente è la più recente.', + 'check_for_updates_button' => 'Controlla ora!', + 'update_new_version_alert' => 'È disponibile una nuova versione di Firefly III. Stai utilizzando :your_version, l\'ultima versione è :new_version che è stata rilasciata il :date.', + 'update_version_beta' => 'Questa versione è una versione BETA. Puoi avere problemi.', + 'update_version_alpha' => 'Questa versione è una versione ALPHA. Puoi avere problemi.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Stai utilizzando :version, che è l\'ultima versione disponibile.', + 'update_newer_version_alert' => 'Stai utilizzando :your_version, che è più recente dell\'ultima versione, :new_version.', + 'update_check_error' => 'Si è verificato un errore durante il controllo degli aggiornamenti: :error', + 'unknown_error' => 'Errore sconosciuto. Siamo spiacenti.', + 'disabled_but_check' => 'Hai disabilitato il controllo degli aggiornamenti. Quindi non dimenticarti di controllare gli aggiornamenti di tanto in tanto. Grazie!', + 'admin_update_channel_title' => 'Canale di aggiornamento', + 'admin_update_channel_explain' => 'Firefly III dispone di tre "canali" di aggiornamento che indicano quanto avanti ti trovi in termini di funzionalità, miglioramenti e bug. Usa il canale "beta" se sei avventuroso e quello "alpha" se vuoi vivere pericolosamente.', + 'update_channel_stable' => 'Stabile. Tutto dovrebbe funzionare come previsto.', + 'update_channel_beta' => 'Beta. Nuove funzionalità ma qualcosa potrebbe rompersi.', + 'update_channel_alpha' => 'Alpha. Inseriamo qualsiasi cosa e vediamo cosa funziona.', // search - 'search' => 'Cerca', - 'search_query' => 'Domanda', - 'search_found_transactions' => 'Firefly III ha trovato :count transazione in :time secondi.|Firefly III ha trovato :count transazioni in :time secondi.', - 'search_found_more_transactions' => 'Firefly III ha trovato più di :count transazioni in :time secondi.', - 'search_for_query' => 'Firefly III sta cercando le transazioni contenenti tutte queste parole: :query', - 'invalid_operators_list' => 'Questi parametri di ricerca non sono validi e sono stati ignorati.', + 'search' => 'Cerca', + 'search_query' => 'Domanda', + 'search_found_transactions' => 'Firefly III ha trovato :count transazione in :time secondi.|Firefly III ha trovato :count transazioni in :time secondi.', + 'search_found_more_transactions' => 'Firefly III ha trovato più di :count transazioni in :time secondi.', + 'search_for_query' => 'Firefly III sta cercando le transazioni contenenti tutte queste parole: :query', + 'invalid_operators_list' => 'Questi parametri di ricerca non sono validi e sono stati ignorati.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'La data della transazione è ":value"', - 'search_modifier_not_date_on' => 'La data della transazione non è ":value"', - 'search_modifier_reconciled' => 'La transazione è riconciliata', - 'search_modifier_not_reconciled' => 'La transazione non è riconciliata', - 'search_modifier_id' => 'L\'ID della transazione è ":value"', - 'search_modifier_not_id' => 'L\'ID della transazione non è ":value"', - 'search_modifier_date_before' => 'La data della transazione è antecedente o uguale a ":value"', - 'search_modifier_date_after' => 'La data della transazione è successiva o uguale a ":value"', - 'search_modifier_external_id_is' => 'L\'ID esterno è ":value"', - 'search_modifier_not_external_id_is' => 'L\'ID esterno non è ":value"', - 'search_modifier_no_external_url' => 'La transazione non ha URL esterno', - 'search_modifier_no_external_id' => 'La transazione non ha un ID esterno', - 'search_modifier_not_any_external_url' => 'La transazione non ha URL esterno', - 'search_modifier_not_any_external_id' => 'La transazione non ha un ID esterno', - 'search_modifier_any_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno', - 'search_modifier_any_external_id' => 'La transazione deve avere un (qualunque) ID esterno', - 'search_modifier_not_no_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno', - 'search_modifier_not_no_external_id' => 'La transazione deve avere un (qualunque) ID esterno', - 'search_modifier_internal_reference_is' => 'Il riferimento interno è ":value"', - 'search_modifier_not_internal_reference_is' => 'Il riferimento interno non è ":value"', - 'search_modifier_description_starts' => 'La descrizione inizia con ":value"', - 'search_modifier_not_description_starts' => 'La descrizione non inizia con ":value"', - 'search_modifier_description_ends' => 'La descrizione termina con ":value"', - 'search_modifier_not_description_ends' => 'La descrizione non termina con ":value"', - 'search_modifier_description_contains' => 'La descrizione contiene ":value"', - 'search_modifier_not_description_contains' => 'La descrizione non contiene ":value"', - 'search_modifier_description_is' => 'La descrizione è esattamente ":value"', - 'search_modifier_not_description_is' => 'La descrizione non è esattamente ":value"', - 'search_modifier_currency_is' => 'La valuta (estera) della transazione è ":value"', - 'search_modifier_not_currency_is' => 'La valuta (estera) della transazione non è ":value"', - 'search_modifier_foreign_currency_is' => 'La valuta estera della transazione è ":value"', - 'search_modifier_not_foreign_currency_is' => 'La valuta estera della transazione non è ":value"', - 'search_modifier_has_attachments' => 'La transazione deve avere un allegato', - 'search_modifier_has_no_category' => 'La transazione non deve avere una categoria', - 'search_modifier_not_has_no_category' => 'La transazione deve avere una (qualsiasi) categoria', - 'search_modifier_not_has_any_category' => 'La transazione non deve avere una categoria', - 'search_modifier_has_any_category' => 'La transazione deve avere una (qualsiasi) categoria', - 'search_modifier_has_no_budget' => 'La transazione non deve avere un budget', - 'search_modifier_not_has_any_budget' => 'La transazione non deve avere budget', - 'search_modifier_has_any_budget' => 'La transazione deve avere un budget (qualsiasi)', - 'search_modifier_not_has_no_budget' => 'La transazione deve avere un budget (qualsiasi)', - 'search_modifier_has_no_bill' => 'La transazione non deve avere bollette', - 'search_modifier_not_has_no_bill' => 'La transazione deve avere una bolletta (qualsiasi)', - 'search_modifier_has_any_bill' => 'La transazione deve avere una (qualsiasi) bolletta', - 'search_modifier_not_has_any_bill' => 'La transazione non deve avere alcuna bolletta', - 'search_modifier_has_no_tag' => 'La transazione non deve avere etichette', - 'search_modifier_not_has_any_tag' => 'La transazione non deve avere etichette', - 'search_modifier_not_has_no_tag' => 'La transazione deve avere una (qualsiasi) etichetta', - 'search_modifier_has_any_tag' => 'La transazione deve avere una (qualsiasi) etichetta', - 'search_modifier_notes_contains' => 'Le note della transazione contengono ":value"', - 'search_modifier_not_notes_contains' => 'Le note della transazione non contengono ":value"', - 'search_modifier_notes_starts' => 'Le note della transazione iniziano con ":value"', - 'search_modifier_not_notes_starts' => 'Le note della transazione non iniziano con ":value"', - 'search_modifier_notes_ends' => 'Le note della transazione terminano con ":value"', - 'search_modifier_not_notes_ends' => 'Le note della transazione non terminano con ":value"', - 'search_modifier_notes_is' => 'Le note della transazione sono esattamente ":value"', - 'search_modifier_not_notes_is' => 'Le note della transazione non sono esattamente ":value"', - 'search_modifier_no_notes' => 'La transazione non ha note', - 'search_modifier_not_no_notes' => 'La transazione deve avere delle note', - 'search_modifier_any_notes' => 'La transazione deve avere note', - 'search_modifier_not_any_notes' => 'La transazione non ha note', - 'search_modifier_amount_is' => 'L\'importo è esattamente :value', - 'search_modifier_not_amount_is' => 'Il valore non è :value', - 'search_modifier_amount_less' => 'L\'importo è inferiore o uguale a :value', - 'search_modifier_not_amount_more' => 'Il valore è minore o uguale a :value', - 'search_modifier_amount_more' => 'L\'importo è superiore o uguale a :value', - 'search_modifier_not_amount_less' => 'Il valore è maggiore o uguale a :value', - 'search_modifier_source_account_is' => 'Il nome del conto di origine è esattamente ":value"', - 'search_modifier_not_source_account_is' => 'Il nome del conto di origine non è ":value"', - 'search_modifier_source_account_contains' => 'Il nome del conto di origine contiene ":value"', - 'search_modifier_not_source_account_contains' => 'Il nome del conto di origine non contiene ":value"', - 'search_modifier_source_account_starts' => 'Il nome del conto di origine inizia con ":value"', - 'search_modifier_not_source_account_starts' => 'Il nome del conto di origine non inizia con ":value"', - 'search_modifier_source_account_ends' => 'Il nome del conto di origine termina con ":value"', - 'search_modifier_not_source_account_ends' => 'Il nome del conto di origine non finisce con ":value"', - 'search_modifier_source_account_id' => 'L\'ID del conto di origine è :value', - 'search_modifier_not_source_account_id' => 'L\'ID del conto di origine non è ":value"', - 'search_modifier_source_account_nr_is' => 'Il numero del conto di origine (IBAN) è ":value"', - 'search_modifier_not_source_account_nr_is' => 'Il numero del conto di origine (IBAN) non è ":value"', - 'search_modifier_source_account_nr_contains' => 'Il numero del conto di origine (IBAN) contiene ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Il numero del conto di origine (IBAN) non contiene ":value"', - 'search_modifier_source_account_nr_starts' => 'Il numero del conto di origine (IBAN) inizia con ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Il numero del conto di origine (IBAN) non inizia con ":value"', - 'search_modifier_source_account_nr_ends' => 'Il numero del conto di origine (IBAN) finisce con ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Il numero del conto di origine (IBAN) non finisce con ":value"', - 'search_modifier_destination_account_is' => 'Il nome del conto di destinazione ":value"', - 'search_modifier_not_destination_account_is' => 'Il nome del conto di destinazione non è ":value"', - 'search_modifier_destination_account_contains' => 'Il nome del conto di destinazione contiene ":value"', - 'search_modifier_not_destination_account_contains' => 'Il nome del conto di destinazione non contiene ":value"', - 'search_modifier_destination_account_starts' => 'Il nome del conto di destinazione inizia con ":value"', - 'search_modifier_not_destination_account_starts' => 'Il nome del conto di destinazione non inizia con ":value"', - 'search_modifier_destination_account_ends' => 'Il nome del conto di destinazione finisce con ":value"', - 'search_modifier_not_destination_account_ends' => 'Il nome del conto di destinazione non finisce con ":value"', - 'search_modifier_destination_account_id' => 'L\'ID del conto di destinazione è :value', - 'search_modifier_not_destination_account_id' => 'L\'ID del conto di destinazione non è ":value"', - 'search_modifier_destination_is_cash' => 'Il conto di destinazione é il conto "(contanti)"', - 'search_modifier_not_destination_is_cash' => 'Il conto di destinazione non é il conto "(contanti)"', - 'search_modifier_source_is_cash' => 'Il conto di origine é il conto "(contanti)"', - 'search_modifier_not_source_is_cash' => 'Il conto di origine non é il conto "(contanti)"', - 'search_modifier_destination_account_nr_is' => 'Il numero del conto di destinazione (IBAN) è ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Il numero del conto di destinazione (IBAN) è ":value"', - 'search_modifier_destination_account_nr_contains' => 'Il numero del conto di destinazione (IBAN) contiene ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Il numero del conto di destinazione (IBAN) non contiene ":value"', - 'search_modifier_destination_account_nr_starts' => 'Il numero del conto di destinazione (IBAN) inizia con ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Il numero del conto di destinazione (IBAN) non inizia con ":value"', - 'search_modifier_destination_account_nr_ends' => 'Il numero del conto di destinazione (IBAN) termina con ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Il numero del conto di destinazione (IBAN) non finisce con ":value"', - 'search_modifier_account_id' => 'L\'ID del conto sorgente e/o destinazione è/sono :value', - 'search_modifier_not_account_id' => 'L\'ID del conto di origine o destinazione non è/sono :value', - 'search_modifier_category_is' => 'La categoria è ":value"', - 'search_modifier_not_category_is' => 'La categoria non è ":value"', - 'search_modifier_budget_is' => 'Il budget è ":value"', - 'search_modifier_not_budget_is' => 'Il budget non è ":value"', - 'search_modifier_bill_is' => 'La bolletta è ":value"', - 'search_modifier_not_bill_is' => 'La bolletta non è ":value"', - 'search_modifier_transaction_type' => 'Il tipo di transazione è ":value"', - 'search_modifier_not_transaction_type' => 'Il tipo della transizione non è ":value"', - 'search_modifier_tag_is' => 'L\'etichetta è ":value"', - 'search_modifier_tag_contains' => 'La bolletta contiene ":value"', - 'search_modifier_not_tag_contains' => 'Il tag non contiene ":value"', - 'search_modifier_tag_ends' => 'Il tag termina per ":value"', - 'search_modifier_tag_starts' => 'Il tag inizia per ":value"', - 'search_modifier_not_tag_is' => 'Nessuna etichetta è ":value"', - 'search_modifier_date_on_year' => 'La transazione è dell\'anno ":value"', - 'search_modifier_not_date_on_year' => 'La transazione non è dell\'anno ":value"', - 'search_modifier_date_on_month' => 'La transazione è del mese di ":value"', - 'search_modifier_not_date_on_month' => 'La transazione non è del mese di ":value"', - 'search_modifier_date_on_day' => 'La transazione è il giorno del mese ":value"', - 'search_modifier_not_date_on_day' => 'La transazione non è del giorno del mese ":value"', - 'search_modifier_date_before_year' => 'La transazione è precedente all\'anno o dell\'anno ":value"', - 'search_modifier_date_before_month' => 'La transazione è precedente o è del mese di ":value"', - 'search_modifier_date_before_day' => 'La transazione è precedente o è del giorno ":value"', - 'search_modifier_date_after_year' => 'La transazione è successiva all\'anno o dell\'anno ":value"', - 'search_modifier_date_after_month' => 'La transazione è successiva o è del mese di ":value"', - 'search_modifier_date_after_day' => 'La transazione è successiva o è del giorno ":value"', + 'search_modifier_date_on' => 'La data della transazione è ":value"', + 'search_modifier_not_date_on' => 'La data della transazione non è ":value"', + 'search_modifier_reconciled' => 'La transazione è riconciliata', + 'search_modifier_not_reconciled' => 'La transazione non è riconciliata', + 'search_modifier_id' => 'L\'ID della transazione è ":value"', + 'search_modifier_not_id' => 'L\'ID della transazione non è ":value"', + 'search_modifier_date_before' => 'La data della transazione è antecedente o uguale a ":value"', + 'search_modifier_date_after' => 'La data della transazione è successiva o uguale a ":value"', + 'search_modifier_external_id_is' => 'L\'ID esterno è ":value"', + 'search_modifier_not_external_id_is' => 'L\'ID esterno non è ":value"', + 'search_modifier_no_external_url' => 'La transazione non ha URL esterno', + 'search_modifier_no_external_id' => 'La transazione non ha un ID esterno', + 'search_modifier_not_any_external_url' => 'La transazione non ha URL esterno', + 'search_modifier_not_any_external_id' => 'La transazione non ha un ID esterno', + 'search_modifier_any_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno', + 'search_modifier_any_external_id' => 'La transazione deve avere un (qualunque) ID esterno', + 'search_modifier_not_no_external_url' => 'La transazione deve avere un (qualsiasi) URL esterno', + 'search_modifier_not_no_external_id' => 'La transazione deve avere un (qualunque) ID esterno', + 'search_modifier_internal_reference_is' => 'Il riferimento interno è ":value"', + 'search_modifier_not_internal_reference_is' => 'Il riferimento interno non è ":value"', + 'search_modifier_description_starts' => 'La descrizione inizia con ":value"', + 'search_modifier_not_description_starts' => 'La descrizione non inizia con ":value"', + 'search_modifier_description_ends' => 'La descrizione termina con ":value"', + 'search_modifier_not_description_ends' => 'La descrizione non termina con ":value"', + 'search_modifier_description_contains' => 'La descrizione contiene ":value"', + 'search_modifier_not_description_contains' => 'La descrizione non contiene ":value"', + 'search_modifier_description_is' => 'La descrizione è esattamente ":value"', + 'search_modifier_not_description_is' => 'La descrizione non è esattamente ":value"', + 'search_modifier_currency_is' => 'La valuta (estera) della transazione è ":value"', + 'search_modifier_not_currency_is' => 'La valuta (estera) della transazione non è ":value"', + 'search_modifier_foreign_currency_is' => 'La valuta estera della transazione è ":value"', + 'search_modifier_not_foreign_currency_is' => 'La valuta estera della transazione non è ":value"', + 'search_modifier_has_attachments' => 'La transazione deve avere un allegato', + 'search_modifier_has_no_category' => 'La transazione non deve avere una categoria', + 'search_modifier_not_has_no_category' => 'La transazione deve avere una (qualsiasi) categoria', + 'search_modifier_not_has_any_category' => 'La transazione non deve avere una categoria', + 'search_modifier_has_any_category' => 'La transazione deve avere una (qualsiasi) categoria', + 'search_modifier_has_no_budget' => 'La transazione non deve avere un budget', + 'search_modifier_not_has_any_budget' => 'La transazione non deve avere budget', + 'search_modifier_has_any_budget' => 'La transazione deve avere un budget (qualsiasi)', + 'search_modifier_not_has_no_budget' => 'La transazione deve avere un budget (qualsiasi)', + 'search_modifier_has_no_bill' => 'La transazione non deve avere bollette', + 'search_modifier_not_has_no_bill' => 'La transazione deve avere una bolletta (qualsiasi)', + 'search_modifier_has_any_bill' => 'La transazione deve avere una (qualsiasi) bolletta', + 'search_modifier_not_has_any_bill' => 'La transazione non deve avere alcuna bolletta', + 'search_modifier_has_no_tag' => 'La transazione non deve avere etichette', + 'search_modifier_not_has_any_tag' => 'La transazione non deve avere etichette', + 'search_modifier_not_has_no_tag' => 'La transazione deve avere una (qualsiasi) etichetta', + 'search_modifier_has_any_tag' => 'La transazione deve avere una (qualsiasi) etichetta', + 'search_modifier_notes_contains' => 'Le note della transazione contengono ":value"', + 'search_modifier_not_notes_contains' => 'Le note della transazione non contengono ":value"', + 'search_modifier_notes_starts' => 'Le note della transazione iniziano con ":value"', + 'search_modifier_not_notes_starts' => 'Le note della transazione non iniziano con ":value"', + 'search_modifier_notes_ends' => 'Le note della transazione terminano con ":value"', + 'search_modifier_not_notes_ends' => 'Le note della transazione non terminano con ":value"', + 'search_modifier_notes_is' => 'Le note della transazione sono esattamente ":value"', + 'search_modifier_not_notes_is' => 'Le note della transazione non sono esattamente ":value"', + 'search_modifier_no_notes' => 'La transazione non ha note', + 'search_modifier_not_no_notes' => 'La transazione deve avere delle note', + 'search_modifier_any_notes' => 'La transazione deve avere note', + 'search_modifier_not_any_notes' => 'La transazione non ha note', + 'search_modifier_amount_is' => 'L\'importo è esattamente :value', + 'search_modifier_not_amount_is' => 'Il valore non è :value', + 'search_modifier_amount_less' => 'L\'importo è inferiore o uguale a :value', + 'search_modifier_not_amount_more' => 'Il valore è minore o uguale a :value', + 'search_modifier_amount_more' => 'L\'importo è superiore o uguale a :value', + 'search_modifier_not_amount_less' => 'Il valore è maggiore o uguale a :value', + 'search_modifier_source_account_is' => 'Il nome del conto di origine è esattamente ":value"', + 'search_modifier_not_source_account_is' => 'Il nome del conto di origine non è ":value"', + 'search_modifier_source_account_contains' => 'Il nome del conto di origine contiene ":value"', + 'search_modifier_not_source_account_contains' => 'Il nome del conto di origine non contiene ":value"', + 'search_modifier_source_account_starts' => 'Il nome del conto di origine inizia con ":value"', + 'search_modifier_not_source_account_starts' => 'Il nome del conto di origine non inizia con ":value"', + 'search_modifier_source_account_ends' => 'Il nome del conto di origine termina con ":value"', + 'search_modifier_not_source_account_ends' => 'Il nome del conto di origine non finisce con ":value"', + 'search_modifier_source_account_id' => 'L\'ID del conto di origine è :value', + 'search_modifier_not_source_account_id' => 'L\'ID del conto di origine non è ":value"', + 'search_modifier_source_account_nr_is' => 'Il numero del conto di origine (IBAN) è ":value"', + 'search_modifier_not_source_account_nr_is' => 'Il numero del conto di origine (IBAN) non è ":value"', + 'search_modifier_source_account_nr_contains' => 'Il numero del conto di origine (IBAN) contiene ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Il numero del conto di origine (IBAN) non contiene ":value"', + 'search_modifier_source_account_nr_starts' => 'Il numero del conto di origine (IBAN) inizia con ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Il numero del conto di origine (IBAN) non inizia con ":value"', + 'search_modifier_source_account_nr_ends' => 'Il numero del conto di origine (IBAN) finisce con ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Il numero del conto di origine (IBAN) non finisce con ":value"', + 'search_modifier_destination_account_is' => 'Il nome del conto di destinazione ":value"', + 'search_modifier_not_destination_account_is' => 'Il nome del conto di destinazione non è ":value"', + 'search_modifier_destination_account_contains' => 'Il nome del conto di destinazione contiene ":value"', + 'search_modifier_not_destination_account_contains' => 'Il nome del conto di destinazione non contiene ":value"', + 'search_modifier_destination_account_starts' => 'Il nome del conto di destinazione inizia con ":value"', + 'search_modifier_not_destination_account_starts' => 'Il nome del conto di destinazione non inizia con ":value"', + 'search_modifier_destination_account_ends' => 'Il nome del conto di destinazione finisce con ":value"', + 'search_modifier_not_destination_account_ends' => 'Il nome del conto di destinazione non finisce con ":value"', + 'search_modifier_destination_account_id' => 'L\'ID del conto di destinazione è :value', + 'search_modifier_not_destination_account_id' => 'L\'ID del conto di destinazione non è ":value"', + 'search_modifier_destination_is_cash' => 'Il conto di destinazione é il conto "(contanti)"', + 'search_modifier_not_destination_is_cash' => 'Il conto di destinazione non é il conto "(contanti)"', + 'search_modifier_source_is_cash' => 'Il conto di origine é il conto "(contanti)"', + 'search_modifier_not_source_is_cash' => 'Il conto di origine non é il conto "(contanti)"', + 'search_modifier_destination_account_nr_is' => 'Il numero del conto di destinazione (IBAN) è ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Il numero del conto di destinazione (IBAN) è ":value"', + 'search_modifier_destination_account_nr_contains' => 'Il numero del conto di destinazione (IBAN) contiene ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Il numero del conto di destinazione (IBAN) non contiene ":value"', + 'search_modifier_destination_account_nr_starts' => 'Il numero del conto di destinazione (IBAN) inizia con ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Il numero del conto di destinazione (IBAN) non inizia con ":value"', + 'search_modifier_destination_account_nr_ends' => 'Il numero del conto di destinazione (IBAN) termina con ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Il numero del conto di destinazione (IBAN) non finisce con ":value"', + 'search_modifier_account_id' => 'L\'ID del conto sorgente e/o destinazione è/sono :value', + 'search_modifier_not_account_id' => 'L\'ID del conto di origine o destinazione non è/sono :value', + 'search_modifier_category_is' => 'La categoria è ":value"', + 'search_modifier_not_category_is' => 'La categoria non è ":value"', + 'search_modifier_budget_is' => 'Il budget è ":value"', + 'search_modifier_not_budget_is' => 'Il budget non è ":value"', + 'search_modifier_bill_is' => 'La bolletta è ":value"', + 'search_modifier_not_bill_is' => 'La bolletta non è ":value"', + 'search_modifier_transaction_type' => 'Il tipo di transazione è ":value"', + 'search_modifier_not_transaction_type' => 'Il tipo della transizione non è ":value"', + 'search_modifier_tag_is' => 'L\'etichetta è ":value"', + 'search_modifier_tag_contains' => 'La bolletta contiene ":value"', + 'search_modifier_not_tag_contains' => 'Il tag non contiene ":value"', + 'search_modifier_tag_ends' => 'Il tag termina per ":value"', + 'search_modifier_tag_starts' => 'Il tag inizia per ":value"', + 'search_modifier_not_tag_is' => 'Nessuna etichetta è ":value"', + 'search_modifier_date_on_year' => 'La transazione è dell\'anno ":value"', + 'search_modifier_not_date_on_year' => 'La transazione non è dell\'anno ":value"', + 'search_modifier_date_on_month' => 'La transazione è del mese di ":value"', + 'search_modifier_not_date_on_month' => 'La transazione non è del mese di ":value"', + 'search_modifier_date_on_day' => 'La transazione è il giorno del mese ":value"', + 'search_modifier_not_date_on_day' => 'La transazione non è del giorno del mese ":value"', + 'search_modifier_date_before_year' => 'La transazione è precedente all\'anno o dell\'anno ":value"', + 'search_modifier_date_before_month' => 'La transazione è precedente o è del mese di ":value"', + 'search_modifier_date_before_day' => 'La transazione è precedente o è del giorno ":value"', + 'search_modifier_date_after_year' => 'La transazione è successiva all\'anno o dell\'anno ":value"', + 'search_modifier_date_after_month' => 'La transazione è successiva o è del mese di ":value"', + 'search_modifier_date_after_day' => 'La transazione è successiva o è del giorno ":value"', // new - 'search_modifier_tag_is_not' => 'Nessun etichetta è ":value"', - 'search_modifier_not_tag_is_not' => 'L\'etichetta è ":value"', - 'search_modifier_account_is' => 'Entrambi i profili sono ":value"', - 'search_modifier_not_account_is' => 'Nessuno conto è ":value"', - 'search_modifier_account_contains' => 'Entrambi i profili contengono ":value"', - 'search_modifier_not_account_contains' => 'Nessun conto contiene ":value"', - 'search_modifier_account_ends' => 'Entrambi i profili terminano per ":value"', - 'search_modifier_not_account_ends' => 'Nessun conto finisce con ":value"', - 'search_modifier_account_starts' => 'Entrambi i profili iniziano per ":value"', - 'search_modifier_not_account_starts' => 'Nessun conto inizia con ":value"', - 'search_modifier_account_nr_is' => 'Entrambi i numeri di conto / IBAN sono ":value"', - 'search_modifier_not_account_nr_is' => 'Nessun numero di conto / IBAN è ":value"', - 'search_modifier_account_nr_contains' => 'Entrambi i numeri di conto / IBAN contengono ":value"', - 'search_modifier_not_account_nr_contains' => 'Nessun numero di conto / IBAN contiene ":value"', - 'search_modifier_account_nr_ends' => 'Entrambi i numeri di conto / IBAN terminano per ":value"', - 'search_modifier_not_account_nr_ends' => 'Nessun numero di conto / IBAN finisce con ":value"', - 'search_modifier_account_nr_starts' => 'Entrambi i numeri di conto / IBAN iniziano per ":value"', - 'search_modifier_not_account_nr_starts' => 'Nessun numero di conto / IBAN inizia con ":value"', - 'search_modifier_category_contains' => 'La categoria contiene ":value"', - 'search_modifier_not_category_contains' => 'La categoria non contiene ":value"', - 'search_modifier_category_ends' => 'La categoria finisce con ":value"', - 'search_modifier_not_category_ends' => 'La categoria non termina con ":value"', - 'search_modifier_category_starts' => 'La categoria inizia per ":value"', - 'search_modifier_not_category_starts' => 'La categoria non inizia con ":value"', - 'search_modifier_budget_contains' => 'Il budget contiene ":value"', - 'search_modifier_not_budget_contains' => 'Il budget non contiene ":value"', - 'search_modifier_budget_ends' => 'Il budget termina con ":value"', - 'search_modifier_not_budget_ends' => 'Il budget non termina con ":value"', - 'search_modifier_budget_starts' => 'Il budget inizia con ":value"', - 'search_modifier_not_budget_starts' => 'Il budget non inizia con ":value"', - 'search_modifier_bill_contains' => 'La bolletta contiene ":value"', - 'search_modifier_not_bill_contains' => 'La bolletta non contiene ":value"', - 'search_modifier_bill_ends' => 'La bolletta termina con ":value"', - 'search_modifier_not_bill_ends' => 'La bolletta non termina con ":value"', - 'search_modifier_bill_starts' => 'La bolletta inizia con ":value"', - 'search_modifier_not_bill_starts' => 'La bolletta non inizia con ":value"', - 'search_modifier_external_id_contains' => 'L\'ID esterno contiene ":value"', - 'search_modifier_not_external_id_contains' => 'L\'ID esterno non contiene ":value"', - 'search_modifier_external_id_ends' => 'L\'ID esterno termina con ":value"', - 'search_modifier_not_external_id_ends' => 'L\'ID esterno non termina con ":value"', - 'search_modifier_external_id_starts' => 'L\'ID esterno inizia con ":value"', - 'search_modifier_not_external_id_starts' => 'L\'ID esterno non inizia con ":value"', - 'search_modifier_internal_reference_contains' => 'Il riferimento interno contiene ":value"', - 'search_modifier_not_internal_reference_contains' => 'Il riferimento interno non contiene ":value"', - 'search_modifier_internal_reference_ends' => 'Il riferimento interno termina con ":value"', - 'search_modifier_internal_reference_starts' => 'Il riferimento interno inizia con ":value"', - 'search_modifier_not_internal_reference_ends' => 'Il riferimento interno non termina con ":value"', - 'search_modifier_not_internal_reference_starts' => 'Il riferimento interno non inizia con ":value"', - 'search_modifier_external_url_is' => 'L\'URL esterno è ":value"', - 'search_modifier_not_external_url_is' => 'L\'URL esterno non è ":value"', - 'search_modifier_external_url_contains' => 'L\'URL esterno contiene ":value"', - 'search_modifier_not_external_url_contains' => 'L\'URL esterno non contiene ":value"', - 'search_modifier_external_url_ends' => 'L\'URL esterno termina con ":value"', - 'search_modifier_not_external_url_ends' => 'L\'URL esterno non termina con ":value"', - 'search_modifier_external_url_starts' => 'L\'URL esterno inizia con ":value"', - 'search_modifier_not_external_url_starts' => 'L\'URL esterno non inizia con ":value"', - 'search_modifier_has_no_attachments' => 'La transazione non ha allegati', - 'search_modifier_not_has_no_attachments' => 'La transazione ha allegati', - 'search_modifier_not_has_attachments' => 'La transazione non ha allegati', - 'search_modifier_account_is_cash' => 'Uno dei due account è l\'account "(contanti)".', - 'search_modifier_not_account_is_cash' => 'Nessuno dei due account è l\'account "(contanti)".', - 'search_modifier_journal_id' => 'L\'ID del diario è ":value"', - 'search_modifier_not_journal_id' => 'L\'ID del diario non è ":value"', - 'search_modifier_recurrence_id' => 'L\'ID della transazione ricorrente è ":value"', - 'search_modifier_not_recurrence_id' => 'L\'ID della transazione ricorrente non è ":value"', - 'search_modifier_foreign_amount_is' => 'L\'importo estero è ":value"', - 'search_modifier_not_foreign_amount_is' => 'L\'importo estero non è ":value"', - 'search_modifier_foreign_amount_less' => 'L\'importo estero è inferiore a ":value"', - 'search_modifier_not_foreign_amount_more' => 'L\'importo estero è inferiore a ":value"', - 'search_modifier_not_foreign_amount_less' => 'L\'importo estero è superiore a ":value"', - 'search_modifier_foreign_amount_more' => 'L\'importo estero è superiore a ":value"', - 'search_modifier_exists' => 'La transazione esiste (qualsiasi transazione)', - 'search_modifier_not_exists' => 'La transazione non esiste (nessuna transazione)', + 'search_modifier_tag_is_not' => 'Nessun etichetta è ":value"', + 'search_modifier_not_tag_is_not' => 'L\'etichetta è ":value"', + 'search_modifier_account_is' => 'Entrambi i profili sono ":value"', + 'search_modifier_not_account_is' => 'Nessuno conto è ":value"', + 'search_modifier_account_contains' => 'Entrambi i profili contengono ":value"', + 'search_modifier_not_account_contains' => 'Nessun conto contiene ":value"', + 'search_modifier_account_ends' => 'Entrambi i profili terminano per ":value"', + 'search_modifier_not_account_ends' => 'Nessun conto finisce con ":value"', + 'search_modifier_account_starts' => 'Entrambi i profili iniziano per ":value"', + 'search_modifier_not_account_starts' => 'Nessun conto inizia con ":value"', + 'search_modifier_account_nr_is' => 'Entrambi i numeri di conto / IBAN sono ":value"', + 'search_modifier_not_account_nr_is' => 'Nessun numero di conto / IBAN è ":value"', + 'search_modifier_account_nr_contains' => 'Entrambi i numeri di conto / IBAN contengono ":value"', + 'search_modifier_not_account_nr_contains' => 'Nessun numero di conto / IBAN contiene ":value"', + 'search_modifier_account_nr_ends' => 'Entrambi i numeri di conto / IBAN terminano per ":value"', + 'search_modifier_not_account_nr_ends' => 'Nessun numero di conto / IBAN finisce con ":value"', + 'search_modifier_account_nr_starts' => 'Entrambi i numeri di conto / IBAN iniziano per ":value"', + 'search_modifier_not_account_nr_starts' => 'Nessun numero di conto / IBAN inizia con ":value"', + 'search_modifier_category_contains' => 'La categoria contiene ":value"', + 'search_modifier_not_category_contains' => 'La categoria non contiene ":value"', + 'search_modifier_category_ends' => 'La categoria finisce con ":value"', + 'search_modifier_not_category_ends' => 'La categoria non termina con ":value"', + 'search_modifier_category_starts' => 'La categoria inizia per ":value"', + 'search_modifier_not_category_starts' => 'La categoria non inizia con ":value"', + 'search_modifier_budget_contains' => 'Il budget contiene ":value"', + 'search_modifier_not_budget_contains' => 'Il budget non contiene ":value"', + 'search_modifier_budget_ends' => 'Il budget termina con ":value"', + 'search_modifier_not_budget_ends' => 'Il budget non termina con ":value"', + 'search_modifier_budget_starts' => 'Il budget inizia con ":value"', + 'search_modifier_not_budget_starts' => 'Il budget non inizia con ":value"', + 'search_modifier_bill_contains' => 'La bolletta contiene ":value"', + 'search_modifier_not_bill_contains' => 'La bolletta non contiene ":value"', + 'search_modifier_bill_ends' => 'La bolletta termina con ":value"', + 'search_modifier_not_bill_ends' => 'La bolletta non termina con ":value"', + 'search_modifier_bill_starts' => 'La bolletta inizia con ":value"', + 'search_modifier_not_bill_starts' => 'La bolletta non inizia con ":value"', + 'search_modifier_external_id_contains' => 'L\'ID esterno contiene ":value"', + 'search_modifier_not_external_id_contains' => 'L\'ID esterno non contiene ":value"', + 'search_modifier_external_id_ends' => 'L\'ID esterno termina con ":value"', + 'search_modifier_not_external_id_ends' => 'L\'ID esterno non termina con ":value"', + 'search_modifier_external_id_starts' => 'L\'ID esterno inizia con ":value"', + 'search_modifier_not_external_id_starts' => 'L\'ID esterno non inizia con ":value"', + 'search_modifier_internal_reference_contains' => 'Il riferimento interno contiene ":value"', + 'search_modifier_not_internal_reference_contains' => 'Il riferimento interno non contiene ":value"', + 'search_modifier_internal_reference_ends' => 'Il riferimento interno termina con ":value"', + 'search_modifier_internal_reference_starts' => 'Il riferimento interno inizia con ":value"', + 'search_modifier_not_internal_reference_ends' => 'Il riferimento interno non termina con ":value"', + 'search_modifier_not_internal_reference_starts' => 'Il riferimento interno non inizia con ":value"', + 'search_modifier_external_url_is' => 'L\'URL esterno è ":value"', + 'search_modifier_not_external_url_is' => 'L\'URL esterno non è ":value"', + 'search_modifier_external_url_contains' => 'L\'URL esterno contiene ":value"', + 'search_modifier_not_external_url_contains' => 'L\'URL esterno non contiene ":value"', + 'search_modifier_external_url_ends' => 'L\'URL esterno termina con ":value"', + 'search_modifier_not_external_url_ends' => 'L\'URL esterno non termina con ":value"', + 'search_modifier_external_url_starts' => 'L\'URL esterno inizia con ":value"', + 'search_modifier_not_external_url_starts' => 'L\'URL esterno non inizia con ":value"', + 'search_modifier_has_no_attachments' => 'La transazione non ha allegati', + 'search_modifier_not_has_no_attachments' => 'La transazione ha allegati', + 'search_modifier_not_has_attachments' => 'La transazione non ha allegati', + 'search_modifier_account_is_cash' => 'Uno dei due account è l\'account "(contanti)".', + 'search_modifier_not_account_is_cash' => 'Nessuno dei due account è l\'account "(contanti)".', + 'search_modifier_journal_id' => 'L\'ID del diario è ":value"', + 'search_modifier_not_journal_id' => 'L\'ID del diario non è ":value"', + 'search_modifier_recurrence_id' => 'L\'ID della transazione ricorrente è ":value"', + 'search_modifier_not_recurrence_id' => 'L\'ID della transazione ricorrente non è ":value"', + 'search_modifier_foreign_amount_is' => 'L\'importo estero è ":value"', + 'search_modifier_not_foreign_amount_is' => 'L\'importo estero non è ":value"', + 'search_modifier_foreign_amount_less' => 'L\'importo estero è inferiore a ":value"', + 'search_modifier_not_foreign_amount_more' => 'L\'importo estero è inferiore a ":value"', + 'search_modifier_not_foreign_amount_less' => 'L\'importo estero è superiore a ":value"', + 'search_modifier_foreign_amount_more' => 'L\'importo estero è superiore a ":value"', + 'search_modifier_exists' => 'La transazione esiste (qualsiasi transazione)', + 'search_modifier_not_exists' => 'La transazione non esiste (nessuna transazione)', // date fields - 'search_modifier_interest_date_on' => 'La data dell\'interesse della transazione è ":value"', - 'search_modifier_not_interest_date_on' => 'La data dell\'interesse della transazione non è ":value"', - 'search_modifier_interest_date_on_year' => 'La data dell\'interesse della transazione è dell\'anno ":value"', - 'search_modifier_not_interest_date_on_year' => 'La data dell\'interesse della transazione non è dell\'anno ":value"', - 'search_modifier_interest_date_on_month' => 'La data dell\'interesse della transazione è del mese di ":value"', - 'search_modifier_not_interest_date_on_month' => 'La data dell\'interesse della transazione non è del mese di ":value"', - 'search_modifier_interest_date_on_day' => 'La data dell\'interesse della transazione è del giorno del mese ":value"', - 'search_modifier_not_interest_date_on_day' => 'La data dell\'interesse della transazione non è del giorno del mese ":value"', - 'search_modifier_interest_date_before_year' => 'La data dell\'interesse della transazione è prima o dell\'anno ":value"', - 'search_modifier_interest_date_before_month' => 'La data dell\'interesse della transazione è prima o del mese di ":value"', - 'search_modifier_interest_date_before_day' => 'La data dell\'interesse della transazione è prima o del giorno del mese ":value"', - 'search_modifier_interest_date_after_year' => 'La data dell\'interesse della transazione è dopo o dell\'anno ":value"', - 'search_modifier_interest_date_after_month' => 'La data dell\'interesse della transazione è dopo o del mese di ":value"', - 'search_modifier_interest_date_after_day' => 'La data dell\'interesse della transazione è dopo o del giorno del mese ":value"', - 'search_modifier_book_date_on_year' => 'La data di prenotazione della transazione è nell\'anno ":value"', - 'search_modifier_book_date_on_month' => 'La data di prenotazione della transazione è nel mese ":value"', - 'search_modifier_book_date_on_day' => 'La data di prenotazione della transazione è il giorno del mese ":value"', - 'search_modifier_not_book_date_on_year' => 'La data di prenotazione della transazione non è nell\'anno ":value"', - 'search_modifier_not_book_date_on_month' => 'La data di prenotazione della transazione non è nel mese ":value"', - 'search_modifier_not_book_date_on_day' => 'La data di prenotazione della transazione non è nel giorno del mese ":value"', - 'search_modifier_book_date_before_year' => 'La data di fatturazione della transazione è precedente o nell\'anno ":value"', - 'search_modifier_book_date_before_month' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', - 'search_modifier_book_date_before_day' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', - 'search_modifier_book_date_after_year' => 'La data di fatturazione della transazione è successiva o nell\'anno ":value"', - 'search_modifier_book_date_after_month' => 'La data di fatturazione è successiva o nel mese ":value"', - 'search_modifier_book_date_after_day' => 'La data di fatturazione è successiva o nel giorno del mese ":value"', - 'search_modifier_process_date_on_year' => 'La data di elaborazione della transazione è nell\'anno ":value"', - 'search_modifier_process_date_on_month' => 'La data di elaborazione della transazione è nel mese di ":value"', - 'search_modifier_process_date_on_day' => 'La data di elaborazione della transazione è nel giorno del mese ":value"', - 'search_modifier_not_process_date_on_year' => 'La data di elaborazione della transazione non è nell\'anno ":value"', - 'search_modifier_not_process_date_on_month' => 'La data di elaborazione della transazione non è nel mese di ":value"', - 'search_modifier_not_process_date_on_day' => 'La data di elaborazione della transazione è il giorno ":value" del mese', - 'search_modifier_process_date_before_year' => 'La data di elaborazione della transazione è prima o nell\'anno ":value"', - 'search_modifier_process_date_before_month' => 'La data di elaborazione della transazione è prima o nel mese di ":value"', - 'search_modifier_process_date_before_day' => 'La data di fatturazione della transazione è precedente o nel giorno ":value"', - 'search_modifier_process_date_after_year' => 'La data di elaborazione della transazione o nell\'anno ":value" o successivi', - 'search_modifier_process_date_after_month' => 'La data di elaborazione della transazione nel mese di ":value" o nei successivi', - 'search_modifier_process_date_after_day' => 'La data di elaborazione della transazione è nel giorno del mese ":value" o successivi', - 'search_modifier_due_date_on_year' => 'La data di scadenza della transazione è nell\'anno ":value"', - 'search_modifier_due_date_on_month' => 'La data di scadenza della transazione è nel mese ":value"', - 'search_modifier_due_date_on_day' => 'La data di scadenza della transazione è il giorno del mese ":value"', - 'search_modifier_not_due_date_on_year' => 'La data di scadenza della transazione non è nell\'anno ":value"', - 'search_modifier_not_due_date_on_month' => 'La data di scadenza della transazione non è nel mese ":value"', - 'search_modifier_not_due_date_on_day' => 'La data di scadenza della transazione non è il giorno del mese ":value"', - 'search_modifier_due_date_before_year' => 'La data di scadenza della transazione è precedente o nell\'anno ":value"', - 'search_modifier_due_date_before_month' => 'La data di scadenza della transazione è precedente o nel mese di ":value"', - 'search_modifier_due_date_before_day' => 'La data di scadenza della transazione è precedente o nel giorno ":value" del mese', - 'search_modifier_due_date_after_year' => 'La data di scadenza della transazione è nell\'anno ":value" o successivi', - 'search_modifier_due_date_after_month' => 'La data di scadenza della transazione nel mese ":value" o successivi', - 'search_modifier_due_date_after_day' => 'La data di scadenza della transazione nel giorno del mese ":value" o successivi', - 'search_modifier_payment_date_on_year' => 'La data di pagamento della transazione è nell\'anno ":value"', - 'search_modifier_payment_date_on_month' => 'La data di pagamento della transazione è nel mese di ":value"', - 'search_modifier_payment_date_on_day' => 'La data di pagamento della transazione è il giorno ":value" del mese', - 'search_modifier_not_payment_date_on_year' => 'La data di pagamento della transazione non è nell\'anno ":value"', - 'search_modifier_not_payment_date_on_month' => 'La data di pagamento della transazione non è nel mese ":value"', - 'search_modifier_not_payment_date_on_day' => 'La data di pagamento della transazione non è il giorno ":value" del mese', - 'search_modifier_payment_date_before_year' => 'La data di pagamento della transazione è prima o nell\'anno ":value"', - 'search_modifier_payment_date_before_month' => 'La data di pagamento della transazione è prima o il mese ":value"', - 'search_modifier_payment_date_before_day' => 'La data di pagamento della transazione è precedente o il giorno ":value"', - 'search_modifier_payment_date_after_year' => 'La data di pagamento della transazione è nell\'anno ":value" o successivi', - 'search_modifier_payment_date_after_month' => 'La data di pagamento della transazione è nel mese ":value" o successivi', - 'search_modifier_payment_date_after_day' => 'La data di pagamento della transazione è nel giorno del mese ":value" o successivi', - 'search_modifier_invoice_date_on_year' => 'La data di fatturazione della transazione è nell\'anno ":value"', - 'search_modifier_invoice_date_on_month' => 'La data di fatturazione della transazione è nel mese ":value"', - 'search_modifier_invoice_date_on_day' => 'La data di fatturazione della transazione è nel giorno del mese ":value"', - 'search_modifier_not_invoice_date_on_year' => 'La data di fatturazione della transazione non è nell\'anno ":value"', - 'search_modifier_not_invoice_date_on_month' => 'La data di fatturazione della transazione non è nell mese ":value"', - 'search_modifier_not_invoice_date_on_day' => 'La data di fatturazione della transazione non è nel giorno del mese ":value"', - 'search_modifier_invoice_date_before_year' => 'La data di fatturazione della transazione è precedente o nell\'anno ":value"', - 'search_modifier_invoice_date_before_month' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', - 'search_modifier_invoice_date_before_day' => 'La data di fatturazione della transazione è precedente o il giorno ":value" del mese', - 'search_modifier_invoice_date_after_year' => 'La data di fatturazione della transazione è nell\'anno ":value" o successivi', - 'search_modifier_invoice_date_after_month' => 'La data di fatturazione della transazione nel mese di ":value" o successivi', - 'search_modifier_invoice_date_after_day' => 'La data di fatturazione della transazione è successiva o uguale al giorno ":value" del mese', + 'search_modifier_interest_date_on' => 'La data dell\'interesse della transazione è ":value"', + 'search_modifier_not_interest_date_on' => 'La data dell\'interesse della transazione non è ":value"', + 'search_modifier_interest_date_on_year' => 'La data dell\'interesse della transazione è dell\'anno ":value"', + 'search_modifier_not_interest_date_on_year' => 'La data dell\'interesse della transazione non è dell\'anno ":value"', + 'search_modifier_interest_date_on_month' => 'La data dell\'interesse della transazione è del mese di ":value"', + 'search_modifier_not_interest_date_on_month' => 'La data dell\'interesse della transazione non è del mese di ":value"', + 'search_modifier_interest_date_on_day' => 'La data dell\'interesse della transazione è del giorno del mese ":value"', + 'search_modifier_not_interest_date_on_day' => 'La data dell\'interesse della transazione non è del giorno del mese ":value"', + 'search_modifier_interest_date_before_year' => 'La data dell\'interesse della transazione è prima o dell\'anno ":value"', + 'search_modifier_interest_date_before_month' => 'La data dell\'interesse della transazione è prima o del mese di ":value"', + 'search_modifier_interest_date_before_day' => 'La data dell\'interesse della transazione è prima o del giorno del mese ":value"', + 'search_modifier_interest_date_after_year' => 'La data dell\'interesse della transazione è dopo o dell\'anno ":value"', + 'search_modifier_interest_date_after_month' => 'La data dell\'interesse della transazione è dopo o del mese di ":value"', + 'search_modifier_interest_date_after_day' => 'La data dell\'interesse della transazione è dopo o del giorno del mese ":value"', + 'search_modifier_book_date_on_year' => 'La data di prenotazione della transazione è nell\'anno ":value"', + 'search_modifier_book_date_on_month' => 'La data di prenotazione della transazione è nel mese ":value"', + 'search_modifier_book_date_on_day' => 'La data di prenotazione della transazione è il giorno del mese ":value"', + 'search_modifier_not_book_date_on_year' => 'La data di prenotazione della transazione non è nell\'anno ":value"', + 'search_modifier_not_book_date_on_month' => 'La data di prenotazione della transazione non è nel mese ":value"', + 'search_modifier_not_book_date_on_day' => 'La data di prenotazione della transazione non è nel giorno del mese ":value"', + 'search_modifier_book_date_before_year' => 'La data di fatturazione della transazione è precedente o nell\'anno ":value"', + 'search_modifier_book_date_before_month' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', + 'search_modifier_book_date_before_day' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', + 'search_modifier_book_date_after_year' => 'La data di fatturazione della transazione è successiva o nell\'anno ":value"', + 'search_modifier_book_date_after_month' => 'La data di fatturazione è successiva o nel mese ":value"', + 'search_modifier_book_date_after_day' => 'La data di fatturazione è successiva o nel giorno del mese ":value"', + 'search_modifier_process_date_on_year' => 'La data di elaborazione della transazione è nell\'anno ":value"', + 'search_modifier_process_date_on_month' => 'La data di elaborazione della transazione è nel mese di ":value"', + 'search_modifier_process_date_on_day' => 'La data di elaborazione della transazione è nel giorno del mese ":value"', + 'search_modifier_not_process_date_on_year' => 'La data di elaborazione della transazione non è nell\'anno ":value"', + 'search_modifier_not_process_date_on_month' => 'La data di elaborazione della transazione non è nel mese di ":value"', + 'search_modifier_not_process_date_on_day' => 'La data di elaborazione della transazione è il giorno ":value" del mese', + 'search_modifier_process_date_before_year' => 'La data di elaborazione della transazione è prima o nell\'anno ":value"', + 'search_modifier_process_date_before_month' => 'La data di elaborazione della transazione è prima o nel mese di ":value"', + 'search_modifier_process_date_before_day' => 'La data di fatturazione della transazione è precedente o nel giorno ":value"', + 'search_modifier_process_date_after_year' => 'La data di elaborazione della transazione o nell\'anno ":value" o successivi', + 'search_modifier_process_date_after_month' => 'La data di elaborazione della transazione nel mese di ":value" o nei successivi', + 'search_modifier_process_date_after_day' => 'La data di elaborazione della transazione è nel giorno del mese ":value" o successivi', + 'search_modifier_due_date_on_year' => 'La data di scadenza della transazione è nell\'anno ":value"', + 'search_modifier_due_date_on_month' => 'La data di scadenza della transazione è nel mese ":value"', + 'search_modifier_due_date_on_day' => 'La data di scadenza della transazione è il giorno del mese ":value"', + 'search_modifier_not_due_date_on_year' => 'La data di scadenza della transazione non è nell\'anno ":value"', + 'search_modifier_not_due_date_on_month' => 'La data di scadenza della transazione non è nel mese ":value"', + 'search_modifier_not_due_date_on_day' => 'La data di scadenza della transazione non è il giorno del mese ":value"', + 'search_modifier_due_date_before_year' => 'La data di scadenza della transazione è precedente o nell\'anno ":value"', + 'search_modifier_due_date_before_month' => 'La data di scadenza della transazione è precedente o nel mese di ":value"', + 'search_modifier_due_date_before_day' => 'La data di scadenza della transazione è precedente o nel giorno ":value" del mese', + 'search_modifier_due_date_after_year' => 'La data di scadenza della transazione è nell\'anno ":value" o successivi', + 'search_modifier_due_date_after_month' => 'La data di scadenza della transazione nel mese ":value" o successivi', + 'search_modifier_due_date_after_day' => 'La data di scadenza della transazione nel giorno del mese ":value" o successivi', + 'search_modifier_payment_date_on_year' => 'La data di pagamento della transazione è nell\'anno ":value"', + 'search_modifier_payment_date_on_month' => 'La data di pagamento della transazione è nel mese di ":value"', + 'search_modifier_payment_date_on_day' => 'La data di pagamento della transazione è il giorno ":value" del mese', + 'search_modifier_not_payment_date_on_year' => 'La data di pagamento della transazione non è nell\'anno ":value"', + 'search_modifier_not_payment_date_on_month' => 'La data di pagamento della transazione non è nel mese ":value"', + 'search_modifier_not_payment_date_on_day' => 'La data di pagamento della transazione non è il giorno ":value" del mese', + 'search_modifier_payment_date_before_year' => 'La data di pagamento della transazione è prima o nell\'anno ":value"', + 'search_modifier_payment_date_before_month' => 'La data di pagamento della transazione è prima o il mese ":value"', + 'search_modifier_payment_date_before_day' => 'La data di pagamento della transazione è precedente o il giorno ":value"', + 'search_modifier_payment_date_after_year' => 'La data di pagamento della transazione è nell\'anno ":value" o successivi', + 'search_modifier_payment_date_after_month' => 'La data di pagamento della transazione è nel mese ":value" o successivi', + 'search_modifier_payment_date_after_day' => 'La data di pagamento della transazione è nel giorno del mese ":value" o successivi', + 'search_modifier_invoice_date_on_year' => 'La data di fatturazione della transazione è nell\'anno ":value"', + 'search_modifier_invoice_date_on_month' => 'La data di fatturazione della transazione è nel mese ":value"', + 'search_modifier_invoice_date_on_day' => 'La data di fatturazione della transazione è nel giorno del mese ":value"', + 'search_modifier_not_invoice_date_on_year' => 'La data di fatturazione della transazione non è nell\'anno ":value"', + 'search_modifier_not_invoice_date_on_month' => 'La data di fatturazione della transazione non è nell mese ":value"', + 'search_modifier_not_invoice_date_on_day' => 'La data di fatturazione della transazione non è nel giorno del mese ":value"', + 'search_modifier_invoice_date_before_year' => 'La data di fatturazione della transazione è precedente o nell\'anno ":value"', + 'search_modifier_invoice_date_before_month' => 'La data di fatturazione della transazione è precedente o nel mese ":value"', + 'search_modifier_invoice_date_before_day' => 'La data di fatturazione della transazione è precedente o il giorno ":value" del mese', + 'search_modifier_invoice_date_after_year' => 'La data di fatturazione della transazione è nell\'anno ":value" o successivi', + 'search_modifier_invoice_date_after_month' => 'La data di fatturazione della transazione nel mese di ":value" o successivi', + 'search_modifier_invoice_date_after_day' => 'La data di fatturazione della transazione è successiva o uguale al giorno ":value" del mese', // other dates - 'search_modifier_updated_at_on_year' => 'La transazione è stata aggiornata l\'ultima volta nell\'anno ":value"', - 'search_modifier_updated_at_on_month' => 'La transazione è stata aggiornata l\'ultima volta nel mese ":value"', - 'search_modifier_updated_at_on_day' => 'La transazione è stata aggiornata l\'ultima volta nel giorno ":value" del mese', - 'search_modifier_not_updated_at_on_year' => 'La transazione non è stata aggiornata l\'ultima volta nell\'anno ":value"', - 'search_modifier_not_updated_at_on_month' => 'La transazione non è stata aggiornata l\'ultima volta nel mese ":value"', - 'search_modifier_not_updated_at_on_day' => 'La transazione non è stata aggiornata il giorno del mese ":value"', - 'search_modifier_updated_at_before_year' => 'La transazione è stata aggiornata l\'ultima volta durante o prima dell\'anno ":value"', - 'search_modifier_updated_at_before_month' => 'La transazione è stata aggiornata l\'ultima volta durante o prima del mese ":value"', - 'search_modifier_updated_at_before_day' => 'La transazione è stata aggiornata l\'ultima volta durante o prima del giorno del mese ":value"', - 'search_modifier_updated_at_after_year' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo l\'anno ":value"', - 'search_modifier_updated_at_after_month' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo il mese ":value"', - 'search_modifier_updated_at_after_day' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo il giorno del mese ":value"', - 'search_modifier_created_at_on_year' => 'La transazione è stata creata nell\'anno ":value"', - 'search_modifier_created_at_on_month' => 'La transazione è stata creata nel mese ":value"', - 'search_modifier_created_at_on_day' => 'La transazione è stata create nel giorno del mese ":value"', - 'search_modifier_not_created_at_on_year' => 'La transazione non è stata creata nell\'anno ":value"', - 'search_modifier_not_created_at_on_month' => 'La transazione non è stata creata nel mese ":value"', - 'search_modifier_not_created_at_on_day' => 'La transazione non è stata creata il giorno del mese ":value"', - 'search_modifier_created_at_before_year' => 'La transazione è stata creata durante o prima dell\'anno ":value"', - 'search_modifier_created_at_before_month' => 'La transazione è stata creata durante o prima del mese ":value"', - 'search_modifier_created_at_before_day' => 'La transazione è stata creata durante o prima del giorno del mese ":value"', - 'search_modifier_created_at_after_year' => 'La transazione è stata creata durante o dopo l\'anno ":value"', - 'search_modifier_created_at_after_month' => 'La transazione è stata creata durante o dopo il mese ":value"', - 'search_modifier_created_at_after_day' => 'La transazione è stata creata durante o dopo il giorno del mese ":value"', - 'search_modifier_interest_date_before' => 'La data d\'interesse della transazione è il o prima del ":value"', - 'search_modifier_interest_date_after' => 'La data d\'interesse della transazione è il o dopo il ":value"', - 'search_modifier_book_date_on' => 'La data di prenotazione della transazione è il ":value"', - 'search_modifier_not_book_date_on' => 'La data di prenotazione della transazione non è il ":value"', - 'search_modifier_book_date_before' => 'La data di prenotazione della transazione è il o prima del ":value"', - 'search_modifier_book_date_after' => 'La data di prenotazione della transazione è il o dopo il ":value"', - 'search_modifier_process_date_on' => 'La data di elaborazione della transazione è il ":value"', - 'search_modifier_not_process_date_on' => 'La data di elaborazione della transazione non è il ":value"', - 'search_modifier_process_date_before' => 'La data di elaborazione della transazione è il o prima del ":value"', - 'search_modifier_process_date_after' => 'La data di elaborazione della transazione è il o dopo il ":value"', - 'search_modifier_due_date_on' => 'La data di scadenza della transazione è il ":value"', - 'search_modifier_not_due_date_on' => 'La data di scadenza della transazione non è il ":value"', - 'search_modifier_due_date_before' => 'La data di scadenza della transazione è il o prima del ":value"', - 'search_modifier_due_date_after' => 'La data di scadenza della transazione è il o dopo il ":value"', - 'search_modifier_payment_date_on' => 'La data di pagamento della transazione è il ":value"', - 'search_modifier_not_payment_date_on' => 'La data di pagamento della transazione non è il ":value"', - 'search_modifier_payment_date_before' => 'La data di pagamento della transazione è il o prima del ":value"', - 'search_modifier_payment_date_after' => 'La data di pagamento della transazione è il o dopo il ":value"', - 'search_modifier_invoice_date_on' => 'La data di fatturazione della transazione è il ":value"', - 'search_modifier_not_invoice_date_on' => 'La data di fatturazione della transazione non è il ":value"', - 'search_modifier_invoice_date_before' => 'La data di fatturazione della transazione è il o prima del ":value"', - 'search_modifier_invoice_date_after' => 'La data di fatturazione della transazione è il o dopo il ":value"', - 'search_modifier_created_at_on' => 'La transazione è stata creata il giorno ":value"', - 'search_modifier_not_created_at_on' => 'La transazione non è stata creata il giorno ":value"', - 'search_modifier_created_at_before' => 'La transazione è stata creata il o prima del ":value"', - 'search_modifier_created_at_after' => 'La transazione è stata creata il o dopo il ":value"', - 'search_modifier_updated_at_on' => 'La transazione è stata aggiornata il ":value"', - 'search_modifier_not_updated_at_on' => 'La transazione non è stata aggiornata il ":value"', - 'search_modifier_updated_at_before' => 'La transazione è stata aggiornata il o prima del ":value"', - 'search_modifier_updated_at_after' => 'La transazione è stata aggiornata il o dopo il ":value"', + 'search_modifier_updated_at_on_year' => 'La transazione è stata aggiornata l\'ultima volta nell\'anno ":value"', + 'search_modifier_updated_at_on_month' => 'La transazione è stata aggiornata l\'ultima volta nel mese ":value"', + 'search_modifier_updated_at_on_day' => 'La transazione è stata aggiornata l\'ultima volta nel giorno ":value" del mese', + 'search_modifier_not_updated_at_on_year' => 'La transazione non è stata aggiornata l\'ultima volta nell\'anno ":value"', + 'search_modifier_not_updated_at_on_month' => 'La transazione non è stata aggiornata l\'ultima volta nel mese ":value"', + 'search_modifier_not_updated_at_on_day' => 'La transazione non è stata aggiornata il giorno del mese ":value"', + 'search_modifier_updated_at_before_year' => 'La transazione è stata aggiornata l\'ultima volta durante o prima dell\'anno ":value"', + 'search_modifier_updated_at_before_month' => 'La transazione è stata aggiornata l\'ultima volta durante o prima del mese ":value"', + 'search_modifier_updated_at_before_day' => 'La transazione è stata aggiornata l\'ultima volta durante o prima del giorno del mese ":value"', + 'search_modifier_updated_at_after_year' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo l\'anno ":value"', + 'search_modifier_updated_at_after_month' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo il mese ":value"', + 'search_modifier_updated_at_after_day' => 'La transazione è stata aggiornata l\'ultima volta durante o dopo il giorno del mese ":value"', + 'search_modifier_created_at_on_year' => 'La transazione è stata creata nell\'anno ":value"', + 'search_modifier_created_at_on_month' => 'La transazione è stata creata nel mese ":value"', + 'search_modifier_created_at_on_day' => 'La transazione è stata create nel giorno del mese ":value"', + 'search_modifier_not_created_at_on_year' => 'La transazione non è stata creata nell\'anno ":value"', + 'search_modifier_not_created_at_on_month' => 'La transazione non è stata creata nel mese ":value"', + 'search_modifier_not_created_at_on_day' => 'La transazione non è stata creata il giorno del mese ":value"', + 'search_modifier_created_at_before_year' => 'La transazione è stata creata durante o prima dell\'anno ":value"', + 'search_modifier_created_at_before_month' => 'La transazione è stata creata durante o prima del mese ":value"', + 'search_modifier_created_at_before_day' => 'La transazione è stata creata durante o prima del giorno del mese ":value"', + 'search_modifier_created_at_after_year' => 'La transazione è stata creata durante o dopo l\'anno ":value"', + 'search_modifier_created_at_after_month' => 'La transazione è stata creata durante o dopo il mese ":value"', + 'search_modifier_created_at_after_day' => 'La transazione è stata creata durante o dopo il giorno del mese ":value"', + 'search_modifier_interest_date_before' => 'La data d\'interesse della transazione è il o prima del ":value"', + 'search_modifier_interest_date_after' => 'La data d\'interesse della transazione è il o dopo il ":value"', + 'search_modifier_book_date_on' => 'La data di prenotazione della transazione è il ":value"', + 'search_modifier_not_book_date_on' => 'La data di prenotazione della transazione non è il ":value"', + 'search_modifier_book_date_before' => 'La data di prenotazione della transazione è il o prima del ":value"', + 'search_modifier_book_date_after' => 'La data di prenotazione della transazione è il o dopo il ":value"', + 'search_modifier_process_date_on' => 'La data di elaborazione della transazione è il ":value"', + 'search_modifier_not_process_date_on' => 'La data di elaborazione della transazione non è il ":value"', + 'search_modifier_process_date_before' => 'La data di elaborazione della transazione è il o prima del ":value"', + 'search_modifier_process_date_after' => 'La data di elaborazione della transazione è il o dopo il ":value"', + 'search_modifier_due_date_on' => 'La data di scadenza della transazione è il ":value"', + 'search_modifier_not_due_date_on' => 'La data di scadenza della transazione non è il ":value"', + 'search_modifier_due_date_before' => 'La data di scadenza della transazione è il o prima del ":value"', + 'search_modifier_due_date_after' => 'La data di scadenza della transazione è il o dopo il ":value"', + 'search_modifier_payment_date_on' => 'La data di pagamento della transazione è il ":value"', + 'search_modifier_not_payment_date_on' => 'La data di pagamento della transazione non è il ":value"', + 'search_modifier_payment_date_before' => 'La data di pagamento della transazione è il o prima del ":value"', + 'search_modifier_payment_date_after' => 'La data di pagamento della transazione è il o dopo il ":value"', + 'search_modifier_invoice_date_on' => 'La data di fatturazione della transazione è il ":value"', + 'search_modifier_not_invoice_date_on' => 'La data di fatturazione della transazione non è il ":value"', + 'search_modifier_invoice_date_before' => 'La data di fatturazione della transazione è il o prima del ":value"', + 'search_modifier_invoice_date_after' => 'La data di fatturazione della transazione è il o dopo il ":value"', + 'search_modifier_created_at_on' => 'La transazione è stata creata il giorno ":value"', + 'search_modifier_not_created_at_on' => 'La transazione non è stata creata il giorno ":value"', + 'search_modifier_created_at_before' => 'La transazione è stata creata il o prima del ":value"', + 'search_modifier_created_at_after' => 'La transazione è stata creata il o dopo il ":value"', + 'search_modifier_updated_at_on' => 'La transazione è stata aggiornata il ":value"', + 'search_modifier_not_updated_at_on' => 'La transazione non è stata aggiornata il ":value"', + 'search_modifier_updated_at_before' => 'La transazione è stata aggiornata il o prima del ":value"', + 'search_modifier_updated_at_after' => 'La transazione è stata aggiornata il o dopo il ":value"', - 'search_modifier_attachment_name_is' => 'Il nome di qualsiasi allegato è ":value"', - 'search_modifier_attachment_name_contains' => 'Il nome di qualsiasi allegato contiene ":value"', - 'search_modifier_attachment_name_starts' => 'Il nome di qualsiasi allegato inizia con ":value"', - 'search_modifier_attachment_name_ends' => 'Il nome di qualsiasi allegato finisce con ":value"', - 'search_modifier_attachment_notes_are' => 'Qualsiasi nota dell\'allegato è ":value"', - 'search_modifier_attachment_notes_contains' => 'Qualsiasi nota dell\'allegato contiene ":value"', - 'search_modifier_attachment_notes_starts' => 'Le note di qualsiasi allegato iniziano con ":value"', - 'search_modifier_attachment_notes_ends' => 'Le note di qualsiasi allegato terminano con ":value"', - 'search_modifier_not_attachment_name_is' => 'Nessun nome degli allegati ":value"', - 'search_modifier_not_attachment_name_contains' => 'Nessun nome degli allegati contiene ":value"', - 'search_modifier_not_attachment_name_starts' => 'Nessun nome degli allegati inizia con ":value"', - 'search_modifier_not_attachment_name_ends' => 'Nessun nome degli allegati termina con ":value"', - 'search_modifier_not_attachment_notes_are' => 'Nessuna nota degli allegati è ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Nessuna nota degli allegati contiene ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Nessuna nota degli allegati inizia con ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Nessuna nota degli allegati termina con ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT è ":value"', - 'update_rule_from_query' => 'Aggiorna la regola ":rule" dalla ricerca', - 'create_rule_from_query' => 'Crea nuova regola dalla ricerca', - 'rule_from_search_words' => 'Il motore delle regole ha difficoltà a gestire ":string". La regola suggerita che si adatta alla tua ricerca potrebbe dare risultati diversi. Verifica attentamente che la regola funzioni.', + 'search_modifier_attachment_name_is' => 'Il nome di qualsiasi allegato è ":value"', + 'search_modifier_attachment_name_contains' => 'Il nome di qualsiasi allegato contiene ":value"', + 'search_modifier_attachment_name_starts' => 'Il nome di qualsiasi allegato inizia con ":value"', + 'search_modifier_attachment_name_ends' => 'Il nome di qualsiasi allegato finisce con ":value"', + 'search_modifier_attachment_notes_are' => 'Qualsiasi nota dell\'allegato è ":value"', + 'search_modifier_attachment_notes_contains' => 'Qualsiasi nota dell\'allegato contiene ":value"', + 'search_modifier_attachment_notes_starts' => 'Le note di qualsiasi allegato iniziano con ":value"', + 'search_modifier_attachment_notes_ends' => 'Le note di qualsiasi allegato terminano con ":value"', + 'search_modifier_not_attachment_name_is' => 'Nessun nome degli allegati ":value"', + 'search_modifier_not_attachment_name_contains' => 'Nessun nome degli allegati contiene ":value"', + 'search_modifier_not_attachment_name_starts' => 'Nessun nome degli allegati inizia con ":value"', + 'search_modifier_not_attachment_name_ends' => 'Nessun nome degli allegati termina con ":value"', + 'search_modifier_not_attachment_notes_are' => 'Nessuna nota degli allegati è ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Nessuna nota degli allegati contiene ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Nessuna nota degli allegati inizia con ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Nessuna nota degli allegati termina con ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT è ":value"', + 'update_rule_from_query' => 'Aggiorna la regola ":rule" dalla ricerca', + 'create_rule_from_query' => 'Crea nuova regola dalla ricerca', + 'rule_from_search_words' => 'Il motore delle regole ha difficoltà a gestire ":string". La regola suggerita che si adatta alla tua ricerca potrebbe dare risultati diversi. Verifica attentamente che la regola funzioni.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Alla ricerca vengono applicati anche questi modificatori:', - 'general_search_error' => 'Si è verificato un errore durante la ricerca. Si prega di controllare i file di registro per ulteriori informazioni.', - 'search_box' => 'Ricerca', - 'search_box_intro' => 'Benvenuto nella funzione di ricerca di Firefly III. Inserisci la query di ricerca nella casella. Assicurati di controllare il file della guida perché la ricerca è abbastanza avanzata.', - 'search_error' => 'Errore durante la ricerca', - 'search_searching' => 'Ricerca in corso...', - 'search_results' => 'Risultati ricerca', + 'modifiers_applies_are' => 'Alla ricerca vengono applicati anche questi modificatori:', + 'general_search_error' => 'Si è verificato un errore durante la ricerca. Si prega di controllare i file di registro per ulteriori informazioni.', + 'search_box' => 'Ricerca', + 'search_box_intro' => 'Benvenuto nella funzione di ricerca di Firefly III. Inserisci la query di ricerca nella casella. Assicurati di controllare il file della guida perché la ricerca è abbastanza avanzata.', + 'search_error' => 'Errore durante la ricerca', + 'search_searching' => 'Ricerca in corso...', + 'search_results' => 'Risultati ricerca', // repeat frequencies: - 'repeat_freq_yearly' => 'annualmente', - 'repeat_freq_half-year' => 'semestralmente', - 'repeat_freq_quarterly' => 'trimestralmente', - 'repeat_freq_monthly' => 'mensilmente', - 'repeat_freq_weekly' => 'settimanalmente', - 'repeat_freq_daily' => 'ogni giorno', - 'daily' => 'ogni giorno', - 'weekly' => 'settimanale', - 'quarterly' => 'trimestrale', - 'half-year' => 'ogni sei mesi', - 'yearly' => 'annuale', + 'repeat_freq_yearly' => 'annualmente', + 'repeat_freq_half-year' => 'semestralmente', + 'repeat_freq_quarterly' => 'trimestralmente', + 'repeat_freq_monthly' => 'mensilmente', + 'repeat_freq_weekly' => 'settimanalmente', + 'repeat_freq_daily' => 'ogni giorno', + 'daily' => 'ogni giorno', + 'weekly' => 'settimanale', + 'quarterly' => 'trimestrale', + 'half-year' => 'ogni sei mesi', + 'yearly' => 'annuale', // rules - 'is_not_rule_trigger' => 'Non', - 'cannot_fire_inactive_rules' => 'Non puoi eseguire regole inattive.', - 'show_triggers' => 'Mostra inneschi', - 'show_actions' => 'Mostra azioni', - 'rules' => 'Regole', - 'rule_name' => 'Nome regola', - 'rule_triggers' => 'La regola si innesca quando', - 'rule_actions' => 'La regola eseguirà', - 'new_rule' => 'Nuova regola', - 'new_rule_group' => 'Nuovo gruppo di regole', - 'rule_priority_up' => 'Dai maggiore priorità alla regola', - 'rule_priority_down' => 'Dai minore priorità alla regola', - 'make_new_rule_group' => 'Crea un nuovo gruppo di regole', - 'store_new_rule_group' => 'Memorizza un nuovo gruppo di regole', - 'created_new_rule_group' => 'Nuovo gruppo di regole ":title" memorizzate!', - 'updated_rule_group' => 'Gruppo di regole ":title" aggiornato con successo.', - 'edit_rule_group' => 'Modifica il gruppo di regole ":title"', - 'duplicate_rule' => 'Duplica regola ":title"', - 'rule_copy_of' => 'Copia di ":title"', - 'duplicated_rule' => 'Regola ":title" duplicata come ":newTitle"', - 'delete_rule_group' => 'Elimina il gruppo di regole ":title"', - 'deleted_rule_group' => 'Gruppo regole eliminato ":title"', - 'update_rule_group' => 'Aggiorna gruppo di regole', - 'no_rules_in_group' => 'Non ci sono regole in questo gruppo', - 'move_rule_group_up' => 'Sposta sopra il gruppo di regole', - 'move_rule_group_down' => 'Sposta sotto il gruppo di regole', - 'save_rules_by_moving' => 'Salva questa regola spostandola in un altro gruppo di regole:|Salva queste regole spostandole in un altro gruppo di regole:', - 'make_new_rule' => 'Crea una nuova regola nel gruppo di regole ":title"', - 'make_new_rule_no_group' => 'Crea una nuova regola', - 'instructions_rule_from_bill' => 'Per abbinare le transazioni alla tua nuova bolletta ":name" Firefly III può creare una regola verrà automaticamente controllata per ogni transazione che memorizzi. Verifica i dettagli sottostanti e salva la regola perché Firefly III abbini le transazioni alla tua nuova bolletta.', - 'instructions_rule_from_journal' => 'Crea una regola basata su una delle tue transazioni. Completa o conferma il modulo sottostante.', - 'rule_is_strict' => 'regola severa', - 'rule_is_not_strict' => 'regola non severa', - 'rule_help_stop_processing' => 'Quando selezioni questa casella, le regole successive in questo gruppo non verranno eseguite.', - 'rule_help_strict' => 'Nelle regole severe TUTTI i trigger devono venire azionati perché l\'azione venga eseguita. Nelle regole non severe, è sufficiente UN QUALSIASI trigger perché l\'azione venga eseguita.', - 'rule_help_active' => 'Le regole non attive non verranno mai eseguite.', - 'stored_new_rule' => 'Nuova regola memorizzata con titolo ":title"', - 'deleted_rule' => 'Regola eliminata con titolo ":title"', - 'store_new_rule' => 'Salva nuova regola', - 'updated_rule' => 'Regola aggiornata con titolo ":title"', - 'default_rule_group_name' => 'Regole predefinite', - 'default_rule_group_description' => 'Tutte le tue regole che non sono in un gruppo specifico.', - 'trigger' => 'Trigger', - 'trigger_value' => 'Attiva al valore', - 'stop_processing_other_triggers' => 'Smetti di elaborare altri trigger', - 'add_rule_trigger' => 'Aggiungi un nuovo trigger', - 'action' => 'Azione', - 'action_value' => 'Valore azione', - 'stop_executing_other_actions' => 'Smetti di eseguire altre azioni', - 'add_rule_action' => 'Aggiungi nuova azione', - 'edit_rule' => 'Modifica regola ":title"', - 'delete_rule' => 'Elimina regola ":title"', - 'update_rule' => 'Aggiorna regola', - 'test_rule_triggers' => 'Vedi le transazioni corrispondenti', - 'warning_no_matching_transactions' => 'Nessuna transazione corrispondente trovata.', - 'warning_no_valid_triggers' => 'Nessun trigger valido fornito.', - 'apply_rule_selection' => 'Applica la regola ":title" a una selezione delle tue transazioni', - 'apply_rule_selection_intro' => 'Regole come ":title" sono normalmente applicate solo a transazioni nuove o aggiornate, ma puoi dire a Firefly III di eseguirle su una selezione delle tue transazioni esistenti. Questo può essere utile quando hai aggiornato una regola e hai bisogno che le modifiche vengano applicate a tutte le altre transazioni.', - 'include_transactions_from_accounts' => 'Includi transazioni da questi conti', - 'include' => 'Includere?', - 'applied_rule_selection' => '{0} Nessuna transazione della selezione è stata cambiata dalla regola ":title".|[1] Una transazione della selezione è stata modificata dalla regola ":title".|[2,*] :count transazioni della selezione sono state modificate dalla regola ":title".', - 'execute' => 'Eseguire', - 'apply_rule_group_selection' => 'Applica il gruppo di regole ":title" a una selezione delle tue transazioni', - 'apply_rule_group_selection_intro' => 'Gruppi di regole come ":title" sono normalmente applicati solo a transazioni nuove o aggiornate, ma puoi dire a Firefly III di eseguire tutte le regole in questo gruppo su una selezione delle tue transazioni esistenti. Questo può essere utile quando hai aggiornato un gruppo di regole e hai bisogno delle modifiche da applicare a tutte le tue altre transazioni.', - 'applied_rule_group_selection' => 'Il gruppo di regole ":title" è stato applicato alla selezione.', + 'is_not_rule_trigger' => 'Non', + 'cannot_fire_inactive_rules' => 'Non puoi eseguire regole inattive.', + 'show_triggers' => 'Mostra inneschi', + 'show_actions' => 'Mostra azioni', + 'rules' => 'Regole', + 'rule_name' => 'Nome regola', + 'rule_triggers' => 'La regola si innesca quando', + 'rule_actions' => 'La regola eseguirà', + 'new_rule' => 'Nuova regola', + 'new_rule_group' => 'Nuovo gruppo di regole', + 'rule_priority_up' => 'Dai maggiore priorità alla regola', + 'rule_priority_down' => 'Dai minore priorità alla regola', + 'make_new_rule_group' => 'Crea un nuovo gruppo di regole', + 'store_new_rule_group' => 'Memorizza un nuovo gruppo di regole', + 'created_new_rule_group' => 'Nuovo gruppo di regole ":title" memorizzate!', + 'updated_rule_group' => 'Gruppo di regole ":title" aggiornato con successo.', + 'edit_rule_group' => 'Modifica il gruppo di regole ":title"', + 'duplicate_rule' => 'Duplica regola ":title"', + 'rule_copy_of' => 'Copia di ":title"', + 'duplicated_rule' => 'Regola ":title" duplicata come ":newTitle"', + 'delete_rule_group' => 'Elimina il gruppo di regole ":title"', + 'deleted_rule_group' => 'Gruppo regole eliminato ":title"', + 'update_rule_group' => 'Aggiorna gruppo di regole', + 'no_rules_in_group' => 'Non ci sono regole in questo gruppo', + 'move_rule_group_up' => 'Sposta sopra il gruppo di regole', + 'move_rule_group_down' => 'Sposta sotto il gruppo di regole', + 'save_rules_by_moving' => 'Salva questa regola spostandola in un altro gruppo di regole:|Salva queste regole spostandole in un altro gruppo di regole:', + 'make_new_rule' => 'Crea una nuova regola nel gruppo di regole ":title"', + 'make_new_rule_no_group' => 'Crea una nuova regola', + 'instructions_rule_from_bill' => 'Per abbinare le transazioni alla tua nuova bolletta ":name" Firefly III può creare una regola verrà automaticamente controllata per ogni transazione che memorizzi. Verifica i dettagli sottostanti e salva la regola perché Firefly III abbini le transazioni alla tua nuova bolletta.', + 'instructions_rule_from_journal' => 'Crea una regola basata su una delle tue transazioni. Completa o conferma il modulo sottostante.', + 'rule_is_strict' => 'regola severa', + 'rule_is_not_strict' => 'regola non severa', + 'rule_help_stop_processing' => 'Quando selezioni questa casella, le regole successive in questo gruppo non verranno eseguite.', + 'rule_help_strict' => 'Nelle regole severe TUTTI i trigger devono venire azionati perché l\'azione venga eseguita. Nelle regole non severe, è sufficiente UN QUALSIASI trigger perché l\'azione venga eseguita.', + 'rule_help_active' => 'Le regole non attive non verranno mai eseguite.', + 'stored_new_rule' => 'Nuova regola memorizzata con titolo ":title"', + 'deleted_rule' => 'Regola eliminata con titolo ":title"', + 'store_new_rule' => 'Salva nuova regola', + 'updated_rule' => 'Regola aggiornata con titolo ":title"', + 'default_rule_group_name' => 'Regole predefinite', + 'default_rule_group_description' => 'Tutte le tue regole che non sono in un gruppo specifico.', + 'trigger' => 'Trigger', + 'trigger_value' => 'Attiva al valore', + 'stop_processing_other_triggers' => 'Smetti di elaborare altri trigger', + 'add_rule_trigger' => 'Aggiungi un nuovo trigger', + 'action' => 'Azione', + 'action_value' => 'Valore azione', + 'stop_executing_other_actions' => 'Smetti di eseguire altre azioni', + 'add_rule_action' => 'Aggiungi nuova azione', + 'edit_rule' => 'Modifica regola ":title"', + 'delete_rule' => 'Elimina regola ":title"', + 'update_rule' => 'Aggiorna regola', + 'test_rule_triggers' => 'Vedi le transazioni corrispondenti', + 'warning_no_matching_transactions' => 'Nessuna transazione corrispondente trovata.', + 'warning_no_valid_triggers' => 'Nessun trigger valido fornito.', + 'apply_rule_selection' => 'Applica la regola ":title" a una selezione delle tue transazioni', + 'apply_rule_selection_intro' => 'Regole come ":title" sono normalmente applicate solo a transazioni nuove o aggiornate, ma puoi dire a Firefly III di eseguirle su una selezione delle tue transazioni esistenti. Questo può essere utile quando hai aggiornato una regola e hai bisogno che le modifiche vengano applicate a tutte le altre transazioni.', + 'include_transactions_from_accounts' => 'Includi transazioni da questi conti', + 'include' => 'Includere?', + 'applied_rule_selection' => '{0} Nessuna transazione della selezione è stata cambiata dalla regola ":title".|[1] Una transazione della selezione è stata modificata dalla regola ":title".|[2,*] :count transazioni della selezione sono state modificate dalla regola ":title".', + 'execute' => 'Eseguire', + 'apply_rule_group_selection' => 'Applica il gruppo di regole ":title" a una selezione delle tue transazioni', + 'apply_rule_group_selection_intro' => 'Gruppi di regole come ":title" sono normalmente applicati solo a transazioni nuove o aggiornate, ma puoi dire a Firefly III di eseguire tutte le regole in questo gruppo su una selezione delle tue transazioni esistenti. Questo può essere utile quando hai aggiornato un gruppo di regole e hai bisogno delle modifiche da applicare a tutte le tue altre transazioni.', + 'applied_rule_group_selection' => 'Il gruppo di regole ":title" è stato applicato alla selezione.', // actions and triggers - 'rule_trigger_store_journal' => 'Quando una transazione viene creata', - 'rule_trigger_update_journal' => 'Quando una transazione viene aggiornata', - 'rule_trigger_user_action' => 'L\'azione dell\'utente è ":trigger_value"', + 'rule_trigger_store_journal' => 'Quando una transazione viene creata', + 'rule_trigger_update_journal' => 'Quando una transazione viene aggiornata', + 'rule_trigger_user_action' => 'L\'azione dell\'utente è ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Il nome del conto di origine inizia con..', - 'rule_trigger_source_account_starts' => 'Il nome del conto di origine inizia con ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Il nome del conto di origine termina con..', - 'rule_trigger_source_account_ends' => 'Il nome del conto di origine termina con ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Il nome del conto di origine è..', - 'rule_trigger_source_account_is' => 'Il nome del conto di origine è ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Il nome del conto di origine contiene...', - 'rule_trigger_source_account_contains' => 'Il nome del conto di origine contiene ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Entrambi gli ID del conto sono esattamente..', - 'rule_trigger_account_id' => 'Entrambi gli ID dei conti sono esattamente :trigger_value', - 'rule_trigger_source_account_id_choice' => 'L\'ID del conto di origine è esattamente...', - 'rule_trigger_source_account_id' => 'L\'ID del conto di origine è esattamente :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'L\'ID del conto di destinazione è esattamente...', - 'rule_trigger_destination_account_id' => 'L\'ID del conto di destinazione è esattamente :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Entrambi i conti sono contanti', - 'rule_trigger_account_is_cash' => 'Entrambi i conti sono contanti', - 'rule_trigger_source_is_cash_choice' => 'Il conte di origine è un conto (in contanti)', - 'rule_trigger_source_is_cash' => 'Il conte di origine è un conto (in contanti)', - 'rule_trigger_destination_is_cash_choice' => 'Il conto destinazione è un conto (in contanti)', - 'rule_trigger_destination_is_cash' => 'Il conto destinazione è un conto (in contanti)', - 'rule_trigger_source_account_nr_starts_choice' => 'Il numero del conto di origine / l\'IBAN inizia con...', - 'rule_trigger_source_account_nr_starts' => 'Il numero del conto di origine / l\'IBAN inizia con ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Il numero del conto di origine / l\'IBAN termina con...', - 'rule_trigger_source_account_nr_ends' => 'Il numero del conto di origine / l\'IBAN termina con ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Il numero del conto di origine / l\'IBAN è...', - 'rule_trigger_source_account_nr_is' => 'Il numero del conto di origine / l\'IBAN è ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Il numero del conto di origine / l\'IBAN contiene...', - 'rule_trigger_source_account_nr_contains' => 'Il numero del conto di origine / IBAN contiene ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Il nome del conto di destinazione inizia con...', - 'rule_trigger_destination_account_starts' => 'Il nome del conto di destinazione inizia con ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Il nome del conto di destinazione termina con...', - 'rule_trigger_destination_account_ends' => 'Il nome del conto di destinazione termina con ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Il nome del conto di destinazione è..', - 'rule_trigger_destination_account_is' => 'Il nome del conto di destinazione è ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Il nome del conto di destinazione contiene..', - 'rule_trigger_destination_account_contains' => 'Il conto di destinazione contiene ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Il numero del conto di destinazione / l\'IBAN inizia con..', - 'rule_trigger_destination_account_nr_starts' => 'Il numero del conto di destinazione / l\'IBAN inizia con ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Il numero del conto di destinazione / l\'IBAN termina con..', - 'rule_trigger_destination_account_nr_ends' => 'Il numero del conto di destinazione / l\'IBAN termina con ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Il numero del conto di destinazione / l\'IBAN è..', - 'rule_trigger_destination_account_nr_is' => 'Il numero del conto di destinazione / l\'IBAN è ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Il numero del conto di destinazione / l\'IBAN contiene..', - 'rule_trigger_destination_account_nr_contains' => 'Il numero del conto di destinazione / l\'IBAN contiene ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'La transazione è di tipo...', - 'rule_trigger_transaction_type' => 'La transazione è di tipo ":trigger_value"', - 'rule_trigger_category_is_choice' => 'La categoria è...', - 'rule_trigger_category_is' => 'La categoria è ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'L\'importo è inferiore o uguale a ..', - 'rule_trigger_amount_less' => 'L\'importo è inferiore o uguale a :trigger_value', - 'rule_trigger_amount_is_choice' => 'L\'importo è..', - 'rule_trigger_amount_is' => 'L\'importo è :trigger_value', - 'rule_trigger_amount_more_choice' => 'L\'importo è superiore o uguale a..', - 'rule_trigger_amount_more' => 'L\'importo è superiore o uguale a :trigger_value', - 'rule_trigger_description_starts_choice' => 'La descrizione inizia con...', - 'rule_trigger_description_starts' => 'La descrizione inizia con ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'La descrizione termina con...', - 'rule_trigger_description_ends' => 'La descrizione termina con ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'La descrizione contiene...', - 'rule_trigger_description_contains' => 'La descrizione contiene ":trigger_value"', - 'rule_trigger_description_is_choice' => 'La descrizione è...', - 'rule_trigger_description_is' => 'La descrizione è ":trigger_value"', - 'rule_trigger_date_on_choice' => 'La data della transizione è..', - 'rule_trigger_date_on' => 'La data della transizione è ":trigger_value"', - 'rule_trigger_date_before_choice' => 'La data della transazione è antecedente al...', - 'rule_trigger_date_before' => 'La data della transazione è antecedente al ":trigger_value"', - 'rule_trigger_date_after_choice' => 'La data della transazione è successiva al...', - 'rule_trigger_date_after' => 'La data della transazione è successiva al ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'La transazione è avvenuta il..', - 'rule_trigger_created_at_on' => 'La transazione è avvenuta il ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'La transazione è stata modificata l\'ultima volta il..', - 'rule_trigger_updated_at_on' => 'Transazione modificata l\'ultima volta il ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Il budget è...', - 'rule_trigger_budget_is' => 'Il budget è ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Qualsiasi tag è..', - 'rule_trigger_tag_is' => 'Qualsiasi tag è ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'La valuta della transazione è...', - 'rule_trigger_currency_is' => 'La valuta della transazione è ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'La valuta estera della transazione è...', - 'rule_trigger_foreign_currency_is' => 'La valuta estera della transazione è ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Ha almeno così tanti allegati', - 'rule_trigger_has_attachments' => 'Ha almeno :trigger_value allegato/i', - 'rule_trigger_has_no_category_choice' => 'Non ha categoria', - 'rule_trigger_has_no_category' => 'La transazione non ha categoria', - 'rule_trigger_has_any_category_choice' => 'Ha una (qualsiasi) categoria', - 'rule_trigger_has_any_category' => 'La transazione ha una (qualsiasi) categoria', - 'rule_trigger_has_no_budget_choice' => 'Non ha un budget', - 'rule_trigger_has_no_budget' => 'La transazione non ha un budget', - 'rule_trigger_has_any_budget_choice' => 'Ha un (qualsiasi) budget', - 'rule_trigger_has_any_budget' => 'La transazione ha un (qualsiasi) budget', - 'rule_trigger_has_no_bill_choice' => 'Non ha bollette', - 'rule_trigger_has_no_bill' => 'La transazione non ha bollette', - 'rule_trigger_has_any_bill_choice' => 'Ha una (qualsiasi) bolletta', - 'rule_trigger_has_any_bill' => 'La transazione ha una (qualsiasi) bolletta', - 'rule_trigger_has_no_tag_choice' => 'Non ha etichette', - 'rule_trigger_has_no_tag' => 'La transazione non ha etichette', - 'rule_trigger_has_any_tag_choice' => 'Ha una o più etichette (qualsiasi)', - 'rule_trigger_has_any_tag' => 'La transazione ha una o più etichette (qualsiasi)', - 'rule_trigger_any_notes_choice' => 'Ha una (qualsiasi) nota', - 'rule_trigger_any_notes' => 'La transazione ha una (qualsiasi) nota', - 'rule_trigger_no_notes_choice' => 'Non ha note', - 'rule_trigger_no_notes' => 'La transazione non ha note', - 'rule_trigger_notes_is_choice' => 'Le note sono..', - 'rule_trigger_notes_is' => 'Le note sono ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Le note contengono..', - 'rule_trigger_notes_contains' => 'Le note contengono ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Le note iniziano per..', - 'rule_trigger_notes_starts' => 'Le note iniziano per ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Le note terminano per..', - 'rule_trigger_notes_ends' => 'Le note terminano per ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'La bollettà è...', - 'rule_trigger_bill_is' => 'La bolletta è ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'L\'ID esterno è..', - 'rule_trigger_external_id_is' => 'L\'ID esterno è ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Il riferimento interno è..', - 'rule_trigger_internal_reference_is' => 'Il riferimento interno è ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'L\'ID journal della transazione è...', - 'rule_trigger_journal_id' => 'L\'ID journal della transazione è ":trigger_value"', - 'rule_trigger_any_external_url' => 'La transazione contiene un URL esterno (qualsiasi)', - 'rule_trigger_any_external_url_choice' => 'La transazione contiene un URL esterno (qualsiasi)', - 'rule_trigger_any_external_id' => 'La transazione contiene un ID esterno (qualsiasi)', - 'rule_trigger_any_external_id_choice' => 'La transazione contiene un ID esterno (qualsiasi)', - 'rule_trigger_no_external_url_choice' => 'La transazione non ha URL esterno', - 'rule_trigger_no_external_url' => 'La transazione non ha URL esterno', - 'rule_trigger_no_external_id_choice' => 'La transazione non ha ID esterno', - 'rule_trigger_no_external_id' => 'La transazione non ha ID esterno', - 'rule_trigger_id_choice' => 'L\'ID della transazione è...', - 'rule_trigger_id' => 'L\'ID della transazione è ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT è..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT è ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Il nome del conto di origine inizia con..', + 'rule_trigger_source_account_starts' => 'Il nome del conto di origine inizia con ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Il nome del conto di origine termina con..', + 'rule_trigger_source_account_ends' => 'Il nome del conto di origine termina con ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Il nome del conto di origine è..', + 'rule_trigger_source_account_is' => 'Il nome del conto di origine è ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Il nome del conto di origine contiene...', + 'rule_trigger_source_account_contains' => 'Il nome del conto di origine contiene ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Entrambi gli ID del conto sono esattamente..', + 'rule_trigger_account_id' => 'Entrambi gli ID dei conti sono esattamente :trigger_value', + 'rule_trigger_source_account_id_choice' => 'L\'ID del conto di origine è esattamente...', + 'rule_trigger_source_account_id' => 'L\'ID del conto di origine è esattamente :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'L\'ID del conto di destinazione è esattamente...', + 'rule_trigger_destination_account_id' => 'L\'ID del conto di destinazione è esattamente :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Entrambi i conti sono contanti', + 'rule_trigger_account_is_cash' => 'Entrambi i conti sono contanti', + 'rule_trigger_source_is_cash_choice' => 'Il conte di origine è un conto (in contanti)', + 'rule_trigger_source_is_cash' => 'Il conte di origine è un conto (in contanti)', + 'rule_trigger_destination_is_cash_choice' => 'Il conto destinazione è un conto (in contanti)', + 'rule_trigger_destination_is_cash' => 'Il conto destinazione è un conto (in contanti)', + 'rule_trigger_source_account_nr_starts_choice' => 'Il numero del conto di origine / l\'IBAN inizia con...', + 'rule_trigger_source_account_nr_starts' => 'Il numero del conto di origine / l\'IBAN inizia con ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Il numero del conto di origine / l\'IBAN termina con...', + 'rule_trigger_source_account_nr_ends' => 'Il numero del conto di origine / l\'IBAN termina con ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Il numero del conto di origine / l\'IBAN è...', + 'rule_trigger_source_account_nr_is' => 'Il numero del conto di origine / l\'IBAN è ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Il numero del conto di origine / l\'IBAN contiene...', + 'rule_trigger_source_account_nr_contains' => 'Il numero del conto di origine / IBAN contiene ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Il nome del conto di destinazione inizia con...', + 'rule_trigger_destination_account_starts' => 'Il nome del conto di destinazione inizia con ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Il nome del conto di destinazione termina con...', + 'rule_trigger_destination_account_ends' => 'Il nome del conto di destinazione termina con ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Il nome del conto di destinazione è..', + 'rule_trigger_destination_account_is' => 'Il nome del conto di destinazione è ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Il nome del conto di destinazione contiene..', + 'rule_trigger_destination_account_contains' => 'Il conto di destinazione contiene ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Il numero del conto di destinazione / l\'IBAN inizia con..', + 'rule_trigger_destination_account_nr_starts' => 'Il numero del conto di destinazione / l\'IBAN inizia con ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Il numero del conto di destinazione / l\'IBAN termina con..', + 'rule_trigger_destination_account_nr_ends' => 'Il numero del conto di destinazione / l\'IBAN termina con ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Il numero del conto di destinazione / l\'IBAN è..', + 'rule_trigger_destination_account_nr_is' => 'Il numero del conto di destinazione / l\'IBAN è ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Il numero del conto di destinazione / l\'IBAN contiene..', + 'rule_trigger_destination_account_nr_contains' => 'Il numero del conto di destinazione / l\'IBAN contiene ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'La transazione è di tipo...', + 'rule_trigger_transaction_type' => 'La transazione è di tipo ":trigger_value"', + 'rule_trigger_category_is_choice' => 'La categoria è...', + 'rule_trigger_category_is' => 'La categoria è ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'L\'importo è inferiore o uguale a ..', + 'rule_trigger_amount_less' => 'L\'importo è inferiore o uguale a :trigger_value', + 'rule_trigger_amount_is_choice' => 'L\'importo è..', + 'rule_trigger_amount_is' => 'L\'importo è :trigger_value', + 'rule_trigger_amount_more_choice' => 'L\'importo è superiore o uguale a..', + 'rule_trigger_amount_more' => 'L\'importo è superiore o uguale a :trigger_value', + 'rule_trigger_description_starts_choice' => 'La descrizione inizia con...', + 'rule_trigger_description_starts' => 'La descrizione inizia con ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'La descrizione termina con...', + 'rule_trigger_description_ends' => 'La descrizione termina con ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'La descrizione contiene...', + 'rule_trigger_description_contains' => 'La descrizione contiene ":trigger_value"', + 'rule_trigger_description_is_choice' => 'La descrizione è...', + 'rule_trigger_description_is' => 'La descrizione è ":trigger_value"', + 'rule_trigger_date_on_choice' => 'La data della transizione è..', + 'rule_trigger_date_on' => 'La data della transizione è ":trigger_value"', + 'rule_trigger_date_before_choice' => 'La data della transazione è antecedente al...', + 'rule_trigger_date_before' => 'La data della transazione è antecedente al ":trigger_value"', + 'rule_trigger_date_after_choice' => 'La data della transazione è successiva al...', + 'rule_trigger_date_after' => 'La data della transazione è successiva al ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'La transazione è avvenuta il..', + 'rule_trigger_created_at_on' => 'La transazione è avvenuta il ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'La transazione è stata modificata l\'ultima volta il..', + 'rule_trigger_updated_at_on' => 'Transazione modificata l\'ultima volta il ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Il budget è...', + 'rule_trigger_budget_is' => 'Il budget è ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Qualsiasi tag è..', + 'rule_trigger_tag_is' => 'Qualsiasi tag è ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'La valuta della transazione è...', + 'rule_trigger_currency_is' => 'La valuta della transazione è ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'La valuta estera della transazione è...', + 'rule_trigger_foreign_currency_is' => 'La valuta estera della transazione è ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Ha almeno così tanti allegati', + 'rule_trigger_has_attachments' => 'Ha almeno :trigger_value allegato/i', + 'rule_trigger_has_no_category_choice' => 'Non ha categoria', + 'rule_trigger_has_no_category' => 'La transazione non ha categoria', + 'rule_trigger_has_any_category_choice' => 'Ha una (qualsiasi) categoria', + 'rule_trigger_has_any_category' => 'La transazione ha una (qualsiasi) categoria', + 'rule_trigger_has_no_budget_choice' => 'Non ha un budget', + 'rule_trigger_has_no_budget' => 'La transazione non ha un budget', + 'rule_trigger_has_any_budget_choice' => 'Ha un (qualsiasi) budget', + 'rule_trigger_has_any_budget' => 'La transazione ha un (qualsiasi) budget', + 'rule_trigger_has_no_bill_choice' => 'Non ha bollette', + 'rule_trigger_has_no_bill' => 'La transazione non ha bollette', + 'rule_trigger_has_any_bill_choice' => 'Ha una (qualsiasi) bolletta', + 'rule_trigger_has_any_bill' => 'La transazione ha una (qualsiasi) bolletta', + 'rule_trigger_has_no_tag_choice' => 'Non ha etichette', + 'rule_trigger_has_no_tag' => 'La transazione non ha etichette', + 'rule_trigger_has_any_tag_choice' => 'Ha una o più etichette (qualsiasi)', + 'rule_trigger_has_any_tag' => 'La transazione ha una o più etichette (qualsiasi)', + 'rule_trigger_any_notes_choice' => 'Ha una (qualsiasi) nota', + 'rule_trigger_any_notes' => 'La transazione ha una (qualsiasi) nota', + 'rule_trigger_no_notes_choice' => 'Non ha note', + 'rule_trigger_no_notes' => 'La transazione non ha note', + 'rule_trigger_notes_is_choice' => 'Le note sono..', + 'rule_trigger_notes_is' => 'Le note sono ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Le note contengono..', + 'rule_trigger_notes_contains' => 'Le note contengono ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Le note iniziano per..', + 'rule_trigger_notes_starts' => 'Le note iniziano per ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Le note terminano per..', + 'rule_trigger_notes_ends' => 'Le note terminano per ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'La bollettà è...', + 'rule_trigger_bill_is' => 'La bolletta è ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'L\'ID esterno è..', + 'rule_trigger_external_id_is' => 'L\'ID esterno è ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Il riferimento interno è..', + 'rule_trigger_internal_reference_is' => 'Il riferimento interno è ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'L\'ID journal della transazione è...', + 'rule_trigger_journal_id' => 'L\'ID journal della transazione è ":trigger_value"', + 'rule_trigger_any_external_url' => 'La transazione contiene un URL esterno (qualsiasi)', + 'rule_trigger_any_external_url_choice' => 'La transazione contiene un URL esterno (qualsiasi)', + 'rule_trigger_any_external_id' => 'La transazione contiene un ID esterno (qualsiasi)', + 'rule_trigger_any_external_id_choice' => 'La transazione contiene un ID esterno (qualsiasi)', + 'rule_trigger_no_external_url_choice' => 'La transazione non ha URL esterno', + 'rule_trigger_no_external_url' => 'La transazione non ha URL esterno', + 'rule_trigger_no_external_id_choice' => 'La transazione non ha ID esterno', + 'rule_trigger_no_external_id' => 'La transazione non ha ID esterno', + 'rule_trigger_id_choice' => 'L\'ID della transazione è...', + 'rule_trigger_id' => 'L\'ID della transazione è ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT è..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT è ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'L\'azione dell\'utente è ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Nessun tag è..', - 'rule_trigger_tag_is_not' => 'Nessun tag è ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Entrambi i conti sono esattamente..', - 'rule_trigger_account_is' => 'Entrambi i conti sono esattamente ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Entrambi i conti contengono..', - 'rule_trigger_account_contains' => 'Entrambi i conti contengono ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Entrambi i conti terminano per..', - 'rule_trigger_account_ends' => 'Entrambi i conti terminano per ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Entrambi i conti iniziano per..', - 'rule_trigger_account_starts' => 'Entrambi i conti terminano per ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Entrambi i numeri di conto / IBAN sono..', - 'rule_trigger_account_nr_is' => 'Entrambi i numeri di conto / IBAN sono ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Entrambi i numeri di conto / IBAN contengono..', - 'rule_trigger_account_nr_contains' => 'Entrambi i numeri di conto / IBAN contengono ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Entrambi i numeri di conto / IBAN terminano per..', - 'rule_trigger_account_nr_ends' => 'Entrambi i numeri di conto / IBAN terminano per ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Entrambi i numeri di conto / IBAN iniziano per..', - 'rule_trigger_account_nr_starts' => 'Entrambi i numeri di conto / IBAN iniziano per ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'La categoria contiene..', - 'rule_trigger_category_contains' => 'La categoria contiene ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'La categoria termina per..', - 'rule_trigger_category_ends' => 'La categoria termina per ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'La categoria inizia per..', - 'rule_trigger_category_starts' => 'La categoria inizia per ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Il budget contiene..', - 'rule_trigger_budget_contains' => 'Il budget contiene ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Il budget termina per..', - 'rule_trigger_budget_ends' => 'Il budget termina per ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Il budget inizia per..', - 'rule_trigger_budget_starts' => 'Il budget inizia per ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'La bolletta contiene..', - 'rule_trigger_bill_contains' => 'La bolletta contiene ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'La bolletta termina con..', - 'rule_trigger_bill_ends' => 'La bolletta termina con ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'La bolletta inizia con..', - 'rule_trigger_bill_starts' => 'La bolletta inizia con ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'L\'ID esterno contiene..', - 'rule_trigger_external_id_contains' => 'L\'ID esterno contiene ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'L\'ID esterno termina per..', - 'rule_trigger_external_id_ends' => 'L\'ID esterno termina per ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'L\'ID esterno inizia per..', - 'rule_trigger_external_id_starts' => 'L\'ID esterno inizia per ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Il riferimento interno contiene..', - 'rule_trigger_internal_reference_contains' => 'Il riferimento interno contiene ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Il riferimento interno termina per..', - 'rule_trigger_internal_reference_ends' => 'Il riferimento interno termina per ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Il riferimento interno inizia per..', - 'rule_trigger_internal_reference_starts' => 'Il riferimento interno inizia per ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'L\'URL esterno è..', - 'rule_trigger_external_url_is' => 'L\'URL esterno è ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'L\'URL esterno contiene..', - 'rule_trigger_external_url_contains' => 'L\'URL esterno contiene ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'L\'URL esterno termina per..', - 'rule_trigger_external_url_ends' => 'L\'URL esterno termina per ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'L\'URL esterno inizia per..', - 'rule_trigger_external_url_starts' => 'L\'URL esterno inizia per ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Non contiene allegati', - 'rule_trigger_has_no_attachments' => 'La transazione non contiene alcun allegato', - 'rule_trigger_recurrence_id_choice' => 'L\'ID della transazione ricorrente è..', - 'rule_trigger_recurrence_id' => 'L\'ID della transazione ricorrente è ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'La data di interesse è il..', - 'rule_trigger_interest_date_on' => 'La data di interesse è il ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'La data di interesse è prima del..', - 'rule_trigger_interest_date_before' => 'La data di interesse è prima del ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'La data di interesse è dopo il..', - 'rule_trigger_interest_date_after' => 'La data di interesse è dopo il ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'La data di prenotazione è il..', - 'rule_trigger_book_date_on' => 'La data di prenotazione è il ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'La data di prenotazione è prima del..', - 'rule_trigger_book_date_before' => 'La data di prenotazione è prima del ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'La data di prenotazione è dopo il..', - 'rule_trigger_book_date_after' => 'La data di prenotazione è dopo il ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'La data di elaborazione è il..', - 'rule_trigger_process_date_on' => 'La data di elaborazione è il ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'La data di elaborazione è prima del..', - 'rule_trigger_process_date_before' => 'La data di elaborazione è prima del ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'La data di elaborazione è dopo il..', - 'rule_trigger_process_date_after' => 'La data di elaborazione è dopo il ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'La data di scadenza è il..', - 'rule_trigger_due_date_on' => 'La data di scadenza è il ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'La data di scadenza è prima del..', - 'rule_trigger_due_date_before' => 'La data di scadenza è prima del ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'La data di scadenza è dopo il..', - 'rule_trigger_due_date_after' => 'La data di scadenza è dopo il ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'La data di pagamento è il..', - 'rule_trigger_payment_date_on' => 'La data di pagamento è il ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'La data di pagamento è prima del..', - 'rule_trigger_payment_date_before' => 'La data di pagamento è prima del ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'La data di pagamento è dopo il..', - 'rule_trigger_payment_date_after' => 'La data di pagamento è dopo il ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'La data di fatturazione è il..', - 'rule_trigger_invoice_date_on' => 'La data di fatturazione è il ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'La data di fatturazione è prima del..', - 'rule_trigger_invoice_date_before' => 'La data di fatturazione è prima del ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'La data di fatturazione è dopo il..', - 'rule_trigger_invoice_date_after' => 'La data di fatturazione è dopo il ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'La transazione è stata creata prima del..', - 'rule_trigger_created_at_before' => 'La transazione è stata creata prima del ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'La transazione è stata creata dopo il..', - 'rule_trigger_created_at_after' => 'La transazione è stata creata dopo il ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'La transazione è stata aggiornata prima del..', - 'rule_trigger_updated_at_before' => 'La transazione è stata aggiornata prima del ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'La transazione è stata aggiornata dopo il..', - 'rule_trigger_updated_at_after' => 'La transazione è stata aggiornata dopo ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'L\'importo straniero è esattamente di..', - 'rule_trigger_foreign_amount_is' => 'L\'importo straniero è esattamente di ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'L\'importo straniero è inferiore a..', - 'rule_trigger_foreign_amount_less' => 'L\'importo straniero è inferiore a ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'L\'importo straniero è maggiore di..', - 'rule_trigger_foreign_amount_more' => 'L\'importo straniero è maggiore di ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Il nome di qualsiasi allegato è..', - 'rule_trigger_attachment_name_is' => 'Il nome di qualsiasi allegato è ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Il nome di qualsiasi allegato contiene..', - 'rule_trigger_attachment_name_contains' => 'Il nome di qualsiasi allegato contiene ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Il nome di qualsiasi allegato inizia per..', - 'rule_trigger_attachment_name_starts' => 'Il nome di qualsiasi allegato inizia per ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Il nome di qualsiasi allegato termina per..', - 'rule_trigger_attachment_name_ends' => 'Il nome di qualsiasi allegato termina per ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Le note di qualsiasi allegato sono..', - 'rule_trigger_attachment_notes_are' => 'Le note di qualsiasi allegato sono ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Le note di qualsiasi allegato contengono..', - 'rule_trigger_attachment_notes_contains' => 'Le note di qualsiasi allegato contengono ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Le note di qualsiasi allegato iniziano per..', - 'rule_trigger_attachment_notes_starts' => 'Le note di qualsiasi allegato iniziano per ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Le note di qualsiasi allegato terminano per..', - 'rule_trigger_attachment_notes_ends' => 'Le note di qualsiasi allegato terminano per ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'La transazione è riconciliata', - 'rule_trigger_reconciled' => 'La transazione è riconciliata', - 'rule_trigger_exists_choice' => 'Qualsiasi transazione corrisponde(!)', - 'rule_trigger_exists' => 'Qualsiasi transazione corrisponde', + 'rule_trigger_user_action_choice' => 'L\'azione dell\'utente è ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Nessun tag è..', + 'rule_trigger_tag_is_not' => 'Nessun tag è ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Entrambi i conti sono esattamente..', + 'rule_trigger_account_is' => 'Entrambi i conti sono esattamente ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Entrambi i conti contengono..', + 'rule_trigger_account_contains' => 'Entrambi i conti contengono ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Entrambi i conti terminano per..', + 'rule_trigger_account_ends' => 'Entrambi i conti terminano per ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Entrambi i conti iniziano per..', + 'rule_trigger_account_starts' => 'Entrambi i conti terminano per ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Entrambi i numeri di conto / IBAN sono..', + 'rule_trigger_account_nr_is' => 'Entrambi i numeri di conto / IBAN sono ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Entrambi i numeri di conto / IBAN contengono..', + 'rule_trigger_account_nr_contains' => 'Entrambi i numeri di conto / IBAN contengono ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Entrambi i numeri di conto / IBAN terminano per..', + 'rule_trigger_account_nr_ends' => 'Entrambi i numeri di conto / IBAN terminano per ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Entrambi i numeri di conto / IBAN iniziano per..', + 'rule_trigger_account_nr_starts' => 'Entrambi i numeri di conto / IBAN iniziano per ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'La categoria contiene..', + 'rule_trigger_category_contains' => 'La categoria contiene ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'La categoria termina per..', + 'rule_trigger_category_ends' => 'La categoria termina per ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'La categoria inizia per..', + 'rule_trigger_category_starts' => 'La categoria inizia per ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Il budget contiene..', + 'rule_trigger_budget_contains' => 'Il budget contiene ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Il budget termina per..', + 'rule_trigger_budget_ends' => 'Il budget termina per ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Il budget inizia per..', + 'rule_trigger_budget_starts' => 'Il budget inizia per ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'La bolletta contiene..', + 'rule_trigger_bill_contains' => 'La bolletta contiene ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'La bolletta termina con..', + 'rule_trigger_bill_ends' => 'La bolletta termina con ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'La bolletta inizia con..', + 'rule_trigger_bill_starts' => 'La bolletta inizia con ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'L\'ID esterno contiene..', + 'rule_trigger_external_id_contains' => 'L\'ID esterno contiene ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'L\'ID esterno termina per..', + 'rule_trigger_external_id_ends' => 'L\'ID esterno termina per ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'L\'ID esterno inizia per..', + 'rule_trigger_external_id_starts' => 'L\'ID esterno inizia per ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Il riferimento interno contiene..', + 'rule_trigger_internal_reference_contains' => 'Il riferimento interno contiene ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Il riferimento interno termina per..', + 'rule_trigger_internal_reference_ends' => 'Il riferimento interno termina per ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Il riferimento interno inizia per..', + 'rule_trigger_internal_reference_starts' => 'Il riferimento interno inizia per ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'L\'URL esterno è..', + 'rule_trigger_external_url_is' => 'L\'URL esterno è ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'L\'URL esterno contiene..', + 'rule_trigger_external_url_contains' => 'L\'URL esterno contiene ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'L\'URL esterno termina per..', + 'rule_trigger_external_url_ends' => 'L\'URL esterno termina per ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'L\'URL esterno inizia per..', + 'rule_trigger_external_url_starts' => 'L\'URL esterno inizia per ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Non contiene allegati', + 'rule_trigger_has_no_attachments' => 'La transazione non contiene alcun allegato', + 'rule_trigger_recurrence_id_choice' => 'L\'ID della transazione ricorrente è..', + 'rule_trigger_recurrence_id' => 'L\'ID della transazione ricorrente è ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'La data di interesse è il..', + 'rule_trigger_interest_date_on' => 'La data di interesse è il ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'La data di interesse è prima del..', + 'rule_trigger_interest_date_before' => 'La data di interesse è prima del ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'La data di interesse è dopo il..', + 'rule_trigger_interest_date_after' => 'La data di interesse è dopo il ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'La data di prenotazione è il..', + 'rule_trigger_book_date_on' => 'La data di prenotazione è il ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'La data di prenotazione è prima del..', + 'rule_trigger_book_date_before' => 'La data di prenotazione è prima del ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'La data di prenotazione è dopo il..', + 'rule_trigger_book_date_after' => 'La data di prenotazione è dopo il ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'La data di elaborazione è il..', + 'rule_trigger_process_date_on' => 'La data di elaborazione è il ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'La data di elaborazione è prima del..', + 'rule_trigger_process_date_before' => 'La data di elaborazione è prima del ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'La data di elaborazione è dopo il..', + 'rule_trigger_process_date_after' => 'La data di elaborazione è dopo il ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'La data di scadenza è il..', + 'rule_trigger_due_date_on' => 'La data di scadenza è il ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'La data di scadenza è prima del..', + 'rule_trigger_due_date_before' => 'La data di scadenza è prima del ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'La data di scadenza è dopo il..', + 'rule_trigger_due_date_after' => 'La data di scadenza è dopo il ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'La data di pagamento è il..', + 'rule_trigger_payment_date_on' => 'La data di pagamento è il ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'La data di pagamento è prima del..', + 'rule_trigger_payment_date_before' => 'La data di pagamento è prima del ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'La data di pagamento è dopo il..', + 'rule_trigger_payment_date_after' => 'La data di pagamento è dopo il ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'La data di fatturazione è il..', + 'rule_trigger_invoice_date_on' => 'La data di fatturazione è il ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'La data di fatturazione è prima del..', + 'rule_trigger_invoice_date_before' => 'La data di fatturazione è prima del ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'La data di fatturazione è dopo il..', + 'rule_trigger_invoice_date_after' => 'La data di fatturazione è dopo il ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'La transazione è stata creata prima del..', + 'rule_trigger_created_at_before' => 'La transazione è stata creata prima del ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'La transazione è stata creata dopo il..', + 'rule_trigger_created_at_after' => 'La transazione è stata creata dopo il ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'La transazione è stata aggiornata prima del..', + 'rule_trigger_updated_at_before' => 'La transazione è stata aggiornata prima del ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'La transazione è stata aggiornata dopo il..', + 'rule_trigger_updated_at_after' => 'La transazione è stata aggiornata dopo ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'L\'importo straniero è esattamente di..', + 'rule_trigger_foreign_amount_is' => 'L\'importo straniero è esattamente di ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'L\'importo straniero è inferiore a..', + 'rule_trigger_foreign_amount_less' => 'L\'importo straniero è inferiore a ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'L\'importo straniero è maggiore di..', + 'rule_trigger_foreign_amount_more' => 'L\'importo straniero è maggiore di ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Il nome di qualsiasi allegato è..', + 'rule_trigger_attachment_name_is' => 'Il nome di qualsiasi allegato è ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Il nome di qualsiasi allegato contiene..', + 'rule_trigger_attachment_name_contains' => 'Il nome di qualsiasi allegato contiene ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Il nome di qualsiasi allegato inizia per..', + 'rule_trigger_attachment_name_starts' => 'Il nome di qualsiasi allegato inizia per ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Il nome di qualsiasi allegato termina per..', + 'rule_trigger_attachment_name_ends' => 'Il nome di qualsiasi allegato termina per ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Le note di qualsiasi allegato sono..', + 'rule_trigger_attachment_notes_are' => 'Le note di qualsiasi allegato sono ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Le note di qualsiasi allegato contengono..', + 'rule_trigger_attachment_notes_contains' => 'Le note di qualsiasi allegato contengono ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Le note di qualsiasi allegato iniziano per..', + 'rule_trigger_attachment_notes_starts' => 'Le note di qualsiasi allegato iniziano per ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Le note di qualsiasi allegato terminano per..', + 'rule_trigger_attachment_notes_ends' => 'Le note di qualsiasi allegato terminano per ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'La transazione è riconciliata', + 'rule_trigger_reconciled' => 'La transazione è riconciliata', + 'rule_trigger_exists_choice' => 'Qualsiasi transazione corrisponde(!)', + 'rule_trigger_exists' => 'Qualsiasi transazione corrisponde', // more values for new types: - 'rule_trigger_not_account_id' => 'L\'ID del conto non è ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'L\'ID del conto di origine non è ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'L\'ID del conto di destinazione non è ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Il tipo di transazione non è ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Il tag non è ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Il tag è ":trigger_value"', - 'rule_trigger_not_description_is' => 'La descrizione non è ":trigger_value"', - 'rule_trigger_not_description_contains' => 'La descrizione non contiene', - 'rule_trigger_not_description_ends' => 'La descrizione non termina per ":trigger_value"', - 'rule_trigger_not_description_starts' => 'La descrizione non inizia per ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Le note non sono ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Le note non contengono ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Le note non terminano per ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Le note non iniziano per ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Il conto di origine non è ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Il conto di origine non contiene ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Il conto di origine non termina per ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Il conto di origine non inizia per ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Il numero del conto di origine / IBAN non è ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Il numero del conto di origine / IBAN non contiene ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Il numero del conto di origine / IBAN non termina per ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Il numero del conto di origine / IBAN non inizia per ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Il conto di destinazione non è ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Il conto di destinazione non contiene ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Il conto di destinazione non termina per ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Il conto di destinazione non inizia per ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Il numero del conto / IBAN di destinazione non è ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Il numero del conto / IBAN di destinazione non contiene ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Il numero del conto / IBAN di destinazione non termina per ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Il numero del conto / IBAN di destinazione non inizia per ":trigger_value"', - 'rule_trigger_not_account_is' => 'Nessun conto è ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Nessun conto contiene ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Nessun conto termina per ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Nessun conto inizia per ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Nessun numero di conto / IBAN è ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Nessun numero di conto / IBAN contiene ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Nessun numero di conto / IBAN termina per ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Nessun numero di conto / IBAN inizia per ":trigger_value"', - 'rule_trigger_not_category_is' => 'La categoria non è ":trigger_value"', - 'rule_trigger_not_category_contains' => 'La categoria non contiene ":trigger_value"', - 'rule_trigger_not_category_ends' => 'La categoria non termina per ":trigger_value"', - 'rule_trigger_not_category_starts' => 'La categoria non inizia per ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Il budget non è ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Il budget non contiene ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Il budget non termina il ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Il budget non inizia per ":trigger_value"', - 'rule_trigger_not_bill_is' => 'La fattura non è ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'La fattura non contiene ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'La fattura non termina il ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'La fattura non termina per ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'L\'ID esterno non è ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'L\'ID esterno non contiene ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'L\'ID esterno non termina il ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'L\'ID esterno non inizia per ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Il riferimento interno non è ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Il riferimento interno non contiene ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Il riferimento interno non termina il ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Il riferimento interno non inizia per ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'L\'URL esterno non è ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'L\'URL esterno non contiene ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'L\'URL esterno non termina il ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'L\'URL esterno non inizia per ":trigger_value"', - 'rule_trigger_not_currency_is' => 'La valuta non è ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'La valuta straniera non è ":trigger_value"', - 'rule_trigger_not_id' => 'L\'ID della transazione non è ":trigger_value"', - 'rule_trigger_not_journal_id' => 'L\'ID del diario della transazione non è ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'L\'ID della ricorrenza non è ":trigger_value"', - 'rule_trigger_not_date_on' => 'La data non è ":trigger_value"', - 'rule_trigger_not_date_before' => 'La data non è prima del ":trigger_value"', - 'rule_trigger_not_date_after' => 'La data non è dopo il ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'La data d\'interesse non è il ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'La data d\'interesse non è prima del ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'La data d\'interesse non è dopo il ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'La data di prenotazione non è il ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'La data di prenotazione non è prima del ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'La data di prenotazione non è dopo il ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'La data di elaborazione non è il ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'La data di elaborazione non è prima del ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'La data di elaborazione non è dopo il ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'La data di scadenza non è il ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'La data di scadenza non è prima del ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'La data di scadenza non è dopo il ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'La data di pagamento non è il ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'La data di pagamento non è prima del ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'La data di pagamento non è dopo il ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'La data della fattura non è il ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'La data della fattura non è prima del ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'La data della fattura non è dopo il ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'La transazione non è stata creata il ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'La transazione non è stata creata prima del ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'La transazione non è stata creata dopo il ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'La transazione non è stata aggiornata il ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'La transazione non è stata aggiornata prima del ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'La transazione non è stata aggiornata dopo il ":trigger_value"', - 'rule_trigger_not_amount_is' => 'L\'importo della transazione non è ":trigger_value"', - 'rule_trigger_not_amount_less' => 'L\'importo della transazione è maggiore di ":trigger_value"', - 'rule_trigger_not_amount_more' => 'L\'importo della transazione è inferiore a ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'L\'importo della transazione straniera non è ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'L\'importo della transazione straniera è maggiore di ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'L\'importo della transazione straniera è inferiore a ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Nessun allegato denominato ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Nessun nome dell\'allegato contiene ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Nessun nome dell\'allegato inizia per ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Nessun nome dell\'allegato termina in ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Nessuna nota dell\'allegato è ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Nessuna nota dell\'allegato contiene ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Nessuna nota dell\'allegato inizia per ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Nessuna nota dell\'allegato termina per ":trigger_value"', - 'rule_trigger_not_reconciled' => 'La transazione non è riconciliata', - 'rule_trigger_not_exists' => 'La transazione non esiste', - 'rule_trigger_not_has_attachments' => 'La transazione non ha allegati', - 'rule_trigger_not_has_any_category' => 'La transazione non ha alcuna categoria', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'La transazione non ha alcuna fattura', - 'rule_trigger_not_has_any_tag' => 'La transazione non ha alcun tag', - 'rule_trigger_not_any_notes' => 'La transazione non ha alcuna nota', - 'rule_trigger_not_any_external_url' => 'La transazione non ha alcun URL esterno', - 'rule_trigger_not_has_no_attachments' => 'La transazione ha uno o più allegati', - 'rule_trigger_not_has_no_category' => 'La transazione non ha una o più categorie', - 'rule_trigger_not_has_no_budget' => 'La transazione ha uno o più budget', - 'rule_trigger_not_has_no_bill' => 'La transazione ha una o più fatture', - 'rule_trigger_not_has_no_tag' => 'La transazione ha uno o più tag', - 'rule_trigger_not_no_notes' => 'La transazione contiene qualsiasi nota', - 'rule_trigger_not_no_external_url' => 'La transazione ha un URL esterno', - 'rule_trigger_not_source_is_cash' => 'Il conto di origine non è un conto corrente', - 'rule_trigger_not_destination_is_cash' => 'Il conto di destinazione non è un conto corrente', - 'rule_trigger_not_account_is_cash' => 'Nessun conto è un conto corrente', + 'rule_trigger_not_account_id' => 'L\'ID del conto non è ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'L\'ID del conto di origine non è ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'L\'ID del conto di destinazione non è ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Il tipo di transazione non è ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Il tag non è ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Il tag è ":trigger_value"', + 'rule_trigger_not_description_is' => 'La descrizione non è ":trigger_value"', + 'rule_trigger_not_description_contains' => 'La descrizione non contiene', + 'rule_trigger_not_description_ends' => 'La descrizione non termina per ":trigger_value"', + 'rule_trigger_not_description_starts' => 'La descrizione non inizia per ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Le note non sono ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Le note non contengono ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Le note non terminano per ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Le note non iniziano per ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Il conto di origine non è ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Il conto di origine non contiene ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Il conto di origine non termina per ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Il conto di origine non inizia per ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Il numero del conto di origine / IBAN non è ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Il numero del conto di origine / IBAN non contiene ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Il numero del conto di origine / IBAN non termina per ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Il numero del conto di origine / IBAN non inizia per ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Il conto di destinazione non è ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Il conto di destinazione non contiene ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Il conto di destinazione non termina per ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Il conto di destinazione non inizia per ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Il numero del conto / IBAN di destinazione non è ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Il numero del conto / IBAN di destinazione non contiene ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Il numero del conto / IBAN di destinazione non termina per ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Il numero del conto / IBAN di destinazione non inizia per ":trigger_value"', + 'rule_trigger_not_account_is' => 'Nessun conto è ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Nessun conto contiene ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Nessun conto termina per ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Nessun conto inizia per ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Nessun numero di conto / IBAN è ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Nessun numero di conto / IBAN contiene ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Nessun numero di conto / IBAN termina per ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Nessun numero di conto / IBAN inizia per ":trigger_value"', + 'rule_trigger_not_category_is' => 'La categoria non è ":trigger_value"', + 'rule_trigger_not_category_contains' => 'La categoria non contiene ":trigger_value"', + 'rule_trigger_not_category_ends' => 'La categoria non termina per ":trigger_value"', + 'rule_trigger_not_category_starts' => 'La categoria non inizia per ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Il budget non è ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Il budget non contiene ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Il budget non termina il ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Il budget non inizia per ":trigger_value"', + 'rule_trigger_not_bill_is' => 'La fattura non è ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'La fattura non contiene ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'La fattura non termina il ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'La fattura non termina per ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'L\'ID esterno non è ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'L\'ID esterno non contiene ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'L\'ID esterno non termina il ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'L\'ID esterno non inizia per ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Il riferimento interno non è ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Il riferimento interno non contiene ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Il riferimento interno non termina il ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Il riferimento interno non inizia per ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'L\'URL esterno non è ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'L\'URL esterno non contiene ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'L\'URL esterno non termina il ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'L\'URL esterno non inizia per ":trigger_value"', + 'rule_trigger_not_currency_is' => 'La valuta non è ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'La valuta straniera non è ":trigger_value"', + 'rule_trigger_not_id' => 'L\'ID della transazione non è ":trigger_value"', + 'rule_trigger_not_journal_id' => 'L\'ID del diario della transazione non è ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'L\'ID della ricorrenza non è ":trigger_value"', + 'rule_trigger_not_date_on' => 'La data non è ":trigger_value"', + 'rule_trigger_not_date_before' => 'La data non è prima del ":trigger_value"', + 'rule_trigger_not_date_after' => 'La data non è dopo il ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'La data d\'interesse non è il ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'La data d\'interesse non è prima del ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'La data d\'interesse non è dopo il ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'La data di prenotazione non è il ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'La data di prenotazione non è prima del ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'La data di prenotazione non è dopo il ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'La data di elaborazione non è il ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'La data di elaborazione non è prima del ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'La data di elaborazione non è dopo il ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'La data di scadenza non è il ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'La data di scadenza non è prima del ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'La data di scadenza non è dopo il ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'La data di pagamento non è il ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'La data di pagamento non è prima del ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'La data di pagamento non è dopo il ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'La data della fattura non è il ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'La data della fattura non è prima del ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'La data della fattura non è dopo il ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'La transazione non è stata creata il ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'La transazione non è stata creata prima del ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'La transazione non è stata creata dopo il ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'La transazione non è stata aggiornata il ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'La transazione non è stata aggiornata prima del ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'La transazione non è stata aggiornata dopo il ":trigger_value"', + 'rule_trigger_not_amount_is' => 'L\'importo della transazione non è ":trigger_value"', + 'rule_trigger_not_amount_less' => 'L\'importo della transazione è maggiore di ":trigger_value"', + 'rule_trigger_not_amount_more' => 'L\'importo della transazione è inferiore a ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'L\'importo della transazione straniera non è ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'L\'importo della transazione straniera è maggiore di ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'L\'importo della transazione straniera è inferiore a ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Nessun allegato denominato ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Nessun nome dell\'allegato contiene ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Nessun nome dell\'allegato inizia per ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Nessun nome dell\'allegato termina in ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Nessuna nota dell\'allegato è ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Nessuna nota dell\'allegato contiene ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Nessuna nota dell\'allegato inizia per ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Nessuna nota dell\'allegato termina per ":trigger_value"', + 'rule_trigger_not_reconciled' => 'La transazione non è riconciliata', + 'rule_trigger_not_exists' => 'La transazione non esiste', + 'rule_trigger_not_has_attachments' => 'La transazione non ha allegati', + 'rule_trigger_not_has_any_category' => 'La transazione non ha alcuna categoria', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'La transazione non ha alcuna fattura', + 'rule_trigger_not_has_any_tag' => 'La transazione non ha alcun tag', + 'rule_trigger_not_any_notes' => 'La transazione non ha alcuna nota', + 'rule_trigger_not_any_external_url' => 'La transazione non ha alcun URL esterno', + 'rule_trigger_not_has_no_attachments' => 'La transazione ha uno o più allegati', + 'rule_trigger_not_has_no_category' => 'La transazione non ha una o più categorie', + 'rule_trigger_not_has_no_budget' => 'La transazione ha uno o più budget', + 'rule_trigger_not_has_no_bill' => 'La transazione ha una o più fatture', + 'rule_trigger_not_has_no_tag' => 'La transazione ha uno o più tag', + 'rule_trigger_not_no_notes' => 'La transazione contiene qualsiasi nota', + 'rule_trigger_not_no_external_url' => 'La transazione ha un URL esterno', + 'rule_trigger_not_source_is_cash' => 'Il conto di origine non è un conto corrente', + 'rule_trigger_not_destination_is_cash' => 'Il conto di destinazione non è un conto corrente', + 'rule_trigger_not_account_is_cash' => 'Nessun conto è un conto corrente', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'ELIMINA transazione(!)', - 'rule_action_delete_transaction' => 'ELIMINA transazione(!)', - 'rule_action_set_category' => 'Imposta categoria a ":action_value"', - 'rule_action_clear_category' => 'Rimuovi dalla categoria', - 'rule_action_set_budget' => 'Imposta il budget su ":action_value"', - 'rule_action_clear_budget' => 'Rimuovi dal budget', - 'rule_action_add_tag' => 'Aggiungi etichetta ":action_value"', - 'rule_action_remove_tag' => 'Rimuovi l\'etichetta ":action_value"', - 'rule_action_remove_all_tags' => 'Rimuovi tutte le etichette', - 'rule_action_set_description' => 'Imposta la descrizione a ":action_value"', - 'rule_action_append_description' => 'Aggiungi alla descrizione ":action_value"', - 'rule_action_prepend_description' => 'Anteponi alla descrizione ":action_value"', - 'rule_action_set_category_choice' => 'Imposta la categoria a..', - 'rule_action_clear_category_choice' => 'Rimuovi da tutte le categorie', - 'rule_action_set_budget_choice' => 'Imposta il budget a..', - 'rule_action_clear_budget_choice' => 'Rimuovi da tutti i budget', - 'rule_action_add_tag_choice' => 'Aggiungi tag..', - 'rule_action_remove_tag_choice' => 'Rimuovi tag..', - 'rule_action_remove_all_tags_choice' => 'Rimuovi tutte le etichette', - 'rule_action_set_description_choice' => 'Imposta la descrizione a..', - 'rule_action_update_piggy_choice' => 'Aggiungi / rimuovi l\'importo di transazione nel salvadanaio..', - 'rule_action_update_piggy' => 'Aggiungi / rimuovi l\'importo di transazione nel salvadanaio.. ":action_value"', - 'rule_action_append_description_choice' => 'Aggiungi descrizione con..', - 'rule_action_prepend_description_choice' => 'Anteponi alla descrizione con..', - 'rule_action_set_source_account_choice' => 'Imposta il conto d\'origine a..', - 'rule_action_set_source_account' => 'Imposta come conto di origine :action_value', - 'rule_action_set_destination_account_choice' => 'Imposta il conto di destinazione a..', - 'rule_action_set_destination_account' => 'Imposta come conto di destinazione :action_value', - 'rule_action_append_notes_choice' => 'Aggiungi alle note con..', - 'rule_action_append_notes' => 'Aggiungi alle note ":action_value"', - 'rule_action_prepend_notes_choice' => 'Anteponi alle note con..', - 'rule_action_prepend_notes' => 'Anteponi alle note ":action_value"', - 'rule_action_clear_notes_choice' => 'Rimuovi tutte le note', - 'rule_action_clear_notes' => 'Rimuovi tutte le note', - 'rule_action_set_notes_choice' => 'Imposta le note a..', - 'rule_action_link_to_bill_choice' => 'Collega a una fattura..', - 'rule_action_link_to_bill' => 'Collegamento alla bolletta ":action_value"', - 'rule_action_switch_accounts_choice' => 'Cambia conti di origine e destinazione (solo trasferimenti)', - 'rule_action_switch_accounts' => 'Cambia origine e destinazione', - 'rule_action_set_notes' => 'Imposta le note su ":action_value"', - 'rule_action_convert_deposit_choice' => 'Converti la transazione in un deposito', - 'rule_action_convert_deposit' => 'Converti la transazione in un deposito da ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Converti la transazione in un prelievo', - 'rule_action_convert_withdrawal' => 'Converti la transazione in un prelievo da ":action_value"', - 'rule_action_convert_transfer_choice' => 'Converti la transazione in un trasferimento', - 'rule_action_convert_transfer' => 'Converti la transazione in un trasferimento con ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Aggiungi la descrizione alle note di transazione', - 'rule_action_append_notes_to_descr_choice' => 'Aggiungi le note di transazione alla descrizione', - 'rule_action_move_descr_to_notes_choice' => 'Sostituisci le note della transazione corrente con la descrizione', - 'rule_action_move_notes_to_descr_choice' => 'Sostituisci la descrizione corrente con le note di transazione', - 'rule_action_append_descr_to_notes' => 'Aggiungi una descrizione alle note', - 'rule_action_append_notes_to_descr' => 'Aggiungi le note alla descrizione', - 'rule_action_move_descr_to_notes' => 'Sostituisci le note con la descrizione', - 'rule_action_move_notes_to_descr' => 'Sostituisci la descrizione con le note', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Imposta il conto di destinazione a (corrente)', - 'rule_action_set_source_to_cash_choice' => 'Imposta il conto di origine a (corrente)', - 'rulegroup_for_bills_title' => 'Gruppo di regole per le bollette', - 'rulegroup_for_bills_description' => 'Un gruppo di regole speciale per tutte le regole relative alle fatture.', - 'rule_for_bill_title' => 'Regola generata automaticamente per la fattura ":name"', - 'rule_for_bill_description' => 'Questa regola è generata automaticamente per corrispondere alla fattura ":name".', - 'create_rule_for_bill' => 'Crea una nuova regola per la bolletta ":name"', - 'create_rule_for_bill_txt' => 'Hai appena creato una nuova fattura denominata ":name", congratulazioni! Firefly III può abbinare automagicamente i nuovi prelievi a questa fattura. Ad esempio, quando paghi l\'affitto, la fattura "affitto" sarà collegata alla spesa. Così, Firefly III può mostrarti accuratamente quali fatture sono in scadenza e quali no. Per poterlo fare, dev\'essere creata una nuova regola. Firefly III ha compilato alcuni valori predefiniti sensibili per te. Ti preghiamo di assicurarti che siano corretti. Se questi valori sono corretti, Firefly III collegherà automaticamente il prelievo corretto alla fattura corretta. Ti preghiamo di controllare gli inneschi per verificare che siano corretti e di aggiungerne alcuni se sono errati.', - 'new_rule_for_bill_title' => 'Regola per la bolletta ":name"', - 'new_rule_for_bill_description' => 'Questa regola contrassegna le transazioni per la bolletta ":name".', + 'rule_action_delete_transaction_choice' => 'ELIMINA transazione(!)', + 'rule_action_delete_transaction' => 'ELIMINA transazione(!)', + 'rule_action_set_category' => 'Imposta categoria a ":action_value"', + 'rule_action_clear_category' => 'Rimuovi dalla categoria', + 'rule_action_set_budget' => 'Imposta il budget su ":action_value"', + 'rule_action_clear_budget' => 'Rimuovi dal budget', + 'rule_action_add_tag' => 'Aggiungi etichetta ":action_value"', + 'rule_action_remove_tag' => 'Rimuovi l\'etichetta ":action_value"', + 'rule_action_remove_all_tags' => 'Rimuovi tutte le etichette', + 'rule_action_set_description' => 'Imposta la descrizione a ":action_value"', + 'rule_action_append_description' => 'Aggiungi alla descrizione ":action_value"', + 'rule_action_prepend_description' => 'Anteponi alla descrizione ":action_value"', + 'rule_action_set_category_choice' => 'Imposta la categoria a..', + 'rule_action_clear_category_choice' => 'Rimuovi da tutte le categorie', + 'rule_action_set_budget_choice' => 'Imposta il budget a..', + 'rule_action_clear_budget_choice' => 'Rimuovi da tutti i budget', + 'rule_action_add_tag_choice' => 'Aggiungi tag..', + 'rule_action_remove_tag_choice' => 'Rimuovi tag..', + 'rule_action_remove_all_tags_choice' => 'Rimuovi tutte le etichette', + 'rule_action_set_description_choice' => 'Imposta la descrizione a..', + 'rule_action_update_piggy_choice' => 'Aggiungi / rimuovi l\'importo di transazione nel salvadanaio..', + 'rule_action_update_piggy' => 'Aggiungi / rimuovi l\'importo di transazione nel salvadanaio.. ":action_value"', + 'rule_action_append_description_choice' => 'Aggiungi descrizione con..', + 'rule_action_prepend_description_choice' => 'Anteponi alla descrizione con..', + 'rule_action_set_source_account_choice' => 'Imposta il conto d\'origine a..', + 'rule_action_set_source_account' => 'Imposta come conto di origine :action_value', + 'rule_action_set_destination_account_choice' => 'Imposta il conto di destinazione a..', + 'rule_action_set_destination_account' => 'Imposta come conto di destinazione :action_value', + 'rule_action_append_notes_choice' => 'Aggiungi alle note con..', + 'rule_action_append_notes' => 'Aggiungi alle note ":action_value"', + 'rule_action_prepend_notes_choice' => 'Anteponi alle note con..', + 'rule_action_prepend_notes' => 'Anteponi alle note ":action_value"', + 'rule_action_clear_notes_choice' => 'Rimuovi tutte le note', + 'rule_action_clear_notes' => 'Rimuovi tutte le note', + 'rule_action_set_notes_choice' => 'Imposta le note a..', + 'rule_action_link_to_bill_choice' => 'Collega a una fattura..', + 'rule_action_link_to_bill' => 'Collegamento alla bolletta ":action_value"', + 'rule_action_switch_accounts_choice' => 'Cambia conti di origine e destinazione (solo trasferimenti)', + 'rule_action_switch_accounts' => 'Cambia origine e destinazione', + 'rule_action_set_notes' => 'Imposta le note su ":action_value"', + 'rule_action_convert_deposit_choice' => 'Converti la transazione in un deposito', + 'rule_action_convert_deposit' => 'Converti la transazione in un deposito da ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Converti la transazione in un prelievo', + 'rule_action_convert_withdrawal' => 'Converti la transazione in un prelievo da ":action_value"', + 'rule_action_convert_transfer_choice' => 'Converti la transazione in un trasferimento', + 'rule_action_convert_transfer' => 'Converti la transazione in un trasferimento con ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Aggiungi la descrizione alle note di transazione', + 'rule_action_append_notes_to_descr_choice' => 'Aggiungi le note di transazione alla descrizione', + 'rule_action_move_descr_to_notes_choice' => 'Sostituisci le note della transazione corrente con la descrizione', + 'rule_action_move_notes_to_descr_choice' => 'Sostituisci la descrizione corrente con le note di transazione', + 'rule_action_append_descr_to_notes' => 'Aggiungi una descrizione alle note', + 'rule_action_append_notes_to_descr' => 'Aggiungi le note alla descrizione', + 'rule_action_move_descr_to_notes' => 'Sostituisci le note con la descrizione', + 'rule_action_move_notes_to_descr' => 'Sostituisci la descrizione con le note', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Imposta il conto di destinazione a (corrente)', + 'rule_action_set_source_to_cash_choice' => 'Imposta il conto di origine a (corrente)', + 'rulegroup_for_bills_title' => 'Gruppo di regole per le bollette', + 'rulegroup_for_bills_description' => 'Un gruppo di regole speciale per tutte le regole relative alle fatture.', + 'rule_for_bill_title' => 'Regola generata automaticamente per la fattura ":name"', + 'rule_for_bill_description' => 'Questa regola è generata automaticamente per corrispondere alla fattura ":name".', + 'create_rule_for_bill' => 'Crea una nuova regola per la bolletta ":name"', + 'create_rule_for_bill_txt' => 'Hai appena creato una nuova fattura denominata ":name", congratulazioni! Firefly III può abbinare automagicamente i nuovi prelievi a questa fattura. Ad esempio, quando paghi l\'affitto, la fattura "affitto" sarà collegata alla spesa. Così, Firefly III può mostrarti accuratamente quali fatture sono in scadenza e quali no. Per poterlo fare, dev\'essere creata una nuova regola. Firefly III ha compilato alcuni valori predefiniti sensibili per te. Ti preghiamo di assicurarti che siano corretti. Se questi valori sono corretti, Firefly III collegherà automaticamente il prelievo corretto alla fattura corretta. Ti preghiamo di controllare gli inneschi per verificare che siano corretti e di aggiungerne alcuni se sono errati.', + 'new_rule_for_bill_title' => 'Regola per la bolletta ":name"', + 'new_rule_for_bill_description' => 'Questa regola contrassegna le transazioni per la bolletta ":name".', - 'new_rule_for_journal_title' => 'Regola basata sulla transazione ":description"', - 'new_rule_for_journal_description' => 'Questa regola è basata sulla transazione ":description". Verrà applicata a transazioni uguali.', + 'new_rule_for_journal_title' => 'Regola basata sulla transazione ":description"', + 'new_rule_for_journal_description' => 'Questa regola è basata sulla transazione ":description". Verrà applicata a transazioni uguali.', // tags - 'store_new_tag' => 'Salva la nuova etichetta', - 'update_tag' => 'Aggiorna etichetta', - 'no_location_set' => 'Nessuna posizione impostata.', - 'meta_data' => 'Meta dati', - 'location' => 'Posizione', - 'location_first_split' => 'La posizione di questa transazione può essere impostata sulla prima suddivisione di questa transazione.', - 'without_date' => 'Senza data', - 'result' => 'Risultato', - 'sums_apply_to_range' => 'Tutte le somme si applicano all\'intervallo selezionato', - 'mapbox_api_key' => 'Per utilizzare la mappa, ottieni una chiave API da Mapbox. Apri il tuo file .env e inserisci questo codice dopo MAPBOX_API_KEY=.', - 'press_object_location' => 'Clicca con il tasto destro o premi a lungo per impostare la posizione dell\'oggetto.', - 'click_tap_location' => 'Fare clic o toccare la mappa per aggiungere una posizione', - 'clear_location' => 'Rimuovi dalla posizione', - 'delete_all_selected_tags' => 'Elimina tutte le etichette selezionate', - 'select_tags_to_delete' => 'Non dimenticare di selezionare qualche etichetta.', - 'deleted_x_tags' => 'Eliminata l\'etichetta :count.Eliminate le etichette :count.', - 'create_rule_from_transaction' => 'Crea una regola basata sulla transazione', - 'create_recurring_from_transaction' => 'Crea una transazione ricorrente basandosi su una transazione', + 'store_new_tag' => 'Salva la nuova etichetta', + 'update_tag' => 'Aggiorna etichetta', + 'no_location_set' => 'Nessuna posizione impostata.', + 'meta_data' => 'Meta dati', + 'location' => 'Posizione', + 'location_first_split' => 'La posizione di questa transazione può essere impostata sulla prima suddivisione di questa transazione.', + 'without_date' => 'Senza data', + 'result' => 'Risultato', + 'sums_apply_to_range' => 'Tutte le somme si applicano all\'intervallo selezionato', + 'mapbox_api_key' => 'Per utilizzare la mappa, ottieni una chiave API da Mapbox. Apri il tuo file .env e inserisci questo codice dopo MAPBOX_API_KEY=.', + 'press_object_location' => 'Clicca con il tasto destro o premi a lungo per impostare la posizione dell\'oggetto.', + 'click_tap_location' => 'Fare clic o toccare la mappa per aggiungere una posizione', + 'clear_location' => 'Rimuovi dalla posizione', + 'delete_all_selected_tags' => 'Elimina tutte le etichette selezionate', + 'select_tags_to_delete' => 'Non dimenticare di selezionare qualche etichetta.', + 'deleted_x_tags' => 'Eliminata l\'etichetta :count.Eliminate le etichette :count.', + 'create_rule_from_transaction' => 'Crea una regola basata sulla transazione', + 'create_recurring_from_transaction' => 'Crea una transazione ricorrente basandosi su una transazione', // preferences - 'dark_mode_option_browser' => 'Fai decidere al tuo browser', - 'dark_mode_option_light' => 'Sempre chiaro', - 'dark_mode_option_dark' => 'Sempre scuro', - 'equal_to_language' => '(uguale alla lingua)', - 'dark_mode_preference' => 'Modalità scura', - 'dark_mode_preference_help' => 'Indica a Firefly III quando utilizzare la modalità scura.', - 'pref_home_screen_accounts' => 'Conti nella pagina iniziale', - 'pref_home_screen_accounts_help' => 'Quali conti vuoi che vengano visualizzati nella pagina iniziale?', - 'pref_view_range' => 'Intervallo di visualizzazione', - 'pref_view_range_help' => 'Alcuni grafici vengono raggruppati automaticamente in periodi. Anche i tuoi budget saranno raggruppati in periodi. Quale periodo preferisci?', - 'pref_1D' => 'Un giorno', - 'pref_1W' => 'Una settimana', - 'pref_1M' => 'Un mese', - 'pref_3M' => 'Tre mesi (trimestre)', - 'pref_6M' => 'Sei mesi', - 'pref_1Y' => 'Un anno', - 'pref_last365' => 'Anno scorso', - 'pref_last90' => 'Ultimi 90 giorni', - 'pref_last30' => 'Ultimi 30 giorni', - 'pref_last7' => 'Ultimi 7 giorni', - 'pref_YTD' => 'Ultimo anno', - 'pref_QTD' => 'Ultimo trimestre', - 'pref_MTD' => 'Ultimo mese', - 'pref_languages' => 'Lingue', - 'pref_locale' => 'Impostazioni regionali', - 'pref_languages_help' => 'Firefly III supporta diverse lingue. Quale di queste preferisci?', - 'pref_locale_help' => 'Firefly III ti permette di impostare altre impostazioni regionali, come la formattazione delle valute, dei numeri e delle date. Le voci in questa lista potrebbero non essere supportate dal tuo sistema. Firefly III non ha le corrette impostazioni di data per ogni regione; contattami per ulteriori miglioramenti.', - 'pref_locale_no_demo' => 'Questa funzionalità non è disponibile per l\'utente demo.', - 'pref_custom_fiscal_year' => 'Impostazioni anno fiscale', - 'pref_custom_fiscal_year_label' => 'Abilita', - 'pref_custom_fiscal_year_help' => 'Nei paesi che utilizzano un anno finanziario che non va dal 1 gennaio al 31 dicembre, è possibile attivare questa opzione e specificare i giorni di inizio / fine dell\'anno fiscale', - 'pref_fiscal_year_start_label' => 'Data di inizio anno fiscale', - 'pref_two_factor_auth' => 'Verifica in due passaggi', - 'pref_two_factor_auth_help' => 'Quando abiliti la verifica a due passaggi (nota anche come autenticazione a due fattori), aggiungi un ulteriore livello di sicurezza al tuo account. Accedi con qualcosa che conosci (la tua password) e qualcosa che hai (un codice di verifica). I codici di verifica sono generati da un\'applicazione sul telefono, come Authy o Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Abilita la verifica in due passaggi', - 'pref_two_factor_auth_disabled' => 'Codice di verifica in due passaggi rimosso e disabilitato', - 'pref_two_factor_auth_remove_it' => 'Non dimenticare di rimuovere l\'account dalla tua app di autenticazione!', - 'pref_two_factor_auth_code' => 'Verificare il codice', - 'pref_two_factor_auth_code_help' => 'Esegui la scansione del codice QR con un\'applicazione sul tuo telefono come Authy o Google Authenticator e inserisci il codice generato.', - 'pref_two_factor_auth_reset_code' => 'Reimposta il codice di verifica', - 'pref_two_factor_auth_disable_2fa' => 'Disattiva 2FA', - '2fa_use_secret_instead' => 'Se non puoi scansionare il codice QR, sentiti libero di utilizzare al suo posto il segreto: :secret.', - '2fa_backup_codes' => 'Salva questi codici di recupero per accedere nel caso perdessi il tuo dispositivo.', - '2fa_already_enabled' => 'La verifica in due passaggi è già attiva.', - 'wrong_mfa_code' => 'Questo codice MFA non è valido.', - 'pref_save_settings' => 'Salva le impostazioni', - 'saved_preferences' => 'Preferenze salvate!', - 'preferences_general' => 'Generale', - 'preferences_frontpage' => 'Pagina iniziale', - 'preferences_security' => 'Sicurezza', - 'preferences_layout' => 'Impaginazione', - 'preferences_notifications' => 'Notifiche', - 'pref_home_show_deposits' => 'Mostra i depositi nella pagina iniziale', - 'pref_home_show_deposits_info' => 'La pagina iniziale mostra già i tuoi conti spese. Vuoi che mostri anche i tuoi conti entrate?', - 'pref_home_do_show_deposits' => 'Sì, mostrali', - 'successful_count' => 'di cui :count con successo', - 'list_page_size_title' => 'Dimensioni pagina', - 'list_page_size_help' => 'Ogni elenco (di conti, di transazioni, ecc) mostra al massimo questo numero di elementi per pagina.', - 'list_page_size_label' => 'Dimensioni pagina', - 'between_dates' => '(:start e :end)', - 'pref_optional_fields_transaction' => 'Campi opzionali per le transazioni', - 'pref_optional_fields_transaction_help' => 'Come impostazione predefinita, non tutti i campi sono abilitati quando si crea una nuova transazione (per evitare confusione). Di seguito, puoi abilitare questi campi se ritieni che possano esserti utili. Ovviamente, qualsiasi campo che è disabilitato, ma già compilato, sarà visibile indipendentemente dall\'impostazione.', - 'optional_tj_date_fields' => 'Campi data', - 'optional_tj_other_fields' => 'Altri campi', - 'optional_tj_attachment_fields' => 'Campi allegati', - 'pref_optional_tj_interest_date' => 'Data di valuta', - 'pref_optional_tj_book_date' => 'Data contabile', - 'pref_optional_tj_process_date' => 'Data elaborazione', - 'pref_optional_tj_due_date' => 'Data scadenza', - 'pref_optional_tj_payment_date' => 'Data pagamento', - 'pref_optional_tj_invoice_date' => 'Data fatturazione', - 'pref_optional_tj_internal_reference' => 'Riferimento interno', - 'pref_optional_tj_notes' => 'Note', - 'pref_optional_tj_attachments' => 'Allegati', - 'pref_optional_tj_external_url' => 'URL esterno', - 'pref_optional_tj_location' => 'Posizione', - 'pref_optional_tj_links' => 'Collegamenti della transazione', - 'optional_field_meta_dates' => 'Dati', - 'optional_field_meta_business' => 'Attività commerciale', - 'optional_field_attachments' => 'Allegati', - 'optional_field_meta_data' => 'Metadati opzionali', - 'external_url' => 'URL esterno', - 'pref_notification_bill_reminder' => 'Promemoria sulle fatture in scadenza', - 'pref_notification_new_access_token' => 'Avvisa quando viene creato un nuovo token d\'accesso dell\'API', - 'pref_notification_transaction_creation' => 'Avvisa quando viene creata automaticamente una transazione', - 'pref_notification_user_login' => 'Avvisa quando accedi da una nuova posizione', - 'pref_notification_rule_action_failures' => 'Avvisa quando le azioni della regola non riescono a essere eseguite (solo Slack o Discord)', - 'pref_notifications' => 'Notifiche', - 'pref_notifications_help' => 'Indica se queste sono delle notifiche che vorresti ricevere. Alcune notifiche potrebbero contenere informazioni finanziarie sensibili.', - 'slack_webhook_url' => 'URL del Webhook di Slack', - 'slack_webhook_url_help' => 'Se desideri che Firefly III notifichi che stai usando Slack, inserisci qui l\'URL del webhook. Altrimenti, lascia vuoto il campo. Se sei un admin, devi impostare questo URL anche nell\'amministrazione.', - 'slack_url_label' => 'URL del "webhook in entrata" di Slack', + 'dark_mode_option_browser' => 'Fai decidere al tuo browser', + 'dark_mode_option_light' => 'Sempre chiaro', + 'dark_mode_option_dark' => 'Sempre scuro', + 'equal_to_language' => '(uguale alla lingua)', + 'dark_mode_preference' => 'Modalità scura', + 'dark_mode_preference_help' => 'Indica a Firefly III quando utilizzare la modalità scura.', + 'pref_home_screen_accounts' => 'Conti nella pagina iniziale', + 'pref_home_screen_accounts_help' => 'Quali conti vuoi che vengano visualizzati nella pagina iniziale?', + 'pref_view_range' => 'Intervallo di visualizzazione', + 'pref_view_range_help' => 'Alcuni grafici vengono raggruppati automaticamente in periodi. Anche i tuoi budget saranno raggruppati in periodi. Quale periodo preferisci?', + 'pref_1D' => 'Un giorno', + 'pref_1W' => 'Una settimana', + 'pref_1M' => 'Un mese', + 'pref_3M' => 'Tre mesi (trimestre)', + 'pref_6M' => 'Sei mesi', + 'pref_1Y' => 'Un anno', + 'pref_last365' => 'Anno scorso', + 'pref_last90' => 'Ultimi 90 giorni', + 'pref_last30' => 'Ultimi 30 giorni', + 'pref_last7' => 'Ultimi 7 giorni', + 'pref_YTD' => 'Ultimo anno', + 'pref_QTD' => 'Ultimo trimestre', + 'pref_MTD' => 'Ultimo mese', + 'pref_languages' => 'Lingue', + 'pref_locale' => 'Impostazioni regionali', + 'pref_languages_help' => 'Firefly III supporta diverse lingue. Quale di queste preferisci?', + 'pref_locale_help' => 'Firefly III ti permette di impostare altre impostazioni regionali, come la formattazione delle valute, dei numeri e delle date. Le voci in questa lista potrebbero non essere supportate dal tuo sistema. Firefly III non ha le corrette impostazioni di data per ogni regione; contattami per ulteriori miglioramenti.', + 'pref_locale_no_demo' => 'Questa funzionalità non è disponibile per l\'utente demo.', + 'pref_custom_fiscal_year' => 'Impostazioni anno fiscale', + 'pref_custom_fiscal_year_label' => 'Abilita', + 'pref_custom_fiscal_year_help' => 'Nei paesi che utilizzano un anno finanziario che non va dal 1 gennaio al 31 dicembre, è possibile attivare questa opzione e specificare i giorni di inizio / fine dell\'anno fiscale', + 'pref_fiscal_year_start_label' => 'Data di inizio anno fiscale', + 'pref_two_factor_auth' => 'Verifica in due passaggi', + 'pref_two_factor_auth_help' => 'Quando abiliti la verifica a due passaggi (nota anche come autenticazione a due fattori), aggiungi un ulteriore livello di sicurezza al tuo account. Accedi con qualcosa che conosci (la tua password) e qualcosa che hai (un codice di verifica). I codici di verifica sono generati da un\'applicazione sul telefono, come Authy o Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Abilita la verifica in due passaggi', + 'pref_two_factor_auth_disabled' => 'Codice di verifica in due passaggi rimosso e disabilitato', + 'pref_two_factor_auth_remove_it' => 'Non dimenticare di rimuovere l\'account dalla tua app di autenticazione!', + 'pref_two_factor_auth_code' => 'Verificare il codice', + 'pref_two_factor_auth_code_help' => 'Esegui la scansione del codice QR con un\'applicazione sul tuo telefono come Authy o Google Authenticator e inserisci il codice generato.', + 'pref_two_factor_auth_reset_code' => 'Reimposta il codice di verifica', + 'pref_two_factor_auth_disable_2fa' => 'Disattiva 2FA', + '2fa_use_secret_instead' => 'Se non puoi scansionare il codice QR, sentiti libero di utilizzare al suo posto il segreto: :secret.', + '2fa_backup_codes' => 'Salva questi codici di recupero per accedere nel caso perdessi il tuo dispositivo.', + '2fa_already_enabled' => 'La verifica in due passaggi è già attiva.', + 'wrong_mfa_code' => 'Questo codice MFA non è valido.', + 'pref_save_settings' => 'Salva le impostazioni', + 'saved_preferences' => 'Preferenze salvate!', + 'preferences_general' => 'Generale', + 'preferences_frontpage' => 'Pagina iniziale', + 'preferences_security' => 'Sicurezza', + 'preferences_layout' => 'Impaginazione', + 'preferences_notifications' => 'Notifiche', + 'pref_home_show_deposits' => 'Mostra i depositi nella pagina iniziale', + 'pref_home_show_deposits_info' => 'La pagina iniziale mostra già i tuoi conti spese. Vuoi che mostri anche i tuoi conti entrate?', + 'pref_home_do_show_deposits' => 'Sì, mostrali', + 'successful_count' => 'di cui :count con successo', + 'list_page_size_title' => 'Dimensioni pagina', + 'list_page_size_help' => 'Ogni elenco (di conti, di transazioni, ecc) mostra al massimo questo numero di elementi per pagina.', + 'list_page_size_label' => 'Dimensioni pagina', + 'between_dates' => '(:start e :end)', + 'pref_optional_fields_transaction' => 'Campi opzionali per le transazioni', + 'pref_optional_fields_transaction_help' => 'Come impostazione predefinita, non tutti i campi sono abilitati quando si crea una nuova transazione (per evitare confusione). Di seguito, puoi abilitare questi campi se ritieni che possano esserti utili. Ovviamente, qualsiasi campo che è disabilitato, ma già compilato, sarà visibile indipendentemente dall\'impostazione.', + 'optional_tj_date_fields' => 'Campi data', + 'optional_tj_other_fields' => 'Altri campi', + 'optional_tj_attachment_fields' => 'Campi allegati', + 'pref_optional_tj_interest_date' => 'Data di valuta', + 'pref_optional_tj_book_date' => 'Data contabile', + 'pref_optional_tj_process_date' => 'Data elaborazione', + 'pref_optional_tj_due_date' => 'Data scadenza', + 'pref_optional_tj_payment_date' => 'Data pagamento', + 'pref_optional_tj_invoice_date' => 'Data fatturazione', + 'pref_optional_tj_internal_reference' => 'Riferimento interno', + 'pref_optional_tj_notes' => 'Note', + 'pref_optional_tj_attachments' => 'Allegati', + 'pref_optional_tj_external_url' => 'URL esterno', + 'pref_optional_tj_location' => 'Posizione', + 'pref_optional_tj_links' => 'Collegamenti della transazione', + 'optional_field_meta_dates' => 'Dati', + 'optional_field_meta_business' => 'Attività commerciale', + 'optional_field_attachments' => 'Allegati', + 'optional_field_meta_data' => 'Metadati opzionali', + 'external_url' => 'URL esterno', + 'pref_notification_bill_reminder' => 'Promemoria sulle fatture in scadenza', + 'pref_notification_new_access_token' => 'Avvisa quando viene creato un nuovo token d\'accesso dell\'API', + 'pref_notification_transaction_creation' => 'Avvisa quando viene creata automaticamente una transazione', + 'pref_notification_user_login' => 'Avvisa quando accedi da una nuova posizione', + 'pref_notification_rule_action_failures' => 'Avvisa quando le azioni della regola non riescono a essere eseguite (solo Slack o Discord)', + 'pref_notifications' => 'Notifiche', + 'pref_notifications_help' => 'Indica se queste sono delle notifiche che vorresti ricevere. Alcune notifiche potrebbero contenere informazioni finanziarie sensibili.', + 'slack_webhook_url' => 'URL del Webhook di Slack', + 'slack_webhook_url_help' => 'Se desideri che Firefly III notifichi che stai usando Slack, inserisci qui l\'URL del webhook. Altrimenti, lascia vuoto il campo. Se sei un admin, devi impostare questo URL anche nell\'amministrazione.', + 'slack_url_label' => 'URL del "webhook in entrata" di Slack', // Financial administrations - 'administration_index' => 'Amministrazione finanziaria', - 'administrations_index_menu' => 'Amministratori finanziari', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Amministrazione finanziaria', + 'administrations_index_menu' => 'Amministratori finanziari', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Elimina i dati da Firefly III', - 'purge_data_expl' => '"Purge" significa "eliminare ciò che è già stato eliminato". In normali circostanze, Firefly III non elimina nulla permanentemente. Semplicemente, lo nasconde. Il seguente pulsante elimina tutti i registri "eliminati" in precedenza, PER SEMPRE.', - 'delete_stuff_header' => 'Elimina definitivamente i dati', - 'purge_all_data' => 'Elimina tutti i registri eliminati', - 'purge_data' => 'Elimina dati', - 'purged_all_records' => 'Tutti i registri eliminati sono stati eliminati del tutto.', - 'delete_data_title' => 'Elimina i dati da Firefly III', - 'permanent_delete_stuff' => 'Puoi eliminare cose da Firefly III. Utilizzare i seguenti pulsanti preclude che tutti i tuoi elementi saranno rimossi dalla vista e nascosti. Non esiste alcun pulsante di annullamento, ma gli elementi resteranno visibili nel database, da cui potrai recuperarli, se necessario.', - 'other_sessions_logged_out' => 'Sei stato disconnesso da tutte le altre sessioni.', - 'delete_unused_accounts' => 'Eliminare i conti inutilizzati, pulirà i tuoi elenchi di completamento automatico.', - 'delete_all_unused_accounts' => 'Elimina i conti inutilizzati', - 'deleted_all_unused_accounts' => 'Tutti i conti inutilizzati sono eliminati', - 'delete_all_budgets' => 'Elimina TUTTI i budget', - 'delete_all_categories' => 'Elimina TUTTE le categorie', - 'delete_all_tags' => 'Elimina TUTTE le etichette', - 'delete_all_bills' => 'Elimina TUTTE le bollette', - 'delete_all_piggy_banks' => 'Elimina TUTTI i salvadanai', - 'delete_all_rules' => 'Elimina TUTTE le regole', - 'delete_all_recurring' => 'Elimina TUTTE le transazioni ricorrenti', - 'delete_all_object_groups' => 'Elimina TUTTI i gruppi di oggetti', - 'delete_all_accounts' => 'Elimina TUTTI gli account', - 'delete_all_asset_accounts' => 'Elimina TUTTI i conti attività', - 'delete_all_expense_accounts' => 'Elimina TUTTI i conti spese', - 'delete_all_revenue_accounts' => 'Elimina TUTTI i conti entrate', - 'delete_all_liabilities' => 'Elimina TUTTE le passività', - 'delete_all_transactions' => 'Elimina TUTTE le transazioni', - 'delete_all_withdrawals' => 'Elimina TUTTI i prelievi', - 'delete_all_deposits' => 'Elimina TUTTI i depositi', - 'delete_all_transfers' => 'Elimina TUTTI i trasferimenti', - 'also_delete_transactions' => 'L\'eliminazione dei conti cancellerà anche TUTTI i prelievi, i depositi e i trasferimenti associati!', - 'deleted_all_budgets' => 'Tutti i budget sono stati eliminati', - 'deleted_all_categories' => 'Tutte le categorie sono state eliminate', - 'deleted_all_tags' => 'Tutte le etichette sono state eliminate', - 'deleted_all_bills' => 'Tutte le bollette sono state eliminate', - 'deleted_all_piggy_banks' => 'Tutti i salvadanai sono stati eliminati', - 'deleted_all_rules' => 'Tutte le regole e i gruppi di regole sono stati eliminati', - 'deleted_all_object_groups' => 'Tutti i gruppi sono stati eliminati', - 'deleted_all_accounts' => 'Tutti i conti sono stati eliminati', - 'deleted_all_asset_accounts' => 'Tutti i conti attività sono stati eliminati', - 'deleted_all_expense_accounts' => 'Tutti i conti spese sono stati eliminati', - 'deleted_all_revenue_accounts' => 'Tutti i conti entrate sono stati eliminati', - 'deleted_all_liabilities' => 'Tutte le passività sono state eliminate', - 'deleted_all_transactions' => 'Tutte le transazioni sono state eliminate', - 'deleted_all_withdrawals' => 'Tutti i prelievi sono stati eliminati', - 'deleted_all_deposits' => 'Tutti i depositi sono stati eliminati', - 'deleted_all_transfers' => 'Tutti i trasferimenti sono stati eliminati', - 'deleted_all_recurring' => 'Tutte le transazioni ricorrenti sono state eliminate', - 'change_your_password' => 'Cambia la tua password', - 'delete_account' => 'Elimina account', - 'current_password' => 'Password corrente', - 'new_password' => 'Nuova password', - 'new_password_again' => 'Nuova password (ripeti)', - 'delete_your_account' => 'Elimina il tuo account', - 'delete_your_account_help' => 'L\'eliminazione del tuo account eliminerà anche conti, transazioni, qualsiasi cosa che potresti aver salvato in Firefly III. Sarà tutto PERDUTO.', - 'delete_your_account_password' => 'Inserisci la tua password per continuare.', - 'password' => 'Password', - 'are_you_sure' => 'Sei sicuro? Non puoi annullare questo.', - 'delete_account_button' => 'ELIMINA il tuo account', - 'invalid_current_password' => 'Password attuale non valida!', - 'password_changed' => 'Password cambiata!', - 'should_change' => 'L\'idea è di cambiare la tua password.', - 'invalid_password' => 'Password non valida!', - 'what_is_pw_security' => 'Che cos\'è "verifica la sicurezza della password"?', - 'secure_pw_title' => 'Come scegliere una password sicura', - 'forgot_password_response' => 'Grazie. Se esiste un account con questo indirizzo email, troverai le istruzioni nella tua casella di posta.', - 'secure_pw_history' => 'Non passa una settimana senza leggere una notizia di un sito che perde le password dei suoi utenti. Gli hacker e i ladri usano queste password per cercare di rubare le tue informazioni personali. Queste informazioni sono preziose.', - 'secure_pw_ff' => 'Utilizzi la stessa password ovunque in Internet? Se un sito perde la tua password, gli hacker hanno accesso a tutti i tuoi dati. Firefly III si affida a te nello scegliere una password robusta e unica per proteggere le tue informazioni finanziarie.', - 'secure_pw_check_box' => 'Per aiutarti a fare ciò, Firefly III può controllare se la password che vuoi utilizzare è stata rubata in passato. In un caso del genere, Firefly III ti consiglia di NON utilizzare quella password.', - 'secure_pw_working_title' => 'Come funziona?', - 'secure_pw_working' => 'Selezionando la casella, Firefly III invierà i primi cinque caratteri dell\'hash SHA1 della tua password alsito web di Troy Hunt per vedere se è presente nell\'elenco. Questo ti impedirà di usare password non sicure come raccomandato nell\'ultima pubblicazione speciale NIST su questo argomento.', - 'secure_pw_should' => 'Devo controllare la scatola?', - 'secure_pw_long_password' => 'Sì. Verifica sempre che la tua password sia sicura.', - 'command_line_token' => 'Token della riga di comando', - 'explain_command_line_token' => 'È necessario questo token per eseguire le opzioni dalla riga di comando, come l\'esportazione di dati. Senza di esso tale comando sensibile non funzionerà. Non condividere il token della riga di comando. Nessuno ti chiederà questo token, nemmeno io. Se temi di averlo perso, o se sei paranoico, rigenera questo token usando il pulsante.', - 'regenerate_command_line_token' => 'Rigenera il token della riga di comando', - 'token_regenerated' => 'È stato generato un nuovo token della riga di comando', - 'change_your_email' => 'Cambia il tuo indirizzo email', - 'email_verification' => 'Un messaggio di posta elettronica verrà inviato al vecchio E al nuovo indirizzo email. Per motivi di sicurezza, non potrai accedere fino a quando non avrai verificato il tuo nuovo indirizzo email. Se non si è sicuri che l\'installazione di Firefly III sia in grado di inviare e-mail, si prega di non utilizzare questa funzionalità. Se sei un amministratore, puoi verificarlo in Amministrazione.', - 'email_changed_logout' => 'Fino a quando non verifichi il tuo indirizzo email, non puoi effettuare il login.', - 'login_with_new_email' => 'Ora puoi accedere con il tuo nuovo indirizzo email.', - 'login_with_old_email' => 'Ora puoi accedere nuovamente con il tuo vecchio indirizzo email.', - 'login_provider_local_only' => 'Questa azione non è disponibile quando ci si è autenticati con ":login_provider".', - 'external_user_mgt_disabled' => 'Questa azione non è disponibile quando Firefly III non è responsabile della gestione utente o dell\'autenticazione.', - 'external_auth_disabled' => 'Questa azione non è disponibile quando Firefly III non è responsabile dell\'autenticazione.', - 'delete_local_info_only' => "Poiché Firefly III non è responsabile della gestione utente o dell'autenticazione, questa funzione eliminerà solo le informazioni locali di Firefly III.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Client OAuth', - 'profile_oauth_no_clients' => 'Non hai creato nessun client OAuth.', - 'profile_oauth_clients_external_auth' => 'Se stai utilizzando un fornitore di autenticazione esterno come Authelia, i client di OAuth non funzioneranno. Puoi utilizzare soltanto i Token d\'Accesso Personale.', - 'profile_oauth_clients_header' => 'Client', - 'profile_oauth_client_id' => 'ID client', - 'profile_oauth_client_name' => 'Nome', - 'profile_oauth_client_secret' => 'Segreto', - 'profile_oauth_create_new_client' => 'Crea nuovo client', - 'profile_oauth_create_client' => 'Crea client', - 'profile_oauth_edit_client' => 'Modifica client', - 'profile_oauth_name_help' => 'Qualcosa di cui i tuoi utenti potranno riconoscere e fidarsi.', - 'profile_oauth_redirect_url' => 'URL di reindirizzamento', - 'profile_oauth_redirect_url_help' => 'L\'URL di callback dell\'autorizzazione della tua applicazione.', - 'profile_authorized_apps' => 'Applicazioni autorizzate', - 'profile_authorized_clients' => 'Client autorizzati', - 'profile_scopes' => 'Ambiti', - 'profile_revoke' => 'Revoca', - 'profile_oauth_client_secret_title' => 'Segreto del client', - 'profile_oauth_client_secret_expl' => 'Ecco il segreto del nuovo client. Questa è l\'unica occasione in cui viene mostrato pertanto non perderlo! Ora puoi usare questo segreto per effettuare delle richieste alle API.', - 'profile_personal_access_tokens' => 'Token di acceso personale', - 'profile_personal_access_token' => 'Token di acceso personale', - 'profile_oauth_confidential' => 'Riservato', - 'profile_oauth_confidential_help' => 'Richiede al client di autenticarsi con un segreto. I client riservati possono conservare le credenziali in modo sicuro senza esporle a soggetti non autorizzati. Le applicazioni pubbliche, come le applicazioni desktop native o JavaScript SPA, non sono in grado di conservare i segreti in modo sicuro.', - 'profile_personal_access_token_explanation' => 'Ecco il tuo nuovo token di accesso personale. Questa è l\'unica volta che ti viene mostrato per cui non perderlo! Da adesso puoi utilizzare questo token per effettuare delle richieste API.', - 'profile_no_personal_access_token' => 'Non hai creato alcun token di accesso personale.', - 'profile_create_new_token' => 'Crea nuovo token', - 'profile_create_token' => 'Crea token', - 'profile_create' => 'Crea', - 'profile_save_changes' => 'Salva modifiche', - 'profile_whoops' => 'Oops!', - 'profile_something_wrong' => 'Qualcosa non ha funzionato!', - 'profile_try_again' => 'Qualcosa non ha funzionato. Riprova.', - 'amounts' => 'Importi', - 'multi_account_warning_unknown' => 'A seconda del tipo di transazione che hai creato, il conto di origine e/o destinazione delle successive suddivisioni può essere sovrascritto da qualsiasi cosa sia definita nella prima suddivisione della transazione.', - 'multi_account_warning_withdrawal' => 'Ricorda che il conto di origine delle successive suddivisioni verrà sovrascritto da quello definito nella prima suddivisione del prelievo.', - 'multi_account_warning_deposit' => 'Ricorda che il conto di destinazione delle successive suddivisioni verrà sovrascritto da quello definito nella prima suddivisione del deposito.', - 'multi_account_warning_transfer' => 'Ricorda che il conto di origine e il conto di destinazione delle successive suddivisioni verranno sovrascritti da quelli definiti nella prima suddivisione del trasferimento.', + 'purge_data_title' => 'Elimina i dati da Firefly III', + 'purge_data_expl' => '"Purge" significa "eliminare ciò che è già stato eliminato". In normali circostanze, Firefly III non elimina nulla permanentemente. Semplicemente, lo nasconde. Il seguente pulsante elimina tutti i registri "eliminati" in precedenza, PER SEMPRE.', + 'delete_stuff_header' => 'Elimina definitivamente i dati', + 'purge_all_data' => 'Elimina tutti i registri eliminati', + 'purge_data' => 'Elimina dati', + 'purged_all_records' => 'Tutti i registri eliminati sono stati eliminati del tutto.', + 'delete_data_title' => 'Elimina i dati da Firefly III', + 'permanent_delete_stuff' => 'Puoi eliminare cose da Firefly III. Utilizzare i seguenti pulsanti preclude che tutti i tuoi elementi saranno rimossi dalla vista e nascosti. Non esiste alcun pulsante di annullamento, ma gli elementi resteranno visibili nel database, da cui potrai recuperarli, se necessario.', + 'other_sessions_logged_out' => 'Sei stato disconnesso da tutte le altre sessioni.', + 'delete_unused_accounts' => 'Eliminare i conti inutilizzati, pulirà i tuoi elenchi di completamento automatico.', + 'delete_all_unused_accounts' => 'Elimina i conti inutilizzati', + 'deleted_all_unused_accounts' => 'Tutti i conti inutilizzati sono eliminati', + 'delete_all_budgets' => 'Elimina TUTTI i budget', + 'delete_all_categories' => 'Elimina TUTTE le categorie', + 'delete_all_tags' => 'Elimina TUTTE le etichette', + 'delete_all_bills' => 'Elimina TUTTE le bollette', + 'delete_all_piggy_banks' => 'Elimina TUTTI i salvadanai', + 'delete_all_rules' => 'Elimina TUTTE le regole', + 'delete_all_recurring' => 'Elimina TUTTE le transazioni ricorrenti', + 'delete_all_object_groups' => 'Elimina TUTTI i gruppi di oggetti', + 'delete_all_accounts' => 'Elimina TUTTI gli account', + 'delete_all_asset_accounts' => 'Elimina TUTTI i conti attività', + 'delete_all_expense_accounts' => 'Elimina TUTTI i conti spese', + 'delete_all_revenue_accounts' => 'Elimina TUTTI i conti entrate', + 'delete_all_liabilities' => 'Elimina TUTTE le passività', + 'delete_all_transactions' => 'Elimina TUTTE le transazioni', + 'delete_all_withdrawals' => 'Elimina TUTTI i prelievi', + 'delete_all_deposits' => 'Elimina TUTTI i depositi', + 'delete_all_transfers' => 'Elimina TUTTI i trasferimenti', + 'also_delete_transactions' => 'L\'eliminazione dei conti cancellerà anche TUTTI i prelievi, i depositi e i trasferimenti associati!', + 'deleted_all_budgets' => 'Tutti i budget sono stati eliminati', + 'deleted_all_categories' => 'Tutte le categorie sono state eliminate', + 'deleted_all_tags' => 'Tutte le etichette sono state eliminate', + 'deleted_all_bills' => 'Tutte le bollette sono state eliminate', + 'deleted_all_piggy_banks' => 'Tutti i salvadanai sono stati eliminati', + 'deleted_all_rules' => 'Tutte le regole e i gruppi di regole sono stati eliminati', + 'deleted_all_object_groups' => 'Tutti i gruppi sono stati eliminati', + 'deleted_all_accounts' => 'Tutti i conti sono stati eliminati', + 'deleted_all_asset_accounts' => 'Tutti i conti attività sono stati eliminati', + 'deleted_all_expense_accounts' => 'Tutti i conti spese sono stati eliminati', + 'deleted_all_revenue_accounts' => 'Tutti i conti entrate sono stati eliminati', + 'deleted_all_liabilities' => 'Tutte le passività sono state eliminate', + 'deleted_all_transactions' => 'Tutte le transazioni sono state eliminate', + 'deleted_all_withdrawals' => 'Tutti i prelievi sono stati eliminati', + 'deleted_all_deposits' => 'Tutti i depositi sono stati eliminati', + 'deleted_all_transfers' => 'Tutti i trasferimenti sono stati eliminati', + 'deleted_all_recurring' => 'Tutte le transazioni ricorrenti sono state eliminate', + 'change_your_password' => 'Cambia la tua password', + 'delete_account' => 'Elimina account', + 'current_password' => 'Password corrente', + 'new_password' => 'Nuova password', + 'new_password_again' => 'Nuova password (ripeti)', + 'delete_your_account' => 'Elimina il tuo account', + 'delete_your_account_help' => 'L\'eliminazione del tuo account eliminerà anche conti, transazioni, qualsiasi cosa che potresti aver salvato in Firefly III. Sarà tutto PERDUTO.', + 'delete_your_account_password' => 'Inserisci la tua password per continuare.', + 'password' => 'Password', + 'are_you_sure' => 'Sei sicuro? Non puoi annullare questo.', + 'delete_account_button' => 'ELIMINA il tuo account', + 'invalid_current_password' => 'Password attuale non valida!', + 'password_changed' => 'Password cambiata!', + 'should_change' => 'L\'idea è di cambiare la tua password.', + 'invalid_password' => 'Password non valida!', + 'what_is_pw_security' => 'Che cos\'è "verifica la sicurezza della password"?', + 'secure_pw_title' => 'Come scegliere una password sicura', + 'forgot_password_response' => 'Grazie. Se esiste un account con questo indirizzo email, troverai le istruzioni nella tua casella di posta.', + 'secure_pw_history' => 'Non passa una settimana senza leggere una notizia di un sito che perde le password dei suoi utenti. Gli hacker e i ladri usano queste password per cercare di rubare le tue informazioni personali. Queste informazioni sono preziose.', + 'secure_pw_ff' => 'Utilizzi la stessa password ovunque in Internet? Se un sito perde la tua password, gli hacker hanno accesso a tutti i tuoi dati. Firefly III si affida a te nello scegliere una password robusta e unica per proteggere le tue informazioni finanziarie.', + 'secure_pw_check_box' => 'Per aiutarti a fare ciò, Firefly III può controllare se la password che vuoi utilizzare è stata rubata in passato. In un caso del genere, Firefly III ti consiglia di NON utilizzare quella password.', + 'secure_pw_working_title' => 'Come funziona?', + 'secure_pw_working' => 'Selezionando la casella, Firefly III invierà i primi cinque caratteri dell\'hash SHA1 della tua password alsito web di Troy Hunt per vedere se è presente nell\'elenco. Questo ti impedirà di usare password non sicure come raccomandato nell\'ultima pubblicazione speciale NIST su questo argomento.', + 'secure_pw_should' => 'Devo controllare la scatola?', + 'secure_pw_long_password' => 'Sì. Verifica sempre che la tua password sia sicura.', + 'command_line_token' => 'Token della riga di comando', + 'explain_command_line_token' => 'È necessario questo token per eseguire le opzioni dalla riga di comando, come l\'esportazione di dati. Senza di esso tale comando sensibile non funzionerà. Non condividere il token della riga di comando. Nessuno ti chiederà questo token, nemmeno io. Se temi di averlo perso, o se sei paranoico, rigenera questo token usando il pulsante.', + 'regenerate_command_line_token' => 'Rigenera il token della riga di comando', + 'token_regenerated' => 'È stato generato un nuovo token della riga di comando', + 'change_your_email' => 'Cambia il tuo indirizzo email', + 'email_verification' => 'Un messaggio di posta elettronica verrà inviato al vecchio E al nuovo indirizzo email. Per motivi di sicurezza, non potrai accedere fino a quando non avrai verificato il tuo nuovo indirizzo email. Se non si è sicuri che l\'installazione di Firefly III sia in grado di inviare e-mail, si prega di non utilizzare questa funzionalità. Se sei un amministratore, puoi verificarlo in Amministrazione.', + 'email_changed_logout' => 'Fino a quando non verifichi il tuo indirizzo email, non puoi effettuare il login.', + 'login_with_new_email' => 'Ora puoi accedere con il tuo nuovo indirizzo email.', + 'login_with_old_email' => 'Ora puoi accedere nuovamente con il tuo vecchio indirizzo email.', + 'login_provider_local_only' => 'Questa azione non è disponibile quando ci si è autenticati con ":login_provider".', + 'external_user_mgt_disabled' => 'Questa azione non è disponibile quando Firefly III non è responsabile della gestione utente o dell\'autenticazione.', + 'external_auth_disabled' => 'Questa azione non è disponibile quando Firefly III non è responsabile dell\'autenticazione.', + 'delete_local_info_only' => "Poiché Firefly III non è responsabile della gestione utente o dell'autenticazione, questa funzione eliminerà solo le informazioni locali di Firefly III.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Client OAuth', + 'profile_oauth_no_clients' => 'Non hai creato nessun client OAuth.', + 'profile_oauth_clients_external_auth' => 'Se stai utilizzando un fornitore di autenticazione esterno come Authelia, i client di OAuth non funzioneranno. Puoi utilizzare soltanto i Token d\'Accesso Personale.', + 'profile_oauth_clients_header' => 'Client', + 'profile_oauth_client_id' => 'ID client', + 'profile_oauth_client_name' => 'Nome', + 'profile_oauth_client_secret' => 'Segreto', + 'profile_oauth_create_new_client' => 'Crea nuovo client', + 'profile_oauth_create_client' => 'Crea client', + 'profile_oauth_edit_client' => 'Modifica client', + 'profile_oauth_name_help' => 'Qualcosa di cui i tuoi utenti potranno riconoscere e fidarsi.', + 'profile_oauth_redirect_url' => 'URL di reindirizzamento', + 'profile_oauth_redirect_url_help' => 'L\'URL di callback dell\'autorizzazione della tua applicazione.', + 'profile_authorized_apps' => 'Applicazioni autorizzate', + 'profile_authorized_clients' => 'Client autorizzati', + 'profile_scopes' => 'Ambiti', + 'profile_revoke' => 'Revoca', + 'profile_oauth_client_secret_title' => 'Segreto del client', + 'profile_oauth_client_secret_expl' => 'Ecco il segreto del nuovo client. Questa è l\'unica occasione in cui viene mostrato pertanto non perderlo! Ora puoi usare questo segreto per effettuare delle richieste alle API.', + 'profile_personal_access_tokens' => 'Token di acceso personale', + 'profile_personal_access_token' => 'Token di acceso personale', + 'profile_oauth_confidential' => 'Riservato', + 'profile_oauth_confidential_help' => 'Richiede al client di autenticarsi con un segreto. I client riservati possono conservare le credenziali in modo sicuro senza esporle a soggetti non autorizzati. Le applicazioni pubbliche, come le applicazioni desktop native o JavaScript SPA, non sono in grado di conservare i segreti in modo sicuro.', + 'profile_personal_access_token_explanation' => 'Ecco il tuo nuovo token di accesso personale. Questa è l\'unica volta che ti viene mostrato per cui non perderlo! Da adesso puoi utilizzare questo token per effettuare delle richieste API.', + 'profile_no_personal_access_token' => 'Non hai creato alcun token di accesso personale.', + 'profile_create_new_token' => 'Crea nuovo token', + 'profile_create_token' => 'Crea token', + 'profile_create' => 'Crea', + 'profile_save_changes' => 'Salva modifiche', + 'profile_whoops' => 'Oops!', + 'profile_something_wrong' => 'Qualcosa non ha funzionato!', + 'profile_try_again' => 'Qualcosa non ha funzionato. Riprova.', + 'amounts' => 'Importi', + 'multi_account_warning_unknown' => 'A seconda del tipo di transazione che hai creato, il conto di origine e/o destinazione delle successive suddivisioni può essere sovrascritto da qualsiasi cosa sia definita nella prima suddivisione della transazione.', + 'multi_account_warning_withdrawal' => 'Ricorda che il conto di origine delle successive suddivisioni verrà sovrascritto da quello definito nella prima suddivisione del prelievo.', + 'multi_account_warning_deposit' => 'Ricorda che il conto di destinazione delle successive suddivisioni verrà sovrascritto da quello definito nella prima suddivisione del deposito.', + 'multi_account_warning_transfer' => 'Ricorda che il conto di origine e il conto di destinazione delle successive suddivisioni verranno sovrascritti da quelli definiti nella prima suddivisione del trasferimento.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Esporta dati da Firefly III', - 'export_data_menu' => 'Esporta dati', - 'export_data_bc' => 'Esporta dati da Firefly III', - 'export_data_main_title' => 'Esporta dati da Firefly III', - 'export_data_expl' => 'Questo link ti consente di esportare tutte le transazioni e i meta dati da Firefly III. Fai riferimento alla guida (icona (?) in alto a destra) per ulteriori informazioni sul processo.', - 'export_data_all_transactions' => 'Esporta tutte le transazioni', - 'export_data_advanced_expl' => 'Se hai bisogno di un tipo più avanzato o specifico di esportazione, leggi la guida su come usare il comando da terminale php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Esporta dati da Firefly III', + 'export_data_menu' => 'Esporta dati', + 'export_data_bc' => 'Esporta dati da Firefly III', + 'export_data_main_title' => 'Esporta dati da Firefly III', + 'export_data_expl' => 'Questo link ti consente di esportare tutte le transazioni e i meta dati da Firefly III. Fai riferimento alla guida (icona (?) in alto a destra) per ulteriori informazioni sul processo.', + 'export_data_all_transactions' => 'Esporta tutte le transazioni', + 'export_data_advanced_expl' => 'Se hai bisogno di un tipo più avanzato o specifico di esportazione, leggi la guida su come usare il comando da terminale php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Un allegato|:count allegati', - 'attachments' => 'Allegati', - 'edit_attachment' => 'Modifica allegato ":name"', - 'update_attachment' => 'Aggiorna allegati', - 'delete_attachment' => 'Elimina allegato ":name"', - 'attachment_deleted' => 'Allegato eliminato ":name"', - 'liabilities_deleted' => 'Passività ":name" eliminata', - 'attachment_updated' => 'Allegato ":name" aggiornato', - 'upload_max_file_size' => 'Dimensione massima del file: :size', - 'list_all_attachments' => 'Lista di tutti gli allegati', + 'nr_of_attachments' => 'Un allegato|:count allegati', + 'attachments' => 'Allegati', + 'edit_attachment' => 'Modifica allegato ":name"', + 'update_attachment' => 'Aggiorna allegati', + 'delete_attachment' => 'Elimina allegato ":name"', + 'attachment_deleted' => 'Allegato eliminato ":name"', + 'liabilities_deleted' => 'Passività ":name" eliminata', + 'attachment_updated' => 'Allegato ":name" aggiornato', + 'upload_max_file_size' => 'Dimensione massima del file: :size', + 'list_all_attachments' => 'Lista di tutti gli allegati', // transaction index - 'is_reconciled_fields_dropped' => 'Poiché questa transazione è riconciliata, non potrai aggiornare i conti, né gli importi.', - 'title_expenses' => 'Spese', - 'title_withdrawal' => 'Spese', - 'title_revenue' => 'Entrate', - 'title_deposit' => 'Redditi / entrate', - 'title_transfer' => 'Trasferimenti', - 'title_transfers' => 'Trasferimenti', - 'submission_options' => 'Opzioni di invio', - 'apply_rules_checkbox' => 'Applica le regole', - 'fire_webhooks_checkbox' => 'Esegui webhook', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Poiché questa transazione è riconciliata, non potrai aggiornare i conti, né gli importi.', + 'title_expenses' => 'Spese', + 'title_withdrawal' => 'Spese', + 'title_revenue' => 'Entrate', + 'title_deposit' => 'Redditi / entrate', + 'title_transfer' => 'Trasferimenti', + 'title_transfers' => 'Trasferimenti', + 'submission_options' => 'Opzioni di invio', + 'apply_rules_checkbox' => 'Applica le regole', + 'fire_webhooks_checkbox' => 'Esegui webhook', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Questa transazione è già un\'uscita', - 'convert_is_already_type_Deposit' => 'Questa transazione è già un\'entrata', - 'convert_is_already_type_Transfer' => 'Questa transazione è già un trasferimento', - 'convert_to_Withdrawal' => 'Converti ":description" in un\'uscita', - 'convert_to_Deposit' => 'Converti ":description" in un\'entrata', - 'convert_to_Transfer' => 'Converti ":description" in un trasferimento', - 'convert_options_WithdrawalDeposit' => 'Converti un\'uscita in un\'entrata', - 'convert_options_WithdrawalTransfer' => 'Converti un\'uscita in un trasferimento', - 'convert_options_DepositTransfer' => 'Converti un\'entrata in un trasferimento', - 'convert_options_DepositWithdrawal' => 'Converti un\'entrata in un\'uscita', - 'convert_options_TransferWithdrawal' => 'Converti un trasferimento in un\'uscita', - 'convert_options_TransferDeposit' => 'Converti un trasferimento in un\'entrata', - 'convert_Withdrawal_to_deposit' => 'Converti questa uscita in un\'entrata', - 'convert_Withdrawal_to_transfer' => 'Converti questa uscita in un trasferimento', - 'convert_Deposit_to_withdrawal' => 'Converti questa entrata in un\'uscita', - 'convert_Deposit_to_transfer' => 'Converti questa entrata in un trasferimento', - 'convert_Transfer_to_deposit' => 'Converti questo trasferimento in un\'entrata', - 'convert_Transfer_to_withdrawal' => 'Converti questo trasferimento in un\'uscita', - 'convert_please_set_revenue_source' => 'Si prega di scegliere il conto delle entrate da dove verranno i soldi.', - 'convert_please_set_asset_destination' => 'Scegli il conto attività in cui andranno i soldi.', - 'convert_please_set_expense_destination' => 'Si prega di scegliere il conto spese dove andranno i soldi.', - 'convert_please_set_asset_source' => 'Scegli il conto attività da cui verranno i soldi.', - 'convert_expl_w_d' => 'Quando si converte da un prelievo a un deposito, il denaro verrà depositato nel conto di destinazione visualizzato, invece di essere ritirato da esso.|Quando si converte da un prelievo a un deposito, il denaro verrà depositato nei conti di destinazione visualizzati, invece di essere ritirato da essi.', - 'convert_expl_w_t' => 'Quando si converte un prelievo in un trasferimento, il denaro sarà trasferito dal conto di origine in un altro conto attività o passività invece di essere speso sul conto di spesa originale.|Quando si converte un prelievo in un trasferimento, il denaro sarà trasferito dai conti di origine in altri conti attività o passività invece di essere speso nei conti di spesa originali.', - 'convert_expl_d_w' => 'Quando si converte un deposito in un prelievo, il denaro sarà prelevato dal conto di origine visualizzato, invece di essere depositato in esso.|Quando si converte un deposito in un prelievo, il denaro sarà prelevato dai conti di origine visualizzati, invece di essere depositato in essi. Per completare la conversione, selezionare i nuovi conti di destinazione. Per completare la conversione, selezionare i nuovi conti destinazione.', - 'convert_expl_d_t' => 'Quando si converte un deposito in un trasferimento, il denaro verrà depositato sul conto di destinazione elencato da uno qualsiasi del tuo conto attività o passività.|Quando si converte un deposito in un trasferimento, il denaro verrà depositato nei conti di destinazione elencati da uno qualsiasi dei tuoi conti attività o passività.', - 'convert_expl_t_w' => 'Quando si converte un trasferimento in un prelievo, il denaro sarà speso sul conto di destinazione impostato qui, invece di essere trasferito da esso.|Quando si converte un trasferimento in un prelievo, il denaro sarà speso per i conti di destinazione che si imposta qui, invece di essere trasferito da essi.', - 'convert_expl_t_d' => 'Quando si converte un trasferimento in un deposito, il denaro verrà depositato nel conto di destinazione che vedi qui, invece di essere trasferito in esso.|Quando si converte un trasferimento in un deposito, il denaro verrà depositato nei conti di destinazione che vedi qui, invece di essere trasferito in loro.', - 'convert_select_sources' => 'Per completare la conversione, imposta il nuovo conto di origine qui sotto.|Per completare la conversione, imposta i nuovi conti di origine qui sotto.', - 'convert_select_destinations' => 'Per completare la conversione, selezionare il nuovo conto di destinazione qui sotto.|Per completare la conversione, selezionare i nuovi conti di destinazione qui sotto.', - 'converted_to_Withdrawal' => 'La transazione è stata convertita in un\'uscita', - 'converted_to_Deposit' => 'La transazione è stata convertita in un\'entrata', - 'converted_to_Transfer' => 'La transazione è stata convertita in un trasferimento', - 'invalid_convert_selection' => 'Il conto che hai selezionato è già utilizzato in questa transazione o non esiste.', - 'source_or_dest_invalid' => 'Impossibile trovare i dettagli corretti della transazione. Non è possibile effettuare la conversione.', - 'convert_to_withdrawal' => 'Converti in prelievo', - 'convert_to_deposit' => 'Converti in entrata', - 'convert_to_transfer' => 'Converti in trasferimento', + 'convert_is_already_type_Withdrawal' => 'Questa transazione è già un\'uscita', + 'convert_is_already_type_Deposit' => 'Questa transazione è già un\'entrata', + 'convert_is_already_type_Transfer' => 'Questa transazione è già un trasferimento', + 'convert_to_Withdrawal' => 'Converti ":description" in un\'uscita', + 'convert_to_Deposit' => 'Converti ":description" in un\'entrata', + 'convert_to_Transfer' => 'Converti ":description" in un trasferimento', + 'convert_options_WithdrawalDeposit' => 'Converti un\'uscita in un\'entrata', + 'convert_options_WithdrawalTransfer' => 'Converti un\'uscita in un trasferimento', + 'convert_options_DepositTransfer' => 'Converti un\'entrata in un trasferimento', + 'convert_options_DepositWithdrawal' => 'Converti un\'entrata in un\'uscita', + 'convert_options_TransferWithdrawal' => 'Converti un trasferimento in un\'uscita', + 'convert_options_TransferDeposit' => 'Converti un trasferimento in un\'entrata', + 'convert_Withdrawal_to_deposit' => 'Converti questa uscita in un\'entrata', + 'convert_Withdrawal_to_transfer' => 'Converti questa uscita in un trasferimento', + 'convert_Deposit_to_withdrawal' => 'Converti questa entrata in un\'uscita', + 'convert_Deposit_to_transfer' => 'Converti questa entrata in un trasferimento', + 'convert_Transfer_to_deposit' => 'Converti questo trasferimento in un\'entrata', + 'convert_Transfer_to_withdrawal' => 'Converti questo trasferimento in un\'uscita', + 'convert_please_set_revenue_source' => 'Si prega di scegliere il conto delle entrate da dove verranno i soldi.', + 'convert_please_set_asset_destination' => 'Scegli il conto attività in cui andranno i soldi.', + 'convert_please_set_expense_destination' => 'Si prega di scegliere il conto spese dove andranno i soldi.', + 'convert_please_set_asset_source' => 'Scegli il conto attività da cui verranno i soldi.', + 'convert_expl_w_d' => 'Quando si converte da un prelievo a un deposito, il denaro verrà depositato nel conto di destinazione visualizzato, invece di essere ritirato da esso.|Quando si converte da un prelievo a un deposito, il denaro verrà depositato nei conti di destinazione visualizzati, invece di essere ritirato da essi.', + 'convert_expl_w_t' => 'Quando si converte un prelievo in un trasferimento, il denaro sarà trasferito dal conto di origine in un altro conto attività o passività invece di essere speso sul conto di spesa originale.|Quando si converte un prelievo in un trasferimento, il denaro sarà trasferito dai conti di origine in altri conti attività o passività invece di essere speso nei conti di spesa originali.', + 'convert_expl_d_w' => 'Quando si converte un deposito in un prelievo, il denaro sarà prelevato dal conto di origine visualizzato, invece di essere depositato in esso.|Quando si converte un deposito in un prelievo, il denaro sarà prelevato dai conti di origine visualizzati, invece di essere depositato in essi. Per completare la conversione, selezionare i nuovi conti di destinazione. Per completare la conversione, selezionare i nuovi conti destinazione.', + 'convert_expl_d_t' => 'Quando si converte un deposito in un trasferimento, il denaro verrà depositato sul conto di destinazione elencato da uno qualsiasi del tuo conto attività o passività.|Quando si converte un deposito in un trasferimento, il denaro verrà depositato nei conti di destinazione elencati da uno qualsiasi dei tuoi conti attività o passività.', + 'convert_expl_t_w' => 'Quando si converte un trasferimento in un prelievo, il denaro sarà speso sul conto di destinazione impostato qui, invece di essere trasferito da esso.|Quando si converte un trasferimento in un prelievo, il denaro sarà speso per i conti di destinazione che si imposta qui, invece di essere trasferito da essi.', + 'convert_expl_t_d' => 'Quando si converte un trasferimento in un deposito, il denaro verrà depositato nel conto di destinazione che vedi qui, invece di essere trasferito in esso.|Quando si converte un trasferimento in un deposito, il denaro verrà depositato nei conti di destinazione che vedi qui, invece di essere trasferito in loro.', + 'convert_select_sources' => 'Per completare la conversione, imposta il nuovo conto di origine qui sotto.|Per completare la conversione, imposta i nuovi conti di origine qui sotto.', + 'convert_select_destinations' => 'Per completare la conversione, selezionare il nuovo conto di destinazione qui sotto.|Per completare la conversione, selezionare i nuovi conti di destinazione qui sotto.', + 'converted_to_Withdrawal' => 'La transazione è stata convertita in un\'uscita', + 'converted_to_Deposit' => 'La transazione è stata convertita in un\'entrata', + 'converted_to_Transfer' => 'La transazione è stata convertita in un trasferimento', + 'invalid_convert_selection' => 'Il conto che hai selezionato è già utilizzato in questa transazione o non esiste.', + 'source_or_dest_invalid' => 'Impossibile trovare i dettagli corretti della transazione. Non è possibile effettuare la conversione.', + 'convert_to_withdrawal' => 'Converti in prelievo', + 'convert_to_deposit' => 'Converti in entrata', + 'convert_to_transfer' => 'Converti in trasferimento', // create new stuff: - 'create_new_withdrawal' => 'Crea una nuova uscita', - 'create_new_deposit' => 'Crea una nuova entrata', - 'create_new_transfer' => 'Crea un nuovo trasferimento', - 'create_new_asset' => 'Crea un nuovo conto attività', - 'create_new_liabilities' => 'Crea nuova passività', - 'create_new_expense' => 'Crea un nuovo conto di spesa', - 'create_new_revenue' => 'Crea un nuovo conto entrate', - 'create_new_piggy_bank' => 'Crea un nuovo salvadanaio', - 'create_new_bill' => 'Crea una nuova bolletta', - 'create_new_subscription' => 'Crea un nuovo abbonamento', - 'create_new_rule' => 'Crea nuova regola', + 'create_new_withdrawal' => 'Crea una nuova uscita', + 'create_new_deposit' => 'Crea una nuova entrata', + 'create_new_transfer' => 'Crea un nuovo trasferimento', + 'create_new_asset' => 'Crea un nuovo conto attività', + 'create_new_liabilities' => 'Crea nuova passività', + 'create_new_expense' => 'Crea un nuovo conto di spesa', + 'create_new_revenue' => 'Crea un nuovo conto entrate', + 'create_new_piggy_bank' => 'Crea un nuovo salvadanaio', + 'create_new_bill' => 'Crea una nuova bolletta', + 'create_new_subscription' => 'Crea un nuovo abbonamento', + 'create_new_rule' => 'Crea nuova regola', // currencies: - 'create_currency' => 'Crea una nuova valuta', - 'store_currency' => 'Salva nuova valuta', - 'update_currency' => 'Aggiorna valuta', - 'new_default_currency' => '":name" è ora la valuta predefinita.', - 'default_currency_failed' => 'Impossibile rendere ":name" la valuta predefinita. Ti preghiamo di consultare i registri.', - 'cannot_delete_currency' => 'Impossibile eliminare :name perché è ancora in uso.', - 'cannot_delete_fallback_currency' => ':name è la valuta di default del sistema e non può essere eliminata.', - 'cannot_disable_currency_journals' => 'Non è possibile disabilitare :name perché ci sono ancora transazioni che la utilizzano.', - 'cannot_disable_currency_last_left' => 'Non è possibile disabilitare :name perché è l\'ultima valuta abilitata.', - 'cannot_disable_currency_account_meta' => 'Non è possibile disabilitare :name perché è utilizzata in conti attività.', - 'cannot_disable_currency_bills' => 'Non è possibile disabilitare :name perché è utilizzata in bollette.', - 'cannot_disable_currency_recurring' => 'Non è possibile disabilitare :name perché è utilizzata in transazioni ricorrenti.', - 'cannot_disable_currency_available_budgets' => 'Non è possibile disabilitare :name perché è disponibile nei budget disponibili.', - 'cannot_disable_currency_budget_limits' => 'Non è possibile disabilitare :name perché è utilizzata nei limiti dei budget.', - 'cannot_disable_currency_current_default' => 'Non è possibile disabilitare :name perché è la valuta predefinita corrente.', - 'cannot_disable_currency_system_fallback' => 'Non è possibile disabilitare :name perché è la valuta predefinita di sistema.', - 'disable_EUR_side_effects' => 'L\'Euro è la valuta predefinita di sistema in caso di emergenza. Disabilitarla potrebbe provocare effetti collaterali non previsti e potrebbe annullare la garanzia.', - 'deleted_currency' => 'Valuta :name elimina', - 'created_currency' => 'Valuta :name creata', - 'could_not_store_currency' => 'Impossibile memorizzare la nuova valuta.', - 'updated_currency' => 'Valuta :name aggiornata', - 'ask_site_owner' => 'Chiedi a :owner di aggiungere, rimuovere o modificare valute.', - 'currencies_intro' => 'Firefly III supporta varie valute che è possibile impostare e abilitare qui.', - 'make_default_currency' => 'Rendila predefinita', - 'default_currency' => 'predefinita', - 'currency_is_disabled' => 'Disabilitata', - 'enable_currency' => 'Abilita', - 'disable_currency' => 'Disabilita', - 'currencies_default_disabled' => 'Come impostazione predefinita la maggior parte di queste valute sono disabilitate. Per usarle devi prima abilitarle.', - 'currency_is_now_enabled' => 'La valuta ":name" è stata abilitata', - 'could_not_enable_currency' => 'Impossibile abilitare la valuta ":name". Ti preghiamo di revisionare i registri.', - 'currency_is_now_disabled' => 'La valuta ":name" è stata disabilitata', - 'could_not_disable_currency' => 'Impossibile disabilitare la valuta ":name". Forse è ancora in uso?', + 'create_currency' => 'Crea una nuova valuta', + 'store_currency' => 'Salva nuova valuta', + 'update_currency' => 'Aggiorna valuta', + 'new_default_currency' => '":name" è ora la valuta predefinita.', + 'default_currency_failed' => 'Impossibile rendere ":name" la valuta predefinita. Ti preghiamo di consultare i registri.', + 'cannot_delete_currency' => 'Impossibile eliminare :name perché è ancora in uso.', + 'cannot_delete_fallback_currency' => ':name è la valuta di default del sistema e non può essere eliminata.', + 'cannot_disable_currency_journals' => 'Non è possibile disabilitare :name perché ci sono ancora transazioni che la utilizzano.', + 'cannot_disable_currency_last_left' => 'Non è possibile disabilitare :name perché è l\'ultima valuta abilitata.', + 'cannot_disable_currency_account_meta' => 'Non è possibile disabilitare :name perché è utilizzata in conti attività.', + 'cannot_disable_currency_bills' => 'Non è possibile disabilitare :name perché è utilizzata in bollette.', + 'cannot_disable_currency_recurring' => 'Non è possibile disabilitare :name perché è utilizzata in transazioni ricorrenti.', + 'cannot_disable_currency_available_budgets' => 'Non è possibile disabilitare :name perché è disponibile nei budget disponibili.', + 'cannot_disable_currency_budget_limits' => 'Non è possibile disabilitare :name perché è utilizzata nei limiti dei budget.', + 'cannot_disable_currency_current_default' => 'Non è possibile disabilitare :name perché è la valuta predefinita corrente.', + 'cannot_disable_currency_system_fallback' => 'Non è possibile disabilitare :name perché è la valuta predefinita di sistema.', + 'disable_EUR_side_effects' => 'L\'Euro è la valuta predefinita di sistema in caso di emergenza. Disabilitarla potrebbe provocare effetti collaterali non previsti e potrebbe annullare la garanzia.', + 'deleted_currency' => 'Valuta :name elimina', + 'created_currency' => 'Valuta :name creata', + 'could_not_store_currency' => 'Impossibile memorizzare la nuova valuta.', + 'updated_currency' => 'Valuta :name aggiornata', + 'ask_site_owner' => 'Chiedi a :owner di aggiungere, rimuovere o modificare valute.', + 'currencies_intro' => 'Firefly III supporta varie valute che è possibile impostare e abilitare qui.', + 'make_default_currency' => 'Rendila predefinita', + 'default_currency' => 'predefinita', + 'currency_is_disabled' => 'Disabilitata', + 'enable_currency' => 'Abilita', + 'disable_currency' => 'Disabilita', + 'currencies_default_disabled' => 'Come impostazione predefinita la maggior parte di queste valute sono disabilitate. Per usarle devi prima abilitarle.', + 'currency_is_now_enabled' => 'La valuta ":name" è stata abilitata', + 'could_not_enable_currency' => 'Impossibile abilitare la valuta ":name". Ti preghiamo di revisionare i registri.', + 'currency_is_now_disabled' => 'La valuta ":name" è stata disabilitata', + 'could_not_disable_currency' => 'Impossibile disabilitare la valuta ":name". Forse è ancora in uso?', // forms: - 'mandatoryFields' => 'Campi obbligatori', - 'optionalFields' => 'Campi opzionali', - 'options' => 'Opzioni', + 'mandatoryFields' => 'Campi obbligatori', + 'optionalFields' => 'Campi opzionali', + 'options' => 'Opzioni', // budgets: - 'daily_budgets' => 'Budget giornalieri', - 'weekly_budgets' => 'Budget settimanali', - 'monthly_budgets' => 'Budget mensili', - 'quarterly_budgets' => 'Bilanci trimestrali', - 'half_year_budgets' => 'Bilanci semestrali', - 'yearly_budgets' => 'Budget annuali', - 'other_budgets' => 'Budget a periodi personalizzati', - 'budget_limit_not_in_range' => 'Questo importo si applica dal :start al :end:', - 'total_available_budget' => 'Budget totale disponibile (tra :start e :end)', - 'total_available_budget_in_currency' => 'Budget totale disponibile in :currency', - 'see_below' => 'vedi sotto', - 'create_new_budget' => 'Crea nuovo budget', - 'store_new_budget' => 'Salva il nuovo budget', - 'stored_new_budget' => 'Nuovo budget salvato ":name"', - 'available_between' => 'Disponibile tra :start e :end', - 'transactionsWithoutBudget' => 'Spese senza budget', - 'transactions_no_budget' => 'Spese senza budget tra :start e :end', - 'spent_between' => 'Già spesi tra :start e :end', - 'spent_between_left' => 'Spesi :spent tra :start e :end, rimasti :left.', - 'set_available_amount' => 'Imposta importo disponibile', - 'update_available_amount' => 'Aggiorna importo disponibile', - 'ab_basic_modal_explain' => 'Usa questo modulo per indicare quanto ti aspetti di mettere a budget (in totale, in :currency) nel periodo indicato.', - 'createBudget' => 'Nuovo budget', - 'invalid_currency' => 'Questa non è una valuta valida', - 'invalid_amount' => 'Inserisci un importo', - 'set_ab' => 'L\'importo del budget disponibile è stato impostato', - 'updated_ab' => 'L\'importo del budget disponibile è stato aggiornato', - 'deleted_ab' => 'L\'importo del budget disponibile è stato eliminato', - 'deleted_bl' => 'L\'importo del budget è stato eliminato', - 'alt_currency_ab_create' => 'Imposta il budget disponibile in un\'altra valuta', - 'bl_create_btn' => 'Imposta il budget in un\'altra valuta', - 'inactiveBudgets' => 'Budget disattivati', - 'without_budget_between' => 'Transazioni senza un budget tra :start e :end', - 'delete_budget' => 'Elimina budget ":name"', - 'deleted_budget' => 'Budget eliminato ":name"', - 'edit_budget' => 'Modifica budget ":name"', - 'updated_budget' => 'Budget ":name" aggiornato', - 'update_amount' => 'Aggiorna importo', - 'update_budget' => 'Budget aggiornato', - 'update_budget_amount_range' => 'Aggiorna l\'importo disponibile (previsto) tra il :start e il :end', - 'set_budget_limit_title' => 'Imposta l\'importo del budget per il budget :budget tra :start e :end', - 'set_budget_limit' => 'Importo del budget impostato', - 'budget_period_navigator' => 'Navigatore dei periodi', - 'info_on_available_amount' => 'Cosa ho a disposizione?', - 'available_amount_indication' => 'Utilizza questi importi per ottenere un\'indicazione di quale potrebbe essere il tuo budget totale.', - 'suggested' => 'Consigliato', - 'average_between' => 'Media tra :start e :end', - 'transferred_in' => 'Trasferito (ingresso)', - 'transferred_away' => 'Trasferito (uscita)', - 'auto_budget_none' => 'Nessun budget automatico', - 'auto_budget_reset' => 'Imposta un importo fisso per ogni periodo', - 'auto_budget_rollover' => 'Aggiungi un importo per ogni periodo', - 'auto_budget_adjusted' => 'Aggiungi un importo ogni periodo e correggi la spesa eccessiva', - 'auto_budget_period_daily' => 'Giornaliero', - 'auto_budget_period_weekly' => 'Settimanale', - 'auto_budget_period_monthly' => 'Mensile', - 'auto_budget_period_quarterly' => 'Trimestrale', - 'auto_budget_period_half_year' => 'Semestrale', - 'auto_budget_period_yearly' => 'Annuale', - 'auto_budget_help' => 'Puoi leggere di più su questa funzione nella guida. Clicca sull\'icona (?) in alto a destra.', - 'auto_budget_reset_icon' => 'Questo budget sarà impostato periodicamente', - 'auto_budget_rollover_icon' => 'L\'importo del budget aumenterà periodicamente', - 'auto_budget_adjusted_icon' => 'L\'importo del budget aumenterà periodicamente e correggerà la spesa eccessiva', - 'remove_budgeted_amount' => 'Rimuovi l\'import a budget in :currency', + 'daily_budgets' => 'Budget giornalieri', + 'weekly_budgets' => 'Budget settimanali', + 'monthly_budgets' => 'Budget mensili', + 'quarterly_budgets' => 'Bilanci trimestrali', + 'half_year_budgets' => 'Bilanci semestrali', + 'yearly_budgets' => 'Budget annuali', + 'other_budgets' => 'Budget a periodi personalizzati', + 'budget_limit_not_in_range' => 'Questo importo si applica dal :start al :end:', + 'total_available_budget' => 'Budget totale disponibile (tra :start e :end)', + 'total_available_budget_in_currency' => 'Budget totale disponibile in :currency', + 'see_below' => 'vedi sotto', + 'create_new_budget' => 'Crea nuovo budget', + 'store_new_budget' => 'Salva il nuovo budget', + 'stored_new_budget' => 'Nuovo budget salvato ":name"', + 'available_between' => 'Disponibile tra :start e :end', + 'transactionsWithoutBudget' => 'Spese senza budget', + 'transactions_no_budget' => 'Spese senza budget tra :start e :end', + 'spent_between' => 'Già spesi tra :start e :end', + 'spent_between_left' => 'Spesi :spent tra :start e :end, rimasti :left.', + 'set_available_amount' => 'Imposta importo disponibile', + 'update_available_amount' => 'Aggiorna importo disponibile', + 'ab_basic_modal_explain' => 'Usa questo modulo per indicare quanto ti aspetti di mettere a budget (in totale, in :currency) nel periodo indicato.', + 'createBudget' => 'Nuovo budget', + 'invalid_currency' => 'Questa non è una valuta valida', + 'invalid_amount' => 'Inserisci un importo', + 'set_ab' => 'L\'importo del budget disponibile è stato impostato', + 'updated_ab' => 'L\'importo del budget disponibile è stato aggiornato', + 'deleted_ab' => 'L\'importo del budget disponibile è stato eliminato', + 'deleted_bl' => 'L\'importo del budget è stato eliminato', + 'alt_currency_ab_create' => 'Imposta il budget disponibile in un\'altra valuta', + 'bl_create_btn' => 'Imposta il budget in un\'altra valuta', + 'inactiveBudgets' => 'Budget disattivati', + 'without_budget_between' => 'Transazioni senza un budget tra :start e :end', + 'delete_budget' => 'Elimina budget ":name"', + 'deleted_budget' => 'Budget eliminato ":name"', + 'edit_budget' => 'Modifica budget ":name"', + 'updated_budget' => 'Budget ":name" aggiornato', + 'update_amount' => 'Aggiorna importo', + 'update_budget' => 'Budget aggiornato', + 'update_budget_amount_range' => 'Aggiorna l\'importo disponibile (previsto) tra il :start e il :end', + 'set_budget_limit_title' => 'Imposta l\'importo del budget per il budget :budget tra :start e :end', + 'set_budget_limit' => 'Importo del budget impostato', + 'budget_period_navigator' => 'Navigatore dei periodi', + 'info_on_available_amount' => 'Cosa ho a disposizione?', + 'available_amount_indication' => 'Utilizza questi importi per ottenere un\'indicazione di quale potrebbe essere il tuo budget totale.', + 'suggested' => 'Consigliato', + 'average_between' => 'Media tra :start e :end', + 'transferred_in' => 'Trasferito (ingresso)', + 'transferred_away' => 'Trasferito (uscita)', + 'auto_budget_none' => 'Nessun budget automatico', + 'auto_budget_reset' => 'Imposta un importo fisso per ogni periodo', + 'auto_budget_rollover' => 'Aggiungi un importo per ogni periodo', + 'auto_budget_adjusted' => 'Aggiungi un importo ogni periodo e correggi la spesa eccessiva', + 'auto_budget_period_daily' => 'Giornaliero', + 'auto_budget_period_weekly' => 'Settimanale', + 'auto_budget_period_monthly' => 'Mensile', + 'auto_budget_period_quarterly' => 'Trimestrale', + 'auto_budget_period_half_year' => 'Semestrale', + 'auto_budget_period_yearly' => 'Annuale', + 'auto_budget_help' => 'Puoi leggere di più su questa funzione nella guida. Clicca sull\'icona (?) in alto a destra.', + 'auto_budget_reset_icon' => 'Questo budget sarà impostato periodicamente', + 'auto_budget_rollover_icon' => 'L\'importo del budget aumenterà periodicamente', + 'auto_budget_adjusted_icon' => 'L\'importo del budget aumenterà periodicamente e correggerà la spesa eccessiva', + 'remove_budgeted_amount' => 'Rimuovi l\'import a budget in :currency', // bills: - 'subscription' => 'Abbonamento', - 'not_expected_period' => 'Non prevista per questo periodo', - 'subscriptions_in_group' => 'Abbonamenti nel gruppo "%{title}"', - 'subscr_expected_x_times' => 'Prevedi di pagare %{amount} %{times} volte in questo periodo', - 'not_or_not_yet' => 'No (per ora)', - 'visit_bill' => 'Visita la fattura ":name" su Firefly III', - 'match_between_amounts' => 'La bolletta abbina le transazioni tra :low e :high.', - 'running_again_loss' => 'Le transazioni precedentemente collegate a questa bolletta potrebbero perdere la loro connessione se (non) corrispondono (più) alla regola.', - 'bill_related_rules' => 'Regole relative a questa bolletta', - 'repeats' => 'Si ripete', - 'bill_end_date_help' => 'Campo opzionale. La bolletta dovrebbe terminare in questa data.', - 'bill_extension_date_help' => 'Campo opzionale. La bolletta deve essere estesa (o annullata) in questa data o prima.', - 'bill_end_index_line' => 'Questa bolletta termina il :date', - 'bill_extension_index_line' => 'Questa bolletta deve essere estesa o annullata il :date', - 'connected_journals' => 'Transazioni connesse', - 'auto_match_on' => 'Abbinato automaticamente da Firefly III', - 'auto_match_off' => 'Non abbinato automaticamente a Firefly III', - 'next_expected_match' => 'Prossimo abbinamento previsto', - 'delete_bill' => 'Elimina bolletta ":name"', - 'deleted_bill' => 'Bolletta eliminata ":name"', - 'edit_bill' => 'Modifica bolletta ":name"', - 'more' => 'Altro', - 'rescan_old' => 'Esegui nuovamente le regole su tutte le transazioni', - 'update_bill' => 'Aggiorna bolletta', - 'updated_bill' => 'Bolletta aggiornata ":name"', - 'store_new_bill' => 'Salva la nuova bolletta', - 'stored_new_bill' => 'Nuova bolletta memorizzata ":name"', - 'cannot_scan_inactive_bill' => 'Le bollette non attive non possono essere scansionate.', - 'rescanned_bill' => 'Riscansionato tutto, e collegato :count transazione alla bolletta.|Risanato tutto, e collegate :count transazioni alla bolletta.', - 'average_bill_amount_year' => 'Importo medio della bolletta (:year)', - 'average_bill_amount_overall' => 'Importo medio della bolletta (totale)', - 'bill_is_active' => 'Bolletta attiva', - 'bill_expected_between' => 'Previsto tra :start e :end', - 'bill_will_automatch' => 'La bolletta verrà automaticamente collegata alle transazioni corrispondenti', - 'skips_over' => 'ogni', - 'bill_store_error' => 'Si è verificato un errore imprevisto durante la memorizzazione della nuova bolletta. Controlla i file di log', - 'list_inactive_rule' => 'regola inattiva', - 'bill_edit_rules' => 'Firefly III tenterà anche di modificare la regola relativa a questa bolletta. Se hai modificato questa regola da solo, Firefly III non cambierà nulla.|Firefly III tenterà anche di modificare le :count regole relative a questa bolletta. Se hai modificato queste regole, Firefly III non cambierà nulla.', - 'bill_expected_date' => 'Attesa :date', - 'bill_expected_date_js' => 'Attesa per {date}', - 'expected_amount' => 'Importo (previsto)', - 'bill_paid_on' => 'Pagata il {date}', - 'bill_repeats_weekly' => 'Ripeti ogni settimana', - 'bill_repeats_monthly' => 'Ripeti ogni mese', - 'bill_repeats_quarterly' => 'Ripeti ogni tre mesi', - 'bill_repeats_half-year' => 'Ripeti ogni sei mesi', - 'bill_repeats_yearly' => 'Ripeti ogni anno', - 'bill_repeats_weekly_other' => 'Ripeti a settimane alterne', - 'bill_repeats_monthly_other' => 'Ripeti a mesi alterni', - 'bill_repeats_quarterly_other' => 'Ripeti ogni altro trimestre', - 'bill_repeats_half-year_other' => 'Ripeti ogni anno', - 'bill_repeats_yearly_other' => 'Ripeti ad anni alterni', - 'bill_repeats_weekly_skip' => 'Ripeti ogni {skip} settimane', - 'bill_repeats_monthly_skip' => 'Ripeti ogni {skip} mesi', - 'bill_repeats_quarterly_skip' => 'Ripeti ogni {skip} trimestri', - 'bill_repeats_half-year_skip' => 'Ripeti ogni {skip} mezzi anni', - 'bill_repeats_yearly_skip' => 'Ripeti ogni {skip} anni', - 'subscriptions' => 'Abbonamenti', - 'go_to_subscriptions' => 'Vai ai tuoi abbonamenti', - 'forever' => 'Per sempre', - 'extension_date_is' => 'La data di estensione è {date}', + 'subscription' => 'Abbonamento', + 'not_expected_period' => 'Non prevista per questo periodo', + 'subscriptions_in_group' => 'Abbonamenti nel gruppo "%{title}"', + 'subscr_expected_x_times' => 'Prevedi di pagare %{amount} %{times} volte in questo periodo', + 'not_or_not_yet' => 'No (per ora)', + 'visit_bill' => 'Visita la fattura ":name" su Firefly III', + 'match_between_amounts' => 'La bolletta abbina le transazioni tra :low e :high.', + 'running_again_loss' => 'Le transazioni precedentemente collegate a questa bolletta potrebbero perdere la loro connessione se (non) corrispondono (più) alla regola.', + 'bill_related_rules' => 'Regole relative a questa bolletta', + 'repeats' => 'Si ripete', + 'bill_end_date_help' => 'Campo opzionale. La bolletta dovrebbe terminare in questa data.', + 'bill_extension_date_help' => 'Campo opzionale. La bolletta deve essere estesa (o annullata) in questa data o prima.', + 'bill_end_index_line' => 'Questa bolletta termina il :date', + 'bill_extension_index_line' => 'Questa bolletta deve essere estesa o annullata il :date', + 'connected_journals' => 'Transazioni connesse', + 'auto_match_on' => 'Abbinato automaticamente da Firefly III', + 'auto_match_off' => 'Non abbinato automaticamente a Firefly III', + 'next_expected_match' => 'Prossimo abbinamento previsto', + 'delete_bill' => 'Elimina bolletta ":name"', + 'deleted_bill' => 'Bolletta eliminata ":name"', + 'edit_bill' => 'Modifica bolletta ":name"', + 'more' => 'Altro', + 'rescan_old' => 'Esegui nuovamente le regole su tutte le transazioni', + 'update_bill' => 'Aggiorna bolletta', + 'updated_bill' => 'Bolletta aggiornata ":name"', + 'store_new_bill' => 'Salva la nuova bolletta', + 'stored_new_bill' => 'Nuova bolletta memorizzata ":name"', + 'cannot_scan_inactive_bill' => 'Le bollette non attive non possono essere scansionate.', + 'rescanned_bill' => 'Riscansionato tutto, e collegato :count transazione alla bolletta.|Risanato tutto, e collegate :count transazioni alla bolletta.', + 'average_bill_amount_year' => 'Importo medio della bolletta (:year)', + 'average_bill_amount_overall' => 'Importo medio della bolletta (totale)', + 'bill_is_active' => 'Bolletta attiva', + 'bill_expected_between' => 'Previsto tra :start e :end', + 'bill_will_automatch' => 'La bolletta verrà automaticamente collegata alle transazioni corrispondenti', + 'skips_over' => 'ogni', + 'bill_store_error' => 'Si è verificato un errore imprevisto durante la memorizzazione della nuova bolletta. Controlla i file di log', + 'list_inactive_rule' => 'regola inattiva', + 'bill_edit_rules' => 'Firefly III tenterà anche di modificare la regola relativa a questa bolletta. Se hai modificato questa regola da solo, Firefly III non cambierà nulla.|Firefly III tenterà anche di modificare le :count regole relative a questa bolletta. Se hai modificato queste regole, Firefly III non cambierà nulla.', + 'bill_expected_date' => 'Attesa :date', + 'bill_expected_date_js' => 'Attesa per {date}', + 'expected_amount' => 'Importo (previsto)', + 'bill_paid_on' => 'Pagata il {date}', + 'bill_repeats_weekly' => 'Ripeti ogni settimana', + 'bill_repeats_monthly' => 'Ripeti ogni mese', + 'bill_repeats_quarterly' => 'Ripeti ogni tre mesi', + 'bill_repeats_half-year' => 'Ripeti ogni sei mesi', + 'bill_repeats_yearly' => 'Ripeti ogni anno', + 'bill_repeats_weekly_other' => 'Ripeti a settimane alterne', + 'bill_repeats_monthly_other' => 'Ripeti a mesi alterni', + 'bill_repeats_quarterly_other' => 'Ripeti ogni altro trimestre', + 'bill_repeats_half-year_other' => 'Ripeti ogni anno', + 'bill_repeats_yearly_other' => 'Ripeti ad anni alterni', + 'bill_repeats_weekly_skip' => 'Ripeti ogni {skip} settimane', + 'bill_repeats_monthly_skip' => 'Ripeti ogni {skip} mesi', + 'bill_repeats_quarterly_skip' => 'Ripeti ogni {skip} trimestri', + 'bill_repeats_half-year_skip' => 'Ripeti ogni {skip} mezzi anni', + 'bill_repeats_yearly_skip' => 'Ripeti ogni {skip} anni', + 'subscriptions' => 'Abbonamenti', + 'go_to_subscriptions' => 'Vai ai tuoi abbonamenti', + 'forever' => 'Per sempre', + 'extension_date_is' => 'La data di estensione è {date}', // accounts: - 'i_am_owed_amount' => 'Mi è dovuto l\'importo', - 'i_owe_amount' => 'Devo l\'importo', - 'inactive_account_link' => 'Hai :count conto inattivo (archiviato), che puoi visualizzare in questa pagina separata.|Hai :count conti inattivi (archiviati), che puoi visualizzare in questa pagina separata.', - 'all_accounts_inactive' => 'Questi sono i tuoi conti inattivi.', - 'active_account_link' => 'Questo collegamento ti riporta ai conti attivi.', - 'account_missing_transaction' => 'Non è possibile visualizzare il conto #:id (":name") direttamente, a Firefly mancano le informazioni per il reindirizzamento.', - 'cc_monthly_payment_date_help' => 'Seleziona qualsiasi anno e mese, verrà comunque ignorato. Solo il giorno del mese è rilevante.', - 'details_for_asset' => 'Dettagli per conto attività ":name"', - 'details_for_expense' => 'Dettagli per conto uscite ":name"', - 'details_for_revenue' => 'Dettagli per conto entrate ":name"', - 'details_for_cash' => 'Dettagli per il conto contanti ":name"', - 'store_new_asset_account' => 'Salva nuovo conto attività', - 'store_new_expense_account' => 'Salva il nuovo conto uscite', - 'store_new_revenue_account' => 'Salva il nuovo conto entrate', - 'edit_asset_account' => 'Modifica conto attività ":name"', - 'edit_expense_account' => 'Modifica conto uscite ":name"', - 'edit_revenue_account' => 'Modifica conto entrate ":name"', - 'delete_asset_account' => 'Elimina conto attività ":name"', - 'delete_expense_account' => 'Elimina conto uscite ":name"', - 'delete_revenue_account' => 'Elimina conto entrate ":name"', - 'delete_liabilities_account' => 'Elimina passività ":name"', - 'asset_deleted' => 'Conto attività ":name" eliminato correttamente', - 'account_deleted' => 'Il conto ":name" è stato eliminato con successo', - 'expense_deleted' => 'Conto uscite ":name" eliminato correttamente', - 'revenue_deleted' => 'Conto entrate ":name" eliminato correttamente', - 'update_asset_account' => 'Aggiorna conto attività', - 'update_undefined_account' => 'Aggiorna conto', - 'update_liabilities_account' => 'Aggiorna passività', - 'update_expense_account' => 'Aggiorna conto uscite', - 'update_revenue_account' => 'Aggiorna conto entrate', - 'make_new_asset_account' => 'Crea un nuovo conto attività', - 'make_new_expense_account' => 'Crea un nuovo conto uscite', - 'make_new_revenue_account' => 'Crea nuovo conto entrate', - 'make_new_liabilities_account' => 'Crea una nuova passività', - 'asset_accounts' => 'Conti attività', - 'undefined_accounts' => 'Conti', - 'asset_accounts_inactive' => 'Conti attività (inattivi)', - 'expense_account' => 'Conto di spese', - 'expense_accounts' => 'Conti uscite', - 'expense_accounts_inactive' => 'Conti spese (inattivi)', - 'revenue_account' => 'Conto di entrate', - 'revenue_accounts' => 'Conti entrate', - 'revenue_accounts_inactive' => 'Conti entrate (inattivi)', - 'cash_accounts' => 'Conti contanti', - 'Cash account' => 'Conto contanti', - 'liabilities_accounts' => 'Passività', - 'liabilities_accounts_inactive' => 'Passività (inattive)', - 'reconcile_account' => 'Riconciliazione conto ":account"', - 'overview_of_reconcile_modal' => 'Panoramica della riconciliazione', - 'delete_reconciliation' => 'Elimina riconciliazione', - 'update_reconciliation' => 'Aggiorna riconciliazione', - 'amount_cannot_be_zero' => 'L\'importo non può essere zero', - 'end_of_reconcile_period' => 'Fine periodo riconciliazione: :period', - 'start_of_reconcile_period' => 'Inizio periodo riconciliazione: :period', - 'start_balance' => 'Saldo iniziale', - 'end_balance' => 'Saldo finale', - 'update_balance_dates_instruction' => 'Abbina gli importi e le date qui sopra al tuo estratto conto e premi "Inizia la riconciliazione"', - 'select_transactions_instruction' => 'Seleziona le transazioni che appaiono sul tuo estratto conto.', - 'select_range_and_balance' => 'Innanzitutto verifica l\'intervallo delle date e i saldi. Quindi premi "Inizia la riconciliazione"', - 'date_change_instruction' => 'Se cambi ora l\'intervallo di date, qualsiasi progresso andrà perso.', - 'update_selection' => 'Aggiorna selezione', - 'store_reconcile' => 'Memorizza la riconciliazione', - 'reconciliation_transaction' => 'Transazione di riconciliazione', - 'Reconciliation' => 'Riconciliazione', - 'reconciliation' => 'Riconciliazione', - 'reconcile_options' => 'Opzioni di riconciliazione', - 'reconcile_range' => 'Intervallo di riconciliazione', - 'start_reconcile' => 'Inizia la riconciliazione', - 'cash_account_type' => 'Contante', - 'cash' => 'contanti', - 'cant_find_redirect_account' => 'Firefly III ha provato a reindirizzare ma non è riuscito. Ci dispiace. Torna all\'indice.', - 'account_type' => 'Tipo conto', - 'save_transactions_by_moving' => 'Salva questa transazione spostandola in un altro conto:|Salva queste transazioni spostandole in un altro conto:', - 'save_transactions_by_moving_js' => 'Nessuna transazione|Salva questa transazione spostandola in un altro conto.|Salva queste transazioni spostandole in un altro conto.', - 'stored_new_account' => 'Nuovo conto ":name" stored!', - 'stored_new_account_js' => 'Nuovo conto "{name}" salvato!', - 'updated_account' => 'Aggiorna conto ":name"', - 'updated_account_js' => 'Conto "{title}" aggiornato.', - 'credit_card_options' => 'Opzioni carta di credito', - 'no_transactions_account' => 'Non ci sono transazioni (in questo periodo) per il conto attività ":name".', - 'no_transactions_period' => 'Non ci sono transazioni (in questo periodo).', - 'no_data_for_chart' => 'Non ci sono (ancora) abbastanza informazioni per generare questo grafico.', - 'select_at_least_one_account' => 'Seleziona almeno un conto attività', - 'select_at_least_one_category' => 'Seleziona almeno una categoria', - 'select_at_least_one_budget' => 'Seleziona almeno un budget', - 'select_at_least_one_tag' => 'Seleziona almeno un\'etichetta', - 'select_at_least_one_expense' => 'Seleziona almeno una combinazione di conti spese/entrate. Se non ne hai nessuno (la lista è vuota) questo resoconto non è disponibile.', - 'account_default_currency' => 'Questa sarà la valuta predefinita associata a questo conto.', - 'reconcile_has_more' => 'Il libro mastro di Firefly III ha più denaro rispetto a quanto afferma la tua banca. Ci sono diverse opzioni. Scegli cosa fare. In seguito, premi "Conferma riconciliazione".', - 'reconcile_has_less' => 'Il tuo conto Firefly III ha meno denaro rispetto a quanto afferma la tua banca. Ci sono diverse opzioni Si prega di scegliere cosa fare. Quindi, premi "Conferma riconciliazione".', - 'reconcile_is_equal' => 'Il libro mastro di Firefly III e i tuoi estratti conto bancari corrispondono. Non c\'è niente da fare. Premi "Conferma riconciliazione" per confermare l\'inserimento.', - 'create_pos_reconcile_transaction' => 'Concilia le transazioni selezionate e crea una correzione aggiungendo :amount a questo conto attività.', - 'create_neg_reconcile_transaction' => 'Concilia le transazioni selezionate e crea una correzione rimuovendo :amount da questo conto attività.', - 'reconcile_do_nothing' => 'Concilia le transazioni selezionate, ma non correggere.', - 'reconcile_go_back' => 'Puoi sempre modificare o eliminare una correzione in un secondo momento.', - 'must_be_asset_account' => 'È possibile riconciliare solo i conti attività', - 'reconciliation_stored' => 'Riconciliazione memorizzata', - 'reconciliation_error' => 'A causa di un errore le transazioni sono state contrassegnate come riconciliate ma la correzione non è stata memorizzata: :error.', - 'reconciliation_transaction_title' => 'Riconciliazione (:from - :to)', - 'sum_of_reconciliation' => 'Somma riconciliazione', - 'reconcile_this_account' => 'Riconcilia questo conto', - 'reconcile' => 'Riconcilia', - 'show' => 'Mostra', - 'confirm_reconciliation' => 'Conferma riconciliazione', - 'submitted_start_balance' => 'Saldo iniziale inserito', - 'selected_transactions' => 'Transazioni selezionate (:count)', - 'already_cleared_transactions' => 'Transazioni già conciliate (:count)', - 'submitted_end_balance' => 'Saldo finale inserito', - 'initial_balance_description' => 'Saldo iniziale per ":account"', - 'liability_credit_description' => 'Credito passività per ":account"', - 'interest_calc_' => 'sconosciuto', - 'interest_calc_daily' => 'Al giorno', - 'interest_calc_monthly' => 'Al mese', - 'interest_calc_yearly' => 'All\'anno', - 'interest_calc_weekly' => 'Settimanale', - 'interest_calc_half-year' => 'Semestrale', - 'interest_calc_quarterly' => 'Trimestrale', - 'initial_balance_account' => 'Saldo iniziale del conto :account', - 'list_options' => 'Lista opzioni', + 'i_am_owed_amount' => 'Mi è dovuto l\'importo', + 'i_owe_amount' => 'Devo l\'importo', + 'inactive_account_link' => 'Hai :count conto inattivo (archiviato), che puoi visualizzare in questa pagina separata.|Hai :count conti inattivi (archiviati), che puoi visualizzare in questa pagina separata.', + 'all_accounts_inactive' => 'Questi sono i tuoi conti inattivi.', + 'active_account_link' => 'Questo collegamento ti riporta ai conti attivi.', + 'account_missing_transaction' => 'Non è possibile visualizzare il conto #:id (":name") direttamente, a Firefly mancano le informazioni per il reindirizzamento.', + 'cc_monthly_payment_date_help' => 'Seleziona qualsiasi anno e mese, verrà comunque ignorato. Solo il giorno del mese è rilevante.', + 'details_for_asset' => 'Dettagli per conto attività ":name"', + 'details_for_expense' => 'Dettagli per conto uscite ":name"', + 'details_for_revenue' => 'Dettagli per conto entrate ":name"', + 'details_for_cash' => 'Dettagli per il conto contanti ":name"', + 'store_new_asset_account' => 'Salva nuovo conto attività', + 'store_new_expense_account' => 'Salva il nuovo conto uscite', + 'store_new_revenue_account' => 'Salva il nuovo conto entrate', + 'edit_asset_account' => 'Modifica conto attività ":name"', + 'edit_expense_account' => 'Modifica conto uscite ":name"', + 'edit_revenue_account' => 'Modifica conto entrate ":name"', + 'delete_asset_account' => 'Elimina conto attività ":name"', + 'delete_expense_account' => 'Elimina conto uscite ":name"', + 'delete_revenue_account' => 'Elimina conto entrate ":name"', + 'delete_liabilities_account' => 'Elimina passività ":name"', + 'asset_deleted' => 'Conto attività ":name" eliminato correttamente', + 'account_deleted' => 'Il conto ":name" è stato eliminato con successo', + 'expense_deleted' => 'Conto uscite ":name" eliminato correttamente', + 'revenue_deleted' => 'Conto entrate ":name" eliminato correttamente', + 'update_asset_account' => 'Aggiorna conto attività', + 'update_undefined_account' => 'Aggiorna conto', + 'update_liabilities_account' => 'Aggiorna passività', + 'update_expense_account' => 'Aggiorna conto uscite', + 'update_revenue_account' => 'Aggiorna conto entrate', + 'make_new_asset_account' => 'Crea un nuovo conto attività', + 'make_new_expense_account' => 'Crea un nuovo conto uscite', + 'make_new_revenue_account' => 'Crea nuovo conto entrate', + 'make_new_liabilities_account' => 'Crea una nuova passività', + 'asset_accounts' => 'Conti attività', + 'undefined_accounts' => 'Conti', + 'asset_accounts_inactive' => 'Conti attività (inattivi)', + 'expense_account' => 'Conto di spese', + 'expense_accounts' => 'Conti uscite', + 'expense_accounts_inactive' => 'Conti spese (inattivi)', + 'revenue_account' => 'Conto di entrate', + 'revenue_accounts' => 'Conti entrate', + 'revenue_accounts_inactive' => 'Conti entrate (inattivi)', + 'cash_accounts' => 'Conti contanti', + 'Cash account' => 'Conto contanti', + 'liabilities_accounts' => 'Passività', + 'liabilities_accounts_inactive' => 'Passività (inattive)', + 'reconcile_account' => 'Riconciliazione conto ":account"', + 'overview_of_reconcile_modal' => 'Panoramica della riconciliazione', + 'delete_reconciliation' => 'Elimina riconciliazione', + 'update_reconciliation' => 'Aggiorna riconciliazione', + 'amount_cannot_be_zero' => 'L\'importo non può essere zero', + 'end_of_reconcile_period' => 'Fine periodo riconciliazione: :period', + 'start_of_reconcile_period' => 'Inizio periodo riconciliazione: :period', + 'start_balance' => 'Saldo iniziale', + 'end_balance' => 'Saldo finale', + 'update_balance_dates_instruction' => 'Abbina gli importi e le date qui sopra al tuo estratto conto e premi "Inizia la riconciliazione"', + 'select_transactions_instruction' => 'Seleziona le transazioni che appaiono sul tuo estratto conto.', + 'select_range_and_balance' => 'Innanzitutto verifica l\'intervallo delle date e i saldi. Quindi premi "Inizia la riconciliazione"', + 'date_change_instruction' => 'Se cambi ora l\'intervallo di date, qualsiasi progresso andrà perso.', + 'update_selection' => 'Aggiorna selezione', + 'store_reconcile' => 'Memorizza la riconciliazione', + 'reconciliation_transaction' => 'Transazione di riconciliazione', + 'Reconciliation' => 'Riconciliazione', + 'reconciliation' => 'Riconciliazione', + 'reconcile_options' => 'Opzioni di riconciliazione', + 'reconcile_range' => 'Intervallo di riconciliazione', + 'start_reconcile' => 'Inizia la riconciliazione', + 'cash_account_type' => 'Contante', + 'cash' => 'contanti', + 'cant_find_redirect_account' => 'Firefly III ha provato a reindirizzare ma non è riuscito. Ci dispiace. Torna all\'indice.', + 'account_type' => 'Tipo conto', + 'save_transactions_by_moving' => 'Salva questa transazione spostandola in un altro conto:|Salva queste transazioni spostandole in un altro conto:', + 'save_transactions_by_moving_js' => 'Nessuna transazione|Salva questa transazione spostandola in un altro conto.|Salva queste transazioni spostandole in un altro conto.', + 'stored_new_account' => 'Nuovo conto ":name" stored!', + 'stored_new_account_js' => 'Nuovo conto "{name}" salvato!', + 'updated_account' => 'Aggiorna conto ":name"', + 'updated_account_js' => 'Conto "{title}" aggiornato.', + 'credit_card_options' => 'Opzioni carta di credito', + 'no_transactions_account' => 'Non ci sono transazioni (in questo periodo) per il conto attività ":name".', + 'no_transactions_period' => 'Non ci sono transazioni (in questo periodo).', + 'no_data_for_chart' => 'Non ci sono (ancora) abbastanza informazioni per generare questo grafico.', + 'select_at_least_one_account' => 'Seleziona almeno un conto attività', + 'select_at_least_one_category' => 'Seleziona almeno una categoria', + 'select_at_least_one_budget' => 'Seleziona almeno un budget', + 'select_at_least_one_tag' => 'Seleziona almeno un\'etichetta', + 'select_at_least_one_expense' => 'Seleziona almeno una combinazione di conti spese/entrate. Se non ne hai nessuno (la lista è vuota) questo resoconto non è disponibile.', + 'account_default_currency' => 'Questa sarà la valuta predefinita associata a questo conto.', + 'reconcile_has_more' => 'Il libro mastro di Firefly III ha più denaro rispetto a quanto afferma la tua banca. Ci sono diverse opzioni. Scegli cosa fare. In seguito, premi "Conferma riconciliazione".', + 'reconcile_has_less' => 'Il tuo conto Firefly III ha meno denaro rispetto a quanto afferma la tua banca. Ci sono diverse opzioni Si prega di scegliere cosa fare. Quindi, premi "Conferma riconciliazione".', + 'reconcile_is_equal' => 'Il libro mastro di Firefly III e i tuoi estratti conto bancari corrispondono. Non c\'è niente da fare. Premi "Conferma riconciliazione" per confermare l\'inserimento.', + 'create_pos_reconcile_transaction' => 'Concilia le transazioni selezionate e crea una correzione aggiungendo :amount a questo conto attività.', + 'create_neg_reconcile_transaction' => 'Concilia le transazioni selezionate e crea una correzione rimuovendo :amount da questo conto attività.', + 'reconcile_do_nothing' => 'Concilia le transazioni selezionate, ma non correggere.', + 'reconcile_go_back' => 'Puoi sempre modificare o eliminare una correzione in un secondo momento.', + 'must_be_asset_account' => 'È possibile riconciliare solo i conti attività', + 'reconciliation_stored' => 'Riconciliazione memorizzata', + 'reconciliation_error' => 'A causa di un errore le transazioni sono state contrassegnate come riconciliate ma la correzione non è stata memorizzata: :error.', + 'reconciliation_transaction_title' => 'Riconciliazione (:from - :to)', + 'sum_of_reconciliation' => 'Somma riconciliazione', + 'reconcile_this_account' => 'Riconcilia questo conto', + 'reconcile' => 'Riconcilia', + 'show' => 'Mostra', + 'confirm_reconciliation' => 'Conferma riconciliazione', + 'submitted_start_balance' => 'Saldo iniziale inserito', + 'selected_transactions' => 'Transazioni selezionate (:count)', + 'already_cleared_transactions' => 'Transazioni già conciliate (:count)', + 'submitted_end_balance' => 'Saldo finale inserito', + 'initial_balance_description' => 'Saldo iniziale per ":account"', + 'liability_credit_description' => 'Credito passività per ":account"', + 'interest_calc_' => 'sconosciuto', + 'interest_calc_daily' => 'Al giorno', + 'interest_calc_monthly' => 'Al mese', + 'interest_calc_yearly' => 'All\'anno', + 'interest_calc_weekly' => 'Settimanale', + 'interest_calc_half-year' => 'Semestrale', + 'interest_calc_quarterly' => 'Trimestrale', + 'initial_balance_account' => 'Saldo iniziale del conto :account', + 'list_options' => 'Lista opzioni', // categories: - 'new_category' => 'Nuova categoria', - 'create_new_category' => 'Crea nuova categoria', - 'without_category' => 'Senza categoria', - 'update_category' => 'Aggiorna categoria', - 'updated_category' => 'Aggiorna categoria ":name"', - 'categories' => 'Categorie', - 'edit_category' => 'Modifica categoria ":name"', - 'no_category' => '(nessuna categoria)', - 'unknown_category_plain' => 'Nessuna categoria', - 'category' => 'Categoria', - 'delete_category' => 'Elimina categoria ":name"', - 'deleted_category' => 'Categoria eliminata ":name"', - 'store_category' => 'Salva nuova categoria', - 'stored_category' => 'Salva nuova categoria ":name"', - 'without_category_between' => 'Senza categoria tra :start e :end', + 'new_category' => 'Nuova categoria', + 'create_new_category' => 'Crea nuova categoria', + 'without_category' => 'Senza categoria', + 'update_category' => 'Aggiorna categoria', + 'updated_category' => 'Aggiorna categoria ":name"', + 'categories' => 'Categorie', + 'edit_category' => 'Modifica categoria ":name"', + 'no_category' => '(nessuna categoria)', + 'unknown_category_plain' => 'Nessuna categoria', + 'category' => 'Categoria', + 'delete_category' => 'Elimina categoria ":name"', + 'deleted_category' => 'Categoria eliminata ":name"', + 'store_category' => 'Salva nuova categoria', + 'stored_category' => 'Salva nuova categoria ":name"', + 'without_category_between' => 'Senza categoria tra :start e :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Attendi il caricamento del modello', - 'wait_loading_data' => 'Ti preghiamo di attendere il caricamento delle tue informazioni...', - 'wait_attachments' => 'Attendere che gli allegati vengano caricati.', - 'errors_upload' => 'Caricamento fallito. Controlla la console del tuo browser per l\'errore.', - 'amount_foreign_if' => 'Importo in valuta estera, nel caso', - 'amount_destination_account' => 'Importo nella valuta del conto di destinazione', - 'edit_transaction_title' => 'Modifica transazione ":description"', - 'unreconcile' => 'Annulla riconciliazione', - 'update_withdrawal' => 'Aggiorna prelievo', - 'update_deposit' => 'Aggiorna entrata', - 'update_transaction' => 'Aggiorna transazione', - 'update_transfer' => 'Aggiorna trasferimento', - 'updated_withdrawal' => 'Prelievo ":description" aggiornato', - 'updated_deposit' => 'Entrata aggiornata ":description"', - 'updated_transfer' => 'Trasferimento ":description" aggiornato', - 'no_changes_withdrawal' => 'La ":description" del prelievo non è stata modificata.', - 'no_changes_deposit' => 'La ":description" del deposito non è stata modificata.', - 'no_changes_transfer' => 'La ":description" del trasferimento non è stata modificata.', - 'delete_withdrawal' => 'Elimina prelievo ":description"', - 'delete_deposit' => 'Elimina entrata ":description"', - 'delete_transfer' => 'Elimina trasferimento ":description"', - 'deleted_withdrawal' => 'Prelievo ":description" eliminato correttamente', - 'deleted_deposit' => 'Entrata ":description" eliminata correttamente', - 'deleted_transfer' => 'Trasferimento ":description" eliminato correttamente', - 'deleted_reconciliation' => 'Transazione di riconciliazione ":description" elimina con successo', - 'stored_journal' => 'Nuova transazione ":description" creata correttamente', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Hai creato con successo la nuova transazione', - 'updated_journal_no_descr' => 'Transazione aggiornata con successo', - 'select_transactions' => 'Seleziona transazioni', - 'rule_group_select_transactions' => 'Applica ":title" a transazioni', - 'rule_select_transactions' => 'Applica ":title" a transazioni', - 'stop_selection' => 'Smetti di selezionare le transazioni', - 'reconcile_selected' => 'Riconcilia', - 'mass_delete_journals' => 'Elimina un certo numero di transazioni', - 'mass_edit_journals' => 'Modifica un certo numero di transazioni', - 'mass_bulk_journals' => 'Modifica in blocco un certo numero di transazioni', - 'mass_bulk_journals_explain' => 'Questo modulo di consente di cambiare le proprietà delle transazioni elencate di seguito in un unico aggiornamento. Tutte le transazioni nella tabella verranno aggiornate quando cambi i parametri che vedi.', - 'part_of_split' => 'Questa transazione fa parte di una transazione suddivisa. Se non hai selezionato tutte le suddivisioni, potresti finire con il modificare solo metà della transazione.', - 'bulk_set_new_values' => 'Usa gli inserimenti qui sotto per impostare nuovi valori. Se li lasci vuoti, saranno resi vuoti per tutti. Inoltre, si noti che solo i prelievi avranno un budget.', - 'no_bulk_category' => 'Non aggiornare la categoria', - 'no_bulk_budget' => 'Non aggiornare il budget', - 'no_bulk_tags' => 'Non aggiornare le etichette', - 'replace_with_these_tags' => 'Sostituisci con queste etichette', - 'append_these_tags' => 'Aggiungi queste etichette', - 'mass_edit' => 'Modifica singolarmente le selezionate', - 'bulk_edit' => 'Modifica in gruppo le selezionate', - 'mass_delete' => 'Elimina selezionate', - 'cannot_edit_other_fields' => 'Non puoi modificare in blocco altri campi oltre a quelli presenti perché non c\'è spazio per mostrarli. Segui il link e modificali uno per uno se è necessario modificare questi campi.', - 'cannot_change_amount_reconciled' => 'Non puoi cambiare l\'importo delle transazioni riconciliate.', - 'no_budget' => '(nessun budget)', - 'no_bill' => '(nessuna bolletta)', - 'account_per_budget' => 'Conto per budget', - 'account_per_category' => 'Conto per categoria', - 'create_new_object' => 'Crea', - 'empty' => '(vuoto)', - 'all_other_budgets' => '(tutti gli altri budget)', - 'all_other_accounts' => '(tutti gli altri conti)', - 'expense_per_source_account' => 'Spese per conto di origine', - 'expense_per_destination_account' => 'Spese per conto di destinazione', - 'income_per_destination_account' => 'Entrate per conto di destinazione', - 'spent_in_specific_category' => 'Spesi nella categoria ":category"', - 'earned_in_specific_category' => 'Guadagnati nella categoria ":category"', - 'spent_in_specific_tag' => 'Spesi per l\'etichetta ":tag"', - 'earned_in_specific_tag' => 'Guadagnati per l\'etichetta ":tag"', - 'income_per_source_account' => 'Reddito per conto di origine', - 'average_spending_per_destination' => 'Spesa media per conto di destinazione', - 'average_spending_per_source' => 'Spesa media per conto di origine', - 'average_earning_per_source' => 'Guadagno medio per conto di origine', - 'average_earning_per_destination' => 'Guadagno medio per conto di destinazione', - 'account_per_tag' => 'Conto per etichetta', - 'tag_report_expenses_listed_once' => 'Spese e entrate non sono mai elencate due volte. Se una transazione ha più di un\'etichetta, potrebbe apparire sotto solo uno delle sue etichette. Può sembrare che questa lista manchi di alcuni dati ma gli importi saranno corretti.', - 'double_report_expenses_charted_once' => 'Spese e entrate non sono mai visualizzate due volte. Se una transazione ha più di un\'etichetta, potrebbe apparire sotto solo uno delle sue etichette. Può sembrare che questo grafico manchi di alcuni dati ma gli importi saranno corretti.', - 'tag_report_chart_single_tag' => 'Questo grafico è valido per una singola etichetta. Se una transazione ha più di una etichetta, quello che tu vedi qui potrebbe vedersi anche nei grafici delle altre etichette.', - 'tag' => 'Etichetta', - 'no_budget_squared' => '(nessun budget)', - 'perm-delete-many' => 'Eliminare molti elementi in una sola volta può essere molto pericoloso. Sii cauto. Da questa pagina puoi eliminare parte di una transazione suddivisa, quindi fallo con attenzione.', - 'mass_deleted_transactions_success' => ':count transazione eliminata.|:count transazioni eliminate.', - 'mass_edited_transactions_success' => ':count transazione aggiornata.|:count transazioni aggiornate.', - 'opt_group_' => '(nessun tipo di conto)', - 'opt_group_no_account_type' => '(nessun tipo di conto)', - 'opt_group_defaultAsset' => 'Conti attività predefiniti', - 'opt_group_savingAsset' => 'Conti risparmio', - 'opt_group_sharedAsset' => 'Conti attività condivisi', - 'opt_group_ccAsset' => 'Carte di credito', - 'opt_group_cashWalletAsset' => 'Portafogli', - 'opt_group_expense_account' => 'Conti uscite', - 'opt_group_revenue_account' => 'Conti entrate', - 'opt_group_l_Loan' => 'Passività: Prestito', - 'opt_group_cash_account' => 'Conto contanti', - 'opt_group_l_Debt' => 'Passività: Debito', - 'opt_group_l_Mortgage' => 'Passività: Mutuo', - 'opt_group_l_Credit card' => 'Passività: Carta di credito', - 'notes' => 'Note', - 'unknown_journal_error' => 'Impossibile memorizzare la transazione. Controllare i file di log.', - 'attachment_not_found' => 'Impossibile trovare questo allegato.', - 'journal_link_bill' => 'Questa transazione è collegata alla bolletta :name. Per rimuovere il collegamento, deseleziona la casella di controllo. Usa le regole per collegarla ad un\'altra bolletta.', - 'transaction_stored_link' => 'La transazione #{ID} ("{title}") è stata salvata.', - 'transaction_new_stored_link' => 'La transazione #{ID} è stata salvata.', - 'transaction_updated_link' => 'La transazione #{ID} ("{title}") è stata aggiornata.', - 'transaction_updated_no_changes' => 'La transazione #{ID} ("{title}") non ha avuto cambiamenti.', - 'first_split_decides' => 'La prima suddivisione determina il valore di questo campo', - 'first_split_overrules_source' => 'La prima suddivisione potrebbe sovrascrivere l\'account di origine', - 'first_split_overrules_destination' => 'La prima suddivisione potrebbe sovrascrivere l\'account di destinazione', - 'spent_x_of_y' => 'Spesi {amount} di {total}', + 'wait_loading_transaction' => 'Attendi il caricamento del modello', + 'wait_loading_data' => 'Ti preghiamo di attendere il caricamento delle tue informazioni...', + 'wait_attachments' => 'Attendere che gli allegati vengano caricati.', + 'errors_upload' => 'Caricamento fallito. Controlla la console del tuo browser per l\'errore.', + 'amount_foreign_if' => 'Importo in valuta estera, nel caso', + 'amount_destination_account' => 'Importo nella valuta del conto di destinazione', + 'edit_transaction_title' => 'Modifica transazione ":description"', + 'unreconcile' => 'Annulla riconciliazione', + 'update_withdrawal' => 'Aggiorna prelievo', + 'update_deposit' => 'Aggiorna entrata', + 'update_transaction' => 'Aggiorna transazione', + 'update_transfer' => 'Aggiorna trasferimento', + 'updated_withdrawal' => 'Prelievo ":description" aggiornato', + 'updated_deposit' => 'Entrata aggiornata ":description"', + 'updated_transfer' => 'Trasferimento ":description" aggiornato', + 'no_changes_withdrawal' => 'La ":description" del prelievo non è stata modificata.', + 'no_changes_deposit' => 'La ":description" del deposito non è stata modificata.', + 'no_changes_transfer' => 'La ":description" del trasferimento non è stata modificata.', + 'delete_withdrawal' => 'Elimina prelievo ":description"', + 'delete_deposit' => 'Elimina entrata ":description"', + 'delete_transfer' => 'Elimina trasferimento ":description"', + 'deleted_withdrawal' => 'Prelievo ":description" eliminato correttamente', + 'deleted_deposit' => 'Entrata ":description" eliminata correttamente', + 'deleted_transfer' => 'Trasferimento ":description" eliminato correttamente', + 'deleted_reconciliation' => 'Transazione di riconciliazione ":description" elimina con successo', + 'stored_journal' => 'Nuova transazione ":description" creata correttamente', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Hai creato con successo la nuova transazione', + 'updated_journal_no_descr' => 'Transazione aggiornata con successo', + 'select_transactions' => 'Seleziona transazioni', + 'rule_group_select_transactions' => 'Applica ":title" a transazioni', + 'rule_select_transactions' => 'Applica ":title" a transazioni', + 'stop_selection' => 'Smetti di selezionare le transazioni', + 'reconcile_selected' => 'Riconcilia', + 'mass_delete_journals' => 'Elimina un certo numero di transazioni', + 'mass_edit_journals' => 'Modifica un certo numero di transazioni', + 'mass_bulk_journals' => 'Modifica in blocco un certo numero di transazioni', + 'mass_bulk_journals_explain' => 'Questo modulo di consente di cambiare le proprietà delle transazioni elencate di seguito in un unico aggiornamento. Tutte le transazioni nella tabella verranno aggiornate quando cambi i parametri che vedi.', + 'part_of_split' => 'Questa transazione fa parte di una transazione suddivisa. Se non hai selezionato tutte le suddivisioni, potresti finire con il modificare solo metà della transazione.', + 'bulk_set_new_values' => 'Usa gli inserimenti qui sotto per impostare nuovi valori. Se li lasci vuoti, saranno resi vuoti per tutti. Inoltre, si noti che solo i prelievi avranno un budget.', + 'no_bulk_category' => 'Non aggiornare la categoria', + 'no_bulk_budget' => 'Non aggiornare il budget', + 'no_bulk_tags' => 'Non aggiornare le etichette', + 'replace_with_these_tags' => 'Sostituisci con queste etichette', + 'append_these_tags' => 'Aggiungi queste etichette', + 'mass_edit' => 'Modifica singolarmente le selezionate', + 'bulk_edit' => 'Modifica in gruppo le selezionate', + 'mass_delete' => 'Elimina selezionate', + 'cannot_edit_other_fields' => 'Non puoi modificare in blocco altri campi oltre a quelli presenti perché non c\'è spazio per mostrarli. Segui il link e modificali uno per uno se è necessario modificare questi campi.', + 'cannot_change_amount_reconciled' => 'Non puoi cambiare l\'importo delle transazioni riconciliate.', + 'no_budget' => '(nessun budget)', + 'no_bill' => '(nessuna bolletta)', + 'account_per_budget' => 'Conto per budget', + 'account_per_category' => 'Conto per categoria', + 'create_new_object' => 'Crea', + 'empty' => '(vuoto)', + 'all_other_budgets' => '(tutti gli altri budget)', + 'all_other_accounts' => '(tutti gli altri conti)', + 'expense_per_source_account' => 'Spese per conto di origine', + 'expense_per_destination_account' => 'Spese per conto di destinazione', + 'income_per_destination_account' => 'Entrate per conto di destinazione', + 'spent_in_specific_category' => 'Spesi nella categoria ":category"', + 'earned_in_specific_category' => 'Guadagnati nella categoria ":category"', + 'spent_in_specific_tag' => 'Spesi per l\'etichetta ":tag"', + 'earned_in_specific_tag' => 'Guadagnati per l\'etichetta ":tag"', + 'income_per_source_account' => 'Reddito per conto di origine', + 'average_spending_per_destination' => 'Spesa media per conto di destinazione', + 'average_spending_per_source' => 'Spesa media per conto di origine', + 'average_earning_per_source' => 'Guadagno medio per conto di origine', + 'average_earning_per_destination' => 'Guadagno medio per conto di destinazione', + 'account_per_tag' => 'Conto per etichetta', + 'tag_report_expenses_listed_once' => 'Spese e entrate non sono mai elencate due volte. Se una transazione ha più di un\'etichetta, potrebbe apparire sotto solo uno delle sue etichette. Può sembrare che questa lista manchi di alcuni dati ma gli importi saranno corretti.', + 'double_report_expenses_charted_once' => 'Spese e entrate non sono mai visualizzate due volte. Se una transazione ha più di un\'etichetta, potrebbe apparire sotto solo uno delle sue etichette. Può sembrare che questo grafico manchi di alcuni dati ma gli importi saranno corretti.', + 'tag_report_chart_single_tag' => 'Questo grafico è valido per una singola etichetta. Se una transazione ha più di una etichetta, quello che tu vedi qui potrebbe vedersi anche nei grafici delle altre etichette.', + 'tag' => 'Etichetta', + 'no_budget_squared' => '(nessun budget)', + 'perm-delete-many' => 'Eliminare molti elementi in una sola volta può essere molto pericoloso. Sii cauto. Da questa pagina puoi eliminare parte di una transazione suddivisa, quindi fallo con attenzione.', + 'mass_deleted_transactions_success' => ':count transazione eliminata.|:count transazioni eliminate.', + 'mass_edited_transactions_success' => ':count transazione aggiornata.|:count transazioni aggiornate.', + 'opt_group_' => '(nessun tipo di conto)', + 'opt_group_no_account_type' => '(nessun tipo di conto)', + 'opt_group_defaultAsset' => 'Conti attività predefiniti', + 'opt_group_savingAsset' => 'Conti risparmio', + 'opt_group_sharedAsset' => 'Conti attività condivisi', + 'opt_group_ccAsset' => 'Carte di credito', + 'opt_group_cashWalletAsset' => 'Portafogli', + 'opt_group_expense_account' => 'Conti uscite', + 'opt_group_revenue_account' => 'Conti entrate', + 'opt_group_l_Loan' => 'Passività: Prestito', + 'opt_group_cash_account' => 'Conto contanti', + 'opt_group_l_Debt' => 'Passività: Debito', + 'opt_group_l_Mortgage' => 'Passività: Mutuo', + 'opt_group_l_Credit card' => 'Passività: Carta di credito', + 'notes' => 'Note', + 'unknown_journal_error' => 'Impossibile memorizzare la transazione. Controllare i file di log.', + 'attachment_not_found' => 'Impossibile trovare questo allegato.', + 'journal_link_bill' => 'Questa transazione è collegata alla bolletta :name. Per rimuovere il collegamento, deseleziona la casella di controllo. Usa le regole per collegarla ad un\'altra bolletta.', + 'transaction_stored_link' => 'La transazione #{ID} ("{title}") è stata salvata.', + 'transaction_new_stored_link' => 'La transazione #{ID} è stata salvata.', + 'transaction_updated_link' => 'La transazione #{ID} ("{title}") è stata aggiornata.', + 'transaction_updated_no_changes' => 'La transazione #{ID} ("{title}") non ha avuto cambiamenti.', + 'first_split_decides' => 'La prima suddivisione determina il valore di questo campo', + 'first_split_overrules_source' => 'La prima suddivisione potrebbe sovrascrivere l\'account di origine', + 'first_split_overrules_destination' => 'La prima suddivisione potrebbe sovrascrivere l\'account di destinazione', + 'spent_x_of_y' => 'Spesi {amount} di {total}', // new user: - 'welcome' => 'Benvenuto in Firefly III!', - 'submit' => 'Invia', - 'submission' => 'Invio', - 'submit_yes_really' => 'Invia (sì, so quello che sto facendo)', - 'getting_started' => 'Inizia', - 'to_get_started' => 'È bello vedere che hai installato Firefly III con successo. Per iniziare con questo strumento, inserisci il nome della tua banca e il saldo del tuo conto corrente principale. Non preoccuparti se hai più conti. È possibile aggiungere quelli più tardi. Firefly III ha bisogno di qualcosa per iniziare.', - 'savings_balance_text' => 'Firefly III creerà automaticamente un conto di risparmio per te. Per impostazione predefinita, non ci saranno soldi nel tuo conto di risparmio, ma se comunichi a Firefly III il saldo verrà salvato come tale.', - 'finish_up_new_user' => 'Questo è tutto! Puoi continuare premendo Invia. Verrai indirizzato all\'indice di Firefly III.', - 'stored_new_accounts_new_user' => 'I tuoi nuovi conti sono stati salvati.', - 'set_preferred_language' => 'Se preferisci usare Firefly III in un\'altra lingua, impostala qui.', - 'language' => 'Lingua', - 'new_savings_account' => 'Conto di risparmio :bank_name', - 'cash_wallet' => 'Portafoglio', - 'currency_not_present' => 'Se la valuta che usi normalmente non è elencata, non preoccuparti. Puoi creare le tue valute in Opzioni > Valute.', + 'welcome' => 'Benvenuto in Firefly III!', + 'submit' => 'Invia', + 'submission' => 'Invio', + 'submit_yes_really' => 'Invia (sì, so quello che sto facendo)', + 'getting_started' => 'Inizia', + 'to_get_started' => 'È bello vedere che hai installato Firefly III con successo. Per iniziare con questo strumento, inserisci il nome della tua banca e il saldo del tuo conto corrente principale. Non preoccuparti se hai più conti. È possibile aggiungere quelli più tardi. Firefly III ha bisogno di qualcosa per iniziare.', + 'savings_balance_text' => 'Firefly III creerà automaticamente un conto di risparmio per te. Per impostazione predefinita, non ci saranno soldi nel tuo conto di risparmio, ma se comunichi a Firefly III il saldo verrà salvato come tale.', + 'finish_up_new_user' => 'Questo è tutto! Puoi continuare premendo Invia. Verrai indirizzato all\'indice di Firefly III.', + 'stored_new_accounts_new_user' => 'I tuoi nuovi conti sono stati salvati.', + 'set_preferred_language' => 'Se preferisci usare Firefly III in un\'altra lingua, impostala qui.', + 'language' => 'Lingua', + 'new_savings_account' => 'Conto di risparmio :bank_name', + 'cash_wallet' => 'Portafoglio', + 'currency_not_present' => 'Se la valuta che usi normalmente non è elencata, non preoccuparti. Puoi creare le tue valute in Opzioni > Valute.', // home page: - 'transaction_table_description' => 'Una tabella contenente le tue transazioni', - 'opposing_account' => 'Conto beneficiario', - 'yourAccounts' => 'I tuoi conti', - 'your_accounts' => 'Panoramica del tuo account', - 'category_overview' => 'Panoramica della categoria', - 'expense_overview' => 'Panoramica del conto spese', - 'revenue_overview' => 'Panoramica del conto entrate', - 'budgetsAndSpending' => 'Budget e spese', - 'budgets_and_spending' => 'Budget e spese', - 'go_to_budget' => 'Vai al budget "{budget}"', - 'go_to_deposits' => 'Vai ai depositi', - 'go_to_expenses' => 'Vai alle spese', - 'savings' => 'Risparmi', - 'newWithdrawal' => 'Nuova uscita', - 'newDeposit' => 'Nuova entrata', - 'newTransfer' => 'Nuovo trasferimento', - 'bills_to_pay' => 'Bollette da pagare', - 'per_day' => 'Al giorno', - 'left_to_spend_per_day' => 'Spese al giorno', - 'bills_paid' => 'Bollette pagate', - 'custom_period' => 'Periodo personalizzato', - 'reset_to_current' => 'Ripristina il periodo corrente', - 'select_period' => 'Seleziona il periodo', + 'transaction_table_description' => 'Una tabella contenente le tue transazioni', + 'opposing_account' => 'Conto beneficiario', + 'yourAccounts' => 'I tuoi conti', + 'your_accounts' => 'Panoramica del tuo account', + 'category_overview' => 'Panoramica della categoria', + 'expense_overview' => 'Panoramica del conto spese', + 'revenue_overview' => 'Panoramica del conto entrate', + 'budgetsAndSpending' => 'Budget e spese', + 'budgets_and_spending' => 'Budget e spese', + 'go_to_budget' => 'Vai al budget "{budget}"', + 'go_to_deposits' => 'Vai ai depositi', + 'go_to_expenses' => 'Vai alle spese', + 'savings' => 'Risparmi', + 'newWithdrawal' => 'Nuova uscita', + 'newDeposit' => 'Nuova entrata', + 'newTransfer' => 'Nuovo trasferimento', + 'bills_to_pay' => 'Bollette da pagare', + 'per_day' => 'Al giorno', + 'left_to_spend_per_day' => 'Spese al giorno', + 'bills_paid' => 'Bollette pagate', + 'custom_period' => 'Periodo personalizzato', + 'reset_to_current' => 'Ripristina il periodo corrente', + 'select_period' => 'Seleziona il periodo', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Preferenze', - 'logout' => 'Esci', - 'logout_other_sessions' => 'Esci da tutte le altre sessioni', - 'toggleNavigation' => 'Attiva / disattiva la navigazione', - 'searchPlaceholder' => 'Cerca...', - 'version' => 'Versione', - 'dashboard' => 'Cruscotto', - 'income_and_expense' => 'Entrate e spese', - 'all_money' => 'Tutto il tuo denaro', - 'unknown_source_plain' => 'Conto d\'origine sconosciuto', - 'unknown_dest_plain' => 'Conto di destinazione sconosciuto', - 'unknown_any_plain' => 'Conto sconosciuto', - 'unknown_budget_plain' => 'Nessun budget', - 'available_budget' => 'Budget disponibile ({currency})', - 'currencies' => 'Valute', - 'activity' => 'Attività', - 'usage' => 'Uso', - 'accounts' => 'Conti', - 'Asset account' => 'Conto attività', - 'Default account' => 'Conto attività', - 'Expense account' => 'Conto spese', - 'Revenue account' => 'Conto entrate', - 'Initial balance account' => 'Saldo iniziale conto', - 'account_type_Asset account' => 'Conto di risorse', - 'account_type_Expense account' => 'Conto di spesa', - 'account_type_Revenue account' => 'Conto di entrate', - 'account_type_Debt' => 'Debito', - 'account_type_Loan' => 'Prestito', - 'account_type_Mortgage' => 'Mutuo', - 'account_type_debt' => 'Debito', - 'account_type_loan' => 'Prestito', - 'account_type_mortgage' => 'Mutuo', - 'account_type_Credit card' => 'Carta di credito', - 'credit_card_type_monthlyFull' => 'Pagamento intero ogni mese', - 'liability_direction_credit' => 'Questo debito mi è dovuto', - 'liability_direction_debit' => 'Devo questo debito a qualcun altro', - 'liability_direction_credit_short' => 'Mi devono questo debito', - 'liability_direction_debit_short' => 'Devo questo debito', - 'liability_direction__short' => 'Sconosciuta', - 'liability_direction_null_short' => 'Sconosciuta', - 'Liability credit' => 'Credito passività', - 'budgets' => 'Budget', - 'tags' => 'Etichette', - 'reports' => 'Resoconti', - 'transactions' => 'Transazioni', - 'expenses' => 'Spese / uscite', - 'income' => 'Redditi / entrate', - 'transfers' => 'Trasferimenti', - 'moneyManagement' => 'Gestione denaro', - 'money_management' => 'Gestione del denaro', - 'tools' => 'Strumenti', - 'piggyBanks' => 'Salvadanai', - 'piggy_banks' => 'Salvadanai', - 'amount_x_of_y' => '{current} di {total}', - 'bills' => 'Bollette', - 'withdrawal' => 'Uscita', - 'opening_balance' => 'Saldo di apertura', - 'deposit' => 'Entrata', - 'account' => 'Conto', - 'transfer' => 'Trasferimento', - 'Withdrawal' => 'Prelievo', - 'Deposit' => 'Entrata', - 'Transfer' => 'Trasferimento', - 'bill' => 'Bolletta', - 'yes' => 'Si', - 'no' => 'No', - 'amount' => 'Importo', - 'overview' => 'Panoramica', - 'saveOnAccount' => 'Risparmio sul conto', - 'unknown' => 'Sconosciuto', - 'monthly' => 'Mensile', - 'profile' => 'Profilo', - 'errors' => 'Errori', - 'debt_start_date' => 'Data di inizio del debito', - 'debt_start_amount' => 'Importo iniziale del debito', - 'debt_start_amount_help' => 'È sempre meglio impostare questo valore su un importo negativo. Leggi le pagine di aiuto (icona (?) in alto a destra) per ulteriori informazioni.', - 'interest_period_help' => 'Questo campo è puramente estetico e non ti viene calcolato. Sembra che le banche siano molto subdole, pertanto Firefly III non lo calcola mai correttamente.', - 'store_new_liabilities_account' => 'Memorizza nuova passività', - 'edit_liabilities_account' => 'Modica passività ":name"', - 'financial_control' => 'Controllo finanziario', - 'accounting' => 'Contabilità', - 'automation' => 'Automazione', - 'others' => 'Altro', - 'classification' => 'Classificazione', - 'store_transaction' => 'Salva transazione', + 'currency' => 'Valuta', + 'preferences' => 'Preferenze', + 'logout' => 'Esci', + 'logout_other_sessions' => 'Esci da tutte le altre sessioni', + 'toggleNavigation' => 'Attiva / disattiva la navigazione', + 'searchPlaceholder' => 'Cerca...', + 'version' => 'Versione', + 'dashboard' => 'Cruscotto', + 'income_and_expense' => 'Entrate e spese', + 'all_money' => 'Tutto il tuo denaro', + 'unknown_source_plain' => 'Conto d\'origine sconosciuto', + 'unknown_dest_plain' => 'Conto di destinazione sconosciuto', + 'unknown_any_plain' => 'Conto sconosciuto', + 'unknown_budget_plain' => 'Nessun budget', + 'available_budget' => 'Budget disponibile ({currency})', + 'currencies' => 'Valute', + 'activity' => 'Attività', + 'usage' => 'Uso', + 'accounts' => 'Conti', + 'Asset account' => 'Conto attività', + 'Default account' => 'Conto attività', + 'Expense account' => 'Conto spese', + 'Revenue account' => 'Conto entrate', + 'Initial balance account' => 'Saldo iniziale conto', + 'account_type_Asset account' => 'Conto di risorse', + 'account_type_Expense account' => 'Conto di spesa', + 'account_type_Revenue account' => 'Conto di entrate', + 'account_type_Debt' => 'Debito', + 'account_type_Loan' => 'Prestito', + 'account_type_Mortgage' => 'Mutuo', + 'account_type_debt' => 'Debito', + 'account_type_loan' => 'Prestito', + 'account_type_mortgage' => 'Mutuo', + 'account_type_Credit card' => 'Carta di credito', + 'credit_card_type_monthlyFull' => 'Pagamento intero ogni mese', + 'liability_direction_credit' => 'Questo debito mi è dovuto', + 'liability_direction_debit' => 'Devo questo debito a qualcun altro', + 'liability_direction_credit_short' => 'Mi devono questo debito', + 'liability_direction_debit_short' => 'Devo questo debito', + 'liability_direction__short' => 'Sconosciuta', + 'liability_direction_null_short' => 'Sconosciuta', + 'Liability credit' => 'Credito passività', + 'budgets' => 'Budget', + 'tags' => 'Etichette', + 'reports' => 'Resoconti', + 'transactions' => 'Transazioni', + 'expenses' => 'Spese / uscite', + 'income' => 'Redditi / entrate', + 'transfers' => 'Trasferimenti', + 'moneyManagement' => 'Gestione denaro', + 'money_management' => 'Gestione del denaro', + 'tools' => 'Strumenti', + 'piggyBanks' => 'Salvadanai', + 'piggy_banks' => 'Salvadanai', + 'amount_x_of_y' => '{current} di {total}', + 'bills' => 'Bollette', + 'withdrawal' => 'Uscita', + 'opening_balance' => 'Saldo di apertura', + 'deposit' => 'Entrata', + 'account' => 'Conto', + 'transfer' => 'Trasferimento', + 'Withdrawal' => 'Prelievo', + 'Deposit' => 'Entrata', + 'Transfer' => 'Trasferimento', + 'bill' => 'Bolletta', + 'yes' => 'Si', + 'no' => 'No', + 'amount' => 'Importo', + 'overview' => 'Panoramica', + 'saveOnAccount' => 'Risparmio sul conto', + 'unknown' => 'Sconosciuto', + 'monthly' => 'Mensile', + 'profile' => 'Profilo', + 'errors' => 'Errori', + 'debt_start_date' => 'Data di inizio del debito', + 'debt_start_amount' => 'Importo iniziale del debito', + 'debt_start_amount_help' => 'È sempre meglio impostare questo valore su un importo negativo. Leggi le pagine di aiuto (icona (?) in alto a destra) per ulteriori informazioni.', + 'interest_period_help' => 'Questo campo è puramente estetico e non ti viene calcolato. Sembra che le banche siano molto subdole, pertanto Firefly III non lo calcola mai correttamente.', + 'store_new_liabilities_account' => 'Memorizza nuova passività', + 'edit_liabilities_account' => 'Modica passività ":name"', + 'financial_control' => 'Controllo finanziario', + 'accounting' => 'Contabilità', + 'automation' => 'Automazione', + 'others' => 'Altro', + 'classification' => 'Classificazione', + 'store_transaction' => 'Salva transazione', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Resoconto predefinito delle tue finanze tra :start e :end', - 'report_audit' => 'Panoramica cronologica delle transazioni tra :start e :end', - 'report_category' => 'Resoconto categoria tra :start e :end', - 'report_double' => 'Resoconto conto spese/entrate tra :start e :end', - 'report_budget' => 'Resoconto budget tra :start e :end', - 'report_tag' => 'Resoconto etichetta tra :start e :end', - 'quick_link_reports' => 'Collegamenti veloci', - 'quick_link_examples' => 'Questi sono alcuni link di esempio con i quali puoi cominciare. Leggi le pagine d\'aiuto tramite il pulsante (?) per avere informazioni su tutti i rapporti e le parole magiche che puoi usare.', - 'quick_link_default_report' => 'Resoconto finanziario predefinito', - 'quick_link_audit_report' => 'Panoramica cronologica delle transazioni', - 'report_this_month_quick' => 'Mese corrente, tutti i conti', - 'report_last_month_quick' => 'Mese scorso, tutti i conti', - 'report_this_year_quick' => 'Anno corrente - tutti i conti', - 'report_this_fiscal_year_quick' => 'Anno fiscale corrente - tutti i conti', - 'report_all_time_quick' => 'Sempre tutti i conti', - 'reports_can_bookmark' => 'Ricorda che i resoconti possono essere aggiunti ai segnalibri.', - 'incomeVsExpenses' => 'Entrate vs spese', - 'accountBalances' => 'Saldo dei conti', - 'balanceStart' => 'Saldo all\'inizio del periodo', - 'balanceEnd' => 'Saldo alla fine del periodo', - 'splitByAccount' => 'Dividi per conto', - 'coveredWithTags' => 'Coperto con etichetta', - 'leftInBudget' => 'Rimanenza nel budget', - 'left_in_debt' => 'Importo da pagare', - 'sumOfSums' => 'Somma dei conti', - 'noCategory' => '(nessuna categoria)', - 'notCharged' => 'Non (ancora) addebitato', - 'inactive' => 'Disattivo', - 'active' => 'Attivo', - 'difference' => 'Differenza', - 'money_flowing_in' => 'Entrate', - 'money_flowing_out' => 'Uscite', - 'topX' => 'Superiore :number', - 'show_full_list' => 'Mostra elenco completo', - 'show_only_top' => 'Mostra solo in alto :number', - 'report_type' => 'Tipo resoconto', - 'report_type_default' => 'Resoconto finanziario predefinito', - 'report_type_audit' => 'Panoramica cronologica delle transazioni (verifica)', - 'report_type_category' => 'Resoconto categoria', - 'report_type_budget' => 'Resoconto budget', - 'report_type_tag' => 'Resoconto etichetta', - 'report_type_double' => 'Resoconto conto spese/entrate', - 'more_info_help' => 'Ulteriori informazioni su questi tipi di resoconti sono disponibili nelle pagine della guida. Premi l\'icona (?) nell\'angolo in alto a destra.', - 'report_included_accounts' => 'Inclusi i conti', - 'report_date_range' => 'Intervallo di date', - 'report_preset_ranges' => 'Intervalli preimpostati', - 'shared' => 'Condiviso', - 'fiscal_year' => 'Anno fiscale', - 'income_entry' => 'Entrate del conto ":name" tra :start e :end', - 'expense_entry' => 'Spese per il conto ":name" tra :start e :end', - 'category_entry' => 'Spese e entrate nella categoria ":name" tra il :start e il :end', - 'budget_spent_amount' => 'Spese nel budget ":budget" tra :start e :end', - 'balance_amount' => 'Spese nel budget ":budget" pagate dal conto ":account" tra il :start e il :end', - 'no_audit_activity' => 'Nessuna attività è stata registrata nel conto :account_name tra il :start e il :end.', - 'audit_end_balance' => 'Il saldo del conto :account_name alla fine di :end era: :balance', - 'reports_extra_options' => 'Opzioni extra', - 'report_has_no_extra_options' => 'Questo resoconto non ha opzioni extra', - 'reports_submit' => 'Mostra resoconto', - 'end_after_start_date' => 'La data della fine del resoconto deve essere successiva alla data di inizio.', - 'select_category' => 'Seleziona le categorie', - 'select_budget' => 'Seleziona i budget.', - 'select_tag' => 'Seleziona etichette.', - 'income_per_category' => 'Entrate per categoria', - 'expense_per_category' => 'Spesa per categoria', - 'expense_per_budget' => 'Spese per budget', - 'income_per_account' => 'Entrate per conto', - 'expense_per_account' => 'Spese per conto', - 'expense_per_tag' => 'Spese per etichetta', - 'income_per_tag' => 'Entrate per etichetta', - 'include_expense_not_in_budget' => 'Incluse le spese non appartenenti ai budget selezionati', - 'include_expense_not_in_account' => 'Incluse le spese non appartenenti ai conti selezionati', - 'include_expense_not_in_category' => 'Incluse le spese non appartenenti alle categorie selezionate', - 'include_income_not_in_category' => 'Incluse le entrate non appartenenti alle categorie selezionate', - 'include_income_not_in_account' => 'Incluse le entrate non appartenenti ai conti selezionati', - 'include_income_not_in_tags' => 'Incluse le entrate non appartenenti alle etichette selezionate', - 'include_expense_not_in_tags' => 'Incluse le spese non appartenenti alle etichette selezionate', - 'everything_else' => 'Tutto il resto', - 'income_and_expenses' => 'Entrate e spese', - 'spent_average' => 'Spesi (media)', - 'income_average' => 'Entrate (media)', - 'transaction_count' => 'Conteggio transazioni', - 'average_spending_per_account' => 'Spesa media per conto', - 'average_income_per_account' => 'Media entrate per conto', - 'total' => 'Totale', - 'description' => 'Descrizione', - 'sum_of_period' => 'Somma del periodo', - 'average_in_period' => 'Media nel periodo', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Conto attività predefinito', - 'account_role_sharedAsset' => 'Conto attività condiviso', - 'account_role_savingAsset' => 'Conto risparmio', - 'account_role_ccAsset' => 'Carta di credito', - 'account_role_cashWalletAsset' => 'Portafoglio', - 'budget_chart_click' => 'Fai clic su un nome di un budget nella tabella sopra per vedere un grafico.', - 'category_chart_click' => 'Fare clic sul nome di una categoria nella tabella sopra per vedere un grafico.', - 'in_out_accounts' => 'Guadagnati e spesi per combinazione', - 'in_out_accounts_per_asset' => 'Guadagnato e speso (per conto attività)', - 'in_out_per_category' => 'Guadagnati e spesi per categoria', - 'out_per_budget' => 'Speso per budget', - 'select_expense_revenue' => 'Seleziona conto spese/entrate', - 'multi_currency_report_sum' => 'Poiché questo elenco contiene conti con più valute, le somme potrebbero non avere senso. Il rapporto ripiegherà sempre sulla valuta predefinita.', - 'sum_in_default_currency' => 'La somma sarà sempre nella tua valuta predefinita.', - 'net_filtered_prefs' => 'Questo grafico non includerà mai i conti che hanno l\'opzione "Includi nel patrimonio" non selezionata.', + 'report_default' => 'Resoconto predefinito delle tue finanze tra :start e :end', + 'report_audit' => 'Panoramica cronologica delle transazioni tra :start e :end', + 'report_category' => 'Resoconto categoria tra :start e :end', + 'report_double' => 'Resoconto conto spese/entrate tra :start e :end', + 'report_budget' => 'Resoconto budget tra :start e :end', + 'report_tag' => 'Resoconto etichetta tra :start e :end', + 'quick_link_reports' => 'Collegamenti veloci', + 'quick_link_examples' => 'Questi sono alcuni link di esempio con i quali puoi cominciare. Leggi le pagine d\'aiuto tramite il pulsante (?) per avere informazioni su tutti i rapporti e le parole magiche che puoi usare.', + 'quick_link_default_report' => 'Resoconto finanziario predefinito', + 'quick_link_audit_report' => 'Panoramica cronologica delle transazioni', + 'report_this_month_quick' => 'Mese corrente, tutti i conti', + 'report_last_month_quick' => 'Mese scorso, tutti i conti', + 'report_this_year_quick' => 'Anno corrente - tutti i conti', + 'report_this_fiscal_year_quick' => 'Anno fiscale corrente - tutti i conti', + 'report_all_time_quick' => 'Sempre tutti i conti', + 'reports_can_bookmark' => 'Ricorda che i resoconti possono essere aggiunti ai segnalibri.', + 'incomeVsExpenses' => 'Entrate vs spese', + 'accountBalances' => 'Saldo dei conti', + 'balanceStart' => 'Saldo all\'inizio del periodo', + 'balanceEnd' => 'Saldo alla fine del periodo', + 'splitByAccount' => 'Dividi per conto', + 'coveredWithTags' => 'Coperto con etichetta', + 'leftInBudget' => 'Rimanenza nel budget', + 'left_in_debt' => 'Importo da pagare', + 'sumOfSums' => 'Somma dei conti', + 'noCategory' => '(nessuna categoria)', + 'notCharged' => 'Non (ancora) addebitato', + 'inactive' => 'Disattivo', + 'active' => 'Attivo', + 'difference' => 'Differenza', + 'money_flowing_in' => 'Entrate', + 'money_flowing_out' => 'Uscite', + 'topX' => 'Superiore :number', + 'show_full_list' => 'Mostra elenco completo', + 'show_only_top' => 'Mostra solo in alto :number', + 'report_type' => 'Tipo resoconto', + 'report_type_default' => 'Resoconto finanziario predefinito', + 'report_type_audit' => 'Panoramica cronologica delle transazioni (verifica)', + 'report_type_category' => 'Resoconto categoria', + 'report_type_budget' => 'Resoconto budget', + 'report_type_tag' => 'Resoconto etichetta', + 'report_type_double' => 'Resoconto conto spese/entrate', + 'more_info_help' => 'Ulteriori informazioni su questi tipi di resoconti sono disponibili nelle pagine della guida. Premi l\'icona (?) nell\'angolo in alto a destra.', + 'report_included_accounts' => 'Inclusi i conti', + 'report_date_range' => 'Intervallo di date', + 'report_preset_ranges' => 'Intervalli preimpostati', + 'shared' => 'Condiviso', + 'fiscal_year' => 'Anno fiscale', + 'income_entry' => 'Entrate del conto ":name" tra :start e :end', + 'expense_entry' => 'Spese per il conto ":name" tra :start e :end', + 'category_entry' => 'Spese e entrate nella categoria ":name" tra il :start e il :end', + 'budget_spent_amount' => 'Spese nel budget ":budget" tra :start e :end', + 'balance_amount' => 'Spese nel budget ":budget" pagate dal conto ":account" tra il :start e il :end', + 'no_audit_activity' => 'Nessuna attività è stata registrata nel conto :account_name tra il :start e il :end.', + 'audit_end_balance' => 'Il saldo del conto :account_name alla fine di :end era: :balance', + 'reports_extra_options' => 'Opzioni extra', + 'report_has_no_extra_options' => 'Questo resoconto non ha opzioni extra', + 'reports_submit' => 'Mostra resoconto', + 'end_after_start_date' => 'La data della fine del resoconto deve essere successiva alla data di inizio.', + 'select_category' => 'Seleziona le categorie', + 'select_budget' => 'Seleziona i budget.', + 'select_tag' => 'Seleziona etichette.', + 'income_per_category' => 'Entrate per categoria', + 'expense_per_category' => 'Spesa per categoria', + 'expense_per_budget' => 'Spese per budget', + 'income_per_account' => 'Entrate per conto', + 'expense_per_account' => 'Spese per conto', + 'expense_per_tag' => 'Spese per etichetta', + 'income_per_tag' => 'Entrate per etichetta', + 'include_expense_not_in_budget' => 'Incluse le spese non appartenenti ai budget selezionati', + 'include_expense_not_in_account' => 'Incluse le spese non appartenenti ai conti selezionati', + 'include_expense_not_in_category' => 'Incluse le spese non appartenenti alle categorie selezionate', + 'include_income_not_in_category' => 'Incluse le entrate non appartenenti alle categorie selezionate', + 'include_income_not_in_account' => 'Incluse le entrate non appartenenti ai conti selezionati', + 'include_income_not_in_tags' => 'Incluse le entrate non appartenenti alle etichette selezionate', + 'include_expense_not_in_tags' => 'Incluse le spese non appartenenti alle etichette selezionate', + 'everything_else' => 'Tutto il resto', + 'income_and_expenses' => 'Entrate e spese', + 'spent_average' => 'Spesi (media)', + 'income_average' => 'Entrate (media)', + 'transaction_count' => 'Conteggio transazioni', + 'average_spending_per_account' => 'Spesa media per conto', + 'average_income_per_account' => 'Media entrate per conto', + 'total' => 'Totale', + 'description' => 'Descrizione', + 'sum_of_period' => 'Somma del periodo', + 'average_in_period' => 'Media nel periodo', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Conto attività predefinito', + 'account_role_sharedAsset' => 'Conto attività condiviso', + 'account_role_savingAsset' => 'Conto risparmio', + 'account_role_ccAsset' => 'Carta di credito', + 'account_role_cashWalletAsset' => 'Portafoglio', + 'budget_chart_click' => 'Fai clic su un nome di un budget nella tabella sopra per vedere un grafico.', + 'category_chart_click' => 'Fare clic sul nome di una categoria nella tabella sopra per vedere un grafico.', + 'in_out_accounts' => 'Guadagnati e spesi per combinazione', + 'in_out_accounts_per_asset' => 'Guadagnato e speso (per conto attività)', + 'in_out_per_category' => 'Guadagnati e spesi per categoria', + 'out_per_budget' => 'Speso per budget', + 'select_expense_revenue' => 'Seleziona conto spese/entrate', + 'multi_currency_report_sum' => 'Poiché questo elenco contiene conti con più valute, le somme potrebbero non avere senso. Il rapporto ripiegherà sempre sulla valuta predefinita.', + 'sum_in_default_currency' => 'La somma sarà sempre nella tua valuta predefinita.', + 'net_filtered_prefs' => 'Questo grafico non includerà mai i conti che hanno l\'opzione "Includi nel patrimonio" non selezionata.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Grafico', - 'month' => 'Mese', - 'budget' => 'Budget', - 'spent' => 'Speso', - 'spent_capped' => 'Speso (massimo)', - 'spent_in_budget' => 'Speso nel budget', - 'left_to_spend' => 'Altro da spendere', - 'earned' => 'Guadagnato', - 'overspent' => 'Speso troppo', - 'left' => 'Resto', - 'max-amount' => 'Importo massimo', - 'min-amount' => 'Importo minimo', - 'journal-amount' => 'Entrata fattura corrente', - 'name' => 'Nome', - 'date' => 'Data', - 'date_and_time' => 'Data e ora', - 'time' => 'Ora', - 'paid' => 'Pagati', - 'unpaid' => 'Da pagare', - 'day' => 'Giorno', - 'budgeted' => 'Preventivato', - 'period' => 'Periodo', - 'balance' => 'Saldo', - 'in_out_period' => 'Bilancio di questo periodo', - 'sum' => 'Somma', - 'summary' => 'Riepilogo', - 'average' => 'Media', - 'balanceFor' => 'Saldo per :name', - 'no_tags' => '(nessuna etichetta)', - 'nothing_found' => '(nessun risultato)', + 'chart' => 'Grafico', + 'month' => 'Mese', + 'budget' => 'Budget', + 'spent' => 'Speso', + 'spent_capped' => 'Speso (massimo)', + 'spent_in_budget' => 'Speso nel budget', + 'left_to_spend' => 'Altro da spendere', + 'earned' => 'Guadagnato', + 'overspent' => 'Speso troppo', + 'left' => 'Resto', + 'max-amount' => 'Importo massimo', + 'min-amount' => 'Importo minimo', + 'journal-amount' => 'Entrata fattura corrente', + 'name' => 'Nome', + 'date' => 'Data', + 'date_and_time' => 'Data e ora', + 'time' => 'Ora', + 'paid' => 'Pagati', + 'unpaid' => 'Da pagare', + 'day' => 'Giorno', + 'budgeted' => 'Preventivato', + 'period' => 'Periodo', + 'balance' => 'Saldo', + 'in_out_period' => 'Bilancio di questo periodo', + 'sum' => 'Somma', + 'summary' => 'Riepilogo', + 'average' => 'Media', + 'balanceFor' => 'Saldo per :name', + 'no_tags' => '(nessuna etichetta)', + 'nothing_found' => '(nessun risultato)', // piggy banks: - 'event_history' => 'Storico eventi', - 'add_money_to_piggy' => 'Aggiungi denaro al salvadanaio":name"', - 'piggy_bank' => 'Salvadanaio', - 'new_piggy_bank' => 'Nuovo salvadanaio', - 'store_piggy_bank' => 'Salva il nuovo salvadanaio', - 'stored_piggy_bank' => 'Salva il nuovo salvadanaio ":name"', - 'account_status' => 'Stato conto', - 'left_for_piggy_banks' => 'Rimanente per i salvadanai', - 'sum_of_piggy_banks' => 'Somma dei salvadanai', - 'saved_so_far' => 'Risparmiato finora', - 'left_to_save' => 'Rimanente da risparmiare', - 'suggested_amount' => 'Quantità mensile consigliata da salvare', - 'add_money_to_piggy_title' => 'Aggiungi denaro al salvadanaio ":name"', - 'remove_money_from_piggy_title' => 'Rimuovi i soldi dal salvadanaio ":name"', - 'add' => 'Aggiungi', - 'no_money_for_piggy' => 'non hai soldi da mettere in questo salvadanaio.', - 'suggested_savings_per_month' => 'Suggerimento per mese', + 'event_history' => 'Storico eventi', + 'add_money_to_piggy' => 'Aggiungi denaro al salvadanaio":name"', + 'piggy_bank' => 'Salvadanaio', + 'new_piggy_bank' => 'Nuovo salvadanaio', + 'store_piggy_bank' => 'Salva il nuovo salvadanaio', + 'stored_piggy_bank' => 'Salva il nuovo salvadanaio ":name"', + 'account_status' => 'Stato conto', + 'left_for_piggy_banks' => 'Rimanente per i salvadanai', + 'sum_of_piggy_banks' => 'Somma dei salvadanai', + 'saved_so_far' => 'Risparmiato finora', + 'left_to_save' => 'Rimanente da risparmiare', + 'suggested_amount' => 'Quantità mensile consigliata da salvare', + 'add_money_to_piggy_title' => 'Aggiungi denaro al salvadanaio ":name"', + 'remove_money_from_piggy_title' => 'Rimuovi i soldi dal salvadanaio ":name"', + 'add' => 'Aggiungi', + 'no_money_for_piggy' => 'non hai soldi da mettere in questo salvadanaio.', + 'suggested_savings_per_month' => 'Suggerimento per mese', - 'remove' => 'Rimuovi', - 'max_amount_add' => 'L\'importo massimo che puoi aggiungere è', - 'max_amount_remove' => 'L\'importo massimo che puoi rimuovere è', - 'update_piggy_button' => 'Aggiorna salvadanaio', - 'update_piggy_title' => 'Aggiorna salvadanaio ":name"', - 'updated_piggy_bank' => 'Aggiorna salvadanaio ":name"', - 'details' => 'Dettagli', - 'events' => 'Eventi', - 'target_amount' => 'Importo obiettivo', - 'start_date' => 'Data inizio', - 'no_start_date' => 'Nessuna data di inizio', - 'target_date' => 'Data fine', - 'no_target_date' => 'Nessuna data fine', - 'table' => 'Tabella', - 'delete_piggy_bank' => 'Elimina salvadanaio ":name"', - 'cannot_add_amount_piggy' => 'Impossibile aggiungere :amount a ":name".', - 'cannot_remove_from_piggy' => 'Impossibile rimuovere :amount a ":name".', - 'deleted_piggy_bank' => 'Salvadanaio eliminato ":name"', - 'added_amount_to_piggy' => 'Aggiunto :amount a ":name"', - 'removed_amount_from_piggy' => 'Rimosso :amount a ":name"', - 'piggy_events' => 'Salvadanai correlati', + 'remove' => 'Rimuovi', + 'max_amount_add' => 'L\'importo massimo che puoi aggiungere è', + 'max_amount_remove' => 'L\'importo massimo che puoi rimuovere è', + 'update_piggy_button' => 'Aggiorna salvadanaio', + 'update_piggy_title' => 'Aggiorna salvadanaio ":name"', + 'updated_piggy_bank' => 'Aggiorna salvadanaio ":name"', + 'details' => 'Dettagli', + 'events' => 'Eventi', + 'target_amount' => 'Importo obiettivo', + 'start_date' => 'Data inizio', + 'no_start_date' => 'Nessuna data di inizio', + 'target_date' => 'Data fine', + 'no_target_date' => 'Nessuna data fine', + 'table' => 'Tabella', + 'delete_piggy_bank' => 'Elimina salvadanaio ":name"', + 'cannot_add_amount_piggy' => 'Impossibile aggiungere :amount a ":name".', + 'cannot_remove_from_piggy' => 'Impossibile rimuovere :amount a ":name".', + 'deleted_piggy_bank' => 'Salvadanaio eliminato ":name"', + 'added_amount_to_piggy' => 'Aggiunto :amount a ":name"', + 'removed_amount_from_piggy' => 'Rimosso :amount a ":name"', + 'piggy_events' => 'Salvadanai correlati', // tags - 'delete_tag' => 'Elimina etichetta ":tag"', - 'deleted_tag' => 'Etichetta ":tag" eliminata', - 'new_tag' => 'Crea nuova etichetta', - 'edit_tag' => 'Modifica etichetta ":tag"', - 'updated_tag' => 'Etichetta ":tag" aggiornata', - 'created_tag' => 'Etichetta ":tag" creata correttamente', + 'delete_tag' => 'Elimina etichetta ":tag"', + 'deleted_tag' => 'Etichetta ":tag" eliminata', + 'new_tag' => 'Crea nuova etichetta', + 'edit_tag' => 'Modifica etichetta ":tag"', + 'updated_tag' => 'Etichetta ":tag" aggiornata', + 'created_tag' => 'Etichetta ":tag" creata correttamente', - 'transaction_journal_information' => 'Informazioni transazione', - 'transaction_journal_amount' => 'Informazioni sull\'importo', - 'transaction_journal_meta' => 'Meta informazioni', - 'transaction_journal_more' => 'Altre informazioni', - 'basic_journal_information' => 'Informazioni di base sulla transazione', - 'transaction_journal_extra' => 'Informazioni aggiuntive', - 'att_part_of_journal' => 'Memorizzato sotto ":journal"', - 'total_amount' => 'Importo totale', - 'number_of_decimals' => 'Cifre decimali', + 'transaction_journal_information' => 'Informazioni transazione', + 'transaction_journal_amount' => 'Informazioni sull\'importo', + 'transaction_journal_meta' => 'Meta informazioni', + 'transaction_journal_more' => 'Altre informazioni', + 'basic_journal_information' => 'Informazioni di base sulla transazione', + 'transaction_journal_extra' => 'Informazioni aggiuntive', + 'att_part_of_journal' => 'Memorizzato sotto ":journal"', + 'total_amount' => 'Importo totale', + 'number_of_decimals' => 'Cifre decimali', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'L\'invito a ":address" è già stato revocato.', - 'invite_is_deleted' => 'L\'invito a ":address" è stato eliminato.', - 'invite_new_user_title' => 'Invita nuovo utente', - 'invite_new_user_text' => 'Come amministratore, puoi invitare gli utenti a registrarsi alla tua amministrazione di Firefly III. Utilizzando il link diretto, puoi condividerlo con loro, così che potranno registrare un conto. L\'utente invitato e il suo link d\'invito appariranno nella seguente tabella. Sei libero di condividere il link d\'invito con chi desideri.', - 'invited_user_mail' => 'Indirizzo email', - 'invite_user' => 'Invita l\'utente', - 'user_is_invited' => 'L\'indirizzo email ":address" è stato invitato a Firefly III', - 'administration' => 'Amministrazione', - 'system_settings' => 'Impostazioni di sistema', - 'code_already_used' => 'Il codice d\'invito è stato utilizzato', - 'user_administration' => 'Amministrazione utenti', - 'list_all_users' => 'Tutti gli utenti', - 'all_users' => 'Tutti gli utenti', - 'instance_configuration' => 'Configurazione', - 'firefly_instance_configuration' => 'Opzioni di configurazione di Firefly III', - 'setting_single_user_mode' => 'Modo utente singolo', - 'setting_single_user_mode_explain' => 'Per impostazione predefinita, Firefly III accetta solo una (1) registrazione: tu. Questa è una misura di sicurezza, che impedisce ad altri di usare la tua istanza a meno che tu non le autorizzi. Le future registrazioni sono bloccate. Bene! quando deselezioni questa casella, gli altri possono usare la tua istanza, supponendo che possano raggiungerla (quando è connessa a Internet).', - 'store_configuration' => 'Salva configurazione', - 'single_user_administration' => 'Amministrazione utenti per :email', - 'edit_user' => 'Modifica utente :email', - 'hidden_fields_preferences' => 'Puoi abilitare maggiori opzioni per le transazioni nelle tue impostazioni.', - 'user_data_information' => 'Dati utente', - 'user_information' => 'Informazioni Utente', - 'total_size' => 'dimensione totale', - 'budget_or_budgets' => ':count budget|:count budget', - 'budgets_with_limits' => ':count budget con un importo impostato|:count budget con importi impostati', - 'nr_of_rules_in_total_groups' => ':count_rules regole in :count_groups gruppi di regole', - 'tag_or_tags' => ':count etichetta|:count etichette', - 'configuration_updated' => 'La configurazione è stata aggiornata', - 'setting_is_demo_site' => 'Sito Demo', - 'setting_is_demo_site_explain' => 'Se si seleziona questa casella, questa installazione si comporterà come se fosse il sito demo, che può avere strani effetti collaterali.', - 'block_code_bounced' => 'Messaggi email respinti', - 'block_code_expired' => 'Conto demo scaduto', - 'no_block_code' => 'Nessun motivo per bloccare o non bloccare un utente', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'L\'utente non ha ancora confermato il nuovo indirizzo emails', - 'admin_update_email' => 'Contrariamente alla pagina del profilo, l\'utente NON riceverà alcuna notifica al proprio indirizzo email!', - 'update_user' => 'Aggiorna utente', - 'updated_user' => 'I dati dell\'utente sono stati modificati.', - 'delete_user' => 'Elimina utente :email', - 'user_deleted' => 'L\'utente è stato eliminato', - 'send_test_email' => 'Invia un messaggio di posta elettronica di prova', - 'send_test_email_text' => 'Per scoprire se la tua installazione può inviare email o pubblicare messaggi su Slack, ti preghiamo di premere questo pulsante. Non visualizzerai un errore (se presente) qui, i file di registro rifletteranno qualsiasi errore. Puoi premere questo pulsante quante volte desideri. Non esiste alcun controllo dello spam. Il messaggio sarà inviato a :email e dovrebbe arrivare a breve.', - 'send_message' => 'Invia messaggio', - 'send_test_triggered' => 'Il test è stato attivato. Controlla la tua casella di posta e i file di log.', - 'give_admin_careful' => 'Gli utenti con privilegi di amministratore posso rimuovere i tuoi privilegi. Fai attenzione.', - 'admin_maintanance_title' => 'Manutenzione', - 'admin_maintanance_expl' => 'Qualche pulsante per la manutenzione di Firefly III', - 'admin_maintenance_clear_cache' => 'Svuota cache', - 'admin_notifications' => 'Notifiche dell\'admin', - 'admin_notifications_expl' => 'Le seguenti notifiche sono abilitabili o disabilitabili dall\'amministratore. Se desideri ricevere questi messaggi anche su Slack, imposta l\'URL del "webhook in entrata".', - 'admin_notification_check_user_new_reg' => 'L\'utente riceve il messaggio di benvenuto post-registrazione', - 'admin_notification_check_admin_new_reg' => 'Gli amministratori ricevono le notifiche di registrazione dei nuovi utenti', - 'admin_notification_check_new_version' => 'È disponibile una nuova versione', - 'admin_notification_check_invite_created' => 'Un utente è stato invitato in Firefly III', - 'admin_notification_check_invite_redeemed' => 'Un invito utente è stato accettato', - 'all_invited_users' => 'Utenti invitati', - 'save_notification_settings' => 'Salva le impostazioni', - 'notification_settings_saved' => 'Le impostazioni sulle notifiche sono state salvate', + 'invite_is_already_redeemed' => 'L\'invito a ":address" è già stato revocato.', + 'invite_is_deleted' => 'L\'invito a ":address" è stato eliminato.', + 'invite_new_user_title' => 'Invita nuovo utente', + 'invite_new_user_text' => 'Come amministratore, puoi invitare gli utenti a registrarsi alla tua amministrazione di Firefly III. Utilizzando il link diretto, puoi condividerlo con loro, così che potranno registrare un conto. L\'utente invitato e il suo link d\'invito appariranno nella seguente tabella. Sei libero di condividere il link d\'invito con chi desideri.', + 'invited_user_mail' => 'Indirizzo email', + 'invite_user' => 'Invita l\'utente', + 'user_is_invited' => 'L\'indirizzo email ":address" è stato invitato a Firefly III', + 'administration' => 'Amministrazione', + 'system_settings' => 'Impostazioni di sistema', + 'code_already_used' => 'Il codice d\'invito è stato utilizzato', + 'user_administration' => 'Amministrazione utenti', + 'list_all_users' => 'Tutti gli utenti', + 'all_users' => 'Tutti gli utenti', + 'instance_configuration' => 'Configurazione', + 'firefly_instance_configuration' => 'Opzioni di configurazione di Firefly III', + 'setting_single_user_mode' => 'Modo utente singolo', + 'setting_single_user_mode_explain' => 'Per impostazione predefinita, Firefly III accetta solo una (1) registrazione: tu. Questa è una misura di sicurezza, che impedisce ad altri di usare la tua istanza a meno che tu non le autorizzi. Le future registrazioni sono bloccate. Bene! quando deselezioni questa casella, gli altri possono usare la tua istanza, supponendo che possano raggiungerla (quando è connessa a Internet).', + 'store_configuration' => 'Salva configurazione', + 'single_user_administration' => 'Amministrazione utenti per :email', + 'edit_user' => 'Modifica utente :email', + 'hidden_fields_preferences' => 'Puoi abilitare maggiori opzioni per le transazioni nelle tue impostazioni.', + 'user_data_information' => 'Dati utente', + 'user_information' => 'Informazioni Utente', + 'total_size' => 'dimensione totale', + 'budget_or_budgets' => ':count budget|:count budget', + 'budgets_with_limits' => ':count budget con un importo impostato|:count budget con importi impostati', + 'nr_of_rules_in_total_groups' => ':count_rules regole in :count_groups gruppi di regole', + 'tag_or_tags' => ':count etichetta|:count etichette', + 'configuration_updated' => 'La configurazione è stata aggiornata', + 'setting_is_demo_site' => 'Sito Demo', + 'setting_is_demo_site_explain' => 'Se si seleziona questa casella, questa installazione si comporterà come se fosse il sito demo, che può avere strani effetti collaterali.', + 'block_code_bounced' => 'Messaggi email respinti', + 'block_code_expired' => 'Conto demo scaduto', + 'no_block_code' => 'Nessun motivo per bloccare o non bloccare un utente', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'L\'utente non ha ancora confermato il nuovo indirizzo emails', + 'admin_update_email' => 'Contrariamente alla pagina del profilo, l\'utente NON riceverà alcuna notifica al proprio indirizzo email!', + 'update_user' => 'Aggiorna utente', + 'updated_user' => 'I dati dell\'utente sono stati modificati.', + 'delete_user' => 'Elimina utente :email', + 'user_deleted' => 'L\'utente è stato eliminato', + 'send_test_email' => 'Invia un messaggio di posta elettronica di prova', + 'send_test_email_text' => 'Per scoprire se la tua installazione può inviare email o pubblicare messaggi su Slack, ti preghiamo di premere questo pulsante. Non visualizzerai un errore (se presente) qui, i file di registro rifletteranno qualsiasi errore. Puoi premere questo pulsante quante volte desideri. Non esiste alcun controllo dello spam. Il messaggio sarà inviato a :email e dovrebbe arrivare a breve.', + 'send_message' => 'Invia messaggio', + 'send_test_triggered' => 'Il test è stato attivato. Controlla la tua casella di posta e i file di log.', + 'give_admin_careful' => 'Gli utenti con privilegi di amministratore posso rimuovere i tuoi privilegi. Fai attenzione.', + 'admin_maintanance_title' => 'Manutenzione', + 'admin_maintanance_expl' => 'Qualche pulsante per la manutenzione di Firefly III', + 'admin_maintenance_clear_cache' => 'Svuota cache', + 'admin_notifications' => 'Notifiche dell\'admin', + 'admin_notifications_expl' => 'Le seguenti notifiche sono abilitabili o disabilitabili dall\'amministratore. Se desideri ricevere questi messaggi anche su Slack, imposta l\'URL del "webhook in entrata".', + 'admin_notification_check_user_new_reg' => 'L\'utente riceve il messaggio di benvenuto post-registrazione', + 'admin_notification_check_admin_new_reg' => 'Gli amministratori ricevono le notifiche di registrazione dei nuovi utenti', + 'admin_notification_check_new_version' => 'È disponibile una nuova versione', + 'admin_notification_check_invite_created' => 'Un utente è stato invitato in Firefly III', + 'admin_notification_check_invite_redeemed' => 'Un invito utente è stato accettato', + 'all_invited_users' => 'Utenti invitati', + 'save_notification_settings' => 'Salva le impostazioni', + 'notification_settings_saved' => 'Le impostazioni sulle notifiche sono state salvate', - 'split_transaction_title' => 'Descrizione della transazione suddivisa', - 'split_transaction_title_help' => 'Se crei una transazione suddivisa, è necessario che ci sia una descrizione globale per tutte le suddivisioni della transazione.', - 'split_title_help' => 'Se crei una transazione suddivisa è necessario che ci sia una descrizione globale per tutte le suddivisioni della transazione.', - 'you_create_transfer' => 'Stai creando un trasferimento.', - 'you_create_withdrawal' => 'Stai creando un prelievo.', - 'you_create_deposit' => 'Stai creando un deposito.', + 'split_transaction_title' => 'Descrizione della transazione suddivisa', + 'split_transaction_title_help' => 'Se crei una transazione suddivisa, è necessario che ci sia una descrizione globale per tutte le suddivisioni della transazione.', + 'split_title_help' => 'Se crei una transazione suddivisa è necessario che ci sia una descrizione globale per tutte le suddivisioni della transazione.', + 'you_create_transfer' => 'Stai creando un trasferimento.', + 'you_create_withdrawal' => 'Stai creando un prelievo.', + 'you_create_deposit' => 'Stai creando un deposito.', // links - 'journal_link_configuration' => 'Configurazione collegamenti della transazione', - 'create_new_link_type' => 'Crea un nuovo tipo di collegamento', - 'store_new_link_type' => 'Memorizza nuovo tipo di collegamento', - 'update_link_type' => 'Aggiorna il tipo di collegamento', - 'edit_link_type' => 'Modifica il tipo di collegamento ":name"', - 'updated_link_type' => 'Tipo del collegamento ":name" aggiornato', - 'delete_link_type' => 'Elimina il tipo di collegamento ":name"', - 'deleted_link_type' => 'Tipo di collegamento eliminato ":name"', - 'stored_new_link_type' => 'Memorizza nuovo tipo di collegamento ":name"', - 'cannot_edit_link_type' => 'Impossibile modificare il tipo di collegamento ":name"', - 'link_type_help_name' => 'Es.: "Duplicati"', - 'link_type_help_inward' => 'Es.: "duplicati"', - 'link_type_help_outward' => 'Es.: "è duplicata da"', - 'save_connections_by_moving' => 'Salva il collegamento tra queste transazioni spostandole in un altro tipo di collegamento:', - 'do_not_save_connection' => '(non salvare la connessione)', - 'link_transaction' => 'Collega transazione', - 'link_to_other_transaction' => 'Collega questa transazione a un\'altra transazione', - 'select_transaction_to_link' => 'Seleziona una transazione da collegare a questa. I collegamenti non sono al momento utilizzati in Firefly III (a parte la visualizzazione), ma prevedo di cambiare la cosa in futuro. Usa il box di ricerca per selezionare una transazione per titolo o per ID. Se vuoi aggiungere tipi di collegamento personalizzati, controlla la sezione amministrazione.', - 'this_transaction' => 'Questa transazione', - 'transaction' => 'Transazione', - 'comments' => 'Commenti', - 'link_notes' => 'Qualsiasi nota che tu voglia salvare con il collegamento.', - 'invalid_link_selection' => 'Impossibile collegare queste transazioni', - 'selected_transaction' => 'Transazione selezionata', - 'journals_linked' => 'Le transazioni sono collegate.', - 'journals_error_linked' => 'Queste transazioni sono già collegate.', - 'journals_link_to_self' => 'Non puoi collegare una transazione con se stessa', - 'journal_links' => 'Collegamenti della transazione', - 'this_withdrawal' => 'Questo prelievo', - 'this_deposit' => 'Questa entrata', - 'this_transfer' => 'Questo trasferimento', - 'overview_for_link' => 'Panoramica per tipo di collegamento ":name"', - 'source_transaction' => 'Transazione di origine', - 'link_description' => 'Descrizione del collegamento', - 'destination_transaction' => 'Transazione di destinazione', - 'delete_journal_link' => 'Elimina il collegamento tra :source e :destination', - 'deleted_link' => 'Elimina collegamento', + 'journal_link_configuration' => 'Configurazione collegamenti della transazione', + 'create_new_link_type' => 'Crea un nuovo tipo di collegamento', + 'store_new_link_type' => 'Memorizza nuovo tipo di collegamento', + 'update_link_type' => 'Aggiorna il tipo di collegamento', + 'edit_link_type' => 'Modifica il tipo di collegamento ":name"', + 'updated_link_type' => 'Tipo del collegamento ":name" aggiornato', + 'delete_link_type' => 'Elimina il tipo di collegamento ":name"', + 'deleted_link_type' => 'Tipo di collegamento eliminato ":name"', + 'stored_new_link_type' => 'Memorizza nuovo tipo di collegamento ":name"', + 'cannot_edit_link_type' => 'Impossibile modificare il tipo di collegamento ":name"', + 'link_type_help_name' => 'Es.: "Duplicati"', + 'link_type_help_inward' => 'Es.: "duplicati"', + 'link_type_help_outward' => 'Es.: "è duplicata da"', + 'save_connections_by_moving' => 'Salva il collegamento tra queste transazioni spostandole in un altro tipo di collegamento:', + 'do_not_save_connection' => '(non salvare la connessione)', + 'link_transaction' => 'Collega transazione', + 'link_to_other_transaction' => 'Collega questa transazione a un\'altra transazione', + 'select_transaction_to_link' => 'Seleziona una transazione da collegare a questa. I collegamenti non sono al momento utilizzati in Firefly III (a parte la visualizzazione), ma prevedo di cambiare la cosa in futuro. Usa il box di ricerca per selezionare una transazione per titolo o per ID. Se vuoi aggiungere tipi di collegamento personalizzati, controlla la sezione amministrazione.', + 'this_transaction' => 'Questa transazione', + 'transaction' => 'Transazione', + 'comments' => 'Commenti', + 'link_notes' => 'Qualsiasi nota che tu voglia salvare con il collegamento.', + 'invalid_link_selection' => 'Impossibile collegare queste transazioni', + 'selected_transaction' => 'Transazione selezionata', + 'journals_linked' => 'Le transazioni sono collegate.', + 'journals_error_linked' => 'Queste transazioni sono già collegate.', + 'journals_link_to_self' => 'Non puoi collegare una transazione con se stessa', + 'journal_links' => 'Collegamenti della transazione', + 'this_withdrawal' => 'Questo prelievo', + 'this_deposit' => 'Questa entrata', + 'this_transfer' => 'Questo trasferimento', + 'overview_for_link' => 'Panoramica per tipo di collegamento ":name"', + 'source_transaction' => 'Transazione di origine', + 'link_description' => 'Descrizione del collegamento', + 'destination_transaction' => 'Transazione di destinazione', + 'delete_journal_link' => 'Elimina il collegamento tra :source e :destination', + 'deleted_link' => 'Elimina collegamento', // link translations: - 'Paid_name' => 'Pagata', - 'Refund_name' => 'Rimborso', - 'Reimbursement_name' => 'Rimborso spese', - 'Related_name' => 'Inerenti', - 'relates to_inward' => 'correlata a', - 'is (partially) refunded by_inward' => 'è (parzialmente) rimborsata da', - 'is (partially) paid for by_inward' => 'è (parzialmente) pagata da', - 'is (partially) reimbursed by_inward' => 'è (parzialmente) rimborsata da', - 'inward_transaction' => 'Transazione in ingresso', - 'outward_transaction' => 'Transazione in uscita', - 'relates to_outward' => 'inerente a', - '(partially) refunds_outward' => 'rimborsa (parzialmente)', - '(partially) pays for_outward' => '(parzialmente) paga per', - '(partially) reimburses_outward' => '(parzialmente) rimborsa', - 'is (partially) refunded by' => 'è (parzialmente) rimborsata da', - 'is (partially) paid for by' => 'è (parzialmente) pagata da', - 'is (partially) reimbursed by' => 'è (parzialmente) rimborsata da', - 'relates to' => 'inerente a', - '(partially) refunds' => 'rimborsa (parzialmente)', - '(partially) pays for' => '(parzialmente) paga per', - '(partially) reimburses' => '(parzialmente) rimborsa', + 'Paid_name' => 'Pagata', + 'Refund_name' => 'Rimborso', + 'Reimbursement_name' => 'Rimborso spese', + 'Related_name' => 'Inerenti', + 'relates to_inward' => 'correlata a', + 'is (partially) refunded by_inward' => 'è (parzialmente) rimborsata da', + 'is (partially) paid for by_inward' => 'è (parzialmente) pagata da', + 'is (partially) reimbursed by_inward' => 'è (parzialmente) rimborsata da', + 'inward_transaction' => 'Transazione in ingresso', + 'outward_transaction' => 'Transazione in uscita', + 'relates to_outward' => 'inerente a', + '(partially) refunds_outward' => 'rimborsa (parzialmente)', + '(partially) pays for_outward' => '(parzialmente) paga per', + '(partially) reimburses_outward' => '(parzialmente) rimborsa', + 'is (partially) refunded by' => 'è (parzialmente) rimborsata da', + 'is (partially) paid for by' => 'è (parzialmente) pagata da', + 'is (partially) reimbursed by' => 'è (parzialmente) rimborsata da', + 'relates to' => 'inerente a', + '(partially) refunds' => 'rimborsa (parzialmente)', + '(partially) pays for' => '(parzialmente) paga per', + '(partially) reimburses' => '(parzialmente) rimborsa', // split a transaction: - 'splits' => 'Suddivisioni', - 'add_another_split' => 'Aggiungi un\'altra divisione', - 'cannot_edit_opening_balance' => 'Non è possibile modificare il saldo di apertura di un conto.', - 'no_edit_multiple_left' => 'Non hai selezionato transazioni valide da modificare.', - 'breadcrumb_convert_group' => 'Converti transazione', - 'convert_invalid_source' => 'L\'informazione di origine non è valida per la transazione #%d.', - 'convert_invalid_destination' => 'L\'informazione di destinazione non è valida per la transazione #%d.', - 'create_another' => 'Dopo il salvataggio, torna qui per crearne un\'altra.', - 'after_update_create_another' => 'Dopo l\'aggiornamento, torna qui per continuare la modifica.', - 'store_as_new' => 'Salva come nuova transazione invece di aggiornarla.', - 'reset_after' => 'Resetta il modulo dopo l\'invio', - 'errors_submission' => 'Errore durante l\'invio. Controlla gli errori segnalati qui sotto.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Espandi suddivisione', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Comprimi suddivisione', + 'splits' => 'Suddivisioni', + 'add_another_split' => 'Aggiungi un\'altra divisione', + 'cannot_edit_opening_balance' => 'Non è possibile modificare il saldo di apertura di un conto.', + 'no_edit_multiple_left' => 'Non hai selezionato transazioni valide da modificare.', + 'breadcrumb_convert_group' => 'Converti transazione', + 'convert_invalid_source' => 'L\'informazione di origine non è valida per la transazione #%d.', + 'convert_invalid_destination' => 'L\'informazione di destinazione non è valida per la transazione #%d.', + 'create_another' => 'Dopo il salvataggio, torna qui per crearne un\'altra.', + 'after_update_create_another' => 'Dopo l\'aggiornamento, torna qui per continuare la modifica.', + 'store_as_new' => 'Salva come nuova transazione invece di aggiornarla.', + 'reset_after' => 'Resetta il modulo dopo l\'invio', + 'errors_submission' => 'Errore durante l\'invio. Controlla gli errori segnalati qui sotto.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Espandi suddivisione', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Comprimi suddivisione', // object groups - 'default_group_title_name' => '(non in un gruppo)', - 'default_group_title_name_plain' => 'non raggruppato', + 'default_group_title_name' => '(non in un gruppo)', + 'default_group_title_name_plain' => 'non raggruppato', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Creiamo un conto attività!', - 'no_accounts_intro_asset' => 'Non hai ancora un conto attività. I conti attività sono i tuoi conti principali: il tuo conto corrente, il tuo conto di risparmio, il conto condiviso o persino la tua carta di credito.', - 'no_accounts_imperative_asset' => 'Per iniziare a utilizzare Firefly III è necessario creare almeno un conto attività. Facciamolo ora:', - 'no_accounts_create_asset' => 'Crea un conto attività', - 'no_accounts_title_expense' => 'Creiamo un conto spese!', - 'no_accounts_intro_expense' => 'Non hai ancora un conto spesa. I conti spese sono i luoghi in cui si spendono soldi, come negozi e supermercati.', - 'no_accounts_imperative_expense' => 'I conti spesa vengono creati automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente, se lo si desidera. Ne creiamo uno ora:', - 'no_accounts_create_expense' => 'Crea conto spesa', - 'no_accounts_title_revenue' => 'Creiamo un conto entrate!', - 'no_accounts_intro_revenue' => 'Non hai ancora un conto entrate. I conti delle entrate sono i luoghi da cui ricevi denaro, come il tuo datore di lavoro.', - 'no_accounts_imperative_revenue' => 'I conti entrate vengono creati automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente, se lo si desidera. Creiamone uno ora:', - 'no_accounts_create_revenue' => 'Crea conto entrate', - 'no_accounts_title_liabilities' => 'Creiamo una passività!', - 'no_accounts_intro_liabilities' => 'Non hai ancora delle passività. Le passività sono conti che registrano i prestiti (studenteschi) e altri debiti.', - 'no_accounts_imperative_liabilities' => 'Non è necessario che usi questa funzionalità ma può essere utile se vuoi tenere traccia di queste cose.', - 'no_accounts_create_liabilities' => 'Crea una passività', - 'no_budgets_title_default' => 'Creiamo un budget', - 'no_rules_title_default' => 'Creiamo una regola', - 'no_budgets_intro_default' => 'Non hai ancora budget. I budget sono usati per organizzare le tue spese in gruppi logici, ai quali puoi dare un tetto indicativo per limitare le tue spese.', - 'no_rules_intro_default' => 'Non hai ancora regole. Le regole sono potenti automazioni in grado di gestire le transazioni per te.', - 'no_rules_imperative_default' => 'Le regole possono essere molto utili quando gestisci le transazioni. Creiamone una:', - 'no_budgets_imperative_default' => 'I budget sono gli strumenti di base della gestione finanziaria. Creiamone uno ora:', - 'no_budgets_create_default' => 'Crea budget', - 'no_rules_create_default' => 'Crea regola', - 'no_categories_title_default' => 'Creaiamo una categoria!', - 'no_categories_intro_default' => 'Non hai ancora categorie. Le categorie vengono utilizzate per mettere a punto le transazioni e etichettarle con la categoria designata.', - 'no_categories_imperative_default' => 'Le categorie vengono create automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente. Ne creiamo una ora:', - 'no_categories_create_default' => 'Crea categoria', - 'no_tags_title_default' => 'Creiamo una etichetta!', - 'no_tags_intro_default' => 'Non hai ancora un etichetta. Le etichette vengono utilizzate per mettere a punto le transazioni e etichettarle con parole chiave specifiche.', - 'no_tags_imperative_default' => 'Le etichette vengono create automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente. Creiamo una ora:', - 'no_tags_create_default' => 'Crea etichetta', - 'no_transactions_title_withdrawal' => 'Creiamo una spesa!', - 'no_transactions_intro_withdrawal' => 'Non hai ancora spese. Dovresti creare delle spese per iniziare a gestire le tue finanze.', - 'no_transactions_imperative_withdrawal' => 'Hai effettuato delle spese? Dovresti registrarle:', - 'no_transactions_create_withdrawal' => 'Crea spese', - 'no_transactions_title_deposit' => 'Creiamo delle entrate!', - 'no_transactions_intro_deposit' => 'Non hai ancora delle entrate registrate. Dovresti creare delle voci di entrata per iniziare a gestire le tue finanze.', - 'no_transactions_imperative_deposit' => 'Hai ricevuto dei soldi? Dovresti scriverlo:', - 'no_transactions_create_deposit' => 'Crea una entrata', - 'no_transactions_title_transfers' => 'Creiamo un trasferimento!', - 'no_transactions_intro_transfers' => 'Non hai ancora trasferimenti. Quando sposti denaro tra i conti attività, viene registrato come trasferimento.', - 'no_transactions_imperative_transfers' => 'Hai spostato dei soldi in giro? Dovresti scriverlo:', - 'no_transactions_create_transfers' => 'Crea un trasferimento', - 'no_piggies_title_default' => 'Creiamo un salvadanaio!', - 'no_piggies_intro_default' => 'Non hai ancora salvadanai. Puoi creare salvadanai per dividere i tuoi risparmi e tenere traccia di ciò per cui stai risparmiando.', - 'no_piggies_imperative_default' => 'Hai cose per le quali stai risparmiando? Crea un salvadanaio e tieni traccia:', - 'no_piggies_create_default' => 'Crea un nuovo salvadanaio', - 'no_bills_title_default' => 'Creiamo una bolletta!', - 'no_bills_intro_default' => 'Non hai ancora nessuna bolletta. Puoi creare bollette per tenere traccia delle spese regolari, come il tuo affitto o l\'assicurazione.', - 'no_bills_imperative_default' => 'Hai delle bollette regolari? Crea una bolletta e tieni traccia dei tuoi pagamenti:', - 'no_bills_create_default' => 'Crea bolletta', + 'no_accounts_title_asset' => 'Creiamo un conto attività!', + 'no_accounts_intro_asset' => 'Non hai ancora un conto attività. I conti attività sono i tuoi conti principali: il tuo conto corrente, il tuo conto di risparmio, il conto condiviso o persino la tua carta di credito.', + 'no_accounts_imperative_asset' => 'Per iniziare a utilizzare Firefly III è necessario creare almeno un conto attività. Facciamolo ora:', + 'no_accounts_create_asset' => 'Crea un conto attività', + 'no_accounts_title_expense' => 'Creiamo un conto spese!', + 'no_accounts_intro_expense' => 'Non hai ancora un conto spesa. I conti spese sono i luoghi in cui si spendono soldi, come negozi e supermercati.', + 'no_accounts_imperative_expense' => 'I conti spesa vengono creati automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente, se lo si desidera. Ne creiamo uno ora:', + 'no_accounts_create_expense' => 'Crea conto spesa', + 'no_accounts_title_revenue' => 'Creiamo un conto entrate!', + 'no_accounts_intro_revenue' => 'Non hai ancora un conto entrate. I conti delle entrate sono i luoghi da cui ricevi denaro, come il tuo datore di lavoro.', + 'no_accounts_imperative_revenue' => 'I conti entrate vengono creati automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente, se lo si desidera. Creiamone uno ora:', + 'no_accounts_create_revenue' => 'Crea conto entrate', + 'no_accounts_title_liabilities' => 'Creiamo una passività!', + 'no_accounts_intro_liabilities' => 'Non hai ancora delle passività. Le passività sono conti che registrano i prestiti (studenteschi) e altri debiti.', + 'no_accounts_imperative_liabilities' => 'Non è necessario che usi questa funzionalità ma può essere utile se vuoi tenere traccia di queste cose.', + 'no_accounts_create_liabilities' => 'Crea una passività', + 'no_budgets_title_default' => 'Creiamo un budget', + 'no_rules_title_default' => 'Creiamo una regola', + 'no_budgets_intro_default' => 'Non hai ancora budget. I budget sono usati per organizzare le tue spese in gruppi logici, ai quali puoi dare un tetto indicativo per limitare le tue spese.', + 'no_rules_intro_default' => 'Non hai ancora regole. Le regole sono potenti automazioni in grado di gestire le transazioni per te.', + 'no_rules_imperative_default' => 'Le regole possono essere molto utili quando gestisci le transazioni. Creiamone una:', + 'no_budgets_imperative_default' => 'I budget sono gli strumenti di base della gestione finanziaria. Creiamone uno ora:', + 'no_budgets_create_default' => 'Crea budget', + 'no_rules_create_default' => 'Crea regola', + 'no_categories_title_default' => 'Creaiamo una categoria!', + 'no_categories_intro_default' => 'Non hai ancora categorie. Le categorie vengono utilizzate per mettere a punto le transazioni e etichettarle con la categoria designata.', + 'no_categories_imperative_default' => 'Le categorie vengono create automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente. Ne creiamo una ora:', + 'no_categories_create_default' => 'Crea categoria', + 'no_tags_title_default' => 'Creiamo una etichetta!', + 'no_tags_intro_default' => 'Non hai ancora un etichetta. Le etichette vengono utilizzate per mettere a punto le transazioni e etichettarle con parole chiave specifiche.', + 'no_tags_imperative_default' => 'Le etichette vengono create automaticamente quando si creano le transazioni, ma è possibile crearne anche manualmente. Creiamo una ora:', + 'no_tags_create_default' => 'Crea etichetta', + 'no_transactions_title_withdrawal' => 'Creiamo una spesa!', + 'no_transactions_intro_withdrawal' => 'Non hai ancora spese. Dovresti creare delle spese per iniziare a gestire le tue finanze.', + 'no_transactions_imperative_withdrawal' => 'Hai effettuato delle spese? Dovresti registrarle:', + 'no_transactions_create_withdrawal' => 'Crea spese', + 'no_transactions_title_deposit' => 'Creiamo delle entrate!', + 'no_transactions_intro_deposit' => 'Non hai ancora delle entrate registrate. Dovresti creare delle voci di entrata per iniziare a gestire le tue finanze.', + 'no_transactions_imperative_deposit' => 'Hai ricevuto dei soldi? Dovresti scriverlo:', + 'no_transactions_create_deposit' => 'Crea una entrata', + 'no_transactions_title_transfers' => 'Creiamo un trasferimento!', + 'no_transactions_intro_transfers' => 'Non hai ancora trasferimenti. Quando sposti denaro tra i conti attività, viene registrato come trasferimento.', + 'no_transactions_imperative_transfers' => 'Hai spostato dei soldi in giro? Dovresti scriverlo:', + 'no_transactions_create_transfers' => 'Crea un trasferimento', + 'no_piggies_title_default' => 'Creiamo un salvadanaio!', + 'no_piggies_intro_default' => 'Non hai ancora salvadanai. Puoi creare salvadanai per dividere i tuoi risparmi e tenere traccia di ciò per cui stai risparmiando.', + 'no_piggies_imperative_default' => 'Hai cose per le quali stai risparmiando? Crea un salvadanaio e tieni traccia:', + 'no_piggies_create_default' => 'Crea un nuovo salvadanaio', + 'no_bills_title_default' => 'Creiamo una bolletta!', + 'no_bills_intro_default' => 'Non hai ancora nessuna bolletta. Puoi creare bollette per tenere traccia delle spese regolari, come il tuo affitto o l\'assicurazione.', + 'no_bills_imperative_default' => 'Hai delle bollette regolari? Crea una bolletta e tieni traccia dei tuoi pagamenti:', + 'no_bills_create_default' => 'Crea bolletta', // recurring transactions - 'create_right_now' => 'Crea adesso', - 'no_new_transaction_in_recurrence' => 'Nessuna nuova transazione creata. Forse è già sta effettuata per questa data?', - 'recurrences' => 'Transazioni ricorrenti', - 'repeat_until_in_past' => 'Questa transazione ricorrente ha smesso di ripetersi il :date.', - 'recurring_calendar_view' => 'Calendario', - 'no_recurring_title_default' => 'Creiamo una transazione ricorrente!', - 'no_recurring_intro_default' => 'Non hai ancora una transazione ricorrente. Puoi utilizzare queste per lasciare che Firefly III crei automaticamente le transazioni per te.', - 'no_recurring_imperative_default' => 'Questa è una caratteristica piuttosto avanzata che può essere estremamente utile. Assicurati di leggere la documentazione (l\'icona (?) nell\'angolo in alto a destra) prima di continuare.', - 'no_recurring_create_default' => 'Crea una transazione ricorrente', - 'make_new_recurring' => 'Crea una transazione ricorrente', - 'recurring_daily' => 'Ogni giorno', - 'recurring_weekly' => 'Ogni settimana di :weekday', - 'recurring_weekly_skip' => 'Ogni :skip° settimana il :weekday', - 'recurring_monthly' => 'Ogni mese il giorno :dayOfMonth', - 'recurring_monthly_skip' => 'Il giorno :dayOfMonth di ogni :skip° mese', - 'recurring_ndom' => 'Ogni :dayOfMonth° :weekday del mese', - 'recurring_yearly' => 'Ogni anno il :date', - 'overview_for_recurrence' => 'Panoramica per la transazione ricorrente ":title"', - 'warning_duplicates_repetitions' => 'In alcuni casi rari è possibile che delle date appaiano due volte in questa lista. Questo può succedere quando ripetizioni multiple collidono. Firefly III si assicurerà sempre di generare una sola transazione per giorno.', - 'created_transactions' => 'Transazioni collegate', - 'expected_withdrawals' => 'Prelievi previsti', - 'expected_deposits' => 'Depositi previsti', - 'expected_transfers' => 'Trasferimenti previsti', - 'created_withdrawals' => 'Prelievi creati', - 'created_deposits' => 'Depositi creati', - 'created_transfers' => 'Trasferimenti creati', - 'recurring_info' => 'Transazione ricorrente :count / :total', - 'created_from_recurrence' => 'Creata dalla transazione ricorrente ":title" (#:id)', - 'recurring_never_cron' => 'Sembra che il job cron necessario per le transazioni ricorrenti non sia mai stato eseguito. Questo è ovviamente normale quando hai appena installato Firefly III, tuttavia dovrebbe essere impostato il prima possibile. Consulta le pagine di aiuto usando l\'icona (?) nell\'angolo in alto a destra della pagina.', - 'recurring_cron_long_ago' => 'Sembra che siano passate più di 36 ore dall\'ultima volta che il job cron per le transazioni ricorrenti sia stato lanciato. Sei sicuro che sia stato impostato correttamente? Consulta le pagine di aiuto usando l\'icona (?) nell\'angolo in alto a destra della pagina.', + 'create_right_now' => 'Crea adesso', + 'no_new_transaction_in_recurrence' => 'Nessuna nuova transazione creata. Forse è già sta effettuata per questa data?', + 'recurrences' => 'Transazioni ricorrenti', + 'repeat_until_in_past' => 'Questa transazione ricorrente ha smesso di ripetersi il :date.', + 'recurring_calendar_view' => 'Calendario', + 'no_recurring_title_default' => 'Creiamo una transazione ricorrente!', + 'no_recurring_intro_default' => 'Non hai ancora una transazione ricorrente. Puoi utilizzare queste per lasciare che Firefly III crei automaticamente le transazioni per te.', + 'no_recurring_imperative_default' => 'Questa è una caratteristica piuttosto avanzata che può essere estremamente utile. Assicurati di leggere la documentazione (l\'icona (?) nell\'angolo in alto a destra) prima di continuare.', + 'no_recurring_create_default' => 'Crea una transazione ricorrente', + 'make_new_recurring' => 'Crea una transazione ricorrente', + 'recurring_daily' => 'Ogni giorno', + 'recurring_weekly' => 'Ogni settimana di :weekday', + 'recurring_weekly_skip' => 'Ogni :skip° settimana il :weekday', + 'recurring_monthly' => 'Ogni mese il giorno :dayOfMonth', + 'recurring_monthly_skip' => 'Il giorno :dayOfMonth di ogni :skip° mese', + 'recurring_ndom' => 'Ogni :dayOfMonth° :weekday del mese', + 'recurring_yearly' => 'Ogni anno il :date', + 'overview_for_recurrence' => 'Panoramica per la transazione ricorrente ":title"', + 'warning_duplicates_repetitions' => 'In alcuni casi rari è possibile che delle date appaiano due volte in questa lista. Questo può succedere quando ripetizioni multiple collidono. Firefly III si assicurerà sempre di generare una sola transazione per giorno.', + 'created_transactions' => 'Transazioni collegate', + 'expected_withdrawals' => 'Prelievi previsti', + 'expected_deposits' => 'Depositi previsti', + 'expected_transfers' => 'Trasferimenti previsti', + 'created_withdrawals' => 'Prelievi creati', + 'created_deposits' => 'Depositi creati', + 'created_transfers' => 'Trasferimenti creati', + 'recurring_info' => 'Transazione ricorrente :count / :total', + 'created_from_recurrence' => 'Creata dalla transazione ricorrente ":title" (#:id)', + 'recurring_never_cron' => 'Sembra che il job cron necessario per le transazioni ricorrenti non sia mai stato eseguito. Questo è ovviamente normale quando hai appena installato Firefly III, tuttavia dovrebbe essere impostato il prima possibile. Consulta le pagine di aiuto usando l\'icona (?) nell\'angolo in alto a destra della pagina.', + 'recurring_cron_long_ago' => 'Sembra che siano passate più di 36 ore dall\'ultima volta che il job cron per le transazioni ricorrenti sia stato lanciato. Sei sicuro che sia stato impostato correttamente? Consulta le pagine di aiuto usando l\'icona (?) nell\'angolo in alto a destra della pagina.', - 'create_new_recurrence' => 'Crea una nuova transazione ricorrente', - 'help_first_date' => 'Indica quando la ricorrenza dovrebbe avvenire per la prima volta. Questo deve essere nel futuro.', - 'help_first_date_no_past' => 'Indica quando la ricorrenza dovrebbe avvenire per la prima volta. Firefly III non creerà transazioni nel passato.', - 'no_currency' => '(nessuna valuta)', - 'mandatory_for_recurring' => 'Informazioni obbligatorie sulla ricorrenza', - 'mandatory_for_transaction' => 'Informazioni obbligatorie sulla transazione', - 'optional_for_recurring' => 'Informazioni facoltative sulla ricorrenza', - 'optional_for_transaction' => 'Informazioni facoltative sulla transazione', - 'change_date_other_options' => 'Cambia la "prima volta" per visualizzare maggiori opzioni.', - 'mandatory_fields_for_tranaction' => 'Il valore qui presente finirà nella transazione che verrà creata', - 'click_for_calendar' => 'Clicca qui per visualizzare in un calendario quando la transazione si ripete.', - 'repeat_forever' => 'Ripeti per sempre', - 'repeat_until_date' => 'Ripeti fino alla data', - 'repeat_times' => 'Ripeti per un certo numero di volte', - 'recurring_skips_one' => 'Una volta sì e una volta no', - 'recurring_skips_more' => 'Salta per :count volte', - 'store_new_recurrence' => 'Salva transazione ricorrente', - 'stored_new_recurrence' => 'La transazione ricorrente ":title" è stata salvata con successo.', - 'edit_recurrence' => 'Modifica transazione ricorrente ":title"', - 'recurring_repeats_until' => 'Si ripete fino al :date', - 'recurring_repeats_forever' => 'Si ripete per sempre', - 'recurring_repeats_x_times' => 'Si ripete per :count volta|Si ripete per :count volte', - 'update_recurrence' => 'Aggiorna transazione ricorrente', - 'updated_recurrence' => 'Transazione ricorrente ":title" aggiornata', - 'recurrence_is_inactive' => 'Questa transazione ricorrente non è attiva e non genererà nuove transazioni.', - 'delete_recurring' => 'Elimina transazione ricorrente ":title"', - 'new_recurring_transaction' => 'Nuova transazione ricorrente', - 'help_weekend' => 'Cosa vuoi che Firefly III faccia quando la transazione ricorrente cade di sabato o domenica?', - 'do_nothing' => 'Crea la transazione', - 'skip_transaction' => 'Salta l\'occorrenza', - 'jump_to_friday' => 'Crea la transazione il venerdì precedente', - 'jump_to_monday' => 'Crea la transazione il lunedì successivo', - 'will_jump_friday' => 'Verrà creata il venerdì anziché nel fine settimana.', - 'will_jump_monday' => 'Verrà creata il lunedì anziché il fine settimana.', - 'except_weekends' => 'Tranne il fine settimana', - 'recurrence_deleted' => 'La transazione ricorrente ":title" è stata eliminata', + 'create_new_recurrence' => 'Crea una nuova transazione ricorrente', + 'help_first_date' => 'Indica quando la ricorrenza dovrebbe avvenire per la prima volta. Questo deve essere nel futuro.', + 'help_first_date_no_past' => 'Indica quando la ricorrenza dovrebbe avvenire per la prima volta. Firefly III non creerà transazioni nel passato.', + 'no_currency' => '(nessuna valuta)', + 'mandatory_for_recurring' => 'Informazioni obbligatorie sulla ricorrenza', + 'mandatory_for_transaction' => 'Informazioni obbligatorie sulla transazione', + 'optional_for_recurring' => 'Informazioni facoltative sulla ricorrenza', + 'optional_for_transaction' => 'Informazioni facoltative sulla transazione', + 'change_date_other_options' => 'Cambia la "prima volta" per visualizzare maggiori opzioni.', + 'mandatory_fields_for_tranaction' => 'Il valore qui presente finirà nella transazione che verrà creata', + 'click_for_calendar' => 'Clicca qui per visualizzare in un calendario quando la transazione si ripete.', + 'repeat_forever' => 'Ripeti per sempre', + 'repeat_until_date' => 'Ripeti fino alla data', + 'repeat_times' => 'Ripeti per un certo numero di volte', + 'recurring_skips_one' => 'Una volta sì e una volta no', + 'recurring_skips_more' => 'Salta per :count volte', + 'store_new_recurrence' => 'Salva transazione ricorrente', + 'stored_new_recurrence' => 'La transazione ricorrente ":title" è stata salvata con successo.', + 'edit_recurrence' => 'Modifica transazione ricorrente ":title"', + 'recurring_repeats_until' => 'Si ripete fino al :date', + 'recurring_repeats_forever' => 'Si ripete per sempre', + 'recurring_repeats_x_times' => 'Si ripete per :count volta|Si ripete per :count volte', + 'update_recurrence' => 'Aggiorna transazione ricorrente', + 'updated_recurrence' => 'Transazione ricorrente ":title" aggiornata', + 'recurrence_is_inactive' => 'Questa transazione ricorrente non è attiva e non genererà nuove transazioni.', + 'delete_recurring' => 'Elimina transazione ricorrente ":title"', + 'new_recurring_transaction' => 'Nuova transazione ricorrente', + 'help_weekend' => 'Cosa vuoi che Firefly III faccia quando la transazione ricorrente cade di sabato o domenica?', + 'do_nothing' => 'Crea la transazione', + 'skip_transaction' => 'Salta l\'occorrenza', + 'jump_to_friday' => 'Crea la transazione il venerdì precedente', + 'jump_to_monday' => 'Crea la transazione il lunedì successivo', + 'will_jump_friday' => 'Verrà creata il venerdì anziché nel fine settimana.', + 'will_jump_monday' => 'Verrà creata il lunedì anziché il fine settimana.', + 'except_weekends' => 'Tranne il fine settimana', + 'recurrence_deleted' => 'La transazione ricorrente ":title" è stata eliminata', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Spesi (:currency)', - 'box_earned_in_currency' => 'Guadagnati (:currency)', - 'box_budgeted_in_currency' => 'A budget (:currency)', - 'box_bill_paid_in_currency' => 'Bollette pagate (:currency)', - 'box_bill_unpaid_in_currency' => 'Bollette non pagate (:currency)', - 'box_left_to_spend_in_currency' => 'Disponibile da spendere (:currency)', - 'box_net_worth_in_currency' => 'Patrimonio netto (:currency)', - 'box_spend_per_day' => 'Disponibile da spendere per giorno: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Spesi (:currency)', + 'box_earned_in_currency' => 'Guadagnati (:currency)', + 'box_budgeted_in_currency' => 'A budget (:currency)', + 'box_bill_paid_in_currency' => 'Bollette pagate (:currency)', + 'box_bill_unpaid_in_currency' => 'Bollette non pagate (:currency)', + 'box_left_to_spend_in_currency' => 'Disponibile da spendere (:currency)', + 'box_net_worth_in_currency' => 'Patrimonio netto (:currency)', + 'box_spend_per_day' => 'Disponibile da spendere per giorno: :amount', // debug page - 'debug_page' => 'Pagina di debug', - 'debug_submit_instructions' => 'Se incontri problemi, puoi usare le informazioni in questo riquadro come informazioni di debug. Copia-incollale in una nuova o esistente issue di Github. Creerà una bellissima tabella che potrà essere utilizzata per diagnosticare rapidamente il tuo problema.', - 'debug_pretty_table' => 'Copia-incollando il riquadro sottostante in una issue di Github verrà creata una tabella. Non circondare questo testo con accenti gravi o virgolette.', - 'debug_additional_data' => 'Puoi anche condividere il contenuto del riquadro sottostante. È anche possibile copiare e incollare questo in una nuova o esistente issue di GitHub. Tuttavia, il contenuto di questo riquadro può contenere informazioni private come i nomi dei conti, i dettagli delle transazioni o indirizzi e-mail.', + 'debug_page' => 'Pagina di debug', + 'debug_submit_instructions' => 'Se incontri problemi, puoi usare le informazioni in questo riquadro come informazioni di debug. Copia-incollale in una nuova o esistente issue di Github. Creerà una bellissima tabella che potrà essere utilizzata per diagnosticare rapidamente il tuo problema.', + 'debug_pretty_table' => 'Copia-incollando il riquadro sottostante in una issue di Github verrà creata una tabella. Non circondare questo testo con accenti gravi o virgolette.', + 'debug_additional_data' => 'Puoi anche condividere il contenuto del riquadro sottostante. È anche possibile copiare e incollare questo in una nuova o esistente issue di GitHub. Tuttavia, il contenuto di questo riquadro può contenere informazioni private come i nomi dei conti, i dettagli delle transazioni o indirizzi e-mail.', // object groups - 'object_groups_menu_bar' => 'Gruppi', - 'object_groups_page_title' => 'Gruppi', - 'object_groups_breadcrumb' => 'Gruppi', - 'object_groups_index' => 'Panoramica', - 'object_groups' => 'Gruppi', - 'object_groups_empty_explain' => 'Alcune cose in Firefly III possono essere divise in gruppi. I salvadanai, per esempio, dispongono di un campo "Gruppo" nelle schermate di modifica e creazione. Quando si imposta questo campo, è possibile modificare i nomi e l\'ordine dei gruppi in questa pagina. Per ulteriori informazioni, consulta le pagine di aiuto nell\'angolo in alto a destra, con l\'icona (?).', - 'object_group_title' => 'Titolo', - 'edit_object_group' => 'Modifica gruppo ":title"', - 'delete_object_group' => 'Elimina gruppo ":title"', - 'update_object_group' => 'Aggiorna gruppo', - 'updated_object_group' => 'Il gruppo ":title" è stato aggiornato con successo', - 'deleted_object_group' => 'Il gruppo ":title" è stato eliminato con successo', - 'object_group' => 'Gruppo', + 'object_groups_menu_bar' => 'Gruppi', + 'object_groups_page_title' => 'Gruppi', + 'object_groups_breadcrumb' => 'Gruppi', + 'object_groups_index' => 'Panoramica', + 'object_groups' => 'Gruppi', + 'object_groups_empty_explain' => 'Alcune cose in Firefly III possono essere divise in gruppi. I salvadanai, per esempio, dispongono di un campo "Gruppo" nelle schermate di modifica e creazione. Quando si imposta questo campo, è possibile modificare i nomi e l\'ordine dei gruppi in questa pagina. Per ulteriori informazioni, consulta le pagine di aiuto nell\'angolo in alto a destra, con l\'icona (?).', + 'object_group_title' => 'Titolo', + 'edit_object_group' => 'Modifica gruppo ":title"', + 'delete_object_group' => 'Elimina gruppo ":title"', + 'update_object_group' => 'Aggiorna gruppo', + 'updated_object_group' => 'Il gruppo ":title" è stato aggiornato con successo', + 'deleted_object_group' => 'Il gruppo ":title" è stato eliminato con successo', + 'object_group' => 'Gruppo', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Voci del registro di controllo', - 'ale_action_log_add' => 'Aggiunto :amount al salvadanaio ":name"', - 'ale_action_log_remove' => 'Rimosso :amount dal salvadanaio ":name"', - 'ale_action_clear_budget' => 'Rimosso dal budget', - 'ale_action_update_group_title' => 'Titolo del gruppo di transazioni aggiornato', - 'ale_action_update_date' => 'Data della transazione aggiornata', - 'ale_action_update_order' => 'Ordine di transazione aggiornato', - 'ale_action_clear_category' => 'Rimossa dalla categoria', - 'ale_action_clear_notes' => 'Note rimosse', - 'ale_action_clear_tag' => 'Etichette cancellate', - 'ale_action_clear_all_tags' => 'Tutte le etichette sono state cancellate', - 'ale_action_set_bill' => 'Collegato alla fattura', - 'ale_action_switch_accounts' => 'Conto di origine e di destinazione scambiato', - 'ale_action_set_budget' => 'Imposta un budget', - 'ale_action_set_category' => 'Imposta una categoria', - 'ale_action_set_source' => 'Imposta un conto di origine', - 'ale_action_set_destination' => 'Imposta un beneficiario', - 'ale_action_update_transaction_type' => 'Tipo di transazione modificato', - 'ale_action_update_notes' => 'Note cambiate', - 'ale_action_update_description' => 'Modifica descrizione', - 'ale_action_add_to_piggy' => 'Salvadanaio', - 'ale_action_remove_from_piggy' => 'Salvadanaio', - 'ale_action_add_tag' => 'Etichette aggiunte', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Voci del registro di controllo', + 'ale_action_log_add' => 'Aggiunto :amount al salvadanaio ":name"', + 'ale_action_log_remove' => 'Rimosso :amount dal salvadanaio ":name"', + 'ale_action_clear_budget' => 'Rimosso dal budget', + 'ale_action_update_group_title' => 'Titolo del gruppo di transazioni aggiornato', + 'ale_action_update_date' => 'Data della transazione aggiornata', + 'ale_action_update_order' => 'Ordine di transazione aggiornato', + 'ale_action_clear_category' => 'Rimossa dalla categoria', + 'ale_action_clear_notes' => 'Note rimosse', + 'ale_action_clear_tag' => 'Etichette cancellate', + 'ale_action_clear_all_tags' => 'Tutte le etichette sono state cancellate', + 'ale_action_set_bill' => 'Collegato alla fattura', + 'ale_action_switch_accounts' => 'Conto di origine e di destinazione scambiato', + 'ale_action_set_budget' => 'Imposta un budget', + 'ale_action_set_category' => 'Imposta una categoria', + 'ale_action_set_source' => 'Imposta un conto di origine', + 'ale_action_set_destination' => 'Imposta un beneficiario', + 'ale_action_update_transaction_type' => 'Tipo di transazione modificato', + 'ale_action_update_notes' => 'Note cambiate', + 'ale_action_update_description' => 'Modifica descrizione', + 'ale_action_add_to_piggy' => 'Salvadanaio', + 'ale_action_remove_from_piggy' => 'Salvadanaio', + 'ale_action_add_tag' => 'Etichette aggiunte', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Abilita la conversione della valuta', - 'disable_auto_convert' => 'Disabilita la conversione della valuta', + 'enable_auto_convert' => 'Abilita la conversione della valuta', + 'disable_auto_convert' => 'Disabilita la conversione della valuta', ]; /* diff --git a/resources/lang/it_IT/validation.php b/resources/lang/it_IT/validation.php index 54d5a142a5..7179cb1d15 100644 --- a/resources/lang/it_IT/validation.php +++ b/resources/lang/it_IT/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Non hai i diritti di accesso corretti per questa amministrazione.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/ja_JP/firefly.php b/resources/lang/ja_JP/firefly.php index 31db9356a3..817084ff5f 100644 --- a/resources/lang/ja_JP/firefly.php +++ b/resources/lang/ja_JP/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => '閉じる', - 'actions' => '操作', - 'edit' => '編集', - 'delete' => '削除', - 'split' => '分割', - 'single_split' => '分割', - 'clone' => '複製', - 'clone_and_edit' => '複製と編集', - 'confirm_action' => '操作を確認', - 'last_seven_days' => '過去7日間', - 'last_thirty_days' => '過去30日間', - 'last_180_days' => '過去180日間', - 'month_to_date' => '過去1ヶ月', - 'year_to_date' => '過去1年間', - 'YTD' => 'YTD', - 'welcome_back' => '概要', - 'everything' => '全て', - 'today' => '今日', - 'customRange' => '期間を指定', - 'date_range' => '対象期間', - 'apply' => '適用', - 'select_date' => '日付を選択...', - 'cancel' => 'キャンセル', - 'from' => '引き出し元', - 'to' => 'へ', - 'structure' => '構成', - 'help_translating' => 'このヘルプ文章はまだあなたの言語で利用可能ではありません。翻訳を手伝っていただけますか?', - 'showEverything' => 'すべてを表示', - 'never' => 'なし', - 'no_results_for_empty_search' => '検索条件が空なので、何も見つかりませんでした。', - 'removed_amount' => ':amount 削除しました', - 'added_amount' => ':amount 追加しました', - 'asset_account_role_help' => '追加設定は後で設定することができます。', - 'Opening balance' => '開始残高', - 'create_new_stuff' => '新しく作成する', - 'new_withdrawal' => '新しい出金', - 'create_new_transaction' => '新しい取引を作成', - 'sidebar_frontpage_create' => '作成', - 'new_transaction' => '新しい取引', - 'no_rules_for_bill' => 'この請求はどのルールにも関連付けられていません。', - 'go_to_asset_accounts' => '資産口座を見る', - 'go_to_budgets' => '予算へ移動', - 'go_to_withdrawals' => '出金に移動', - 'clones_journal_x' => 'この取引は「:description」 (#:id) の複製です。', - 'go_to_categories' => 'カテゴリへ移動', - 'go_to_bills' => '請求へ移動', - 'go_to_expense_accounts' => '支出口座を見る', - 'go_to_revenue_accounts' => '収入口座を見る', - 'go_to_piggies' => '貯金箱へ移動', - 'new_deposit' => '新しい入金', - 'new_transfer' => '新しい送金', - 'new_transfers' => '新しい送金', - 'new_asset_account' => '新しい資産口座', - 'new_expense_account' => '新しい支出口座', - 'new_revenue_account' => '新しい収入口座', - 'new_liabilities_account' => '新しい債務', - 'new_budget' => '新しい予算', - 'new_bill' => '新しい請求', - 'block_account_logout' => 'あなたはログアウトしました。ブロックされたアカウントはこのサイトを使うことが出来ません。有効なメールアドレスで登録しましたか?', - 'flash_success' => '成功しました!', - 'flash_info' => 'メッセージ', - 'flash_warning' => '警告!', - 'flash_error' => 'エラー!', - 'flash_danger' => '危険!', - 'flash_info_multiple' => '1件のメッセージがあります|:count 件のメッセージがあります', - 'flash_error_multiple' => '1件のエラーがあります|:count 件のエラーがあります', - 'net_worth' => '純資産', - 'help_for_this_page' => 'このページのヘルプ', - 'help_for_this_page_body' => 'こちらのページの詳細はドキュメントをご覧ください。', - 'two_factor_welcome' => 'こんにちは!', - 'two_factor_enter_code' => '続行するには、2要素認証コードを入力してください。あなたのアプリケーションが生成してくれます。', - 'two_factor_code_here' => 'コードを入力', - 'two_factor_title' => '2要素認証', - 'authenticate' => '認証', - 'two_factor_forgot_title' => '2要素認証を紛失', - 'two_factor_forgot' => '2要素認証端末を忘れてしまいました。', - 'two_factor_lost_header' => '2要素認証を紛失しましたか?', - 'two_factor_lost_intro' => 'バックアップコードも紛失してしまった場合、Webから修正する方法はありません。2つから選ぶことができます。', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'または、サイト管理者 :site_owner に連絡して2要素認証をリセットしてもらうよう頼んでください。', - 'mfa_backup_code' => 'あなたはバックアップコードを利用してログインしました。もし再び使用することが出来ないなら、リストから削除してください。', - 'pref_two_factor_new_backup_codes' => '新しいバックアップコードを取得', - 'pref_two_factor_backup_code_count' => ':count 個の有効なバックアップコードがあります。|:count 個の有効なバックアップコードがあります。', - '2fa_i_have_them' => '保存しました!', - 'warning_much_data' => ':days日間のデータは読み込みに時間を要す場合があります。', - 'registered' => '登録に成功しました!', - 'Default asset account' => '既定の資産口座', - 'no_budget_pointer' => 'まだ予算を立てていないようです。予算ページで作成してください。予算は支出の把握に役立ちます。', - 'no_bill_pointer' => 'まだ請求がないようです。請求ページで作成してください。請求は支出の把握に役立ちます。', - 'Savings account' => '貯蓄口座', - 'Credit card' => 'クレジットカード', - 'source_accounts' => '引き出し元口座|引き出し元口座', - 'destination_accounts' => '預け入れ先口座|預け入れ先口座', - 'user_id_is' => 'あなたのユーザーIDは :user です', - 'field_supports_markdown' => 'この欄はマークダウンをサポートしています。', - 'need_more_help' => 'もしFirefly IIIの使用に当たってヘルプが必要なら、Githubでチケットを開いてください。', - 'reenable_intro_text' => '導入ガイダンスを再度有効にすることもできます。', - 'intro_boxes_after_refresh' => '説明は再読込後に再び表示されます。', - 'show_all_no_filter' => 'すべての取引を日付でまとめずに表示します。', - 'expenses_by_category' => 'カテゴリ別支出', - 'expenses_by_budget' => '予算別支出', - 'income_by_category' => 'カテゴリ別収入', - 'expenses_by_asset_account' => '資産口座ごとの支出', - 'expenses_by_expense_account' => '支出口座ごとの支出', - 'cannot_redirect_to_account' => 'Firefly IIIはあなたを正しいページにリダイレクトすることができませんでした。申し訳ありません。', - 'sum_of_expenses' => '合計支出', - 'sum_of_income' => '合計収入', - 'liabilities' => '負債', - 'spent_in_specific_budget' => '予算":budget"の支出', - 'spent_in_specific_double' => '口座「:account」での支出', - 'earned_in_specific_double' => '口座「:account」での収入', - 'source_account' => '引き出し口座', - 'source_account_reconciliation' => '引き出し口座の取引照合を編集することはできません。', - 'destination_account' => '預け入れ口座', - 'destination_account_reconciliation' => '預け入れ口座の取引照合を編集することはできません。', - 'sum_of_expenses_in_budget' => '予算":budget"の合計支出', - 'left_in_budget_limit' => '予算による支出残高', - 'current_period' => '現在の期間', - 'show_the_current_period_and_overview' => '現在の期間と概要を見る', - 'pref_languages_locale' => '英語以外の言語で正しく動作させるには、あなたのOSが正しいロケール情報を持っている必要があります。利用できない場合は、通貨データ、日付、金額が正しく表示されない可能性があります。', - 'budget_in_period' => '予算「:name」の :start から :end までのすべての取引の通貨 :currency のチャート', - 'chart_budget_in_period' => '予算「:name」の :start から :end までのすべての取引の通貨 :currency のチャート', - 'chart_budget_in_period_only_currency' => ':currency で予算計上されたため、このチャートは :currency での取引のみ表示されます。', - 'chart_account_in_period' => '口座「:name」(:balance) における :start から :end までのすべての取引のチャート', - 'chart_category_in_period' => '「:name」カテゴリの :start から :end までのすべての取引のチャート', - 'chart_category_all' => 'カテゴリ「:name」のすべての取引のチャート', - 'clone_withdrawal' => '出金を複製', - 'clone_deposit' => '入金を複製', - 'clone_transfer' => '送金を複製', - 'multi_select_no_selection' => '選択されていません', - 'multi_select_select_all' => 'すべてを選択', - 'multi_select_n_selected' => '選択済み', - 'multi_select_all_selected' => 'すべて選択済み', - 'multi_select_filter_placeholder' => '検索…', - 'intro_next_label' => '次へ', - 'intro_prev_label' => '前へ', - 'intro_skip_label' => 'スキップ', - 'intro_done_label' => '完了', - 'between_dates_breadcrumb' => ':start から :end まで', - 'all_journals_without_budget' => '予算外のすべての取引', - 'journals_without_budget' => '予算外のすべての取引', - 'all_journals_without_category' => 'カテゴリを除いたすべての取引', - 'journals_without_category' => 'カテゴリを除いた取引', - 'all_journals_for_account' => '口座「:name」のすべての取引', - 'chart_all_journals_for_account' => '口座「:name」のすべての取引のチャート', - 'journals_in_period_for_account' => '口座「:name」の :start から :end までのすべての取引', - 'journals_in_period_for_account_js' => '{start} から {end} までの口座 {title} のすべての取引', - 'transferred' => '送金済み', - 'all_withdrawal' => 'すべての支出', - 'all_transactions' => 'すべての取引', - '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' => 'カテゴリ「:name」の :start から :end までのすべての取引', - 'journals_in_period_for_tag' => 'タグ「:tag」のある :start から :end までのすべての取引', - '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 instructions how to do this.', - 'quickswitch' => 'クイックスイッチ', - 'sign_in_to_start' => 'サインインしてセッションを開始', - 'sign_in' => 'サインイン', - 'register_new_account' => '新しいアカウントを登録', - 'forgot_my_password' => 'パスワードを忘れました', - 'problems_with_input' => '入力に問題が発生しました。', - 'reset_password' => 'パスワードをリセット', - 'button_reset_password' => 'パスワードをリセット', - 'reset_button' => 'リセット', - 'want_to_login' => 'ログインする', - 'login_page_title' => 'Firefly III にログイン', - 'register_page_title' => 'Firefly IIIに登録する', - 'forgot_pw_page_title' => 'Firefly III のパスワードを忘れました', - 'reset_pw_page_title' => 'Firefly III のパスワードをリセットする', - 'cannot_reset_demo_user' => 'デモユーザーのパスワードはリセットできません。', - 'no_att_demo_user' => 'デモユーザーは添付ファイルをアップロードできません。', - 'button_register' => '登録', - 'authorization' => '認証', - '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' => '月当たりの予想費用', - 'per_period_sum_3M' => '四半期当たりの予想費用', - 'per_period_sum_6M' => '半期当たりの予想費用', - 'per_period_sum_1Y' => '年あたりの予想費用', - 'average_per_bill' => '請求あたりの平均', - 'expected_total' => '予想合計', - 'reconciliation_account_name' => ':name 照合 (:currency)', - 'saved' => '保存しました。', - 'advanced_options' => '高度な設定', - 'advanced_options_explain' => 'Firefly III のいくつかのページにはこのボタンの後ろに高度なオプションがあります。このページには何もありませんが、他のページをチェックしてください!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => '閉じる', + 'actions' => '操作', + 'edit' => '編集', + 'delete' => '削除', + 'split' => '分割', + 'single_split' => '分割', + 'clone' => '複製', + 'clone_and_edit' => '複製と編集', + 'confirm_action' => '操作を確認', + 'last_seven_days' => '過去7日間', + 'last_thirty_days' => '過去30日間', + 'last_180_days' => '過去180日間', + 'month_to_date' => '過去1ヶ月', + 'year_to_date' => '過去1年間', + 'YTD' => 'YTD', + 'welcome_back' => '概要', + 'everything' => '全て', + 'today' => '今日', + 'customRange' => '期間を指定', + 'date_range' => '対象期間', + 'apply' => '適用', + 'select_date' => '日付を選択...', + 'cancel' => 'キャンセル', + 'from' => '引き出し元', + 'to' => 'へ', + 'structure' => '構成', + 'help_translating' => 'このヘルプ文章はまだあなたの言語で利用可能ではありません。翻訳を手伝っていただけますか?', + 'showEverything' => 'すべてを表示', + 'never' => 'なし', + 'no_results_for_empty_search' => '検索条件が空なので、何も見つかりませんでした。', + 'removed_amount' => ':amount 削除しました', + 'added_amount' => ':amount 追加しました', + 'asset_account_role_help' => '追加設定は後で設定することができます。', + 'Opening balance' => '開始残高', + 'create_new_stuff' => '新しく作成する', + 'new_withdrawal' => '新しい出金', + 'create_new_transaction' => '新しい取引を作成', + 'sidebar_frontpage_create' => '作成', + 'new_transaction' => '新しい取引', + 'no_rules_for_bill' => 'この請求はどのルールにも関連付けられていません。', + 'go_to_asset_accounts' => '資産口座を見る', + 'go_to_budgets' => '予算へ移動', + 'go_to_withdrawals' => '出金に移動', + 'clones_journal_x' => 'この取引は「:description」 (#:id) の複製です。', + 'go_to_categories' => 'カテゴリへ移動', + 'go_to_bills' => '請求へ移動', + 'go_to_expense_accounts' => '支出口座を見る', + 'go_to_revenue_accounts' => '収入口座を見る', + 'go_to_piggies' => '貯金箱へ移動', + 'new_deposit' => '新しい入金', + 'new_transfer' => '新しい送金', + 'new_transfers' => '新しい送金', + 'new_asset_account' => '新しい資産口座', + 'new_expense_account' => '新しい支出口座', + 'new_revenue_account' => '新しい収入口座', + 'new_liabilities_account' => '新しい債務', + 'new_budget' => '新しい予算', + 'new_bill' => '新しい請求', + 'block_account_logout' => 'あなたはログアウトしました。ブロックされたアカウントはこのサイトを使うことが出来ません。有効なメールアドレスで登録しましたか?', + 'flash_success' => '成功しました!', + 'flash_info' => 'メッセージ', + 'flash_warning' => '警告!', + 'flash_error' => 'エラー!', + 'flash_danger' => '危険!', + 'flash_info_multiple' => '1件のメッセージがあります|:count 件のメッセージがあります', + 'flash_error_multiple' => '1件のエラーがあります|:count 件のエラーがあります', + 'net_worth' => '純資産', + 'help_for_this_page' => 'このページのヘルプ', + 'help_for_this_page_body' => 'こちらのページの詳細はドキュメントをご覧ください。', + 'two_factor_welcome' => 'こんにちは!', + 'two_factor_enter_code' => '続行するには、2要素認証コードを入力してください。あなたのアプリケーションが生成してくれます。', + 'two_factor_code_here' => 'コードを入力', + 'two_factor_title' => '2要素認証', + 'authenticate' => '認証', + 'two_factor_forgot_title' => '2要素認証を紛失', + 'two_factor_forgot' => '2要素認証端末を忘れてしまいました。', + 'two_factor_lost_header' => '2要素認証を紛失しましたか?', + 'two_factor_lost_intro' => 'バックアップコードも紛失してしまった場合、Webから修正する方法はありません。2つから選ぶことができます。', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'または、サイト管理者 :site_owner に連絡して2要素認証をリセットしてもらうよう頼んでください。', + 'mfa_backup_code' => 'あなたはバックアップコードを利用してログインしました。もし再び使用することが出来ないなら、リストから削除してください。', + 'pref_two_factor_new_backup_codes' => '新しいバックアップコードを取得', + 'pref_two_factor_backup_code_count' => ':count 個の有効なバックアップコードがあります。|:count 個の有効なバックアップコードがあります。', + '2fa_i_have_them' => '保存しました!', + 'warning_much_data' => ':days日間のデータは読み込みに時間を要す場合があります。', + 'registered' => '登録に成功しました!', + 'Default asset account' => '既定の資産口座', + 'no_budget_pointer' => 'まだ予算を立てていないようです。予算ページで作成してください。予算は支出の把握に役立ちます。', + 'no_bill_pointer' => 'まだ請求がないようです。請求ページで作成してください。請求は支出の把握に役立ちます。', + 'Savings account' => '貯蓄口座', + 'Credit card' => 'クレジットカード', + 'source_accounts' => '引き出し元口座|引き出し元口座', + 'destination_accounts' => '預け入れ先口座|預け入れ先口座', + 'user_id_is' => 'あなたのユーザーIDは :user です', + 'field_supports_markdown' => 'この欄はマークダウンをサポートしています。', + 'need_more_help' => 'もしFirefly IIIの使用に当たってヘルプが必要なら、Githubでチケットを開いてください。', + 'reenable_intro_text' => '導入ガイダンスを再度有効にすることもできます。', + 'intro_boxes_after_refresh' => '説明は再読込後に再び表示されます。', + 'show_all_no_filter' => 'すべての取引を日付でまとめずに表示します。', + 'expenses_by_category' => 'カテゴリ別支出', + 'expenses_by_budget' => '予算別支出', + 'income_by_category' => 'カテゴリ別収入', + 'expenses_by_asset_account' => '資産口座ごとの支出', + 'expenses_by_expense_account' => '支出口座ごとの支出', + 'cannot_redirect_to_account' => 'Firefly IIIはあなたを正しいページにリダイレクトすることができませんでした。申し訳ありません。', + 'sum_of_expenses' => '合計支出', + 'sum_of_income' => '合計収入', + 'liabilities' => '負債', + 'spent_in_specific_budget' => '予算":budget"の支出', + 'spent_in_specific_double' => '口座「:account」での支出', + 'earned_in_specific_double' => '口座「:account」での収入', + 'source_account' => '引き出し口座', + 'source_account_reconciliation' => '引き出し口座の取引照合を編集することはできません。', + 'destination_account' => '預け入れ口座', + 'destination_account_reconciliation' => '預け入れ口座の取引照合を編集することはできません。', + 'sum_of_expenses_in_budget' => '予算":budget"の合計支出', + 'left_in_budget_limit' => '予算による支出残高', + 'current_period' => '現在の期間', + 'show_the_current_period_and_overview' => '現在の期間と概要を見る', + 'pref_languages_locale' => '英語以外の言語で正しく動作させるには、あなたのOSが正しいロケール情報を持っている必要があります。利用できない場合は、通貨データ、日付、金額が正しく表示されない可能性があります。', + 'budget_in_period' => '予算「:name」の :start から :end までのすべての取引の通貨 :currency のチャート', + 'chart_budget_in_period' => '予算「:name」の :start から :end までのすべての取引の通貨 :currency のチャート', + 'chart_budget_in_period_only_currency' => ':currency で予算計上されたため、このチャートは :currency での取引のみ表示されます。', + 'chart_account_in_period' => '口座「:name」(:balance) における :start から :end までのすべての取引のチャート', + 'chart_category_in_period' => '「:name」カテゴリの :start から :end までのすべての取引のチャート', + 'chart_category_all' => 'カテゴリ「:name」のすべての取引のチャート', + 'clone_withdrawal' => '出金を複製', + 'clone_deposit' => '入金を複製', + 'clone_transfer' => '送金を複製', + 'multi_select_no_selection' => '選択されていません', + 'multi_select_select_all' => 'すべてを選択', + 'multi_select_n_selected' => '選択済み', + 'multi_select_all_selected' => 'すべて選択済み', + 'multi_select_filter_placeholder' => '検索…', + 'intro_next_label' => '次へ', + 'intro_prev_label' => '前へ', + 'intro_skip_label' => 'スキップ', + 'intro_done_label' => '完了', + 'between_dates_breadcrumb' => ':start から :end まで', + 'all_journals_without_budget' => '予算外のすべての取引', + 'journals_without_budget' => '予算外のすべての取引', + 'all_journals_without_category' => 'カテゴリを除いたすべての取引', + 'journals_without_category' => 'カテゴリを除いた取引', + 'all_journals_for_account' => '口座「:name」のすべての取引', + 'chart_all_journals_for_account' => '口座「:name」のすべての取引のチャート', + 'journals_in_period_for_account' => '口座「:name」の :start から :end までのすべての取引', + 'journals_in_period_for_account_js' => '{start} から {end} までの口座 {title} のすべての取引', + 'transferred' => '送金済み', + 'all_withdrawal' => 'すべての支出', + 'all_transactions' => 'すべての取引', + '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' => 'カテゴリ「:name」の :start から :end までのすべての取引', + 'journals_in_period_for_tag' => 'タグ「:tag」のある :start から :end までのすべての取引', + '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 instructions how to do this.', + 'quickswitch' => 'クイックスイッチ', + 'sign_in_to_start' => 'サインインしてセッションを開始', + 'sign_in' => 'サインイン', + 'register_new_account' => '新しいアカウントを登録', + 'forgot_my_password' => 'パスワードを忘れました', + 'problems_with_input' => '入力に問題が発生しました。', + 'reset_password' => 'パスワードをリセット', + 'button_reset_password' => 'パスワードをリセット', + 'reset_button' => 'リセット', + 'want_to_login' => 'ログインする', + 'login_page_title' => 'Firefly III にログイン', + 'register_page_title' => 'Firefly IIIに登録する', + 'forgot_pw_page_title' => 'Firefly III のパスワードを忘れました', + 'reset_pw_page_title' => 'Firefly III のパスワードをリセットする', + 'cannot_reset_demo_user' => 'デモユーザーのパスワードはリセットできません。', + 'no_att_demo_user' => 'デモユーザーは添付ファイルをアップロードできません。', + 'button_register' => '登録', + 'authorization' => '認証', + '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' => '月当たりの予想費用', + 'per_period_sum_3M' => '四半期当たりの予想費用', + 'per_period_sum_6M' => '半期当たりの予想費用', + 'per_period_sum_1Y' => '年あたりの予想費用', + 'average_per_bill' => '請求あたりの平均', + 'expected_total' => '予想合計', + 'reconciliation_account_name' => ':name 照合 (:currency)', + 'saved' => '保存しました。', + 'advanced_options' => '高度な設定', + 'advanced_options_explain' => 'Firefly III のいくつかのページにはこのボタンの後ろに高度なオプションがあります。このページには何もありませんが、他のページをチェックしてください!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhook', - 'webhooks_breadcrumb' => 'Webhook', - 'webhooks_menu_disabled' => 'disabled', - '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' => '詳細確認', - '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' => '指定された取引でWebhookがトリガーされました。結果が表示されるまでお待ちください。', - 'webhook_messages' => 'Webhookメッセージ', - 'view_message' => 'メッセージを見る', - 'view_attempts' => '失敗した試行の表示', - 'message_content_title' => 'Webhookメッセージの内容', - 'message_content_help' => 'このWebhookを使用して送信(または送信試行)されたメッセージの内容です。', - 'attempt_content_title' => 'Webhookの試行', - 'attempt_content_help' => '設定されたURLに送信するWebhookメッセージの試みはすべて失敗しました。しばらくするとFirefly IIIは試行を停止します。', - 'no_attempts' => '失敗した試行はありません。これは良いことです!', - 'webhook_attempt_at' => '{moment} に試行', - 'logs' => 'ログ', - 'response' => 'レスポンス', - 'visit_webhook_url' => 'WebhookのURLを開く', - 'reset_webhook_secret' => 'Webhookのシークレットをリセット', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") が保存されました。', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") が更新されました。', + 'webhooks' => 'Webhook', + 'webhooks_breadcrumb' => 'Webhook', + 'webhooks_menu_disabled' => 'disabled', + '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' => '詳細確認', + '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' => '指定された取引でWebhookがトリガーされました。結果が表示されるまでお待ちください。', + 'webhook_messages' => 'Webhookメッセージ', + 'view_message' => 'メッセージを見る', + 'view_attempts' => '失敗した試行の表示', + 'message_content_title' => 'Webhookメッセージの内容', + 'message_content_help' => 'このWebhookを使用して送信(または送信試行)されたメッセージの内容です。', + 'attempt_content_title' => 'Webhookの試行', + 'attempt_content_help' => '設定されたURLに送信するWebhookメッセージの試みはすべて失敗しました。しばらくするとFirefly IIIは試行を停止します。', + 'no_attempts' => '失敗した試行はありません。これは良いことです!', + 'webhook_attempt_at' => '{moment} に試行', + 'logs' => 'ログ', + 'response' => 'レスポンス', + 'visit_webhook_url' => 'WebhookのURLを開く', + 'reset_webhook_secret' => 'Webhookのシークレットをリセット', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") が保存されました。', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") が更新されました。', // API access - 'authorization_request' => 'Firefly III v:version 認証要求', - 'authorization_request_intro' => ':clientはあなたの資産情報管理の権限を要求しています。:clientに情報へのアクセスを許可しますか?', - 'authorization_request_site' => ':url にリダイレクトされ、Firefly III データにアクセスできます。', - 'authorization_request_invalid' => 'このアクセスリクエストは無効です。今後はこのリンクを利用しないでください。', - 'scopes_will_be_able' => 'このアプリケーションは次のことができます:', - 'button_authorize' => '許可する', - 'none_in_select_list' => '(なし)', - 'no_piggy_bank' => '(貯金箱がありません)', - 'name_in_currency' => '通貨 ":name" を編集する', - 'paid_in_currency' => ':currency で支払い済み', - 'unpaid_in_currency' => ':currency で未払い', - 'is_alpha_warning' => 'あなたはアルファバージョンを使用しています。バグや問題に注意してください。', - 'is_beta_warning' => 'あなたはベータバージョンを使用しています。バグや問題に注意してください。', - 'all_destination_accounts' => '預け入れ口座', - 'all_source_accounts' => '引き出し口座', - 'back_to_index' => 'インデックスに戻る', - 'cant_logout_guard' => 'Firefly III からログアウトできません。', - 'internal_reference' => '内部参照', + 'authorization_request' => 'Firefly III v:version 認証要求', + 'authorization_request_intro' => ':clientはあなたの資産情報管理の権限を要求しています。:clientに情報へのアクセスを許可しますか?', + 'authorization_request_site' => ':url にリダイレクトされ、Firefly III データにアクセスできます。', + 'authorization_request_invalid' => 'このアクセスリクエストは無効です。今後はこのリンクを利用しないでください。', + 'scopes_will_be_able' => 'このアプリケーションは次のことができます:', + 'button_authorize' => '許可する', + 'none_in_select_list' => '(なし)', + 'no_piggy_bank' => '(貯金箱がありません)', + 'name_in_currency' => '通貨 ":name" を編集する', + 'paid_in_currency' => ':currency で支払い済み', + 'unpaid_in_currency' => ':currency で未払い', + 'is_alpha_warning' => 'あなたはアルファバージョンを使用しています。バグや問題に注意してください。', + 'is_beta_warning' => 'あなたはベータバージョンを使用しています。バグや問題に注意してください。', + 'all_destination_accounts' => '預け入れ口座', + 'all_source_accounts' => '引き出し口座', + 'back_to_index' => 'インデックスに戻る', + 'cant_logout_guard' => 'Firefly III からログアウトできません。', + 'internal_reference' => '内部参照', // check for updates: - 'update_check_title' => 'アップデートを確認', - 'admin_update_check_title' => 'アップデートを自動的に確認', - 'admin_update_check_explain' => 'Firefly III は自動的にアップデートを確認できます。 この設定を有効にすると、Firefly III アップデートサーバーに問い合わせ、新しいバージョンの Firefly III が利用可能かどうかを確認し、もしあれば通知が届きます。右のボタンでこの通知をテストできます。 Firefly III でアップデートを確認したい場合は、以下を指定してください。', - 'check_for_updates_permission' => 'Firefly III はアップデートを確認できますが、あなたの許可が必要です。 この機能を有効にしたい場合は、 管理 にて設定してください。', - 'updates_ask_me_later' => '後で確認する', - 'updates_do_not_check' => 'アップデートを確認しない', - 'updates_enable_check' => 'アップデートの確認を有効にする', - 'admin_update_check_now_title' => '今すぐアップデートを確認', - 'admin_update_check_now_explain' => 'ボタンを押すと、Firefly III が最新バージョンかどうかを確認します。', - 'check_for_updates_button' => '今すぐ確認', - 'update_new_version_alert' => 'Firefly III の新しいバージョンが利用可能です。あなたは現在 :your_version を実行していますが、最新バージョンは :date にリリースされた :new_version です。', - 'update_version_beta' => 'このバージョンはベータ版です。問題が発生する可能性があります。', - 'update_version_alpha' => 'このバージョンはアルファ版です。問題が発生する可能性があります。', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => '最新のリリースである :version を利用しています。', - 'update_newer_version_alert' => '最新の :new_version よりも新しい :your_version を利用しています。', - 'update_check_error' => 'アップデートの確認中にエラーが発生しました: :error', - 'unknown_error' => '不明なエラーです。申し訳ありません。', - 'disabled_but_check' => 'アップデートのチェックを無効にしました。時々自分で更新を確認することを忘れないでください。よろしくおねがいします。', - 'admin_update_channel_title' => 'アップデートチャンネル', - 'admin_update_channel_explain' => 'Firefly III には、機能追加、機能改善、不具合をどれくらい先取りするかを決める3つのアップデートチャンネルがあります。 あなたが冒険好きならば、「ベータ」チャンネルを使用してください。危うい生活をしたいときは、「アルファ」を使用してください。', - 'update_channel_stable' => '安定。すべてが期待通りに動作するはずです。', - 'update_channel_beta' => 'ベータ。新しい機能がありますが、不安定かもしれません。', - 'update_channel_alpha' => 'アルファ。私たちは何でも投入し、使います。', + 'update_check_title' => 'アップデートを確認', + 'admin_update_check_title' => 'アップデートを自動的に確認', + 'admin_update_check_explain' => 'Firefly III は自動的にアップデートを確認できます。 この設定を有効にすると、Firefly III アップデートサーバーに問い合わせ、新しいバージョンの Firefly III が利用可能かどうかを確認し、もしあれば通知が届きます。右のボタンでこの通知をテストできます。 Firefly III でアップデートを確認したい場合は、以下を指定してください。', + 'check_for_updates_permission' => 'Firefly III はアップデートを確認できますが、あなたの許可が必要です。 この機能を有効にしたい場合は、 管理 にて設定してください。', + 'updates_ask_me_later' => '後で確認する', + 'updates_do_not_check' => 'アップデートを確認しない', + 'updates_enable_check' => 'アップデートの確認を有効にする', + 'admin_update_check_now_title' => '今すぐアップデートを確認', + 'admin_update_check_now_explain' => 'ボタンを押すと、Firefly III が最新バージョンかどうかを確認します。', + 'check_for_updates_button' => '今すぐ確認', + 'update_new_version_alert' => 'Firefly III の新しいバージョンが利用可能です。あなたは現在 :your_version を実行していますが、最新バージョンは :date にリリースされた :new_version です。', + 'update_version_beta' => 'このバージョンはベータ版です。問題が発生する可能性があります。', + 'update_version_alpha' => 'このバージョンはアルファ版です。問題が発生する可能性があります。', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => '最新のリリースである :version を利用しています。', + 'update_newer_version_alert' => '最新の :new_version よりも新しい :your_version を利用しています。', + 'update_check_error' => 'アップデートの確認中にエラーが発生しました: :error', + 'unknown_error' => '不明なエラーです。申し訳ありません。', + 'disabled_but_check' => 'アップデートのチェックを無効にしました。時々自分で更新を確認することを忘れないでください。よろしくおねがいします。', + 'admin_update_channel_title' => 'アップデートチャンネル', + 'admin_update_channel_explain' => 'Firefly III には、機能追加、機能改善、不具合をどれくらい先取りするかを決める3つのアップデートチャンネルがあります。 あなたが冒険好きならば、「ベータ」チャンネルを使用してください。危うい生活をしたいときは、「アルファ」を使用してください。', + 'update_channel_stable' => '安定。すべてが期待通りに動作するはずです。', + 'update_channel_beta' => 'ベータ。新しい機能がありますが、不安定かもしれません。', + 'update_channel_alpha' => 'アルファ。私たちは何でも投入し、使います。', // search - 'search' => '検索', - 'search_query' => 'クエリ', - 'search_found_transactions' => 'Firefly III は :count 件の取引を :time 秒で見つけました。|Firefly III は :count 件の取引を :time 秒で見つけました。', - 'search_found_more_transactions' => 'Firefly III は :count 件以上の取引を :time 秒で見つけました。', - 'search_for_query' => 'Firefly III はこれらすべての単語を含む取引を検索しています: :query', - 'invalid_operators_list' => 'これらの検索条件は無効であり、無視されています。', + 'search' => '検索', + 'search_query' => 'クエリ', + 'search_found_transactions' => 'Firefly III は :count 件の取引を :time 秒で見つけました。|Firefly III は :count 件の取引を :time 秒で見つけました。', + 'search_found_more_transactions' => 'Firefly III は :count 件以上の取引を :time 秒で見つけました。', + 'search_for_query' => 'Firefly III はこれらすべての単語を含む取引を検索しています: :query', + 'invalid_operators_list' => 'これらの検索条件は無効であり、無視されています。', // old @@ -351,368 +351,368 @@ return [ * */ - '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' => '取引IDが「:value」ではない', - 'search_modifier_date_before' => '取引日が「:value」以前', - 'search_modifier_date_after' => '取引日が「: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' => '外部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' => '外部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' => '概要が「:value」を含まない', - 'search_modifier_description_is' => '概要が「:value」と一致する', - 'search_modifier_not_description_is' => '概要が「:value」と一致しない', - 'search_modifier_currency_is' => '取引 (外国) 通貨が「:value」', - 'search_modifier_not_currency_is' => '取引 (外国) 通貨が「:value」ではない', - 'search_modifier_foreign_currency_is' => '取引外国通貨が「:value」', - 'search_modifier_not_foreign_currency_is' => '取引 (外国) 通貨が「:value」ではない', - 'search_modifier_has_attachments' => '一つの添付ファイルがある取引', - 'search_modifier_has_no_category' => 'カテゴリに属していない取引', - 'search_modifier_not_has_no_category' => '一つ以上のカテゴリに属する取引', - 'search_modifier_not_has_any_category' => 'カテゴリに属していない取引', - 'search_modifier_has_any_category' => '一つ以上のカテゴリに属する取引', - 'search_modifier_has_no_budget' => '予算外の取引', - 'search_modifier_not_has_any_budget' => '予算外の取引', - 'search_modifier_has_any_budget' => '予算がある取引', - 'search_modifier_not_has_no_budget' => '予算がある取引', - 'search_modifier_has_no_bill' => '請求がない取引', - 'search_modifier_not_has_no_bill' => '請求がある取引', - 'search_modifier_has_any_bill' => '請求がある取引', - 'search_modifier_not_has_any_bill' => '請求がない取引', - 'search_modifier_has_no_tag' => 'タグがない取引', - 'search_modifier_not_has_any_tag' => 'タグがない取引', - 'search_modifier_not_has_no_tag' => 'タグがある取引', - 'search_modifier_has_any_tag' => 'タグがある取引', - 'search_modifier_notes_contains' => '備考に「:value」を含む取引', - 'search_modifier_not_notes_contains' => '備考に「:value」を含まない取引', - 'search_modifier_notes_starts' => '備考が「:value」で始まる取引', - 'search_modifier_not_notes_starts' => '備考が「:value」で始まらない取引', - 'search_modifier_notes_ends' => '備考が「:value」で終わる取引', - 'search_modifier_not_notes_ends' => '備考が「:value」で終わらない取引', - 'search_modifier_notes_is' => '備考が「:value」と一致する取引', - 'search_modifier_not_notes_is' => '備考が「:value」と一致しない取引', - 'search_modifier_no_notes' => '備考がない取引', - 'search_modifier_not_no_notes' => '備考がある取引', - 'search_modifier_any_notes' => '備考がある取引', - 'search_modifier_not_any_notes' => '備考がない取引', - 'search_modifier_amount_is' => '金額が「:value」と一致', - 'search_modifier_not_amount_is' => '金額が「:value」ではない', - 'search_modifier_amount_less' => '金額が「:value」以下', - 'search_modifier_not_amount_more' => '金額が「:value」以下', - 'search_modifier_amount_more' => '金額が「:value」以上', - 'search_modifier_not_amount_less' => '金額が「:value」以上', - 'search_modifier_source_account_is' => '引き出し口座名が「:value」と一致', - 'search_modifier_not_source_account_is' => '引き出し口座名が「:value」ではない', - 'search_modifier_source_account_contains' => '引き出し口座名に「:value」を含む', - 'search_modifier_not_source_account_contains' => '引き出し口座名が「:value」を含まない', - 'search_modifier_source_account_starts' => '引き出し口座名が「:value」で始まる', - 'search_modifier_not_source_account_starts' => '引き出し口座名が「:value」で始まらない', - 'search_modifier_source_account_ends' => '引き出し口座名が「:value」で終わる', - 'search_modifier_not_source_account_ends' => '引き出し口座名が「:value」で終わらない', - 'search_modifier_source_account_id' => '引き出し口座IDが「:value」', - 'search_modifier_not_source_account_id' => '引き出し口座IDが「:value」ではない', - 'search_modifier_source_account_nr_is' => '引き出し口座番号(IBAN)が「:value」', - 'search_modifier_not_source_account_nr_is' => '引き出し口座番号(IBAN)が「:value」ではない', - 'search_modifier_source_account_nr_contains' => '引き出し口座番号(IBAN)に「:value」を含む', - 'search_modifier_not_source_account_nr_contains' => '引き出し口座番号(IBAN)が「:value」を含まない', - 'search_modifier_source_account_nr_starts' => '引き出し口座番号(IBAN)が「:value」で始まる', - 'search_modifier_not_source_account_nr_starts' => '引き出し口座番号(IBAN)が「:value」で始まらない', - 'search_modifier_source_account_nr_ends' => '引き出し口座番号(IBAN)が「:value」で終わる', - 'search_modifier_not_source_account_nr_ends' => '引き出し口座番号(IBAN)が「:value」で終わらない', - 'search_modifier_destination_account_is' => '預け入れ口座名が「:value」と一致する', - 'search_modifier_not_destination_account_is' => '預け入れ口座名が「:value」ではない', - 'search_modifier_destination_account_contains' => '預け入れ口座名に「:value」を含む', - 'search_modifier_not_destination_account_contains' => '預け入れ口座名が「:value」を含まない', - 'search_modifier_destination_account_starts' => '預け入れ口座名が「:value」で始まる', - 'search_modifier_not_destination_account_starts' => '預け入れ口座名が「:value」で始まらない', - 'search_modifier_destination_account_ends' => '預け入れ口座名が「:value」で終わる', - 'search_modifier_not_destination_account_ends' => '預け入れ口座名が「:value」で終わらない', - 'search_modifier_destination_account_id' => '預け入れ口座IDが「:value」', - 'search_modifier_not_destination_account_id' => '預け入れ口座IDが「:value」ではない', - 'search_modifier_destination_is_cash' => '預け入れ口座が現金口座', - 'search_modifier_not_destination_is_cash' => '預け入れ口座が現金口座ではない', - 'search_modifier_source_is_cash' => '引き出し口座が現金口座', - 'search_modifier_not_source_is_cash' => '引き出し口座が現金口座ではない', - 'search_modifier_destination_account_nr_is' => '預け入れ口座番号(IBAN)が「:value」', - 'search_modifier_not_destination_account_nr_is' => '預け入れ口座番号(IBAN)が「:value」', - 'search_modifier_destination_account_nr_contains' => '預け入れ口座番号(IBAN)が「:value」を含む', - 'search_modifier_not_destination_account_nr_contains' => '預け入れ口座番号(IBAN)が「:value」を含まない', - 'search_modifier_destination_account_nr_starts' => '預け入れ口座番号(IBAN)が「:value」で始まる', - 'search_modifier_not_destination_account_nr_starts' => '預け入れ口座番号(IBAN)が「:value」で始まらない', - 'search_modifier_destination_account_nr_ends' => '預け入れ口座番号(IBAN)が「:value」で終わる', - 'search_modifier_not_destination_account_nr_ends' => '預け入れ口座番号(IBAN)が「:value」で終わらない', - 'search_modifier_account_id' => '引き出し口座または預け入れ口座IDが「:value」', - 'search_modifier_not_account_id' => '引き出し口座または預け入れ口座IDが「:value」ではない', - 'search_modifier_category_is' => 'カテゴリが「:value」', - 'search_modifier_not_category_is' => 'カテゴリが「:value」ではない', - 'search_modifier_budget_is' => '予算名が「:value」', - 'search_modifier_not_budget_is' => '予算名が「:value」ではない', - 'search_modifier_bill_is' => '請求名が「:value」', - 'search_modifier_not_bill_is' => '請求名が「:value」ではない', - 'search_modifier_transaction_type' => '取引種別が「:value」', - 'search_modifier_not_transaction_type' => '取引種別が「:value」ではない', - 'search_modifier_tag_is' => 'タグが「:value」', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'タグ「:value」がない', - 'search_modifier_date_on_year' => '「:value」年の取引', - 'search_modifier_not_date_on_year' => '「:value」年の取引ではない', - 'search_modifier_date_on_month' => '「:value」月の取引', - 'search_modifier_not_date_on_month' => '「:value」月の取引ではない', - 'search_modifier_date_on_day' => '「:value」日の取引', - 'search_modifier_not_date_on_day' => '「:value」日の取引ではない', - 'search_modifier_date_before_year' => ':value年以前または年内の取引', - 'search_modifier_date_before_month' => ':value月以前または月内の取引', - 'search_modifier_date_before_day' => '「:value」日より前の取引', - 'search_modifier_date_after_year' => '「:value」中またはそれ以降の取引', - 'search_modifier_date_after_month' => '「:value」中またはそれ以降の取引', - 'search_modifier_date_after_day' => '「:value」日以降の取引', + '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' => '取引IDが「:value」ではない', + 'search_modifier_date_before' => '取引日が「:value」以前', + 'search_modifier_date_after' => '取引日が「: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' => '外部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' => '外部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' => '概要が「:value」を含まない', + 'search_modifier_description_is' => '概要が「:value」と一致する', + 'search_modifier_not_description_is' => '概要が「:value」と一致しない', + 'search_modifier_currency_is' => '取引 (外国) 通貨が「:value」', + 'search_modifier_not_currency_is' => '取引 (外国) 通貨が「:value」ではない', + 'search_modifier_foreign_currency_is' => '取引外国通貨が「:value」', + 'search_modifier_not_foreign_currency_is' => '取引 (外国) 通貨が「:value」ではない', + 'search_modifier_has_attachments' => '一つの添付ファイルがある取引', + 'search_modifier_has_no_category' => 'カテゴリに属していない取引', + 'search_modifier_not_has_no_category' => '一つ以上のカテゴリに属する取引', + 'search_modifier_not_has_any_category' => 'カテゴリに属していない取引', + 'search_modifier_has_any_category' => '一つ以上のカテゴリに属する取引', + 'search_modifier_has_no_budget' => '予算外の取引', + 'search_modifier_not_has_any_budget' => '予算外の取引', + 'search_modifier_has_any_budget' => '予算がある取引', + 'search_modifier_not_has_no_budget' => '予算がある取引', + 'search_modifier_has_no_bill' => '請求がない取引', + 'search_modifier_not_has_no_bill' => '請求がある取引', + 'search_modifier_has_any_bill' => '請求がある取引', + 'search_modifier_not_has_any_bill' => '請求がない取引', + 'search_modifier_has_no_tag' => 'タグがない取引', + 'search_modifier_not_has_any_tag' => 'タグがない取引', + 'search_modifier_not_has_no_tag' => 'タグがある取引', + 'search_modifier_has_any_tag' => 'タグがある取引', + 'search_modifier_notes_contains' => '備考に「:value」を含む取引', + 'search_modifier_not_notes_contains' => '備考に「:value」を含まない取引', + 'search_modifier_notes_starts' => '備考が「:value」で始まる取引', + 'search_modifier_not_notes_starts' => '備考が「:value」で始まらない取引', + 'search_modifier_notes_ends' => '備考が「:value」で終わる取引', + 'search_modifier_not_notes_ends' => '備考が「:value」で終わらない取引', + 'search_modifier_notes_is' => '備考が「:value」と一致する取引', + 'search_modifier_not_notes_is' => '備考が「:value」と一致しない取引', + 'search_modifier_no_notes' => '備考がない取引', + 'search_modifier_not_no_notes' => '備考がある取引', + 'search_modifier_any_notes' => '備考がある取引', + 'search_modifier_not_any_notes' => '備考がない取引', + 'search_modifier_amount_is' => '金額が「:value」と一致', + 'search_modifier_not_amount_is' => '金額が「:value」ではない', + 'search_modifier_amount_less' => '金額が「:value」以下', + 'search_modifier_not_amount_more' => '金額が「:value」以下', + 'search_modifier_amount_more' => '金額が「:value」以上', + 'search_modifier_not_amount_less' => '金額が「:value」以上', + 'search_modifier_source_account_is' => '引き出し口座名が「:value」と一致', + 'search_modifier_not_source_account_is' => '引き出し口座名が「:value」ではない', + 'search_modifier_source_account_contains' => '引き出し口座名に「:value」を含む', + 'search_modifier_not_source_account_contains' => '引き出し口座名が「:value」を含まない', + 'search_modifier_source_account_starts' => '引き出し口座名が「:value」で始まる', + 'search_modifier_not_source_account_starts' => '引き出し口座名が「:value」で始まらない', + 'search_modifier_source_account_ends' => '引き出し口座名が「:value」で終わる', + 'search_modifier_not_source_account_ends' => '引き出し口座名が「:value」で終わらない', + 'search_modifier_source_account_id' => '引き出し口座IDが「:value」', + 'search_modifier_not_source_account_id' => '引き出し口座IDが「:value」ではない', + 'search_modifier_source_account_nr_is' => '引き出し口座番号(IBAN)が「:value」', + 'search_modifier_not_source_account_nr_is' => '引き出し口座番号(IBAN)が「:value」ではない', + 'search_modifier_source_account_nr_contains' => '引き出し口座番号(IBAN)に「:value」を含む', + 'search_modifier_not_source_account_nr_contains' => '引き出し口座番号(IBAN)が「:value」を含まない', + 'search_modifier_source_account_nr_starts' => '引き出し口座番号(IBAN)が「:value」で始まる', + 'search_modifier_not_source_account_nr_starts' => '引き出し口座番号(IBAN)が「:value」で始まらない', + 'search_modifier_source_account_nr_ends' => '引き出し口座番号(IBAN)が「:value」で終わる', + 'search_modifier_not_source_account_nr_ends' => '引き出し口座番号(IBAN)が「:value」で終わらない', + 'search_modifier_destination_account_is' => '預け入れ口座名が「:value」と一致する', + 'search_modifier_not_destination_account_is' => '預け入れ口座名が「:value」ではない', + 'search_modifier_destination_account_contains' => '預け入れ口座名に「:value」を含む', + 'search_modifier_not_destination_account_contains' => '預け入れ口座名が「:value」を含まない', + 'search_modifier_destination_account_starts' => '預け入れ口座名が「:value」で始まる', + 'search_modifier_not_destination_account_starts' => '預け入れ口座名が「:value」で始まらない', + 'search_modifier_destination_account_ends' => '預け入れ口座名が「:value」で終わる', + 'search_modifier_not_destination_account_ends' => '預け入れ口座名が「:value」で終わらない', + 'search_modifier_destination_account_id' => '預け入れ口座IDが「:value」', + 'search_modifier_not_destination_account_id' => '預け入れ口座IDが「:value」ではない', + 'search_modifier_destination_is_cash' => '預け入れ口座が現金口座', + 'search_modifier_not_destination_is_cash' => '預け入れ口座が現金口座ではない', + 'search_modifier_source_is_cash' => '引き出し口座が現金口座', + 'search_modifier_not_source_is_cash' => '引き出し口座が現金口座ではない', + 'search_modifier_destination_account_nr_is' => '預け入れ口座番号(IBAN)が「:value」', + 'search_modifier_not_destination_account_nr_is' => '預け入れ口座番号(IBAN)が「:value」', + 'search_modifier_destination_account_nr_contains' => '預け入れ口座番号(IBAN)が「:value」を含む', + 'search_modifier_not_destination_account_nr_contains' => '預け入れ口座番号(IBAN)が「:value」を含まない', + 'search_modifier_destination_account_nr_starts' => '預け入れ口座番号(IBAN)が「:value」で始まる', + 'search_modifier_not_destination_account_nr_starts' => '預け入れ口座番号(IBAN)が「:value」で始まらない', + 'search_modifier_destination_account_nr_ends' => '預け入れ口座番号(IBAN)が「:value」で終わる', + 'search_modifier_not_destination_account_nr_ends' => '預け入れ口座番号(IBAN)が「:value」で終わらない', + 'search_modifier_account_id' => '引き出し口座または預け入れ口座IDが「:value」', + 'search_modifier_not_account_id' => '引き出し口座または預け入れ口座IDが「:value」ではない', + 'search_modifier_category_is' => 'カテゴリが「:value」', + 'search_modifier_not_category_is' => 'カテゴリが「:value」ではない', + 'search_modifier_budget_is' => '予算名が「:value」', + 'search_modifier_not_budget_is' => '予算名が「:value」ではない', + 'search_modifier_bill_is' => '請求名が「:value」', + 'search_modifier_not_bill_is' => '請求名が「:value」ではない', + 'search_modifier_transaction_type' => '取引種別が「:value」', + 'search_modifier_not_transaction_type' => '取引種別が「:value」ではない', + 'search_modifier_tag_is' => 'タグが「:value」', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'タグ「:value」がない', + 'search_modifier_date_on_year' => '「:value」年の取引', + 'search_modifier_not_date_on_year' => '「:value」年の取引ではない', + 'search_modifier_date_on_month' => '「:value」月の取引', + 'search_modifier_not_date_on_month' => '「:value」月の取引ではない', + 'search_modifier_date_on_day' => '「:value」日の取引', + 'search_modifier_not_date_on_day' => '「:value」日の取引ではない', + 'search_modifier_date_before_year' => ':value年以前または年内の取引', + 'search_modifier_date_before_month' => ':value月以前または月内の取引', + 'search_modifier_date_before_day' => '「:value」日より前の取引', + 'search_modifier_date_after_year' => '「:value」中またはそれ以降の取引', + 'search_modifier_date_after_month' => '「:value」中またはそれ以降の取引', + 'search_modifier_date_after_day' => '「:value」日以降の取引', // new - 'search_modifier_tag_is_not' => 'タグ「:value」がない', - 'search_modifier_not_tag_is_not' => 'タグが「:value」', - 'search_modifier_account_is' => 'どちらかの口座が「:value」', - 'search_modifier_not_account_is' => 'どちらの口座も「:value」ではない', - 'search_modifier_account_contains' => 'どちらかの口座名に「:value」を含む', - 'search_modifier_not_account_contains' => 'どちらの口座も「:value」を含まない', - 'search_modifier_account_ends' => 'どちらかの口座が「:value」で終わる', - 'search_modifier_not_account_ends' => 'どちらの口座も「:value」で終わらない', - 'search_modifier_account_starts' => 'どちらかの口座が「:value」で始まる', - 'search_modifier_not_account_starts' => 'どちらの口座も「:value」で始まらない', - 'search_modifier_account_nr_is' => 'どちらかの口座番号 / IBAN が「:value」', - 'search_modifier_not_account_nr_is' => 'どちらの口座番号 / IBAN も「:value」ではない', - 'search_modifier_account_nr_contains' => 'どちらかの口座番号 / IBAN が「:value」を含む', - 'search_modifier_not_account_nr_contains' => 'どちらの口座番号 / IBAN も「:value」を含まない', - 'search_modifier_account_nr_ends' => 'どちらかの口座番号 / IBAN が「:value」で終わる', - 'search_modifier_not_account_nr_ends' => 'どちらの口座番号 / IBAN も「:value」で終わらない', - 'search_modifier_account_nr_starts' => 'どちらかの口座番号 / IBAN が「:value」で始まる', - 'search_modifier_not_account_nr_starts' => 'どちらの口座番号 / IBAN も「:value」で始まらない', - 'search_modifier_category_contains' => 'カテゴリに「:value」を含む', - 'search_modifier_not_category_contains' => 'カテゴリが「:value」を含まない', - 'search_modifier_category_ends' => 'カテゴリが「:value」で終わる', - 'search_modifier_not_category_ends' => 'カテゴリが「:value」で終わらない', - 'search_modifier_category_starts' => 'カテゴリが「:value」で始まる', - 'search_modifier_not_category_starts' => 'カテゴリが「:value」で始まらない', - 'search_modifier_budget_contains' => '予算名が「:value」を含む', - 'search_modifier_not_budget_contains' => '予算名が「:value」を含まない', - 'search_modifier_budget_ends' => '予算名が「:value」で終わる', - 'search_modifier_not_budget_ends' => '予算名が「:value」で終わらない', - 'search_modifier_budget_starts' => '予算名が「:value」で始まる', - 'search_modifier_not_budget_starts' => '予算名が「:value」で始まらない', - 'search_modifier_bill_contains' => '請求名が「:value」を含む', - 'search_modifier_not_bill_contains' => '請求名が「:value」を含まない', - 'search_modifier_bill_ends' => '請求名が「:value」で終わる', - 'search_modifier_not_bill_ends' => '請求名が「:value」で終わらない', - 'search_modifier_bill_starts' => '請求名が「:value」で始まる', - 'search_modifier_not_bill_starts' => '請求名が「:value」で始まらない', - 'search_modifier_external_id_contains' => '外部IDに「:value」を含む', - 'search_modifier_not_external_id_contains' => '外部IDが「:value」を含まない', - 'search_modifier_external_id_ends' => '外部 ID が「:value」で終わる', - 'search_modifier_not_external_id_ends' => '外部IDが「:value」で終わらない', - 'search_modifier_external_id_starts' => '外部 ID が「:value」で始まる', - 'search_modifier_not_external_id_starts' => '外部IDが「:value」で始まらない', - 'search_modifier_internal_reference_contains' => '内部参照に「:value」を含む', - 'search_modifier_not_internal_reference_contains' => '内部参照が「:value」を含まない', - 'search_modifier_internal_reference_ends' => '内部参照が「:value」で終わる', - 'search_modifier_internal_reference_starts' => '内部参照が「:value」で始まる', - 'search_modifier_not_internal_reference_ends' => '内部参照が「:value」で終わらない', - 'search_modifier_not_internal_reference_starts' => '内部参照が「:value」で始まらない', - 'search_modifier_external_url_is' => '外部 URL が「:value」', - 'search_modifier_not_external_url_is' => '外部URLが「:value」ではない', - 'search_modifier_external_url_contains' => '外部URLに「:value」を含む', - 'search_modifier_not_external_url_contains' => '外部URLが「:value」を含まない', - 'search_modifier_external_url_ends' => '外部 URL が「:value」で終わる', - 'search_modifier_not_external_url_ends' => '外部URLが「:value」で終わらない', - 'search_modifier_external_url_starts' => '外部 URL が「:value」で始まる', - 'search_modifier_not_external_url_starts' => '外部URLが「:value」で始まらない', - 'search_modifier_has_no_attachments' => '添付ファイルがない取引', - 'search_modifier_not_has_no_attachments' => '添付ファイルがある取引', - 'search_modifier_not_has_attachments' => '添付ファイルがない取引', - 'search_modifier_account_is_cash' => 'どちらかの口座が現金口座', - 'search_modifier_not_account_is_cash' => 'どちらの口座も現金口座ではない', - 'search_modifier_journal_id' => 'ジャーナル ID が「:value"」', - 'search_modifier_not_journal_id' => 'ジャーナルIDが「:value"」ではない', - 'search_modifier_recurrence_id' => '定期的な取引 ID が「:value」', - 'search_modifier_not_recurrence_id' => '定期的な取引IDが「:value」ではない', - 'search_modifier_foreign_amount_is' => '外貨金額が「:value」', - 'search_modifier_not_foreign_amount_is' => '外貨金額が「:value」ではない', - 'search_modifier_foreign_amount_less' => '外貨金額が「:value」より少ない', - 'search_modifier_not_foreign_amount_more' => '外貨金額が「:value」より少ない', - 'search_modifier_not_foreign_amount_less' => '外貨金額が「:value」より大きい', - 'search_modifier_foreign_amount_more' => '外貨金額が「:value」より大きい', - 'search_modifier_exists' => '取引が存在する', - 'search_modifier_not_exists' => '取引が存在しない', + 'search_modifier_tag_is_not' => 'タグ「:value」がない', + 'search_modifier_not_tag_is_not' => 'タグが「:value」', + 'search_modifier_account_is' => 'どちらかの口座が「:value」', + 'search_modifier_not_account_is' => 'どちらの口座も「:value」ではない', + 'search_modifier_account_contains' => 'どちらかの口座名に「:value」を含む', + 'search_modifier_not_account_contains' => 'どちらの口座も「:value」を含まない', + 'search_modifier_account_ends' => 'どちらかの口座が「:value」で終わる', + 'search_modifier_not_account_ends' => 'どちらの口座も「:value」で終わらない', + 'search_modifier_account_starts' => 'どちらかの口座が「:value」で始まる', + 'search_modifier_not_account_starts' => 'どちらの口座も「:value」で始まらない', + 'search_modifier_account_nr_is' => 'どちらかの口座番号 / IBAN が「:value」', + 'search_modifier_not_account_nr_is' => 'どちらの口座番号 / IBAN も「:value」ではない', + 'search_modifier_account_nr_contains' => 'どちらかの口座番号 / IBAN が「:value」を含む', + 'search_modifier_not_account_nr_contains' => 'どちらの口座番号 / IBAN も「:value」を含まない', + 'search_modifier_account_nr_ends' => 'どちらかの口座番号 / IBAN が「:value」で終わる', + 'search_modifier_not_account_nr_ends' => 'どちらの口座番号 / IBAN も「:value」で終わらない', + 'search_modifier_account_nr_starts' => 'どちらかの口座番号 / IBAN が「:value」で始まる', + 'search_modifier_not_account_nr_starts' => 'どちらの口座番号 / IBAN も「:value」で始まらない', + 'search_modifier_category_contains' => 'カテゴリに「:value」を含む', + 'search_modifier_not_category_contains' => 'カテゴリが「:value」を含まない', + 'search_modifier_category_ends' => 'カテゴリが「:value」で終わる', + 'search_modifier_not_category_ends' => 'カテゴリが「:value」で終わらない', + 'search_modifier_category_starts' => 'カテゴリが「:value」で始まる', + 'search_modifier_not_category_starts' => 'カテゴリが「:value」で始まらない', + 'search_modifier_budget_contains' => '予算名が「:value」を含む', + 'search_modifier_not_budget_contains' => '予算名が「:value」を含まない', + 'search_modifier_budget_ends' => '予算名が「:value」で終わる', + 'search_modifier_not_budget_ends' => '予算名が「:value」で終わらない', + 'search_modifier_budget_starts' => '予算名が「:value」で始まる', + 'search_modifier_not_budget_starts' => '予算名が「:value」で始まらない', + 'search_modifier_bill_contains' => '請求名が「:value」を含む', + 'search_modifier_not_bill_contains' => '請求名が「:value」を含まない', + 'search_modifier_bill_ends' => '請求名が「:value」で終わる', + 'search_modifier_not_bill_ends' => '請求名が「:value」で終わらない', + 'search_modifier_bill_starts' => '請求名が「:value」で始まる', + 'search_modifier_not_bill_starts' => '請求名が「:value」で始まらない', + 'search_modifier_external_id_contains' => '外部IDに「:value」を含む', + 'search_modifier_not_external_id_contains' => '外部IDが「:value」を含まない', + 'search_modifier_external_id_ends' => '外部 ID が「:value」で終わる', + 'search_modifier_not_external_id_ends' => '外部IDが「:value」で終わらない', + 'search_modifier_external_id_starts' => '外部 ID が「:value」で始まる', + 'search_modifier_not_external_id_starts' => '外部IDが「:value」で始まらない', + 'search_modifier_internal_reference_contains' => '内部参照に「:value」を含む', + 'search_modifier_not_internal_reference_contains' => '内部参照が「:value」を含まない', + 'search_modifier_internal_reference_ends' => '内部参照が「:value」で終わる', + 'search_modifier_internal_reference_starts' => '内部参照が「:value」で始まる', + 'search_modifier_not_internal_reference_ends' => '内部参照が「:value」で終わらない', + 'search_modifier_not_internal_reference_starts' => '内部参照が「:value」で始まらない', + 'search_modifier_external_url_is' => '外部 URL が「:value」', + 'search_modifier_not_external_url_is' => '外部URLが「:value」ではない', + 'search_modifier_external_url_contains' => '外部URLに「:value」を含む', + 'search_modifier_not_external_url_contains' => '外部URLが「:value」を含まない', + 'search_modifier_external_url_ends' => '外部 URL が「:value」で終わる', + 'search_modifier_not_external_url_ends' => '外部URLが「:value」で終わらない', + 'search_modifier_external_url_starts' => '外部 URL が「:value」で始まる', + 'search_modifier_not_external_url_starts' => '外部URLが「:value」で始まらない', + 'search_modifier_has_no_attachments' => '添付ファイルがない取引', + 'search_modifier_not_has_no_attachments' => '添付ファイルがある取引', + 'search_modifier_not_has_attachments' => '添付ファイルがない取引', + 'search_modifier_account_is_cash' => 'どちらかの口座が現金口座', + 'search_modifier_not_account_is_cash' => 'どちらの口座も現金口座ではない', + 'search_modifier_journal_id' => 'ジャーナル ID が「:value"」', + 'search_modifier_not_journal_id' => 'ジャーナルIDが「:value"」ではない', + 'search_modifier_recurrence_id' => '定期的な取引 ID が「:value」', + 'search_modifier_not_recurrence_id' => '定期的な取引IDが「:value」ではない', + 'search_modifier_foreign_amount_is' => '外貨金額が「:value」', + 'search_modifier_not_foreign_amount_is' => '外貨金額が「:value」ではない', + 'search_modifier_foreign_amount_less' => '外貨金額が「:value」より少ない', + 'search_modifier_not_foreign_amount_more' => '外貨金額が「:value」より少ない', + 'search_modifier_not_foreign_amount_less' => '外貨金額が「:value」より大きい', + 'search_modifier_foreign_amount_more' => '外貨金額が「:value」より大きい', + 'search_modifier_exists' => '取引が存在する', + 'search_modifier_not_exists' => '取引が存在しない', // date fields - 'search_modifier_interest_date_on' => '利息日が「:value」', - 'search_modifier_not_interest_date_on' => '利息日が「:value」ではない', - 'search_modifier_interest_date_on_year' => '利息日が「:value」', - 'search_modifier_not_interest_date_on_year' => '利息日が「:value」年ではない', - 'search_modifier_interest_date_on_month' => '利息日が「:value」', - 'search_modifier_not_interest_date_on_month' => '利息日が「:value」月ではない', - 'search_modifier_interest_date_on_day' => '利息日が「:value」', - 'search_modifier_not_interest_date_on_day' => '利息日が「:value」日ではない', - 'search_modifier_interest_date_before_year' => '利息日が「:value」以前', - 'search_modifier_interest_date_before_month' => '利息日が「:value」以前', - 'search_modifier_interest_date_before_day' => '利息日が「:value」以前', - 'search_modifier_interest_date_after_year' => '利息日が「:value」以降', - 'search_modifier_interest_date_after_month' => '利息日が「:value」以降', - 'search_modifier_interest_date_after_day' => '利息日が「:value」以降', - 'search_modifier_book_date_on_year' => '記帳日が「:value」', - 'search_modifier_book_date_on_month' => '記帳日が「:value」内', - 'search_modifier_book_date_on_day' => '記帳日が「:value」', - 'search_modifier_not_book_date_on_year' => '記帳日が「:value」年ではない', - 'search_modifier_not_book_date_on_month' => '記帳日が「:value」月ではない', - 'search_modifier_not_book_date_on_day' => '記帳日が「:value」日ではない', - 'search_modifier_book_date_before_year' => '記帳日が「:value」以前', - 'search_modifier_book_date_before_month' => '記帳日が「:value」以前', - 'search_modifier_book_date_before_day' => '記帳日が「:value」以前', - 'search_modifier_book_date_after_year' => '記帳日が「:value」以降', - 'search_modifier_book_date_after_month' => '記帳日が「:value」以降', - 'search_modifier_book_date_after_day' => '記帳日が「:value」以降', - 'search_modifier_process_date_on_year' => '取引処理日が「:value」', - 'search_modifier_process_date_on_month' => '取引処理日が「:value」', - 'search_modifier_process_date_on_day' => '取引処理日が「:value」', - 'search_modifier_not_process_date_on_year' => '取引処理日が「:value」年ではない', - 'search_modifier_not_process_date_on_month' => '取引処理日が「:value」月ではない', - 'search_modifier_not_process_date_on_day' => '取引処理日が「:value」日ではない', - 'search_modifier_process_date_before_year' => '取引処理日が「:value」以前', - 'search_modifier_process_date_before_month' => '取引処理日が「:value」以前', - 'search_modifier_process_date_before_day' => '取引処理日が「:value」以前', - 'search_modifier_process_date_after_year' => '取引処理日が「:value」以降', - 'search_modifier_process_date_after_month' => '取引処理日が「:value」以降', - 'search_modifier_process_date_after_day' => '取引処理日が「:value」以降', - 'search_modifier_due_date_on_year' => '「:value」が期限の取引', - 'search_modifier_due_date_on_month' => '「:value」が期限の取引', - 'search_modifier_due_date_on_day' => '「:value」が期限の取引', - 'search_modifier_not_due_date_on_year' => '支払期日が「:value」年ではない', - 'search_modifier_not_due_date_on_month' => '支払期日が「:value」月ではない', - 'search_modifier_not_due_date_on_day' => '支払期日が「:value」日ではない', - 'search_modifier_due_date_before_year' => '「:value」以前が期限の取引', - 'search_modifier_due_date_before_month' => '「:value」以前が期限の取引', - 'search_modifier_due_date_before_day' => '「:value」以前が期限の取引', - 'search_modifier_due_date_after_year' => '「:value」以降が期限の取引', - 'search_modifier_due_date_after_month' => '「:value」以降が期限の取引', - 'search_modifier_due_date_after_day' => '「:value」以降が期限の取引', - 'search_modifier_payment_date_on_year' => '引き落とし日が「:value」', - 'search_modifier_payment_date_on_month' => '引き落とし日が「:value」', - 'search_modifier_payment_date_on_day' => '引き落とし日が「:value」', - 'search_modifier_not_payment_date_on_year' => '支払日が「:value」年ではない', - 'search_modifier_not_payment_date_on_month' => '支払日が「:value」月ではない', - 'search_modifier_not_payment_date_on_day' => '支払日が「:value」日ではない', - 'search_modifier_payment_date_before_year' => '引き落とし日が「:value」以前', - 'search_modifier_payment_date_before_month' => '引き落とし日が「:value」以前', - 'search_modifier_payment_date_before_day' => '引き落とし日が「:value」以前', - 'search_modifier_payment_date_after_year' => '引き落とし日が「:value」以降', - 'search_modifier_payment_date_after_month' => '引き落とし日が「:value」以降', - 'search_modifier_payment_date_after_day' => '引き落とし日が「:value」以降', - 'search_modifier_invoice_date_on_year' => '請求日が「:value」内', - 'search_modifier_invoice_date_on_month' => '請求日が「:value」内', - 'search_modifier_invoice_date_on_day' => '請求日が「:value」', - 'search_modifier_not_invoice_date_on_year' => '請求日が「:value」年ではない', - 'search_modifier_not_invoice_date_on_month' => '請求日が「:value」月ではない', - 'search_modifier_not_invoice_date_on_day' => '請求日が「:value」日ではない', - 'search_modifier_invoice_date_before_year' => '請求日が「:value」以前', - 'search_modifier_invoice_date_before_month' => '請求日が「:value」以前', - 'search_modifier_invoice_date_before_day' => '請求日が「:value」以前', - 'search_modifier_invoice_date_after_year' => '請求日が「:value」以降', - 'search_modifier_invoice_date_after_month' => '請求日が「:value」以降', - 'search_modifier_invoice_date_after_day' => '請求日が「:value」以降', + 'search_modifier_interest_date_on' => '利息日が「:value」', + 'search_modifier_not_interest_date_on' => '利息日が「:value」ではない', + 'search_modifier_interest_date_on_year' => '利息日が「:value」', + 'search_modifier_not_interest_date_on_year' => '利息日が「:value」年ではない', + 'search_modifier_interest_date_on_month' => '利息日が「:value」', + 'search_modifier_not_interest_date_on_month' => '利息日が「:value」月ではない', + 'search_modifier_interest_date_on_day' => '利息日が「:value」', + 'search_modifier_not_interest_date_on_day' => '利息日が「:value」日ではない', + 'search_modifier_interest_date_before_year' => '利息日が「:value」以前', + 'search_modifier_interest_date_before_month' => '利息日が「:value」以前', + 'search_modifier_interest_date_before_day' => '利息日が「:value」以前', + 'search_modifier_interest_date_after_year' => '利息日が「:value」以降', + 'search_modifier_interest_date_after_month' => '利息日が「:value」以降', + 'search_modifier_interest_date_after_day' => '利息日が「:value」以降', + 'search_modifier_book_date_on_year' => '記帳日が「:value」', + 'search_modifier_book_date_on_month' => '記帳日が「:value」内', + 'search_modifier_book_date_on_day' => '記帳日が「:value」', + 'search_modifier_not_book_date_on_year' => '記帳日が「:value」年ではない', + 'search_modifier_not_book_date_on_month' => '記帳日が「:value」月ではない', + 'search_modifier_not_book_date_on_day' => '記帳日が「:value」日ではない', + 'search_modifier_book_date_before_year' => '記帳日が「:value」以前', + 'search_modifier_book_date_before_month' => '記帳日が「:value」以前', + 'search_modifier_book_date_before_day' => '記帳日が「:value」以前', + 'search_modifier_book_date_after_year' => '記帳日が「:value」以降', + 'search_modifier_book_date_after_month' => '記帳日が「:value」以降', + 'search_modifier_book_date_after_day' => '記帳日が「:value」以降', + 'search_modifier_process_date_on_year' => '取引処理日が「:value」', + 'search_modifier_process_date_on_month' => '取引処理日が「:value」', + 'search_modifier_process_date_on_day' => '取引処理日が「:value」', + 'search_modifier_not_process_date_on_year' => '取引処理日が「:value」年ではない', + 'search_modifier_not_process_date_on_month' => '取引処理日が「:value」月ではない', + 'search_modifier_not_process_date_on_day' => '取引処理日が「:value」日ではない', + 'search_modifier_process_date_before_year' => '取引処理日が「:value」以前', + 'search_modifier_process_date_before_month' => '取引処理日が「:value」以前', + 'search_modifier_process_date_before_day' => '取引処理日が「:value」以前', + 'search_modifier_process_date_after_year' => '取引処理日が「:value」以降', + 'search_modifier_process_date_after_month' => '取引処理日が「:value」以降', + 'search_modifier_process_date_after_day' => '取引処理日が「:value」以降', + 'search_modifier_due_date_on_year' => '「:value」が期限の取引', + 'search_modifier_due_date_on_month' => '「:value」が期限の取引', + 'search_modifier_due_date_on_day' => '「:value」が期限の取引', + 'search_modifier_not_due_date_on_year' => '支払期日が「:value」年ではない', + 'search_modifier_not_due_date_on_month' => '支払期日が「:value」月ではない', + 'search_modifier_not_due_date_on_day' => '支払期日が「:value」日ではない', + 'search_modifier_due_date_before_year' => '「:value」以前が期限の取引', + 'search_modifier_due_date_before_month' => '「:value」以前が期限の取引', + 'search_modifier_due_date_before_day' => '「:value」以前が期限の取引', + 'search_modifier_due_date_after_year' => '「:value」以降が期限の取引', + 'search_modifier_due_date_after_month' => '「:value」以降が期限の取引', + 'search_modifier_due_date_after_day' => '「:value」以降が期限の取引', + 'search_modifier_payment_date_on_year' => '引き落とし日が「:value」', + 'search_modifier_payment_date_on_month' => '引き落とし日が「:value」', + 'search_modifier_payment_date_on_day' => '引き落とし日が「:value」', + 'search_modifier_not_payment_date_on_year' => '支払日が「:value」年ではない', + 'search_modifier_not_payment_date_on_month' => '支払日が「:value」月ではない', + 'search_modifier_not_payment_date_on_day' => '支払日が「:value」日ではない', + 'search_modifier_payment_date_before_year' => '引き落とし日が「:value」以前', + 'search_modifier_payment_date_before_month' => '引き落とし日が「:value」以前', + 'search_modifier_payment_date_before_day' => '引き落とし日が「:value」以前', + 'search_modifier_payment_date_after_year' => '引き落とし日が「:value」以降', + 'search_modifier_payment_date_after_month' => '引き落とし日が「:value」以降', + 'search_modifier_payment_date_after_day' => '引き落とし日が「:value」以降', + 'search_modifier_invoice_date_on_year' => '請求日が「:value」内', + 'search_modifier_invoice_date_on_month' => '請求日が「:value」内', + 'search_modifier_invoice_date_on_day' => '請求日が「:value」', + 'search_modifier_not_invoice_date_on_year' => '請求日が「:value」年ではない', + 'search_modifier_not_invoice_date_on_month' => '請求日が「:value」月ではない', + 'search_modifier_not_invoice_date_on_day' => '請求日が「:value」日ではない', + 'search_modifier_invoice_date_before_year' => '請求日が「:value」以前', + 'search_modifier_invoice_date_before_month' => '請求日が「:value」以前', + 'search_modifier_invoice_date_before_day' => '請求日が「:value」以前', + 'search_modifier_invoice_date_after_year' => '請求日が「:value」以降', + 'search_modifier_invoice_date_after_month' => '請求日が「:value」以降', + 'search_modifier_invoice_date_after_day' => '請求日が「:value」以降', // other dates - 'search_modifier_updated_at_on_year' => '取引の最終更新が「:value」', - 'search_modifier_updated_at_on_month' => '取引の最終更新が「:value」', - 'search_modifier_updated_at_on_day' => '取引の最終更新が「:value」', - 'search_modifier_not_updated_at_on_year' => '取引の最終更新が「:value」年ではない', - 'search_modifier_not_updated_at_on_month' => '取引の最終更新が「:value」月ではない', - 'search_modifier_not_updated_at_on_day' => '取引の最終更新が「:value」日ではない', - 'search_modifier_updated_at_before_year' => '取引の最終更新が「:value」以前', - 'search_modifier_updated_at_before_month' => '取引の最終更新が「:value」以前', - 'search_modifier_updated_at_before_day' => '取引の最終更新が「:value」以前', - 'search_modifier_updated_at_after_year' => '取引の最終更新が「:value」以降', - 'search_modifier_updated_at_after_month' => '取引の最終更新が「:value」以降', - 'search_modifier_updated_at_after_day' => '取引の最終更新が「:value」以降', - 'search_modifier_created_at_on_year' => '取引の作成が「:value」', - 'search_modifier_created_at_on_month' => '取引の作成が「:value」', - 'search_modifier_created_at_on_day' => '取引の作成が「:value」', - 'search_modifier_not_created_at_on_year' => '取引の作成が「:value」年ではない', - 'search_modifier_not_created_at_on_month' => '取引の作成が「:value」月ではない', - 'search_modifier_not_created_at_on_day' => '取引の作成が「:value」日ではない', - 'search_modifier_created_at_before_year' => '取引の作成が「:value」以前', - 'search_modifier_created_at_before_month' => '取引の作成が「:value」以前', - 'search_modifier_created_at_before_day' => '取引の最終更新が「:value」以前', - 'search_modifier_created_at_after_year' => '取引の作成が「:value」以降', - 'search_modifier_created_at_after_month' => '取引の作成が「:value」以降', - 'search_modifier_created_at_after_day' => '取引の作成が「:value」以降', - 'search_modifier_interest_date_before' => '利息日が「:value」以前', - 'search_modifier_interest_date_after' => '利息日が「:value」以降', - 'search_modifier_book_date_on' => '記帳日が「:value」', - 'search_modifier_not_book_date_on' => '記帳日が「:value」ではない', - 'search_modifier_book_date_before' => '記帳日が「:value」以前', - 'search_modifier_book_date_after' => '記帳日が「:value」以降', - 'search_modifier_process_date_on' => '取引処理日が「:value」', - 'search_modifier_not_process_date_on' => '取引処理日が「:value」 ではない', - 'search_modifier_process_date_before' => '取引処理日が「:value」以前', - 'search_modifier_process_date_after' => '取引処理日が「:value」以降', - 'search_modifier_due_date_on' => '取引期限が「:value」', - 'search_modifier_not_due_date_on' => '取引期限が「:value」ではない', - 'search_modifier_due_date_before' => '取引期限が「:value」以前', - 'search_modifier_due_date_after' => '取引期限が「:value」以降', - 'search_modifier_payment_date_on' => '支払日が「:value」', - 'search_modifier_not_payment_date_on' => '支払日が「:value」ではない', - 'search_modifier_payment_date_before' => '支払日が「:value」以前', - 'search_modifier_payment_date_after' => '支払日が「:value」以降', - 'search_modifier_invoice_date_on' => '請求日が「:value」', - 'search_modifier_not_invoice_date_on' => '請求日が「:value」ではない', - 'search_modifier_invoice_date_before' => '請求日が「:value」以前', - 'search_modifier_invoice_date_after' => '請求日が「:value」以降', - 'search_modifier_created_at_on' => '「:value」に作成された取引', - 'search_modifier_not_created_at_on' => '取引作成が「:value」ではない', - 'search_modifier_created_at_before' => '「:value」以前に作成された取引', - 'search_modifier_created_at_after' => '「:value」以降に作成された取引', - 'search_modifier_updated_at_on' => '取引が「:value」に更新', - 'search_modifier_not_updated_at_on' => '取引更新が「:value」ではない', - 'search_modifier_updated_at_before' => '取引が「:value」以前に更新', - 'search_modifier_updated_at_after' => '取引が「:value」以降に更新', + 'search_modifier_updated_at_on_year' => '取引の最終更新が「:value」', + 'search_modifier_updated_at_on_month' => '取引の最終更新が「:value」', + 'search_modifier_updated_at_on_day' => '取引の最終更新が「:value」', + 'search_modifier_not_updated_at_on_year' => '取引の最終更新が「:value」年ではない', + 'search_modifier_not_updated_at_on_month' => '取引の最終更新が「:value」月ではない', + 'search_modifier_not_updated_at_on_day' => '取引の最終更新が「:value」日ではない', + 'search_modifier_updated_at_before_year' => '取引の最終更新が「:value」以前', + 'search_modifier_updated_at_before_month' => '取引の最終更新が「:value」以前', + 'search_modifier_updated_at_before_day' => '取引の最終更新が「:value」以前', + 'search_modifier_updated_at_after_year' => '取引の最終更新が「:value」以降', + 'search_modifier_updated_at_after_month' => '取引の最終更新が「:value」以降', + 'search_modifier_updated_at_after_day' => '取引の最終更新が「:value」以降', + 'search_modifier_created_at_on_year' => '取引の作成が「:value」', + 'search_modifier_created_at_on_month' => '取引の作成が「:value」', + 'search_modifier_created_at_on_day' => '取引の作成が「:value」', + 'search_modifier_not_created_at_on_year' => '取引の作成が「:value」年ではない', + 'search_modifier_not_created_at_on_month' => '取引の作成が「:value」月ではない', + 'search_modifier_not_created_at_on_day' => '取引の作成が「:value」日ではない', + 'search_modifier_created_at_before_year' => '取引の作成が「:value」以前', + 'search_modifier_created_at_before_month' => '取引の作成が「:value」以前', + 'search_modifier_created_at_before_day' => '取引の最終更新が「:value」以前', + 'search_modifier_created_at_after_year' => '取引の作成が「:value」以降', + 'search_modifier_created_at_after_month' => '取引の作成が「:value」以降', + 'search_modifier_created_at_after_day' => '取引の作成が「:value」以降', + 'search_modifier_interest_date_before' => '利息日が「:value」以前', + 'search_modifier_interest_date_after' => '利息日が「:value」以降', + 'search_modifier_book_date_on' => '記帳日が「:value」', + 'search_modifier_not_book_date_on' => '記帳日が「:value」ではない', + 'search_modifier_book_date_before' => '記帳日が「:value」以前', + 'search_modifier_book_date_after' => '記帳日が「:value」以降', + 'search_modifier_process_date_on' => '取引処理日が「:value」', + 'search_modifier_not_process_date_on' => '取引処理日が「:value」 ではない', + 'search_modifier_process_date_before' => '取引処理日が「:value」以前', + 'search_modifier_process_date_after' => '取引処理日が「:value」以降', + 'search_modifier_due_date_on' => '取引期限が「:value」', + 'search_modifier_not_due_date_on' => '取引期限が「:value」ではない', + 'search_modifier_due_date_before' => '取引期限が「:value」以前', + 'search_modifier_due_date_after' => '取引期限が「:value」以降', + 'search_modifier_payment_date_on' => '支払日が「:value」', + 'search_modifier_not_payment_date_on' => '支払日が「:value」ではない', + 'search_modifier_payment_date_before' => '支払日が「:value」以前', + 'search_modifier_payment_date_after' => '支払日が「:value」以降', + 'search_modifier_invoice_date_on' => '請求日が「:value」', + 'search_modifier_not_invoice_date_on' => '請求日が「:value」ではない', + 'search_modifier_invoice_date_before' => '請求日が「:value」以前', + 'search_modifier_invoice_date_after' => '請求日が「:value」以降', + 'search_modifier_created_at_on' => '「:value」に作成された取引', + 'search_modifier_not_created_at_on' => '取引作成が「:value」ではない', + 'search_modifier_created_at_before' => '「:value」以前に作成された取引', + 'search_modifier_created_at_after' => '「:value」以降に作成された取引', + 'search_modifier_updated_at_on' => '取引が「:value」に更新', + 'search_modifier_not_updated_at_on' => '取引更新が「:value」ではない', + 'search_modifier_updated_at_before' => '取引が「:value」以前に更新', + 'search_modifier_updated_at_after' => '取引が「:value」以降に更新', - 'search_modifier_attachment_name_is' => 'いずれかの添付ファイル名が「:value」', - 'search_modifier_attachment_name_contains' => 'いずれかの添付ファイル名に「:value」を含む', - 'search_modifier_attachment_name_starts' => 'いずれかの添付ファイル名が「:value」で始まる', - 'search_modifier_attachment_name_ends' => 'いずれかの添付ファイル名が「:value」で終わる', - 'search_modifier_attachment_notes_are' => 'いずれかの添付ファイルの備考が「:value」', - 'search_modifier_attachment_notes_contains' => 'いずれかの添付ファイルの備考に「:value」を含む', - 'search_modifier_attachment_notes_starts' => 'いずれかの添付ファイルの備考が「:value」で始まる', - 'search_modifier_attachment_notes_ends' => 'いずれかの添付ファイルの備考が「:value」で終わる', - 'search_modifier_not_attachment_name_is' => '添付ファイル名が「:value」ではない', - 'search_modifier_not_attachment_name_contains' => '添付ファイル名が「:value」を含まない', - 'search_modifier_not_attachment_name_starts' => '添付ファイル名が「:value」で始まらない', - 'search_modifier_not_attachment_name_ends' => '添付ファイル名が「:value」で終わらない', - 'search_modifier_not_attachment_notes_are' => '添付ファイルの備考が「:value」ではない', - 'search_modifier_not_attachment_notes_contains' => '添付ファイルの備考が「:value」を含まない', - 'search_modifier_not_attachment_notes_starts' => '添付ファイルの備考が「:value」で始まらない', - 'search_modifier_not_attachment_notes_ends' => '添付ファイルの備考が「:value」で終わらない', - 'search_modifier_sepa_ct_is' => 'SEPA CTが「:value」', - 'update_rule_from_query' => '検索クエリからルール「:rule」を更新', - 'create_rule_from_query' => '検索クエリから新しいルールを作成', - 'rule_from_search_words' => 'ルールエンジンは「:string」をうまく扱えません。 検索クエリに提案されたルールは、異なる結果をもたらす可能性があります。ルールのトリガーは慎重に検証してください。', + 'search_modifier_attachment_name_is' => 'いずれかの添付ファイル名が「:value」', + 'search_modifier_attachment_name_contains' => 'いずれかの添付ファイル名に「:value」を含む', + 'search_modifier_attachment_name_starts' => 'いずれかの添付ファイル名が「:value」で始まる', + 'search_modifier_attachment_name_ends' => 'いずれかの添付ファイル名が「:value」で終わる', + 'search_modifier_attachment_notes_are' => 'いずれかの添付ファイルの備考が「:value」', + 'search_modifier_attachment_notes_contains' => 'いずれかの添付ファイルの備考に「:value」を含む', + 'search_modifier_attachment_notes_starts' => 'いずれかの添付ファイルの備考が「:value」で始まる', + 'search_modifier_attachment_notes_ends' => 'いずれかの添付ファイルの備考が「:value」で終わる', + 'search_modifier_not_attachment_name_is' => '添付ファイル名が「:value」ではない', + 'search_modifier_not_attachment_name_contains' => '添付ファイル名が「:value」を含まない', + 'search_modifier_not_attachment_name_starts' => '添付ファイル名が「:value」で始まらない', + 'search_modifier_not_attachment_name_ends' => '添付ファイル名が「:value」で終わらない', + 'search_modifier_not_attachment_notes_are' => '添付ファイルの備考が「:value」ではない', + 'search_modifier_not_attachment_notes_contains' => '添付ファイルの備考が「:value」を含まない', + 'search_modifier_not_attachment_notes_starts' => '添付ファイルの備考が「:value」で始まらない', + 'search_modifier_not_attachment_notes_ends' => '添付ファイルの備考が「:value」で終わらない', + 'search_modifier_sepa_ct_is' => 'SEPA CTが「:value」', + 'update_rule_from_query' => '検索クエリからルール「:rule」を更新', + 'create_rule_from_query' => '検索クエリから新しいルールを作成', + 'rule_from_search_words' => 'ルールエンジンは「:string」をうまく扱えません。 検索クエリに提案されたルールは、異なる結果をもたらす可能性があります。ルールのトリガーは慎重に検証してください。', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => '次の修飾子も検索に適用されます:', - 'general_search_error' => '検索中にエラーが発生しました。詳細はログファイルを確認してください。', - 'search_box' => '検索', - 'search_box_intro' => 'Firefly III の検索へようこそ。テキストフィールドに検索クエリを入力します。 検索はかなり奥が深いため、ヘルプを確認してください。', - 'search_error' => '検索エラー', - 'search_searching' => '検索中...', - 'search_results' => '検索結果', + 'modifiers_applies_are' => '次の修飾子も検索に適用されます:', + 'general_search_error' => '検索中にエラーが発生しました。詳細はログファイルを確認してください。', + 'search_box' => '検索', + 'search_box_intro' => 'Firefly III の検索へようこそ。テキストフィールドに検索クエリを入力します。 検索はかなり奥が深いため、ヘルプを確認してください。', + 'search_error' => '検索エラー', + 'search_searching' => '検索中...', + 'search_results' => '検索結果', // repeat frequencies: - 'repeat_freq_yearly' => '毎年', - 'repeat_freq_half-year' => '半年ごと', - 'repeat_freq_quarterly' => '四半期ごと', - 'repeat_freq_monthly' => '毎月', - 'repeat_freq_weekly' => '週毎', - 'repeat_freq_daily' => '毎日', - 'daily' => '毎日', - 'weekly' => '週毎', - 'quarterly' => '四半期ごと', - 'half-year' => '半年ごと', - 'yearly' => '毎年', + 'repeat_freq_yearly' => '毎年', + 'repeat_freq_half-year' => '半年ごと', + 'repeat_freq_quarterly' => '四半期ごと', + 'repeat_freq_monthly' => '毎月', + 'repeat_freq_weekly' => '週毎', + 'repeat_freq_daily' => '毎日', + 'daily' => '毎日', + 'weekly' => '週毎', + 'quarterly' => '四半期ごと', + 'half-year' => '半年ごと', + 'yearly' => '毎年', // rules - 'is_not_rule_trigger' => '否定', - 'cannot_fire_inactive_rules' => '無効なルールは実行できません。', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'ルール', - 'rule_name' => 'ルールの名前', - 'rule_triggers' => 'ルールがいつ発動するか', - 'rule_actions' => 'ルールは何をするか', - 'new_rule' => '新しいルール', - 'new_rule_group' => '新しいルールグループ', - 'rule_priority_up' => 'ルールの優先度を上げる', - 'rule_priority_down' => 'ルールの優先度を下げる', - 'make_new_rule_group' => '新しいルールグループを作成', - 'store_new_rule_group' => '新しいルールグループを保存', - 'created_new_rule_group' => '新しいルールグループ「:title」が保存されました!', - 'updated_rule_group' => 'ルールグループ「:title」を更新しました。', - 'edit_rule_group' => 'ルールグループ「:title」を編集', - 'duplicate_rule' => 'ルール「:title」を複製', - 'rule_copy_of' => '「:title」のコピー', - 'duplicated_rule' => 'ルール「:title」を「:newTitle」として複製されました', - 'delete_rule_group' => 'ルールグループ「:title」を削除', - 'deleted_rule_group' => '削除されたルールグループ「:title」', - 'update_rule_group' => 'ルールグループを更新', - 'no_rules_in_group' => 'このグループにはルールがありません', - 'move_rule_group_up' => 'ルールグループを上に移動', - 'move_rule_group_down' => 'ルールグループを下に移動', - 'save_rules_by_moving' => '別のルールグループに移動して、このルールを保存します。|これらのルールを別のルールグループに移動して保存します。', - 'make_new_rule' => 'ルールグループ「:title」に新しいルールを作成', - 'make_new_rule_no_group' => '新しいルールを作成', - 'instructions_rule_from_bill' => '新しい請求「:name」に取引を紐付けるため Firefly III は、保存済みのすべての取引を自動的にチェックするルールを作成できます。 以下の詳細情報を確認し、Firefly III が新しい請求と取引を自動的に紐付けるルールを保存してください。', - 'instructions_rule_from_journal' => '取引に基づいてルールを作成します。以下のフォームを入力し送信してください。', - 'rule_is_strict' => '厳密なルール', - 'rule_is_not_strict' => '非厳密ルール', - 'rule_help_stop_processing' => 'チェックすると、このグループの続くルールは実行されなくなります。', - 'rule_help_strict' => '厳密モードでアクションが実行されるには、すべてのトリガーが適合しなければいけません。非厳密モードでは、いずれかのトリガーだけで済みます。', - 'rule_help_active' => '無効なルールは決して実行されません。', - 'stored_new_rule' => '新しいルール「:title」を保存しました', - 'deleted_rule' => 'ルール「:title」を削除しました', - 'store_new_rule' => '新しいルールを保存', - 'updated_rule' => 'ルール「:title」を更新しました', - 'default_rule_group_name' => 'デフォルトルール', - 'default_rule_group_description' => 'グループに属しないルールです。', - 'trigger' => 'トリガー', - 'trigger_value' => '発動する値', - 'stop_processing_other_triggers' => '他のトリガーの処理を停止する', - 'add_rule_trigger' => '新しいトリガーを追加', - 'action' => '操作', - 'action_value' => 'アクションの値', - 'stop_executing_other_actions' => '他のアクションの実行を停止する', - 'add_rule_action' => '新しい操作を追加', - 'edit_rule' => 'ルール ":title" を編集', - 'delete_rule' => 'ルール ":title" を削除', - 'update_rule' => 'ルールを更新', - 'test_rule_triggers' => '一致する取引を見る', - 'warning_no_matching_transactions' => '一致する取引は見つかりませんでした。', - 'warning_no_valid_triggers' => '有効なトリガーがありません。', - 'apply_rule_selection' => 'ルール「:title」を任意の取引に適用する', - 'apply_rule_selection_intro' => '「:title」のようなルールは通常、新規作成または更新された取引にのみ適用されます。しかし Firefly III に既存の取引に適用するように指示できます。これは、ルールを更新し、既存の取引に変更を適用する必要がある場合に便利です。', - 'include_transactions_from_accounts' => 'これらの口座からの取引を含める', - 'include' => '含めるか', - 'applied_rule_selection' => '{0} 選択した取引の中でルール「:title」によって変更されたものはありません。|[1] 選択した取引の中の1件が、ルール「:title」によって変更されました。|[2,*] 選択した取引の中の:count件が、ルール「:title」によって変更されました。', - 'execute' => '実行', - 'apply_rule_group_selection' => 'ルールグループ「:title」を選択した取引に適用する', - 'apply_rule_group_selection_intro' => '「:title」のようなルールは通常、新規作成または更新された取引にのみ適用されます。しかし Firefly III に既存の取引に適用するように指示できます。これはルールを更新し既存の取引に変更を適用する必要がある場合に便利です。', - 'applied_rule_group_selection' => 'ルールグループ「:title」が選択した取引に適用されました。', + 'is_not_rule_trigger' => '否定', + 'cannot_fire_inactive_rules' => '無効なルールは実行できません。', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'ルール', + 'rule_name' => 'ルールの名前', + 'rule_triggers' => 'ルールがいつ発動するか', + 'rule_actions' => 'ルールは何をするか', + 'new_rule' => '新しいルール', + 'new_rule_group' => '新しいルールグループ', + 'rule_priority_up' => 'ルールの優先度を上げる', + 'rule_priority_down' => 'ルールの優先度を下げる', + 'make_new_rule_group' => '新しいルールグループを作成', + 'store_new_rule_group' => '新しいルールグループを保存', + 'created_new_rule_group' => '新しいルールグループ「:title」が保存されました!', + 'updated_rule_group' => 'ルールグループ「:title」を更新しました。', + 'edit_rule_group' => 'ルールグループ「:title」を編集', + 'duplicate_rule' => 'ルール「:title」を複製', + 'rule_copy_of' => '「:title」のコピー', + 'duplicated_rule' => 'ルール「:title」を「:newTitle」として複製されました', + 'delete_rule_group' => 'ルールグループ「:title」を削除', + 'deleted_rule_group' => '削除されたルールグループ「:title」', + 'update_rule_group' => 'ルールグループを更新', + 'no_rules_in_group' => 'このグループにはルールがありません', + 'move_rule_group_up' => 'ルールグループを上に移動', + 'move_rule_group_down' => 'ルールグループを下に移動', + 'save_rules_by_moving' => '別のルールグループに移動して、このルールを保存します。|これらのルールを別のルールグループに移動して保存します。', + 'make_new_rule' => 'ルールグループ「:title」に新しいルールを作成', + 'make_new_rule_no_group' => '新しいルールを作成', + 'instructions_rule_from_bill' => '新しい請求「:name」に取引を紐付けるため Firefly III は、保存済みのすべての取引を自動的にチェックするルールを作成できます。 以下の詳細情報を確認し、Firefly III が新しい請求と取引を自動的に紐付けるルールを保存してください。', + 'instructions_rule_from_journal' => '取引に基づいてルールを作成します。以下のフォームを入力し送信してください。', + 'rule_is_strict' => '厳密なルール', + 'rule_is_not_strict' => '非厳密ルール', + 'rule_help_stop_processing' => 'チェックすると、このグループの続くルールは実行されなくなります。', + 'rule_help_strict' => '厳密モードでアクションが実行されるには、すべてのトリガーが適合しなければいけません。非厳密モードでは、いずれかのトリガーだけで済みます。', + 'rule_help_active' => '無効なルールは決して実行されません。', + 'stored_new_rule' => '新しいルール「:title」を保存しました', + 'deleted_rule' => 'ルール「:title」を削除しました', + 'store_new_rule' => '新しいルールを保存', + 'updated_rule' => 'ルール「:title」を更新しました', + 'default_rule_group_name' => 'デフォルトルール', + 'default_rule_group_description' => 'グループに属しないルールです。', + 'trigger' => 'トリガー', + 'trigger_value' => '発動する値', + 'stop_processing_other_triggers' => '他のトリガーの処理を停止する', + 'add_rule_trigger' => '新しいトリガーを追加', + 'action' => '操作', + 'action_value' => 'アクションの値', + 'stop_executing_other_actions' => '他のアクションの実行を停止する', + 'add_rule_action' => '新しい操作を追加', + 'edit_rule' => 'ルール ":title" を編集', + 'delete_rule' => 'ルール ":title" を削除', + 'update_rule' => 'ルールを更新', + 'test_rule_triggers' => '一致する取引を見る', + 'warning_no_matching_transactions' => '一致する取引は見つかりませんでした。', + 'warning_no_valid_triggers' => '有効なトリガーがありません。', + 'apply_rule_selection' => 'ルール「:title」を任意の取引に適用する', + 'apply_rule_selection_intro' => '「:title」のようなルールは通常、新規作成または更新された取引にのみ適用されます。しかし Firefly III に既存の取引に適用するように指示できます。これは、ルールを更新し、既存の取引に変更を適用する必要がある場合に便利です。', + 'include_transactions_from_accounts' => 'これらの口座からの取引を含める', + 'include' => '含めるか', + 'applied_rule_selection' => '{0} 選択した取引の中でルール「:title」によって変更されたものはありません。|[1] 選択した取引の中の1件が、ルール「:title」によって変更されました。|[2,*] 選択した取引の中の:count件が、ルール「:title」によって変更されました。', + 'execute' => '実行', + 'apply_rule_group_selection' => 'ルールグループ「:title」を選択した取引に適用する', + 'apply_rule_group_selection_intro' => '「:title」のようなルールは通常、新規作成または更新された取引にのみ適用されます。しかし Firefly III に既存の取引に適用するように指示できます。これはルールを更新し既存の取引に変更を適用する必要がある場合に便利です。', + 'applied_rule_group_selection' => 'ルールグループ「:title」が選択した取引に適用されました。', // actions and triggers - 'rule_trigger_store_journal' => '取引が作成されたとき', - 'rule_trigger_update_journal' => '取引が更新されたとき', - 'rule_trigger_user_action' => 'ユーザーアクションは ":trigger_value"です。', + 'rule_trigger_store_journal' => '取引が作成されたとき', + 'rule_trigger_update_journal' => '取引が更新されたとき', + 'rule_trigger_user_action' => 'ユーザーアクションは ":trigger_value"です。', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => '引き出し口座名が...で始まる', - 'rule_trigger_source_account_starts' => '引き出し口座名が「:trigger_value」で始まる', - 'rule_trigger_source_account_ends_choice' => '引き出し口座名が…で終わる', - 'rule_trigger_source_account_ends' => '引き出し口座名が「:trigger_value」で終わる', - 'rule_trigger_source_account_is_choice' => '引き出し口座名が...', - 'rule_trigger_source_account_is' => '引き出し口座名が「:trigger_value」', - 'rule_trigger_source_account_contains_choice' => '引き出し口座名が…を含む', - 'rule_trigger_source_account_contains' => '引き出し口座名に「:trigger_value」を含む', - 'rule_trigger_account_id_choice' => 'どちらかの口座IDが…', - 'rule_trigger_account_id' => 'どちらかの口座IDが :trigger_value と一致', - 'rule_trigger_source_account_id_choice' => '引き出し口座IDが…', - 'rule_trigger_source_account_id' => '引き出し口座IDが「:trigger_value」と一致する', - 'rule_trigger_destination_account_id_choice' => '預け入れ口座IDが…', - 'rule_trigger_destination_account_id' => '預け入れ口座IDが「:trigger_value」', - 'rule_trigger_account_is_cash_choice' => 'どちらかの口座が現金', - 'rule_trigger_account_is_cash' => 'どちらかの口座が現金', - 'rule_trigger_source_is_cash_choice' => '預け入れ口座が現金口座', - 'rule_trigger_source_is_cash' => '引き出し口座が現金口座', - 'rule_trigger_destination_is_cash_choice' => '預け入れ口座が現金口座', - 'rule_trigger_destination_is_cash' => '預け入れ口座が現金口座', - 'rule_trigger_source_account_nr_starts_choice' => '引き出し口座番号/IBANが…で始まる', - 'rule_trigger_source_account_nr_starts' => '出金元口座番号/IBANが「:trigger_value」で始まる', - 'rule_trigger_source_account_nr_ends_choice' => '引き出し口座番号/IBANが…で終わる', - 'rule_trigger_source_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わる', - 'rule_trigger_source_account_nr_is_choice' => '引き出し口座番号/IBANが…', - 'rule_trigger_source_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」', - 'rule_trigger_source_account_nr_contains_choice' => '引き出し口座番号/IBANが…を含む', - 'rule_trigger_source_account_nr_contains' => '引き出し口座番号/IBANに「:trigger_value」を含む', - 'rule_trigger_destination_account_starts_choice' => '預け入れ口座名が...で始まる', - 'rule_trigger_destination_account_starts' => '預け入れ口座名が「:trigger_value」で始まる', - 'rule_trigger_destination_account_ends_choice' => '預け入れ口座名が...で終わる', - 'rule_trigger_destination_account_ends' => '預け入れ口座名が「:trigger_value」で終わる', - 'rule_trigger_destination_account_is_choice' => '預け入れ口座名が…', - 'rule_trigger_destination_account_is' => '預け入れ口座名が「:trigger_value」', - 'rule_trigger_destination_account_contains_choice' => '預け入れ口座名が...を含む', - 'rule_trigger_destination_account_contains' => '預け入れ口座名に「:trigger_value」を含む', - 'rule_trigger_destination_account_nr_starts_choice' => '預け入れ口座番号/IBANが...で始まる', - 'rule_trigger_destination_account_nr_starts' => '預け入れ口座番号/IBANが「:trigger_value」で始まる', - 'rule_trigger_destination_account_nr_ends_choice' => '預け入れ口座番号/IBANが...で終わる', - 'rule_trigger_destination_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わる', - 'rule_trigger_destination_account_nr_is_choice' => '預け入れ口座番号/IBANが…', - 'rule_trigger_destination_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」', - 'rule_trigger_destination_account_nr_contains_choice' => '預け入れ口座番号/IBANが...を含む', - 'rule_trigger_destination_account_nr_contains' => '預け入れ口座番号/IBANに「:trigger_value」を含む', - 'rule_trigger_transaction_type_choice' => '取引種別が…', - 'rule_trigger_transaction_type' => '取引種別が「:trigger_value」', - 'rule_trigger_category_is_choice' => 'カテゴリが…', - 'rule_trigger_category_is' => 'カテゴリが「:trigger_value」', - 'rule_trigger_amount_less_choice' => '金額が...以下', - 'rule_trigger_amount_less' => '金額が「:trigger_value」以下', - 'rule_trigger_amount_is_choice' => '金額が…', - 'rule_trigger_amount_is' => '金額が「:trigger_value」', - 'rule_trigger_amount_more_choice' => '金額が...以上', - 'rule_trigger_amount_more' => '金額が「:trigger_value」以上', - 'rule_trigger_description_starts_choice' => '概要が…で始まる', - 'rule_trigger_description_starts' => '概要が「:trigger_value」で始まる', - 'rule_trigger_description_ends_choice' => '概要が…で終わる', - 'rule_trigger_description_ends' => '概要が「:trigger_value」で終わる', - 'rule_trigger_description_contains_choice' => '概要に…を含む', - 'rule_trigger_description_contains' => '概要が「:trigger_value」を含む', - 'rule_trigger_description_is_choice' => '概要が…', - 'rule_trigger_description_is' => '概要が「:trigger_value」', - 'rule_trigger_date_on_choice' => '取引日が…', - 'rule_trigger_date_on' => '取引日が「:trigger_value」', - 'rule_trigger_date_before_choice' => '取引日が…より前', - 'rule_trigger_date_before' => '取引日が「:trigger_value」より前', - 'rule_trigger_date_after_choice' => '取引日が…より後', - 'rule_trigger_date_after' => '取引日が「:trigger_value」より後', - 'rule_trigger_created_at_on_choice' => '取引作成日が...', - 'rule_trigger_created_at_on' => '取引が作成が「:trigger_value」', - 'rule_trigger_updated_at_on_choice' => '取引の最終編集日が', - 'rule_trigger_updated_at_on' => '取引の最終編集が「:trigger_value」', - 'rule_trigger_budget_is_choice' => '予算が…', - 'rule_trigger_budget_is' => '予算が「:trigger_value」', - 'rule_trigger_tag_is_choice' => 'タグが...', - 'rule_trigger_tag_is' => 'タグが「:trigger_value」', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => '取引通貨が…', - 'rule_trigger_currency_is' => '取引通貨が「:trigger_value」', - 'rule_trigger_foreign_currency_is_choice' => '取引外国通貨が…', - 'rule_trigger_foreign_currency_is' => '取引外国通貨が「:trigger_value」', - 'rule_trigger_has_attachments_choice' => '次の個数以上の添付ファイルがある', - 'rule_trigger_has_attachments' => ':trigger_value個以上の添付ファイルがある', - 'rule_trigger_has_no_category_choice' => 'カテゴリなし', - 'rule_trigger_has_no_category' => 'カテゴリのない取引', - 'rule_trigger_has_any_category_choice' => '(任意の) カテゴリがある', - 'rule_trigger_has_any_category' => '一つ以上のカテゴリに属する取引', - 'rule_trigger_has_no_budget_choice' => '予算をもたない', - 'rule_trigger_has_no_budget' => '予算をもたない取引', - 'rule_trigger_has_any_budget_choice' => '予算がある取引', - 'rule_trigger_has_any_budget' => '一つ以上の予算をもつ取引', - 'rule_trigger_has_no_bill_choice' => '請求がない', - 'rule_trigger_has_no_bill' => '請求がない取引', - 'rule_trigger_has_any_bill_choice' => '請求がある', - 'rule_trigger_has_any_bill' => '一つ以上の請求がある取引', - 'rule_trigger_has_no_tag_choice' => 'タグがない', - 'rule_trigger_has_no_tag' => 'タグがない取引', - 'rule_trigger_has_any_tag_choice' => '一つ以上のタグがある', - 'rule_trigger_has_any_tag' => '一つ以上のタグがある取引', - 'rule_trigger_any_notes_choice' => '備考がある', - 'rule_trigger_any_notes' => '備考がある取引', - 'rule_trigger_no_notes_choice' => '備考がない', - 'rule_trigger_no_notes' => '備考がない取引', - 'rule_trigger_notes_is_choice' => '備考が...', - 'rule_trigger_notes_is' => '備考が「:trigger_value」', - 'rule_trigger_notes_contains_choice' => '備考が次を含む', - 'rule_trigger_notes_contains' => '備考に「:trigger_value」を含む', - 'rule_trigger_notes_starts_choice' => '備考が...で始まる', - 'rule_trigger_notes_starts' => '備考が「:trigger_value」で始まる', - 'rule_trigger_notes_ends_choice' => '備考が...で終わる', - 'rule_trigger_notes_ends' => '備考が「:trigger_value」で終わる', - 'rule_trigger_bill_is_choice' => '請求が…', - 'rule_trigger_bill_is' => '請求が「:trigger_value」', - 'rule_trigger_external_id_is_choice' => '外部 ID が…', - 'rule_trigger_external_id_is' => '外部 ID が「:trigger_value」', - 'rule_trigger_internal_reference_is_choice' => '内部参照が…', - 'rule_trigger_internal_reference_is' => '内部参照が「:trigger_value」', - 'rule_trigger_journal_id_choice' => '取引IDが…', - 'rule_trigger_journal_id' => '取引IDが「:trigger_value」', - 'rule_trigger_any_external_url' => '外部URLがある取引', - 'rule_trigger_any_external_url_choice' => '外部URLがある取引', - 'rule_trigger_any_external_id' => '外部IDがある取引', - 'rule_trigger_any_external_id_choice' => '外部IDがある取引', - 'rule_trigger_no_external_url_choice' => '取引に外部 URL がない', - 'rule_trigger_no_external_url' => '外部 URL がない取引', - 'rule_trigger_no_external_id_choice' => '外部IDがない取引', - 'rule_trigger_no_external_id' => '外部IDがない取引', - 'rule_trigger_id_choice' => '取引IDが…', - 'rule_trigger_id' => '取引IDが「:trigger_value」', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CTが...', - 'rule_trigger_sepa_ct_is' => 'SEPA CTが「:trigger_value」', + 'rule_trigger_source_account_starts_choice' => '引き出し口座名が...で始まる', + 'rule_trigger_source_account_starts' => '引き出し口座名が「:trigger_value」で始まる', + 'rule_trigger_source_account_ends_choice' => '引き出し口座名が…で終わる', + 'rule_trigger_source_account_ends' => '引き出し口座名が「:trigger_value」で終わる', + 'rule_trigger_source_account_is_choice' => '引き出し口座名が...', + 'rule_trigger_source_account_is' => '引き出し口座名が「:trigger_value」', + 'rule_trigger_source_account_contains_choice' => '引き出し口座名が…を含む', + 'rule_trigger_source_account_contains' => '引き出し口座名に「:trigger_value」を含む', + 'rule_trigger_account_id_choice' => 'どちらかの口座IDが…', + 'rule_trigger_account_id' => 'どちらかの口座IDが :trigger_value と一致', + 'rule_trigger_source_account_id_choice' => '引き出し口座IDが…', + 'rule_trigger_source_account_id' => '引き出し口座IDが「:trigger_value」と一致する', + 'rule_trigger_destination_account_id_choice' => '預け入れ口座IDが…', + 'rule_trigger_destination_account_id' => '預け入れ口座IDが「:trigger_value」', + 'rule_trigger_account_is_cash_choice' => 'どちらかの口座が現金', + 'rule_trigger_account_is_cash' => 'どちらかの口座が現金', + 'rule_trigger_source_is_cash_choice' => '預け入れ口座が現金口座', + 'rule_trigger_source_is_cash' => '引き出し口座が現金口座', + 'rule_trigger_destination_is_cash_choice' => '預け入れ口座が現金口座', + 'rule_trigger_destination_is_cash' => '預け入れ口座が現金口座', + 'rule_trigger_source_account_nr_starts_choice' => '引き出し口座番号/IBANが…で始まる', + 'rule_trigger_source_account_nr_starts' => '出金元口座番号/IBANが「:trigger_value」で始まる', + 'rule_trigger_source_account_nr_ends_choice' => '引き出し口座番号/IBANが…で終わる', + 'rule_trigger_source_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わる', + 'rule_trigger_source_account_nr_is_choice' => '引き出し口座番号/IBANが…', + 'rule_trigger_source_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」', + 'rule_trigger_source_account_nr_contains_choice' => '引き出し口座番号/IBANが…を含む', + 'rule_trigger_source_account_nr_contains' => '引き出し口座番号/IBANに「:trigger_value」を含む', + 'rule_trigger_destination_account_starts_choice' => '預け入れ口座名が...で始まる', + 'rule_trigger_destination_account_starts' => '預け入れ口座名が「:trigger_value」で始まる', + 'rule_trigger_destination_account_ends_choice' => '預け入れ口座名が...で終わる', + 'rule_trigger_destination_account_ends' => '預け入れ口座名が「:trigger_value」で終わる', + 'rule_trigger_destination_account_is_choice' => '預け入れ口座名が…', + 'rule_trigger_destination_account_is' => '預け入れ口座名が「:trigger_value」', + 'rule_trigger_destination_account_contains_choice' => '預け入れ口座名が...を含む', + 'rule_trigger_destination_account_contains' => '預け入れ口座名に「:trigger_value」を含む', + 'rule_trigger_destination_account_nr_starts_choice' => '預け入れ口座番号/IBANが...で始まる', + 'rule_trigger_destination_account_nr_starts' => '預け入れ口座番号/IBANが「:trigger_value」で始まる', + 'rule_trigger_destination_account_nr_ends_choice' => '預け入れ口座番号/IBANが...で終わる', + 'rule_trigger_destination_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わる', + 'rule_trigger_destination_account_nr_is_choice' => '預け入れ口座番号/IBANが…', + 'rule_trigger_destination_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」', + 'rule_trigger_destination_account_nr_contains_choice' => '預け入れ口座番号/IBANが...を含む', + 'rule_trigger_destination_account_nr_contains' => '預け入れ口座番号/IBANに「:trigger_value」を含む', + 'rule_trigger_transaction_type_choice' => '取引種別が…', + 'rule_trigger_transaction_type' => '取引種別が「:trigger_value」', + 'rule_trigger_category_is_choice' => 'カテゴリが…', + 'rule_trigger_category_is' => 'カテゴリが「:trigger_value」', + 'rule_trigger_amount_less_choice' => '金額が...以下', + 'rule_trigger_amount_less' => '金額が「:trigger_value」以下', + 'rule_trigger_amount_is_choice' => '金額が…', + 'rule_trigger_amount_is' => '金額が「:trigger_value」', + 'rule_trigger_amount_more_choice' => '金額が...以上', + 'rule_trigger_amount_more' => '金額が「:trigger_value」以上', + 'rule_trigger_description_starts_choice' => '概要が…で始まる', + 'rule_trigger_description_starts' => '概要が「:trigger_value」で始まる', + 'rule_trigger_description_ends_choice' => '概要が…で終わる', + 'rule_trigger_description_ends' => '概要が「:trigger_value」で終わる', + 'rule_trigger_description_contains_choice' => '概要に…を含む', + 'rule_trigger_description_contains' => '概要が「:trigger_value」を含む', + 'rule_trigger_description_is_choice' => '概要が…', + 'rule_trigger_description_is' => '概要が「:trigger_value」', + 'rule_trigger_date_on_choice' => '取引日が…', + 'rule_trigger_date_on' => '取引日が「:trigger_value」', + 'rule_trigger_date_before_choice' => '取引日が…より前', + 'rule_trigger_date_before' => '取引日が「:trigger_value」より前', + 'rule_trigger_date_after_choice' => '取引日が…より後', + 'rule_trigger_date_after' => '取引日が「:trigger_value」より後', + 'rule_trigger_created_at_on_choice' => '取引作成日が...', + 'rule_trigger_created_at_on' => '取引が作成が「:trigger_value」', + 'rule_trigger_updated_at_on_choice' => '取引の最終編集日が', + 'rule_trigger_updated_at_on' => '取引の最終編集が「:trigger_value」', + 'rule_trigger_budget_is_choice' => '予算が…', + 'rule_trigger_budget_is' => '予算が「:trigger_value」', + 'rule_trigger_tag_is_choice' => 'タグが...', + 'rule_trigger_tag_is' => 'タグが「:trigger_value」', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => '取引通貨が…', + 'rule_trigger_currency_is' => '取引通貨が「:trigger_value」', + 'rule_trigger_foreign_currency_is_choice' => '取引外国通貨が…', + 'rule_trigger_foreign_currency_is' => '取引外国通貨が「:trigger_value」', + 'rule_trigger_has_attachments_choice' => '次の個数以上の添付ファイルがある', + 'rule_trigger_has_attachments' => ':trigger_value個以上の添付ファイルがある', + 'rule_trigger_has_no_category_choice' => 'カテゴリなし', + 'rule_trigger_has_no_category' => 'カテゴリのない取引', + 'rule_trigger_has_any_category_choice' => '(任意の) カテゴリがある', + 'rule_trigger_has_any_category' => '一つ以上のカテゴリに属する取引', + 'rule_trigger_has_no_budget_choice' => '予算をもたない', + 'rule_trigger_has_no_budget' => '予算をもたない取引', + 'rule_trigger_has_any_budget_choice' => '予算がある取引', + 'rule_trigger_has_any_budget' => '一つ以上の予算をもつ取引', + 'rule_trigger_has_no_bill_choice' => '請求がない', + 'rule_trigger_has_no_bill' => '請求がない取引', + 'rule_trigger_has_any_bill_choice' => '請求がある', + 'rule_trigger_has_any_bill' => '一つ以上の請求がある取引', + 'rule_trigger_has_no_tag_choice' => 'タグがない', + 'rule_trigger_has_no_tag' => 'タグがない取引', + 'rule_trigger_has_any_tag_choice' => '一つ以上のタグがある', + 'rule_trigger_has_any_tag' => '一つ以上のタグがある取引', + 'rule_trigger_any_notes_choice' => '備考がある', + 'rule_trigger_any_notes' => '備考がある取引', + 'rule_trigger_no_notes_choice' => '備考がない', + 'rule_trigger_no_notes' => '備考がない取引', + 'rule_trigger_notes_is_choice' => '備考が...', + 'rule_trigger_notes_is' => '備考が「:trigger_value」', + 'rule_trigger_notes_contains_choice' => '備考が次を含む', + 'rule_trigger_notes_contains' => '備考に「:trigger_value」を含む', + 'rule_trigger_notes_starts_choice' => '備考が...で始まる', + 'rule_trigger_notes_starts' => '備考が「:trigger_value」で始まる', + 'rule_trigger_notes_ends_choice' => '備考が...で終わる', + 'rule_trigger_notes_ends' => '備考が「:trigger_value」で終わる', + 'rule_trigger_bill_is_choice' => '請求が…', + 'rule_trigger_bill_is' => '請求が「:trigger_value」', + 'rule_trigger_external_id_is_choice' => '外部 ID が…', + 'rule_trigger_external_id_is' => '外部 ID が「:trigger_value」', + 'rule_trigger_internal_reference_is_choice' => '内部参照が…', + 'rule_trigger_internal_reference_is' => '内部参照が「:trigger_value」', + 'rule_trigger_journal_id_choice' => '取引IDが…', + 'rule_trigger_journal_id' => '取引IDが「:trigger_value」', + 'rule_trigger_any_external_url' => '外部URLがある取引', + 'rule_trigger_any_external_url_choice' => '外部URLがある取引', + 'rule_trigger_any_external_id' => '外部IDがある取引', + 'rule_trigger_any_external_id_choice' => '外部IDがある取引', + 'rule_trigger_no_external_url_choice' => '取引に外部 URL がない', + 'rule_trigger_no_external_url' => '外部 URL がない取引', + 'rule_trigger_no_external_id_choice' => '外部IDがない取引', + 'rule_trigger_no_external_id' => '外部IDがない取引', + 'rule_trigger_id_choice' => '取引IDが…', + 'rule_trigger_id' => '取引IDが「:trigger_value」', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CTが...', + 'rule_trigger_sepa_ct_is' => 'SEPA CTが「:trigger_value」', // new values: - 'rule_trigger_user_action_choice' => 'ユーザーアクションが「:trigger_value」', - 'rule_trigger_tag_is_not_choice' => 'タグ…がない', - 'rule_trigger_tag_is_not' => 'タグ「:trigger_value」がない', - 'rule_trigger_account_is_choice' => 'どちらかの口座が…と一致する', - 'rule_trigger_account_is' => 'どちらかの口座が「:trigger_value」と一致する', - 'rule_trigger_account_contains_choice' => 'どちらかの口座が…を含む', - 'rule_trigger_account_contains' => 'どちらかの口座名に「:trigger_value」を含む', - 'rule_trigger_account_ends_choice' => 'どちらかの口座が…で終わる', - 'rule_trigger_account_ends' => 'どちらかの口座が「:trigger_value」で終わる', - 'rule_trigger_account_starts_choice' => 'どちらかの口座で…で始まる', - 'rule_trigger_account_starts' => 'どちらかの口座が「:trigger_value」で始まる', - 'rule_trigger_account_nr_is_choice' => 'どちらかの口座番号 / IBAN が…', - 'rule_trigger_account_nr_is' => 'どちらかの口座番号 / IBAN が「:trigger_value」', - 'rule_trigger_account_nr_contains_choice' => 'どちらかの口座番号 / IBAN が…を含む', - 'rule_trigger_account_nr_contains' => 'どちらかの口座番号 / IBAN に「:trigger_value」を含む', - 'rule_trigger_account_nr_ends_choice' => 'どちらかの口座番号 / IBAN が…で終わる', - 'rule_trigger_account_nr_ends' => 'どちらかの口座番号 / IBAN が「:trigger_value」で終わる', - 'rule_trigger_account_nr_starts_choice' => 'どちらかの口座番号 / IBAN が…で始まる', - 'rule_trigger_account_nr_starts' => 'どちらかの口座番号 / IBAN が「:trigger_value」で始まる', - 'rule_trigger_category_contains_choice' => 'カテゴリに…を含む', - 'rule_trigger_category_contains' => 'カテゴリに「:trigger_value」を含む', - 'rule_trigger_category_ends_choice' => 'カテゴリが…で終わる', - 'rule_trigger_category_ends' => 'カテゴリが「:trigger_value」で終わる', - 'rule_trigger_category_starts_choice' => 'カテゴリが…で始まる', - 'rule_trigger_category_starts' => 'カテゴリが「:trigger_value」で始まる', - 'rule_trigger_budget_contains_choice' => '予算名に…を含む', - 'rule_trigger_budget_contains' => '予算名に「:trigger_value」を含む', - 'rule_trigger_budget_ends_choice' => '予算名が…で終わる', - 'rule_trigger_budget_ends' => '予算名が「:trigger_value」で終わる', - 'rule_trigger_budget_starts_choice' => '予算名が…で始まる', - 'rule_trigger_budget_starts' => '予算名が「:trigger_value」で始まる', - 'rule_trigger_bill_contains_choice' => '請求名に…を含む', - 'rule_trigger_bill_contains' => '請求名に「:trigger_value」を含む', - 'rule_trigger_bill_ends_choice' => '請求名が…で終わる', - 'rule_trigger_bill_ends' => '請求名が「:trigger_value」で終わる', - 'rule_trigger_bill_starts_choice' => '請求名が…で始まる', - 'rule_trigger_bill_starts' => '請求名が「:trigger_value」で始まる', - 'rule_trigger_external_id_contains_choice' => '外部 ID が…を含む', - 'rule_trigger_external_id_contains' => '外部IDに「:trigger_value」を含む', - 'rule_trigger_external_id_ends_choice' => '外部 ID が…で終わる', - 'rule_trigger_external_id_ends' => '外部 ID が「:trigger_value」で終わる', - 'rule_trigger_external_id_starts_choice' => '外部 ID が…で始まる', - 'rule_trigger_external_id_starts' => '外部 ID が「:trigger_value」で始まる', - 'rule_trigger_internal_reference_contains_choice' => '内部参照が…を含む', - 'rule_trigger_internal_reference_contains' => '内部参照に「:trigger_value」を含む', - 'rule_trigger_internal_reference_ends_choice' => '内部参照が…で終わる', - 'rule_trigger_internal_reference_ends' => '内部参照が「:trigger_value」で終わる', - 'rule_trigger_internal_reference_starts_choice' => '内部参照が…で始まる', - 'rule_trigger_internal_reference_starts' => '内部参照が「:trigger_value」で始まる', - 'rule_trigger_external_url_is_choice' => '外部 URL が…', - 'rule_trigger_external_url_is' => '外部 URL が「:trigger_value」', - 'rule_trigger_external_url_contains_choice' => '外部 URL に…を含む', - 'rule_trigger_external_url_contains' => '外部 URLに「:trigger_value」を含む', - 'rule_trigger_external_url_ends_choice' => '外部 URL が…で終わる', - 'rule_trigger_external_url_ends' => '外部 URL が「:trigger_value」で終わる', - 'rule_trigger_external_url_starts_choice' => '外部 URL が…で始まる', - 'rule_trigger_external_url_starts' => '外部 ID が「:trigger_value」で始まる', - 'rule_trigger_has_no_attachments_choice' => '添付ファイルなし', - 'rule_trigger_has_no_attachments' => '添付ファイルがない取引', - 'rule_trigger_recurrence_id_choice' => '定期的な取引 ID が…', - 'rule_trigger_recurrence_id' => '定期的な取引IDが「:trigger_value」', - 'rule_trigger_interest_date_on_choice' => '利息日が…', - 'rule_trigger_interest_date_on' => '利息日が「:trigger_value」', - 'rule_trigger_interest_date_before_choice' => '利息日が…より前', - 'rule_trigger_interest_date_before' => '利息日が「:trigger_value」より前', - 'rule_trigger_interest_date_after_choice' => '利息日が…より後', - 'rule_trigger_interest_date_after' => '利息日が「:trigger_value」より後', - 'rule_trigger_book_date_on_choice' => '記帳日が…', - 'rule_trigger_book_date_on' => '記帳日が「:trigger_value」', - 'rule_trigger_book_date_before_choice' => '記帳日が…より前', - 'rule_trigger_book_date_before' => '記帳日が「:trigger_value」より前', - 'rule_trigger_book_date_after_choice' => '記帳日が…より後', - 'rule_trigger_book_date_after' => '記帳日が「:trigger_value」より後', - 'rule_trigger_process_date_on_choice' => '処理日が…', - 'rule_trigger_process_date_on' => '処理日が「:trigger_value」', - 'rule_trigger_process_date_before_choice' => '処理日が…より前', - 'rule_trigger_process_date_before' => '処理日が「:trigger_value」より前', - 'rule_trigger_process_date_after_choice' => '処理日が…より後', - 'rule_trigger_process_date_after' => '処理日が「:trigger_value」より後', - 'rule_trigger_due_date_on_choice' => '支払い期日が...', - 'rule_trigger_due_date_on' => '支払い期日が:trigger_value', - 'rule_trigger_due_date_before_choice' => '支払い期日が…より前', - 'rule_trigger_due_date_before' => '支払い期日が「:trigger_value」', - 'rule_trigger_due_date_after_choice' => '支払い期日が...より後', - 'rule_trigger_due_date_after' => '支払い期日が「:trigger_value」より後', - 'rule_trigger_payment_date_on_choice' => '支払日が…', - 'rule_trigger_payment_date_on' => '支払日が「:trigger_value」', - 'rule_trigger_payment_date_before_choice' => '支払日が…より前', - 'rule_trigger_payment_date_before' => '支払日が「:trigger_value」より前', - 'rule_trigger_payment_date_after_choice' => '支払日が…より後', - 'rule_trigger_payment_date_after' => '支払日が「:trigger_value」より後', - 'rule_trigger_invoice_date_on_choice' => '請求日が…', - 'rule_trigger_invoice_date_on' => '請求日が「:trigger_value」', - 'rule_trigger_invoice_date_before_choice' => '請求日が…より前', - 'rule_trigger_invoice_date_before' => '請求日が「:trigger_value」より前', - 'rule_trigger_invoice_date_after_choice' => '請求日が…より後', - 'rule_trigger_invoice_date_after' => '請求日が「:trigger_value」より後', - 'rule_trigger_created_at_before_choice' => '取引が…より前に作成された', - 'rule_trigger_created_at_before' => '取引が「:trigger_value」より前に作成された', - 'rule_trigger_created_at_after_choice' => '取引が…より後に作成された', - 'rule_trigger_created_at_after' => '取引が「:trigger_value」より後に作成された', - 'rule_trigger_updated_at_before_choice' => '取引が…より前に更新された', - 'rule_trigger_updated_at_before' => '取引が「:trigger_value」より前に更新された', - 'rule_trigger_updated_at_after_choice' => '取引が…より後に更新された', - 'rule_trigger_updated_at_after' => '取引が「:trigger_value」より後に更新された', - 'rule_trigger_foreign_amount_is_choice' => '外貨金額が…', - 'rule_trigger_foreign_amount_is' => '外貨金額が「:trigger_value」と一致する', - 'rule_trigger_foreign_amount_less_choice' => '外貨金額が…より小さい', - 'rule_trigger_foreign_amount_less' => '外貨金額が「:trigger_value」より小さい', - 'rule_trigger_foreign_amount_more_choice' => '外貨金額が…より大きい', - 'rule_trigger_foreign_amount_more' => '外貨金額が「:trigger_value」より大きい', - 'rule_trigger_attachment_name_is_choice' => '添付ファイル名が…', - 'rule_trigger_attachment_name_is' => '添付ファイル名が「:trigger_value」', - 'rule_trigger_attachment_name_contains_choice' => '添付ファイル名に…を含む', - 'rule_trigger_attachment_name_contains' => 'いずれかの添付ファイル名に「:trigger_value」を含む', - 'rule_trigger_attachment_name_starts_choice' => 'いずれかの添付ファイル名が…で始まる', - 'rule_trigger_attachment_name_starts' => 'いずれかの添付ファイル名が「:trigger_value」で始まる', - 'rule_trigger_attachment_name_ends_choice' => '添付ファイル名が…で終わる', - 'rule_trigger_attachment_name_ends' => '添付ファイル名が「:trigger_value」で終わる', - 'rule_trigger_attachment_notes_are_choice' => 'いずれかの添付ファイル備考が…', - 'rule_trigger_attachment_notes_are' => 'いずれかの添付ファイル備考が「:trigger_value」', - 'rule_trigger_attachment_notes_contains_choice' => 'いずれかの添付ファイル備考が…を含む', - 'rule_trigger_attachment_notes_contains' => 'いずれかの添付ファイル備考に「:trigger_value」を含む', - 'rule_trigger_attachment_notes_starts_choice' => 'いずれかの添付ファイル備考が…で始まる', - 'rule_trigger_attachment_notes_starts' => 'いずれかの添付ファイル備考が「:trigger_value」で始まる', - 'rule_trigger_attachment_notes_ends_choice' => 'いずれかの添付ファイル備考が…で終わる', - 'rule_trigger_attachment_notes_ends' => 'いずれかの添付ファイル備考が「:trigger_value」で終わる', - 'rule_trigger_reconciled_choice' => '照合済みの取引', - 'rule_trigger_reconciled' => '照合済みの取引', - 'rule_trigger_exists_choice' => 'すべてのトランザクションが一致(!)', - 'rule_trigger_exists' => 'すべての取引が一致', + 'rule_trigger_user_action_choice' => 'ユーザーアクションが「:trigger_value」', + 'rule_trigger_tag_is_not_choice' => 'タグ…がない', + 'rule_trigger_tag_is_not' => 'タグ「:trigger_value」がない', + 'rule_trigger_account_is_choice' => 'どちらかの口座が…と一致する', + 'rule_trigger_account_is' => 'どちらかの口座が「:trigger_value」と一致する', + 'rule_trigger_account_contains_choice' => 'どちらかの口座が…を含む', + 'rule_trigger_account_contains' => 'どちらかの口座名に「:trigger_value」を含む', + 'rule_trigger_account_ends_choice' => 'どちらかの口座が…で終わる', + 'rule_trigger_account_ends' => 'どちらかの口座が「:trigger_value」で終わる', + 'rule_trigger_account_starts_choice' => 'どちらかの口座で…で始まる', + 'rule_trigger_account_starts' => 'どちらかの口座が「:trigger_value」で始まる', + 'rule_trigger_account_nr_is_choice' => 'どちらかの口座番号 / IBAN が…', + 'rule_trigger_account_nr_is' => 'どちらかの口座番号 / IBAN が「:trigger_value」', + 'rule_trigger_account_nr_contains_choice' => 'どちらかの口座番号 / IBAN が…を含む', + 'rule_trigger_account_nr_contains' => 'どちらかの口座番号 / IBAN に「:trigger_value」を含む', + 'rule_trigger_account_nr_ends_choice' => 'どちらかの口座番号 / IBAN が…で終わる', + 'rule_trigger_account_nr_ends' => 'どちらかの口座番号 / IBAN が「:trigger_value」で終わる', + 'rule_trigger_account_nr_starts_choice' => 'どちらかの口座番号 / IBAN が…で始まる', + 'rule_trigger_account_nr_starts' => 'どちらかの口座番号 / IBAN が「:trigger_value」で始まる', + 'rule_trigger_category_contains_choice' => 'カテゴリに…を含む', + 'rule_trigger_category_contains' => 'カテゴリに「:trigger_value」を含む', + 'rule_trigger_category_ends_choice' => 'カテゴリが…で終わる', + 'rule_trigger_category_ends' => 'カテゴリが「:trigger_value」で終わる', + 'rule_trigger_category_starts_choice' => 'カテゴリが…で始まる', + 'rule_trigger_category_starts' => 'カテゴリが「:trigger_value」で始まる', + 'rule_trigger_budget_contains_choice' => '予算名に…を含む', + 'rule_trigger_budget_contains' => '予算名に「:trigger_value」を含む', + 'rule_trigger_budget_ends_choice' => '予算名が…で終わる', + 'rule_trigger_budget_ends' => '予算名が「:trigger_value」で終わる', + 'rule_trigger_budget_starts_choice' => '予算名が…で始まる', + 'rule_trigger_budget_starts' => '予算名が「:trigger_value」で始まる', + 'rule_trigger_bill_contains_choice' => '請求名に…を含む', + 'rule_trigger_bill_contains' => '請求名に「:trigger_value」を含む', + 'rule_trigger_bill_ends_choice' => '請求名が…で終わる', + 'rule_trigger_bill_ends' => '請求名が「:trigger_value」で終わる', + 'rule_trigger_bill_starts_choice' => '請求名が…で始まる', + 'rule_trigger_bill_starts' => '請求名が「:trigger_value」で始まる', + 'rule_trigger_external_id_contains_choice' => '外部 ID が…を含む', + 'rule_trigger_external_id_contains' => '外部IDに「:trigger_value」を含む', + 'rule_trigger_external_id_ends_choice' => '外部 ID が…で終わる', + 'rule_trigger_external_id_ends' => '外部 ID が「:trigger_value」で終わる', + 'rule_trigger_external_id_starts_choice' => '外部 ID が…で始まる', + 'rule_trigger_external_id_starts' => '外部 ID が「:trigger_value」で始まる', + 'rule_trigger_internal_reference_contains_choice' => '内部参照が…を含む', + 'rule_trigger_internal_reference_contains' => '内部参照に「:trigger_value」を含む', + 'rule_trigger_internal_reference_ends_choice' => '内部参照が…で終わる', + 'rule_trigger_internal_reference_ends' => '内部参照が「:trigger_value」で終わる', + 'rule_trigger_internal_reference_starts_choice' => '内部参照が…で始まる', + 'rule_trigger_internal_reference_starts' => '内部参照が「:trigger_value」で始まる', + 'rule_trigger_external_url_is_choice' => '外部 URL が…', + 'rule_trigger_external_url_is' => '外部 URL が「:trigger_value」', + 'rule_trigger_external_url_contains_choice' => '外部 URL に…を含む', + 'rule_trigger_external_url_contains' => '外部 URLに「:trigger_value」を含む', + 'rule_trigger_external_url_ends_choice' => '外部 URL が…で終わる', + 'rule_trigger_external_url_ends' => '外部 URL が「:trigger_value」で終わる', + 'rule_trigger_external_url_starts_choice' => '外部 URL が…で始まる', + 'rule_trigger_external_url_starts' => '外部 ID が「:trigger_value」で始まる', + 'rule_trigger_has_no_attachments_choice' => '添付ファイルなし', + 'rule_trigger_has_no_attachments' => '添付ファイルがない取引', + 'rule_trigger_recurrence_id_choice' => '定期的な取引 ID が…', + 'rule_trigger_recurrence_id' => '定期的な取引IDが「:trigger_value」', + 'rule_trigger_interest_date_on_choice' => '利息日が…', + 'rule_trigger_interest_date_on' => '利息日が「:trigger_value」', + 'rule_trigger_interest_date_before_choice' => '利息日が…より前', + 'rule_trigger_interest_date_before' => '利息日が「:trigger_value」より前', + 'rule_trigger_interest_date_after_choice' => '利息日が…より後', + 'rule_trigger_interest_date_after' => '利息日が「:trigger_value」より後', + 'rule_trigger_book_date_on_choice' => '記帳日が…', + 'rule_trigger_book_date_on' => '記帳日が「:trigger_value」', + 'rule_trigger_book_date_before_choice' => '記帳日が…より前', + 'rule_trigger_book_date_before' => '記帳日が「:trigger_value」より前', + 'rule_trigger_book_date_after_choice' => '記帳日が…より後', + 'rule_trigger_book_date_after' => '記帳日が「:trigger_value」より後', + 'rule_trigger_process_date_on_choice' => '処理日が…', + 'rule_trigger_process_date_on' => '処理日が「:trigger_value」', + 'rule_trigger_process_date_before_choice' => '処理日が…より前', + 'rule_trigger_process_date_before' => '処理日が「:trigger_value」より前', + 'rule_trigger_process_date_after_choice' => '処理日が…より後', + 'rule_trigger_process_date_after' => '処理日が「:trigger_value」より後', + 'rule_trigger_due_date_on_choice' => '支払い期日が...', + 'rule_trigger_due_date_on' => '支払い期日が:trigger_value', + 'rule_trigger_due_date_before_choice' => '支払い期日が…より前', + 'rule_trigger_due_date_before' => '支払い期日が「:trigger_value」', + 'rule_trigger_due_date_after_choice' => '支払い期日が...より後', + 'rule_trigger_due_date_after' => '支払い期日が「:trigger_value」より後', + 'rule_trigger_payment_date_on_choice' => '支払日が…', + 'rule_trigger_payment_date_on' => '支払日が「:trigger_value」', + 'rule_trigger_payment_date_before_choice' => '支払日が…より前', + 'rule_trigger_payment_date_before' => '支払日が「:trigger_value」より前', + 'rule_trigger_payment_date_after_choice' => '支払日が…より後', + 'rule_trigger_payment_date_after' => '支払日が「:trigger_value」より後', + 'rule_trigger_invoice_date_on_choice' => '請求日が…', + 'rule_trigger_invoice_date_on' => '請求日が「:trigger_value」', + 'rule_trigger_invoice_date_before_choice' => '請求日が…より前', + 'rule_trigger_invoice_date_before' => '請求日が「:trigger_value」より前', + 'rule_trigger_invoice_date_after_choice' => '請求日が…より後', + 'rule_trigger_invoice_date_after' => '請求日が「:trigger_value」より後', + 'rule_trigger_created_at_before_choice' => '取引が…より前に作成された', + 'rule_trigger_created_at_before' => '取引が「:trigger_value」より前に作成された', + 'rule_trigger_created_at_after_choice' => '取引が…より後に作成された', + 'rule_trigger_created_at_after' => '取引が「:trigger_value」より後に作成された', + 'rule_trigger_updated_at_before_choice' => '取引が…より前に更新された', + 'rule_trigger_updated_at_before' => '取引が「:trigger_value」より前に更新された', + 'rule_trigger_updated_at_after_choice' => '取引が…より後に更新された', + 'rule_trigger_updated_at_after' => '取引が「:trigger_value」より後に更新された', + 'rule_trigger_foreign_amount_is_choice' => '外貨金額が…', + 'rule_trigger_foreign_amount_is' => '外貨金額が「:trigger_value」と一致する', + 'rule_trigger_foreign_amount_less_choice' => '外貨金額が…より小さい', + 'rule_trigger_foreign_amount_less' => '外貨金額が「:trigger_value」より小さい', + 'rule_trigger_foreign_amount_more_choice' => '外貨金額が…より大きい', + 'rule_trigger_foreign_amount_more' => '外貨金額が「:trigger_value」より大きい', + 'rule_trigger_attachment_name_is_choice' => '添付ファイル名が…', + 'rule_trigger_attachment_name_is' => '添付ファイル名が「:trigger_value」', + 'rule_trigger_attachment_name_contains_choice' => '添付ファイル名に…を含む', + 'rule_trigger_attachment_name_contains' => 'いずれかの添付ファイル名に「:trigger_value」を含む', + 'rule_trigger_attachment_name_starts_choice' => 'いずれかの添付ファイル名が…で始まる', + 'rule_trigger_attachment_name_starts' => 'いずれかの添付ファイル名が「:trigger_value」で始まる', + 'rule_trigger_attachment_name_ends_choice' => '添付ファイル名が…で終わる', + 'rule_trigger_attachment_name_ends' => '添付ファイル名が「:trigger_value」で終わる', + 'rule_trigger_attachment_notes_are_choice' => 'いずれかの添付ファイル備考が…', + 'rule_trigger_attachment_notes_are' => 'いずれかの添付ファイル備考が「:trigger_value」', + 'rule_trigger_attachment_notes_contains_choice' => 'いずれかの添付ファイル備考が…を含む', + 'rule_trigger_attachment_notes_contains' => 'いずれかの添付ファイル備考に「:trigger_value」を含む', + 'rule_trigger_attachment_notes_starts_choice' => 'いずれかの添付ファイル備考が…で始まる', + 'rule_trigger_attachment_notes_starts' => 'いずれかの添付ファイル備考が「:trigger_value」で始まる', + 'rule_trigger_attachment_notes_ends_choice' => 'いずれかの添付ファイル備考が…で終わる', + 'rule_trigger_attachment_notes_ends' => 'いずれかの添付ファイル備考が「:trigger_value」で終わる', + 'rule_trigger_reconciled_choice' => '照合済みの取引', + 'rule_trigger_reconciled' => '照合済みの取引', + 'rule_trigger_exists_choice' => 'すべてのトランザクションが一致(!)', + 'rule_trigger_exists' => 'すべての取引が一致', // more values for new types: - 'rule_trigger_not_account_id' => '口座IDが「:trigger_value」ではない', - 'rule_trigger_not_source_account_id' => '引き出し口座IDが「:trigger_value」ではない', - 'rule_trigger_not_destination_account_id' => '預け入れ口座IDが「:trigger_value」ではない', - 'rule_trigger_not_transaction_type' => '取引種別が「:trigger_value」ではない', - 'rule_trigger_not_tag_is' => 'タグが「:trigger_value」ではない', - 'rule_trigger_not_tag_is_not' => 'タグが「:trigger_value」', - 'rule_trigger_not_description_is' => '概要が「:trigger_value」ではない', - 'rule_trigger_not_description_contains' => '概要がない', - 'rule_trigger_not_description_ends' => '概要が「:trigger_value」で終わらない', - 'rule_trigger_not_description_starts' => '概要が「:trigger_value」で始まらない', - 'rule_trigger_not_notes_is' => '備考が「:trigger_value」ではない', - 'rule_trigger_not_notes_contains' => '備考に「:trigger_value」を含まない', - 'rule_trigger_not_notes_ends' => '備考が「:trigger_value」で終わらない', - 'rule_trigger_not_notes_starts' => '備考が「:trigger_value」で始まらない', - 'rule_trigger_not_source_account_is' => '引き出し口座名が「:trigger_value」ではない', - 'rule_trigger_not_source_account_contains' => '引き出し口座名が「:trigger_value」を含まない', - 'rule_trigger_not_source_account_ends' => '引き出し口座名が「:trigger_value」で終わらない', - 'rule_trigger_not_source_account_starts' => '引き出し口座名が「:trigger_value」で始まらない', - 'rule_trigger_not_source_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」ではない', - 'rule_trigger_not_source_account_nr_contains' => '引き出し口座番号/IBANが「:trigger_value」を含まない', - 'rule_trigger_not_source_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わらない', - 'rule_trigger_not_source_account_nr_starts' => '引き出し口座番号/IBANが「:trigger_value」で始まらない', - 'rule_trigger_not_destination_account_is' => '預け入れ口座名が「:trigger_value」ではない', - 'rule_trigger_not_destination_account_contains' => '預け入れ口座名が「:trigger_value」を含まない', - 'rule_trigger_not_destination_account_ends' => '預け入れ口座名が「:trigger_value」で終わらない', - 'rule_trigger_not_destination_account_starts' => '預け入れ口座名が「:trigger_value」で始まらない', - 'rule_trigger_not_destination_account_nr_is' => '預け入れ口座番号/IBANが「:trigger_value」ではない', - 'rule_trigger_not_destination_account_nr_contains' => '預け入れ口座番号/IBANが「:trigger_value」を含まない', - 'rule_trigger_not_destination_account_nr_ends' => '預け入れ口座番号/IBANが「:trigger_value」で終わらない', - 'rule_trigger_not_destination_account_nr_starts' => '預け入れ口座番号/IBANが「:trigger_value」を始まらない', - 'rule_trigger_not_account_is' => 'どちらの口座も「:trigger_value」ではない', - 'rule_trigger_not_account_contains' => 'どちらの口座も「:trigger_value」を含まない', - 'rule_trigger_not_account_ends' => 'どちらの口座も「:trigger_value」で終わらない', - 'rule_trigger_not_account_starts' => 'どちらの口座も「:trigger_value」で始まらない', - 'rule_trigger_not_account_nr_is' => 'どちらの口座番号/IBANも「:trigger_value」ではない', - 'rule_trigger_not_account_nr_contains' => 'どちらの口座番号/IBANも「:trigger_value」を含まない', - 'rule_trigger_not_account_nr_ends' => 'どちらの口座番号/IBANも「:trigger_value」で終わらない', - 'rule_trigger_not_account_nr_starts' => 'どちらの口座番号/IBANも「:trigger_value」で始まらない', - 'rule_trigger_not_category_is' => 'カテゴリが「:trigger_value」ではない', - 'rule_trigger_not_category_contains' => 'カテゴリが「:trigger_value」を含まない', - 'rule_trigger_not_category_ends' => 'カテゴリが「:trigger_value」で終わらない', - 'rule_trigger_not_category_starts' => 'カテゴリが「:trigger_value」で始まらない', - 'rule_trigger_not_budget_is' => '予算名が「:trigger_value」ではない', - 'rule_trigger_not_budget_contains' => '予算名に「:trigger_value」を含まない', - 'rule_trigger_not_budget_ends' => '予算名が「:trigger_value」で終わらない', - 'rule_trigger_not_budget_starts' => '予算名が「:trigger_value」で始まらない', - 'rule_trigger_not_bill_is' => '請求名が「:trigger_value」ではない', - 'rule_trigger_not_bill_contains' => '請求名に「:trigger_value」を含まない', - 'rule_trigger_not_bill_ends' => '請求名が「:trigger_value」で終わらない', - 'rule_trigger_not_bill_starts' => '請求名が「:trigger_value」で終わらない', - 'rule_trigger_not_external_id_is' => '外部IDが「:trigger_value」ではない', - 'rule_trigger_not_external_id_contains' => '外部IDに「:trigger_value」を含まない', - 'rule_trigger_not_external_id_ends' => '外部IDが「:trigger_value」で終わらない', - 'rule_trigger_not_external_id_starts' => '外部IDが「:trigger_value」で始まらない', - 'rule_trigger_not_internal_reference_is' => '内部参照が「:trigger_value」ではない', - 'rule_trigger_not_internal_reference_contains' => '内部参照に「:trigger_value」を含まない', - 'rule_trigger_not_internal_reference_ends' => '内部参照が「:trigger_value」で終わらない', - 'rule_trigger_not_internal_reference_starts' => '内部参照が「:trigger_value」で始まらない', - 'rule_trigger_not_external_url_is' => '外部URLが「:trigger_value」ではない', - 'rule_trigger_not_external_url_contains' => '外部URLに「:trigger_value」を含まない', - 'rule_trigger_not_external_url_ends' => '外部URLが「:trigger_value」で終わらない', - 'rule_trigger_not_external_url_starts' => '外部URLが「:trigger_value」で始まらない', - 'rule_trigger_not_currency_is' => '通貨が「:trigger_value」ではない', - 'rule_trigger_not_foreign_currency_is' => '外国通貨が「:trigger_value」ではない', - 'rule_trigger_not_id' => '取引IDが「:trigger_value」ではない', - 'rule_trigger_not_journal_id' => '取引ジャーナルIDが「:trigger_value」ではない', - 'rule_trigger_not_recurrence_id' => '繰り返しIDが「:trigger_value」ではない', - 'rule_trigger_not_date_on' => '日付が「:trigger_value」ではない', - 'rule_trigger_not_date_before' => '日付が「:trigger_value」より前ではない', - 'rule_trigger_not_date_after' => '日付が「:trigger_value」より後ではない', - 'rule_trigger_not_interest_date_on' => '利息日が「:trigger_value」ではない', - 'rule_trigger_not_interest_date_before' => '利息日が「:trigger_value」より前ではない', - 'rule_trigger_not_interest_date_after' => '利息日が「:trigger_value」より後ではない', - 'rule_trigger_not_book_date_on' => '記帳日が「:trigger_value」ではない', - 'rule_trigger_not_book_date_before' => '記帳日が「:trigger_value」より前ではない', - 'rule_trigger_not_book_date_after' => '記帳日が「:trigger_value」より後ではない', - 'rule_trigger_not_process_date_on' => '処理日が「:trigger_value」ではない', - 'rule_trigger_not_process_date_before' => '処理日が「:trigger_value」より前ではない', - 'rule_trigger_not_process_date_after' => '処理日が「:trigger_value」より後ではない', - 'rule_trigger_not_due_date_on' => '支払い期日が「:trigger_value」ではない', - 'rule_trigger_not_due_date_before' => '支払い期日が「:trigger_value」より前ではない', - 'rule_trigger_not_due_date_after' => '支払い期日が「:trigger_value」より後ではない', - 'rule_trigger_not_payment_date_on' => '支払日が「:trigger_value」ではない', - 'rule_trigger_not_payment_date_before' => '支払日が「:trigger_value」より前', - 'rule_trigger_not_payment_date_after' => '支払日が「:trigger_value」より後ではない', - 'rule_trigger_not_invoice_date_on' => '請求日が「:trigger_value」ではない', - 'rule_trigger_not_invoice_date_before' => '支払日が「:trigger_value」より前ではない', - 'rule_trigger_not_invoice_date_after' => '請求日が「:trigger_value」より後ではない', - 'rule_trigger_not_created_at_on' => '取引作成が「:trigger_value」ではない', - 'rule_trigger_not_created_at_before' => '取引作成が「:trigger_value」の前ではない', - 'rule_trigger_not_created_at_after' => '取引作成が「:trigger_value」より後ではない', - 'rule_trigger_not_updated_at_on' => '取引更新が「:trigger_value」ではない', - 'rule_trigger_not_updated_at_before' => '取引更新が「:trigger_value」より前ではない', - 'rule_trigger_not_updated_at_after' => '取引更新が「:trigger_value」より後ではない', - 'rule_trigger_not_amount_is' => '取引金額が「:trigger_value」ではない', - 'rule_trigger_not_amount_less' => '取引金額が「:trigger_value」より大きい', - 'rule_trigger_not_amount_more' => '取引金額が「:trigger_value」より小さい', - 'rule_trigger_not_foreign_amount_is' => '取引外貨金額が「:trigger_value」ではない', - 'rule_trigger_not_foreign_amount_less' => '取引外貨金額が「:trigger_value」より大きい', - 'rule_trigger_not_foreign_amount_more' => '取引外貨金額が「:trigger_value」より小さい', - 'rule_trigger_not_attachment_name_is' => '添付ファイル名「:trigger_value」がない', - 'rule_trigger_not_attachment_name_contains' => '添付ファイル名に「:trigger_value」を含むものがない', - 'rule_trigger_not_attachment_name_starts' => '添付ファイル名が「:trigger_value」で始まるものがない', - 'rule_trigger_not_attachment_name_ends' => '添付ファイル名が「:trigger_value」で終わるものがない', - 'rule_trigger_not_attachment_notes_are' => '添付ファイルの備考が「:trigger_value」のものがない', - 'rule_trigger_not_attachment_notes_contains' => '添付ファイルの備考に「:trigger_value」を含むものがない', - 'rule_trigger_not_attachment_notes_starts' => '添付ファイルの備考が「:trigger_value」で始まるものがない', - 'rule_trigger_not_attachment_notes_ends' => '添付ファイルの備考が「:trigger_value」で終わるものがない', - 'rule_trigger_not_reconciled' => '照合されていない取引', - 'rule_trigger_not_exists' => '存在しない取引', - 'rule_trigger_not_has_attachments' => '添付ファイルがない取引', - 'rule_trigger_not_has_any_category' => 'カテゴリのない取引', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => '請求がない取引', - 'rule_trigger_not_has_any_tag' => 'タグがない取引', - 'rule_trigger_not_any_notes' => '備考がない取引', - 'rule_trigger_not_any_external_url' => '外部URLがない取引', - 'rule_trigger_not_has_no_attachments' => '添付ファイルがある取引', - 'rule_trigger_not_has_no_category' => 'カテゴリがある取引', - 'rule_trigger_not_has_no_budget' => '予算がある取引', - 'rule_trigger_not_has_no_bill' => '請求がある取引', - 'rule_trigger_not_has_no_tag' => 'タグがある取引', - 'rule_trigger_not_no_notes' => '備考がある取引', - 'rule_trigger_not_no_external_url' => '外部URLがある取引', - 'rule_trigger_not_source_is_cash' => '引き出し口座が現金口座ではない', - 'rule_trigger_not_destination_is_cash' => '預け入れ口座が現金口座ではない', - 'rule_trigger_not_account_is_cash' => 'どちらの口座も現金口座ではない', + 'rule_trigger_not_account_id' => '口座IDが「:trigger_value」ではない', + 'rule_trigger_not_source_account_id' => '引き出し口座IDが「:trigger_value」ではない', + 'rule_trigger_not_destination_account_id' => '預け入れ口座IDが「:trigger_value」ではない', + 'rule_trigger_not_transaction_type' => '取引種別が「:trigger_value」ではない', + 'rule_trigger_not_tag_is' => 'タグが「:trigger_value」ではない', + 'rule_trigger_not_tag_is_not' => 'タグが「:trigger_value」', + 'rule_trigger_not_description_is' => '概要が「:trigger_value」ではない', + 'rule_trigger_not_description_contains' => '概要がない', + 'rule_trigger_not_description_ends' => '概要が「:trigger_value」で終わらない', + 'rule_trigger_not_description_starts' => '概要が「:trigger_value」で始まらない', + 'rule_trigger_not_notes_is' => '備考が「:trigger_value」ではない', + 'rule_trigger_not_notes_contains' => '備考に「:trigger_value」を含まない', + 'rule_trigger_not_notes_ends' => '備考が「:trigger_value」で終わらない', + 'rule_trigger_not_notes_starts' => '備考が「:trigger_value」で始まらない', + 'rule_trigger_not_source_account_is' => '引き出し口座名が「:trigger_value」ではない', + 'rule_trigger_not_source_account_contains' => '引き出し口座名が「:trigger_value」を含まない', + 'rule_trigger_not_source_account_ends' => '引き出し口座名が「:trigger_value」で終わらない', + 'rule_trigger_not_source_account_starts' => '引き出し口座名が「:trigger_value」で始まらない', + 'rule_trigger_not_source_account_nr_is' => '引き出し口座番号/IBANが「:trigger_value」ではない', + 'rule_trigger_not_source_account_nr_contains' => '引き出し口座番号/IBANが「:trigger_value」を含まない', + 'rule_trigger_not_source_account_nr_ends' => '引き出し口座番号/IBANが「:trigger_value」で終わらない', + 'rule_trigger_not_source_account_nr_starts' => '引き出し口座番号/IBANが「:trigger_value」で始まらない', + 'rule_trigger_not_destination_account_is' => '預け入れ口座名が「:trigger_value」ではない', + 'rule_trigger_not_destination_account_contains' => '預け入れ口座名が「:trigger_value」を含まない', + 'rule_trigger_not_destination_account_ends' => '預け入れ口座名が「:trigger_value」で終わらない', + 'rule_trigger_not_destination_account_starts' => '預け入れ口座名が「:trigger_value」で始まらない', + 'rule_trigger_not_destination_account_nr_is' => '預け入れ口座番号/IBANが「:trigger_value」ではない', + 'rule_trigger_not_destination_account_nr_contains' => '預け入れ口座番号/IBANが「:trigger_value」を含まない', + 'rule_trigger_not_destination_account_nr_ends' => '預け入れ口座番号/IBANが「:trigger_value」で終わらない', + 'rule_trigger_not_destination_account_nr_starts' => '預け入れ口座番号/IBANが「:trigger_value」を始まらない', + 'rule_trigger_not_account_is' => 'どちらの口座も「:trigger_value」ではない', + 'rule_trigger_not_account_contains' => 'どちらの口座も「:trigger_value」を含まない', + 'rule_trigger_not_account_ends' => 'どちらの口座も「:trigger_value」で終わらない', + 'rule_trigger_not_account_starts' => 'どちらの口座も「:trigger_value」で始まらない', + 'rule_trigger_not_account_nr_is' => 'どちらの口座番号/IBANも「:trigger_value」ではない', + 'rule_trigger_not_account_nr_contains' => 'どちらの口座番号/IBANも「:trigger_value」を含まない', + 'rule_trigger_not_account_nr_ends' => 'どちらの口座番号/IBANも「:trigger_value」で終わらない', + 'rule_trigger_not_account_nr_starts' => 'どちらの口座番号/IBANも「:trigger_value」で始まらない', + 'rule_trigger_not_category_is' => 'カテゴリが「:trigger_value」ではない', + 'rule_trigger_not_category_contains' => 'カテゴリが「:trigger_value」を含まない', + 'rule_trigger_not_category_ends' => 'カテゴリが「:trigger_value」で終わらない', + 'rule_trigger_not_category_starts' => 'カテゴリが「:trigger_value」で始まらない', + 'rule_trigger_not_budget_is' => '予算名が「:trigger_value」ではない', + 'rule_trigger_not_budget_contains' => '予算名に「:trigger_value」を含まない', + 'rule_trigger_not_budget_ends' => '予算名が「:trigger_value」で終わらない', + 'rule_trigger_not_budget_starts' => '予算名が「:trigger_value」で始まらない', + 'rule_trigger_not_bill_is' => '請求名が「:trigger_value」ではない', + 'rule_trigger_not_bill_contains' => '請求名に「:trigger_value」を含まない', + 'rule_trigger_not_bill_ends' => '請求名が「:trigger_value」で終わらない', + 'rule_trigger_not_bill_starts' => '請求名が「:trigger_value」で終わらない', + 'rule_trigger_not_external_id_is' => '外部IDが「:trigger_value」ではない', + 'rule_trigger_not_external_id_contains' => '外部IDに「:trigger_value」を含まない', + 'rule_trigger_not_external_id_ends' => '外部IDが「:trigger_value」で終わらない', + 'rule_trigger_not_external_id_starts' => '外部IDが「:trigger_value」で始まらない', + 'rule_trigger_not_internal_reference_is' => '内部参照が「:trigger_value」ではない', + 'rule_trigger_not_internal_reference_contains' => '内部参照に「:trigger_value」を含まない', + 'rule_trigger_not_internal_reference_ends' => '内部参照が「:trigger_value」で終わらない', + 'rule_trigger_not_internal_reference_starts' => '内部参照が「:trigger_value」で始まらない', + 'rule_trigger_not_external_url_is' => '外部URLが「:trigger_value」ではない', + 'rule_trigger_not_external_url_contains' => '外部URLに「:trigger_value」を含まない', + 'rule_trigger_not_external_url_ends' => '外部URLが「:trigger_value」で終わらない', + 'rule_trigger_not_external_url_starts' => '外部URLが「:trigger_value」で始まらない', + 'rule_trigger_not_currency_is' => '通貨が「:trigger_value」ではない', + 'rule_trigger_not_foreign_currency_is' => '外国通貨が「:trigger_value」ではない', + 'rule_trigger_not_id' => '取引IDが「:trigger_value」ではない', + 'rule_trigger_not_journal_id' => '取引ジャーナルIDが「:trigger_value」ではない', + 'rule_trigger_not_recurrence_id' => '繰り返しIDが「:trigger_value」ではない', + 'rule_trigger_not_date_on' => '日付が「:trigger_value」ではない', + 'rule_trigger_not_date_before' => '日付が「:trigger_value」より前ではない', + 'rule_trigger_not_date_after' => '日付が「:trigger_value」より後ではない', + 'rule_trigger_not_interest_date_on' => '利息日が「:trigger_value」ではない', + 'rule_trigger_not_interest_date_before' => '利息日が「:trigger_value」より前ではない', + 'rule_trigger_not_interest_date_after' => '利息日が「:trigger_value」より後ではない', + 'rule_trigger_not_book_date_on' => '記帳日が「:trigger_value」ではない', + 'rule_trigger_not_book_date_before' => '記帳日が「:trigger_value」より前ではない', + 'rule_trigger_not_book_date_after' => '記帳日が「:trigger_value」より後ではない', + 'rule_trigger_not_process_date_on' => '処理日が「:trigger_value」ではない', + 'rule_trigger_not_process_date_before' => '処理日が「:trigger_value」より前ではない', + 'rule_trigger_not_process_date_after' => '処理日が「:trigger_value」より後ではない', + 'rule_trigger_not_due_date_on' => '支払い期日が「:trigger_value」ではない', + 'rule_trigger_not_due_date_before' => '支払い期日が「:trigger_value」より前ではない', + 'rule_trigger_not_due_date_after' => '支払い期日が「:trigger_value」より後ではない', + 'rule_trigger_not_payment_date_on' => '支払日が「:trigger_value」ではない', + 'rule_trigger_not_payment_date_before' => '支払日が「:trigger_value」より前', + 'rule_trigger_not_payment_date_after' => '支払日が「:trigger_value」より後ではない', + 'rule_trigger_not_invoice_date_on' => '請求日が「:trigger_value」ではない', + 'rule_trigger_not_invoice_date_before' => '支払日が「:trigger_value」より前ではない', + 'rule_trigger_not_invoice_date_after' => '請求日が「:trigger_value」より後ではない', + 'rule_trigger_not_created_at_on' => '取引作成が「:trigger_value」ではない', + 'rule_trigger_not_created_at_before' => '取引作成が「:trigger_value」の前ではない', + 'rule_trigger_not_created_at_after' => '取引作成が「:trigger_value」より後ではない', + 'rule_trigger_not_updated_at_on' => '取引更新が「:trigger_value」ではない', + 'rule_trigger_not_updated_at_before' => '取引更新が「:trigger_value」より前ではない', + 'rule_trigger_not_updated_at_after' => '取引更新が「:trigger_value」より後ではない', + 'rule_trigger_not_amount_is' => '取引金額が「:trigger_value」ではない', + 'rule_trigger_not_amount_less' => '取引金額が「:trigger_value」より大きい', + 'rule_trigger_not_amount_more' => '取引金額が「:trigger_value」より小さい', + 'rule_trigger_not_foreign_amount_is' => '取引外貨金額が「:trigger_value」ではない', + 'rule_trigger_not_foreign_amount_less' => '取引外貨金額が「:trigger_value」より大きい', + 'rule_trigger_not_foreign_amount_more' => '取引外貨金額が「:trigger_value」より小さい', + 'rule_trigger_not_attachment_name_is' => '添付ファイル名「:trigger_value」がない', + 'rule_trigger_not_attachment_name_contains' => '添付ファイル名に「:trigger_value」を含むものがない', + 'rule_trigger_not_attachment_name_starts' => '添付ファイル名が「:trigger_value」で始まるものがない', + 'rule_trigger_not_attachment_name_ends' => '添付ファイル名が「:trigger_value」で終わるものがない', + 'rule_trigger_not_attachment_notes_are' => '添付ファイルの備考が「:trigger_value」のものがない', + 'rule_trigger_not_attachment_notes_contains' => '添付ファイルの備考に「:trigger_value」を含むものがない', + 'rule_trigger_not_attachment_notes_starts' => '添付ファイルの備考が「:trigger_value」で始まるものがない', + 'rule_trigger_not_attachment_notes_ends' => '添付ファイルの備考が「:trigger_value」で終わるものがない', + 'rule_trigger_not_reconciled' => '照合されていない取引', + 'rule_trigger_not_exists' => '存在しない取引', + 'rule_trigger_not_has_attachments' => '添付ファイルがない取引', + 'rule_trigger_not_has_any_category' => 'カテゴリのない取引', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => '請求がない取引', + 'rule_trigger_not_has_any_tag' => 'タグがない取引', + 'rule_trigger_not_any_notes' => '備考がない取引', + 'rule_trigger_not_any_external_url' => '外部URLがない取引', + 'rule_trigger_not_has_no_attachments' => '添付ファイルがある取引', + 'rule_trigger_not_has_no_category' => 'カテゴリがある取引', + 'rule_trigger_not_has_no_budget' => '予算がある取引', + 'rule_trigger_not_has_no_bill' => '請求がある取引', + 'rule_trigger_not_has_no_tag' => 'タグがある取引', + 'rule_trigger_not_no_notes' => '備考がある取引', + 'rule_trigger_not_no_external_url' => '外部URLがある取引', + 'rule_trigger_not_source_is_cash' => '引き出し口座が現金口座ではない', + 'rule_trigger_not_destination_is_cash' => '預け入れ口座が現金口座ではない', + 'rule_trigger_not_account_is_cash' => 'どちらの口座も現金口座ではない', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => '取引を削除 (!)', - 'rule_action_delete_transaction' => '取引を削除 (!)', - 'rule_action_set_category' => 'カテゴリを「:action_value」に設定', - 'rule_action_clear_category' => 'カテゴリをクリア', - 'rule_action_set_budget' => '予算を「:action_value」に設定', - 'rule_action_clear_budget' => '予算をクリア', - 'rule_action_add_tag' => 'タグ「:action_value」を追加', - 'rule_action_remove_tag' => 'タグ「:action_value」を削除', - 'rule_action_remove_all_tags' => 'すべてのタグを削除', - 'rule_action_set_description' => '備考を「:action_value」に設定', - 'rule_action_append_description' => '備考の始めに「:action_value」を追加', - 'rule_action_prepend_description' => '備考の終わりに「:action_value」を追加', - 'rule_action_set_category_choice' => 'カテゴリを...に設定', - 'rule_action_clear_category_choice' => 'カテゴリをクリア', - 'rule_action_set_budget_choice' => '予算を...に設定', - 'rule_action_clear_budget_choice' => '予算をクリア', - 'rule_action_add_tag_choice' => 'タグ…を追加', - 'rule_action_remove_tag_choice' => 'タグ…を削除', - 'rule_action_remove_all_tags_choice' => 'すべてのタグを削除', - 'rule_action_set_description_choice' => '説明を...に設定', - 'rule_action_update_piggy_choice' => '取引金額を貯金箱...に加算/減算する', - 'rule_action_update_piggy' => '取引金額を貯金箱「:action_value」に加算/減算する', - 'rule_action_append_description_choice' => '概要の終わりに…を追加', - 'rule_action_prepend_description_choice' => '概要の終わりに…を追加', - 'rule_action_set_source_account_choice' => '引き出し口座を...に設定', - 'rule_action_set_source_account' => '支払元口座を「:action_value」にする', - 'rule_action_set_destination_account_choice' => '預け入れ口座を...に設定', - 'rule_action_set_destination_account' => '預け入れ口座を「:action_value」にする', - 'rule_action_append_notes_choice' => '備考の終わりに...を追加', - 'rule_action_append_notes' => '備考の始めに「:action_value」を追加', - 'rule_action_prepend_notes_choice' => '備考の終わりに…を追加', - 'rule_action_prepend_notes' => '備考の終わりに「:action_value」を追加', - 'rule_action_clear_notes_choice' => '備考を削除', - 'rule_action_clear_notes' => '備考を削除', - 'rule_action_set_notes_choice' => '備考に...を設定', - 'rule_action_link_to_bill_choice' => '請求...にリンク', - 'rule_action_link_to_bill' => '請求「:action_value」にリンク', - 'rule_action_switch_accounts_choice' => '引き出し口座と預け入れ口座を切り替える(送金のみ)', - 'rule_action_switch_accounts' => '引き出しと預け入れを切り替える', - 'rule_action_set_notes' => '備考に「:action_value」を設定', - 'rule_action_convert_deposit_choice' => '取引を入金に変換', - 'rule_action_convert_deposit' => '取引を「:action_value」からの入金に変換する', - 'rule_action_convert_withdrawal_choice' => '取引を出金に変換', - 'rule_action_convert_withdrawal' => '取引を「:action_value」への引き出しに変換する', - 'rule_action_convert_transfer_choice' => '取引を送金に変換', - 'rule_action_convert_transfer' => '取引を「:action_value」で送金に変換する', - 'rule_action_append_descr_to_notes_choice' => '取引のメモの終わりに概要を追加', - 'rule_action_append_notes_to_descr_choice' => '説明の終わりに取引の備考を追加', - 'rule_action_move_descr_to_notes_choice' => '現在の取引メモを概要で置き換えます', - 'rule_action_move_notes_to_descr_choice' => '現在の概要を取引メモで置き換えます', - 'rule_action_append_descr_to_notes' => 'メモの終わりに概要を追加', - 'rule_action_append_notes_to_descr' => '概要の終わりにメモを追加', - 'rule_action_move_descr_to_notes' => 'メモを概要で置き換え', - 'rule_action_move_notes_to_descr' => '概要をメモで置き換え', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => '請求のルールグループ', - 'rulegroup_for_bills_description' => '請求に関するすべてのルールのための特別なグループです。', - 'rule_for_bill_title' => '請求「:name」用に自動作成されたルール', - 'rule_for_bill_description' => 'このルールは請求「:name」を紐付けるため自動生成されます。', - 'create_rule_for_bill' => '請求「:name」用にルールを作成する', - 'create_rule_for_bill_txt' => '請求「:name」を作成しました、おめでとうございます!Firefly III は自動的にこの請求と出金をリンクすることができます。 例えば、家賃を支払うたびに、請求「家賃」は支出にリンクされます。 このように、Firefly III は正確にどの請求が支払われているか、そうでないかを示すことができます。 これにはルールを作成する必要があります。 Firefly III にはいくつかのデフォルト設定がありますが、これらが適切か確認してください。 これらが正しい場合、Firefly III は自動的に出金を請求にリンクします。 トリガーが正しいかどうかを確認し、間違っている場合は訂正してください。', - 'new_rule_for_bill_title' => '請求「:name」のルール', - 'new_rule_for_bill_description' => 'このルールは請求「:name」の取引をマークします。', + 'rule_action_delete_transaction_choice' => '取引を削除 (!)', + 'rule_action_delete_transaction' => '取引を削除 (!)', + 'rule_action_set_category' => 'カテゴリを「:action_value」に設定', + 'rule_action_clear_category' => 'カテゴリをクリア', + 'rule_action_set_budget' => '予算を「:action_value」に設定', + 'rule_action_clear_budget' => '予算をクリア', + 'rule_action_add_tag' => 'タグ「:action_value」を追加', + 'rule_action_remove_tag' => 'タグ「:action_value」を削除', + 'rule_action_remove_all_tags' => 'すべてのタグを削除', + 'rule_action_set_description' => '備考を「:action_value」に設定', + 'rule_action_append_description' => '備考の始めに「:action_value」を追加', + 'rule_action_prepend_description' => '備考の終わりに「:action_value」を追加', + 'rule_action_set_category_choice' => 'カテゴリを...に設定', + 'rule_action_clear_category_choice' => 'カテゴリをクリア', + 'rule_action_set_budget_choice' => '予算を...に設定', + 'rule_action_clear_budget_choice' => '予算をクリア', + 'rule_action_add_tag_choice' => 'タグ…を追加', + 'rule_action_remove_tag_choice' => 'タグ…を削除', + 'rule_action_remove_all_tags_choice' => 'すべてのタグを削除', + 'rule_action_set_description_choice' => '説明を...に設定', + 'rule_action_update_piggy_choice' => '取引金額を貯金箱...に加算/減算する', + 'rule_action_update_piggy' => '取引金額を貯金箱「:action_value」に加算/減算する', + 'rule_action_append_description_choice' => '概要の終わりに…を追加', + 'rule_action_prepend_description_choice' => '概要の終わりに…を追加', + 'rule_action_set_source_account_choice' => '引き出し口座を...に設定', + 'rule_action_set_source_account' => '支払元口座を「:action_value」にする', + 'rule_action_set_destination_account_choice' => '預け入れ口座を...に設定', + 'rule_action_set_destination_account' => '預け入れ口座を「:action_value」にする', + 'rule_action_append_notes_choice' => '備考の終わりに...を追加', + 'rule_action_append_notes' => '備考の始めに「:action_value」を追加', + 'rule_action_prepend_notes_choice' => '備考の終わりに…を追加', + 'rule_action_prepend_notes' => '備考の終わりに「:action_value」を追加', + 'rule_action_clear_notes_choice' => '備考を削除', + 'rule_action_clear_notes' => '備考を削除', + 'rule_action_set_notes_choice' => '備考に...を設定', + 'rule_action_link_to_bill_choice' => '請求...にリンク', + 'rule_action_link_to_bill' => '請求「:action_value」にリンク', + 'rule_action_switch_accounts_choice' => '引き出し口座と預け入れ口座を切り替える(送金のみ)', + 'rule_action_switch_accounts' => '引き出しと預け入れを切り替える', + 'rule_action_set_notes' => '備考に「:action_value」を設定', + 'rule_action_convert_deposit_choice' => '取引を入金に変換', + 'rule_action_convert_deposit' => '取引を「:action_value」からの入金に変換する', + 'rule_action_convert_withdrawal_choice' => '取引を出金に変換', + 'rule_action_convert_withdrawal' => '取引を「:action_value」への引き出しに変換する', + 'rule_action_convert_transfer_choice' => '取引を送金に変換', + 'rule_action_convert_transfer' => '取引を「:action_value」で送金に変換する', + 'rule_action_append_descr_to_notes_choice' => '取引のメモの終わりに概要を追加', + 'rule_action_append_notes_to_descr_choice' => '説明の終わりに取引の備考を追加', + 'rule_action_move_descr_to_notes_choice' => '現在の取引メモを概要で置き換えます', + 'rule_action_move_notes_to_descr_choice' => '現在の概要を取引メモで置き換えます', + 'rule_action_append_descr_to_notes' => 'メモの終わりに概要を追加', + 'rule_action_append_notes_to_descr' => '概要の終わりにメモを追加', + 'rule_action_move_descr_to_notes' => 'メモを概要で置き換え', + 'rule_action_move_notes_to_descr' => '概要をメモで置き換え', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => '請求のルールグループ', + 'rulegroup_for_bills_description' => '請求に関するすべてのルールのための特別なグループです。', + 'rule_for_bill_title' => '請求「:name」用に自動作成されたルール', + 'rule_for_bill_description' => 'このルールは請求「:name」を紐付けるため自動生成されます。', + 'create_rule_for_bill' => '請求「:name」用にルールを作成する', + 'create_rule_for_bill_txt' => '請求「:name」を作成しました、おめでとうございます!Firefly III は自動的にこの請求と出金をリンクすることができます。 例えば、家賃を支払うたびに、請求「家賃」は支出にリンクされます。 このように、Firefly III は正確にどの請求が支払われているか、そうでないかを示すことができます。 これにはルールを作成する必要があります。 Firefly III にはいくつかのデフォルト設定がありますが、これらが適切か確認してください。 これらが正しい場合、Firefly III は自動的に出金を請求にリンクします。 トリガーが正しいかどうかを確認し、間違っている場合は訂正してください。', + 'new_rule_for_bill_title' => '請求「:name」のルール', + 'new_rule_for_bill_description' => 'このルールは請求「:name」の取引をマークします。', - 'new_rule_for_journal_title' => '取引「:description」をもとにしたルール', - 'new_rule_for_journal_description' => 'このルールは取引「:description」に基づいています。全く同じ取引に適合します。', + 'new_rule_for_journal_title' => '取引「:description」をもとにしたルール', + 'new_rule_for_journal_description' => 'このルールは取引「:description」に基づいています。全く同じ取引に適合します。', // tags - 'store_new_tag' => '新しいタグを保存', - 'update_tag' => 'タグを更新', - 'no_location_set' => '場所が設定されていません。', - 'meta_data' => 'メタデータ', - 'location' => '場所', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => '日付なし', - 'result' => '結果', - 'sums_apply_to_range' => '選択した範囲にすべての合計が適用されます', - 'mapbox_api_key' => '地図を使うには Mapbox のAPIキーを取得してください。.envファイルを開き、MAPBOX_API_KEY=のうしろにAPIキーを入力してください。', - 'press_object_location' => '対象の位置を設定するには、右クリックまたは長押しします。', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => '場所をクリア', - 'delete_all_selected_tags' => '選択したすべてのタグを削除', - 'select_tags_to_delete' => '忘れずにタグを選択してください。', - 'deleted_x_tags' => ':count 個のタグを削除しました。|:count 個のタグを削除しました。', - 'create_rule_from_transaction' => '取引に基づいてルールを作成', - 'create_recurring_from_transaction' => '取引に基づいて定期的な取引を作成する', + 'store_new_tag' => '新しいタグを保存', + 'update_tag' => 'タグを更新', + 'no_location_set' => '場所が設定されていません。', + 'meta_data' => 'メタデータ', + 'location' => '場所', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => '日付なし', + 'result' => '結果', + 'sums_apply_to_range' => '選択した範囲にすべての合計が適用されます', + 'mapbox_api_key' => '地図を使うには Mapbox のAPIキーを取得してください。.envファイルを開き、MAPBOX_API_KEY=のうしろにAPIキーを入力してください。', + 'press_object_location' => '対象の位置を設定するには、右クリックまたは長押しします。', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => '場所をクリア', + 'delete_all_selected_tags' => '選択したすべてのタグを削除', + 'select_tags_to_delete' => '忘れずにタグを選択してください。', + 'deleted_x_tags' => ':count 個のタグを削除しました。|:count 個のタグを削除しました。', + 'create_rule_from_transaction' => '取引に基づいてルールを作成', + 'create_recurring_from_transaction' => '取引に基づいて定期的な取引を作成する', // preferences - 'dark_mode_option_browser' => 'ブラウザに判断させる', - 'dark_mode_option_light' => '常にライト', - 'dark_mode_option_dark' => '常にダーク', - 'equal_to_language' => '(言語と同一)', - 'dark_mode_preference' => 'ダークモード', - 'dark_mode_preference_help' => 'Firefly III にいつダークモードを使用するか伝えましょう。', - 'pref_home_screen_accounts' => 'ホーム画面の口座', - 'pref_home_screen_accounts_help' => 'ホームページにどの口座を表示しますか?', - 'pref_view_range' => '閲覧範囲', - 'pref_view_range_help' => 'いくつかのチャートは自動的に期間でグループ化されます。予算も期間にグループ化されます。どの期間を設定しますか?', - 'pref_1D' => '1日', - 'pref_1W' => '1週', - 'pref_1M' => '1ヵ月', - 'pref_3M' => '3ヶ月 (四半期)', - 'pref_6M' => '6ヶ月', - 'pref_1Y' => '1年', - 'pref_last365' => '昨年', - 'pref_last90' => '過去 90 日間', - 'pref_last30' => '過去 30 日間', - 'pref_last7' => '過去 7 日間', - 'pref_YTD' => '年始から今日まで', - 'pref_QTD' => '今四半期', - 'pref_MTD' => '今月', - 'pref_languages' => '言語', - 'pref_locale' => 'ロケール設定', - 'pref_languages_help' => 'Firefly III は多言語に対応しています。どれがお好みですか?', - 'pref_locale_help' => 'Firefly III では、通貨、数字、日付のフォーマットなど、他のローカル設定に変更できます。 このリストにあるエントリは、あなたのシステムでサポートされていない可能性があります。 Firefly III にはすべてのロケールの正しい日付設定がありません。改善のために私に連絡してください。', - 'pref_locale_no_demo' => 'この機能はデモユーザーでは動作しません。', - 'pref_custom_fiscal_year' => '会計年度設定', - 'pref_custom_fiscal_year_label' => '有効', - 'pref_custom_fiscal_year_help' => '1月1日から12月31日まで以外の会計年度を使用する国では、 これを有効にして、会計年度の開始日/終了日を指定します。', - 'pref_fiscal_year_start_label' => '会計年度開始日', - 'pref_two_factor_auth' => '2段階認証', - 'pref_two_factor_auth_help' => '2段階認証 (2要素認証) を有効にすると、アカウントにセキュリティ層を追加できます。 あなたは何か知っていること (パスワード) と、何かを持っていること (確認コード) でサインインします。 認証コードは Authy や Google Authenticator のようなスマートフォンアプリケーションによって生成されます。', - 'pref_enable_two_factor_auth' => '2段階認証を有効にする', - 'pref_two_factor_auth_disabled' => '2段階認証コードが削除されて無効になっています', - 'pref_two_factor_auth_remove_it' => '認証アプリからアカウントを削除することを忘れないでください!', - 'pref_two_factor_auth_code' => 'コードを確認', - 'pref_two_factor_auth_code_help' => 'Authy や Google Authenticator などの携帯電話のアプリケーションでQRコードをスキャンし、生成されたコードを入力します。', - 'pref_two_factor_auth_reset_code' => '確認コードをリセット', - 'pref_two_factor_auth_disable_2fa' => '2段階認証を無効にする', - '2fa_use_secret_instead' => 'QR コードをスキャンできない場合は、代わりにシークレットを使用してください: :secret', - '2fa_backup_codes' => 'デバイスを失くした場合に備えて、これらのバックアップコードを保存してください。', - '2fa_already_enabled' => '2段階認証はすでに有効です。', - 'wrong_mfa_code' => 'この多要素認証コードは無効です。', - 'pref_save_settings' => '設定を保存', - 'saved_preferences' => '設定が保存されました!', - 'preferences_general' => '一般設定', - 'preferences_frontpage' => 'ホーム画面', - 'preferences_security' => 'セキュリティ', - 'preferences_layout' => 'レイアウト', - 'preferences_notifications' => '通知', - 'pref_home_show_deposits' => 'ホーム画面に入金を表示する', - 'pref_home_show_deposits_info' => 'ホーム画面にはすでに支出口座が表示されています。収入口座も表示しますか?', - 'pref_home_do_show_deposits' => 'はい、表示します', - 'successful_count' => ':count 通のエラーがあります', - 'list_page_size_title' => 'ページの表示件数', - 'list_page_size_help' => 'あらゆるリスト (アカウント、取引など) のページあたりの最大表示数です。', - 'list_page_size_label' => 'ページの表示件数', - 'between_dates' => '(:start と :end)', - 'pref_optional_fields_transaction' => '取引のオプション項目', - 'pref_optional_fields_transaction_help' => 'デフォルトでは、新しい取引を作成するとき、すべての項目が有効ではありません (乱雑になるため)。 以下からあなたが便利と思う項目を有効にできます。すでに入力されている項目は、無効としても設定に関係なく表示されます。', - 'optional_tj_date_fields' => '日付フィールド', - 'optional_tj_other_fields' => 'その他の項目', - 'optional_tj_attachment_fields' => '添付ファイル項目', - 'pref_optional_tj_interest_date' => '利息日', - 'pref_optional_tj_book_date' => '記帳日', - 'pref_optional_tj_process_date' => '処理日', - 'pref_optional_tj_due_date' => '期限', - 'pref_optional_tj_payment_date' => '引き落とし日', - 'pref_optional_tj_invoice_date' => '領収書発行日', - 'pref_optional_tj_internal_reference' => '内部参照', - 'pref_optional_tj_notes' => '備考', - 'pref_optional_tj_attachments' => '添付ファイル', - 'pref_optional_tj_external_url' => '外部 URL', - 'pref_optional_tj_location' => '場所', - 'pref_optional_tj_links' => '取引リンク', - 'optional_field_meta_dates' => '日付', - 'optional_field_meta_business' => 'ビジネス', - 'optional_field_attachments' => '添付ファイル', - 'optional_field_meta_data' => '任意のメタデータ', - 'external_url' => '外部 URL', - 'pref_notification_bill_reminder' => '期限切れの請求について通知する', - 'pref_notification_new_access_token' => '新しい API アクセストークンが作成されたときに警告する', - 'pref_notification_transaction_creation' => '取引が自動的に作成されたとき警告する', - 'pref_notification_user_login' => '新しい場所からログインしたときに警告する', - 'pref_notification_rule_action_failures' => 'ルールアクションの実行に失敗したときに警告する (SlackまたはDiscordのみ)', - 'pref_notifications' => '通知', - 'pref_notifications_help' => 'これらは受け取る通知であるかどうかを示します。いくつかの通知には機密情報が含まれている場合があります。', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Firefly IIIにSlackで通知させたい場合は、WebhookのURLをここに入力します。そうでなければ、フィールドを空白のままにします。 管理者の場合は、管理画面にもこのURLを設定する必要があります。', - 'slack_url_label' => 'Slack Incoming Webhook URL', + 'dark_mode_option_browser' => 'ブラウザに判断させる', + 'dark_mode_option_light' => '常にライト', + 'dark_mode_option_dark' => '常にダーク', + 'equal_to_language' => '(言語と同一)', + 'dark_mode_preference' => 'ダークモード', + 'dark_mode_preference_help' => 'Firefly III にいつダークモードを使用するか伝えましょう。', + 'pref_home_screen_accounts' => 'ホーム画面の口座', + 'pref_home_screen_accounts_help' => 'ホームページにどの口座を表示しますか?', + 'pref_view_range' => '閲覧範囲', + 'pref_view_range_help' => 'いくつかのチャートは自動的に期間でグループ化されます。予算も期間にグループ化されます。どの期間を設定しますか?', + 'pref_1D' => '1日', + 'pref_1W' => '1週', + 'pref_1M' => '1ヵ月', + 'pref_3M' => '3ヶ月 (四半期)', + 'pref_6M' => '6ヶ月', + 'pref_1Y' => '1年', + 'pref_last365' => '昨年', + 'pref_last90' => '過去 90 日間', + 'pref_last30' => '過去 30 日間', + 'pref_last7' => '過去 7 日間', + 'pref_YTD' => '年始から今日まで', + 'pref_QTD' => '今四半期', + 'pref_MTD' => '今月', + 'pref_languages' => '言語', + 'pref_locale' => 'ロケール設定', + 'pref_languages_help' => 'Firefly III は多言語に対応しています。どれがお好みですか?', + 'pref_locale_help' => 'Firefly III では、通貨、数字、日付のフォーマットなど、他のローカル設定に変更できます。 このリストにあるエントリは、あなたのシステムでサポートされていない可能性があります。 Firefly III にはすべてのロケールの正しい日付設定がありません。改善のために私に連絡してください。', + 'pref_locale_no_demo' => 'この機能はデモユーザーでは動作しません。', + 'pref_custom_fiscal_year' => '会計年度設定', + 'pref_custom_fiscal_year_label' => '有効', + 'pref_custom_fiscal_year_help' => '1月1日から12月31日まで以外の会計年度を使用する国では、 これを有効にして、会計年度の開始日/終了日を指定します。', + 'pref_fiscal_year_start_label' => '会計年度開始日', + 'pref_two_factor_auth' => '2段階認証', + 'pref_two_factor_auth_help' => '2段階認証 (2要素認証) を有効にすると、アカウントにセキュリティ層を追加できます。 あなたは何か知っていること (パスワード) と、何かを持っていること (確認コード) でサインインします。 認証コードは Authy や Google Authenticator のようなスマートフォンアプリケーションによって生成されます。', + 'pref_enable_two_factor_auth' => '2段階認証を有効にする', + 'pref_two_factor_auth_disabled' => '2段階認証コードが削除されて無効になっています', + 'pref_two_factor_auth_remove_it' => '認証アプリからアカウントを削除することを忘れないでください!', + 'pref_two_factor_auth_code' => 'コードを確認', + 'pref_two_factor_auth_code_help' => 'Authy や Google Authenticator などの携帯電話のアプリケーションでQRコードをスキャンし、生成されたコードを入力します。', + 'pref_two_factor_auth_reset_code' => '確認コードをリセット', + 'pref_two_factor_auth_disable_2fa' => '2段階認証を無効にする', + '2fa_use_secret_instead' => 'QR コードをスキャンできない場合は、代わりにシークレットを使用してください: :secret', + '2fa_backup_codes' => 'デバイスを失くした場合に備えて、これらのバックアップコードを保存してください。', + '2fa_already_enabled' => '2段階認証はすでに有効です。', + 'wrong_mfa_code' => 'この多要素認証コードは無効です。', + 'pref_save_settings' => '設定を保存', + 'saved_preferences' => '設定が保存されました!', + 'preferences_general' => '一般設定', + 'preferences_frontpage' => 'ホーム画面', + 'preferences_security' => 'セキュリティ', + 'preferences_layout' => 'レイアウト', + 'preferences_notifications' => '通知', + 'pref_home_show_deposits' => 'ホーム画面に入金を表示する', + 'pref_home_show_deposits_info' => 'ホーム画面にはすでに支出口座が表示されています。収入口座も表示しますか?', + 'pref_home_do_show_deposits' => 'はい、表示します', + 'successful_count' => ':count 通のエラーがあります', + 'list_page_size_title' => 'ページの表示件数', + 'list_page_size_help' => 'あらゆるリスト (アカウント、取引など) のページあたりの最大表示数です。', + 'list_page_size_label' => 'ページの表示件数', + 'between_dates' => '(:start と :end)', + 'pref_optional_fields_transaction' => '取引のオプション項目', + 'pref_optional_fields_transaction_help' => 'デフォルトでは、新しい取引を作成するとき、すべての項目が有効ではありません (乱雑になるため)。 以下からあなたが便利と思う項目を有効にできます。すでに入力されている項目は、無効としても設定に関係なく表示されます。', + 'optional_tj_date_fields' => '日付フィールド', + 'optional_tj_other_fields' => 'その他の項目', + 'optional_tj_attachment_fields' => '添付ファイル項目', + 'pref_optional_tj_interest_date' => '利息日', + 'pref_optional_tj_book_date' => '記帳日', + 'pref_optional_tj_process_date' => '処理日', + 'pref_optional_tj_due_date' => '期限', + 'pref_optional_tj_payment_date' => '引き落とし日', + 'pref_optional_tj_invoice_date' => '領収書発行日', + 'pref_optional_tj_internal_reference' => '内部参照', + 'pref_optional_tj_notes' => '備考', + 'pref_optional_tj_attachments' => '添付ファイル', + 'pref_optional_tj_external_url' => '外部 URL', + 'pref_optional_tj_location' => '場所', + 'pref_optional_tj_links' => '取引リンク', + 'optional_field_meta_dates' => '日付', + 'optional_field_meta_business' => 'ビジネス', + 'optional_field_attachments' => '添付ファイル', + 'optional_field_meta_data' => '任意のメタデータ', + 'external_url' => '外部 URL', + 'pref_notification_bill_reminder' => '期限切れの請求について通知する', + 'pref_notification_new_access_token' => '新しい API アクセストークンが作成されたときに警告する', + 'pref_notification_transaction_creation' => '取引が自動的に作成されたとき警告する', + 'pref_notification_user_login' => '新しい場所からログインしたときに警告する', + 'pref_notification_rule_action_failures' => 'ルールアクションの実行に失敗したときに警告する (SlackまたはDiscordのみ)', + 'pref_notifications' => '通知', + 'pref_notifications_help' => 'これらは受け取る通知であるかどうかを示します。いくつかの通知には機密情報が含まれている場合があります。', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Firefly IIIにSlackで通知させたい場合は、WebhookのURLをここに入力します。そうでなければ、フィールドを空白のままにします。 管理者の場合は、管理画面にもこのURLを設定する必要があります。', + 'slack_url_label' => 'Slack Incoming Webhook URL', // Financial administrations - 'administration_index' => '財務管理', - 'administrations_index_menu' => '財務管理', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => '財務管理', + 'administrations_index_menu' => '財務管理', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Firefly III からデータを消去', - 'purge_data_expl' => '「パージ」とは、「削除済みのものを削除する」ことを意味します。通常、Firefly IIIは何も永久には削除せず非表示にします。下のボタンはこれまでに削除されたレコードのすべてを削除します。', - 'delete_stuff_header' => '削除とパージ', - 'purge_all_data' => '削除済の全レコードをパージ', - 'purge_data' => 'データを消去', - 'purged_all_records' => '削除済の全レコードがパージされました。', - 'delete_data_title' => 'Firefly IIIからデータを削除', - 'permanent_delete_stuff' => 'あなたはFirefly IIIからデータを削除することができます。以下のボタンで、表示されているものと非表示のものが削除されます。 取り消しボタンはありませんが、必要な場合はサルベージできる項目がデータベースに残っている可能性があります。', - 'other_sessions_logged_out' => 'すべてのセッションでログアウトしました。', - 'delete_unused_accounts' => '未使用の口座を削除すると、オートコンプリートの一覧がきれいになります。', - 'delete_all_unused_accounts' => '未使用の口座を削除', - 'deleted_all_unused_accounts' => 'すべての未使用の口座は削除されました', - 'delete_all_budgets' => 'すべての予算を削除', - 'delete_all_categories' => 'すべてのカテゴリを削除', - 'delete_all_tags' => 'すべてのタグを削除', - 'delete_all_bills' => 'すべての請求を削除', - 'delete_all_piggy_banks' => 'すべての貯金箱を削除', - 'delete_all_rules' => 'すべてのルールを削除', - 'delete_all_recurring' => 'すべての定期的な取引を削除', - 'delete_all_object_groups' => 'すべてのグループを削除', - 'delete_all_accounts' => 'すべての口座を削除', - 'delete_all_asset_accounts' => 'すべての資産口座を削除', - 'delete_all_expense_accounts' => 'すべての支出口座を削除', - 'delete_all_revenue_accounts' => 'すべての収入口座を削除', - 'delete_all_liabilities' => 'すべての負債を削除', - 'delete_all_transactions' => 'すべての取引を削除', - 'delete_all_withdrawals' => 'すべての引き出しを削除', - 'delete_all_deposits' => 'すべての入金を削除', - 'delete_all_transfers' => 'すべての送金を削除', - 'also_delete_transactions' => '口座を削除すると、関連するすべての出金、入金、送金も削除されます!', - 'deleted_all_budgets' => 'すべての予算が削除されました', - 'deleted_all_categories' => 'すべてのカテゴリが削除されました', - 'deleted_all_tags' => 'すべてのタグが削除されました', - 'deleted_all_bills' => 'すべての請求が削除されました', - 'deleted_all_piggy_banks' => 'すべての貯金箱が削除されました', - 'deleted_all_rules' => 'すべてのルールとルールグループが削除されました', - 'deleted_all_object_groups' => 'すべてのグループが削除されました', - 'deleted_all_accounts' => 'すべてのアカウントが削除されました', - 'deleted_all_asset_accounts' => 'すべての資産口座が削除されました', - 'deleted_all_expense_accounts' => 'すべての支出口座が削除されました', - 'deleted_all_revenue_accounts' => 'すべての収入口座が削除されました', - 'deleted_all_liabilities' => 'すべての負債が削除されました', - 'deleted_all_transactions' => 'すべての取引が削除されました', - 'deleted_all_withdrawals' => 'すべての引き出しが削除されました', - 'deleted_all_deposits' => 'すべての入金が削除されました', - 'deleted_all_transfers' => 'すべての送金が削除されました', - 'deleted_all_recurring' => 'すべての定期的な取引が削除されました', - 'change_your_password' => 'パスワードを変更する', - 'delete_account' => 'アカウントを削除', - 'current_password' => '現在のパスワード', - 'new_password' => '新しいパスワード', - 'new_password_again' => '新しいパスワード(確認)', - 'delete_your_account' => 'アカウントを削除', - 'delete_your_account_help' => '口座を削除すると、口座や取引など Firefly III に保存したすべてのもの が削除されます。', - 'delete_your_account_password' => '続行するにはパスワードを入力してください', - 'password' => 'パスワード', - 'are_you_sure' => '本当によろしいですか?これを元に戻すことはできません。', - 'delete_account_button' => 'アカウントを削除', - 'invalid_current_password' => '現在のパスワードが正しくありません!', - 'password_changed' => 'パスワードが変更されました!', - 'should_change' => 'アイデアはパスワードを変更することです。', - 'invalid_password' => 'パスワードが正しくありません!', - 'what_is_pw_security' => '「パスワードの安全性確認」とは?', - 'secure_pw_title' => '安全なパスワードを選択する方法', - 'forgot_password_response' => 'ありがとうございます。このメールアドレスのアカウントが存在する場合は、受信トレイで手順を見つけられるでしょう。', - 'secure_pw_history' => '数日に一回は、どこかのサイトのユーザーパスワード漏洩のニュースを目にします。 ハッカーと泥棒は、あなたの個人情報を盗むために、これらのパスワードを使用するでしょう。この情報は大切です。', - 'secure_pw_ff' => 'インターネット上のあらゆるところで、同じパスワードを使用していますか?その場合、ひとつのサイトがパスワードを漏洩すると、ハッカーはあなたのすべてのデータにアクセスできてしまいます。 Firefly III があなたの財務記録を保護するためには、あなたが強力でユニークなパスワードを使用することが必要です。', - 'secure_pw_check_box' => 'Firefly III で使用するパスワードが過去に盗まれているかどうかを確認できます。 該当する場合、Firefly III はそのパスワードを使用しないことをお勧めします。', - 'secure_pw_working_title' => 'どのような仕組みですか?', - 'secure_pw_working' => 'チェックすると、Firefly III はあなたのパスワードの SHA1 ハッシュの最初の5文字をTroy Huntのウェブサイトに送信し、リストにあるか確認します。これにより、最新の NIST Special Publication で推奨されている通り、あなたが安全ではないパスワードを使用するのを防ぎます。', - 'secure_pw_should' => 'チェックを入れるべき?', - 'secure_pw_long_password' => 'はい。常にパスワードが安全であることを確認してください。', - 'command_line_token' => 'コマンドライントークン', - 'explain_command_line_token' => 'データのエクスポートなどのコマンドラインオプションを実行するには、このトークンが必要です。 それら慎重に扱うべきコマンドはトークンがなければ動作しません。私を含め、誰にもコマンドライントークンを共有しないでください。 もし紛失したり、疑心暗鬼に陥っている場合は、ボタンでトークンを再生成してください。', - 'regenerate_command_line_token' => 'コマンドライントークンを再生成', - 'token_regenerated' => '新しいコマンドライントークンが生成されました', - 'change_your_email' => 'メールアドレスを変更する', - 'email_verification' => '新旧のメールアドレスにメールが送信されます。 セキュリティのため、新しいメールアドレスを確認するまでログインできません。 Firefly III 環境がメール送信可能かどうか分からない場合は、この機能を使用しないでください。 管理者であれば、 管理 でテストできます。', - 'email_changed_logout' => 'メールアドレスを確認するまでログインできません。', - 'login_with_new_email' => '新しいメールアドレスでログインできるようになりました。', - 'login_with_old_email' => '古いメールアドレスで再度ログインできるようになりました。', - 'login_provider_local_only' => 'この操作は「:login_provider」による認証では使用できません。', - 'external_user_mgt_disabled' => 'この操作は Firefly III がユーザ管理や認証処理を担わない場合には使用できません。', - 'external_auth_disabled' => 'この操作は Firefly III が認証処理を担わない場合には使用できません。', - 'delete_local_info_only' => 'Firefly III がユーザー管理や認証処理に担わないため、この機能はローカルの Firefly III の情報のみを削除します。', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuthクライアント', - 'profile_oauth_no_clients' => 'OAuthクライアントを作成していません。', - 'profile_oauth_clients_external_auth' => 'Autheliaのような外部認証プロバイダを使用している場合、OAuth クライアントは動作しません。パーソナルアクセストークンのみを使用できます。', - 'profile_oauth_clients_header' => 'クライアント', - 'profile_oauth_client_id' => 'クライアント ID', - 'profile_oauth_client_name' => '名前', - 'profile_oauth_client_secret' => 'シークレット', - 'profile_oauth_create_new_client' => '新しいクライアントを作成', - 'profile_oauth_create_client' => 'クライアントを作成', - 'profile_oauth_edit_client' => 'クライアントの編集', - 'profile_oauth_name_help' => 'ユーザーが認識、信頼するものです。', - 'profile_oauth_redirect_url' => 'リダイレクト URL', - 'profile_oauth_redirect_url_help' => 'アプリケーションの認証コールバック URL です。', - 'profile_authorized_apps' => '認証済みアプリケーション', - 'profile_authorized_clients' => '認証済みクライアント', - 'profile_scopes' => 'スコープ', - 'profile_revoke' => '無効にする', - 'profile_oauth_client_secret_title' => 'クライアントシークレット', - 'profile_oauth_client_secret_expl' => '新しいクライアントシークレットです。 これは一度しか表示されないので、失くさないでください!このシークレットにより API リクエストを実行できます。', - 'profile_personal_access_tokens' => 'パーソナルアクセストークン', - 'profile_personal_access_token' => '個人アクセストークン', - 'profile_oauth_confidential' => '機密', - 'profile_oauth_confidential_help' => 'クライアントにシークレットを使って認証することを要求します。内々のクライアントは、許可されていない者に公開することなく、認証情報を安全な方法で保持できます。 ネイティブデスクトップや JavaScript SPAアプリケーションなどのパブリックアプリケーションは、シークレットを安全に保持することはできません。', - 'profile_personal_access_token_explanation' => '新しいパーソナルアクセストークンです。 これは一度しか表示されないので、失くさないでください!このシークレットにより API リクエストを実行できます。', - 'profile_no_personal_access_token' => 'パーソナルアクセストークンは作成されていません。', - 'profile_create_new_token' => '新しいトークンを作成', - 'profile_create_token' => 'トークンを作成', - 'profile_create' => '作成', - 'profile_save_changes' => '変更を保存', - 'profile_whoops' => 'おっと!', - 'profile_something_wrong' => '何か問題が発生しました!', - 'profile_try_again' => '問題が発生しました。もう一度やり直してください。', - 'amounts' => '金額', - 'multi_account_warning_unknown' => '作成する取引の種類に応じて、続く分割の引き出し口座や預け入れ口座は、取引の最初の分割で定義されているものによって覆される可能性があります。', - 'multi_account_warning_withdrawal' => '続く分割の引き出し口座は、出金の最初の分割の定義によって覆されることに注意してください。', - 'multi_account_warning_deposit' => '続く分割の預け入れ口座は、送金の最初の分割の定義によって覆されることに注意してください。', - 'multi_account_warning_transfer' => '続く分割の預け入れ口座と引き出し口座は、送金の最初の分割の定義によって覆されることに注意してください。', + 'purge_data_title' => 'Firefly III からデータを消去', + 'purge_data_expl' => '「パージ」とは、「削除済みのものを削除する」ことを意味します。通常、Firefly IIIは何も永久には削除せず非表示にします。下のボタンはこれまでに削除されたレコードのすべてを削除します。', + 'delete_stuff_header' => '削除とパージ', + 'purge_all_data' => '削除済の全レコードをパージ', + 'purge_data' => 'データを消去', + 'purged_all_records' => '削除済の全レコードがパージされました。', + 'delete_data_title' => 'Firefly IIIからデータを削除', + 'permanent_delete_stuff' => 'あなたはFirefly IIIからデータを削除することができます。以下のボタンで、表示されているものと非表示のものが削除されます。 取り消しボタンはありませんが、必要な場合はサルベージできる項目がデータベースに残っている可能性があります。', + 'other_sessions_logged_out' => 'すべてのセッションでログアウトしました。', + 'delete_unused_accounts' => '未使用の口座を削除すると、オートコンプリートの一覧がきれいになります。', + 'delete_all_unused_accounts' => '未使用の口座を削除', + 'deleted_all_unused_accounts' => 'すべての未使用の口座は削除されました', + 'delete_all_budgets' => 'すべての予算を削除', + 'delete_all_categories' => 'すべてのカテゴリを削除', + 'delete_all_tags' => 'すべてのタグを削除', + 'delete_all_bills' => 'すべての請求を削除', + 'delete_all_piggy_banks' => 'すべての貯金箱を削除', + 'delete_all_rules' => 'すべてのルールを削除', + 'delete_all_recurring' => 'すべての定期的な取引を削除', + 'delete_all_object_groups' => 'すべてのグループを削除', + 'delete_all_accounts' => 'すべての口座を削除', + 'delete_all_asset_accounts' => 'すべての資産口座を削除', + 'delete_all_expense_accounts' => 'すべての支出口座を削除', + 'delete_all_revenue_accounts' => 'すべての収入口座を削除', + 'delete_all_liabilities' => 'すべての負債を削除', + 'delete_all_transactions' => 'すべての取引を削除', + 'delete_all_withdrawals' => 'すべての引き出しを削除', + 'delete_all_deposits' => 'すべての入金を削除', + 'delete_all_transfers' => 'すべての送金を削除', + 'also_delete_transactions' => '口座を削除すると、関連するすべての出金、入金、送金も削除されます!', + 'deleted_all_budgets' => 'すべての予算が削除されました', + 'deleted_all_categories' => 'すべてのカテゴリが削除されました', + 'deleted_all_tags' => 'すべてのタグが削除されました', + 'deleted_all_bills' => 'すべての請求が削除されました', + 'deleted_all_piggy_banks' => 'すべての貯金箱が削除されました', + 'deleted_all_rules' => 'すべてのルールとルールグループが削除されました', + 'deleted_all_object_groups' => 'すべてのグループが削除されました', + 'deleted_all_accounts' => 'すべてのアカウントが削除されました', + 'deleted_all_asset_accounts' => 'すべての資産口座が削除されました', + 'deleted_all_expense_accounts' => 'すべての支出口座が削除されました', + 'deleted_all_revenue_accounts' => 'すべての収入口座が削除されました', + 'deleted_all_liabilities' => 'すべての負債が削除されました', + 'deleted_all_transactions' => 'すべての取引が削除されました', + 'deleted_all_withdrawals' => 'すべての引き出しが削除されました', + 'deleted_all_deposits' => 'すべての入金が削除されました', + 'deleted_all_transfers' => 'すべての送金が削除されました', + 'deleted_all_recurring' => 'すべての定期的な取引が削除されました', + 'change_your_password' => 'パスワードを変更する', + 'delete_account' => 'アカウントを削除', + 'current_password' => '現在のパスワード', + 'new_password' => '新しいパスワード', + 'new_password_again' => '新しいパスワード(確認)', + 'delete_your_account' => 'アカウントを削除', + 'delete_your_account_help' => '口座を削除すると、口座や取引など Firefly III に保存したすべてのもの が削除されます。', + 'delete_your_account_password' => '続行するにはパスワードを入力してください', + 'password' => 'パスワード', + 'are_you_sure' => '本当によろしいですか?これを元に戻すことはできません。', + 'delete_account_button' => 'アカウントを削除', + 'invalid_current_password' => '現在のパスワードが正しくありません!', + 'password_changed' => 'パスワードが変更されました!', + 'should_change' => 'アイデアはパスワードを変更することです。', + 'invalid_password' => 'パスワードが正しくありません!', + 'what_is_pw_security' => '「パスワードの安全性確認」とは?', + 'secure_pw_title' => '安全なパスワードを選択する方法', + 'forgot_password_response' => 'ありがとうございます。このメールアドレスのアカウントが存在する場合は、受信トレイで手順を見つけられるでしょう。', + 'secure_pw_history' => '数日に一回は、どこかのサイトのユーザーパスワード漏洩のニュースを目にします。 ハッカーと泥棒は、あなたの個人情報を盗むために、これらのパスワードを使用するでしょう。この情報は大切です。', + 'secure_pw_ff' => 'インターネット上のあらゆるところで、同じパスワードを使用していますか?その場合、ひとつのサイトがパスワードを漏洩すると、ハッカーはあなたのすべてのデータにアクセスできてしまいます。 Firefly III があなたの財務記録を保護するためには、あなたが強力でユニークなパスワードを使用することが必要です。', + 'secure_pw_check_box' => 'Firefly III で使用するパスワードが過去に盗まれているかどうかを確認できます。 該当する場合、Firefly III はそのパスワードを使用しないことをお勧めします。', + 'secure_pw_working_title' => 'どのような仕組みですか?', + 'secure_pw_working' => 'チェックすると、Firefly III はあなたのパスワードの SHA1 ハッシュの最初の5文字をTroy Huntのウェブサイトに送信し、リストにあるか確認します。これにより、最新の NIST Special Publication で推奨されている通り、あなたが安全ではないパスワードを使用するのを防ぎます。', + 'secure_pw_should' => 'チェックを入れるべき?', + 'secure_pw_long_password' => 'はい。常にパスワードが安全であることを確認してください。', + 'command_line_token' => 'コマンドライントークン', + 'explain_command_line_token' => 'データのエクスポートなどのコマンドラインオプションを実行するには、このトークンが必要です。 それら慎重に扱うべきコマンドはトークンがなければ動作しません。私を含め、誰にもコマンドライントークンを共有しないでください。 もし紛失したり、疑心暗鬼に陥っている場合は、ボタンでトークンを再生成してください。', + 'regenerate_command_line_token' => 'コマンドライントークンを再生成', + 'token_regenerated' => '新しいコマンドライントークンが生成されました', + 'change_your_email' => 'メールアドレスを変更する', + 'email_verification' => '新旧のメールアドレスにメールが送信されます。 セキュリティのため、新しいメールアドレスを確認するまでログインできません。 Firefly III 環境がメール送信可能かどうか分からない場合は、この機能を使用しないでください。 管理者であれば、 管理 でテストできます。', + 'email_changed_logout' => 'メールアドレスを確認するまでログインできません。', + 'login_with_new_email' => '新しいメールアドレスでログインできるようになりました。', + 'login_with_old_email' => '古いメールアドレスで再度ログインできるようになりました。', + 'login_provider_local_only' => 'この操作は「:login_provider」による認証では使用できません。', + 'external_user_mgt_disabled' => 'この操作は Firefly III がユーザ管理や認証処理を担わない場合には使用できません。', + 'external_auth_disabled' => 'この操作は Firefly III が認証処理を担わない場合には使用できません。', + 'delete_local_info_only' => 'Firefly III がユーザー管理や認証処理に担わないため、この機能はローカルの Firefly III の情報のみを削除します。', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuthクライアント', + 'profile_oauth_no_clients' => 'OAuthクライアントを作成していません。', + 'profile_oauth_clients_external_auth' => 'Autheliaのような外部認証プロバイダを使用している場合、OAuth クライアントは動作しません。パーソナルアクセストークンのみを使用できます。', + 'profile_oauth_clients_header' => 'クライアント', + 'profile_oauth_client_id' => 'クライアント ID', + 'profile_oauth_client_name' => '名前', + 'profile_oauth_client_secret' => 'シークレット', + 'profile_oauth_create_new_client' => '新しいクライアントを作成', + 'profile_oauth_create_client' => 'クライアントを作成', + 'profile_oauth_edit_client' => 'クライアントの編集', + 'profile_oauth_name_help' => 'ユーザーが認識、信頼するものです。', + 'profile_oauth_redirect_url' => 'リダイレクト URL', + 'profile_oauth_redirect_url_help' => 'アプリケーションの認証コールバック URL です。', + 'profile_authorized_apps' => '認証済みアプリケーション', + 'profile_authorized_clients' => '認証済みクライアント', + 'profile_scopes' => 'スコープ', + 'profile_revoke' => '無効にする', + 'profile_oauth_client_secret_title' => 'クライアントシークレット', + 'profile_oauth_client_secret_expl' => '新しいクライアントシークレットです。 これは一度しか表示されないので、失くさないでください!このシークレットにより API リクエストを実行できます。', + 'profile_personal_access_tokens' => 'パーソナルアクセストークン', + 'profile_personal_access_token' => '個人アクセストークン', + 'profile_oauth_confidential' => '機密', + 'profile_oauth_confidential_help' => 'クライアントにシークレットを使って認証することを要求します。内々のクライアントは、許可されていない者に公開することなく、認証情報を安全な方法で保持できます。 ネイティブデスクトップや JavaScript SPAアプリケーションなどのパブリックアプリケーションは、シークレットを安全に保持することはできません。', + 'profile_personal_access_token_explanation' => '新しいパーソナルアクセストークンです。 これは一度しか表示されないので、失くさないでください!このシークレットにより API リクエストを実行できます。', + 'profile_no_personal_access_token' => 'パーソナルアクセストークンは作成されていません。', + 'profile_create_new_token' => '新しいトークンを作成', + 'profile_create_token' => 'トークンを作成', + 'profile_create' => '作成', + 'profile_save_changes' => '変更を保存', + 'profile_whoops' => 'おっと!', + 'profile_something_wrong' => '何か問題が発生しました!', + 'profile_try_again' => '問題が発生しました。もう一度やり直してください。', + 'amounts' => '金額', + 'multi_account_warning_unknown' => '作成する取引の種類に応じて、続く分割の引き出し口座や預け入れ口座は、取引の最初の分割で定義されているものによって覆される可能性があります。', + 'multi_account_warning_withdrawal' => '続く分割の引き出し口座は、出金の最初の分割の定義によって覆されることに注意してください。', + 'multi_account_warning_deposit' => '続く分割の預け入れ口座は、送金の最初の分割の定義によって覆されることに注意してください。', + 'multi_account_warning_transfer' => '続く分割の預け入れ口座と引き出し口座は、送金の最初の分割の定義によって覆されることに注意してください。', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Firefly III からデータをエクスポート', - 'export_data_menu' => 'データのエクスポート', - 'export_data_bc' => 'Firefly III からデータをエクスポート', - 'export_data_main_title' => 'Firefly III からデータをエクスポート', - 'export_data_expl' => 'このリンクで Firefly IIIからすべての取引とメタデータをエクスポートできます。処理の詳細についてはヘルプ (右上の(?)アイコン) を参照してください。', - 'export_data_all_transactions' => 'すべての取引をエクスポート', - 'export_data_advanced_expl' => 'より高度、または特定のエクスポートが必要な場合、コンソールコマンド php artisan help foreflily-ii:export-data の使用方法のヘルプを参照してください。', + 'export_data_title' => 'Firefly III からデータをエクスポート', + 'export_data_menu' => 'データのエクスポート', + 'export_data_bc' => 'Firefly III からデータをエクスポート', + 'export_data_main_title' => 'Firefly III からデータをエクスポート', + 'export_data_expl' => 'このリンクで Firefly IIIからすべての取引とメタデータをエクスポートできます。処理の詳細についてはヘルプ (右上の(?)アイコン) を参照してください。', + 'export_data_all_transactions' => 'すべての取引をエクスポート', + 'export_data_advanced_expl' => 'より高度、または特定のエクスポートが必要な場合、コンソールコマンド php artisan help foreflily-ii:export-data の使用方法のヘルプを参照してください。', // attachments - 'nr_of_attachments' => '1個の添付ファイル|:count 個の添付ファイル', - 'attachments' => '添付ファイル', - 'edit_attachment' => '添付ファイル「:name」の編集', - 'update_attachment' => '添付ファイルを更新', - 'delete_attachment' => '添付ファイル「:name」の削除', - 'attachment_deleted' => '添付ファイル「:name」を削除しました', - 'liabilities_deleted' => '債務「:name」を削除しました', - 'attachment_updated' => '添付ファイル「:name」を更新しました', - 'upload_max_file_size' => '最大ファイルサイズ: :size', - 'list_all_attachments' => 'すべての添付ファイルのリスト', + 'nr_of_attachments' => '1個の添付ファイル|:count 個の添付ファイル', + 'attachments' => '添付ファイル', + 'edit_attachment' => '添付ファイル「:name」の編集', + 'update_attachment' => '添付ファイルを更新', + 'delete_attachment' => '添付ファイル「:name」の削除', + 'attachment_deleted' => '添付ファイル「:name」を削除しました', + 'liabilities_deleted' => '債務「:name」を削除しました', + 'attachment_updated' => '添付ファイル「:name」を更新しました', + 'upload_max_file_size' => '最大ファイルサイズ: :size', + 'list_all_attachments' => 'すべての添付ファイルのリスト', // transaction index - 'is_reconciled_fields_dropped' => 'この取引は照合済みのため、口座や金額を更新することはできません。', - 'title_expenses' => '支出', - 'title_withdrawal' => '支出', - 'title_revenue' => '収益 / 収入', - 'title_deposit' => '収益 / 収入', - 'title_transfer' => '送金', - 'title_transfers' => '送金', - 'submission_options' => '送信オプション', - 'apply_rules_checkbox' => 'ルールを適用', - 'fire_webhooks_checkbox' => 'Webhookを実行', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'この取引は照合済みのため、口座や金額を更新することはできません。', + 'title_expenses' => '支出', + 'title_withdrawal' => '支出', + 'title_revenue' => '収益 / 収入', + 'title_deposit' => '収益 / 収入', + 'title_transfer' => '送金', + 'title_transfers' => '送金', + 'submission_options' => '送信オプション', + 'apply_rules_checkbox' => 'ルールを適用', + 'fire_webhooks_checkbox' => 'Webhookを実行', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'この取引はすでに出金です', - 'convert_is_already_type_Deposit' => 'この取引はすでに入金です', - 'convert_is_already_type_Transfer' => 'この取引はすでに送金です', - 'convert_to_Withdrawal' => '「:description」を出金に変換', - 'convert_to_Deposit' => '「:description」を入金に変換', - 'convert_to_Transfer' => '「:description」を送金に変換', - 'convert_options_WithdrawalDeposit' => '出金を入金に変換', - 'convert_options_WithdrawalTransfer' => '出金を送金に変換', - 'convert_options_DepositTransfer' => '入金を送金に変換', - 'convert_options_DepositWithdrawal' => '入金を出金に変換', - 'convert_options_TransferWithdrawal' => '送金を出金に変換', - 'convert_options_TransferDeposit' => '送金を入金に変換', - 'convert_Withdrawal_to_deposit' => 'この出金を入金に変換', - 'convert_Withdrawal_to_transfer' => 'この出金を送金に変換', - 'convert_Deposit_to_withdrawal' => 'この入金を出金に変換', - 'convert_Deposit_to_transfer' => 'この入金を送金に変換', - 'convert_Transfer_to_deposit' => 'この送金を入金に変換', - 'convert_Transfer_to_withdrawal' => 'この送金を出金に変換', - 'convert_please_set_revenue_source' => 'お金が入ってくる収入口座を選んでください。', - 'convert_please_set_asset_destination' => 'お金が入る資産口座を選んでください。', - 'convert_please_set_expense_destination' => 'お金が出ていく支出口座を選んでください。', - 'convert_please_set_asset_source' => 'お金が入ってくる資産口座を選んでください。', - 'convert_expl_w_d' => '出金を入金に変換すると、お金は出金ではなく表示された預け入れ口座への入金となります。 |出金を入金に変換すると、お金は出金ではなく表示された預け入れ口座への入金となります。', - 'convert_expl_w_t' => '出金を送金に変換すると、お金は元の支出口座での支出ではなく、引き出し口座から他の資産口座または債務口座への送金となります。|出金を送金に変換すると、お金は元の支出口座での支出ではなく、引き出し口座から他の資産口座または債務口座への送金となります。', - 'convert_expl_d_w' => '入金を出金に変換すると、お金は入金ではなく、表示された引き出し口座からの出金となります。 |入金を出金に変換すると、お金は入金ではなく、表示された引き出し口座からの出金となります。', - 'convert_expl_d_t' => '入金を送金に変換すると、お金は資産口座や債務口座から、一覧にある預け入れ口座への入金となります。|入金を送金に変換すると、お金は資産口座や債務口座から、一覧にある預け入れ口座への入金となります。', - 'convert_expl_t_w' => '送金を出金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座での支出となります。|送金を出金に変換すると、預け入れ口座への送金ではなく、ここで設定した相手先口座での支出となります。', - 'convert_expl_t_d' => '送金を入金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座への入金となります。|送金を入金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座への入金となります。', - 'convert_select_sources' => '変換を完了するには、以下で新しい引き出し口座を設定してください。 |変換を完了するには、以下で新しい引き出し口座を設定してください。', - 'convert_select_destinations' => '変換を完了するには、以下で新しい預け入れ口座を設定してください。 |変換を完了するには、以下で新しい預け入れ口座を設定してください。', - 'converted_to_Withdrawal' => '取引は引き出しに変換されました', - 'converted_to_Deposit' => '取引は入金に変換されました', - 'converted_to_Transfer' => '取引は送金に変換されました', - 'invalid_convert_selection' => '選択した口座は既にこの取引で使用されているか、存在しません。', - 'source_or_dest_invalid' => '正しい取引詳細が見つかりません。変換はできません。', - 'convert_to_withdrawal' => '出金に変換', - 'convert_to_deposit' => '入金に変換', - 'convert_to_transfer' => '送金に変換', + 'convert_is_already_type_Withdrawal' => 'この取引はすでに出金です', + 'convert_is_already_type_Deposit' => 'この取引はすでに入金です', + 'convert_is_already_type_Transfer' => 'この取引はすでに送金です', + 'convert_to_Withdrawal' => '「:description」を出金に変換', + 'convert_to_Deposit' => '「:description」を入金に変換', + 'convert_to_Transfer' => '「:description」を送金に変換', + 'convert_options_WithdrawalDeposit' => '出金を入金に変換', + 'convert_options_WithdrawalTransfer' => '出金を送金に変換', + 'convert_options_DepositTransfer' => '入金を送金に変換', + 'convert_options_DepositWithdrawal' => '入金を出金に変換', + 'convert_options_TransferWithdrawal' => '送金を出金に変換', + 'convert_options_TransferDeposit' => '送金を入金に変換', + 'convert_Withdrawal_to_deposit' => 'この出金を入金に変換', + 'convert_Withdrawal_to_transfer' => 'この出金を送金に変換', + 'convert_Deposit_to_withdrawal' => 'この入金を出金に変換', + 'convert_Deposit_to_transfer' => 'この入金を送金に変換', + 'convert_Transfer_to_deposit' => 'この送金を入金に変換', + 'convert_Transfer_to_withdrawal' => 'この送金を出金に変換', + 'convert_please_set_revenue_source' => 'お金が入ってくる収入口座を選んでください。', + 'convert_please_set_asset_destination' => 'お金が入る資産口座を選んでください。', + 'convert_please_set_expense_destination' => 'お金が出ていく支出口座を選んでください。', + 'convert_please_set_asset_source' => 'お金が入ってくる資産口座を選んでください。', + 'convert_expl_w_d' => '出金を入金に変換すると、お金は出金ではなく表示された預け入れ口座への入金となります。 |出金を入金に変換すると、お金は出金ではなく表示された預け入れ口座への入金となります。', + 'convert_expl_w_t' => '出金を送金に変換すると、お金は元の支出口座での支出ではなく、引き出し口座から他の資産口座または債務口座への送金となります。|出金を送金に変換すると、お金は元の支出口座での支出ではなく、引き出し口座から他の資産口座または債務口座への送金となります。', + 'convert_expl_d_w' => '入金を出金に変換すると、お金は入金ではなく、表示された引き出し口座からの出金となります。 |入金を出金に変換すると、お金は入金ではなく、表示された引き出し口座からの出金となります。', + 'convert_expl_d_t' => '入金を送金に変換すると、お金は資産口座や債務口座から、一覧にある預け入れ口座への入金となります。|入金を送金に変換すると、お金は資産口座や債務口座から、一覧にある預け入れ口座への入金となります。', + 'convert_expl_t_w' => '送金を出金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座での支出となります。|送金を出金に変換すると、預け入れ口座への送金ではなく、ここで設定した相手先口座での支出となります。', + 'convert_expl_t_d' => '送金を入金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座への入金となります。|送金を入金に変換すると、預け入れ口座への送金ではなく、ここで設定した預け入れ口座への入金となります。', + 'convert_select_sources' => '変換を完了するには、以下で新しい引き出し口座を設定してください。 |変換を完了するには、以下で新しい引き出し口座を設定してください。', + 'convert_select_destinations' => '変換を完了するには、以下で新しい預け入れ口座を設定してください。 |変換を完了するには、以下で新しい預け入れ口座を設定してください。', + 'converted_to_Withdrawal' => '取引は引き出しに変換されました', + 'converted_to_Deposit' => '取引は入金に変換されました', + 'converted_to_Transfer' => '取引は送金に変換されました', + 'invalid_convert_selection' => '選択した口座は既にこの取引で使用されているか、存在しません。', + 'source_or_dest_invalid' => '正しい取引詳細が見つかりません。変換はできません。', + 'convert_to_withdrawal' => '出金に変換', + 'convert_to_deposit' => '入金に変換', + 'convert_to_transfer' => '送金に変換', // create new stuff: - 'create_new_withdrawal' => '新規出金を作成', - 'create_new_deposit' => '新規入金を作成', - 'create_new_transfer' => '新規送金を作成', - 'create_new_asset' => '新しい資産口座を作成', - 'create_new_liabilities' => '新しい責任を作成', - 'create_new_expense' => '新しい支出口座を作成', - 'create_new_revenue' => '新しい収入口座を作成', - 'create_new_piggy_bank' => '新規貯金箱の作成', - 'create_new_bill' => '新しい請求を作成', - 'create_new_subscription' => '新しいサブスクリプションを作成', - 'create_new_rule' => '新しいルールを作成', + 'create_new_withdrawal' => '新規出金を作成', + 'create_new_deposit' => '新規入金を作成', + 'create_new_transfer' => '新規送金を作成', + 'create_new_asset' => '新しい資産口座を作成', + 'create_new_liabilities' => '新しい責任を作成', + 'create_new_expense' => '新しい支出口座を作成', + 'create_new_revenue' => '新しい収入口座を作成', + 'create_new_piggy_bank' => '新規貯金箱の作成', + 'create_new_bill' => '新しい請求を作成', + 'create_new_subscription' => '新しいサブスクリプションを作成', + 'create_new_rule' => '新しいルールを作成', // currencies: - 'create_currency' => '新しい通貨を作成', - 'store_currency' => '新しい通貨を保存', - 'update_currency' => '通貨を更新', - 'new_default_currency' => '「:name」はデフォルト通貨です。', - 'default_currency_failed' => '「:name」をデフォルト通貨にすることができませんでした。ログを確認してください。', - 'cannot_delete_currency' => ':nameは使用されているため削除できません。', - 'cannot_delete_fallback_currency' => ':name はシステムのフォールバック通貨であり、削除できません。', - 'cannot_disable_currency_journals' => '取引がまだ使用しているため、:name を無効にできません。', - 'cannot_disable_currency_last_left' => '唯一の有効な通貨であるため、:name を無効にできません。', - 'cannot_disable_currency_account_meta' => '資産口座で使用されているため、:name を無効にできません。', - 'cannot_disable_currency_bills' => '請求で使用されているため、:name を無効にできません。', - 'cannot_disable_currency_recurring' => '定期的な取引で使用されているため、:name を無効にできません。', - 'cannot_disable_currency_available_budgets' => '有効な予算で使用されているため、:name を無効にできません。', - 'cannot_disable_currency_budget_limits' => '予算制限で使用されているため、:name を無効にできません。', - 'cannot_disable_currency_current_default' => '現在のデフォルト通貨であるため、:name を無効にできません。', - 'cannot_disable_currency_system_fallback' => 'システムのデフォルト通貨であるため、:name を無効にできません。', - 'disable_EUR_side_effects' => 'Euro はシステムの緊急フォールバック通貨です。無効にすると意図しない副作用が発生し、保証できません。', - 'deleted_currency' => '通貨「:name」を削除しました', - 'created_currency' => '通貨「:name」が作成されました', - 'could_not_store_currency' => '新しい通貨を保存できませんでした。', - 'updated_currency' => '通貨「:name」が更新されました', - 'ask_site_owner' => '通貨の追加、削除、編集を:ownerに依頼してください。', - 'currencies_intro' => 'Firefly III はさまざまな通貨をサポートしており、ここで設定および有効にできます。', - 'make_default_currency' => 'デフォルトにする', - 'default_currency' => 'デフォルト', - 'currency_is_disabled' => '無効', - 'enable_currency' => '有効', - 'disable_currency' => '無効', - 'currencies_default_disabled' => 'これらの通貨のほとんどはデフォルトで無効になっています。使用するには、まず有効にする必要があります。', - 'currency_is_now_enabled' => '通貨「:name」が有効になりました', - 'could_not_enable_currency' => '通貨「:name」を有効にできませんでした。ログを確認してください。', - 'currency_is_now_disabled' => '通貨「:name」は無効になりました', - 'could_not_disable_currency' => '通貨「:name」を無効にできませんでした。使用中ではありませんか?', + 'create_currency' => '新しい通貨を作成', + 'store_currency' => '新しい通貨を保存', + 'update_currency' => '通貨を更新', + 'new_default_currency' => '「:name」はデフォルト通貨です。', + 'default_currency_failed' => '「:name」をデフォルト通貨にすることができませんでした。ログを確認してください。', + 'cannot_delete_currency' => ':nameは使用されているため削除できません。', + 'cannot_delete_fallback_currency' => ':name はシステムのフォールバック通貨であり、削除できません。', + 'cannot_disable_currency_journals' => '取引がまだ使用しているため、:name を無効にできません。', + 'cannot_disable_currency_last_left' => '唯一の有効な通貨であるため、:name を無効にできません。', + 'cannot_disable_currency_account_meta' => '資産口座で使用されているため、:name を無効にできません。', + 'cannot_disable_currency_bills' => '請求で使用されているため、:name を無効にできません。', + 'cannot_disable_currency_recurring' => '定期的な取引で使用されているため、:name を無効にできません。', + 'cannot_disable_currency_available_budgets' => '有効な予算で使用されているため、:name を無効にできません。', + 'cannot_disable_currency_budget_limits' => '予算制限で使用されているため、:name を無効にできません。', + 'cannot_disable_currency_current_default' => '現在のデフォルト通貨であるため、:name を無効にできません。', + 'cannot_disable_currency_system_fallback' => 'システムのデフォルト通貨であるため、:name を無効にできません。', + 'disable_EUR_side_effects' => 'Euro はシステムの緊急フォールバック通貨です。無効にすると意図しない副作用が発生し、保証できません。', + 'deleted_currency' => '通貨「:name」を削除しました', + 'created_currency' => '通貨「:name」が作成されました', + 'could_not_store_currency' => '新しい通貨を保存できませんでした。', + 'updated_currency' => '通貨「:name」が更新されました', + 'ask_site_owner' => '通貨の追加、削除、編集を:ownerに依頼してください。', + 'currencies_intro' => 'Firefly III はさまざまな通貨をサポートしており、ここで設定および有効にできます。', + 'make_default_currency' => 'デフォルトにする', + 'default_currency' => 'デフォルト', + 'currency_is_disabled' => '無効', + 'enable_currency' => '有効', + 'disable_currency' => '無効', + 'currencies_default_disabled' => 'これらの通貨のほとんどはデフォルトで無効になっています。使用するには、まず有効にする必要があります。', + 'currency_is_now_enabled' => '通貨「:name」が有効になりました', + 'could_not_enable_currency' => '通貨「:name」を有効にできませんでした。ログを確認してください。', + 'currency_is_now_disabled' => '通貨「:name」は無効になりました', + 'could_not_disable_currency' => '通貨「:name」を無効にできませんでした。使用中ではありませんか?', // forms: - 'mandatoryFields' => '必須項目', - 'optionalFields' => '任意項目', - 'options' => 'オプション', + 'mandatoryFields' => '必須項目', + 'optionalFields' => '任意項目', + 'options' => 'オプション', // budgets: - 'daily_budgets' => '毎日の予算', - 'weekly_budgets' => '毎週の予算', - 'monthly_budgets' => '毎月の予算', - 'quarterly_budgets' => '四半期の予算', - 'half_year_budgets' => '半年間の予算', - 'yearly_budgets' => '年間の予算', - 'other_budgets' => '任意の期間の予算', - 'budget_limit_not_in_range' => 'この金額は :start から :end: まで適用されます:', - 'total_available_budget' => '利用可能な予算の合計 (:start から :end まで)', - 'total_available_budget_in_currency' => ':currencyで利用可能な予算の合計', - 'see_below' => '下を参照', - 'create_new_budget' => '新しい予算を作成する', - 'store_new_budget' => '新しい予算を保存', - 'stored_new_budget' => '新しい予算「:name」を保存しました', - 'available_between' => ':start から :end までの利用可能額', - 'transactionsWithoutBudget' => '予算外の支出', - 'transactions_no_budget' => ':start から :end までの予算外の支出', - 'spent_between' => ':start から :end までの支出済み', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => '利用可能な金額を設定', - 'update_available_amount' => '利用可能な金額を更新', - 'ab_basic_modal_explain' => 'このフォームで、指定期間でいくらの予算(総額、:currency)になるかを示します。', - 'createBudget' => '新しい予算', - 'invalid_currency' => 'これは無効な通貨です', - 'invalid_amount' => '金額を入力してください', - 'set_ab' => '利用可能な予算額が設定されました', - 'updated_ab' => '利用可能な予算額が更新されました', - 'deleted_ab' => '利用可能な予算額が削除されました', - 'deleted_bl' => '予算額が削除されました', - 'alt_currency_ab_create' => '別の通貨で利用可能な予算を設定する', - 'bl_create_btn' => '予算を別の通貨で設定', - 'inactiveBudgets' => 'アクティブでない予算', - 'without_budget_between' => ':start から :end までの予算外の取引', - 'delete_budget' => '予算「:name」を削除する', - 'deleted_budget' => '予算「:name」を削除しました', - 'edit_budget' => '予算「:name」を編集', - 'updated_budget' => '予算「:name」を編集しました', - 'update_amount' => '金額を更新', - 'update_budget' => '予算を更新', - 'update_budget_amount_range' => ':start から :end までの利用可能な金額を更新する', - 'set_budget_limit_title' => ':start から :end の間の予算「:budget」の予算額を設定', - 'set_budget_limit' => '予算額を設定', - 'budget_period_navigator' => '期間ナビゲーター', - 'info_on_available_amount' => '利用可能額は?', - 'available_amount_indication' => 'これらの金額から、予算総額がどうなるか見込んでください。', - 'suggested' => '推奨', - 'average_between' => ':start から :end までの平均', - 'transferred_in' => '送金 (入)', - 'transferred_away' => '送金 (出)', - 'auto_budget_none' => '自動予算なし', - 'auto_budget_reset' => '期間ごとに定額を設定する', - 'auto_budget_rollover' => '期間ごとに金額を追加', - 'auto_budget_adjusted' => '期間ごとに金額を追加し過剰な支出のために補正します', - 'auto_budget_period_daily' => '毎日', - 'auto_budget_period_weekly' => '毎週', - 'auto_budget_period_monthly' => '毎月', - 'auto_budget_period_quarterly' => '四半期ごと', - 'auto_budget_period_half_year' => '半年ごと', - 'auto_budget_period_yearly' => '年ごと', - 'auto_budget_help' => 'この機能の詳細については、ヘルプを参照してください。右上の (?) アイコンをクリックします。', - 'auto_budget_reset_icon' => 'この予算は定期的に設定されます', - 'auto_budget_rollover_icon' => '予算額は定期的に増加します', - 'auto_budget_adjusted_icon' => '予算額は定期的に増加し過剰な支出を補正します', - 'remove_budgeted_amount' => ':currency で予算を削除する', + 'daily_budgets' => '毎日の予算', + 'weekly_budgets' => '毎週の予算', + 'monthly_budgets' => '毎月の予算', + 'quarterly_budgets' => '四半期の予算', + 'half_year_budgets' => '半年間の予算', + 'yearly_budgets' => '年間の予算', + 'other_budgets' => '任意の期間の予算', + 'budget_limit_not_in_range' => 'この金額は :start から :end: まで適用されます:', + 'total_available_budget' => '利用可能な予算の合計 (:start から :end まで)', + 'total_available_budget_in_currency' => ':currencyで利用可能な予算の合計', + 'see_below' => '下を参照', + 'create_new_budget' => '新しい予算を作成する', + 'store_new_budget' => '新しい予算を保存', + 'stored_new_budget' => '新しい予算「:name」を保存しました', + 'available_between' => ':start から :end までの利用可能額', + 'transactionsWithoutBudget' => '予算外の支出', + 'transactions_no_budget' => ':start から :end までの予算外の支出', + 'spent_between' => ':start から :end までの支出済み', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => '利用可能な金額を設定', + 'update_available_amount' => '利用可能な金額を更新', + 'ab_basic_modal_explain' => 'このフォームで、指定期間でいくらの予算(総額、:currency)になるかを示します。', + 'createBudget' => '新しい予算', + 'invalid_currency' => 'これは無効な通貨です', + 'invalid_amount' => '金額を入力してください', + 'set_ab' => '利用可能な予算額が設定されました', + 'updated_ab' => '利用可能な予算額が更新されました', + 'deleted_ab' => '利用可能な予算額が削除されました', + 'deleted_bl' => '予算額が削除されました', + 'alt_currency_ab_create' => '別の通貨で利用可能な予算を設定する', + 'bl_create_btn' => '予算を別の通貨で設定', + 'inactiveBudgets' => 'アクティブでない予算', + 'without_budget_between' => ':start から :end までの予算外の取引', + 'delete_budget' => '予算「:name」を削除する', + 'deleted_budget' => '予算「:name」を削除しました', + 'edit_budget' => '予算「:name」を編集', + 'updated_budget' => '予算「:name」を編集しました', + 'update_amount' => '金額を更新', + 'update_budget' => '予算を更新', + 'update_budget_amount_range' => ':start から :end までの利用可能な金額を更新する', + 'set_budget_limit_title' => ':start から :end の間の予算「:budget」の予算額を設定', + 'set_budget_limit' => '予算額を設定', + 'budget_period_navigator' => '期間ナビゲーター', + 'info_on_available_amount' => '利用可能額は?', + 'available_amount_indication' => 'これらの金額から、予算総額がどうなるか見込んでください。', + 'suggested' => '推奨', + 'average_between' => ':start から :end までの平均', + 'transferred_in' => '送金 (入)', + 'transferred_away' => '送金 (出)', + 'auto_budget_none' => '自動予算なし', + 'auto_budget_reset' => '期間ごとに定額を設定する', + 'auto_budget_rollover' => '期間ごとに金額を追加', + 'auto_budget_adjusted' => '期間ごとに金額を追加し過剰な支出のために補正します', + 'auto_budget_period_daily' => '毎日', + 'auto_budget_period_weekly' => '毎週', + 'auto_budget_period_monthly' => '毎月', + 'auto_budget_period_quarterly' => '四半期ごと', + 'auto_budget_period_half_year' => '半年ごと', + 'auto_budget_period_yearly' => '年ごと', + 'auto_budget_help' => 'この機能の詳細については、ヘルプを参照してください。右上の (?) アイコンをクリックします。', + 'auto_budget_reset_icon' => 'この予算は定期的に設定されます', + 'auto_budget_rollover_icon' => '予算額は定期的に増加します', + 'auto_budget_adjusted_icon' => '予算額は定期的に増加し過剰な支出を補正します', + 'remove_budgeted_amount' => ':currency で予算を削除する', // bills: - 'subscription' => 'サブスクリプション', - 'not_expected_period' => 'この期間には予定なし', - 'subscriptions_in_group' => 'グループ「%{title}」のサブスクリプション', - 'subscr_expected_x_times' => 'この期間に %{amount} %{times} 回の支払いを予定', - 'not_or_not_yet' => '(まだ) なし', - 'visit_bill' => 'Firefly IIIの請求「:name」を開く', - 'match_between_amounts' => '請求は :low から :high の間の取引に適合します。', - 'running_again_loss' => '以前にこの請求にリンクされた取引は、ルールに適合しない場合、リンクを失う可能性があります。', - 'bill_related_rules' => 'この請求に関連するルール', - 'repeats' => '繰り返し', - 'bill_end_date_help' => 'オプション項目です。請求はこの日付に終了する予定です。', - 'bill_extension_date_help' => 'オプション項目です。請求はこの日付前に延長(またはキャンセル)する必要があります。', - 'bill_end_index_line' => 'この請求は :date に終わる', - 'bill_extension_index_line' => 'この請求は延長されるか :date にキャンセルされる', - 'connected_journals' => '接続した取引', - 'auto_match_on' => 'Firefly III によって自動的に適合', - 'auto_match_off' => 'Firefly III によって自動的に適合しない', - 'next_expected_match' => '次のマッチ予測', - 'delete_bill' => '請求「:name」を削除', - 'deleted_bill' => '請求「:name」を削除しました', - 'edit_bill' => '請求「:name」を編集', - 'more' => 'もっと見る', - 'rescan_old' => 'すべての取引にルールを再度実行する', - 'update_bill' => '請求を更新', - 'updated_bill' => '請求「:name」を更新しました', - 'store_new_bill' => '新しい請求を保存', - 'stored_new_bill' => '新しい請求「:name」を保存しました', - 'cannot_scan_inactive_bill' => '無効な請求はスキャンされません。', - 'rescanned_bill' => '再スキャンし、:count件の取引を請求にリンクしました。|再スキャンし、:count件の取引を請求にリンクしました。', - 'average_bill_amount_year' => '平均請求額 (:year)', - 'average_bill_amount_overall' => '平均請求額 (全体)', - 'bill_is_active' => '請求は有効', - 'bill_expected_between' => ':start から :end までの予測', - 'bill_will_automatch' => '請求は自動的に一致する取引にリンクされます', - 'skips_over' => 'スキップする', - 'bill_store_error' => '新しい請求の保存中に予期しないエラーが発生しました。ログを確認してください', - 'list_inactive_rule' => '非アクティブなルール', - 'bill_edit_rules' => 'Firefly III は、この請求に関連するルールの編集を試みます。 ただし、このルールをあなたが編集している場合、Firefly III は何も変更しません。 Firefly III は、この請求に関連する :count 件のルールも編集します。 ただし、これらのルールをあなたが編集している場合、Firefly III は何も変更しません。', - 'bill_expected_date' => '予定日 :date', - 'bill_expected_date_js' => '予定日 {date}', - 'expected_amount' => '(予想される) 金額', - 'bill_paid_on' => '{date} に支払い済み', - 'bill_repeats_weekly' => '毎週の繰り返し', - 'bill_repeats_monthly' => '毎月の繰り返し', - 'bill_repeats_quarterly' => '四半期ごとの繰り返し', - 'bill_repeats_half-year' => '半年ごとの繰り返し', - 'bill_repeats_yearly' => '毎年の繰り返し', - 'bill_repeats_weekly_other' => '1週おきの繰り返し', - 'bill_repeats_monthly_other' => '1ヶ月おきの繰り返し', - 'bill_repeats_quarterly_other' => '四半期おきの繰り返し', - 'bill_repeats_half-year_other' => '毎年の繰り返し', - 'bill_repeats_yearly_other' => '一年おきの繰り返し', - 'bill_repeats_weekly_skip' => '{skip} 週おきの繰り返し', - 'bill_repeats_monthly_skip' => '{skip} ヶ月おきの繰り返し', - 'bill_repeats_quarterly_skip' => '{skip} 四半期おきの繰り返し', - 'bill_repeats_half-year_skip' => '{skip} 半期おきの繰り返し', - 'bill_repeats_yearly_skip' => '{skip} 年おきの繰り返し', - 'subscriptions' => '講読', - 'go_to_subscriptions' => 'サブスクリプションに移動', - 'forever' => '無期限', - 'extension_date_is' => '延長日は {date} です', + 'subscription' => 'サブスクリプション', + 'not_expected_period' => 'この期間には予定なし', + 'subscriptions_in_group' => 'グループ「%{title}」のサブスクリプション', + 'subscr_expected_x_times' => 'この期間に %{amount} %{times} 回の支払いを予定', + 'not_or_not_yet' => '(まだ) なし', + 'visit_bill' => 'Firefly IIIの請求「:name」を開く', + 'match_between_amounts' => '請求は :low から :high の間の取引に適合します。', + 'running_again_loss' => '以前にこの請求にリンクされた取引は、ルールに適合しない場合、リンクを失う可能性があります。', + 'bill_related_rules' => 'この請求に関連するルール', + 'repeats' => '繰り返し', + 'bill_end_date_help' => 'オプション項目です。請求はこの日付に終了する予定です。', + 'bill_extension_date_help' => 'オプション項目です。請求はこの日付前に延長(またはキャンセル)する必要があります。', + 'bill_end_index_line' => 'この請求は :date に終わる', + 'bill_extension_index_line' => 'この請求は延長されるか :date にキャンセルされる', + 'connected_journals' => '接続した取引', + 'auto_match_on' => 'Firefly III によって自動的に適合', + 'auto_match_off' => 'Firefly III によって自動的に適合しない', + 'next_expected_match' => '次のマッチ予測', + 'delete_bill' => '請求「:name」を削除', + 'deleted_bill' => '請求「:name」を削除しました', + 'edit_bill' => '請求「:name」を編集', + 'more' => 'もっと見る', + 'rescan_old' => 'すべての取引にルールを再度実行する', + 'update_bill' => '請求を更新', + 'updated_bill' => '請求「:name」を更新しました', + 'store_new_bill' => '新しい請求を保存', + 'stored_new_bill' => '新しい請求「:name」を保存しました', + 'cannot_scan_inactive_bill' => '無効な請求はスキャンされません。', + 'rescanned_bill' => '再スキャンし、:count件の取引を請求にリンクしました。|再スキャンし、:count件の取引を請求にリンクしました。', + 'average_bill_amount_year' => '平均請求額 (:year)', + 'average_bill_amount_overall' => '平均請求額 (全体)', + 'bill_is_active' => '請求は有効', + 'bill_expected_between' => ':start から :end までの予測', + 'bill_will_automatch' => '請求は自動的に一致する取引にリンクされます', + 'skips_over' => 'スキップする', + 'bill_store_error' => '新しい請求の保存中に予期しないエラーが発生しました。ログを確認してください', + 'list_inactive_rule' => '非アクティブなルール', + 'bill_edit_rules' => 'Firefly III は、この請求に関連するルールの編集を試みます。 ただし、このルールをあなたが編集している場合、Firefly III は何も変更しません。 Firefly III は、この請求に関連する :count 件のルールも編集します。 ただし、これらのルールをあなたが編集している場合、Firefly III は何も変更しません。', + 'bill_expected_date' => '予定日 :date', + 'bill_expected_date_js' => '予定日 {date}', + 'expected_amount' => '(予想される) 金額', + 'bill_paid_on' => '{date} に支払い済み', + 'bill_repeats_weekly' => '毎週の繰り返し', + 'bill_repeats_monthly' => '毎月の繰り返し', + 'bill_repeats_quarterly' => '四半期ごとの繰り返し', + 'bill_repeats_half-year' => '半年ごとの繰り返し', + 'bill_repeats_yearly' => '毎年の繰り返し', + 'bill_repeats_weekly_other' => '1週おきの繰り返し', + 'bill_repeats_monthly_other' => '1ヶ月おきの繰り返し', + 'bill_repeats_quarterly_other' => '四半期おきの繰り返し', + 'bill_repeats_half-year_other' => '毎年の繰り返し', + 'bill_repeats_yearly_other' => '一年おきの繰り返し', + 'bill_repeats_weekly_skip' => '{skip} 週おきの繰り返し', + 'bill_repeats_monthly_skip' => '{skip} ヶ月おきの繰り返し', + 'bill_repeats_quarterly_skip' => '{skip} 四半期おきの繰り返し', + 'bill_repeats_half-year_skip' => '{skip} 半期おきの繰り返し', + 'bill_repeats_yearly_skip' => '{skip} 年おきの繰り返し', + 'subscriptions' => '講読', + 'go_to_subscriptions' => 'サブスクリプションに移動', + 'forever' => '無期限', + 'extension_date_is' => '延長日は {date} です', // accounts: - 'i_am_owed_amount' => '債務額', - 'i_owe_amount' => '債務額', - 'inactive_account_link' => ':count 件の非アクティブ (アーカイブ済み) 口座があり、この別々のページで表示できます。|:count 件の非アクティブ (アーカイブ済み) 口座があり、この別々のページで表示できます。', - 'all_accounts_inactive' => 'これらは、アクティブでないアカウントです。', - 'active_account_link' => 'このリンクはアクティブな口座に戻ります。', - 'account_missing_transaction' => '口座 #:id「:name」は直接見ることはできません。Firefly にリダイレクト情報がありません。', - 'cc_monthly_payment_date_help' => '無視されますが、年と月を選択してください。月内の日のみ、意味があります。', - 'details_for_asset' => '資産口座「:name」の詳細', - 'details_for_expense' => '支出口座「:name」の詳細', - 'details_for_revenue' => '収入口座「:name」の詳細', - 'details_for_cash' => '現金口座「:name」の詳細', - 'store_new_asset_account' => '新しい口座を保存', - 'store_new_expense_account' => '新しい支出口座を保存', - 'store_new_revenue_account' => '新しい収入口座を保存', - 'edit_asset_account' => '資産口座「:name」を編集', - 'edit_expense_account' => '支出口座「:name」を編集', - 'edit_revenue_account' => '収入口座「:name」を編集', - 'delete_asset_account' => '資産口座「:name」を削除', - 'delete_expense_account' => '支出口座「:name」を削除', - 'delete_revenue_account' => '収入口座「:name」を削除', - 'delete_liabilities_account' => '債務「:name」を削除', - 'asset_deleted' => '資産口座「:name」を正常に削除しました', - 'account_deleted' => '口座「:name」を正常に削除しました', - 'expense_deleted' => '支出口座「:name」を正常に削除しました', - 'revenue_deleted' => '収入口座「:name」を正常に削除しました', - 'update_asset_account' => '資産口座を更新', - 'update_undefined_account' => '口座情報の更新', - 'update_liabilities_account' => '債務を更新', - 'update_expense_account' => '支出口座を編集する', - 'update_revenue_account' => '収入口座を更新', - 'make_new_asset_account' => '新しい資産口座を作成', - 'make_new_expense_account' => '新しい支出口座を作成', - 'make_new_revenue_account' => '新しい収入口座を作成', - 'make_new_liabilities_account' => '新しい債務を作成', - 'asset_accounts' => '資産口座', - 'undefined_accounts' => '口座', - 'asset_accounts_inactive' => '資産口座 (非アクティブ)', - 'expense_account' => '支出口座', - 'expense_accounts' => '支出口座', - 'expense_accounts_inactive' => '支出口座(非アクティブ)', - 'revenue_account' => '収入口座', - 'revenue_accounts' => '収入口座', - 'revenue_accounts_inactive' => '収入口座 (非アクティブ)', - 'cash_accounts' => '現金口座', - 'Cash account' => '現金口座', - 'liabilities_accounts' => '債務', - 'liabilities_accounts_inactive' => '負債 (非アクティブ)', - 'reconcile_account' => '口座「:account」を照合', - 'overview_of_reconcile_modal' => '照合の概要', - 'delete_reconciliation' => '照合を削除', - 'update_reconciliation' => '照合を更新', - 'amount_cannot_be_zero' => '金額はゼロにできません', - 'end_of_reconcile_period' => '照合期間の終了::period', - 'start_of_reconcile_period' => '照合期間の開始::period', - 'start_balance' => '開始残高', - 'end_balance' => '終了残高', - 'update_balance_dates_instruction' => '上記の金額と日付を銀行明細と一致させ、「照合を開始」を押してください', - 'select_transactions_instruction' => '銀行明細に表示される取引を選択します。', - 'select_range_and_balance' => 'まず、日付範囲と残高を確認します。次に「照合を開始」を押します', - 'date_change_instruction' => 'ここで日付の範囲を変更すると、すべての進行状況が失われます。', - 'update_selection' => '選択を更新', - 'store_reconcile' => '照合を保存', - 'reconciliation_transaction' => '取引の照合', - 'Reconciliation' => '照合', - 'reconciliation' => '照合', - 'reconcile_options' => '照合オプション', - 'reconcile_range' => '照合範囲', - 'start_reconcile' => '照合を開始', - 'cash_account_type' => '現金', - 'cash' => '現金', - 'cant_find_redirect_account' => 'Firefly III はあなたをリダイレクトしようとしましたが、できませんでした。申し訳ありません。インデックスに戻ります。', - 'account_type' => '口座種別', - 'save_transactions_by_moving' => '別の口座に移動してこの取引を保存します:|別の口座に移動してこれら取引を保存します:', - 'save_transactions_by_moving_js' => '取引がありません|この取引を別の口座に移し保存します。|これらの取引を別の口座に移し保存します。', - 'stored_new_account' => '新しい口座「:name」が保存されました!', - 'stored_new_account_js' => '新しい口座「{name}」が保存されました!', - 'updated_account' => '口座「:name」を更新しました', - 'updated_account_js' => '口座「{title}」を更新しました。', - 'credit_card_options' => 'クレジットカードオプション', - 'no_transactions_account' => '資産口座「:name」の取引は(この期間中)ありません。', - 'no_transactions_period' => '(この期間は) 取引がありません。', - 'no_data_for_chart' => 'このチャートを生成するのに十分な情報がまだありません。', - 'select_at_least_one_account' => '少なくとも1つ資産口座を選択してください', - 'select_at_least_one_category' => '少なくとも1つのカテゴリを選択してください', - 'select_at_least_one_budget' => '少なくとも1つの予算を選択してください', - 'select_at_least_one_tag' => '少なくとも 1 つのタグを選択してください', - 'select_at_least_one_expense' => '少なくとも1つの支出 / 収入口座の組み合わせを選択してください。組み合わせがない (リストが空の) 場合はこのレポートは利用できません。', - 'account_default_currency' => 'これはこの口座の既定通貨になります。', - 'reconcile_has_more' => 'Firefly III の元帳には、銀行が示すよりも多くの残高があります。 どう対処すべきかを選択し、「照合の確認」を押します。', - 'reconcile_has_less' => 'Firefly III の元帳には、銀行が示すよりも残高がありません。 どう対処すべきかを選択し、「照合の確認」を押します。', - 'reconcile_is_equal' => 'Firefly III 台帳と銀行取引明細が一致しています。何もする必要はありません。入力内容を確認するには「照合を確認」を押してください。', - 'create_pos_reconcile_transaction' => '選択した取引を消去し、この資産口座に:amount を加算訂正します。', - 'create_neg_reconcile_transaction' => '選択した取引を消去し、この資産口座に:amount を減算訂正します。', - 'reconcile_do_nothing' => '選択した取引を消去しますが、訂正はしません。', - 'reconcile_go_back' => '調整は後でいつでも編集または削除できます。', - 'must_be_asset_account' => '資産口座のみ照合できます', - 'reconciliation_stored' => '照合を保存しました', - 'reconciliation_error' => '取引は照合済みとしてマークされましたが、エラーにより訂正は保存されていません: :error。', - 'reconciliation_transaction_title' => '照合 (:from から :to)', - 'sum_of_reconciliation' => '照合の合計', - 'reconcile_this_account' => 'この口座を照合', - 'reconcile' => '照合', - 'show' => '表示', - 'confirm_reconciliation' => '照合を確認', - 'submitted_start_balance' => '送信された開始残高', - 'selected_transactions' => '選択した取引 (:count)', - 'already_cleared_transactions' => '取引が消去されました (:count)', - 'submitted_end_balance' => '送信された終了残高', - 'initial_balance_description' => '":account" の初期残高', - 'liability_credit_description' => '「:account」の債務信用', - 'interest_calc_' => '不明', - 'interest_calc_daily' => '1日あたり', - 'interest_calc_monthly' => '1ヶ月あたり', - 'interest_calc_yearly' => '1年あたり', - 'interest_calc_weekly' => '1週あたり', - 'interest_calc_half-year' => '半年あたり', - 'interest_calc_quarterly' => '四半期あたり', - 'initial_balance_account' => ':account の初期残高', - 'list_options' => 'リストオプション', + 'i_am_owed_amount' => '債務額', + 'i_owe_amount' => '債務額', + 'inactive_account_link' => ':count 件の非アクティブ (アーカイブ済み) 口座があり、この別々のページで表示できます。|:count 件の非アクティブ (アーカイブ済み) 口座があり、この別々のページで表示できます。', + 'all_accounts_inactive' => 'これらは、アクティブでないアカウントです。', + 'active_account_link' => 'このリンクはアクティブな口座に戻ります。', + 'account_missing_transaction' => '口座 #:id「:name」は直接見ることはできません。Firefly にリダイレクト情報がありません。', + 'cc_monthly_payment_date_help' => '無視されますが、年と月を選択してください。月内の日のみ、意味があります。', + 'details_for_asset' => '資産口座「:name」の詳細', + 'details_for_expense' => '支出口座「:name」の詳細', + 'details_for_revenue' => '収入口座「:name」の詳細', + 'details_for_cash' => '現金口座「:name」の詳細', + 'store_new_asset_account' => '新しい口座を保存', + 'store_new_expense_account' => '新しい支出口座を保存', + 'store_new_revenue_account' => '新しい収入口座を保存', + 'edit_asset_account' => '資産口座「:name」を編集', + 'edit_expense_account' => '支出口座「:name」を編集', + 'edit_revenue_account' => '収入口座「:name」を編集', + 'delete_asset_account' => '資産口座「:name」を削除', + 'delete_expense_account' => '支出口座「:name」を削除', + 'delete_revenue_account' => '収入口座「:name」を削除', + 'delete_liabilities_account' => '債務「:name」を削除', + 'asset_deleted' => '資産口座「:name」を正常に削除しました', + 'account_deleted' => '口座「:name」を正常に削除しました', + 'expense_deleted' => '支出口座「:name」を正常に削除しました', + 'revenue_deleted' => '収入口座「:name」を正常に削除しました', + 'update_asset_account' => '資産口座を更新', + 'update_undefined_account' => '口座情報の更新', + 'update_liabilities_account' => '債務を更新', + 'update_expense_account' => '支出口座を編集する', + 'update_revenue_account' => '収入口座を更新', + 'make_new_asset_account' => '新しい資産口座を作成', + 'make_new_expense_account' => '新しい支出口座を作成', + 'make_new_revenue_account' => '新しい収入口座を作成', + 'make_new_liabilities_account' => '新しい債務を作成', + 'asset_accounts' => '資産口座', + 'undefined_accounts' => '口座', + 'asset_accounts_inactive' => '資産口座 (非アクティブ)', + 'expense_account' => '支出口座', + 'expense_accounts' => '支出口座', + 'expense_accounts_inactive' => '支出口座(非アクティブ)', + 'revenue_account' => '収入口座', + 'revenue_accounts' => '収入口座', + 'revenue_accounts_inactive' => '収入口座 (非アクティブ)', + 'cash_accounts' => '現金口座', + 'Cash account' => '現金口座', + 'liabilities_accounts' => '債務', + 'liabilities_accounts_inactive' => '負債 (非アクティブ)', + 'reconcile_account' => '口座「:account」を照合', + 'overview_of_reconcile_modal' => '照合の概要', + 'delete_reconciliation' => '照合を削除', + 'update_reconciliation' => '照合を更新', + 'amount_cannot_be_zero' => '金額はゼロにできません', + 'end_of_reconcile_period' => '照合期間の終了::period', + 'start_of_reconcile_period' => '照合期間の開始::period', + 'start_balance' => '開始残高', + 'end_balance' => '終了残高', + 'update_balance_dates_instruction' => '上記の金額と日付を銀行明細と一致させ、「照合を開始」を押してください', + 'select_transactions_instruction' => '銀行明細に表示される取引を選択します。', + 'select_range_and_balance' => 'まず、日付範囲と残高を確認します。次に「照合を開始」を押します', + 'date_change_instruction' => 'ここで日付の範囲を変更すると、すべての進行状況が失われます。', + 'update_selection' => '選択を更新', + 'store_reconcile' => '照合を保存', + 'reconciliation_transaction' => '取引の照合', + 'Reconciliation' => '照合', + 'reconciliation' => '照合', + 'reconcile_options' => '照合オプション', + 'reconcile_range' => '照合範囲', + 'start_reconcile' => '照合を開始', + 'cash_account_type' => '現金', + 'cash' => '現金', + 'cant_find_redirect_account' => 'Firefly III はあなたをリダイレクトしようとしましたが、できませんでした。申し訳ありません。インデックスに戻ります。', + 'account_type' => '口座種別', + 'save_transactions_by_moving' => '別の口座に移動してこの取引を保存します:|別の口座に移動してこれら取引を保存します:', + 'save_transactions_by_moving_js' => '取引がありません|この取引を別の口座に移し保存します。|これらの取引を別の口座に移し保存します。', + 'stored_new_account' => '新しい口座「:name」が保存されました!', + 'stored_new_account_js' => '新しい口座「{name}」が保存されました!', + 'updated_account' => '口座「:name」を更新しました', + 'updated_account_js' => '口座「{title}」を更新しました。', + 'credit_card_options' => 'クレジットカードオプション', + 'no_transactions_account' => '資産口座「:name」の取引は(この期間中)ありません。', + 'no_transactions_period' => '(この期間は) 取引がありません。', + 'no_data_for_chart' => 'このチャートを生成するのに十分な情報がまだありません。', + 'select_at_least_one_account' => '少なくとも1つ資産口座を選択してください', + 'select_at_least_one_category' => '少なくとも1つのカテゴリを選択してください', + 'select_at_least_one_budget' => '少なくとも1つの予算を選択してください', + 'select_at_least_one_tag' => '少なくとも 1 つのタグを選択してください', + 'select_at_least_one_expense' => '少なくとも1つの支出 / 収入口座の組み合わせを選択してください。組み合わせがない (リストが空の) 場合はこのレポートは利用できません。', + 'account_default_currency' => 'これはこの口座の既定通貨になります。', + 'reconcile_has_more' => 'Firefly III の元帳には、銀行が示すよりも多くの残高があります。 どう対処すべきかを選択し、「照合の確認」を押します。', + 'reconcile_has_less' => 'Firefly III の元帳には、銀行が示すよりも残高がありません。 どう対処すべきかを選択し、「照合の確認」を押します。', + 'reconcile_is_equal' => 'Firefly III 台帳と銀行取引明細が一致しています。何もする必要はありません。入力内容を確認するには「照合を確認」を押してください。', + 'create_pos_reconcile_transaction' => '選択した取引を消去し、この資産口座に:amount を加算訂正します。', + 'create_neg_reconcile_transaction' => '選択した取引を消去し、この資産口座に:amount を減算訂正します。', + 'reconcile_do_nothing' => '選択した取引を消去しますが、訂正はしません。', + 'reconcile_go_back' => '調整は後でいつでも編集または削除できます。', + 'must_be_asset_account' => '資産口座のみ照合できます', + 'reconciliation_stored' => '照合を保存しました', + 'reconciliation_error' => '取引は照合済みとしてマークされましたが、エラーにより訂正は保存されていません: :error。', + 'reconciliation_transaction_title' => '照合 (:from から :to)', + 'sum_of_reconciliation' => '照合の合計', + 'reconcile_this_account' => 'この口座を照合', + 'reconcile' => '照合', + 'show' => '表示', + 'confirm_reconciliation' => '照合を確認', + 'submitted_start_balance' => '送信された開始残高', + 'selected_transactions' => '選択した取引 (:count)', + 'already_cleared_transactions' => '取引が消去されました (:count)', + 'submitted_end_balance' => '送信された終了残高', + 'initial_balance_description' => '":account" の初期残高', + 'liability_credit_description' => '「:account」の債務信用', + 'interest_calc_' => '不明', + 'interest_calc_daily' => '1日あたり', + 'interest_calc_monthly' => '1ヶ月あたり', + 'interest_calc_yearly' => '1年あたり', + 'interest_calc_weekly' => '1週あたり', + 'interest_calc_half-year' => '半年あたり', + 'interest_calc_quarterly' => '四半期あたり', + 'initial_balance_account' => ':account の初期残高', + 'list_options' => 'リストオプション', // categories: - 'new_category' => '新しいカテゴリ', - 'create_new_category' => '新しい出金を作成する', - 'without_category' => 'カテゴリなし', - 'update_category' => 'カテゴリを更新', - 'updated_category' => 'カテゴリ「:name」を更新しました', - 'categories' => 'カテゴリ', - 'edit_category' => 'カテゴリ「:name」を編集', - 'no_category' => '(カテゴリなし)', - 'unknown_category_plain' => 'カテゴリなし', - 'category' => 'カテゴリ', - 'delete_category' => 'カテゴリ":name" を削除する', - 'deleted_category' => 'カテゴリ「:name」を削除しました', - 'store_category' => '新しいカテゴリを保存', - 'stored_category' => '新しいカテゴリ「:name」を保存しました', - 'without_category_between' => ':start から :end までのカテゴリなし', + 'new_category' => '新しいカテゴリ', + 'create_new_category' => '新しい出金を作成する', + 'without_category' => 'カテゴリなし', + 'update_category' => 'カテゴリを更新', + 'updated_category' => 'カテゴリ「:name」を更新しました', + 'categories' => 'カテゴリ', + 'edit_category' => 'カテゴリ「:name」を編集', + 'no_category' => '(カテゴリなし)', + 'unknown_category_plain' => 'カテゴリなし', + 'category' => 'カテゴリ', + 'delete_category' => 'カテゴリ":name" を削除する', + 'deleted_category' => 'カテゴリ「:name」を削除しました', + 'store_category' => '新しいカテゴリを保存', + 'stored_category' => '新しいカテゴリ「:name」を保存しました', + 'without_category_between' => ':start から :end までのカテゴリなし', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => '照合を取り消す', - 'update_withdrawal' => '出金を更新', - 'update_deposit' => '入金を更新', - 'update_transaction' => '取引を更新', - 'update_transfer' => '送金を更新', - 'updated_withdrawal' => '出金「:description」を更新しました', - 'updated_deposit' => '入金「:description」を更新しました', - 'updated_transfer' => '送金「:description」を更新しました', - 'no_changes_withdrawal' => '出金「:description」は変更されませんでした。', - 'no_changes_deposit' => '入金「:description」は変更されませんでした。', - 'no_changes_transfer' => '送金「:description」は変更されませんでした。', - 'delete_withdrawal' => '出金「:description」を削除', - 'delete_deposit' => '入金「:description」を削除', - 'delete_transfer' => '送金「:description」を削除', - 'deleted_withdrawal' => '出金「:description」を削除しました', - 'deleted_deposit' => '入金「:description」を削除しました', - 'deleted_transfer' => '送金「:description」を削除しました', - 'deleted_reconciliation' => '取引照合":description"を削除しました', - 'stored_journal' => '取引「:description」を作成しました', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => '新しい取引を作成しました', - 'updated_journal_no_descr' => '取引を更新しました', - 'select_transactions' => '取引を選択', - 'rule_group_select_transactions' => '「:title」を取引に適用', - 'rule_select_transactions' => '「:title」を取引に適用', - 'stop_selection' => '選択した取引を停止', - 'reconcile_selected' => '照合', - 'mass_delete_journals' => '取引の一括削除', - 'mass_edit_journals' => '取引の一括編集', - 'mass_bulk_journals' => '取引を一括編集', - 'mass_bulk_journals_explain' => 'このフォームでは、以下の取引のプロパティを一括で変更できます。 表示されているパラメータを変更すると、表内のすべての取引が更新されます。', - 'part_of_split' => 'この取引は分割取引の一部です。 すべての分割を選択していない場合は、取引の半分だけの変更となってしまいます。', - 'bulk_set_new_values' => '新しい値を設定するには、以下に入力します。空のままにすると、すべての入力が空になります。 また、出金のみが予算を与えられることに注意してください。', - 'no_bulk_category' => 'カテゴリを更新しない', - 'no_bulk_budget' => '予算を更新しない', - 'no_bulk_tags' => 'タグを更新しない', - 'replace_with_these_tags' => 'これらのタグに置換', - 'append_these_tags' => 'これらのタグを追加', - 'mass_edit' => '選択したものを個別に編集', - 'bulk_edit' => '選択したものを一括編集', - 'mass_delete' => '選択したものを削除', - 'cannot_edit_other_fields' => '表示するスペースがないため、ここにある以外のフィールドを一括編集することはできません。 ここにない項目を編集するには、リンクから一つ一つ編集してください。', - 'cannot_change_amount_reconciled' => '照合された取引の金額を変更することはできません。', - 'no_budget' => '(予算なし)', - 'no_bill' => '(請求なし)', - 'account_per_budget' => '予算ごとの口座', - 'account_per_category' => 'カテゴリごとの口座', - 'create_new_object' => '作成', - 'empty' => '(空)', - 'all_other_budgets' => '(その他の予算すべて)', - 'all_other_accounts' => '(その他の口座すべて)', - 'expense_per_source_account' => '引き出し口座ごとの支出', - 'expense_per_destination_account' => '預け入れ口座ごとの支出', - 'income_per_destination_account' => '預け入れ口座ごとの収入', - 'spent_in_specific_category' => 'カテゴリ「:category」の支出', - 'earned_in_specific_category' => 'カテゴリ「:category」の収入', - 'spent_in_specific_tag' => 'タグ「:tag」の支出', - 'earned_in_specific_tag' => 'タグ「:tag」の収入', - 'income_per_source_account' => '引き出し口座ごとの収入', - 'average_spending_per_destination' => '預け入れ口座ごとの平均支出', - 'average_spending_per_source' => '引き出し口座あたりの平均支出', - 'average_earning_per_source' => '引き出し口座あたりの平均収益', - 'average_earning_per_destination' => '預け入れ口座あたりの平均収入', - 'account_per_tag' => 'タグごとの口座', - 'tag_report_expenses_listed_once' => '支出と収入は2重表示されません。取引に複数のタグがある場合は、そのタグの1つにのみ表示される可能性があります。 このリストはデータが欠けているように見えるかもしれませんが、金額は正しいです。', - 'double_report_expenses_charted_once' => '支出と収入は2重表示されません。取引に複数のタグがある場合は、そのタグの1つにのみ表示される可能性があります。 このリストはデータが欠けているように見えるかもしれませんが、金額は正しいです。', - 'tag_report_chart_single_tag' => 'このチャートは単一のタグを表します。 取引に複数のタグがある場合、ここに表示されるものは他のタグのチャートにも反映される可能性があります。', - 'tag' => 'タグ', - 'no_budget_squared' => '(予算なし)', - 'perm-delete-many' => '一度に多くのアイテムを削除すると非常に混乱する可能性があります。注意してください。 このページから分割取引の一部を削除することができますので、ご注意ください。', - 'mass_deleted_transactions_success' => ':count 件の取引を削除しました。|:count 件の取引を削除しました。', - 'mass_edited_transactions_success' => ':count 件の取引を更新しました。|:count 件の取引を更新しました。', - 'opt_group_' => '(口座種別なし)', - 'opt_group_no_account_type' => '(取引種別なし)', - 'opt_group_defaultAsset' => 'デフォルトの資産口座', - 'opt_group_savingAsset' => '貯蓄口座', - 'opt_group_sharedAsset' => '共有資産口座', - 'opt_group_ccAsset' => 'クレジットカード', - 'opt_group_cashWalletAsset' => '現金', - 'opt_group_expense_account' => '支出口座', - 'opt_group_revenue_account' => '収入口座', - 'opt_group_l_Loan' => '債務:ローン', - 'opt_group_cash_account' => '現金口座', - 'opt_group_l_Debt' => '債務:借金', - 'opt_group_l_Mortgage' => '債務:住宅ローン', - 'opt_group_l_Credit card' => '債務:クレジットカード', - 'notes' => '備考', - 'unknown_journal_error' => '取引を保存できませんでした。ログファイルを確認してください。', - 'attachment_not_found' => '添付ファイルが見つかりませんでした。', - 'journal_link_bill' => 'この取引は請求 :nameにリンクされています。関連を削除するには、チェックボックスのチェックを外します。別の請求書に関連付けるにはルールを使ってください。', - 'transaction_stored_link' => '取引 #{ID}「{title}」 が保存されました。', - 'transaction_new_stored_link' => '取引 #{ID} が保存されました。', - 'transaction_updated_link' => '取引 #{ID}「{title}」 が更新されました。', - 'transaction_updated_no_changes' => '取引 #{ID}「{title}」は変更されませんでした。', - 'first_split_decides' => '最初の分割がこの項目の値を決定します。', - 'first_split_overrules_source' => '最初の分割が引き出し口座を覆す可能性があります', - 'first_split_overrules_destination' => '最初の分割が預け入れ口座を覆す可能性があります', - 'spent_x_of_y' => '{amount} / {total} を支出しました', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => '照合を取り消す', + 'update_withdrawal' => '出金を更新', + 'update_deposit' => '入金を更新', + 'update_transaction' => '取引を更新', + 'update_transfer' => '送金を更新', + 'updated_withdrawal' => '出金「:description」を更新しました', + 'updated_deposit' => '入金「:description」を更新しました', + 'updated_transfer' => '送金「:description」を更新しました', + 'no_changes_withdrawal' => '出金「:description」は変更されませんでした。', + 'no_changes_deposit' => '入金「:description」は変更されませんでした。', + 'no_changes_transfer' => '送金「:description」は変更されませんでした。', + 'delete_withdrawal' => '出金「:description」を削除', + 'delete_deposit' => '入金「:description」を削除', + 'delete_transfer' => '送金「:description」を削除', + 'deleted_withdrawal' => '出金「:description」を削除しました', + 'deleted_deposit' => '入金「:description」を削除しました', + 'deleted_transfer' => '送金「:description」を削除しました', + 'deleted_reconciliation' => '取引照合":description"を削除しました', + 'stored_journal' => '取引「:description」を作成しました', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => '新しい取引を作成しました', + 'updated_journal_no_descr' => '取引を更新しました', + 'select_transactions' => '取引を選択', + 'rule_group_select_transactions' => '「:title」を取引に適用', + 'rule_select_transactions' => '「:title」を取引に適用', + 'stop_selection' => '選択した取引を停止', + 'reconcile_selected' => '照合', + 'mass_delete_journals' => '取引の一括削除', + 'mass_edit_journals' => '取引の一括編集', + 'mass_bulk_journals' => '取引を一括編集', + 'mass_bulk_journals_explain' => 'このフォームでは、以下の取引のプロパティを一括で変更できます。 表示されているパラメータを変更すると、表内のすべての取引が更新されます。', + 'part_of_split' => 'この取引は分割取引の一部です。 すべての分割を選択していない場合は、取引の半分だけの変更となってしまいます。', + 'bulk_set_new_values' => '新しい値を設定するには、以下に入力します。空のままにすると、すべての入力が空になります。 また、出金のみが予算を与えられることに注意してください。', + 'no_bulk_category' => 'カテゴリを更新しない', + 'no_bulk_budget' => '予算を更新しない', + 'no_bulk_tags' => 'タグを更新しない', + 'replace_with_these_tags' => 'これらのタグに置換', + 'append_these_tags' => 'これらのタグを追加', + 'mass_edit' => '選択したものを個別に編集', + 'bulk_edit' => '選択したものを一括編集', + 'mass_delete' => '選択したものを削除', + 'cannot_edit_other_fields' => '表示するスペースがないため、ここにある以外のフィールドを一括編集することはできません。 ここにない項目を編集するには、リンクから一つ一つ編集してください。', + 'cannot_change_amount_reconciled' => '照合された取引の金額を変更することはできません。', + 'no_budget' => '(予算なし)', + 'no_bill' => '(請求なし)', + 'account_per_budget' => '予算ごとの口座', + 'account_per_category' => 'カテゴリごとの口座', + 'create_new_object' => '作成', + 'empty' => '(空)', + 'all_other_budgets' => '(その他の予算すべて)', + 'all_other_accounts' => '(その他の口座すべて)', + 'expense_per_source_account' => '引き出し口座ごとの支出', + 'expense_per_destination_account' => '預け入れ口座ごとの支出', + 'income_per_destination_account' => '預け入れ口座ごとの収入', + 'spent_in_specific_category' => 'カテゴリ「:category」の支出', + 'earned_in_specific_category' => 'カテゴリ「:category」の収入', + 'spent_in_specific_tag' => 'タグ「:tag」の支出', + 'earned_in_specific_tag' => 'タグ「:tag」の収入', + 'income_per_source_account' => '引き出し口座ごとの収入', + 'average_spending_per_destination' => '預け入れ口座ごとの平均支出', + 'average_spending_per_source' => '引き出し口座あたりの平均支出', + 'average_earning_per_source' => '引き出し口座あたりの平均収益', + 'average_earning_per_destination' => '預け入れ口座あたりの平均収入', + 'account_per_tag' => 'タグごとの口座', + 'tag_report_expenses_listed_once' => '支出と収入は2重表示されません。取引に複数のタグがある場合は、そのタグの1つにのみ表示される可能性があります。 このリストはデータが欠けているように見えるかもしれませんが、金額は正しいです。', + 'double_report_expenses_charted_once' => '支出と収入は2重表示されません。取引に複数のタグがある場合は、そのタグの1つにのみ表示される可能性があります。 このリストはデータが欠けているように見えるかもしれませんが、金額は正しいです。', + 'tag_report_chart_single_tag' => 'このチャートは単一のタグを表します。 取引に複数のタグがある場合、ここに表示されるものは他のタグのチャートにも反映される可能性があります。', + 'tag' => 'タグ', + 'no_budget_squared' => '(予算なし)', + 'perm-delete-many' => '一度に多くのアイテムを削除すると非常に混乱する可能性があります。注意してください。 このページから分割取引の一部を削除することができますので、ご注意ください。', + 'mass_deleted_transactions_success' => ':count 件の取引を削除しました。|:count 件の取引を削除しました。', + 'mass_edited_transactions_success' => ':count 件の取引を更新しました。|:count 件の取引を更新しました。', + 'opt_group_' => '(口座種別なし)', + 'opt_group_no_account_type' => '(取引種別なし)', + 'opt_group_defaultAsset' => 'デフォルトの資産口座', + 'opt_group_savingAsset' => '貯蓄口座', + 'opt_group_sharedAsset' => '共有資産口座', + 'opt_group_ccAsset' => 'クレジットカード', + 'opt_group_cashWalletAsset' => '現金', + 'opt_group_expense_account' => '支出口座', + 'opt_group_revenue_account' => '収入口座', + 'opt_group_l_Loan' => '債務:ローン', + 'opt_group_cash_account' => '現金口座', + 'opt_group_l_Debt' => '債務:借金', + 'opt_group_l_Mortgage' => '債務:住宅ローン', + 'opt_group_l_Credit card' => '債務:クレジットカード', + 'notes' => '備考', + 'unknown_journal_error' => '取引を保存できませんでした。ログファイルを確認してください。', + 'attachment_not_found' => '添付ファイルが見つかりませんでした。', + 'journal_link_bill' => 'この取引は請求 :nameにリンクされています。関連を削除するには、チェックボックスのチェックを外します。別の請求書に関連付けるにはルールを使ってください。', + 'transaction_stored_link' => '取引 #{ID}「{title}」 が保存されました。', + 'transaction_new_stored_link' => '取引 #{ID} が保存されました。', + 'transaction_updated_link' => '取引 #{ID}「{title}」 が更新されました。', + 'transaction_updated_no_changes' => '取引 #{ID}「{title}」は変更されませんでした。', + 'first_split_decides' => '最初の分割がこの項目の値を決定します。', + 'first_split_overrules_source' => '最初の分割が引き出し口座を覆す可能性があります', + 'first_split_overrules_destination' => '最初の分割が預け入れ口座を覆す可能性があります', + 'spent_x_of_y' => '{amount} / {total} を支出しました', // new user: - 'welcome' => 'Firefly IIIへようこそ!', - 'submit' => '送信', - 'submission' => '送信', - 'submit_yes_really' => '送信 (私は自分が何をしているかわかっています)', - 'getting_started' => 'さあ、はじめよう', - 'to_get_started' => 'Firefly III が正常にインストールされました。 始めるには、銀行名とメイン口座の残高を入力してください。 複数の口座を持っている場合も心配いりません。後で追加することができます。Firefly III は始めるため、ひとつ必要としているだけです。', - 'savings_balance_text' => 'Firefly III は自動的に貯蓄口座を作成します。 初期状態では貯蓄口座にお金はありませんが、Firefly III に残高を入力すれば、それが保存されます。', - 'finish_up_new_user' => '以上です! 送信を押してください。Firefly IIIのホームに移動します。', - 'stored_new_accounts_new_user' => 'やった!新しい口座が保存されました。', - 'set_preferred_language' => 'Firefly III を別の言語で使用する場合は、こちらで設定してください。', - 'language' => '言語', - 'new_savings_account' => ':bank_name 貯蓄口座', - 'cash_wallet' => '現金', - 'currency_not_present' => '普段使用している通貨が表示されていなくても、心配いりません。オプション > 通貨 であなたの通貨を作成できます。', + 'welcome' => 'Firefly IIIへようこそ!', + 'submit' => '送信', + 'submission' => '送信', + 'submit_yes_really' => '送信 (私は自分が何をしているかわかっています)', + 'getting_started' => 'さあ、はじめよう', + 'to_get_started' => 'Firefly III が正常にインストールされました。 始めるには、銀行名とメイン口座の残高を入力してください。 複数の口座を持っている場合も心配いりません。後で追加することができます。Firefly III は始めるため、ひとつ必要としているだけです。', + 'savings_balance_text' => 'Firefly III は自動的に貯蓄口座を作成します。 初期状態では貯蓄口座にお金はありませんが、Firefly III に残高を入力すれば、それが保存されます。', + 'finish_up_new_user' => '以上です! 送信を押してください。Firefly IIIのホームに移動します。', + 'stored_new_accounts_new_user' => 'やった!新しい口座が保存されました。', + 'set_preferred_language' => 'Firefly III を別の言語で使用する場合は、こちらで設定してください。', + 'language' => '言語', + 'new_savings_account' => ':bank_name 貯蓄口座', + 'cash_wallet' => '現金', + 'currency_not_present' => '普段使用している通貨が表示されていなくても、心配いりません。オプション > 通貨 であなたの通貨を作成できます。', // home page: - 'transaction_table_description' => '取引表', - 'opposing_account' => '対する口座', - 'yourAccounts' => 'あなたの口座', - 'your_accounts' => '口座の概要', - 'category_overview' => 'カテゴリ概要', - 'expense_overview' => '支出口座の概要', - 'revenue_overview' => '収入口座の概要', - 'budgetsAndSpending' => '予算と出費', - 'budgets_and_spending' => '予算と出費', - 'go_to_budget' => '予算「{budget}」へ移動', - 'go_to_deposits' => '入金へ移動', - 'go_to_expenses' => '支出へ移動', - 'savings' => '貯蓄', - 'newWithdrawal' => '新しい支出', - 'newDeposit' => '新しい入金', - 'newTransfer' => '新しい送金', - 'bills_to_pay' => '未払いの請求', - 'per_day' => '1日あたり', - 'left_to_spend_per_day' => '1日あたりの残り支出額', - 'bills_paid' => '支払い済み請求', - 'custom_period' => 'カスタム期間', - 'reset_to_current' => '現在の期間にリセット', - 'select_period' => '期間を選択', + 'transaction_table_description' => '取引表', + 'opposing_account' => '対する口座', + 'yourAccounts' => 'あなたの口座', + 'your_accounts' => '口座の概要', + 'category_overview' => 'カテゴリ概要', + 'expense_overview' => '支出口座の概要', + 'revenue_overview' => '収入口座の概要', + 'budgetsAndSpending' => '予算と出費', + 'budgets_and_spending' => '予算と出費', + 'go_to_budget' => '予算「{budget}」へ移動', + 'go_to_deposits' => '入金へ移動', + 'go_to_expenses' => '支出へ移動', + 'savings' => '貯蓄', + 'newWithdrawal' => '新しい支出', + 'newDeposit' => '新しい入金', + 'newTransfer' => '新しい送金', + 'bills_to_pay' => '未払いの請求', + 'per_day' => '1日あたり', + 'left_to_spend_per_day' => '1日あたりの残り支出額', + 'bills_paid' => '支払い済み請求', + 'custom_period' => 'カスタム期間', + 'reset_to_current' => '現在の期間にリセット', + 'select_period' => '期間を選択', // menu and titles, should be recycled as often as possible: - 'currency' => '通貨', - 'preferences' => '設定', - 'logout' => 'ログアウト', - 'logout_other_sessions' => 'すべてのセッションからログアウト', - 'toggleNavigation' => 'ナビゲーションを切り替え', - 'searchPlaceholder' => '検索...', - 'version' => 'バージョン', - 'dashboard' => 'ダッシュボード', - 'income_and_expense' => '収入と支出', - 'all_money' => 'すべてのお金', - 'unknown_source_plain' => '不明な引き出し口座', - 'unknown_dest_plain' => '不明な預け入れ口座', - 'unknown_any_plain' => '不明な口座', - 'unknown_budget_plain' => '予算なし', - 'available_budget' => '有効な予算 ({currency})', - 'currencies' => '通貨', - 'activity' => '活動', - 'usage' => '使用状況', - 'accounts' => '口座', - 'Asset account' => '資産口座', - 'Default account' => '資産口座', - 'Expense account' => '支出口座', - 'Revenue account' => '収入口座', - 'Initial balance account' => '初期口座残高', - 'account_type_Asset account' => '資産口座', - 'account_type_Expense account' => '支出口座', - 'account_type_Revenue account' => '収入口座', - 'account_type_Debt' => '借金', - 'account_type_Loan' => 'ローン', - 'account_type_Mortgage' => '住宅ローン', - 'account_type_debt' => '借金', - 'account_type_loan' => 'ローン', - 'account_type_mortgage' => '住宅ローン', - 'account_type_Credit card' => 'クレジットカード', - 'credit_card_type_monthlyFull' => '全額毎月支払い', - 'liability_direction_credit' => 'この借金を負っている', - 'liability_direction_debit' => 'この借金を他の誰かに借りている', - 'liability_direction_credit_short' => 'この負債を負っている', - 'liability_direction_debit_short' => 'この負債を負う', - 'liability_direction__short' => '不明', - 'liability_direction_null_short' => '不明', - 'Liability credit' => '債務信用', - 'budgets' => '予算', - 'tags' => 'タグ', - 'reports' => 'レポート', - 'transactions' => '取引', - 'expenses' => '支出', - 'income' => '収益 / 収入', - 'transfers' => '送金', - 'moneyManagement' => '資金管理', - 'money_management' => '財テク', - 'tools' => 'ツール', - 'piggyBanks' => '貯金箱', - 'piggy_banks' => '貯金箱', - 'amount_x_of_y' => '{current} / {total}', - 'bills' => '請求', - 'withdrawal' => '出金', - 'opening_balance' => '開始残高', - 'deposit' => '入金', - 'account' => '口座', - 'transfer' => '送金', - 'Withdrawal' => '出金', - 'Deposit' => '預金', - 'Transfer' => '送金', - 'bill' => '請求', - 'yes' => 'はい', - 'no' => 'いいえ', - 'amount' => '金額', - 'overview' => '概要', - 'saveOnAccount' => '貯蓄口座', - 'unknown' => '不明', - 'monthly' => '毎月', - 'profile' => 'プロフィール', - 'errors' => 'エラー', - 'debt_start_date' => '借金の開始日', - 'debt_start_amount' => '借金の開始金額', - 'debt_start_amount_help' => 'この値は負の値に設定すべきです。詳細については、ヘルプページ (右上?アイコン) をご覧ください。', - 'interest_period_help' => 'この項目は表面的であり計算はされません。 銀行はとてもずるいので、Firefly III は正しく理解できません。', - 'store_new_liabilities_account' => '債務を保存', - 'edit_liabilities_account' => '貯金箱「:name」を編集', - 'financial_control' => '財務管理', - 'accounting' => '会計', - 'automation' => '自動化', - 'others' => 'その他', - 'classification' => '分類', - 'store_transaction' => '取引を保存', + 'currency' => '通貨', + 'preferences' => '設定', + 'logout' => 'ログアウト', + 'logout_other_sessions' => 'すべてのセッションからログアウト', + 'toggleNavigation' => 'ナビゲーションを切り替え', + 'searchPlaceholder' => '検索...', + 'version' => 'バージョン', + 'dashboard' => 'ダッシュボード', + 'income_and_expense' => '収入と支出', + 'all_money' => 'すべてのお金', + 'unknown_source_plain' => '不明な引き出し口座', + 'unknown_dest_plain' => '不明な預け入れ口座', + 'unknown_any_plain' => '不明な口座', + 'unknown_budget_plain' => '予算なし', + 'available_budget' => '有効な予算 ({currency})', + 'currencies' => '通貨', + 'activity' => '活動', + 'usage' => '使用状況', + 'accounts' => '口座', + 'Asset account' => '資産口座', + 'Default account' => '資産口座', + 'Expense account' => '支出口座', + 'Revenue account' => '収入口座', + 'Initial balance account' => '初期口座残高', + 'account_type_Asset account' => '資産口座', + 'account_type_Expense account' => '支出口座', + 'account_type_Revenue account' => '収入口座', + 'account_type_Debt' => '借金', + 'account_type_Loan' => 'ローン', + 'account_type_Mortgage' => '住宅ローン', + 'account_type_debt' => '借金', + 'account_type_loan' => 'ローン', + 'account_type_mortgage' => '住宅ローン', + 'account_type_Credit card' => 'クレジットカード', + 'credit_card_type_monthlyFull' => '全額毎月支払い', + 'liability_direction_credit' => 'この借金を負っている', + 'liability_direction_debit' => 'この借金を他の誰かに借りている', + 'liability_direction_credit_short' => 'この負債を負っている', + 'liability_direction_debit_short' => 'この負債を負う', + 'liability_direction__short' => '不明', + 'liability_direction_null_short' => '不明', + 'Liability credit' => '債務信用', + 'budgets' => '予算', + 'tags' => 'タグ', + 'reports' => 'レポート', + 'transactions' => '取引', + 'expenses' => '支出', + 'income' => '収益 / 収入', + 'transfers' => '送金', + 'moneyManagement' => '資金管理', + 'money_management' => '財テク', + 'tools' => 'ツール', + 'piggyBanks' => '貯金箱', + 'piggy_banks' => '貯金箱', + 'amount_x_of_y' => '{current} / {total}', + 'bills' => '請求', + 'withdrawal' => '出金', + 'opening_balance' => '開始残高', + 'deposit' => '入金', + 'account' => '口座', + 'transfer' => '送金', + 'Withdrawal' => '出金', + 'Deposit' => '預金', + 'Transfer' => '送金', + 'bill' => '請求', + 'yes' => 'はい', + 'no' => 'いいえ', + 'amount' => '金額', + 'overview' => '概要', + 'saveOnAccount' => '貯蓄口座', + 'unknown' => '不明', + 'monthly' => '毎月', + 'profile' => 'プロフィール', + 'errors' => 'エラー', + 'debt_start_date' => '借金の開始日', + 'debt_start_amount' => '借金の開始金額', + 'debt_start_amount_help' => 'この値は負の値に設定すべきです。詳細については、ヘルプページ (右上?アイコン) をご覧ください。', + 'interest_period_help' => 'この項目は表面的であり計算はされません。 銀行はとてもずるいので、Firefly III は正しく理解できません。', + 'store_new_liabilities_account' => '債務を保存', + 'edit_liabilities_account' => '貯金箱「:name」を編集', + 'financial_control' => '財務管理', + 'accounting' => '会計', + 'automation' => '自動化', + 'others' => 'その他', + 'classification' => '分類', + 'store_transaction' => '取引を保存', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => ':start から :end までのデフォルトの財務レポート', - 'report_audit' => ':start から :end までの取引履歴概要', - 'report_category' => ':start から :end までのカテゴリレポート', - 'report_double' => ':start から :end までの支出/収入口座のレポート', - 'report_budget' => ':start から :end までの予算報告', - 'report_tag' => ':start から :end までのタグレポート', - 'quick_link_reports' => 'クイックリンク', - 'quick_link_examples' => 'これらは手始めにちょうどよい例へのリンクです。 (?) ボタンからのヘルプページで、すべてのレポートと使用できるマジックワードについて確認してください。', - 'quick_link_default_report' => 'デフォルトの財務レポート', - 'quick_link_audit_report' => '取引履歴の概要', - 'report_this_month_quick' => '今月のすべての口座', - 'report_last_month_quick' => '先月のすべての口座', - 'report_this_year_quick' => '今年のすべての口座', - 'report_this_fiscal_year_quick' => '現在の会計年度のすべての口座', - 'report_all_time_quick' => '全期間のすべての口座', - 'reports_can_bookmark' => 'レポートはブックマークできることを忘れないでください。', - 'incomeVsExpenses' => '収入 vs 支出', - 'accountBalances' => '口座残高', - 'balanceStart' => '期間開始時の残高', - 'balanceEnd' => '期間終了時の残高', - 'splitByAccount' => '口座で分割', - 'coveredWithTags' => 'タグ', - 'leftInBudget' => '残り予算', - 'left_in_debt' => '負債額', - 'sumOfSums' => '合計', - 'noCategory' => '(カテゴリなし)', - 'notCharged' => 'まだ', - 'inactive' => '非アクティブ', - 'active' => '有効', - 'difference' => '差異', - 'money_flowing_in' => '入', - 'money_flowing_out' => '出', - 'topX' => '上位 :number 件', - 'show_full_list' => 'リスト全体を表示', - 'show_only_top' => '上位 :number 件のみ', - 'report_type' => 'レポート種別', - 'report_type_default' => 'デフォルトの財務レポート', - 'report_type_audit' => '取引履歴の概要 (監査)', - 'report_type_category' => 'カテゴリレポート', - 'report_type_budget' => '予算レポート', - 'report_type_tag' => 'タグレポート', - 'report_type_double' => '支出 / 収入口座レポート', - 'more_info_help' => 'レポート種別の詳細については、ヘルプページを参照してください。右上隅の (?) アイコンを押します。', - 'report_included_accounts' => '含める口座', - 'report_date_range' => '日付範囲', - 'report_preset_ranges' => '既定の範囲', - 'shared' => '共有中', - 'fiscal_year' => '会計年度', - 'income_entry' => ':start から :end までの口座「:name」からの収入', - 'expense_entry' => '口座「:name」への :start から :end までの支出', - 'category_entry' => 'カテゴリ「:name」の :start から :end までの支出と収入', - 'budget_spent_amount' => '予算「:budget」の :start から :end までの支出', - 'balance_amount' => ':start から :end までの口座「:account」から支払われる予算「:budget」の支出', - 'no_audit_activity' => ':start から :end までに、口座「:account_name」のアクティビティの記録はありません。', - 'audit_end_balance' => ':end 末での :account_name の口座残高: :balance', - 'reports_extra_options' => '追加オプション', - 'report_has_no_extra_options' => 'このレポートには追加オプションはありません', - 'reports_submit' => 'レポートを表示', - 'end_after_start_date' => 'レポートの終了日は開始日より後でなければいけません。', - 'select_category' => 'カテゴリを選択', - 'select_budget' => '予算を選択', - 'select_tag' => 'タグを選択', - 'income_per_category' => 'カテゴリ別収入', - 'expense_per_category' => 'カテゴリ別支出', - 'expense_per_budget' => '予算ごとの支出', - 'income_per_account' => '口座ごとの収入', - 'expense_per_account' => '口座ごとの支出', - 'expense_per_tag' => 'タグごとの支出', - 'income_per_tag' => 'タグごとの収入', - 'include_expense_not_in_budget' => '選択された予算に含まれない支出', - 'include_expense_not_in_account' => '選択された口座に含まれない支出', - 'include_expense_not_in_category' => '選択されたカテゴリに含まれない支出', - 'include_income_not_in_category' => '選択されたカテゴリに含まれない収入', - 'include_income_not_in_account' => '選択された口座に含まれない収入', - 'include_income_not_in_tags' => '選択されたタグに含まれない収入', - 'include_expense_not_in_tags' => '選択されたタグに含まれない支出', - 'everything_else' => 'その他すべて', - 'income_and_expenses' => '収入と支出', - 'spent_average' => '支出 (平均)', - 'income_average' => '収入 (平均)', - 'transaction_count' => '取引件数', - 'average_spending_per_account' => '口座ごとの平均支出', - 'average_income_per_account' => '口座ごとの平均収入', - 'total' => '合計', - 'description' => '概要', - 'sum_of_period' => '期間の合計', - 'average_in_period' => '期間の平均', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'デフォルトの資産口座', - 'account_role_sharedAsset' => '共有資産口座', - 'account_role_savingAsset' => '貯蓄口座', - 'account_role_ccAsset' => 'クレジットカード', - 'account_role_cashWalletAsset' => '現金', - 'budget_chart_click' => 'チャートを見たい予算名をクリックしてください。', - 'category_chart_click' => 'チャートを見たいカテゴリ名をクリックしてください。', - 'in_out_accounts' => '組み合わせごとの収入と支出', - 'in_out_accounts_per_asset' => '(資産口座ごとの) 収入と支出', - 'in_out_per_category' => 'カテゴリごとの収入と支出', - 'out_per_budget' => '予算ごとの支出', - 'select_expense_revenue' => '支出 / 収益口座を選択', - 'multi_currency_report_sum' => 'このリストには複数の通貨をもつ口座が含まれているため、表示される合計は意味をなさないかもしれません。 レポートは常にデフォルトの通貨になります。', - 'sum_in_default_currency' => '合計は常にデフォルト通貨になります。', - 'net_filtered_prefs' => 'このチャートには「純資産に含める」オプションがチェックされていない口座が含まれることはありません。', + 'report_default' => ':start から :end までのデフォルトの財務レポート', + 'report_audit' => ':start から :end までの取引履歴概要', + 'report_category' => ':start から :end までのカテゴリレポート', + 'report_double' => ':start から :end までの支出/収入口座のレポート', + 'report_budget' => ':start から :end までの予算報告', + 'report_tag' => ':start から :end までのタグレポート', + 'quick_link_reports' => 'クイックリンク', + 'quick_link_examples' => 'これらは手始めにちょうどよい例へのリンクです。 (?) ボタンからのヘルプページで、すべてのレポートと使用できるマジックワードについて確認してください。', + 'quick_link_default_report' => 'デフォルトの財務レポート', + 'quick_link_audit_report' => '取引履歴の概要', + 'report_this_month_quick' => '今月のすべての口座', + 'report_last_month_quick' => '先月のすべての口座', + 'report_this_year_quick' => '今年のすべての口座', + 'report_this_fiscal_year_quick' => '現在の会計年度のすべての口座', + 'report_all_time_quick' => '全期間のすべての口座', + 'reports_can_bookmark' => 'レポートはブックマークできることを忘れないでください。', + 'incomeVsExpenses' => '収入 vs 支出', + 'accountBalances' => '口座残高', + 'balanceStart' => '期間開始時の残高', + 'balanceEnd' => '期間終了時の残高', + 'splitByAccount' => '口座で分割', + 'coveredWithTags' => 'タグ', + 'leftInBudget' => '残り予算', + 'left_in_debt' => '負債額', + 'sumOfSums' => '合計', + 'noCategory' => '(カテゴリなし)', + 'notCharged' => 'まだ', + 'inactive' => '非アクティブ', + 'active' => '有効', + 'difference' => '差異', + 'money_flowing_in' => '入', + 'money_flowing_out' => '出', + 'topX' => '上位 :number 件', + 'show_full_list' => 'リスト全体を表示', + 'show_only_top' => '上位 :number 件のみ', + 'report_type' => 'レポート種別', + 'report_type_default' => 'デフォルトの財務レポート', + 'report_type_audit' => '取引履歴の概要 (監査)', + 'report_type_category' => 'カテゴリレポート', + 'report_type_budget' => '予算レポート', + 'report_type_tag' => 'タグレポート', + 'report_type_double' => '支出 / 収入口座レポート', + 'more_info_help' => 'レポート種別の詳細については、ヘルプページを参照してください。右上隅の (?) アイコンを押します。', + 'report_included_accounts' => '含める口座', + 'report_date_range' => '日付範囲', + 'report_preset_ranges' => '既定の範囲', + 'shared' => '共有中', + 'fiscal_year' => '会計年度', + 'income_entry' => ':start から :end までの口座「:name」からの収入', + 'expense_entry' => '口座「:name」への :start から :end までの支出', + 'category_entry' => 'カテゴリ「:name」の :start から :end までの支出と収入', + 'budget_spent_amount' => '予算「:budget」の :start から :end までの支出', + 'balance_amount' => ':start から :end までの口座「:account」から支払われる予算「:budget」の支出', + 'no_audit_activity' => ':start から :end までに、口座「:account_name」のアクティビティの記録はありません。', + 'audit_end_balance' => ':end 末での :account_name の口座残高: :balance', + 'reports_extra_options' => '追加オプション', + 'report_has_no_extra_options' => 'このレポートには追加オプションはありません', + 'reports_submit' => 'レポートを表示', + 'end_after_start_date' => 'レポートの終了日は開始日より後でなければいけません。', + 'select_category' => 'カテゴリを選択', + 'select_budget' => '予算を選択', + 'select_tag' => 'タグを選択', + 'income_per_category' => 'カテゴリ別収入', + 'expense_per_category' => 'カテゴリ別支出', + 'expense_per_budget' => '予算ごとの支出', + 'income_per_account' => '口座ごとの収入', + 'expense_per_account' => '口座ごとの支出', + 'expense_per_tag' => 'タグごとの支出', + 'income_per_tag' => 'タグごとの収入', + 'include_expense_not_in_budget' => '選択された予算に含まれない支出', + 'include_expense_not_in_account' => '選択された口座に含まれない支出', + 'include_expense_not_in_category' => '選択されたカテゴリに含まれない支出', + 'include_income_not_in_category' => '選択されたカテゴリに含まれない収入', + 'include_income_not_in_account' => '選択された口座に含まれない収入', + 'include_income_not_in_tags' => '選択されたタグに含まれない収入', + 'include_expense_not_in_tags' => '選択されたタグに含まれない支出', + 'everything_else' => 'その他すべて', + 'income_and_expenses' => '収入と支出', + 'spent_average' => '支出 (平均)', + 'income_average' => '収入 (平均)', + 'transaction_count' => '取引件数', + 'average_spending_per_account' => '口座ごとの平均支出', + 'average_income_per_account' => '口座ごとの平均収入', + 'total' => '合計', + 'description' => '概要', + 'sum_of_period' => '期間の合計', + 'average_in_period' => '期間の平均', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'デフォルトの資産口座', + 'account_role_sharedAsset' => '共有資産口座', + 'account_role_savingAsset' => '貯蓄口座', + 'account_role_ccAsset' => 'クレジットカード', + 'account_role_cashWalletAsset' => '現金', + 'budget_chart_click' => 'チャートを見たい予算名をクリックしてください。', + 'category_chart_click' => 'チャートを見たいカテゴリ名をクリックしてください。', + 'in_out_accounts' => '組み合わせごとの収入と支出', + 'in_out_accounts_per_asset' => '(資産口座ごとの) 収入と支出', + 'in_out_per_category' => 'カテゴリごとの収入と支出', + 'out_per_budget' => '予算ごとの支出', + 'select_expense_revenue' => '支出 / 収益口座を選択', + 'multi_currency_report_sum' => 'このリストには複数の通貨をもつ口座が含まれているため、表示される合計は意味をなさないかもしれません。 レポートは常にデフォルトの通貨になります。', + 'sum_in_default_currency' => '合計は常にデフォルト通貨になります。', + 'net_filtered_prefs' => 'このチャートには「純資産に含める」オプションがチェックされていない口座が含まれることはありません。', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'チャート', - 'month' => '月', - 'budget' => '予算', - 'spent' => '支出', - 'spent_capped' => '支出 (上限あり)', - 'spent_in_budget' => '予算', - 'left_to_spend' => '支出できる残り', - 'earned' => '収益', - 'overspent' => '使いすぎ', - 'left' => '残り', - 'max-amount' => '上限額', - 'min-amount' => '最低額', - 'journal-amount' => '現在の請求エントリ', - 'name' => '名称', - 'date' => '日付', - 'date_and_time' => '日付と時刻', - 'time' => '時刻', - 'paid' => '支払い済み', - 'unpaid' => '未払い', - 'day' => '日', - 'budgeted' => '予算設定', - 'period' => '期間', - 'balance' => '収支', - 'in_out_period' => 'この期間の収支', - 'sum' => '合計', - 'summary' => '要約', - 'average' => '平均', - 'balanceFor' => ':name の残高', - 'no_tags' => '(タグなし)', - 'nothing_found' => '(nothing found)', + 'chart' => 'チャート', + 'month' => '月', + 'budget' => '予算', + 'spent' => '支出', + 'spent_capped' => '支出 (上限あり)', + 'spent_in_budget' => '予算', + 'left_to_spend' => '支出できる残り', + 'earned' => '収益', + 'overspent' => '使いすぎ', + 'left' => '残り', + 'max-amount' => '上限額', + 'min-amount' => '最低額', + 'journal-amount' => '現在の請求エントリ', + 'name' => '名称', + 'date' => '日付', + 'date_and_time' => '日付と時刻', + 'time' => '時刻', + 'paid' => '支払い済み', + 'unpaid' => '未払い', + 'day' => '日', + 'budgeted' => '予算設定', + 'period' => '期間', + 'balance' => '収支', + 'in_out_period' => 'この期間の収支', + 'sum' => '合計', + 'summary' => '要約', + 'average' => '平均', + 'balanceFor' => ':name の残高', + 'no_tags' => '(タグなし)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'イベント履歴', - 'add_money_to_piggy' => '貯金箱「:name」にお金を追加', - 'piggy_bank' => '貯金箱', - 'new_piggy_bank' => '新しい貯金箱', - 'store_piggy_bank' => '新しい貯金箱を保存', - 'stored_piggy_bank' => '新しい貯金箱「:name」を保存', - 'account_status' => '口座状態', - 'left_for_piggy_banks' => '貯金箱の残額', - 'sum_of_piggy_banks' => '貯金箱の合計', - 'saved_so_far' => 'これまでの貯金額', - 'left_to_save' => '残り貯金額', - 'suggested_amount' => '月ごとの推奨貯蓄額', - 'add_money_to_piggy_title' => '貯金箱「:name」を追加', - 'remove_money_from_piggy_title' => '貯金箱「:name」からお金を取り去る', - 'add' => '追加', - 'no_money_for_piggy' => 'この貯金箱に入れるお金がありません。', - 'suggested_savings_per_month' => '1ヶ月あたりの推奨', + 'event_history' => 'イベント履歴', + 'add_money_to_piggy' => '貯金箱「:name」にお金を追加', + 'piggy_bank' => '貯金箱', + 'new_piggy_bank' => '新しい貯金箱', + 'store_piggy_bank' => '新しい貯金箱を保存', + 'stored_piggy_bank' => '新しい貯金箱「:name」を保存', + 'account_status' => '口座状態', + 'left_for_piggy_banks' => '貯金箱の残額', + 'sum_of_piggy_banks' => '貯金箱の合計', + 'saved_so_far' => 'これまでの貯金額', + 'left_to_save' => '残り貯金額', + 'suggested_amount' => '月ごとの推奨貯蓄額', + 'add_money_to_piggy_title' => '貯金箱「:name」を追加', + 'remove_money_from_piggy_title' => '貯金箱「:name」からお金を取り去る', + 'add' => '追加', + 'no_money_for_piggy' => 'この貯金箱に入れるお金がありません。', + 'suggested_savings_per_month' => '1ヶ月あたりの推奨', - 'remove' => '削除', - 'max_amount_add' => '追加できる最大金額は', - 'max_amount_remove' => '削除できる最大金額は', - 'update_piggy_button' => '貯金箱を更新する', - 'update_piggy_title' => '貯金箱「:name」を更新', - 'updated_piggy_bank' => '貯金箱「:name」を更新しました', - 'details' => '詳細', - 'events' => 'イベント', - 'target_amount' => '目標金額', - 'start_date' => '開始日', - 'no_start_date' => '開始日なし', - 'target_date' => '目標日付', - 'no_target_date' => '目標日付なし', - 'table' => '表', - 'delete_piggy_bank' => '貯金箱「:name」を削除', - 'cannot_add_amount_piggy' => ':amount を「:name」に追加できませんでした。', - 'cannot_remove_from_piggy' => ':amount を「:name」から削除できませんでした。', - 'deleted_piggy_bank' => '貯金箱「:name」を削除しました', - 'added_amount_to_piggy' => ':amount を「:name」に追加しました', - 'removed_amount_from_piggy' => '「:name」から :amount を削除しました', - 'piggy_events' => '関連する貯金箱', + 'remove' => '削除', + 'max_amount_add' => '追加できる最大金額は', + 'max_amount_remove' => '削除できる最大金額は', + 'update_piggy_button' => '貯金箱を更新する', + 'update_piggy_title' => '貯金箱「:name」を更新', + 'updated_piggy_bank' => '貯金箱「:name」を更新しました', + 'details' => '詳細', + 'events' => 'イベント', + 'target_amount' => '目標金額', + 'start_date' => '開始日', + 'no_start_date' => '開始日なし', + 'target_date' => '目標日付', + 'no_target_date' => '目標日付なし', + 'table' => '表', + 'delete_piggy_bank' => '貯金箱「:name」を削除', + 'cannot_add_amount_piggy' => ':amount を「:name」に追加できませんでした。', + 'cannot_remove_from_piggy' => ':amount を「:name」から削除できませんでした。', + 'deleted_piggy_bank' => '貯金箱「:name」を削除しました', + 'added_amount_to_piggy' => ':amount を「:name」に追加しました', + 'removed_amount_from_piggy' => '「:name」から :amount を削除しました', + 'piggy_events' => '関連する貯金箱', // tags - 'delete_tag' => 'タグ「:tag」を削除する', - 'deleted_tag' => 'タグ「:tag」を削除しました', - 'new_tag' => '新しいタグを作成する', - 'edit_tag' => 'タグ「:tag」を編集する', - 'updated_tag' => 'タグ「:tag」を更新しました', - 'created_tag' => 'タグ「:tag」が作成されました!', + 'delete_tag' => 'タグ「:tag」を削除する', + 'deleted_tag' => 'タグ「:tag」を削除しました', + 'new_tag' => '新しいタグを作成する', + 'edit_tag' => 'タグ「:tag」を編集する', + 'updated_tag' => 'タグ「:tag」を更新しました', + 'created_tag' => 'タグ「:tag」が作成されました!', - 'transaction_journal_information' => '取引情報', - 'transaction_journal_amount' => '金額情報', - 'transaction_journal_meta' => 'メタ情報', - 'transaction_journal_more' => '詳細情報', - 'basic_journal_information' => '取引基本情報', - 'transaction_journal_extra' => '追加情報', - 'att_part_of_journal' => '「:journal」に保存しました', - 'total_amount' => '合計金額', - 'number_of_decimals' => '小数点以下の桁数', + 'transaction_journal_information' => '取引情報', + 'transaction_journal_amount' => '金額情報', + 'transaction_journal_meta' => 'メタ情報', + 'transaction_journal_more' => '詳細情報', + 'basic_journal_information' => '取引基本情報', + 'transaction_journal_extra' => '追加情報', + 'att_part_of_journal' => '「:journal」に保存しました', + 'total_amount' => '合計金額', + 'number_of_decimals' => '小数点以下の桁数', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => '「:address」 への招待はすでに利用されました。', - 'invite_is_deleted' => '「:address」 への招待が削除されました。', - 'invite_new_user_title' => 'ユーザーを招待する', - 'invite_new_user_text' => '管理者として、Firefly III管理にユーザーを登録するように招待できます。共有できる直接リンクを使用して、招待されたユーザーはアカウントを登録することができます。 招待されたユーザーと招待リンクが下の表に表示されます。招待リンクを自由に共有できます。', - 'invited_user_mail' => 'メールアドレス', - 'invite_user' => 'ユーザーを招待', - 'user_is_invited' => 'メールアドレス「:address」がFirefly IIIに招待されました。', - 'administration' => '管理', - 'system_settings' => 'システム設定', - 'code_already_used' => '招待コードが使用されました', - 'user_administration' => 'ユーザー管理', - 'list_all_users' => '全ユーザー', - 'all_users' => '全ユーザー', - 'instance_configuration' => '設定', - 'firefly_instance_configuration' => 'Firefly III の設定オプション', - 'setting_single_user_mode' => 'シングルユーザーモード', - 'setting_single_user_mode_explain' => 'デフォルトでは Firefly III はあなた一人の登録しか受け付けません。これはセキュリティ対策であり、許可しない限り他の人がインスタンスを使用することを防ぎます。 今後の登録はブロックされています。このチェックを外すと、(インターネットに接続されている場合) アクセスできる他の人も利用できるようになります。', - 'store_configuration' => '設定を保存', - 'single_user_administration' => ':email のユーザー管理', - 'edit_user' => 'ユーザー :email を編集', - 'hidden_fields_preferences' => '設定 で追加の取引オプションを有効にできます。', - 'user_data_information' => 'ユーザーデータ', - 'user_information' => 'ユーザー情報', - 'total_size' => '合計サイズ', - 'budget_or_budgets' => ':count件の予算|:count件の予算', - 'budgets_with_limits' => ':count 件の金額設定済み予算|:count 件の金額設定済み予算', - 'nr_of_rules_in_total_groups' => ':count_groups 個のルールグループに :count_rules 個のルール', - 'tag_or_tags' => ':count 個のタグ|:count 個のタグ', - 'configuration_updated' => '設定が更新されました', - 'setting_is_demo_site' => 'デモサイト', - 'setting_is_demo_site_explain' => 'チェックすると、この Firefly III はデモサイトとして動作します。これには奇妙な副作用がありえます。', - 'block_code_bounced' => 'メールを配信できませんでした', - 'block_code_expired' => 'デモアカウントの期限切れ', - 'no_block_code' => 'ブロック理由がないかブロックされてません', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'ユーザーはまだ新しいメールアドレスを確認していません', - 'admin_update_email' => 'プロフィールページとは違い、ユーザーにメールアドレスが変更されたことは通知されません。', - 'update_user' => 'ユーザーを更新', - 'updated_user' => 'ユーザーデータが変更されました。', - 'delete_user' => 'ユーザー :email を削除', - 'user_deleted' => 'ユーザーが削除されました。', - 'send_test_email' => 'テストメールメッセージを送信', - 'send_test_email_text' => 'あなたの環境がメールを送信できるか確認するため、このボタンを押してください。エラーがあってもここには表示されず、ログファイルに記載されます。ボタンは好きなだけ何度も押すことができます。スパム制御はされていません。メールは :email に送信され、すぐに届きます。', - 'send_message' => 'メッセージを送信', - 'send_test_triggered' => 'テストが実行されました。受信トレイとログファイルを確認してください。', - 'give_admin_careful' => '管理者権限を与えられたユーザーは、あなたの特権を奪うことができます。注意してください。', - 'admin_maintanance_title' => 'メンテナンス', - 'admin_maintanance_expl' => 'Firefly III メンテナンス用の素敵なボタン', - 'admin_maintenance_clear_cache' => 'キャッシュをクリア', - 'admin_notifications' => '通知管理', - 'admin_notifications_expl' => 'これらの通知は管理者によって有効/無効にできます。 Slack でもこれらのメッセージを取得したい場合は、"incoming webhook" URL を設定します。', - 'admin_notification_check_user_new_reg' => 'ユーザーが登録後のウェルカムメッセージを受け取ります', - 'admin_notification_check_admin_new_reg' => '管理者は新しいユーザー登録通知を受け取ります', - 'admin_notification_check_new_version' => '新しいバージョンが利用可能です', - 'admin_notification_check_invite_created' => 'Firefly IIIにユーザー招待されました', - 'admin_notification_check_invite_redeemed' => 'ユーザー招待が利用されました', - 'all_invited_users' => '招待されたすべてのユーザー', - 'save_notification_settings' => '設定を保存', - 'notification_settings_saved' => '通知設定が保存されました。', + 'invite_is_already_redeemed' => '「:address」 への招待はすでに利用されました。', + 'invite_is_deleted' => '「:address」 への招待が削除されました。', + 'invite_new_user_title' => 'ユーザーを招待する', + 'invite_new_user_text' => '管理者として、Firefly III管理にユーザーを登録するように招待できます。共有できる直接リンクを使用して、招待されたユーザーはアカウントを登録することができます。 招待されたユーザーと招待リンクが下の表に表示されます。招待リンクを自由に共有できます。', + 'invited_user_mail' => 'メールアドレス', + 'invite_user' => 'ユーザーを招待', + 'user_is_invited' => 'メールアドレス「:address」がFirefly IIIに招待されました。', + 'administration' => '管理', + 'system_settings' => 'システム設定', + 'code_already_used' => '招待コードが使用されました', + 'user_administration' => 'ユーザー管理', + 'list_all_users' => '全ユーザー', + 'all_users' => '全ユーザー', + 'instance_configuration' => '設定', + 'firefly_instance_configuration' => 'Firefly III の設定オプション', + 'setting_single_user_mode' => 'シングルユーザーモード', + 'setting_single_user_mode_explain' => 'デフォルトでは Firefly III はあなた一人の登録しか受け付けません。これはセキュリティ対策であり、許可しない限り他の人がインスタンスを使用することを防ぎます。 今後の登録はブロックされています。このチェックを外すと、(インターネットに接続されている場合) アクセスできる他の人も利用できるようになります。', + 'store_configuration' => '設定を保存', + 'single_user_administration' => ':email のユーザー管理', + 'edit_user' => 'ユーザー :email を編集', + 'hidden_fields_preferences' => '設定 で追加の取引オプションを有効にできます。', + 'user_data_information' => 'ユーザーデータ', + 'user_information' => 'ユーザー情報', + 'total_size' => '合計サイズ', + 'budget_or_budgets' => ':count件の予算|:count件の予算', + 'budgets_with_limits' => ':count 件の金額設定済み予算|:count 件の金額設定済み予算', + 'nr_of_rules_in_total_groups' => ':count_groups 個のルールグループに :count_rules 個のルール', + 'tag_or_tags' => ':count 個のタグ|:count 個のタグ', + 'configuration_updated' => '設定が更新されました', + 'setting_is_demo_site' => 'デモサイト', + 'setting_is_demo_site_explain' => 'チェックすると、この Firefly III はデモサイトとして動作します。これには奇妙な副作用がありえます。', + 'block_code_bounced' => 'メールを配信できませんでした', + 'block_code_expired' => 'デモアカウントの期限切れ', + 'no_block_code' => 'ブロック理由がないかブロックされてません', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'ユーザーはまだ新しいメールアドレスを確認していません', + 'admin_update_email' => 'プロフィールページとは違い、ユーザーにメールアドレスが変更されたことは通知されません。', + 'update_user' => 'ユーザーを更新', + 'updated_user' => 'ユーザーデータが変更されました。', + 'delete_user' => 'ユーザー :email を削除', + 'user_deleted' => 'ユーザーが削除されました。', + 'send_test_email' => 'テストメールメッセージを送信', + 'send_test_email_text' => 'あなたの環境がメールを送信できるか確認するため、このボタンを押してください。エラーがあってもここには表示されず、ログファイルに記載されます。ボタンは好きなだけ何度も押すことができます。スパム制御はされていません。メールは :email に送信され、すぐに届きます。', + 'send_message' => 'メッセージを送信', + 'send_test_triggered' => 'テストが実行されました。受信トレイとログファイルを確認してください。', + 'give_admin_careful' => '管理者権限を与えられたユーザーは、あなたの特権を奪うことができます。注意してください。', + 'admin_maintanance_title' => 'メンテナンス', + 'admin_maintanance_expl' => 'Firefly III メンテナンス用の素敵なボタン', + 'admin_maintenance_clear_cache' => 'キャッシュをクリア', + 'admin_notifications' => '通知管理', + 'admin_notifications_expl' => 'これらの通知は管理者によって有効/無効にできます。 Slack でもこれらのメッセージを取得したい場合は、"incoming webhook" URL を設定します。', + 'admin_notification_check_user_new_reg' => 'ユーザーが登録後のウェルカムメッセージを受け取ります', + 'admin_notification_check_admin_new_reg' => '管理者は新しいユーザー登録通知を受け取ります', + 'admin_notification_check_new_version' => '新しいバージョンが利用可能です', + 'admin_notification_check_invite_created' => 'Firefly IIIにユーザー招待されました', + 'admin_notification_check_invite_redeemed' => 'ユーザー招待が利用されました', + 'all_invited_users' => '招待されたすべてのユーザー', + 'save_notification_settings' => '設定を保存', + 'notification_settings_saved' => '通知設定が保存されました。', - 'split_transaction_title' => '分割取引の概要', - 'split_transaction_title_help' => '分割取引を作成する場合、取引のすべての分割の包括的な概要が必要です。', - 'split_title_help' => '分割取引を作成する場合、取引のすべての分割の包括的な概要が必要です。', - 'you_create_transfer' => '送金を作成しています。', - 'you_create_withdrawal' => '出金を作成しています。', - 'you_create_deposit' => '入金を作成しています。', + 'split_transaction_title' => '分割取引の概要', + 'split_transaction_title_help' => '分割取引を作成する場合、取引のすべての分割の包括的な概要が必要です。', + 'split_title_help' => '分割取引を作成する場合、取引のすべての分割の包括的な概要が必要です。', + 'you_create_transfer' => '送金を作成しています。', + 'you_create_withdrawal' => '出金を作成しています。', + 'you_create_deposit' => '入金を作成しています。', // links - 'journal_link_configuration' => '取引リンクの設定', - 'create_new_link_type' => '新しいリンクタイプを作成', - 'store_new_link_type' => '新しいリンクタイプを保存', - 'update_link_type' => 'リンクタイプを更新', - 'edit_link_type' => 'リンクタイプ「:name」を更新', - 'updated_link_type' => 'リンクタイプ「:name」を更新しました', - 'delete_link_type' => 'リンクタイプ「:name」を削除', - 'deleted_link_type' => 'リンクタイプ「:name」を削除しました', - 'stored_new_link_type' => '新しいリンクタイプ「:name」を保存しました', - 'cannot_edit_link_type' => 'リンクタイプ「:name」を編集できません', - 'link_type_help_name' => '例「重複」', - 'link_type_help_inward' => '例「重複」', - 'link_type_help_outward' => '例「次と重複」', - 'save_connections_by_moving' => 'これらの取引間のリンクを、別のリンクタイプに変更して保存します:', - 'do_not_save_connection' => '(接続を保存しない)', - 'link_transaction' => '取引をリンク', - 'link_to_other_transaction' => 'この取引を別の取引にリンク', - 'select_transaction_to_link' => 'この取引をリンクする取引を選択します。 Firefly III では現在リンクは(表示はされているものの)使用されていませんが、今後変更する予定です。 検索ボックスを使用して、タイトルまたはIDで取引を選択します。 カスタムリンクタイプを追加する場合は、管理セクションを確認してください。', - 'this_transaction' => 'この取引', - 'transaction' => '取引', - 'comments' => 'コメント', - 'link_notes' => 'リンクに保存したい備考。', - 'invalid_link_selection' => 'これらの取引はリンクできません', - 'selected_transaction' => '選択した取引', - 'journals_linked' => '取引がリンクされました。', - 'journals_error_linked' => 'これらの取引はすでにリンクされています。', - 'journals_link_to_self' => '取引を同じ取引にリンクすることはできません', - 'journal_links' => '取引リンク', - 'this_withdrawal' => 'この出金', - 'this_deposit' => 'この入金', - 'this_transfer' => 'この送金', - 'overview_for_link' => 'リンクタイプ「:name」の概要', - 'source_transaction' => '元の取引', - 'link_description' => 'リンクの概要', - 'destination_transaction' => '取引先', - 'delete_journal_link' => ':source:destination の間のリンクを削除する', - 'deleted_link' => 'リンクを削除しました', + 'journal_link_configuration' => '取引リンクの設定', + 'create_new_link_type' => '新しいリンクタイプを作成', + 'store_new_link_type' => '新しいリンクタイプを保存', + 'update_link_type' => 'リンクタイプを更新', + 'edit_link_type' => 'リンクタイプ「:name」を更新', + 'updated_link_type' => 'リンクタイプ「:name」を更新しました', + 'delete_link_type' => 'リンクタイプ「:name」を削除', + 'deleted_link_type' => 'リンクタイプ「:name」を削除しました', + 'stored_new_link_type' => '新しいリンクタイプ「:name」を保存しました', + 'cannot_edit_link_type' => 'リンクタイプ「:name」を編集できません', + 'link_type_help_name' => '例「重複」', + 'link_type_help_inward' => '例「重複」', + 'link_type_help_outward' => '例「次と重複」', + 'save_connections_by_moving' => 'これらの取引間のリンクを、別のリンクタイプに変更して保存します:', + 'do_not_save_connection' => '(接続を保存しない)', + 'link_transaction' => '取引をリンク', + 'link_to_other_transaction' => 'この取引を別の取引にリンク', + 'select_transaction_to_link' => 'この取引をリンクする取引を選択します。 Firefly III では現在リンクは(表示はされているものの)使用されていませんが、今後変更する予定です。 検索ボックスを使用して、タイトルまたはIDで取引を選択します。 カスタムリンクタイプを追加する場合は、管理セクションを確認してください。', + 'this_transaction' => 'この取引', + 'transaction' => '取引', + 'comments' => 'コメント', + 'link_notes' => 'リンクに保存したい備考。', + 'invalid_link_selection' => 'これらの取引はリンクできません', + 'selected_transaction' => '選択した取引', + 'journals_linked' => '取引がリンクされました。', + 'journals_error_linked' => 'これらの取引はすでにリンクされています。', + 'journals_link_to_self' => '取引を同じ取引にリンクすることはできません', + 'journal_links' => '取引リンク', + 'this_withdrawal' => 'この出金', + 'this_deposit' => 'この入金', + 'this_transfer' => 'この送金', + 'overview_for_link' => 'リンクタイプ「:name」の概要', + 'source_transaction' => '元の取引', + 'link_description' => 'リンクの概要', + 'destination_transaction' => '取引先', + 'delete_journal_link' => ':source:destination の間のリンクを削除する', + 'deleted_link' => 'リンクを削除しました', // link translations: - 'Paid_name' => '支払い済み', - 'Refund_name' => '返済', - 'Reimbursement_name' => '払い戻し', - 'Related_name' => '関連', - 'relates to_inward' => '関連する', - 'is (partially) refunded by_inward' => '次のユーザーによって (部分的に) 返済されます', - 'is (partially) paid for by_inward' => '次のユーザーによって (部分的に) 支払われます', - 'is (partially) reimbursed by_inward' => '次のユーザーによって (部分的に) 払い戻されます', - 'inward_transaction' => '内部取引', - 'outward_transaction' => '外部取引', - 'relates to_outward' => '関連する', - '(partially) refunds_outward' => '(部分的な) 返済', - '(partially) pays for_outward' => '(部分的な) 支払い', - '(partially) reimburses_outward' => '(部分的な) 払い戻し', - 'is (partially) refunded by' => '次のユーザーによって (部分的に) 返済されます', - 'is (partially) paid for by' => '次のユーザーによって (部分的に) 支払われます', - 'is (partially) reimbursed by' => '次のユーザーによって (部分的に) 払い戻されます', - 'relates to' => '関連する', - '(partially) refunds' => '(部分的な) 返済', - '(partially) pays for' => '(部分的な) 支払い', - '(partially) reimburses' => '(部分的な) 払い戻し', + 'Paid_name' => '支払い済み', + 'Refund_name' => '返済', + 'Reimbursement_name' => '払い戻し', + 'Related_name' => '関連', + 'relates to_inward' => '関連する', + 'is (partially) refunded by_inward' => '次のユーザーによって (部分的に) 返済されます', + 'is (partially) paid for by_inward' => '次のユーザーによって (部分的に) 支払われます', + 'is (partially) reimbursed by_inward' => '次のユーザーによって (部分的に) 払い戻されます', + 'inward_transaction' => '内部取引', + 'outward_transaction' => '外部取引', + 'relates to_outward' => '関連する', + '(partially) refunds_outward' => '(部分的な) 返済', + '(partially) pays for_outward' => '(部分的な) 支払い', + '(partially) reimburses_outward' => '(部分的な) 払い戻し', + 'is (partially) refunded by' => '次のユーザーによって (部分的に) 返済されます', + 'is (partially) paid for by' => '次のユーザーによって (部分的に) 支払われます', + 'is (partially) reimbursed by' => '次のユーザーによって (部分的に) 払い戻されます', + 'relates to' => '関連する', + '(partially) refunds' => '(部分的な) 返済', + '(partially) pays for' => '(部分的な) 支払い', + '(partially) reimburses' => '(部分的な) 払い戻し', // split a transaction: - 'splits' => '分割', - 'add_another_split' => '別の分割を追加', - 'cannot_edit_opening_balance' => '口座の開始残高は編集できません。', - 'no_edit_multiple_left' => '編集する有効な取引が選択されていません。', - 'breadcrumb_convert_group' => '取引を変換', - 'convert_invalid_source' => '取引 #%d の引き出し元情報が無効です。', - 'convert_invalid_destination' => '取引 #%d の宛先情報が無効です。', - 'create_another' => '保存後に戻り作成を続ける。', - 'after_update_create_another' => '保存後に戻って編集を続ける。', - 'store_as_new' => '更新せず新しい取引として保存する。', - 'reset_after' => '送信後にフォームをリセット', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => '分割を展開', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => '分割をたたむ', + 'splits' => '分割', + 'add_another_split' => '別の分割を追加', + 'cannot_edit_opening_balance' => '口座の開始残高は編集できません。', + 'no_edit_multiple_left' => '編集する有効な取引が選択されていません。', + 'breadcrumb_convert_group' => '取引を変換', + 'convert_invalid_source' => '取引 #%d の引き出し元情報が無効です。', + 'convert_invalid_destination' => '取引 #%d の宛先情報が無効です。', + 'create_another' => '保存後に戻り作成を続ける。', + 'after_update_create_another' => '保存後に戻って編集を続ける。', + 'store_as_new' => '更新せず新しい取引として保存する。', + 'reset_after' => '送信後にフォームをリセット', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => '分割を展開', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => '分割をたたむ', // object groups - 'default_group_title_name' => '(グループなし)', - 'default_group_title_name_plain' => 'グループ解除', + 'default_group_title_name' => '(グループなし)', + 'default_group_title_name_plain' => 'グループ解除', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => '資産口座を作成しましょう!', - 'no_accounts_intro_asset' => '資産口座がまだありません。資産口座は当座預金口座、貯蓄口座、共有口座、さらにはクレジットカードといった、あなたの主要口座です。', - 'no_accounts_imperative_asset' => 'Firefly III を始めるには、少なくとも1つの資産口座が必要です。今すぐ作成しましょう:', - 'no_accounts_create_asset' => '資産口座の作成', - 'no_accounts_title_expense' => '支出口座を作成しましょう!', - 'no_accounts_intro_expense' => '支出口座がまだありません。支出口座は、お店やスーパーマーケットなどのお金を支出する先です。', - 'no_accounts_imperative_expense' => '支出口座は取引を作成するときに自動的に作成されますが、必要に応じて手動で作成することもできます。今すぐ作成しましょう:', - 'no_accounts_create_expense' => '支出口座を作成する', - 'no_accounts_title_revenue' => '収入口座を作成しましょう!', - 'no_accounts_intro_revenue' => '収入口座がまだありません。収入口座は雇用主などからお金を受け取るところです。', - 'no_accounts_imperative_revenue' => '収入口座は取引を作成するときに自動的に作成されますが、必要に応じて手動で作成することもできます。今すぐ作成しましょう:', - 'no_accounts_create_revenue' => '収入口座を作成', - 'no_accounts_title_liabilities' => '債務を作成しましょう!', - 'no_accounts_intro_liabilities' => 'まだ債務がありません。債務は (学生) ローンやその他の借金を登録する口座です。', - 'no_accounts_imperative_liabilities' => 'この機能を使用する必要はありませんが、これらを把握したい場合に便利です。', - 'no_accounts_create_liabilities' => '債務を作成', - 'no_budgets_title_default' => '予算を作成しましょう', - 'no_rules_title_default' => 'ルールを作ってみましょう!', - 'no_budgets_intro_default' => '予算はまだありません。予算は支出をグループに分類し、制限するための目安になります。', - 'no_rules_intro_default' => 'ルールはまだありません。ルールは取引を処理できる強力な自動化機能です。', - 'no_rules_imperative_default' => 'ルールは取引を管理するときに非常に便利です。今すぐ作成してみましょう:', - 'no_budgets_imperative_default' => '予算は資産管理の基本的なツールです。今すぐ作成しましょう:', - 'no_budgets_create_default' => '予算を作成', - 'no_rules_create_default' => 'ルールを作成', - 'no_categories_title_default' => 'カテゴリを作成しましょう!', - 'no_categories_intro_default' => 'カテゴリはまだありません。カテゴリは取引を微調整し、指定されたカテゴリでラベル付けするために使用されます。', - 'no_categories_imperative_default' => 'カテゴリは取引を作成するときに自動的に作成されますが、手動で作成することもできます。今すぐ作成しましょう:', - 'no_categories_create_default' => 'カテゴリを作成', - 'no_tags_title_default' => 'タグを作成しましょう!', - 'no_tags_intro_default' => 'タグはまだありません。タグは取引を微調整し、特定のキーワードでラベル付けするために使用されます。', - 'no_tags_imperative_default' => 'タグは取引を作成すると自動的に作成されますが、手動で作成することもできます。今すぐ作成しましょう:', - 'no_tags_create_default' => 'タグを作成', - 'no_transactions_title_withdrawal' => '支出を作成しましょう!', - 'no_transactions_intro_withdrawal' => '支出はまだありません。資産の管理をはじめるため、経費を作成しましょう。', - 'no_transactions_imperative_withdrawal' => 'お金を使ったことがありますか?それらを記録しましょう:', - 'no_transactions_create_withdrawal' => '支出を作成する', - 'no_transactions_title_deposit' => '収入を作ってみよう!', - 'no_transactions_intro_deposit' => '収入記録はまだありません。資産の管理を開始するための収入エントリを作成する必要があります。', - 'no_transactions_imperative_deposit' => 'お金を受け取ったことがありますか?それらを記録しましょう:', - 'no_transactions_create_deposit' => '新しい入金を作成する', - 'no_transactions_title_transfers' => '送金を作成しましょう!', - 'no_transactions_intro_transfers' => '送金はまだありません。資産口座間でお金を移動すると、送金として記録されます。', - 'no_transactions_imperative_transfers' => 'お金を移動しましたか?それらは記録すべきです:', - 'no_transactions_create_transfers' => '送金を作成', - 'no_piggies_title_default' => '貯金箱を作成しましょう!', - 'no_piggies_intro_default' => 'まだ貯金箱がありません。貯金を分割し、把握するために貯金箱を作ることができます。', - 'no_piggies_imperative_default' => '何かのためにお金を貯めていますか?貯金箱を作って把握しましょう:', - 'no_piggies_create_default' => '新規貯金箱の作成', - 'no_bills_title_default' => '請求を作成しましょう!', - 'no_bills_intro_default' => 'まだ請求がありません。家賃や保険のような定期的な支出の把握のために、請求をつくることができます。', - 'no_bills_imperative_default' => '定期的な請求がありますか?請求を作成し支払いを把握しましょう:', - 'no_bills_create_default' => '請求を作成', + 'no_accounts_title_asset' => '資産口座を作成しましょう!', + 'no_accounts_intro_asset' => '資産口座がまだありません。資産口座は当座預金口座、貯蓄口座、共有口座、さらにはクレジットカードといった、あなたの主要口座です。', + 'no_accounts_imperative_asset' => 'Firefly III を始めるには、少なくとも1つの資産口座が必要です。今すぐ作成しましょう:', + 'no_accounts_create_asset' => '資産口座の作成', + 'no_accounts_title_expense' => '支出口座を作成しましょう!', + 'no_accounts_intro_expense' => '支出口座がまだありません。支出口座は、お店やスーパーマーケットなどのお金を支出する先です。', + 'no_accounts_imperative_expense' => '支出口座は取引を作成するときに自動的に作成されますが、必要に応じて手動で作成することもできます。今すぐ作成しましょう:', + 'no_accounts_create_expense' => '支出口座を作成する', + 'no_accounts_title_revenue' => '収入口座を作成しましょう!', + 'no_accounts_intro_revenue' => '収入口座がまだありません。収入口座は雇用主などからお金を受け取るところです。', + 'no_accounts_imperative_revenue' => '収入口座は取引を作成するときに自動的に作成されますが、必要に応じて手動で作成することもできます。今すぐ作成しましょう:', + 'no_accounts_create_revenue' => '収入口座を作成', + 'no_accounts_title_liabilities' => '債務を作成しましょう!', + 'no_accounts_intro_liabilities' => 'まだ債務がありません。債務は (学生) ローンやその他の借金を登録する口座です。', + 'no_accounts_imperative_liabilities' => 'この機能を使用する必要はありませんが、これらを把握したい場合に便利です。', + 'no_accounts_create_liabilities' => '債務を作成', + 'no_budgets_title_default' => '予算を作成しましょう', + 'no_rules_title_default' => 'ルールを作ってみましょう!', + 'no_budgets_intro_default' => '予算はまだありません。予算は支出をグループに分類し、制限するための目安になります。', + 'no_rules_intro_default' => 'ルールはまだありません。ルールは取引を処理できる強力な自動化機能です。', + 'no_rules_imperative_default' => 'ルールは取引を管理するときに非常に便利です。今すぐ作成してみましょう:', + 'no_budgets_imperative_default' => '予算は資産管理の基本的なツールです。今すぐ作成しましょう:', + 'no_budgets_create_default' => '予算を作成', + 'no_rules_create_default' => 'ルールを作成', + 'no_categories_title_default' => 'カテゴリを作成しましょう!', + 'no_categories_intro_default' => 'カテゴリはまだありません。カテゴリは取引を微調整し、指定されたカテゴリでラベル付けするために使用されます。', + 'no_categories_imperative_default' => 'カテゴリは取引を作成するときに自動的に作成されますが、手動で作成することもできます。今すぐ作成しましょう:', + 'no_categories_create_default' => 'カテゴリを作成', + 'no_tags_title_default' => 'タグを作成しましょう!', + 'no_tags_intro_default' => 'タグはまだありません。タグは取引を微調整し、特定のキーワードでラベル付けするために使用されます。', + 'no_tags_imperative_default' => 'タグは取引を作成すると自動的に作成されますが、手動で作成することもできます。今すぐ作成しましょう:', + 'no_tags_create_default' => 'タグを作成', + 'no_transactions_title_withdrawal' => '支出を作成しましょう!', + 'no_transactions_intro_withdrawal' => '支出はまだありません。資産の管理をはじめるため、経費を作成しましょう。', + 'no_transactions_imperative_withdrawal' => 'お金を使ったことがありますか?それらを記録しましょう:', + 'no_transactions_create_withdrawal' => '支出を作成する', + 'no_transactions_title_deposit' => '収入を作ってみよう!', + 'no_transactions_intro_deposit' => '収入記録はまだありません。資産の管理を開始するための収入エントリを作成する必要があります。', + 'no_transactions_imperative_deposit' => 'お金を受け取ったことがありますか?それらを記録しましょう:', + 'no_transactions_create_deposit' => '新しい入金を作成する', + 'no_transactions_title_transfers' => '送金を作成しましょう!', + 'no_transactions_intro_transfers' => '送金はまだありません。資産口座間でお金を移動すると、送金として記録されます。', + 'no_transactions_imperative_transfers' => 'お金を移動しましたか?それらは記録すべきです:', + 'no_transactions_create_transfers' => '送金を作成', + 'no_piggies_title_default' => '貯金箱を作成しましょう!', + 'no_piggies_intro_default' => 'まだ貯金箱がありません。貯金を分割し、把握するために貯金箱を作ることができます。', + 'no_piggies_imperative_default' => '何かのためにお金を貯めていますか?貯金箱を作って把握しましょう:', + 'no_piggies_create_default' => '新規貯金箱の作成', + 'no_bills_title_default' => '請求を作成しましょう!', + 'no_bills_intro_default' => 'まだ請求がありません。家賃や保険のような定期的な支出の把握のために、請求をつくることができます。', + 'no_bills_imperative_default' => '定期的な請求がありますか?請求を作成し支払いを把握しましょう:', + 'no_bills_create_default' => '請求を作成', // recurring transactions - 'create_right_now' => '今すぐ作成', - 'no_new_transaction_in_recurrence' => '新しい取引は作成されませんでした。この日付で既に発行されている可能性があります。', - 'recurrences' => '定期的な取引', - 'repeat_until_in_past' => 'この繰り返し取引は :date で繰り返し処理を停止しました。', - 'recurring_calendar_view' => 'カレンダー', - 'no_recurring_title_default' => '定期的な取引を作成しましょう!', - 'no_recurring_intro_default' => '定期的な取引はまだありません。定期的な取引で Firefly III に自動的に取引を作成させることができます。', - 'no_recurring_imperative_default' => 'これはかなり高度な機能ですが、非常に便利です。 続行する前に、ドキュメント(?)アイコンを必ず読んでください。', - 'no_recurring_create_default' => '定期的な取引を作成', - 'make_new_recurring' => '定期的な取引を作成', - 'recurring_daily' => '毎日', - 'recurring_weekly' => '毎週 :weekday', - 'recurring_weekly_skip' => '毎月第 :skip :weekday', - 'recurring_monthly' => '毎月 :dayOfMonth 日', - 'recurring_monthly_skip' => ':skipヶ月ごとの :dayOfMonth 日', - 'recurring_ndom' => '毎月第 :dayOfMonth :weekday', - 'recurring_yearly' => '毎年 :date', - 'overview_for_recurrence' => '定期的な取引「:title」の概要', - 'warning_duplicates_repetitions' => 'まれに日付が2回、このリストに表示されます。これは複数の繰り返しが衝突したときに発生する可能性があります。Firefly III は常に1日につき1つの取引を生成します。', - 'created_transactions' => '関連する取引', - 'expected_withdrawals' => '出金予測', - 'expected_deposits' => '入金予測', - 'expected_transfers' => '送金予測', - 'created_withdrawals' => '出金を作成しました', - 'created_deposits' => '入金を作成しました', - 'created_transfers' => '送金を作成しました', - 'recurring_info' => '定期的な取引 :count / :total', - 'created_from_recurrence' => '定期的な取引「:title」(#:id) から作成されました', - 'recurring_never_cron' => '定期的な取引をサポートするために必要なcronジョブは、一度も実行されていないようです。Firefly III をインストールしたばかりの場合は、これは普通のことですが、できるだけ早く設定する必要があります。 ページの右上隅にある (?) アイコンを使用してヘルプページを確認してください。', - 'recurring_cron_long_ago' => '定期的な取引をサポートするための cron ジョブが前回実行されてから36時間以上が経過しているようです。 正しく設定されていますか?ページの右上隅にある(?)アイコンから、ヘルプページを確認してください。', + 'create_right_now' => '今すぐ作成', + 'no_new_transaction_in_recurrence' => '新しい取引は作成されませんでした。この日付で既に発行されている可能性があります。', + 'recurrences' => '定期的な取引', + 'repeat_until_in_past' => 'この繰り返し取引は :date で繰り返し処理を停止しました。', + 'recurring_calendar_view' => 'カレンダー', + 'no_recurring_title_default' => '定期的な取引を作成しましょう!', + 'no_recurring_intro_default' => '定期的な取引はまだありません。定期的な取引で Firefly III に自動的に取引を作成させることができます。', + 'no_recurring_imperative_default' => 'これはかなり高度な機能ですが、非常に便利です。 続行する前に、ドキュメント(?)アイコンを必ず読んでください。', + 'no_recurring_create_default' => '定期的な取引を作成', + 'make_new_recurring' => '定期的な取引を作成', + 'recurring_daily' => '毎日', + 'recurring_weekly' => '毎週 :weekday', + 'recurring_weekly_skip' => '毎月第 :skip :weekday', + 'recurring_monthly' => '毎月 :dayOfMonth 日', + 'recurring_monthly_skip' => ':skipヶ月ごとの :dayOfMonth 日', + 'recurring_ndom' => '毎月第 :dayOfMonth :weekday', + 'recurring_yearly' => '毎年 :date', + 'overview_for_recurrence' => '定期的な取引「:title」の概要', + 'warning_duplicates_repetitions' => 'まれに日付が2回、このリストに表示されます。これは複数の繰り返しが衝突したときに発生する可能性があります。Firefly III は常に1日につき1つの取引を生成します。', + 'created_transactions' => '関連する取引', + 'expected_withdrawals' => '出金予測', + 'expected_deposits' => '入金予測', + 'expected_transfers' => '送金予測', + 'created_withdrawals' => '出金を作成しました', + 'created_deposits' => '入金を作成しました', + 'created_transfers' => '送金を作成しました', + 'recurring_info' => '定期的な取引 :count / :total', + 'created_from_recurrence' => '定期的な取引「:title」(#:id) から作成されました', + 'recurring_never_cron' => '定期的な取引をサポートするために必要なcronジョブは、一度も実行されていないようです。Firefly III をインストールしたばかりの場合は、これは普通のことですが、できるだけ早く設定する必要があります。 ページの右上隅にある (?) アイコンを使用してヘルプページを確認してください。', + 'recurring_cron_long_ago' => '定期的な取引をサポートするための cron ジョブが前回実行されてから36時間以上が経過しているようです。 正しく設定されていますか?ページの右上隅にある(?)アイコンから、ヘルプページを確認してください。', - 'create_new_recurrence' => '定期的な取引を作成', - 'help_first_date' => '初回の繰り返し予定を示します。これは未来の日付でなければなりません。', - 'help_first_date_no_past' => '繰り返し取引の初回を示します。Firefly III は過去に取引を作成しません。', - 'no_currency' => '(通貨なし)', - 'mandatory_for_recurring' => '繰り返しの必須情報', - 'mandatory_for_transaction' => '必須の取引情報', - 'optional_for_recurring' => '繰り返しのオプション情報', - 'optional_for_transaction' => 'オプションの取引情報', - 'change_date_other_options' => '「最初の日付」を変更して、他のオプションを表示します。', - 'mandatory_fields_for_tranaction' => 'この値で取引が作成されます。', - 'click_for_calendar' => '取引が繰り返されるときに表示されるカレンダーはここをクリックしてください。', - 'repeat_forever' => '無期限に繰り返す', - 'repeat_until_date' => '終了日まで繰り返す', - 'repeat_times' => '指定回数繰り返す', - 'recurring_skips_one' => '他すべて', - 'recurring_skips_more' => ':count 回の発生をスキップ', - 'store_new_recurrence' => '定期的な取引を保存', - 'stored_new_recurrence' => '定期的な取引「:title」が正常に保存されました。', - 'edit_recurrence' => '定期的な取引 ":title"を編集', - 'recurring_repeats_until' => ':date まで繰り返し', - 'recurring_repeats_forever' => '無期限に繰り返し', - 'recurring_repeats_x_times' => '繰り返し :count 回|繰り返し :count 回', - 'update_recurrence' => '定期的な取引を更新', - 'updated_recurrence' => '定期的な取引「:title」を更新しました', - 'recurrence_is_inactive' => 'この定期的な取引は有効ではないため、新しい取引は生成されません。', - 'delete_recurring' => '定期的な取引「:title」を削除', - 'new_recurring_transaction' => '新しい定期的な取引', - 'help_weekend' => '定期的な取引が土曜日または日曜日になる場合、Firefly III は何をすべきですか?', - 'do_nothing' => '新規取引を作成', - 'skip_transaction' => '発生をスキップ', - 'jump_to_friday' => '代わりに前の金曜日に取引を作成します', - 'jump_to_monday' => '代わりに次の月曜日に取引を作成します', - 'will_jump_friday' => '週末の代わりに金曜日に作成されます。', - 'will_jump_monday' => '週末の代わりに月曜日に作成されます。', - 'except_weekends' => '週末を除外する', - 'recurrence_deleted' => '定期的な取引「:title」を削除しました', + 'create_new_recurrence' => '定期的な取引を作成', + 'help_first_date' => '初回の繰り返し予定を示します。これは未来の日付でなければなりません。', + 'help_first_date_no_past' => '繰り返し取引の初回を示します。Firefly III は過去に取引を作成しません。', + 'no_currency' => '(通貨なし)', + 'mandatory_for_recurring' => '繰り返しの必須情報', + 'mandatory_for_transaction' => '必須の取引情報', + 'optional_for_recurring' => '繰り返しのオプション情報', + 'optional_for_transaction' => 'オプションの取引情報', + 'change_date_other_options' => '「最初の日付」を変更して、他のオプションを表示します。', + 'mandatory_fields_for_tranaction' => 'この値で取引が作成されます。', + 'click_for_calendar' => '取引が繰り返されるときに表示されるカレンダーはここをクリックしてください。', + 'repeat_forever' => '無期限に繰り返す', + 'repeat_until_date' => '終了日まで繰り返す', + 'repeat_times' => '指定回数繰り返す', + 'recurring_skips_one' => '他すべて', + 'recurring_skips_more' => ':count 回の発生をスキップ', + 'store_new_recurrence' => '定期的な取引を保存', + 'stored_new_recurrence' => '定期的な取引「:title」が正常に保存されました。', + 'edit_recurrence' => '定期的な取引 ":title"を編集', + 'recurring_repeats_until' => ':date まで繰り返し', + 'recurring_repeats_forever' => '無期限に繰り返し', + 'recurring_repeats_x_times' => '繰り返し :count 回|繰り返し :count 回', + 'update_recurrence' => '定期的な取引を更新', + 'updated_recurrence' => '定期的な取引「:title」を更新しました', + 'recurrence_is_inactive' => 'この定期的な取引は有効ではないため、新しい取引は生成されません。', + 'delete_recurring' => '定期的な取引「:title」を削除', + 'new_recurring_transaction' => '新しい定期的な取引', + 'help_weekend' => '定期的な取引が土曜日または日曜日になる場合、Firefly III は何をすべきですか?', + 'do_nothing' => '新規取引を作成', + 'skip_transaction' => '発生をスキップ', + 'jump_to_friday' => '代わりに前の金曜日に取引を作成します', + 'jump_to_monday' => '代わりに次の月曜日に取引を作成します', + 'will_jump_friday' => '週末の代わりに金曜日に作成されます。', + 'will_jump_monday' => '週末の代わりに月曜日に作成されます。', + 'except_weekends' => '週末を除外する', + 'recurrence_deleted' => '定期的な取引「:title」を削除しました', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => '残高 (:currency)', - 'box_spent_in_currency' => '支出 (:currency)', - 'box_earned_in_currency' => '収益 (:currency)', - 'box_budgeted_in_currency' => '予算確保 (:currency)', - 'box_bill_paid_in_currency' => '支払い済み請求 (:currency)', - 'box_bill_unpaid_in_currency' => '未払いの請求 (:currency)', - 'box_left_to_spend_in_currency' => '残り支出 (:currency)', - 'box_net_worth_in_currency' => '純資産 (:currency)', - 'box_spend_per_day' => '1日あたりの支出残り: :amount', + 'box_balance_in_currency' => '残高 (:currency)', + 'box_spent_in_currency' => '支出 (:currency)', + 'box_earned_in_currency' => '収益 (:currency)', + 'box_budgeted_in_currency' => '予算確保 (:currency)', + 'box_bill_paid_in_currency' => '支払い済み請求 (:currency)', + 'box_bill_unpaid_in_currency' => '未払いの請求 (:currency)', + 'box_left_to_spend_in_currency' => '残り支出 (:currency)', + 'box_net_worth_in_currency' => '純資産 (:currency)', + 'box_spend_per_day' => '1日あたりの支出残り: :amount', // debug page - 'debug_page' => 'デバッグページ', - 'debug_submit_instructions' => '問題が発生している場合は、この情報をデバッグ情報として使用できます。 新規または既存の GitHub issueにコピー&ペーストしてください。 それは問題を迅速に診断するための、すばらしいテーブルを生成します。', - 'debug_pretty_table' => '以下の内容を GitHub issue にコピー&ペーストするとテーブルが生成されます。バックティック (`) や引用符で囲まないでください。', - 'debug_additional_data' => '以下の内容を共有することもできます。 新規または既存の GitHub issueにこれをコピー&ペーストすることもできます。 ただし、この以下の内容には、口座名、取引の詳細、または電子メールアドレスなどの個人情報が含まれている場合があります。', + 'debug_page' => 'デバッグページ', + 'debug_submit_instructions' => '問題が発生している場合は、この情報をデバッグ情報として使用できます。 新規または既存の GitHub issueにコピー&ペーストしてください。 それは問題を迅速に診断するための、すばらしいテーブルを生成します。', + 'debug_pretty_table' => '以下の内容を GitHub issue にコピー&ペーストするとテーブルが生成されます。バックティック (`) や引用符で囲まないでください。', + 'debug_additional_data' => '以下の内容を共有することもできます。 新規または既存の GitHub issueにこれをコピー&ペーストすることもできます。 ただし、この以下の内容には、口座名、取引の詳細、または電子メールアドレスなどの個人情報が含まれている場合があります。', // object groups - 'object_groups_menu_bar' => 'グループ', - 'object_groups_page_title' => 'グループ', - 'object_groups_breadcrumb' => 'グループ', - 'object_groups_index' => '概要', - 'object_groups' => 'グループ', - 'object_groups_empty_explain' => 'Firefly III のいくつかのものはグループに分けることができます。貯金箱を例に挙げると、編集/作成画面に「グループ」項目があります。 この項目を設定すると、グループの名前とページ内でのグループ表示順を編集できます。 詳細については、右上の(?) アイコンの下にあるヘルプページをご覧ください。', - 'object_group_title' => 'タイトル', - 'edit_object_group' => 'グループ「:title」を編集', - 'delete_object_group' => 'グループ「:title」を削除', - 'update_object_group' => 'グループの更新', - 'updated_object_group' => 'グループ「:title」を更新しました', - 'deleted_object_group' => 'グループ「:title」を削除しました', - 'object_group' => 'グループ', + 'object_groups_menu_bar' => 'グループ', + 'object_groups_page_title' => 'グループ', + 'object_groups_breadcrumb' => 'グループ', + 'object_groups_index' => '概要', + 'object_groups' => 'グループ', + 'object_groups_empty_explain' => 'Firefly III のいくつかのものはグループに分けることができます。貯金箱を例に挙げると、編集/作成画面に「グループ」項目があります。 この項目を設定すると、グループの名前とページ内でのグループ表示順を編集できます。 詳細については、右上の(?) アイコンの下にあるヘルプページをご覧ください。', + 'object_group_title' => 'タイトル', + 'edit_object_group' => 'グループ「:title」を編集', + 'delete_object_group' => 'グループ「:title」を削除', + 'update_object_group' => 'グループの更新', + 'updated_object_group' => 'グループ「:title」を更新しました', + 'deleted_object_group' => 'グループ「:title」を削除しました', + 'object_group' => 'グループ', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => '監査ログのエントリ', - 'ale_action_log_add' => '貯金箱「:name」に「:amount」を追加', - 'ale_action_log_remove' => '貯金箱「:name」から:amountを減算', - 'ale_action_clear_budget' => '予算から削除されました', - 'ale_action_update_group_title' => '更新された取引グループタイトル', - 'ale_action_update_date' => '更新された取引日', - 'ale_action_update_order' => '更新された取引並び順', - 'ale_action_clear_category' => 'カテゴリから削除されました', - 'ale_action_clear_notes' => '削除された備考', - 'ale_action_clear_tag' => '削除されたタグ', - 'ale_action_clear_all_tags' => '削除されたすべてのタグ', - 'ale_action_set_bill' => '請求にリンクされました', - 'ale_action_switch_accounts' => '引き出し口座と預け入れ口座を切り替えました', - 'ale_action_set_budget' => '予算を設定する', - 'ale_action_set_category' => 'カテゴリを設定する', - 'ale_action_set_source' => '引き出し口座を設定', - 'ale_action_set_destination' => '預け入れ口座を設定', - 'ale_action_update_transaction_type' => '変更された取引種別', - 'ale_action_update_notes' => '変更された備考', - 'ale_action_update_description' => '変更された概要', - 'ale_action_add_to_piggy' => '貯金箱', - 'ale_action_remove_from_piggy' => '貯金箱', - 'ale_action_add_tag' => '追加したタグ', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => '監査ログのエントリ', + 'ale_action_log_add' => '貯金箱「:name」に「:amount」を追加', + 'ale_action_log_remove' => '貯金箱「:name」から:amountを減算', + 'ale_action_clear_budget' => '予算から削除されました', + 'ale_action_update_group_title' => '更新された取引グループタイトル', + 'ale_action_update_date' => '更新された取引日', + 'ale_action_update_order' => '更新された取引並び順', + 'ale_action_clear_category' => 'カテゴリから削除されました', + 'ale_action_clear_notes' => '削除された備考', + 'ale_action_clear_tag' => '削除されたタグ', + 'ale_action_clear_all_tags' => '削除されたすべてのタグ', + 'ale_action_set_bill' => '請求にリンクされました', + 'ale_action_switch_accounts' => '引き出し口座と預け入れ口座を切り替えました', + 'ale_action_set_budget' => '予算を設定する', + 'ale_action_set_category' => 'カテゴリを設定する', + 'ale_action_set_source' => '引き出し口座を設定', + 'ale_action_set_destination' => '預け入れ口座を設定', + 'ale_action_update_transaction_type' => '変更された取引種別', + 'ale_action_update_notes' => '変更された備考', + 'ale_action_update_description' => '変更された概要', + 'ale_action_add_to_piggy' => '貯金箱', + 'ale_action_remove_from_piggy' => '貯金箱', + 'ale_action_add_tag' => '追加したタグ', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => '通貨の変換を有効にする', - 'disable_auto_convert' => '通貨の変換を無効にする', + 'enable_auto_convert' => '通貨の変換を有効にする', + 'disable_auto_convert' => '通貨の変換を無効にする', ]; /* diff --git a/resources/lang/ja_JP/validation.php b/resources/lang/ja_JP/validation.php index ad6b67e71e..b5bdaf284e 100644 --- a/resources/lang/ja_JP/validation.php +++ b/resources/lang/ja_JP/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'この管理のための適切なアクセス権がありません。', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/ko_KR/firefly.php b/resources/lang/ko_KR/firefly.php index 733af347ea..4718a2f010 100644 --- a/resources/lang/ko_KR/firefly.php +++ b/resources/lang/ko_KR/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => '닫기', - 'actions' => '액션', - 'edit' => '수정', - 'delete' => '삭제', - 'split' => '나누기', - 'single_split' => '나누기', - 'clone' => '복사', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => '액션 확인', - 'last_seven_days' => '최근 7일', - 'last_thirty_days' => '최근 30일', - 'last_180_days' => '최근 180일', - 'month_to_date' => '월간 누계', - 'year_to_date' => '연간 누계', - 'YTD' => 'YTD', - 'welcome_back' => '무슨 일이죠?', - 'everything' => '모든 것', - 'today' => '오늘', - 'customRange' => '맞춤 범위', - 'date_range' => '날짜 범위', - 'apply' => '적용', - 'select_date' => '날짜 선택', - 'cancel' => '취소', - 'from' => '에서', - 'to' => '에게', - 'structure' => '구조', - 'help_translating' => '이 도움말 텍스트는 아직 귀하의 언어를 지원하지 않습니다. 번역을 도와 주시겠습니까?', - 'showEverything' => '모두 보기', - 'never' => '절대', - 'no_results_for_empty_search' => '검색 조건이 비어서 아무것도 찾을 수 없습니다.', - 'removed_amount' => ':amount 삭제됨', - 'added_amount' => ':amount 추가됨', - 'asset_account_role_help' => '선택에 따른 추가 옵션은 나중에 설정할 수 있습니다.', - 'Opening balance' => '초기 잔고', - 'create_new_stuff' => '새로 만들기', - 'new_withdrawal' => '신규 출금', - 'create_new_transaction' => '새로운 거래 만들기', - 'sidebar_frontpage_create' => '생성', - 'new_transaction' => '새 거래', - 'no_rules_for_bill' => '이 청구서는 관련된 규칙이 없습니다.', - 'go_to_asset_accounts' => '자산 계정 보기', - 'go_to_budgets' => '예산으로 이동', - 'go_to_withdrawals' => '출금으로 이동', - 'clones_journal_x' => '이 거래는 ":description" (#:id)의 복제본입니다.', - 'go_to_categories' => '카테고리로 이동', - 'go_to_bills' => '청구서로 이동', - 'go_to_expense_accounts' => '지출 계정 보기', - 'go_to_revenue_accounts' => '수익 계정 보기', - 'go_to_piggies' => '저금통으로 이동', - 'new_deposit' => '신규 입금', - 'new_transfer' => '신규 이체', - 'new_transfers' => '신규 이체', - 'new_asset_account' => '새 자산 계정', - 'new_expense_account' => '새 지출 계정', - 'new_revenue_account' => '새 수익 계정', - 'new_liabilities_account' => '새 부채', - 'new_budget' => '새 예산', - 'new_bill' => '새 청구서', - 'block_account_logout' => '로그아웃되었습니다. 차단된 계정은 이 사이트를 사용할 수 없습니다. 유효한 이메일 주소로 등록하셨습니까?', - 'flash_success' => '성공!', - 'flash_info' => '메시지', - 'flash_warning' => '경고!', - 'flash_error' => '오류!', - 'flash_danger' => '위험!', - 'flash_info_multiple' => '메시지가 하나 있습니다|매시지가 :count개 있습니다', - 'flash_error_multiple' => '오류가 하나 있습니다|오류가 :count개 있습니다', - 'net_worth' => '순자산', - 'help_for_this_page' => '이 페이지에 대한 도움말', - 'help_for_this_page_body' => '이 페이지에 대한 자세한 정보는 문서에서 확인할 수 있습니다.', - 'two_factor_welcome' => '안녕하세요!', - 'two_factor_enter_code' => '계속하려면 2단계 인증 코드를 입력하세요. 애플리케이션에서 자동으로 생성할 수 있습니다.', - 'two_factor_code_here' => '여기에 코드 입력', - 'two_factor_title' => '2단계 인증', - 'authenticate' => '인증', - 'two_factor_forgot_title' => '2단계 인증 분실', - 'two_factor_forgot' => '2단계 인증을 잊었습니다.', - 'two_factor_lost_header' => '2단계 인증을 분실하셨나요?', - 'two_factor_lost_intro' => '백업 코드도 분실하셨다면 운이 나쁘신 것입니다. 이 문제는 웹 인터페이스에서 해결할 수 있는 문제가 아닙니다. 두 가지 선택지가 있습니다.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => '그렇지 않은 경우 사이트 소유자 :site_owner에게 이메일을 보내 2단계 인증을 재설정해 달라고 요청하세요.', - 'mfa_backup_code' => '백업 코드를 사용하여 Firefly III에 로그인했습니다. 코드는 다시 사용할 수 없으므로 목록에서 삭제하세요.', - 'pref_two_factor_new_backup_codes' => '새 백업 코드 얻기', - 'pref_two_factor_backup_code_count' => ':count개의 유효한 백업코드가 있습니다.|:count개의 유효한 백업코드가 있습니다.', - '2fa_i_have_them' => '저장했습니다!', - 'warning_much_data' => ':days일의 데이터를 로드하는데 시간이 걸릴 수 있습니다.', - 'registered' => '성공적으로 등록되었습니다!', - 'Default asset account' => '기본 자산 계정', - 'no_budget_pointer' => '예산이 아직 없는 것 같습니다. 예산 페이지에서 예산을 만들어야 합니다. 예산은 지출을 추적하는데 도움이 됩니다.', - 'no_bill_pointer' => '청구서가 아직 없는 것 같습니다. 청구서 페이지에서 청구서를 만들어야 합니다. 청구서는 비용을 추적하는 데 도움이 됩니다.', - 'Savings account' => '예금 계좌', - 'Credit card' => '신용카드', - 'source_accounts' => '소스 계정|소스 계정', - 'destination_accounts' => '대상 계정|대상 계정', - 'user_id_is' => '사용자 Id는 :user입니다', - 'field_supports_markdown' => '이 필드는 마크다운을 지원합니다.', - 'need_more_help' => 'Firefly III를 사용하는데 도움이 필요하다면 Github에서 티켓을 열어주세요.', - 'reenable_intro_text' => '소개 안내를 다시 활성화할 수도 있습니다.', - 'intro_boxes_after_refresh' => '페이지를 새로고침하면 소개 상자가 다시 나타납니다.', - 'show_all_no_filter' => '날짜별로 그룹화하지 않고 모든 거래를 표시합니다.', - 'expenses_by_category' => '카테고리별 지출', - 'expenses_by_budget' => '예산별 지출', - 'income_by_category' => '카테고리별 수입', - 'expenses_by_asset_account' => '자산 계정별 지출', - 'expenses_by_expense_account' => '지출 계정별 지출', - 'cannot_redirect_to_account' => 'Firefly III가 올바른 페이지로 리디렉션할 수 없습니다. 죄송합니다.', - 'sum_of_expenses' => '지출 합계', - 'sum_of_income' => '수입 합계', - 'liabilities' => '부채', - 'spent_in_specific_budget' => '":budget" 예산에서 지출', - 'spent_in_specific_double' => '":account" 계정에서 지출', - 'earned_in_specific_double' => '":account" 계정에서 소득', - 'source_account' => '소스 계정', - 'source_account_reconciliation' => '조정 거래의 소스 계정은 편집할 수 없습니다.', - 'destination_account' => '대상 계정', - 'destination_account_reconciliation' => '조정 거래의 대상 계정은 편집할 수 없습니다.', - 'sum_of_expenses_in_budget' => '":budget" 예산에서 총 지출', - 'left_in_budget_limit' => '예산 책정에 따른 남은 지출', - 'current_period' => '현재 기간', - 'show_the_current_period_and_overview' => '현재 기간 및 걔요 표시', - 'pref_languages_locale' => '영어 외의 언어가 제대로 동작하려면 운영 체제에 올바른 로케일 정보가 있어야 합니다. 그렇지 않은 경우 통화 데이터, 날짜 및 금액의 형식이 잘못 지정될 수 있습니다.', - 'budget_in_period' => ':currency에서 :start와 :end 사이의 예산 ":name"에 대한 모든 거래', - 'chart_budget_in_period' => ':currency에서 :start와 :end 사이의 예산 ":name"에 대한 모든 거래에 대한 차트', - 'chart_budget_in_period_only_currency' => '예산을 책정한 금액은 :currency이므로 이 차트에는 :currency의 거래만 표시됩니다.', - 'chart_account_in_period' => ':start와 :end 동안 ":name" (:balance) 계정의 모든 거래에 대한 차트', - 'chart_category_in_period' => ':start와 :end 동안 ":name" 카테고리의 모든 거래에 대한 차트', - 'chart_category_all' => '":name" 카테고리의 모든 거래에 대한 차트', - 'clone_withdrawal' => '이 출금을 복제합니다', - 'clone_deposit' => '이 입금을 복제합니다', - 'clone_transfer' => '이 이체를 복제합니다', - 'multi_select_no_selection' => '선택하지 않음', - 'multi_select_select_all' => '전체 선택', - 'multi_select_n_selected' => '선택됨', - 'multi_select_all_selected' => '모두 선택됨', - 'multi_select_filter_placeholder' => '찾기..', - 'intro_next_label' => '다음', - 'intro_prev_label' => '이전', - 'intro_skip_label' => '건너뛰기', - 'intro_done_label' => '완료', - 'between_dates_breadcrumb' => ':start와 :end 사이', - 'all_journals_without_budget' => '예산이 없는 모든 거래', - 'journals_without_budget' => '예산이 없는 거래', - 'all_journals_without_category' => '카테고리가 없는 모든 거래', - 'journals_without_category' => '카테고리가 없는 거래', - 'all_journals_for_account' => ':name 계정에 대한 모든 거래', - 'chart_all_journals_for_account' => ':name 계정에 대한 모든 거래 차트', - 'journals_in_period_for_account' => ':start와 :end 동안 ":name" 계정의 모든 거래', - 'journals_in_period_for_account_js' => '{start} 와 {end} 동안 {title} 계정의 모든 거래', - 'transferred' => '이체', - 'all_withdrawal' => '모든 지출', - 'all_transactions' => '모든 거래', - '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 instructions how to do this.', - 'quickswitch' => '퀵스위치', - 'sign_in_to_start' => '세션을 시작하려면 로그인하세요.', - 'sign_in' => '로그인', - 'register_new_account' => '새로운 계정 등록', - 'forgot_my_password' => '비밀번호를 잊어버렸습니다', - 'problems_with_input' => '입력에 오류가 있습니다.', - 'reset_password' => '비밀번호 초기화', - 'button_reset_password' => '비밀번호 초기화', - 'reset_button' => '초기화', - 'want_to_login' => '로그인하고 싶습니다', - 'login_page_title' => 'Firefly III 로그인', - 'register_page_title' => 'Firefly III 등록하기', - 'forgot_pw_page_title' => 'Firefly III 비밀번호를 잊어버렸습니다', - 'reset_pw_page_title' => 'Firefly III의 비밀번호 재설정', - 'cannot_reset_demo_user' => '데모 사용자의 비밀번호는 재설정할 수 없습니다.', - 'no_att_demo_user' => '데모 유저는 첨부 파일을 업로드할 수 없습니다.', - 'button_register' => '등록', - 'authorization' => '인증', - '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' => '월간 예상 비용', - 'per_period_sum_3M' => '분기 예상 비용', - 'per_period_sum_6M' => '반기 예상 비용', - 'per_period_sum_1Y' => '년간 예상 비용', - 'average_per_bill' => '청구서당 평균', - 'expected_total' => '예상 합계', - 'reconciliation_account_name' => ':name 조정 (:currency)', - 'saved' => '저장 완료', - 'advanced_options' => '고급 옵션', - 'advanced_options_explain' => 'Firefly III의 일부 페이지에는 이 버튼 뒤에 고급 옵션이 숨겨져 있습니다. 이 페이지에는 멋진 옵션이 없지만 다른 페이지도 확인해 보세요!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => '닫기', + 'actions' => '액션', + 'edit' => '수정', + 'delete' => '삭제', + 'split' => '나누기', + 'single_split' => '나누기', + 'clone' => '복사', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => '액션 확인', + 'last_seven_days' => '최근 7일', + 'last_thirty_days' => '최근 30일', + 'last_180_days' => '최근 180일', + 'month_to_date' => '월간 누계', + 'year_to_date' => '연간 누계', + 'YTD' => 'YTD', + 'welcome_back' => '무슨 일이죠?', + 'everything' => '모든 것', + 'today' => '오늘', + 'customRange' => '맞춤 범위', + 'date_range' => '날짜 범위', + 'apply' => '적용', + 'select_date' => '날짜 선택', + 'cancel' => '취소', + 'from' => '에서', + 'to' => '에게', + 'structure' => '구조', + 'help_translating' => '이 도움말 텍스트는 아직 귀하의 언어를 지원하지 않습니다. 번역을 도와 주시겠습니까?', + 'showEverything' => '모두 보기', + 'never' => '절대', + 'no_results_for_empty_search' => '검색 조건이 비어서 아무것도 찾을 수 없습니다.', + 'removed_amount' => ':amount 삭제됨', + 'added_amount' => ':amount 추가됨', + 'asset_account_role_help' => '선택에 따른 추가 옵션은 나중에 설정할 수 있습니다.', + 'Opening balance' => '초기 잔고', + 'create_new_stuff' => '새로 만들기', + 'new_withdrawal' => '신규 출금', + 'create_new_transaction' => '새로운 거래 만들기', + 'sidebar_frontpage_create' => '생성', + 'new_transaction' => '새 거래', + 'no_rules_for_bill' => '이 청구서는 관련된 규칙이 없습니다.', + 'go_to_asset_accounts' => '자산 계정 보기', + 'go_to_budgets' => '예산으로 이동', + 'go_to_withdrawals' => '출금으로 이동', + 'clones_journal_x' => '이 거래는 ":description" (#:id)의 복제본입니다.', + 'go_to_categories' => '카테고리로 이동', + 'go_to_bills' => '청구서로 이동', + 'go_to_expense_accounts' => '지출 계정 보기', + 'go_to_revenue_accounts' => '수익 계정 보기', + 'go_to_piggies' => '저금통으로 이동', + 'new_deposit' => '신규 입금', + 'new_transfer' => '신규 이체', + 'new_transfers' => '신규 이체', + 'new_asset_account' => '새 자산 계정', + 'new_expense_account' => '새 지출 계정', + 'new_revenue_account' => '새 수익 계정', + 'new_liabilities_account' => '새 부채', + 'new_budget' => '새 예산', + 'new_bill' => '새 청구서', + 'block_account_logout' => '로그아웃되었습니다. 차단된 계정은 이 사이트를 사용할 수 없습니다. 유효한 이메일 주소로 등록하셨습니까?', + 'flash_success' => '성공!', + 'flash_info' => '메시지', + 'flash_warning' => '경고!', + 'flash_error' => '오류!', + 'flash_danger' => '위험!', + 'flash_info_multiple' => '메시지가 하나 있습니다|매시지가 :count개 있습니다', + 'flash_error_multiple' => '오류가 하나 있습니다|오류가 :count개 있습니다', + 'net_worth' => '순자산', + 'help_for_this_page' => '이 페이지에 대한 도움말', + 'help_for_this_page_body' => '이 페이지에 대한 자세한 정보는 문서에서 확인할 수 있습니다.', + 'two_factor_welcome' => '안녕하세요!', + 'two_factor_enter_code' => '계속하려면 2단계 인증 코드를 입력하세요. 애플리케이션에서 자동으로 생성할 수 있습니다.', + 'two_factor_code_here' => '여기에 코드 입력', + 'two_factor_title' => '2단계 인증', + 'authenticate' => '인증', + 'two_factor_forgot_title' => '2단계 인증 분실', + 'two_factor_forgot' => '2단계 인증을 잊었습니다.', + 'two_factor_lost_header' => '2단계 인증을 분실하셨나요?', + 'two_factor_lost_intro' => '백업 코드도 분실하셨다면 운이 나쁘신 것입니다. 이 문제는 웹 인터페이스에서 해결할 수 있는 문제가 아닙니다. 두 가지 선택지가 있습니다.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => '그렇지 않은 경우 사이트 소유자 :site_owner에게 이메일을 보내 2단계 인증을 재설정해 달라고 요청하세요.', + 'mfa_backup_code' => '백업 코드를 사용하여 Firefly III에 로그인했습니다. 코드는 다시 사용할 수 없으므로 목록에서 삭제하세요.', + 'pref_two_factor_new_backup_codes' => '새 백업 코드 얻기', + 'pref_two_factor_backup_code_count' => ':count개의 유효한 백업코드가 있습니다.|:count개의 유효한 백업코드가 있습니다.', + '2fa_i_have_them' => '저장했습니다!', + 'warning_much_data' => ':days일의 데이터를 로드하는데 시간이 걸릴 수 있습니다.', + 'registered' => '성공적으로 등록되었습니다!', + 'Default asset account' => '기본 자산 계정', + 'no_budget_pointer' => '예산이 아직 없는 것 같습니다. 예산 페이지에서 예산을 만들어야 합니다. 예산은 지출을 추적하는데 도움이 됩니다.', + 'no_bill_pointer' => '청구서가 아직 없는 것 같습니다. 청구서 페이지에서 청구서를 만들어야 합니다. 청구서는 비용을 추적하는 데 도움이 됩니다.', + 'Savings account' => '예금 계좌', + 'Credit card' => '신용카드', + 'source_accounts' => '소스 계정|소스 계정', + 'destination_accounts' => '대상 계정|대상 계정', + 'user_id_is' => '사용자 Id는 :user입니다', + 'field_supports_markdown' => '이 필드는 마크다운을 지원합니다.', + 'need_more_help' => 'Firefly III를 사용하는데 도움이 필요하다면 Github에서 티켓을 열어주세요.', + 'reenable_intro_text' => '소개 안내를 다시 활성화할 수도 있습니다.', + 'intro_boxes_after_refresh' => '페이지를 새로고침하면 소개 상자가 다시 나타납니다.', + 'show_all_no_filter' => '날짜별로 그룹화하지 않고 모든 거래를 표시합니다.', + 'expenses_by_category' => '카테고리별 지출', + 'expenses_by_budget' => '예산별 지출', + 'income_by_category' => '카테고리별 수입', + 'expenses_by_asset_account' => '자산 계정별 지출', + 'expenses_by_expense_account' => '지출 계정별 지출', + 'cannot_redirect_to_account' => 'Firefly III가 올바른 페이지로 리디렉션할 수 없습니다. 죄송합니다.', + 'sum_of_expenses' => '지출 합계', + 'sum_of_income' => '수입 합계', + 'liabilities' => '부채', + 'spent_in_specific_budget' => '":budget" 예산에서 지출', + 'spent_in_specific_double' => '":account" 계정에서 지출', + 'earned_in_specific_double' => '":account" 계정에서 소득', + 'source_account' => '소스 계정', + 'source_account_reconciliation' => '조정 거래의 소스 계정은 편집할 수 없습니다.', + 'destination_account' => '대상 계정', + 'destination_account_reconciliation' => '조정 거래의 대상 계정은 편집할 수 없습니다.', + 'sum_of_expenses_in_budget' => '":budget" 예산에서 총 지출', + 'left_in_budget_limit' => '예산 책정에 따른 남은 지출', + 'current_period' => '현재 기간', + 'show_the_current_period_and_overview' => '현재 기간 및 걔요 표시', + 'pref_languages_locale' => '영어 외의 언어가 제대로 동작하려면 운영 체제에 올바른 로케일 정보가 있어야 합니다. 그렇지 않은 경우 통화 데이터, 날짜 및 금액의 형식이 잘못 지정될 수 있습니다.', + 'budget_in_period' => ':currency에서 :start와 :end 사이의 예산 ":name"에 대한 모든 거래', + 'chart_budget_in_period' => ':currency에서 :start와 :end 사이의 예산 ":name"에 대한 모든 거래에 대한 차트', + 'chart_budget_in_period_only_currency' => '예산을 책정한 금액은 :currency이므로 이 차트에는 :currency의 거래만 표시됩니다.', + 'chart_account_in_period' => ':start와 :end 동안 ":name" (:balance) 계정의 모든 거래에 대한 차트', + 'chart_category_in_period' => ':start와 :end 동안 ":name" 카테고리의 모든 거래에 대한 차트', + 'chart_category_all' => '":name" 카테고리의 모든 거래에 대한 차트', + 'clone_withdrawal' => '이 출금을 복제합니다', + 'clone_deposit' => '이 입금을 복제합니다', + 'clone_transfer' => '이 이체를 복제합니다', + 'multi_select_no_selection' => '선택하지 않음', + 'multi_select_select_all' => '전체 선택', + 'multi_select_n_selected' => '선택됨', + 'multi_select_all_selected' => '모두 선택됨', + 'multi_select_filter_placeholder' => '찾기..', + 'intro_next_label' => '다음', + 'intro_prev_label' => '이전', + 'intro_skip_label' => '건너뛰기', + 'intro_done_label' => '완료', + 'between_dates_breadcrumb' => ':start와 :end 사이', + 'all_journals_without_budget' => '예산이 없는 모든 거래', + 'journals_without_budget' => '예산이 없는 거래', + 'all_journals_without_category' => '카테고리가 없는 모든 거래', + 'journals_without_category' => '카테고리가 없는 거래', + 'all_journals_for_account' => ':name 계정에 대한 모든 거래', + 'chart_all_journals_for_account' => ':name 계정에 대한 모든 거래 차트', + 'journals_in_period_for_account' => ':start와 :end 동안 ":name" 계정의 모든 거래', + 'journals_in_period_for_account_js' => '{start} 와 {end} 동안 {title} 계정의 모든 거래', + 'transferred' => '이체', + 'all_withdrawal' => '모든 지출', + 'all_transactions' => '모든 거래', + '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 instructions how to do this.', + 'quickswitch' => '퀵스위치', + 'sign_in_to_start' => '세션을 시작하려면 로그인하세요.', + 'sign_in' => '로그인', + 'register_new_account' => '새로운 계정 등록', + 'forgot_my_password' => '비밀번호를 잊어버렸습니다', + 'problems_with_input' => '입력에 오류가 있습니다.', + 'reset_password' => '비밀번호 초기화', + 'button_reset_password' => '비밀번호 초기화', + 'reset_button' => '초기화', + 'want_to_login' => '로그인하고 싶습니다', + 'login_page_title' => 'Firefly III 로그인', + 'register_page_title' => 'Firefly III 등록하기', + 'forgot_pw_page_title' => 'Firefly III 비밀번호를 잊어버렸습니다', + 'reset_pw_page_title' => 'Firefly III의 비밀번호 재설정', + 'cannot_reset_demo_user' => '데모 사용자의 비밀번호는 재설정할 수 없습니다.', + 'no_att_demo_user' => '데모 유저는 첨부 파일을 업로드할 수 없습니다.', + 'button_register' => '등록', + 'authorization' => '인증', + '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' => '월간 예상 비용', + 'per_period_sum_3M' => '분기 예상 비용', + 'per_period_sum_6M' => '반기 예상 비용', + 'per_period_sum_1Y' => '년간 예상 비용', + 'average_per_bill' => '청구서당 평균', + 'expected_total' => '예상 합계', + 'reconciliation_account_name' => ':name 조정 (:currency)', + 'saved' => '저장 완료', + 'advanced_options' => '고급 옵션', + 'advanced_options_explain' => 'Firefly III의 일부 페이지에는 이 버튼 뒤에 고급 옵션이 숨겨져 있습니다. 이 페이지에는 멋진 옵션이 없지만 다른 페이지도 확인해 보세요!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => '웹훅', - 'webhooks_breadcrumb' => '웹훅', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => '웹훅 메시지 없음', - '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' => '검사', - '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' => '실패한 시도 보기', - 'message_content_title' => '웹훅 메시지 내용', - 'message_content_help' => '이 웹훅을 사용하여 전송된(또는 시도한) 메시지의 내용입니다.', - 'attempt_content_title' => '웹훅 시도', - 'attempt_content_help' => '구성된 URL에 제출하려는 이 웹훅 메시지의 모든 실패한 시도입니다. 잠시 후 Firefly III가 시도를 중지합니다.', - 'no_attempts' => '실패한 시도가 없습니다. 좋은 일이네요!', - 'webhook_attempt_at' => '{moment}에 시도', - 'logs' => '로그', - 'response' => '응답', - 'visit_webhook_url' => '웹훅 URL 방문', - 'reset_webhook_secret' => '웹훅 시크릿 재설정', - 'webhook_stored_link' => '웹훅 #{ID} ("{title}")이 저장되었습니다.', - 'webhook_updated_link' => '웹훅 #{ID} ("{title}")이 업데이트 되었습니다.', + 'webhooks' => '웹훅', + 'webhooks_breadcrumb' => '웹훅', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => '웹훅 메시지 없음', + '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' => '검사', + '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' => '실패한 시도 보기', + 'message_content_title' => '웹훅 메시지 내용', + 'message_content_help' => '이 웹훅을 사용하여 전송된(또는 시도한) 메시지의 내용입니다.', + 'attempt_content_title' => '웹훅 시도', + 'attempt_content_help' => '구성된 URL에 제출하려는 이 웹훅 메시지의 모든 실패한 시도입니다. 잠시 후 Firefly III가 시도를 중지합니다.', + 'no_attempts' => '실패한 시도가 없습니다. 좋은 일이네요!', + 'webhook_attempt_at' => '{moment}에 시도', + 'logs' => '로그', + 'response' => '응답', + 'visit_webhook_url' => '웹훅 URL 방문', + 'reset_webhook_secret' => '웹훅 시크릿 재설정', + 'webhook_stored_link' => '웹훅 #{ID} ("{title}")이 저장되었습니다.', + 'webhook_updated_link' => '웹훅 #{ID} ("{title}")이 업데이트 되었습니다.', // API access - 'authorization_request' => 'Firefly III v:version 인증 요청', - 'authorization_request_intro' => '응용 프로그램 ":client"에서 재무 관리에 액세스할 수 있는 권한을 요청하고 있습니다. :client에게 이러한 기록에 액세스할 수 있는 권한을 부여하시겠습니까?', - 'authorization_request_site' => ':url로 리디렉션되며, 이 페이지에서 Firefly III 데이터에 액세스할 수 있습니다.', - 'authorization_request_invalid' => '이 액세스 요청은 유효하지 않습니다. 다시는 이 링크를 클릭하지 마세요.', - 'scopes_will_be_able' => '이 응용 프로그램은 다음을 수행 할 수 있습니다:', - 'button_authorize' => '인증', - 'none_in_select_list' => '(없음)', - 'no_piggy_bank' => '(저금통 없음)', - 'name_in_currency' => ':currency :name', - 'paid_in_currency' => ':currency로 지불됨', - 'unpaid_in_currency' => ':currency로 미지불', - 'is_alpha_warning' => '알파 버전을 실행 중입니다. 버그와 문제에 주의하십시오.', - 'is_beta_warning' => '베타 버전을 실행 중입니다. 버그와 문제에 주의하십시오.', - 'all_destination_accounts' => '대상 계정', - 'all_source_accounts' => '소스 계정', - 'back_to_index' => '목록으로 돌아가기', - 'cant_logout_guard' => 'Firefly III에서 로그아웃할 수 없습니다.', - 'internal_reference' => '내부 참조', + 'authorization_request' => 'Firefly III v:version 인증 요청', + 'authorization_request_intro' => '응용 프로그램 ":client"에서 재무 관리에 액세스할 수 있는 권한을 요청하고 있습니다. :client에게 이러한 기록에 액세스할 수 있는 권한을 부여하시겠습니까?', + 'authorization_request_site' => ':url로 리디렉션되며, 이 페이지에서 Firefly III 데이터에 액세스할 수 있습니다.', + 'authorization_request_invalid' => '이 액세스 요청은 유효하지 않습니다. 다시는 이 링크를 클릭하지 마세요.', + 'scopes_will_be_able' => '이 응용 프로그램은 다음을 수행 할 수 있습니다:', + 'button_authorize' => '인증', + 'none_in_select_list' => '(없음)', + 'no_piggy_bank' => '(저금통 없음)', + 'name_in_currency' => ':currency :name', + 'paid_in_currency' => ':currency로 지불됨', + 'unpaid_in_currency' => ':currency로 미지불', + 'is_alpha_warning' => '알파 버전을 실행 중입니다. 버그와 문제에 주의하십시오.', + 'is_beta_warning' => '베타 버전을 실행 중입니다. 버그와 문제에 주의하십시오.', + 'all_destination_accounts' => '대상 계정', + 'all_source_accounts' => '소스 계정', + 'back_to_index' => '목록으로 돌아가기', + 'cant_logout_guard' => 'Firefly III에서 로그아웃할 수 없습니다.', + 'internal_reference' => '내부 참조', // check for updates: - 'update_check_title' => '업데이트 확인', - 'admin_update_check_title' => '업데이트 자동 확인', - 'admin_update_check_explain' => 'Firefly III가 자동으로 업데이트를 확인할 수 있습니다. 이 설정을 활성화하면 Firefly III 업데이트 서버에 연결하여 Firefly III의 새 버전을 사용할 수 있는지 확인합니다. 업데이트가 완료되면 알림을 받게 됩니다. 오른쪽의 버튼을 사용하여 이 알림을 테스트할 수 있습니다. Firefly III가 업데이트를 확인하도록 하려면 아래에 표시해 주세요.', - 'check_for_updates_permission' => 'Firefly III가 업데이트를 확인하려면 사용자의 권한이 필요합니다. 관리 페이지로 이동하여 이 기능을 사용할지 여부를 선택하세요.', - 'updates_ask_me_later' => '나중에 다시 확인', - 'updates_do_not_check' => '업데이트 확인하지 않기', - 'updates_enable_check' => '업데이트 확인 사용', - 'admin_update_check_now_title' => '지금 업데이트 확인', - 'admin_update_check_now_explain' => '버튼을 누르면 Firefly III의 버전이 최신 버전인지 확인합니다.', - 'check_for_updates_button' => '지금 확인!', - 'update_new_version_alert' => 'Firefly III의 새 버전을 사용할 수 있습니다. 현재 실행 중인 버전은 :your_version이며, 최신 버전은 :date에 릴리스된 :new_version입니다.', - 'update_version_beta' => '이 버전은 베타 버전입니다. 문제가 발생할 수 있습니다.', - 'update_version_alpha' => '이 버전은 알파 버전입니다. 문제가 발생할 수 있습니다.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => '사용 가능한 최신 릴리스인 :version을 실행 중입니다.', - 'update_newer_version_alert' => '최신 릴리스인 :new_version보다 최신 버전인 :your_version을 실행중입니다.', - 'update_check_error' => '업데이트 확인 중 오류가 발생했습니다: :error', - 'unknown_error' => '알 수 없는 오류입니다. 죄송합니다.', - 'disabled_but_check' => '업데이트 확인을 비활성화했습니다. 가끔씩 업데이트를 직접 확인하는 것을 잊지 마세요. 감사합니다!', - 'admin_update_channel_title' => '업데이트 채널', - 'admin_update_channel_explain' => 'Firefly III에는 세 가지 업데이트 "채널"이 있으며, 기능, 개선 사항 및 버그에 대해 얼마나 앞서 있는지 결정합니다. 모험심이 강하다면 "베타" 채널을, 위험한 삶을 원하신다면 "알파" 채널을 사용하세요.', - 'update_channel_stable' => '안정 버전입니다. 모든 것이 예상대로 작동합니다.', - 'update_channel_beta' => '베타 버전입니다. 새로운 기능이 추가되었지만 일부 기능이 손상될 수 있습니다.', - 'update_channel_alpha' => '알파 버전입니다. 새로운 기능은 무엇이든 추가해 봅니다.', + 'update_check_title' => '업데이트 확인', + 'admin_update_check_title' => '업데이트 자동 확인', + 'admin_update_check_explain' => 'Firefly III가 자동으로 업데이트를 확인할 수 있습니다. 이 설정을 활성화하면 Firefly III 업데이트 서버에 연결하여 Firefly III의 새 버전을 사용할 수 있는지 확인합니다. 업데이트가 완료되면 알림을 받게 됩니다. 오른쪽의 버튼을 사용하여 이 알림을 테스트할 수 있습니다. Firefly III가 업데이트를 확인하도록 하려면 아래에 표시해 주세요.', + 'check_for_updates_permission' => 'Firefly III가 업데이트를 확인하려면 사용자의 권한이 필요합니다. 관리 페이지로 이동하여 이 기능을 사용할지 여부를 선택하세요.', + 'updates_ask_me_later' => '나중에 다시 확인', + 'updates_do_not_check' => '업데이트 확인하지 않기', + 'updates_enable_check' => '업데이트 확인 사용', + 'admin_update_check_now_title' => '지금 업데이트 확인', + 'admin_update_check_now_explain' => '버튼을 누르면 Firefly III의 버전이 최신 버전인지 확인합니다.', + 'check_for_updates_button' => '지금 확인!', + 'update_new_version_alert' => 'Firefly III의 새 버전을 사용할 수 있습니다. 현재 실행 중인 버전은 :your_version이며, 최신 버전은 :date에 릴리스된 :new_version입니다.', + 'update_version_beta' => '이 버전은 베타 버전입니다. 문제가 발생할 수 있습니다.', + 'update_version_alpha' => '이 버전은 알파 버전입니다. 문제가 발생할 수 있습니다.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => '사용 가능한 최신 릴리스인 :version을 실행 중입니다.', + 'update_newer_version_alert' => '최신 릴리스인 :new_version보다 최신 버전인 :your_version을 실행중입니다.', + 'update_check_error' => '업데이트 확인 중 오류가 발생했습니다: :error', + 'unknown_error' => '알 수 없는 오류입니다. 죄송합니다.', + 'disabled_but_check' => '업데이트 확인을 비활성화했습니다. 가끔씩 업데이트를 직접 확인하는 것을 잊지 마세요. 감사합니다!', + 'admin_update_channel_title' => '업데이트 채널', + 'admin_update_channel_explain' => 'Firefly III에는 세 가지 업데이트 "채널"이 있으며, 기능, 개선 사항 및 버그에 대해 얼마나 앞서 있는지 결정합니다. 모험심이 강하다면 "베타" 채널을, 위험한 삶을 원하신다면 "알파" 채널을 사용하세요.', + 'update_channel_stable' => '안정 버전입니다. 모든 것이 예상대로 작동합니다.', + 'update_channel_beta' => '베타 버전입니다. 새로운 기능이 추가되었지만 일부 기능이 손상될 수 있습니다.', + 'update_channel_alpha' => '알파 버전입니다. 새로운 기능은 무엇이든 추가해 봅니다.', // search - 'search' => '검색', - 'search_query' => '쿼리', - 'search_found_transactions' => 'Firefly III가 :time초 동안 :count개의 거래를 찾았습니다.|Firefly III가 :time초 동안 :count개의 거래를 찾았습니다.', - 'search_found_more_transactions' => 'Firefly III는 :time초 동안 :count개 이상의 거래를 찾았습니다.', - 'search_for_query' => 'Firefly III가 이러한 단어가 모두 포함된 거래를 검색하고 있습니다: :query', - 'invalid_operators_list' => '이 검색 매개변수는 유효하지 않으며 무시되었습니다.', + 'search' => '검색', + 'search_query' => '쿼리', + 'search_found_transactions' => 'Firefly III가 :time초 동안 :count개의 거래를 찾았습니다.|Firefly III가 :time초 동안 :count개의 거래를 찾았습니다.', + 'search_found_more_transactions' => 'Firefly III는 :time초 동안 :count개 이상의 거래를 찾았습니다.', + 'search_for_query' => 'Firefly III가 이러한 단어가 모두 포함된 거래를 검색하고 있습니다: :query', + 'invalid_operators_list' => '이 검색 매개변수는 유효하지 않으며 무시되었습니다.', // old @@ -351,368 +351,368 @@ return [ * */ - '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' => '거래 ID는 ":value"가 아닙니다', - 'search_modifier_date_before' => '거래일이 ":value" 이전이거나 해당 날짜입니다', - 'search_modifier_date_after' => '거래일이 ":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' => '거래에 외부 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' => '거래는 반드시 하나 이상의 외부 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' => '설명에 ":value" 포함되지 않음', - 'search_modifier_description_is' => '설명은 정확히 ":value"입니다', - 'search_modifier_not_description_is' => '설명이 정확히 ":value"가 아닙니다', - 'search_modifier_currency_is' => '거래 (외화) 통화는 ":value"', - 'search_modifier_not_currency_is' => '거래 (외화) 통화가 ":value"가 아님', - 'search_modifier_foreign_currency_is' => '거래 외화 통화는 ":value"', - 'search_modifier_not_foreign_currency_is' => '거래 외화 통화는 ":value"가 아님', - 'search_modifier_has_attachments' => '거래에는 첨부 파일이 있어야 합니다', - 'search_modifier_has_no_category' => '거래에는 카테고리가 없어야 합니다', - 'search_modifier_not_has_no_category' => '거래는 반드시 하나 이상의 카테고리가 있어야 합니다', - 'search_modifier_not_has_any_category' => '거래에는 카테고리가 없어야 합니다', - 'search_modifier_has_any_category' => '거래는 반드시 하나 이상의 카테고리가 있어야 합니다', - 'search_modifier_has_no_budget' => '거래에는 예산이 없어야 합니다', - 'search_modifier_not_has_any_budget' => '거래에는 예산이 없어야 합니다', - 'search_modifier_has_any_budget' => '거래는 반드시 하나 이상의 예산이 있어야 합니다', - 'search_modifier_not_has_no_budget' => '거래는 반드시 하나 이상의 예산이 있어야 합니다', - 'search_modifier_has_no_bill' => '거래에는 청구서가 없어야 합니다', - 'search_modifier_not_has_no_bill' => '거래는 반드시 하나 이상의 청구서가 있어야 합니다', - 'search_modifier_has_any_bill' => '거래는 반드시 하나 이상의 청구서가 있어야 합니다', - 'search_modifier_not_has_any_bill' => '거래에는 청구서가 없어야 합니다', - 'search_modifier_has_no_tag' => '거래에는 태그가 없어야 합니다', - 'search_modifier_not_has_any_tag' => '거래에는 태그가 없어야 합니다', - 'search_modifier_not_has_no_tag' => '거래는 반드시 하나 이상의 태그가 있어야 합니다', - 'search_modifier_has_any_tag' => '거래는 반드시 하나 이상의 태그가 있어야 합니다', - 'search_modifier_notes_contains' => '거래 노트는 ":value"를 포함합니다', - 'search_modifier_not_notes_contains' => '거래 노트는 ":value"를 포함하지 않습니다', - 'search_modifier_notes_starts' => '거래 노트는 ":value"로 시작합니다', - 'search_modifier_not_notes_starts' => '거래 노트는 ":value"로 시작하지 않습니다', - 'search_modifier_notes_ends' => '거래 노트는 ":value"로 끝납니다', - 'search_modifier_not_notes_ends' => '거래 노트는 ":value"로 끝나지 않습니다', - 'search_modifier_notes_is' => '거래 노트는 정확히 ":value"입니다', - 'search_modifier_not_notes_is' => '거래 노트가 정확히 ":value"가 아닙니다', - 'search_modifier_no_notes' => '거래에 노트가 없습니다', - 'search_modifier_not_no_notes' => '거래에는 노트가 없어야 합니다', - 'search_modifier_any_notes' => '거래에는 노트가 없어야 합니다', - 'search_modifier_not_any_notes' => '거래에 노트가 없습니다', - 'search_modifier_amount_is' => '금액은 정확히 :value입니다', - 'search_modifier_not_amount_is' => '금액은 :value가 아닙니다', - 'search_modifier_amount_less' => '금액이 :value보다 작거나 같음', - 'search_modifier_not_amount_more' => '금액이 :value보다 작거나 같음', - 'search_modifier_amount_more' => '금액이 :value보다 크거나 같음', - 'search_modifier_not_amount_less' => '금액이 :value보다 크거나 같음', - 'search_modifier_source_account_is' => '소스 계정 이름은 정확히 ":value"입니다', - 'search_modifier_not_source_account_is' => '소스 계정 이름은 ":value"가 아닙니다', - 'search_modifier_source_account_contains' => '소스 계정 이름은 ":value"를 포함합니다', - 'search_modifier_not_source_account_contains' => '소스 계정 이름은 ":value"를 포함하지 않습니다', - 'search_modifier_source_account_starts' => '소스 계정 이름은 ":value"로 시작합니다', - 'search_modifier_not_source_account_starts' => '소스 계정 이름은 ":value"로 시작하지 않습니다', - 'search_modifier_source_account_ends' => '소스 계정 이름은 ":value"로 끝납니다', - 'search_modifier_not_source_account_ends' => '소스 계정 이름은 ":value"로 끝나지 않습니다', - 'search_modifier_source_account_id' => '소스 계정 ID는 ":value"입니다', - 'search_modifier_not_source_account_id' => '소스 계정 ID는 ":value"가 아닙니다', - 'search_modifier_source_account_nr_is' => '소스 계정 번호(IBAN)는 ":value"입니다', - 'search_modifier_not_source_account_nr_is' => '소스 계정 번호(IBAN)는 ":value"가 아닙니다', - 'search_modifier_source_account_nr_contains' => '소스 계정 번호(IBAN)는 ":value"를 포함합니다', - 'search_modifier_not_source_account_nr_contains' => '소스 계정 번호(IBAN)는 ":value"를 포함하지 않습니다', - 'search_modifier_source_account_nr_starts' => '소스 계정 번호(IBAN)는 ":value"로 시작합니다', - 'search_modifier_not_source_account_nr_starts' => '소스 계정 번호(IBAN)는 ":value"로 시작하지 않습니다', - 'search_modifier_source_account_nr_ends' => '소스 계정 번호(IBAN)는 ":value"로 끝납니다', - 'search_modifier_not_source_account_nr_ends' => '소스 계정 번호(IBAN)는 ":value"로 끝나지 않습니다', - 'search_modifier_destination_account_is' => '대상 계정 이름은 정확히 ":value"입니다', - 'search_modifier_not_destination_account_is' => '대상 계정 이름은 ":value"가 아닙니다', - 'search_modifier_destination_account_contains' => '대상 계정 이름은 ":value"를 포함합니다', - 'search_modifier_not_destination_account_contains' => '대상 계정 이름은 ":value"를 포함하지 않습니다', - 'search_modifier_destination_account_starts' => '대상 계정 이름은 ":value"로 시작합니다', - 'search_modifier_not_destination_account_starts' => '대상 계정 이름은 ":value"로 시작하지 않습니다', - 'search_modifier_destination_account_ends' => '대상 계정 이름은 ":value"로 끝납니다', - 'search_modifier_not_destination_account_ends' => '대상 계정 이름은 ":value"로 끝나지 않습니다', - 'search_modifier_destination_account_id' => '대상 계정 ID는 ":value"입니다', - 'search_modifier_not_destination_account_id' => '대상 계정 ID는 ":value"가 아닙니다', - 'search_modifier_destination_is_cash' => '대상 계정은 "(현금)" 계정 입니다', - 'search_modifier_not_destination_is_cash' => '대상 계정은 "(현금)" 계정이 아닙니다', - 'search_modifier_source_is_cash' => '소스 계정은 "(현금)" 계정입니다', - 'search_modifier_not_source_is_cash' => '원본 계정이 "(현금)" 계정이 아닙니다', - 'search_modifier_destination_account_nr_is' => '대상 계정 번호(IBAN)는 ":value"입니다', - 'search_modifier_not_destination_account_nr_is' => '대상 계정 번호(IBAN)는 ":value"입니다', - 'search_modifier_destination_account_nr_contains' => '대상 계정 번호(IBAN)는 ":value"를 포함합니다', - 'search_modifier_not_destination_account_nr_contains' => '대상 계정 번호(IBAN)는 ":value"를 포함하지 않습니다', - 'search_modifier_destination_account_nr_starts' => '대상 계정 번호(IBAN)는 ":value"로 시작합니다', - 'search_modifier_not_destination_account_nr_starts' => '대상 계정 번호(IBAN)는 ":value"로 시작하지 않습니다', - 'search_modifier_destination_account_nr_ends' => '대상 계정 번호(IBAN)는 ":value"으로 끝납니다', - 'search_modifier_not_destination_account_nr_ends' => '대상 계정 번호(IBAN)는 ":value"으로 끝나지 않습니다', - 'search_modifier_account_id' => '소스 또는 대상 계정 ID는 :value입니다', - 'search_modifier_not_account_id' => '소스 또는 대상 계정 ID는 :value가 아닙니다', - 'search_modifier_category_is' => '카테고리는 ":value" 입니다', - 'search_modifier_not_category_is' => '카테고리는 ":value" 가 아닙니다', - 'search_modifier_budget_is' => '예산은 ":value" 입니다', - 'search_modifier_not_budget_is' => '예산은 ":value" 가 아닙니다', - 'search_modifier_bill_is' => '청구서는 ":value" 입니다', - 'search_modifier_not_bill_is' => '청구서는 ":value" 가 아닙니다', - 'search_modifier_transaction_type' => '거래 유형은 ":value" 입니다', - 'search_modifier_not_transaction_type' => '거래 유형은 ":value"가 아닙니다', - 'search_modifier_tag_is' => '태그는 ":value" 입니다', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => '":value" 태그가 없습니다.', - 'search_modifier_date_on_year' => '거래는 ":value" 연도에 있습니다', - 'search_modifier_not_date_on_year' => '거래는 ":value" 연도에 있지 않습니다', - 'search_modifier_date_on_month' => '거래는 ":value" 월에 있습니다', - 'search_modifier_not_date_on_month' => '거래는 ":value" 월에 있지 않습니다', - 'search_modifier_date_on_day' => '거래는 ":value" 일에 있습니다', - 'search_modifier_not_date_on_day' => '거래는 ":value" 일에 있지 않습니다', - 'search_modifier_date_before_year' => '거래는 ":value"년 이거나 이전입니다', - 'search_modifier_date_before_month' => '거래는 ":value"월 이거나 이전입니다', - 'search_modifier_date_before_day' => '거래는 ":value"일 이거나 이전입니다', - 'search_modifier_date_after_year' => '거래는 ":value"년 이거나 이후입니다', - 'search_modifier_date_after_month' => '거래는 ":value"월 이거나 이후입니다', - 'search_modifier_date_after_day' => '거래는 ":value"일 이거나 이후입니다', + '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' => '거래 ID는 ":value"가 아닙니다', + 'search_modifier_date_before' => '거래일이 ":value" 이전이거나 해당 날짜입니다', + 'search_modifier_date_after' => '거래일이 ":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' => '거래에 외부 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' => '거래는 반드시 하나 이상의 외부 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' => '설명에 ":value" 포함되지 않음', + 'search_modifier_description_is' => '설명은 정확히 ":value"입니다', + 'search_modifier_not_description_is' => '설명이 정확히 ":value"가 아닙니다', + 'search_modifier_currency_is' => '거래 (외화) 통화는 ":value"', + 'search_modifier_not_currency_is' => '거래 (외화) 통화가 ":value"가 아님', + 'search_modifier_foreign_currency_is' => '거래 외화 통화는 ":value"', + 'search_modifier_not_foreign_currency_is' => '거래 외화 통화는 ":value"가 아님', + 'search_modifier_has_attachments' => '거래에는 첨부 파일이 있어야 합니다', + 'search_modifier_has_no_category' => '거래에는 카테고리가 없어야 합니다', + 'search_modifier_not_has_no_category' => '거래는 반드시 하나 이상의 카테고리가 있어야 합니다', + 'search_modifier_not_has_any_category' => '거래에는 카테고리가 없어야 합니다', + 'search_modifier_has_any_category' => '거래는 반드시 하나 이상의 카테고리가 있어야 합니다', + 'search_modifier_has_no_budget' => '거래에는 예산이 없어야 합니다', + 'search_modifier_not_has_any_budget' => '거래에는 예산이 없어야 합니다', + 'search_modifier_has_any_budget' => '거래는 반드시 하나 이상의 예산이 있어야 합니다', + 'search_modifier_not_has_no_budget' => '거래는 반드시 하나 이상의 예산이 있어야 합니다', + 'search_modifier_has_no_bill' => '거래에는 청구서가 없어야 합니다', + 'search_modifier_not_has_no_bill' => '거래는 반드시 하나 이상의 청구서가 있어야 합니다', + 'search_modifier_has_any_bill' => '거래는 반드시 하나 이상의 청구서가 있어야 합니다', + 'search_modifier_not_has_any_bill' => '거래에는 청구서가 없어야 합니다', + 'search_modifier_has_no_tag' => '거래에는 태그가 없어야 합니다', + 'search_modifier_not_has_any_tag' => '거래에는 태그가 없어야 합니다', + 'search_modifier_not_has_no_tag' => '거래는 반드시 하나 이상의 태그가 있어야 합니다', + 'search_modifier_has_any_tag' => '거래는 반드시 하나 이상의 태그가 있어야 합니다', + 'search_modifier_notes_contains' => '거래 노트는 ":value"를 포함합니다', + 'search_modifier_not_notes_contains' => '거래 노트는 ":value"를 포함하지 않습니다', + 'search_modifier_notes_starts' => '거래 노트는 ":value"로 시작합니다', + 'search_modifier_not_notes_starts' => '거래 노트는 ":value"로 시작하지 않습니다', + 'search_modifier_notes_ends' => '거래 노트는 ":value"로 끝납니다', + 'search_modifier_not_notes_ends' => '거래 노트는 ":value"로 끝나지 않습니다', + 'search_modifier_notes_is' => '거래 노트는 정확히 ":value"입니다', + 'search_modifier_not_notes_is' => '거래 노트가 정확히 ":value"가 아닙니다', + 'search_modifier_no_notes' => '거래에 노트가 없습니다', + 'search_modifier_not_no_notes' => '거래에는 노트가 없어야 합니다', + 'search_modifier_any_notes' => '거래에는 노트가 없어야 합니다', + 'search_modifier_not_any_notes' => '거래에 노트가 없습니다', + 'search_modifier_amount_is' => '금액은 정확히 :value입니다', + 'search_modifier_not_amount_is' => '금액은 :value가 아닙니다', + 'search_modifier_amount_less' => '금액이 :value보다 작거나 같음', + 'search_modifier_not_amount_more' => '금액이 :value보다 작거나 같음', + 'search_modifier_amount_more' => '금액이 :value보다 크거나 같음', + 'search_modifier_not_amount_less' => '금액이 :value보다 크거나 같음', + 'search_modifier_source_account_is' => '소스 계정 이름은 정확히 ":value"입니다', + 'search_modifier_not_source_account_is' => '소스 계정 이름은 ":value"가 아닙니다', + 'search_modifier_source_account_contains' => '소스 계정 이름은 ":value"를 포함합니다', + 'search_modifier_not_source_account_contains' => '소스 계정 이름은 ":value"를 포함하지 않습니다', + 'search_modifier_source_account_starts' => '소스 계정 이름은 ":value"로 시작합니다', + 'search_modifier_not_source_account_starts' => '소스 계정 이름은 ":value"로 시작하지 않습니다', + 'search_modifier_source_account_ends' => '소스 계정 이름은 ":value"로 끝납니다', + 'search_modifier_not_source_account_ends' => '소스 계정 이름은 ":value"로 끝나지 않습니다', + 'search_modifier_source_account_id' => '소스 계정 ID는 ":value"입니다', + 'search_modifier_not_source_account_id' => '소스 계정 ID는 ":value"가 아닙니다', + 'search_modifier_source_account_nr_is' => '소스 계정 번호(IBAN)는 ":value"입니다', + 'search_modifier_not_source_account_nr_is' => '소스 계정 번호(IBAN)는 ":value"가 아닙니다', + 'search_modifier_source_account_nr_contains' => '소스 계정 번호(IBAN)는 ":value"를 포함합니다', + 'search_modifier_not_source_account_nr_contains' => '소스 계정 번호(IBAN)는 ":value"를 포함하지 않습니다', + 'search_modifier_source_account_nr_starts' => '소스 계정 번호(IBAN)는 ":value"로 시작합니다', + 'search_modifier_not_source_account_nr_starts' => '소스 계정 번호(IBAN)는 ":value"로 시작하지 않습니다', + 'search_modifier_source_account_nr_ends' => '소스 계정 번호(IBAN)는 ":value"로 끝납니다', + 'search_modifier_not_source_account_nr_ends' => '소스 계정 번호(IBAN)는 ":value"로 끝나지 않습니다', + 'search_modifier_destination_account_is' => '대상 계정 이름은 정확히 ":value"입니다', + 'search_modifier_not_destination_account_is' => '대상 계정 이름은 ":value"가 아닙니다', + 'search_modifier_destination_account_contains' => '대상 계정 이름은 ":value"를 포함합니다', + 'search_modifier_not_destination_account_contains' => '대상 계정 이름은 ":value"를 포함하지 않습니다', + 'search_modifier_destination_account_starts' => '대상 계정 이름은 ":value"로 시작합니다', + 'search_modifier_not_destination_account_starts' => '대상 계정 이름은 ":value"로 시작하지 않습니다', + 'search_modifier_destination_account_ends' => '대상 계정 이름은 ":value"로 끝납니다', + 'search_modifier_not_destination_account_ends' => '대상 계정 이름은 ":value"로 끝나지 않습니다', + 'search_modifier_destination_account_id' => '대상 계정 ID는 ":value"입니다', + 'search_modifier_not_destination_account_id' => '대상 계정 ID는 ":value"가 아닙니다', + 'search_modifier_destination_is_cash' => '대상 계정은 "(현금)" 계정 입니다', + 'search_modifier_not_destination_is_cash' => '대상 계정은 "(현금)" 계정이 아닙니다', + 'search_modifier_source_is_cash' => '소스 계정은 "(현금)" 계정입니다', + 'search_modifier_not_source_is_cash' => '원본 계정이 "(현금)" 계정이 아닙니다', + 'search_modifier_destination_account_nr_is' => '대상 계정 번호(IBAN)는 ":value"입니다', + 'search_modifier_not_destination_account_nr_is' => '대상 계정 번호(IBAN)는 ":value"입니다', + 'search_modifier_destination_account_nr_contains' => '대상 계정 번호(IBAN)는 ":value"를 포함합니다', + 'search_modifier_not_destination_account_nr_contains' => '대상 계정 번호(IBAN)는 ":value"를 포함하지 않습니다', + 'search_modifier_destination_account_nr_starts' => '대상 계정 번호(IBAN)는 ":value"로 시작합니다', + 'search_modifier_not_destination_account_nr_starts' => '대상 계정 번호(IBAN)는 ":value"로 시작하지 않습니다', + 'search_modifier_destination_account_nr_ends' => '대상 계정 번호(IBAN)는 ":value"으로 끝납니다', + 'search_modifier_not_destination_account_nr_ends' => '대상 계정 번호(IBAN)는 ":value"으로 끝나지 않습니다', + 'search_modifier_account_id' => '소스 또는 대상 계정 ID는 :value입니다', + 'search_modifier_not_account_id' => '소스 또는 대상 계정 ID는 :value가 아닙니다', + 'search_modifier_category_is' => '카테고리는 ":value" 입니다', + 'search_modifier_not_category_is' => '카테고리는 ":value" 가 아닙니다', + 'search_modifier_budget_is' => '예산은 ":value" 입니다', + 'search_modifier_not_budget_is' => '예산은 ":value" 가 아닙니다', + 'search_modifier_bill_is' => '청구서는 ":value" 입니다', + 'search_modifier_not_bill_is' => '청구서는 ":value" 가 아닙니다', + 'search_modifier_transaction_type' => '거래 유형은 ":value" 입니다', + 'search_modifier_not_transaction_type' => '거래 유형은 ":value"가 아닙니다', + 'search_modifier_tag_is' => '태그는 ":value" 입니다', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => '":value" 태그가 없습니다.', + 'search_modifier_date_on_year' => '거래는 ":value" 연도에 있습니다', + 'search_modifier_not_date_on_year' => '거래는 ":value" 연도에 있지 않습니다', + 'search_modifier_date_on_month' => '거래는 ":value" 월에 있습니다', + 'search_modifier_not_date_on_month' => '거래는 ":value" 월에 있지 않습니다', + 'search_modifier_date_on_day' => '거래는 ":value" 일에 있습니다', + 'search_modifier_not_date_on_day' => '거래는 ":value" 일에 있지 않습니다', + 'search_modifier_date_before_year' => '거래는 ":value"년 이거나 이전입니다', + 'search_modifier_date_before_month' => '거래는 ":value"월 이거나 이전입니다', + 'search_modifier_date_before_day' => '거래는 ":value"일 이거나 이전입니다', + 'search_modifier_date_after_year' => '거래는 ":value"년 이거나 이후입니다', + 'search_modifier_date_after_month' => '거래는 ":value"월 이거나 이후입니다', + 'search_modifier_date_after_day' => '거래는 ":value"일 이거나 이후입니다', // new - 'search_modifier_tag_is_not' => '":value" 태그가 없습니다', - 'search_modifier_not_tag_is_not' => '태그는 ":value" 입니다', - 'search_modifier_account_is' => '계정중 하나는 ":value" 입니다', - 'search_modifier_not_account_is' => '두 계정 모두 ":value"가 아닙니다', - 'search_modifier_account_contains' => '계정중 하나는 ":value"를 포함합니다', - 'search_modifier_not_account_contains' => '두 계정 모두 ":value"를 포함하지 않습니다', - 'search_modifier_account_ends' => '계정중 하나는 ":value"로 끝납니다', - 'search_modifier_not_account_ends' => '두 계정 모두 ":value"로 끝나지 않습니다', - 'search_modifier_account_starts' => '계정중 하나는 ":value"로 시작합니다', - 'search_modifier_not_account_starts' => '두 계정 모두 ":value"로 시작하지 않습니다', - 'search_modifier_account_nr_is' => '계정 번호 / IBAN 중 하나는 ":value"입니다', - 'search_modifier_not_account_nr_is' => '두 계정의 번호 / IBAN은 모두 ":value"가 아닙니다', - 'search_modifier_account_nr_contains' => '계정 번호 / IBAN 중 하나가 ":value"를 포함합니다', - 'search_modifier_not_account_nr_contains' => '두 계정의 번호 / IBAN은 모두 ":value"를 포함하지 않습니다', - 'search_modifier_account_nr_ends' => '계정 번호 / IBAN 중 하나가 ":value"로 끝납니다', - 'search_modifier_not_account_nr_ends' => '두 계정의 번호 / IBAN은 모두 ":value"로 끝나지 않습니다', - 'search_modifier_account_nr_starts' => '계정 번호 / IBAN 중 하나가 ":value"로 시작합니다', - 'search_modifier_not_account_nr_starts' => '두 계정의 번호 / IBAN은 모두 ":value"로 시작하지 않습니다', - 'search_modifier_category_contains' => '카테고리는 ":value"를 포함합니다', - 'search_modifier_not_category_contains' => '카테고리는 ":value"를 포함하지 않습니다', - 'search_modifier_category_ends' => '카테고리는 ":value"로 끝납니다', - 'search_modifier_not_category_ends' => '카테고리는 ":value"로 끝나지 않습니다', - 'search_modifier_category_starts' => '카테고리는 ":value"로 시작합니다', - 'search_modifier_not_category_starts' => '카테고리는 ":value"로 시작하지 않습니다', - 'search_modifier_budget_contains' => '예산은 ":value"를 포함합니다', - 'search_modifier_not_budget_contains' => '예산은 ":value"를 포함하지 않습니다', - 'search_modifier_budget_ends' => '예산은 ":value"로 끝납니다', - 'search_modifier_not_budget_ends' => '예산은 ":value"로 끝나지 않습니다', - 'search_modifier_budget_starts' => '예산은 ":value"로 시작합니다', - 'search_modifier_not_budget_starts' => '예산은 ":value"로 시작하지 않습니다', - 'search_modifier_bill_contains' => '청구서는 ":value"를 포함합니다', - 'search_modifier_not_bill_contains' => '청구서는 ":value"를 포함하지 않습니다', - 'search_modifier_bill_ends' => '청구서는 ":value"로 끝납니다', - 'search_modifier_not_bill_ends' => '청구서는 ":value"로 끝나지 않습니다', - 'search_modifier_bill_starts' => '청구서는 ":value"로 시작합니다', - 'search_modifier_not_bill_starts' => '청구서는 ":value"로 시작하지 않습니다', - 'search_modifier_external_id_contains' => '외부 ID는 ":value"를 포함합니다', - 'search_modifier_not_external_id_contains' => '외부 ID는 ":value"를 포함하지 않습니다', - 'search_modifier_external_id_ends' => '외부 ID는 ":value"로 끝납니다', - 'search_modifier_not_external_id_ends' => '외부 ID는 ":value"로 끝나지 않습니다', - 'search_modifier_external_id_starts' => '외부 ID는 ":value"로 시작합니다', - 'search_modifier_not_external_id_starts' => '외부 ID는 ":value"로 시작하지 않습니다', - 'search_modifier_internal_reference_contains' => '내부 참조는 ":value"를 포함합니다', - 'search_modifier_not_internal_reference_contains' => '내부 참조는 ":value"를 포함하지 않습니다', - 'search_modifier_internal_reference_ends' => '내부 참조는 ":value"로 끝납니다', - 'search_modifier_internal_reference_starts' => '내부 참조는 ":value"로 시작합니다', - 'search_modifier_not_internal_reference_ends' => '내부 참조는 ":value"로 끝나지 않습니다', - 'search_modifier_not_internal_reference_starts' => '내부 참조는 ":value"로 시작하지 않습니다', - 'search_modifier_external_url_is' => '외부 URL은 ":value"입니다', - 'search_modifier_not_external_url_is' => '외부 URL은 ":value"가 아닙니다', - 'search_modifier_external_url_contains' => '외부 URL은 ":value"를 포함합니다', - 'search_modifier_not_external_url_contains' => '외부 URL은 ":value"를 포함하지 않습니다', - 'search_modifier_external_url_ends' => '외부 URL은 ":value"로 끝납니다', - 'search_modifier_not_external_url_ends' => '외부 URL은 ":value"로 끝나지 않습니다', - 'search_modifier_external_url_starts' => '외부 URL은 ":value"로 시작합니다', - 'search_modifier_not_external_url_starts' => '외부 URL은 ":value"로 시작하지 않습니다', - 'search_modifier_has_no_attachments' => '거래에 첨부 파일이 없음', - 'search_modifier_not_has_no_attachments' => '거래에 첨부 파일이 있음', - 'search_modifier_not_has_attachments' => '거래에 첨부 파일이 없음', - 'search_modifier_account_is_cash' => '두 계정 중 하나는 "(현금)" 계정입니다.', - 'search_modifier_not_account_is_cash' => '두 계정 모두 "(현금)" 계정이 아닙니다.', - 'search_modifier_journal_id' => '저널 ID는 ":value"입니다', - 'search_modifier_not_journal_id' => '저널 ID는 ":value"가 아닙니다', - 'search_modifier_recurrence_id' => '반복 거래 ID는 ":value"입니다', - 'search_modifier_not_recurrence_id' => '반복 거래 ID는 ":value"가 아닙니다', - 'search_modifier_foreign_amount_is' => '외화 금액은 ":value"입니다', - 'search_modifier_not_foreign_amount_is' => '외화 금액은 ":value"가 아닙니다', - 'search_modifier_foreign_amount_less' => '외화 금액은 ":value" 보다 작습니다', - 'search_modifier_not_foreign_amount_more' => '외화 금액은 ":value" 보다 작습니다', - 'search_modifier_not_foreign_amount_less' => '외화 금액은 ":value" 보다 큽니다', - 'search_modifier_foreign_amount_more' => '외화 금액은 ":value" 보다 큽니다', - 'search_modifier_exists' => '거래 존재(모든 거래)', - 'search_modifier_not_exists' => '거래가 존재하지 않음(거래 없음)', + 'search_modifier_tag_is_not' => '":value" 태그가 없습니다', + 'search_modifier_not_tag_is_not' => '태그는 ":value" 입니다', + 'search_modifier_account_is' => '계정중 하나는 ":value" 입니다', + 'search_modifier_not_account_is' => '두 계정 모두 ":value"가 아닙니다', + 'search_modifier_account_contains' => '계정중 하나는 ":value"를 포함합니다', + 'search_modifier_not_account_contains' => '두 계정 모두 ":value"를 포함하지 않습니다', + 'search_modifier_account_ends' => '계정중 하나는 ":value"로 끝납니다', + 'search_modifier_not_account_ends' => '두 계정 모두 ":value"로 끝나지 않습니다', + 'search_modifier_account_starts' => '계정중 하나는 ":value"로 시작합니다', + 'search_modifier_not_account_starts' => '두 계정 모두 ":value"로 시작하지 않습니다', + 'search_modifier_account_nr_is' => '계정 번호 / IBAN 중 하나는 ":value"입니다', + 'search_modifier_not_account_nr_is' => '두 계정의 번호 / IBAN은 모두 ":value"가 아닙니다', + 'search_modifier_account_nr_contains' => '계정 번호 / IBAN 중 하나가 ":value"를 포함합니다', + 'search_modifier_not_account_nr_contains' => '두 계정의 번호 / IBAN은 모두 ":value"를 포함하지 않습니다', + 'search_modifier_account_nr_ends' => '계정 번호 / IBAN 중 하나가 ":value"로 끝납니다', + 'search_modifier_not_account_nr_ends' => '두 계정의 번호 / IBAN은 모두 ":value"로 끝나지 않습니다', + 'search_modifier_account_nr_starts' => '계정 번호 / IBAN 중 하나가 ":value"로 시작합니다', + 'search_modifier_not_account_nr_starts' => '두 계정의 번호 / IBAN은 모두 ":value"로 시작하지 않습니다', + 'search_modifier_category_contains' => '카테고리는 ":value"를 포함합니다', + 'search_modifier_not_category_contains' => '카테고리는 ":value"를 포함하지 않습니다', + 'search_modifier_category_ends' => '카테고리는 ":value"로 끝납니다', + 'search_modifier_not_category_ends' => '카테고리는 ":value"로 끝나지 않습니다', + 'search_modifier_category_starts' => '카테고리는 ":value"로 시작합니다', + 'search_modifier_not_category_starts' => '카테고리는 ":value"로 시작하지 않습니다', + 'search_modifier_budget_contains' => '예산은 ":value"를 포함합니다', + 'search_modifier_not_budget_contains' => '예산은 ":value"를 포함하지 않습니다', + 'search_modifier_budget_ends' => '예산은 ":value"로 끝납니다', + 'search_modifier_not_budget_ends' => '예산은 ":value"로 끝나지 않습니다', + 'search_modifier_budget_starts' => '예산은 ":value"로 시작합니다', + 'search_modifier_not_budget_starts' => '예산은 ":value"로 시작하지 않습니다', + 'search_modifier_bill_contains' => '청구서는 ":value"를 포함합니다', + 'search_modifier_not_bill_contains' => '청구서는 ":value"를 포함하지 않습니다', + 'search_modifier_bill_ends' => '청구서는 ":value"로 끝납니다', + 'search_modifier_not_bill_ends' => '청구서는 ":value"로 끝나지 않습니다', + 'search_modifier_bill_starts' => '청구서는 ":value"로 시작합니다', + 'search_modifier_not_bill_starts' => '청구서는 ":value"로 시작하지 않습니다', + 'search_modifier_external_id_contains' => '외부 ID는 ":value"를 포함합니다', + 'search_modifier_not_external_id_contains' => '외부 ID는 ":value"를 포함하지 않습니다', + 'search_modifier_external_id_ends' => '외부 ID는 ":value"로 끝납니다', + 'search_modifier_not_external_id_ends' => '외부 ID는 ":value"로 끝나지 않습니다', + 'search_modifier_external_id_starts' => '외부 ID는 ":value"로 시작합니다', + 'search_modifier_not_external_id_starts' => '외부 ID는 ":value"로 시작하지 않습니다', + 'search_modifier_internal_reference_contains' => '내부 참조는 ":value"를 포함합니다', + 'search_modifier_not_internal_reference_contains' => '내부 참조는 ":value"를 포함하지 않습니다', + 'search_modifier_internal_reference_ends' => '내부 참조는 ":value"로 끝납니다', + 'search_modifier_internal_reference_starts' => '내부 참조는 ":value"로 시작합니다', + 'search_modifier_not_internal_reference_ends' => '내부 참조는 ":value"로 끝나지 않습니다', + 'search_modifier_not_internal_reference_starts' => '내부 참조는 ":value"로 시작하지 않습니다', + 'search_modifier_external_url_is' => '외부 URL은 ":value"입니다', + 'search_modifier_not_external_url_is' => '외부 URL은 ":value"가 아닙니다', + 'search_modifier_external_url_contains' => '외부 URL은 ":value"를 포함합니다', + 'search_modifier_not_external_url_contains' => '외부 URL은 ":value"를 포함하지 않습니다', + 'search_modifier_external_url_ends' => '외부 URL은 ":value"로 끝납니다', + 'search_modifier_not_external_url_ends' => '외부 URL은 ":value"로 끝나지 않습니다', + 'search_modifier_external_url_starts' => '외부 URL은 ":value"로 시작합니다', + 'search_modifier_not_external_url_starts' => '외부 URL은 ":value"로 시작하지 않습니다', + 'search_modifier_has_no_attachments' => '거래에 첨부 파일이 없음', + 'search_modifier_not_has_no_attachments' => '거래에 첨부 파일이 있음', + 'search_modifier_not_has_attachments' => '거래에 첨부 파일이 없음', + 'search_modifier_account_is_cash' => '두 계정 중 하나는 "(현금)" 계정입니다.', + 'search_modifier_not_account_is_cash' => '두 계정 모두 "(현금)" 계정이 아닙니다.', + 'search_modifier_journal_id' => '저널 ID는 ":value"입니다', + 'search_modifier_not_journal_id' => '저널 ID는 ":value"가 아닙니다', + 'search_modifier_recurrence_id' => '반복 거래 ID는 ":value"입니다', + 'search_modifier_not_recurrence_id' => '반복 거래 ID는 ":value"가 아닙니다', + 'search_modifier_foreign_amount_is' => '외화 금액은 ":value"입니다', + 'search_modifier_not_foreign_amount_is' => '외화 금액은 ":value"가 아닙니다', + 'search_modifier_foreign_amount_less' => '외화 금액은 ":value" 보다 작습니다', + 'search_modifier_not_foreign_amount_more' => '외화 금액은 ":value" 보다 작습니다', + 'search_modifier_not_foreign_amount_less' => '외화 금액은 ":value" 보다 큽니다', + 'search_modifier_foreign_amount_more' => '외화 금액은 ":value" 보다 큽니다', + 'search_modifier_exists' => '거래 존재(모든 거래)', + 'search_modifier_not_exists' => '거래가 존재하지 않음(거래 없음)', // date fields - 'search_modifier_interest_date_on' => '거래 이자 날짜는 ":value"입니다', - 'search_modifier_not_interest_date_on' => '거래 이자 날짜는 ":value"가 아닙니다', - 'search_modifier_interest_date_on_year' => '거래 이자 날짜는 ":value"년 입니다', - 'search_modifier_not_interest_date_on_year' => '거래 이자 날짜는 ":value"년이 아닙니다', - 'search_modifier_interest_date_on_month' => '거래 이자 날짜는 ":value"월 입니다', - 'search_modifier_not_interest_date_on_month' => '거래 이자 날짜는 ":value"월이 아닙니다', - 'search_modifier_interest_date_on_day' => '거래 이자 날짜는 ":value"일 입니다', - 'search_modifier_not_interest_date_on_day' => '거래 이자 날짜는 ":value"일이 아닙니다', - 'search_modifier_interest_date_before_year' => '거래 이자 날짜는 ":value"년 혹은 이전입니다', - 'search_modifier_interest_date_before_month' => '거래 이자 날짜는 ":value"월 혹은 이전입니다', - 'search_modifier_interest_date_before_day' => '거래 이자 날짜는 ":value"일 혹은 이전입니다', - 'search_modifier_interest_date_after_year' => '거래 이자 날짜는 ":value"년 혹은 이후입니다', - 'search_modifier_interest_date_after_month' => '거래 이자 날짜는 ":value"월 혹은 이후입니다', - 'search_modifier_interest_date_after_day' => '거래 이자 날짜는 ":value"일 혹은 이후입니다', - 'search_modifier_book_date_on_year' => '거래 장부 날짜는 ":value"년 입니다', - 'search_modifier_book_date_on_month' => '거래 장부 날짜는 ":value"월 입니다', - 'search_modifier_book_date_on_day' => '거래 장부 날짜는 ":value"일 입니다', - 'search_modifier_not_book_date_on_year' => '거래 장부 날짜는 ":value"년이 아닙니다', - 'search_modifier_not_book_date_on_month' => '거래 장부 날짜는 ":value"월이 아닙니다', - 'search_modifier_not_book_date_on_day' => '거래 장부 날짜는 ":value"일이 아닙니다', - 'search_modifier_book_date_before_year' => '거래 장부 날짜는 ":value"년 혹은 이전입니다', - 'search_modifier_book_date_before_month' => '거래 장부 날짜는 ":value"월 혹은 이전입니다', - 'search_modifier_book_date_before_day' => '거래 장부 날짜는 ":value"일 혹은 이전입니다', - 'search_modifier_book_date_after_year' => '거래 장부 날짜는 ":value"년 혹은 이후입니다', - 'search_modifier_book_date_after_month' => '거래 장부 날짜는 ":value"월 혹은 이후입니다', - 'search_modifier_book_date_after_day' => '거래 장부 날짜는 ":value"일 혹은 이후입니다', - 'search_modifier_process_date_on_year' => '거래 처리 날짜는 ":value"년 입니다', - 'search_modifier_process_date_on_month' => '거래 처리 날짜는 ":value"월 입니다', - 'search_modifier_process_date_on_day' => '거래 처리 날짜는 ":value"일입니다', - 'search_modifier_not_process_date_on_year' => '거리 처리 날짜가 ":value"년이 아닙니다', - 'search_modifier_not_process_date_on_month' => '거리 처리 날짜가 ":value"월이 아닙니다', - 'search_modifier_not_process_date_on_day' => '거래 처리 날짜가 ":value"일이 아닙니다', - 'search_modifier_process_date_before_year' => '거래 처리 날짜가 ":value"년 혹은 이전입니다', - 'search_modifier_process_date_before_month' => '거래 처리 날짜가 ":value"월 혹은 이전입니다', - 'search_modifier_process_date_before_day' => '거래 처리 날짜가 ":value"일 혹은 이전입니다', - 'search_modifier_process_date_after_year' => '거래 처리 날짜가 ":value"년 혹은 이후입니다', - 'search_modifier_process_date_after_month' => '거래 처리 날짜가 ":value"월 혹은 이후입니다', - 'search_modifier_process_date_after_day' => '거래 처리 날짜가 ":value"일 혹은 이후입니다', - 'search_modifier_due_date_on_year' => '거래 마감일은 ":value"년입니다', - 'search_modifier_due_date_on_month' => '거래 마감일은 ":value"월입니다', - 'search_modifier_due_date_on_day' => '거래 마감일은 ":value"일입니다', - 'search_modifier_not_due_date_on_year' => '거래 마감일이 ":value"년이 아닙니다', - 'search_modifier_not_due_date_on_month' => '거래 마감일이 ":value"월이 아닙니다', - 'search_modifier_not_due_date_on_day' => '거래 마감일이 ":value"일이 아닙니다', - 'search_modifier_due_date_before_year' => '거래 마감일이 ":value"년 혹은 이전입니다', - 'search_modifier_due_date_before_month' => '거래 마감일이 ":value"월 혹은 이전입니다', - 'search_modifier_due_date_before_day' => '거래 마감일이 ":value"일 혹은 이전입니다', - 'search_modifier_due_date_after_year' => '거래 마감일이 ":value"년 혹은 이후입니다', - 'search_modifier_due_date_after_month' => '거래 마감일이 ":value"월 혹은 이후입니다', - 'search_modifier_due_date_after_day' => '거래 마감일이 ":value"일 혹은 이후입니다', - 'search_modifier_payment_date_on_year' => '거래 결제일은 ":value"년입니다', - 'search_modifier_payment_date_on_month' => '거래 결제일은 ":value"월입니다', - 'search_modifier_payment_date_on_day' => '거래 결제일은 ":value"일입니다', - 'search_modifier_not_payment_date_on_year' => '거래 결제일은 ":value"년이 아닙니다', - 'search_modifier_not_payment_date_on_month' => '거래 결제일은 ":value"월이 아닙니다', - 'search_modifier_not_payment_date_on_day' => '거래 결제일은 ":value"일이 아닙니다', - 'search_modifier_payment_date_before_year' => '거래 결제일은 ":value"년 혹은 이전입니다', - 'search_modifier_payment_date_before_month' => '거래 결제일은 ":value"월 혹은 이전입니다', - 'search_modifier_payment_date_before_day' => '거래 결제일은 ":value"일 혹은 이전입니다', - 'search_modifier_payment_date_after_year' => '거래 결제일은 ":value"년 혹은 이후입니다', - 'search_modifier_payment_date_after_month' => '거래 결제일은 ":value"월 혹은 이후입니다', - 'search_modifier_payment_date_after_day' => '거래 결제일은 ":value"일 혹은 이후입니다', - 'search_modifier_invoice_date_on_year' => '거래 송장 날짜는 ":value"년입니다', - 'search_modifier_invoice_date_on_month' => '거래 송장 날짜는 ":value"월입니다', - 'search_modifier_invoice_date_on_day' => '거래 송장 날짜는 ":value"일입니다', - 'search_modifier_not_invoice_date_on_year' => '거래 송장 날짜는 ":value"년이 아닙니다', - 'search_modifier_not_invoice_date_on_month' => '거래 송장 날짜는 ":value"월이 아닙니다', - 'search_modifier_not_invoice_date_on_day' => '거래 송장 날짜는 ":value"일이 아닙니다', - 'search_modifier_invoice_date_before_year' => '거래 송장 날짜는 ":value"년 혹은 이전입니다', - 'search_modifier_invoice_date_before_month' => '거래 송장 날짜는 ":value"월 혹은 이전입니다', - 'search_modifier_invoice_date_before_day' => '거래 송장 날짜는 ":value"일 혹은 이전입니다', - 'search_modifier_invoice_date_after_year' => '거래 송장 날짜는 ":value"년 혹은 이후입니다', - 'search_modifier_invoice_date_after_month' => '거래 송장 날짜는 ":value"월 혹은 이후입니다', - 'search_modifier_invoice_date_after_day' => '거래 송장 날짜는 ":value"일 혹은 이후입니다', + 'search_modifier_interest_date_on' => '거래 이자 날짜는 ":value"입니다', + 'search_modifier_not_interest_date_on' => '거래 이자 날짜는 ":value"가 아닙니다', + 'search_modifier_interest_date_on_year' => '거래 이자 날짜는 ":value"년 입니다', + 'search_modifier_not_interest_date_on_year' => '거래 이자 날짜는 ":value"년이 아닙니다', + 'search_modifier_interest_date_on_month' => '거래 이자 날짜는 ":value"월 입니다', + 'search_modifier_not_interest_date_on_month' => '거래 이자 날짜는 ":value"월이 아닙니다', + 'search_modifier_interest_date_on_day' => '거래 이자 날짜는 ":value"일 입니다', + 'search_modifier_not_interest_date_on_day' => '거래 이자 날짜는 ":value"일이 아닙니다', + 'search_modifier_interest_date_before_year' => '거래 이자 날짜는 ":value"년 혹은 이전입니다', + 'search_modifier_interest_date_before_month' => '거래 이자 날짜는 ":value"월 혹은 이전입니다', + 'search_modifier_interest_date_before_day' => '거래 이자 날짜는 ":value"일 혹은 이전입니다', + 'search_modifier_interest_date_after_year' => '거래 이자 날짜는 ":value"년 혹은 이후입니다', + 'search_modifier_interest_date_after_month' => '거래 이자 날짜는 ":value"월 혹은 이후입니다', + 'search_modifier_interest_date_after_day' => '거래 이자 날짜는 ":value"일 혹은 이후입니다', + 'search_modifier_book_date_on_year' => '거래 장부 날짜는 ":value"년 입니다', + 'search_modifier_book_date_on_month' => '거래 장부 날짜는 ":value"월 입니다', + 'search_modifier_book_date_on_day' => '거래 장부 날짜는 ":value"일 입니다', + 'search_modifier_not_book_date_on_year' => '거래 장부 날짜는 ":value"년이 아닙니다', + 'search_modifier_not_book_date_on_month' => '거래 장부 날짜는 ":value"월이 아닙니다', + 'search_modifier_not_book_date_on_day' => '거래 장부 날짜는 ":value"일이 아닙니다', + 'search_modifier_book_date_before_year' => '거래 장부 날짜는 ":value"년 혹은 이전입니다', + 'search_modifier_book_date_before_month' => '거래 장부 날짜는 ":value"월 혹은 이전입니다', + 'search_modifier_book_date_before_day' => '거래 장부 날짜는 ":value"일 혹은 이전입니다', + 'search_modifier_book_date_after_year' => '거래 장부 날짜는 ":value"년 혹은 이후입니다', + 'search_modifier_book_date_after_month' => '거래 장부 날짜는 ":value"월 혹은 이후입니다', + 'search_modifier_book_date_after_day' => '거래 장부 날짜는 ":value"일 혹은 이후입니다', + 'search_modifier_process_date_on_year' => '거래 처리 날짜는 ":value"년 입니다', + 'search_modifier_process_date_on_month' => '거래 처리 날짜는 ":value"월 입니다', + 'search_modifier_process_date_on_day' => '거래 처리 날짜는 ":value"일입니다', + 'search_modifier_not_process_date_on_year' => '거리 처리 날짜가 ":value"년이 아닙니다', + 'search_modifier_not_process_date_on_month' => '거리 처리 날짜가 ":value"월이 아닙니다', + 'search_modifier_not_process_date_on_day' => '거래 처리 날짜가 ":value"일이 아닙니다', + 'search_modifier_process_date_before_year' => '거래 처리 날짜가 ":value"년 혹은 이전입니다', + 'search_modifier_process_date_before_month' => '거래 처리 날짜가 ":value"월 혹은 이전입니다', + 'search_modifier_process_date_before_day' => '거래 처리 날짜가 ":value"일 혹은 이전입니다', + 'search_modifier_process_date_after_year' => '거래 처리 날짜가 ":value"년 혹은 이후입니다', + 'search_modifier_process_date_after_month' => '거래 처리 날짜가 ":value"월 혹은 이후입니다', + 'search_modifier_process_date_after_day' => '거래 처리 날짜가 ":value"일 혹은 이후입니다', + 'search_modifier_due_date_on_year' => '거래 마감일은 ":value"년입니다', + 'search_modifier_due_date_on_month' => '거래 마감일은 ":value"월입니다', + 'search_modifier_due_date_on_day' => '거래 마감일은 ":value"일입니다', + 'search_modifier_not_due_date_on_year' => '거래 마감일이 ":value"년이 아닙니다', + 'search_modifier_not_due_date_on_month' => '거래 마감일이 ":value"월이 아닙니다', + 'search_modifier_not_due_date_on_day' => '거래 마감일이 ":value"일이 아닙니다', + 'search_modifier_due_date_before_year' => '거래 마감일이 ":value"년 혹은 이전입니다', + 'search_modifier_due_date_before_month' => '거래 마감일이 ":value"월 혹은 이전입니다', + 'search_modifier_due_date_before_day' => '거래 마감일이 ":value"일 혹은 이전입니다', + 'search_modifier_due_date_after_year' => '거래 마감일이 ":value"년 혹은 이후입니다', + 'search_modifier_due_date_after_month' => '거래 마감일이 ":value"월 혹은 이후입니다', + 'search_modifier_due_date_after_day' => '거래 마감일이 ":value"일 혹은 이후입니다', + 'search_modifier_payment_date_on_year' => '거래 결제일은 ":value"년입니다', + 'search_modifier_payment_date_on_month' => '거래 결제일은 ":value"월입니다', + 'search_modifier_payment_date_on_day' => '거래 결제일은 ":value"일입니다', + 'search_modifier_not_payment_date_on_year' => '거래 결제일은 ":value"년이 아닙니다', + 'search_modifier_not_payment_date_on_month' => '거래 결제일은 ":value"월이 아닙니다', + 'search_modifier_not_payment_date_on_day' => '거래 결제일은 ":value"일이 아닙니다', + 'search_modifier_payment_date_before_year' => '거래 결제일은 ":value"년 혹은 이전입니다', + 'search_modifier_payment_date_before_month' => '거래 결제일은 ":value"월 혹은 이전입니다', + 'search_modifier_payment_date_before_day' => '거래 결제일은 ":value"일 혹은 이전입니다', + 'search_modifier_payment_date_after_year' => '거래 결제일은 ":value"년 혹은 이후입니다', + 'search_modifier_payment_date_after_month' => '거래 결제일은 ":value"월 혹은 이후입니다', + 'search_modifier_payment_date_after_day' => '거래 결제일은 ":value"일 혹은 이후입니다', + 'search_modifier_invoice_date_on_year' => '거래 송장 날짜는 ":value"년입니다', + 'search_modifier_invoice_date_on_month' => '거래 송장 날짜는 ":value"월입니다', + 'search_modifier_invoice_date_on_day' => '거래 송장 날짜는 ":value"일입니다', + 'search_modifier_not_invoice_date_on_year' => '거래 송장 날짜는 ":value"년이 아닙니다', + 'search_modifier_not_invoice_date_on_month' => '거래 송장 날짜는 ":value"월이 아닙니다', + 'search_modifier_not_invoice_date_on_day' => '거래 송장 날짜는 ":value"일이 아닙니다', + 'search_modifier_invoice_date_before_year' => '거래 송장 날짜는 ":value"년 혹은 이전입니다', + 'search_modifier_invoice_date_before_month' => '거래 송장 날짜는 ":value"월 혹은 이전입니다', + 'search_modifier_invoice_date_before_day' => '거래 송장 날짜는 ":value"일 혹은 이전입니다', + 'search_modifier_invoice_date_after_year' => '거래 송장 날짜는 ":value"년 혹은 이후입니다', + 'search_modifier_invoice_date_after_month' => '거래 송장 날짜는 ":value"월 혹은 이후입니다', + 'search_modifier_invoice_date_after_day' => '거래 송장 날짜는 ":value"일 혹은 이후입니다', // other dates - 'search_modifier_updated_at_on_year' => '거래가 ":value"년에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_on_month' => '거래가 ":value"월에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_on_day' => '거래가 ":value"일에 마지막으로 업데이트되었습니다', - 'search_modifier_not_updated_at_on_year' => '거래가 ":value"년에 마지막으로 업데이트되지 않았습니다', - 'search_modifier_not_updated_at_on_month' => '거래가 ":value"월에 마지막으로 업데이트되지 않았습니다', - 'search_modifier_not_updated_at_on_day' => '거래가 ":value"일에 마지막으로 업데이트되지 않았습니다', - 'search_modifier_updated_at_before_year' => '거래가 ":value"년 혹은 이전에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_before_month' => '거래가 ":value"월 혹은 이전에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_before_day' => '거래가 ":value"일 혹은 이전에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_after_year' => '거래가 ":value"년 혹은 이후에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_after_month' => '거래가 ":value"월 혹은 이후에 마지막으로 업데이트되었습니다', - 'search_modifier_updated_at_after_day' => '거래가 ":value"일 혹은 이후에 마지막으로 업데이트되었습니다', - 'search_modifier_created_at_on_year' => '거래가 ":value"년에 생성되었습니다', - 'search_modifier_created_at_on_month' => '거래가 ":value"월에 생성되었습니다', - 'search_modifier_created_at_on_day' => '거래가 ":value"일에 생성되었습니다', - 'search_modifier_not_created_at_on_year' => '거래가 ":value"년에 생성되지 않았습니다', - 'search_modifier_not_created_at_on_month' => '거래가 ":value"월에 생성되지 않았습니다', - 'search_modifier_not_created_at_on_day' => '거래가 ":value"일에 생성되지 않았습니다', - 'search_modifier_created_at_before_year' => '거래가 ":value"년 혹은 이전에 생성되었습니다', - 'search_modifier_created_at_before_month' => '거래가 ":value"월 혹은 이전에 생성되었습니다', - 'search_modifier_created_at_before_day' => '거래가 ":value"일 혹은 이전에 생성되었습니다', - 'search_modifier_created_at_after_year' => '거래가 ":value"년 혹은 이후에 생성되었습니다', - 'search_modifier_created_at_after_month' => '거래가 ":value"월 혹은 이후에 생성되었습니다', - 'search_modifier_created_at_after_day' => '거래가 ":value"일 혹은 이후에 생성되었습니다', - 'search_modifier_interest_date_before' => '거래 이자 날짜가 ":value" 또는 그 이전입니다', - 'search_modifier_interest_date_after' => '거래 이자 날짜가 ":value" 또는 그 이후입니다', - 'search_modifier_book_date_on' => '거래 장부 날짜는 ":value"입니다', - 'search_modifier_not_book_date_on' => '거래 장부 날짜는 ":value"가 아닙니다', - 'search_modifier_book_date_before' => '거래 장부 날짜가 ":value" 또는 그 이전입니다', - 'search_modifier_book_date_after' => '거래 장부 날짜가 ":value" 또는 그 이후입니다', - 'search_modifier_process_date_on' => '거래 처리 날짜는 ":value"입니다', - 'search_modifier_not_process_date_on' => '거래 처리 날짜는 ":value"가 아닙니다', - 'search_modifier_process_date_before' => '거래 처리 날짜가 ":value" 또는 그 이전입니다', - 'search_modifier_process_date_after' => '거래 처리 날짜가 ":value" 또는 그 이후입니다', - 'search_modifier_due_date_on' => '거래 마감일은 ":value"입니다', - 'search_modifier_not_due_date_on' => '거래 마감일은 ":value"가 아닙니다', - 'search_modifier_due_date_before' => '거래 마감일이 ":value" 또는 그 이전 입니다', - 'search_modifier_due_date_after' => '거래 마감일이 ":value" 또는 그 이후 입니다', - 'search_modifier_payment_date_on' => '거래 결제일은 ":value"입니다', - 'search_modifier_not_payment_date_on' => '거래 결제일은 ":value"가 아닙니다', - 'search_modifier_payment_date_before' => '거래 결제일은 ":value" 또는 그 이전입니다', - 'search_modifier_payment_date_after' => '거래 결제일은 ":value" 또는 그 이후입니다', - 'search_modifier_invoice_date_on' => '거래 송장 날짜는 ":value"입니다', - 'search_modifier_not_invoice_date_on' => '거래 송장 날짜는 ":value"가 아닙니다', - 'search_modifier_invoice_date_before' => '거래 송장 날짜는 ":value" 또는 그 이전입니다', - 'search_modifier_invoice_date_after' => '거래 송장 날짜는 ":value" 또는 그 이후입니다', - 'search_modifier_created_at_on' => '거래가 ":value"에 생성되었습니다', - 'search_modifier_not_created_at_on' => '거래가 ":value"에 생성되지 않았습니다', - 'search_modifier_created_at_before' => '거래가 ":value" 혹은 이전에 생성되었습니다', - 'search_modifier_created_at_after' => '거래가 ":value" 혹은 이후에 생성되었습니다', - 'search_modifier_updated_at_on' => '거래가 ":value"에 업데이트되었습니다', - 'search_modifier_not_updated_at_on' => '거래가 ":value"에 업데이트되지 않았습니다', - 'search_modifier_updated_at_before' => '거래가 ":value" 또는 이전에 업데이트되었습니다', - 'search_modifier_updated_at_after' => '거래가 ":value" 이후에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_on_year' => '거래가 ":value"년에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_on_month' => '거래가 ":value"월에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_on_day' => '거래가 ":value"일에 마지막으로 업데이트되었습니다', + 'search_modifier_not_updated_at_on_year' => '거래가 ":value"년에 마지막으로 업데이트되지 않았습니다', + 'search_modifier_not_updated_at_on_month' => '거래가 ":value"월에 마지막으로 업데이트되지 않았습니다', + 'search_modifier_not_updated_at_on_day' => '거래가 ":value"일에 마지막으로 업데이트되지 않았습니다', + 'search_modifier_updated_at_before_year' => '거래가 ":value"년 혹은 이전에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_before_month' => '거래가 ":value"월 혹은 이전에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_before_day' => '거래가 ":value"일 혹은 이전에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_after_year' => '거래가 ":value"년 혹은 이후에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_after_month' => '거래가 ":value"월 혹은 이후에 마지막으로 업데이트되었습니다', + 'search_modifier_updated_at_after_day' => '거래가 ":value"일 혹은 이후에 마지막으로 업데이트되었습니다', + 'search_modifier_created_at_on_year' => '거래가 ":value"년에 생성되었습니다', + 'search_modifier_created_at_on_month' => '거래가 ":value"월에 생성되었습니다', + 'search_modifier_created_at_on_day' => '거래가 ":value"일에 생성되었습니다', + 'search_modifier_not_created_at_on_year' => '거래가 ":value"년에 생성되지 않았습니다', + 'search_modifier_not_created_at_on_month' => '거래가 ":value"월에 생성되지 않았습니다', + 'search_modifier_not_created_at_on_day' => '거래가 ":value"일에 생성되지 않았습니다', + 'search_modifier_created_at_before_year' => '거래가 ":value"년 혹은 이전에 생성되었습니다', + 'search_modifier_created_at_before_month' => '거래가 ":value"월 혹은 이전에 생성되었습니다', + 'search_modifier_created_at_before_day' => '거래가 ":value"일 혹은 이전에 생성되었습니다', + 'search_modifier_created_at_after_year' => '거래가 ":value"년 혹은 이후에 생성되었습니다', + 'search_modifier_created_at_after_month' => '거래가 ":value"월 혹은 이후에 생성되었습니다', + 'search_modifier_created_at_after_day' => '거래가 ":value"일 혹은 이후에 생성되었습니다', + 'search_modifier_interest_date_before' => '거래 이자 날짜가 ":value" 또는 그 이전입니다', + 'search_modifier_interest_date_after' => '거래 이자 날짜가 ":value" 또는 그 이후입니다', + 'search_modifier_book_date_on' => '거래 장부 날짜는 ":value"입니다', + 'search_modifier_not_book_date_on' => '거래 장부 날짜는 ":value"가 아닙니다', + 'search_modifier_book_date_before' => '거래 장부 날짜가 ":value" 또는 그 이전입니다', + 'search_modifier_book_date_after' => '거래 장부 날짜가 ":value" 또는 그 이후입니다', + 'search_modifier_process_date_on' => '거래 처리 날짜는 ":value"입니다', + 'search_modifier_not_process_date_on' => '거래 처리 날짜는 ":value"가 아닙니다', + 'search_modifier_process_date_before' => '거래 처리 날짜가 ":value" 또는 그 이전입니다', + 'search_modifier_process_date_after' => '거래 처리 날짜가 ":value" 또는 그 이후입니다', + 'search_modifier_due_date_on' => '거래 마감일은 ":value"입니다', + 'search_modifier_not_due_date_on' => '거래 마감일은 ":value"가 아닙니다', + 'search_modifier_due_date_before' => '거래 마감일이 ":value" 또는 그 이전 입니다', + 'search_modifier_due_date_after' => '거래 마감일이 ":value" 또는 그 이후 입니다', + 'search_modifier_payment_date_on' => '거래 결제일은 ":value"입니다', + 'search_modifier_not_payment_date_on' => '거래 결제일은 ":value"가 아닙니다', + 'search_modifier_payment_date_before' => '거래 결제일은 ":value" 또는 그 이전입니다', + 'search_modifier_payment_date_after' => '거래 결제일은 ":value" 또는 그 이후입니다', + 'search_modifier_invoice_date_on' => '거래 송장 날짜는 ":value"입니다', + 'search_modifier_not_invoice_date_on' => '거래 송장 날짜는 ":value"가 아닙니다', + 'search_modifier_invoice_date_before' => '거래 송장 날짜는 ":value" 또는 그 이전입니다', + 'search_modifier_invoice_date_after' => '거래 송장 날짜는 ":value" 또는 그 이후입니다', + 'search_modifier_created_at_on' => '거래가 ":value"에 생성되었습니다', + 'search_modifier_not_created_at_on' => '거래가 ":value"에 생성되지 않았습니다', + 'search_modifier_created_at_before' => '거래가 ":value" 혹은 이전에 생성되었습니다', + 'search_modifier_created_at_after' => '거래가 ":value" 혹은 이후에 생성되었습니다', + 'search_modifier_updated_at_on' => '거래가 ":value"에 업데이트되었습니다', + 'search_modifier_not_updated_at_on' => '거래가 ":value"에 업데이트되지 않았습니다', + 'search_modifier_updated_at_before' => '거래가 ":value" 또는 이전에 업데이트되었습니다', + 'search_modifier_updated_at_after' => '거래가 ":value" 이후에 마지막으로 업데이트되었습니다', - 'search_modifier_attachment_name_is' => '첨부 파일의 이름은 ":value"입니다', - 'search_modifier_attachment_name_contains' => '첨부 파일의 이름은 ":value"를 포함합니다', - 'search_modifier_attachment_name_starts' => '첨부 파일의 이름은 ":value"로 시작합니다', - 'search_modifier_attachment_name_ends' => '첨부 파일의 이름은 ":value"로 끝납니다', - 'search_modifier_attachment_notes_are' => '첨부 파일의 노트는 ":value"입니다', - 'search_modifier_attachment_notes_contains' => '첨부 파일의 노트는 ":value"를 포함합니다', - 'search_modifier_attachment_notes_starts' => '첨부 파일의 노트는 ":value"로 시작합니다', - 'search_modifier_attachment_notes_ends' => '첨부 파일의 노트는 ":value"로 끝납니다', - 'search_modifier_not_attachment_name_is' => '첨부 파일의 이름은 ":value"가 아닙니다', - 'search_modifier_not_attachment_name_contains' => '첨부 파일의 이름은 ":value"를 포함하지 않습니다', - 'search_modifier_not_attachment_name_starts' => '첨부 파일의 이름은 ":value"로 시작하지 않습니다', - 'search_modifier_not_attachment_name_ends' => '첨부 파일의 이름은 ":value"로 끝나지 않습니다', - 'search_modifier_not_attachment_notes_are' => '첨부 파일의 노트는 ":value"가 아닙니다', - 'search_modifier_not_attachment_notes_contains' => '첨부 파일의 노트는 ":value"를 포함하지 않습니다', - 'search_modifier_not_attachment_notes_starts' => '첨부 파일의 노트는 ":value"로 시작합니다', - 'search_modifier_not_attachment_notes_ends' => '첨부 파일의 노트는 ":value"로 끝나지 않습니다', - 'search_modifier_sepa_ct_is' => 'SEPA CT는 ":value"입니다', - 'update_rule_from_query' => '검색 쿼리에서 ":rule" 규칙 업데이트하기', - 'create_rule_from_query' => '검색 쿼리에서 새 규칙 만들기', - 'rule_from_search_words' => '규칙 엔진은 ":string"을 처리하는 데 어려움을 겪습니다. 검색 쿼리에 맞는 제안된 규칙이 다른 결과를 제공할 수 있습니다. 규칙 트리거를 주의 깊게 확인하세요.', + 'search_modifier_attachment_name_is' => '첨부 파일의 이름은 ":value"입니다', + 'search_modifier_attachment_name_contains' => '첨부 파일의 이름은 ":value"를 포함합니다', + 'search_modifier_attachment_name_starts' => '첨부 파일의 이름은 ":value"로 시작합니다', + 'search_modifier_attachment_name_ends' => '첨부 파일의 이름은 ":value"로 끝납니다', + 'search_modifier_attachment_notes_are' => '첨부 파일의 노트는 ":value"입니다', + 'search_modifier_attachment_notes_contains' => '첨부 파일의 노트는 ":value"를 포함합니다', + 'search_modifier_attachment_notes_starts' => '첨부 파일의 노트는 ":value"로 시작합니다', + 'search_modifier_attachment_notes_ends' => '첨부 파일의 노트는 ":value"로 끝납니다', + 'search_modifier_not_attachment_name_is' => '첨부 파일의 이름은 ":value"가 아닙니다', + 'search_modifier_not_attachment_name_contains' => '첨부 파일의 이름은 ":value"를 포함하지 않습니다', + 'search_modifier_not_attachment_name_starts' => '첨부 파일의 이름은 ":value"로 시작하지 않습니다', + 'search_modifier_not_attachment_name_ends' => '첨부 파일의 이름은 ":value"로 끝나지 않습니다', + 'search_modifier_not_attachment_notes_are' => '첨부 파일의 노트는 ":value"가 아닙니다', + 'search_modifier_not_attachment_notes_contains' => '첨부 파일의 노트는 ":value"를 포함하지 않습니다', + 'search_modifier_not_attachment_notes_starts' => '첨부 파일의 노트는 ":value"로 시작합니다', + 'search_modifier_not_attachment_notes_ends' => '첨부 파일의 노트는 ":value"로 끝나지 않습니다', + 'search_modifier_sepa_ct_is' => 'SEPA CT는 ":value"입니다', + 'update_rule_from_query' => '검색 쿼리에서 ":rule" 규칙 업데이트하기', + 'create_rule_from_query' => '검색 쿼리에서 새 규칙 만들기', + 'rule_from_search_words' => '규칙 엔진은 ":string"을 처리하는 데 어려움을 겪습니다. 검색 쿼리에 맞는 제안된 규칙이 다른 결과를 제공할 수 있습니다. 규칙 트리거를 주의 깊게 확인하세요.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => '다음 수정자는 검색에도 적용됩니다:', - 'general_search_error' => '검색하는 동안 오류가 발생했습니다. 자세한 내용은 로그 파일을 확인해 주세요.', - 'search_box' => '검색', - 'search_box_intro' => 'Firefly III의 검색 기능에 오신 것을 환영합니다. 상자에 검색어를 입력하세요. 검색은 복잡하기 때문에 도움말 파일을 확인하시기 바랍니다.', - 'search_error' => '검색 중 오류', - 'search_searching' => '검색중...', - 'search_results' => '검색 결과', + 'modifiers_applies_are' => '다음 수정자는 검색에도 적용됩니다:', + 'general_search_error' => '검색하는 동안 오류가 발생했습니다. 자세한 내용은 로그 파일을 확인해 주세요.', + 'search_box' => '검색', + 'search_box_intro' => 'Firefly III의 검색 기능에 오신 것을 환영합니다. 상자에 검색어를 입력하세요. 검색은 복잡하기 때문에 도움말 파일을 확인하시기 바랍니다.', + 'search_error' => '검색 중 오류', + 'search_searching' => '검색중...', + 'search_results' => '검색 결과', // repeat frequencies: - 'repeat_freq_yearly' => '연간', - 'repeat_freq_half-year' => '반년마다', - 'repeat_freq_quarterly' => '분기별', - 'repeat_freq_monthly' => '월간', - 'repeat_freq_weekly' => '주간', - 'repeat_freq_daily' => '일별', - 'daily' => '일별', - 'weekly' => '주간', - 'quarterly' => '분기별', - 'half-year' => '반년마다', - 'yearly' => '연간', + 'repeat_freq_yearly' => '연간', + 'repeat_freq_half-year' => '반년마다', + 'repeat_freq_quarterly' => '분기별', + 'repeat_freq_monthly' => '월간', + 'repeat_freq_weekly' => '주간', + 'repeat_freq_daily' => '일별', + 'daily' => '일별', + 'weekly' => '주간', + 'quarterly' => '분기별', + 'half-year' => '반년마다', + 'yearly' => '연간', // rules - 'is_not_rule_trigger' => '제외', - 'cannot_fire_inactive_rules' => '비활성 규칙을 실행할 수 없습니다.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => '규칙', - 'rule_name' => '규칙 이름', - 'rule_triggers' => '규칙이 트리거되는 경우', - 'rule_actions' => '규칙은 다음과 같습니다', - 'new_rule' => '새 규칙', - 'new_rule_group' => '새 규칙 그룹', - 'rule_priority_up' => '규칙 우선 순위 올림', - 'rule_priority_down' => '규칙 우선 순위 내림', - 'make_new_rule_group' => '새 규칙 그룹 만들기', - 'store_new_rule_group' => '새 규칙 그룹 저장', - 'created_new_rule_group' => '새 규칙 그룹 ":title"이(가) 저장되었습니다!', - 'updated_rule_group' => '":title" 규칙 그룹을 성공적으로 업데이트했습니다.', - 'edit_rule_group' => '":title" 규칙 그룹 수정', - 'duplicate_rule' => '중복 규칙 ":title"', - 'rule_copy_of' => '":title" 복사', - 'duplicated_rule' => '":title" 규칙을 ":newTitle"으로 복제했습니다', - 'delete_rule_group' => '규칙 그룹 ":title" 삭제', - 'deleted_rule_group' => '삭제된 규칙 그룹 ":title"', - 'update_rule_group' => '규칙 그룹 업데이트', - 'no_rules_in_group' => '이 그룹에는 규칙이 없습니다', - 'move_rule_group_up' => '규칙 그룹 위로 이동', - 'move_rule_group_down' => '규칙 그룹 아래로 이동', - 'save_rules_by_moving' => '이 규칙을 다른 규칙 그룹으로 이동하여 저장합니다:|이 규칙들을 다른 규칙 그룹으로 이동하여 저장합니다:', - 'make_new_rule' => '규칙 그룹 ":title"에서 새 규칙 만들기', - 'make_new_rule_no_group' => '새 규칙 만들기', - 'instructions_rule_from_bill' => '거래를 새 청구서 ":name"과 일치시키기 위해 Firefly III는 저장한 모든 거래에 대해 자동으로 확인되는 규칙을 생성할 수 있습니다. 아래 세부 정보를 확인하고 Firefly III가 거래를 새 청구서와 자동으로 일치시키도록 규칙을 저장하세요.', - 'instructions_rule_from_journal' => '거래 중 하나를 기반으로 규칙을 만듭니다. 아래 양식을 보완하거나 제출하세요.', - 'rule_is_strict' => '엄격한 규칙', - 'rule_is_not_strict' => '엄격하지 않은 규칙', - 'rule_help_stop_processing' => '이 확인란을 선택하면 나중에 이 그룹의 규칙이 실행되지 않습니다.', - 'rule_help_strict' => '엄격한 규칙은 모든 트리거가 실행되어야 액션이 실행됩니다. 엄격한 규칙이 아닌 경우, 하나의 트리거만 실행되더라도 액션이 실행될 수 있습니다.', - 'rule_help_active' => '비활성화된 규칙은 절대 실행되지 않습니다.', - 'stored_new_rule' => '제목 ":title"을 사용하여 새 규칙 저장', - 'deleted_rule' => '제목이 ":title"인 규칙을 삭제했습니다', - 'store_new_rule' => '새 규칙 저장', - 'updated_rule' => '제목 ":title"으로 규칙 업데이트', - 'default_rule_group_name' => '기본 규칙', - 'default_rule_group_description' => '특정 그룹에 속하지 않은 모든 규칙.', - 'trigger' => '트리거', - 'trigger_value' => '값 트리거', - 'stop_processing_other_triggers' => '다른 트리거 처리 중지', - 'add_rule_trigger' => '새 트리거 추가', - 'action' => '액션', - 'action_value' => '액션 값', - 'stop_executing_other_actions' => '다른 액션 실행 중지', - 'add_rule_action' => '새 액션 추가', - 'edit_rule' => '":title" 규칙 수정', - 'delete_rule' => '":title" 규칙 삭제', - 'update_rule' => '규칙 업데이트', - 'test_rule_triggers' => '일치하는 거래 보기', - 'warning_no_matching_transactions' => '일치하는 거래가 없습니다.', - 'warning_no_valid_triggers' => '유효한 트리거가 제공되지 않았습니다.', - 'apply_rule_selection' => '선택한 거래에 ":title" 규칙 적용', - 'apply_rule_selection_intro' => '":title"과 같은 규칙은 일반적으로 새 거래나 업데이트된 거래에만 적용되지만, 기존 거래 중 일부에 대해 이 규칙을 실행하도록 Firefly III에 지시할 수 있습니다. 이 기능은 규칙을 업데이트한 후 다른 모든 거래에 변경 사항을 적용해야 할 때 유용합니다.', - 'include_transactions_from_accounts' => '이 계정의 거래 포함', - 'include' => '포함되었나요?', - 'applied_rule_selection' => '{0} 선택 항목의 거래가 규칙 ":title"에 의해 변경되지 않았습니다.|[1] 선택 항목의 하나의 거래가 규칙 ":title"에 의해 변경되었습니다.|[2,*] 선택 항목의 :count개의 거래가 규칙 ":title"에 의해 변경되었습니다.', - 'execute' => '실행', - 'apply_rule_group_selection' => '선택한 거래에 규칙 그룹 ":title"을 적용합니다', - 'apply_rule_group_selection_intro' => '":title"과 같은 규칙 그룹은 일반적으로 새 거래나 업데이트된 거래에만 적용되지만, 기존 거래 중 일부에 대해 이 그룹의 모든 규칙을 실행하도록 Firefly III에 지시할 수 있습니다. 이 기능은 규칙 그룹을 업데이트하고 변경 사항을 다른 모든 거래에 적용해야 할 때 유용할 수 있습니다.', - 'applied_rule_group_selection' => '선택 항목에 규칙 그룹 ":title"이 적용되었습니다.', + 'is_not_rule_trigger' => '제외', + 'cannot_fire_inactive_rules' => '비활성 규칙을 실행할 수 없습니다.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => '규칙', + 'rule_name' => '규칙 이름', + 'rule_triggers' => '규칙이 트리거되는 경우', + 'rule_actions' => '규칙은 다음과 같습니다', + 'new_rule' => '새 규칙', + 'new_rule_group' => '새 규칙 그룹', + 'rule_priority_up' => '규칙 우선 순위 올림', + 'rule_priority_down' => '규칙 우선 순위 내림', + 'make_new_rule_group' => '새 규칙 그룹 만들기', + 'store_new_rule_group' => '새 규칙 그룹 저장', + 'created_new_rule_group' => '새 규칙 그룹 ":title"이(가) 저장되었습니다!', + 'updated_rule_group' => '":title" 규칙 그룹을 성공적으로 업데이트했습니다.', + 'edit_rule_group' => '":title" 규칙 그룹 수정', + 'duplicate_rule' => '중복 규칙 ":title"', + 'rule_copy_of' => '":title" 복사', + 'duplicated_rule' => '":title" 규칙을 ":newTitle"으로 복제했습니다', + 'delete_rule_group' => '규칙 그룹 ":title" 삭제', + 'deleted_rule_group' => '삭제된 규칙 그룹 ":title"', + 'update_rule_group' => '규칙 그룹 업데이트', + 'no_rules_in_group' => '이 그룹에는 규칙이 없습니다', + 'move_rule_group_up' => '규칙 그룹 위로 이동', + 'move_rule_group_down' => '규칙 그룹 아래로 이동', + 'save_rules_by_moving' => '이 규칙을 다른 규칙 그룹으로 이동하여 저장합니다:|이 규칙들을 다른 규칙 그룹으로 이동하여 저장합니다:', + 'make_new_rule' => '규칙 그룹 ":title"에서 새 규칙 만들기', + 'make_new_rule_no_group' => '새 규칙 만들기', + 'instructions_rule_from_bill' => '거래를 새 청구서 ":name"과 일치시키기 위해 Firefly III는 저장한 모든 거래에 대해 자동으로 확인되는 규칙을 생성할 수 있습니다. 아래 세부 정보를 확인하고 Firefly III가 거래를 새 청구서와 자동으로 일치시키도록 규칙을 저장하세요.', + 'instructions_rule_from_journal' => '거래 중 하나를 기반으로 규칙을 만듭니다. 아래 양식을 보완하거나 제출하세요.', + 'rule_is_strict' => '엄격한 규칙', + 'rule_is_not_strict' => '엄격하지 않은 규칙', + 'rule_help_stop_processing' => '이 확인란을 선택하면 나중에 이 그룹의 규칙이 실행되지 않습니다.', + 'rule_help_strict' => '엄격한 규칙은 모든 트리거가 실행되어야 액션이 실행됩니다. 엄격한 규칙이 아닌 경우, 하나의 트리거만 실행되더라도 액션이 실행될 수 있습니다.', + 'rule_help_active' => '비활성화된 규칙은 절대 실행되지 않습니다.', + 'stored_new_rule' => '제목 ":title"을 사용하여 새 규칙 저장', + 'deleted_rule' => '제목이 ":title"인 규칙을 삭제했습니다', + 'store_new_rule' => '새 규칙 저장', + 'updated_rule' => '제목 ":title"으로 규칙 업데이트', + 'default_rule_group_name' => '기본 규칙', + 'default_rule_group_description' => '특정 그룹에 속하지 않은 모든 규칙.', + 'trigger' => '트리거', + 'trigger_value' => '값 트리거', + 'stop_processing_other_triggers' => '다른 트리거 처리 중지', + 'add_rule_trigger' => '새 트리거 추가', + 'action' => '액션', + 'action_value' => '액션 값', + 'stop_executing_other_actions' => '다른 액션 실행 중지', + 'add_rule_action' => '새 액션 추가', + 'edit_rule' => '":title" 규칙 수정', + 'delete_rule' => '":title" 규칙 삭제', + 'update_rule' => '규칙 업데이트', + 'test_rule_triggers' => '일치하는 거래 보기', + 'warning_no_matching_transactions' => '일치하는 거래가 없습니다.', + 'warning_no_valid_triggers' => '유효한 트리거가 제공되지 않았습니다.', + 'apply_rule_selection' => '선택한 거래에 ":title" 규칙 적용', + 'apply_rule_selection_intro' => '":title"과 같은 규칙은 일반적으로 새 거래나 업데이트된 거래에만 적용되지만, 기존 거래 중 일부에 대해 이 규칙을 실행하도록 Firefly III에 지시할 수 있습니다. 이 기능은 규칙을 업데이트한 후 다른 모든 거래에 변경 사항을 적용해야 할 때 유용합니다.', + 'include_transactions_from_accounts' => '이 계정의 거래 포함', + 'include' => '포함되었나요?', + 'applied_rule_selection' => '{0} 선택 항목의 거래가 규칙 ":title"에 의해 변경되지 않았습니다.|[1] 선택 항목의 하나의 거래가 규칙 ":title"에 의해 변경되었습니다.|[2,*] 선택 항목의 :count개의 거래가 규칙 ":title"에 의해 변경되었습니다.', + 'execute' => '실행', + 'apply_rule_group_selection' => '선택한 거래에 규칙 그룹 ":title"을 적용합니다', + 'apply_rule_group_selection_intro' => '":title"과 같은 규칙 그룹은 일반적으로 새 거래나 업데이트된 거래에만 적용되지만, 기존 거래 중 일부에 대해 이 그룹의 모든 규칙을 실행하도록 Firefly III에 지시할 수 있습니다. 이 기능은 규칙 그룹을 업데이트하고 변경 사항을 다른 모든 거래에 적용해야 할 때 유용할 수 있습니다.', + 'applied_rule_group_selection' => '선택 항목에 규칙 그룹 ":title"이 적용되었습니다.', // actions and triggers - 'rule_trigger_store_journal' => '거래가 생성될 때', - 'rule_trigger_update_journal' => '거래가 업데이트될 때', - 'rule_trigger_user_action' => '사용자 액션은 ":trigger_value" 입니다', + 'rule_trigger_store_journal' => '거래가 생성될 때', + 'rule_trigger_update_journal' => '거래가 업데이트될 때', + 'rule_trigger_user_action' => '사용자 액션은 ":trigger_value" 입니다', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => '소스 계정 이름은 ...로 시작합니다.', - 'rule_trigger_source_account_starts' => '소스 계정 이름은 ":trigger_value"로 시작합니다', - 'rule_trigger_source_account_ends_choice' => '소스 계정 이름은 ...로 끝납니다.', - 'rule_trigger_source_account_ends' => '소스 계정 이름은 ":trigger_value"로 끝납니다', - 'rule_trigger_source_account_is_choice' => '소스 계정 이름은...', - 'rule_trigger_source_account_is' => '소스 계정 이름은 ":trigger_value"입니다', - 'rule_trigger_source_account_contains_choice' => '소스 계정 이름에는 다음이 포함됩니다.', - 'rule_trigger_source_account_contains' => '소스 계정 이름에 ":trigger_value"가 포함됩니다', - 'rule_trigger_account_id_choice' => '계정중 하나의 ID는 정확히..', - 'rule_trigger_account_id' => '계정중 하나의 ID가 정확히 :trigger_value와 일치합니다', - 'rule_trigger_source_account_id_choice' => '소스 계정 ID는 정확히..', - 'rule_trigger_source_account_id' => '소스 계정 ID가 정확히 :trigger_value와 일치합니다.', - 'rule_trigger_destination_account_id_choice' => '대상 계정 ID는 정확히..', - 'rule_trigger_destination_account_id' => '대상 계정 ID가 정확히 :trigger_value와 일치합니다.', - 'rule_trigger_account_is_cash_choice' => '계정중 하나는 현금입니다', - 'rule_trigger_account_is_cash' => '계정중 하나는 현금입니다', - 'rule_trigger_source_is_cash_choice' => '소스 계정은 (현금) 계정입니다', - 'rule_trigger_source_is_cash' => '소스 계정은 (현금) 계정입니다', - 'rule_trigger_destination_is_cash_choice' => '대상 계정은 (현금) 계정입니다', - 'rule_trigger_destination_is_cash' => '대상 계정은 (현금) 계정입니다', - 'rule_trigger_source_account_nr_starts_choice' => '소스 계좌 번호/IBAN은...로 시작합니다.', - 'rule_trigger_source_account_nr_starts' => '소스 계정 번호 / IBAN은 ":trigger_value"로 시작합니다', - 'rule_trigger_source_account_nr_ends_choice' => '소스 계정 번호 / IBAN은 ...로 끝납니다', - 'rule_trigger_source_account_nr_ends' => '소스 계정 번호 / IBAN은 ":trigger_value"로 끝납니다', - 'rule_trigger_source_account_nr_is_choice' => '소스 계정 번호 / IBAN은..', - 'rule_trigger_source_account_nr_is' => '소스 계정 번호 / IBAN은 ":trigger_value"입니다', - 'rule_trigger_source_account_nr_contains_choice' => '소스 계정 번호 / IBAN은 ..를 포함합니다', - 'rule_trigger_source_account_nr_contains' => '소스 계정 번호 / IBAN은 ":trigger_value"를 포함합니다', - 'rule_trigger_destination_account_starts_choice' => '대상 계정 이름은 ...로 시작합니다.', - 'rule_trigger_destination_account_starts' => '대상 계정 이름은 ":trigger_value"로 시작합니다', - 'rule_trigger_destination_account_ends_choice' => '대상 계정 이름은 ...로 끝납니다', - 'rule_trigger_destination_account_ends' => '대상 계정 이름은 ":trigger_value"로 끝납니다', - 'rule_trigger_destination_account_is_choice' => '대상 계정 이름은..', - 'rule_trigger_destination_account_is' => '대상 계정 이름은 ":trigger_value"입니다', - 'rule_trigger_destination_account_contains_choice' => '대상 계정 이름은 ...를 포함합니다', - 'rule_trigger_destination_account_contains' => '대상 계정 이름은 ":trigger_value"를 포함합니다', - 'rule_trigger_destination_account_nr_starts_choice' => '대상 계좌 번호 / IBAN은...로 시작합니다', - 'rule_trigger_destination_account_nr_starts' => '대상 계정 번호 / IBAN은 ":trigger_value"로 시작합니다', - 'rule_trigger_destination_account_nr_ends_choice' => '대상 계좌 번호 / IBAN은...로 끝납니다', - 'rule_trigger_destination_account_nr_ends' => '대상 계정 번호 / IBAN은 ":trigger_value"로 끝납니다', - 'rule_trigger_destination_account_nr_is_choice' => '대상 계정 번호 / IBAN은..', - 'rule_trigger_destination_account_nr_is' => '대상 계정 번호 / IBAN은 ":trigger_value"입니다', - 'rule_trigger_destination_account_nr_contains_choice' => '대상 계좌 번호 / IBAN은...를 포함합니다', - 'rule_trigger_destination_account_nr_contains' => '대상 계정 번호 / IBAN은 ":trigger_value"를 포함합니다', - 'rule_trigger_transaction_type_choice' => '거래는 .. 유형입니다', - 'rule_trigger_transaction_type' => '거래는 ":trigger_value" 유형입니다', - 'rule_trigger_category_is_choice' => '카테고리는 ..', - 'rule_trigger_category_is' => '카테고리는 ":trigger_value"입니다', - 'rule_trigger_amount_less_choice' => '금액이 .. 와 작거나 같음', - 'rule_trigger_amount_less' => '금액이 :trigger_value와 작거나 같음', - 'rule_trigger_amount_is_choice' => '금액은..', - 'rule_trigger_amount_is' => '금액은 :trigger_value입니다', - 'rule_trigger_amount_more_choice' => '금액이 .. 와 크거나 같음', - 'rule_trigger_amount_more' => '금액이 :trigger_value와 크거나 같음', - 'rule_trigger_description_starts_choice' => '설명이 ..로 시작합니다', - 'rule_trigger_description_starts' => '설명이 ":trigger_value"로 시작합니다', - 'rule_trigger_description_ends_choice' => '설명이 ..로 끝납니다', - 'rule_trigger_description_ends' => '설명이 ":trigger_value"로 끝납니다', - 'rule_trigger_description_contains_choice' => '설명은 ..를 포함합니다', - 'rule_trigger_description_contains' => '설명은 ":trigger_value"를 포함합니다', - 'rule_trigger_description_is_choice' => '설명은..', - 'rule_trigger_description_is' => '설명은 ":trigger_value"입니다', - 'rule_trigger_date_on_choice' => '거래 날짜는..', - 'rule_trigger_date_on' => '거래 날짜는 ":trigger_value"입니다', - 'rule_trigger_date_before_choice' => '거래 날짜는 .. 이전입니다', - 'rule_trigger_date_before' => '거래 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_date_after_choice' => '거래 날짜는 .. 이후입니다', - 'rule_trigger_date_after' => '거래 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_created_at_on_choice' => '거래가 이루어진 날짜는..', - 'rule_trigger_created_at_on' => '거래가 이루어진 날짜는 ":trigger_value"입니다', - 'rule_trigger_updated_at_on_choice' => '거래가 마지막으로 수정된 날짜는...', - 'rule_trigger_updated_at_on' => '거래가 마지막으로 수정된 날짜는 ":trigger_value"입니다', - 'rule_trigger_budget_is_choice' => '예산은..', - 'rule_trigger_budget_is' => '예산은 ":trigger_value"입니다', - 'rule_trigger_tag_is_choice' => '모든 태그는...', - 'rule_trigger_tag_is' => '모든 태그는 ":trigger_value"입니다', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => '거래 통화는..', - 'rule_trigger_currency_is' => '거래 통화는 ":trigger_value"입니다', - 'rule_trigger_foreign_currency_is_choice' => '거래 외화 통화는..', - 'rule_trigger_foreign_currency_is' => '거래 외화 통화는 ":trigger_value"입니다', - 'rule_trigger_has_attachments_choice' => '최소한 이 정도의 첨부 파일이 있습니다.', - 'rule_trigger_has_attachments' => '최소 :trigger_value개의 첨부 파일이 있음', - 'rule_trigger_has_no_category_choice' => '카테고리가 없음', - 'rule_trigger_has_no_category' => '거래에 카테고리가 없음', - 'rule_trigger_has_any_category_choice' => '카테고리가 있음', - 'rule_trigger_has_any_category' => '거래에 카테고리가 있음', - 'rule_trigger_has_no_budget_choice' => '예산이 없음', - 'rule_trigger_has_no_budget' => '거레에 예산이 없음', - 'rule_trigger_has_any_budget_choice' => '예산이 있음', - 'rule_trigger_has_any_budget' => '거래에 예산이 있음', - 'rule_trigger_has_no_bill_choice' => '청구서가 없음', - 'rule_trigger_has_no_bill' => '거레에 청구서가 없음', - 'rule_trigger_has_any_bill_choice' => '청구서가 있음', - 'rule_trigger_has_any_bill' => '거레에 청구서가 있음', - 'rule_trigger_has_no_tag_choice' => '태그 없음', - 'rule_trigger_has_no_tag' => '거래에 태그가 없음', - 'rule_trigger_has_any_tag_choice' => '하나 이상의 태그가 있음', - 'rule_trigger_has_any_tag' => '거래에 하나 이상의 태그가 있음', - 'rule_trigger_any_notes_choice' => '메모가 있음', - 'rule_trigger_any_notes' => '거래에 메모가 있음', - 'rule_trigger_no_notes_choice' => '메모가 없음', - 'rule_trigger_no_notes' => '거래에 메모가 없음', - 'rule_trigger_notes_is_choice' => '메모는..', - 'rule_trigger_notes_is' => '메모는 ":trigger_value" 입니다', - 'rule_trigger_notes_contains_choice' => '노트는 다음을 포함', - 'rule_trigger_notes_contains' => '노트는 ":trigger_value"를 포함', - 'rule_trigger_notes_starts_choice' => '노트는 다음으로 시작', - 'rule_trigger_notes_starts' => '노트는 ":trigger_value"로 시작', - 'rule_trigger_notes_ends_choice' => '노트는 다음으로 끝남', - 'rule_trigger_notes_ends' => '노트는 ":trigger_value"로 끝남', - 'rule_trigger_bill_is_choice' => '청구서는..', - 'rule_trigger_bill_is' => '청구서는 ":trigger_value"임', - 'rule_trigger_external_id_is_choice' => '외부 ID는..', - 'rule_trigger_external_id_is' => '외부 ID는 ":trigger_value"임', - 'rule_trigger_internal_reference_is_choice' => '내부 참조는..', - 'rule_trigger_internal_reference_is' => '내부 참조는 ":trigger_value"임', - 'rule_trigger_journal_id_choice' => '거래 저널 ID는..', - 'rule_trigger_journal_id' => '거래 저널 ID는 ":trigger_value"임', - 'rule_trigger_any_external_url' => '거래에 (어떤) 외부 URL이 있음', - 'rule_trigger_any_external_url_choice' => '거래에 (어떤) 외부 URL이 있음', - 'rule_trigger_any_external_id' => '거래에 (어떤) 외부 ID가 있음', - 'rule_trigger_any_external_id_choice' => '거래에 (어떤) 외부 ID가 있음', - 'rule_trigger_no_external_url_choice' => '거래에 외부 URL이 없습니다', - 'rule_trigger_no_external_url' => '거래에 외부 URL이 없습니다', - 'rule_trigger_no_external_id_choice' => '거래에 외부 ID가 없음', - 'rule_trigger_no_external_id' => '거래에 외부 ID가 없음', - 'rule_trigger_id_choice' => '거래 ID는..', - 'rule_trigger_id' => '거래 ID는 ":trigger_value"임', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT는..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT는 ":trigger_value"임', + 'rule_trigger_source_account_starts_choice' => '소스 계정 이름은 ...로 시작합니다.', + 'rule_trigger_source_account_starts' => '소스 계정 이름은 ":trigger_value"로 시작합니다', + 'rule_trigger_source_account_ends_choice' => '소스 계정 이름은 ...로 끝납니다.', + 'rule_trigger_source_account_ends' => '소스 계정 이름은 ":trigger_value"로 끝납니다', + 'rule_trigger_source_account_is_choice' => '소스 계정 이름은...', + 'rule_trigger_source_account_is' => '소스 계정 이름은 ":trigger_value"입니다', + 'rule_trigger_source_account_contains_choice' => '소스 계정 이름에는 다음이 포함됩니다.', + 'rule_trigger_source_account_contains' => '소스 계정 이름에 ":trigger_value"가 포함됩니다', + 'rule_trigger_account_id_choice' => '계정중 하나의 ID는 정확히..', + 'rule_trigger_account_id' => '계정중 하나의 ID가 정확히 :trigger_value와 일치합니다', + 'rule_trigger_source_account_id_choice' => '소스 계정 ID는 정확히..', + 'rule_trigger_source_account_id' => '소스 계정 ID가 정확히 :trigger_value와 일치합니다.', + 'rule_trigger_destination_account_id_choice' => '대상 계정 ID는 정확히..', + 'rule_trigger_destination_account_id' => '대상 계정 ID가 정확히 :trigger_value와 일치합니다.', + 'rule_trigger_account_is_cash_choice' => '계정중 하나는 현금입니다', + 'rule_trigger_account_is_cash' => '계정중 하나는 현금입니다', + 'rule_trigger_source_is_cash_choice' => '소스 계정은 (현금) 계정입니다', + 'rule_trigger_source_is_cash' => '소스 계정은 (현금) 계정입니다', + 'rule_trigger_destination_is_cash_choice' => '대상 계정은 (현금) 계정입니다', + 'rule_trigger_destination_is_cash' => '대상 계정은 (현금) 계정입니다', + 'rule_trigger_source_account_nr_starts_choice' => '소스 계좌 번호/IBAN은...로 시작합니다.', + 'rule_trigger_source_account_nr_starts' => '소스 계정 번호 / IBAN은 ":trigger_value"로 시작합니다', + 'rule_trigger_source_account_nr_ends_choice' => '소스 계정 번호 / IBAN은 ...로 끝납니다', + 'rule_trigger_source_account_nr_ends' => '소스 계정 번호 / IBAN은 ":trigger_value"로 끝납니다', + 'rule_trigger_source_account_nr_is_choice' => '소스 계정 번호 / IBAN은..', + 'rule_trigger_source_account_nr_is' => '소스 계정 번호 / IBAN은 ":trigger_value"입니다', + 'rule_trigger_source_account_nr_contains_choice' => '소스 계정 번호 / IBAN은 ..를 포함합니다', + 'rule_trigger_source_account_nr_contains' => '소스 계정 번호 / IBAN은 ":trigger_value"를 포함합니다', + 'rule_trigger_destination_account_starts_choice' => '대상 계정 이름은 ...로 시작합니다.', + 'rule_trigger_destination_account_starts' => '대상 계정 이름은 ":trigger_value"로 시작합니다', + 'rule_trigger_destination_account_ends_choice' => '대상 계정 이름은 ...로 끝납니다', + 'rule_trigger_destination_account_ends' => '대상 계정 이름은 ":trigger_value"로 끝납니다', + 'rule_trigger_destination_account_is_choice' => '대상 계정 이름은..', + 'rule_trigger_destination_account_is' => '대상 계정 이름은 ":trigger_value"입니다', + 'rule_trigger_destination_account_contains_choice' => '대상 계정 이름은 ...를 포함합니다', + 'rule_trigger_destination_account_contains' => '대상 계정 이름은 ":trigger_value"를 포함합니다', + 'rule_trigger_destination_account_nr_starts_choice' => '대상 계좌 번호 / IBAN은...로 시작합니다', + 'rule_trigger_destination_account_nr_starts' => '대상 계정 번호 / IBAN은 ":trigger_value"로 시작합니다', + 'rule_trigger_destination_account_nr_ends_choice' => '대상 계좌 번호 / IBAN은...로 끝납니다', + 'rule_trigger_destination_account_nr_ends' => '대상 계정 번호 / IBAN은 ":trigger_value"로 끝납니다', + 'rule_trigger_destination_account_nr_is_choice' => '대상 계정 번호 / IBAN은..', + 'rule_trigger_destination_account_nr_is' => '대상 계정 번호 / IBAN은 ":trigger_value"입니다', + 'rule_trigger_destination_account_nr_contains_choice' => '대상 계좌 번호 / IBAN은...를 포함합니다', + 'rule_trigger_destination_account_nr_contains' => '대상 계정 번호 / IBAN은 ":trigger_value"를 포함합니다', + 'rule_trigger_transaction_type_choice' => '거래는 .. 유형입니다', + 'rule_trigger_transaction_type' => '거래는 ":trigger_value" 유형입니다', + 'rule_trigger_category_is_choice' => '카테고리는 ..', + 'rule_trigger_category_is' => '카테고리는 ":trigger_value"입니다', + 'rule_trigger_amount_less_choice' => '금액이 .. 와 작거나 같음', + 'rule_trigger_amount_less' => '금액이 :trigger_value와 작거나 같음', + 'rule_trigger_amount_is_choice' => '금액은..', + 'rule_trigger_amount_is' => '금액은 :trigger_value입니다', + 'rule_trigger_amount_more_choice' => '금액이 .. 와 크거나 같음', + 'rule_trigger_amount_more' => '금액이 :trigger_value와 크거나 같음', + 'rule_trigger_description_starts_choice' => '설명이 ..로 시작합니다', + 'rule_trigger_description_starts' => '설명이 ":trigger_value"로 시작합니다', + 'rule_trigger_description_ends_choice' => '설명이 ..로 끝납니다', + 'rule_trigger_description_ends' => '설명이 ":trigger_value"로 끝납니다', + 'rule_trigger_description_contains_choice' => '설명은 ..를 포함합니다', + 'rule_trigger_description_contains' => '설명은 ":trigger_value"를 포함합니다', + 'rule_trigger_description_is_choice' => '설명은..', + 'rule_trigger_description_is' => '설명은 ":trigger_value"입니다', + 'rule_trigger_date_on_choice' => '거래 날짜는..', + 'rule_trigger_date_on' => '거래 날짜는 ":trigger_value"입니다', + 'rule_trigger_date_before_choice' => '거래 날짜는 .. 이전입니다', + 'rule_trigger_date_before' => '거래 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_date_after_choice' => '거래 날짜는 .. 이후입니다', + 'rule_trigger_date_after' => '거래 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_created_at_on_choice' => '거래가 이루어진 날짜는..', + 'rule_trigger_created_at_on' => '거래가 이루어진 날짜는 ":trigger_value"입니다', + 'rule_trigger_updated_at_on_choice' => '거래가 마지막으로 수정된 날짜는...', + 'rule_trigger_updated_at_on' => '거래가 마지막으로 수정된 날짜는 ":trigger_value"입니다', + 'rule_trigger_budget_is_choice' => '예산은..', + 'rule_trigger_budget_is' => '예산은 ":trigger_value"입니다', + 'rule_trigger_tag_is_choice' => '모든 태그는...', + 'rule_trigger_tag_is' => '모든 태그는 ":trigger_value"입니다', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => '거래 통화는..', + 'rule_trigger_currency_is' => '거래 통화는 ":trigger_value"입니다', + 'rule_trigger_foreign_currency_is_choice' => '거래 외화 통화는..', + 'rule_trigger_foreign_currency_is' => '거래 외화 통화는 ":trigger_value"입니다', + 'rule_trigger_has_attachments_choice' => '최소한 이 정도의 첨부 파일이 있습니다.', + 'rule_trigger_has_attachments' => '최소 :trigger_value개의 첨부 파일이 있음', + 'rule_trigger_has_no_category_choice' => '카테고리가 없음', + 'rule_trigger_has_no_category' => '거래에 카테고리가 없음', + 'rule_trigger_has_any_category_choice' => '카테고리가 있음', + 'rule_trigger_has_any_category' => '거래에 카테고리가 있음', + 'rule_trigger_has_no_budget_choice' => '예산이 없음', + 'rule_trigger_has_no_budget' => '거레에 예산이 없음', + 'rule_trigger_has_any_budget_choice' => '예산이 있음', + 'rule_trigger_has_any_budget' => '거래에 예산이 있음', + 'rule_trigger_has_no_bill_choice' => '청구서가 없음', + 'rule_trigger_has_no_bill' => '거레에 청구서가 없음', + 'rule_trigger_has_any_bill_choice' => '청구서가 있음', + 'rule_trigger_has_any_bill' => '거레에 청구서가 있음', + 'rule_trigger_has_no_tag_choice' => '태그 없음', + 'rule_trigger_has_no_tag' => '거래에 태그가 없음', + 'rule_trigger_has_any_tag_choice' => '하나 이상의 태그가 있음', + 'rule_trigger_has_any_tag' => '거래에 하나 이상의 태그가 있음', + 'rule_trigger_any_notes_choice' => '메모가 있음', + 'rule_trigger_any_notes' => '거래에 메모가 있음', + 'rule_trigger_no_notes_choice' => '메모가 없음', + 'rule_trigger_no_notes' => '거래에 메모가 없음', + 'rule_trigger_notes_is_choice' => '메모는..', + 'rule_trigger_notes_is' => '메모는 ":trigger_value" 입니다', + 'rule_trigger_notes_contains_choice' => '노트는 다음을 포함', + 'rule_trigger_notes_contains' => '노트는 ":trigger_value"를 포함', + 'rule_trigger_notes_starts_choice' => '노트는 다음으로 시작', + 'rule_trigger_notes_starts' => '노트는 ":trigger_value"로 시작', + 'rule_trigger_notes_ends_choice' => '노트는 다음으로 끝남', + 'rule_trigger_notes_ends' => '노트는 ":trigger_value"로 끝남', + 'rule_trigger_bill_is_choice' => '청구서는..', + 'rule_trigger_bill_is' => '청구서는 ":trigger_value"임', + 'rule_trigger_external_id_is_choice' => '외부 ID는..', + 'rule_trigger_external_id_is' => '외부 ID는 ":trigger_value"임', + 'rule_trigger_internal_reference_is_choice' => '내부 참조는..', + 'rule_trigger_internal_reference_is' => '내부 참조는 ":trigger_value"임', + 'rule_trigger_journal_id_choice' => '거래 저널 ID는..', + 'rule_trigger_journal_id' => '거래 저널 ID는 ":trigger_value"임', + 'rule_trigger_any_external_url' => '거래에 (어떤) 외부 URL이 있음', + 'rule_trigger_any_external_url_choice' => '거래에 (어떤) 외부 URL이 있음', + 'rule_trigger_any_external_id' => '거래에 (어떤) 외부 ID가 있음', + 'rule_trigger_any_external_id_choice' => '거래에 (어떤) 외부 ID가 있음', + 'rule_trigger_no_external_url_choice' => '거래에 외부 URL이 없습니다', + 'rule_trigger_no_external_url' => '거래에 외부 URL이 없습니다', + 'rule_trigger_no_external_id_choice' => '거래에 외부 ID가 없음', + 'rule_trigger_no_external_id' => '거래에 외부 ID가 없음', + 'rule_trigger_id_choice' => '거래 ID는..', + 'rule_trigger_id' => '거래 ID는 ":trigger_value"임', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT는..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT는 ":trigger_value"임', // new values: - 'rule_trigger_user_action_choice' => '사용자 액션은 ":trigger_value" 입니다', - 'rule_trigger_tag_is_not_choice' => '태그가 없습니다.', - 'rule_trigger_tag_is_not' => '":trigger_value" 태그가 없습니다', - 'rule_trigger_account_is_choice' => '계정중 하나는 정확히 .. 입니다', - 'rule_trigger_account_is' => '계정중 하나는 정확히 ":trigger_value"입니다', - 'rule_trigger_account_contains_choice' => '계정중 하나는 ..를 포함합니다', - 'rule_trigger_account_contains' => '계정중 하나는 ":trigger_value"를 포함합니다', - 'rule_trigger_account_ends_choice' => '계정중 하나는 ..로 끝납니다', - 'rule_trigger_account_ends' => '계정중 하나는 ":trigger_value"로 끝납니다', - 'rule_trigger_account_starts_choice' => '계정중 하나는 ..로 시작합니다', - 'rule_trigger_account_starts' => '계정중 하나는 ":trigger_value"로 시작합니다', - 'rule_trigger_account_nr_is_choice' => '계정 번호 / IBAN 중 하나는 .. 입니다', - 'rule_trigger_account_nr_is' => '계정 번호 / IBAN 중 하나는 ":trigger_value"입니다', - 'rule_trigger_account_nr_contains_choice' => '계정 번호 / IBAN 중 하나는 ..를 포함합니다', - 'rule_trigger_account_nr_contains' => '계정 번호 / IBAN 중 하나는 ":trigger_value"를 포함합니다', - 'rule_trigger_account_nr_ends_choice' => '계정 번호 / IBAN 중 하나가 ..로 끝납니다', - 'rule_trigger_account_nr_ends' => '계정 번호 / IBAN 중 하나가 ":trigger_value"로 끝납니다', - 'rule_trigger_account_nr_starts_choice' => '계정 번호 / IBAN 중 하나가 ..로 시작합니다', - 'rule_trigger_account_nr_starts' => '계정 번호 / IBAN 중 하나가 ":trigger_value"로 시작합니다', - 'rule_trigger_category_contains_choice' => '카테고리는 ..를 포함합니다', - 'rule_trigger_category_contains' => '카테고리는 ":trigger_value"를 포함합니다', - 'rule_trigger_category_ends_choice' => '카테고리는 ..로 끝납니다', - 'rule_trigger_category_ends' => '카테고리는 ":trigger_value"로 끝납니다', - 'rule_trigger_category_starts_choice' => '카테고리는 ..로 시작합니다', - 'rule_trigger_category_starts' => '카테고리는 ":trigger_value"로 시작합니다', - 'rule_trigger_budget_contains_choice' => '예산은 ..를 포함합니다', - 'rule_trigger_budget_contains' => '예산은 ":trigger_value"를 포함합니다', - 'rule_trigger_budget_ends_choice' => '예산은 ..로 끝납니다', - 'rule_trigger_budget_ends' => '예산은 ":trigger_value"로 끝납니다', - 'rule_trigger_budget_starts_choice' => '예산은 ..로 시작합니다', - 'rule_trigger_budget_starts' => '예산은 ":trigger_value"로 시작합니다', - 'rule_trigger_bill_contains_choice' => '청구서는 ..를 포함합니다', - 'rule_trigger_bill_contains' => '청구서는 ":trigger_value"를 포함합니다', - 'rule_trigger_bill_ends_choice' => '청구서는 ..로 끝납니다', - 'rule_trigger_bill_ends' => '청구서는 ":trigger_value"로 끝납니다', - 'rule_trigger_bill_starts_choice' => '청구서는 ..로 시작합니다', - 'rule_trigger_bill_starts' => '청구서는 ":trigger_value"로 시작합니다', - 'rule_trigger_external_id_contains_choice' => '외부 ID는 ..를 포함합니다', - 'rule_trigger_external_id_contains' => '외부 ID는 ":trigger_value"를 포함합니다', - 'rule_trigger_external_id_ends_choice' => '외부 ID는 ..로 끝납니다', - 'rule_trigger_external_id_ends' => '외부 ID는 ":trigger_value"로 끝납니다', - 'rule_trigger_external_id_starts_choice' => '외부 ID는 ..로 시작합니다', - 'rule_trigger_external_id_starts' => '외부 ID는 ":trigger_value"로 시작합니다', - 'rule_trigger_internal_reference_contains_choice' => '내부 참조는 ..를 포함합니다', - 'rule_trigger_internal_reference_contains' => '내부 참조는 ":trigger_value"를 포함합니다', - 'rule_trigger_internal_reference_ends_choice' => '내부 참조는 ..로 끝납니다', - 'rule_trigger_internal_reference_ends' => '내부 참조는 ":trigger_value"로 끝납니다', - 'rule_trigger_internal_reference_starts_choice' => '내부 참조는 ..로 시작합니다', - 'rule_trigger_internal_reference_starts' => '내부 참조는 ":trigger_value"로 시작합니다', - 'rule_trigger_external_url_is_choice' => '외부 URL은 ..입니다', - 'rule_trigger_external_url_is' => '외부 URL은 ":trigger_value"입니다', - 'rule_trigger_external_url_contains_choice' => '외부 URL은 ..를 포함합니다', - 'rule_trigger_external_url_contains' => '외부 URL은 ":trigger_value"를 포함합니다', - 'rule_trigger_external_url_ends_choice' => '외부 URL은 ..로 끝납니다', - 'rule_trigger_external_url_ends' => '외부 URL은 ":trigger_value"로 끝납니다', - 'rule_trigger_external_url_starts_choice' => '외부 URL은 ..로 시작합니다', - 'rule_trigger_external_url_starts' => '외부 URL은 ":trigger_value"로 시작합니다', - 'rule_trigger_has_no_attachments_choice' => '첨부 파일이 없음', - 'rule_trigger_has_no_attachments' => '거래에 첨부 파일이 없음', - 'rule_trigger_recurrence_id_choice' => '반복 거래 ID는 ..입니다', - 'rule_trigger_recurrence_id' => '반복 거래 ID는 ":trigger_value"입니다', - 'rule_trigger_interest_date_on_choice' => '이자 날짜는 .. 입니다', - 'rule_trigger_interest_date_on' => '이자 날짜는 ":trigger_value"입니다', - 'rule_trigger_interest_date_before_choice' => '이자 날짜는 .. 이전입니다', - 'rule_trigger_interest_date_before' => '이자 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_interest_date_after_choice' => '이자 날짜는 .. 이후입니다', - 'rule_trigger_interest_date_after' => '이자 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_book_date_on_choice' => '예약 날짜는 .. 입니다', - 'rule_trigger_book_date_on' => '예약 날짜는 ":trigger_value" 입니다', - 'rule_trigger_book_date_before_choice' => '예약 날짜는 .. 이전입니다', - 'rule_trigger_book_date_before' => '예약 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_book_date_after_choice' => '예약 날짜는 .. 이후입니다', - 'rule_trigger_book_date_after' => '예약 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_process_date_on_choice' => '처리 날짜는 .. 입니다', - 'rule_trigger_process_date_on' => '처리 날짜는 ":trigger_value"입니다', - 'rule_trigger_process_date_before_choice' => '처리 날짜는 .. 이전입니다', - 'rule_trigger_process_date_before' => '처리 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_process_date_after_choice' => '처리 날짜는 .. 이후입니다', - 'rule_trigger_process_date_after' => '처리 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_due_date_on_choice' => '마감 날짜는 .. 입니다', - 'rule_trigger_due_date_on' => '마감 날짜는 ":trigger_value" 입니다', - 'rule_trigger_due_date_before_choice' => '마감 날짜는 .. 이전입니다', - 'rule_trigger_due_date_before' => '마감 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_due_date_after_choice' => '마감 날짜는 .. 이후입니다', - 'rule_trigger_due_date_after' => '마감 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_payment_date_on_choice' => '결제 날짜는 .. 입니다', - 'rule_trigger_payment_date_on' => '결제 날짜는 ":trigger_value"입니다', - 'rule_trigger_payment_date_before_choice' => '결제 날짜는 .. 이전입니다', - 'rule_trigger_payment_date_before' => '결제 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_payment_date_after_choice' => '결제 날짜는 .. 이후입니다', - 'rule_trigger_payment_date_after' => '결제 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_invoice_date_on_choice' => '송장 날짜는 .. 입니다', - 'rule_trigger_invoice_date_on' => '송장 날짜는 ":trigger_value"입니다', - 'rule_trigger_invoice_date_before_choice' => '송장 날짜는 .. 이전입니다', - 'rule_trigger_invoice_date_before' => '송장 날짜는 ":trigger_value" 이전입니다', - 'rule_trigger_invoice_date_after_choice' => '송장 날짜는 .. 이후입니다', - 'rule_trigger_invoice_date_after' => '송장 날짜는 ":trigger_value" 이후입니다', - 'rule_trigger_created_at_before_choice' => '.. 이전에 거래가 생성되었습니다', - 'rule_trigger_created_at_before' => '":trigger_value" 이전에 거래가 생성되었습니다', - 'rule_trigger_created_at_after_choice' => '.. 이후에 거래가 생성되었습니다', - 'rule_trigger_created_at_after' => '":trigger_value" 이후에 거래가 생성되었습니다', - 'rule_trigger_updated_at_before_choice' => '.. 이전에 거래가 마지막으로 업데이트되었습니다', - 'rule_trigger_updated_at_before' => '":trigger_value" 이전에 거래가 마지막으로 업데이트되었습니다', - 'rule_trigger_updated_at_after_choice' => '.. 이후에 거래가 마지막으로 업데이트되었습니다', - 'rule_trigger_updated_at_after' => '":trigger_value" 이후에 거래가 마지막으로 업데이트되었습니다', - 'rule_trigger_foreign_amount_is_choice' => '외화 금액은 정확히 ..입니다', - 'rule_trigger_foreign_amount_is' => '외화 금액은 정확히 ":trigger_value"입니다', - 'rule_trigger_foreign_amount_less_choice' => '외화 금액은 .. 보다 작습니다', - 'rule_trigger_foreign_amount_less' => '외화 금액은 ":trigger_value" 보다 작습니다', - 'rule_trigger_foreign_amount_more_choice' => '외화 금액은 .. 보다 큽니다', - 'rule_trigger_foreign_amount_more' => '외화 금액은 ":trigger_value" 보다 큽니다', - 'rule_trigger_attachment_name_is_choice' => '첨부 파일의 이름은 ..', - 'rule_trigger_attachment_name_is' => '첨부 파일의 이름은 ":trigger_value"입니다', - 'rule_trigger_attachment_name_contains_choice' => '첨부 파일의 이름은 ..를 포함합니다', - 'rule_trigger_attachment_name_contains' => '첨부 파일의 이름은 ":trigger_value"를 포함합니다', - 'rule_trigger_attachment_name_starts_choice' => '첨부 파일의 이름은 ..로 시작합니다', - 'rule_trigger_attachment_name_starts' => '첨부 파일의 이름은 ":trigger_value"로 시작합니다', - 'rule_trigger_attachment_name_ends_choice' => '첨부 파일의 이름은 ..로 끝납니다', - 'rule_trigger_attachment_name_ends' => '첨부 파일의 이름은 ":trigger_value"로 끝납니다', - 'rule_trigger_attachment_notes_are_choice' => '첨부 파일의 노트는 ..', - 'rule_trigger_attachment_notes_are' => '첨부 파일의 노트는 ":trigger_value"입니다', - 'rule_trigger_attachment_notes_contains_choice' => '첨부 파일의 노트는 ..를 포함합니다', - 'rule_trigger_attachment_notes_contains' => '첨부 파일의 노트는 ":trigger_value"를 포함합니다', - 'rule_trigger_attachment_notes_starts_choice' => '첨부 파일의 노트는 ..로 시작합니다', - 'rule_trigger_attachment_notes_starts' => '첨부 파일의 노트는 ":trigger_value"로 시작합니다', - 'rule_trigger_attachment_notes_ends_choice' => '첨부 파일의 노트는 ..로 끝납니다', - 'rule_trigger_attachment_notes_ends' => '첨부 파일의 노트는 ":trigger_value"로 끝납니다', - 'rule_trigger_reconciled_choice' => '거래가 조정됨', - 'rule_trigger_reconciled' => '거래가 조정됨', - 'rule_trigger_exists_choice' => '모든 거래 일치(!)', - 'rule_trigger_exists' => '모든 거래 일치', + 'rule_trigger_user_action_choice' => '사용자 액션은 ":trigger_value" 입니다', + 'rule_trigger_tag_is_not_choice' => '태그가 없습니다.', + 'rule_trigger_tag_is_not' => '":trigger_value" 태그가 없습니다', + 'rule_trigger_account_is_choice' => '계정중 하나는 정확히 .. 입니다', + 'rule_trigger_account_is' => '계정중 하나는 정확히 ":trigger_value"입니다', + 'rule_trigger_account_contains_choice' => '계정중 하나는 ..를 포함합니다', + 'rule_trigger_account_contains' => '계정중 하나는 ":trigger_value"를 포함합니다', + 'rule_trigger_account_ends_choice' => '계정중 하나는 ..로 끝납니다', + 'rule_trigger_account_ends' => '계정중 하나는 ":trigger_value"로 끝납니다', + 'rule_trigger_account_starts_choice' => '계정중 하나는 ..로 시작합니다', + 'rule_trigger_account_starts' => '계정중 하나는 ":trigger_value"로 시작합니다', + 'rule_trigger_account_nr_is_choice' => '계정 번호 / IBAN 중 하나는 .. 입니다', + 'rule_trigger_account_nr_is' => '계정 번호 / IBAN 중 하나는 ":trigger_value"입니다', + 'rule_trigger_account_nr_contains_choice' => '계정 번호 / IBAN 중 하나는 ..를 포함합니다', + 'rule_trigger_account_nr_contains' => '계정 번호 / IBAN 중 하나는 ":trigger_value"를 포함합니다', + 'rule_trigger_account_nr_ends_choice' => '계정 번호 / IBAN 중 하나가 ..로 끝납니다', + 'rule_trigger_account_nr_ends' => '계정 번호 / IBAN 중 하나가 ":trigger_value"로 끝납니다', + 'rule_trigger_account_nr_starts_choice' => '계정 번호 / IBAN 중 하나가 ..로 시작합니다', + 'rule_trigger_account_nr_starts' => '계정 번호 / IBAN 중 하나가 ":trigger_value"로 시작합니다', + 'rule_trigger_category_contains_choice' => '카테고리는 ..를 포함합니다', + 'rule_trigger_category_contains' => '카테고리는 ":trigger_value"를 포함합니다', + 'rule_trigger_category_ends_choice' => '카테고리는 ..로 끝납니다', + 'rule_trigger_category_ends' => '카테고리는 ":trigger_value"로 끝납니다', + 'rule_trigger_category_starts_choice' => '카테고리는 ..로 시작합니다', + 'rule_trigger_category_starts' => '카테고리는 ":trigger_value"로 시작합니다', + 'rule_trigger_budget_contains_choice' => '예산은 ..를 포함합니다', + 'rule_trigger_budget_contains' => '예산은 ":trigger_value"를 포함합니다', + 'rule_trigger_budget_ends_choice' => '예산은 ..로 끝납니다', + 'rule_trigger_budget_ends' => '예산은 ":trigger_value"로 끝납니다', + 'rule_trigger_budget_starts_choice' => '예산은 ..로 시작합니다', + 'rule_trigger_budget_starts' => '예산은 ":trigger_value"로 시작합니다', + 'rule_trigger_bill_contains_choice' => '청구서는 ..를 포함합니다', + 'rule_trigger_bill_contains' => '청구서는 ":trigger_value"를 포함합니다', + 'rule_trigger_bill_ends_choice' => '청구서는 ..로 끝납니다', + 'rule_trigger_bill_ends' => '청구서는 ":trigger_value"로 끝납니다', + 'rule_trigger_bill_starts_choice' => '청구서는 ..로 시작합니다', + 'rule_trigger_bill_starts' => '청구서는 ":trigger_value"로 시작합니다', + 'rule_trigger_external_id_contains_choice' => '외부 ID는 ..를 포함합니다', + 'rule_trigger_external_id_contains' => '외부 ID는 ":trigger_value"를 포함합니다', + 'rule_trigger_external_id_ends_choice' => '외부 ID는 ..로 끝납니다', + 'rule_trigger_external_id_ends' => '외부 ID는 ":trigger_value"로 끝납니다', + 'rule_trigger_external_id_starts_choice' => '외부 ID는 ..로 시작합니다', + 'rule_trigger_external_id_starts' => '외부 ID는 ":trigger_value"로 시작합니다', + 'rule_trigger_internal_reference_contains_choice' => '내부 참조는 ..를 포함합니다', + 'rule_trigger_internal_reference_contains' => '내부 참조는 ":trigger_value"를 포함합니다', + 'rule_trigger_internal_reference_ends_choice' => '내부 참조는 ..로 끝납니다', + 'rule_trigger_internal_reference_ends' => '내부 참조는 ":trigger_value"로 끝납니다', + 'rule_trigger_internal_reference_starts_choice' => '내부 참조는 ..로 시작합니다', + 'rule_trigger_internal_reference_starts' => '내부 참조는 ":trigger_value"로 시작합니다', + 'rule_trigger_external_url_is_choice' => '외부 URL은 ..입니다', + 'rule_trigger_external_url_is' => '외부 URL은 ":trigger_value"입니다', + 'rule_trigger_external_url_contains_choice' => '외부 URL은 ..를 포함합니다', + 'rule_trigger_external_url_contains' => '외부 URL은 ":trigger_value"를 포함합니다', + 'rule_trigger_external_url_ends_choice' => '외부 URL은 ..로 끝납니다', + 'rule_trigger_external_url_ends' => '외부 URL은 ":trigger_value"로 끝납니다', + 'rule_trigger_external_url_starts_choice' => '외부 URL은 ..로 시작합니다', + 'rule_trigger_external_url_starts' => '외부 URL은 ":trigger_value"로 시작합니다', + 'rule_trigger_has_no_attachments_choice' => '첨부 파일이 없음', + 'rule_trigger_has_no_attachments' => '거래에 첨부 파일이 없음', + 'rule_trigger_recurrence_id_choice' => '반복 거래 ID는 ..입니다', + 'rule_trigger_recurrence_id' => '반복 거래 ID는 ":trigger_value"입니다', + 'rule_trigger_interest_date_on_choice' => '이자 날짜는 .. 입니다', + 'rule_trigger_interest_date_on' => '이자 날짜는 ":trigger_value"입니다', + 'rule_trigger_interest_date_before_choice' => '이자 날짜는 .. 이전입니다', + 'rule_trigger_interest_date_before' => '이자 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_interest_date_after_choice' => '이자 날짜는 .. 이후입니다', + 'rule_trigger_interest_date_after' => '이자 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_book_date_on_choice' => '예약 날짜는 .. 입니다', + 'rule_trigger_book_date_on' => '예약 날짜는 ":trigger_value" 입니다', + 'rule_trigger_book_date_before_choice' => '예약 날짜는 .. 이전입니다', + 'rule_trigger_book_date_before' => '예약 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_book_date_after_choice' => '예약 날짜는 .. 이후입니다', + 'rule_trigger_book_date_after' => '예약 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_process_date_on_choice' => '처리 날짜는 .. 입니다', + 'rule_trigger_process_date_on' => '처리 날짜는 ":trigger_value"입니다', + 'rule_trigger_process_date_before_choice' => '처리 날짜는 .. 이전입니다', + 'rule_trigger_process_date_before' => '처리 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_process_date_after_choice' => '처리 날짜는 .. 이후입니다', + 'rule_trigger_process_date_after' => '처리 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_due_date_on_choice' => '마감 날짜는 .. 입니다', + 'rule_trigger_due_date_on' => '마감 날짜는 ":trigger_value" 입니다', + 'rule_trigger_due_date_before_choice' => '마감 날짜는 .. 이전입니다', + 'rule_trigger_due_date_before' => '마감 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_due_date_after_choice' => '마감 날짜는 .. 이후입니다', + 'rule_trigger_due_date_after' => '마감 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_payment_date_on_choice' => '결제 날짜는 .. 입니다', + 'rule_trigger_payment_date_on' => '결제 날짜는 ":trigger_value"입니다', + 'rule_trigger_payment_date_before_choice' => '결제 날짜는 .. 이전입니다', + 'rule_trigger_payment_date_before' => '결제 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_payment_date_after_choice' => '결제 날짜는 .. 이후입니다', + 'rule_trigger_payment_date_after' => '결제 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_invoice_date_on_choice' => '송장 날짜는 .. 입니다', + 'rule_trigger_invoice_date_on' => '송장 날짜는 ":trigger_value"입니다', + 'rule_trigger_invoice_date_before_choice' => '송장 날짜는 .. 이전입니다', + 'rule_trigger_invoice_date_before' => '송장 날짜는 ":trigger_value" 이전입니다', + 'rule_trigger_invoice_date_after_choice' => '송장 날짜는 .. 이후입니다', + 'rule_trigger_invoice_date_after' => '송장 날짜는 ":trigger_value" 이후입니다', + 'rule_trigger_created_at_before_choice' => '.. 이전에 거래가 생성되었습니다', + 'rule_trigger_created_at_before' => '":trigger_value" 이전에 거래가 생성되었습니다', + 'rule_trigger_created_at_after_choice' => '.. 이후에 거래가 생성되었습니다', + 'rule_trigger_created_at_after' => '":trigger_value" 이후에 거래가 생성되었습니다', + 'rule_trigger_updated_at_before_choice' => '.. 이전에 거래가 마지막으로 업데이트되었습니다', + 'rule_trigger_updated_at_before' => '":trigger_value" 이전에 거래가 마지막으로 업데이트되었습니다', + 'rule_trigger_updated_at_after_choice' => '.. 이후에 거래가 마지막으로 업데이트되었습니다', + 'rule_trigger_updated_at_after' => '":trigger_value" 이후에 거래가 마지막으로 업데이트되었습니다', + 'rule_trigger_foreign_amount_is_choice' => '외화 금액은 정확히 ..입니다', + 'rule_trigger_foreign_amount_is' => '외화 금액은 정확히 ":trigger_value"입니다', + 'rule_trigger_foreign_amount_less_choice' => '외화 금액은 .. 보다 작습니다', + 'rule_trigger_foreign_amount_less' => '외화 금액은 ":trigger_value" 보다 작습니다', + 'rule_trigger_foreign_amount_more_choice' => '외화 금액은 .. 보다 큽니다', + 'rule_trigger_foreign_amount_more' => '외화 금액은 ":trigger_value" 보다 큽니다', + 'rule_trigger_attachment_name_is_choice' => '첨부 파일의 이름은 ..', + 'rule_trigger_attachment_name_is' => '첨부 파일의 이름은 ":trigger_value"입니다', + 'rule_trigger_attachment_name_contains_choice' => '첨부 파일의 이름은 ..를 포함합니다', + 'rule_trigger_attachment_name_contains' => '첨부 파일의 이름은 ":trigger_value"를 포함합니다', + 'rule_trigger_attachment_name_starts_choice' => '첨부 파일의 이름은 ..로 시작합니다', + 'rule_trigger_attachment_name_starts' => '첨부 파일의 이름은 ":trigger_value"로 시작합니다', + 'rule_trigger_attachment_name_ends_choice' => '첨부 파일의 이름은 ..로 끝납니다', + 'rule_trigger_attachment_name_ends' => '첨부 파일의 이름은 ":trigger_value"로 끝납니다', + 'rule_trigger_attachment_notes_are_choice' => '첨부 파일의 노트는 ..', + 'rule_trigger_attachment_notes_are' => '첨부 파일의 노트는 ":trigger_value"입니다', + 'rule_trigger_attachment_notes_contains_choice' => '첨부 파일의 노트는 ..를 포함합니다', + 'rule_trigger_attachment_notes_contains' => '첨부 파일의 노트는 ":trigger_value"를 포함합니다', + 'rule_trigger_attachment_notes_starts_choice' => '첨부 파일의 노트는 ..로 시작합니다', + 'rule_trigger_attachment_notes_starts' => '첨부 파일의 노트는 ":trigger_value"로 시작합니다', + 'rule_trigger_attachment_notes_ends_choice' => '첨부 파일의 노트는 ..로 끝납니다', + 'rule_trigger_attachment_notes_ends' => '첨부 파일의 노트는 ":trigger_value"로 끝납니다', + 'rule_trigger_reconciled_choice' => '거래가 조정됨', + 'rule_trigger_reconciled' => '거래가 조정됨', + 'rule_trigger_exists_choice' => '모든 거래 일치(!)', + 'rule_trigger_exists' => '모든 거래 일치', // more values for new types: - 'rule_trigger_not_account_id' => '계정 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_source_account_id' => '소스 계정 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_destination_account_id' => '대상 계정 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_transaction_type' => '거래 유형은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_tag_is' => '태그는 ":trigger_value" 가 아닙니다', - 'rule_trigger_not_tag_is_not' => '태그는 ":trigger_value"입니다', - 'rule_trigger_not_description_is' => '설명은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_description_contains' => '설명이 포함되지 않음', - 'rule_trigger_not_description_ends' => '설명은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_description_starts' => '설명은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_notes_is' => '노트는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_notes_contains' => '노트는 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_notes_ends' => '노트는 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_notes_starts' => '노트는 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_source_account_is' => '소스 계정은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_source_account_contains' => '소스 계정은 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_source_account_ends' => '소스 계정은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_source_account_starts' => '소스 계정은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_source_account_nr_is' => '소스 계정 번호 / IBAN은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_source_account_nr_contains' => '소스 계정 번호 / IBAN은 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_source_account_nr_ends' => '소스 계정 번호 / IBAN은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_source_account_nr_starts' => '소스 계정 번호 / IBAN은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_destination_account_is' => '대상 계정은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_destination_account_contains' => '대상 계정은 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_destination_account_ends' => '대상 계정은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_destination_account_starts' => '대상 계정은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_destination_account_nr_is' => '대상 계정 번호 / IBAN은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_destination_account_nr_contains' => '대 계정 번호 / IBAN은 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_destination_account_nr_ends' => '대상 계정 번호 / IBAN은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_destination_account_nr_starts' => '대상 계정 번호 / IBAN은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_account_is' => '두 계정 모두 ":trigger_value"가 아닙니다', - 'rule_trigger_not_account_contains' => '두 계정 모두 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_account_ends' => '두 계정 모두 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_account_starts' => '두 계정 모두 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_account_nr_is' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"가 아닙니다', - 'rule_trigger_not_account_nr_contains' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_account_nr_ends' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_account_nr_starts' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_category_is' => '카테고리는 ":trigger_value" 가 아닙니다', - 'rule_trigger_not_category_contains' => '카테고리에 ":trigger_value"가 포함되어 있지 않습니다', - 'rule_trigger_not_category_ends' => '카테고리가 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_category_starts' => '카테고리가 ":trigger_value"로 시작하지 않습니다.', - 'rule_trigger_not_budget_is' => '예산은 ":trigger_value" 가 아닙니다', - 'rule_trigger_not_budget_contains' => '예산에 ":trigger_value"가 포함되어 있지 않습니다', - 'rule_trigger_not_budget_ends' => '예산이 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_budget_starts' => '예산이 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_bill_is' => '청구서는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_bill_contains' => '청구서는 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_bill_ends' => '청구서는 ":trigger_value"에 끝나지 않습니다', - 'rule_trigger_not_bill_starts' => '청구서는 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_external_id_is' => '외부 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_external_id_contains' => '외부 ID는 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_external_id_ends' => '외부 ID는 ":trigger_value"에 끝나지 않습니다', - 'rule_trigger_not_external_id_starts' => '외부 ID는 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_internal_reference_is' => '내부 참조는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_internal_reference_contains' => '내부 참조는 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_internal_reference_ends' => '내부 참조는 ":trigger_value"에 끝나지 않습니다', - 'rule_trigger_not_internal_reference_starts' => '내부 참조는 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_external_url_is' => '외부 URL은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_external_url_contains' => '외부 URL은 ":trigger_value"를 포함하지 않습니다', - 'rule_trigger_not_external_url_ends' => '외부 URL은 ":trigger_value"로 끝나지 않습니다', - 'rule_trigger_not_external_url_starts' => '외부 URL은 ":trigger_value"로 시작하지 않습니다', - 'rule_trigger_not_currency_is' => '통화는 ":trigger_value" 가 아닙니다', - 'rule_trigger_not_foreign_currency_is' => '외화는 ":trigger_value" 가 아닙니다', - 'rule_trigger_not_id' => '거래 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_journal_id' => '거래 저널 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_recurrence_id' => '반복 ID는 ":trigger_value"가 아닙니다', - 'rule_trigger_not_date_on' => '날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_date_before' => '날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_date_after' => '날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_interest_date_on' => '이자 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_interest_date_before' => '이자 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_interest_date_after' => '이자 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_book_date_on' => '예약 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_book_date_before' => '예약 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_book_date_after' => '예약 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_process_date_on' => '처리 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_process_date_before' => '처리 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_process_date_after' => '처리 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_due_date_on' => '마감 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_due_date_before' => '마감 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_due_date_after' => '마감 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_payment_date_on' => '결제 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_payment_date_before' => '결제 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_payment_date_after' => '결제 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_invoice_date_on' => '송장 날짜가 ":trigger_value"에 없습니다', - 'rule_trigger_not_invoice_date_before' => '송장 날짜가 ":trigger_value" 이전이 아닙니다', - 'rule_trigger_not_invoice_date_after' => '송장 날짜가 ":trigger_value" 이후가 아닙니다', - 'rule_trigger_not_created_at_on' => '거래가 ":trigger_value"에 생성되지 않았습니다', - 'rule_trigger_not_created_at_before' => '거래가 ":trigger_value" 이전에 생성되지 않았습니다', - 'rule_trigger_not_created_at_after' => '거래가 ":trigger_value" 이후에 생성되지 않았습니다', - 'rule_trigger_not_updated_at_on' => '거래가 ":trigger_value"에 업데이트되지 않았습니다', - 'rule_trigger_not_updated_at_before' => '거래가 ":trigger_value" 이전에 업데이트되지 않았습니다', - 'rule_trigger_not_updated_at_after' => '거래가 ":trigger_value" 이후에 업데이트되지 않았습니다', - 'rule_trigger_not_amount_is' => '거래 금액이 ":trigger_value"가 아닙니다', - 'rule_trigger_not_amount_less' => '거래 금액은 ":trigger_value" 보다 큽니다', - 'rule_trigger_not_amount_more' => '거래 금액은 ":trigger_value" 보다 작습니다', - 'rule_trigger_not_foreign_amount_is' => '외화 거래 금액은 ":trigger_value"가 아닙니다', - 'rule_trigger_not_foreign_amount_less' => '외화 거래 금액은 ":trigger_value" 보다 큽니다', - 'rule_trigger_not_foreign_amount_more' => '외화 거래 금액은 ":trigger_value" 보다 작습니다', - 'rule_trigger_not_attachment_name_is' => '이름이 ":trigger_value"인 첨부 파일이 없습니다', - 'rule_trigger_not_attachment_name_contains' => '":trigger_value"를 포함하는 첨부 파일 이름이 없습니다', - 'rule_trigger_not_attachment_name_starts' => '":trigger_value"로 시작하는 첨부 파일 이름이 없습니다', - 'rule_trigger_not_attachment_name_ends' => '":trigger_value"로 끝나는 첨부 파일 이름이 없습니다', - 'rule_trigger_not_attachment_notes_are' => '첨부 파일 노트가 ":trigger_value"가 아닙니다', - 'rule_trigger_not_attachment_notes_contains' => '":trigger_value"를 포함하는 첨부 파일 노트가 없습니다', - 'rule_trigger_not_attachment_notes_starts' => '":trigger_value"로 시작하는 첨부 파일 노트가 없습니다', - 'rule_trigger_not_attachment_notes_ends' => '":trigger_value"에 끝나는 첨부 파일 노트가 없습니다', - 'rule_trigger_not_reconciled' => '거래가 조정되지 않음', - 'rule_trigger_not_exists' => '거래가 존재하지 않습니다', - 'rule_trigger_not_has_attachments' => '거래에 첨부 파일이 없음', - 'rule_trigger_not_has_any_category' => '거래에 카테고리가 없음', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => '거레에 청구서가 없음', - 'rule_trigger_not_has_any_tag' => '거래에 태그가 없음', - 'rule_trigger_not_any_notes' => '거래에 메모가 없음', - 'rule_trigger_not_any_external_url' => '거래에 외부 URL이 없음', - 'rule_trigger_not_has_no_attachments' => '거래에 첨부 파일이 있음', - 'rule_trigger_not_has_no_category' => '거래에 카테고리가 있음', - 'rule_trigger_not_has_no_budget' => '거래에 예산이 있음', - 'rule_trigger_not_has_no_bill' => '거레에 청구서가 있음', - 'rule_trigger_not_has_no_tag' => '거레에 태그가 있음', - 'rule_trigger_not_no_notes' => '거래에 메모가 있음', - 'rule_trigger_not_no_external_url' => '거래에 외부 URL이 있음', - 'rule_trigger_not_source_is_cash' => '소스 계정이 현금 계정이 아닙니다', - 'rule_trigger_not_destination_is_cash' => '대상 계정이 현금 계정이 아닙니다', - 'rule_trigger_not_account_is_cash' => '두 계정 모두 현금 계정이 아닙니다', + 'rule_trigger_not_account_id' => '계정 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_source_account_id' => '소스 계정 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_destination_account_id' => '대상 계정 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_transaction_type' => '거래 유형은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_tag_is' => '태그는 ":trigger_value" 가 아닙니다', + 'rule_trigger_not_tag_is_not' => '태그는 ":trigger_value"입니다', + 'rule_trigger_not_description_is' => '설명은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_description_contains' => '설명이 포함되지 않음', + 'rule_trigger_not_description_ends' => '설명은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_description_starts' => '설명은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_notes_is' => '노트는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_notes_contains' => '노트는 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_notes_ends' => '노트는 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_notes_starts' => '노트는 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_source_account_is' => '소스 계정은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_source_account_contains' => '소스 계정은 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_source_account_ends' => '소스 계정은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_source_account_starts' => '소스 계정은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_source_account_nr_is' => '소스 계정 번호 / IBAN은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_source_account_nr_contains' => '소스 계정 번호 / IBAN은 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_source_account_nr_ends' => '소스 계정 번호 / IBAN은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_source_account_nr_starts' => '소스 계정 번호 / IBAN은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_destination_account_is' => '대상 계정은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_destination_account_contains' => '대상 계정은 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_destination_account_ends' => '대상 계정은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_destination_account_starts' => '대상 계정은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_destination_account_nr_is' => '대상 계정 번호 / IBAN은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_destination_account_nr_contains' => '대 계정 번호 / IBAN은 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_destination_account_nr_ends' => '대상 계정 번호 / IBAN은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_destination_account_nr_starts' => '대상 계정 번호 / IBAN은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_account_is' => '두 계정 모두 ":trigger_value"가 아닙니다', + 'rule_trigger_not_account_contains' => '두 계정 모두 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_account_ends' => '두 계정 모두 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_account_starts' => '두 계정 모두 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_account_nr_is' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"가 아닙니다', + 'rule_trigger_not_account_nr_contains' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_account_nr_ends' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_account_nr_starts' => '두 계정의 번호 / IBAN은 모두 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_category_is' => '카테고리는 ":trigger_value" 가 아닙니다', + 'rule_trigger_not_category_contains' => '카테고리에 ":trigger_value"가 포함되어 있지 않습니다', + 'rule_trigger_not_category_ends' => '카테고리가 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_category_starts' => '카테고리가 ":trigger_value"로 시작하지 않습니다.', + 'rule_trigger_not_budget_is' => '예산은 ":trigger_value" 가 아닙니다', + 'rule_trigger_not_budget_contains' => '예산에 ":trigger_value"가 포함되어 있지 않습니다', + 'rule_trigger_not_budget_ends' => '예산이 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_budget_starts' => '예산이 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_bill_is' => '청구서는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_bill_contains' => '청구서는 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_bill_ends' => '청구서는 ":trigger_value"에 끝나지 않습니다', + 'rule_trigger_not_bill_starts' => '청구서는 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_external_id_is' => '외부 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_external_id_contains' => '외부 ID는 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_external_id_ends' => '외부 ID는 ":trigger_value"에 끝나지 않습니다', + 'rule_trigger_not_external_id_starts' => '외부 ID는 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_internal_reference_is' => '내부 참조는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_internal_reference_contains' => '내부 참조는 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_internal_reference_ends' => '내부 참조는 ":trigger_value"에 끝나지 않습니다', + 'rule_trigger_not_internal_reference_starts' => '내부 참조는 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_external_url_is' => '외부 URL은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_external_url_contains' => '외부 URL은 ":trigger_value"를 포함하지 않습니다', + 'rule_trigger_not_external_url_ends' => '외부 URL은 ":trigger_value"로 끝나지 않습니다', + 'rule_trigger_not_external_url_starts' => '외부 URL은 ":trigger_value"로 시작하지 않습니다', + 'rule_trigger_not_currency_is' => '통화는 ":trigger_value" 가 아닙니다', + 'rule_trigger_not_foreign_currency_is' => '외화는 ":trigger_value" 가 아닙니다', + 'rule_trigger_not_id' => '거래 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_journal_id' => '거래 저널 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_recurrence_id' => '반복 ID는 ":trigger_value"가 아닙니다', + 'rule_trigger_not_date_on' => '날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_date_before' => '날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_date_after' => '날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_interest_date_on' => '이자 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_interest_date_before' => '이자 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_interest_date_after' => '이자 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_book_date_on' => '예약 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_book_date_before' => '예약 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_book_date_after' => '예약 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_process_date_on' => '처리 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_process_date_before' => '처리 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_process_date_after' => '처리 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_due_date_on' => '마감 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_due_date_before' => '마감 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_due_date_after' => '마감 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_payment_date_on' => '결제 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_payment_date_before' => '결제 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_payment_date_after' => '결제 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_invoice_date_on' => '송장 날짜가 ":trigger_value"에 없습니다', + 'rule_trigger_not_invoice_date_before' => '송장 날짜가 ":trigger_value" 이전이 아닙니다', + 'rule_trigger_not_invoice_date_after' => '송장 날짜가 ":trigger_value" 이후가 아닙니다', + 'rule_trigger_not_created_at_on' => '거래가 ":trigger_value"에 생성되지 않았습니다', + 'rule_trigger_not_created_at_before' => '거래가 ":trigger_value" 이전에 생성되지 않았습니다', + 'rule_trigger_not_created_at_after' => '거래가 ":trigger_value" 이후에 생성되지 않았습니다', + 'rule_trigger_not_updated_at_on' => '거래가 ":trigger_value"에 업데이트되지 않았습니다', + 'rule_trigger_not_updated_at_before' => '거래가 ":trigger_value" 이전에 업데이트되지 않았습니다', + 'rule_trigger_not_updated_at_after' => '거래가 ":trigger_value" 이후에 업데이트되지 않았습니다', + 'rule_trigger_not_amount_is' => '거래 금액이 ":trigger_value"가 아닙니다', + 'rule_trigger_not_amount_less' => '거래 금액은 ":trigger_value" 보다 큽니다', + 'rule_trigger_not_amount_more' => '거래 금액은 ":trigger_value" 보다 작습니다', + 'rule_trigger_not_foreign_amount_is' => '외화 거래 금액은 ":trigger_value"가 아닙니다', + 'rule_trigger_not_foreign_amount_less' => '외화 거래 금액은 ":trigger_value" 보다 큽니다', + 'rule_trigger_not_foreign_amount_more' => '외화 거래 금액은 ":trigger_value" 보다 작습니다', + 'rule_trigger_not_attachment_name_is' => '이름이 ":trigger_value"인 첨부 파일이 없습니다', + 'rule_trigger_not_attachment_name_contains' => '":trigger_value"를 포함하는 첨부 파일 이름이 없습니다', + 'rule_trigger_not_attachment_name_starts' => '":trigger_value"로 시작하는 첨부 파일 이름이 없습니다', + 'rule_trigger_not_attachment_name_ends' => '":trigger_value"로 끝나는 첨부 파일 이름이 없습니다', + 'rule_trigger_not_attachment_notes_are' => '첨부 파일 노트가 ":trigger_value"가 아닙니다', + 'rule_trigger_not_attachment_notes_contains' => '":trigger_value"를 포함하는 첨부 파일 노트가 없습니다', + 'rule_trigger_not_attachment_notes_starts' => '":trigger_value"로 시작하는 첨부 파일 노트가 없습니다', + 'rule_trigger_not_attachment_notes_ends' => '":trigger_value"에 끝나는 첨부 파일 노트가 없습니다', + 'rule_trigger_not_reconciled' => '거래가 조정되지 않음', + 'rule_trigger_not_exists' => '거래가 존재하지 않습니다', + 'rule_trigger_not_has_attachments' => '거래에 첨부 파일이 없음', + 'rule_trigger_not_has_any_category' => '거래에 카테고리가 없음', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => '거레에 청구서가 없음', + 'rule_trigger_not_has_any_tag' => '거래에 태그가 없음', + 'rule_trigger_not_any_notes' => '거래에 메모가 없음', + 'rule_trigger_not_any_external_url' => '거래에 외부 URL이 없음', + 'rule_trigger_not_has_no_attachments' => '거래에 첨부 파일이 있음', + 'rule_trigger_not_has_no_category' => '거래에 카테고리가 있음', + 'rule_trigger_not_has_no_budget' => '거래에 예산이 있음', + 'rule_trigger_not_has_no_bill' => '거레에 청구서가 있음', + 'rule_trigger_not_has_no_tag' => '거레에 태그가 있음', + 'rule_trigger_not_no_notes' => '거래에 메모가 있음', + 'rule_trigger_not_no_external_url' => '거래에 외부 URL이 있음', + 'rule_trigger_not_source_is_cash' => '소스 계정이 현금 계정이 아닙니다', + 'rule_trigger_not_destination_is_cash' => '대상 계정이 현금 계정이 아닙니다', + 'rule_trigger_not_account_is_cash' => '두 계정 모두 현금 계정이 아닙니다', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => '거래 삭제(!)', - 'rule_action_delete_transaction' => '거래 삭제(!)', - 'rule_action_set_category' => '카테고리를 ":action_value"로 설정', - 'rule_action_clear_category' => '카테고리 지우기', - 'rule_action_set_budget' => '예산을 ":action_value"로 설정', - 'rule_action_clear_budget' => '예산 지우기', - 'rule_action_add_tag' => '":action_value" 태그 추가', - 'rule_action_remove_tag' => '":action_value" 태그 제거', - 'rule_action_remove_all_tags' => '모든 태그 제거', - 'rule_action_set_description' => '설명을 ":action_value"로 설정', - 'rule_action_append_description' => '":action_value"로 설명을 추가', - 'rule_action_prepend_description' => '설명 앞에 ":action_value" 추가', - 'rule_action_set_category_choice' => '카테고리를 .. 로 설정', - 'rule_action_clear_category_choice' => '카테고리 지우기', - 'rule_action_set_budget_choice' => '예산을 .. 로 설정', - 'rule_action_clear_budget_choice' => '예산 지우기', - 'rule_action_add_tag_choice' => '태그 추가...', - 'rule_action_remove_tag_choice' => '태그 제거 ..', - 'rule_action_remove_all_tags_choice' => '모든 태그 제거', - 'rule_action_set_description_choice' => '설명을 ..으로 설정', - 'rule_action_update_piggy_choice' => '저금통에 거래금액 추가/제거 ..', - 'rule_action_update_piggy' => '저금통 ":action_value"에 거래 금액 추가/제거', - 'rule_action_append_description_choice' => '..로 설명 추가', - 'rule_action_prepend_description_choice' => '..로 설명앞에 추가', - 'rule_action_set_source_account_choice' => '소스 계정을 ..로 설정', - 'rule_action_set_source_account' => '소스 계정을 :action_value로 설정', - 'rule_action_set_destination_account_choice' => '대상 계정을 ..로 설정', - 'rule_action_set_destination_account' => '대상 계정을 :action_value로 설정', - 'rule_action_append_notes_choice' => '..로 메모 추가', - 'rule_action_append_notes' => '":action_value"로 메모 추가', - 'rule_action_prepend_notes_choice' => '노트 앞에 .. 추가', - 'rule_action_prepend_notes' => '노트 앞에 ":action_value" 추가', - 'rule_action_clear_notes_choice' => '노트 제거', - 'rule_action_clear_notes' => '노트 제거', - 'rule_action_set_notes_choice' => '노트를 ..로 설정', - 'rule_action_link_to_bill_choice' => '청구서 링크 ..', - 'rule_action_link_to_bill' => '청구서 링크 ":action_value"', - 'rule_action_switch_accounts_choice' => '소스와 대상 계정 전환 (이체 만!)', - 'rule_action_switch_accounts' => '소스와 대상 계정 전환', - 'rule_action_set_notes' => '노트를 ":action_value"로 설정', - 'rule_action_convert_deposit_choice' => '거래를 입금으로 전환', - 'rule_action_convert_deposit' => '":action_value"에서 거래를 입금으로 전환합니다', - 'rule_action_convert_withdrawal_choice' => '거래를 출금으로 전환', - 'rule_action_convert_withdrawal' => '거래를 ":action_value"로 출금으로 전환합니다', - 'rule_action_convert_transfer_choice' => '거래를 이체로 전환', - 'rule_action_convert_transfer' => '":action_value"를 사용하여 거래를 이체로 전환합니다', - 'rule_action_append_descr_to_notes_choice' => '거래 노트에 설명을 추가합니다', - 'rule_action_append_notes_to_descr_choice' => '설명에 거래 노트를 추가합니다', - 'rule_action_move_descr_to_notes_choice' => '현재 거래 노트를 설명으로 바꿉니다', - 'rule_action_move_notes_to_descr_choice' => '현재 설명을 거래 메모로 바꿉니다', - 'rule_action_append_descr_to_notes' => '노트에 설명 추가', - 'rule_action_append_notes_to_descr' => '설명에 메모 추가', - 'rule_action_move_descr_to_notes' => '노트를 설명으로 바꾸기', - 'rule_action_move_notes_to_descr' => '설명을 노트로 바꾸기', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => '청구서에 대한 규칙 그룹', - 'rulegroup_for_bills_description' => '청구서와 관련된 모든 규칙을 위한 특별 규칙 그룹입니다.', - 'rule_for_bill_title' => '청구서 ":name"에 대한 자동 생성 규칙', - 'rule_for_bill_description' => '이 규칙은 청구서 ":name"과 일치하도록 자동 생성됩니다.', - 'create_rule_for_bill' => '청구서 ":name"에 대한 새 규칙 만들기', - 'create_rule_for_bill_txt' => '방금 ":name"이라는 새 청구서를 만들었습니다. 축하합니다! Firefly III는 새로운 출금을 이 청구서에 자동으로 연결할 수 있습니다. 예를 들어, 집세를 납부할 때마다 "임대료" 청구서가 해당 비용에 연결됩니다. 이렇게 하면 Firefly III는 어떤 청구서가 만기일이고 어떤 청구서가 만기되지 않았는지 정확하게 보여줄 수 있습니다. 그러기 위해서는 새로운 규칙을 만들어야 합니다. Firefly III에서 몇 가지 합리적인 기본값을 입력해 두었습니다. 이 값이 올바른지 확인하세요. 이 값이 정확하면 Firefly III가 자동으로 올바른 출금을 올바른 청구서에 연결합니다. 트리거를 확인하여 올바른지 확인하고 잘못된 경우 몇 가지를 추가하세요.', - 'new_rule_for_bill_title' => '청구서 ":name"에 대한 규칙', - 'new_rule_for_bill_description' => '이 규칙은 청구서 ":name"에 대한 거래를 표시합니다.', + 'rule_action_delete_transaction_choice' => '거래 삭제(!)', + 'rule_action_delete_transaction' => '거래 삭제(!)', + 'rule_action_set_category' => '카테고리를 ":action_value"로 설정', + 'rule_action_clear_category' => '카테고리 지우기', + 'rule_action_set_budget' => '예산을 ":action_value"로 설정', + 'rule_action_clear_budget' => '예산 지우기', + 'rule_action_add_tag' => '":action_value" 태그 추가', + 'rule_action_remove_tag' => '":action_value" 태그 제거', + 'rule_action_remove_all_tags' => '모든 태그 제거', + 'rule_action_set_description' => '설명을 ":action_value"로 설정', + 'rule_action_append_description' => '":action_value"로 설명을 추가', + 'rule_action_prepend_description' => '설명 앞에 ":action_value" 추가', + 'rule_action_set_category_choice' => '카테고리를 .. 로 설정', + 'rule_action_clear_category_choice' => '카테고리 지우기', + 'rule_action_set_budget_choice' => '예산을 .. 로 설정', + 'rule_action_clear_budget_choice' => '예산 지우기', + 'rule_action_add_tag_choice' => '태그 추가...', + 'rule_action_remove_tag_choice' => '태그 제거 ..', + 'rule_action_remove_all_tags_choice' => '모든 태그 제거', + 'rule_action_set_description_choice' => '설명을 ..으로 설정', + 'rule_action_update_piggy_choice' => '저금통에 거래금액 추가/제거 ..', + 'rule_action_update_piggy' => '저금통 ":action_value"에 거래 금액 추가/제거', + 'rule_action_append_description_choice' => '..로 설명 추가', + 'rule_action_prepend_description_choice' => '..로 설명앞에 추가', + 'rule_action_set_source_account_choice' => '소스 계정을 ..로 설정', + 'rule_action_set_source_account' => '소스 계정을 :action_value로 설정', + 'rule_action_set_destination_account_choice' => '대상 계정을 ..로 설정', + 'rule_action_set_destination_account' => '대상 계정을 :action_value로 설정', + 'rule_action_append_notes_choice' => '..로 메모 추가', + 'rule_action_append_notes' => '":action_value"로 메모 추가', + 'rule_action_prepend_notes_choice' => '노트 앞에 .. 추가', + 'rule_action_prepend_notes' => '노트 앞에 ":action_value" 추가', + 'rule_action_clear_notes_choice' => '노트 제거', + 'rule_action_clear_notes' => '노트 제거', + 'rule_action_set_notes_choice' => '노트를 ..로 설정', + 'rule_action_link_to_bill_choice' => '청구서 링크 ..', + 'rule_action_link_to_bill' => '청구서 링크 ":action_value"', + 'rule_action_switch_accounts_choice' => '소스와 대상 계정 전환 (이체 만!)', + 'rule_action_switch_accounts' => '소스와 대상 계정 전환', + 'rule_action_set_notes' => '노트를 ":action_value"로 설정', + 'rule_action_convert_deposit_choice' => '거래를 입금으로 전환', + 'rule_action_convert_deposit' => '":action_value"에서 거래를 입금으로 전환합니다', + 'rule_action_convert_withdrawal_choice' => '거래를 출금으로 전환', + 'rule_action_convert_withdrawal' => '거래를 ":action_value"로 출금으로 전환합니다', + 'rule_action_convert_transfer_choice' => '거래를 이체로 전환', + 'rule_action_convert_transfer' => '":action_value"를 사용하여 거래를 이체로 전환합니다', + 'rule_action_append_descr_to_notes_choice' => '거래 노트에 설명을 추가합니다', + 'rule_action_append_notes_to_descr_choice' => '설명에 거래 노트를 추가합니다', + 'rule_action_move_descr_to_notes_choice' => '현재 거래 노트를 설명으로 바꿉니다', + 'rule_action_move_notes_to_descr_choice' => '현재 설명을 거래 메모로 바꿉니다', + 'rule_action_append_descr_to_notes' => '노트에 설명 추가', + 'rule_action_append_notes_to_descr' => '설명에 메모 추가', + 'rule_action_move_descr_to_notes' => '노트를 설명으로 바꾸기', + 'rule_action_move_notes_to_descr' => '설명을 노트로 바꾸기', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => '청구서에 대한 규칙 그룹', + 'rulegroup_for_bills_description' => '청구서와 관련된 모든 규칙을 위한 특별 규칙 그룹입니다.', + 'rule_for_bill_title' => '청구서 ":name"에 대한 자동 생성 규칙', + 'rule_for_bill_description' => '이 규칙은 청구서 ":name"과 일치하도록 자동 생성됩니다.', + 'create_rule_for_bill' => '청구서 ":name"에 대한 새 규칙 만들기', + 'create_rule_for_bill_txt' => '방금 ":name"이라는 새 청구서를 만들었습니다. 축하합니다! Firefly III는 새로운 출금을 이 청구서에 자동으로 연결할 수 있습니다. 예를 들어, 집세를 납부할 때마다 "임대료" 청구서가 해당 비용에 연결됩니다. 이렇게 하면 Firefly III는 어떤 청구서가 만기일이고 어떤 청구서가 만기되지 않았는지 정확하게 보여줄 수 있습니다. 그러기 위해서는 새로운 규칙을 만들어야 합니다. Firefly III에서 몇 가지 합리적인 기본값을 입력해 두었습니다. 이 값이 올바른지 확인하세요. 이 값이 정확하면 Firefly III가 자동으로 올바른 출금을 올바른 청구서에 연결합니다. 트리거를 확인하여 올바른지 확인하고 잘못된 경우 몇 가지를 추가하세요.', + 'new_rule_for_bill_title' => '청구서 ":name"에 대한 규칙', + 'new_rule_for_bill_description' => '이 규칙은 청구서 ":name"에 대한 거래를 표시합니다.', - 'new_rule_for_journal_title' => '거래 ":description" 기반 규칙', - 'new_rule_for_journal_description' => '이 규칙은 거래 ":description"을 기반으로 합니다. 정확히 동일한 거래를 매칭할 것입니다.', + 'new_rule_for_journal_title' => '거래 ":description" 기반 규칙', + 'new_rule_for_journal_description' => '이 규칙은 거래 ":description"을 기반으로 합니다. 정확히 동일한 거래를 매칭할 것입니다.', // tags - 'store_new_tag' => '새 태그 저장', - 'update_tag' => '태그 업데이트', - 'no_location_set' => '설정된 위치가 없습니다.', - 'meta_data' => '메타데이터', - 'location' => '위치', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => '날짜 없음', - 'result' => '결과', - 'sums_apply_to_range' => '모든 합계는 선택한 범위에 적용됩니다', - 'mapbox_api_key' => '지도를 사용하려면 Mapbox에서 API 키를 받습니다. .env 파일을 열고 MAPBOX_API_KEY= 뒤에 이 코드를 입력합니다.', - 'press_object_location' => '마우스 오른쪽 버튼을 클릭이나 롱 클릭으로 개체의 위치를 설정합니다.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => '위치 지우기', - 'delete_all_selected_tags' => '선택된 모든 태그를 삭제', - 'select_tags_to_delete' => '태그를 선택하는 것을 잊지 마세요.', - 'deleted_x_tags' => ':count개의 태그가 삭제되었습니다.|:count개의 태그가 삭제되었습니다.', - 'create_rule_from_transaction' => '거래 기반 규칙 생성', - 'create_recurring_from_transaction' => '거래를 기반으로 반복 거래 만들기', + 'store_new_tag' => '새 태그 저장', + 'update_tag' => '태그 업데이트', + 'no_location_set' => '설정된 위치가 없습니다.', + 'meta_data' => '메타데이터', + 'location' => '위치', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => '날짜 없음', + 'result' => '결과', + 'sums_apply_to_range' => '모든 합계는 선택한 범위에 적용됩니다', + 'mapbox_api_key' => '지도를 사용하려면 Mapbox에서 API 키를 받습니다. .env 파일을 열고 MAPBOX_API_KEY= 뒤에 이 코드를 입력합니다.', + 'press_object_location' => '마우스 오른쪽 버튼을 클릭이나 롱 클릭으로 개체의 위치를 설정합니다.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => '위치 지우기', + 'delete_all_selected_tags' => '선택된 모든 태그를 삭제', + 'select_tags_to_delete' => '태그를 선택하는 것을 잊지 마세요.', + 'deleted_x_tags' => ':count개의 태그가 삭제되었습니다.|:count개의 태그가 삭제되었습니다.', + 'create_rule_from_transaction' => '거래 기반 규칙 생성', + 'create_recurring_from_transaction' => '거래를 기반으로 반복 거래 만들기', // preferences - 'dark_mode_option_browser' => '브라우저에 맡기세요', - 'dark_mode_option_light' => '항상 라이트', - 'dark_mode_option_dark' => '항상 다크', - 'equal_to_language' => '(언어와 동일)', - 'dark_mode_preference' => '다크 모드', - 'dark_mode_preference_help' => 'Firefly III가 언제 다크 모드를 사용할지 알려주세요.', - 'pref_home_screen_accounts' => '홈 화면 계정', - 'pref_home_screen_accounts_help' => '홈 페이지에 어떤 계정을 표시해야 하나요?', - 'pref_view_range' => '보기 범위', - 'pref_view_range_help' => '일부 차트는 자동으로 기간별로 그룹화됩니다. 예산도 기간별로 그룹화됩니다. 어떤 기간을 원하시나요?', - 'pref_1D' => '하루', - 'pref_1W' => '일주일', - 'pref_1M' => '한달', - 'pref_3M' => '3개월 (분기)', - 'pref_6M' => '6개월', - 'pref_1Y' => '1년', - 'pref_last365' => '지난 해', - 'pref_last90' => '최근 90일', - 'pref_last30' => '최근 30일', - 'pref_last7' => '최근 7일', - 'pref_YTD' => '연간 누계', - 'pref_QTD' => '분기 누계', - 'pref_MTD' => '월간 누계', - 'pref_languages' => '언어', - 'pref_locale' => '로케일 설정', - 'pref_languages_help' => 'Firefly III는 여러 언어를 지원합니다. 어떤 언어를 선호하시나요?', - 'pref_locale_help' => 'Firefly III에서는 통화, 숫자, 날짜 서식 지정 방법 등 기타 로컬 설정을 변경할 수 있습니다. 사용 중인 시스템에서 지원하지 않는 항목이 있을 수 있습니다. Firefly III는 모든 로케일에 대해 올바른 날짜 설정을 제공하지 않으므로 개선이 필요한 경우 저에게 문의하세요.', - 'pref_locale_no_demo' => '이 기능은 데모 사용자에게는 동작하지 않습니다.', - 'pref_custom_fiscal_year' => '회계연도 설정', - 'pref_custom_fiscal_year_label' => '활성화', - 'pref_custom_fiscal_year_help' => '1월 1일에서 12월 31일과 다른 회계 연도를 사용하는 나라에서는 해당 설정을 켜고 회계 연도의 시작과 끝을 지정할 수 있습니다', - 'pref_fiscal_year_start_label' => '회계 연도 시작일', - 'pref_two_factor_auth' => '2단계 인증', - 'pref_two_factor_auth_help' => '2단계 인증을 활성화하면 계정에 보안 계층이 하나 더 추가됩니다. 내가 알고 있는 정보(비밀번호)와 내가 가지고 있는 정보(인증 코드)를 사용하여 로그인합니다. 인증 코드는 휴대폰의 애플리케이션(예: Authy 또는 Google OTP)을 통해 생성합니다.', - 'pref_enable_two_factor_auth' => '2단계 인증 활성화', - 'pref_two_factor_auth_disabled' => '2단계 인증 코드 제거 및 비활성화', - 'pref_two_factor_auth_remove_it' => '인증 앱에서 계정을 제거하는 것을 잊지 마세요!', - 'pref_two_factor_auth_code' => '코드 확인', - 'pref_two_factor_auth_code_help' => 'Authy 또는 Google Authenticator와 같은 휴대폰 애플리케이션으로 QR 코드를 스캔하고 생성된 코드를 입력합니다.', - 'pref_two_factor_auth_reset_code' => '인증 코드 재설정', - 'pref_two_factor_auth_disable_2fa' => '2단계 인증 비활성화', - '2fa_use_secret_instead' => 'QR 코드를 스캔할 수 없다면 :secret 시크릿을 대신 사용하세요.', - '2fa_backup_codes' => '장치를 분실한 경우에 액세스할 수 있도록 이 백업 코드를 저장하십시오.', - '2fa_already_enabled' => '2단계 인증이 이미 활성화되어 있습니다.', - 'wrong_mfa_code' => '이 MFA 코드는 유효하지 않습니다.', - 'pref_save_settings' => '설정 저장', - 'saved_preferences' => '설정 저장됨!', - 'preferences_general' => '일반', - 'preferences_frontpage' => '홈 화면', - 'preferences_security' => '보안', - 'preferences_layout' => '레이아웃', - 'preferences_notifications' => '알림', - 'pref_home_show_deposits' => '홈 화면에 입금 표시', - 'pref_home_show_deposits_info' => '홈 화면에는 이미 지출 계정이 표시되고 있습니다. 수익 계정도 표시할까요?', - 'pref_home_do_show_deposits' => '네, 보여주세요', - 'successful_count' => '이 중 :count개 성공', - 'list_page_size_title' => '페이지 크기', - 'list_page_size_help' => '모든 항목(계정, 거래 등) 목록은 페이지당 최대 이 수만큼 표시됩니다.', - 'list_page_size_label' => '페이지 크기', - 'between_dates' => '(:start와 :end)', - 'pref_optional_fields_transaction' => '거래의 옵션 항목', - 'pref_optional_fields_transaction_help' => '기본적으로 새 거래를 만들 때 (복잡하기 때문에) 모든 항목이 활성화되어 있지는 않습니다. 아래에서 유용하다고 생각되는 항목을 활성화할 수 있습니다. 비활성화되어 있지만 이미 입력되어 있는 항목은 설정과 관계없이 모두 표시됩니다.', - 'optional_tj_date_fields' => '날짜 항목', - 'optional_tj_other_fields' => '기타 항목', - 'optional_tj_attachment_fields' => '첨부 파일 항목', - 'pref_optional_tj_interest_date' => '이자 날짜', - 'pref_optional_tj_book_date' => '예약 날짜', - 'pref_optional_tj_process_date' => '처리 날짜', - 'pref_optional_tj_due_date' => '마감 날짜', - 'pref_optional_tj_payment_date' => '결제일', - 'pref_optional_tj_invoice_date' => '청구서 날짜', - 'pref_optional_tj_internal_reference' => '내부 참조', - 'pref_optional_tj_notes' => '노트', - 'pref_optional_tj_attachments' => '첨부 파일', - 'pref_optional_tj_external_url' => '외부 URL', - 'pref_optional_tj_location' => '위치', - 'pref_optional_tj_links' => '거래 링크', - 'optional_field_meta_dates' => '날짜', - 'optional_field_meta_business' => '비즈니스', - 'optional_field_attachments' => '첨부 파일', - 'optional_field_meta_data' => '선택적 메타 데이터', - 'external_url' => '외부 URL', - 'pref_notification_bill_reminder' => '만료되는 청구서에 대한 알림', - 'pref_notification_new_access_token' => '새 API 액세스 토큰이 생성되면 알림 받기', - 'pref_notification_transaction_creation' => '거래가 자동으로 생성될 때 알림', - 'pref_notification_user_login' => '새 위치에서 로그인할 때 알림', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => '알림', - 'pref_notifications_help' => '수신할 알림인지 여부를 표시합니다. 일부 알림에는 민감한 금융 정보가 포함될 수 있습니다.', - 'slack_webhook_url' => 'Slack 웹훅 URL', - 'slack_webhook_url_help' => 'Slack을 사용하여 Firefly III에서 알림을 받으려면 여기에 웹훅 URL을 입력하세요. 원하지 않는다면 이 필드를 비워두세요. 관리자인 경우 관리에서도 이 URL을 설정해야 합니다.', - 'slack_url_label' => 'Slack "수신 웹훅" URL', + 'dark_mode_option_browser' => '브라우저에 맡기세요', + 'dark_mode_option_light' => '항상 라이트', + 'dark_mode_option_dark' => '항상 다크', + 'equal_to_language' => '(언어와 동일)', + 'dark_mode_preference' => '다크 모드', + 'dark_mode_preference_help' => 'Firefly III가 언제 다크 모드를 사용할지 알려주세요.', + 'pref_home_screen_accounts' => '홈 화면 계정', + 'pref_home_screen_accounts_help' => '홈 페이지에 어떤 계정을 표시해야 하나요?', + 'pref_view_range' => '보기 범위', + 'pref_view_range_help' => '일부 차트는 자동으로 기간별로 그룹화됩니다. 예산도 기간별로 그룹화됩니다. 어떤 기간을 원하시나요?', + 'pref_1D' => '하루', + 'pref_1W' => '일주일', + 'pref_1M' => '한달', + 'pref_3M' => '3개월 (분기)', + 'pref_6M' => '6개월', + 'pref_1Y' => '1년', + 'pref_last365' => '지난 해', + 'pref_last90' => '최근 90일', + 'pref_last30' => '최근 30일', + 'pref_last7' => '최근 7일', + 'pref_YTD' => '연간 누계', + 'pref_QTD' => '분기 누계', + 'pref_MTD' => '월간 누계', + 'pref_languages' => '언어', + 'pref_locale' => '로케일 설정', + 'pref_languages_help' => 'Firefly III는 여러 언어를 지원합니다. 어떤 언어를 선호하시나요?', + 'pref_locale_help' => 'Firefly III에서는 통화, 숫자, 날짜 서식 지정 방법 등 기타 로컬 설정을 변경할 수 있습니다. 사용 중인 시스템에서 지원하지 않는 항목이 있을 수 있습니다. Firefly III는 모든 로케일에 대해 올바른 날짜 설정을 제공하지 않으므로 개선이 필요한 경우 저에게 문의하세요.', + 'pref_locale_no_demo' => '이 기능은 데모 사용자에게는 동작하지 않습니다.', + 'pref_custom_fiscal_year' => '회계연도 설정', + 'pref_custom_fiscal_year_label' => '활성화', + 'pref_custom_fiscal_year_help' => '1월 1일에서 12월 31일과 다른 회계 연도를 사용하는 나라에서는 해당 설정을 켜고 회계 연도의 시작과 끝을 지정할 수 있습니다', + 'pref_fiscal_year_start_label' => '회계 연도 시작일', + 'pref_two_factor_auth' => '2단계 인증', + 'pref_two_factor_auth_help' => '2단계 인증을 활성화하면 계정에 보안 계층이 하나 더 추가됩니다. 내가 알고 있는 정보(비밀번호)와 내가 가지고 있는 정보(인증 코드)를 사용하여 로그인합니다. 인증 코드는 휴대폰의 애플리케이션(예: Authy 또는 Google OTP)을 통해 생성합니다.', + 'pref_enable_two_factor_auth' => '2단계 인증 활성화', + 'pref_two_factor_auth_disabled' => '2단계 인증 코드 제거 및 비활성화', + 'pref_two_factor_auth_remove_it' => '인증 앱에서 계정을 제거하는 것을 잊지 마세요!', + 'pref_two_factor_auth_code' => '코드 확인', + 'pref_two_factor_auth_code_help' => 'Authy 또는 Google Authenticator와 같은 휴대폰 애플리케이션으로 QR 코드를 스캔하고 생성된 코드를 입력합니다.', + 'pref_two_factor_auth_reset_code' => '인증 코드 재설정', + 'pref_two_factor_auth_disable_2fa' => '2단계 인증 비활성화', + '2fa_use_secret_instead' => 'QR 코드를 스캔할 수 없다면 :secret 시크릿을 대신 사용하세요.', + '2fa_backup_codes' => '장치를 분실한 경우에 액세스할 수 있도록 이 백업 코드를 저장하십시오.', + '2fa_already_enabled' => '2단계 인증이 이미 활성화되어 있습니다.', + 'wrong_mfa_code' => '이 MFA 코드는 유효하지 않습니다.', + 'pref_save_settings' => '설정 저장', + 'saved_preferences' => '설정 저장됨!', + 'preferences_general' => '일반', + 'preferences_frontpage' => '홈 화면', + 'preferences_security' => '보안', + 'preferences_layout' => '레이아웃', + 'preferences_notifications' => '알림', + 'pref_home_show_deposits' => '홈 화면에 입금 표시', + 'pref_home_show_deposits_info' => '홈 화면에는 이미 지출 계정이 표시되고 있습니다. 수익 계정도 표시할까요?', + 'pref_home_do_show_deposits' => '네, 보여주세요', + 'successful_count' => '이 중 :count개 성공', + 'list_page_size_title' => '페이지 크기', + 'list_page_size_help' => '모든 항목(계정, 거래 등) 목록은 페이지당 최대 이 수만큼 표시됩니다.', + 'list_page_size_label' => '페이지 크기', + 'between_dates' => '(:start와 :end)', + 'pref_optional_fields_transaction' => '거래의 옵션 항목', + 'pref_optional_fields_transaction_help' => '기본적으로 새 거래를 만들 때 (복잡하기 때문에) 모든 항목이 활성화되어 있지는 않습니다. 아래에서 유용하다고 생각되는 항목을 활성화할 수 있습니다. 비활성화되어 있지만 이미 입력되어 있는 항목은 설정과 관계없이 모두 표시됩니다.', + 'optional_tj_date_fields' => '날짜 항목', + 'optional_tj_other_fields' => '기타 항목', + 'optional_tj_attachment_fields' => '첨부 파일 항목', + 'pref_optional_tj_interest_date' => '이자 날짜', + 'pref_optional_tj_book_date' => '예약 날짜', + 'pref_optional_tj_process_date' => '처리 날짜', + 'pref_optional_tj_due_date' => '마감 날짜', + 'pref_optional_tj_payment_date' => '결제일', + 'pref_optional_tj_invoice_date' => '청구서 날짜', + 'pref_optional_tj_internal_reference' => '내부 참조', + 'pref_optional_tj_notes' => '노트', + 'pref_optional_tj_attachments' => '첨부 파일', + 'pref_optional_tj_external_url' => '외부 URL', + 'pref_optional_tj_location' => '위치', + 'pref_optional_tj_links' => '거래 링크', + 'optional_field_meta_dates' => '날짜', + 'optional_field_meta_business' => '비즈니스', + 'optional_field_attachments' => '첨부 파일', + 'optional_field_meta_data' => '선택적 메타 데이터', + 'external_url' => '외부 URL', + 'pref_notification_bill_reminder' => '만료되는 청구서에 대한 알림', + 'pref_notification_new_access_token' => '새 API 액세스 토큰이 생성되면 알림 받기', + 'pref_notification_transaction_creation' => '거래가 자동으로 생성될 때 알림', + 'pref_notification_user_login' => '새 위치에서 로그인할 때 알림', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => '알림', + 'pref_notifications_help' => '수신할 알림인지 여부를 표시합니다. 일부 알림에는 민감한 금융 정보가 포함될 수 있습니다.', + 'slack_webhook_url' => 'Slack 웹훅 URL', + 'slack_webhook_url_help' => 'Slack을 사용하여 Firefly III에서 알림을 받으려면 여기에 웹훅 URL을 입력하세요. 원하지 않는다면 이 필드를 비워두세요. 관리자인 경우 관리에서도 이 URL을 설정해야 합니다.', + 'slack_url_label' => 'Slack "수신 웹훅" URL', // Financial administrations - 'administration_index' => '재정 관리', - 'administrations_index_menu' => '재정 관리자(들)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => '재정 관리', + 'administrations_index_menu' => '재정 관리자(들)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Firefly III에서 데이터 제거', - 'purge_data_expl' => '"제거"는 "이미 삭제된 것을 삭제하는 것"을 의미합니다. 일반적인 상황에서 Firefly III는 아무것도 영구적으로 삭제하지 않습니다. 단지 숨길 뿐입니다. 아래 버튼을 누르면 이전에 "삭제된" 모든 기록이 영원히 제거됩니다.', - 'delete_stuff_header' => '데이터 삭제 및 제거', - 'purge_all_data' => '삭제된 모든 기록 제거', - 'purge_data' => '데이터 제거', - 'purged_all_records' => '모든 삭제된 항목이 제거 되었습니다.', - 'delete_data_title' => 'Firefly III에서 데이터 삭제', - 'permanent_delete_stuff' => 'Firefly III에서 항목을 삭제할 수 있습니다. 아래 버튼을 사용하면 항목이 보기에서 숨겨집니다. 이 경우 실행 취소 버튼은 없지만 항목은 여전히 데이터베이스에 남아 있기 때문에 필요한 경우 복구할 수 있습니다.', - 'other_sessions_logged_out' => '다른 모든 세션이 로그아웃되었습니다.', - 'delete_unused_accounts' => '사용하지 않는 계정을 삭제하면 자동 완성 목록이 정리됩니다.', - 'delete_all_unused_accounts' => '사용하지 않는 계정 삭제', - 'deleted_all_unused_accounts' => '사용하지 않는 모든 계정이 삭제되었습니다', - 'delete_all_budgets' => '모든 예산 삭제', - 'delete_all_categories' => '모든 카테고리 삭제', - 'delete_all_tags' => '모든 태그 삭제', - 'delete_all_bills' => '모든 청구서 삭제', - 'delete_all_piggy_banks' => '모든 저금통 삭제', - 'delete_all_rules' => '모든 규칙 삭제', - 'delete_all_recurring' => '모든 반복 거래 삭제', - 'delete_all_object_groups' => '모든 객체 그룹 삭제', - 'delete_all_accounts' => '모든 계정 삭제', - 'delete_all_asset_accounts' => '모든 자산 계정 삭제', - 'delete_all_expense_accounts' => '모든 지출 계정 삭제', - 'delete_all_revenue_accounts' => '모든 수익 계정 삭제', - 'delete_all_liabilities' => '모든 부채 삭제', - 'delete_all_transactions' => '모든 거래 삭제', - 'delete_all_withdrawals' => '모든 출금 삭제', - 'delete_all_deposits' => '모든 입금 삭제', - 'delete_all_transfers' => '모든 이체 삭제', - 'also_delete_transactions' => '계정을 삭제하면 관련된 모든 출금, 입금 및 이체도 삭제됩니다!', - 'deleted_all_budgets' => '모든 예산이 삭제되었습니다', - 'deleted_all_categories' => '모든 카테고리가 삭제되었습니다', - 'deleted_all_tags' => '모든 태그가 삭제되었습니다', - 'deleted_all_bills' => '모든 청구서가 삭제되었습니다', - 'deleted_all_piggy_banks' => '모든 저금통이 삭제되었습니다', - 'deleted_all_rules' => '모든 규칙과 규칙 그룹이 삭제되었습니다', - 'deleted_all_object_groups' => '모든 그룹이 삭제되었습니다', - 'deleted_all_accounts' => '모든 계정이 삭제되었습니다', - 'deleted_all_asset_accounts' => '모든 자산 계정이 삭제되었습니다', - 'deleted_all_expense_accounts' => '모든 지출 계정이 삭제되었습니다', - 'deleted_all_revenue_accounts' => '모든 수익 계정이 삭제되었습니다', - 'deleted_all_liabilities' => '모든 부채가 삭제되었습니다', - 'deleted_all_transactions' => '모든 트랜잭션이 삭제되었습니다', - 'deleted_all_withdrawals' => '모든 출금이 삭제되었습니다', - 'deleted_all_deposits' => '모든 입금이 삭제되었습니다', - 'deleted_all_transfers' => '모든 이체가 삭제되었습니다', - 'deleted_all_recurring' => '모든 반복 거래가 삭제되었습니다', - 'change_your_password' => '비밀번호 변경', - 'delete_account' => '계정 삭제', - 'current_password' => '현재 비밀번호', - 'new_password' => '새 비밀번호', - 'new_password_again' => '새 비밀번호 확인', - 'delete_your_account' => '계정 삭제', - 'delete_your_account_help' => '계정을 삭제하면 Firefly III에 저장한 모든 계정, 거래, 모든 항목도 삭제됩니다. 모두 사라집니다.', - 'delete_your_account_password' => '계속하려면 비밀번호를 입력하세요.', - 'password' => '비밀번호', - 'are_you_sure' => '정말로요? 되돌릴 수 없습니다.', - 'delete_account_button' => '계정 삭제하기', - 'invalid_current_password' => '현재 비밀번호가 잘못되었습니다!', - 'password_changed' => '비밀번호가 변경되었습니다!', - 'should_change' => '비밀번호를 변경하는 것이 좋습니다.', - 'invalid_password' => '비밀번호가 잘못되었습니다!', - 'what_is_pw_security' => '"비밀번호 보안 확인"이란 무엇인가요?', - 'secure_pw_title' => '안전한 비밀번호를 선택하는 방법', - 'forgot_password_response' => '감사합니다. 이 이메일 주소를 사용하는 계정이 있는 경우 받은 편지함에서 지침을 찾을 수 있습니다.', - 'secure_pw_history' => '매주 사용자의 암호를 잃어버린 사이트에 대한 뉴스를 접하게 됩니다. 해커와 도둑은 이러한 비밀번호를 사용하여 개인 정보를 훔치려고 시도합니다. 이 정보는 매우 중요합니다.', - 'secure_pw_ff' => '인터넷에서 모두 동일한 비밀번호를 사용하시나요? 한 사이트에서 비밀번호를 분실하면 해커가 모든 데이터에 액세스할 수 있습니다. Firefly III에서는 사용자의 금융 기록을 보호하기 위해 강력하고 고유한 비밀번호를 지정해야 합니다.', - 'secure_pw_check_box' => '이를 위해 Firefly III는 사용하려는 비밀번호가 과거에 도용된 적이 있는지 확인할 수 있습니다. 도용된 적이 있는 경우 Firefly III는 해당 비밀번호를 사용하지 말 것을 권고합니다.', - 'secure_pw_working_title' => '어떻게 작동하나요?', - 'secure_pw_working' => '이 확인란을 선택하면 Firefly III가 비밀번호의 SHA1 해시 중 처음 다섯 문자를 트로이 헌트 웹사이트로 전송하여 목록에 있는지 확인합니다. 이렇게 하면 이 주제에 관한 최신 NIST 특별 간행물에서 권장하는 대로 안전하지 않은 비밀번호를 사용하는 것을 방지할 수 있습니다.', - 'secure_pw_should' => '확인란을 선택해야 하나요?', - 'secure_pw_long_password' => '예. 비밀번호가 안전한지 항상 확인하세요.', - 'command_line_token' => '명령줄 토큰', - 'explain_command_line_token' => '데이터 내보내기와 같은 명령줄 옵션을 수행하려면 이 토큰이 필요합니다. 이 토큰이 없으면 민감한 명령이 작동하지 않습니다. 명령줄 토큰을 공유하지 마세요. 저를 포함해 그 누구도 이 토큰을 요구하지 않습니다. 분실할까 봐 걱정되거나 불안한 경우에는 버튼을 사용하여 토큰을 다시 생성하세요.', - 'regenerate_command_line_token' => '명령줄 토큰 다시 생성', - 'token_regenerated' => '새로운 명령줄 토큰이 생성되었습니다', - 'change_your_email' => '이메일 주소 변경', - 'email_verification' => '기존 이메일 주소와 새 이메일 주소로 이메일 메시지가 전송됩니다. 보안을 위해 새 이메일 주소를 확인할 때까지 로그인할 수 없습니다. Firefly III 설치할 때 이메일 전송이 가능한지 확실하지 않은 경우 이 기능을 사용하지 마세요. 관리자인 경우 관리 페이지에서 이 기능을 테스트할 수 있습니다.', - 'email_changed_logout' => '이메일 주소를 인증할 때까지 로그인할 수 없습니다.', - 'login_with_new_email' => '이제 새 이메일 주소로 로그인할 수 있습니다.', - 'login_with_old_email' => '이제 이전 이메일 주소로 다시 로그인할 수 있습니다.', - 'login_provider_local_only' => '":login_provider"를 통해 인증하는 경우에는 이 작업을 사용할 수 없습니다.', - 'external_user_mgt_disabled' => 'Firefly III가 사용자 관리 또는 인증 처리를 담당하지 않는 경우 이 작업을 사용할 수 없습니다.', - 'external_auth_disabled' => 'Firefly III가 인증 처리를 담당하지 않는 경우 이 작업을 사용할 수 없습니다.', - 'delete_local_info_only' => 'Firefly III는 사용자 관리 또는 인증 처리를 담당하지 않기 때문에 이 기능은 로컬 Firefly III 정보만 삭제합니다.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth 클라이언트', - 'profile_oauth_no_clients' => 'OAuth 클라이언트를 만들지 않았습니다.', - 'profile_oauth_clients_external_auth' => 'Authelia와 같은 외부 인증 제공업체를 사용하는 경우 OAuth 클라이언트가 작동하지 않습니다. 개인 액세스 토큰만 사용할 수 있습니다.', - 'profile_oauth_clients_header' => '클라이언트', - 'profile_oauth_client_id' => '클라이언트 ID', - 'profile_oauth_client_name' => '이름', - 'profile_oauth_client_secret' => '시크릿', - 'profile_oauth_create_new_client' => '새로운 클라이언트 만들기', - 'profile_oauth_create_client' => '클라이언트 만들기', - 'profile_oauth_edit_client' => '클라이언트 수정', - 'profile_oauth_name_help' => '사용자가 인지하고 신뢰할 수 있는 것.', - 'profile_oauth_redirect_url' => '리디렉션 URL', - 'profile_oauth_redirect_url_help' => '애플리케이션의 인증 콜백 URL입니다.', - 'profile_authorized_apps' => '인증된 애플리케이션', - 'profile_authorized_clients' => '인증된 클라이언트', - 'profile_scopes' => '범위', - 'profile_revoke' => '취소', - 'profile_oauth_client_secret_title' => '클라이언트 시크릿', - 'profile_oauth_client_secret_expl' => '다음은 새 클라이언트 암호입니다. 이번 한 번만 표시되니 놓치지 마세요! 이제 이 비밀 번호를 사용하여 API 요청을 할 수 있습니다.', - 'profile_personal_access_tokens' => '개인 액세스 토큰', - 'profile_personal_access_token' => '개인 액세스 토큰', - 'profile_oauth_confidential' => '비밀', - 'profile_oauth_confidential_help' => '클라이언트가 시크릿으로 인증하도록 요구합니다. 기밀 클라이언트는 권한이 없는 사람에게 자격 증명을 노출하지 않고 안전한 방식으로 자격 증명을 보관할 수 있습니다. 기본 데스크톱 또는 JavaScript SPA 애플리케이션과 같은 공개 애플리케이션은 시크릿을 안전하게 보관할 수 없습니다.', - 'profile_personal_access_token_explanation' => '다음은 새 개인용 액세스 토큰입니다. 이번 한 번만 표시되니 놓치지 마세요! 이제 이 토큰을 사용하여 API 요청을 할 수 있습니다.', - 'profile_no_personal_access_token' => '개인 액세스 토큰을 생성하지 않았습니다.', - 'profile_create_new_token' => '새로운 토큰 만들기', - 'profile_create_token' => '토큰 생성', - 'profile_create' => '생성', - 'profile_save_changes' => '변경사항 저장', - 'profile_whoops' => '이런!', - 'profile_something_wrong' => '문제가 발생했습니다!', - 'profile_try_again' => '문제가 발생했습니다. 다시 시도해주세요.', - 'amounts' => '금액', - 'multi_account_warning_unknown' => '생성한 거래 유형에 따라 뒤따르는 분할의 소스 및/또는 대상 계정은 대상 계정 거래의 첫 번째 분할에 정의된 내용에 따라 무시될 수 있습니다.', - 'multi_account_warning_withdrawal' => '뒤따르는 분할의 소스 계정은 첫 번째 출금 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', - 'multi_account_warning_deposit' => '뒤따르는 분할의 대상 계정은 첫 번째 입금 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', - 'multi_account_warning_transfer' => '뒤따르는 분할의 소스 + 대상 계정은 첫 번째 이체 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', + 'purge_data_title' => 'Firefly III에서 데이터 제거', + 'purge_data_expl' => '"제거"는 "이미 삭제된 것을 삭제하는 것"을 의미합니다. 일반적인 상황에서 Firefly III는 아무것도 영구적으로 삭제하지 않습니다. 단지 숨길 뿐입니다. 아래 버튼을 누르면 이전에 "삭제된" 모든 기록이 영원히 제거됩니다.', + 'delete_stuff_header' => '데이터 삭제 및 제거', + 'purge_all_data' => '삭제된 모든 기록 제거', + 'purge_data' => '데이터 제거', + 'purged_all_records' => '모든 삭제된 항목이 제거 되었습니다.', + 'delete_data_title' => 'Firefly III에서 데이터 삭제', + 'permanent_delete_stuff' => 'Firefly III에서 항목을 삭제할 수 있습니다. 아래 버튼을 사용하면 항목이 보기에서 숨겨집니다. 이 경우 실행 취소 버튼은 없지만 항목은 여전히 데이터베이스에 남아 있기 때문에 필요한 경우 복구할 수 있습니다.', + 'other_sessions_logged_out' => '다른 모든 세션이 로그아웃되었습니다.', + 'delete_unused_accounts' => '사용하지 않는 계정을 삭제하면 자동 완성 목록이 정리됩니다.', + 'delete_all_unused_accounts' => '사용하지 않는 계정 삭제', + 'deleted_all_unused_accounts' => '사용하지 않는 모든 계정이 삭제되었습니다', + 'delete_all_budgets' => '모든 예산 삭제', + 'delete_all_categories' => '모든 카테고리 삭제', + 'delete_all_tags' => '모든 태그 삭제', + 'delete_all_bills' => '모든 청구서 삭제', + 'delete_all_piggy_banks' => '모든 저금통 삭제', + 'delete_all_rules' => '모든 규칙 삭제', + 'delete_all_recurring' => '모든 반복 거래 삭제', + 'delete_all_object_groups' => '모든 객체 그룹 삭제', + 'delete_all_accounts' => '모든 계정 삭제', + 'delete_all_asset_accounts' => '모든 자산 계정 삭제', + 'delete_all_expense_accounts' => '모든 지출 계정 삭제', + 'delete_all_revenue_accounts' => '모든 수익 계정 삭제', + 'delete_all_liabilities' => '모든 부채 삭제', + 'delete_all_transactions' => '모든 거래 삭제', + 'delete_all_withdrawals' => '모든 출금 삭제', + 'delete_all_deposits' => '모든 입금 삭제', + 'delete_all_transfers' => '모든 이체 삭제', + 'also_delete_transactions' => '계정을 삭제하면 관련된 모든 출금, 입금 및 이체도 삭제됩니다!', + 'deleted_all_budgets' => '모든 예산이 삭제되었습니다', + 'deleted_all_categories' => '모든 카테고리가 삭제되었습니다', + 'deleted_all_tags' => '모든 태그가 삭제되었습니다', + 'deleted_all_bills' => '모든 청구서가 삭제되었습니다', + 'deleted_all_piggy_banks' => '모든 저금통이 삭제되었습니다', + 'deleted_all_rules' => '모든 규칙과 규칙 그룹이 삭제되었습니다', + 'deleted_all_object_groups' => '모든 그룹이 삭제되었습니다', + 'deleted_all_accounts' => '모든 계정이 삭제되었습니다', + 'deleted_all_asset_accounts' => '모든 자산 계정이 삭제되었습니다', + 'deleted_all_expense_accounts' => '모든 지출 계정이 삭제되었습니다', + 'deleted_all_revenue_accounts' => '모든 수익 계정이 삭제되었습니다', + 'deleted_all_liabilities' => '모든 부채가 삭제되었습니다', + 'deleted_all_transactions' => '모든 트랜잭션이 삭제되었습니다', + 'deleted_all_withdrawals' => '모든 출금이 삭제되었습니다', + 'deleted_all_deposits' => '모든 입금이 삭제되었습니다', + 'deleted_all_transfers' => '모든 이체가 삭제되었습니다', + 'deleted_all_recurring' => '모든 반복 거래가 삭제되었습니다', + 'change_your_password' => '비밀번호 변경', + 'delete_account' => '계정 삭제', + 'current_password' => '현재 비밀번호', + 'new_password' => '새 비밀번호', + 'new_password_again' => '새 비밀번호 확인', + 'delete_your_account' => '계정 삭제', + 'delete_your_account_help' => '계정을 삭제하면 Firefly III에 저장한 모든 계정, 거래, 모든 항목도 삭제됩니다. 모두 사라집니다.', + 'delete_your_account_password' => '계속하려면 비밀번호를 입력하세요.', + 'password' => '비밀번호', + 'are_you_sure' => '정말로요? 되돌릴 수 없습니다.', + 'delete_account_button' => '계정 삭제하기', + 'invalid_current_password' => '현재 비밀번호가 잘못되었습니다!', + 'password_changed' => '비밀번호가 변경되었습니다!', + 'should_change' => '비밀번호를 변경하는 것이 좋습니다.', + 'invalid_password' => '비밀번호가 잘못되었습니다!', + 'what_is_pw_security' => '"비밀번호 보안 확인"이란 무엇인가요?', + 'secure_pw_title' => '안전한 비밀번호를 선택하는 방법', + 'forgot_password_response' => '감사합니다. 이 이메일 주소를 사용하는 계정이 있는 경우 받은 편지함에서 지침을 찾을 수 있습니다.', + 'secure_pw_history' => '매주 사용자의 암호를 잃어버린 사이트에 대한 뉴스를 접하게 됩니다. 해커와 도둑은 이러한 비밀번호를 사용하여 개인 정보를 훔치려고 시도합니다. 이 정보는 매우 중요합니다.', + 'secure_pw_ff' => '인터넷에서 모두 동일한 비밀번호를 사용하시나요? 한 사이트에서 비밀번호를 분실하면 해커가 모든 데이터에 액세스할 수 있습니다. Firefly III에서는 사용자의 금융 기록을 보호하기 위해 강력하고 고유한 비밀번호를 지정해야 합니다.', + 'secure_pw_check_box' => '이를 위해 Firefly III는 사용하려는 비밀번호가 과거에 도용된 적이 있는지 확인할 수 있습니다. 도용된 적이 있는 경우 Firefly III는 해당 비밀번호를 사용하지 말 것을 권고합니다.', + 'secure_pw_working_title' => '어떻게 작동하나요?', + 'secure_pw_working' => '이 확인란을 선택하면 Firefly III가 비밀번호의 SHA1 해시 중 처음 다섯 문자를 트로이 헌트 웹사이트로 전송하여 목록에 있는지 확인합니다. 이렇게 하면 이 주제에 관한 최신 NIST 특별 간행물에서 권장하는 대로 안전하지 않은 비밀번호를 사용하는 것을 방지할 수 있습니다.', + 'secure_pw_should' => '확인란을 선택해야 하나요?', + 'secure_pw_long_password' => '예. 비밀번호가 안전한지 항상 확인하세요.', + 'command_line_token' => '명령줄 토큰', + 'explain_command_line_token' => '데이터 내보내기와 같은 명령줄 옵션을 수행하려면 이 토큰이 필요합니다. 이 토큰이 없으면 민감한 명령이 작동하지 않습니다. 명령줄 토큰을 공유하지 마세요. 저를 포함해 그 누구도 이 토큰을 요구하지 않습니다. 분실할까 봐 걱정되거나 불안한 경우에는 버튼을 사용하여 토큰을 다시 생성하세요.', + 'regenerate_command_line_token' => '명령줄 토큰 다시 생성', + 'token_regenerated' => '새로운 명령줄 토큰이 생성되었습니다', + 'change_your_email' => '이메일 주소 변경', + 'email_verification' => '기존 이메일 주소와 새 이메일 주소로 이메일 메시지가 전송됩니다. 보안을 위해 새 이메일 주소를 확인할 때까지 로그인할 수 없습니다. Firefly III 설치할 때 이메일 전송이 가능한지 확실하지 않은 경우 이 기능을 사용하지 마세요. 관리자인 경우 관리 페이지에서 이 기능을 테스트할 수 있습니다.', + 'email_changed_logout' => '이메일 주소를 인증할 때까지 로그인할 수 없습니다.', + 'login_with_new_email' => '이제 새 이메일 주소로 로그인할 수 있습니다.', + 'login_with_old_email' => '이제 이전 이메일 주소로 다시 로그인할 수 있습니다.', + 'login_provider_local_only' => '":login_provider"를 통해 인증하는 경우에는 이 작업을 사용할 수 없습니다.', + 'external_user_mgt_disabled' => 'Firefly III가 사용자 관리 또는 인증 처리를 담당하지 않는 경우 이 작업을 사용할 수 없습니다.', + 'external_auth_disabled' => 'Firefly III가 인증 처리를 담당하지 않는 경우 이 작업을 사용할 수 없습니다.', + 'delete_local_info_only' => 'Firefly III는 사용자 관리 또는 인증 처리를 담당하지 않기 때문에 이 기능은 로컬 Firefly III 정보만 삭제합니다.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth 클라이언트', + 'profile_oauth_no_clients' => 'OAuth 클라이언트를 만들지 않았습니다.', + 'profile_oauth_clients_external_auth' => 'Authelia와 같은 외부 인증 제공업체를 사용하는 경우 OAuth 클라이언트가 작동하지 않습니다. 개인 액세스 토큰만 사용할 수 있습니다.', + 'profile_oauth_clients_header' => '클라이언트', + 'profile_oauth_client_id' => '클라이언트 ID', + 'profile_oauth_client_name' => '이름', + 'profile_oauth_client_secret' => '시크릿', + 'profile_oauth_create_new_client' => '새로운 클라이언트 만들기', + 'profile_oauth_create_client' => '클라이언트 만들기', + 'profile_oauth_edit_client' => '클라이언트 수정', + 'profile_oauth_name_help' => '사용자가 인지하고 신뢰할 수 있는 것.', + 'profile_oauth_redirect_url' => '리디렉션 URL', + 'profile_oauth_redirect_url_help' => '애플리케이션의 인증 콜백 URL입니다.', + 'profile_authorized_apps' => '인증된 애플리케이션', + 'profile_authorized_clients' => '인증된 클라이언트', + 'profile_scopes' => '범위', + 'profile_revoke' => '취소', + 'profile_oauth_client_secret_title' => '클라이언트 시크릿', + 'profile_oauth_client_secret_expl' => '다음은 새 클라이언트 암호입니다. 이번 한 번만 표시되니 놓치지 마세요! 이제 이 비밀 번호를 사용하여 API 요청을 할 수 있습니다.', + 'profile_personal_access_tokens' => '개인 액세스 토큰', + 'profile_personal_access_token' => '개인 액세스 토큰', + 'profile_oauth_confidential' => '비밀', + 'profile_oauth_confidential_help' => '클라이언트가 시크릿으로 인증하도록 요구합니다. 기밀 클라이언트는 권한이 없는 사람에게 자격 증명을 노출하지 않고 안전한 방식으로 자격 증명을 보관할 수 있습니다. 기본 데스크톱 또는 JavaScript SPA 애플리케이션과 같은 공개 애플리케이션은 시크릿을 안전하게 보관할 수 없습니다.', + 'profile_personal_access_token_explanation' => '다음은 새 개인용 액세스 토큰입니다. 이번 한 번만 표시되니 놓치지 마세요! 이제 이 토큰을 사용하여 API 요청을 할 수 있습니다.', + 'profile_no_personal_access_token' => '개인 액세스 토큰을 생성하지 않았습니다.', + 'profile_create_new_token' => '새로운 토큰 만들기', + 'profile_create_token' => '토큰 생성', + 'profile_create' => '생성', + 'profile_save_changes' => '변경사항 저장', + 'profile_whoops' => '이런!', + 'profile_something_wrong' => '문제가 발생했습니다!', + 'profile_try_again' => '문제가 발생했습니다. 다시 시도해주세요.', + 'amounts' => '금액', + 'multi_account_warning_unknown' => '생성한 거래 유형에 따라 뒤따르는 분할의 소스 및/또는 대상 계정은 대상 계정 거래의 첫 번째 분할에 정의된 내용에 따라 무시될 수 있습니다.', + 'multi_account_warning_withdrawal' => '뒤따르는 분할의 소스 계정은 첫 번째 출금 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', + 'multi_account_warning_deposit' => '뒤따르는 분할의 대상 계정은 첫 번째 입금 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', + 'multi_account_warning_transfer' => '뒤따르는 분할의 소스 + 대상 계정은 첫 번째 이체 분할에 정의된 내용에 따라 재정의된다는 점에 유의하시기 바랍니다.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Firefly III에서 데이터 내보내기', - 'export_data_menu' => '데이터 내보내기', - 'export_data_bc' => 'Firefly III에서 데이터 내보내기', - 'export_data_main_title' => 'Firefly III에서 데이터 내보내기', - 'export_data_expl' => '이 링크를 통해 Firefly III에서 모든 거래 + 메타 데이터를 내보낼 수 있습니다. 프로세스에 대한 자세한 내용은 도움말(오른쪽 상단(?)-아이콘)을 참조하세요.', - 'export_data_all_transactions' => '모든 거래 내보내기', - 'export_data_advanced_expl' => '고급 또는 특정 유형의 내보내기가 필요한 경우 콘솔 명령 php artisan help firefly-iii:export-data 으로 사용법에 대한 도움말을 읽으십시오.', + 'export_data_title' => 'Firefly III에서 데이터 내보내기', + 'export_data_menu' => '데이터 내보내기', + 'export_data_bc' => 'Firefly III에서 데이터 내보내기', + 'export_data_main_title' => 'Firefly III에서 데이터 내보내기', + 'export_data_expl' => '이 링크를 통해 Firefly III에서 모든 거래 + 메타 데이터를 내보낼 수 있습니다. 프로세스에 대한 자세한 내용은 도움말(오른쪽 상단(?)-아이콘)을 참조하세요.', + 'export_data_all_transactions' => '모든 거래 내보내기', + 'export_data_advanced_expl' => '고급 또는 특정 유형의 내보내기가 필요한 경우 콘솔 명령 php artisan help firefly-iii:export-data 으로 사용법에 대한 도움말을 읽으십시오.', // attachments - 'nr_of_attachments' => '하나의 첨부 파일|:count개의 첨부 파일', - 'attachments' => '첨부 파일', - 'edit_attachment' => '":name" 첨부파일 수정', - 'update_attachment' => '첨부파일 업데이트', - 'delete_attachment' => '":name" 첨부파일 삭제', - 'attachment_deleted' => '":name" 첨부파일 삭제됨', - 'liabilities_deleted' => '":name" 부채 삭제됨', - 'attachment_updated' => '":name" 첨부파일 업데이트됨', - 'upload_max_file_size' => '최대 파일 크기: :size', - 'list_all_attachments' => '모든 첨부 파일 목록', + 'nr_of_attachments' => '하나의 첨부 파일|:count개의 첨부 파일', + 'attachments' => '첨부 파일', + 'edit_attachment' => '":name" 첨부파일 수정', + 'update_attachment' => '첨부파일 업데이트', + 'delete_attachment' => '":name" 첨부파일 삭제', + 'attachment_deleted' => '":name" 첨부파일 삭제됨', + 'liabilities_deleted' => '":name" 부채 삭제됨', + 'attachment_updated' => '":name" 첨부파일 업데이트됨', + 'upload_max_file_size' => '최대 파일 크기: :size', + 'list_all_attachments' => '모든 첨부 파일 목록', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => '지출', - 'title_withdrawal' => '지출', - 'title_revenue' => '수익 / 수입', - 'title_deposit' => '수익 / 수입', - 'title_transfer' => '이체', - 'title_transfers' => '이체', - 'submission_options' => '제출 옵션', - 'apply_rules_checkbox' => '규칙 적용', - 'fire_webhooks_checkbox' => '웹훅 실행', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => '지출', + 'title_withdrawal' => '지출', + 'title_revenue' => '수익 / 수입', + 'title_deposit' => '수익 / 수입', + 'title_transfer' => '이체', + 'title_transfers' => '이체', + 'submission_options' => '제출 옵션', + 'apply_rules_checkbox' => '규칙 적용', + 'fire_webhooks_checkbox' => '웹훅 실행', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => '이 거래는 이미 출금되었습니다', - 'convert_is_already_type_Deposit' => '이 거래는 이미 입금되었습니다', - 'convert_is_already_type_Transfer' => '이 거래는 이미 이체되었습니다', - 'convert_to_Withdrawal' => '":description"을 출금으로 전환', - 'convert_to_Deposit' => '":description"을 입금으로 전환', - 'convert_to_Transfer' => '":description"을 이체로 전환', - 'convert_options_WithdrawalDeposit' => '출금을 입금으로 전환', - 'convert_options_WithdrawalTransfer' => '출금을 이체로 전환', - 'convert_options_DepositTransfer' => '입금을 이체로 전환', - 'convert_options_DepositWithdrawal' => '입금을 출금으로 전환', - 'convert_options_TransferWithdrawal' => '이체를 출금으로 전환', - 'convert_options_TransferDeposit' => '이체를 입금으로 전환', - 'convert_Withdrawal_to_deposit' => '이 출금을 입금으로 전환', - 'convert_Withdrawal_to_transfer' => '이 출금을 이체로 전환', - 'convert_Deposit_to_withdrawal' => '이 입금을 출금으로 전환', - 'convert_Deposit_to_transfer' => '이 입금을 이체로 전환', - 'convert_Transfer_to_deposit' => '이 이체를 입금으로 전환', - 'convert_Transfer_to_withdrawal' => '이 이체를 출금으로 전환', - 'convert_please_set_revenue_source' => '돈이 나올 수익 계정을 선택하세요.', - 'convert_please_set_asset_destination' => '돈이 들어갈 자산 계정을 선택하세요.', - 'convert_please_set_expense_destination' => '돈이 들어갈 비용 계정을 선택하세요.', - 'convert_please_set_asset_source' => '돈이 나올 자산 계정을 선택하세요.', - 'convert_expl_w_d' => '출금에서 입금으로 변환할 때는 금액이 인출되지 않고 표시된 대상 계좌로 입금됩니다.|출금에서 입금으로 변환할 때는 금액이 출금되지 않고 표시된 대상 계좌로 입금됩니다.', - 'convert_expl_w_t' => '출금을 이체로 전환하는 경우, 해당 금액은 원래의 비용 계정에서 지출되지 않고 소스 계정에서 다른 자산 또는 부채 계정으로 이체됩니다.|인출을 이체로 전환하는 경우, 해당 금액은 원래의 비용 계정에서 지출되지 않고 소스 계정에서 다른 자산 또는 부채 계정으로 이체됩니다.', - 'convert_expl_d_w' => '입금을 출금으로 전환하는 경우 표시된 소스 계좌에 입금되지 않고 표시된 소스 계좌에서 출금됩니다.|입금을 출금으로 전환하는 경우 표시된 소스 계좌에 입금되지 않고 표시된 소스 계좌에서 출금됩니다.', - 'convert_expl_d_t' => '입금을 이체로 전환하는 경우 자산 또는 부채 계좌에서 나열된 대상 계좌로 금액이 입금됩니다.|입금을 이체로 전환하는 경우 자산 또는 부채 계좌에서 나열된 대상 계좌로 금액이 입금됩니다.', - 'convert_expl_t_w' => '이체를 출금으로 전환하는 경우 이 금액은 다른 계좌로 이체되지 않고 여기에서 설정한 대상 계좌에서 지출됩니다.|이체를 출금으로 전환하는 경우 이 금액은 다른 계좌로 이체되지 않고 여기에서 설정한 대상 계좌에서 지출됩니다.', - 'convert_expl_t_d' => '이체를 입금으로 전환하는 경우 돈이 이체되는 대신 여기에 표시된 대상 계좌로 입금됩니다.|이체를 입금으로 전환하는 경우 돈이 이체되는 대신 여기에 표시된 대상 계좌로 입금됩니다.', - 'convert_select_sources' => '전환을 완료하려면 아래에 새 소스 계정을 설정하세요.|전환을 완료하려면 아래에 새 소스 계정들을 설정하세요.', - 'convert_select_destinations' => '전환을 완료하려면 아래에 새 대상 계정을 설정하세요.|전환을 완료하려면 아래에 새 대상 계정들을 설정하세요.', - 'converted_to_Withdrawal' => '거래가 출금으로 전환되었습니다', - 'converted_to_Deposit' => '거래가 입금으로 전환되었습니다', - 'converted_to_Transfer' => '거래가 이체로 전환되었습니다', - 'invalid_convert_selection' => '선택한 계정이 이 거래에서 이미 사용 중이거나 존재하지 않습니다.', - 'source_or_dest_invalid' => '올바른 거래 세부정보를 찾을 수 없습니다. 변환할 수 없습니다.', - 'convert_to_withdrawal' => '출금으로 전환', - 'convert_to_deposit' => '입금으로 전환', - 'convert_to_transfer' => '이체로 전환', + 'convert_is_already_type_Withdrawal' => '이 거래는 이미 출금되었습니다', + 'convert_is_already_type_Deposit' => '이 거래는 이미 입금되었습니다', + 'convert_is_already_type_Transfer' => '이 거래는 이미 이체되었습니다', + 'convert_to_Withdrawal' => '":description"을 출금으로 전환', + 'convert_to_Deposit' => '":description"을 입금으로 전환', + 'convert_to_Transfer' => '":description"을 이체로 전환', + 'convert_options_WithdrawalDeposit' => '출금을 입금으로 전환', + 'convert_options_WithdrawalTransfer' => '출금을 이체로 전환', + 'convert_options_DepositTransfer' => '입금을 이체로 전환', + 'convert_options_DepositWithdrawal' => '입금을 출금으로 전환', + 'convert_options_TransferWithdrawal' => '이체를 출금으로 전환', + 'convert_options_TransferDeposit' => '이체를 입금으로 전환', + 'convert_Withdrawal_to_deposit' => '이 출금을 입금으로 전환', + 'convert_Withdrawal_to_transfer' => '이 출금을 이체로 전환', + 'convert_Deposit_to_withdrawal' => '이 입금을 출금으로 전환', + 'convert_Deposit_to_transfer' => '이 입금을 이체로 전환', + 'convert_Transfer_to_deposit' => '이 이체를 입금으로 전환', + 'convert_Transfer_to_withdrawal' => '이 이체를 출금으로 전환', + 'convert_please_set_revenue_source' => '돈이 나올 수익 계정을 선택하세요.', + 'convert_please_set_asset_destination' => '돈이 들어갈 자산 계정을 선택하세요.', + 'convert_please_set_expense_destination' => '돈이 들어갈 비용 계정을 선택하세요.', + 'convert_please_set_asset_source' => '돈이 나올 자산 계정을 선택하세요.', + 'convert_expl_w_d' => '출금에서 입금으로 변환할 때는 금액이 인출되지 않고 표시된 대상 계좌로 입금됩니다.|출금에서 입금으로 변환할 때는 금액이 출금되지 않고 표시된 대상 계좌로 입금됩니다.', + 'convert_expl_w_t' => '출금을 이체로 전환하는 경우, 해당 금액은 원래의 비용 계정에서 지출되지 않고 소스 계정에서 다른 자산 또는 부채 계정으로 이체됩니다.|인출을 이체로 전환하는 경우, 해당 금액은 원래의 비용 계정에서 지출되지 않고 소스 계정에서 다른 자산 또는 부채 계정으로 이체됩니다.', + 'convert_expl_d_w' => '입금을 출금으로 전환하는 경우 표시된 소스 계좌에 입금되지 않고 표시된 소스 계좌에서 출금됩니다.|입금을 출금으로 전환하는 경우 표시된 소스 계좌에 입금되지 않고 표시된 소스 계좌에서 출금됩니다.', + 'convert_expl_d_t' => '입금을 이체로 전환하는 경우 자산 또는 부채 계좌에서 나열된 대상 계좌로 금액이 입금됩니다.|입금을 이체로 전환하는 경우 자산 또는 부채 계좌에서 나열된 대상 계좌로 금액이 입금됩니다.', + 'convert_expl_t_w' => '이체를 출금으로 전환하는 경우 이 금액은 다른 계좌로 이체되지 않고 여기에서 설정한 대상 계좌에서 지출됩니다.|이체를 출금으로 전환하는 경우 이 금액은 다른 계좌로 이체되지 않고 여기에서 설정한 대상 계좌에서 지출됩니다.', + 'convert_expl_t_d' => '이체를 입금으로 전환하는 경우 돈이 이체되는 대신 여기에 표시된 대상 계좌로 입금됩니다.|이체를 입금으로 전환하는 경우 돈이 이체되는 대신 여기에 표시된 대상 계좌로 입금됩니다.', + 'convert_select_sources' => '전환을 완료하려면 아래에 새 소스 계정을 설정하세요.|전환을 완료하려면 아래에 새 소스 계정들을 설정하세요.', + 'convert_select_destinations' => '전환을 완료하려면 아래에 새 대상 계정을 설정하세요.|전환을 완료하려면 아래에 새 대상 계정들을 설정하세요.', + 'converted_to_Withdrawal' => '거래가 출금으로 전환되었습니다', + 'converted_to_Deposit' => '거래가 입금으로 전환되었습니다', + 'converted_to_Transfer' => '거래가 이체로 전환되었습니다', + 'invalid_convert_selection' => '선택한 계정이 이 거래에서 이미 사용 중이거나 존재하지 않습니다.', + 'source_or_dest_invalid' => '올바른 거래 세부정보를 찾을 수 없습니다. 변환할 수 없습니다.', + 'convert_to_withdrawal' => '출금으로 전환', + 'convert_to_deposit' => '입금으로 전환', + 'convert_to_transfer' => '이체로 전환', // create new stuff: - 'create_new_withdrawal' => '새로운 출금 생성', - 'create_new_deposit' => '새로운 입금 생성', - 'create_new_transfer' => '새로운 이체 생성', - 'create_new_asset' => '새 자산 계정 생성', - 'create_new_liabilities' => '새 부채 생성', - 'create_new_expense' => '새 지출 계정 생성', - 'create_new_revenue' => '새 수익 계정 생성', - 'create_new_piggy_bank' => '새 저금통 만들기', - 'create_new_bill' => '새 청구서 생성', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => '새로운 출금 생성', + 'create_new_deposit' => '새로운 입금 생성', + 'create_new_transfer' => '새로운 이체 생성', + 'create_new_asset' => '새 자산 계정 생성', + 'create_new_liabilities' => '새 부채 생성', + 'create_new_expense' => '새 지출 계정 생성', + 'create_new_revenue' => '새 수익 계정 생성', + 'create_new_piggy_bank' => '새 저금통 만들기', + 'create_new_bill' => '새 청구서 생성', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => '새로운 통화 생성', - 'store_currency' => '새 통화 저장', - 'update_currency' => '통화 업데이트', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => ':name을(를) 아직 사용 중이므로 삭제할 수 없습니다.', - 'cannot_delete_fallback_currency' => ':name은 시스템 대체 통화이며 삭제할 수 없습니다.', - 'cannot_disable_currency_journals' => '거래가 여전히 :name을 사용하고 있으므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_last_left' => ':name은 마지막으로 활성화한 통화이므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_account_meta' => ':name은 자산 계정에서 사용되므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_bills' => ':name은 청구서에서 사용되므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_recurring' => ':name은 반복 거래에서 사용되므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_available_budgets' => ':name은 사용가능한 예산에서 사용되므로 비활성화할 수 없습니다.', - 'cannot_disable_currency_budget_limits' => '예산 한도에서 사용되므로 :name을 비활성화할 수 없습니다.', - 'cannot_disable_currency_current_default' => ':name은 현재 기본 통화이므로 비활성화 할 수 없습니다.', - 'cannot_disable_currency_system_fallback' => ':name은 시스템 기본 통화이므로 비활성화할 수 없습니다.', - 'disable_EUR_side_effects' => '유로화는 시스템의 비상 대체 통화입니다. 이를 비활성화하면 의도하지 않은 부작용이 발생할 수 있으며 보증이 무효화될 수 있습니다.', - 'deleted_currency' => ':name 통화 삭제됨', - 'created_currency' => ':name 통화 생성됨', - 'could_not_store_currency' => '새 통화를 저장할 수 없습니다.', - 'updated_currency' => ':name 통화 업데이트됨', - 'ask_site_owner' => '통화를 추가, 제거 또는 수정하려면 :owner에게 문의하세요.', - 'currencies_intro' => 'Firefly III는 여기에서 설정하고 활성화할 수 있는 다양한 통화를 지원합니다.', - 'make_default_currency' => '기본값으로 설정', - 'default_currency' => '기본값', - 'currency_is_disabled' => '비활성화됨', - 'enable_currency' => '활성화', - 'disable_currency' => '비활성화', - 'currencies_default_disabled' => '이러한 통화는 대부분 기본적으로 비활성화되어 있습니다. 사용하려면 먼저 활성화해야 합니다.', - 'currency_is_now_enabled' => '":name" 통화가 활성화되었습니다', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => '":name" 통화가 비활성화되었습니다', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => '새로운 통화 생성', + 'store_currency' => '새 통화 저장', + 'update_currency' => '통화 업데이트', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => ':name을(를) 아직 사용 중이므로 삭제할 수 없습니다.', + 'cannot_delete_fallback_currency' => ':name은 시스템 대체 통화이며 삭제할 수 없습니다.', + 'cannot_disable_currency_journals' => '거래가 여전히 :name을 사용하고 있으므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_last_left' => ':name은 마지막으로 활성화한 통화이므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_account_meta' => ':name은 자산 계정에서 사용되므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_bills' => ':name은 청구서에서 사용되므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_recurring' => ':name은 반복 거래에서 사용되므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_available_budgets' => ':name은 사용가능한 예산에서 사용되므로 비활성화할 수 없습니다.', + 'cannot_disable_currency_budget_limits' => '예산 한도에서 사용되므로 :name을 비활성화할 수 없습니다.', + 'cannot_disable_currency_current_default' => ':name은 현재 기본 통화이므로 비활성화 할 수 없습니다.', + 'cannot_disable_currency_system_fallback' => ':name은 시스템 기본 통화이므로 비활성화할 수 없습니다.', + 'disable_EUR_side_effects' => '유로화는 시스템의 비상 대체 통화입니다. 이를 비활성화하면 의도하지 않은 부작용이 발생할 수 있으며 보증이 무효화될 수 있습니다.', + 'deleted_currency' => ':name 통화 삭제됨', + 'created_currency' => ':name 통화 생성됨', + 'could_not_store_currency' => '새 통화를 저장할 수 없습니다.', + 'updated_currency' => ':name 통화 업데이트됨', + 'ask_site_owner' => '통화를 추가, 제거 또는 수정하려면 :owner에게 문의하세요.', + 'currencies_intro' => 'Firefly III는 여기에서 설정하고 활성화할 수 있는 다양한 통화를 지원합니다.', + 'make_default_currency' => '기본값으로 설정', + 'default_currency' => '기본값', + 'currency_is_disabled' => '비활성화됨', + 'enable_currency' => '활성화', + 'disable_currency' => '비활성화', + 'currencies_default_disabled' => '이러한 통화는 대부분 기본적으로 비활성화되어 있습니다. 사용하려면 먼저 활성화해야 합니다.', + 'currency_is_now_enabled' => '":name" 통화가 활성화되었습니다', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => '":name" 통화가 비활성화되었습니다', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => '필수 입력 항목', - 'optionalFields' => '선택 입력 항목', - 'options' => '옵션', + 'mandatoryFields' => '필수 입력 항목', + 'optionalFields' => '선택 입력 항목', + 'options' => '옵션', // budgets: - 'daily_budgets' => '일일 예산', - 'weekly_budgets' => '주간 예산', - 'monthly_budgets' => '월간 예산', - 'quarterly_budgets' => '분기별 예산', - 'half_year_budgets' => '반기 예산', - 'yearly_budgets' => '연간 예산', - 'other_budgets' => '사용자 정의 시간 예산', - 'budget_limit_not_in_range' => '이 금액은 :start부터 :end까지 적용됩니다', - 'total_available_budget' => '사용 가능한 총 예산 (:start에서 :end 사이)', - 'total_available_budget_in_currency' => ':currency로 사용 가능한 총 예산', - 'see_below' => '아래를 참조하세요.', - 'create_new_budget' => '새로운 예산 생성', - 'store_new_budget' => '새 예산 저장', - 'stored_new_budget' => '새 예산 ":name" 저장됨', - 'available_between' => ':start와 :end 사이에서 사용 가능', - 'transactionsWithoutBudget' => '예산이 없는 지출', - 'transactions_no_budget' => ':start과 :end 사이에 예산이 없는 지출', - 'spent_between' => ':start와 :end 사이에 이미 사용되었습니다', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => '사용 가능한 금액 설정', - 'update_available_amount' => '사용 가능한 금액 업데이트', - 'ab_basic_modal_explain' => '이 양식을 사용하여 지정한 기간에 예산을 책정할 수 있을 것으로 예상되는 금액(총액, :currency)을 표시하세요.', - 'createBudget' => '새 예산', - 'invalid_currency' => '유효하지 않은 통화입니다', - 'invalid_amount' => '금액을 입력하세요', - 'set_ab' => '사용 가능한 예산 금액이 설정되었습니다', - 'updated_ab' => '사용 가능한 예산 금액이 업데이트되었습니다', - 'deleted_ab' => '사용 가능한 예산 금액이 삭제되었습니다', - 'deleted_bl' => '예산 금액이 제거되었습니다', - 'alt_currency_ab_create' => '사용 가능한 예산을 다른 통화로 설정', - 'bl_create_btn' => '다른 통화로 예산 설정', - 'inactiveBudgets' => '비활성 예산', - 'without_budget_between' => ':start과 :end 사이에 예산이 없는 거래', - 'delete_budget' => '":name" 예산 삭제', - 'deleted_budget' => '":name" 예산 삭제됨', - 'edit_budget' => '":name" 예산 수정', - 'updated_budget' => '":name" 예산 업데이트됨', - 'update_amount' => '금액 업데이트', - 'update_budget' => '예산 업데이트', - 'update_budget_amount_range' => ':start과 :end 사이의 사용 가능한 금액 업데이트 (예상)', - 'set_budget_limit_title' => ':start과 :end 사이에 예산 :budget에 대한 예산 금액 설정', - 'set_budget_limit' => '예산 금액 설정', - 'budget_period_navigator' => '기간 탐색기', - 'info_on_available_amount' => '무엇을 사용할 수 있나요?', - 'available_amount_indication' => '이 금액을 사용하여 총 예산이 얼마인지 파악할 수 있습니다.', - 'suggested' => '추천', - 'average_between' => ':start과 :end 사이의 평균', - 'transferred_in' => '전송됨 (입)', - 'transferred_away' => '전송됨 (출)', - 'auto_budget_none' => '자동 예산 없음', - 'auto_budget_reset' => '매 기간마다 고정 금액 설정', - 'auto_budget_rollover' => '기간마다 금액 추가', - 'auto_budget_adjusted' => '초과 지출을 수정하기 위해 매 기간마다 금액을 추가합니다.', - 'auto_budget_period_daily' => '매일', - 'auto_budget_period_weekly' => '매주', - 'auto_budget_period_monthly' => '월간', - 'auto_budget_period_quarterly' => '분기별', - 'auto_budget_period_half_year' => '반년마다', - 'auto_budget_period_yearly' => '연간', - 'auto_budget_help' => '이 기능에 대한 자세한 내용은 도움말에서 확인할 수 있습니다. 오른쪽 상단의 (?) 아이콘을 클릭합니다.', - 'auto_budget_reset_icon' => '이 예산은 주기적으로 설정됩니다.', - 'auto_budget_rollover_icon' => '예산 금액은 주기적으로 증가합니다.', - 'auto_budget_adjusted_icon' => '예산 금액은 주기적으로 증가하고, 초과지출을 수정합니다.', - 'remove_budgeted_amount' => ':currency에서 예산 금액 제거', + 'daily_budgets' => '일일 예산', + 'weekly_budgets' => '주간 예산', + 'monthly_budgets' => '월간 예산', + 'quarterly_budgets' => '분기별 예산', + 'half_year_budgets' => '반기 예산', + 'yearly_budgets' => '연간 예산', + 'other_budgets' => '사용자 정의 시간 예산', + 'budget_limit_not_in_range' => '이 금액은 :start부터 :end까지 적용됩니다', + 'total_available_budget' => '사용 가능한 총 예산 (:start에서 :end 사이)', + 'total_available_budget_in_currency' => ':currency로 사용 가능한 총 예산', + 'see_below' => '아래를 참조하세요.', + 'create_new_budget' => '새로운 예산 생성', + 'store_new_budget' => '새 예산 저장', + 'stored_new_budget' => '새 예산 ":name" 저장됨', + 'available_between' => ':start와 :end 사이에서 사용 가능', + 'transactionsWithoutBudget' => '예산이 없는 지출', + 'transactions_no_budget' => ':start과 :end 사이에 예산이 없는 지출', + 'spent_between' => ':start와 :end 사이에 이미 사용되었습니다', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => '사용 가능한 금액 설정', + 'update_available_amount' => '사용 가능한 금액 업데이트', + 'ab_basic_modal_explain' => '이 양식을 사용하여 지정한 기간에 예산을 책정할 수 있을 것으로 예상되는 금액(총액, :currency)을 표시하세요.', + 'createBudget' => '새 예산', + 'invalid_currency' => '유효하지 않은 통화입니다', + 'invalid_amount' => '금액을 입력하세요', + 'set_ab' => '사용 가능한 예산 금액이 설정되었습니다', + 'updated_ab' => '사용 가능한 예산 금액이 업데이트되었습니다', + 'deleted_ab' => '사용 가능한 예산 금액이 삭제되었습니다', + 'deleted_bl' => '예산 금액이 제거되었습니다', + 'alt_currency_ab_create' => '사용 가능한 예산을 다른 통화로 설정', + 'bl_create_btn' => '다른 통화로 예산 설정', + 'inactiveBudgets' => '비활성 예산', + 'without_budget_between' => ':start과 :end 사이에 예산이 없는 거래', + 'delete_budget' => '":name" 예산 삭제', + 'deleted_budget' => '":name" 예산 삭제됨', + 'edit_budget' => '":name" 예산 수정', + 'updated_budget' => '":name" 예산 업데이트됨', + 'update_amount' => '금액 업데이트', + 'update_budget' => '예산 업데이트', + 'update_budget_amount_range' => ':start과 :end 사이의 사용 가능한 금액 업데이트 (예상)', + 'set_budget_limit_title' => ':start과 :end 사이에 예산 :budget에 대한 예산 금액 설정', + 'set_budget_limit' => '예산 금액 설정', + 'budget_period_navigator' => '기간 탐색기', + 'info_on_available_amount' => '무엇을 사용할 수 있나요?', + 'available_amount_indication' => '이 금액을 사용하여 총 예산이 얼마인지 파악할 수 있습니다.', + 'suggested' => '추천', + 'average_between' => ':start과 :end 사이의 평균', + 'transferred_in' => '전송됨 (입)', + 'transferred_away' => '전송됨 (출)', + 'auto_budget_none' => '자동 예산 없음', + 'auto_budget_reset' => '매 기간마다 고정 금액 설정', + 'auto_budget_rollover' => '기간마다 금액 추가', + 'auto_budget_adjusted' => '초과 지출을 수정하기 위해 매 기간마다 금액을 추가합니다.', + 'auto_budget_period_daily' => '매일', + 'auto_budget_period_weekly' => '매주', + 'auto_budget_period_monthly' => '월간', + 'auto_budget_period_quarterly' => '분기별', + 'auto_budget_period_half_year' => '반년마다', + 'auto_budget_period_yearly' => '연간', + 'auto_budget_help' => '이 기능에 대한 자세한 내용은 도움말에서 확인할 수 있습니다. 오른쪽 상단의 (?) 아이콘을 클릭합니다.', + 'auto_budget_reset_icon' => '이 예산은 주기적으로 설정됩니다.', + 'auto_budget_rollover_icon' => '예산 금액은 주기적으로 증가합니다.', + 'auto_budget_adjusted_icon' => '예산 금액은 주기적으로 증가하고, 초과지출을 수정합니다.', + 'remove_budgeted_amount' => ':currency에서 예산 금액 제거', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => '이 기간에는 예상되지 않음', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => '아니요 (아직)', - 'visit_bill' => 'Firefly III에서 ":name" 청구서 방문하기', - 'match_between_amounts' => '청구서는 :low와 :high 사이의 거래를 일치시킵니다.', - 'running_again_loss' => '이전에 이 청구서에 연결된 거래가 더 이상 규칙과 일치하지 않는 경우 연결이 끊어질 수 있습니다.', - 'bill_related_rules' => '이 청구서와 관련된 규칙', - 'repeats' => '반복', - 'bill_end_date_help' => '선택 필드입니다. 청구서는 이 날짜에 종료될 예정입니다.', - 'bill_extension_date_help' => '선택 필드입니다. 청구서는 이 날짜 또는 그 이전에 연장(또는 취소)되어야 합니다.', - 'bill_end_index_line' => '이 청구서는 :date에 종료됩니다', - 'bill_extension_index_line' => '이 청구서는 :date에 연장 또는 취소되어야 합니다', - 'connected_journals' => '연결된 거래', - 'auto_match_on' => 'Firefly III에 의해 자동 매칭', - 'auto_match_off' => 'Firefly III에 의해 자동 매칭되지 않음', - 'next_expected_match' => '다음 예상 지불일', - 'delete_bill' => '":name" 청구서 삭제', - 'deleted_bill' => '":name" 청구서 삭제됨', - 'edit_bill' => '":name" 청구서 수정', - 'more' => '더보기', - 'rescan_old' => '모든 거래에서 규칙을 다시 실행합니다', - 'update_bill' => '청구서 업데이트', - 'updated_bill' => '":name" 청구서 업데이트됨', - 'store_new_bill' => '새 청구서 저장', - 'stored_new_bill' => '저장된 새 ":name" 청구서', - 'cannot_scan_inactive_bill' => '비활성 청구서는 스캔할 수 없습니다.', - 'rescanned_bill' => '모두 다시 스캔하고 :count개의 거래를 청구서에 연결했습니다.|모두 다시 스캔하고 :count개의 거래를 청구서에 연결했습니다.', - 'average_bill_amount_year' => '평균 청구서 금액 (:year)', - 'average_bill_amount_overall' => '평균 청구서 금액 (전체)', - 'bill_is_active' => '청구서가 활성 상태입니다', - 'bill_expected_between' => ':start와 :end 사이에 예상됨', - 'bill_will_automatch' => '청구서는 일치하는 거래에 자동으로 연결됩니다', - 'skips_over' => '건너뛰기', - 'bill_store_error' => '새 청구서를 저장하는 동안 예기치 않은 오류가 발생했습니다. 로그 파일을 확인해 주세요.', - 'list_inactive_rule' => '비활성 규칙', - 'bill_edit_rules' => 'Firefly III가 이 청구서와 관련된 규칙도 수정하려고 시도합니다. 그러나 이 규칙을 직접 수정한 경우 Firefly III는 아무 것도 변경하지 않습니다.| Firefly III는 이 청구서와 관련된 :count개의 규칙도 편집하려고 시도합니다. 그러나 이러한 규칙을 직접 편집한 경우 Firefly III는 아무것도 변경하지 않습니다.', - 'bill_expected_date' => ':date 예정', - 'bill_expected_date_js' => '{date} 예정', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => '{date}에 결제', - 'bill_repeats_weekly' => '매주 반복', - 'bill_repeats_monthly' => '매달 반복', - 'bill_repeats_quarterly' => '분기별 반복', - 'bill_repeats_half-year' => '반년마다 반복', - 'bill_repeats_yearly' => '매년 반복', - 'bill_repeats_weekly_other' => '격주 반복', - 'bill_repeats_monthly_other' => '격월 반복', - 'bill_repeats_quarterly_other' => '격분기 반복', - 'bill_repeats_half-year_other' => '매년 반복', - 'bill_repeats_yearly_other' => '격년 반복', - 'bill_repeats_weekly_skip' => '{skip} 주마다 반복', - 'bill_repeats_monthly_skip' => '{skip} 월마다 반복', - 'bill_repeats_quarterly_skip' => '{skip} 분기마다 반복', - 'bill_repeats_half-year_skip' => '{skip} 반년마다 반복', - 'bill_repeats_yearly_skip' => '{skip} 년마다 반복', - 'subscriptions' => '구독', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => '무기한', - 'extension_date_is' => '연장 날짜는 {date}입니다', + 'subscription' => 'Subscription', + 'not_expected_period' => '이 기간에는 예상되지 않음', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => '아니요 (아직)', + 'visit_bill' => 'Firefly III에서 ":name" 청구서 방문하기', + 'match_between_amounts' => '청구서는 :low와 :high 사이의 거래를 일치시킵니다.', + 'running_again_loss' => '이전에 이 청구서에 연결된 거래가 더 이상 규칙과 일치하지 않는 경우 연결이 끊어질 수 있습니다.', + 'bill_related_rules' => '이 청구서와 관련된 규칙', + 'repeats' => '반복', + 'bill_end_date_help' => '선택 필드입니다. 청구서는 이 날짜에 종료될 예정입니다.', + 'bill_extension_date_help' => '선택 필드입니다. 청구서는 이 날짜 또는 그 이전에 연장(또는 취소)되어야 합니다.', + 'bill_end_index_line' => '이 청구서는 :date에 종료됩니다', + 'bill_extension_index_line' => '이 청구서는 :date에 연장 또는 취소되어야 합니다', + 'connected_journals' => '연결된 거래', + 'auto_match_on' => 'Firefly III에 의해 자동 매칭', + 'auto_match_off' => 'Firefly III에 의해 자동 매칭되지 않음', + 'next_expected_match' => '다음 예상 지불일', + 'delete_bill' => '":name" 청구서 삭제', + 'deleted_bill' => '":name" 청구서 삭제됨', + 'edit_bill' => '":name" 청구서 수정', + 'more' => '더보기', + 'rescan_old' => '모든 거래에서 규칙을 다시 실행합니다', + 'update_bill' => '청구서 업데이트', + 'updated_bill' => '":name" 청구서 업데이트됨', + 'store_new_bill' => '새 청구서 저장', + 'stored_new_bill' => '저장된 새 ":name" 청구서', + 'cannot_scan_inactive_bill' => '비활성 청구서는 스캔할 수 없습니다.', + 'rescanned_bill' => '모두 다시 스캔하고 :count개의 거래를 청구서에 연결했습니다.|모두 다시 스캔하고 :count개의 거래를 청구서에 연결했습니다.', + 'average_bill_amount_year' => '평균 청구서 금액 (:year)', + 'average_bill_amount_overall' => '평균 청구서 금액 (전체)', + 'bill_is_active' => '청구서가 활성 상태입니다', + 'bill_expected_between' => ':start와 :end 사이에 예상됨', + 'bill_will_automatch' => '청구서는 일치하는 거래에 자동으로 연결됩니다', + 'skips_over' => '건너뛰기', + 'bill_store_error' => '새 청구서를 저장하는 동안 예기치 않은 오류가 발생했습니다. 로그 파일을 확인해 주세요.', + 'list_inactive_rule' => '비활성 규칙', + 'bill_edit_rules' => 'Firefly III가 이 청구서와 관련된 규칙도 수정하려고 시도합니다. 그러나 이 규칙을 직접 수정한 경우 Firefly III는 아무 것도 변경하지 않습니다.| Firefly III는 이 청구서와 관련된 :count개의 규칙도 편집하려고 시도합니다. 그러나 이러한 규칙을 직접 편집한 경우 Firefly III는 아무것도 변경하지 않습니다.', + 'bill_expected_date' => ':date 예정', + 'bill_expected_date_js' => '{date} 예정', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => '{date}에 결제', + 'bill_repeats_weekly' => '매주 반복', + 'bill_repeats_monthly' => '매달 반복', + 'bill_repeats_quarterly' => '분기별 반복', + 'bill_repeats_half-year' => '반년마다 반복', + 'bill_repeats_yearly' => '매년 반복', + 'bill_repeats_weekly_other' => '격주 반복', + 'bill_repeats_monthly_other' => '격월 반복', + 'bill_repeats_quarterly_other' => '격분기 반복', + 'bill_repeats_half-year_other' => '매년 반복', + 'bill_repeats_yearly_other' => '격년 반복', + 'bill_repeats_weekly_skip' => '{skip} 주마다 반복', + 'bill_repeats_monthly_skip' => '{skip} 월마다 반복', + 'bill_repeats_quarterly_skip' => '{skip} 분기마다 반복', + 'bill_repeats_half-year_skip' => '{skip} 반년마다 반복', + 'bill_repeats_yearly_skip' => '{skip} 년마다 반복', + 'subscriptions' => '구독', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => '무기한', + 'extension_date_is' => '연장 날짜는 {date}입니다', // accounts: - 'i_am_owed_amount' => '미납 금액', - 'i_owe_amount' => '미납 금액', - 'inactive_account_link' => '비활성(보관된) 계정이 :count개가 있으며, 이 별도 페이지에서 확인할 수 있습니다.|비활성(보관된) 계정이 :count개가 있으며, 이 별도 페이지에서 확인할 수 있습니다.', - 'all_accounts_inactive' => '귀하의 비활성 계정입니다.', - 'active_account_link' => '이 링크는 활성 계정으로 돌아갑니다.', - 'account_missing_transaction' => '계정 #:id(":name")를 직접 볼 수 없지만 Firefly에 리디렉션 정보가 누락되어 있습니다.', - 'cc_monthly_payment_date_help' => '연도와 월을 선택해도 무시됩니다. 해당 월의 날짜만 관련이 있습니다.', - 'details_for_asset' => '자산 계정 ":name"에 대한 세부 정보', - 'details_for_expense' => '지출 계정 ":name"에 대한 세부 정보', - 'details_for_revenue' => '수익 계정 ":name"에 대한 세부 정보', - 'details_for_cash' => '현금 계정 ":name"에 대한 세부 정보', - 'store_new_asset_account' => '새 자산 계정 저장', - 'store_new_expense_account' => '새 지출 계정 저장', - 'store_new_revenue_account' => '새 수익 계정 저장', - 'edit_asset_account' => '":name" 자산 계정 수정', - 'edit_expense_account' => '":name" 지출 계정 수정', - 'edit_revenue_account' => '":name" 수익 계정 수정', - 'delete_asset_account' => '":name" 자산 계정 삭제', - 'delete_expense_account' => '":name" 지출 계정 삭제', - 'delete_revenue_account' => '":name" 수익 계정 삭제', - 'delete_liabilities_account' => '":name" 부채 삭제', - 'asset_deleted' => '":name" 자산 계정 삭제 성공', - 'account_deleted' => '":name" 계정 삭제 성공', - 'expense_deleted' => '":name" 지출 계정 삭제 성공', - 'revenue_deleted' => '":name" 수익 계정 삭제 성공', - 'update_asset_account' => '자산 계정 업데이트', - 'update_undefined_account' => '계정 업데이트', - 'update_liabilities_account' => '부채 업데이트', - 'update_expense_account' => '지출 계정 업데이트', - 'update_revenue_account' => '수익 계정 업데이트', - 'make_new_asset_account' => '새 자산 계정 생성', - 'make_new_expense_account' => '새 지출 계정 생성', - 'make_new_revenue_account' => '새 수익 계정 생성', - 'make_new_liabilities_account' => '새 부채 생성', - 'asset_accounts' => '자산 계정', - 'undefined_accounts' => '계정', - 'asset_accounts_inactive' => '자산 계정 (비활성)', - 'expense_account' => '지출 계정', - 'expense_accounts' => '지출 계정', - 'expense_accounts_inactive' => '지출 계정 (비활성)', - 'revenue_account' => '수익 계정', - 'revenue_accounts' => '수익 계정', - 'revenue_accounts_inactive' => '수익 계정 (비활성)', - 'cash_accounts' => '현금 계정', - 'Cash account' => '현금 계정', - 'liabilities_accounts' => '부채', - 'liabilities_accounts_inactive' => '부채 (비활성)', - 'reconcile_account' => '":account" 계정 조정', - 'overview_of_reconcile_modal' => '조정 개요', - 'delete_reconciliation' => '조정 삭제', - 'update_reconciliation' => '조정 업데이트', - 'amount_cannot_be_zero' => '금액은 0이 될 수 없습니다', - 'end_of_reconcile_period' => '조정 기간 종료: :period', - 'start_of_reconcile_period' => '조정 기간 시작: :period', - 'start_balance' => '시작 잔액', - 'end_balance' => '종료 잔액', - 'update_balance_dates_instruction' => '위의 금액과 날짜를 은행 명세서와 일치시키고 \'조정 시작\'을 누릅니다.', - 'select_transactions_instruction' => '은행 명세서에 표시되는 거래를 선택합니다.', - 'select_range_and_balance' => '먼저 날짜 범위와 잔액을 확인합니다. 그런 다음 "조정 시작"을 누릅니다.', - 'date_change_instruction' => '지금 날짜 범위를 변경하면 진행 상황을 모두 잃어버립니다.', - 'update_selection' => '선택 항목 업데이트', - 'store_reconcile' => '조정 저장', - 'reconciliation_transaction' => '조정 거래', - 'Reconciliation' => '조정', - 'reconciliation' => '조정', - 'reconcile_options' => '조정 옵션', - 'reconcile_range' => '조정 범위', - 'start_reconcile' => '조정 시작', - 'cash_account_type' => '현금', - 'cash' => '현금', - 'cant_find_redirect_account' => 'Firefly III가 리디렉션을 시도했지만 실패했습니다. 죄송합니다. 색인으로 돌아갑니다.', - 'account_type' => '계정 유형', - 'save_transactions_by_moving' => '이 거래를 다른 계정으로 이동하여 저장:|이 거래들을 다른 계정으로 이동하여 저장:', - 'save_transactions_by_moving_js' => '거래가 없음|이 거래를 다른 계정으로 이동하여 저장합니다.|이 거래들을 다른 계정으로 이동하여 저장합니다.', - 'stored_new_account' => '새 계정 ":name"이 저장되었습니다!', - 'stored_new_account_js' => '새로운 "{name}" 계정이 저장되었습니다!', - 'updated_account' => '":name" 계정 업데이트됨', - 'updated_account_js' => '"{title}" 계정이 업데이트 되었습니다.', - 'credit_card_options' => '신용 카드 옵션', - 'no_transactions_account' => '자산 계정 ":name"에 대한 거래가 (이 기간 동안) 없습니다.', - 'no_transactions_period' => '(이 기간 동안) 거래가 없습니다.', - 'no_data_for_chart' => '이 차트를 생성하기 위한 정보가 (아직) 충분하지 않습니다.', - 'select_at_least_one_account' => '자산 계정을 하나 이상 선택해 주세요', - 'select_at_least_one_category' => '카테고리를 하나 이상 선택해 주세요', - 'select_at_least_one_budget' => '예산을 하나 이상 선택해 주세요', - 'select_at_least_one_tag' => '태그를 하나 이상 선택해 주세요', - 'select_at_least_one_expense' => '비용/수익 계정 조합을 하나 이상 선택해 주세요. 없는 경우(목록이 비어 있는 경우) 이 보고서를 사용할 수 없습니다.', - 'account_default_currency' => '이것은 이 계정과 연결된 기본 통화가 됩니다.', - 'reconcile_has_more' => 'Firefly III 원장에 은행에서 청구한 금액보다 더 많은 금액이 있습니다. 몇 가지 옵션이 있습니다. 수행할 작업을 선택하십시오. 그런 다음 "조정 확인"을 누릅니다.', - 'reconcile_has_less' => 'Firefly III 원장에 은행에서 청구한 금액보다 더 적은 금액이 있습니다. 몇 가지 옵션이 있습니다. 수행할 작업을 선택하십시오. 그런 다음 "조정 확인"을 누릅니다.', - 'reconcile_is_equal' => 'Firefly III 원장과 은행 명세서가 일치합니다. 추가로 할 일이 없습니다. "조정 확인"을 눌러 입력 내용을 확인하십시오.', - 'create_pos_reconcile_transaction' => '선택한 거래를 지우고 이 자산 계정에 :amount을 추가하는 정정을 생성합니다.', - 'create_neg_reconcile_transaction' => '선택한 거래를 지우고 이 자산 계정에서 :amount을 제거하는 정정을 생성합니다.', - 'reconcile_do_nothing' => '선택한 거래를 지우지만 수정하지는 않습니다.', - 'reconcile_go_back' => '나중에 언제든지 수정 내용을 수정하거나 삭제할 수 있습니다.', - 'must_be_asset_account' => '자산 계정만 조정할 수 있습니다', - 'reconciliation_stored' => '조정이 저장됨', - 'reconciliation_error' => '거래가 조정된 것으로 표시되었지만 오류로 인해 수정 사항이 저장되지 않았습니다: :error', - 'reconciliation_transaction_title' => '조정 (:from에서 :to로)', - 'sum_of_reconciliation' => '조정 합계', - 'reconcile_this_account' => '이 계정 조정하기', - 'reconcile' => '조정', - 'show' => '표시', - 'confirm_reconciliation' => '조정 확인', - 'submitted_start_balance' => '제출된 시작 잔고', - 'selected_transactions' => '선택한 거래 (:count)', - 'already_cleared_transactions' => '이미 지워진 거래 (:count)', - 'submitted_end_balance' => '제출된 최종 잔고', - 'initial_balance_description' => '":account"의 초기 잔고', - 'liability_credit_description' => '":account"에 대한 부채 크레딧', - 'interest_calc_' => '알 수 없음', - 'interest_calc_daily' => '일별', - 'interest_calc_monthly' => '월별', - 'interest_calc_yearly' => '연간', - 'interest_calc_weekly' => '주당', - 'interest_calc_half-year' => '반기당', - 'interest_calc_quarterly' => '분기당', - 'initial_balance_account' => ':account의 초기 잔액 계정', - 'list_options' => '목록 옵션', + 'i_am_owed_amount' => '미납 금액', + 'i_owe_amount' => '미납 금액', + 'inactive_account_link' => '비활성(보관된) 계정이 :count개가 있으며, 이 별도 페이지에서 확인할 수 있습니다.|비활성(보관된) 계정이 :count개가 있으며, 이 별도 페이지에서 확인할 수 있습니다.', + 'all_accounts_inactive' => '귀하의 비활성 계정입니다.', + 'active_account_link' => '이 링크는 활성 계정으로 돌아갑니다.', + 'account_missing_transaction' => '계정 #:id(":name")를 직접 볼 수 없지만 Firefly에 리디렉션 정보가 누락되어 있습니다.', + 'cc_monthly_payment_date_help' => '연도와 월을 선택해도 무시됩니다. 해당 월의 날짜만 관련이 있습니다.', + 'details_for_asset' => '자산 계정 ":name"에 대한 세부 정보', + 'details_for_expense' => '지출 계정 ":name"에 대한 세부 정보', + 'details_for_revenue' => '수익 계정 ":name"에 대한 세부 정보', + 'details_for_cash' => '현금 계정 ":name"에 대한 세부 정보', + 'store_new_asset_account' => '새 자산 계정 저장', + 'store_new_expense_account' => '새 지출 계정 저장', + 'store_new_revenue_account' => '새 수익 계정 저장', + 'edit_asset_account' => '":name" 자산 계정 수정', + 'edit_expense_account' => '":name" 지출 계정 수정', + 'edit_revenue_account' => '":name" 수익 계정 수정', + 'delete_asset_account' => '":name" 자산 계정 삭제', + 'delete_expense_account' => '":name" 지출 계정 삭제', + 'delete_revenue_account' => '":name" 수익 계정 삭제', + 'delete_liabilities_account' => '":name" 부채 삭제', + 'asset_deleted' => '":name" 자산 계정 삭제 성공', + 'account_deleted' => '":name" 계정 삭제 성공', + 'expense_deleted' => '":name" 지출 계정 삭제 성공', + 'revenue_deleted' => '":name" 수익 계정 삭제 성공', + 'update_asset_account' => '자산 계정 업데이트', + 'update_undefined_account' => '계정 업데이트', + 'update_liabilities_account' => '부채 업데이트', + 'update_expense_account' => '지출 계정 업데이트', + 'update_revenue_account' => '수익 계정 업데이트', + 'make_new_asset_account' => '새 자산 계정 생성', + 'make_new_expense_account' => '새 지출 계정 생성', + 'make_new_revenue_account' => '새 수익 계정 생성', + 'make_new_liabilities_account' => '새 부채 생성', + 'asset_accounts' => '자산 계정', + 'undefined_accounts' => '계정', + 'asset_accounts_inactive' => '자산 계정 (비활성)', + 'expense_account' => '지출 계정', + 'expense_accounts' => '지출 계정', + 'expense_accounts_inactive' => '지출 계정 (비활성)', + 'revenue_account' => '수익 계정', + 'revenue_accounts' => '수익 계정', + 'revenue_accounts_inactive' => '수익 계정 (비활성)', + 'cash_accounts' => '현금 계정', + 'Cash account' => '현금 계정', + 'liabilities_accounts' => '부채', + 'liabilities_accounts_inactive' => '부채 (비활성)', + 'reconcile_account' => '":account" 계정 조정', + 'overview_of_reconcile_modal' => '조정 개요', + 'delete_reconciliation' => '조정 삭제', + 'update_reconciliation' => '조정 업데이트', + 'amount_cannot_be_zero' => '금액은 0이 될 수 없습니다', + 'end_of_reconcile_period' => '조정 기간 종료: :period', + 'start_of_reconcile_period' => '조정 기간 시작: :period', + 'start_balance' => '시작 잔액', + 'end_balance' => '종료 잔액', + 'update_balance_dates_instruction' => '위의 금액과 날짜를 은행 명세서와 일치시키고 \'조정 시작\'을 누릅니다.', + 'select_transactions_instruction' => '은행 명세서에 표시되는 거래를 선택합니다.', + 'select_range_and_balance' => '먼저 날짜 범위와 잔액을 확인합니다. 그런 다음 "조정 시작"을 누릅니다.', + 'date_change_instruction' => '지금 날짜 범위를 변경하면 진행 상황을 모두 잃어버립니다.', + 'update_selection' => '선택 항목 업데이트', + 'store_reconcile' => '조정 저장', + 'reconciliation_transaction' => '조정 거래', + 'Reconciliation' => '조정', + 'reconciliation' => '조정', + 'reconcile_options' => '조정 옵션', + 'reconcile_range' => '조정 범위', + 'start_reconcile' => '조정 시작', + 'cash_account_type' => '현금', + 'cash' => '현금', + 'cant_find_redirect_account' => 'Firefly III가 리디렉션을 시도했지만 실패했습니다. 죄송합니다. 색인으로 돌아갑니다.', + 'account_type' => '계정 유형', + 'save_transactions_by_moving' => '이 거래를 다른 계정으로 이동하여 저장:|이 거래들을 다른 계정으로 이동하여 저장:', + 'save_transactions_by_moving_js' => '거래가 없음|이 거래를 다른 계정으로 이동하여 저장합니다.|이 거래들을 다른 계정으로 이동하여 저장합니다.', + 'stored_new_account' => '새 계정 ":name"이 저장되었습니다!', + 'stored_new_account_js' => '새로운 "{name}" 계정이 저장되었습니다!', + 'updated_account' => '":name" 계정 업데이트됨', + 'updated_account_js' => '"{title}" 계정이 업데이트 되었습니다.', + 'credit_card_options' => '신용 카드 옵션', + 'no_transactions_account' => '자산 계정 ":name"에 대한 거래가 (이 기간 동안) 없습니다.', + 'no_transactions_period' => '(이 기간 동안) 거래가 없습니다.', + 'no_data_for_chart' => '이 차트를 생성하기 위한 정보가 (아직) 충분하지 않습니다.', + 'select_at_least_one_account' => '자산 계정을 하나 이상 선택해 주세요', + 'select_at_least_one_category' => '카테고리를 하나 이상 선택해 주세요', + 'select_at_least_one_budget' => '예산을 하나 이상 선택해 주세요', + 'select_at_least_one_tag' => '태그를 하나 이상 선택해 주세요', + 'select_at_least_one_expense' => '비용/수익 계정 조합을 하나 이상 선택해 주세요. 없는 경우(목록이 비어 있는 경우) 이 보고서를 사용할 수 없습니다.', + 'account_default_currency' => '이것은 이 계정과 연결된 기본 통화가 됩니다.', + 'reconcile_has_more' => 'Firefly III 원장에 은행에서 청구한 금액보다 더 많은 금액이 있습니다. 몇 가지 옵션이 있습니다. 수행할 작업을 선택하십시오. 그런 다음 "조정 확인"을 누릅니다.', + 'reconcile_has_less' => 'Firefly III 원장에 은행에서 청구한 금액보다 더 적은 금액이 있습니다. 몇 가지 옵션이 있습니다. 수행할 작업을 선택하십시오. 그런 다음 "조정 확인"을 누릅니다.', + 'reconcile_is_equal' => 'Firefly III 원장과 은행 명세서가 일치합니다. 추가로 할 일이 없습니다. "조정 확인"을 눌러 입력 내용을 확인하십시오.', + 'create_pos_reconcile_transaction' => '선택한 거래를 지우고 이 자산 계정에 :amount을 추가하는 정정을 생성합니다.', + 'create_neg_reconcile_transaction' => '선택한 거래를 지우고 이 자산 계정에서 :amount을 제거하는 정정을 생성합니다.', + 'reconcile_do_nothing' => '선택한 거래를 지우지만 수정하지는 않습니다.', + 'reconcile_go_back' => '나중에 언제든지 수정 내용을 수정하거나 삭제할 수 있습니다.', + 'must_be_asset_account' => '자산 계정만 조정할 수 있습니다', + 'reconciliation_stored' => '조정이 저장됨', + 'reconciliation_error' => '거래가 조정된 것으로 표시되었지만 오류로 인해 수정 사항이 저장되지 않았습니다: :error', + 'reconciliation_transaction_title' => '조정 (:from에서 :to로)', + 'sum_of_reconciliation' => '조정 합계', + 'reconcile_this_account' => '이 계정 조정하기', + 'reconcile' => '조정', + 'show' => '표시', + 'confirm_reconciliation' => '조정 확인', + 'submitted_start_balance' => '제출된 시작 잔고', + 'selected_transactions' => '선택한 거래 (:count)', + 'already_cleared_transactions' => '이미 지워진 거래 (:count)', + 'submitted_end_balance' => '제출된 최종 잔고', + 'initial_balance_description' => '":account"의 초기 잔고', + 'liability_credit_description' => '":account"에 대한 부채 크레딧', + 'interest_calc_' => '알 수 없음', + 'interest_calc_daily' => '일별', + 'interest_calc_monthly' => '월별', + 'interest_calc_yearly' => '연간', + 'interest_calc_weekly' => '주당', + 'interest_calc_half-year' => '반기당', + 'interest_calc_quarterly' => '분기당', + 'initial_balance_account' => ':account의 초기 잔액 계정', + 'list_options' => '목록 옵션', // categories: - 'new_category' => '새 카테고리', - 'create_new_category' => '새 카테고리 생성', - 'without_category' => '카테고리 없음', - 'update_category' => '카테고리 업데이트', - 'updated_category' => '":name" 카테고리 업데이트됨', - 'categories' => '카테고리', - 'edit_category' => '":name" 카테고리 수정', - 'no_category' => '(카테고리 없음)', - 'unknown_category_plain' => '카테고리 없음', - 'category' => '카테고리', - 'delete_category' => '":name" 카테고리 삭제', - 'deleted_category' => '":name" 카테고리 삭제됨', - 'store_category' => '새 카테고리 저장', - 'stored_category' => '새로운":name" 카테고리가 저장되었습니다', - 'without_category_between' => ':start와 :end 사이에 카테고리가 없음', + 'new_category' => '새 카테고리', + 'create_new_category' => '새 카테고리 생성', + 'without_category' => '카테고리 없음', + 'update_category' => '카테고리 업데이트', + 'updated_category' => '":name" 카테고리 업데이트됨', + 'categories' => '카테고리', + 'edit_category' => '":name" 카테고리 수정', + 'no_category' => '(카테고리 없음)', + 'unknown_category_plain' => '카테고리 없음', + 'category' => '카테고리', + 'delete_category' => '":name" 카테고리 삭제', + 'deleted_category' => '":name" 카테고리 삭제됨', + 'store_category' => '새 카테고리 저장', + 'stored_category' => '새로운":name" 카테고리가 저장되었습니다', + 'without_category_between' => ':start와 :end 사이에 카테고리가 없음', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => '출금 업데이트', - 'update_deposit' => '입금 업데이트', - 'update_transaction' => '거래 업데이트', - 'update_transfer' => '이체 업데이트', - 'updated_withdrawal' => '":description" 출금이 업데이트됨', - 'updated_deposit' => '":description" 입금이 업데이트됨', - 'updated_transfer' => '":description" 이체가 업데이트됨', - 'no_changes_withdrawal' => '":description" 출금이 변경되지 않았습니다.', - 'no_changes_deposit' => '":description" 입금이 변경되지 않았습니다.', - 'no_changes_transfer' => '":description" 이체가 변경되지 않았습니다.', - 'delete_withdrawal' => '":description" 출금 삭제', - 'delete_deposit' => '":description" 입금 삭제', - 'delete_transfer' => '":description" 이체 삭제', - 'deleted_withdrawal' => '":description" 출금 삭제 성공', - 'deleted_deposit' => '":description" 입금 삭제 성공', - 'deleted_transfer' => '":description" 이체 삭제 성공', - 'deleted_reconciliation' => '":description" 조정 거래 삭제 성공', - 'stored_journal' => '새로운 ":description" 거래 생성 성공', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => '새로운 거래 생성 성공', - 'updated_journal_no_descr' => '거래 업데이트 성공', - 'select_transactions' => '거래 선택', - 'rule_group_select_transactions' => '거래에 ":title" 적용', - 'rule_select_transactions' => '거래에 ":title" 적용', - 'stop_selection' => '거래 선택 중지', - 'reconcile_selected' => '조정', - 'mass_delete_journals' => '여러 거래 삭제', - 'mass_edit_journals' => '여러 거래 수정', - 'mass_bulk_journals' => '여러 거래 일괄 수정', - 'mass_bulk_journals_explain' => '이 양식을 사용하면 아래 나열된 거래의 속성을 한 번에 업데이트할 수 있습니다. 여기에 표시되는 매개변수를 변경하면 표에 있는 모든 거래가 업데이트됩니다.', - 'part_of_split' => '이 거래는 분할된 거래 중 일부입니다. 모든 분할을 선택하지 않은 경우 거래의 절반만 변경될 수 있습니다.', - 'bulk_set_new_values' => '아래 입력을 사용하여 새 값을 설정합니다. 입력란을 비워두면 모두에게 비워집니다. 또한 출금에 대해서만 예산이 부여된다는 점에 유의하세요.', - 'no_bulk_category' => '카테고리 업데이트 안 함', - 'no_bulk_budget' => '예산 업데이트 안 함', - 'no_bulk_tags' => '태그 업데이트 안 함', - 'replace_with_these_tags' => '다음 태그로 바꾸기', - 'append_these_tags' => '다음 태그 추가', - 'mass_edit' => '선택한 항목 개별 편집', - 'bulk_edit' => '선택한 항목 일괄 편집', - 'mass_delete' => '선택항목 삭제', - 'cannot_edit_other_fields' => '표시할 공간이 없어서 여기에 표시된 항목 이외의 다른 항목은 대량 편집할 수 없습니다. 이러한 항목을 편집하려면 링크를 따라 하나씩 편집하세요.', - 'cannot_change_amount_reconciled' => '조정된 거래 금액은 변경할 수 없습니다.', - 'no_budget' => '(예산 없음)', - 'no_bill' => '(청구서 없음)', - 'account_per_budget' => '예산당 계정', - 'account_per_category' => '카테고리당 계정', - 'create_new_object' => '생성', - 'empty' => '(비어 있음)', - 'all_other_budgets' => '(다른 모든 예산)', - 'all_other_accounts' => '(다른 모든 계정)', - 'expense_per_source_account' => '소스 계정당 지출', - 'expense_per_destination_account' => '대상 계정당 지출', - 'income_per_destination_account' => '대상 계정당 수입', - 'spent_in_specific_category' => '":category" 카테고리의 지출', - 'earned_in_specific_category' => '":category" 카테고리의 수입', - 'spent_in_specific_tag' => '":tag" 태그의 지출', - 'earned_in_specific_tag' => '":tag" 태그의 수입', - 'income_per_source_account' => '소스 계정당 수입', - 'average_spending_per_destination' => '대상 계정당 평균 지출', - 'average_spending_per_source' => '소스 계정당 평균 지출', - 'average_earning_per_source' => '소스 계정당 평균 수익', - 'average_earning_per_destination' => '대상 계정당 평균 수익', - 'account_per_tag' => '태그당 계정', - 'tag_report_expenses_listed_once' => '지출과 수입은 두 번 표시되지 않습니다. 거래에 여러 개의 태그가 있는 경우 해당 태그 중 하나만 표시될 수 있습니다. 이 목록에는 데이터가 누락된 것처럼 보일 수 있지만 금액은 정확합니다.', - 'double_report_expenses_charted_once' => '지출과 수입은 두 번 표시되지 않습니다. 거래에 여러 개의 태그가 있는 경우 해당 태그 중 하나에만 표시될 수 있습니다. 이 차트에는 데이터가 누락된 것처럼 보일 수 있지만 금액은 정확합니다.', - 'tag_report_chart_single_tag' => '이 차트는 단일 태그에 적용됩니다. 거래에 여러 개의 태그가 있는 경우 여기에 표시되는 내용이 다른 태그의 차트에도 반영될 수 있습니다.', - 'tag' => '태그', - 'no_budget_squared' => '(예산 없음)', - 'perm-delete-many' => '한 번에 많은 항목을 삭제하면 매우 혼란스러울 수 있으니 주의하시기 바랍니다. 이 페이지에서 분할 거래의 일부만 삭제할 수 있으므로 주의하세요.', - 'mass_deleted_transactions_success' => ':count개 거래가 삭제되었습니다.|:count개 거래가 삭제되었습니다.', - 'mass_edited_transactions_success' => ':count개 거래가 업데이트되었습니다.|:count개 거래가 업데이트되었습니다.', - 'opt_group_' => '(계정 유형 없음)', - 'opt_group_no_account_type' => '(계정 유형 없음)', - 'opt_group_defaultAsset' => '기본 자산 계정', - 'opt_group_savingAsset' => '예금 계좌', - 'opt_group_sharedAsset' => '공유 자산 계정', - 'opt_group_ccAsset' => '신용카드', - 'opt_group_cashWalletAsset' => '현금 지갑', - 'opt_group_expense_account' => '지출 계정', - 'opt_group_revenue_account' => '수익 계정', - 'opt_group_l_Loan' => '부채: 대출', - 'opt_group_cash_account' => '현금 계정', - 'opt_group_l_Debt' => '부채: 빚', - 'opt_group_l_Mortgage' => '부채: 모기지', - 'opt_group_l_Credit card' => '부채: 신용카드', - 'notes' => '노트', - 'unknown_journal_error' => '거래를 저장할 수 없습니다. 로그 파일을 확인해 주세요.', - 'attachment_not_found' => '이 첨부 파일을 찾을 수 없습니다.', - 'journal_link_bill' => '이 거래는 :name 청구서에 연결되어 있습니다. 연결을 제거하려면 확인란의 선택을 취소합니다. 규칙을 사용하여 다른 청구서에 연결합니다.', - 'transaction_stored_link' => '거래 #{ID} ("{title}")가 저장되었습니다.', - 'transaction_new_stored_link' => '거래 #{ID}가 저장되었습니다.', - 'transaction_updated_link' => '거래 #{ID} ("{title}") 이 업데이트 되었습니다.', - 'transaction_updated_no_changes' => '거래 #{ID}("{title}")에 변경 사항이 적용되지 않았습니다.', - 'first_split_decides' => '첫 번째 분할은 이 항목의 값을 결정합니다.', - 'first_split_overrules_source' => '첫 번째 분할은 소스 계정을 무시할 수 있습니다.', - 'first_split_overrules_destination' => '첫 번째 분할은 대상 계정을 무시할 수 있습니다.', - 'spent_x_of_y' => '{total} 중 {amount} 지출', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => '출금 업데이트', + 'update_deposit' => '입금 업데이트', + 'update_transaction' => '거래 업데이트', + 'update_transfer' => '이체 업데이트', + 'updated_withdrawal' => '":description" 출금이 업데이트됨', + 'updated_deposit' => '":description" 입금이 업데이트됨', + 'updated_transfer' => '":description" 이체가 업데이트됨', + 'no_changes_withdrawal' => '":description" 출금이 변경되지 않았습니다.', + 'no_changes_deposit' => '":description" 입금이 변경되지 않았습니다.', + 'no_changes_transfer' => '":description" 이체가 변경되지 않았습니다.', + 'delete_withdrawal' => '":description" 출금 삭제', + 'delete_deposit' => '":description" 입금 삭제', + 'delete_transfer' => '":description" 이체 삭제', + 'deleted_withdrawal' => '":description" 출금 삭제 성공', + 'deleted_deposit' => '":description" 입금 삭제 성공', + 'deleted_transfer' => '":description" 이체 삭제 성공', + 'deleted_reconciliation' => '":description" 조정 거래 삭제 성공', + 'stored_journal' => '새로운 ":description" 거래 생성 성공', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => '새로운 거래 생성 성공', + 'updated_journal_no_descr' => '거래 업데이트 성공', + 'select_transactions' => '거래 선택', + 'rule_group_select_transactions' => '거래에 ":title" 적용', + 'rule_select_transactions' => '거래에 ":title" 적용', + 'stop_selection' => '거래 선택 중지', + 'reconcile_selected' => '조정', + 'mass_delete_journals' => '여러 거래 삭제', + 'mass_edit_journals' => '여러 거래 수정', + 'mass_bulk_journals' => '여러 거래 일괄 수정', + 'mass_bulk_journals_explain' => '이 양식을 사용하면 아래 나열된 거래의 속성을 한 번에 업데이트할 수 있습니다. 여기에 표시되는 매개변수를 변경하면 표에 있는 모든 거래가 업데이트됩니다.', + 'part_of_split' => '이 거래는 분할된 거래 중 일부입니다. 모든 분할을 선택하지 않은 경우 거래의 절반만 변경될 수 있습니다.', + 'bulk_set_new_values' => '아래 입력을 사용하여 새 값을 설정합니다. 입력란을 비워두면 모두에게 비워집니다. 또한 출금에 대해서만 예산이 부여된다는 점에 유의하세요.', + 'no_bulk_category' => '카테고리 업데이트 안 함', + 'no_bulk_budget' => '예산 업데이트 안 함', + 'no_bulk_tags' => '태그 업데이트 안 함', + 'replace_with_these_tags' => '다음 태그로 바꾸기', + 'append_these_tags' => '다음 태그 추가', + 'mass_edit' => '선택한 항목 개별 편집', + 'bulk_edit' => '선택한 항목 일괄 편집', + 'mass_delete' => '선택항목 삭제', + 'cannot_edit_other_fields' => '표시할 공간이 없어서 여기에 표시된 항목 이외의 다른 항목은 대량 편집할 수 없습니다. 이러한 항목을 편집하려면 링크를 따라 하나씩 편집하세요.', + 'cannot_change_amount_reconciled' => '조정된 거래 금액은 변경할 수 없습니다.', + 'no_budget' => '(예산 없음)', + 'no_bill' => '(청구서 없음)', + 'account_per_budget' => '예산당 계정', + 'account_per_category' => '카테고리당 계정', + 'create_new_object' => '생성', + 'empty' => '(비어 있음)', + 'all_other_budgets' => '(다른 모든 예산)', + 'all_other_accounts' => '(다른 모든 계정)', + 'expense_per_source_account' => '소스 계정당 지출', + 'expense_per_destination_account' => '대상 계정당 지출', + 'income_per_destination_account' => '대상 계정당 수입', + 'spent_in_specific_category' => '":category" 카테고리의 지출', + 'earned_in_specific_category' => '":category" 카테고리의 수입', + 'spent_in_specific_tag' => '":tag" 태그의 지출', + 'earned_in_specific_tag' => '":tag" 태그의 수입', + 'income_per_source_account' => '소스 계정당 수입', + 'average_spending_per_destination' => '대상 계정당 평균 지출', + 'average_spending_per_source' => '소스 계정당 평균 지출', + 'average_earning_per_source' => '소스 계정당 평균 수익', + 'average_earning_per_destination' => '대상 계정당 평균 수익', + 'account_per_tag' => '태그당 계정', + 'tag_report_expenses_listed_once' => '지출과 수입은 두 번 표시되지 않습니다. 거래에 여러 개의 태그가 있는 경우 해당 태그 중 하나만 표시될 수 있습니다. 이 목록에는 데이터가 누락된 것처럼 보일 수 있지만 금액은 정확합니다.', + 'double_report_expenses_charted_once' => '지출과 수입은 두 번 표시되지 않습니다. 거래에 여러 개의 태그가 있는 경우 해당 태그 중 하나에만 표시될 수 있습니다. 이 차트에는 데이터가 누락된 것처럼 보일 수 있지만 금액은 정확합니다.', + 'tag_report_chart_single_tag' => '이 차트는 단일 태그에 적용됩니다. 거래에 여러 개의 태그가 있는 경우 여기에 표시되는 내용이 다른 태그의 차트에도 반영될 수 있습니다.', + 'tag' => '태그', + 'no_budget_squared' => '(예산 없음)', + 'perm-delete-many' => '한 번에 많은 항목을 삭제하면 매우 혼란스러울 수 있으니 주의하시기 바랍니다. 이 페이지에서 분할 거래의 일부만 삭제할 수 있으므로 주의하세요.', + 'mass_deleted_transactions_success' => ':count개 거래가 삭제되었습니다.|:count개 거래가 삭제되었습니다.', + 'mass_edited_transactions_success' => ':count개 거래가 업데이트되었습니다.|:count개 거래가 업데이트되었습니다.', + 'opt_group_' => '(계정 유형 없음)', + 'opt_group_no_account_type' => '(계정 유형 없음)', + 'opt_group_defaultAsset' => '기본 자산 계정', + 'opt_group_savingAsset' => '예금 계좌', + 'opt_group_sharedAsset' => '공유 자산 계정', + 'opt_group_ccAsset' => '신용카드', + 'opt_group_cashWalletAsset' => '현금 지갑', + 'opt_group_expense_account' => '지출 계정', + 'opt_group_revenue_account' => '수익 계정', + 'opt_group_l_Loan' => '부채: 대출', + 'opt_group_cash_account' => '현금 계정', + 'opt_group_l_Debt' => '부채: 빚', + 'opt_group_l_Mortgage' => '부채: 모기지', + 'opt_group_l_Credit card' => '부채: 신용카드', + 'notes' => '노트', + 'unknown_journal_error' => '거래를 저장할 수 없습니다. 로그 파일을 확인해 주세요.', + 'attachment_not_found' => '이 첨부 파일을 찾을 수 없습니다.', + 'journal_link_bill' => '이 거래는 :name 청구서에 연결되어 있습니다. 연결을 제거하려면 확인란의 선택을 취소합니다. 규칙을 사용하여 다른 청구서에 연결합니다.', + 'transaction_stored_link' => '거래 #{ID} ("{title}")가 저장되었습니다.', + 'transaction_new_stored_link' => '거래 #{ID}가 저장되었습니다.', + 'transaction_updated_link' => '거래 #{ID} ("{title}") 이 업데이트 되었습니다.', + 'transaction_updated_no_changes' => '거래 #{ID}("{title}")에 변경 사항이 적용되지 않았습니다.', + 'first_split_decides' => '첫 번째 분할은 이 항목의 값을 결정합니다.', + 'first_split_overrules_source' => '첫 번째 분할은 소스 계정을 무시할 수 있습니다.', + 'first_split_overrules_destination' => '첫 번째 분할은 대상 계정을 무시할 수 있습니다.', + 'spent_x_of_y' => '{total} 중 {amount} 지출', // new user: - 'welcome' => 'Firefly III에 오신 것을 환영합니다!', - 'submit' => '제출', - 'submission' => '제출', - 'submit_yes_really' => '제출 (내가 무엇을 하는지 알고 있습니다)', - 'getting_started' => '시작하기', - 'to_get_started' => 'Firefly III를 성공적으로 설치하셨다니 다행입니다. 이 도구를 시작하려면 은행 이름과 주 당좌 예금 계좌의 잔액을 입력하세요. 여러 개의 계좌가 있어도 걱정하지 마세요. 나중에 추가할 수 있습니다. Firefly III에는 시작할 무언가가 필요합니다.', - 'savings_balance_text' => 'Firefly III는 자동으로 저축 계좌를 생성합니다. 기본적으로 저축 계좌에는 돈이 없지만, Firefly III에 잔액을 알려주면 잔액이 그대로 저장됩니다.', - 'finish_up_new_user' => '끝났습니다! 제출을 눌러 계속할 수 있습니다. Firefly III의 색인으로 이동합니다.', - 'stored_new_accounts_new_user' => '야호! 새 계정이 저장되었습니다.', - 'set_preferred_language' => '다른 언어로 Firefly III를 사용하시려면 여기에 표시해 주세요.', - 'language' => '언어', - 'new_savings_account' => ':bank_name 저축 계좌', - 'cash_wallet' => '현금 지갑', - 'currency_not_present' => '일반적으로 사용하는 통화가 목록에 없더라도 걱정하지 마세요. 옵션 > 통화에서 직접 통화를 생성할 수 있습니다.', + 'welcome' => 'Firefly III에 오신 것을 환영합니다!', + 'submit' => '제출', + 'submission' => '제출', + 'submit_yes_really' => '제출 (내가 무엇을 하는지 알고 있습니다)', + 'getting_started' => '시작하기', + 'to_get_started' => 'Firefly III를 성공적으로 설치하셨다니 다행입니다. 이 도구를 시작하려면 은행 이름과 주 당좌 예금 계좌의 잔액을 입력하세요. 여러 개의 계좌가 있어도 걱정하지 마세요. 나중에 추가할 수 있습니다. Firefly III에는 시작할 무언가가 필요합니다.', + 'savings_balance_text' => 'Firefly III는 자동으로 저축 계좌를 생성합니다. 기본적으로 저축 계좌에는 돈이 없지만, Firefly III에 잔액을 알려주면 잔액이 그대로 저장됩니다.', + 'finish_up_new_user' => '끝났습니다! 제출을 눌러 계속할 수 있습니다. Firefly III의 색인으로 이동합니다.', + 'stored_new_accounts_new_user' => '야호! 새 계정이 저장되었습니다.', + 'set_preferred_language' => '다른 언어로 Firefly III를 사용하시려면 여기에 표시해 주세요.', + 'language' => '언어', + 'new_savings_account' => ':bank_name 저축 계좌', + 'cash_wallet' => '현금 지갑', + 'currency_not_present' => '일반적으로 사용하는 통화가 목록에 없더라도 걱정하지 마세요. 옵션 > 통화에서 직접 통화를 생성할 수 있습니다.', // home page: - 'transaction_table_description' => '거래가 포함된 테이블', - 'opposing_account' => '반대 계정', - 'yourAccounts' => '계정', - 'your_accounts' => '계정 개요', - 'category_overview' => '카테고리 개요', - 'expense_overview' => '지출 계정 개요', - 'revenue_overview' => '수익 계정 개요', - 'budgetsAndSpending' => '예산 및 지출', - 'budgets_and_spending' => '예산 및 지출', - 'go_to_budget' => '"{budget}" 예산으로 이동', - 'go_to_deposits' => '입금으로 이동', - 'go_to_expenses' => '지출로 이동', - 'savings' => '예금', - 'newWithdrawal' => '신규 비용', - 'newDeposit' => '신규 입금', - 'newTransfer' => '신규 이체', - 'bills_to_pay' => '납부할 청구서', - 'per_day' => '일별', - 'left_to_spend_per_day' => '남은 하루 지출', - 'bills_paid' => '청구서 결제', - 'custom_period' => '사용자 지정 기간', - 'reset_to_current' => '현재 기간으로 재설정', - 'select_period' => '기간 선택', + 'transaction_table_description' => '거래가 포함된 테이블', + 'opposing_account' => '반대 계정', + 'yourAccounts' => '계정', + 'your_accounts' => '계정 개요', + 'category_overview' => '카테고리 개요', + 'expense_overview' => '지출 계정 개요', + 'revenue_overview' => '수익 계정 개요', + 'budgetsAndSpending' => '예산 및 지출', + 'budgets_and_spending' => '예산 및 지출', + 'go_to_budget' => '"{budget}" 예산으로 이동', + 'go_to_deposits' => '입금으로 이동', + 'go_to_expenses' => '지출로 이동', + 'savings' => '예금', + 'newWithdrawal' => '신규 비용', + 'newDeposit' => '신규 입금', + 'newTransfer' => '신규 이체', + 'bills_to_pay' => '납부할 청구서', + 'per_day' => '일별', + 'left_to_spend_per_day' => '남은 하루 지출', + 'bills_paid' => '청구서 결제', + 'custom_period' => '사용자 지정 기간', + 'reset_to_current' => '현재 기간으로 재설정', + 'select_period' => '기간 선택', // menu and titles, should be recycled as often as possible: - 'currency' => '통화', - 'preferences' => '환경 설정', - 'logout' => '로그아웃', - 'logout_other_sessions' => '다른 모든 세션 로그아웃', - 'toggleNavigation' => '토글 내비게이션', - 'searchPlaceholder' => '검색...', - 'version' => '버전', - 'dashboard' => '대시보드', - 'income_and_expense' => '수입과 지출', - 'all_money' => '모든 돈', - 'unknown_source_plain' => '알 수 없는 소스 계정', - 'unknown_dest_plain' => '알 수 없는 대상 계정', - 'unknown_any_plain' => '알 수 없는 계정', - 'unknown_budget_plain' => '예산 없음', - 'available_budget' => '사용 가능한 예산 ({currency})', - 'currencies' => '통화', - 'activity' => '활동', - 'usage' => '사용법', - 'accounts' => '계정', - 'Asset account' => '자산 계정', - 'Default account' => '자산 계정', - 'Expense account' => '지출 계정', - 'Revenue account' => '수익 계정', - 'Initial balance account' => '초기 잔액 계정', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => '대출', - 'account_type_Loan' => '빚', - 'account_type_Mortgage' => '모기지', - 'account_type_debt' => '대출', - 'account_type_loan' => '빚', - 'account_type_mortgage' => '모기지', - 'account_type_Credit card' => '신용카드', - 'credit_card_type_monthlyFull' => '매월 전액 결제', - 'liability_direction_credit' => '나는 이 대출을 가지고 있다', - 'liability_direction_debit' => '나는 이 빚을 다른 사람에게 빚지고 있다', - 'liability_direction_credit_short' => '이 빚을 지고 있습니다', - 'liability_direction_debit_short' => '이 빚을 지고 있습니다', - 'liability_direction__short' => '알 수 없음', - 'liability_direction_null_short' => '알 수 없음', - 'Liability credit' => '부채 신용', - 'budgets' => '예산', - 'tags' => '태그', - 'reports' => '보고서', - 'transactions' => '거래', - 'expenses' => '지출', - 'income' => '수익 / 수입', - 'transfers' => '이체', - 'moneyManagement' => '돈 관리', - 'money_management' => '돈 관리', - 'tools' => '도구', - 'piggyBanks' => '저금통', - 'piggy_banks' => '저금통', - 'amount_x_of_y' => '{total} 중 {current}', - 'bills' => '청구서', - 'withdrawal' => '출금', - 'opening_balance' => '초기 잔고', - 'deposit' => '입금', - 'account' => '계정', - 'transfer' => '이체', - 'Withdrawal' => '출금', - 'Deposit' => '입금', - 'Transfer' => '이체', - 'bill' => '청구서', - 'yes' => '네', - 'no' => '아니오', - 'amount' => '금액', - 'overview' => '개요', - 'saveOnAccount' => '계정 저장', - 'unknown' => '알 수 없음', - 'monthly' => '월간', - 'profile' => '프로필', - 'errors' => '오류', - 'debt_start_date' => '빚 시작일', - 'debt_start_amount' => '빚 금액', - 'debt_start_amount_help' => '이 값은 항상 음수로 설정하는 것이 가장 좋습니다. 자세한 내용은 도움말 페이지(오른쪽 상단(?)-아이콘)를 참조하세요.', - 'interest_period_help' => '이 항목은 순전히 장식용이며 계산되지 않습니다. 은행은 매우 교활하기 때문에 Firefly III는 결코 제대로 계산하지 못합니다.', - 'store_new_liabilities_account' => '새 부채 저장', - 'edit_liabilities_account' => '":name" 부채 수정', - 'financial_control' => '재정 관리', - 'accounting' => '회계', - 'automation' => '자동화', - 'others' => '기타', - 'classification' => '분류', - 'store_transaction' => '거래 저장', + 'currency' => '통화', + 'preferences' => '환경 설정', + 'logout' => '로그아웃', + 'logout_other_sessions' => '다른 모든 세션 로그아웃', + 'toggleNavigation' => '토글 내비게이션', + 'searchPlaceholder' => '검색...', + 'version' => '버전', + 'dashboard' => '대시보드', + 'income_and_expense' => '수입과 지출', + 'all_money' => '모든 돈', + 'unknown_source_plain' => '알 수 없는 소스 계정', + 'unknown_dest_plain' => '알 수 없는 대상 계정', + 'unknown_any_plain' => '알 수 없는 계정', + 'unknown_budget_plain' => '예산 없음', + 'available_budget' => '사용 가능한 예산 ({currency})', + 'currencies' => '통화', + 'activity' => '활동', + 'usage' => '사용법', + 'accounts' => '계정', + 'Asset account' => '자산 계정', + 'Default account' => '자산 계정', + 'Expense account' => '지출 계정', + 'Revenue account' => '수익 계정', + 'Initial balance account' => '초기 잔액 계정', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => '대출', + 'account_type_Loan' => '빚', + 'account_type_Mortgage' => '모기지', + 'account_type_debt' => '대출', + 'account_type_loan' => '빚', + 'account_type_mortgage' => '모기지', + 'account_type_Credit card' => '신용카드', + 'credit_card_type_monthlyFull' => '매월 전액 결제', + 'liability_direction_credit' => '나는 이 대출을 가지고 있다', + 'liability_direction_debit' => '나는 이 빚을 다른 사람에게 빚지고 있다', + 'liability_direction_credit_short' => '이 빚을 지고 있습니다', + 'liability_direction_debit_short' => '이 빚을 지고 있습니다', + 'liability_direction__short' => '알 수 없음', + 'liability_direction_null_short' => '알 수 없음', + 'Liability credit' => '부채 신용', + 'budgets' => '예산', + 'tags' => '태그', + 'reports' => '보고서', + 'transactions' => '거래', + 'expenses' => '지출', + 'income' => '수익 / 수입', + 'transfers' => '이체', + 'moneyManagement' => '돈 관리', + 'money_management' => '돈 관리', + 'tools' => '도구', + 'piggyBanks' => '저금통', + 'piggy_banks' => '저금통', + 'amount_x_of_y' => '{total} 중 {current}', + 'bills' => '청구서', + 'withdrawal' => '출금', + 'opening_balance' => '초기 잔고', + 'deposit' => '입금', + 'account' => '계정', + 'transfer' => '이체', + 'Withdrawal' => '출금', + 'Deposit' => '입금', + 'Transfer' => '이체', + 'bill' => '청구서', + 'yes' => '네', + 'no' => '아니오', + 'amount' => '금액', + 'overview' => '개요', + 'saveOnAccount' => '계정 저장', + 'unknown' => '알 수 없음', + 'monthly' => '월간', + 'profile' => '프로필', + 'errors' => '오류', + 'debt_start_date' => '빚 시작일', + 'debt_start_amount' => '빚 금액', + 'debt_start_amount_help' => '이 값은 항상 음수로 설정하는 것이 가장 좋습니다. 자세한 내용은 도움말 페이지(오른쪽 상단(?)-아이콘)를 참조하세요.', + 'interest_period_help' => '이 항목은 순전히 장식용이며 계산되지 않습니다. 은행은 매우 교활하기 때문에 Firefly III는 결코 제대로 계산하지 못합니다.', + 'store_new_liabilities_account' => '새 부채 저장', + 'edit_liabilities_account' => '":name" 부채 수정', + 'financial_control' => '재정 관리', + 'accounting' => '회계', + 'automation' => '자동화', + 'others' => '기타', + 'classification' => '분류', + 'store_transaction' => '거래 저장', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => ':start와 :end 사이의 기본 재정 보고서', - 'report_audit' => ':start과 :end 사이의 거래 내역 개요', - 'report_category' => ':start과 :end 사이의 카테고리 보고서', - 'report_double' => ':start과 :end 사이의 비용/수익 계정 보고서', - 'report_budget' => ':start과 :end 사이의 예산 보고서', - 'report_tag' => ':start과 :end 사이의 태그 보고서', - 'quick_link_reports' => '빠른 링크', - 'quick_link_examples' => '다음은 시작하는 데 도움이 되는 몇 가지 예시 링크입니다. 모든 보고서에 대한 정보와 사용할 수 있는 마법의 단어는 (?) 버튼 아래의 도움말 페이지를 확인하십시오.', - 'quick_link_default_report' => '기본 재무 보고서', - 'quick_link_audit_report' => '거래 내역 개요', - 'report_this_month_quick' => '이번 달, 모든 계정', - 'report_last_month_quick' => '지난 달, 모든 계정', - 'report_this_year_quick' => '현재 연도, 모든 계정', - 'report_this_fiscal_year_quick' => '현재 회계연도, 모든 계정', - 'report_all_time_quick' => '모든 시간, 모든 계정', - 'reports_can_bookmark' => '보고서를 북마크할 수 있다는 점을 기억하세요.', - 'incomeVsExpenses' => '수입 vs 지출', - 'accountBalances' => '계정 잔액', - 'balanceStart' => '기간 시작 시점의 잔액', - 'balanceEnd' => '기간 종료 시점의 잔액', - 'splitByAccount' => '계정별로 분할', - 'coveredWithTags' => '태그로 덮여 있음', - 'leftInBudget' => '예산에 남음', - 'left_in_debt' => '납부 금액', - 'sumOfSums' => '합계의 합계', - 'noCategory' => '(카테고리 없음)', - 'notCharged' => '(아직) 청구되지 않음', - 'inactive' => '비활성화', - 'active' => '활성화', - 'difference' => '차이', - 'money_flowing_in' => '들어옴', - 'money_flowing_out' => '나감', - 'topX' => '상위 :number', - 'show_full_list' => '전체 목록 표시', - 'show_only_top' => '상위 :number개만 보기', - 'report_type' => '보고서 유형', - 'report_type_default' => '기본 재무 보고서', - 'report_type_audit' => '거래 내역 개요 (감사)', - 'report_type_category' => '카테고리 보고서', - 'report_type_budget' => '예산 보고서', - 'report_type_tag' => '태그 보고서', - 'report_type_double' => '비용/수익 계정 보고서', - 'more_info_help' => '이러한 유형의 보고서에 대한 자세한 내용은 도움말 페이지에서 확인할 수 있습니다. 오른쪽 상단의 (?) 아이콘을 누릅니다.', - 'report_included_accounts' => '포함된 계정', - 'report_date_range' => '날짜 범위', - 'report_preset_ranges' => '사전 설정 범위', - 'shared' => '공유', - 'fiscal_year' => '회계 연도', - 'income_entry' => ':start와 :end 사이의 ":name" 계정의 수입', - 'expense_entry' => ':start와 :end 사이의 ":name" 계정의 지출', - 'category_entry' => ':start과 :end 사이의 ":name" 카테고리의 비용 및 수입', - 'budget_spent_amount' => ':start와 :end 사이의 ":budget" 예산에 포함된 비용', - 'balance_amount' => ':start와 :end 사이에 ":account" 계정에서 지불한 ":budget" 예산 내의 지출', - 'no_audit_activity' => ':start와 :end 사이에 :account_name 계정에 기록된 활동이 없습니다.', - 'audit_end_balance' => ':end 끝에서 :account_name의 계정 잔액: :balance', - 'reports_extra_options' => '추가 옵션', - 'report_has_no_extra_options' => '이 보고서에는 추가 옵션이 없습니다', - 'reports_submit' => '보고서 보기', - 'end_after_start_date' => '보고서 종료일은 시작일 이후여야 합니다.', - 'select_category' => '카테고리 선택', - 'select_budget' => '예산 선택', - 'select_tag' => '태그 선택', - 'income_per_category' => '카테고리별 수입', - 'expense_per_category' => '카테고리별 지출', - 'expense_per_budget' => '예산별 지출', - 'income_per_account' => '계정별 수입', - 'expense_per_account' => '계정별 지출', - 'expense_per_tag' => '태그별 지출', - 'income_per_tag' => '태그별 수입', - 'include_expense_not_in_budget' => '선택한 예산에 포함되지 않은 지출 포함', - 'include_expense_not_in_account' => '선택한 계정에 포함되지 않은 지출 포함', - 'include_expense_not_in_category' => '선택한 카테고리에 포함되지 않은 지출 포함', - 'include_income_not_in_category' => '선택한 카테고리에 포함되지 않은 수입 포함', - 'include_income_not_in_account' => '선택한 계정에 포함되지 않은 수입 포함', - 'include_income_not_in_tags' => '선택한 태그에 포함되지 않은 수입 포함', - 'include_expense_not_in_tags' => '선택한 태그에 포함되지 않은 지출 포함', - 'everything_else' => '기타 모든 것', - 'income_and_expenses' => '수입 및 지출', - 'spent_average' => '지출 (평균)', - 'income_average' => '수입 (평균)', - 'transaction_count' => '거래 횟수', - 'average_spending_per_account' => '계정당 평균 지출', - 'average_income_per_account' => '계정당 평균 수입', - 'total' => '합계', - 'description' => '설명', - 'sum_of_period' => '기간의 합계', - 'average_in_period' => '기간의 평균', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => '기본 자산 계정', - 'account_role_sharedAsset' => '공유 자산 계정', - 'account_role_savingAsset' => '예금 계좌', - 'account_role_ccAsset' => '신용카드', - 'account_role_cashWalletAsset' => '현금 지갑', - 'budget_chart_click' => '차트를 보려면 위 표에서 예산 이름을 클릭하세요.', - 'category_chart_click' => '차트를 보려면 위 표에서 카테고리 이름을 클릭하세요.', - 'in_out_accounts' => '조합당 수입 및 지출', - 'in_out_accounts_per_asset' => '수입 및 지출 (자산 계정당)', - 'in_out_per_category' => '카테고리당 수입 및 지출', - 'out_per_budget' => '예산당 지출', - 'select_expense_revenue' => '비용/수익 계정 선택', - 'multi_currency_report_sum' => '이 목록에는 여러 통화를 사용하는 계정이 포함되어 있으므로 표시되는 금액이 합리적이지 않을 수 있습니다. 보고서는 항상 기본 통화로 돌아갑니다.', - 'sum_in_default_currency' => '합계는 항상 기본 통화로 표시됩니다.', - 'net_filtered_prefs' => '이 차트에는 \'순자산에 포함\' 옵션이 선택되지 않은 계정은 포함되지 않습니다.', + 'report_default' => ':start와 :end 사이의 기본 재정 보고서', + 'report_audit' => ':start과 :end 사이의 거래 내역 개요', + 'report_category' => ':start과 :end 사이의 카테고리 보고서', + 'report_double' => ':start과 :end 사이의 비용/수익 계정 보고서', + 'report_budget' => ':start과 :end 사이의 예산 보고서', + 'report_tag' => ':start과 :end 사이의 태그 보고서', + 'quick_link_reports' => '빠른 링크', + 'quick_link_examples' => '다음은 시작하는 데 도움이 되는 몇 가지 예시 링크입니다. 모든 보고서에 대한 정보와 사용할 수 있는 마법의 단어는 (?) 버튼 아래의 도움말 페이지를 확인하십시오.', + 'quick_link_default_report' => '기본 재무 보고서', + 'quick_link_audit_report' => '거래 내역 개요', + 'report_this_month_quick' => '이번 달, 모든 계정', + 'report_last_month_quick' => '지난 달, 모든 계정', + 'report_this_year_quick' => '현재 연도, 모든 계정', + 'report_this_fiscal_year_quick' => '현재 회계연도, 모든 계정', + 'report_all_time_quick' => '모든 시간, 모든 계정', + 'reports_can_bookmark' => '보고서를 북마크할 수 있다는 점을 기억하세요.', + 'incomeVsExpenses' => '수입 vs 지출', + 'accountBalances' => '계정 잔액', + 'balanceStart' => '기간 시작 시점의 잔액', + 'balanceEnd' => '기간 종료 시점의 잔액', + 'splitByAccount' => '계정별로 분할', + 'coveredWithTags' => '태그로 덮여 있음', + 'leftInBudget' => '예산에 남음', + 'left_in_debt' => '납부 금액', + 'sumOfSums' => '합계의 합계', + 'noCategory' => '(카테고리 없음)', + 'notCharged' => '(아직) 청구되지 않음', + 'inactive' => '비활성화', + 'active' => '활성화', + 'difference' => '차이', + 'money_flowing_in' => '들어옴', + 'money_flowing_out' => '나감', + 'topX' => '상위 :number', + 'show_full_list' => '전체 목록 표시', + 'show_only_top' => '상위 :number개만 보기', + 'report_type' => '보고서 유형', + 'report_type_default' => '기본 재무 보고서', + 'report_type_audit' => '거래 내역 개요 (감사)', + 'report_type_category' => '카테고리 보고서', + 'report_type_budget' => '예산 보고서', + 'report_type_tag' => '태그 보고서', + 'report_type_double' => '비용/수익 계정 보고서', + 'more_info_help' => '이러한 유형의 보고서에 대한 자세한 내용은 도움말 페이지에서 확인할 수 있습니다. 오른쪽 상단의 (?) 아이콘을 누릅니다.', + 'report_included_accounts' => '포함된 계정', + 'report_date_range' => '날짜 범위', + 'report_preset_ranges' => '사전 설정 범위', + 'shared' => '공유', + 'fiscal_year' => '회계 연도', + 'income_entry' => ':start와 :end 사이의 ":name" 계정의 수입', + 'expense_entry' => ':start와 :end 사이의 ":name" 계정의 지출', + 'category_entry' => ':start과 :end 사이의 ":name" 카테고리의 비용 및 수입', + 'budget_spent_amount' => ':start와 :end 사이의 ":budget" 예산에 포함된 비용', + 'balance_amount' => ':start와 :end 사이에 ":account" 계정에서 지불한 ":budget" 예산 내의 지출', + 'no_audit_activity' => ':start와 :end 사이에 :account_name 계정에 기록된 활동이 없습니다.', + 'audit_end_balance' => ':end 끝에서 :account_name의 계정 잔액: :balance', + 'reports_extra_options' => '추가 옵션', + 'report_has_no_extra_options' => '이 보고서에는 추가 옵션이 없습니다', + 'reports_submit' => '보고서 보기', + 'end_after_start_date' => '보고서 종료일은 시작일 이후여야 합니다.', + 'select_category' => '카테고리 선택', + 'select_budget' => '예산 선택', + 'select_tag' => '태그 선택', + 'income_per_category' => '카테고리별 수입', + 'expense_per_category' => '카테고리별 지출', + 'expense_per_budget' => '예산별 지출', + 'income_per_account' => '계정별 수입', + 'expense_per_account' => '계정별 지출', + 'expense_per_tag' => '태그별 지출', + 'income_per_tag' => '태그별 수입', + 'include_expense_not_in_budget' => '선택한 예산에 포함되지 않은 지출 포함', + 'include_expense_not_in_account' => '선택한 계정에 포함되지 않은 지출 포함', + 'include_expense_not_in_category' => '선택한 카테고리에 포함되지 않은 지출 포함', + 'include_income_not_in_category' => '선택한 카테고리에 포함되지 않은 수입 포함', + 'include_income_not_in_account' => '선택한 계정에 포함되지 않은 수입 포함', + 'include_income_not_in_tags' => '선택한 태그에 포함되지 않은 수입 포함', + 'include_expense_not_in_tags' => '선택한 태그에 포함되지 않은 지출 포함', + 'everything_else' => '기타 모든 것', + 'income_and_expenses' => '수입 및 지출', + 'spent_average' => '지출 (평균)', + 'income_average' => '수입 (평균)', + 'transaction_count' => '거래 횟수', + 'average_spending_per_account' => '계정당 평균 지출', + 'average_income_per_account' => '계정당 평균 수입', + 'total' => '합계', + 'description' => '설명', + 'sum_of_period' => '기간의 합계', + 'average_in_period' => '기간의 평균', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => '기본 자산 계정', + 'account_role_sharedAsset' => '공유 자산 계정', + 'account_role_savingAsset' => '예금 계좌', + 'account_role_ccAsset' => '신용카드', + 'account_role_cashWalletAsset' => '현금 지갑', + 'budget_chart_click' => '차트를 보려면 위 표에서 예산 이름을 클릭하세요.', + 'category_chart_click' => '차트를 보려면 위 표에서 카테고리 이름을 클릭하세요.', + 'in_out_accounts' => '조합당 수입 및 지출', + 'in_out_accounts_per_asset' => '수입 및 지출 (자산 계정당)', + 'in_out_per_category' => '카테고리당 수입 및 지출', + 'out_per_budget' => '예산당 지출', + 'select_expense_revenue' => '비용/수익 계정 선택', + 'multi_currency_report_sum' => '이 목록에는 여러 통화를 사용하는 계정이 포함되어 있으므로 표시되는 금액이 합리적이지 않을 수 있습니다. 보고서는 항상 기본 통화로 돌아갑니다.', + 'sum_in_default_currency' => '합계는 항상 기본 통화로 표시됩니다.', + 'net_filtered_prefs' => '이 차트에는 \'순자산에 포함\' 옵션이 선택되지 않은 계정은 포함되지 않습니다.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => '차트', - 'month' => '월', - 'budget' => '예산', - 'spent' => '지출', - 'spent_capped' => '지출 (한도)', - 'spent_in_budget' => '예산내 지출', - 'left_to_spend' => '남은 지출', - 'earned' => '수입', - 'overspent' => '초과 지출', - 'left' => '남음', - 'max-amount' => '최대 금액', - 'min-amount' => '최소 금액', - 'journal-amount' => '현재 청구서 항목', - 'name' => '이름', - 'date' => '날짜', - 'date_and_time' => '날짜와 시간', - 'time' => '시간', - 'paid' => '지불됨', - 'unpaid' => '미지불', - 'day' => '일', - 'budgeted' => '예산', - 'period' => '기간', - 'balance' => '잔고', - 'in_out_period' => '이 기간의 수입 지출', - 'sum' => '합계', - 'summary' => '요약', - 'average' => '평균', - 'balanceFor' => ':name 잔고', - 'no_tags' => '(태그 없음)', - 'nothing_found' => '(nothing found)', + 'chart' => '차트', + 'month' => '월', + 'budget' => '예산', + 'spent' => '지출', + 'spent_capped' => '지출 (한도)', + 'spent_in_budget' => '예산내 지출', + 'left_to_spend' => '남은 지출', + 'earned' => '수입', + 'overspent' => '초과 지출', + 'left' => '남음', + 'max-amount' => '최대 금액', + 'min-amount' => '최소 금액', + 'journal-amount' => '현재 청구서 항목', + 'name' => '이름', + 'date' => '날짜', + 'date_and_time' => '날짜와 시간', + 'time' => '시간', + 'paid' => '지불됨', + 'unpaid' => '미지불', + 'day' => '일', + 'budgeted' => '예산', + 'period' => '기간', + 'balance' => '잔고', + 'in_out_period' => '이 기간의 수입 지출', + 'sum' => '합계', + 'summary' => '요약', + 'average' => '평균', + 'balanceFor' => ':name 잔고', + 'no_tags' => '(태그 없음)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => '이벤트 기록', - 'add_money_to_piggy' => '":name" 저금통애 금액 추가', - 'piggy_bank' => '저금통', - 'new_piggy_bank' => '새 저금통', - 'store_piggy_bank' => '새 저금통 저장', - 'stored_piggy_bank' => '새 저금통 ":name" 저장', - 'account_status' => '계정 상태', - 'left_for_piggy_banks' => '저금통 잔액', - 'sum_of_piggy_banks' => '저금통 합계', - 'saved_so_far' => '지금까지 저장됨', - 'left_to_save' => '남은 금액', - 'suggested_amount' => '월별 권장 절약 금액', - 'add_money_to_piggy_title' => '":name" 저금통애 금액 추가', - 'remove_money_from_piggy_title' => '":name" 저금통에서 금액 제거', - 'add' => '추가', - 'no_money_for_piggy' => '이 돼지 저금통에 넣을 돈이 없습니다.', - 'suggested_savings_per_month' => '월별 제안', + 'event_history' => '이벤트 기록', + 'add_money_to_piggy' => '":name" 저금통애 금액 추가', + 'piggy_bank' => '저금통', + 'new_piggy_bank' => '새 저금통', + 'store_piggy_bank' => '새 저금통 저장', + 'stored_piggy_bank' => '새 저금통 ":name" 저장', + 'account_status' => '계정 상태', + 'left_for_piggy_banks' => '저금통 잔액', + 'sum_of_piggy_banks' => '저금통 합계', + 'saved_so_far' => '지금까지 저장됨', + 'left_to_save' => '남은 금액', + 'suggested_amount' => '월별 권장 절약 금액', + 'add_money_to_piggy_title' => '":name" 저금통애 금액 추가', + 'remove_money_from_piggy_title' => '":name" 저금통에서 금액 제거', + 'add' => '추가', + 'no_money_for_piggy' => '이 돼지 저금통에 넣을 돈이 없습니다.', + 'suggested_savings_per_month' => '월별 제안', - 'remove' => '삭제', - 'max_amount_add' => '추가할 수 있는 최대 금액은', - 'max_amount_remove' => '제거할 수 있는 최대 금액은', - 'update_piggy_button' => '저금통 업데이트', - 'update_piggy_title' => '":name" 저금통 업데이트', - 'updated_piggy_bank' => '":name" 저금통 업데이트됨', - 'details' => '세부 정보', - 'events' => '이벤트', - 'target_amount' => '목표 금액', - 'start_date' => '시작일', - 'no_start_date' => '시작일이 지정되지 않음', - 'target_date' => '목표일', - 'no_target_date' => '목표일이 지정되지 않음', - 'table' => '표', - 'delete_piggy_bank' => '":name" 저금통 삭제', - 'cannot_add_amount_piggy' => '":name"에 :amount을 추가할 수 없습니다.', - 'cannot_remove_from_piggy' => '":name"에 :amount을 제거할 수 없습니다.', - 'deleted_piggy_bank' => '":name" 저금통 삭제됨', - 'added_amount_to_piggy' => '":name"에 :amount를 추가함', - 'removed_amount_from_piggy' => '":name"에서 :amount 제거됨', - 'piggy_events' => '관련 저금통', + 'remove' => '삭제', + 'max_amount_add' => '추가할 수 있는 최대 금액은', + 'max_amount_remove' => '제거할 수 있는 최대 금액은', + 'update_piggy_button' => '저금통 업데이트', + 'update_piggy_title' => '":name" 저금통 업데이트', + 'updated_piggy_bank' => '":name" 저금통 업데이트됨', + 'details' => '세부 정보', + 'events' => '이벤트', + 'target_amount' => '목표 금액', + 'start_date' => '시작일', + 'no_start_date' => '시작일이 지정되지 않음', + 'target_date' => '목표일', + 'no_target_date' => '목표일이 지정되지 않음', + 'table' => '표', + 'delete_piggy_bank' => '":name" 저금통 삭제', + 'cannot_add_amount_piggy' => '":name"에 :amount을 추가할 수 없습니다.', + 'cannot_remove_from_piggy' => '":name"에 :amount을 제거할 수 없습니다.', + 'deleted_piggy_bank' => '":name" 저금통 삭제됨', + 'added_amount_to_piggy' => '":name"에 :amount를 추가함', + 'removed_amount_from_piggy' => '":name"에서 :amount 제거됨', + 'piggy_events' => '관련 저금통', // tags - 'delete_tag' => '":tag" 태그 삭제', - 'deleted_tag' => '":tag" 태그 삭제됨', - 'new_tag' => '새 태그 만들기', - 'edit_tag' => '":tag" 태그 수정', - 'updated_tag' => '":tag" 태그 업데이트됨', - 'created_tag' => '":tag" 태그가 생성되었습니다!', + 'delete_tag' => '":tag" 태그 삭제', + 'deleted_tag' => '":tag" 태그 삭제됨', + 'new_tag' => '새 태그 만들기', + 'edit_tag' => '":tag" 태그 수정', + 'updated_tag' => '":tag" 태그 업데이트됨', + 'created_tag' => '":tag" 태그가 생성되었습니다!', - 'transaction_journal_information' => '거래 정보', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => '메타 정보', - 'transaction_journal_more' => '추가 정보', - 'basic_journal_information' => '기본 거래 정보', - 'transaction_journal_extra' => '추가 정보', - 'att_part_of_journal' => '":journal"에 저장됨', - 'total_amount' => '전체 금액', - 'number_of_decimals' => '소수 자릿수', + 'transaction_journal_information' => '거래 정보', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => '메타 정보', + 'transaction_journal_more' => '추가 정보', + 'basic_journal_information' => '기본 거래 정보', + 'transaction_journal_extra' => '추가 정보', + 'att_part_of_journal' => '":journal"에 저장됨', + 'total_amount' => '전체 금액', + 'number_of_decimals' => '소수 자릿수', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => '":address"로의 초대는 이미 사용되었습니다.', - 'invite_is_deleted' => '":address"에 대한 초대가 삭제되었습니다.', - 'invite_new_user_title' => '새 사용자 초대', - 'invite_new_user_text' => '관리자는 Firefly III 관리에서 등록하도록 사용자를 초대할 수 있습니다. 사용자가 공유할 수 있는 직접 링크를 사용하여 계정을 등록할 수 있습니다. 초대된 사용자와 해당 사용자의 초대 링크가 아래 표에 표시됩니다. 초대 링크는 자유롭게 공유할 수 있습니다.', - 'invited_user_mail' => '이메일 주소', - 'invite_user' => '사용자 초대', - 'user_is_invited' => '":address" 이메일 주소가 Firefly III에 초대되었습니다', - 'administration' => '관리', - 'system_settings' => '시스템 설정', - 'code_already_used' => '초대 코드가 사용되었습니다', - 'user_administration' => '사용자 관리', - 'list_all_users' => '모든 사용자', - 'all_users' => '모든 사용자', - 'instance_configuration' => '환경 설정', - 'firefly_instance_configuration' => 'Firefly III의 환경설정 옵션', - 'setting_single_user_mode' => '단일 사용자 모드', - 'setting_single_user_mode_explain' => '기본적으로 Firefly III는 사용자 한 명(1)의 등록만 허용합니다. 이는 보안을 위한 조치로, 사용자가 허용하지 않는 한 다른 사람이 인스턴스를 사용할 수 없도록 합니다. 향후 등록은 차단됩니다. 이 확인란을 선택 해제하면 다른 사람도 인스턴스에 연결할 수 있는 경우(인터넷에 연결되어 있는 경우) 인스턴스를 사용할 수 있습니다.', - 'store_configuration' => '환경설정 저장', - 'single_user_administration' => ':email에 대한 사용자 관리', - 'edit_user' => ':email 사용자 수정', - 'hidden_fields_preferences' => '환경설정에서 더 많은 거래 옵션을 활성화할 수 있습니다.', - 'user_data_information' => '사용자 데이터', - 'user_information' => '사용자 정보', - 'total_size' => '총 크기', - 'budget_or_budgets' => ':count개 예산|:count개 예산', - 'budgets_with_limits' => '구성된 금액이 있는 :count개 예산|구성된 금액이 있는 :count개 예산', - 'nr_of_rules_in_total_groups' => ':count_groups 규칙 그룹의 :count_rules 규칙', - 'tag_or_tags' => ':count 태그|:count 태그', - 'configuration_updated' => '환경설정이 업데이트 되었습니다', - 'setting_is_demo_site' => '데모 사이트', - 'setting_is_demo_site_explain' => '이 확인란을 선택하면 이 설치가 데모 사이트인 것처럼 작동하므로 이상한 부작용이 발생할 수 있습니다.', - 'block_code_bounced' => '이메일 메시지가 반송됨', - 'block_code_expired' => '데모 계정이 만료됨', - 'no_block_code' => '차단 사유가 없거나 차단되지 않은 사용자', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => '사용자가 아직 새 이메일 주소를 확인하지 않았습니다', - 'admin_update_email' => '프로필 페이지와 달리 이메일 주소가 변경되었다는 알림은 사용자에게 전송되지 않습니다!', - 'update_user' => '사용자 업데이트', - 'updated_user' => '사용자 데이터가 변경되었습니다.', - 'delete_user' => ':email 사용자 삭제', - 'user_deleted' => '사용자가 삭제되었습니다', - 'send_test_email' => '테스트 이메일 메시지 보내기', - 'send_test_email_text' => '이메일을 보내거나 Slack 메시지를 게시할 수 있는지 확인하려면 이 버튼을 눌러주세요. 여기에는 오류가 표시되지 않으며(있더라도), 로그 파일에 오류가 반영됩니다. 이 버튼을 원하는 만큼 누를 수 있습니다. 스팸 제어 기능은 없습니다. 메시지는 :email로 전송되며 곧 도착할 것입니다.', - 'send_message' => '메시지 보내기', - 'send_test_triggered' => '테스트가 트리거되었습니다. 받은 편지함과 로그 파일을 확인합니다.', - 'give_admin_careful' => '관리자 권한을 부여받은 사용자는 내 관리자 권한을 빼앗을 수 있습니다. 조심하세요.', - 'admin_maintanance_title' => '유지 보수', - 'admin_maintanance_expl' => 'Firefly III 유지 관리를 위한 몇 개의 멋진 버튼', - 'admin_maintenance_clear_cache' => '캐시 지우기', - 'admin_notifications' => '관리자 알림', - 'admin_notifications_expl' => '관리자는 아래의 알림을 사용하거나 사용하지 않도록 설정할 수 있습니다. 이러한 메시지를 Slack을 통해서도 받으려면 "수신 웹훅" URL을 설정하세요.', - 'admin_notification_check_user_new_reg' => '사용자가 등록 후 환영 메시지 수신', - 'admin_notification_check_admin_new_reg' => '관리자가 새 사용자 등록 알림을 받습니다', - 'admin_notification_check_new_version' => '새 버전을 사용할 수 있습니다', - 'admin_notification_check_invite_created' => '사용자가 Firefly III에 초대되었습니다.', - 'admin_notification_check_invite_redeemed' => '사용자 초대가 사용되었습니다', - 'all_invited_users' => '초대된 모든 사용자', - 'save_notification_settings' => '설정 저장', - 'notification_settings_saved' => '알림 설정이 저장되었습니다', + 'invite_is_already_redeemed' => '":address"로의 초대는 이미 사용되었습니다.', + 'invite_is_deleted' => '":address"에 대한 초대가 삭제되었습니다.', + 'invite_new_user_title' => '새 사용자 초대', + 'invite_new_user_text' => '관리자는 Firefly III 관리에서 등록하도록 사용자를 초대할 수 있습니다. 사용자가 공유할 수 있는 직접 링크를 사용하여 계정을 등록할 수 있습니다. 초대된 사용자와 해당 사용자의 초대 링크가 아래 표에 표시됩니다. 초대 링크는 자유롭게 공유할 수 있습니다.', + 'invited_user_mail' => '이메일 주소', + 'invite_user' => '사용자 초대', + 'user_is_invited' => '":address" 이메일 주소가 Firefly III에 초대되었습니다', + 'administration' => '관리', + 'system_settings' => '시스템 설정', + 'code_already_used' => '초대 코드가 사용되었습니다', + 'user_administration' => '사용자 관리', + 'list_all_users' => '모든 사용자', + 'all_users' => '모든 사용자', + 'instance_configuration' => '환경 설정', + 'firefly_instance_configuration' => 'Firefly III의 환경설정 옵션', + 'setting_single_user_mode' => '단일 사용자 모드', + 'setting_single_user_mode_explain' => '기본적으로 Firefly III는 사용자 한 명(1)의 등록만 허용합니다. 이는 보안을 위한 조치로, 사용자가 허용하지 않는 한 다른 사람이 인스턴스를 사용할 수 없도록 합니다. 향후 등록은 차단됩니다. 이 확인란을 선택 해제하면 다른 사람도 인스턴스에 연결할 수 있는 경우(인터넷에 연결되어 있는 경우) 인스턴스를 사용할 수 있습니다.', + 'store_configuration' => '환경설정 저장', + 'single_user_administration' => ':email에 대한 사용자 관리', + 'edit_user' => ':email 사용자 수정', + 'hidden_fields_preferences' => '환경설정에서 더 많은 거래 옵션을 활성화할 수 있습니다.', + 'user_data_information' => '사용자 데이터', + 'user_information' => '사용자 정보', + 'total_size' => '총 크기', + 'budget_or_budgets' => ':count개 예산|:count개 예산', + 'budgets_with_limits' => '구성된 금액이 있는 :count개 예산|구성된 금액이 있는 :count개 예산', + 'nr_of_rules_in_total_groups' => ':count_groups 규칙 그룹의 :count_rules 규칙', + 'tag_or_tags' => ':count 태그|:count 태그', + 'configuration_updated' => '환경설정이 업데이트 되었습니다', + 'setting_is_demo_site' => '데모 사이트', + 'setting_is_demo_site_explain' => '이 확인란을 선택하면 이 설치가 데모 사이트인 것처럼 작동하므로 이상한 부작용이 발생할 수 있습니다.', + 'block_code_bounced' => '이메일 메시지가 반송됨', + 'block_code_expired' => '데모 계정이 만료됨', + 'no_block_code' => '차단 사유가 없거나 차단되지 않은 사용자', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => '사용자가 아직 새 이메일 주소를 확인하지 않았습니다', + 'admin_update_email' => '프로필 페이지와 달리 이메일 주소가 변경되었다는 알림은 사용자에게 전송되지 않습니다!', + 'update_user' => '사용자 업데이트', + 'updated_user' => '사용자 데이터가 변경되었습니다.', + 'delete_user' => ':email 사용자 삭제', + 'user_deleted' => '사용자가 삭제되었습니다', + 'send_test_email' => '테스트 이메일 메시지 보내기', + 'send_test_email_text' => '이메일을 보내거나 Slack 메시지를 게시할 수 있는지 확인하려면 이 버튼을 눌러주세요. 여기에는 오류가 표시되지 않으며(있더라도), 로그 파일에 오류가 반영됩니다. 이 버튼을 원하는 만큼 누를 수 있습니다. 스팸 제어 기능은 없습니다. 메시지는 :email로 전송되며 곧 도착할 것입니다.', + 'send_message' => '메시지 보내기', + 'send_test_triggered' => '테스트가 트리거되었습니다. 받은 편지함과 로그 파일을 확인합니다.', + 'give_admin_careful' => '관리자 권한을 부여받은 사용자는 내 관리자 권한을 빼앗을 수 있습니다. 조심하세요.', + 'admin_maintanance_title' => '유지 보수', + 'admin_maintanance_expl' => 'Firefly III 유지 관리를 위한 몇 개의 멋진 버튼', + 'admin_maintenance_clear_cache' => '캐시 지우기', + 'admin_notifications' => '관리자 알림', + 'admin_notifications_expl' => '관리자는 아래의 알림을 사용하거나 사용하지 않도록 설정할 수 있습니다. 이러한 메시지를 Slack을 통해서도 받으려면 "수신 웹훅" URL을 설정하세요.', + 'admin_notification_check_user_new_reg' => '사용자가 등록 후 환영 메시지 수신', + 'admin_notification_check_admin_new_reg' => '관리자가 새 사용자 등록 알림을 받습니다', + 'admin_notification_check_new_version' => '새 버전을 사용할 수 있습니다', + 'admin_notification_check_invite_created' => '사용자가 Firefly III에 초대되었습니다.', + 'admin_notification_check_invite_redeemed' => '사용자 초대가 사용되었습니다', + 'all_invited_users' => '초대된 모든 사용자', + 'save_notification_settings' => '설정 저장', + 'notification_settings_saved' => '알림 설정이 저장되었습니다', - 'split_transaction_title' => '분할 거래에 대한 설명', - 'split_transaction_title_help' => '분할 거래를 생성하는 경우 거래의 모든 분할에 대한 전체 설명이 있어야 합니다.', - 'split_title_help' => '분할 거래를 생성하는 경우 거래의 모든 분할에 대한 전체 설명이 있어야 합니다.', - 'you_create_transfer' => '전송을 생성하고 있습니다.', - 'you_create_withdrawal' => '출금을 생성하고 있습니다.', - 'you_create_deposit' => '입금을 생성하고 있습니다.', + 'split_transaction_title' => '분할 거래에 대한 설명', + 'split_transaction_title_help' => '분할 거래를 생성하는 경우 거래의 모든 분할에 대한 전체 설명이 있어야 합니다.', + 'split_title_help' => '분할 거래를 생성하는 경우 거래의 모든 분할에 대한 전체 설명이 있어야 합니다.', + 'you_create_transfer' => '전송을 생성하고 있습니다.', + 'you_create_withdrawal' => '출금을 생성하고 있습니다.', + 'you_create_deposit' => '입금을 생성하고 있습니다.', // links - 'journal_link_configuration' => '거래 링크 구성', - 'create_new_link_type' => '새 링크 유형 만들기', - 'store_new_link_type' => '새 링크 유형 저장', - 'update_link_type' => '링크 유형 업데이트', - 'edit_link_type' => '":name" 링크 유형 수정', - 'updated_link_type' => '":name" 링크 유형 업데이트됨', - 'delete_link_type' => '":name" 링크 유형 삭제', - 'deleted_link_type' => '":name" 링크 유형 삭제됨', - 'stored_new_link_type' => '새 링크 유형 ":name" 저장', - 'cannot_edit_link_type' => '":name" 링크 유형 수정할 수 없음', - 'link_type_help_name' => '즉. "중복"', - 'link_type_help_inward' => '즉. "중복"', - 'link_type_help_outward' => '즉. "에 의해 중복됨"', - 'save_connections_by_moving' => '이러한 거래 간의 링크를 다른 링크 유형으로 이동하여 저장합니다:', - 'do_not_save_connection' => '(연결 저장하지 않음)', - 'link_transaction' => '거래 연결', - 'link_to_other_transaction' => '이 거래를 다른 거래에 연결', - 'select_transaction_to_link' => '이 거래를 연결할 거래를 선택합니다. 이 링크는 현재 Firefly III에서 표시되는 것 외에는 사용되지 않지만, 앞으로 변경할 계획입니다. 검색 상자를 사용하여 제목이나 ID로 거래를 선택합니다. 사용자 지정 링크 유형을 추가하려면 관리 섹션을 확인하세요.', - 'this_transaction' => '이 거래', - 'transaction' => '거래', - 'comments' => '코멘트', - 'link_notes' => '링크와 함께 저장하고 싶은 모든 노트.', - 'invalid_link_selection' => '이러한 거래를 연결할 수 없습니다', - 'selected_transaction' => '선택한 거래', - 'journals_linked' => '거래가 연결됩니다.', - 'journals_error_linked' => '이러한 거래는 이미 연결되어 있습니다.', - 'journals_link_to_self' => '거래를 자기자신에게 연결할 수 없습니다', - 'journal_links' => '거래 링크', - 'this_withdrawal' => '이 출금', - 'this_deposit' => '이 입금', - 'this_transfer' => '이 이체', - 'overview_for_link' => '":name" 링크 유형에 대한 개요', - 'source_transaction' => '소스 거래', - 'link_description' => '링크 설명', - 'destination_transaction' => '대상 거래', - 'delete_journal_link' => ':source:destination 사이의 링크를 삭제합니다', - 'deleted_link' => '링크 삭제됨', + 'journal_link_configuration' => '거래 링크 구성', + 'create_new_link_type' => '새 링크 유형 만들기', + 'store_new_link_type' => '새 링크 유형 저장', + 'update_link_type' => '링크 유형 업데이트', + 'edit_link_type' => '":name" 링크 유형 수정', + 'updated_link_type' => '":name" 링크 유형 업데이트됨', + 'delete_link_type' => '":name" 링크 유형 삭제', + 'deleted_link_type' => '":name" 링크 유형 삭제됨', + 'stored_new_link_type' => '새 링크 유형 ":name" 저장', + 'cannot_edit_link_type' => '":name" 링크 유형 수정할 수 없음', + 'link_type_help_name' => '즉. "중복"', + 'link_type_help_inward' => '즉. "중복"', + 'link_type_help_outward' => '즉. "에 의해 중복됨"', + 'save_connections_by_moving' => '이러한 거래 간의 링크를 다른 링크 유형으로 이동하여 저장합니다:', + 'do_not_save_connection' => '(연결 저장하지 않음)', + 'link_transaction' => '거래 연결', + 'link_to_other_transaction' => '이 거래를 다른 거래에 연결', + 'select_transaction_to_link' => '이 거래를 연결할 거래를 선택합니다. 이 링크는 현재 Firefly III에서 표시되는 것 외에는 사용되지 않지만, 앞으로 변경할 계획입니다. 검색 상자를 사용하여 제목이나 ID로 거래를 선택합니다. 사용자 지정 링크 유형을 추가하려면 관리 섹션을 확인하세요.', + 'this_transaction' => '이 거래', + 'transaction' => '거래', + 'comments' => '코멘트', + 'link_notes' => '링크와 함께 저장하고 싶은 모든 노트.', + 'invalid_link_selection' => '이러한 거래를 연결할 수 없습니다', + 'selected_transaction' => '선택한 거래', + 'journals_linked' => '거래가 연결됩니다.', + 'journals_error_linked' => '이러한 거래는 이미 연결되어 있습니다.', + 'journals_link_to_self' => '거래를 자기자신에게 연결할 수 없습니다', + 'journal_links' => '거래 링크', + 'this_withdrawal' => '이 출금', + 'this_deposit' => '이 입금', + 'this_transfer' => '이 이체', + 'overview_for_link' => '":name" 링크 유형에 대한 개요', + 'source_transaction' => '소스 거래', + 'link_description' => '링크 설명', + 'destination_transaction' => '대상 거래', + 'delete_journal_link' => ':source:destination 사이의 링크를 삭제합니다', + 'deleted_link' => '링크 삭제됨', // link translations: - 'Paid_name' => '지불됨', - 'Refund_name' => '환불', - 'Reimbursement_name' => '상환', - 'Related_name' => '관련', - 'relates to_inward' => '다음과 관련', - 'is (partially) refunded by_inward' => '에 의해 (부분적으로) 환불됨', - 'is (partially) paid for by_inward' => '에 의해 (부분적으로) 지불됨', - 'is (partially) reimbursed by_inward' => '에 의해 (부분적으로) 환급됨', - 'inward_transaction' => '내부 거래', - 'outward_transaction' => '외부 거래', - 'relates to_outward' => '다음과 관련', - '(partially) refunds_outward' => '(부분) 환불', - '(partially) pays for_outward' => '(부분적으로) 지불', - '(partially) reimburses_outward' => '(부분적으로) 환급', - 'is (partially) refunded by' => '에 의해 (부분적으로) 환불됨', - 'is (partially) paid for by' => '에 의해 (부분적으로) 지불됨', - 'is (partially) reimbursed by' => '에 의해 (부분적으로) 환급됨', - 'relates to' => '다음과 관련', - '(partially) refunds' => '(부분) 환불', - '(partially) pays for' => '(부분적으로) 지불', - '(partially) reimburses' => '(부분적으로) 환급', + 'Paid_name' => '지불됨', + 'Refund_name' => '환불', + 'Reimbursement_name' => '상환', + 'Related_name' => '관련', + 'relates to_inward' => '다음과 관련', + 'is (partially) refunded by_inward' => '에 의해 (부분적으로) 환불됨', + 'is (partially) paid for by_inward' => '에 의해 (부분적으로) 지불됨', + 'is (partially) reimbursed by_inward' => '에 의해 (부분적으로) 환급됨', + 'inward_transaction' => '내부 거래', + 'outward_transaction' => '외부 거래', + 'relates to_outward' => '다음과 관련', + '(partially) refunds_outward' => '(부분) 환불', + '(partially) pays for_outward' => '(부분적으로) 지불', + '(partially) reimburses_outward' => '(부분적으로) 환급', + 'is (partially) refunded by' => '에 의해 (부분적으로) 환불됨', + 'is (partially) paid for by' => '에 의해 (부분적으로) 지불됨', + 'is (partially) reimbursed by' => '에 의해 (부분적으로) 환급됨', + 'relates to' => '다음과 관련', + '(partially) refunds' => '(부분) 환불', + '(partially) pays for' => '(부분적으로) 지불', + '(partially) reimburses' => '(부분적으로) 환급', // split a transaction: - 'splits' => '나누기', - 'add_another_split' => '다른 분할 추가', - 'cannot_edit_opening_balance' => '계정의 개설 잔액은 수정할 수 없습니다.', - 'no_edit_multiple_left' => '수정할 유효한 거래를 선택하지 않았습니다.', - 'breadcrumb_convert_group' => '거래 전환', - 'convert_invalid_source' => '거래 #%d에 대한 소스 정보가 잘못되었습니다.', - 'convert_invalid_destination' => '거래 #%d에 대한 대상 정보가 잘못되었습니다.', - 'create_another' => '저장후 이 페이지로 돌아와 다른 것을 만듭니다.', - 'after_update_create_another' => '업데이트 후 여기로 돌아와서 수정을 계속합니다.', - 'store_as_new' => '업데이트하는 대신 새 거래로 저장합니다.', - 'reset_after' => '제출 후 양식 재설정', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => '분할 확장', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => '분할 축소', + 'splits' => '나누기', + 'add_another_split' => '다른 분할 추가', + 'cannot_edit_opening_balance' => '계정의 개설 잔액은 수정할 수 없습니다.', + 'no_edit_multiple_left' => '수정할 유효한 거래를 선택하지 않았습니다.', + 'breadcrumb_convert_group' => '거래 전환', + 'convert_invalid_source' => '거래 #%d에 대한 소스 정보가 잘못되었습니다.', + 'convert_invalid_destination' => '거래 #%d에 대한 대상 정보가 잘못되었습니다.', + 'create_another' => '저장후 이 페이지로 돌아와 다른 것을 만듭니다.', + 'after_update_create_another' => '업데이트 후 여기로 돌아와서 수정을 계속합니다.', + 'store_as_new' => '업데이트하는 대신 새 거래로 저장합니다.', + 'reset_after' => '제출 후 양식 재설정', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => '분할 확장', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => '분할 축소', // object groups - 'default_group_title_name' => '(그룹화 해제)', - 'default_group_title_name_plain' => '그룹 해제됨', + 'default_group_title_name' => '(그룹화 해제)', + 'default_group_title_name_plain' => '그룹 해제됨', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => '자산 계정을 만들어 봅시다!', - 'no_accounts_intro_asset' => '아직 자산 계정이 없습니다. 자산 계정은 당좌 예금 계좌, 저축 계좌, 공유 계좌 또는 신용 카드와 같은 기본 계좌입니다.', - 'no_accounts_imperative_asset' => 'Firefly III를 사용하려면 자산 계정을 하나 이상 만들어야 합니다. 지금 생성해 보겠습니다:', - 'no_accounts_create_asset' => '자산 계정 만들기', - 'no_accounts_title_expense' => '지출 계정을 만들어 봅시다!', - 'no_accounts_intro_expense' => '아직 지출 계정이 없습니다. 지출 계정은 상점이나 슈퍼마켓과 같이 돈을 쓰는 곳입니다.', - 'no_accounts_imperative_expense' => '지출 계정은 거래를 생성할 때 자동으로 생성되지만 원한다면 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', - 'no_accounts_create_expense' => '지출 계정 만들기', - 'no_accounts_title_revenue' => '수익 계정을 만들어 봅시다!', - 'no_accounts_intro_revenue' => '아직 수익 계정이 없습니다. 수익 계정은 고용주 등으로부터 돈을 받는 곳입니다.', - 'no_accounts_imperative_revenue' => '수익 계정은 거래를 생성할 때 자동으로 생성되지만 원한다면 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', - 'no_accounts_create_revenue' => '수익 계정 만들기', - 'no_accounts_title_liabilities' => '부채를 만들어 봅시다!', - 'no_accounts_intro_liabilities' => '아직 부채가 없습니다. 부채는 (학자금) 대출 및 기타 부채를 등록하는 계정입니다.', - 'no_accounts_imperative_liabilities' => '이 기능을 반드시 사용할 필요는 없지만, 이러한 사항을 추적하고 싶을 때 유용하게 사용할 수 있습니다.', - 'no_accounts_create_liabilities' => '부채 만들기', - 'no_budgets_title_default' => '예산을 만들어 봅시다', - 'no_rules_title_default' => '규칙을 만들어 봅시다', - 'no_budgets_intro_default' => '예산이 아직 없습니다. 예산은 소프트캡을 설정하여 지출을 제한할 수 있도록, 지출을 논리적인 그룹으로 정리하는 데 사용됩니다.', - 'no_rules_intro_default' => '아직 규칙이 없습니다. 규칙은 거래를 처리할 수 있는 강력한 자동화 기능입니다.', - 'no_rules_imperative_default' => '규칙은 거래를 관리할 때 매우 유용할 수 있습니다. 지금 규칙을 만들어 보겠습니다:', - 'no_budgets_imperative_default' => '예산은 재무 관리의 기본 도구입니다. 지금 만들어봅시다:', - 'no_budgets_create_default' => '예산 만들기', - 'no_rules_create_default' => '규칙 만들기', - 'no_categories_title_default' => '카테고리를 만들어 봅시다!', - 'no_categories_intro_default' => '아직 카테고리가 없습니다. 카테고리는 거래를 미세 조정하고 지정된 카테고리로 레이블을 지정하는 데 사용됩니다.', - 'no_categories_imperative_default' => '카테고리는 거래를 생성할 때 자동으로 생성되지만 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', - 'no_categories_create_default' => '카테고리 만들기', - 'no_tags_title_default' => '태그를 만들어 봅시다!', - 'no_tags_intro_default' => '태그가 아직 없습니다. 태그는 거래를 미세 조정하고 특정 키워드로 레이블을 지정하는데 사용됩니다.', - 'no_tags_imperative_default' => '태그는 거래를 생성할 때 자동으로 생성되지만 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', - 'no_tags_create_default' => '태그 생성', - 'no_transactions_title_withdrawal' => '지출을 만들어 봅시다!', - 'no_transactions_intro_withdrawal' => '아직 지출이 없습니다. 재정 관리를 시작하려면 지출을 만들어야 합니다.', - 'no_transactions_imperative_withdrawal' => '돈을 좀 사용하셨나요? 그렇다면 적어 두어야 합니다:', - 'no_transactions_create_withdrawal' => '지출 만들기', - 'no_transactions_title_deposit' => '수입을 만들어 봅시다!', - 'no_transactions_intro_deposit' => '아직 기록된 수입이 없습니다. 재정 관리를 시작하려면 수입 항목을 만들어야 합니다.', - 'no_transactions_imperative_deposit' => '돈을 받았나요? 그렇다면 적어 두어야 합니다:', - 'no_transactions_create_deposit' => '입금 만들기', - 'no_transactions_title_transfers' => '이체를 만들어 봅시다!', - 'no_transactions_intro_transfers' => '아직 이체가 없습니다. 자산 계정 간에 돈을 이동하면 이체로 기록됩니다.', - 'no_transactions_imperative_transfers' => '돈을 이리저리 옮기셨나요? 그렇다면 적어 두어야 합니다:', - 'no_transactions_create_transfers' => '이체 만들기', - 'no_piggies_title_default' => '저금통을 만들어 봅시다!', - 'no_piggies_intro_default' => '저금통이 아직 없습니다. 저금통을 만들어 저축을 나누고 무엇을 위해 저축하는지 추적할 수 있습니다.', - 'no_piggies_imperative_default' => '저축하고 있는 항목이 있나요? 저금통을 만들어 추적하세요:', - 'no_piggies_create_default' => '새 저금통 만들기', - 'no_bills_title_default' => '청구서를 만들어 봅시다!', - 'no_bills_intro_default' => '아직 청구서가 없습니다. 청구서를 만들어 집세나 보험료와 같은 정기적인 지출을 추적할 수 있습니다.', - 'no_bills_imperative_default' => '정기적으로 청구서를 받나요? 청구서를 만들어 결제 내역을 추적하세요:', - 'no_bills_create_default' => '청구서 만들기', + 'no_accounts_title_asset' => '자산 계정을 만들어 봅시다!', + 'no_accounts_intro_asset' => '아직 자산 계정이 없습니다. 자산 계정은 당좌 예금 계좌, 저축 계좌, 공유 계좌 또는 신용 카드와 같은 기본 계좌입니다.', + 'no_accounts_imperative_asset' => 'Firefly III를 사용하려면 자산 계정을 하나 이상 만들어야 합니다. 지금 생성해 보겠습니다:', + 'no_accounts_create_asset' => '자산 계정 만들기', + 'no_accounts_title_expense' => '지출 계정을 만들어 봅시다!', + 'no_accounts_intro_expense' => '아직 지출 계정이 없습니다. 지출 계정은 상점이나 슈퍼마켓과 같이 돈을 쓰는 곳입니다.', + 'no_accounts_imperative_expense' => '지출 계정은 거래를 생성할 때 자동으로 생성되지만 원한다면 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', + 'no_accounts_create_expense' => '지출 계정 만들기', + 'no_accounts_title_revenue' => '수익 계정을 만들어 봅시다!', + 'no_accounts_intro_revenue' => '아직 수익 계정이 없습니다. 수익 계정은 고용주 등으로부터 돈을 받는 곳입니다.', + 'no_accounts_imperative_revenue' => '수익 계정은 거래를 생성할 때 자동으로 생성되지만 원한다면 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', + 'no_accounts_create_revenue' => '수익 계정 만들기', + 'no_accounts_title_liabilities' => '부채를 만들어 봅시다!', + 'no_accounts_intro_liabilities' => '아직 부채가 없습니다. 부채는 (학자금) 대출 및 기타 부채를 등록하는 계정입니다.', + 'no_accounts_imperative_liabilities' => '이 기능을 반드시 사용할 필요는 없지만, 이러한 사항을 추적하고 싶을 때 유용하게 사용할 수 있습니다.', + 'no_accounts_create_liabilities' => '부채 만들기', + 'no_budgets_title_default' => '예산을 만들어 봅시다', + 'no_rules_title_default' => '규칙을 만들어 봅시다', + 'no_budgets_intro_default' => '예산이 아직 없습니다. 예산은 소프트캡을 설정하여 지출을 제한할 수 있도록, 지출을 논리적인 그룹으로 정리하는 데 사용됩니다.', + 'no_rules_intro_default' => '아직 규칙이 없습니다. 규칙은 거래를 처리할 수 있는 강력한 자동화 기능입니다.', + 'no_rules_imperative_default' => '규칙은 거래를 관리할 때 매우 유용할 수 있습니다. 지금 규칙을 만들어 보겠습니다:', + 'no_budgets_imperative_default' => '예산은 재무 관리의 기본 도구입니다. 지금 만들어봅시다:', + 'no_budgets_create_default' => '예산 만들기', + 'no_rules_create_default' => '규칙 만들기', + 'no_categories_title_default' => '카테고리를 만들어 봅시다!', + 'no_categories_intro_default' => '아직 카테고리가 없습니다. 카테고리는 거래를 미세 조정하고 지정된 카테고리로 레이블을 지정하는 데 사용됩니다.', + 'no_categories_imperative_default' => '카테고리는 거래를 생성할 때 자동으로 생성되지만 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', + 'no_categories_create_default' => '카테고리 만들기', + 'no_tags_title_default' => '태그를 만들어 봅시다!', + 'no_tags_intro_default' => '태그가 아직 없습니다. 태그는 거래를 미세 조정하고 특정 키워드로 레이블을 지정하는데 사용됩니다.', + 'no_tags_imperative_default' => '태그는 거래를 생성할 때 자동으로 생성되지만 수동으로도 만들 수 있습니다. 지금 하나 만들어 보겠습니다:', + 'no_tags_create_default' => '태그 생성', + 'no_transactions_title_withdrawal' => '지출을 만들어 봅시다!', + 'no_transactions_intro_withdrawal' => '아직 지출이 없습니다. 재정 관리를 시작하려면 지출을 만들어야 합니다.', + 'no_transactions_imperative_withdrawal' => '돈을 좀 사용하셨나요? 그렇다면 적어 두어야 합니다:', + 'no_transactions_create_withdrawal' => '지출 만들기', + 'no_transactions_title_deposit' => '수입을 만들어 봅시다!', + 'no_transactions_intro_deposit' => '아직 기록된 수입이 없습니다. 재정 관리를 시작하려면 수입 항목을 만들어야 합니다.', + 'no_transactions_imperative_deposit' => '돈을 받았나요? 그렇다면 적어 두어야 합니다:', + 'no_transactions_create_deposit' => '입금 만들기', + 'no_transactions_title_transfers' => '이체를 만들어 봅시다!', + 'no_transactions_intro_transfers' => '아직 이체가 없습니다. 자산 계정 간에 돈을 이동하면 이체로 기록됩니다.', + 'no_transactions_imperative_transfers' => '돈을 이리저리 옮기셨나요? 그렇다면 적어 두어야 합니다:', + 'no_transactions_create_transfers' => '이체 만들기', + 'no_piggies_title_default' => '저금통을 만들어 봅시다!', + 'no_piggies_intro_default' => '저금통이 아직 없습니다. 저금통을 만들어 저축을 나누고 무엇을 위해 저축하는지 추적할 수 있습니다.', + 'no_piggies_imperative_default' => '저축하고 있는 항목이 있나요? 저금통을 만들어 추적하세요:', + 'no_piggies_create_default' => '새 저금통 만들기', + 'no_bills_title_default' => '청구서를 만들어 봅시다!', + 'no_bills_intro_default' => '아직 청구서가 없습니다. 청구서를 만들어 집세나 보험료와 같은 정기적인 지출을 추적할 수 있습니다.', + 'no_bills_imperative_default' => '정기적으로 청구서를 받나요? 청구서를 만들어 결제 내역을 추적하세요:', + 'no_bills_create_default' => '청구서 만들기', // recurring transactions - 'create_right_now' => '지금 바로 만들기', - 'no_new_transaction_in_recurrence' => '새 거래가 생성되지 않았습니다. 이 날짜에 이미 해지된 것일까요?', - 'recurrences' => '반복 거래', - 'repeat_until_in_past' => '이 반복 거래는 :date에 반복이 중지되었습니다.', - 'recurring_calendar_view' => '달력', - 'no_recurring_title_default' => '반복 거래를 만들어 봅시다!', - 'no_recurring_intro_default' => '아직 반복 거래가 없습니다. 이를 사용하여 Firefly III가 자동으로 거래를 생성하도록 할 수 있습니다.', - 'no_recurring_imperative_default' => '이 기능은 꽤 고급 기능이지만 매우 유용할 수 있습니다. 계속하기 전에 오른쪽 상단에 있는 문서((?) 아이콘)를 읽어보시기 바랍니다.', - 'no_recurring_create_default' => '반복 거래 만들기', - 'make_new_recurring' => '반복 거래 만들기', - 'recurring_daily' => '매일', - 'recurring_weekly' => '매주 :weekday', - 'recurring_weekly_skip' => '매 :skip(st/nd/rd/th) 주 :weekday', - 'recurring_monthly' => '매월 :dayOfMonth(st/nd/rd/th) 일', - 'recurring_monthly_skip' => ':skip(st/nd/rd/th) 월마다 :dayOfMonth(st/nd/rd/th) 일에', - 'recurring_ndom' => '매월 :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => '매년 :date에', - 'overview_for_recurrence' => '":title" 반복 거래 개요', - 'warning_duplicates_repetitions' => '드물지만 이 목록에 날짜가 두 번 표시되는 경우가 있습니다. 이는 여러 반복이 충돌할 때 발생할 수 있습니다. Firefly III는 항상 하루에 하나의 트랜잭션을 생성합니다.', - 'created_transactions' => '관련 거래', - 'expected_withdrawals' => '예상 출금액', - 'expected_deposits' => '예상 입금', - 'expected_transfers' => '예상 이체', - 'created_withdrawals' => '출금 생성', - 'created_deposits' => '입금 생성', - 'created_transfers' => '이체 생성', - 'recurring_info' => '반복 거래 :count / :total', - 'created_from_recurrence' => '":title" (#:id) 반복 거래에서 생성됨', - 'recurring_never_cron' => '반복 거래를 지원하는 데 필요한 cron 작업이 실행된 적이 없는 것 같습니다. 물론 Firefly III를 방금 설치한 경우라면 정상적인 현상이지만, 가능한 한 빨리 설정해야 합니다. 페이지 오른쪽 상단의 (?) 아이콘을 사용하여 도움말 페이지를 확인하시기 바랍니다.', - 'recurring_cron_long_ago' => '반복 거래를 지원하는 cron 작업이 마지막으로 실행된 후 36시간이 넘은 것 같습니다. 올바르게 설정된 것이 맞나요? 페이지 오른쪽 상단의 (?) 아이콘을 사용하여 도움말 페이지를 확인하세요.', + 'create_right_now' => '지금 바로 만들기', + 'no_new_transaction_in_recurrence' => '새 거래가 생성되지 않았습니다. 이 날짜에 이미 해지된 것일까요?', + 'recurrences' => '반복 거래', + 'repeat_until_in_past' => '이 반복 거래는 :date에 반복이 중지되었습니다.', + 'recurring_calendar_view' => '달력', + 'no_recurring_title_default' => '반복 거래를 만들어 봅시다!', + 'no_recurring_intro_default' => '아직 반복 거래가 없습니다. 이를 사용하여 Firefly III가 자동으로 거래를 생성하도록 할 수 있습니다.', + 'no_recurring_imperative_default' => '이 기능은 꽤 고급 기능이지만 매우 유용할 수 있습니다. 계속하기 전에 오른쪽 상단에 있는 문서((?) 아이콘)를 읽어보시기 바랍니다.', + 'no_recurring_create_default' => '반복 거래 만들기', + 'make_new_recurring' => '반복 거래 만들기', + 'recurring_daily' => '매일', + 'recurring_weekly' => '매주 :weekday', + 'recurring_weekly_skip' => '매 :skip(st/nd/rd/th) 주 :weekday', + 'recurring_monthly' => '매월 :dayOfMonth(st/nd/rd/th) 일', + 'recurring_monthly_skip' => ':skip(st/nd/rd/th) 월마다 :dayOfMonth(st/nd/rd/th) 일에', + 'recurring_ndom' => '매월 :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => '매년 :date에', + 'overview_for_recurrence' => '":title" 반복 거래 개요', + 'warning_duplicates_repetitions' => '드물지만 이 목록에 날짜가 두 번 표시되는 경우가 있습니다. 이는 여러 반복이 충돌할 때 발생할 수 있습니다. Firefly III는 항상 하루에 하나의 트랜잭션을 생성합니다.', + 'created_transactions' => '관련 거래', + 'expected_withdrawals' => '예상 출금액', + 'expected_deposits' => '예상 입금', + 'expected_transfers' => '예상 이체', + 'created_withdrawals' => '출금 생성', + 'created_deposits' => '입금 생성', + 'created_transfers' => '이체 생성', + 'recurring_info' => '반복 거래 :count / :total', + 'created_from_recurrence' => '":title" (#:id) 반복 거래에서 생성됨', + 'recurring_never_cron' => '반복 거래를 지원하는 데 필요한 cron 작업이 실행된 적이 없는 것 같습니다. 물론 Firefly III를 방금 설치한 경우라면 정상적인 현상이지만, 가능한 한 빨리 설정해야 합니다. 페이지 오른쪽 상단의 (?) 아이콘을 사용하여 도움말 페이지를 확인하시기 바랍니다.', + 'recurring_cron_long_ago' => '반복 거래를 지원하는 cron 작업이 마지막으로 실행된 후 36시간이 넘은 것 같습니다. 올바르게 설정된 것이 맞나요? 페이지 오른쪽 상단의 (?) 아이콘을 사용하여 도움말 페이지를 확인하세요.', - 'create_new_recurrence' => '새 반복 거래 만들기', - 'help_first_date' => '첫 번째 예상 반복을 나타냅니다. 이것은 미래에 이루어져야 합니다.', - 'help_first_date_no_past' => '첫 번째 예상 반복을 나타냅니다. Firefly III는 과거의 거래를 생성하지 않습니다.', - 'no_currency' => '(통화 없음)', - 'mandatory_for_recurring' => '필수 반복 정보', - 'mandatory_for_transaction' => '필수 거래 정보', - 'optional_for_recurring' => '선택적 반복 정보', - 'optional_for_transaction' => '선택적 거래 정보', - 'change_date_other_options' => '더 많은 옵션을 보려면 "첫 번째 날짜"를 변경하세요.', - 'mandatory_fields_for_tranaction' => '여기의 값은 생성되는 거래에 최종적으로 반영됩니다', - 'click_for_calendar' => '거래가 반복되는 시기를 보여주는 달력을 보려면 여기를 클릭하세요.', - 'repeat_forever' => '영원히 반복', - 'repeat_until_date' => '날짜까지 반복', - 'repeat_times' => '여러 번 반복', - 'recurring_skips_one' => '다른 모든', - 'recurring_skips_more' => '건너뛰기 :count 발생', - 'store_new_recurrence' => '반복 거래 저장', - 'stored_new_recurrence' => '":title" 반복 거래가 성공적으로 저장되었습니다.', - 'edit_recurrence' => '":title" 반복 거래 수정', - 'recurring_repeats_until' => ':date 까지 반복', - 'recurring_repeats_forever' => '영원히 반복', - 'recurring_repeats_x_times' => ':count 회 반복|:count 회 반복', - 'update_recurrence' => '반복 거래 업데이트', - 'updated_recurrence' => '":title" 반복 거래 업데이트됨', - 'recurrence_is_inactive' => '이 반복 거래는 활성화되어 있지 않으며 새 거래를 생성하지 않습니다.', - 'delete_recurring' => '":title" 반복 거래 삭제', - 'new_recurring_transaction' => '새 반복 거래', - 'help_weekend' => '반복 거래가 토요일이나 일요일에 해당하는 경우 Firefly III는 어떻게 해야 하나요?', - 'do_nothing' => '그냥 트랜잭션을 생성', - 'skip_transaction' => '발생 건너뛰기', - 'jump_to_friday' => '대신 이전 금요일에 거래를 생성합니다', - 'jump_to_monday' => '대신 다음 월요일에 거래를 생성합니다', - 'will_jump_friday' => '주말이 아닌 금요일에 생성됩니다.', - 'will_jump_monday' => '주말이 아닌 월요일에 생성됩니다.', - 'except_weekends' => '주말 제외', - 'recurrence_deleted' => '반복 거래 ":title" 삭제됨', + 'create_new_recurrence' => '새 반복 거래 만들기', + 'help_first_date' => '첫 번째 예상 반복을 나타냅니다. 이것은 미래에 이루어져야 합니다.', + 'help_first_date_no_past' => '첫 번째 예상 반복을 나타냅니다. Firefly III는 과거의 거래를 생성하지 않습니다.', + 'no_currency' => '(통화 없음)', + 'mandatory_for_recurring' => '필수 반복 정보', + 'mandatory_for_transaction' => '필수 거래 정보', + 'optional_for_recurring' => '선택적 반복 정보', + 'optional_for_transaction' => '선택적 거래 정보', + 'change_date_other_options' => '더 많은 옵션을 보려면 "첫 번째 날짜"를 변경하세요.', + 'mandatory_fields_for_tranaction' => '여기의 값은 생성되는 거래에 최종적으로 반영됩니다', + 'click_for_calendar' => '거래가 반복되는 시기를 보여주는 달력을 보려면 여기를 클릭하세요.', + 'repeat_forever' => '영원히 반복', + 'repeat_until_date' => '날짜까지 반복', + 'repeat_times' => '여러 번 반복', + 'recurring_skips_one' => '다른 모든', + 'recurring_skips_more' => '건너뛰기 :count 발생', + 'store_new_recurrence' => '반복 거래 저장', + 'stored_new_recurrence' => '":title" 반복 거래가 성공적으로 저장되었습니다.', + 'edit_recurrence' => '":title" 반복 거래 수정', + 'recurring_repeats_until' => ':date 까지 반복', + 'recurring_repeats_forever' => '영원히 반복', + 'recurring_repeats_x_times' => ':count 회 반복|:count 회 반복', + 'update_recurrence' => '반복 거래 업데이트', + 'updated_recurrence' => '":title" 반복 거래 업데이트됨', + 'recurrence_is_inactive' => '이 반복 거래는 활성화되어 있지 않으며 새 거래를 생성하지 않습니다.', + 'delete_recurring' => '":title" 반복 거래 삭제', + 'new_recurring_transaction' => '새 반복 거래', + 'help_weekend' => '반복 거래가 토요일이나 일요일에 해당하는 경우 Firefly III는 어떻게 해야 하나요?', + 'do_nothing' => '그냥 트랜잭션을 생성', + 'skip_transaction' => '발생 건너뛰기', + 'jump_to_friday' => '대신 이전 금요일에 거래를 생성합니다', + 'jump_to_monday' => '대신 다음 월요일에 거래를 생성합니다', + 'will_jump_friday' => '주말이 아닌 금요일에 생성됩니다.', + 'will_jump_monday' => '주말이 아닌 월요일에 생성됩니다.', + 'except_weekends' => '주말 제외', + 'recurrence_deleted' => '반복 거래 ":title" 삭제됨', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => '잔고 (:currency)', - 'box_spent_in_currency' => '지출 (:currency)', - 'box_earned_in_currency' => '수입 (:currency)', - 'box_budgeted_in_currency' => '예산 (:currency)', - 'box_bill_paid_in_currency' => '결제된 청구서 (:currency)', - 'box_bill_unpaid_in_currency' => '결제되지 않은 청구서 (:currency)', - 'box_left_to_spend_in_currency' => '남은 지출 (:currency)', - 'box_net_worth_in_currency' => '순자산 (:currency)', - 'box_spend_per_day' => '하루 남은 지출: :amount', + 'box_balance_in_currency' => '잔고 (:currency)', + 'box_spent_in_currency' => '지출 (:currency)', + 'box_earned_in_currency' => '수입 (:currency)', + 'box_budgeted_in_currency' => '예산 (:currency)', + 'box_bill_paid_in_currency' => '결제된 청구서 (:currency)', + 'box_bill_unpaid_in_currency' => '결제되지 않은 청구서 (:currency)', + 'box_left_to_spend_in_currency' => '남은 지출 (:currency)', + 'box_net_worth_in_currency' => '순자산 (:currency)', + 'box_spend_per_day' => '하루 남은 지출: :amount', // debug page - 'debug_page' => '디버그 페이지', - 'debug_submit_instructions' => '문제가 발생하면 이 상자의 정보를 디버그 정보로 사용할 수 있습니다. 이 정보를 복사하여 신규 또는 기존 GitHub 이슈에 붙여넣으세요. 문제를 빠르게 진단하는 데 사용할 수 있는 멋진 표가 생성됩니다.', - 'debug_pretty_table' => '아래 상자를 GitHub 이슈에 복사/붙여넣으면 표가 생성됩니다. 이 텍스트를 백틱(`)이나 따옴표(\')로 둘러싸지 마세요.', - 'debug_additional_data' => '아래 상자의 내용을 공유할 수도 있습니다. 이 내용을 복사하여 신규 또는 기존 GitHub 이슈에 붙여넣을 수도 있습니다. 단, 이 상자의 내용에는 계정 이름, 거래 세부 정보 또는 이메일 주소와 같은 개인 정보가 포함될 수 있습니다.', + 'debug_page' => '디버그 페이지', + 'debug_submit_instructions' => '문제가 발생하면 이 상자의 정보를 디버그 정보로 사용할 수 있습니다. 이 정보를 복사하여 신규 또는 기존 GitHub 이슈에 붙여넣으세요. 문제를 빠르게 진단하는 데 사용할 수 있는 멋진 표가 생성됩니다.', + 'debug_pretty_table' => '아래 상자를 GitHub 이슈에 복사/붙여넣으면 표가 생성됩니다. 이 텍스트를 백틱(`)이나 따옴표(\')로 둘러싸지 마세요.', + 'debug_additional_data' => '아래 상자의 내용을 공유할 수도 있습니다. 이 내용을 복사하여 신규 또는 기존 GitHub 이슈에 붙여넣을 수도 있습니다. 단, 이 상자의 내용에는 계정 이름, 거래 세부 정보 또는 이메일 주소와 같은 개인 정보가 포함될 수 있습니다.', // object groups - 'object_groups_menu_bar' => '그룹', - 'object_groups_page_title' => '그룹', - 'object_groups_breadcrumb' => '그룹', - 'object_groups_index' => '개요', - 'object_groups' => '그룹', - 'object_groups_empty_explain' => 'Firefly III의 일부 항목은 그룹으로 나눌 수 있습니다. 예를 들어 저금통은 편집 및 생성 화면에 "그룹" 항목이 있습니다. 이 항목을 설정하면 이 페이지에서 그룹의 이름과 순서를 편집할 수 있습니다. 자세한 내용은 오른쪽 상단 모서리의 (?) 아이콘 아래에 있는 도움말 페이지를 확인하세요.', - 'object_group_title' => '제목', - 'edit_object_group' => '그룹 ":title" 수정', - 'delete_object_group' => '그룹 ":title" 삭제', - 'update_object_group' => '그룹 업데이트', - 'updated_object_group' => '그룹 ":title" 업데이트 성공', - 'deleted_object_group' => '그룹 ":title" 삭제 성공', - 'object_group' => '그룹', + 'object_groups_menu_bar' => '그룹', + 'object_groups_page_title' => '그룹', + 'object_groups_breadcrumb' => '그룹', + 'object_groups_index' => '개요', + 'object_groups' => '그룹', + 'object_groups_empty_explain' => 'Firefly III의 일부 항목은 그룹으로 나눌 수 있습니다. 예를 들어 저금통은 편집 및 생성 화면에 "그룹" 항목이 있습니다. 이 항목을 설정하면 이 페이지에서 그룹의 이름과 순서를 편집할 수 있습니다. 자세한 내용은 오른쪽 상단 모서리의 (?) 아이콘 아래에 있는 도움말 페이지를 확인하세요.', + 'object_group_title' => '제목', + 'edit_object_group' => '그룹 ":title" 수정', + 'delete_object_group' => '그룹 ":title" 삭제', + 'update_object_group' => '그룹 업데이트', + 'updated_object_group' => '그룹 ":title" 업데이트 성공', + 'deleted_object_group' => '그룹 ":title" 삭제 성공', + 'object_group' => '그룹', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => '감사 로그 항목', - 'ale_action_log_add' => '":name" 저금통에 :amount 추가', - 'ale_action_log_remove' => '":name" 저금통에서 :amount 제거', - 'ale_action_clear_budget' => '예산에서 제거됨', - 'ale_action_update_group_title' => '분할거래 설명 변경', - 'ale_action_update_date' => '거래 날짜 변경', - 'ale_action_update_order' => '거래 순서 변경', - 'ale_action_clear_category' => '카테고리에서 제거됨', - 'ale_action_clear_notes' => '제거된 노트', - 'ale_action_clear_tag' => '삭제된 태그', - 'ale_action_clear_all_tags' => '모든 태그 지우기', - 'ale_action_set_bill' => '청구서에 연결됨', - 'ale_action_switch_accounts' => '소스와 대상 계정 전환', - 'ale_action_set_budget' => '예산 설정', - 'ale_action_set_category' => '카테고리 설정', - 'ale_action_set_source' => '소스 계정 설정', - 'ale_action_set_destination' => '대상 계정 설정', - 'ale_action_update_transaction_type' => '변경된 거래 유형', - 'ale_action_update_notes' => '변경된 노트', - 'ale_action_update_description' => '변경된 설명', - 'ale_action_add_to_piggy' => '저금통', - 'ale_action_remove_from_piggy' => '저금통', - 'ale_action_add_tag' => '태그 추가', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => '감사 로그 항목', + 'ale_action_log_add' => '":name" 저금통에 :amount 추가', + 'ale_action_log_remove' => '":name" 저금통에서 :amount 제거', + 'ale_action_clear_budget' => '예산에서 제거됨', + 'ale_action_update_group_title' => '분할거래 설명 변경', + 'ale_action_update_date' => '거래 날짜 변경', + 'ale_action_update_order' => '거래 순서 변경', + 'ale_action_clear_category' => '카테고리에서 제거됨', + 'ale_action_clear_notes' => '제거된 노트', + 'ale_action_clear_tag' => '삭제된 태그', + 'ale_action_clear_all_tags' => '모든 태그 지우기', + 'ale_action_set_bill' => '청구서에 연결됨', + 'ale_action_switch_accounts' => '소스와 대상 계정 전환', + 'ale_action_set_budget' => '예산 설정', + 'ale_action_set_category' => '카테고리 설정', + 'ale_action_set_source' => '소스 계정 설정', + 'ale_action_set_destination' => '대상 계정 설정', + 'ale_action_update_transaction_type' => '변경된 거래 유형', + 'ale_action_update_notes' => '변경된 노트', + 'ale_action_update_description' => '변경된 설명', + 'ale_action_add_to_piggy' => '저금통', + 'ale_action_remove_from_piggy' => '저금통', + 'ale_action_add_tag' => '태그 추가', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => '통화 변환 활성화', - 'disable_auto_convert' => '통화 변환 비활성화', + 'enable_auto_convert' => '통화 변환 활성화', + 'disable_auto_convert' => '통화 변환 비활성화', ]; /* diff --git a/resources/lang/ko_KR/validation.php b/resources/lang/ko_KR/validation.php index f94144e328..7a65085690 100644 --- a/resources/lang/ko_KR/validation.php +++ b/resources/lang/ko_KR/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => '이 관리에 대한 올바른 액세스 권한이 없습니다.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/nb_NO/firefly.php b/resources/lang/nb_NO/firefly.php index b7249cc476..aa92208d54 100644 --- a/resources/lang/nb_NO/firefly.php +++ b/resources/lang/nb_NO/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Lukk', - 'actions' => 'Handlinger', - 'edit' => 'Rediger', - 'delete' => 'Slett', - 'split' => 'Del opp', - 'single_split' => 'Del opp', - 'clone' => 'Klon', - 'clone_and_edit' => 'Klon og rediger', - 'confirm_action' => 'Bekreft handling', - 'last_seven_days' => 'Syv siste dager', - 'last_thirty_days' => 'Tredve siste dager', - 'last_180_days' => 'Siste 180 dager', - 'month_to_date' => 'Måned til dato', - 'year_to_date' => 'År til dato', - 'YTD' => 'Hittil i år', - 'welcome_back' => 'Hvordan går det?', - 'everything' => 'Alt', - 'today' => 'i dag', - 'customRange' => 'Egendefinert utvalg', - 'date_range' => 'Datointervall', - 'apply' => 'Bruk', - 'select_date' => 'Velg dato..', - 'cancel' => 'Avbryt', - 'from' => 'Fra', - 'to' => 'Til', - 'structure' => 'Struktur', - 'help_translating' => 'Denne hjelpeteksten er ikke tilgjengelig i ditt språk. Vil du hjelpe å oversette?', - 'showEverything' => 'Vis alt', - 'never' => 'Aldri', - 'no_results_for_empty_search' => 'Søket ditt var tomt, så ingenting ble funnet.', - 'removed_amount' => 'Fjernet :amount', - 'added_amount' => 'La til :amount', - 'asset_account_role_help' => 'Eventuelle ekstra alternativer som følge av ditt valg kan settes senere.', - 'Opening balance' => 'Startsaldo', - 'create_new_stuff' => 'Lag nye ting', - 'new_withdrawal' => 'Nytt uttak', - 'create_new_transaction' => 'Opprett ny transaksjon', - 'sidebar_frontpage_create' => 'Opprett', - 'new_transaction' => 'Ny transaksjon', - 'no_rules_for_bill' => 'Denne regningen har ingen regler knyttet til den.', - 'go_to_asset_accounts' => 'Se aktivakontoene dine', - 'go_to_budgets' => 'Gå til budsjettene dine', - 'go_to_withdrawals' => 'Gå til uttakene dine', - 'clones_journal_x' => 'Denne transaksjonen er en klone av ":description" (#:id)', - 'go_to_categories' => 'Gå til kategoriene dine', - 'go_to_bills' => 'Gå til regningene dine', - 'go_to_expense_accounts' => 'Se utgiftskontoene dine', - 'go_to_revenue_accounts' => 'Se inntektskontoene dine', - 'go_to_piggies' => 'Gå til sparegrisene dine', - 'new_deposit' => 'Nytt innskudd', - 'new_transfer' => 'Ny overføring', - 'new_transfers' => 'Ny overføring', - 'new_asset_account' => 'Ny aktivakonto', - 'new_expense_account' => 'Ny utgiftskonto', - 'new_revenue_account' => 'Ny inntektskonto', - 'new_liabilities_account' => 'Ny gjeld', - 'new_budget' => 'Nytt budsjett', - 'new_bill' => 'Ny regning', - 'block_account_logout' => 'Du har blitt logget ut. Blokkerte kontoer kan ikke bruke dette nettstedet. Har du registrert deg med en gyldig e-postadresse?', - 'flash_success' => 'Suksess!', - 'flash_info' => 'Melding', - 'flash_warning' => 'Advarsel!', - 'flash_error' => 'Feil!', - 'flash_danger' => 'Fare!', - 'flash_info_multiple' => 'Det finnes én melding | Det finnes :count meldinger', - 'flash_error_multiple' => 'Det er én feil | Det er :count feil', - 'net_worth' => 'Formue', - 'help_for_this_page' => 'Hjelp for denne siden', - 'help_for_this_page_body' => 'Du finner mer informasjon om denne siden i dokumentasjonen.', - 'two_factor_welcome' => 'Hallo!', - 'two_factor_enter_code' => 'Vennligst skriv inn tofaktorautentiseringskoden for å fortsette. Appen på telefonen kan generere den for deg.', - 'two_factor_code_here' => 'Skriv koden her', - 'two_factor_title' => 'To-faktor autentisering', - 'authenticate' => 'Autentisere', - 'two_factor_forgot_title' => 'Mistet tofaktorautentisering', - 'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.', - 'two_factor_lost_header' => 'Mistet tofaktorautentisering?', - 'two_factor_lost_intro' => 'Hvis du også har mistet sikkerhetskodene din, har du dårlig hell. Noe du ikke kan fikse fra webgrensesnittet. Du har to valg.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Ellers sender du e-postadressen eieren, :site_owner og ber vedkommende om å tilbakestille tofaktorautentiseringen din.', - 'mfa_backup_code' => 'Du har brukt en sikkerhetskode for å logge inn i Firefly III. Den kan ikke brukes igjen, så kryss den fra listen din.', - 'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder', - 'pref_two_factor_backup_code_count' => 'Du har :count gyldige backup-koder. You have :count valid backup koder.', - '2fa_i_have_them' => 'Jeg lagret dem!', - 'warning_much_data' => ':days dager med data kan ta litt tid å laste.', - 'registered' => 'Registreringen var vellykket!', - 'Default asset account' => 'Standard aktivakonto', - 'no_budget_pointer' => 'Det ser ikke ut til at du har noen budsjetter ennå. Du bør opprette noen på budsjett-siden. Budsjetter kan hjelpe deg med å holde oversikt over utgifter.', - 'no_bill_pointer' => 'Det ser ut til at du ikke har noen regninger ennå. Du bør opprette noen på regninger-side. Regninger kan hjelpe deg med å holde oversikt over utgifter.', - 'Savings account' => 'Sparekonto', - 'Credit card' => 'Kredittkort', - 'source_accounts' => 'Kilde konto|Kildekontoer', - 'destination_accounts' => 'Destinasjonskonto(utgiftskonto)|Destinasjonskontoer', - 'user_id_is' => 'Din bruker-ID er :user', - 'field_supports_markdown' => 'Dette feltet støtter Markdown.', - 'need_more_help' => 'Hvis du trenger mer hjelp med å bruke Firefly III, vennligst opprett en sak på Github.', - 'reenable_intro_text' => 'Du kan også reaktivere introduksjonsveiledningen.', - 'intro_boxes_after_refresh' => 'Innføringsboksene vil dukke opp igjen når du laster siden på nytt.', - 'show_all_no_filter' => 'Vis alle transaksjoner uten å gruppere dem etter dato.', - 'expenses_by_category' => 'Utgifter etter kategori', - 'expenses_by_budget' => 'Utgifter etter budsjett', - 'income_by_category' => 'Inntekt etter kategori', - 'expenses_by_asset_account' => 'Utgifter etter aktivakonto', - 'expenses_by_expense_account' => 'Utgifter etter utgiftskonto', - 'cannot_redirect_to_account' => 'Firefly III kan ikke videresende deg til riktig side. Beklager.', - 'sum_of_expenses' => 'Sum av utgifter', - 'sum_of_income' => 'Sum av inntekt', - 'liabilities' => 'Gjeld', - 'spent_in_specific_budget' => 'Brukt i budsjett ":budget"', - 'spent_in_specific_double' => 'Brukt i konto ":account', - 'earned_in_specific_double' => 'Opptjent i konto ":account', - 'source_account' => 'Kildekonto', - 'source_account_reconciliation' => 'Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.', - 'destination_account' => 'Destinasjonskonto', - 'destination_account_reconciliation' => 'Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.', - 'sum_of_expenses_in_budget' => 'Brukt totalt i budsjett ":budget"', - 'left_in_budget_limit' => 'Igjen å bruke i følge budsjett', - 'current_period' => 'Nåværende periode', - 'show_the_current_period_and_overview' => 'Vis gjeldende periode og oversikt', - 'pref_languages_locale' => 'For at et annet språk enn engelsk skal fungere skikkelig, må operativsystemet ditt være utstyrt med riktig lokalinformasjon. Hvis dette ikke er på plass, kan valutadata, datoer og beløp bli vist feil.', - 'budget_in_period' => 'Alle transaksjoner for budsjett ":name" mellom :start og :end i :currency', - 'chart_budget_in_period' => 'Diagram for alle transaksjoner for budsjett ":name" mellom :start og :end i :currency', - 'chart_budget_in_period_only_currency' => 'Beløpet du budsjetterte var i :currency, så dette diagrammet vil bare vise transaksjoner i :currency.', - 'chart_account_in_period' => 'Diagram for alle transaksjoner for konto ":name" (:balance) mellom :start og :end', - 'chart_category_in_period' => 'Diagram for alle transaksjoner for kategori ":name" mellom :start og :end', - 'chart_category_all' => 'Graf over alle transaksjoner for kategori ":name"', - 'clone_withdrawal' => 'Klone dette uttaket', - 'clone_deposit' => 'Klone dette innskuddet', - 'clone_transfer' => 'Klone denne overføringen', - 'multi_select_no_selection' => 'Ingen valgt', - 'multi_select_select_all' => 'Velg alle', - 'multi_select_n_selected' => 'valgt', - 'multi_select_all_selected' => 'Alle valgte', - 'multi_select_filter_placeholder' => 'Finn..', - 'intro_next_label' => 'Neste', - 'intro_prev_label' => 'Forrige', - 'intro_skip_label' => 'Hopp over', - 'intro_done_label' => 'Ferdig', - 'between_dates_breadcrumb' => 'Mellom :start og :end', - 'all_journals_without_budget' => 'Alle transaksjoner uten budsjett', - 'journals_without_budget' => 'Transaksjoner uten budsjett', - 'all_journals_without_category' => 'Alle ukategoriserte transaksjoner', - 'journals_without_category' => 'Ukategoriserte transaksjoner', - 'all_journals_for_account' => 'Alle transaksjoner for konto :name', - 'chart_all_journals_for_account' => 'Graf over alle transaksjoner for konto :name', - 'journals_in_period_for_account' => 'Alle transaksjoner for konto :name mellom :start og :end', - 'journals_in_period_for_account_js' => 'Alle transaksjoner for konto {title} mellom {start} og {end}', - 'transferred' => 'Overført', - 'all_withdrawal' => 'Alle utgifter', - 'all_transactions' => 'Alle transaksjoner', - 'title_withdrawal_between' => 'Alle utgifter mellom :start og :end', - 'all_deposit' => 'Alle inntekter', - 'title_deposit_between' => 'Alle inntekter mellom :start og :end', - 'all_transfers' => 'Alle overføringer', - 'title_transfers_between' => 'Alle overføringer mellom :start og :end', - 'all_transfer' => 'Alle overføringer', - 'all_journals_for_tag' => 'Alle transaksjoner for tagg ":tag"', - 'title_transfer_between' => 'Alle overføringer mellom :start og :end', - 'all_journals_for_category' => 'Alle transaksjoner for kategori :name', - 'all_journals_for_budget' => 'Alle transaksjoner for budsjett :name', - 'chart_all_journals_for_budget' => 'Graf over alle transaksjoner for budsjett :name', - 'journals_in_period_for_category' => 'Alle transaksjoner for kategori :name mellom :start og :end', - 'journals_in_period_for_tag' => 'Alle transaksjoner for tagg :tag mellom :start og :end', - 'not_available_demo_user' => 'Funksjonen du prøver å få tilgang til, er ikke tilgjengelig for demobrukere.', - 'exchange_rate_instructions' => 'Aktivakonto "@name" godtar kun transaksjoner i @native_currency. Hvis du ønsker å bruke @foreign_currency i stedet, må du passe på at beløpet i @native_currency også er satt:', - 'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" godtar kun transaksjoner i @source_currency. Destinasjonskonto "@dest_name" aksepterer bare transaksjoner i @dest_currency. Du må angi overført beløp riktig i begge valutaene.', - 'transaction_data' => 'Transaksjonsdata', - 'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Hurtigbryter', - 'sign_in_to_start' => 'Logg inn for å starte økten', - 'sign_in' => 'Logg inn', - 'register_new_account' => 'Registrer en ny konto', - 'forgot_my_password' => 'Jeg har glemt passordet mitt', - 'problems_with_input' => 'Det var noen problemer med utfyllingen din.', - 'reset_password' => 'Tilbakestill passordet ditt', - 'button_reset_password' => 'Tilbakestill passord', - 'reset_button' => 'Tilbakestill', - 'want_to_login' => 'Jeg vil logge inn', - 'login_page_title' => 'Innlogging til Firefly III', - 'register_page_title' => 'Registrer deg på Firefly III', - 'forgot_pw_page_title' => 'Glemt passord for Firefly III', - 'reset_pw_page_title' => 'Nullstill passord for Firefly III', - 'cannot_reset_demo_user' => 'Du kan ikke nustille passordet til demo bruker.', - 'no_att_demo_user' => 'Demo brukeren kan ikke laste opp vedlegg.', - 'button_register' => 'Registrer', - 'authorization' => 'Autorisasjon', - 'active_bills_only' => 'kun aktive regninger', - 'active_bills_only_total' => 'alle aktive regninger', - 'active_exp_bills_only' => 'kun aktive og forventede regninger', - 'active_exp_bills_only_total' => 'kun aktive og forventede regninger', - 'per_period_sum_1D' => 'Forventede daglige kostnader', - 'per_period_sum_1W' => 'Forventede ukentlige kostnader', - 'per_period_sum_1M' => 'Forventede månedlige kostnader', - 'per_period_sum_3M' => 'Forventede kvartalskostnader', - 'per_period_sum_6M' => 'Forventede halvårlige kostnader', - 'per_period_sum_1Y' => 'Forventede årlige kostnader', - 'average_per_bill' => 'gjennomsnitt per regning', - 'expected_total' => 'forventet totalt', - 'reconciliation_account_name' => ':name avstemming (:currency)', - 'saved' => 'Lagret', - 'advanced_options' => 'Avanserte innstillinger', - 'advanced_options_explain' => 'Noen sider i Firefly III har gjemt avanserte alternativer bak denne knappen. Denne siden har ikke noe fancy, men sjekk ut de andre!', - 'here_be_dragons' => 'Her finnes drager', + 'close' => 'Lukk', + 'actions' => 'Handlinger', + 'edit' => 'Rediger', + 'delete' => 'Slett', + 'split' => 'Del opp', + 'single_split' => 'Del opp', + 'clone' => 'Klon', + 'clone_and_edit' => 'Klon og rediger', + 'confirm_action' => 'Bekreft handling', + 'last_seven_days' => 'Syv siste dager', + 'last_thirty_days' => 'Tredve siste dager', + 'last_180_days' => 'Siste 180 dager', + 'month_to_date' => 'Måned til dato', + 'year_to_date' => 'År til dato', + 'YTD' => 'Hittil i år', + 'welcome_back' => 'Hvordan går det?', + 'everything' => 'Alt', + 'today' => 'i dag', + 'customRange' => 'Egendefinert utvalg', + 'date_range' => 'Datointervall', + 'apply' => 'Bruk', + 'select_date' => 'Velg dato..', + 'cancel' => 'Avbryt', + 'from' => 'Fra', + 'to' => 'Til', + 'structure' => 'Struktur', + 'help_translating' => 'Denne hjelpeteksten er ikke tilgjengelig i ditt språk. Vil du hjelpe å oversette?', + 'showEverything' => 'Vis alt', + 'never' => 'Aldri', + 'no_results_for_empty_search' => 'Søket ditt var tomt, så ingenting ble funnet.', + 'removed_amount' => 'Fjernet :amount', + 'added_amount' => 'La til :amount', + 'asset_account_role_help' => 'Eventuelle ekstra alternativer som følge av ditt valg kan settes senere.', + 'Opening balance' => 'Startsaldo', + 'create_new_stuff' => 'Lag nye ting', + 'new_withdrawal' => 'Nytt uttak', + 'create_new_transaction' => 'Opprett ny transaksjon', + 'sidebar_frontpage_create' => 'Opprett', + 'new_transaction' => 'Ny transaksjon', + 'no_rules_for_bill' => 'Denne regningen har ingen regler knyttet til den.', + 'go_to_asset_accounts' => 'Se aktivakontoene dine', + 'go_to_budgets' => 'Gå til budsjettene dine', + 'go_to_withdrawals' => 'Gå til uttakene dine', + 'clones_journal_x' => 'Denne transaksjonen er en klone av ":description" (#:id)', + 'go_to_categories' => 'Gå til kategoriene dine', + 'go_to_bills' => 'Gå til regningene dine', + 'go_to_expense_accounts' => 'Se utgiftskontoene dine', + 'go_to_revenue_accounts' => 'Se inntektskontoene dine', + 'go_to_piggies' => 'Gå til sparegrisene dine', + 'new_deposit' => 'Nytt innskudd', + 'new_transfer' => 'Ny overføring', + 'new_transfers' => 'Ny overføring', + 'new_asset_account' => 'Ny aktivakonto', + 'new_expense_account' => 'Ny utgiftskonto', + 'new_revenue_account' => 'Ny inntektskonto', + 'new_liabilities_account' => 'Ny gjeld', + 'new_budget' => 'Nytt budsjett', + 'new_bill' => 'Ny regning', + 'block_account_logout' => 'Du har blitt logget ut. Blokkerte kontoer kan ikke bruke dette nettstedet. Har du registrert deg med en gyldig e-postadresse?', + 'flash_success' => 'Suksess!', + 'flash_info' => 'Melding', + 'flash_warning' => 'Advarsel!', + 'flash_error' => 'Feil!', + 'flash_danger' => 'Fare!', + 'flash_info_multiple' => 'Det finnes én melding | Det finnes :count meldinger', + 'flash_error_multiple' => 'Det er én feil | Det er :count feil', + 'net_worth' => 'Formue', + 'help_for_this_page' => 'Hjelp for denne siden', + 'help_for_this_page_body' => 'Du finner mer informasjon om denne siden i dokumentasjonen.', + 'two_factor_welcome' => 'Hallo!', + 'two_factor_enter_code' => 'Vennligst skriv inn tofaktorautentiseringskoden for å fortsette. Appen på telefonen kan generere den for deg.', + 'two_factor_code_here' => 'Skriv koden her', + 'two_factor_title' => 'To-faktor autentisering', + 'authenticate' => 'Autentisere', + 'two_factor_forgot_title' => 'Mistet tofaktorautentisering', + 'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.', + 'two_factor_lost_header' => 'Mistet tofaktorautentisering?', + 'two_factor_lost_intro' => 'Hvis du også har mistet sikkerhetskodene din, har du dårlig hell. Noe du ikke kan fikse fra webgrensesnittet. Du har to valg.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Ellers sender du e-postadressen eieren, :site_owner og ber vedkommende om å tilbakestille tofaktorautentiseringen din.', + 'mfa_backup_code' => 'Du har brukt en sikkerhetskode for å logge inn i Firefly III. Den kan ikke brukes igjen, så kryss den fra listen din.', + 'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder', + 'pref_two_factor_backup_code_count' => 'Du har :count gyldige backup-koder. You have :count valid backup koder.', + '2fa_i_have_them' => 'Jeg lagret dem!', + 'warning_much_data' => ':days dager med data kan ta litt tid å laste.', + 'registered' => 'Registreringen var vellykket!', + 'Default asset account' => 'Standard aktivakonto', + 'no_budget_pointer' => 'Det ser ikke ut til at du har noen budsjetter ennå. Du bør opprette noen på budsjett-siden. Budsjetter kan hjelpe deg med å holde oversikt over utgifter.', + 'no_bill_pointer' => 'Det ser ut til at du ikke har noen regninger ennå. Du bør opprette noen på regninger-side. Regninger kan hjelpe deg med å holde oversikt over utgifter.', + 'Savings account' => 'Sparekonto', + 'Credit card' => 'Kredittkort', + 'source_accounts' => 'Kilde konto|Kildekontoer', + 'destination_accounts' => 'Destinasjonskonto(utgiftskonto)|Destinasjonskontoer', + 'user_id_is' => 'Din bruker-ID er :user', + 'field_supports_markdown' => 'Dette feltet støtter Markdown.', + 'need_more_help' => 'Hvis du trenger mer hjelp med å bruke Firefly III, vennligst opprett en sak på Github.', + 'reenable_intro_text' => 'Du kan også reaktivere introduksjonsveiledningen.', + 'intro_boxes_after_refresh' => 'Innføringsboksene vil dukke opp igjen når du laster siden på nytt.', + 'show_all_no_filter' => 'Vis alle transaksjoner uten å gruppere dem etter dato.', + 'expenses_by_category' => 'Utgifter etter kategori', + 'expenses_by_budget' => 'Utgifter etter budsjett', + 'income_by_category' => 'Inntekt etter kategori', + 'expenses_by_asset_account' => 'Utgifter etter aktivakonto', + 'expenses_by_expense_account' => 'Utgifter etter utgiftskonto', + 'cannot_redirect_to_account' => 'Firefly III kan ikke videresende deg til riktig side. Beklager.', + 'sum_of_expenses' => 'Sum av utgifter', + 'sum_of_income' => 'Sum av inntekt', + 'liabilities' => 'Gjeld', + 'spent_in_specific_budget' => 'Brukt i budsjett ":budget"', + 'spent_in_specific_double' => 'Brukt i konto ":account', + 'earned_in_specific_double' => 'Opptjent i konto ":account', + 'source_account' => 'Kildekonto', + 'source_account_reconciliation' => 'Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.', + 'destination_account' => 'Destinasjonskonto', + 'destination_account_reconciliation' => 'Du kan ikke redigere kildekontoen for en avstemmingstransaksjon.', + 'sum_of_expenses_in_budget' => 'Brukt totalt i budsjett ":budget"', + 'left_in_budget_limit' => 'Igjen å bruke i følge budsjett', + 'current_period' => 'Nåværende periode', + 'show_the_current_period_and_overview' => 'Vis gjeldende periode og oversikt', + 'pref_languages_locale' => 'For at et annet språk enn engelsk skal fungere skikkelig, må operativsystemet ditt være utstyrt med riktig lokalinformasjon. Hvis dette ikke er på plass, kan valutadata, datoer og beløp bli vist feil.', + 'budget_in_period' => 'Alle transaksjoner for budsjett ":name" mellom :start og :end i :currency', + 'chart_budget_in_period' => 'Diagram for alle transaksjoner for budsjett ":name" mellom :start og :end i :currency', + 'chart_budget_in_period_only_currency' => 'Beløpet du budsjetterte var i :currency, så dette diagrammet vil bare vise transaksjoner i :currency.', + 'chart_account_in_period' => 'Diagram for alle transaksjoner for konto ":name" (:balance) mellom :start og :end', + 'chart_category_in_period' => 'Diagram for alle transaksjoner for kategori ":name" mellom :start og :end', + 'chart_category_all' => 'Graf over alle transaksjoner for kategori ":name"', + 'clone_withdrawal' => 'Klone dette uttaket', + 'clone_deposit' => 'Klone dette innskuddet', + 'clone_transfer' => 'Klone denne overføringen', + 'multi_select_no_selection' => 'Ingen valgt', + 'multi_select_select_all' => 'Velg alle', + 'multi_select_n_selected' => 'valgt', + 'multi_select_all_selected' => 'Alle valgte', + 'multi_select_filter_placeholder' => 'Finn..', + 'intro_next_label' => 'Neste', + 'intro_prev_label' => 'Forrige', + 'intro_skip_label' => 'Hopp over', + 'intro_done_label' => 'Ferdig', + 'between_dates_breadcrumb' => 'Mellom :start og :end', + 'all_journals_without_budget' => 'Alle transaksjoner uten budsjett', + 'journals_without_budget' => 'Transaksjoner uten budsjett', + 'all_journals_without_category' => 'Alle ukategoriserte transaksjoner', + 'journals_without_category' => 'Ukategoriserte transaksjoner', + 'all_journals_for_account' => 'Alle transaksjoner for konto :name', + 'chart_all_journals_for_account' => 'Graf over alle transaksjoner for konto :name', + 'journals_in_period_for_account' => 'Alle transaksjoner for konto :name mellom :start og :end', + 'journals_in_period_for_account_js' => 'Alle transaksjoner for konto {title} mellom {start} og {end}', + 'transferred' => 'Overført', + 'all_withdrawal' => 'Alle utgifter', + 'all_transactions' => 'Alle transaksjoner', + 'title_withdrawal_between' => 'Alle utgifter mellom :start og :end', + 'all_deposit' => 'Alle inntekter', + 'title_deposit_between' => 'Alle inntekter mellom :start og :end', + 'all_transfers' => 'Alle overføringer', + 'title_transfers_between' => 'Alle overføringer mellom :start og :end', + 'all_transfer' => 'Alle overføringer', + 'all_journals_for_tag' => 'Alle transaksjoner for tagg ":tag"', + 'title_transfer_between' => 'Alle overføringer mellom :start og :end', + 'all_journals_for_category' => 'Alle transaksjoner for kategori :name', + 'all_journals_for_budget' => 'Alle transaksjoner for budsjett :name', + 'chart_all_journals_for_budget' => 'Graf over alle transaksjoner for budsjett :name', + 'journals_in_period_for_category' => 'Alle transaksjoner for kategori :name mellom :start og :end', + 'journals_in_period_for_tag' => 'Alle transaksjoner for tagg :tag mellom :start og :end', + 'not_available_demo_user' => 'Funksjonen du prøver å få tilgang til, er ikke tilgjengelig for demobrukere.', + 'exchange_rate_instructions' => 'Aktivakonto "@name" godtar kun transaksjoner i @native_currency. Hvis du ønsker å bruke @foreign_currency i stedet, må du passe på at beløpet i @native_currency også er satt:', + 'transfer_exchange_rate_instructions' => 'Kildekonto "@source_name" godtar kun transaksjoner i @source_currency. Destinasjonskonto "@dest_name" aksepterer bare transaksjoner i @dest_currency. Du må angi overført beløp riktig i begge valutaene.', + 'transaction_data' => 'Transaksjonsdata', + 'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Hurtigbryter', + 'sign_in_to_start' => 'Logg inn for å starte økten', + 'sign_in' => 'Logg inn', + 'register_new_account' => 'Registrer en ny konto', + 'forgot_my_password' => 'Jeg har glemt passordet mitt', + 'problems_with_input' => 'Det var noen problemer med utfyllingen din.', + 'reset_password' => 'Tilbakestill passordet ditt', + 'button_reset_password' => 'Tilbakestill passord', + 'reset_button' => 'Tilbakestill', + 'want_to_login' => 'Jeg vil logge inn', + 'login_page_title' => 'Innlogging til Firefly III', + 'register_page_title' => 'Registrer deg på Firefly III', + 'forgot_pw_page_title' => 'Glemt passord for Firefly III', + 'reset_pw_page_title' => 'Nullstill passord for Firefly III', + 'cannot_reset_demo_user' => 'Du kan ikke nustille passordet til demo bruker.', + 'no_att_demo_user' => 'Demo brukeren kan ikke laste opp vedlegg.', + 'button_register' => 'Registrer', + 'authorization' => 'Autorisasjon', + 'active_bills_only' => 'kun aktive regninger', + 'active_bills_only_total' => 'alle aktive regninger', + 'active_exp_bills_only' => 'kun aktive og forventede regninger', + 'active_exp_bills_only_total' => 'kun aktive og forventede regninger', + 'per_period_sum_1D' => 'Forventede daglige kostnader', + 'per_period_sum_1W' => 'Forventede ukentlige kostnader', + 'per_period_sum_1M' => 'Forventede månedlige kostnader', + 'per_period_sum_3M' => 'Forventede kvartalskostnader', + 'per_period_sum_6M' => 'Forventede halvårlige kostnader', + 'per_period_sum_1Y' => 'Forventede årlige kostnader', + 'average_per_bill' => 'gjennomsnitt per regning', + 'expected_total' => 'forventet totalt', + 'reconciliation_account_name' => ':name avstemming (:currency)', + 'saved' => 'Lagret', + 'advanced_options' => 'Avanserte innstillinger', + 'advanced_options_explain' => 'Noen sider i Firefly III har gjemt avanserte alternativer bak denne knappen. Denne siden har ikke noe fancy, men sjekk ut de andre!', + 'here_be_dragons' => 'Her finnes drager', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => 'Ingen Webhook meldinger', - 'webhook_trigger_STORE_TRANSACTION' => 'Etter transaksjons opprettelse', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Etter transaksjons oppdatering', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Etter transaksjons sletting', - 'webhook_response_TRANSACTIONS' => 'Transaksjonsdetaljer', - 'webhook_response_ACCOUNTS' => 'Kontodetaljer', - 'webhook_response_none_NONE' => 'Ingen detaljer', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspiser', - 'create_new_webhook' => 'Opprett ny Webhook', - 'webhooks_create_breadcrumb' => 'Opprett ny Webhook', - 'webhook_trigger_form_help' => 'Hvilken hendelse skal Webhook utløse', - 'webhook_response_form_help' => 'Hva skal Webhook sende til URL.', - 'webhook_delivery_form_help' => 'Hvilket format skal Webhook sende data i.', - 'webhook_active_form_help' => 'Webhook må aktiveres for å virke.', - 'stored_new_webhook' => 'Lagret ny webhook ":title"', - 'delete_webhook' => 'Slett Webhook', - 'deleted_webhook' => 'Slettet Webhook ":title"', - 'edit_webhook' => 'Rediger Webhook ":title"', - 'updated_webhook' => 'Oppdatert Webhook ":title"', - 'edit_webhook_js' => 'Rediger Webhook "{title}"', - 'show_webhook' => 'Webhook «:title»', - 'webhook_was_triggered' => 'Webhook ble trigget på den angitte transaksjonen. Vennligst vent på resultatet.', - 'webhook_messages' => 'Webhook melding', - 'view_message' => 'Vis melding', - 'view_attempts' => 'Vis mislykkede forsøk', - 'message_content_title' => 'Webhook meldingsinnhold', - 'message_content_help' => 'Dette er innholdet av meldingen som ble sendt (eller forsøkt sendt) med denne Webhook.', - 'attempt_content_title' => 'Webhook forsøk', - 'attempt_content_help' => 'Dette er alle mislykkede forsøk på denne webhook-meldingen som sendes til den konfigurerte URL-en. Etter en tid vil Firefly III slutte å prøve.', - 'no_attempts' => 'Det er ingen mislykkede forsøk. Det er god ting!', - 'webhook_attempt_at' => 'Forsøk på {moment}', - 'logs' => 'Logger', - 'response' => 'Respons', - 'visit_webhook_url' => 'Besøk URL til webhook', - 'reset_webhook_secret' => 'Tilbakestill Webhook nøkkel', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") er lagret.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") er oppdatert.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => 'Ingen Webhook meldinger', + 'webhook_trigger_STORE_TRANSACTION' => 'Etter transaksjons opprettelse', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Etter transaksjons oppdatering', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Etter transaksjons sletting', + 'webhook_response_TRANSACTIONS' => 'Transaksjonsdetaljer', + 'webhook_response_ACCOUNTS' => 'Kontodetaljer', + 'webhook_response_none_NONE' => 'Ingen detaljer', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspiser', + 'create_new_webhook' => 'Opprett ny Webhook', + 'webhooks_create_breadcrumb' => 'Opprett ny Webhook', + 'webhook_trigger_form_help' => 'Hvilken hendelse skal Webhook utløse', + 'webhook_response_form_help' => 'Hva skal Webhook sende til URL.', + 'webhook_delivery_form_help' => 'Hvilket format skal Webhook sende data i.', + 'webhook_active_form_help' => 'Webhook må aktiveres for å virke.', + 'stored_new_webhook' => 'Lagret ny webhook ":title"', + 'delete_webhook' => 'Slett Webhook', + 'deleted_webhook' => 'Slettet Webhook ":title"', + 'edit_webhook' => 'Rediger Webhook ":title"', + 'updated_webhook' => 'Oppdatert Webhook ":title"', + 'edit_webhook_js' => 'Rediger Webhook "{title}"', + 'show_webhook' => 'Webhook «:title»', + 'webhook_was_triggered' => 'Webhook ble trigget på den angitte transaksjonen. Vennligst vent på resultatet.', + 'webhook_messages' => 'Webhook melding', + 'view_message' => 'Vis melding', + 'view_attempts' => 'Vis mislykkede forsøk', + 'message_content_title' => 'Webhook meldingsinnhold', + 'message_content_help' => 'Dette er innholdet av meldingen som ble sendt (eller forsøkt sendt) med denne Webhook.', + 'attempt_content_title' => 'Webhook forsøk', + 'attempt_content_help' => 'Dette er alle mislykkede forsøk på denne webhook-meldingen som sendes til den konfigurerte URL-en. Etter en tid vil Firefly III slutte å prøve.', + 'no_attempts' => 'Det er ingen mislykkede forsøk. Det er god ting!', + 'webhook_attempt_at' => 'Forsøk på {moment}', + 'logs' => 'Logger', + 'response' => 'Respons', + 'visit_webhook_url' => 'Besøk URL til webhook', + 'reset_webhook_secret' => 'Tilbakestill Webhook nøkkel', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") er lagret.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") er oppdatert.', // API access - 'authorization_request' => 'Firefly III v:version autorisasjonsforespørsel', - 'authorization_request_intro' => 'Applikasjon ":client" ber om tilgang til din økonomiske administrasjon. Vil du tillate :client slik at den får tilgang til dine data?', - 'authorization_request_site' => 'Du vil bli omdirigert til :url som da vil gi tilgang til dine Firefly III data.', - 'authorization_request_invalid' => 'Ugyldig adgangsforespørsel. Vennligst ikke følg denne linken igjen.', - 'scopes_will_be_able' => 'Denne applikasjonen vil kunne:', - 'button_authorize' => 'Autoriser', - 'none_in_select_list' => '(ingen)', - 'no_piggy_bank' => '(ingen sparegriser)', - 'name_in_currency' => ':name i :currency', - 'paid_in_currency' => 'Betalt i :currency', - 'unpaid_in_currency' => 'Ubetalt i :currency', - 'is_alpha_warning' => 'Du kjører en ALPHA-versjon. Vær varsom for feil og problemer.', - 'is_beta_warning' => 'Du kjører en BETA-versjon. Vær varsom for bugs og problemer.', - 'all_destination_accounts' => 'Destinasjonskonto', - 'all_source_accounts' => 'Kildekontoer', - 'back_to_index' => 'Tilbake til index', - 'cant_logout_guard' => 'Firefly III kan ikke logge deg ut.', - 'internal_reference' => 'Intern referanse', + 'authorization_request' => 'Firefly III v:version autorisasjonsforespørsel', + 'authorization_request_intro' => 'Applikasjon ":client" ber om tilgang til din økonomiske administrasjon. Vil du tillate :client slik at den får tilgang til dine data?', + 'authorization_request_site' => 'Du vil bli omdirigert til :url som da vil gi tilgang til dine Firefly III data.', + 'authorization_request_invalid' => 'Ugyldig adgangsforespørsel. Vennligst ikke følg denne linken igjen.', + 'scopes_will_be_able' => 'Denne applikasjonen vil kunne:', + 'button_authorize' => 'Autoriser', + 'none_in_select_list' => '(ingen)', + 'no_piggy_bank' => '(ingen sparegriser)', + 'name_in_currency' => ':name i :currency', + 'paid_in_currency' => 'Betalt i :currency', + 'unpaid_in_currency' => 'Ubetalt i :currency', + 'is_alpha_warning' => 'Du kjører en ALPHA-versjon. Vær varsom for feil og problemer.', + 'is_beta_warning' => 'Du kjører en BETA-versjon. Vær varsom for bugs og problemer.', + 'all_destination_accounts' => 'Destinasjonskonto', + 'all_source_accounts' => 'Kildekontoer', + 'back_to_index' => 'Tilbake til index', + 'cant_logout_guard' => 'Firefly III kan ikke logge deg ut.', + 'internal_reference' => 'Intern referanse', // check for updates: - 'update_check_title' => 'Se etter oppdateringer', - 'admin_update_check_title' => 'Se etter oppdateringer automatisk', - 'admin_update_check_explain' => 'Firefly III kan sjekke etter oppdateringer automatisk. Når du aktiverer denne innstillingen, vil systemet kontakte Github for å se om en ny versjon av Firefly III er tilgjengelig. Når det er kommet en ny oppdatering, vil du bli varslet. Du kan teste dette varselet ved hjelp av knappen til høyre. Vennligst marker nedenfor hvis du vil at Firefly III skal se etter oppdateringer.', - 'check_for_updates_permission' => 'Firefly III kan se etter oppdateringer, men det trenger din tillatelse til å gjøre det. Gå til -administrasjonen for å velge om denne funksjonen skal aktiveres.', - 'updates_ask_me_later' => 'Spør meg senere', - 'updates_do_not_check' => 'Ikke se etter oppdateringer', - 'updates_enable_check' => 'Aktiver oppdateringssjekk', - 'admin_update_check_now_title' => 'Se etter oppdateringer nå', - 'admin_update_check_now_explain' => 'Hvis du trykker på knappen, vil Firefly III se om din nåværende versjon er den nyeste.', - 'check_for_updates_button' => 'Sjekk nå!', - 'update_new_version_alert' => 'En ny versjon av Firefly III er tilgjengelig. Du kjører :your_version, den nyeste versjonen er :new_version som ble utgitt den :date.', - 'update_version_beta' => 'Dette er en BETA versjon, du kan oppleve problemer.', - 'update_version_alpha' => 'Dette er en ALPHA versjon, du kan oppleve problemer.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Du kjører :version, som er den nyeste tilgjengelige utgivelsen.', - 'update_newer_version_alert' => 'Du kjører :your_version, som er nyere enn den nyeste versjonen, :new_version.', - 'update_check_error' => 'Det oppstod en feil under søk etter oppdatering: :error', - 'unknown_error' => 'Ukjent feil. Beklager det.', - 'disabled_but_check' => 'Du har deaktivert oppdateringssjekk. Ikke glem å oppdatere selv nå og da. Tusen takk!', - 'admin_update_channel_title' => 'Oppdater kanal', - 'admin_update_channel_explain' => 'Firefly III har tre oppdaterings "kanaler" som bestemmer hvor mye du ønsker å ligge foran med hensyn til funksjoner, forbedringer og feil. Bruk beta-kanalen dersom du er eventyrlysten og "alfa" når du liker å leve farlig.', - 'update_channel_stable' => 'Stable. Alt skal fungere som forventet.', - 'update_channel_beta' => 'Beta. Nye funksjoner, men kan ha enkelte programfeil.', - 'update_channel_alpha' => 'Alfa. Vi kaster ting i, og bruker det som fester seg.', + 'update_check_title' => 'Se etter oppdateringer', + 'admin_update_check_title' => 'Se etter oppdateringer automatisk', + 'admin_update_check_explain' => 'Firefly III kan sjekke etter oppdateringer automatisk. Når du aktiverer denne innstillingen, vil systemet kontakte Github for å se om en ny versjon av Firefly III er tilgjengelig. Når det er kommet en ny oppdatering, vil du bli varslet. Du kan teste dette varselet ved hjelp av knappen til høyre. Vennligst marker nedenfor hvis du vil at Firefly III skal se etter oppdateringer.', + 'check_for_updates_permission' => 'Firefly III kan se etter oppdateringer, men det trenger din tillatelse til å gjøre det. Gå til -administrasjonen for å velge om denne funksjonen skal aktiveres.', + 'updates_ask_me_later' => 'Spør meg senere', + 'updates_do_not_check' => 'Ikke se etter oppdateringer', + 'updates_enable_check' => 'Aktiver oppdateringssjekk', + 'admin_update_check_now_title' => 'Se etter oppdateringer nå', + 'admin_update_check_now_explain' => 'Hvis du trykker på knappen, vil Firefly III se om din nåværende versjon er den nyeste.', + 'check_for_updates_button' => 'Sjekk nå!', + 'update_new_version_alert' => 'En ny versjon av Firefly III er tilgjengelig. Du kjører :your_version, den nyeste versjonen er :new_version som ble utgitt den :date.', + 'update_version_beta' => 'Dette er en BETA versjon, du kan oppleve problemer.', + 'update_version_alpha' => 'Dette er en ALPHA versjon, du kan oppleve problemer.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Du kjører :version, som er den nyeste tilgjengelige utgivelsen.', + 'update_newer_version_alert' => 'Du kjører :your_version, som er nyere enn den nyeste versjonen, :new_version.', + 'update_check_error' => 'Det oppstod en feil under søk etter oppdatering: :error', + 'unknown_error' => 'Ukjent feil. Beklager det.', + 'disabled_but_check' => 'Du har deaktivert oppdateringssjekk. Ikke glem å oppdatere selv nå og da. Tusen takk!', + 'admin_update_channel_title' => 'Oppdater kanal', + 'admin_update_channel_explain' => 'Firefly III har tre oppdaterings "kanaler" som bestemmer hvor mye du ønsker å ligge foran med hensyn til funksjoner, forbedringer og feil. Bruk beta-kanalen dersom du er eventyrlysten og "alfa" når du liker å leve farlig.', + 'update_channel_stable' => 'Stable. Alt skal fungere som forventet.', + 'update_channel_beta' => 'Beta. Nye funksjoner, men kan ha enkelte programfeil.', + 'update_channel_alpha' => 'Alfa. Vi kaster ting i, og bruker det som fester seg.', // search - 'search' => 'Søk', - 'search_query' => 'Spørring', - 'search_found_transactions' => 'Firefly III fant :count transaksjon på :time sekunder|Firefly III fant :count transaksjoner på :time sekunder.', - 'search_found_more_transactions' => 'Firefly III fant mer enn :count transaksjoner på :time sekunder.', - 'search_for_query' => 'Firefly III leter etter transaksjoner med disse ordene: :query', - 'invalid_operators_list' => 'Disse søkeparametrene er ikke gyldige og ble ignorert.', + 'search' => 'Søk', + 'search_query' => 'Spørring', + 'search_found_transactions' => 'Firefly III fant :count transaksjon på :time sekunder|Firefly III fant :count transaksjoner på :time sekunder.', + 'search_found_more_transactions' => 'Firefly III fant mer enn :count transaksjoner på :time sekunder.', + 'search_for_query' => 'Firefly III leter etter transaksjoner med disse ordene: :query', + 'invalid_operators_list' => 'Disse søkeparametrene er ikke gyldige og ble ignorert.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Transaksjons dato er ":value"', - 'search_modifier_not_date_on' => 'Transaksjonsdato er ikke ":value"', - 'search_modifier_reconciled' => 'Transaksjonen er avstemt', - 'search_modifier_not_reconciled' => 'Transaksjonen er ikke avstemt', - 'search_modifier_id' => 'Transaksjons ID er ":value"', - 'search_modifier_not_id' => 'Transaksjons ID er ikke ":value"', - 'search_modifier_date_before' => 'Transaksjonsdato er før eller på ":value"', - 'search_modifier_date_after' => 'Transaksjons dato er etter eller på ":value"', - 'search_modifier_external_id_is' => 'Ekstern ID er ":value"', - 'search_modifier_not_external_id_is' => 'Ekstern ID er ikke ":value"', - 'search_modifier_no_external_url' => 'Transaksjonen har ingen ekstern URL', - 'search_modifier_no_external_id' => 'Transaksjonen har ingen ekstern ID', - 'search_modifier_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', - 'search_modifier_not_any_external_id' => 'Transaksjonen har ingen ekstern ID', - 'search_modifier_any_external_url' => 'Transaksjonen må ha minst en ekstern URL', - 'search_modifier_any_external_id' => 'Transaksjonen må ha en (hvilken som helst) ekstern ID', - 'search_modifier_not_no_external_url' => 'Transaksjonen må ha en (hvilken som helst) ekstern URL', - 'search_modifier_not_no_external_id' => 'Transaksjonen må ha en (hvilken som helst) ekstern ID', - 'search_modifier_internal_reference_is' => 'Intern referanse er ":value"', - 'search_modifier_not_internal_reference_is' => 'Intern referanse er ikke ":value"', - 'search_modifier_description_starts' => 'Beskrivelsen begynner med ":value', - 'search_modifier_not_description_starts' => 'Beskrivelsen starter ikke med ":value"', - 'search_modifier_description_ends' => 'Beskrivelsen slutter på ":value', - 'search_modifier_not_description_ends' => 'Beskrivelsen slutter ikke på ":value', - 'search_modifier_description_contains' => 'Beskrivelsen inneholder ":value"', - 'search_modifier_not_description_contains' => 'Beskrivelsen inneholder ikke ":value', - 'search_modifier_description_is' => 'Beskrivelsen er nøyaktig ":value""', - 'search_modifier_not_description_is' => 'Beskrivelsen er nøyaktig ikke ":value', - 'search_modifier_currency_is' => 'Transaksjon (fremmed) valuta er ":value"', - 'search_modifier_not_currency_is' => 'Transaksjon (fremmed) valuta er ikke ":value"', - 'search_modifier_foreign_currency_is' => 'Transaksjonen for utenlansk valuta er ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaksjonen fremmed valuta er ikke ":value"', - 'search_modifier_has_attachments' => 'Transaksjonen må ha minst ett vedlegg', - 'search_modifier_has_no_category' => 'Transaksjonen kan ikke ha noen kategori', - 'search_modifier_not_has_no_category' => 'Transaksjonen må ha en (hvilken som helst) kategori', - 'search_modifier_not_has_any_category' => 'Transaksjonen må ikke ha noen kategori', - 'search_modifier_has_any_category' => 'Transaksjonen må ha en (noen) kategori(er)', - 'search_modifier_has_no_budget' => 'Transaksjonen må ikke ha noe budsjett', - 'search_modifier_not_has_any_budget' => 'Transaksjonen må ikke ha noe budsjett', - 'search_modifier_has_any_budget' => 'Transaksjonen må ha en (noen) kategori(er)', - 'search_modifier_not_has_no_budget' => 'Transaksjonen må ha et (hvilket som helst) budsjett', - 'search_modifier_has_no_bill' => 'Transaksjonen må ikke ha noen regning', - 'search_modifier_not_has_no_bill' => 'Transaksjonen må ha en (hvilken som helst) regning', - 'search_modifier_has_any_bill' => 'Transaksjonen må ha en eller flere regninger', - 'search_modifier_not_has_any_bill' => 'Transaksjonen kan ikke ha noen regning', - 'search_modifier_has_no_tag' => 'Transaksjonen må ikke ha tagger', - 'search_modifier_not_has_any_tag' => 'Transaksjonen kan ikke ha tagger', - 'search_modifier_not_has_no_tag' => 'Transaksjonen må ha en (hvilken som helst) tagg', - 'search_modifier_has_any_tag' => 'Transaksjonen må ha minst en tagg', - 'search_modifier_notes_contains' => 'Transaksjons notater inneholder ":value"', - 'search_modifier_not_notes_contains' => 'Transaksjons notater inneholder ikke ":value', - 'search_modifier_notes_starts' => 'Transaksjons notat inneholder ":value"', - 'search_modifier_not_notes_starts' => 'Transaksjons notater starter ikke med ":value', - 'search_modifier_notes_ends' => 'Transaksjons notat ender med ":value"', - 'search_modifier_not_notes_ends' => 'Transaksjons notater slutter ikke med ":value', - 'search_modifier_notes_is' => 'Transaksjons notater er eksakt ":value"', - 'search_modifier_not_notes_is' => 'Transaksjons notater er nøyaktig ikke ":value', - 'search_modifier_no_notes' => 'Transaksjonen har ingen notater', - 'search_modifier_not_no_notes' => 'Transaksjonen må ha notater', - 'search_modifier_any_notes' => 'Transaksjonen må ha notater', - 'search_modifier_not_any_notes' => 'Transaksjonen har ingen notater', - 'search_modifier_amount_is' => 'Beløpet er nøyaktig :value', - 'search_modifier_not_amount_is' => 'Beløpet er ikke :value', - 'search_modifier_amount_less' => 'Beløpet er mindre enn eller lik :value', - 'search_modifier_not_amount_more' => 'Beløpet er mindre enn eller lik :value', - 'search_modifier_amount_more' => 'Beløpet er mer enn eller lik :value', - 'search_modifier_not_amount_less' => 'Beløpet er mer enn eller lik :value', - 'search_modifier_source_account_is' => 'Kilde konto er eksakt ":value"', - 'search_modifier_not_source_account_is' => 'Kildekonto navn er ikke ":value"', - 'search_modifier_source_account_contains' => 'Kildekonto navn inneholder ":value"', - 'search_modifier_not_source_account_contains' => 'Kildekonto navn inneholder ikke ":value"', - 'search_modifier_source_account_starts' => 'Kildekonto navn starter med ":value"', - 'search_modifier_not_source_account_starts' => 'Kildekonto navn starter ikke med ":value"', - 'search_modifier_source_account_ends' => 'Kild konto navn slutter med ":value"', - 'search_modifier_not_source_account_ends' => 'Kildekonto navn slutter ikke med ":value"', - 'search_modifier_source_account_id' => 'Kildekonto ID er :value', - 'search_modifier_not_source_account_id' => 'Kildekonto ID er ikke :value', - 'search_modifier_source_account_nr_is' => 'Kilde kontonummer (IBAN) er ":value"', - 'search_modifier_not_source_account_nr_is' => 'Kildekonto nummer (IBAN) er ikke ":value"', - 'search_modifier_source_account_nr_contains' => 'Kilde kontonummer (IBAN) inneholder ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Kildekonto nummer (IBAN) inneholder ikke ":value"', - 'search_modifier_source_account_nr_starts' => 'Kilde kontonummer (IBAN) starter med ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Kildekonto nummer (IBAN) starter ikke med ":value"', - 'search_modifier_source_account_nr_ends' => 'Kildekonto nummer (IBAN) slutter på ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Kildekonto nummer (IBAN) slutter ikke på ":value"', - 'search_modifier_destination_account_is' => 'Målkontonavn er eksakt ":value"', - 'search_modifier_not_destination_account_is' => 'Målkonto navn er ikke ":value"', - 'search_modifier_destination_account_contains' => 'Målkontonavnet inneholder ":value"', - 'search_modifier_not_destination_account_contains' => 'Målkonto navn inneholder ikke ":value"', - 'search_modifier_destination_account_starts' => 'Målkontonavnet starter med ":value"', - 'search_modifier_not_destination_account_starts' => 'Målkonto navn starter ikke med ":value"', - 'search_modifier_destination_account_ends' => 'Målkonto navn slutter på ":value"', - 'search_modifier_not_destination_account_ends' => 'Målkonto navn slutter ikke på ":value"', - 'search_modifier_destination_account_id' => 'Målkonto ID er :value', - 'search_modifier_not_destination_account_id' => 'Målkonto ID er ikke :value', - 'search_modifier_destination_is_cash' => 'Målkonto er "(cash)"-kontoen', - 'search_modifier_not_destination_is_cash' => 'Målkonto er ikke "(cash)"-kontoen', - 'search_modifier_source_is_cash' => 'Kildekonto er "(cash)"-kontoen', - 'search_modifier_not_source_is_cash' => 'Kildekonto er ikke "(cash)"-kontoen', - 'search_modifier_destination_account_nr_is' => 'Målkontonummer (IBAN) er ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Målkonto nummer (IBAN) er ":value"', - 'search_modifier_destination_account_nr_contains' => 'Målkontonummer (IBAN) inneholder ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Målkonto nummer (CIBAN) inneholder ikke ":value"', - 'search_modifier_destination_account_nr_starts' => 'Målkontonummer (CIBAN) starter med ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Målkonto nummer (CIBAN) starter ikke med ":value"', - 'search_modifier_destination_account_nr_ends' => 'Kildekontonummer (IBAN) slutter med ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Målkonto nummer (CIBAN) ender ikke med ":value"', - 'search_modifier_account_id' => 'Kilde eller målkonto-IDer er: :value', - 'search_modifier_not_account_id' => 'Kilde eller målkonto ID er/er ikke: :value', - 'search_modifier_category_is' => 'Kategorien er ":value"', - 'search_modifier_not_category_is' => 'Kategorien er ikke ":value"', - 'search_modifier_budget_is' => 'Budsjettet er ":value"', - 'search_modifier_not_budget_is' => 'Budsjettet er ikke ":value"', - 'search_modifier_bill_is' => 'Regning er ":value"', - 'search_modifier_not_bill_is' => 'Regning er ikke ":value"', - 'search_modifier_transaction_type' => 'Transaksjonstype er ":value"', - 'search_modifier_not_transaction_type' => 'Transaksjonstype er ikke ":value"', - 'search_modifier_tag_is' => 'Taggen er ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'Ingen tagg er ":value"', - 'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"', - 'search_modifier_not_date_on_year' => 'Transaksjonen er ikke i året ":value"', - 'search_modifier_date_on_month' => 'Transaksjonen er i måned ":value"', - 'search_modifier_not_date_on_month' => 'Transaksjonen er ikke i måneden ":value"', - 'search_modifier_date_on_day' => 'Transaksjonen er på dagen i måneden ":value"', - 'search_modifier_not_date_on_day' => 'Transaksjonen er ikke på dagen for måned ":value"', - 'search_modifier_date_before_year' => 'Transaksjonen er før eller i år ":value"', - 'search_modifier_date_before_month' => 'Transaksjonen er før eller i måned ":value"', - 'search_modifier_date_before_day' => 'Transaksjonen er før eller på dagen i måned ":value"', - 'search_modifier_date_after_year' => 'Transaksjonen er i eller etter år ":value"', - 'search_modifier_date_after_month' => 'Transaksjonen er i eller etter måned ":value"', - 'search_modifier_date_after_day' => 'Transaksjonen er etter eller på dagen i måned ":value"', + 'search_modifier_date_on' => 'Transaksjons dato er ":value"', + 'search_modifier_not_date_on' => 'Transaksjonsdato er ikke ":value"', + 'search_modifier_reconciled' => 'Transaksjonen er avstemt', + 'search_modifier_not_reconciled' => 'Transaksjonen er ikke avstemt', + 'search_modifier_id' => 'Transaksjons ID er ":value"', + 'search_modifier_not_id' => 'Transaksjons ID er ikke ":value"', + 'search_modifier_date_before' => 'Transaksjonsdato er før eller på ":value"', + 'search_modifier_date_after' => 'Transaksjons dato er etter eller på ":value"', + 'search_modifier_external_id_is' => 'Ekstern ID er ":value"', + 'search_modifier_not_external_id_is' => 'Ekstern ID er ikke ":value"', + 'search_modifier_no_external_url' => 'Transaksjonen har ingen ekstern URL', + 'search_modifier_no_external_id' => 'Transaksjonen har ingen ekstern ID', + 'search_modifier_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', + 'search_modifier_not_any_external_id' => 'Transaksjonen har ingen ekstern ID', + 'search_modifier_any_external_url' => 'Transaksjonen må ha minst en ekstern URL', + 'search_modifier_any_external_id' => 'Transaksjonen må ha en (hvilken som helst) ekstern ID', + 'search_modifier_not_no_external_url' => 'Transaksjonen må ha en (hvilken som helst) ekstern URL', + 'search_modifier_not_no_external_id' => 'Transaksjonen må ha en (hvilken som helst) ekstern ID', + 'search_modifier_internal_reference_is' => 'Intern referanse er ":value"', + 'search_modifier_not_internal_reference_is' => 'Intern referanse er ikke ":value"', + 'search_modifier_description_starts' => 'Beskrivelsen begynner med ":value', + 'search_modifier_not_description_starts' => 'Beskrivelsen starter ikke med ":value"', + 'search_modifier_description_ends' => 'Beskrivelsen slutter på ":value', + 'search_modifier_not_description_ends' => 'Beskrivelsen slutter ikke på ":value', + 'search_modifier_description_contains' => 'Beskrivelsen inneholder ":value"', + 'search_modifier_not_description_contains' => 'Beskrivelsen inneholder ikke ":value', + 'search_modifier_description_is' => 'Beskrivelsen er nøyaktig ":value""', + 'search_modifier_not_description_is' => 'Beskrivelsen er nøyaktig ikke ":value', + 'search_modifier_currency_is' => 'Transaksjon (fremmed) valuta er ":value"', + 'search_modifier_not_currency_is' => 'Transaksjon (fremmed) valuta er ikke ":value"', + 'search_modifier_foreign_currency_is' => 'Transaksjonen for utenlansk valuta er ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaksjonen fremmed valuta er ikke ":value"', + 'search_modifier_has_attachments' => 'Transaksjonen må ha minst ett vedlegg', + 'search_modifier_has_no_category' => 'Transaksjonen kan ikke ha noen kategori', + 'search_modifier_not_has_no_category' => 'Transaksjonen må ha en (hvilken som helst) kategori', + 'search_modifier_not_has_any_category' => 'Transaksjonen må ikke ha noen kategori', + 'search_modifier_has_any_category' => 'Transaksjonen må ha en (noen) kategori(er)', + 'search_modifier_has_no_budget' => 'Transaksjonen må ikke ha noe budsjett', + 'search_modifier_not_has_any_budget' => 'Transaksjonen må ikke ha noe budsjett', + 'search_modifier_has_any_budget' => 'Transaksjonen må ha en (noen) kategori(er)', + 'search_modifier_not_has_no_budget' => 'Transaksjonen må ha et (hvilket som helst) budsjett', + 'search_modifier_has_no_bill' => 'Transaksjonen må ikke ha noen regning', + 'search_modifier_not_has_no_bill' => 'Transaksjonen må ha en (hvilken som helst) regning', + 'search_modifier_has_any_bill' => 'Transaksjonen må ha en eller flere regninger', + 'search_modifier_not_has_any_bill' => 'Transaksjonen kan ikke ha noen regning', + 'search_modifier_has_no_tag' => 'Transaksjonen må ikke ha tagger', + 'search_modifier_not_has_any_tag' => 'Transaksjonen kan ikke ha tagger', + 'search_modifier_not_has_no_tag' => 'Transaksjonen må ha en (hvilken som helst) tagg', + 'search_modifier_has_any_tag' => 'Transaksjonen må ha minst en tagg', + 'search_modifier_notes_contains' => 'Transaksjons notater inneholder ":value"', + 'search_modifier_not_notes_contains' => 'Transaksjons notater inneholder ikke ":value', + 'search_modifier_notes_starts' => 'Transaksjons notat inneholder ":value"', + 'search_modifier_not_notes_starts' => 'Transaksjons notater starter ikke med ":value', + 'search_modifier_notes_ends' => 'Transaksjons notat ender med ":value"', + 'search_modifier_not_notes_ends' => 'Transaksjons notater slutter ikke med ":value', + 'search_modifier_notes_is' => 'Transaksjons notater er eksakt ":value"', + 'search_modifier_not_notes_is' => 'Transaksjons notater er nøyaktig ikke ":value', + 'search_modifier_no_notes' => 'Transaksjonen har ingen notater', + 'search_modifier_not_no_notes' => 'Transaksjonen må ha notater', + 'search_modifier_any_notes' => 'Transaksjonen må ha notater', + 'search_modifier_not_any_notes' => 'Transaksjonen har ingen notater', + 'search_modifier_amount_is' => 'Beløpet er nøyaktig :value', + 'search_modifier_not_amount_is' => 'Beløpet er ikke :value', + 'search_modifier_amount_less' => 'Beløpet er mindre enn eller lik :value', + 'search_modifier_not_amount_more' => 'Beløpet er mindre enn eller lik :value', + 'search_modifier_amount_more' => 'Beløpet er mer enn eller lik :value', + 'search_modifier_not_amount_less' => 'Beløpet er mer enn eller lik :value', + 'search_modifier_source_account_is' => 'Kilde konto er eksakt ":value"', + 'search_modifier_not_source_account_is' => 'Kildekonto navn er ikke ":value"', + 'search_modifier_source_account_contains' => 'Kildekonto navn inneholder ":value"', + 'search_modifier_not_source_account_contains' => 'Kildekonto navn inneholder ikke ":value"', + 'search_modifier_source_account_starts' => 'Kildekonto navn starter med ":value"', + 'search_modifier_not_source_account_starts' => 'Kildekonto navn starter ikke med ":value"', + 'search_modifier_source_account_ends' => 'Kild konto navn slutter med ":value"', + 'search_modifier_not_source_account_ends' => 'Kildekonto navn slutter ikke med ":value"', + 'search_modifier_source_account_id' => 'Kildekonto ID er :value', + 'search_modifier_not_source_account_id' => 'Kildekonto ID er ikke :value', + 'search_modifier_source_account_nr_is' => 'Kilde kontonummer (IBAN) er ":value"', + 'search_modifier_not_source_account_nr_is' => 'Kildekonto nummer (IBAN) er ikke ":value"', + 'search_modifier_source_account_nr_contains' => 'Kilde kontonummer (IBAN) inneholder ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Kildekonto nummer (IBAN) inneholder ikke ":value"', + 'search_modifier_source_account_nr_starts' => 'Kilde kontonummer (IBAN) starter med ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Kildekonto nummer (IBAN) starter ikke med ":value"', + 'search_modifier_source_account_nr_ends' => 'Kildekonto nummer (IBAN) slutter på ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Kildekonto nummer (IBAN) slutter ikke på ":value"', + 'search_modifier_destination_account_is' => 'Målkontonavn er eksakt ":value"', + 'search_modifier_not_destination_account_is' => 'Målkonto navn er ikke ":value"', + 'search_modifier_destination_account_contains' => 'Målkontonavnet inneholder ":value"', + 'search_modifier_not_destination_account_contains' => 'Målkonto navn inneholder ikke ":value"', + 'search_modifier_destination_account_starts' => 'Målkontonavnet starter med ":value"', + 'search_modifier_not_destination_account_starts' => 'Målkonto navn starter ikke med ":value"', + 'search_modifier_destination_account_ends' => 'Målkonto navn slutter på ":value"', + 'search_modifier_not_destination_account_ends' => 'Målkonto navn slutter ikke på ":value"', + 'search_modifier_destination_account_id' => 'Målkonto ID er :value', + 'search_modifier_not_destination_account_id' => 'Målkonto ID er ikke :value', + 'search_modifier_destination_is_cash' => 'Målkonto er "(cash)"-kontoen', + 'search_modifier_not_destination_is_cash' => 'Målkonto er ikke "(cash)"-kontoen', + 'search_modifier_source_is_cash' => 'Kildekonto er "(cash)"-kontoen', + 'search_modifier_not_source_is_cash' => 'Kildekonto er ikke "(cash)"-kontoen', + 'search_modifier_destination_account_nr_is' => 'Målkontonummer (IBAN) er ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Målkonto nummer (IBAN) er ":value"', + 'search_modifier_destination_account_nr_contains' => 'Målkontonummer (IBAN) inneholder ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Målkonto nummer (CIBAN) inneholder ikke ":value"', + 'search_modifier_destination_account_nr_starts' => 'Målkontonummer (CIBAN) starter med ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Målkonto nummer (CIBAN) starter ikke med ":value"', + 'search_modifier_destination_account_nr_ends' => 'Kildekontonummer (IBAN) slutter med ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Målkonto nummer (CIBAN) ender ikke med ":value"', + 'search_modifier_account_id' => 'Kilde eller målkonto-IDer er: :value', + 'search_modifier_not_account_id' => 'Kilde eller målkonto ID er/er ikke: :value', + 'search_modifier_category_is' => 'Kategorien er ":value"', + 'search_modifier_not_category_is' => 'Kategorien er ikke ":value"', + 'search_modifier_budget_is' => 'Budsjettet er ":value"', + 'search_modifier_not_budget_is' => 'Budsjettet er ikke ":value"', + 'search_modifier_bill_is' => 'Regning er ":value"', + 'search_modifier_not_bill_is' => 'Regning er ikke ":value"', + 'search_modifier_transaction_type' => 'Transaksjonstype er ":value"', + 'search_modifier_not_transaction_type' => 'Transaksjonstype er ikke ":value"', + 'search_modifier_tag_is' => 'Taggen er ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'Ingen tagg er ":value"', + 'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"', + 'search_modifier_not_date_on_year' => 'Transaksjonen er ikke i året ":value"', + 'search_modifier_date_on_month' => 'Transaksjonen er i måned ":value"', + 'search_modifier_not_date_on_month' => 'Transaksjonen er ikke i måneden ":value"', + 'search_modifier_date_on_day' => 'Transaksjonen er på dagen i måneden ":value"', + 'search_modifier_not_date_on_day' => 'Transaksjonen er ikke på dagen for måned ":value"', + 'search_modifier_date_before_year' => 'Transaksjonen er før eller i år ":value"', + 'search_modifier_date_before_month' => 'Transaksjonen er før eller i måned ":value"', + 'search_modifier_date_before_day' => 'Transaksjonen er før eller på dagen i måned ":value"', + 'search_modifier_date_after_year' => 'Transaksjonen er i eller etter år ":value"', + 'search_modifier_date_after_month' => 'Transaksjonen er i eller etter måned ":value"', + 'search_modifier_date_after_day' => 'Transaksjonen er etter eller på dagen i måned ":value"', // new - 'search_modifier_tag_is_not' => 'Ingen tagg er ":value"', - 'search_modifier_not_tag_is_not' => 'Taggen er ":value"', - 'search_modifier_account_is' => 'Alle kontoene er ":value"', - 'search_modifier_not_account_is' => 'Ingen av kontoene er ":value"', - 'search_modifier_account_contains' => 'Alle kontoene inneholder ":value"', - 'search_modifier_not_account_contains' => 'Ingen av kontoene inneholder ":value"', - 'search_modifier_account_ends' => 'Alle kontoenene slutter med ":value"', - 'search_modifier_not_account_ends' => 'Ingen av kontoene slutter med ":value"', - 'search_modifier_account_starts' => 'Alle kontoene starter med ":value"', - 'search_modifier_not_account_starts' => 'Ingen av kontoene begynner med ":value"', - 'search_modifier_account_nr_is' => 'Alle kontonummer / IBAN er ":value"', - 'search_modifier_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":value"', - 'search_modifier_account_nr_contains' => 'Alle kontonummer / IBAN inneholder ":value"', - 'search_modifier_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneholder ":value"', - 'search_modifier_account_nr_ends' => 'Alle kontonummer / IBAN slutter med ":value"', - 'search_modifier_not_account_nr_ends' => 'Ingen kontonummer / IBAN slutter med ":value"', - 'search_modifier_account_nr_starts' => 'Alle kontonummer / IBAN starter med ":value"', - 'search_modifier_not_account_nr_starts' => 'Ingen kontonummer / IBAN starter med ":value"', - 'search_modifier_category_contains' => 'Kategorien inneholder ":value"', - 'search_modifier_not_category_contains' => 'Kategorien inneholder ikke ":value"', - 'search_modifier_category_ends' => 'Kategorien slutter på ":value"', - 'search_modifier_not_category_ends' => 'Kategorien slutter ikke på ":value"', - 'search_modifier_category_starts' => 'Kategorien starter med ":value"', - 'search_modifier_not_category_starts' => 'Kategorien starter ikke med ":value"', - 'search_modifier_budget_contains' => 'Budsjettet inneholder ":value"', - 'search_modifier_not_budget_contains' => 'Budsjettet inneholder ikke ":value"', - 'search_modifier_budget_ends' => 'Budsjettet slutter med ":value"', - 'search_modifier_not_budget_ends' => 'Budsjettet slutter ikke på ":value"', - 'search_modifier_budget_starts' => 'Budsjettet begynner med ":value"', - 'search_modifier_not_budget_starts' => 'Budsjettet starter ikke med ":value"', - 'search_modifier_bill_contains' => 'Regningen inneholder ":value"', - 'search_modifier_not_bill_contains' => 'Regningen inneholder ikke ":value"', - 'search_modifier_bill_ends' => 'Regning slutter med ":value"', - 'search_modifier_not_bill_ends' => 'Regningen slutter ikke på ":value"', - 'search_modifier_bill_starts' => 'Regning begynner med ":value"', - 'search_modifier_not_bill_starts' => 'Regningen starter ikke med ":value"', - 'search_modifier_external_id_contains' => 'Ekstern ID inneholder ":value"', - 'search_modifier_not_external_id_contains' => 'Ekstern ID inneholder ikke ":value"', - 'search_modifier_external_id_ends' => 'Ekstern ID slutter med ":value"', - 'search_modifier_not_external_id_ends' => 'Ekstern ID slutter ikke med ":value"', - 'search_modifier_external_id_starts' => 'Ekstern ID starter med ":value"', - 'search_modifier_not_external_id_starts' => 'Ekstern ID starter ikke med ":value"', - 'search_modifier_internal_reference_contains' => 'Intern referanse inneholder ":value"', - 'search_modifier_not_internal_reference_contains' => 'Intern referanse inneholder ikke ":value"', - 'search_modifier_internal_reference_ends' => 'Intern referanse slutter med ":value"', - 'search_modifier_internal_reference_starts' => 'Intern referanse starter med ":value"', - 'search_modifier_not_internal_reference_ends' => 'Intern referanse slutter ikke med ":value"', - 'search_modifier_not_internal_reference_starts' => 'Intern referanse begynner ikke med ":value"', - 'search_modifier_external_url_is' => 'Ekstern URL er ":value"', - 'search_modifier_not_external_url_is' => 'Ekstern URL er ikke ":value"', - 'search_modifier_external_url_contains' => 'Ekstern URL inneholder ":value"', - 'search_modifier_not_external_url_contains' => 'Ekstern URL inneholder ikke ":value"', - 'search_modifier_external_url_ends' => 'Ekstern URL slutter med ":value"', - 'search_modifier_not_external_url_ends' => 'Ekstern URL slutter ikke med ":value"', - 'search_modifier_external_url_starts' => 'Ekstern URL starter med ":value"', - 'search_modifier_not_external_url_starts' => 'Ekstern URL starter ikke med ":value"', - 'search_modifier_has_no_attachments' => 'Transaksjonen har ingen vedlegg', - 'search_modifier_not_has_no_attachments' => 'Transaksjonen har vedlegg', - 'search_modifier_not_has_attachments' => 'Transaksjonen har ingen vedlegg', - 'search_modifier_account_is_cash' => 'Alle konti er "(cash)"-konto.', - 'search_modifier_not_account_is_cash' => 'Ingen konti er "(cash)"-kontoen.', - 'search_modifier_journal_id' => 'Journal ID er ":value"', - 'search_modifier_not_journal_id' => 'Journal ID er ikke ":value"', - 'search_modifier_recurrence_id' => 'Den gjentakende transaksjons ID er ":value"', - 'search_modifier_not_recurrence_id' => 'Den gjentakende transaksjons ID er ikke ":value"', - 'search_modifier_foreign_amount_is' => 'Det utenlandske beløpet er ":value"', - 'search_modifier_not_foreign_amount_is' => 'Det utenlandske beløpet er ikke ":value"', - 'search_modifier_foreign_amount_less' => 'Det utenlandske beløpet er mindre enn ":value"', - 'search_modifier_not_foreign_amount_more' => 'Det utenlandske beløpet er mindre enn ":value"', - 'search_modifier_not_foreign_amount_less' => 'Det utenlandske beløpet er mer enn ":value"', - 'search_modifier_foreign_amount_more' => 'Det utenlandske beløpet er mer enn ":value"', - 'search_modifier_exists' => 'Transaksjon eksisterer (hvilken som helst transaksjon)', - 'search_modifier_not_exists' => 'Transaksjonen eksisterer ikke (alle transaksjoner)', + 'search_modifier_tag_is_not' => 'Ingen tagg er ":value"', + 'search_modifier_not_tag_is_not' => 'Taggen er ":value"', + 'search_modifier_account_is' => 'Alle kontoene er ":value"', + 'search_modifier_not_account_is' => 'Ingen av kontoene er ":value"', + 'search_modifier_account_contains' => 'Alle kontoene inneholder ":value"', + 'search_modifier_not_account_contains' => 'Ingen av kontoene inneholder ":value"', + 'search_modifier_account_ends' => 'Alle kontoenene slutter med ":value"', + 'search_modifier_not_account_ends' => 'Ingen av kontoene slutter med ":value"', + 'search_modifier_account_starts' => 'Alle kontoene starter med ":value"', + 'search_modifier_not_account_starts' => 'Ingen av kontoene begynner med ":value"', + 'search_modifier_account_nr_is' => 'Alle kontonummer / IBAN er ":value"', + 'search_modifier_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":value"', + 'search_modifier_account_nr_contains' => 'Alle kontonummer / IBAN inneholder ":value"', + 'search_modifier_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneholder ":value"', + 'search_modifier_account_nr_ends' => 'Alle kontonummer / IBAN slutter med ":value"', + 'search_modifier_not_account_nr_ends' => 'Ingen kontonummer / IBAN slutter med ":value"', + 'search_modifier_account_nr_starts' => 'Alle kontonummer / IBAN starter med ":value"', + 'search_modifier_not_account_nr_starts' => 'Ingen kontonummer / IBAN starter med ":value"', + 'search_modifier_category_contains' => 'Kategorien inneholder ":value"', + 'search_modifier_not_category_contains' => 'Kategorien inneholder ikke ":value"', + 'search_modifier_category_ends' => 'Kategorien slutter på ":value"', + 'search_modifier_not_category_ends' => 'Kategorien slutter ikke på ":value"', + 'search_modifier_category_starts' => 'Kategorien starter med ":value"', + 'search_modifier_not_category_starts' => 'Kategorien starter ikke med ":value"', + 'search_modifier_budget_contains' => 'Budsjettet inneholder ":value"', + 'search_modifier_not_budget_contains' => 'Budsjettet inneholder ikke ":value"', + 'search_modifier_budget_ends' => 'Budsjettet slutter med ":value"', + 'search_modifier_not_budget_ends' => 'Budsjettet slutter ikke på ":value"', + 'search_modifier_budget_starts' => 'Budsjettet begynner med ":value"', + 'search_modifier_not_budget_starts' => 'Budsjettet starter ikke med ":value"', + 'search_modifier_bill_contains' => 'Regningen inneholder ":value"', + 'search_modifier_not_bill_contains' => 'Regningen inneholder ikke ":value"', + 'search_modifier_bill_ends' => 'Regning slutter med ":value"', + 'search_modifier_not_bill_ends' => 'Regningen slutter ikke på ":value"', + 'search_modifier_bill_starts' => 'Regning begynner med ":value"', + 'search_modifier_not_bill_starts' => 'Regningen starter ikke med ":value"', + 'search_modifier_external_id_contains' => 'Ekstern ID inneholder ":value"', + 'search_modifier_not_external_id_contains' => 'Ekstern ID inneholder ikke ":value"', + 'search_modifier_external_id_ends' => 'Ekstern ID slutter med ":value"', + 'search_modifier_not_external_id_ends' => 'Ekstern ID slutter ikke med ":value"', + 'search_modifier_external_id_starts' => 'Ekstern ID starter med ":value"', + 'search_modifier_not_external_id_starts' => 'Ekstern ID starter ikke med ":value"', + 'search_modifier_internal_reference_contains' => 'Intern referanse inneholder ":value"', + 'search_modifier_not_internal_reference_contains' => 'Intern referanse inneholder ikke ":value"', + 'search_modifier_internal_reference_ends' => 'Intern referanse slutter med ":value"', + 'search_modifier_internal_reference_starts' => 'Intern referanse starter med ":value"', + 'search_modifier_not_internal_reference_ends' => 'Intern referanse slutter ikke med ":value"', + 'search_modifier_not_internal_reference_starts' => 'Intern referanse begynner ikke med ":value"', + 'search_modifier_external_url_is' => 'Ekstern URL er ":value"', + 'search_modifier_not_external_url_is' => 'Ekstern URL er ikke ":value"', + 'search_modifier_external_url_contains' => 'Ekstern URL inneholder ":value"', + 'search_modifier_not_external_url_contains' => 'Ekstern URL inneholder ikke ":value"', + 'search_modifier_external_url_ends' => 'Ekstern URL slutter med ":value"', + 'search_modifier_not_external_url_ends' => 'Ekstern URL slutter ikke med ":value"', + 'search_modifier_external_url_starts' => 'Ekstern URL starter med ":value"', + 'search_modifier_not_external_url_starts' => 'Ekstern URL starter ikke med ":value"', + 'search_modifier_has_no_attachments' => 'Transaksjonen har ingen vedlegg', + 'search_modifier_not_has_no_attachments' => 'Transaksjonen har vedlegg', + 'search_modifier_not_has_attachments' => 'Transaksjonen har ingen vedlegg', + 'search_modifier_account_is_cash' => 'Alle konti er "(cash)"-konto.', + 'search_modifier_not_account_is_cash' => 'Ingen konti er "(cash)"-kontoen.', + 'search_modifier_journal_id' => 'Journal ID er ":value"', + 'search_modifier_not_journal_id' => 'Journal ID er ikke ":value"', + 'search_modifier_recurrence_id' => 'Den gjentakende transaksjons ID er ":value"', + 'search_modifier_not_recurrence_id' => 'Den gjentakende transaksjons ID er ikke ":value"', + 'search_modifier_foreign_amount_is' => 'Det utenlandske beløpet er ":value"', + 'search_modifier_not_foreign_amount_is' => 'Det utenlandske beløpet er ikke ":value"', + 'search_modifier_foreign_amount_less' => 'Det utenlandske beløpet er mindre enn ":value"', + 'search_modifier_not_foreign_amount_more' => 'Det utenlandske beløpet er mindre enn ":value"', + 'search_modifier_not_foreign_amount_less' => 'Det utenlandske beløpet er mer enn ":value"', + 'search_modifier_foreign_amount_more' => 'Det utenlandske beløpet er mer enn ":value"', + 'search_modifier_exists' => 'Transaksjon eksisterer (hvilken som helst transaksjon)', + 'search_modifier_not_exists' => 'Transaksjonen eksisterer ikke (alle transaksjoner)', // date fields - 'search_modifier_interest_date_on' => 'Transaksjonens rentedato er ":value"', - 'search_modifier_not_interest_date_on' => 'Transaksjonens rentedato er ikke ":value"', - 'search_modifier_interest_date_on_year' => 'Transaksjonsrentens dato er i år ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaksjonens rentedato er ikke i år ":value"', - 'search_modifier_interest_date_on_month' => 'Transaksjonsrentens dato er i måned ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaksjonens rentedato er ikke i måned ":value"', - 'search_modifier_interest_date_on_day' => 'Transaksjonsrentens dato er på dagen i måned ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaksjonens rentedato er ikke på dag i måned ":value"', - 'search_modifier_interest_date_before_year' => 'Transaksjonsrentens dato er før eller i år ":value"', - 'search_modifier_interest_date_before_month' => 'Transaksjonsrentens dato er før eller i måned ":value"', - 'search_modifier_interest_date_before_day' => 'Transaksjonsrentenedato er før eller på dagen i måned ":value', - 'search_modifier_interest_date_after_year' => 'Transaksjonsrentens dato er etter eller i år ":value"', - 'search_modifier_interest_date_after_month' => 'Transaksjonsrentens dato er etter eller i måned ":value"', - 'search_modifier_interest_date_after_day' => 'Transaksjonsrentens dato er etter eller på dagen i måned ":value', - 'search_modifier_book_date_on_year' => 'Bokføringsdato for transaksjonen er i år ":value"', - 'search_modifier_book_date_on_month' => 'Bokføringsdato for transaksjonen er i måned ":value"', - 'search_modifier_book_date_on_day' => 'Bokføringsdato for transaksjonen er på dagen i måned ":value"', - 'search_modifier_not_book_date_on_year' => 'Bokføringsdato for transaksjonen er ikke i år ":value"', - 'search_modifier_not_book_date_on_month' => 'Bokføringsdato for transaksjonen er ikke i måned ":value"', - 'search_modifier_not_book_date_on_day' => 'Bokføringsdato for transaksjonen er ikke på dag i måned ":value"', - 'search_modifier_book_date_before_year' => 'Transaksjons bokdato er før eller i år ":value"', - 'search_modifier_book_date_before_month' => 'Bokføringsdato for transaksjonen er før eller i måned ":value"', - 'search_modifier_book_date_before_day' => 'Bokføringsdato for transaksjonen er før eller på dagen i måned ":value"', - 'search_modifier_book_date_after_year' => 'Bokføringsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_book_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i måned ":value"', - 'search_modifier_book_date_after_day' => 'Bokføringsdato for transaksjonen er etter eller på dagen i måned ":value"', - 'search_modifier_process_date_on_year' => 'Transaksjonsprosessdato er i år ":value"', - 'search_modifier_process_date_on_month' => 'Transaksjonsprosessdato er i måned ":value"', - 'search_modifier_process_date_on_day' => 'Transaksjonsprosessdato er på dagen i måned ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaksjonens utførelsesdato er ikke i år ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaksjonens utførelsesdato er ikke i måned ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaksjonen er ikke på dagen for måned ":value', - 'search_modifier_process_date_before_year' => 'Transaksjonsprosessdato er før eller i år ":value"', - 'search_modifier_process_date_before_month' => 'Transaksjonsdato er før eller i måned ":value"', - 'search_modifier_process_date_before_day' => 'Transaksjonsprosessdato er før eller på dagen i måned ":value"', - 'search_modifier_process_date_after_year' => 'Transaksjonsprosessdato er etter eller i år ":value"', - 'search_modifier_process_date_after_month' => 'Transaksjonsprosessdato er etter eller i måned ":value"', - 'search_modifier_process_date_after_day' => 'Transaksjonsprosessdato er etter eller på dagen i måned ":value', - 'search_modifier_due_date_on_year' => 'Forfallsdato for transaksjonen er i år ":value"', - 'search_modifier_due_date_on_month' => 'Forfallsdato for transaksjonen er i måned ":value"', - 'search_modifier_due_date_on_day' => 'Forfallsdato for transaksjonen er på dagen i måned ":value"', - 'search_modifier_not_due_date_on_year' => 'Forfallsdato for transaksjonen er ikke i år ":value"', - 'search_modifier_not_due_date_on_month' => 'Forfallsdato for transaksjonen er ikke i måned ":value"', - 'search_modifier_not_due_date_on_day' => 'Forfallsdato for transaksjonen er ikke på dag i måned ":value"', - 'search_modifier_due_date_before_year' => 'Forfallsdato for transaksjonen er før eller i år ":value"', - 'search_modifier_due_date_before_month' => 'Forfallsdato for transaksjonen er før eller i måned ":value"', - 'search_modifier_due_date_before_day' => 'Forfallsdato for transaksjonen er før eller på dagen i måneden ":value"', - 'search_modifier_due_date_after_year' => 'Forfallsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_due_date_after_month' => 'Forfallsdato for transaksjonen er etter eller i måned ":value"', - 'search_modifier_due_date_after_day' => 'Forfallsdato for transaksjonen er etter eller på dagen i måned ":value', - 'search_modifier_payment_date_on_year' => 'Betalingsdato i år ":value"', - 'search_modifier_payment_date_on_month' => 'Betalingsdato for transaksjonen er i måned ":value"', - 'search_modifier_payment_date_on_day' => 'Betalingsdato for transaksjonen er på dagen i måned ":value"', - 'search_modifier_not_payment_date_on_year' => 'Betalingsdato for transaksjonen er ikke i år ":value"', - 'search_modifier_not_payment_date_on_month' => 'Betalingsdato for transaksjonen er ikke i måned ":value"', - 'search_modifier_not_payment_date_on_day' => 'Betalingsdato for transaksjonen er ikke på dagen i måned ":value"', - 'search_modifier_payment_date_before_year' => 'Betalingsdato for transaksjonen er før eller i år ":value"', - 'search_modifier_payment_date_before_month' => 'Betalingsdato for transaksjonen er før eller i måned ":value"', - 'search_modifier_payment_date_before_day' => 'Betalingsdato for transaksjonen er før eller på dagen i måned ":value"', - 'search_modifier_payment_date_after_year' => 'Betalingsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_payment_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i måned ":value"', - 'search_modifier_payment_date_after_day' => 'Betalingsdato for transaksjonen er etter eller på dagen i måned ":value"', - 'search_modifier_invoice_date_on_year' => 'Fakturadato for transaksjon er i år ":value"', - 'search_modifier_invoice_date_on_month' => 'Fakturadato for transaksjon er i måned ":value"', - 'search_modifier_invoice_date_on_day' => 'Fakturadato for transaksjon er på dagen i måned ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Fakturadato for transaksjonen er ikke i år ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Fakturadato for transaksjonen er ikke i måned ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Fakturadato for transaksjon er ikke på dag i måned ":value"', - 'search_modifier_invoice_date_before_year' => 'Fakturadato for transaksjon er før eller i år ":value"', - 'search_modifier_invoice_date_before_month' => 'Fakturadato for transaksjon er før eller i måned ":value"', - 'search_modifier_invoice_date_before_day' => 'Fakturadato for transaksjon er før eller på dagen i måned ":value"', - 'search_modifier_invoice_date_after_year' => 'Fakturadato for transaksjon er etter eller i år ":value"', - 'search_modifier_invoice_date_after_month' => 'Fakturadato for transaksjon er etter eller i måned ":value"', - 'search_modifier_invoice_date_after_day' => 'Fakturadato for transaksjon er etter eller på dagen i måned ":value"', + 'search_modifier_interest_date_on' => 'Transaksjonens rentedato er ":value"', + 'search_modifier_not_interest_date_on' => 'Transaksjonens rentedato er ikke ":value"', + 'search_modifier_interest_date_on_year' => 'Transaksjonsrentens dato er i år ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaksjonens rentedato er ikke i år ":value"', + 'search_modifier_interest_date_on_month' => 'Transaksjonsrentens dato er i måned ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaksjonens rentedato er ikke i måned ":value"', + 'search_modifier_interest_date_on_day' => 'Transaksjonsrentens dato er på dagen i måned ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaksjonens rentedato er ikke på dag i måned ":value"', + 'search_modifier_interest_date_before_year' => 'Transaksjonsrentens dato er før eller i år ":value"', + 'search_modifier_interest_date_before_month' => 'Transaksjonsrentens dato er før eller i måned ":value"', + 'search_modifier_interest_date_before_day' => 'Transaksjonsrentenedato er før eller på dagen i måned ":value', + 'search_modifier_interest_date_after_year' => 'Transaksjonsrentens dato er etter eller i år ":value"', + 'search_modifier_interest_date_after_month' => 'Transaksjonsrentens dato er etter eller i måned ":value"', + 'search_modifier_interest_date_after_day' => 'Transaksjonsrentens dato er etter eller på dagen i måned ":value', + 'search_modifier_book_date_on_year' => 'Bokføringsdato for transaksjonen er i år ":value"', + 'search_modifier_book_date_on_month' => 'Bokføringsdato for transaksjonen er i måned ":value"', + 'search_modifier_book_date_on_day' => 'Bokføringsdato for transaksjonen er på dagen i måned ":value"', + 'search_modifier_not_book_date_on_year' => 'Bokføringsdato for transaksjonen er ikke i år ":value"', + 'search_modifier_not_book_date_on_month' => 'Bokføringsdato for transaksjonen er ikke i måned ":value"', + 'search_modifier_not_book_date_on_day' => 'Bokføringsdato for transaksjonen er ikke på dag i måned ":value"', + 'search_modifier_book_date_before_year' => 'Transaksjons bokdato er før eller i år ":value"', + 'search_modifier_book_date_before_month' => 'Bokføringsdato for transaksjonen er før eller i måned ":value"', + 'search_modifier_book_date_before_day' => 'Bokføringsdato for transaksjonen er før eller på dagen i måned ":value"', + 'search_modifier_book_date_after_year' => 'Bokføringsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_book_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i måned ":value"', + 'search_modifier_book_date_after_day' => 'Bokføringsdato for transaksjonen er etter eller på dagen i måned ":value"', + 'search_modifier_process_date_on_year' => 'Transaksjonsprosessdato er i år ":value"', + 'search_modifier_process_date_on_month' => 'Transaksjonsprosessdato er i måned ":value"', + 'search_modifier_process_date_on_day' => 'Transaksjonsprosessdato er på dagen i måned ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaksjonens utførelsesdato er ikke i år ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaksjonens utførelsesdato er ikke i måned ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaksjonen er ikke på dagen for måned ":value', + 'search_modifier_process_date_before_year' => 'Transaksjonsprosessdato er før eller i år ":value"', + 'search_modifier_process_date_before_month' => 'Transaksjonsdato er før eller i måned ":value"', + 'search_modifier_process_date_before_day' => 'Transaksjonsprosessdato er før eller på dagen i måned ":value"', + 'search_modifier_process_date_after_year' => 'Transaksjonsprosessdato er etter eller i år ":value"', + 'search_modifier_process_date_after_month' => 'Transaksjonsprosessdato er etter eller i måned ":value"', + 'search_modifier_process_date_after_day' => 'Transaksjonsprosessdato er etter eller på dagen i måned ":value', + 'search_modifier_due_date_on_year' => 'Forfallsdato for transaksjonen er i år ":value"', + 'search_modifier_due_date_on_month' => 'Forfallsdato for transaksjonen er i måned ":value"', + 'search_modifier_due_date_on_day' => 'Forfallsdato for transaksjonen er på dagen i måned ":value"', + 'search_modifier_not_due_date_on_year' => 'Forfallsdato for transaksjonen er ikke i år ":value"', + 'search_modifier_not_due_date_on_month' => 'Forfallsdato for transaksjonen er ikke i måned ":value"', + 'search_modifier_not_due_date_on_day' => 'Forfallsdato for transaksjonen er ikke på dag i måned ":value"', + 'search_modifier_due_date_before_year' => 'Forfallsdato for transaksjonen er før eller i år ":value"', + 'search_modifier_due_date_before_month' => 'Forfallsdato for transaksjonen er før eller i måned ":value"', + 'search_modifier_due_date_before_day' => 'Forfallsdato for transaksjonen er før eller på dagen i måneden ":value"', + 'search_modifier_due_date_after_year' => 'Forfallsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_due_date_after_month' => 'Forfallsdato for transaksjonen er etter eller i måned ":value"', + 'search_modifier_due_date_after_day' => 'Forfallsdato for transaksjonen er etter eller på dagen i måned ":value', + 'search_modifier_payment_date_on_year' => 'Betalingsdato i år ":value"', + 'search_modifier_payment_date_on_month' => 'Betalingsdato for transaksjonen er i måned ":value"', + 'search_modifier_payment_date_on_day' => 'Betalingsdato for transaksjonen er på dagen i måned ":value"', + 'search_modifier_not_payment_date_on_year' => 'Betalingsdato for transaksjonen er ikke i år ":value"', + 'search_modifier_not_payment_date_on_month' => 'Betalingsdato for transaksjonen er ikke i måned ":value"', + 'search_modifier_not_payment_date_on_day' => 'Betalingsdato for transaksjonen er ikke på dagen i måned ":value"', + 'search_modifier_payment_date_before_year' => 'Betalingsdato for transaksjonen er før eller i år ":value"', + 'search_modifier_payment_date_before_month' => 'Betalingsdato for transaksjonen er før eller i måned ":value"', + 'search_modifier_payment_date_before_day' => 'Betalingsdato for transaksjonen er før eller på dagen i måned ":value"', + 'search_modifier_payment_date_after_year' => 'Betalingsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_payment_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i måned ":value"', + 'search_modifier_payment_date_after_day' => 'Betalingsdato for transaksjonen er etter eller på dagen i måned ":value"', + 'search_modifier_invoice_date_on_year' => 'Fakturadato for transaksjon er i år ":value"', + 'search_modifier_invoice_date_on_month' => 'Fakturadato for transaksjon er i måned ":value"', + 'search_modifier_invoice_date_on_day' => 'Fakturadato for transaksjon er på dagen i måned ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Fakturadato for transaksjonen er ikke i år ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Fakturadato for transaksjonen er ikke i måned ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Fakturadato for transaksjon er ikke på dag i måned ":value"', + 'search_modifier_invoice_date_before_year' => 'Fakturadato for transaksjon er før eller i år ":value"', + 'search_modifier_invoice_date_before_month' => 'Fakturadato for transaksjon er før eller i måned ":value"', + 'search_modifier_invoice_date_before_day' => 'Fakturadato for transaksjon er før eller på dagen i måned ":value"', + 'search_modifier_invoice_date_after_year' => 'Fakturadato for transaksjon er etter eller i år ":value"', + 'search_modifier_invoice_date_after_month' => 'Fakturadato for transaksjon er etter eller i måned ":value"', + 'search_modifier_invoice_date_after_day' => 'Fakturadato for transaksjon er etter eller på dagen i måned ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaksjonen ble oppdatert i år ":value"', - 'search_modifier_updated_at_on_month' => 'Transaksjonen ble oppdatert i måned ":value"', - 'search_modifier_updated_at_on_day' => 'Transaksjonen ble sist oppdatert på dagen i måned ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaksjonen ble ikke oppdatert sist i år ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaksjonen ble ikke sist oppdatert i måned ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaksjonen ble ikke sist oppdatert på dag i måned ":value"', - 'search_modifier_updated_at_before_year' => 'Transaksjonen ble sist oppdatert i eller før år ":value"', - 'search_modifier_updated_at_before_month' => 'Transaksjonen ble sist oppdatert i eller før måned ":value"', - 'search_modifier_updated_at_before_day' => 'Transaksjonen ble sist oppdatert på eller før dag i måned ":value"', - 'search_modifier_updated_at_after_year' => 'Transaksjonen ble sist oppdatert i eller etter år ":value"', - 'search_modifier_updated_at_after_month' => 'Transaksjonen ble sist oppdatert i eller etter måned ":value"', - 'search_modifier_updated_at_after_day' => 'Transaksjonen ble sist oppdatert på eller etter en dag i måned ":value"', - 'search_modifier_created_at_on_year' => 'Transaksjonen ble opprettet i år ":value', - 'search_modifier_created_at_on_month' => 'Transaksjonen ble opprettet i måned ":value"', - 'search_modifier_created_at_on_day' => 'Transaksjonen ble opprettet på dag i måned ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaksjonen ble ikke opprettet i år ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaksjonen ble ikke opprettet i måned ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaksjonen ble ikke opprettet på dag i måneden ":value"', - 'search_modifier_created_at_before_year' => 'Transaksjonen ble opprettet i eller før år ":value"', - 'search_modifier_created_at_before_month' => 'Transaksjonen ble opprettet i eller før måned ":value"', - 'search_modifier_created_at_before_day' => 'Transaksjonen ble opprettet på eller før dag i måneden ":value"', - 'search_modifier_created_at_after_year' => 'Transaksjonen ble opprettet i eller etter år ":value"', - 'search_modifier_created_at_after_month' => 'Transaksjonen ble opprettet i eller etter måned ":value"', - 'search_modifier_created_at_after_day' => 'Transaksjonen ble opprettet på eller etter dag i måneden ":value', - 'search_modifier_interest_date_before' => 'Transaksjonsrentens dato er på eller før ":value"', - 'search_modifier_interest_date_after' => 'Transaksjonens rentedato er på eller etter ":value"', - 'search_modifier_book_date_on' => 'Bokføringsdato for transaksjonen er ":value"', - 'search_modifier_not_book_date_on' => 'Bokføringsdato for transaksjonen er ikke ":value"', - 'search_modifier_book_date_before' => 'Bokføringsdato for transaksjonen er på eller før ":value"', - 'search_modifier_book_date_after' => 'Bokføringsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_process_date_on' => 'Transaksjonens utførelsesdato er ":value"', - 'search_modifier_not_process_date_on' => 'Transaksjonens utførelsesdato er ikke ":value"', - 'search_modifier_process_date_before' => 'Transaksjonens utførelsesdato er på eller før ":value"', - 'search_modifier_process_date_after' => 'Transaksjonens utførelsesdato er på eller etter ":value"', - 'search_modifier_due_date_on' => 'Forfallsdato for transaksjonen er ":value"', - 'search_modifier_not_due_date_on' => 'Forfallsdato for transaksjonen er ikke ":value"', - 'search_modifier_due_date_before' => 'Forfallsdato for transaksjonen er på eller før ":value"', - 'search_modifier_due_date_after' => 'Forfallsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_payment_date_on' => 'Betalingsdato for transaksjonen er ":value"', - 'search_modifier_not_payment_date_on' => 'Betalingsdato for transaksjonen er ikke ":value"', - 'search_modifier_payment_date_before' => 'Betalingsdato for transaksjonen er på eller før ":value"', - 'search_modifier_payment_date_after' => 'Betalingsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_invoice_date_on' => 'Fakturadato for transaksjon er på ":value"', - 'search_modifier_not_invoice_date_on' => 'Fakturadato for transaksjon er ikke ":value"', - 'search_modifier_invoice_date_before' => 'Fakturadato for transaksjon er på eller før ":value"', - 'search_modifier_invoice_date_after' => 'Fakturadato for transaksjon er på eller etter ":value"', - 'search_modifier_created_at_on' => 'Transaksjonen ble opprettet på ":value', - 'search_modifier_not_created_at_on' => 'Transaksjonen ble ikke opprettet på ":value', - 'search_modifier_created_at_before' => 'Transaksjonen ble opprettet på eller før ":value"', - 'search_modifier_created_at_after' => 'Transaksjonen ble opprettet på eller etter ":value"', - 'search_modifier_updated_at_on' => 'Transaksjonen ble oppdatert ":value"', - 'search_modifier_not_updated_at_on' => 'Transaksjonen ble ikke oppdatert ":value"', - 'search_modifier_updated_at_before' => 'Transaksjonen ble oppdatert på dato eller før ":value"', - 'search_modifier_updated_at_after' => 'Transaksjonen ble oppdatert på eller etter ":value"', + 'search_modifier_updated_at_on_year' => 'Transaksjonen ble oppdatert i år ":value"', + 'search_modifier_updated_at_on_month' => 'Transaksjonen ble oppdatert i måned ":value"', + 'search_modifier_updated_at_on_day' => 'Transaksjonen ble sist oppdatert på dagen i måned ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaksjonen ble ikke oppdatert sist i år ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaksjonen ble ikke sist oppdatert i måned ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaksjonen ble ikke sist oppdatert på dag i måned ":value"', + 'search_modifier_updated_at_before_year' => 'Transaksjonen ble sist oppdatert i eller før år ":value"', + 'search_modifier_updated_at_before_month' => 'Transaksjonen ble sist oppdatert i eller før måned ":value"', + 'search_modifier_updated_at_before_day' => 'Transaksjonen ble sist oppdatert på eller før dag i måned ":value"', + 'search_modifier_updated_at_after_year' => 'Transaksjonen ble sist oppdatert i eller etter år ":value"', + 'search_modifier_updated_at_after_month' => 'Transaksjonen ble sist oppdatert i eller etter måned ":value"', + 'search_modifier_updated_at_after_day' => 'Transaksjonen ble sist oppdatert på eller etter en dag i måned ":value"', + 'search_modifier_created_at_on_year' => 'Transaksjonen ble opprettet i år ":value', + 'search_modifier_created_at_on_month' => 'Transaksjonen ble opprettet i måned ":value"', + 'search_modifier_created_at_on_day' => 'Transaksjonen ble opprettet på dag i måned ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaksjonen ble ikke opprettet i år ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaksjonen ble ikke opprettet i måned ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaksjonen ble ikke opprettet på dag i måneden ":value"', + 'search_modifier_created_at_before_year' => 'Transaksjonen ble opprettet i eller før år ":value"', + 'search_modifier_created_at_before_month' => 'Transaksjonen ble opprettet i eller før måned ":value"', + 'search_modifier_created_at_before_day' => 'Transaksjonen ble opprettet på eller før dag i måneden ":value"', + 'search_modifier_created_at_after_year' => 'Transaksjonen ble opprettet i eller etter år ":value"', + 'search_modifier_created_at_after_month' => 'Transaksjonen ble opprettet i eller etter måned ":value"', + 'search_modifier_created_at_after_day' => 'Transaksjonen ble opprettet på eller etter dag i måneden ":value', + 'search_modifier_interest_date_before' => 'Transaksjonsrentens dato er på eller før ":value"', + 'search_modifier_interest_date_after' => 'Transaksjonens rentedato er på eller etter ":value"', + 'search_modifier_book_date_on' => 'Bokføringsdato for transaksjonen er ":value"', + 'search_modifier_not_book_date_on' => 'Bokføringsdato for transaksjonen er ikke ":value"', + 'search_modifier_book_date_before' => 'Bokføringsdato for transaksjonen er på eller før ":value"', + 'search_modifier_book_date_after' => 'Bokføringsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_process_date_on' => 'Transaksjonens utførelsesdato er ":value"', + 'search_modifier_not_process_date_on' => 'Transaksjonens utførelsesdato er ikke ":value"', + 'search_modifier_process_date_before' => 'Transaksjonens utførelsesdato er på eller før ":value"', + 'search_modifier_process_date_after' => 'Transaksjonens utførelsesdato er på eller etter ":value"', + 'search_modifier_due_date_on' => 'Forfallsdato for transaksjonen er ":value"', + 'search_modifier_not_due_date_on' => 'Forfallsdato for transaksjonen er ikke ":value"', + 'search_modifier_due_date_before' => 'Forfallsdato for transaksjonen er på eller før ":value"', + 'search_modifier_due_date_after' => 'Forfallsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_payment_date_on' => 'Betalingsdato for transaksjonen er ":value"', + 'search_modifier_not_payment_date_on' => 'Betalingsdato for transaksjonen er ikke ":value"', + 'search_modifier_payment_date_before' => 'Betalingsdato for transaksjonen er på eller før ":value"', + 'search_modifier_payment_date_after' => 'Betalingsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_invoice_date_on' => 'Fakturadato for transaksjon er på ":value"', + 'search_modifier_not_invoice_date_on' => 'Fakturadato for transaksjon er ikke ":value"', + 'search_modifier_invoice_date_before' => 'Fakturadato for transaksjon er på eller før ":value"', + 'search_modifier_invoice_date_after' => 'Fakturadato for transaksjon er på eller etter ":value"', + 'search_modifier_created_at_on' => 'Transaksjonen ble opprettet på ":value', + 'search_modifier_not_created_at_on' => 'Transaksjonen ble ikke opprettet på ":value', + 'search_modifier_created_at_before' => 'Transaksjonen ble opprettet på eller før ":value"', + 'search_modifier_created_at_after' => 'Transaksjonen ble opprettet på eller etter ":value"', + 'search_modifier_updated_at_on' => 'Transaksjonen ble oppdatert ":value"', + 'search_modifier_not_updated_at_on' => 'Transaksjonen ble ikke oppdatert ":value"', + 'search_modifier_updated_at_before' => 'Transaksjonen ble oppdatert på dato eller før ":value"', + 'search_modifier_updated_at_after' => 'Transaksjonen ble oppdatert på eller etter ":value"', - 'search_modifier_attachment_name_is' => 'Navn på vedlegg er ":value"', - 'search_modifier_attachment_name_contains' => 'Navn på vedlegg inneholder ":value"', - 'search_modifier_attachment_name_starts' => 'Navn på vedlegg starter med ":value"', - 'search_modifier_attachment_name_ends' => 'Navn på vedlegg slutter med ":value"', - 'search_modifier_attachment_notes_are' => 'Notater på vedlegg er ":value"', - 'search_modifier_attachment_notes_contains' => 'Notater på vedlegg inneholder ":value"', - 'search_modifier_attachment_notes_starts' => 'Notater på vedlegg starter med ":value"', - 'search_modifier_attachment_notes_ends' => 'Notater på vedlegg slutter med ":value"', - 'search_modifier_not_attachment_name_is' => 'Navn på vedlegg er ikke ":value"', - 'search_modifier_not_attachment_name_contains' => 'Navn på vedlegg inneholder ikke ":value"', - 'search_modifier_not_attachment_name_starts' => 'Navn på vedlegg starter ikke med ":value"', - 'search_modifier_not_attachment_name_ends' => 'Navn på vedlegg slutter ikke med ":value"', - 'search_modifier_not_attachment_notes_are' => 'Notater på vedlegg er ikke ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Notater på vedlegg inneholder ikke ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Notater på vedlegg starter med ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Notater på vedlegg slutter ikke med ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT er ":value"', - 'update_rule_from_query' => 'Oppdater regel ":rule" fra søk', - 'create_rule_from_query' => 'Lag ny regel fra søk', - 'rule_from_search_words' => 'Regelverksmotoren har problemer med søkeparameteren ":string". Den foreslåtte regeln som passer til ditt søk kan gi et annet resultat. Vennligst kontroller reglene nøye.', + 'search_modifier_attachment_name_is' => 'Navn på vedlegg er ":value"', + 'search_modifier_attachment_name_contains' => 'Navn på vedlegg inneholder ":value"', + 'search_modifier_attachment_name_starts' => 'Navn på vedlegg starter med ":value"', + 'search_modifier_attachment_name_ends' => 'Navn på vedlegg slutter med ":value"', + 'search_modifier_attachment_notes_are' => 'Notater på vedlegg er ":value"', + 'search_modifier_attachment_notes_contains' => 'Notater på vedlegg inneholder ":value"', + 'search_modifier_attachment_notes_starts' => 'Notater på vedlegg starter med ":value"', + 'search_modifier_attachment_notes_ends' => 'Notater på vedlegg slutter med ":value"', + 'search_modifier_not_attachment_name_is' => 'Navn på vedlegg er ikke ":value"', + 'search_modifier_not_attachment_name_contains' => 'Navn på vedlegg inneholder ikke ":value"', + 'search_modifier_not_attachment_name_starts' => 'Navn på vedlegg starter ikke med ":value"', + 'search_modifier_not_attachment_name_ends' => 'Navn på vedlegg slutter ikke med ":value"', + 'search_modifier_not_attachment_notes_are' => 'Notater på vedlegg er ikke ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Notater på vedlegg inneholder ikke ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Notater på vedlegg starter med ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Notater på vedlegg slutter ikke med ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT er ":value"', + 'update_rule_from_query' => 'Oppdater regel ":rule" fra søk', + 'create_rule_from_query' => 'Lag ny regel fra søk', + 'rule_from_search_words' => 'Regelverksmotoren har problemer med søkeparameteren ":string". Den foreslåtte regeln som passer til ditt søk kan gi et annet resultat. Vennligst kontroller reglene nøye.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'De følgende modifikatorer er lagt til søket i tillegg:', - 'general_search_error' => 'Det oppstod en feil under søking. Vennligst sjekk loggfilene for mer informasjon.', - 'search_box' => 'Søk', - 'search_box_intro' => 'Velkommen til søkefunksjonen i Firefly III. Skriv inn søkefrasen din i boksen. Pass på at du sjekker hjelpefilen, for søkefunksjonen er ganske avansert.', - 'search_error' => 'Feil under søking', - 'search_searching' => 'Søker ...', - 'search_results' => 'Søkeresultater', + 'modifiers_applies_are' => 'De følgende modifikatorer er lagt til søket i tillegg:', + 'general_search_error' => 'Det oppstod en feil under søking. Vennligst sjekk loggfilene for mer informasjon.', + 'search_box' => 'Søk', + 'search_box_intro' => 'Velkommen til søkefunksjonen i Firefly III. Skriv inn søkefrasen din i boksen. Pass på at du sjekker hjelpefilen, for søkefunksjonen er ganske avansert.', + 'search_error' => 'Feil under søking', + 'search_searching' => 'Søker ...', + 'search_results' => 'Søkeresultater', // repeat frequencies: - 'repeat_freq_yearly' => 'årlig', - 'repeat_freq_half-year' => 'hvert halvår', - 'repeat_freq_quarterly' => 'kvartalsvis', - 'repeat_freq_monthly' => 'månedlig', - 'repeat_freq_weekly' => 'ukentlig', - 'repeat_freq_daily' => 'daglig', - 'daily' => 'daglig', - 'weekly' => 'ukentlig', - 'quarterly' => 'kvartalsvis', - 'half-year' => 'hvert halvår', - 'yearly' => 'årlig', + 'repeat_freq_yearly' => 'årlig', + 'repeat_freq_half-year' => 'hvert halvår', + 'repeat_freq_quarterly' => 'kvartalsvis', + 'repeat_freq_monthly' => 'månedlig', + 'repeat_freq_weekly' => 'ukentlig', + 'repeat_freq_daily' => 'daglig', + 'daily' => 'daglig', + 'weekly' => 'ukentlig', + 'quarterly' => 'kvartalsvis', + 'half-year' => 'hvert halvår', + 'yearly' => 'årlig', // rules - 'is_not_rule_trigger' => 'Ikke', - 'cannot_fire_inactive_rules' => 'Du kan ikke kjøre inaktive regler.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Regler', - 'rule_name' => 'Navn på regel', - 'rule_triggers' => 'Regel utløses når', - 'rule_actions' => 'Regel vil', - 'new_rule' => 'Ny regel', - 'new_rule_group' => 'Ny regelgruppe', - 'rule_priority_up' => 'Gi regel høyere prioritet', - 'rule_priority_down' => 'Gi regel lavere prioritet', - 'make_new_rule_group' => 'Opprett ny regelgruppe', - 'store_new_rule_group' => 'Lagre ny regelgruppe', - 'created_new_rule_group' => 'Ny regelgruppe ":title" ble lagret!', - 'updated_rule_group' => 'Oppdaterte regelgruppen ":title".', - 'edit_rule_group' => 'Rediger regelgruppe ":title"', - 'duplicate_rule' => 'Kopier regel ":title"', - 'rule_copy_of' => 'Duplikat av ":title"', - 'duplicated_rule' => 'Duplisert regel:title" inn i ":newTitle"', - 'delete_rule_group' => 'Slett regelgruppe ":title"', - 'deleted_rule_group' => 'Slettet regelgruppe ":title"', - 'update_rule_group' => 'Oppdater regelgruppe', - 'no_rules_in_group' => 'Det finnes ingen regler i denne gruppen', - 'move_rule_group_up' => 'Flytt regelgruppen opp', - 'move_rule_group_down' => 'Flytt regelgruppen ned', - 'save_rules_by_moving' => 'Lagre denne regelen ved å flytte den til en annen regelgruppe: Lagre disse reglene ved å flytte dem til en annen regelgruppe:', - 'make_new_rule' => 'Opprett ny regel i regelgruppen ":title"', - 'make_new_rule_no_group' => 'Lag en ny regel', - 'instructions_rule_from_bill' => 'For å matche transaksjoner til din nye regning ":name", kan Firefly III lage en regel som automatisk vil bli sjekket mot eksisterende transaksjoner. Vennligst verifiser detaljene nedenfor og lagre regelen for å få Firefly III til å automatisk matche transaksjoner til din nye regning.', - 'instructions_rule_from_journal' => 'Opprett en regel basert på en av dine transaksjoner. Fullfør eller send inn skjemaet nedenfor.', - 'rule_is_strict' => 'strikt regel', - 'rule_is_not_strict' => 'ikke-strikt regel', - 'rule_help_stop_processing' => 'Hvis du markerer denne boksen, vil ikke senere regler i denne gruppen bli utløst.', - 'rule_help_strict' => 'I strikte regler må ALLE triggere slå til for at aksjonen skal bli utført. Ved ikke-strikt regler kan UANSETT trigger få aksjonen til å bli utført.', - 'rule_help_active' => 'Inaktive regler vil aldri utløses.', - 'stored_new_rule' => 'Lagret ny regel med tittel ":title"', - 'deleted_rule' => 'Slettet regel med tittel ":title"', - 'store_new_rule' => 'Lagre ny regel', - 'updated_rule' => 'Oppdaterte regel med tittel ":title"', - 'default_rule_group_name' => 'Standardregler', - 'default_rule_group_description' => 'Alle dine regler ligger ikke i noen bestemt gruppe.', - 'trigger' => 'Utløser', - 'trigger_value' => 'Utløs på verdi', - 'stop_processing_other_triggers' => 'Slutt å prosessere andre utløsere', - 'add_rule_trigger' => 'Legg til ny utløser', - 'action' => 'Handling', - 'action_value' => 'Handlingsverdi', - 'stop_executing_other_actions' => 'Slutt å utføre andre handlinger', - 'add_rule_action' => 'Legg til ny handling', - 'edit_rule' => 'Rediger regel ":title"', - 'delete_rule' => 'Slett regel ":title"', - 'update_rule' => 'Oppdater regel', - 'test_rule_triggers' => 'Se transaksjoner som passer', - 'warning_no_matching_transactions' => 'Ingen samsvarende transaksjoner funnet.', - 'warning_no_valid_triggers' => 'Ingen gyldige utløsere oppgitt.', - 'apply_rule_selection' => 'Bruk regel ":title" til et utvalg av dine transaksjoner', - 'apply_rule_selection_intro' => 'Regler som ":title" brukes normalt bare til nye eller oppdaterte transaksjoner, men du kan få Firefly III til å kjøre dem på et utvalg av dine eksisterende transaksjoner. Dette kan være nyttig når du har oppdatert en regel, og du trenger at endringene blir brukt på alle dine tidligere transaksjoner.', - 'include_transactions_from_accounts' => 'Ta med transaksjoner fra disse kontoene', - 'include' => 'Inkluder?', - 'applied_rule_selection' => '{0} Ingen transaksjoner i ditt utvalg ble endret med regel ":title.[1] En transaksjon i ditt valg ble endret av regel ":title". [2,*] :count transaksjoner i utvalget ble endret ved regel ":title. ".', - 'execute' => 'Kjør', - 'apply_rule_group_selection' => 'Bruk regelgruppe ":title" til et utvalg av dine transaksjoner', - 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" brukes normalt bare til nye eller oppdaterte transaksjoner, men du kan få Firefly III til å kjøre dem på et utvalg av dine eksisterende transaksjoner. Dette kan være nyttig når du har oppdatert en regelgruppe, og du trenger at endringene blir brukt på alle dine tidligere transaksjoner.', - 'applied_rule_group_selection' => 'Regelgruppe ":title" har blitt brukt på ditt utvalg.', + 'is_not_rule_trigger' => 'Ikke', + 'cannot_fire_inactive_rules' => 'Du kan ikke kjøre inaktive regler.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Regler', + 'rule_name' => 'Navn på regel', + 'rule_triggers' => 'Regel utløses når', + 'rule_actions' => 'Regel vil', + 'new_rule' => 'Ny regel', + 'new_rule_group' => 'Ny regelgruppe', + 'rule_priority_up' => 'Gi regel høyere prioritet', + 'rule_priority_down' => 'Gi regel lavere prioritet', + 'make_new_rule_group' => 'Opprett ny regelgruppe', + 'store_new_rule_group' => 'Lagre ny regelgruppe', + 'created_new_rule_group' => 'Ny regelgruppe ":title" ble lagret!', + 'updated_rule_group' => 'Oppdaterte regelgruppen ":title".', + 'edit_rule_group' => 'Rediger regelgruppe ":title"', + 'duplicate_rule' => 'Kopier regel ":title"', + 'rule_copy_of' => 'Duplikat av ":title"', + 'duplicated_rule' => 'Duplisert regel:title" inn i ":newTitle"', + 'delete_rule_group' => 'Slett regelgruppe ":title"', + 'deleted_rule_group' => 'Slettet regelgruppe ":title"', + 'update_rule_group' => 'Oppdater regelgruppe', + 'no_rules_in_group' => 'Det finnes ingen regler i denne gruppen', + 'move_rule_group_up' => 'Flytt regelgruppen opp', + 'move_rule_group_down' => 'Flytt regelgruppen ned', + 'save_rules_by_moving' => 'Lagre denne regelen ved å flytte den til en annen regelgruppe: Lagre disse reglene ved å flytte dem til en annen regelgruppe:', + 'make_new_rule' => 'Opprett ny regel i regelgruppen ":title"', + 'make_new_rule_no_group' => 'Lag en ny regel', + 'instructions_rule_from_bill' => 'For å matche transaksjoner til din nye regning ":name", kan Firefly III lage en regel som automatisk vil bli sjekket mot eksisterende transaksjoner. Vennligst verifiser detaljene nedenfor og lagre regelen for å få Firefly III til å automatisk matche transaksjoner til din nye regning.', + 'instructions_rule_from_journal' => 'Opprett en regel basert på en av dine transaksjoner. Fullfør eller send inn skjemaet nedenfor.', + 'rule_is_strict' => 'strikt regel', + 'rule_is_not_strict' => 'ikke-strikt regel', + 'rule_help_stop_processing' => 'Hvis du markerer denne boksen, vil ikke senere regler i denne gruppen bli utløst.', + 'rule_help_strict' => 'I strikte regler må ALLE triggere slå til for at aksjonen skal bli utført. Ved ikke-strikt regler kan UANSETT trigger få aksjonen til å bli utført.', + 'rule_help_active' => 'Inaktive regler vil aldri utløses.', + 'stored_new_rule' => 'Lagret ny regel med tittel ":title"', + 'deleted_rule' => 'Slettet regel med tittel ":title"', + 'store_new_rule' => 'Lagre ny regel', + 'updated_rule' => 'Oppdaterte regel med tittel ":title"', + 'default_rule_group_name' => 'Standardregler', + 'default_rule_group_description' => 'Alle dine regler ligger ikke i noen bestemt gruppe.', + 'trigger' => 'Utløser', + 'trigger_value' => 'Utløs på verdi', + 'stop_processing_other_triggers' => 'Slutt å prosessere andre utløsere', + 'add_rule_trigger' => 'Legg til ny utløser', + 'action' => 'Handling', + 'action_value' => 'Handlingsverdi', + 'stop_executing_other_actions' => 'Slutt å utføre andre handlinger', + 'add_rule_action' => 'Legg til ny handling', + 'edit_rule' => 'Rediger regel ":title"', + 'delete_rule' => 'Slett regel ":title"', + 'update_rule' => 'Oppdater regel', + 'test_rule_triggers' => 'Se transaksjoner som passer', + 'warning_no_matching_transactions' => 'Ingen samsvarende transaksjoner funnet.', + 'warning_no_valid_triggers' => 'Ingen gyldige utløsere oppgitt.', + 'apply_rule_selection' => 'Bruk regel ":title" til et utvalg av dine transaksjoner', + 'apply_rule_selection_intro' => 'Regler som ":title" brukes normalt bare til nye eller oppdaterte transaksjoner, men du kan få Firefly III til å kjøre dem på et utvalg av dine eksisterende transaksjoner. Dette kan være nyttig når du har oppdatert en regel, og du trenger at endringene blir brukt på alle dine tidligere transaksjoner.', + 'include_transactions_from_accounts' => 'Ta med transaksjoner fra disse kontoene', + 'include' => 'Inkluder?', + 'applied_rule_selection' => '{0} Ingen transaksjoner i ditt utvalg ble endret med regel ":title.[1] En transaksjon i ditt valg ble endret av regel ":title". [2,*] :count transaksjoner i utvalget ble endret ved regel ":title. ".', + 'execute' => 'Kjør', + 'apply_rule_group_selection' => 'Bruk regelgruppe ":title" til et utvalg av dine transaksjoner', + 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" brukes normalt bare til nye eller oppdaterte transaksjoner, men du kan få Firefly III til å kjøre dem på et utvalg av dine eksisterende transaksjoner. Dette kan være nyttig når du har oppdatert en regelgruppe, og du trenger at endringene blir brukt på alle dine tidligere transaksjoner.', + 'applied_rule_group_selection' => 'Regelgruppe ":title" har blitt brukt på ditt utvalg.', // actions and triggers - 'rule_trigger_store_journal' => 'Når en transaksjon er opprettet', - 'rule_trigger_update_journal' => 'Når en transaksjon er oppdatert', - 'rule_trigger_user_action' => 'Brukerhandling er ":trigger_value"', + 'rule_trigger_store_journal' => 'Når en transaksjon er opprettet', + 'rule_trigger_update_journal' => 'Når en transaksjon er oppdatert', + 'rule_trigger_user_action' => 'Brukerhandling er ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Kildekonto navn starter med..', - 'rule_trigger_source_account_starts' => 'Kildenavnet starter med ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Kildenavnet slutter med..', - 'rule_trigger_source_account_ends' => 'Kildekontonavnet slutter med ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Kildekonto navn er..', - 'rule_trigger_source_account_is' => 'Kildekonto navnet er ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Kildekonto navn inneholder..', - 'rule_trigger_source_account_contains' => 'Kildekonto navnet inneholder ":trigger_value"', - 'rule_trigger_account_id_choice' => 'En av konto ID\'er, er nøyaktig.', - 'rule_trigger_account_id' => 'En av konto ID\'er, er nøyaktig :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Kildekonto-ID er nøyaktig..', - 'rule_trigger_source_account_id' => 'Kildekonto-IDen er nøyaktig :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Målkonto ID er nøyaktig..', - 'rule_trigger_destination_account_id' => 'Målkonto ID er nøyaktig :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'En av konto er kontant', - 'rule_trigger_account_is_cash' => 'En av konto er kontant', - 'rule_trigger_source_is_cash_choice' => 'Kildekonto er (kontant) konto', - 'rule_trigger_source_is_cash' => 'Kildekonto er (kontant) konto', - 'rule_trigger_destination_is_cash_choice' => 'Målkonto er (kontant) konto', - 'rule_trigger_destination_is_cash' => 'Målkonto er (kontant) konto', - 'rule_trigger_source_account_nr_starts_choice' => 'Kildekontonummer / IBAN starter med..', - 'rule_trigger_source_account_nr_starts' => 'Kildekontoummer / IBAN starter med ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Kildekontonummer / IBAN slutter med..', - 'rule_trigger_source_account_nr_ends' => 'Kildekontoummer / IBAN slutter med ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Kildekontonummer / IBAN er..', - 'rule_trigger_source_account_nr_is' => 'Kildekontoummer / IBAN er ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Kilde kontonummer / IBAN inneholder..', - 'rule_trigger_source_account_nr_contains' => 'Kilde kontonummer / IBAN inneholder ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Målkontonavnet begynner med..', - 'rule_trigger_destination_account_starts' => 'Målkontonavnet starter med ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Målkontonavnet slutter med..', - 'rule_trigger_destination_account_ends' => 'Målkonto navn slutter med ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Målkonto navn slutter med..', - 'rule_trigger_destination_account_is' => 'Målkontonavn er ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Målkontonavn inneholder..', - 'rule_trigger_destination_account_contains' => 'Målkontonavnet inneholder ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Målkontonummer / IBAN starter med..', - 'rule_trigger_destination_account_nr_starts' => 'Målkontonummer / IBAN starter med ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Målkontonummer / IBAN slutter med..', - 'rule_trigger_destination_account_nr_ends' => 'Målkontonummer / IBAN slutter med ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Målkontonummer / IBAN er..', - 'rule_trigger_destination_account_nr_is' => 'Målkontonummer / IBAN er ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Målkontonummer / IBAN inneholder..', - 'rule_trigger_destination_account_nr_contains' => 'Målkontonummer / IBAN inneholder ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaksjonen er av typen..', - 'rule_trigger_transaction_type' => 'Transaksjonen er av typen ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategori er..', - 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Beløpet er mindre enn eller lik ..', - 'rule_trigger_amount_less' => 'Beløpet er mindre enn eller lik :trigger_value', - 'rule_trigger_amount_is_choice' => 'Beløpet er..', - 'rule_trigger_amount_is' => 'Beløpet er :trigger_value', - 'rule_trigger_amount_more_choice' => 'Beløpet er mer enn eller lik..', - 'rule_trigger_amount_more' => 'Beløpet er mer enn eller lik :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beskrivelse starter med..', - 'rule_trigger_description_starts' => 'Beskrivelse starter med ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beskrivelse slutter med..', - 'rule_trigger_description_ends' => 'Beskrivelse slutter med ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beskrivelse inneholder..', - 'rule_trigger_description_contains' => 'Beskrivelse inneholder ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beskrivelse er..', - 'rule_trigger_description_is' => 'Beskrivelse er ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaksjonsdato er..', - 'rule_trigger_date_on' => 'Transaksjons dato er ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaksjons dato er før..', - 'rule_trigger_date_before' => 'Transaksjons dato er før ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaksjons dato er etter..', - 'rule_trigger_date_after' => 'Transaksjons dato er etter ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaksjonen ble gjort på..', - 'rule_trigger_created_at_on' => 'Transaksjonen ble gjort på ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaksjonen ble sist redigert den..', - 'rule_trigger_updated_at_on' => 'Transaksjonen ble sist redigert den ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budsjett er..', - 'rule_trigger_budget_is' => 'Budsjett er ":trigger_value"', - 'rule_trigger_tag_is_choice' => '(En) tagg er..', - 'rule_trigger_tag_is' => 'Enhver tag er ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaksjonsvaluta er..', - 'rule_trigger_currency_is' => 'Transaksjonsvaluta er ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaksjonens fremmed valuta er..', - 'rule_trigger_foreign_currency_is' => 'Transaksjonens fremmed valuta er ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Har minst så mange vedlegg', - 'rule_trigger_has_attachments' => 'Har minst :trigger_value vedlegg(er)', - 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', - 'rule_trigger_has_no_category' => 'Transaksjonen har ingen kategori', - 'rule_trigger_has_any_category_choice' => 'Har en (hvilken som helst) kategori', - 'rule_trigger_has_any_category' => 'Transaksjonen har en (hvilken som helst) kategori', - 'rule_trigger_has_no_budget_choice' => 'Har ingen budsjett', - 'rule_trigger_has_no_budget' => 'Transaksjonen har ikke noe budsjett', - 'rule_trigger_has_any_budget_choice' => 'Har et (hvilket som helst) budsjett', - 'rule_trigger_has_any_budget' => 'Transaksjonen har et (hvilket som helst) budsjett', - 'rule_trigger_has_no_bill_choice' => 'Har ingen regning', - 'rule_trigger_has_no_bill' => 'Transaksjonen har ingen regninger', - 'rule_trigger_has_any_bill_choice' => 'Har en regning', - 'rule_trigger_has_any_bill' => 'Transaksjonen har en (flere) regning(er)', - 'rule_trigger_has_no_tag_choice' => 'Har ingen tagg(er)', - 'rule_trigger_has_no_tag' => 'Transaksjonen har ingen tagger', - 'rule_trigger_has_any_tag_choice' => 'Har en eller flere tagger', - 'rule_trigger_has_any_tag' => 'Transaksjonen har en eller flere tagger', - 'rule_trigger_any_notes_choice' => 'Har ett eller flere notater', - 'rule_trigger_any_notes' => 'Transaksjonen har ett eller flere notater', - 'rule_trigger_no_notes_choice' => 'Har ingen notater', - 'rule_trigger_no_notes' => 'Transaksjonen har ingen notater', - 'rule_trigger_notes_is_choice' => 'Notater er..', - 'rule_trigger_notes_is' => 'Notater er ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notater inneholder..', - 'rule_trigger_notes_contains' => 'Notater inneholder ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notater begynner med..', - 'rule_trigger_notes_starts' => 'Notater som starter med ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notater som slutter med..', - 'rule_trigger_notes_ends' => 'Notater som slutter med ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Regning er..', - 'rule_trigger_bill_is' => 'Regning er ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Ekstern ID er..', - 'rule_trigger_external_id_is' => 'Ekstern ID er ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Intern referanse er..', - 'rule_trigger_internal_reference_is' => 'Ekstern referanse er ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaksjonens journal ID er..', - 'rule_trigger_journal_id' => 'Transaksjonens journal ID er ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaksjonen har en ekstern URL', - 'rule_trigger_any_external_url_choice' => 'Transaksjonen har en ekstern URL', - 'rule_trigger_any_external_id' => 'Transaksjonen har en ekstern ID', - 'rule_trigger_any_external_id_choice' => 'Transaksjonen har en ekstern ID', - 'rule_trigger_no_external_url_choice' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_no_external_url' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_no_external_id_choice' => 'Transaksjonen har ingen ekstern ID', - 'rule_trigger_no_external_id' => 'Transaksjonen har ingen ekstern ID', - 'rule_trigger_id_choice' => 'Transaksjons-ID er', - 'rule_trigger_id' => 'Transaksjons ID er ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT er..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT er ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Kildekonto navn starter med..', + 'rule_trigger_source_account_starts' => 'Kildenavnet starter med ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Kildenavnet slutter med..', + 'rule_trigger_source_account_ends' => 'Kildekontonavnet slutter med ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Kildekonto navn er..', + 'rule_trigger_source_account_is' => 'Kildekonto navnet er ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Kildekonto navn inneholder..', + 'rule_trigger_source_account_contains' => 'Kildekonto navnet inneholder ":trigger_value"', + 'rule_trigger_account_id_choice' => 'En av konto ID\'er, er nøyaktig.', + 'rule_trigger_account_id' => 'En av konto ID\'er, er nøyaktig :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Kildekonto-ID er nøyaktig..', + 'rule_trigger_source_account_id' => 'Kildekonto-IDen er nøyaktig :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Målkonto ID er nøyaktig..', + 'rule_trigger_destination_account_id' => 'Målkonto ID er nøyaktig :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'En av konto er kontant', + 'rule_trigger_account_is_cash' => 'En av konto er kontant', + 'rule_trigger_source_is_cash_choice' => 'Kildekonto er (kontant) konto', + 'rule_trigger_source_is_cash' => 'Kildekonto er (kontant) konto', + 'rule_trigger_destination_is_cash_choice' => 'Målkonto er (kontant) konto', + 'rule_trigger_destination_is_cash' => 'Målkonto er (kontant) konto', + 'rule_trigger_source_account_nr_starts_choice' => 'Kildekontonummer / IBAN starter med..', + 'rule_trigger_source_account_nr_starts' => 'Kildekontoummer / IBAN starter med ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Kildekontonummer / IBAN slutter med..', + 'rule_trigger_source_account_nr_ends' => 'Kildekontoummer / IBAN slutter med ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Kildekontonummer / IBAN er..', + 'rule_trigger_source_account_nr_is' => 'Kildekontoummer / IBAN er ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Kilde kontonummer / IBAN inneholder..', + 'rule_trigger_source_account_nr_contains' => 'Kilde kontonummer / IBAN inneholder ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Målkontonavnet begynner med..', + 'rule_trigger_destination_account_starts' => 'Målkontonavnet starter med ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Målkontonavnet slutter med..', + 'rule_trigger_destination_account_ends' => 'Målkonto navn slutter med ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Målkonto navn slutter med..', + 'rule_trigger_destination_account_is' => 'Målkontonavn er ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Målkontonavn inneholder..', + 'rule_trigger_destination_account_contains' => 'Målkontonavnet inneholder ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Målkontonummer / IBAN starter med..', + 'rule_trigger_destination_account_nr_starts' => 'Målkontonummer / IBAN starter med ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Målkontonummer / IBAN slutter med..', + 'rule_trigger_destination_account_nr_ends' => 'Målkontonummer / IBAN slutter med ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Målkontonummer / IBAN er..', + 'rule_trigger_destination_account_nr_is' => 'Målkontonummer / IBAN er ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Målkontonummer / IBAN inneholder..', + 'rule_trigger_destination_account_nr_contains' => 'Målkontonummer / IBAN inneholder ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaksjonen er av typen..', + 'rule_trigger_transaction_type' => 'Transaksjonen er av typen ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori er..', + 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Beløpet er mindre enn eller lik ..', + 'rule_trigger_amount_less' => 'Beløpet er mindre enn eller lik :trigger_value', + 'rule_trigger_amount_is_choice' => 'Beløpet er..', + 'rule_trigger_amount_is' => 'Beløpet er :trigger_value', + 'rule_trigger_amount_more_choice' => 'Beløpet er mer enn eller lik..', + 'rule_trigger_amount_more' => 'Beløpet er mer enn eller lik :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beskrivelse starter med..', + 'rule_trigger_description_starts' => 'Beskrivelse starter med ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beskrivelse slutter med..', + 'rule_trigger_description_ends' => 'Beskrivelse slutter med ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beskrivelse inneholder..', + 'rule_trigger_description_contains' => 'Beskrivelse inneholder ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beskrivelse er..', + 'rule_trigger_description_is' => 'Beskrivelse er ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaksjonsdato er..', + 'rule_trigger_date_on' => 'Transaksjons dato er ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaksjons dato er før..', + 'rule_trigger_date_before' => 'Transaksjons dato er før ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaksjons dato er etter..', + 'rule_trigger_date_after' => 'Transaksjons dato er etter ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaksjonen ble gjort på..', + 'rule_trigger_created_at_on' => 'Transaksjonen ble gjort på ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaksjonen ble sist redigert den..', + 'rule_trigger_updated_at_on' => 'Transaksjonen ble sist redigert den ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budsjett er..', + 'rule_trigger_budget_is' => 'Budsjett er ":trigger_value"', + 'rule_trigger_tag_is_choice' => '(En) tagg er..', + 'rule_trigger_tag_is' => 'Enhver tag er ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaksjonsvaluta er..', + 'rule_trigger_currency_is' => 'Transaksjonsvaluta er ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaksjonens fremmed valuta er..', + 'rule_trigger_foreign_currency_is' => 'Transaksjonens fremmed valuta er ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Har minst så mange vedlegg', + 'rule_trigger_has_attachments' => 'Har minst :trigger_value vedlegg(er)', + 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', + 'rule_trigger_has_no_category' => 'Transaksjonen har ingen kategori', + 'rule_trigger_has_any_category_choice' => 'Har en (hvilken som helst) kategori', + 'rule_trigger_has_any_category' => 'Transaksjonen har en (hvilken som helst) kategori', + 'rule_trigger_has_no_budget_choice' => 'Har ingen budsjett', + 'rule_trigger_has_no_budget' => 'Transaksjonen har ikke noe budsjett', + 'rule_trigger_has_any_budget_choice' => 'Har et (hvilket som helst) budsjett', + 'rule_trigger_has_any_budget' => 'Transaksjonen har et (hvilket som helst) budsjett', + 'rule_trigger_has_no_bill_choice' => 'Har ingen regning', + 'rule_trigger_has_no_bill' => 'Transaksjonen har ingen regninger', + 'rule_trigger_has_any_bill_choice' => 'Har en regning', + 'rule_trigger_has_any_bill' => 'Transaksjonen har en (flere) regning(er)', + 'rule_trigger_has_no_tag_choice' => 'Har ingen tagg(er)', + 'rule_trigger_has_no_tag' => 'Transaksjonen har ingen tagger', + 'rule_trigger_has_any_tag_choice' => 'Har en eller flere tagger', + 'rule_trigger_has_any_tag' => 'Transaksjonen har en eller flere tagger', + 'rule_trigger_any_notes_choice' => 'Har ett eller flere notater', + 'rule_trigger_any_notes' => 'Transaksjonen har ett eller flere notater', + 'rule_trigger_no_notes_choice' => 'Har ingen notater', + 'rule_trigger_no_notes' => 'Transaksjonen har ingen notater', + 'rule_trigger_notes_is_choice' => 'Notater er..', + 'rule_trigger_notes_is' => 'Notater er ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notater inneholder..', + 'rule_trigger_notes_contains' => 'Notater inneholder ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notater begynner med..', + 'rule_trigger_notes_starts' => 'Notater som starter med ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notater som slutter med..', + 'rule_trigger_notes_ends' => 'Notater som slutter med ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Regning er..', + 'rule_trigger_bill_is' => 'Regning er ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Ekstern ID er..', + 'rule_trigger_external_id_is' => 'Ekstern ID er ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Intern referanse er..', + 'rule_trigger_internal_reference_is' => 'Ekstern referanse er ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaksjonens journal ID er..', + 'rule_trigger_journal_id' => 'Transaksjonens journal ID er ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaksjonen har en ekstern URL', + 'rule_trigger_any_external_url_choice' => 'Transaksjonen har en ekstern URL', + 'rule_trigger_any_external_id' => 'Transaksjonen har en ekstern ID', + 'rule_trigger_any_external_id_choice' => 'Transaksjonen har en ekstern ID', + 'rule_trigger_no_external_url_choice' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_no_external_url' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_no_external_id_choice' => 'Transaksjonen har ingen ekstern ID', + 'rule_trigger_no_external_id' => 'Transaksjonen har ingen ekstern ID', + 'rule_trigger_id_choice' => 'Transaksjons-ID er', + 'rule_trigger_id' => 'Transaksjons ID er ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT er..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT er ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Brukerhandling er ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Ingen tag er..', - 'rule_trigger_tag_is_not' => 'Ingen tag er ":trigger_value"', - 'rule_trigger_account_is_choice' => 'En av kontoene er nøyaktig..', - 'rule_trigger_account_is' => 'En av kontoene er eksakt ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'En av kontoene inneholder..', - 'rule_trigger_account_contains' => 'En av kontoene inneholder ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'En av kontoene slutter med..', - 'rule_trigger_account_ends' => 'Beskrivelse slutter med ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'En av kontoene starter med..', - 'rule_trigger_account_starts' => 'En av kontoene starter med ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'En av kontoenes nummer / IBAN er..', - 'rule_trigger_account_nr_is' => 'Kontonummer / IBAN er ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Kontonummer / IBAN inneholder..', - 'rule_trigger_account_nr_contains' => 'Alle kontonummer / IBAN inneholder ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Alle kontonummer / IBAN slutter med..', - 'rule_trigger_account_nr_ends' => 'Alle kontonummer / IBAN slutter med ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Alle kontonummer / IBAN starter med..', - 'rule_trigger_account_nr_starts' => 'Alle kontonummer / IBAN starter med ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Kategori inneholder..', - 'rule_trigger_category_contains' => 'Kategorien inneholder ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Kategori slutter med..', - 'rule_trigger_category_ends' => 'Kategorien slutter med ":trigger_value', - 'rule_trigger_category_starts_choice' => 'Kategori starter med..', - 'rule_trigger_category_starts' => 'Kategorien starter med ":trigger_value', - 'rule_trigger_budget_contains_choice' => 'Budsjett inneholder..', - 'rule_trigger_budget_contains' => 'Budsjettet inneholder ":trigger_value', - 'rule_trigger_budget_ends_choice' => 'Budsjettet slutter med..', - 'rule_trigger_budget_ends' => 'Budsjettet slutter med ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budsjettet starter med..', - 'rule_trigger_budget_starts' => 'Budsjettet begynner med ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Regning inneholder..', - 'rule_trigger_bill_contains' => 'Regningen inneholder ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Regningen slutter med..', - 'rule_trigger_bill_ends' => 'Regning slutter med ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Regningen starter med..', - 'rule_trigger_bill_starts' => 'Regning begynner med ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Ekstern ID inneholder..', - 'rule_trigger_external_id_contains' => 'Ekstern ID inneholder ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Ekstern ID slutter med..', - 'rule_trigger_external_id_ends' => 'Ekstern ID slutter med ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Ekstern ID starter med..', - 'rule_trigger_external_id_starts' => 'Ekstern ID starter med ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Intern referanse inneholder..', - 'rule_trigger_internal_reference_contains' => 'Ekstern referanse ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Intern referanse ender med..', - 'rule_trigger_internal_reference_ends' => 'Intern referanse ender med ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Intern referanse begynner med..', - 'rule_trigger_internal_reference_starts' => 'Intern referanse starter med ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Ekstern URL er..', - 'rule_trigger_external_url_is' => 'Ekstern URL er ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Ekstern URL inneholder..', - 'rule_trigger_external_url_contains' => 'Ekstern URL inneholder ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Ekstern URL slutter med..', - 'rule_trigger_external_url_ends' => 'Ekstern URL slutter med ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Ekstern URL starter med..', - 'rule_trigger_external_url_starts' => 'Ekstern URL starter med ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Har ingen vedlegg', - 'rule_trigger_has_no_attachments' => 'Transaksjonen har ingen vedlegg', - 'rule_trigger_recurrence_id_choice' => 'Gjentakende transaksjons ID er..', - 'rule_trigger_recurrence_id' => 'Gjentakende transaksjons ID er ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Rentedato er..', - 'rule_trigger_interest_date_on' => 'Rentedato er ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Rentedato er før..', - 'rule_trigger_interest_date_before' => 'Rentedato er før ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Rentedato er etter..', - 'rule_trigger_interest_date_after' => 'Rentedato er etter ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Bokført dato er..', - 'rule_trigger_book_date_on' => 'Bokført dato er ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Bokført dato er før..', - 'rule_trigger_book_date_before' => 'Bokført dato er før ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Bokført dato er etter..', - 'rule_trigger_book_date_after' => 'Bokført dato er etter ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Prosessdato er..', - 'rule_trigger_process_date_on' => 'Prosessdato er ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Prosessdato er før..', - 'rule_trigger_process_date_before' => 'Prosessdato er før ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Prosessdato er etter..', - 'rule_trigger_process_date_after' => 'Prosessdato er etter ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Forfallsdato er..', - 'rule_trigger_due_date_on' => 'Forfallsdato er den ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Forfallsdato er før..', - 'rule_trigger_due_date_before' => 'Forfallsdato er før ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Forfallsdato er etter..', - 'rule_trigger_due_date_after' => 'Forfallsdato er etter ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Betalingsdato er på..', - 'rule_trigger_payment_date_on' => 'Betalingsdato er på ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Betalingsdato er før..', - 'rule_trigger_payment_date_before' => 'Betalingsdato er før ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Betalingsdato er etter..', - 'rule_trigger_payment_date_after' => 'Betalingsdato er etter ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Fakturadato er på..', - 'rule_trigger_invoice_date_on' => 'Fakturadato er den ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Fakturadato er før..', - 'rule_trigger_invoice_date_before' => 'Fakturadato er før ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Fakturadato er etter..', - 'rule_trigger_invoice_date_after' => 'Fakturadato er etter ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaksjonen ble opprettet før..', - 'rule_trigger_created_at_before' => 'Transaksjonen ble opprettet før ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaksjonen ble opprettet etter..', - 'rule_trigger_created_at_after' => 'Transaksjonen ble opprettet etter ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaksjonen ble sist oppdatert før..', - 'rule_trigger_updated_at_before' => 'Transaksjonen ble sist oppdatert før ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaksjonen ble sist oppdatert etter..', - 'rule_trigger_updated_at_after' => 'Transaksjonen ble sist oppdatert etter ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Det utenlanske beløpet er nøyaktig..', - 'rule_trigger_foreign_amount_is' => 'Utenlanske beløpet er nøyaktig ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Utenlandske beløpet er mindre enn..', - 'rule_trigger_foreign_amount_less' => 'Utenlandske beløpet er mindre enn ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Utenlandske beløpet er mer enn..', - 'rule_trigger_foreign_amount_more' => 'Utenlandske beløpet er mer enn ":trigger_value', - 'rule_trigger_attachment_name_is_choice' => 'Ethvert vedlagte navn er..', - 'rule_trigger_attachment_name_is' => 'Ethvert vedlagte navn er ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Eventuelle vedlagte navn inneholder..', - 'rule_trigger_attachment_name_contains' => 'Eventuelle vedlagte navn inneholder ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Ethvert vedlagte navn starter med..', - 'rule_trigger_attachment_name_starts' => 'Eventuelle vedlagte navn starter med ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Eventuelle vedlegg slutter med..', - 'rule_trigger_attachment_name_ends' => 'Eventuelle vedlagte navn slutter med ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Eventuelle vedlagte notater er..', - 'rule_trigger_attachment_notes_are' => 'Eventuelle vedlagte notater er ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Eventuelle vedlagte notater inneholder..', - 'rule_trigger_attachment_notes_contains' => 'Eventuelle vedlagte notater inneholder ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Eventuelle vedlagte notater starter med..', - 'rule_trigger_attachment_notes_starts' => 'Eventuelle vedlagte notater starter med ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Eventuelle vedlagte notater slutter med..', - 'rule_trigger_attachment_notes_ends' => 'Eventuelle vedlagte notater ferdig med ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaksjonen er avstemt', - 'rule_trigger_reconciled' => 'Transaksjonen er avstemt', - 'rule_trigger_exists_choice' => 'Alle transaksjoner matcher(!)', - 'rule_trigger_exists' => 'Alle transaksjoner matcher', + 'rule_trigger_user_action_choice' => 'Brukerhandling er ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Ingen tag er..', + 'rule_trigger_tag_is_not' => 'Ingen tag er ":trigger_value"', + 'rule_trigger_account_is_choice' => 'En av kontoene er nøyaktig..', + 'rule_trigger_account_is' => 'En av kontoene er eksakt ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'En av kontoene inneholder..', + 'rule_trigger_account_contains' => 'En av kontoene inneholder ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'En av kontoene slutter med..', + 'rule_trigger_account_ends' => 'Beskrivelse slutter med ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'En av kontoene starter med..', + 'rule_trigger_account_starts' => 'En av kontoene starter med ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'En av kontoenes nummer / IBAN er..', + 'rule_trigger_account_nr_is' => 'Kontonummer / IBAN er ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Kontonummer / IBAN inneholder..', + 'rule_trigger_account_nr_contains' => 'Alle kontonummer / IBAN inneholder ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Alle kontonummer / IBAN slutter med..', + 'rule_trigger_account_nr_ends' => 'Alle kontonummer / IBAN slutter med ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Alle kontonummer / IBAN starter med..', + 'rule_trigger_account_nr_starts' => 'Alle kontonummer / IBAN starter med ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Kategori inneholder..', + 'rule_trigger_category_contains' => 'Kategorien inneholder ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Kategori slutter med..', + 'rule_trigger_category_ends' => 'Kategorien slutter med ":trigger_value', + 'rule_trigger_category_starts_choice' => 'Kategori starter med..', + 'rule_trigger_category_starts' => 'Kategorien starter med ":trigger_value', + 'rule_trigger_budget_contains_choice' => 'Budsjett inneholder..', + 'rule_trigger_budget_contains' => 'Budsjettet inneholder ":trigger_value', + 'rule_trigger_budget_ends_choice' => 'Budsjettet slutter med..', + 'rule_trigger_budget_ends' => 'Budsjettet slutter med ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budsjettet starter med..', + 'rule_trigger_budget_starts' => 'Budsjettet begynner med ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Regning inneholder..', + 'rule_trigger_bill_contains' => 'Regningen inneholder ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Regningen slutter med..', + 'rule_trigger_bill_ends' => 'Regning slutter med ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Regningen starter med..', + 'rule_trigger_bill_starts' => 'Regning begynner med ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Ekstern ID inneholder..', + 'rule_trigger_external_id_contains' => 'Ekstern ID inneholder ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Ekstern ID slutter med..', + 'rule_trigger_external_id_ends' => 'Ekstern ID slutter med ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Ekstern ID starter med..', + 'rule_trigger_external_id_starts' => 'Ekstern ID starter med ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Intern referanse inneholder..', + 'rule_trigger_internal_reference_contains' => 'Ekstern referanse ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Intern referanse ender med..', + 'rule_trigger_internal_reference_ends' => 'Intern referanse ender med ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Intern referanse begynner med..', + 'rule_trigger_internal_reference_starts' => 'Intern referanse starter med ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Ekstern URL er..', + 'rule_trigger_external_url_is' => 'Ekstern URL er ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Ekstern URL inneholder..', + 'rule_trigger_external_url_contains' => 'Ekstern URL inneholder ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Ekstern URL slutter med..', + 'rule_trigger_external_url_ends' => 'Ekstern URL slutter med ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Ekstern URL starter med..', + 'rule_trigger_external_url_starts' => 'Ekstern URL starter med ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Har ingen vedlegg', + 'rule_trigger_has_no_attachments' => 'Transaksjonen har ingen vedlegg', + 'rule_trigger_recurrence_id_choice' => 'Gjentakende transaksjons ID er..', + 'rule_trigger_recurrence_id' => 'Gjentakende transaksjons ID er ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Rentedato er..', + 'rule_trigger_interest_date_on' => 'Rentedato er ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Rentedato er før..', + 'rule_trigger_interest_date_before' => 'Rentedato er før ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Rentedato er etter..', + 'rule_trigger_interest_date_after' => 'Rentedato er etter ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Bokført dato er..', + 'rule_trigger_book_date_on' => 'Bokført dato er ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Bokført dato er før..', + 'rule_trigger_book_date_before' => 'Bokført dato er før ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Bokført dato er etter..', + 'rule_trigger_book_date_after' => 'Bokført dato er etter ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Prosessdato er..', + 'rule_trigger_process_date_on' => 'Prosessdato er ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Prosessdato er før..', + 'rule_trigger_process_date_before' => 'Prosessdato er før ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Prosessdato er etter..', + 'rule_trigger_process_date_after' => 'Prosessdato er etter ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Forfallsdato er..', + 'rule_trigger_due_date_on' => 'Forfallsdato er den ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Forfallsdato er før..', + 'rule_trigger_due_date_before' => 'Forfallsdato er før ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Forfallsdato er etter..', + 'rule_trigger_due_date_after' => 'Forfallsdato er etter ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Betalingsdato er på..', + 'rule_trigger_payment_date_on' => 'Betalingsdato er på ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Betalingsdato er før..', + 'rule_trigger_payment_date_before' => 'Betalingsdato er før ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Betalingsdato er etter..', + 'rule_trigger_payment_date_after' => 'Betalingsdato er etter ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Fakturadato er på..', + 'rule_trigger_invoice_date_on' => 'Fakturadato er den ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Fakturadato er før..', + 'rule_trigger_invoice_date_before' => 'Fakturadato er før ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Fakturadato er etter..', + 'rule_trigger_invoice_date_after' => 'Fakturadato er etter ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaksjonen ble opprettet før..', + 'rule_trigger_created_at_before' => 'Transaksjonen ble opprettet før ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaksjonen ble opprettet etter..', + 'rule_trigger_created_at_after' => 'Transaksjonen ble opprettet etter ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaksjonen ble sist oppdatert før..', + 'rule_trigger_updated_at_before' => 'Transaksjonen ble sist oppdatert før ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaksjonen ble sist oppdatert etter..', + 'rule_trigger_updated_at_after' => 'Transaksjonen ble sist oppdatert etter ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Det utenlanske beløpet er nøyaktig..', + 'rule_trigger_foreign_amount_is' => 'Utenlanske beløpet er nøyaktig ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Utenlandske beløpet er mindre enn..', + 'rule_trigger_foreign_amount_less' => 'Utenlandske beløpet er mindre enn ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Utenlandske beløpet er mer enn..', + 'rule_trigger_foreign_amount_more' => 'Utenlandske beløpet er mer enn ":trigger_value', + 'rule_trigger_attachment_name_is_choice' => 'Ethvert vedlagte navn er..', + 'rule_trigger_attachment_name_is' => 'Ethvert vedlagte navn er ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Eventuelle vedlagte navn inneholder..', + 'rule_trigger_attachment_name_contains' => 'Eventuelle vedlagte navn inneholder ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Ethvert vedlagte navn starter med..', + 'rule_trigger_attachment_name_starts' => 'Eventuelle vedlagte navn starter med ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Eventuelle vedlegg slutter med..', + 'rule_trigger_attachment_name_ends' => 'Eventuelle vedlagte navn slutter med ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Eventuelle vedlagte notater er..', + 'rule_trigger_attachment_notes_are' => 'Eventuelle vedlagte notater er ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Eventuelle vedlagte notater inneholder..', + 'rule_trigger_attachment_notes_contains' => 'Eventuelle vedlagte notater inneholder ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Eventuelle vedlagte notater starter med..', + 'rule_trigger_attachment_notes_starts' => 'Eventuelle vedlagte notater starter med ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Eventuelle vedlagte notater slutter med..', + 'rule_trigger_attachment_notes_ends' => 'Eventuelle vedlagte notater ferdig med ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaksjonen er avstemt', + 'rule_trigger_reconciled' => 'Transaksjonen er avstemt', + 'rule_trigger_exists_choice' => 'Alle transaksjoner matcher(!)', + 'rule_trigger_exists' => 'Alle transaksjoner matcher', // more values for new types: - 'rule_trigger_not_account_id' => 'Konto ID er ikke ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Kildekonto ID er ikke ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Målkonto ID er ikke ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaksjonstype er ikke ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Taggen er ikke ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Taggen er ":trigger_value"', - 'rule_trigger_not_description_is' => 'Beskrivelsen er ikke ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Beskrivelsen inneholder ikke', - 'rule_trigger_not_description_ends' => 'Beskrivelsen slutter ikke med ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Beskrivelsen starter ikke med ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notatene er ikke ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notatene inneholder ikke ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notatene slutter ikke på ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notatene begynner ikke med ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Kildekonto er ikke ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Kildekonto inneholder ikke ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Kildekontoen inneholder ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Kildekontoen starter ikke med ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Kilde kontonummer / IBAN er ikke ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Kilde kontonummer / IBAN inneholder ikke ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Kilde kontonummer / IBAN slutter ikke på ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Kilde kontoummer / IBAN starter ikke med ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Målkonto er ikke ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Målkonto inneholder ikke ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Målkonto slutter ikke på ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Målkonto starter ikke med ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Målkonto nummer / IBAN er ikke ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Målkonto nummer / IBAN inneholder ikke ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Målkonto nummer / IBAN slutter ikke på ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Målkonto nummer / IBAN begynner ikke med ":trigger_value"', - 'rule_trigger_not_account_is' => 'Ingen konto er ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Ingen konto inneholder ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Ingen konto slutter på ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Ingen konto begynner med ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneholder ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Ingen kontonummer / IBAN slutter på":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Ingen kontonummer / IBAN starter med ":trigger_value"', - 'rule_trigger_not_category_is' => 'Kategori er ikke ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Kategori inneholder ikke ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Kategori slutter ikke på ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Kategori starter ikke med ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budsjett er ikke ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budsjett inneholder ikke ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budsjett slutter ikke på ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budsjettet starter ikke med ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Regningen er ikke ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Regningen inneholder ikke ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Regningen slutter ikke på ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Regningen slutter ikke med ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Ekstern ID er ikke ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Ekstern ID inneholder ikke ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Ekstern ID slutter ikke på ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Ekstern ID starter ikke med ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Intern referanse er ikke ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Intern referanse inneholder ikke ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Intern referanse slutter ikke på ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Intern referanse begynner ikke med ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'Ekstern URL er ikke ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Ekstern URL inneholder ikke ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Ekstern URL slutter ikke på ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Ekstern URL starter ikke med ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Valuta er ikke ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Fremmed valuta er ikke ":trigger_value"', - 'rule_trigger_not_id' => 'Transaksjons ID er ikke ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaksjonens journal ID er ikke ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Gjentakende ID er ikke ":trigger_value"', - 'rule_trigger_not_date_on' => 'Datoen er ikke på ":trigger_value"', - 'rule_trigger_not_date_before' => 'Dato er ikke før ":trigger_value"', - 'rule_trigger_not_date_after' => 'Datoen er ikke etter ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Rentedato er ikke på ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Rentedato er ikke før ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Rentedato er ikke etter ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Bokføringsdato er ikke på ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Bokføringsdato er ikke før ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Bokføringsdato er ikke etter ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Prosessdato er ikke på ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Prosessdato er ikke før ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Prosessdato er ikke etter ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Forfallsdato er ikke den ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Forfallsdato er ikke før ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Forfallsdato er ikke etter ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Betalingsdato er ikke på ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Betalingsdato er ikke før ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Betalingsdato er ikke etter ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Fakturadato er ikke på ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Fakturadato er ikke før ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Fakturadato er ikke etter ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaksjonen er ikke opprettet på ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaksjonen er ikke opprettet før ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaksjonen er ikke opprettet etter ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaksjonen er ikke oppdatert på ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaksjonen er ikke oppdatert før ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaksjonen er ikke oppdatert etter ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaksjonsbeløp er ikke ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaksjonsbeløp er mer enn ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaksjonsbeløp er mindre enn ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Utenlandsk transaksjonsbeløp er ikke ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Utenlandsk transaksjonsbeløp er mer enn ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Utenlandsk transaksjonsbeløp er mindre enn ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Ingen vedlegg heter ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Intet vedleggsnavn inneholder ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Ingen vedleggsnavn starter med ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Ingen vedleggsnavn slutter på ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Ingen vedlagte notater er ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Ingen vedlagte notater inneholder ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Ingen vedlagte notater starter med ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Ingen vedlagte notater slutter på ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaksjonen er ikke avstemt', - 'rule_trigger_not_exists' => 'Transaksjonen eksisterer ikke', - 'rule_trigger_not_has_attachments' => 'Transaksjonen har ingen vedlegg', - 'rule_trigger_not_has_any_category' => 'Transaksjonen har ingen kategori', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaksjonen har ingen regninger', - 'rule_trigger_not_has_any_tag' => 'Transaksjonen har ingen tagger', - 'rule_trigger_not_any_notes' => 'Transaksjonen har ingen notater', - 'rule_trigger_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_not_has_no_attachments' => 'Transaksjonen har et (hvilket som helst) vedlegg', - 'rule_trigger_not_has_no_category' => 'Transaksjonen har en (hvem som helst) kategori', - 'rule_trigger_not_has_no_budget' => 'Transaksjonen har et (hvilket som helst) budsjett', - 'rule_trigger_not_has_no_bill' => 'Transaksjonen har en (hvilen som helst) regning', - 'rule_trigger_not_has_no_tag' => 'Transaksjonen har en (hvilken som helst) tagg', - 'rule_trigger_not_no_notes' => 'Transaksjonen har notater', - 'rule_trigger_not_no_external_url' => 'Transaksjonen har en ekstern URL', - 'rule_trigger_not_source_is_cash' => 'Kildekonto er ikke en kontantkonto', - 'rule_trigger_not_destination_is_cash' => 'Målkonto er ikke en kontantkonto', - 'rule_trigger_not_account_is_cash' => 'Ingen konto er en kontantkonto', + 'rule_trigger_not_account_id' => 'Konto ID er ikke ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Kildekonto ID er ikke ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Målkonto ID er ikke ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaksjonstype er ikke ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Taggen er ikke ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Taggen er ":trigger_value"', + 'rule_trigger_not_description_is' => 'Beskrivelsen er ikke ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Beskrivelsen inneholder ikke', + 'rule_trigger_not_description_ends' => 'Beskrivelsen slutter ikke med ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Beskrivelsen starter ikke med ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notatene er ikke ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notatene inneholder ikke ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notatene slutter ikke på ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notatene begynner ikke med ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Kildekonto er ikke ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Kildekonto inneholder ikke ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Kildekontoen inneholder ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Kildekontoen starter ikke med ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Kilde kontonummer / IBAN er ikke ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Kilde kontonummer / IBAN inneholder ikke ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Kilde kontonummer / IBAN slutter ikke på ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Kilde kontoummer / IBAN starter ikke med ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Målkonto er ikke ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Målkonto inneholder ikke ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Målkonto slutter ikke på ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Målkonto starter ikke med ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Målkonto nummer / IBAN er ikke ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Målkonto nummer / IBAN inneholder ikke ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Målkonto nummer / IBAN slutter ikke på ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Målkonto nummer / IBAN begynner ikke med ":trigger_value"', + 'rule_trigger_not_account_is' => 'Ingen konto er ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Ingen konto inneholder ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Ingen konto slutter på ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Ingen konto begynner med ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneholder ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Ingen kontonummer / IBAN slutter på":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Ingen kontonummer / IBAN starter med ":trigger_value"', + 'rule_trigger_not_category_is' => 'Kategori er ikke ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Kategori inneholder ikke ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Kategori slutter ikke på ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Kategori starter ikke med ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budsjett er ikke ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budsjett inneholder ikke ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budsjett slutter ikke på ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budsjettet starter ikke med ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Regningen er ikke ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Regningen inneholder ikke ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Regningen slutter ikke på ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Regningen slutter ikke med ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Ekstern ID er ikke ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Ekstern ID inneholder ikke ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Ekstern ID slutter ikke på ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Ekstern ID starter ikke med ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Intern referanse er ikke ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Intern referanse inneholder ikke ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Intern referanse slutter ikke på ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Intern referanse begynner ikke med ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'Ekstern URL er ikke ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Ekstern URL inneholder ikke ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Ekstern URL slutter ikke på ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Ekstern URL starter ikke med ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Valuta er ikke ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Fremmed valuta er ikke ":trigger_value"', + 'rule_trigger_not_id' => 'Transaksjons ID er ikke ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaksjonens journal ID er ikke ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Gjentakende ID er ikke ":trigger_value"', + 'rule_trigger_not_date_on' => 'Datoen er ikke på ":trigger_value"', + 'rule_trigger_not_date_before' => 'Dato er ikke før ":trigger_value"', + 'rule_trigger_not_date_after' => 'Datoen er ikke etter ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Rentedato er ikke på ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Rentedato er ikke før ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Rentedato er ikke etter ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Bokføringsdato er ikke på ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Bokføringsdato er ikke før ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Bokføringsdato er ikke etter ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Prosessdato er ikke på ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Prosessdato er ikke før ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Prosessdato er ikke etter ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Forfallsdato er ikke den ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Forfallsdato er ikke før ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Forfallsdato er ikke etter ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Betalingsdato er ikke på ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Betalingsdato er ikke før ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Betalingsdato er ikke etter ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Fakturadato er ikke på ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Fakturadato er ikke før ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Fakturadato er ikke etter ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaksjonen er ikke opprettet på ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaksjonen er ikke opprettet før ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaksjonen er ikke opprettet etter ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaksjonen er ikke oppdatert på ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaksjonen er ikke oppdatert før ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaksjonen er ikke oppdatert etter ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaksjonsbeløp er ikke ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaksjonsbeløp er mer enn ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaksjonsbeløp er mindre enn ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Utenlandsk transaksjonsbeløp er ikke ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Utenlandsk transaksjonsbeløp er mer enn ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Utenlandsk transaksjonsbeløp er mindre enn ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Ingen vedlegg heter ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Intet vedleggsnavn inneholder ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Ingen vedleggsnavn starter med ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Ingen vedleggsnavn slutter på ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Ingen vedlagte notater er ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Ingen vedlagte notater inneholder ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Ingen vedlagte notater starter med ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Ingen vedlagte notater slutter på ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaksjonen er ikke avstemt', + 'rule_trigger_not_exists' => 'Transaksjonen eksisterer ikke', + 'rule_trigger_not_has_attachments' => 'Transaksjonen har ingen vedlegg', + 'rule_trigger_not_has_any_category' => 'Transaksjonen har ingen kategori', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaksjonen har ingen regninger', + 'rule_trigger_not_has_any_tag' => 'Transaksjonen har ingen tagger', + 'rule_trigger_not_any_notes' => 'Transaksjonen har ingen notater', + 'rule_trigger_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_not_has_no_attachments' => 'Transaksjonen har et (hvilket som helst) vedlegg', + 'rule_trigger_not_has_no_category' => 'Transaksjonen har en (hvem som helst) kategori', + 'rule_trigger_not_has_no_budget' => 'Transaksjonen har et (hvilket som helst) budsjett', + 'rule_trigger_not_has_no_bill' => 'Transaksjonen har en (hvilen som helst) regning', + 'rule_trigger_not_has_no_tag' => 'Transaksjonen har en (hvilken som helst) tagg', + 'rule_trigger_not_no_notes' => 'Transaksjonen har notater', + 'rule_trigger_not_no_external_url' => 'Transaksjonen har en ekstern URL', + 'rule_trigger_not_source_is_cash' => 'Kildekonto er ikke en kontantkonto', + 'rule_trigger_not_destination_is_cash' => 'Målkonto er ikke en kontantkonto', + 'rule_trigger_not_account_is_cash' => 'Ingen konto er en kontantkonto', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'SLETT transaksjon(!)', - 'rule_action_delete_transaction' => 'SLETT transaksjon(!)', - 'rule_action_set_category' => 'Sett kategori til ":action_value"', - 'rule_action_clear_category' => 'Tøm kategori', - 'rule_action_set_budget' => 'Sett budsjett til ":action_value"', - 'rule_action_clear_budget' => 'Tøm budsjett', - 'rule_action_add_tag' => 'Legg til tagg ":action_value"', - 'rule_action_remove_tag' => 'Fjern tagg ":action_value"', - 'rule_action_remove_all_tags' => 'Fjern alle tagger', - 'rule_action_set_description' => 'Sett beskrivelse til ":action_value"', - 'rule_action_append_description' => 'Legg til ":action_value" på slutten av beskrivelsen', - 'rule_action_prepend_description' => 'Legg til ":action_value" på begynnelsen av beskrivelsen', - 'rule_action_set_category_choice' => 'Sett kategori til ..', - 'rule_action_clear_category_choice' => 'Tøm alle kategorier', - 'rule_action_set_budget_choice' => 'Sett budsjett til ..', - 'rule_action_clear_budget_choice' => 'Tøm alle budsjetter', - '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' => 'Sett beskrivelse til ..', - 'rule_action_update_piggy_choice' => 'Legg til / fjern transaksjonsbeløp i sparegris ..', - 'rule_action_update_piggy' => 'Legg til / fjern transaksjonsbeløp i sparegrisen ":action_value"', - '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_source_account' => 'Sett kildekonto til :action_value', - 'rule_action_set_destination_account_choice' => 'Sett målkonto til ..', - 'rule_action_set_destination_account' => 'Sett målkonto til :action_value', - 'rule_action_append_notes_choice' => 'Legg til i notater med ..', - 'rule_action_append_notes' => 'Legg til notater med ":action_value"', - 'rule_action_prepend_notes_choice' => 'Legg til foran i notater med ..', - 'rule_action_prepend_notes' => 'Legg til notater med ":action_value"', - 'rule_action_clear_notes_choice' => 'Fjern notater', - 'rule_action_clear_notes' => 'Fjern notater', - 'rule_action_set_notes_choice' => 'Sett notater til ..', - 'rule_action_link_to_bill_choice' => 'Koble til en regning ..', - 'rule_action_link_to_bill' => 'Link til regning ":action_value"', - 'rule_action_switch_accounts_choice' => 'Bytt kilde- og destinasjonskontoer (kun for overføringer)', - 'rule_action_switch_accounts' => 'Bytt kilde og destinasjon', - 'rule_action_set_notes' => 'Sett notater til ":action_value"', - 'rule_action_convert_deposit_choice' => 'Konverter transaksjonen til et innskudd', - 'rule_action_convert_deposit' => 'Konverter transaksjonen til et innskudd fra ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Konverter denne transaksjonen til et uttak', - 'rule_action_convert_withdrawal' => 'Konverter transaksjonen til et uttak til ":action_value"', - 'rule_action_convert_transfer_choice' => 'Konverter transaksjonen til en overføring', - 'rule_action_convert_transfer' => 'Konverter transaksjonen til en overføring med ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Legg til beskrivelsen på transaksjonsnotatene', - 'rule_action_append_notes_to_descr_choice' => 'Legg transaksjonsnotater til beskrivelsen', - 'rule_action_move_descr_to_notes_choice' => 'Erstatt gjeldende transaksjonsnotater med beskrivelsen', - 'rule_action_move_notes_to_descr_choice' => 'Erstatt gjeldende beskrivelse med transaksjonsnotatene', - 'rule_action_append_descr_to_notes' => 'Legg beskrivelsen til notatene', - 'rule_action_append_notes_to_descr' => 'Legg notater til beskrivelsen', - 'rule_action_move_descr_to_notes' => 'Erstatt notater med beskrivelse', - 'rule_action_move_notes_to_descr' => 'Erstatt beskrivelse med notater', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Regelgruppe for regninger', - 'rulegroup_for_bills_description' => 'En spesiell regelgruppe for alle reglene som involverer regninger.', - 'rule_for_bill_title' => 'Automatisk generert regel for regning ":name"', - 'rule_for_bill_description' => 'Denne regelen er automatisk generert for å matche regningen ":name".', - 'create_rule_for_bill' => 'Opprett ny regel for regning ":name"', - 'create_rule_for_bill_txt' => 'Du har nettopp opprettet en ny regning kalt ":name", gratulerer! Firefly III kan automagisk matche nye utbetalinger til denne regningen. Når du betaler husleien, vil for eksempel regningen "husleie" knyttes til utbetalingen. På denne måten kan Firefly III vise nøyaktig hvilke regninger som ligger til forfall. For å gjøre dette, må du opprette en ny regel. Firefly III har fylt ut noen fornuftige standardverdier for deg. Kontroller at disse er riktige. Hvis disse verdiene er riktige, vil Firefly III automatisk koble riktig utbetaling til riktig regning. Sjekk ut triggerne for å se om de er korrekte, og legg til noen hvis de er feil.', - 'new_rule_for_bill_title' => 'Regel for regning ":name"', - 'new_rule_for_bill_description' => 'Denne regelen markerer transaksjoner for regning ":name".', + 'rule_action_delete_transaction_choice' => 'SLETT transaksjon(!)', + 'rule_action_delete_transaction' => 'SLETT transaksjon(!)', + 'rule_action_set_category' => 'Sett kategori til ":action_value"', + 'rule_action_clear_category' => 'Tøm kategori', + 'rule_action_set_budget' => 'Sett budsjett til ":action_value"', + 'rule_action_clear_budget' => 'Tøm budsjett', + 'rule_action_add_tag' => 'Legg til tagg ":action_value"', + 'rule_action_remove_tag' => 'Fjern tagg ":action_value"', + 'rule_action_remove_all_tags' => 'Fjern alle tagger', + 'rule_action_set_description' => 'Sett beskrivelse til ":action_value"', + 'rule_action_append_description' => 'Legg til ":action_value" på slutten av beskrivelsen', + 'rule_action_prepend_description' => 'Legg til ":action_value" på begynnelsen av beskrivelsen', + 'rule_action_set_category_choice' => 'Sett kategori til ..', + 'rule_action_clear_category_choice' => 'Tøm alle kategorier', + 'rule_action_set_budget_choice' => 'Sett budsjett til ..', + 'rule_action_clear_budget_choice' => 'Tøm alle budsjetter', + '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' => 'Sett beskrivelse til ..', + 'rule_action_update_piggy_choice' => 'Legg til / fjern transaksjonsbeløp i sparegris ..', + 'rule_action_update_piggy' => 'Legg til / fjern transaksjonsbeløp i sparegrisen ":action_value"', + '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_source_account' => 'Sett kildekonto til :action_value', + 'rule_action_set_destination_account_choice' => 'Sett målkonto til ..', + 'rule_action_set_destination_account' => 'Sett målkonto til :action_value', + 'rule_action_append_notes_choice' => 'Legg til i notater med ..', + 'rule_action_append_notes' => 'Legg til notater med ":action_value"', + 'rule_action_prepend_notes_choice' => 'Legg til foran i notater med ..', + 'rule_action_prepend_notes' => 'Legg til notater med ":action_value"', + 'rule_action_clear_notes_choice' => 'Fjern notater', + 'rule_action_clear_notes' => 'Fjern notater', + 'rule_action_set_notes_choice' => 'Sett notater til ..', + 'rule_action_link_to_bill_choice' => 'Koble til en regning ..', + 'rule_action_link_to_bill' => 'Link til regning ":action_value"', + 'rule_action_switch_accounts_choice' => 'Bytt kilde- og destinasjonskontoer (kun for overføringer)', + 'rule_action_switch_accounts' => 'Bytt kilde og destinasjon', + 'rule_action_set_notes' => 'Sett notater til ":action_value"', + 'rule_action_convert_deposit_choice' => 'Konverter transaksjonen til et innskudd', + 'rule_action_convert_deposit' => 'Konverter transaksjonen til et innskudd fra ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Konverter denne transaksjonen til et uttak', + 'rule_action_convert_withdrawal' => 'Konverter transaksjonen til et uttak til ":action_value"', + 'rule_action_convert_transfer_choice' => 'Konverter transaksjonen til en overføring', + 'rule_action_convert_transfer' => 'Konverter transaksjonen til en overføring med ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Legg til beskrivelsen på transaksjonsnotatene', + 'rule_action_append_notes_to_descr_choice' => 'Legg transaksjonsnotater til beskrivelsen', + 'rule_action_move_descr_to_notes_choice' => 'Erstatt gjeldende transaksjonsnotater med beskrivelsen', + 'rule_action_move_notes_to_descr_choice' => 'Erstatt gjeldende beskrivelse med transaksjonsnotatene', + 'rule_action_append_descr_to_notes' => 'Legg beskrivelsen til notatene', + 'rule_action_append_notes_to_descr' => 'Legg notater til beskrivelsen', + 'rule_action_move_descr_to_notes' => 'Erstatt notater med beskrivelse', + 'rule_action_move_notes_to_descr' => 'Erstatt beskrivelse med notater', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Regelgruppe for regninger', + 'rulegroup_for_bills_description' => 'En spesiell regelgruppe for alle reglene som involverer regninger.', + 'rule_for_bill_title' => 'Automatisk generert regel for regning ":name"', + 'rule_for_bill_description' => 'Denne regelen er automatisk generert for å matche regningen ":name".', + 'create_rule_for_bill' => 'Opprett ny regel for regning ":name"', + 'create_rule_for_bill_txt' => 'Du har nettopp opprettet en ny regning kalt ":name", gratulerer! Firefly III kan automagisk matche nye utbetalinger til denne regningen. Når du betaler husleien, vil for eksempel regningen "husleie" knyttes til utbetalingen. På denne måten kan Firefly III vise nøyaktig hvilke regninger som ligger til forfall. For å gjøre dette, må du opprette en ny regel. Firefly III har fylt ut noen fornuftige standardverdier for deg. Kontroller at disse er riktige. Hvis disse verdiene er riktige, vil Firefly III automatisk koble riktig utbetaling til riktig regning. Sjekk ut triggerne for å se om de er korrekte, og legg til noen hvis de er feil.', + 'new_rule_for_bill_title' => 'Regel for regning ":name"', + 'new_rule_for_bill_description' => 'Denne regelen markerer transaksjoner for regning ":name".', - 'new_rule_for_journal_title' => 'Regel basert på transaksjon ":description"', - 'new_rule_for_journal_description' => 'Denne regelen er basert på transaksjon ":description. Det vil matche transaksjoner som er nøyaktig de samme.', + 'new_rule_for_journal_title' => 'Regel basert på transaksjon ":description"', + 'new_rule_for_journal_description' => 'Denne regelen er basert på transaksjon ":description. Det vil matche transaksjoner som er nøyaktig de samme.', // tags - 'store_new_tag' => 'Lagre ny tagg', - 'update_tag' => 'Oppdater tagg', - 'no_location_set' => 'Ingen plassering spesifisert.', - 'meta_data' => 'Metadata', - 'location' => 'Sted', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Uten dato', - 'result' => 'Resultat', - 'sums_apply_to_range' => 'Alle beløp gjelder for det valgte området', - 'mapbox_api_key' => 'For å bruke kart, få en API-nøkkel fra Mapbox. Åpne .env filen og angi denne koden etter MAPBOX_API_KEY =.', - 'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Tøm lokasjon', - 'delete_all_selected_tags' => 'Slett alle valgte tagger', - 'select_tags_to_delete' => 'Ikke glem å velge noen tagger.', - 'deleted_x_tags' => 'Slettet :count tagg.|Slettet :count tagger.', - 'create_rule_from_transaction' => 'Opprett regel basert på transaksjon', - 'create_recurring_from_transaction' => 'Opprett gjentakende transaksjon basert på transaksjon', + 'store_new_tag' => 'Lagre ny tagg', + 'update_tag' => 'Oppdater tagg', + 'no_location_set' => 'Ingen plassering spesifisert.', + 'meta_data' => 'Metadata', + 'location' => 'Sted', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Uten dato', + 'result' => 'Resultat', + 'sums_apply_to_range' => 'Alle beløp gjelder for det valgte området', + 'mapbox_api_key' => 'For å bruke kart, få en API-nøkkel fra Mapbox. Åpne .env filen og angi denne koden etter MAPBOX_API_KEY =.', + 'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Tøm lokasjon', + 'delete_all_selected_tags' => 'Slett alle valgte tagger', + 'select_tags_to_delete' => 'Ikke glem å velge noen tagger.', + 'deleted_x_tags' => 'Slettet :count tagg.|Slettet :count tagger.', + 'create_rule_from_transaction' => 'Opprett regel basert på transaksjon', + 'create_recurring_from_transaction' => 'Opprett gjentakende transaksjon basert på transaksjon', // preferences - 'dark_mode_option_browser' => 'La nettleseren din avgjøre', - 'dark_mode_option_light' => 'Alltid lys', - 'dark_mode_option_dark' => 'Alltid mørk', - 'equal_to_language' => '(likt språk)', - 'dark_mode_preference' => 'Mørk modus', - 'dark_mode_preference_help' => 'Fortell Firefly III når den skal bruke mørk modus.', - 'pref_home_screen_accounts' => 'Startskjermkontoer', - 'pref_home_screen_accounts_help' => 'Hvilke kontoer skal vises på startsiden?', - 'pref_view_range' => 'Visningsgrense', - 'pref_view_range_help' => 'Noen diagrammer er automatisk gruppert i perioder. Budsjettene grupperes også i perioder. Hvilken periode foretrekker du?', - 'pref_1D' => 'Én dag', - 'pref_1W' => 'Én uke', - 'pref_1M' => 'En måned', - 'pref_3M' => 'Tre måneder (kvartal)', - 'pref_6M' => 'Seks måneder', - 'pref_1Y' => 'Ett år', - 'pref_last365' => 'I fjor', - 'pref_last90' => 'Siste 90 dager', - 'pref_last30' => 'Siste 30 dagene', - 'pref_last7' => 'Siste 7 dager', - 'pref_YTD' => 'År til dato', - 'pref_QTD' => 'Kvartal til dato', - 'pref_MTD' => 'Måned til dato', - 'pref_languages' => 'Språk', - 'pref_locale' => 'Instillinger for språk', - 'pref_languages_help' => 'Firefly III støtter flere språk. Hvilket foretrekker du?', - 'pref_locale_help' => 'Firefly III lar deg velge andre lokale innstillinger, som hvordan valutaer, tall og datoer er formatert. Oppføringer i denne listen støttes kanskje ikke av systemet ditt. Firefly III har ikke riktig dato innstillinger for alle steder; kontakt meg gjerne for forbedringer.', - 'pref_locale_no_demo' => 'Denne funksjonen vil ikke fungere for demo-bruker.', - 'pref_custom_fiscal_year' => 'Innstillinger for regnskapsår', - 'pref_custom_fiscal_year_label' => 'Aktivert', - 'pref_custom_fiscal_year_help' => 'I land som bruker et annet regnskapsår enn 1. januar til 31. desember, kan du slå på dette og angi start- og sluttdager for regnskapsåret', - 'pref_fiscal_year_start_label' => 'Regnskapsårets startdato', - 'pref_two_factor_auth' => '2-trinnsverifisering', - 'pref_two_factor_auth_help' => 'Når du aktiverer 2-trinnsverifisering (også kjent som tofaktorautentisering), legger du til et ekstra sikkerhetslag på kontoen din. Du logger deg på med noe du vet (ditt passord) og noe du har (en bekreftelseskode). Bekreftelseskoder genereres av et program på telefonen, for eksempel Authy eller Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Skru på 2-trinnsverifisering', - 'pref_two_factor_auth_disabled' => '2-trinnsverifisering er fjernet og deaktivert', - 'pref_two_factor_auth_remove_it' => 'Ikke glem å fjerne kontoen fra godkjenningsappen din!', - 'pref_two_factor_auth_code' => 'Bekreftelseskode', - 'pref_two_factor_auth_code_help' => 'Skann QR-koden med et program på telefonen, for eksempel Authy eller Google Authenticator, og skriv inn den genererte koden.', - 'pref_two_factor_auth_reset_code' => 'Tilbakestill verifiseringskoden', - 'pref_two_factor_auth_disable_2fa' => 'Deaktiver 2FA', - '2fa_use_secret_instead' => 'Hvis du ikke kan skanne QR- koden, bruk gjerne "secret" i stedet: :secret.', - '2fa_backup_codes' => 'Lagre disse sikkerhetskodene for å få tilgang i tilfelle du mister enheten.', - '2fa_already_enabled' => '2-trinns verifisering er allerede aktivert.', - 'wrong_mfa_code' => 'Denne MFA-koden er ikke gyldig.', - 'pref_save_settings' => 'Lagre innstillinger', - 'saved_preferences' => 'Innstillinger lagret!', - 'preferences_general' => 'Generelt', - 'preferences_frontpage' => 'Startskjermen', - 'preferences_security' => 'Sikkerhet', - 'preferences_layout' => 'Oppsett', - 'preferences_notifications' => 'Varsler', - 'pref_home_show_deposits' => 'Vis innskudd på startskjermen', - 'pref_home_show_deposits_info' => 'Startskjermen viser allerede kostnadskontoene dine. Skal den også vise inntektskontoene dine?', - 'pref_home_do_show_deposits' => 'Ja, vis dem', - 'successful_count' => 'hvorav :count var vellykket', - 'list_page_size_title' => 'Sidestørrelse', - 'list_page_size_help' => 'En liste over ting (kontoer, transaksjoner osv.). Viser maksimalt dette antall elementer per side.', - 'list_page_size_label' => 'Sidestørrelse', - 'between_dates' => '(:start og :end)', - 'pref_optional_fields_transaction' => 'Valgfrie felt for transaksjoner', - 'pref_optional_fields_transaction_help' => 'Som standard er ikke alle felt aktivert når du oppretter en ny transaksjon (for å unngå forvirring). Nedenfor kan du aktivere disse feltene hvis du tror de kan være nyttige for deg. Selvfølgelig vil et felt som er deaktivert, men allerede fylt inn, være synlig, uavhengig av innstillingen.', - 'optional_tj_date_fields' => 'Datofelter', - 'optional_tj_other_fields' => 'Andre felt', - 'optional_tj_attachment_fields' => 'Vedleggsfelter', - 'pref_optional_tj_interest_date' => 'Rentedato', - 'pref_optional_tj_book_date' => 'Bokføringsdato', - 'pref_optional_tj_process_date' => 'Prosesseringsdato', - 'pref_optional_tj_due_date' => 'Forfallsdato', - 'pref_optional_tj_payment_date' => 'Betalingsdato', - 'pref_optional_tj_invoice_date' => 'Fakturadato', - 'pref_optional_tj_internal_reference' => 'Intern referanse', - 'pref_optional_tj_notes' => 'Notater', - 'pref_optional_tj_attachments' => 'Vedlegg', - 'pref_optional_tj_external_url' => 'Ekstern URL', - 'pref_optional_tj_location' => 'Sted', - 'pref_optional_tj_links' => 'Transaksjons linker', - 'optional_field_meta_dates' => 'Datoer', - 'optional_field_meta_business' => 'Bedrift', - 'optional_field_attachments' => 'Vedlegg', - 'optional_field_meta_data' => 'Valgfri metadata', - 'external_url' => 'Ekstern URL', - 'pref_notification_bill_reminder' => 'Påminnelse om forfallende regninger', - 'pref_notification_new_access_token' => 'Varsle når et nytt API tilgangstoken er opprettet', - 'pref_notification_transaction_creation' => 'Varsle når en transaksjon opprettes automatisk', - 'pref_notification_user_login' => 'Varsle når du logger inn fra et nytt sted', - 'pref_notification_rule_action_failures' => 'Varsel når regelhandlinger feiler (kun Slack eller Discord)', - 'pref_notifications' => 'Varslinger', - 'pref_notifications_help' => 'Angi om dette er varsler du ønsker å få. Noen meldinger kan inneholde sensitiv økonomisk informasjon.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Hvis du vil at Firefly III skal varsle deg ved hjelp av Slack, skriv inn webhook-URLen her. Ellers la feltet stå tomt. Dersom du er en administrator må du også sette denne URL-adressen i administrasjonen.', - 'slack_url_label' => 'Slack "innkommende webhook" URL', + 'dark_mode_option_browser' => 'La nettleseren din avgjøre', + 'dark_mode_option_light' => 'Alltid lys', + 'dark_mode_option_dark' => 'Alltid mørk', + 'equal_to_language' => '(likt språk)', + 'dark_mode_preference' => 'Mørk modus', + 'dark_mode_preference_help' => 'Fortell Firefly III når den skal bruke mørk modus.', + 'pref_home_screen_accounts' => 'Startskjermkontoer', + 'pref_home_screen_accounts_help' => 'Hvilke kontoer skal vises på startsiden?', + 'pref_view_range' => 'Visningsgrense', + 'pref_view_range_help' => 'Noen diagrammer er automatisk gruppert i perioder. Budsjettene grupperes også i perioder. Hvilken periode foretrekker du?', + 'pref_1D' => 'Én dag', + 'pref_1W' => 'Én uke', + 'pref_1M' => 'En måned', + 'pref_3M' => 'Tre måneder (kvartal)', + 'pref_6M' => 'Seks måneder', + 'pref_1Y' => 'Ett år', + 'pref_last365' => 'I fjor', + 'pref_last90' => 'Siste 90 dager', + 'pref_last30' => 'Siste 30 dagene', + 'pref_last7' => 'Siste 7 dager', + 'pref_YTD' => 'År til dato', + 'pref_QTD' => 'Kvartal til dato', + 'pref_MTD' => 'Måned til dato', + 'pref_languages' => 'Språk', + 'pref_locale' => 'Instillinger for språk', + 'pref_languages_help' => 'Firefly III støtter flere språk. Hvilket foretrekker du?', + 'pref_locale_help' => 'Firefly III lar deg velge andre lokale innstillinger, som hvordan valutaer, tall og datoer er formatert. Oppføringer i denne listen støttes kanskje ikke av systemet ditt. Firefly III har ikke riktig dato innstillinger for alle steder; kontakt meg gjerne for forbedringer.', + 'pref_locale_no_demo' => 'Denne funksjonen vil ikke fungere for demo-bruker.', + 'pref_custom_fiscal_year' => 'Innstillinger for regnskapsår', + 'pref_custom_fiscal_year_label' => 'Aktivert', + 'pref_custom_fiscal_year_help' => 'I land som bruker et annet regnskapsår enn 1. januar til 31. desember, kan du slå på dette og angi start- og sluttdager for regnskapsåret', + 'pref_fiscal_year_start_label' => 'Regnskapsårets startdato', + 'pref_two_factor_auth' => '2-trinnsverifisering', + 'pref_two_factor_auth_help' => 'Når du aktiverer 2-trinnsverifisering (også kjent som tofaktorautentisering), legger du til et ekstra sikkerhetslag på kontoen din. Du logger deg på med noe du vet (ditt passord) og noe du har (en bekreftelseskode). Bekreftelseskoder genereres av et program på telefonen, for eksempel Authy eller Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Skru på 2-trinnsverifisering', + 'pref_two_factor_auth_disabled' => '2-trinnsverifisering er fjernet og deaktivert', + 'pref_two_factor_auth_remove_it' => 'Ikke glem å fjerne kontoen fra godkjenningsappen din!', + 'pref_two_factor_auth_code' => 'Bekreftelseskode', + 'pref_two_factor_auth_code_help' => 'Skann QR-koden med et program på telefonen, for eksempel Authy eller Google Authenticator, og skriv inn den genererte koden.', + 'pref_two_factor_auth_reset_code' => 'Tilbakestill verifiseringskoden', + 'pref_two_factor_auth_disable_2fa' => 'Deaktiver 2FA', + '2fa_use_secret_instead' => 'Hvis du ikke kan skanne QR- koden, bruk gjerne "secret" i stedet: :secret.', + '2fa_backup_codes' => 'Lagre disse sikkerhetskodene for å få tilgang i tilfelle du mister enheten.', + '2fa_already_enabled' => '2-trinns verifisering er allerede aktivert.', + 'wrong_mfa_code' => 'Denne MFA-koden er ikke gyldig.', + 'pref_save_settings' => 'Lagre innstillinger', + 'saved_preferences' => 'Innstillinger lagret!', + 'preferences_general' => 'Generelt', + 'preferences_frontpage' => 'Startskjermen', + 'preferences_security' => 'Sikkerhet', + 'preferences_layout' => 'Oppsett', + 'preferences_notifications' => 'Varsler', + 'pref_home_show_deposits' => 'Vis innskudd på startskjermen', + 'pref_home_show_deposits_info' => 'Startskjermen viser allerede kostnadskontoene dine. Skal den også vise inntektskontoene dine?', + 'pref_home_do_show_deposits' => 'Ja, vis dem', + 'successful_count' => 'hvorav :count var vellykket', + 'list_page_size_title' => 'Sidestørrelse', + 'list_page_size_help' => 'En liste over ting (kontoer, transaksjoner osv.). Viser maksimalt dette antall elementer per side.', + 'list_page_size_label' => 'Sidestørrelse', + 'between_dates' => '(:start og :end)', + 'pref_optional_fields_transaction' => 'Valgfrie felt for transaksjoner', + 'pref_optional_fields_transaction_help' => 'Som standard er ikke alle felt aktivert når du oppretter en ny transaksjon (for å unngå forvirring). Nedenfor kan du aktivere disse feltene hvis du tror de kan være nyttige for deg. Selvfølgelig vil et felt som er deaktivert, men allerede fylt inn, være synlig, uavhengig av innstillingen.', + 'optional_tj_date_fields' => 'Datofelter', + 'optional_tj_other_fields' => 'Andre felt', + 'optional_tj_attachment_fields' => 'Vedleggsfelter', + 'pref_optional_tj_interest_date' => 'Rentedato', + 'pref_optional_tj_book_date' => 'Bokføringsdato', + 'pref_optional_tj_process_date' => 'Prosesseringsdato', + 'pref_optional_tj_due_date' => 'Forfallsdato', + 'pref_optional_tj_payment_date' => 'Betalingsdato', + 'pref_optional_tj_invoice_date' => 'Fakturadato', + 'pref_optional_tj_internal_reference' => 'Intern referanse', + 'pref_optional_tj_notes' => 'Notater', + 'pref_optional_tj_attachments' => 'Vedlegg', + 'pref_optional_tj_external_url' => 'Ekstern URL', + 'pref_optional_tj_location' => 'Sted', + 'pref_optional_tj_links' => 'Transaksjons linker', + 'optional_field_meta_dates' => 'Datoer', + 'optional_field_meta_business' => 'Bedrift', + 'optional_field_attachments' => 'Vedlegg', + 'optional_field_meta_data' => 'Valgfri metadata', + 'external_url' => 'Ekstern URL', + 'pref_notification_bill_reminder' => 'Påminnelse om forfallende regninger', + 'pref_notification_new_access_token' => 'Varsle når et nytt API tilgangstoken er opprettet', + 'pref_notification_transaction_creation' => 'Varsle når en transaksjon opprettes automatisk', + 'pref_notification_user_login' => 'Varsle når du logger inn fra et nytt sted', + 'pref_notification_rule_action_failures' => 'Varsel når regelhandlinger feiler (kun Slack eller Discord)', + 'pref_notifications' => 'Varslinger', + 'pref_notifications_help' => 'Angi om dette er varsler du ønsker å få. Noen meldinger kan inneholde sensitiv økonomisk informasjon.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Hvis du vil at Firefly III skal varsle deg ved hjelp av Slack, skriv inn webhook-URLen her. Ellers la feltet stå tomt. Dersom du er en administrator må du også sette denne URL-adressen i administrasjonen.', + 'slack_url_label' => 'Slack "innkommende webhook" URL', // Financial administrations - 'administration_index' => 'Økonomisk administrasjon', - 'administrations_index_menu' => 'Økonomisk administrasjon', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Økonomisk administrasjon', + 'administrations_index_menu' => 'Økonomisk administrasjon', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Fjern data fra Firefly III', - 'purge_data_expl' => '"Purging / fjerning" betyr "slett det som allerede er slettet". I normale omstendigheter sletter Firefly III ingenting permanent. Det gjemmer det. Knappen under sletter alle disse tidligere "slettet" oppføringene FOR ALLTID.', - 'delete_stuff_header' => 'Slett og fjern data', - 'purge_all_data' => 'Fjern alle slettede poster', - 'purge_data' => 'Fjern data', - 'purged_all_records' => 'Alle slettede poster har blitt fjernet.', - 'delete_data_title' => 'Slett data fra Firefly III', - 'permanent_delete_stuff' => 'Du kan slette ting fra Firefly III. Ved å bruke knappene under betyr at oppføringene dine vil bli fjernet fra visning og skjult. Det er ikke mulig å angre på dette, men elementene kan forbli i databasen hvor du kan hente dem tilbake om nødvendig.', - 'other_sessions_logged_out' => 'Alle dine andre økter har blitt logget ut.', - 'delete_unused_accounts' => 'Sletting av ubrukte kontoer vil tømme auto-fullfør listene dine.', - 'delete_all_unused_accounts' => 'Slette ubrukte kontoer', - 'deleted_all_unused_accounts' => 'Alle ubrukte kontoer er slettet', - 'delete_all_budgets' => 'Slett ALLE budsjetter', - 'delete_all_categories' => 'Slett ALLE kategoriene dine', - 'delete_all_tags' => 'Slett ALLE taggene dine', - 'delete_all_bills' => 'Slett ALLE regningene dine', - 'delete_all_piggy_banks' => 'Slett ALLE sparegriser', - 'delete_all_rules' => 'Slett ALLE reglene dine', - 'delete_all_recurring' => 'Slett ALLE gjentakende transaksjoner', - 'delete_all_object_groups' => 'Slett ALLE objektgrupper', - 'delete_all_accounts' => 'Slett ALLE kontoene dine', - 'delete_all_asset_accounts' => 'Slett ALLE aktivakontoene dine', - 'delete_all_expense_accounts' => 'Slett ALLE utgiftskontoene dine', - 'delete_all_revenue_accounts' => 'Slett ALLE inntektskontoene dine', - 'delete_all_liabilities' => 'Slett ALLE forpliktelser', - 'delete_all_transactions' => 'Slett ALLE transaksjonene dine', - 'delete_all_withdrawals' => 'Slett ALLE uttakene dine', - 'delete_all_deposits' => 'Slett ALLE innskudd', - 'delete_all_transfers' => 'Slett ALLE overføringer', - 'also_delete_transactions' => 'Å slette kontoer vil også slette ALLE assosierte uttak, innskudd og overføringer!', - 'deleted_all_budgets' => 'Alle budsjetter har blitt slettet', - 'deleted_all_categories' => 'Alle kategorier har blitt slettet', - 'deleted_all_tags' => 'Alle tagger har blitt slettet', - 'deleted_all_bills' => 'Alle regninger har blitt slettet', - 'deleted_all_piggy_banks' => 'Alle sparegriser er slettet', - 'deleted_all_rules' => 'Alle regler og regelgrupper er slettet', - 'deleted_all_object_groups' => 'Alle grupper har blitt slettet', - 'deleted_all_accounts' => 'Alle kontoer er slettet', - 'deleted_all_asset_accounts' => 'Alle aktivakontoer har blitt slettet', - 'deleted_all_expense_accounts' => 'Alle utgiftskontoer er slettet', - 'deleted_all_revenue_accounts' => 'Alle inntektskontoer er slettet', - 'deleted_all_liabilities' => 'Alle forpliktelser har blitt slettet', - 'deleted_all_transactions' => 'Alle transaksjoner har blitt slettet', - 'deleted_all_withdrawals' => 'Alle uttak er slettet', - 'deleted_all_deposits' => 'Alle innskudd er slettet', - 'deleted_all_transfers' => 'Alle overføringer er slettet', - 'deleted_all_recurring' => 'Alle gjentakende transaksjoner har blitt slettet', - 'change_your_password' => 'Endre passord', - 'delete_account' => 'Slett konto', - 'current_password' => 'Nåværende passord', - 'new_password' => 'Nytt passord', - 'new_password_again' => 'Nytt passord (gjenta)', - 'delete_your_account' => 'Slett din konto', - 'delete_your_account_help' => 'Hvis du sletter brukerkontoen din, slettes også alle kontoer, transaksjoner, og alt annet du har lagret i Firefly III. Det blir BORTE.', - 'delete_your_account_password' => 'Skriv inn passordet ditt for å fortsette.', - 'password' => 'Passord', - 'are_you_sure' => 'Er du sikker? Du kan ikke angre på dette.', - 'delete_account_button' => 'SLETT din konto', - 'invalid_current_password' => 'Ugyldig nåværende passord!', - 'password_changed' => 'Passord endret!', - 'should_change' => 'Tanken er å endre passordet ditt.', - 'invalid_password' => 'Ugyldig passord!', - 'what_is_pw_security' => 'Hva er "sjekk passordsikkerhet"?', - 'secure_pw_title' => 'Hvordan velge et sikkert passord', - 'forgot_password_response' => 'Takk skal du ha. Hvis det finnes en konto med denne e-postadressen, finner du instruksjoner i innboksen din.', - 'secure_pw_history' => 'Ikke en uke går uten at du leser i nyhetene om et nettsted som har mistet passord for brukerne sine. Hackere og tyver bruker disse passordene for å prøve å stjele din private informasjon. Denne informasjonen er verdifull.', - 'secure_pw_ff' => 'Bruker du det samme passordet over alt på Internett? Hvis bare ett nettsted mister passordet, har hackere tilgang til alle dataene dine. Firefly III er avhengig av at du velger et sterkt og unikt passord for å beskytte dine finansielle data.', - 'secure_pw_check_box' => 'For å hjelpe deg kan Firefly III sjekke om passordet du vil bruke har blitt stjålet tidligere. Hvis dette er tilfelle, råder Firefly III deg til ikke å bruke dette passordet.', - 'secure_pw_working_title' => 'Hvordan virker det?', - 'secure_pw_working' => 'Ved å huke av denne boksen vil Firefly III sende de fem første tegnene til SHA1-hashen av passordet ditt til nettsiden til Troy Hunt for å se om det er på listen hans. Dette vil stoppe deg fra å bruke usikre passord som anbefalt i den siste spesialpublikasjonen fra NIST om dette emnet.', - 'secure_pw_should' => 'Bør jeg huke av boksen?', - 'secure_pw_long_password' => 'Ja. Alltid bekreft at passordet ditt er trygt.', - 'command_line_token' => 'Kommandolinjenøkkel', - 'explain_command_line_token' => 'Du trenger dette "token" for å utføre kommander på kommandolinje som f. eks. importere eller eksportere. Uten dette tegnet fungerer ikke kommandoene. Ikke del din kommandolinje token. Ingen vil spørre deg om dette spesialtegnet, ikke engang meg. Hvis du frykter at du har mistet dette, eller ved paranoia, trykk på knappen for å generere et nytt "token".', - 'regenerate_command_line_token' => 'Regenerer kommandolinjenøkkel', - 'token_regenerated' => 'En ny kommandolinjenøkkel ble generert', - 'change_your_email' => 'Endre din epostadresse', - 'email_verification' => 'En e-postmelding sendes til din gamle og nye e-postadresse. Av sikkerhetsgrunner, vil du ikke kunne logge inn før du bekrefter din nye epostadresse. Hvis du er usikker på om Firefly III installasjonen er i stand til å sende e-post, ikke bruk denne funksjonen. Hvis du er administrator, kan du teste dette i Administrasjon.', - 'email_changed_logout' => 'Inntil du bekrefter e-postadressen din, kan du ikke logge inn.', - 'login_with_new_email' => 'Du kan nå logge inn med din nye e-postadresse.', - 'login_with_old_email' => 'Du kan nå logge inn med din gamle e-postadresse igjen.', - 'login_provider_local_only' => 'Denne handlingen er ikke tilgjengelig ved godkjenning gjennom ":login_provider".', - 'external_user_mgt_disabled' => 'Denne handlingen er ikke tilgjengelig når Firefly III ikke er ansvarlig for brukerstyring eller autentiseringshåndtering.', - 'external_auth_disabled' => 'Denne handlingen er ikke tilgjengelig når Firefly III ikke er ansvarlig for autentiseringshåndtering.', - 'delete_local_info_only' => 'Fordi Firefly III ikke er ansvarlig for brukerstyring eller autentiseringshåndtering, vil denne funksjonen bare slette lokal informasjon om Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth klienter', - 'profile_oauth_no_clients' => 'Du har ikke opprettet noen OAuth klienter.', - 'profile_oauth_clients_external_auth' => 'Hvis du bruker en ekstern autentiseringsleverandør, som Authelia, vil ikke OAuth klienter fungere. Du kan bare bruke personlige tilgangstokener.', - 'profile_oauth_clients_header' => 'Klienter', - 'profile_oauth_client_id' => 'Klient-ID', - 'profile_oauth_client_name' => 'Navn', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Opprett Ny Klient', - 'profile_oauth_create_client' => 'Opprett Klient', - 'profile_oauth_edit_client' => 'Rediger Klient', - 'profile_oauth_name_help' => 'Noe brukerne dine vil gjenkjenne og stole på.', - 'profile_oauth_redirect_url' => 'Videresendings-URL', - 'profile_oauth_redirect_url_help' => 'Programmets tilbakekallingslenke til din adresse.', - 'profile_authorized_apps' => 'Dine autoriserte applikasjoner', - 'profile_authorized_clients' => 'Autoriserte klienter', - 'profile_scopes' => 'Omfang', - 'profile_revoke' => 'Tilbakekall', - 'profile_oauth_client_secret_title' => 'Klient hemmilghet', - 'profile_oauth_client_secret_expl' => 'Her er din nye klient hemmelighet. Dette er den eneste tiden det blir vist så ikke mister den! Du kan nå bruke denne hemmeligheten til å lage API-forespørsler.', - 'profile_personal_access_tokens' => 'Personlig tilgangsnøkkel (Tokens)', - 'profile_personal_access_token' => 'Personlig tilgangsnøkkel (Token)', - 'profile_oauth_confidential' => 'Konfidensiell', - 'profile_oauth_confidential_help' => 'Krev at klienten godkjenner med en "secret". Konfidensielle klienter kan holde legitimasjon på en sikker måte uten å utsette dem for uautoriserte parter. Offentlige programmer, som skrivebord eller JavaScript SPA-programmer, kan ikke holde secret "sikret".', - 'profile_personal_access_token_explanation' => 'Her er din nye klient "secret". Dette er den eneste tiden det blir vist så ikke mister den! Du kan nå bruke denne token til å lage API-forespørsler.', - 'profile_no_personal_access_token' => 'Du har ikke opprettet noen personlig tilgangsnøkkel (tokens).', - 'profile_create_new_token' => 'Opprette nytt token', - 'profile_create_token' => 'Opprett token', - 'profile_create' => 'Opprett', - 'profile_save_changes' => 'Lagre endringer', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Noe gikk galt!', - 'profile_try_again' => 'Noe gikk galt. Prøv på nytt.', - 'amounts' => 'Beløp', - 'multi_account_warning_unknown' => 'Avhengig av hvilken type transaksjon du oppretter, Kilden og/eller destinasjonskonto for etterfølgende delinger kan overstyres av det som er definert i transaksjonens første del.', - 'multi_account_warning_withdrawal' => 'Husk at kildekontoen for etterfølgende oppsplitting skal overlates av hva som defineres i den første delen av uttrekket.', - 'multi_account_warning_deposit' => 'Husk at mottakerkontoen for etterfølgende oppsplitting skal overstyres av det som er definert i den første delen av depositumet.', - 'multi_account_warning_transfer' => 'Husk at kildens pluss destinasjonskonto med etterfølgende oppdeling overstyres av det som er definert i en første del av overføringen.', + 'purge_data_title' => 'Fjern data fra Firefly III', + 'purge_data_expl' => '"Purging / fjerning" betyr "slett det som allerede er slettet". I normale omstendigheter sletter Firefly III ingenting permanent. Det gjemmer det. Knappen under sletter alle disse tidligere "slettet" oppføringene FOR ALLTID.', + 'delete_stuff_header' => 'Slett og fjern data', + 'purge_all_data' => 'Fjern alle slettede poster', + 'purge_data' => 'Fjern data', + 'purged_all_records' => 'Alle slettede poster har blitt fjernet.', + 'delete_data_title' => 'Slett data fra Firefly III', + 'permanent_delete_stuff' => 'Du kan slette ting fra Firefly III. Ved å bruke knappene under betyr at oppføringene dine vil bli fjernet fra visning og skjult. Det er ikke mulig å angre på dette, men elementene kan forbli i databasen hvor du kan hente dem tilbake om nødvendig.', + 'other_sessions_logged_out' => 'Alle dine andre økter har blitt logget ut.', + 'delete_unused_accounts' => 'Sletting av ubrukte kontoer vil tømme auto-fullfør listene dine.', + 'delete_all_unused_accounts' => 'Slette ubrukte kontoer', + 'deleted_all_unused_accounts' => 'Alle ubrukte kontoer er slettet', + 'delete_all_budgets' => 'Slett ALLE budsjetter', + 'delete_all_categories' => 'Slett ALLE kategoriene dine', + 'delete_all_tags' => 'Slett ALLE taggene dine', + 'delete_all_bills' => 'Slett ALLE regningene dine', + 'delete_all_piggy_banks' => 'Slett ALLE sparegriser', + 'delete_all_rules' => 'Slett ALLE reglene dine', + 'delete_all_recurring' => 'Slett ALLE gjentakende transaksjoner', + 'delete_all_object_groups' => 'Slett ALLE objektgrupper', + 'delete_all_accounts' => 'Slett ALLE kontoene dine', + 'delete_all_asset_accounts' => 'Slett ALLE aktivakontoene dine', + 'delete_all_expense_accounts' => 'Slett ALLE utgiftskontoene dine', + 'delete_all_revenue_accounts' => 'Slett ALLE inntektskontoene dine', + 'delete_all_liabilities' => 'Slett ALLE forpliktelser', + 'delete_all_transactions' => 'Slett ALLE transaksjonene dine', + 'delete_all_withdrawals' => 'Slett ALLE uttakene dine', + 'delete_all_deposits' => 'Slett ALLE innskudd', + 'delete_all_transfers' => 'Slett ALLE overføringer', + 'also_delete_transactions' => 'Å slette kontoer vil også slette ALLE assosierte uttak, innskudd og overføringer!', + 'deleted_all_budgets' => 'Alle budsjetter har blitt slettet', + 'deleted_all_categories' => 'Alle kategorier har blitt slettet', + 'deleted_all_tags' => 'Alle tagger har blitt slettet', + 'deleted_all_bills' => 'Alle regninger har blitt slettet', + 'deleted_all_piggy_banks' => 'Alle sparegriser er slettet', + 'deleted_all_rules' => 'Alle regler og regelgrupper er slettet', + 'deleted_all_object_groups' => 'Alle grupper har blitt slettet', + 'deleted_all_accounts' => 'Alle kontoer er slettet', + 'deleted_all_asset_accounts' => 'Alle aktivakontoer har blitt slettet', + 'deleted_all_expense_accounts' => 'Alle utgiftskontoer er slettet', + 'deleted_all_revenue_accounts' => 'Alle inntektskontoer er slettet', + 'deleted_all_liabilities' => 'Alle forpliktelser har blitt slettet', + 'deleted_all_transactions' => 'Alle transaksjoner har blitt slettet', + 'deleted_all_withdrawals' => 'Alle uttak er slettet', + 'deleted_all_deposits' => 'Alle innskudd er slettet', + 'deleted_all_transfers' => 'Alle overføringer er slettet', + 'deleted_all_recurring' => 'Alle gjentakende transaksjoner har blitt slettet', + 'change_your_password' => 'Endre passord', + 'delete_account' => 'Slett konto', + 'current_password' => 'Nåværende passord', + 'new_password' => 'Nytt passord', + 'new_password_again' => 'Nytt passord (gjenta)', + 'delete_your_account' => 'Slett din konto', + 'delete_your_account_help' => 'Hvis du sletter brukerkontoen din, slettes også alle kontoer, transaksjoner, og alt annet du har lagret i Firefly III. Det blir BORTE.', + 'delete_your_account_password' => 'Skriv inn passordet ditt for å fortsette.', + 'password' => 'Passord', + 'are_you_sure' => 'Er du sikker? Du kan ikke angre på dette.', + 'delete_account_button' => 'SLETT din konto', + 'invalid_current_password' => 'Ugyldig nåværende passord!', + 'password_changed' => 'Passord endret!', + 'should_change' => 'Tanken er å endre passordet ditt.', + 'invalid_password' => 'Ugyldig passord!', + 'what_is_pw_security' => 'Hva er "sjekk passordsikkerhet"?', + 'secure_pw_title' => 'Hvordan velge et sikkert passord', + 'forgot_password_response' => 'Takk skal du ha. Hvis det finnes en konto med denne e-postadressen, finner du instruksjoner i innboksen din.', + 'secure_pw_history' => 'Ikke en uke går uten at du leser i nyhetene om et nettsted som har mistet passord for brukerne sine. Hackere og tyver bruker disse passordene for å prøve å stjele din private informasjon. Denne informasjonen er verdifull.', + 'secure_pw_ff' => 'Bruker du det samme passordet over alt på Internett? Hvis bare ett nettsted mister passordet, har hackere tilgang til alle dataene dine. Firefly III er avhengig av at du velger et sterkt og unikt passord for å beskytte dine finansielle data.', + 'secure_pw_check_box' => 'For å hjelpe deg kan Firefly III sjekke om passordet du vil bruke har blitt stjålet tidligere. Hvis dette er tilfelle, råder Firefly III deg til ikke å bruke dette passordet.', + 'secure_pw_working_title' => 'Hvordan virker det?', + 'secure_pw_working' => 'Ved å huke av denne boksen vil Firefly III sende de fem første tegnene til SHA1-hashen av passordet ditt til nettsiden til Troy Hunt for å se om det er på listen hans. Dette vil stoppe deg fra å bruke usikre passord som anbefalt i den siste spesialpublikasjonen fra NIST om dette emnet.', + 'secure_pw_should' => 'Bør jeg huke av boksen?', + 'secure_pw_long_password' => 'Ja. Alltid bekreft at passordet ditt er trygt.', + 'command_line_token' => 'Kommandolinjenøkkel', + 'explain_command_line_token' => 'Du trenger dette "token" for å utføre kommander på kommandolinje som f. eks. importere eller eksportere. Uten dette tegnet fungerer ikke kommandoene. Ikke del din kommandolinje token. Ingen vil spørre deg om dette spesialtegnet, ikke engang meg. Hvis du frykter at du har mistet dette, eller ved paranoia, trykk på knappen for å generere et nytt "token".', + 'regenerate_command_line_token' => 'Regenerer kommandolinjenøkkel', + 'token_regenerated' => 'En ny kommandolinjenøkkel ble generert', + 'change_your_email' => 'Endre din epostadresse', + 'email_verification' => 'En e-postmelding sendes til din gamle og nye e-postadresse. Av sikkerhetsgrunner, vil du ikke kunne logge inn før du bekrefter din nye epostadresse. Hvis du er usikker på om Firefly III installasjonen er i stand til å sende e-post, ikke bruk denne funksjonen. Hvis du er administrator, kan du teste dette i Administrasjon.', + 'email_changed_logout' => 'Inntil du bekrefter e-postadressen din, kan du ikke logge inn.', + 'login_with_new_email' => 'Du kan nå logge inn med din nye e-postadresse.', + 'login_with_old_email' => 'Du kan nå logge inn med din gamle e-postadresse igjen.', + 'login_provider_local_only' => 'Denne handlingen er ikke tilgjengelig ved godkjenning gjennom ":login_provider".', + 'external_user_mgt_disabled' => 'Denne handlingen er ikke tilgjengelig når Firefly III ikke er ansvarlig for brukerstyring eller autentiseringshåndtering.', + 'external_auth_disabled' => 'Denne handlingen er ikke tilgjengelig når Firefly III ikke er ansvarlig for autentiseringshåndtering.', + 'delete_local_info_only' => 'Fordi Firefly III ikke er ansvarlig for brukerstyring eller autentiseringshåndtering, vil denne funksjonen bare slette lokal informasjon om Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth klienter', + 'profile_oauth_no_clients' => 'Du har ikke opprettet noen OAuth klienter.', + 'profile_oauth_clients_external_auth' => 'Hvis du bruker en ekstern autentiseringsleverandør, som Authelia, vil ikke OAuth klienter fungere. Du kan bare bruke personlige tilgangstokener.', + 'profile_oauth_clients_header' => 'Klienter', + 'profile_oauth_client_id' => 'Klient-ID', + 'profile_oauth_client_name' => 'Navn', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Opprett Ny Klient', + 'profile_oauth_create_client' => 'Opprett Klient', + 'profile_oauth_edit_client' => 'Rediger Klient', + 'profile_oauth_name_help' => 'Noe brukerne dine vil gjenkjenne og stole på.', + 'profile_oauth_redirect_url' => 'Videresendings-URL', + 'profile_oauth_redirect_url_help' => 'Programmets tilbakekallingslenke til din adresse.', + 'profile_authorized_apps' => 'Dine autoriserte applikasjoner', + 'profile_authorized_clients' => 'Autoriserte klienter', + 'profile_scopes' => 'Omfang', + 'profile_revoke' => 'Tilbakekall', + 'profile_oauth_client_secret_title' => 'Klient hemmilghet', + 'profile_oauth_client_secret_expl' => 'Her er din nye klient hemmelighet. Dette er den eneste tiden det blir vist så ikke mister den! Du kan nå bruke denne hemmeligheten til å lage API-forespørsler.', + 'profile_personal_access_tokens' => 'Personlig tilgangsnøkkel (Tokens)', + 'profile_personal_access_token' => 'Personlig tilgangsnøkkel (Token)', + 'profile_oauth_confidential' => 'Konfidensiell', + 'profile_oauth_confidential_help' => 'Krev at klienten godkjenner med en "secret". Konfidensielle klienter kan holde legitimasjon på en sikker måte uten å utsette dem for uautoriserte parter. Offentlige programmer, som skrivebord eller JavaScript SPA-programmer, kan ikke holde secret "sikret".', + 'profile_personal_access_token_explanation' => 'Her er din nye klient "secret". Dette er den eneste tiden det blir vist så ikke mister den! Du kan nå bruke denne token til å lage API-forespørsler.', + 'profile_no_personal_access_token' => 'Du har ikke opprettet noen personlig tilgangsnøkkel (tokens).', + 'profile_create_new_token' => 'Opprette nytt token', + 'profile_create_token' => 'Opprett token', + 'profile_create' => 'Opprett', + 'profile_save_changes' => 'Lagre endringer', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Noe gikk galt!', + 'profile_try_again' => 'Noe gikk galt. Prøv på nytt.', + 'amounts' => 'Beløp', + 'multi_account_warning_unknown' => 'Avhengig av hvilken type transaksjon du oppretter, Kilden og/eller destinasjonskonto for etterfølgende delinger kan overstyres av det som er definert i transaksjonens første del.', + 'multi_account_warning_withdrawal' => 'Husk at kildekontoen for etterfølgende oppsplitting skal overlates av hva som defineres i den første delen av uttrekket.', + 'multi_account_warning_deposit' => 'Husk at mottakerkontoen for etterfølgende oppsplitting skal overstyres av det som er definert i den første delen av depositumet.', + 'multi_account_warning_transfer' => 'Husk at kildens pluss destinasjonskonto med etterfølgende oppdeling overstyres av det som er definert i en første del av overføringen.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Eksportere data fra Firefly III', - 'export_data_menu' => 'Eksporter data', - 'export_data_bc' => 'Eksportere data fra Firefly III', - 'export_data_main_title' => 'Importer data til Firefly III', - 'export_data_expl' => 'Denne lenken lar deg eksportere alle transaksjoner + metadata fra Firefly III. Referer til hjelp (øverst til høyre (?)-ikon) for mer informasjon om prosessen.', - 'export_data_all_transactions' => 'Eksportere alle transaksjoner', - 'export_data_advanced_expl' => 'Dersom du trenger en mer avansert eller spesifikk type eksport, les "hjelpen" om hvordan man bruker konsollkommandoen php artisan help firefly-ii:export-data.', + 'export_data_title' => 'Eksportere data fra Firefly III', + 'export_data_menu' => 'Eksporter data', + 'export_data_bc' => 'Eksportere data fra Firefly III', + 'export_data_main_title' => 'Importer data til Firefly III', + 'export_data_expl' => 'Denne lenken lar deg eksportere alle transaksjoner + metadata fra Firefly III. Referer til hjelp (øverst til høyre (?)-ikon) for mer informasjon om prosessen.', + 'export_data_all_transactions' => 'Eksportere alle transaksjoner', + 'export_data_advanced_expl' => 'Dersom du trenger en mer avansert eller spesifikk type eksport, les "hjelpen" om hvordan man bruker konsollkommandoen php artisan help firefly-ii:export-data.', // attachments - 'nr_of_attachments' => 'Ett vedlegg|:count vedlegg', - 'attachments' => 'Vedlegg', - 'edit_attachment' => 'Rediger vedlegg ":name"', - 'update_attachment' => 'Oppdater vedlegget', - 'delete_attachment' => 'Slett vedlegg ":name"', - 'attachment_deleted' => 'Slettet vedlegg ":name"', - 'liabilities_deleted' => 'Slettet gjeld ":name"', - 'attachment_updated' => 'Oppdatert vedlegg ":name"', - 'upload_max_file_size' => 'Maks filstørrelse: :size', - 'list_all_attachments' => 'Liste over alle vedlegg', + 'nr_of_attachments' => 'Ett vedlegg|:count vedlegg', + 'attachments' => 'Vedlegg', + 'edit_attachment' => 'Rediger vedlegg ":name"', + 'update_attachment' => 'Oppdater vedlegget', + 'delete_attachment' => 'Slett vedlegg ":name"', + 'attachment_deleted' => 'Slettet vedlegg ":name"', + 'liabilities_deleted' => 'Slettet gjeld ":name"', + 'attachment_updated' => 'Oppdatert vedlegg ":name"', + 'upload_max_file_size' => 'Maks filstørrelse: :size', + 'list_all_attachments' => 'Liste over alle vedlegg', // transaction index - 'is_reconciled_fields_dropped' => 'Fordi denne transaksjonen er avstemt, vil du ikke kunne oppdatere kontoene eller beløpene.', - 'title_expenses' => 'Utgifter', - 'title_withdrawal' => 'Utgifter', - 'title_revenue' => 'Inntekt', - 'title_deposit' => 'Inntekt', - 'title_transfer' => 'Overføringer', - 'title_transfers' => 'Overføringer', - 'submission_options' => 'Alternativer for innsending', - 'apply_rules_checkbox' => 'Bruk regler', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Fordi denne transaksjonen er avstemt, vil du ikke kunne oppdatere kontoene eller beløpene.', + 'title_expenses' => 'Utgifter', + 'title_withdrawal' => 'Utgifter', + 'title_revenue' => 'Inntekt', + 'title_deposit' => 'Inntekt', + 'title_transfer' => 'Overføringer', + 'title_transfers' => 'Overføringer', + 'submission_options' => 'Alternativer for innsending', + 'apply_rules_checkbox' => 'Bruk regler', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allerede et uttak', - 'convert_is_already_type_Deposit' => 'Denne transaksjonen er allerede et innskudd', - 'convert_is_already_type_Transfer' => 'Denne transaksjonen er allerede en overføring', - 'convert_to_Withdrawal' => 'Konverter ":description" til et uttak', - 'convert_to_Deposit' => 'Konverter ":description" til et innskudd', - 'convert_to_Transfer' => 'Konverter ":description" til en overføring', - 'convert_options_WithdrawalDeposit' => 'Konverter et uttak til et innskudd', - 'convert_options_WithdrawalTransfer' => 'Konverter et uttak til en overføring', - 'convert_options_DepositTransfer' => 'Konverter et innskudd til en overføring', - 'convert_options_DepositWithdrawal' => 'Konverter et innskudd til et uttak', - 'convert_options_TransferWithdrawal' => 'Konverter en overføring til et uttak', - 'convert_options_TransferDeposit' => 'Konverter en overføring til et innskudd', - 'convert_Withdrawal_to_deposit' => 'Konverter dette uttaket til et innskudd', - 'convert_Withdrawal_to_transfer' => 'Konverter dette uttaket til en overføring', - 'convert_Deposit_to_withdrawal' => 'Konverter dette innskuddet til et uttak', - 'convert_Deposit_to_transfer' => 'Konverter dette innskuddet til en overføring', - 'convert_Transfer_to_deposit' => 'Konverter denne overføringen til et innskudd', - 'convert_Transfer_to_withdrawal' => 'Konverter denne overføringen til et uttak', - 'convert_please_set_revenue_source' => 'Vennligst velg inntektskontoen pengene vil komme fra.', - 'convert_please_set_asset_destination' => 'Vennligst velg aktivakontoen pengene skal gå til.', - 'convert_please_set_expense_destination' => 'Vennligst velg utgiftsskontoen pengene skal gå til.', - 'convert_please_set_asset_source' => 'Vennligst velg aktivakontoen pengene kommer fra.', - 'convert_expl_w_d' => 'Når du konverterer fra et uttak til et innskudd, blir pengene deponert på den angitte målkontoen, i stedet for å bli trukket ut av den. |Når du går over fra et uttak til et innskudd, vil pengene bli deponert til målkontoene som er vist, i stedet for å bli trukket fra dem.', - 'convert_expl_w_t' => 'Ved konvertering fra uttak til overføring, vil pengene overføres fra kildekontoen til andre aktiva eller gjeld i stedet for å bli brukt på den opprinnelige utgiftskontoen.|Ved konvertering fra uttak til overføring, vil pengene overføres fra kildekontoene til andre aktiva eller gjeldskontoer i stedet for å bli brukt på den opprinnelige utgiftskontoen.', - 'convert_expl_d_w' => 'Når et innskudd blir konvertert til et uttak, vil pengene tas ut fra den viste kildekontoen i stedet for å bli satt inn på den.|Når et innskudd blir konvertert til et uttak, vil pengene tas ut fra de viste kildekontoene i stedet for å bli satt inn på dem.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'For å fullføre konverteringen, vennligst angi den nye kildekontoen under. For å fullføre konverteringen, må du angi de nye kildekontoene nedenfor.', - 'convert_select_destinations' => 'For å fullføre konverteringen må du velge den nye destinasjonskontoen under. For å fullføre konverteringen, velg de nye destinasjonskontoene nedenfor.', - 'converted_to_Withdrawal' => 'Transaksjonen er konvertert til et uttak', - 'converted_to_Deposit' => 'Transaksjonen er konvertert til et innskudd', - 'converted_to_Transfer' => 'Transaksjonen er konvertert til en overføring', - 'invalid_convert_selection' => 'Kontoen du har valgt er allerede brukt i denne transaksjonen eller finnes ikke.', - 'source_or_dest_invalid' => 'Finner ikke riktig transaksjonsdetaljer. Konvertering er ikke mulig.', - 'convert_to_withdrawal' => 'Konverter til et uttak', - 'convert_to_deposit' => 'Konverter til et innskudd', - 'convert_to_transfer' => 'Konverter til en overføring', + 'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allerede et uttak', + 'convert_is_already_type_Deposit' => 'Denne transaksjonen er allerede et innskudd', + 'convert_is_already_type_Transfer' => 'Denne transaksjonen er allerede en overføring', + 'convert_to_Withdrawal' => 'Konverter ":description" til et uttak', + 'convert_to_Deposit' => 'Konverter ":description" til et innskudd', + 'convert_to_Transfer' => 'Konverter ":description" til en overføring', + 'convert_options_WithdrawalDeposit' => 'Konverter et uttak til et innskudd', + 'convert_options_WithdrawalTransfer' => 'Konverter et uttak til en overføring', + 'convert_options_DepositTransfer' => 'Konverter et innskudd til en overføring', + 'convert_options_DepositWithdrawal' => 'Konverter et innskudd til et uttak', + 'convert_options_TransferWithdrawal' => 'Konverter en overføring til et uttak', + 'convert_options_TransferDeposit' => 'Konverter en overføring til et innskudd', + 'convert_Withdrawal_to_deposit' => 'Konverter dette uttaket til et innskudd', + 'convert_Withdrawal_to_transfer' => 'Konverter dette uttaket til en overføring', + 'convert_Deposit_to_withdrawal' => 'Konverter dette innskuddet til et uttak', + 'convert_Deposit_to_transfer' => 'Konverter dette innskuddet til en overføring', + 'convert_Transfer_to_deposit' => 'Konverter denne overføringen til et innskudd', + 'convert_Transfer_to_withdrawal' => 'Konverter denne overføringen til et uttak', + 'convert_please_set_revenue_source' => 'Vennligst velg inntektskontoen pengene vil komme fra.', + 'convert_please_set_asset_destination' => 'Vennligst velg aktivakontoen pengene skal gå til.', + 'convert_please_set_expense_destination' => 'Vennligst velg utgiftsskontoen pengene skal gå til.', + 'convert_please_set_asset_source' => 'Vennligst velg aktivakontoen pengene kommer fra.', + 'convert_expl_w_d' => 'Når du konverterer fra et uttak til et innskudd, blir pengene deponert på den angitte målkontoen, i stedet for å bli trukket ut av den. |Når du går over fra et uttak til et innskudd, vil pengene bli deponert til målkontoene som er vist, i stedet for å bli trukket fra dem.', + 'convert_expl_w_t' => 'Ved konvertering fra uttak til overføring, vil pengene overføres fra kildekontoen til andre aktiva eller gjeld i stedet for å bli brukt på den opprinnelige utgiftskontoen.|Ved konvertering fra uttak til overføring, vil pengene overføres fra kildekontoene til andre aktiva eller gjeldskontoer i stedet for å bli brukt på den opprinnelige utgiftskontoen.', + 'convert_expl_d_w' => 'Når et innskudd blir konvertert til et uttak, vil pengene tas ut fra den viste kildekontoen i stedet for å bli satt inn på den.|Når et innskudd blir konvertert til et uttak, vil pengene tas ut fra de viste kildekontoene i stedet for å bli satt inn på dem.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'For å fullføre konverteringen, vennligst angi den nye kildekontoen under. For å fullføre konverteringen, må du angi de nye kildekontoene nedenfor.', + 'convert_select_destinations' => 'For å fullføre konverteringen må du velge den nye destinasjonskontoen under. For å fullføre konverteringen, velg de nye destinasjonskontoene nedenfor.', + 'converted_to_Withdrawal' => 'Transaksjonen er konvertert til et uttak', + 'converted_to_Deposit' => 'Transaksjonen er konvertert til et innskudd', + 'converted_to_Transfer' => 'Transaksjonen er konvertert til en overføring', + 'invalid_convert_selection' => 'Kontoen du har valgt er allerede brukt i denne transaksjonen eller finnes ikke.', + 'source_or_dest_invalid' => 'Finner ikke riktig transaksjonsdetaljer. Konvertering er ikke mulig.', + 'convert_to_withdrawal' => 'Konverter til et uttak', + 'convert_to_deposit' => 'Konverter til et innskudd', + 'convert_to_transfer' => 'Konverter til en overføring', // create new stuff: - 'create_new_withdrawal' => 'Opprett nytt uttak', - 'create_new_deposit' => 'Opprett nytt innskudd', - 'create_new_transfer' => 'Opprett ny overføring', - 'create_new_asset' => 'Opprett ny aktivakonto', - 'create_new_liabilities' => 'Opprett ny gjeld', - 'create_new_expense' => 'Opprett ny utgiftskonto', - 'create_new_revenue' => 'Opprett ny inntektskonto', - 'create_new_piggy_bank' => 'Opprett ny sparegris', - 'create_new_bill' => 'Opprett ny regning', - 'create_new_subscription' => 'Opprett nytt abonnement', - 'create_new_rule' => 'Opprett ny regel', + 'create_new_withdrawal' => 'Opprett nytt uttak', + 'create_new_deposit' => 'Opprett nytt innskudd', + 'create_new_transfer' => 'Opprett ny overføring', + 'create_new_asset' => 'Opprett ny aktivakonto', + 'create_new_liabilities' => 'Opprett ny gjeld', + 'create_new_expense' => 'Opprett ny utgiftskonto', + 'create_new_revenue' => 'Opprett ny inntektskonto', + 'create_new_piggy_bank' => 'Opprett ny sparegris', + 'create_new_bill' => 'Opprett ny regning', + 'create_new_subscription' => 'Opprett nytt abonnement', + 'create_new_rule' => 'Opprett ny regel', // currencies: - 'create_currency' => 'Opprett en ny valuta', - 'store_currency' => 'Lagre ny valuta', - 'update_currency' => 'Oppdater valuta', - 'new_default_currency' => '":name" er nå standardvaluta.', - 'default_currency_failed' => 'Kunne ikke sette ":name" til standard valuta. Vennligst sjekk loggene.', - 'cannot_delete_currency' => 'Kan ikke slette :name fordi det er fortsatt i bruk.', - 'cannot_delete_fallback_currency' => ':name er systemet standardvaluta og kan ikke slettes.', - 'cannot_disable_currency_journals' => 'Kan ikke deaktivere :name fordi det er transaksjoner som fortsatt bruker den.', - 'cannot_disable_currency_last_left' => 'Kan ikke deaktivere :name fordi det er ingen andre aktiverte valutaer.', - 'cannot_disable_currency_account_meta' => 'Kan ikke deaktivere :name fordi den brukes i aktivakontoer.', - 'cannot_disable_currency_bills' => 'Kan ikke deaktivere :name fordi den brukes i regninger.', - 'cannot_disable_currency_recurring' => 'Kan ikke deaktivere :name fordi den brukes i gjentakende transaksjoner.', - 'cannot_disable_currency_available_budgets' => 'Kan ikke deaktivere :name fordi det brukes i tilgjengelige budsjetter.', - 'cannot_disable_currency_budget_limits' => 'Kan ikke deaktivere :name fordi det brukes i budsjettgrensene.', - 'cannot_disable_currency_current_default' => 'Kan ikke deaktivere :name fordi den er den gjeldende standardvalutaen.', - 'cannot_disable_currency_system_fallback' => 'Kan ikke deaktivere :name fordi den er systemets standardvaluta.', - 'disable_EUR_side_effects' => 'Euro er systemets nødvaluta. Å deaktivere den kan føre til utilsiktede bivirkninger og kan gjøre garantien ugyldig.', - 'deleted_currency' => 'Valuta :name slettet', - 'created_currency' => 'Valuta :name opprettet', - 'could_not_store_currency' => 'Kan ikke lagre den nye valutaen.', - 'updated_currency' => 'Valuta :name oppdatert', - 'ask_site_owner' => 'Spør :owner om å legge til, fjerne eller redigere valutaer.', - 'currencies_intro' => 'Firefly III støtter ulike valutaer som du kan definere og aktivere her.', - 'make_default_currency' => 'Sett som standard', - 'default_currency' => 'standard', - 'currency_is_disabled' => 'Deaktivert', - 'enable_currency' => 'Aktiver', - 'disable_currency' => 'Deaktiver', - 'currencies_default_disabled' => 'De fleste valutaene er deaktivert som standard. For å bruke dem, må du aktivere dem først.', - 'currency_is_now_enabled' => 'Valuta ":name" er aktivert', - 'could_not_enable_currency' => 'Kunne ikke aktivere valuta ":name". Vennligst se gjennom loggene.', - 'currency_is_now_disabled' => 'Valuta ":name" er deaktivert', - 'could_not_disable_currency' => 'Kan ikke deaktivere valuta ":name". Kanskje den fortsatt er i bruk?', + 'create_currency' => 'Opprett en ny valuta', + 'store_currency' => 'Lagre ny valuta', + 'update_currency' => 'Oppdater valuta', + 'new_default_currency' => '":name" er nå standardvaluta.', + 'default_currency_failed' => 'Kunne ikke sette ":name" til standard valuta. Vennligst sjekk loggene.', + 'cannot_delete_currency' => 'Kan ikke slette :name fordi det er fortsatt i bruk.', + 'cannot_delete_fallback_currency' => ':name er systemet standardvaluta og kan ikke slettes.', + 'cannot_disable_currency_journals' => 'Kan ikke deaktivere :name fordi det er transaksjoner som fortsatt bruker den.', + 'cannot_disable_currency_last_left' => 'Kan ikke deaktivere :name fordi det er ingen andre aktiverte valutaer.', + 'cannot_disable_currency_account_meta' => 'Kan ikke deaktivere :name fordi den brukes i aktivakontoer.', + 'cannot_disable_currency_bills' => 'Kan ikke deaktivere :name fordi den brukes i regninger.', + 'cannot_disable_currency_recurring' => 'Kan ikke deaktivere :name fordi den brukes i gjentakende transaksjoner.', + 'cannot_disable_currency_available_budgets' => 'Kan ikke deaktivere :name fordi det brukes i tilgjengelige budsjetter.', + 'cannot_disable_currency_budget_limits' => 'Kan ikke deaktivere :name fordi det brukes i budsjettgrensene.', + 'cannot_disable_currency_current_default' => 'Kan ikke deaktivere :name fordi den er den gjeldende standardvalutaen.', + 'cannot_disable_currency_system_fallback' => 'Kan ikke deaktivere :name fordi den er systemets standardvaluta.', + 'disable_EUR_side_effects' => 'Euro er systemets nødvaluta. Å deaktivere den kan føre til utilsiktede bivirkninger og kan gjøre garantien ugyldig.', + 'deleted_currency' => 'Valuta :name slettet', + 'created_currency' => 'Valuta :name opprettet', + 'could_not_store_currency' => 'Kan ikke lagre den nye valutaen.', + 'updated_currency' => 'Valuta :name oppdatert', + 'ask_site_owner' => 'Spør :owner om å legge til, fjerne eller redigere valutaer.', + 'currencies_intro' => 'Firefly III støtter ulike valutaer som du kan definere og aktivere her.', + 'make_default_currency' => 'Sett som standard', + 'default_currency' => 'standard', + 'currency_is_disabled' => 'Deaktivert', + 'enable_currency' => 'Aktiver', + 'disable_currency' => 'Deaktiver', + 'currencies_default_disabled' => 'De fleste valutaene er deaktivert som standard. For å bruke dem, må du aktivere dem først.', + 'currency_is_now_enabled' => 'Valuta ":name" er aktivert', + 'could_not_enable_currency' => 'Kunne ikke aktivere valuta ":name". Vennligst se gjennom loggene.', + 'currency_is_now_disabled' => 'Valuta ":name" er deaktivert', + 'could_not_disable_currency' => 'Kan ikke deaktivere valuta ":name". Kanskje den fortsatt er i bruk?', // forms: - 'mandatoryFields' => 'Obligatoriske felter', - 'optionalFields' => 'Valgfrie felter', - 'options' => 'Alternativer', + 'mandatoryFields' => 'Obligatoriske felter', + 'optionalFields' => 'Valgfrie felter', + 'options' => 'Alternativer', // budgets: - 'daily_budgets' => 'Daglige budsjetter', - 'weekly_budgets' => 'Ukentlige budsjetter', - 'monthly_budgets' => 'Månedlige budsjetter', - 'quarterly_budgets' => 'Kvartalsvise budsjetter', - 'half_year_budgets' => 'Halvårlige budsjetter', - 'yearly_budgets' => 'Årlige budsjetter', - 'other_budgets' => 'Egne tidsinnstilte budsjetter', - 'budget_limit_not_in_range' => 'Dette beløpet gjelder fra :start til :end:', - 'total_available_budget' => 'Totalt tilgjengelig budsjett (mellom :start og :end)', - 'total_available_budget_in_currency' => 'Totalt tilgjengelig budsjett i :currency', - 'see_below' => 'se nedenfor', - 'create_new_budget' => 'Opprett et nytt budsjett', - 'store_new_budget' => 'Lagre nytt budsjett', - 'stored_new_budget' => 'Lagret nytt budsjett ":name"', - 'available_between' => 'Tilgjengelig mellom :start og :end', - 'transactionsWithoutBudget' => 'Utgifter uten budsjett', - 'transactions_no_budget' => 'Utgifter uten budsjett mellom :start og :end', - 'spent_between' => 'Allerede brukt mellom :start og :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Sett tilgjengelig beløp', - 'update_available_amount' => 'Oppdater tilgjengelig beløp', - 'ab_basic_modal_explain' => 'Bruk dette skjemaet til å angi hvor mye du forventer å kunne budsjettere (i :currency) i den angitte perioden.', - 'createBudget' => 'Nytt budsjett', - 'invalid_currency' => 'Dette er en ugyldig valuta', - 'invalid_amount' => 'Vennligst skriv inn et beløp', - 'set_ab' => 'Det tilgjengelige budsjettbeløpet er satt', - 'updated_ab' => 'Det tilgjengelige budsjettbeløpet har blitt oppdatert', - 'deleted_ab' => 'Det tilgjengelige budsjettbeløpet har blitt slettet', - 'deleted_bl' => 'Det budsjetterte beløpet er fjernet', - 'alt_currency_ab_create' => 'Sett tilgjengelig budsjett i annen valuta', - 'bl_create_btn' => 'Angi budsjett i annen valuta', - 'inactiveBudgets' => 'Inaktive budsjetter', - 'without_budget_between' => 'Transaksjoner uten et budsjett mellom :start og :end', - 'delete_budget' => 'Slett budsjett ":name"', - 'deleted_budget' => 'Slett budsjett ":name"', - 'edit_budget' => 'Rediger budsjett ":name"', - 'updated_budget' => 'Oppdater budsjett ":name"', - 'update_amount' => 'Oppdater beløp', - 'update_budget' => 'Oppdater budsjett', - 'update_budget_amount_range' => 'Oppdater (forventet) tilgjengelig beløp mellom :start og :end', - 'set_budget_limit_title' => 'Sett budsjettert beløp for budsjett :budget mellom :start og :end', - 'set_budget_limit' => 'Angi budsjettert beløp', - 'budget_period_navigator' => 'Periodenavigatør', - 'info_on_available_amount' => 'Hva har jeg tilgjengelig?', - 'available_amount_indication' => 'Bruk disse beløpene for å få en indikasjon på hva ditt totale budsjett kan være.', - 'suggested' => 'Foreslått', - 'average_between' => 'Gjennomsnitt mellom :start og :end', - 'transferred_in' => 'Overført (in)', - 'transferred_away' => 'Overført (borte)', - 'auto_budget_none' => 'Ingen automatisk budsjett', - 'auto_budget_reset' => 'Angi et fast beløp hver periode', - 'auto_budget_rollover' => 'Legg til et fast beløp hver periode', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daglig', - 'auto_budget_period_weekly' => 'Ukentlig', - 'auto_budget_period_monthly' => 'Månedlig', - 'auto_budget_period_quarterly' => 'Kvartalsvis', - 'auto_budget_period_half_year' => 'Hvert halvår', - 'auto_budget_period_yearly' => 'Årlig', - 'auto_budget_help' => 'Du kan lese mer om denne funksjonen under hjelp. Klikk ikonet øverst til høyre (?).', - 'auto_budget_reset_icon' => 'Budsjettet blir fastsatt periodisk', - 'auto_budget_rollover_icon' => 'Budsjettbeløpet vil øke periodisk', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Fjern budsjettert beløp i :currency', + 'daily_budgets' => 'Daglige budsjetter', + 'weekly_budgets' => 'Ukentlige budsjetter', + 'monthly_budgets' => 'Månedlige budsjetter', + 'quarterly_budgets' => 'Kvartalsvise budsjetter', + 'half_year_budgets' => 'Halvårlige budsjetter', + 'yearly_budgets' => 'Årlige budsjetter', + 'other_budgets' => 'Egne tidsinnstilte budsjetter', + 'budget_limit_not_in_range' => 'Dette beløpet gjelder fra :start til :end:', + 'total_available_budget' => 'Totalt tilgjengelig budsjett (mellom :start og :end)', + 'total_available_budget_in_currency' => 'Totalt tilgjengelig budsjett i :currency', + 'see_below' => 'se nedenfor', + 'create_new_budget' => 'Opprett et nytt budsjett', + 'store_new_budget' => 'Lagre nytt budsjett', + 'stored_new_budget' => 'Lagret nytt budsjett ":name"', + 'available_between' => 'Tilgjengelig mellom :start og :end', + 'transactionsWithoutBudget' => 'Utgifter uten budsjett', + 'transactions_no_budget' => 'Utgifter uten budsjett mellom :start og :end', + 'spent_between' => 'Allerede brukt mellom :start og :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Sett tilgjengelig beløp', + 'update_available_amount' => 'Oppdater tilgjengelig beløp', + 'ab_basic_modal_explain' => 'Bruk dette skjemaet til å angi hvor mye du forventer å kunne budsjettere (i :currency) i den angitte perioden.', + 'createBudget' => 'Nytt budsjett', + 'invalid_currency' => 'Dette er en ugyldig valuta', + 'invalid_amount' => 'Vennligst skriv inn et beløp', + 'set_ab' => 'Det tilgjengelige budsjettbeløpet er satt', + 'updated_ab' => 'Det tilgjengelige budsjettbeløpet har blitt oppdatert', + 'deleted_ab' => 'Det tilgjengelige budsjettbeløpet har blitt slettet', + 'deleted_bl' => 'Det budsjetterte beløpet er fjernet', + 'alt_currency_ab_create' => 'Sett tilgjengelig budsjett i annen valuta', + 'bl_create_btn' => 'Angi budsjett i annen valuta', + 'inactiveBudgets' => 'Inaktive budsjetter', + 'without_budget_between' => 'Transaksjoner uten et budsjett mellom :start og :end', + 'delete_budget' => 'Slett budsjett ":name"', + 'deleted_budget' => 'Slett budsjett ":name"', + 'edit_budget' => 'Rediger budsjett ":name"', + 'updated_budget' => 'Oppdater budsjett ":name"', + 'update_amount' => 'Oppdater beløp', + 'update_budget' => 'Oppdater budsjett', + 'update_budget_amount_range' => 'Oppdater (forventet) tilgjengelig beløp mellom :start og :end', + 'set_budget_limit_title' => 'Sett budsjettert beløp for budsjett :budget mellom :start og :end', + 'set_budget_limit' => 'Angi budsjettert beløp', + 'budget_period_navigator' => 'Periodenavigatør', + 'info_on_available_amount' => 'Hva har jeg tilgjengelig?', + 'available_amount_indication' => 'Bruk disse beløpene for å få en indikasjon på hva ditt totale budsjett kan være.', + 'suggested' => 'Foreslått', + 'average_between' => 'Gjennomsnitt mellom :start og :end', + 'transferred_in' => 'Overført (in)', + 'transferred_away' => 'Overført (borte)', + 'auto_budget_none' => 'Ingen automatisk budsjett', + 'auto_budget_reset' => 'Angi et fast beløp hver periode', + 'auto_budget_rollover' => 'Legg til et fast beløp hver periode', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daglig', + 'auto_budget_period_weekly' => 'Ukentlig', + 'auto_budget_period_monthly' => 'Månedlig', + 'auto_budget_period_quarterly' => 'Kvartalsvis', + 'auto_budget_period_half_year' => 'Hvert halvår', + 'auto_budget_period_yearly' => 'Årlig', + 'auto_budget_help' => 'Du kan lese mer om denne funksjonen under hjelp. Klikk ikonet øverst til høyre (?).', + 'auto_budget_reset_icon' => 'Budsjettet blir fastsatt periodisk', + 'auto_budget_rollover_icon' => 'Budsjettbeløpet vil øke periodisk', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Fjern budsjettert beløp i :currency', // bills: - 'subscription' => 'Abonnement', - 'not_expected_period' => 'Ikke forventet denne perioden', - 'subscriptions_in_group' => 'Abonnementer i gruppe "%{title}"', - 'subscr_expected_x_times' => 'Forvent å betale %{amount}, %{times} ganger denne perioden', - 'not_or_not_yet' => 'Ikke (enda)', - 'visit_bill' => 'Se regningen ":name" på Firefly III', - 'match_between_amounts' => 'Regning matcher transaksjoner mellom :low og :high.', - 'running_again_loss' => 'Tidligere koblede transaksjoner til denne regningen kan miste sin forbindelse, hvis de (ikke lenger) stemmer overens med regel(ene).', - 'bill_related_rules' => 'Regler relatert til denne regningen', - 'repeats' => 'Gjentas', - 'bill_end_date_help' => 'Valgfritt felt. Regningen er ventet å være over på denne datoen.', - 'bill_extension_date_help' => 'Valgfritt felt. Regningen må utvides (eller annulleres) på eller før denne datoen.', - 'bill_end_index_line' => 'Denne regningen avsluttes :date', - 'bill_extension_index_line' => 'Denne regningen må utvides eller kanselleres på :date', - 'connected_journals' => 'Tilknyttede transaksjoner', - 'auto_match_on' => 'Automatisk funnet av Firefly III', - 'auto_match_off' => 'Ikke automatisk funnet av Firefly III', - 'next_expected_match' => 'Neste forventede treff', - 'delete_bill' => 'Slett regning ":name"', - 'deleted_bill' => 'Slettet regning ":name"', - 'edit_bill' => 'Rediger regning ":name"', - 'more' => 'Mer', - 'rescan_old' => 'Kjør regler igjen, på alle transaksjoner', - 'update_bill' => 'Oppdater regning', - 'updated_bill' => 'Oppdatert regning ":name"', - 'store_new_bill' => 'Lagre ny regning', - 'stored_new_bill' => 'Lagret ny regning ":name"', - 'cannot_scan_inactive_bill' => 'Inaktive regninger kan ikke skannes.', - 'rescanned_bill' => 'Skannet alt på nytt, og koblet :count transaksjon til regningen |Reskanned alt, og linket :count transaksjon til regningen.', - 'average_bill_amount_year' => 'Gjennomsnittlig regningsbeløp (:year)', - 'average_bill_amount_overall' => 'Gjennomsnittlig regningsbeløp (alt i alt)', - 'bill_is_active' => 'Regning er aktiv', - 'bill_expected_between' => 'Forventet mellom :start og :end', - 'bill_will_automatch' => 'Regningen vil automatisk knyttes til samsvarende transaksjoner', - 'skips_over' => 'hopper over', - 'bill_store_error' => 'Det oppsto en uventet feil mens du lagret den nye regningen. Vennligst sjekk loggfilene', - 'list_inactive_rule' => 'inaktiv regel', - 'bill_edit_rules' => 'Firefly III vil forsøke å redigere regelen også relatert til denne regningen. Hvis du har endret denne regelen selv, vil Firefly III ikke endre noe. Firefly III vil forsøke å redigere reglene for :count også knyttet til denne regningen. Om du har endret disse reglene selv, vil ikke Firefly III endre noe.', - 'bill_expected_date' => 'Forventet :date', - 'bill_expected_date_js' => 'Forventet {date}', - 'expected_amount' => '(Forventet) beløp', - 'bill_paid_on' => 'Betalt den {date}', - 'bill_repeats_weekly' => 'Gjentas ukentlig', - 'bill_repeats_monthly' => 'Gjentas månedlig', - 'bill_repeats_quarterly' => 'Gjentas kvartalsvis', - 'bill_repeats_half-year' => 'Gjentas hvert halvår', - 'bill_repeats_yearly' => 'Gjentas årlig', - 'bill_repeats_weekly_other' => 'Gjentas annenhver uke', - 'bill_repeats_monthly_other' => 'Gjentas annenhver måned', - 'bill_repeats_quarterly_other' => 'Gjentas annenhver kvartal', - 'bill_repeats_half-year_other' => 'Gjentas årlig', - 'bill_repeats_yearly_other' => 'Gjentas annenhver år', - 'bill_repeats_weekly_skip' => 'Gjentas hver {skip} uke', - 'bill_repeats_monthly_skip' => 'Gjentas hver {skip} måned', - 'bill_repeats_quarterly_skip' => 'Gjentas annenhver {skip} kvartal', - 'bill_repeats_half-year_skip' => 'Gjentas hvert {skip} halvår', - 'bill_repeats_yearly_skip' => 'Gjentas hvert {skip} år', - 'subscriptions' => 'Abonnementer', - 'go_to_subscriptions' => 'Gå til dine abonnementer', - 'forever' => 'For alltid', - 'extension_date_is' => 'Forlengelsesdato er {date}', + 'subscription' => 'Abonnement', + 'not_expected_period' => 'Ikke forventet denne perioden', + 'subscriptions_in_group' => 'Abonnementer i gruppe "%{title}"', + 'subscr_expected_x_times' => 'Forvent å betale %{amount}, %{times} ganger denne perioden', + 'not_or_not_yet' => 'Ikke (enda)', + 'visit_bill' => 'Se regningen ":name" på Firefly III', + 'match_between_amounts' => 'Regning matcher transaksjoner mellom :low og :high.', + 'running_again_loss' => 'Tidligere koblede transaksjoner til denne regningen kan miste sin forbindelse, hvis de (ikke lenger) stemmer overens med regel(ene).', + 'bill_related_rules' => 'Regler relatert til denne regningen', + 'repeats' => 'Gjentas', + 'bill_end_date_help' => 'Valgfritt felt. Regningen er ventet å være over på denne datoen.', + 'bill_extension_date_help' => 'Valgfritt felt. Regningen må utvides (eller annulleres) på eller før denne datoen.', + 'bill_end_index_line' => 'Denne regningen avsluttes :date', + 'bill_extension_index_line' => 'Denne regningen må utvides eller kanselleres på :date', + 'connected_journals' => 'Tilknyttede transaksjoner', + 'auto_match_on' => 'Automatisk funnet av Firefly III', + 'auto_match_off' => 'Ikke automatisk funnet av Firefly III', + 'next_expected_match' => 'Neste forventede treff', + 'delete_bill' => 'Slett regning ":name"', + 'deleted_bill' => 'Slettet regning ":name"', + 'edit_bill' => 'Rediger regning ":name"', + 'more' => 'Mer', + 'rescan_old' => 'Kjør regler igjen, på alle transaksjoner', + 'update_bill' => 'Oppdater regning', + 'updated_bill' => 'Oppdatert regning ":name"', + 'store_new_bill' => 'Lagre ny regning', + 'stored_new_bill' => 'Lagret ny regning ":name"', + 'cannot_scan_inactive_bill' => 'Inaktive regninger kan ikke skannes.', + 'rescanned_bill' => 'Skannet alt på nytt, og koblet :count transaksjon til regningen |Reskanned alt, og linket :count transaksjon til regningen.', + 'average_bill_amount_year' => 'Gjennomsnittlig regningsbeløp (:year)', + 'average_bill_amount_overall' => 'Gjennomsnittlig regningsbeløp (alt i alt)', + 'bill_is_active' => 'Regning er aktiv', + 'bill_expected_between' => 'Forventet mellom :start og :end', + 'bill_will_automatch' => 'Regningen vil automatisk knyttes til samsvarende transaksjoner', + 'skips_over' => 'hopper over', + 'bill_store_error' => 'Det oppsto en uventet feil mens du lagret den nye regningen. Vennligst sjekk loggfilene', + 'list_inactive_rule' => 'inaktiv regel', + 'bill_edit_rules' => 'Firefly III vil forsøke å redigere regelen også relatert til denne regningen. Hvis du har endret denne regelen selv, vil Firefly III ikke endre noe. Firefly III vil forsøke å redigere reglene for :count også knyttet til denne regningen. Om du har endret disse reglene selv, vil ikke Firefly III endre noe.', + 'bill_expected_date' => 'Forventet :date', + 'bill_expected_date_js' => 'Forventet {date}', + 'expected_amount' => '(Forventet) beløp', + 'bill_paid_on' => 'Betalt den {date}', + 'bill_repeats_weekly' => 'Gjentas ukentlig', + 'bill_repeats_monthly' => 'Gjentas månedlig', + 'bill_repeats_quarterly' => 'Gjentas kvartalsvis', + 'bill_repeats_half-year' => 'Gjentas hvert halvår', + 'bill_repeats_yearly' => 'Gjentas årlig', + 'bill_repeats_weekly_other' => 'Gjentas annenhver uke', + 'bill_repeats_monthly_other' => 'Gjentas annenhver måned', + 'bill_repeats_quarterly_other' => 'Gjentas annenhver kvartal', + 'bill_repeats_half-year_other' => 'Gjentas årlig', + 'bill_repeats_yearly_other' => 'Gjentas annenhver år', + 'bill_repeats_weekly_skip' => 'Gjentas hver {skip} uke', + 'bill_repeats_monthly_skip' => 'Gjentas hver {skip} måned', + 'bill_repeats_quarterly_skip' => 'Gjentas annenhver {skip} kvartal', + 'bill_repeats_half-year_skip' => 'Gjentas hvert {skip} halvår', + 'bill_repeats_yearly_skip' => 'Gjentas hvert {skip} år', + 'subscriptions' => 'Abonnementer', + 'go_to_subscriptions' => 'Gå til dine abonnementer', + 'forever' => 'For alltid', + 'extension_date_is' => 'Forlengelsesdato er {date}', // accounts: - 'i_am_owed_amount' => 'Jeg er skyldig beløp', - 'i_owe_amount' => 'Jeg skylder beløp', - 'inactive_account_link' => 'Du har :count inaktiv (arkivert) konto, som du kan se på denne separate siden. Du har :count inaktive (arkiverte) kontoer som du kan se på denne separate siden.', - 'all_accounts_inactive' => 'Dette er dine inaktive kontoer.', - 'active_account_link' => 'Denne lenken går tilbake til de aktive kontoene.', - 'account_missing_transaction' => 'Konto #:id (":name") kan ikke bli vist direkte, Firefly mangler omdirigerings informasjon.', - 'cc_monthly_payment_date_help' => 'Velg et år og en måned, det ignoreres likevel. Bare dagen i måneden er relevant.', - 'details_for_asset' => 'Detaljer for brukskonto ":name"', - 'details_for_expense' => 'Detaljer for utgiftskonto ":name"', - 'details_for_revenue' => 'Detaljer for inntektskonto ":name"', - 'details_for_cash' => 'Detaljer for kontantkonto ":name"', - 'store_new_asset_account' => 'Lagre ny brukskonto', - 'store_new_expense_account' => 'Lagre ny utgiftskonto', - 'store_new_revenue_account' => 'Lagre ny inntektskonto', - 'edit_asset_account' => 'Rediger brukskonto ":name"', - 'edit_expense_account' => 'Rediger utgiftskonto ":name"', - 'edit_revenue_account' => 'Rediger inntektskonto ":name"', - 'delete_asset_account' => 'Slett brukskonto ":name"', - 'delete_expense_account' => 'Slett utgiftskonto ":name"', - 'delete_revenue_account' => 'Slett inntektskonto ":name"', - 'delete_liabilities_account' => 'Slett gjeld ":name"', - 'asset_deleted' => 'Sletting av brukskonto ":name" var vellykket', - 'account_deleted' => 'Sletting av konto ":name" var vellykket', - 'expense_deleted' => 'Sletting av utgiftskonto ":name" var vellykket', - 'revenue_deleted' => 'Sletting av inntekskonto ":name" var vellykket', - 'update_asset_account' => 'Oppdater aktivakonto', - 'update_undefined_account' => 'Oppdater konto', - 'update_liabilities_account' => 'Oppdater gjeld', - 'update_expense_account' => 'Oppdater utgiftskonto', - 'update_revenue_account' => 'Oppdater inntektskonto', - 'make_new_asset_account' => 'Opprett en ny aktivakonto', - 'make_new_expense_account' => 'Opprett en ny utgiftskonto', - 'make_new_revenue_account' => 'Opprett en ny inntektskonto', - 'make_new_liabilities_account' => 'Opprett ny gjeld', - 'asset_accounts' => 'Aktivakontoer', - 'undefined_accounts' => 'Kontoer', - 'asset_accounts_inactive' => 'Eiendelskontoer (inaktive)', - 'expense_account' => 'Utgiftskonto', - 'expense_accounts' => 'Utgiftskontoer', - 'expense_accounts_inactive' => 'Utgiftskontoer (inaktive)', - 'revenue_account' => 'Inntektskonto', - 'revenue_accounts' => 'Inntektskontoer', - 'revenue_accounts_inactive' => 'Inntektskontoer (inaktive)', - 'cash_accounts' => 'Kontantkontoer', - 'Cash account' => 'Kontantkonto', - 'liabilities_accounts' => 'Gjeldskonto', - 'liabilities_accounts_inactive' => 'Gjeldskonto (inaktive)', - 'reconcile_account' => 'Avstem konto ":account"', - 'overview_of_reconcile_modal' => 'Balanseoversikt', - 'delete_reconciliation' => 'Slett avstemming', - 'update_reconciliation' => 'Oppdater avstemming', - 'amount_cannot_be_zero' => 'Beløpet kan ikke være null', - 'end_of_reconcile_period' => 'Slutten av balanse perioden :period', - 'start_of_reconcile_period' => 'Starten av balanse perioden :period', - 'start_balance' => 'Startsaldo', - 'end_balance' => 'Sluttsaldo', - 'update_balance_dates_instruction' => 'Koble beløpene og datoene over til kontoutskriften, og trykk på "Start avstemning"', - 'select_transactions_instruction' => 'Velg transaksjonene som vises på kontoutskriften.', - 'select_range_and_balance' => 'Kontroller først datoperiode og saldo. Deretter trykker du på "Start avstemning"', - 'date_change_instruction' => 'Hvis du endrer datointervallet nå, vil du miste all foreløpig framdrift.', - 'update_selection' => 'Oppdater utvalg', - 'store_reconcile' => 'Lagre avstemming', - 'reconciliation_transaction' => 'Avstemmingstransaksjon', - 'Reconciliation' => 'Avstemming', - 'reconciliation' => 'Avstemming', - 'reconcile_options' => 'Avstemmingsalternativer', - 'reconcile_range' => 'Avstemningsområde', - 'start_reconcile' => 'Start avstemming', - 'cash_account_type' => 'Kontanter', - 'cash' => 'kontanter', - 'cant_find_redirect_account' => 'Firefly III prøvde å omdirigere deg, men kan ikke. Beklager det. Tilbake til indeksen.', - 'account_type' => 'Kontotype', - 'save_transactions_by_moving' => 'Lagre denne transaksjonen ved å flytte den til en annen konto:|Lagre disse transaksjonene ved å flytte dem til en annen konto:', - 'save_transactions_by_moving_js' => 'Ingen transaksjoner|Lagre denne transaksjonen ved å flytte den til en annen konto. |Lagre disse transaksjonene ved å flytte dem til en annen konto.', - 'stored_new_account' => 'Ny konto:name: lagret!', - 'stored_new_account_js' => 'Ny konto "{name}" lagret!', - 'updated_account' => 'Oppdatert konto ":name"', - 'updated_account_js' => 'Oppdatert konto "{title}".', - 'credit_card_options' => 'Kredittkortvalg', - 'no_transactions_account' => 'Det finnes ingen transaksjoner (i denne perioden) for brukskonto ":name".', - 'no_transactions_period' => 'Det finnes ingen transaksjoner (i denne perioden).', - 'no_data_for_chart' => 'Det er ikke nok informasjon (ennå) til å generere dette diagrammet.', - 'select_at_least_one_account' => 'Velg minst en brukskonto', - 'select_at_least_one_category' => 'Velg minst én kategori', - 'select_at_least_one_budget' => 'Velg minst ett budsjett', - 'select_at_least_one_tag' => 'Velg minst én tag', - 'select_at_least_one_expense' => 'Velg minst en kombinasjon av utgift/inntekts konto. Hvis du ikke har en (listen er tom) så vil ikke denne rapporten være tilgjengelig.', - 'account_default_currency' => 'Dette blir standard valuta for denne kontoen.', - 'reconcile_has_more' => 'Din Firefly III-hovedbok har mer penger i seg enn banken hevder du burde ha. Det finnes flere alternativer. Vennligst velg hva du skal gjøre. Deretter trykker du på "Bekreft avstemming".', - 'reconcile_has_less' => 'Din Firefly III-hovedbok har mindre penger i seg enn banken hevder du burde ha. Det finnes flere alternativer. Vennligst velg hva du skal gjøre. Deretter trykker du på "Bekreft avstemming".', - 'reconcile_is_equal' => 'Din Firefly III-hovedbok og dine kontoutskrifter samsvarer. Det er ingenting du trenger å gjøre. Vennligst trykk "Bekreft avstemming" for å fortsette.', - 'create_pos_reconcile_transaction' => 'Fjern de valgte transaksjonene, og opprett en korreksjon som legger til :amount til denne aktivakontoen.', - 'create_neg_reconcile_transaction' => 'Fjern de valgte transaksjonene, og opprett en korreksjon som tar bort :amount fra denne aktivakontoen.', - 'reconcile_do_nothing' => 'Fjern de valgte transaksjonene, men ikke korriger.', - 'reconcile_go_back' => 'Du kan alltid redigere eller slette en korreksjon senere.', - 'must_be_asset_account' => 'Du kan bare avstemme aktivakontoer', - 'reconciliation_stored' => 'Avstemming lagret', - 'reconciliation_error' => 'På grunn av en feil ble transaksjonene markert som avstemt, men korrigeringen har ikke blitt lagret: :error.', - 'reconciliation_transaction_title' => 'Avstemming (:from til :to)', - 'sum_of_reconciliation' => 'Sum av avstemming', - 'reconcile_this_account' => 'Avstem denne kontoen', - 'reconcile' => 'Avstem', - 'show' => 'Vis', - 'confirm_reconciliation' => 'Bekreft avstemming', - 'submitted_start_balance' => 'Innsendt startsaldo', - 'selected_transactions' => 'Valgte transaksjoner (:count)', - 'already_cleared_transactions' => 'Tidligere ryddet transaksjoner (:count)', - 'submitted_end_balance' => 'Innsendt sluttsaldo', - 'initial_balance_description' => 'Start saldo for ":account"', - 'liability_credit_description' => 'Gjeld på lån ":account"', - 'interest_calc_' => 'ukjent', - 'interest_calc_daily' => 'Per dag', - 'interest_calc_monthly' => 'Per måned', - 'interest_calc_yearly' => 'Per år', - 'interest_calc_weekly' => 'Per uke', - 'interest_calc_half-year' => 'Per halvår', - 'interest_calc_quarterly' => 'Per kvartal', - 'initial_balance_account' => 'Inngående balanse for :account', - 'list_options' => 'Listealternativer', + 'i_am_owed_amount' => 'Jeg er skyldig beløp', + 'i_owe_amount' => 'Jeg skylder beløp', + 'inactive_account_link' => 'Du har :count inaktiv (arkivert) konto, som du kan se på denne separate siden. Du har :count inaktive (arkiverte) kontoer som du kan se på denne separate siden.', + 'all_accounts_inactive' => 'Dette er dine inaktive kontoer.', + 'active_account_link' => 'Denne lenken går tilbake til de aktive kontoene.', + 'account_missing_transaction' => 'Konto #:id (":name") kan ikke bli vist direkte, Firefly mangler omdirigerings informasjon.', + 'cc_monthly_payment_date_help' => 'Velg et år og en måned, det ignoreres likevel. Bare dagen i måneden er relevant.', + 'details_for_asset' => 'Detaljer for brukskonto ":name"', + 'details_for_expense' => 'Detaljer for utgiftskonto ":name"', + 'details_for_revenue' => 'Detaljer for inntektskonto ":name"', + 'details_for_cash' => 'Detaljer for kontantkonto ":name"', + 'store_new_asset_account' => 'Lagre ny brukskonto', + 'store_new_expense_account' => 'Lagre ny utgiftskonto', + 'store_new_revenue_account' => 'Lagre ny inntektskonto', + 'edit_asset_account' => 'Rediger brukskonto ":name"', + 'edit_expense_account' => 'Rediger utgiftskonto ":name"', + 'edit_revenue_account' => 'Rediger inntektskonto ":name"', + 'delete_asset_account' => 'Slett brukskonto ":name"', + 'delete_expense_account' => 'Slett utgiftskonto ":name"', + 'delete_revenue_account' => 'Slett inntektskonto ":name"', + 'delete_liabilities_account' => 'Slett gjeld ":name"', + 'asset_deleted' => 'Sletting av brukskonto ":name" var vellykket', + 'account_deleted' => 'Sletting av konto ":name" var vellykket', + 'expense_deleted' => 'Sletting av utgiftskonto ":name" var vellykket', + 'revenue_deleted' => 'Sletting av inntekskonto ":name" var vellykket', + 'update_asset_account' => 'Oppdater aktivakonto', + 'update_undefined_account' => 'Oppdater konto', + 'update_liabilities_account' => 'Oppdater gjeld', + 'update_expense_account' => 'Oppdater utgiftskonto', + 'update_revenue_account' => 'Oppdater inntektskonto', + 'make_new_asset_account' => 'Opprett en ny aktivakonto', + 'make_new_expense_account' => 'Opprett en ny utgiftskonto', + 'make_new_revenue_account' => 'Opprett en ny inntektskonto', + 'make_new_liabilities_account' => 'Opprett ny gjeld', + 'asset_accounts' => 'Aktivakontoer', + 'undefined_accounts' => 'Kontoer', + 'asset_accounts_inactive' => 'Eiendelskontoer (inaktive)', + 'expense_account' => 'Utgiftskonto', + 'expense_accounts' => 'Utgiftskontoer', + 'expense_accounts_inactive' => 'Utgiftskontoer (inaktive)', + 'revenue_account' => 'Inntektskonto', + 'revenue_accounts' => 'Inntektskontoer', + 'revenue_accounts_inactive' => 'Inntektskontoer (inaktive)', + 'cash_accounts' => 'Kontantkontoer', + 'Cash account' => 'Kontantkonto', + 'liabilities_accounts' => 'Gjeldskonto', + 'liabilities_accounts_inactive' => 'Gjeldskonto (inaktive)', + 'reconcile_account' => 'Avstem konto ":account"', + 'overview_of_reconcile_modal' => 'Balanseoversikt', + 'delete_reconciliation' => 'Slett avstemming', + 'update_reconciliation' => 'Oppdater avstemming', + 'amount_cannot_be_zero' => 'Beløpet kan ikke være null', + 'end_of_reconcile_period' => 'Slutten av balanse perioden :period', + 'start_of_reconcile_period' => 'Starten av balanse perioden :period', + 'start_balance' => 'Startsaldo', + 'end_balance' => 'Sluttsaldo', + 'update_balance_dates_instruction' => 'Koble beløpene og datoene over til kontoutskriften, og trykk på "Start avstemning"', + 'select_transactions_instruction' => 'Velg transaksjonene som vises på kontoutskriften.', + 'select_range_and_balance' => 'Kontroller først datoperiode og saldo. Deretter trykker du på "Start avstemning"', + 'date_change_instruction' => 'Hvis du endrer datointervallet nå, vil du miste all foreløpig framdrift.', + 'update_selection' => 'Oppdater utvalg', + 'store_reconcile' => 'Lagre avstemming', + 'reconciliation_transaction' => 'Avstemmingstransaksjon', + 'Reconciliation' => 'Avstemming', + 'reconciliation' => 'Avstemming', + 'reconcile_options' => 'Avstemmingsalternativer', + 'reconcile_range' => 'Avstemningsområde', + 'start_reconcile' => 'Start avstemming', + 'cash_account_type' => 'Kontanter', + 'cash' => 'kontanter', + 'cant_find_redirect_account' => 'Firefly III prøvde å omdirigere deg, men kan ikke. Beklager det. Tilbake til indeksen.', + 'account_type' => 'Kontotype', + 'save_transactions_by_moving' => 'Lagre denne transaksjonen ved å flytte den til en annen konto:|Lagre disse transaksjonene ved å flytte dem til en annen konto:', + 'save_transactions_by_moving_js' => 'Ingen transaksjoner|Lagre denne transaksjonen ved å flytte den til en annen konto. |Lagre disse transaksjonene ved å flytte dem til en annen konto.', + 'stored_new_account' => 'Ny konto:name: lagret!', + 'stored_new_account_js' => 'Ny konto "{name}" lagret!', + 'updated_account' => 'Oppdatert konto ":name"', + 'updated_account_js' => 'Oppdatert konto "{title}".', + 'credit_card_options' => 'Kredittkortvalg', + 'no_transactions_account' => 'Det finnes ingen transaksjoner (i denne perioden) for brukskonto ":name".', + 'no_transactions_period' => 'Det finnes ingen transaksjoner (i denne perioden).', + 'no_data_for_chart' => 'Det er ikke nok informasjon (ennå) til å generere dette diagrammet.', + 'select_at_least_one_account' => 'Velg minst en brukskonto', + 'select_at_least_one_category' => 'Velg minst én kategori', + 'select_at_least_one_budget' => 'Velg minst ett budsjett', + 'select_at_least_one_tag' => 'Velg minst én tag', + 'select_at_least_one_expense' => 'Velg minst en kombinasjon av utgift/inntekts konto. Hvis du ikke har en (listen er tom) så vil ikke denne rapporten være tilgjengelig.', + 'account_default_currency' => 'Dette blir standard valuta for denne kontoen.', + 'reconcile_has_more' => 'Din Firefly III-hovedbok har mer penger i seg enn banken hevder du burde ha. Det finnes flere alternativer. Vennligst velg hva du skal gjøre. Deretter trykker du på "Bekreft avstemming".', + 'reconcile_has_less' => 'Din Firefly III-hovedbok har mindre penger i seg enn banken hevder du burde ha. Det finnes flere alternativer. Vennligst velg hva du skal gjøre. Deretter trykker du på "Bekreft avstemming".', + 'reconcile_is_equal' => 'Din Firefly III-hovedbok og dine kontoutskrifter samsvarer. Det er ingenting du trenger å gjøre. Vennligst trykk "Bekreft avstemming" for å fortsette.', + 'create_pos_reconcile_transaction' => 'Fjern de valgte transaksjonene, og opprett en korreksjon som legger til :amount til denne aktivakontoen.', + 'create_neg_reconcile_transaction' => 'Fjern de valgte transaksjonene, og opprett en korreksjon som tar bort :amount fra denne aktivakontoen.', + 'reconcile_do_nothing' => 'Fjern de valgte transaksjonene, men ikke korriger.', + 'reconcile_go_back' => 'Du kan alltid redigere eller slette en korreksjon senere.', + 'must_be_asset_account' => 'Du kan bare avstemme aktivakontoer', + 'reconciliation_stored' => 'Avstemming lagret', + 'reconciliation_error' => 'På grunn av en feil ble transaksjonene markert som avstemt, men korrigeringen har ikke blitt lagret: :error.', + 'reconciliation_transaction_title' => 'Avstemming (:from til :to)', + 'sum_of_reconciliation' => 'Sum av avstemming', + 'reconcile_this_account' => 'Avstem denne kontoen', + 'reconcile' => 'Avstem', + 'show' => 'Vis', + 'confirm_reconciliation' => 'Bekreft avstemming', + 'submitted_start_balance' => 'Innsendt startsaldo', + 'selected_transactions' => 'Valgte transaksjoner (:count)', + 'already_cleared_transactions' => 'Tidligere ryddet transaksjoner (:count)', + 'submitted_end_balance' => 'Innsendt sluttsaldo', + 'initial_balance_description' => 'Start saldo for ":account"', + 'liability_credit_description' => 'Gjeld på lån ":account"', + 'interest_calc_' => 'ukjent', + 'interest_calc_daily' => 'Per dag', + 'interest_calc_monthly' => 'Per måned', + 'interest_calc_yearly' => 'Per år', + 'interest_calc_weekly' => 'Per uke', + 'interest_calc_half-year' => 'Per halvår', + 'interest_calc_quarterly' => 'Per kvartal', + 'initial_balance_account' => 'Inngående balanse for :account', + 'list_options' => 'Listealternativer', // categories: - 'new_category' => 'Ny kategori', - 'create_new_category' => 'Opprett en ny kategori', - 'without_category' => 'Uten kategori', - 'update_category' => 'Oppdater kategori', - 'updated_category' => 'Oppdatert kategori ":name"', - 'categories' => 'Kategorier', - 'edit_category' => 'Rediger kategori ":name"', - 'no_category' => '(ingen kategori)', - 'unknown_category_plain' => 'Ingen kategori', - 'category' => 'Kategori', - 'delete_category' => 'Slett kategori ":name"', - 'deleted_category' => 'Slettet kategori ":name"', - 'store_category' => 'Lagre ny kategori', - 'stored_category' => 'Lagret ny kategori ":name"', - 'without_category_between' => 'Uten kategori mellom :start og :end', + 'new_category' => 'Ny kategori', + 'create_new_category' => 'Opprett en ny kategori', + 'without_category' => 'Uten kategori', + 'update_category' => 'Oppdater kategori', + 'updated_category' => 'Oppdatert kategori ":name"', + 'categories' => 'Kategorier', + 'edit_category' => 'Rediger kategori ":name"', + 'no_category' => '(ingen kategori)', + 'unknown_category_plain' => 'Ingen kategori', + 'category' => 'Kategori', + 'delete_category' => 'Slett kategori ":name"', + 'deleted_category' => 'Slettet kategori ":name"', + 'store_category' => 'Lagre ny kategori', + 'stored_category' => 'Lagret ny kategori ":name"', + 'without_category_between' => 'Uten kategori mellom :start og :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Angre avstemming', - 'update_withdrawal' => 'Oppdater uttak', - 'update_deposit' => 'Oppdater innskudd', - 'update_transaction' => 'Oppdater transaksjonen', - 'update_transfer' => 'Oppdater overføring', - 'updated_withdrawal' => 'Oppdatert uttak ":description"', - 'updated_deposit' => 'Oppdatert innskudd ":description"', - 'updated_transfer' => 'Oppdatert overføring ":description"', - 'no_changes_withdrawal' => 'Uttak ":description" ble ikke endret.', - 'no_changes_deposit' => 'Innskudd ":description" ble ikke endret.', - 'no_changes_transfer' => 'Overføring ":description" ble ikke endret.', - 'delete_withdrawal' => 'Slett uttak ":description"', - 'delete_deposit' => 'Slett innskudd ":description"', - 'delete_transfer' => 'Slett overføring ":description"', - 'deleted_withdrawal' => 'Slettet uttak ":description"', - 'deleted_deposit' => 'Slettet innskudd ":description"', - 'deleted_transfer' => 'Slettet overføring ":description"', - 'deleted_reconciliation' => 'Slettet avstemmingstransaksjon ":description"', - 'stored_journal' => 'Opprettet ny transaksjon ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Vellykket! Ny transaksjon er opprettet', - 'updated_journal_no_descr' => 'Transaksjonen din ble oppdatert', - 'select_transactions' => 'Velg transaksjoner', - 'rule_group_select_transactions' => 'Påfør ":title" på transaksjonene', - 'rule_select_transactions' => 'Påfør ":title" på transaksjonene', - 'stop_selection' => 'Stop valg av transaksjoner', - 'reconcile_selected' => 'Avstem', - 'mass_delete_journals' => 'Slett flere transaksjoner', - 'mass_edit_journals' => 'Rediger flere transaksjoner', - 'mass_bulk_journals' => 'Rediger flere transaksjoner samtidig', - 'mass_bulk_journals_explain' => 'Dette skjemaet lar deg endre egenskaper for transaksjonene nedenfor i en oppdatering. Alle transaksjonene i tabellen vil bli oppdatert når du endrer parametrene du ser her.', - 'part_of_split' => 'Denne transaksjonen er en del av en delt transaksjon. Hvis du ikke har valgt alle delene, kan du ende opp med å endre bare halvparten av transaksjonen.', - 'bulk_set_new_values' => 'Bruk innstillingene nedenfor for å angi nye verdier. Hvis du lar dem stå tomme, forblir de tomme. Vær også oppmerksom på at kun uttak vil bli gitt et budsjett.', - 'no_bulk_category' => 'Ikke oppdater kategori', - 'no_bulk_budget' => 'Ikke oppdater budsjett', - 'no_bulk_tags' => 'Ikke oppdater tagg(er)', - 'replace_with_these_tags' => 'Erstatt med disse taggene', - 'append_these_tags' => 'Legg til disse taggene', - 'mass_edit' => 'Rediger individuelt valgte', - 'bulk_edit' => 'Rediger valgte i bulk', - 'mass_delete' => 'Slett valgte', - 'cannot_edit_other_fields' => 'Du kan ikke masseredigere andre felt enn de som er her, fordi det er ikke plass til å vise dem. Vennligst følg linken og rediger disse en om gangen hvis du må redigere disse feltene.', - 'cannot_change_amount_reconciled' => 'Du kan ikke endre antall avstemte transaksjoner.', - 'no_budget' => '(ingen budsjett)', - 'no_bill' => '(ingen regning)', - 'account_per_budget' => 'Konto per budsjett', - 'account_per_category' => 'Konto per kategori', - 'create_new_object' => 'Opprett', - 'empty' => '(tom)', - 'all_other_budgets' => '(alle andre budsjetter)', - 'all_other_accounts' => '(alle andre kontoer)', - 'expense_per_source_account' => 'Utgifter per kildekonto', - 'expense_per_destination_account' => 'Utgifter per målkonto', - 'income_per_destination_account' => 'Inntekter per destinasjonskonto', - 'spent_in_specific_category' => 'Brukt i kategori ":category"', - 'earned_in_specific_category' => 'Opptjent i kategori ":category"', - 'spent_in_specific_tag' => 'Brukt i taggen ":tag"', - 'earned_in_specific_tag' => 'Opptjent i tag ":tag"', - 'income_per_source_account' => 'Inntekter per kildekonto', - 'average_spending_per_destination' => 'Gjennomsnittlig utgift per målkonto', - 'average_spending_per_source' => 'Gjennomsnittlig utgift per kildekonto', - 'average_earning_per_source' => 'Gjennomsnittlig opptjente per kildekonto', - 'average_earning_per_destination' => 'Gjennomsnittlig opptjente per målkonto', - 'account_per_tag' => 'Konto per tagg', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tagg', - 'no_budget_squared' => '(ingen budsjett)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(ingen kontotype)', - 'opt_group_no_account_type' => '(ingen kontotype)', - 'opt_group_defaultAsset' => 'Standard aktivakontoer', - 'opt_group_savingAsset' => 'Sparekontoer', - 'opt_group_sharedAsset' => 'Delte aktivakontoer', - 'opt_group_ccAsset' => 'Kredittkort', - 'opt_group_cashWalletAsset' => 'Kontant lommebok', - 'opt_group_expense_account' => 'Utgiftskontoer', - 'opt_group_revenue_account' => 'Inntektskontoer', - 'opt_group_l_Loan' => 'Gjeld: Lån', - 'opt_group_cash_account' => 'Kontantkonto', - 'opt_group_l_Debt' => 'Gjeld: Gjeld', - 'opt_group_l_Mortgage' => 'Gjeld: Huslån', - 'opt_group_l_Credit card' => 'Gjeld: Kredittkort', - 'notes' => 'Notater', - 'unknown_journal_error' => 'Kunne ikke lagre transaksjonen. Vennligst sjekk loggfilene.', - 'attachment_not_found' => 'Finner ikke dette vedlegget.', - 'journal_link_bill' => 'Denne transaksjonen er knyttet til regning :name. Hvis du vil fjerne knytningen, fjerner du avmerkingen. Bruke regler for å koble den til en annen regning.', - 'transaction_stored_link' => 'Transaksjon #{ID} ("{title}") har blitt lagret.', - 'transaction_new_stored_link' => 'Transaksjon #{ID} har blitt lagret.', - 'transaction_updated_link' => 'Transaksjon #{ID} ("{title}") har blitt oppdatert.', - 'transaction_updated_no_changes' => 'Transaksjon #{ID} ("{title}") fikk ingen endringer.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Brukt {amount} av {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Angre avstemming', + 'update_withdrawal' => 'Oppdater uttak', + 'update_deposit' => 'Oppdater innskudd', + 'update_transaction' => 'Oppdater transaksjonen', + 'update_transfer' => 'Oppdater overføring', + 'updated_withdrawal' => 'Oppdatert uttak ":description"', + 'updated_deposit' => 'Oppdatert innskudd ":description"', + 'updated_transfer' => 'Oppdatert overføring ":description"', + 'no_changes_withdrawal' => 'Uttak ":description" ble ikke endret.', + 'no_changes_deposit' => 'Innskudd ":description" ble ikke endret.', + 'no_changes_transfer' => 'Overføring ":description" ble ikke endret.', + 'delete_withdrawal' => 'Slett uttak ":description"', + 'delete_deposit' => 'Slett innskudd ":description"', + 'delete_transfer' => 'Slett overføring ":description"', + 'deleted_withdrawal' => 'Slettet uttak ":description"', + 'deleted_deposit' => 'Slettet innskudd ":description"', + 'deleted_transfer' => 'Slettet overføring ":description"', + 'deleted_reconciliation' => 'Slettet avstemmingstransaksjon ":description"', + 'stored_journal' => 'Opprettet ny transaksjon ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Vellykket! Ny transaksjon er opprettet', + 'updated_journal_no_descr' => 'Transaksjonen din ble oppdatert', + 'select_transactions' => 'Velg transaksjoner', + 'rule_group_select_transactions' => 'Påfør ":title" på transaksjonene', + 'rule_select_transactions' => 'Påfør ":title" på transaksjonene', + 'stop_selection' => 'Stop valg av transaksjoner', + 'reconcile_selected' => 'Avstem', + 'mass_delete_journals' => 'Slett flere transaksjoner', + 'mass_edit_journals' => 'Rediger flere transaksjoner', + 'mass_bulk_journals' => 'Rediger flere transaksjoner samtidig', + 'mass_bulk_journals_explain' => 'Dette skjemaet lar deg endre egenskaper for transaksjonene nedenfor i en oppdatering. Alle transaksjonene i tabellen vil bli oppdatert når du endrer parametrene du ser her.', + 'part_of_split' => 'Denne transaksjonen er en del av en delt transaksjon. Hvis du ikke har valgt alle delene, kan du ende opp med å endre bare halvparten av transaksjonen.', + 'bulk_set_new_values' => 'Bruk innstillingene nedenfor for å angi nye verdier. Hvis du lar dem stå tomme, forblir de tomme. Vær også oppmerksom på at kun uttak vil bli gitt et budsjett.', + 'no_bulk_category' => 'Ikke oppdater kategori', + 'no_bulk_budget' => 'Ikke oppdater budsjett', + 'no_bulk_tags' => 'Ikke oppdater tagg(er)', + 'replace_with_these_tags' => 'Erstatt med disse taggene', + 'append_these_tags' => 'Legg til disse taggene', + 'mass_edit' => 'Rediger individuelt valgte', + 'bulk_edit' => 'Rediger valgte i bulk', + 'mass_delete' => 'Slett valgte', + 'cannot_edit_other_fields' => 'Du kan ikke masseredigere andre felt enn de som er her, fordi det er ikke plass til å vise dem. Vennligst følg linken og rediger disse en om gangen hvis du må redigere disse feltene.', + 'cannot_change_amount_reconciled' => 'Du kan ikke endre antall avstemte transaksjoner.', + 'no_budget' => '(ingen budsjett)', + 'no_bill' => '(ingen regning)', + 'account_per_budget' => 'Konto per budsjett', + 'account_per_category' => 'Konto per kategori', + 'create_new_object' => 'Opprett', + 'empty' => '(tom)', + 'all_other_budgets' => '(alle andre budsjetter)', + 'all_other_accounts' => '(alle andre kontoer)', + 'expense_per_source_account' => 'Utgifter per kildekonto', + 'expense_per_destination_account' => 'Utgifter per målkonto', + 'income_per_destination_account' => 'Inntekter per destinasjonskonto', + 'spent_in_specific_category' => 'Brukt i kategori ":category"', + 'earned_in_specific_category' => 'Opptjent i kategori ":category"', + 'spent_in_specific_tag' => 'Brukt i taggen ":tag"', + 'earned_in_specific_tag' => 'Opptjent i tag ":tag"', + 'income_per_source_account' => 'Inntekter per kildekonto', + 'average_spending_per_destination' => 'Gjennomsnittlig utgift per målkonto', + 'average_spending_per_source' => 'Gjennomsnittlig utgift per kildekonto', + 'average_earning_per_source' => 'Gjennomsnittlig opptjente per kildekonto', + 'average_earning_per_destination' => 'Gjennomsnittlig opptjente per målkonto', + 'account_per_tag' => 'Konto per tagg', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tagg', + 'no_budget_squared' => '(ingen budsjett)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(ingen kontotype)', + 'opt_group_no_account_type' => '(ingen kontotype)', + 'opt_group_defaultAsset' => 'Standard aktivakontoer', + 'opt_group_savingAsset' => 'Sparekontoer', + 'opt_group_sharedAsset' => 'Delte aktivakontoer', + 'opt_group_ccAsset' => 'Kredittkort', + 'opt_group_cashWalletAsset' => 'Kontant lommebok', + 'opt_group_expense_account' => 'Utgiftskontoer', + 'opt_group_revenue_account' => 'Inntektskontoer', + 'opt_group_l_Loan' => 'Gjeld: Lån', + 'opt_group_cash_account' => 'Kontantkonto', + 'opt_group_l_Debt' => 'Gjeld: Gjeld', + 'opt_group_l_Mortgage' => 'Gjeld: Huslån', + 'opt_group_l_Credit card' => 'Gjeld: Kredittkort', + 'notes' => 'Notater', + 'unknown_journal_error' => 'Kunne ikke lagre transaksjonen. Vennligst sjekk loggfilene.', + 'attachment_not_found' => 'Finner ikke dette vedlegget.', + 'journal_link_bill' => 'Denne transaksjonen er knyttet til regning :name. Hvis du vil fjerne knytningen, fjerner du avmerkingen. Bruke regler for å koble den til en annen regning.', + 'transaction_stored_link' => 'Transaksjon #{ID} ("{title}") har blitt lagret.', + 'transaction_new_stored_link' => 'Transaksjon #{ID} har blitt lagret.', + 'transaction_updated_link' => 'Transaksjon #{ID} ("{title}") har blitt oppdatert.', + 'transaction_updated_no_changes' => 'Transaksjon #{ID} ("{title}") fikk ingen endringer.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Brukt {amount} av {total}', // new user: - 'welcome' => 'Velkommen til Firefly III!', - 'submit' => 'Send inn', - 'submission' => 'Innlevering', - 'submit_yes_really' => 'Registrer (Jeg vet hva jeg gjør)', - 'getting_started' => 'Kom igang', - 'to_get_started' => 'Det er godt å se at du har installert Firefly III. Vennligst skriv inn bankens navn og saldo på hovedkontoen din for å komme i gang. Du trenger Ikke bekymre deg hvis du har flere kontoer. Du kan legge dem til senere. Dette er bare for at Firefly III skal få noe data å arbeide med.', - 'savings_balance_text' => 'Firefly III vil automatisk opprette en sparekonto for deg. Som standard vil det ikke være penger på sparekontoen din, men hvis du oppgir saldoen din til Firefly III så blir den lagt inn for deg.', - 'finish_up_new_user' => 'Det var alt! Du kan fortsette ved å trykke Send. Deretter vil du bli tatt til startskjermen til Firefly III.', - 'stored_new_accounts_new_user' => 'Jippi! De nye kontoene dine ble lagret.', - 'set_preferred_language' => 'Hvis du foretrekker å bruke Firefly III med et annet språk, vennligst indiker det her.', - 'language' => 'Språk', - 'new_savings_account' => ':bank_name sparekonto', - 'cash_wallet' => 'Kontanter lommebok', - 'currency_not_present' => 'Hvis valutaen du vanligvis bruker ikke vises, ikke fortvil. Du kan opprette din egen valuta under Alternativer > valuta.', + 'welcome' => 'Velkommen til Firefly III!', + 'submit' => 'Send inn', + 'submission' => 'Innlevering', + 'submit_yes_really' => 'Registrer (Jeg vet hva jeg gjør)', + 'getting_started' => 'Kom igang', + 'to_get_started' => 'Det er godt å se at du har installert Firefly III. Vennligst skriv inn bankens navn og saldo på hovedkontoen din for å komme i gang. Du trenger Ikke bekymre deg hvis du har flere kontoer. Du kan legge dem til senere. Dette er bare for at Firefly III skal få noe data å arbeide med.', + 'savings_balance_text' => 'Firefly III vil automatisk opprette en sparekonto for deg. Som standard vil det ikke være penger på sparekontoen din, men hvis du oppgir saldoen din til Firefly III så blir den lagt inn for deg.', + 'finish_up_new_user' => 'Det var alt! Du kan fortsette ved å trykke Send. Deretter vil du bli tatt til startskjermen til Firefly III.', + 'stored_new_accounts_new_user' => 'Jippi! De nye kontoene dine ble lagret.', + 'set_preferred_language' => 'Hvis du foretrekker å bruke Firefly III med et annet språk, vennligst indiker det her.', + 'language' => 'Språk', + 'new_savings_account' => ':bank_name sparekonto', + 'cash_wallet' => 'Kontanter lommebok', + 'currency_not_present' => 'Hvis valutaen du vanligvis bruker ikke vises, ikke fortvil. Du kan opprette din egen valuta under Alternativer > valuta.', // home page: - 'transaction_table_description' => 'En tabell som inneholder transaksjonene dine', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Dine kontoer', - 'your_accounts' => 'Din konto oversikt', - 'category_overview' => 'Kategori oversikt', - 'expense_overview' => 'Utgiftskonto oversikt', - 'revenue_overview' => 'Inntektskonto oversikt', - 'budgetsAndSpending' => 'Budsjetter og utgifter', - 'budgets_and_spending' => 'Budsjetter og utgifter', - 'go_to_budget' => 'Gå til budsjett "{budget}"', - 'go_to_deposits' => 'Gå til innskudd', - 'go_to_expenses' => 'Gå til utgifter', - 'savings' => 'Oppspart', - 'newWithdrawal' => 'Ny utgift', - 'newDeposit' => 'Nytt innskudd', - 'newTransfer' => 'Ny overføring', - 'bills_to_pay' => 'Regninger å betale', - 'per_day' => 'Per dag', - 'left_to_spend_per_day' => 'Igjen å bruke per dag', - 'bills_paid' => 'Regninger betalt', - 'custom_period' => 'Tilpasset periode', - 'reset_to_current' => 'Tilbakestill til gjeldende periode', - 'select_period' => 'Velg en periode', + 'transaction_table_description' => 'En tabell som inneholder transaksjonene dine', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Dine kontoer', + 'your_accounts' => 'Din konto oversikt', + 'category_overview' => 'Kategori oversikt', + 'expense_overview' => 'Utgiftskonto oversikt', + 'revenue_overview' => 'Inntektskonto oversikt', + 'budgetsAndSpending' => 'Budsjetter og utgifter', + 'budgets_and_spending' => 'Budsjetter og utgifter', + 'go_to_budget' => 'Gå til budsjett "{budget}"', + 'go_to_deposits' => 'Gå til innskudd', + 'go_to_expenses' => 'Gå til utgifter', + 'savings' => 'Oppspart', + 'newWithdrawal' => 'Ny utgift', + 'newDeposit' => 'Nytt innskudd', + 'newTransfer' => 'Ny overføring', + 'bills_to_pay' => 'Regninger å betale', + 'per_day' => 'Per dag', + 'left_to_spend_per_day' => 'Igjen å bruke per dag', + 'bills_paid' => 'Regninger betalt', + 'custom_period' => 'Tilpasset periode', + 'reset_to_current' => 'Tilbakestill til gjeldende periode', + 'select_period' => 'Velg en periode', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Innstillinger', - 'logout' => 'Logg ut', - 'logout_other_sessions' => 'Logg ut alle andre økter', - 'toggleNavigation' => 'Vis/Skjul navigation', - 'searchPlaceholder' => 'Søk...', - 'version' => 'Versjon', - 'dashboard' => 'Startskjerm', - 'income_and_expense' => 'Inntekter og utgifter', - 'all_money' => 'Alle pengene dine', - 'unknown_source_plain' => 'Ukjent kilde-konto', - 'unknown_dest_plain' => 'Ukjent destinasjonskonto', - 'unknown_any_plain' => 'Ukjent konto', - 'unknown_budget_plain' => 'Mangler budsjett', - 'available_budget' => 'Tilgjengelige budsjett ({currency})', - 'currencies' => 'Valutaer', - 'activity' => 'Aktivitet', - 'usage' => 'Bruk', - 'accounts' => 'Kontoer', - 'Asset account' => 'Aktivakonto', - 'Default account' => 'Aktivakonto', - 'Expense account' => 'Utgiftskonto', - 'Revenue account' => 'Inntektskonto', - 'Initial balance account' => 'Startsaldokonto', - 'account_type_Asset account' => 'Aktivakonto', - 'account_type_Expense account' => 'Utgiftskonto', - 'account_type_Revenue account' => 'Inntektskonto', - 'account_type_Debt' => 'Gjeld', - 'account_type_Loan' => 'Lån', - 'account_type_Mortgage' => 'Boliglån', - 'account_type_debt' => 'Gjeld', - 'account_type_loan' => 'Lån', - 'account_type_mortgage' => 'Boliglån', - 'account_type_Credit card' => 'Kredittkort', - 'credit_card_type_monthlyFull' => 'Full betaling hver måned', - 'liability_direction_credit' => 'Jeg skylder denne gjelden', - 'liability_direction_debit' => 'Jeg skylder denne gjelden til en annen', - 'liability_direction_credit_short' => 'Jeg skuldet denne gjelden', - 'liability_direction_debit_short' => 'Skylder denne gjelden', - 'liability_direction__short' => 'Ukjent', - 'liability_direction_null_short' => 'Ukjent', - 'Liability credit' => 'Lån kreditt', - 'budgets' => 'Budsjetter', - 'tags' => 'Tagger', - 'reports' => 'Rapporter', - 'transactions' => 'Transaksjoner', - 'expenses' => 'Utgifter', - 'income' => 'Inntekt', - 'transfers' => 'Overføringer', - 'moneyManagement' => 'Pengestyring', - 'money_management' => 'Pengestyring', - 'tools' => 'Verktøy', - 'piggyBanks' => 'Sparegriser', - 'piggy_banks' => 'Sparegriser', - 'amount_x_of_y' => '{current} av {total}', - 'bills' => 'Regninger', - 'withdrawal' => 'Uttak', - 'opening_balance' => 'Startsaldo', - 'deposit' => 'Innskudd', - 'account' => 'Konto', - 'transfer' => 'Overføring', - 'Withdrawal' => 'Uttak', - 'Deposit' => 'Innskudd', - 'Transfer' => 'Overføring', - 'bill' => 'Regning', - 'yes' => 'Ja', - 'no' => 'Nei', - 'amount' => 'Beløp', - 'overview' => 'Oversikt', - 'saveOnAccount' => 'Spar på konto', - 'unknown' => 'Ukjent', - 'monthly' => 'Månedlig', - 'profile' => 'Profil', - 'errors' => 'Feil', - 'debt_start_date' => 'Startdato for gjeld', - 'debt_start_amount' => 'Start beløp for gjeld', - 'debt_start_amount_help' => 'Det er alltid best å sette denne verdien til et negativt beløp. Les hjelpesidene (topp til høyre (?)-ikonet) for mer informasjon.', - 'interest_period_help' => 'Dette feltet er rent kosmetisk og vil ikke bli beregnet for deg. Siden det viser seg at bankene er svært sneaky så Firefly III aldri får det riktig.', - 'store_new_liabilities_account' => 'Lagre ny gjeld', - 'edit_liabilities_account' => 'Rediger gjeld ":name"', - 'financial_control' => 'Finansiell kontroll', - 'accounting' => 'Regnskap', - 'automation' => 'Automatisering', - 'others' => 'Andre', - 'classification' => 'Klassifisering', - 'store_transaction' => 'Lagre transaksjon', + 'currency' => 'Valuta', + 'preferences' => 'Innstillinger', + 'logout' => 'Logg ut', + 'logout_other_sessions' => 'Logg ut alle andre økter', + 'toggleNavigation' => 'Vis/Skjul navigation', + 'searchPlaceholder' => 'Søk...', + 'version' => 'Versjon', + 'dashboard' => 'Startskjerm', + 'income_and_expense' => 'Inntekter og utgifter', + 'all_money' => 'Alle pengene dine', + 'unknown_source_plain' => 'Ukjent kilde-konto', + 'unknown_dest_plain' => 'Ukjent destinasjonskonto', + 'unknown_any_plain' => 'Ukjent konto', + 'unknown_budget_plain' => 'Mangler budsjett', + 'available_budget' => 'Tilgjengelige budsjett ({currency})', + 'currencies' => 'Valutaer', + 'activity' => 'Aktivitet', + 'usage' => 'Bruk', + 'accounts' => 'Kontoer', + 'Asset account' => 'Aktivakonto', + 'Default account' => 'Aktivakonto', + 'Expense account' => 'Utgiftskonto', + 'Revenue account' => 'Inntektskonto', + 'Initial balance account' => 'Startsaldokonto', + 'account_type_Asset account' => 'Aktivakonto', + 'account_type_Expense account' => 'Utgiftskonto', + 'account_type_Revenue account' => 'Inntektskonto', + 'account_type_Debt' => 'Gjeld', + 'account_type_Loan' => 'Lån', + 'account_type_Mortgage' => 'Boliglån', + 'account_type_debt' => 'Gjeld', + 'account_type_loan' => 'Lån', + 'account_type_mortgage' => 'Boliglån', + 'account_type_Credit card' => 'Kredittkort', + 'credit_card_type_monthlyFull' => 'Full betaling hver måned', + 'liability_direction_credit' => 'Jeg skylder denne gjelden', + 'liability_direction_debit' => 'Jeg skylder denne gjelden til en annen', + 'liability_direction_credit_short' => 'Jeg skuldet denne gjelden', + 'liability_direction_debit_short' => 'Skylder denne gjelden', + 'liability_direction__short' => 'Ukjent', + 'liability_direction_null_short' => 'Ukjent', + 'Liability credit' => 'Lån kreditt', + 'budgets' => 'Budsjetter', + 'tags' => 'Tagger', + 'reports' => 'Rapporter', + 'transactions' => 'Transaksjoner', + 'expenses' => 'Utgifter', + 'income' => 'Inntekt', + 'transfers' => 'Overføringer', + 'moneyManagement' => 'Pengestyring', + 'money_management' => 'Pengestyring', + 'tools' => 'Verktøy', + 'piggyBanks' => 'Sparegriser', + 'piggy_banks' => 'Sparegriser', + 'amount_x_of_y' => '{current} av {total}', + 'bills' => 'Regninger', + 'withdrawal' => 'Uttak', + 'opening_balance' => 'Startsaldo', + 'deposit' => 'Innskudd', + 'account' => 'Konto', + 'transfer' => 'Overføring', + 'Withdrawal' => 'Uttak', + 'Deposit' => 'Innskudd', + 'Transfer' => 'Overføring', + 'bill' => 'Regning', + 'yes' => 'Ja', + 'no' => 'Nei', + 'amount' => 'Beløp', + 'overview' => 'Oversikt', + 'saveOnAccount' => 'Spar på konto', + 'unknown' => 'Ukjent', + 'monthly' => 'Månedlig', + 'profile' => 'Profil', + 'errors' => 'Feil', + 'debt_start_date' => 'Startdato for gjeld', + 'debt_start_amount' => 'Start beløp for gjeld', + 'debt_start_amount_help' => 'Det er alltid best å sette denne verdien til et negativt beløp. Les hjelpesidene (topp til høyre (?)-ikonet) for mer informasjon.', + 'interest_period_help' => 'Dette feltet er rent kosmetisk og vil ikke bli beregnet for deg. Siden det viser seg at bankene er svært sneaky så Firefly III aldri får det riktig.', + 'store_new_liabilities_account' => 'Lagre ny gjeld', + 'edit_liabilities_account' => 'Rediger gjeld ":name"', + 'financial_control' => 'Finansiell kontroll', + 'accounting' => 'Regnskap', + 'automation' => 'Automatisering', + 'others' => 'Andre', + 'classification' => 'Klassifisering', + 'store_transaction' => 'Lagre transaksjon', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Standard finansiell rapport mellom :start og :end', - 'report_audit' => 'Transaksjonshistorikk og oversikt mellom :start og :end', - 'report_category' => 'Kategori rapport mellom :start og :end', - 'report_double' => 'Utgift/Inntekt kontorapport mellom :start og :end', - 'report_budget' => 'Budsjettrapport mellom :start og :end', - 'report_tag' => 'Tag-rapport mellom :start og :end', - 'quick_link_reports' => 'Hurtiglenker', - 'quick_link_examples' => 'Dette er bare noen eksempel linker for å komme i gang. Sjekk ut hjelpesidene under (?) -knappen for informasjon om alle rapporter og de magiske ordene som du kan bruke.', - 'quick_link_default_report' => 'Standard finansiell rapport', - 'quick_link_audit_report' => 'Oversikt over transaksjonshistorikk', - 'report_this_month_quick' => 'Inneværende måned, alle kontoer', - 'report_last_month_quick' => 'Forrige måned, alle kontoer', - 'report_this_year_quick' => 'Inneværende år, alle kontoer', - 'report_this_fiscal_year_quick' => 'Inneværende regnskapsår, alle kontoer', - 'report_all_time_quick' => 'Fra tidenes morgen, alle kontoer', - 'reports_can_bookmark' => 'Husk at rapporter kan bokmerkes.', - 'incomeVsExpenses' => 'Inntekter vs. utgifter', - 'accountBalances' => 'Saldo', - 'balanceStart' => 'Saldo ved starten av periode', - 'balanceEnd' => 'Saldo ved utgangen av perioden', - 'splitByAccount' => 'Del opp på konto', - 'coveredWithTags' => 'Dekket med tagger', - 'leftInBudget' => 'Igjen i budsjett', - 'left_in_debt' => 'Skyldig beløp', - 'sumOfSums' => 'Sum av summer', - 'noCategory' => '(ingen kategori)', - 'notCharged' => 'Ikke belastet (ennå)', - 'inactive' => 'Inaktiv', - 'active' => 'Aktiv', - 'difference' => 'Differanse', - 'money_flowing_in' => 'Inn', - 'money_flowing_out' => 'Ut', - 'topX' => 'topp :number', - 'show_full_list' => 'Vis hele listen', - 'show_only_top' => 'Vis bare topp :number', - 'report_type' => 'Rapporttype', - 'report_type_default' => 'Standard finansiell rapport', - 'report_type_audit' => 'Transaksjonshistorikk (revisjon)', - 'report_type_category' => 'Kategorirapport', - 'report_type_budget' => 'Budsjettrapport', - 'report_type_tag' => 'Taggrapport', - 'report_type_double' => 'Rapport for kostnader / inntekter', - 'more_info_help' => 'Mer informasjon om disse rapportene finner du på hjelpesidene. Trykk på (?) -ikonet øverst til høyre.', - 'report_included_accounts' => 'Inkluderte kontoer', - 'report_date_range' => 'Datointervall', - 'report_preset_ranges' => 'Forhåndsinnstilte områder', - 'shared' => 'Delt', - 'fiscal_year' => 'Regnskapsår', - 'income_entry' => 'Inntekter fra konto ":name" mellom :start og :end', - 'expense_entry' => 'Utgifter til konto ":name" mellom :start og :end', - 'category_entry' => 'Utgifter og inntekter i kategori ":name" mellom :start og :end', - 'budget_spent_amount' => 'Utgifter i budsjett ":budget" mellom :start og :end', - 'balance_amount' => 'Utgifter i budsjett ":budget" betalt fra konto ":account" mellom :start og :end', - 'no_audit_activity' => 'Ingen aktivitet er registrert på konto :account_name mellom :start og :end.', - 'audit_end_balance' => 'Kontobalanse fra :account_name ved slutten av :end var: :balance', - 'reports_extra_options' => 'Ekstra alternativer', - 'report_has_no_extra_options' => 'Denne rapporten har ingen ekstra alternativer', - 'reports_submit' => 'Vis rapport', - 'end_after_start_date' => 'Sluttdato for rapport må være etter startdato.', - 'select_category' => 'Velg kategori(er)', - 'select_budget' => 'Velg budsjett(er).', - 'select_tag' => 'Velg tagg(er).', - 'income_per_category' => 'Inntekter per kategori', - 'expense_per_category' => 'Utgifter per kategori', - 'expense_per_budget' => 'Utgifter per budsjett', - 'income_per_account' => 'Inntekter per konto', - 'expense_per_account' => 'Utgifter per konto', - 'expense_per_tag' => 'Utgifter per tagg', - 'income_per_tag' => 'Inntekter per tagg', - 'include_expense_not_in_budget' => 'Inkluderte utgifter ikke med i de valgte budsjettene', - 'include_expense_not_in_account' => 'Inkluderte utgifter ikke med i de valgte kontoene', - 'include_expense_not_in_category' => 'Inkluderte utgifter ikke med i de valgte kategoriene', - 'include_income_not_in_category' => 'Inkluderte inntekter ikke med i de valgte kategoriene', - 'include_income_not_in_account' => 'Inkluderte inntekter ikke med i de valgte kontoene', - 'include_income_not_in_tags' => 'Inkludert inntekt ikke i de valgte tag\'ene', - 'include_expense_not_in_tags' => 'Inkluderte utgifter ikke med i de valgte tag\'ene', - 'everything_else' => 'Alt annet', - 'income_and_expenses' => 'Inntekter og utgifter', - 'spent_average' => 'Brukt (gjennomsnittlig)', - 'income_average' => 'Inntekt (gjennomsnittlig)', - 'transaction_count' => 'Transaksjonsantall', - 'average_spending_per_account' => 'Gjennomsnittlig bruk per konto', - 'average_income_per_account' => 'Gjennomsnittlig inntekt per konto', - 'total' => 'Totalt', - 'description' => 'Beskrivelse', - 'sum_of_period' => 'Sum for perioden', - 'average_in_period' => 'Gjennomsnitt for periode', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Standard aktivakonto', - 'account_role_sharedAsset' => 'Delt aktivakonto', - 'account_role_savingAsset' => 'Sparekonto', - 'account_role_ccAsset' => 'Kredittkort', - 'account_role_cashWalletAsset' => 'Kontant lommebok', - 'budget_chart_click' => 'Vennligst trykk på et budsjettnavn i tabellen ovenfor for å se et diagram.', - 'category_chart_click' => 'Vennligst trykk på et kategorinavn i tabellen ovenfor for å se et diagram.', - 'in_out_accounts' => 'Tjent og brukt pr. kombinasjon', - 'in_out_accounts_per_asset' => 'Opptjent og brukt (per aktivakonto)', - 'in_out_per_category' => 'Tjent og brukt pr. kategori', - 'out_per_budget' => 'Brukt per budsjett', - 'select_expense_revenue' => 'Velg utgifts-/inntektskonto', - 'multi_currency_report_sum' => 'Siden denne listen inneholder kontoer med forskjellige valutaer vil summen mest sannsynlig ikke gi noen mening. Rapporten vil alltid falle tilbake på din standarde valuta.', - 'sum_in_default_currency' => 'Summen vil alltid be i din standard valuta.', - 'net_filtered_prefs' => 'Dette diagrammet vil aldri inkludere kontoer som ikke har "Inkluder i nettoverdi"-valget avkrysset.', + 'report_default' => 'Standard finansiell rapport mellom :start og :end', + 'report_audit' => 'Transaksjonshistorikk og oversikt mellom :start og :end', + 'report_category' => 'Kategori rapport mellom :start og :end', + 'report_double' => 'Utgift/Inntekt kontorapport mellom :start og :end', + 'report_budget' => 'Budsjettrapport mellom :start og :end', + 'report_tag' => 'Tag-rapport mellom :start og :end', + 'quick_link_reports' => 'Hurtiglenker', + 'quick_link_examples' => 'Dette er bare noen eksempel linker for å komme i gang. Sjekk ut hjelpesidene under (?) -knappen for informasjon om alle rapporter og de magiske ordene som du kan bruke.', + 'quick_link_default_report' => 'Standard finansiell rapport', + 'quick_link_audit_report' => 'Oversikt over transaksjonshistorikk', + 'report_this_month_quick' => 'Inneværende måned, alle kontoer', + 'report_last_month_quick' => 'Forrige måned, alle kontoer', + 'report_this_year_quick' => 'Inneværende år, alle kontoer', + 'report_this_fiscal_year_quick' => 'Inneværende regnskapsår, alle kontoer', + 'report_all_time_quick' => 'Fra tidenes morgen, alle kontoer', + 'reports_can_bookmark' => 'Husk at rapporter kan bokmerkes.', + 'incomeVsExpenses' => 'Inntekter vs. utgifter', + 'accountBalances' => 'Saldo', + 'balanceStart' => 'Saldo ved starten av periode', + 'balanceEnd' => 'Saldo ved utgangen av perioden', + 'splitByAccount' => 'Del opp på konto', + 'coveredWithTags' => 'Dekket med tagger', + 'leftInBudget' => 'Igjen i budsjett', + 'left_in_debt' => 'Skyldig beløp', + 'sumOfSums' => 'Sum av summer', + 'noCategory' => '(ingen kategori)', + 'notCharged' => 'Ikke belastet (ennå)', + 'inactive' => 'Inaktiv', + 'active' => 'Aktiv', + 'difference' => 'Differanse', + 'money_flowing_in' => 'Inn', + 'money_flowing_out' => 'Ut', + 'topX' => 'topp :number', + 'show_full_list' => 'Vis hele listen', + 'show_only_top' => 'Vis bare topp :number', + 'report_type' => 'Rapporttype', + 'report_type_default' => 'Standard finansiell rapport', + 'report_type_audit' => 'Transaksjonshistorikk (revisjon)', + 'report_type_category' => 'Kategorirapport', + 'report_type_budget' => 'Budsjettrapport', + 'report_type_tag' => 'Taggrapport', + 'report_type_double' => 'Rapport for kostnader / inntekter', + 'more_info_help' => 'Mer informasjon om disse rapportene finner du på hjelpesidene. Trykk på (?) -ikonet øverst til høyre.', + 'report_included_accounts' => 'Inkluderte kontoer', + 'report_date_range' => 'Datointervall', + 'report_preset_ranges' => 'Forhåndsinnstilte områder', + 'shared' => 'Delt', + 'fiscal_year' => 'Regnskapsår', + 'income_entry' => 'Inntekter fra konto ":name" mellom :start og :end', + 'expense_entry' => 'Utgifter til konto ":name" mellom :start og :end', + 'category_entry' => 'Utgifter og inntekter i kategori ":name" mellom :start og :end', + 'budget_spent_amount' => 'Utgifter i budsjett ":budget" mellom :start og :end', + 'balance_amount' => 'Utgifter i budsjett ":budget" betalt fra konto ":account" mellom :start og :end', + 'no_audit_activity' => 'Ingen aktivitet er registrert på konto :account_name mellom :start og :end.', + 'audit_end_balance' => 'Kontobalanse fra :account_name ved slutten av :end var: :balance', + 'reports_extra_options' => 'Ekstra alternativer', + 'report_has_no_extra_options' => 'Denne rapporten har ingen ekstra alternativer', + 'reports_submit' => 'Vis rapport', + 'end_after_start_date' => 'Sluttdato for rapport må være etter startdato.', + 'select_category' => 'Velg kategori(er)', + 'select_budget' => 'Velg budsjett(er).', + 'select_tag' => 'Velg tagg(er).', + 'income_per_category' => 'Inntekter per kategori', + 'expense_per_category' => 'Utgifter per kategori', + 'expense_per_budget' => 'Utgifter per budsjett', + 'income_per_account' => 'Inntekter per konto', + 'expense_per_account' => 'Utgifter per konto', + 'expense_per_tag' => 'Utgifter per tagg', + 'income_per_tag' => 'Inntekter per tagg', + 'include_expense_not_in_budget' => 'Inkluderte utgifter ikke med i de valgte budsjettene', + 'include_expense_not_in_account' => 'Inkluderte utgifter ikke med i de valgte kontoene', + 'include_expense_not_in_category' => 'Inkluderte utgifter ikke med i de valgte kategoriene', + 'include_income_not_in_category' => 'Inkluderte inntekter ikke med i de valgte kategoriene', + 'include_income_not_in_account' => 'Inkluderte inntekter ikke med i de valgte kontoene', + 'include_income_not_in_tags' => 'Inkludert inntekt ikke i de valgte tag\'ene', + 'include_expense_not_in_tags' => 'Inkluderte utgifter ikke med i de valgte tag\'ene', + 'everything_else' => 'Alt annet', + 'income_and_expenses' => 'Inntekter og utgifter', + 'spent_average' => 'Brukt (gjennomsnittlig)', + 'income_average' => 'Inntekt (gjennomsnittlig)', + 'transaction_count' => 'Transaksjonsantall', + 'average_spending_per_account' => 'Gjennomsnittlig bruk per konto', + 'average_income_per_account' => 'Gjennomsnittlig inntekt per konto', + 'total' => 'Totalt', + 'description' => 'Beskrivelse', + 'sum_of_period' => 'Sum for perioden', + 'average_in_period' => 'Gjennomsnitt for periode', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Standard aktivakonto', + 'account_role_sharedAsset' => 'Delt aktivakonto', + 'account_role_savingAsset' => 'Sparekonto', + 'account_role_ccAsset' => 'Kredittkort', + 'account_role_cashWalletAsset' => 'Kontant lommebok', + 'budget_chart_click' => 'Vennligst trykk på et budsjettnavn i tabellen ovenfor for å se et diagram.', + 'category_chart_click' => 'Vennligst trykk på et kategorinavn i tabellen ovenfor for å se et diagram.', + 'in_out_accounts' => 'Tjent og brukt pr. kombinasjon', + 'in_out_accounts_per_asset' => 'Opptjent og brukt (per aktivakonto)', + 'in_out_per_category' => 'Tjent og brukt pr. kategori', + 'out_per_budget' => 'Brukt per budsjett', + 'select_expense_revenue' => 'Velg utgifts-/inntektskonto', + 'multi_currency_report_sum' => 'Siden denne listen inneholder kontoer med forskjellige valutaer vil summen mest sannsynlig ikke gi noen mening. Rapporten vil alltid falle tilbake på din standarde valuta.', + 'sum_in_default_currency' => 'Summen vil alltid be i din standard valuta.', + 'net_filtered_prefs' => 'Dette diagrammet vil aldri inkludere kontoer som ikke har "Inkluder i nettoverdi"-valget avkrysset.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Diagram', - 'month' => 'Måned', - 'budget' => 'Budsjett', - 'spent' => 'Brukt', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Brukt i budsjett', - 'left_to_spend' => 'Igjen å bruke', - 'earned' => 'Opptjent', - 'overspent' => 'Overforbruk', - 'left' => 'Gjenværende', - 'max-amount' => 'Maksimumsbeløp', - 'min-amount' => 'Minimumsbeløp', - 'journal-amount' => 'Gjeldende regningspost', - 'name' => 'Navn', - 'date' => 'Dato', - 'date_and_time' => 'Dato og klokkeslett', - 'time' => 'Tid', - 'paid' => 'Betalt', - 'unpaid' => 'Ikke betalt', - 'day' => 'Dag', - 'budgeted' => 'Budsjettert', - 'period' => 'Periode', - 'balance' => 'Saldo', - 'in_out_period' => 'Inn + ut denne perioden', - 'sum' => 'Sum', - 'summary' => 'Oppsummering', - 'average' => 'Gjennomsnitt', - 'balanceFor' => 'Saldo for :name', - 'no_tags' => '(ingen tagger)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Diagram', + 'month' => 'Måned', + 'budget' => 'Budsjett', + 'spent' => 'Brukt', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Brukt i budsjett', + 'left_to_spend' => 'Igjen å bruke', + 'earned' => 'Opptjent', + 'overspent' => 'Overforbruk', + 'left' => 'Gjenværende', + 'max-amount' => 'Maksimumsbeløp', + 'min-amount' => 'Minimumsbeløp', + 'journal-amount' => 'Gjeldende regningspost', + 'name' => 'Navn', + 'date' => 'Dato', + 'date_and_time' => 'Dato og klokkeslett', + 'time' => 'Tid', + 'paid' => 'Betalt', + 'unpaid' => 'Ikke betalt', + 'day' => 'Dag', + 'budgeted' => 'Budsjettert', + 'period' => 'Periode', + 'balance' => 'Saldo', + 'in_out_period' => 'Inn + ut denne perioden', + 'sum' => 'Sum', + 'summary' => 'Oppsummering', + 'average' => 'Gjennomsnitt', + 'balanceFor' => 'Saldo for :name', + 'no_tags' => '(ingen tagger)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Hendelseshistorikk', - 'add_money_to_piggy' => 'Legg til penger i sparegris ":name"', - 'piggy_bank' => 'Sparegris', - 'new_piggy_bank' => 'Ny sparegris', - 'store_piggy_bank' => 'Opprett ny sparegris', - 'stored_piggy_bank' => 'Lagre ny sparegris ":name"', - 'account_status' => 'Kontostatus', - 'left_for_piggy_banks' => 'Gjenstår i sparegriser', - 'sum_of_piggy_banks' => 'Sum i sparegriser', - 'saved_so_far' => 'Spart til nå', - 'left_to_save' => 'Igjen å spare', - 'suggested_amount' => 'Foreslått månedlig beløp for å spare', - 'add_money_to_piggy_title' => 'Legg til penger i sparegris ":name"', - 'remove_money_from_piggy_title' => 'Fjern penger fra sparegris ":name"', - 'add' => 'Legg til', - 'no_money_for_piggy' => 'Du har ikke flere penger å legge i denne sparegrisen.', - 'suggested_savings_per_month' => 'Foreslått pr. måned', + 'event_history' => 'Hendelseshistorikk', + 'add_money_to_piggy' => 'Legg til penger i sparegris ":name"', + 'piggy_bank' => 'Sparegris', + 'new_piggy_bank' => 'Ny sparegris', + 'store_piggy_bank' => 'Opprett ny sparegris', + 'stored_piggy_bank' => 'Lagre ny sparegris ":name"', + 'account_status' => 'Kontostatus', + 'left_for_piggy_banks' => 'Gjenstår i sparegriser', + 'sum_of_piggy_banks' => 'Sum i sparegriser', + 'saved_so_far' => 'Spart til nå', + 'left_to_save' => 'Igjen å spare', + 'suggested_amount' => 'Foreslått månedlig beløp for å spare', + 'add_money_to_piggy_title' => 'Legg til penger i sparegris ":name"', + 'remove_money_from_piggy_title' => 'Fjern penger fra sparegris ":name"', + 'add' => 'Legg til', + 'no_money_for_piggy' => 'Du har ikke flere penger å legge i denne sparegrisen.', + 'suggested_savings_per_month' => 'Foreslått pr. måned', - 'remove' => 'Fjern', - 'max_amount_add' => 'Maksimumsbeløpet du kan legge til er', - 'max_amount_remove' => 'Maksimumsbeløpet du kan fjerne er', - 'update_piggy_button' => 'Oppdater sparegris', - 'update_piggy_title' => 'Oppdater sparegris ":name"', - 'updated_piggy_bank' => 'Oppdatert sparegris ":name"', - 'details' => 'Detaljer', - 'events' => 'Hendelser', - 'target_amount' => 'Målbeløp', - 'start_date' => 'Startdato', - 'no_start_date' => 'Ingen start dato', - 'target_date' => 'Måldato', - 'no_target_date' => 'Ingen måldato', - 'table' => 'Tabell', - 'delete_piggy_bank' => 'Slett sparegris ":name"', - 'cannot_add_amount_piggy' => 'Kan ikke legge :amount til i ":name".', - 'cannot_remove_from_piggy' => 'Kan ikke fjerne :amount fra ":name".', - 'deleted_piggy_bank' => 'Slettet sparegris ":name"', - 'added_amount_to_piggy' => 'La til :amount i ":name"', - 'removed_amount_from_piggy' => 'Fjernet :amount fra ":name"', - 'piggy_events' => 'Tilhørende sparegriser', + 'remove' => 'Fjern', + 'max_amount_add' => 'Maksimumsbeløpet du kan legge til er', + 'max_amount_remove' => 'Maksimumsbeløpet du kan fjerne er', + 'update_piggy_button' => 'Oppdater sparegris', + 'update_piggy_title' => 'Oppdater sparegris ":name"', + 'updated_piggy_bank' => 'Oppdatert sparegris ":name"', + 'details' => 'Detaljer', + 'events' => 'Hendelser', + 'target_amount' => 'Målbeløp', + 'start_date' => 'Startdato', + 'no_start_date' => 'Ingen start dato', + 'target_date' => 'Måldato', + 'no_target_date' => 'Ingen måldato', + 'table' => 'Tabell', + 'delete_piggy_bank' => 'Slett sparegris ":name"', + 'cannot_add_amount_piggy' => 'Kan ikke legge :amount til i ":name".', + 'cannot_remove_from_piggy' => 'Kan ikke fjerne :amount fra ":name".', + 'deleted_piggy_bank' => 'Slettet sparegris ":name"', + 'added_amount_to_piggy' => 'La til :amount i ":name"', + 'removed_amount_from_piggy' => 'Fjernet :amount fra ":name"', + 'piggy_events' => 'Tilhørende sparegriser', // tags - 'delete_tag' => 'Slett tag ":tag"', - 'deleted_tag' => 'Slettet tag ":tag"', - 'new_tag' => 'Lag ny tag', - 'edit_tag' => 'Rediger tag ":tag"', - 'updated_tag' => 'Oppdatert tag ":tag"', - 'created_tag' => 'Tag ":tag" er opprettet!', + 'delete_tag' => 'Slett tag ":tag"', + 'deleted_tag' => 'Slettet tag ":tag"', + 'new_tag' => 'Lag ny tag', + 'edit_tag' => 'Rediger tag ":tag"', + 'updated_tag' => 'Oppdatert tag ":tag"', + 'created_tag' => 'Tag ":tag" er opprettet!', - 'transaction_journal_information' => 'Transaksjonsinformasjon', - 'transaction_journal_amount' => 'Informasjon om beløp', - 'transaction_journal_meta' => 'Metainformasjon', - 'transaction_journal_more' => 'Mer informasjon', - 'basic_journal_information' => 'Grunnleggende transaksjonsinformasjon', - 'transaction_journal_extra' => 'Ekstra informasjon', - 'att_part_of_journal' => 'Lagret under «:journal»', - 'total_amount' => 'Totalbeløp', - 'number_of_decimals' => 'Antall desimaler', + 'transaction_journal_information' => 'Transaksjonsinformasjon', + 'transaction_journal_amount' => 'Informasjon om beløp', + 'transaction_journal_meta' => 'Metainformasjon', + 'transaction_journal_more' => 'Mer informasjon', + 'basic_journal_information' => 'Grunnleggende transaksjonsinformasjon', + 'transaction_journal_extra' => 'Ekstra informasjon', + 'att_part_of_journal' => 'Lagret under «:journal»', + 'total_amount' => 'Totalbeløp', + 'number_of_decimals' => 'Antall desimaler', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Invitasjonen til «:address» har allerede blitt innløst.', - 'invite_is_deleted' => 'Invitasjonen til «:address» har blitt slettet.', - 'invite_new_user_title' => 'Inviter ny bruker', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'E-postadresse', - 'invite_user' => 'Inviter bruker', - 'user_is_invited' => 'E-postadressen «:address» ble invitert til Firefly III', - 'administration' => 'Administrasjon', - 'system_settings' => 'Systeminnstillinger', - 'code_already_used' => 'Invitasjonskoden er allerede brukt', - 'user_administration' => 'Brukeradministrasjon', - 'list_all_users' => 'Alle brukere', - 'all_users' => 'Alle brukere', - 'instance_configuration' => 'Konfigurasjon', - 'firefly_instance_configuration' => 'Konfigurasjonsalternativer for Firefly III', - 'setting_single_user_mode' => 'Enkeltbrukermodus', - 'setting_single_user_mode_explain' => 'Som standard godtar Firefly III bare en (1) registrering: deg. Dette er et sikkerhetstiltak, som hindrer andre i å bruke din instans hvis du ikke tillater dem det. Fremtidige registreringer er blokkert. Når du krysser av denne ruten kan andre bruke din forekomst, forutsatt at de kan nå serveren (når den er koblet til Internett).', - 'store_configuration' => 'Lagre konfigurasjon', - 'single_user_administration' => 'Brukeradministrasjon for :email', - 'edit_user' => 'Rediger bruker :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Brukerdata', - 'user_information' => 'Brukerinformasjon', - 'total_size' => 'totalstørrelse', - 'budget_or_budgets' => ':count budsjett|:count budsjetter', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules regler i :count_groups regel gruppe(r)', - 'tag_or_tags' => ':count tagg|:count tagger', - 'configuration_updated' => 'Konfigurasjonen er oppdatert', - 'setting_is_demo_site' => 'Demo nettsted', - 'setting_is_demo_site_explain' => 'Hvis du avhuker denne boksen, vil installasjonen oppføre seg som om det er en demo site, som kan ha rare bivirkninger.', - 'block_code_bounced' => 'Epostmelding(er) kunne ikke leveres', - 'block_code_expired' => 'Demo-konto utløpt', - 'no_block_code' => 'Ingen grunn for utestengelse eller brukeren er ikke utestengt', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Brukeren har ikke bekreftet ny e-postadresse ennå', - 'admin_update_email' => 'I motsetning til profilsiden, vil brukeren IKKE bli varslet om at e-postadressen er endret!', - 'update_user' => 'Oppdater bruker', - 'updated_user' => 'Brukerdata er endret.', - 'delete_user' => 'Slett bruker :email', - 'user_deleted' => 'Brukeren er slettet', - 'send_test_email' => 'Send test-epostmelding', - 'send_test_email_text' => 'For å sjekke om installasjonen din er i stand til å sende e-post eller legge ut meldinger på Slack, trykk på denne knappen. Du vil ikke se noen feil her, men loggfilene vil vise eventuelle feil. Du kan trykke på denne knappen så mange ganger du vil. Det er ingen spamkontroll. Meldingen vil bli sendt til :email og bør komme om kort tid.', - 'send_message' => 'Send melding', - 'send_test_triggered' => 'Test ble utløst. Sjekk innboksen din og loggfilene.', - 'give_admin_careful' => 'Brukere som får administrative rettigheter kan ta bort din. Vær forsiktig.', - 'admin_maintanance_title' => 'Vedlikehold', - 'admin_maintanance_expl' => 'Noen smarte knapper for Firefly III vedlikehold', - 'admin_maintenance_clear_cache' => 'Tøm hurtigminne', - 'admin_notifications' => 'Admin varsler', - 'admin_notifications_expl' => 'Følgende varsler kan bli aktivert eller deaktivert av administratoren. Hvis du vil få disse meldingene over Slack også, må du sette "innkommende webhook"-URL.', - 'admin_notification_check_user_new_reg' => 'Bruker får velkomstmelding etter registrering', - 'admin_notification_check_admin_new_reg' => 'Administrator(er) får varsel om ny brukerregistrering', - 'admin_notification_check_new_version' => 'En ny versjon er tilgjengelig', - 'admin_notification_check_invite_created' => 'En bruker er invitert til Firefly III', - 'admin_notification_check_invite_redeemed' => 'En brukerinvitasjon er innløst', - 'all_invited_users' => 'Alle inviterte brukere', - 'save_notification_settings' => 'Lagre innstillinger', - 'notification_settings_saved' => 'Varslingsinnstillingene har blitt lagret', + 'invite_is_already_redeemed' => 'Invitasjonen til «:address» har allerede blitt innløst.', + 'invite_is_deleted' => 'Invitasjonen til «:address» har blitt slettet.', + 'invite_new_user_title' => 'Inviter ny bruker', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'E-postadresse', + 'invite_user' => 'Inviter bruker', + 'user_is_invited' => 'E-postadressen «:address» ble invitert til Firefly III', + 'administration' => 'Administrasjon', + 'system_settings' => 'Systeminnstillinger', + 'code_already_used' => 'Invitasjonskoden er allerede brukt', + 'user_administration' => 'Brukeradministrasjon', + 'list_all_users' => 'Alle brukere', + 'all_users' => 'Alle brukere', + 'instance_configuration' => 'Konfigurasjon', + 'firefly_instance_configuration' => 'Konfigurasjonsalternativer for Firefly III', + 'setting_single_user_mode' => 'Enkeltbrukermodus', + 'setting_single_user_mode_explain' => 'Som standard godtar Firefly III bare en (1) registrering: deg. Dette er et sikkerhetstiltak, som hindrer andre i å bruke din instans hvis du ikke tillater dem det. Fremtidige registreringer er blokkert. Når du krysser av denne ruten kan andre bruke din forekomst, forutsatt at de kan nå serveren (når den er koblet til Internett).', + 'store_configuration' => 'Lagre konfigurasjon', + 'single_user_administration' => 'Brukeradministrasjon for :email', + 'edit_user' => 'Rediger bruker :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Brukerdata', + 'user_information' => 'Brukerinformasjon', + 'total_size' => 'totalstørrelse', + 'budget_or_budgets' => ':count budsjett|:count budsjetter', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules regler i :count_groups regel gruppe(r)', + 'tag_or_tags' => ':count tagg|:count tagger', + 'configuration_updated' => 'Konfigurasjonen er oppdatert', + 'setting_is_demo_site' => 'Demo nettsted', + 'setting_is_demo_site_explain' => 'Hvis du avhuker denne boksen, vil installasjonen oppføre seg som om det er en demo site, som kan ha rare bivirkninger.', + 'block_code_bounced' => 'Epostmelding(er) kunne ikke leveres', + 'block_code_expired' => 'Demo-konto utløpt', + 'no_block_code' => 'Ingen grunn for utestengelse eller brukeren er ikke utestengt', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Brukeren har ikke bekreftet ny e-postadresse ennå', + 'admin_update_email' => 'I motsetning til profilsiden, vil brukeren IKKE bli varslet om at e-postadressen er endret!', + 'update_user' => 'Oppdater bruker', + 'updated_user' => 'Brukerdata er endret.', + 'delete_user' => 'Slett bruker :email', + 'user_deleted' => 'Brukeren er slettet', + 'send_test_email' => 'Send test-epostmelding', + 'send_test_email_text' => 'For å sjekke om installasjonen din er i stand til å sende e-post eller legge ut meldinger på Slack, trykk på denne knappen. Du vil ikke se noen feil her, men loggfilene vil vise eventuelle feil. Du kan trykke på denne knappen så mange ganger du vil. Det er ingen spamkontroll. Meldingen vil bli sendt til :email og bør komme om kort tid.', + 'send_message' => 'Send melding', + 'send_test_triggered' => 'Test ble utløst. Sjekk innboksen din og loggfilene.', + 'give_admin_careful' => 'Brukere som får administrative rettigheter kan ta bort din. Vær forsiktig.', + 'admin_maintanance_title' => 'Vedlikehold', + 'admin_maintanance_expl' => 'Noen smarte knapper for Firefly III vedlikehold', + 'admin_maintenance_clear_cache' => 'Tøm hurtigminne', + 'admin_notifications' => 'Admin varsler', + 'admin_notifications_expl' => 'Følgende varsler kan bli aktivert eller deaktivert av administratoren. Hvis du vil få disse meldingene over Slack også, må du sette "innkommende webhook"-URL.', + 'admin_notification_check_user_new_reg' => 'Bruker får velkomstmelding etter registrering', + 'admin_notification_check_admin_new_reg' => 'Administrator(er) får varsel om ny brukerregistrering', + 'admin_notification_check_new_version' => 'En ny versjon er tilgjengelig', + 'admin_notification_check_invite_created' => 'En bruker er invitert til Firefly III', + 'admin_notification_check_invite_redeemed' => 'En brukerinvitasjon er innløst', + 'all_invited_users' => 'Alle inviterte brukere', + 'save_notification_settings' => 'Lagre innstillinger', + 'notification_settings_saved' => 'Varslingsinnstillingene har blitt lagret', - 'split_transaction_title' => 'Beskrivelse av den splittende transaksjon', - 'split_transaction_title_help' => 'Hvis du oppretter en splittet transaksjon, må du ha en hoved beskrivelse for alle deler av transaksjonen.', - 'split_title_help' => 'Hvis du oppretter en splittet transaksjon, må du ha en global beskrivelse for alle deler av transaksjonen.', - 'you_create_transfer' => 'Du lager en overføring.', - 'you_create_withdrawal' => 'Du lager et uttak.', - 'you_create_deposit' => 'Du lager en innskud.', + 'split_transaction_title' => 'Beskrivelse av den splittende transaksjon', + 'split_transaction_title_help' => 'Hvis du oppretter en splittet transaksjon, må du ha en hoved beskrivelse for alle deler av transaksjonen.', + 'split_title_help' => 'Hvis du oppretter en splittet transaksjon, må du ha en global beskrivelse for alle deler av transaksjonen.', + 'you_create_transfer' => 'Du lager en overføring.', + 'you_create_withdrawal' => 'Du lager et uttak.', + 'you_create_deposit' => 'Du lager en innskud.', // links - 'journal_link_configuration' => 'Konfigurasjon av transaksjonslenker', - 'create_new_link_type' => 'Opprett ny lenktype', - 'store_new_link_type' => 'Lagre ny koblingstype', - 'update_link_type' => 'Oppdater koblingstype', - 'edit_link_type' => 'Rediger lenketype ":name"', - 'updated_link_type' => 'Oppdatert lenketype ":name"', - 'delete_link_type' => 'Slett lenketype ":name"', - 'deleted_link_type' => 'Slettet lenketype ":name"', - 'stored_new_link_type' => 'Lagre ny lenketype ":name"', - 'cannot_edit_link_type' => 'Kan ikke redigere lenketype ":name"', - 'link_type_help_name' => 'Dvs. "Duplikater"', - 'link_type_help_inward' => 'Dvs. "duplikater"', - 'link_type_help_outward' => 'Dvs. "dupliseres av"', - 'save_connections_by_moving' => 'Lagre koblingen mellom disse transaksjonene ved å flytte dem til en annen lenktype:', - 'do_not_save_connection' => '(ikke lagre kobling)', - 'link_transaction' => 'Sammenkoble transaksjon', - 'link_to_other_transaction' => 'Koble denne transaksjonen til en annen transaksjon', - 'select_transaction_to_link' => 'Velg en transaksjon å koble til denne transaksjonen. Lenker er for tiden ubrukt i Firefly III (bortsett fra å bli vist), men jeg planlegger å endre dette i fremtiden. Bruk søkeboksen for å velge en transaksjon, enten etter tittel eller etter ID. Hvis du vil legge til egendefinerte lenketyper, sjekk administrasjonsavsnittet.', - 'this_transaction' => 'Denne transaksjonen', - 'transaction' => 'Transaksjon', - 'comments' => 'Kommentarer', - 'link_notes' => 'Eventuelle notater du vil lagre med lenken.', - 'invalid_link_selection' => 'Kan ikke koble disse transaksjonene sammen', - 'selected_transaction' => 'Velg transaksjoner', - 'journals_linked' => 'Transaksjonene er knyttet sammen.', - 'journals_error_linked' => 'Disse transaksjonene er allerede knyttet sammen.', - 'journals_link_to_self' => 'Du kan ikke koble en transaksjon til seg selv', - 'journal_links' => 'Transaksjonskoblinger', - 'this_withdrawal' => 'Dette uttaket', - 'this_deposit' => 'Dette innskuddet', - 'this_transfer' => 'Denne overføringen', - 'overview_for_link' => 'Oversikt for linktype ":name"', - 'source_transaction' => 'Kildetransaksjon', - 'link_description' => 'Lenkebeskrivelse', - 'destination_transaction' => 'Destinasjonstransaksjon', - 'delete_journal_link' => 'Slett koblingen mellom :source og :destination', - 'deleted_link' => 'Slettet kobling', + 'journal_link_configuration' => 'Konfigurasjon av transaksjonslenker', + 'create_new_link_type' => 'Opprett ny lenktype', + 'store_new_link_type' => 'Lagre ny koblingstype', + 'update_link_type' => 'Oppdater koblingstype', + 'edit_link_type' => 'Rediger lenketype ":name"', + 'updated_link_type' => 'Oppdatert lenketype ":name"', + 'delete_link_type' => 'Slett lenketype ":name"', + 'deleted_link_type' => 'Slettet lenketype ":name"', + 'stored_new_link_type' => 'Lagre ny lenketype ":name"', + 'cannot_edit_link_type' => 'Kan ikke redigere lenketype ":name"', + 'link_type_help_name' => 'Dvs. "Duplikater"', + 'link_type_help_inward' => 'Dvs. "duplikater"', + 'link_type_help_outward' => 'Dvs. "dupliseres av"', + 'save_connections_by_moving' => 'Lagre koblingen mellom disse transaksjonene ved å flytte dem til en annen lenktype:', + 'do_not_save_connection' => '(ikke lagre kobling)', + 'link_transaction' => 'Sammenkoble transaksjon', + 'link_to_other_transaction' => 'Koble denne transaksjonen til en annen transaksjon', + 'select_transaction_to_link' => 'Velg en transaksjon å koble til denne transaksjonen. Lenker er for tiden ubrukt i Firefly III (bortsett fra å bli vist), men jeg planlegger å endre dette i fremtiden. Bruk søkeboksen for å velge en transaksjon, enten etter tittel eller etter ID. Hvis du vil legge til egendefinerte lenketyper, sjekk administrasjonsavsnittet.', + 'this_transaction' => 'Denne transaksjonen', + 'transaction' => 'Transaksjon', + 'comments' => 'Kommentarer', + 'link_notes' => 'Eventuelle notater du vil lagre med lenken.', + 'invalid_link_selection' => 'Kan ikke koble disse transaksjonene sammen', + 'selected_transaction' => 'Velg transaksjoner', + 'journals_linked' => 'Transaksjonene er knyttet sammen.', + 'journals_error_linked' => 'Disse transaksjonene er allerede knyttet sammen.', + 'journals_link_to_self' => 'Du kan ikke koble en transaksjon til seg selv', + 'journal_links' => 'Transaksjonskoblinger', + 'this_withdrawal' => 'Dette uttaket', + 'this_deposit' => 'Dette innskuddet', + 'this_transfer' => 'Denne overføringen', + 'overview_for_link' => 'Oversikt for linktype ":name"', + 'source_transaction' => 'Kildetransaksjon', + 'link_description' => 'Lenkebeskrivelse', + 'destination_transaction' => 'Destinasjonstransaksjon', + 'delete_journal_link' => 'Slett koblingen mellom :source og :destination', + 'deleted_link' => 'Slettet kobling', // link translations: - 'Paid_name' => 'Betalt', - 'Refund_name' => 'Refusjon', - 'Reimbursement_name' => 'Tilbakebetaling', - 'Related_name' => 'Relatert', - 'relates to_inward' => 'relatert til', - 'is (partially) refunded by_inward' => 'er (delvis) refundert av', - 'is (partially) paid for by_inward' => 'er (delvis) betalt av', - 'is (partially) reimbursed by_inward' => 'er (delvis) tilbakebetalt av', - 'inward_transaction' => 'Innlands transaksjon', - 'outward_transaction' => 'Utenland transaksjon', - 'relates to_outward' => 'relatert til', - '(partially) refunds_outward' => '(delvise) refusjoner', - '(partially) pays for_outward' => 'betaler (delvis) for', - '(partially) reimburses_outward' => 'tilbakebetaler (delvis)', - 'is (partially) refunded by' => 'er (delvis) refundert av', - 'is (partially) paid for by' => 'er (delvis) betalt av', - 'is (partially) reimbursed by' => 'er (delvis) tilbakebetalt av', - 'relates to' => 'relatert til', - '(partially) refunds' => '(delvise) refusjoner', - '(partially) pays for' => 'betaler (delvis) for', - '(partially) reimburses' => 'tilbakebetaler (delvis)', + 'Paid_name' => 'Betalt', + 'Refund_name' => 'Refusjon', + 'Reimbursement_name' => 'Tilbakebetaling', + 'Related_name' => 'Relatert', + 'relates to_inward' => 'relatert til', + 'is (partially) refunded by_inward' => 'er (delvis) refundert av', + 'is (partially) paid for by_inward' => 'er (delvis) betalt av', + 'is (partially) reimbursed by_inward' => 'er (delvis) tilbakebetalt av', + 'inward_transaction' => 'Innlands transaksjon', + 'outward_transaction' => 'Utenland transaksjon', + 'relates to_outward' => 'relatert til', + '(partially) refunds_outward' => '(delvise) refusjoner', + '(partially) pays for_outward' => 'betaler (delvis) for', + '(partially) reimburses_outward' => 'tilbakebetaler (delvis)', + 'is (partially) refunded by' => 'er (delvis) refundert av', + 'is (partially) paid for by' => 'er (delvis) betalt av', + 'is (partially) reimbursed by' => 'er (delvis) tilbakebetalt av', + 'relates to' => 'relatert til', + '(partially) refunds' => '(delvise) refusjoner', + '(partially) pays for' => 'betaler (delvis) for', + '(partially) reimburses' => 'tilbakebetaler (delvis)', // split a transaction: - 'splits' => 'Deler opp', - 'add_another_split' => 'Legg til en oppdeling til', - 'cannot_edit_opening_balance' => 'Du kan ikke redigere åpningssaldoen til en konto.', - 'no_edit_multiple_left' => 'Du har ikke valgt en tillatt transaksjon for redigering.', - 'breadcrumb_convert_group' => 'Konverter transaksjonen', - 'convert_invalid_source' => 'Kildeinformasjon er ugyldig for transaksjon #%d.', - 'convert_invalid_destination' => 'Målinformasjon er ugyldig for transaksjon #%d.', - 'create_another' => 'Gå tilbake hit etter lagring for å opprette en ny.', - 'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsette å redigere.', - 'store_as_new' => 'Lagre som en ny transaksjon istedenfor å oppdatere.', - 'reset_after' => 'Nullstill skjema etter innsending', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Utvid splitt', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Kollaps deling', + 'splits' => 'Deler opp', + 'add_another_split' => 'Legg til en oppdeling til', + 'cannot_edit_opening_balance' => 'Du kan ikke redigere åpningssaldoen til en konto.', + 'no_edit_multiple_left' => 'Du har ikke valgt en tillatt transaksjon for redigering.', + 'breadcrumb_convert_group' => 'Konverter transaksjonen', + 'convert_invalid_source' => 'Kildeinformasjon er ugyldig for transaksjon #%d.', + 'convert_invalid_destination' => 'Målinformasjon er ugyldig for transaksjon #%d.', + 'create_another' => 'Gå tilbake hit etter lagring for å opprette en ny.', + 'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsette å redigere.', + 'store_as_new' => 'Lagre som en ny transaksjon istedenfor å oppdatere.', + 'reset_after' => 'Nullstill skjema etter innsending', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Utvid splitt', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Kollaps deling', // object groups - 'default_group_title_name' => '(ikke gruppert)', - 'default_group_title_name_plain' => 'ikke gruppert', + 'default_group_title_name' => '(ikke gruppert)', + 'default_group_title_name_plain' => 'ikke gruppert', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'La oss opprette en aktivakonto!', - 'no_accounts_intro_asset' => 'Du har ingen aktivakontoer ennå. Aktivakontoer er hovedkontoene dine: brukskonto, sparekonto, delt konto eller til og med kredittkortet ditt.', - 'no_accounts_imperative_asset' => 'For å begynne å bruke Firefly III må du opprette minst én aktivakonto. La oss gjøre det nå:', - 'no_accounts_create_asset' => 'Opprett en aktivakonto', - 'no_accounts_title_expense' => 'La oss lage en utgiftskonto!', - 'no_accounts_intro_expense' => 'Du har ingen utgiftskonto ennå. Utgiftskontoer er de stedene du bruker penger, for eksempel butikker og supermarkeder.', - 'no_accounts_imperative_expense' => 'Utgiftskontoer opprettes automatisk når du oppretter transaksjoner, men du kan også opprette dem manuelt, hvis du vil. La oss lage en nå:', - 'no_accounts_create_expense' => 'Opprett en utgiftskonto', - 'no_accounts_title_revenue' => 'La oss opprette en inntektskonto!', - 'no_accounts_intro_revenue' => 'Du har ingen inntektskonto ennå. Inntektskontoer er de stedene du mottar penger fra, for eksempel arbeidsgiveren din.', - 'no_accounts_imperative_revenue' => 'Inntektsskontoer opprettes automatisk når du oppretter transaksjoner, men du kan også opprette dem manuelt, hvis du vil. La oss lage en nå:', - 'no_accounts_create_revenue' => 'Opprett en inntektskonto', - 'no_accounts_title_liabilities' => 'La oss lage et lån!', - 'no_accounts_intro_liabilities' => 'Du har ingen gjeld ennå. "Gjeldskonto" er kontoer som du registrerer (studie) lån og andre former for gjeld på.', - 'no_accounts_imperative_liabilities' => 'Du behøver ikke bruke denne funksjonen, men den kan være fornuftig å bruke når du vil ha kontroll på disse tingene.', - 'no_accounts_create_liabilities' => 'Opprett gjeld', - 'no_budgets_title_default' => 'La oss lage et budsjett', - 'no_rules_title_default' => 'La oss lage en regel', - 'no_budgets_intro_default' => 'Du har ingen budsjett ennå. Budsjett brukes til å organisere utgiftene i logiske grupper, som du kan sette tak på for å begrense utgiftene dine.', - 'no_rules_intro_default' => 'Du har ingen regler ennå. Regler er kraftfulle automatiseringer som kan håndtere transaksjoner for deg.', - 'no_rules_imperative_default' => 'Regler kan være veldig nyttige når du håndterer transaksjoner. La oss lage en nå:', - 'no_budgets_imperative_default' => 'Budsjett er et basis verktøy for finansiell administrasjon. La oss lage et nå:', - 'no_budgets_create_default' => 'Opprett et budsjett', - 'no_rules_create_default' => 'Opprett en regel', - 'no_categories_title_default' => 'La oss lage en kategori!', - 'no_categories_intro_default' => 'Du har ingen kategorier ennå. Kategorier brukes til å finjustere dine transaksjoner og merke dem med sin egen kategori.', - 'no_categories_imperative_default' => 'Kategorier opprettes automatisk når du oppretter transaksjoner, men du kan opprette en manuelt også. La oss opprette en nå:', - 'no_categories_create_default' => 'Opprett en kategori', - 'no_tags_title_default' => 'La oss lage en tagg!', - 'no_tags_intro_default' => 'Du har ingen tagger enda. Tagger benyttes for å finjustere transaksjonene dine og merke dem med spesifikke nøkkelord.', - 'no_tags_imperative_default' => 'Tags blir opprettet automatisk når du lager transaksjoner, men du kan lage de manuelt også. La oss lage en nå:', - 'no_tags_create_default' => 'Opprett en tagg', - 'no_transactions_title_withdrawal' => 'La oss lage en utgift!', - 'no_transactions_intro_withdrawal' => 'Du har ingen utgifter ennå. Du kan legge inn utgifter for å begynne å administrere din økonomi.', - 'no_transactions_imperative_withdrawal' => 'Har du brukt penger? Da bør du skrive det ned:', - 'no_transactions_create_withdrawal' => 'Opprett en utgift', - 'no_transactions_title_deposit' => 'La oss legge inn noen inntekter!', - 'no_transactions_intro_deposit' => 'Du har ingen registrert inntekt ennå. Du kan legge inn inntekter for å begynne å administrere din økonomi.', - 'no_transactions_imperative_deposit' => 'Har du mottatt penger? Da bør du skrive det ned:', - 'no_transactions_create_deposit' => 'Opprett et innskudd', - 'no_transactions_title_transfers' => 'La oss legge inn en overføring!', - 'no_transactions_intro_transfers' => 'Du har ingen overføringer ennå. Når du flytter penger mellom aktivakontoer, registreres dette som en overføring.', - 'no_transactions_imperative_transfers' => 'Har du flyttet penger rundt? Da bør du skrive det ned:', - 'no_transactions_create_transfers' => 'Opprett en overføring', - 'no_piggies_title_default' => 'La oss lage en sparegris!', - 'no_piggies_intro_default' => 'Du har ingen sparegriser ennå. Du kan opprette sparegriser for å forenkle sparing og holde oversikt over hva du sparer til.', - 'no_piggies_imperative_default' => 'Har du ting du sparer penger til? Lag en sparegris for å få kontroll på sparingen:', - 'no_piggies_create_default' => 'Lag en ny sparegris', - 'no_bills_title_default' => 'La oss legge inn en regning!', - 'no_bills_intro_default' => 'Du har ingen regninger ennå. Du kan opprette regninger for å holde oversikt over vanlige utgifter, som husleie eller forsikringer.', - 'no_bills_imperative_default' => 'Har du regninger som kommer jevnlig? Opprett en regning og for å holde styr på dine betalinger:', - 'no_bills_create_default' => 'Opprett en regning', + 'no_accounts_title_asset' => 'La oss opprette en aktivakonto!', + 'no_accounts_intro_asset' => 'Du har ingen aktivakontoer ennå. Aktivakontoer er hovedkontoene dine: brukskonto, sparekonto, delt konto eller til og med kredittkortet ditt.', + 'no_accounts_imperative_asset' => 'For å begynne å bruke Firefly III må du opprette minst én aktivakonto. La oss gjøre det nå:', + 'no_accounts_create_asset' => 'Opprett en aktivakonto', + 'no_accounts_title_expense' => 'La oss lage en utgiftskonto!', + 'no_accounts_intro_expense' => 'Du har ingen utgiftskonto ennå. Utgiftskontoer er de stedene du bruker penger, for eksempel butikker og supermarkeder.', + 'no_accounts_imperative_expense' => 'Utgiftskontoer opprettes automatisk når du oppretter transaksjoner, men du kan også opprette dem manuelt, hvis du vil. La oss lage en nå:', + 'no_accounts_create_expense' => 'Opprett en utgiftskonto', + 'no_accounts_title_revenue' => 'La oss opprette en inntektskonto!', + 'no_accounts_intro_revenue' => 'Du har ingen inntektskonto ennå. Inntektskontoer er de stedene du mottar penger fra, for eksempel arbeidsgiveren din.', + 'no_accounts_imperative_revenue' => 'Inntektsskontoer opprettes automatisk når du oppretter transaksjoner, men du kan også opprette dem manuelt, hvis du vil. La oss lage en nå:', + 'no_accounts_create_revenue' => 'Opprett en inntektskonto', + 'no_accounts_title_liabilities' => 'La oss lage et lån!', + 'no_accounts_intro_liabilities' => 'Du har ingen gjeld ennå. "Gjeldskonto" er kontoer som du registrerer (studie) lån og andre former for gjeld på.', + 'no_accounts_imperative_liabilities' => 'Du behøver ikke bruke denne funksjonen, men den kan være fornuftig å bruke når du vil ha kontroll på disse tingene.', + 'no_accounts_create_liabilities' => 'Opprett gjeld', + 'no_budgets_title_default' => 'La oss lage et budsjett', + 'no_rules_title_default' => 'La oss lage en regel', + 'no_budgets_intro_default' => 'Du har ingen budsjett ennå. Budsjett brukes til å organisere utgiftene i logiske grupper, som du kan sette tak på for å begrense utgiftene dine.', + 'no_rules_intro_default' => 'Du har ingen regler ennå. Regler er kraftfulle automatiseringer som kan håndtere transaksjoner for deg.', + 'no_rules_imperative_default' => 'Regler kan være veldig nyttige når du håndterer transaksjoner. La oss lage en nå:', + 'no_budgets_imperative_default' => 'Budsjett er et basis verktøy for finansiell administrasjon. La oss lage et nå:', + 'no_budgets_create_default' => 'Opprett et budsjett', + 'no_rules_create_default' => 'Opprett en regel', + 'no_categories_title_default' => 'La oss lage en kategori!', + 'no_categories_intro_default' => 'Du har ingen kategorier ennå. Kategorier brukes til å finjustere dine transaksjoner og merke dem med sin egen kategori.', + 'no_categories_imperative_default' => 'Kategorier opprettes automatisk når du oppretter transaksjoner, men du kan opprette en manuelt også. La oss opprette en nå:', + 'no_categories_create_default' => 'Opprett en kategori', + 'no_tags_title_default' => 'La oss lage en tagg!', + 'no_tags_intro_default' => 'Du har ingen tagger enda. Tagger benyttes for å finjustere transaksjonene dine og merke dem med spesifikke nøkkelord.', + 'no_tags_imperative_default' => 'Tags blir opprettet automatisk når du lager transaksjoner, men du kan lage de manuelt også. La oss lage en nå:', + 'no_tags_create_default' => 'Opprett en tagg', + 'no_transactions_title_withdrawal' => 'La oss lage en utgift!', + 'no_transactions_intro_withdrawal' => 'Du har ingen utgifter ennå. Du kan legge inn utgifter for å begynne å administrere din økonomi.', + 'no_transactions_imperative_withdrawal' => 'Har du brukt penger? Da bør du skrive det ned:', + 'no_transactions_create_withdrawal' => 'Opprett en utgift', + 'no_transactions_title_deposit' => 'La oss legge inn noen inntekter!', + 'no_transactions_intro_deposit' => 'Du har ingen registrert inntekt ennå. Du kan legge inn inntekter for å begynne å administrere din økonomi.', + 'no_transactions_imperative_deposit' => 'Har du mottatt penger? Da bør du skrive det ned:', + 'no_transactions_create_deposit' => 'Opprett et innskudd', + 'no_transactions_title_transfers' => 'La oss legge inn en overføring!', + 'no_transactions_intro_transfers' => 'Du har ingen overføringer ennå. Når du flytter penger mellom aktivakontoer, registreres dette som en overføring.', + 'no_transactions_imperative_transfers' => 'Har du flyttet penger rundt? Da bør du skrive det ned:', + 'no_transactions_create_transfers' => 'Opprett en overføring', + 'no_piggies_title_default' => 'La oss lage en sparegris!', + 'no_piggies_intro_default' => 'Du har ingen sparegriser ennå. Du kan opprette sparegriser for å forenkle sparing og holde oversikt over hva du sparer til.', + 'no_piggies_imperative_default' => 'Har du ting du sparer penger til? Lag en sparegris for å få kontroll på sparingen:', + 'no_piggies_create_default' => 'Lag en ny sparegris', + 'no_bills_title_default' => 'La oss legge inn en regning!', + 'no_bills_intro_default' => 'Du har ingen regninger ennå. Du kan opprette regninger for å holde oversikt over vanlige utgifter, som husleie eller forsikringer.', + 'no_bills_imperative_default' => 'Har du regninger som kommer jevnlig? Opprett en regning og for å holde styr på dine betalinger:', + 'no_bills_create_default' => 'Opprett en regning', // recurring transactions - 'create_right_now' => 'Opprett med en gang', - 'no_new_transaction_in_recurrence' => 'Ingen ny transaksjon ble opprettet. Kanskje de allerede var utført for denne datoen?', - 'recurrences' => 'Gjentakende transaksjoner', - 'repeat_until_in_past' => 'Denne gjentakende transaksjonen sluttet å gjenta :date.', - 'recurring_calendar_view' => 'Kalender', - 'no_recurring_title_default' => 'La oss opprette en gjentakende transaksjon!', - 'no_recurring_intro_default' => 'Du har ingen gjentakende transaksjoner ennå. Du kan bruke disse for å få Firefly III til å automatisk opprette transaksjoner for deg.', - 'no_recurring_imperative_default' => 'Dette er en ganske avansert funksjon, men det kan være svært nyttig. Husk å lese dokumentasjonen ((?)-ikonet øverst til høyre) før du fortsetter.', - 'no_recurring_create_default' => 'Opprett en gjentakende transaksjon', - 'make_new_recurring' => 'Opprett en gjentakende transaksjon', - 'recurring_daily' => 'Daglig', - 'recurring_weekly' => 'Hver uke på :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Hver måned på :dayOfMonth :weekday', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Hver måned på :dayOfMonth :weekday', - 'recurring_yearly' => 'Hvert år den :date', - 'overview_for_recurrence' => 'Oversikt for gjentakende transaksjon ":title"', - 'warning_duplicates_repetitions' => 'I sjeldne tilfeller vises datoene to ganger i listen. Dette kan skje når flere gjentakelser kolliderer. Firefly III genererer alltid én transaksjon per dag.', - 'created_transactions' => 'Relaterte transaksjoner', - 'expected_withdrawals' => 'Forventede uttak', - 'expected_deposits' => 'Forventede innskudd', - 'expected_transfers' => 'Forventede overføringer', - 'created_withdrawals' => 'Opprettede uttak', - 'created_deposits' => 'Opprettede innskudd', - 'created_transfers' => 'Opprettede overføringer', - 'recurring_info' => 'Gjentagende transaksjon :count / :total', - 'created_from_recurrence' => 'Opprettet fra gjentakende transaksjon ":title" (#:id)', - 'recurring_never_cron' => 'Det synes at cron jobben som er nødvendig for å støtte gjentakende transaksjoner har aldri kjørt. Dette er selvfølgelig normalt når du nettopp har installert Firefly III, men dette bør settes opp så snart som mulig. Sjekk ut hjelp-sidene ved å bruke (?) -ikonet i øverste høyre hjørne på siden.', - 'recurring_cron_long_ago' => 'Det ser ut som det har gått mer enn 36 timer siden cron job\'en for å støtte gjentakende transaksjoner har kjørt. Er du sikker på at den er satt opp riktig? Sjekk ut hjelpe-sidene ved å bruke (?) -ikonet i øverste høyre hjørne på siden.', + 'create_right_now' => 'Opprett med en gang', + 'no_new_transaction_in_recurrence' => 'Ingen ny transaksjon ble opprettet. Kanskje de allerede var utført for denne datoen?', + 'recurrences' => 'Gjentakende transaksjoner', + 'repeat_until_in_past' => 'Denne gjentakende transaksjonen sluttet å gjenta :date.', + 'recurring_calendar_view' => 'Kalender', + 'no_recurring_title_default' => 'La oss opprette en gjentakende transaksjon!', + 'no_recurring_intro_default' => 'Du har ingen gjentakende transaksjoner ennå. Du kan bruke disse for å få Firefly III til å automatisk opprette transaksjoner for deg.', + 'no_recurring_imperative_default' => 'Dette er en ganske avansert funksjon, men det kan være svært nyttig. Husk å lese dokumentasjonen ((?)-ikonet øverst til høyre) før du fortsetter.', + 'no_recurring_create_default' => 'Opprett en gjentakende transaksjon', + 'make_new_recurring' => 'Opprett en gjentakende transaksjon', + 'recurring_daily' => 'Daglig', + 'recurring_weekly' => 'Hver uke på :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Hver måned på :dayOfMonth :weekday', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Hver måned på :dayOfMonth :weekday', + 'recurring_yearly' => 'Hvert år den :date', + 'overview_for_recurrence' => 'Oversikt for gjentakende transaksjon ":title"', + 'warning_duplicates_repetitions' => 'I sjeldne tilfeller vises datoene to ganger i listen. Dette kan skje når flere gjentakelser kolliderer. Firefly III genererer alltid én transaksjon per dag.', + 'created_transactions' => 'Relaterte transaksjoner', + 'expected_withdrawals' => 'Forventede uttak', + 'expected_deposits' => 'Forventede innskudd', + 'expected_transfers' => 'Forventede overføringer', + 'created_withdrawals' => 'Opprettede uttak', + 'created_deposits' => 'Opprettede innskudd', + 'created_transfers' => 'Opprettede overføringer', + 'recurring_info' => 'Gjentagende transaksjon :count / :total', + 'created_from_recurrence' => 'Opprettet fra gjentakende transaksjon ":title" (#:id)', + 'recurring_never_cron' => 'Det synes at cron jobben som er nødvendig for å støtte gjentakende transaksjoner har aldri kjørt. Dette er selvfølgelig normalt når du nettopp har installert Firefly III, men dette bør settes opp så snart som mulig. Sjekk ut hjelp-sidene ved å bruke (?) -ikonet i øverste høyre hjørne på siden.', + 'recurring_cron_long_ago' => 'Det ser ut som det har gått mer enn 36 timer siden cron job\'en for å støtte gjentakende transaksjoner har kjørt. Er du sikker på at den er satt opp riktig? Sjekk ut hjelpe-sidene ved å bruke (?) -ikonet i øverste høyre hjørne på siden.', - 'create_new_recurrence' => 'Lag ny gjentakende transaksjon', - 'help_first_date' => 'Spesifiser den første forventede gjentakelse, det må være i fremtiden.', - 'help_first_date_no_past' => 'Spesifiser den første forventede gjentakelse. Firefly III vil ikke opprette transaksjoner i fortiden.', - 'no_currency' => '(ingen valuta)', - 'mandatory_for_recurring' => 'Pålagt gjentakelses informasjon', - 'mandatory_for_transaction' => 'Pålagt transaksjons informasjon', - 'optional_for_recurring' => 'Valgfritt gjentakelses informasjon', - 'optional_for_transaction' => 'Valgfritt transaksjons informasjon', - 'change_date_other_options' => 'Ved å endre på "første dato" får du flere valg.', - 'mandatory_fields_for_tranaction' => 'Verdiene her vil ende opp i transaksjonene som blir opprettet', - 'click_for_calendar' => 'Trykk her for å få en kalender som viser deg når transaksjonen vil gjenta seg.', - 'repeat_forever' => 'Gjenta for alltid', - 'repeat_until_date' => 'Gjenta til dato', - 'repeat_times' => 'Gjenta antall ganger', - 'recurring_skips_one' => 'Annen hver', - 'recurring_skips_more' => 'Hopper over :count forekomster', - 'store_new_recurrence' => 'Lagre gjentakende transaksjon', - 'stored_new_recurrence' => 'Gjentakende transaksjon ":title" lagret.', - 'edit_recurrence' => 'Rediger gjentakende transaksjon ":title"', - 'recurring_repeats_until' => 'Gjenta til :date', - 'recurring_repeats_forever' => 'Gjenta for alltid', - 'recurring_repeats_x_times' => 'Gjentas om :count|Gjentar seg :count ganger', - 'update_recurrence' => 'Oppdater gjentakende transaksjon', - 'updated_recurrence' => 'Oppdatert gjentakende transaksjon ":title"', - 'recurrence_is_inactive' => 'Denne gjentakende transaksjonen er ikke aktiv og vil ikke generere nye transaksjoner.', - 'delete_recurring' => 'Slett gjentakende transaksjon ":title"', - 'new_recurring_transaction' => 'Opprett gjentakende transaksjon', - 'help_weekend' => 'Hva skal Firefly III gjøre når gjentakende transaksjon faller på en Lørdag eller Søndag?', - 'do_nothing' => 'Bare opprett transaksjonen', - 'skip_transaction' => 'Hopp over forekomsten', - 'jump_to_friday' => 'Opprett transaksjonen på foregående Fredag istedet', - 'jump_to_monday' => 'Opprett transaksjonen på neste Mandag istedet', - 'will_jump_friday' => 'Opprettes på Fredag i stedet for i helgene.', - 'will_jump_monday' => 'Opprettes på Mandag i stedet for i helgene.', - 'except_weekends' => 'Unntatt helger', - 'recurrence_deleted' => 'Gjentakende transaksjon ":title" slettet', + 'create_new_recurrence' => 'Lag ny gjentakende transaksjon', + 'help_first_date' => 'Spesifiser den første forventede gjentakelse, det må være i fremtiden.', + 'help_first_date_no_past' => 'Spesifiser den første forventede gjentakelse. Firefly III vil ikke opprette transaksjoner i fortiden.', + 'no_currency' => '(ingen valuta)', + 'mandatory_for_recurring' => 'Pålagt gjentakelses informasjon', + 'mandatory_for_transaction' => 'Pålagt transaksjons informasjon', + 'optional_for_recurring' => 'Valgfritt gjentakelses informasjon', + 'optional_for_transaction' => 'Valgfritt transaksjons informasjon', + 'change_date_other_options' => 'Ved å endre på "første dato" får du flere valg.', + 'mandatory_fields_for_tranaction' => 'Verdiene her vil ende opp i transaksjonene som blir opprettet', + 'click_for_calendar' => 'Trykk her for å få en kalender som viser deg når transaksjonen vil gjenta seg.', + 'repeat_forever' => 'Gjenta for alltid', + 'repeat_until_date' => 'Gjenta til dato', + 'repeat_times' => 'Gjenta antall ganger', + 'recurring_skips_one' => 'Annen hver', + 'recurring_skips_more' => 'Hopper over :count forekomster', + 'store_new_recurrence' => 'Lagre gjentakende transaksjon', + 'stored_new_recurrence' => 'Gjentakende transaksjon ":title" lagret.', + 'edit_recurrence' => 'Rediger gjentakende transaksjon ":title"', + 'recurring_repeats_until' => 'Gjenta til :date', + 'recurring_repeats_forever' => 'Gjenta for alltid', + 'recurring_repeats_x_times' => 'Gjentas om :count|Gjentar seg :count ganger', + 'update_recurrence' => 'Oppdater gjentakende transaksjon', + 'updated_recurrence' => 'Oppdatert gjentakende transaksjon ":title"', + 'recurrence_is_inactive' => 'Denne gjentakende transaksjonen er ikke aktiv og vil ikke generere nye transaksjoner.', + 'delete_recurring' => 'Slett gjentakende transaksjon ":title"', + 'new_recurring_transaction' => 'Opprett gjentakende transaksjon', + 'help_weekend' => 'Hva skal Firefly III gjøre når gjentakende transaksjon faller på en Lørdag eller Søndag?', + 'do_nothing' => 'Bare opprett transaksjonen', + 'skip_transaction' => 'Hopp over forekomsten', + 'jump_to_friday' => 'Opprett transaksjonen på foregående Fredag istedet', + 'jump_to_monday' => 'Opprett transaksjonen på neste Mandag istedet', + 'will_jump_friday' => 'Opprettes på Fredag i stedet for i helgene.', + 'will_jump_monday' => 'Opprettes på Mandag i stedet for i helgene.', + 'except_weekends' => 'Unntatt helger', + 'recurrence_deleted' => 'Gjentakende transaksjon ":title" slettet', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balanse i (:currency)', - 'box_spent_in_currency' => 'Brukt (:currency)', - 'box_earned_in_currency' => 'Opptjent (:currency)', - 'box_budgeted_in_currency' => 'Budsjettert (:currency)', - 'box_bill_paid_in_currency' => 'Betalte faktura (:currency)', - 'box_bill_unpaid_in_currency' => 'Ubetalte faktura (:currency)', - 'box_left_to_spend_in_currency' => 'Igjen å bruke (:currency)', - 'box_net_worth_in_currency' => 'Nettoverdi (:currency)', - 'box_spend_per_day' => 'Igjen å bruke per dag: :amount', + 'box_balance_in_currency' => 'Balanse i (:currency)', + 'box_spent_in_currency' => 'Brukt (:currency)', + 'box_earned_in_currency' => 'Opptjent (:currency)', + 'box_budgeted_in_currency' => 'Budsjettert (:currency)', + 'box_bill_paid_in_currency' => 'Betalte faktura (:currency)', + 'box_bill_unpaid_in_currency' => 'Ubetalte faktura (:currency)', + 'box_left_to_spend_in_currency' => 'Igjen å bruke (:currency)', + 'box_net_worth_in_currency' => 'Nettoverdi (:currency)', + 'box_spend_per_day' => 'Igjen å bruke per dag: :amount', // debug page - 'debug_page' => 'Feilsøk side', - 'debug_submit_instructions' => 'Hvis du støter på problemer, kan du bruke informasjonen i denne boksen som feilsøkingsinformasjon. Kopier og lim inn i en ny eller eksisterende GitHub issue. Den vil generere en tabell som kan brukes til å diagnostisere problemet.', - 'debug_pretty_table' => 'Hvis du kopierer/limer inn boksen under i et GitHub issue, vil det generere en tabell. Ikke omgi denne teksten med aksentsymboler eller anførselstegn.', - 'debug_additional_data' => 'Du kan også dele innholdet i boksen nedenfor. Du kan kopiere og lime inn dette i en ny eller eksisterende GitHub-sak. Vær imidlertid oppmerksom på at innholdet i denne boksen kan inneholde privat informasjon som kontonavn, transaksjonsdetaljer og/eller e-postadresser.', + 'debug_page' => 'Feilsøk side', + 'debug_submit_instructions' => 'Hvis du støter på problemer, kan du bruke informasjonen i denne boksen som feilsøkingsinformasjon. Kopier og lim inn i en ny eller eksisterende GitHub issue. Den vil generere en tabell som kan brukes til å diagnostisere problemet.', + 'debug_pretty_table' => 'Hvis du kopierer/limer inn boksen under i et GitHub issue, vil det generere en tabell. Ikke omgi denne teksten med aksentsymboler eller anførselstegn.', + 'debug_additional_data' => 'Du kan også dele innholdet i boksen nedenfor. Du kan kopiere og lime inn dette i en ny eller eksisterende GitHub-sak. Vær imidlertid oppmerksom på at innholdet i denne boksen kan inneholde privat informasjon som kontonavn, transaksjonsdetaljer og/eller e-postadresser.', // object groups - 'object_groups_menu_bar' => 'Grupper', - 'object_groups_page_title' => 'Grupper', - 'object_groups_breadcrumb' => 'Grupper', - 'object_groups_index' => 'Oversikt', - 'object_groups' => 'Grupper', - 'object_groups_empty_explain' => 'Noen elementer i Firefly III kan deles inn i grupper. Sparegriser, for eksempel, har et "Gruppe"-felt på redigerings- og opprettelsesskjermene. Når du angir dette feltet, kan du redigere navnene og rekkefølgen på gruppene på denne siden. For mer informasjon, sjekk hjelpesidene i øverste høyre hjørne, under (?)-ikonet.', - 'object_group_title' => 'Tittel', - 'edit_object_group' => 'Rediger gruppen «:title»', - 'delete_object_group' => 'Slett gruppen «:title»', - 'update_object_group' => 'Oppdater gruppe', - 'updated_object_group' => 'Gruppen «:title» ble oppdatert', - 'deleted_object_group' => 'Gruppen «:title» ble slettet', - 'object_group' => 'Gruppe', + 'object_groups_menu_bar' => 'Grupper', + 'object_groups_page_title' => 'Grupper', + 'object_groups_breadcrumb' => 'Grupper', + 'object_groups_index' => 'Oversikt', + 'object_groups' => 'Grupper', + 'object_groups_empty_explain' => 'Noen elementer i Firefly III kan deles inn i grupper. Sparegriser, for eksempel, har et "Gruppe"-felt på redigerings- og opprettelsesskjermene. Når du angir dette feltet, kan du redigere navnene og rekkefølgen på gruppene på denne siden. For mer informasjon, sjekk hjelpesidene i øverste høyre hjørne, under (?)-ikonet.', + 'object_group_title' => 'Tittel', + 'edit_object_group' => 'Rediger gruppen «:title»', + 'delete_object_group' => 'Slett gruppen «:title»', + 'update_object_group' => 'Oppdater gruppe', + 'updated_object_group' => 'Gruppen «:title» ble oppdatert', + 'deleted_object_group' => 'Gruppen «:title» ble slettet', + 'object_group' => 'Gruppe', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Gjennomgå loggoppføringer', - 'ale_action_log_add' => 'La til :amount i sparegrisen «:name»', - 'ale_action_log_remove' => 'Fjernet :amount fra sparegrisen «:name»', - 'ale_action_clear_budget' => 'Fjernet fra budsjett', - 'ale_action_update_group_title' => 'Oppdatert transaksjonsgruppens tittel', - 'ale_action_update_date' => 'Oppdatert transaksjonsdato', - 'ale_action_update_order' => 'Oppdatert transaksjonsrekkefølge', - 'ale_action_clear_category' => 'Fjernet fra kategori', - 'ale_action_clear_notes' => 'Fjernet notater', - 'ale_action_clear_tag' => 'Fjernet tagg', - 'ale_action_clear_all_tags' => 'Fjernet alle tagger', - 'ale_action_set_bill' => 'Koblet til regning', - 'ale_action_switch_accounts' => 'Byttet kilde og målkonto', - 'ale_action_set_budget' => 'Sett budsjett', - 'ale_action_set_category' => 'Sett kategori', - 'ale_action_set_source' => 'Sett kildekonto', - 'ale_action_set_destination' => 'Sett målkonto', - 'ale_action_update_transaction_type' => 'Endret transaksjonstype', - 'ale_action_update_notes' => 'Endret notater', - 'ale_action_update_description' => 'Endret beskrivelse', - 'ale_action_add_to_piggy' => 'Sparegris', - 'ale_action_remove_from_piggy' => 'Sparegris', - 'ale_action_add_tag' => 'La til tagg', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Gjennomgå loggoppføringer', + 'ale_action_log_add' => 'La til :amount i sparegrisen «:name»', + 'ale_action_log_remove' => 'Fjernet :amount fra sparegrisen «:name»', + 'ale_action_clear_budget' => 'Fjernet fra budsjett', + 'ale_action_update_group_title' => 'Oppdatert transaksjonsgruppens tittel', + 'ale_action_update_date' => 'Oppdatert transaksjonsdato', + 'ale_action_update_order' => 'Oppdatert transaksjonsrekkefølge', + 'ale_action_clear_category' => 'Fjernet fra kategori', + 'ale_action_clear_notes' => 'Fjernet notater', + 'ale_action_clear_tag' => 'Fjernet tagg', + 'ale_action_clear_all_tags' => 'Fjernet alle tagger', + 'ale_action_set_bill' => 'Koblet til regning', + 'ale_action_switch_accounts' => 'Byttet kilde og målkonto', + 'ale_action_set_budget' => 'Sett budsjett', + 'ale_action_set_category' => 'Sett kategori', + 'ale_action_set_source' => 'Sett kildekonto', + 'ale_action_set_destination' => 'Sett målkonto', + 'ale_action_update_transaction_type' => 'Endret transaksjonstype', + 'ale_action_update_notes' => 'Endret notater', + 'ale_action_update_description' => 'Endret beskrivelse', + 'ale_action_add_to_piggy' => 'Sparegris', + 'ale_action_remove_from_piggy' => 'Sparegris', + 'ale_action_add_tag' => 'La til tagg', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Aktiver valutakonvertering', - 'disable_auto_convert' => 'Deaktiver valutakonvertering', + 'enable_auto_convert' => 'Aktiver valutakonvertering', + 'disable_auto_convert' => 'Deaktiver valutakonvertering', ]; /* diff --git a/resources/lang/nb_NO/validation.php b/resources/lang/nb_NO/validation.php index 449a85f210..ea9660ed23 100644 --- a/resources/lang/nb_NO/validation.php +++ b/resources/lang/nb_NO/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Du har ikke rettigheter til denne handlingen.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/nl_NL/config.php b/resources/lang/nl_NL/config.php index fd2541d062..acf3a948a0 100644 --- a/resources/lang/nl_NL/config.php +++ b/resources/lang/nl_NL/config.php @@ -64,7 +64,7 @@ return [ // 'date_time' => '%B %e, %Y, @ %T', 'date_time_js' => 'D MMMM YYYY @ HH:mm:ss', 'date_time_fns' => 'd MMMM yyyy @ HH:mm:ss', - 'date_time_fns_short' => 'MMMM do, yyyy @ HH:mm', + 'date_time_fns_short' => 'd MMMM yyyy @ HH:mm', // 'specific_day' => '%e %B %Y', 'specific_day_js' => 'D MMMM YYYY', diff --git a/resources/lang/nl_NL/errors.php b/resources/lang/nl_NL/errors.php index 9982574a8d..8a8cbf0a8a 100644 --- a/resources/lang/nl_NL/errors.php +++ b/resources/lang/nl_NL/errors.php @@ -42,7 +42,7 @@ return [ 'fatal_error' => 'Er is een fatale fout opgetreden. Controleer de logbestanden in "storage/logs" of gebruik "docker logs -f [container]" om te zien wat er gebeurde.', 'maintenance_mode' => 'Firefly III is in onderhoudsmodus.', 'be_right_back' => 'Zo terug!', - 'check_back' => 'Firefly III is down for some necessary maintenance. Please check back in a second. If you happen to see this message on the demo site, just wait a few minutes. The database is reset every few hours.', + 'check_back' => 'Firefly III is offline voor hoognodig onderhoud. Kom later terug. Als je dit bericht op de demo site ziet, wacht dan een paar minuten. De database wordt elke paar uur gereset.', 'error_occurred' => 'Oeps! Er is een fout opgetreden.', 'db_error_occurred' => 'Oeps! Er is een database-fout opgetreden.', 'error_not_recoverable' => 'Helaas was deze fout niet te herstellen :(. Firefly III is stuk. De fout is:', diff --git a/resources/lang/nl_NL/firefly.php b/resources/lang/nl_NL/firefly.php index 5885dc4156..09f6130fac 100644 --- a/resources/lang/nl_NL/firefly.php +++ b/resources/lang/nl_NL/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Sluiten', - 'actions' => 'Acties', - 'edit' => 'Wijzig', - 'delete' => 'Verwijder', - 'split' => 'Splitsen', - 'single_split' => 'Split', - 'clone' => 'Dupliceren', - 'clone_and_edit' => 'Dupliceren en wijzigen', - 'confirm_action' => 'Actie bevestigen', - 'last_seven_days' => 'Laatste zeven dagen', - 'last_thirty_days' => 'Laatste dertig dagen', - 'last_180_days' => 'Laatste 180 dagen', - 'month_to_date' => 'Maand tot nu', - 'year_to_date' => 'Jaar tot nu', - 'YTD' => 'YTD', - 'welcome_back' => 'Hoe staat het er voor?', - 'everything' => 'Alles', - 'today' => 'vandaag', - 'customRange' => 'Zelf bereik kiezen', - 'date_range' => 'Datumbereik', - 'apply' => 'Go', - 'select_date' => 'Selecteer periode..', - 'cancel' => 'Annuleren', - 'from' => 'Van', - 'to' => 'Tot', - 'structure' => 'Structuur', - 'help_translating' => 'Deze helptekst is nog niet beschikbaar in het Nederlands. Help je mee vertalen?', - 'showEverything' => 'Laat alles zien', - 'never' => 'Nooit', - 'no_results_for_empty_search' => 'Je zoekopdracht was leeg, dus niets werd gevonden.', - 'removed_amount' => ':amount weggehaald', - 'added_amount' => ':amount toegevoegd', - 'asset_account_role_help' => 'Voorkeuren die voortkomen uit je keuze hier kan je later aangeven.', - 'Opening balance' => 'Startsaldo', - 'create_new_stuff' => 'Nieuw', - 'new_withdrawal' => 'Nieuwe uitgave', - 'create_new_transaction' => 'Maak een nieuwe transactie', - 'sidebar_frontpage_create' => 'Maak', - 'new_transaction' => 'Nieuwe transactie', - 'no_rules_for_bill' => 'Dit contract heeft geen regels.', - 'go_to_asset_accounts' => 'Bekijk je betaalrekeningen', - 'go_to_budgets' => 'Ga naar je budgetten', - 'go_to_withdrawals' => 'Ga naar je uitgaven', - 'clones_journal_x' => 'Deze transactie is een kloon van ":description" (#:id)', - 'go_to_categories' => 'Ga naar je categorieën', - 'go_to_bills' => 'Ga naar je contracten', - 'go_to_expense_accounts' => 'Bekijk je crediteuren', - 'go_to_revenue_accounts' => 'Bekijk je debiteuren', - 'go_to_piggies' => 'Ga naar je spaarpotjes', - 'new_deposit' => 'Nieuwe inkomsten', - 'new_transfer' => 'Nieuwe overschrijving', - 'new_transfers' => 'Nieuwe overschrijving', - 'new_asset_account' => 'Nieuwe betaalrekening', - 'new_expense_account' => 'Nieuwe crediteur', - 'new_revenue_account' => 'Nieuwe debiteur', - 'new_liabilities_account' => 'Nieuwe passiva', - 'new_budget' => 'Nieuw budget', - 'new_bill' => 'Nieuw contract', - 'block_account_logout' => 'Je bent helaas uitgelogd. Geblokkeerde accounts kunnen deze site niet gebruiken. Heb je een geldig e-mailadres gebruikt toen je je registreerde?', - 'flash_success' => 'Gelukt!', - 'flash_info' => 'Melding', - 'flash_warning' => 'Waarschuwing!', - 'flash_error' => 'Fout!', - 'flash_danger' => 'Gevaar!', - 'flash_info_multiple' => 'Er is één melding|Er zijn :count meldingen', - 'flash_error_multiple' => 'Er is één fout|Er zijn :count fouten', - 'net_worth' => 'Kapitaal', - 'help_for_this_page' => 'Hulp bij deze pagina', - 'help_for_this_page_body' => 'Meer informatie over deze pagina vind je in de documentatie.', - 'two_factor_welcome' => 'Hallo!', - 'two_factor_enter_code' => 'Vul je authenticatiecode in. Je authenticatieapplicatie kan deze voor je genereren.', - 'two_factor_code_here' => 'Code', - 'two_factor_title' => 'Authenticatie in twee stappen', - 'authenticate' => 'Inloggen', - 'two_factor_forgot_title' => 'Authenticatie in twee stappen werkt niet meer', - 'two_factor_forgot' => 'Ik kan geen codes meer genereren.', - 'two_factor_lost_header' => 'Kan je geen codes meer genereren?', - 'two_factor_lost_intro' => 'Als je ook je backupcodes kwijt bent heb je pech gehad. Dit kan je niet via de web-interface fixen. Je kan kiezen.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Zo niet, stuur dan een e-mail naar :site_owner en vraag of ze je authenticatie in twee stappen willen resetten.', - 'mfa_backup_code' => 'Je hebt een backupcode gebruikt om in te loggen op Firefly III. Deze kan je niet meer gebruiken dus streep hem weg.', - 'pref_two_factor_new_backup_codes' => 'Nieuwe backupcodes genereren', - 'pref_two_factor_backup_code_count' => 'Je hebt :count geldige backupcode.|Je hebt :count geldige backupcodes.', - '2fa_i_have_them' => 'Ik heb ze opgeslagen!', - 'warning_much_data' => 'Het kan even duren voor :days dagen aan gegevens geladen zijn.', - 'registered' => 'Je bent geregistreerd!', - 'Default asset account' => 'Standaard betaalrekening', - 'no_budget_pointer' => 'Je hebt nog geen budgetten. Maak er een aantal op de budgetten-pagina. Met budgetten kan je je uitgaven beter bijhouden.', - 'no_bill_pointer' => 'Je hebt nog geen contracten. Maak er een aantal op de contracten-pagina. Met contracten kan je je uitgaven beter bijhouden.', - 'Savings account' => 'Spaarrekening', - 'Credit card' => 'Credit card', - 'source_accounts' => 'Bronrekening|Bronrekeningen', - 'destination_accounts' => 'Doelrekening|Doelrekeningen', - 'user_id_is' => 'Je gebruikersnummer is :user', - 'field_supports_markdown' => 'Dit veld ondersteunt Markdown.', - 'need_more_help' => 'Als je meer hulp nodig hebt met Firefly III, open dan een ticket op Github.', - 'reenable_intro_text' => 'Je kan de introductie-popupjes ook weer aan zetten.', - 'intro_boxes_after_refresh' => 'De introductie-popupjes komen tevoorschijn als je de pagina opnieuw laadt.', - 'show_all_no_filter' => 'Laat alle transacties zien, zonder te groeperen op datum.', - 'expenses_by_category' => 'Uitgaven per categorie', - 'expenses_by_budget' => 'Uitgaven per budget', - 'income_by_category' => 'Inkomsten per categorie', - 'expenses_by_asset_account' => 'Uitgaven per betaalrekening', - 'expenses_by_expense_account' => 'Uitgaven per crediteur', - 'cannot_redirect_to_account' => 'Firefly III kan je niet naar de goede pagina doorsturen. Sorry!', - 'sum_of_expenses' => 'Som van uitgaven', - 'sum_of_income' => 'Som van inkomsten', - 'liabilities' => 'Passiva', - 'spent_in_specific_budget' => 'Uitgegeven in budget ":budget"', - 'spent_in_specific_double' => 'Uitgegeven van rekening ":account"', - 'earned_in_specific_double' => 'Verdiend op rekening ":account"', - 'source_account' => 'Bronrekening', - 'source_account_reconciliation' => 'Je kan de bronrekening van een afstemming niet wijzigen.', - 'destination_account' => 'Doelrekening', - 'destination_account_reconciliation' => 'Je kan de doelrekening van een afstemming niet wijzigen.', - 'sum_of_expenses_in_budget' => 'Totaal uitgegeven in budget ":budget"', - 'left_in_budget_limit' => 'Nog uit te geven volgens budgettering', - 'current_period' => 'Huidige periode', - 'show_the_current_period_and_overview' => 'Bekijk de huidige periode en overzicht', - 'pref_languages_locale' => 'Als je hier een andere taal dan Engels hebt geselecteerd, zorg er dan voor dat je besturingssysteem ook in staat is om valuta, data en bedragen in die taal weer te geven.', - 'budget_in_period' => 'Alle transacties voor budget ":name" tussen :start en :end in :currency', - 'chart_budget_in_period' => 'Grafiek voor alle transacties voor budget ":name" tussen :start en :end in :currency', - 'chart_budget_in_period_only_currency' => 'Het bedrag dat je het begroot is in :currency, dus deze grafiek laat alleen transacties in :currency zien.', - 'chart_account_in_period' => 'Grafiek voor alle transacties voor rekening ":name" (:balance) tussen :start en :end', - 'chart_category_in_period' => 'Grafiek voor alle transacties voor categorie ":name" tussen :start en :end', - 'chart_category_all' => 'Grafiek voor alle transacties voor categorie ":name"', - 'clone_withdrawal' => 'Kopieer deze uitgave', - 'clone_deposit' => 'Kopieer deze inkomsten', - 'clone_transfer' => 'Kopieer deze overschrijving', - 'multi_select_no_selection' => 'Niets geselecteerd', - 'multi_select_select_all' => 'Selecteer alles', - 'multi_select_n_selected' => 'geselecteerd', - 'multi_select_all_selected' => 'Alles geselecteerd', - 'multi_select_filter_placeholder' => 'Vinden..', - 'intro_next_label' => 'Volgende', - 'intro_prev_label' => 'Vorige', - 'intro_skip_label' => 'Overslaan', - 'intro_done_label' => 'Klaar', - 'between_dates_breadcrumb' => 'Tussen :start en :end', - 'all_journals_without_budget' => 'Alle transacties zonder budget', - 'journals_without_budget' => 'Transacties zonder budget', - 'all_journals_without_category' => 'Alle transacties zonder categorie', - 'journals_without_category' => 'Transacties zonder categorie', - 'all_journals_for_account' => 'Alle transacties voor rekening :name', - 'chart_all_journals_for_account' => 'Grafiek van alle transacties voor rekening :name', - 'journals_in_period_for_account' => 'Alle transacties voor rekening :name tussen :start en :end', - 'journals_in_period_for_account_js' => 'Alle transacties voor rekening {title} tussen {start} en {end}', - 'transferred' => 'Overgeschreven', - 'all_withdrawal' => 'Alle uitgaven', - 'all_transactions' => 'Alle transacties', - 'title_withdrawal_between' => 'Alle uitgaven tussen :start en :end', - 'all_deposit' => 'Alle inkomsten', - 'title_deposit_between' => 'Alle inkomsten tussen :start en :end', - 'all_transfers' => 'Alle overschrijvingen', - 'title_transfers_between' => 'Alle overschrijvingen tussen :start en :end', - 'all_transfer' => 'Alle overschrijvingen', - 'all_journals_for_tag' => 'Alle transacties voor tag ":tag"', - 'title_transfer_between' => 'Alle overschrijvingen tussen :start en :end', - 'all_journals_for_category' => 'Alle transacties in categorie :name', - 'all_journals_for_budget' => 'Alle transacties voor budget :name', - 'chart_all_journals_for_budget' => 'Grafiek van alle transacties voor budget :name', - 'journals_in_period_for_category' => 'Alle transacties in categorie :name tussen :start en :end', - 'journals_in_period_for_tag' => 'Alle transacties voor tag :tag tussen :start en :end', - 'not_available_demo_user' => 'De functie die je probeert te gebruiken is niet beschikbaar voor gebruikers van de demo.', - 'exchange_rate_instructions' => 'Betaalrekening "@name" accepteert alleen boekingen in @native_currency. Als je @foreign_currency wilt gebruiken moet je ook het bedrag in @native_currency opgeven:', - 'transfer_exchange_rate_instructions' => 'Bronbetaalrekening "@source_name" accepteert alleen overschrijvingen in @source_currency. Doelbetaalrekening "@dest_name" accepteert alleen overschrijvingen in @dest_currency. Je moet het juiste bedrag in beide valuta opgeven.', - 'transaction_data' => 'Transactiegegevens', - 'invalid_server_configuration' => 'Ongeldige serverconfiguratie', - 'invalid_locale_settings' => 'Firefly III kan geldbedragen niet goed weergeven, omdat je server de vereiste software mist. Je kan lezen hoe je die moet installeren.', - 'quickswitch' => 'Quickswitch', - 'sign_in_to_start' => 'Login om te beginnen', - 'sign_in' => 'Inloggen', - 'register_new_account' => 'Registreer een nieuw account', - 'forgot_my_password' => 'Ik ben mijn wachtwoord vergeten', - 'problems_with_input' => 'Er zijn wat problemen met je input.', - 'reset_password' => 'Je wachtwoord resetten', - 'button_reset_password' => 'Reset wachtwoord', - 'reset_button' => 'Reset', - 'want_to_login' => 'Ik wil inloggen', - 'login_page_title' => 'Inloggen bij Firefly III', - 'register_page_title' => 'Registreren bij Firefly III', - 'forgot_pw_page_title' => 'Je wachtwoord voor Firefly III vergeten', - 'reset_pw_page_title' => 'Reset je Firefly III wachtwoord', - 'cannot_reset_demo_user' => 'Je kan het wachtwoord van de demo-gebruiker niet resetten.', - 'no_att_demo_user' => 'De demo user kan niks uploaden.', - 'button_register' => 'Registreren', - 'authorization' => 'Toestemming', - 'active_bills_only' => 'alleen actieve contracten', - 'active_bills_only_total' => 'alle actieve contracten', - 'active_exp_bills_only' => 'alleen actieve en verwachte contracten', - 'active_exp_bills_only_total' => 'alle actieve en verwachte contracten', - 'per_period_sum_1D' => 'Verwachte dagelijkse kosten', - 'per_period_sum_1W' => 'Verwachte wekelijkse kosten', - 'per_period_sum_1M' => 'Verwachte maandelijkse kosten', - 'per_period_sum_3M' => 'Verwachte kwartaalkosten', - 'per_period_sum_6M' => 'Verwachte half-jaarlijkse kosten', - 'per_period_sum_1Y' => 'Verwachte jaarlijkse kosten', - 'average_per_bill' => 'gemiddeld per contract', - 'expected_total' => 'verwacht totaal', - 'reconciliation_account_name' => ':name afstemming (:currency)', - 'saved' => 'Opgeslagen', - 'advanced_options' => 'Geavanceerde opties', - 'advanced_options_explain' => 'Sommige pagina\'s in Firefly III hebben geavanceerde opties verborgen achter deze knop. Voor deze pagina geldt dat niet, maar check zeker de andere pagina\'s!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Sluiten', + 'actions' => 'Acties', + 'edit' => 'Wijzig', + 'delete' => 'Verwijder', + 'split' => 'Splitsen', + 'single_split' => 'Split', + 'clone' => 'Dupliceren', + 'clone_and_edit' => 'Dupliceren en wijzigen', + 'confirm_action' => 'Actie bevestigen', + 'last_seven_days' => 'Laatste zeven dagen', + 'last_thirty_days' => 'Laatste dertig dagen', + 'last_180_days' => 'Laatste 180 dagen', + 'month_to_date' => 'Maand tot nu', + 'year_to_date' => 'Jaar tot nu', + 'YTD' => 'YTD', + 'welcome_back' => 'Hoe staat het er voor?', + 'everything' => 'Alles', + 'today' => 'vandaag', + 'customRange' => 'Zelf bereik kiezen', + 'date_range' => 'Datumbereik', + 'apply' => 'Go', + 'select_date' => 'Selecteer periode..', + 'cancel' => 'Annuleren', + 'from' => 'Van', + 'to' => 'Tot', + 'structure' => 'Structuur', + 'help_translating' => 'Deze helptekst is nog niet beschikbaar in het Nederlands. Help je mee vertalen?', + 'showEverything' => 'Laat alles zien', + 'never' => 'Nooit', + 'no_results_for_empty_search' => 'Je zoekopdracht was leeg, dus niets werd gevonden.', + 'removed_amount' => ':amount weggehaald', + 'added_amount' => ':amount toegevoegd', + 'asset_account_role_help' => 'Voorkeuren die voortkomen uit je keuze hier kan je later aangeven.', + 'Opening balance' => 'Startsaldo', + 'create_new_stuff' => 'Nieuw', + 'new_withdrawal' => 'Nieuwe uitgave', + 'create_new_transaction' => 'Maak een nieuwe transactie', + 'sidebar_frontpage_create' => 'Maak', + 'new_transaction' => 'Nieuwe transactie', + 'no_rules_for_bill' => 'Dit contract heeft geen regels.', + 'go_to_asset_accounts' => 'Bekijk je betaalrekeningen', + 'go_to_budgets' => 'Ga naar je budgetten', + 'go_to_withdrawals' => 'Ga naar je uitgaven', + 'clones_journal_x' => 'Deze transactie is een kloon van ":description" (#:id)', + 'go_to_categories' => 'Ga naar je categorieën', + 'go_to_bills' => 'Ga naar je contracten', + 'go_to_expense_accounts' => 'Bekijk je crediteuren', + 'go_to_revenue_accounts' => 'Bekijk je debiteuren', + 'go_to_piggies' => 'Ga naar je spaarpotjes', + 'new_deposit' => 'Nieuwe inkomsten', + 'new_transfer' => 'Nieuwe overschrijving', + 'new_transfers' => 'Nieuwe overschrijving', + 'new_asset_account' => 'Nieuwe betaalrekening', + 'new_expense_account' => 'Nieuwe crediteur', + 'new_revenue_account' => 'Nieuwe debiteur', + 'new_liabilities_account' => 'Nieuwe passiva', + 'new_budget' => 'Nieuw budget', + 'new_bill' => 'Nieuw contract', + 'block_account_logout' => 'Je bent helaas uitgelogd. Geblokkeerde accounts kunnen deze site niet gebruiken. Heb je een geldig e-mailadres gebruikt toen je je registreerde?', + 'flash_success' => 'Gelukt!', + 'flash_info' => 'Melding', + 'flash_warning' => 'Waarschuwing!', + 'flash_error' => 'Fout!', + 'flash_danger' => 'Gevaar!', + 'flash_info_multiple' => 'Er is één melding|Er zijn :count meldingen', + 'flash_error_multiple' => 'Er is één fout|Er zijn :count fouten', + 'net_worth' => 'Kapitaal', + 'help_for_this_page' => 'Hulp bij deze pagina', + 'help_for_this_page_body' => 'Meer informatie over deze pagina vind je in de documentatie.', + 'two_factor_welcome' => 'Hallo!', + 'two_factor_enter_code' => 'Vul je authenticatiecode in. Je authenticatieapplicatie kan deze voor je genereren.', + 'two_factor_code_here' => 'Code', + 'two_factor_title' => 'Authenticatie in twee stappen', + 'authenticate' => 'Inloggen', + 'two_factor_forgot_title' => 'Authenticatie in twee stappen werkt niet meer', + 'two_factor_forgot' => 'Ik kan geen codes meer genereren.', + 'two_factor_lost_header' => 'Kan je geen codes meer genereren?', + 'two_factor_lost_intro' => 'Als je ook je backupcodes kwijt bent heb je pech gehad. Dit kan je niet via de web-interface fixen. Je kan kiezen.', + 'two_factor_lost_fix_self' => 'Als dit jouw Firefly III-installatie is, lees dan deze entry in de FAQ.', + 'two_factor_lost_fix_owner' => 'Zo niet, stuur dan een e-mail naar :site_owner en vraag of ze je authenticatie in twee stappen willen resetten.', + 'mfa_backup_code' => 'Je hebt een backupcode gebruikt om in te loggen op Firefly III. Deze kan je niet meer gebruiken dus streep hem weg.', + 'pref_two_factor_new_backup_codes' => 'Nieuwe backupcodes genereren', + 'pref_two_factor_backup_code_count' => 'Je hebt :count geldige backupcode.|Je hebt :count geldige backupcodes.', + '2fa_i_have_them' => 'Ik heb ze opgeslagen!', + 'warning_much_data' => 'Het kan even duren voor :days dagen aan gegevens geladen zijn.', + 'registered' => 'Je bent geregistreerd!', + 'Default asset account' => 'Standaard betaalrekening', + 'no_budget_pointer' => 'Je hebt nog geen budgetten. Maak er een aantal op de budgetten-pagina. Met budgetten kan je je uitgaven beter bijhouden.', + 'no_bill_pointer' => 'Je hebt nog geen contracten. Maak er een aantal op de contracten-pagina. Met contracten kan je je uitgaven beter bijhouden.', + 'Savings account' => 'Spaarrekening', + 'Credit card' => 'Credit card', + 'source_accounts' => 'Bronrekening|Bronrekeningen', + 'destination_accounts' => 'Doelrekening|Doelrekeningen', + 'user_id_is' => 'Je gebruikersnummer is :user', + 'field_supports_markdown' => 'Dit veld ondersteunt Markdown.', + 'need_more_help' => 'Als je meer hulp nodig hebt met Firefly III, open dan een ticket op Github.', + 'reenable_intro_text' => 'Je kan de introductie-popupjes ook weer aan zetten.', + 'intro_boxes_after_refresh' => 'De introductie-popupjes komen tevoorschijn als je de pagina opnieuw laadt.', + 'show_all_no_filter' => 'Laat alle transacties zien, zonder te groeperen op datum.', + 'expenses_by_category' => 'Uitgaven per categorie', + 'expenses_by_budget' => 'Uitgaven per budget', + 'income_by_category' => 'Inkomsten per categorie', + 'expenses_by_asset_account' => 'Uitgaven per betaalrekening', + 'expenses_by_expense_account' => 'Uitgaven per crediteur', + 'cannot_redirect_to_account' => 'Firefly III kan je niet naar de goede pagina doorsturen. Sorry!', + 'sum_of_expenses' => 'Som van uitgaven', + 'sum_of_income' => 'Som van inkomsten', + 'liabilities' => 'Passiva', + 'spent_in_specific_budget' => 'Uitgegeven in budget ":budget"', + 'spent_in_specific_double' => 'Uitgegeven van rekening ":account"', + 'earned_in_specific_double' => 'Verdiend op rekening ":account"', + 'source_account' => 'Bronrekening', + 'source_account_reconciliation' => 'Je kan de bronrekening van een afstemming niet wijzigen.', + 'destination_account' => 'Doelrekening', + 'destination_account_reconciliation' => 'Je kan de doelrekening van een afstemming niet wijzigen.', + 'sum_of_expenses_in_budget' => 'Totaal uitgegeven in budget ":budget"', + 'left_in_budget_limit' => 'Nog uit te geven volgens budgettering', + 'current_period' => 'Huidige periode', + 'show_the_current_period_and_overview' => 'Bekijk de huidige periode en overzicht', + 'pref_languages_locale' => 'Als je hier een andere taal dan Engels hebt geselecteerd, zorg er dan voor dat je besturingssysteem ook in staat is om valuta, data en bedragen in die taal weer te geven.', + 'budget_in_period' => 'Alle transacties voor budget ":name" tussen :start en :end in :currency', + 'chart_budget_in_period' => 'Grafiek voor alle transacties voor budget ":name" tussen :start en :end in :currency', + 'chart_budget_in_period_only_currency' => 'Het bedrag dat je het begroot is in :currency, dus deze grafiek laat alleen transacties in :currency zien.', + 'chart_account_in_period' => 'Grafiek voor alle transacties voor rekening ":name" (:balance) tussen :start en :end', + 'chart_category_in_period' => 'Grafiek voor alle transacties voor categorie ":name" tussen :start en :end', + 'chart_category_all' => 'Grafiek voor alle transacties voor categorie ":name"', + 'clone_withdrawal' => 'Kopieer deze uitgave', + 'clone_deposit' => 'Kopieer deze inkomsten', + 'clone_transfer' => 'Kopieer deze overschrijving', + 'multi_select_no_selection' => 'Niets geselecteerd', + 'multi_select_select_all' => 'Selecteer alles', + 'multi_select_n_selected' => 'geselecteerd', + 'multi_select_all_selected' => 'Alles geselecteerd', + 'multi_select_filter_placeholder' => 'Vinden..', + 'intro_next_label' => 'Volgende', + 'intro_prev_label' => 'Vorige', + 'intro_skip_label' => 'Overslaan', + 'intro_done_label' => 'Klaar', + 'between_dates_breadcrumb' => 'Tussen :start en :end', + 'all_journals_without_budget' => 'Alle transacties zonder budget', + 'journals_without_budget' => 'Transacties zonder budget', + 'all_journals_without_category' => 'Alle transacties zonder categorie', + 'journals_without_category' => 'Transacties zonder categorie', + 'all_journals_for_account' => 'Alle transacties voor rekening :name', + 'chart_all_journals_for_account' => 'Grafiek van alle transacties voor rekening :name', + 'journals_in_period_for_account' => 'Alle transacties voor rekening :name tussen :start en :end', + 'journals_in_period_for_account_js' => 'Alle transacties voor rekening {title} tussen {start} en {end}', + 'transferred' => 'Overgeschreven', + 'all_withdrawal' => 'Alle uitgaven', + 'all_transactions' => 'Alle transacties', + 'title_withdrawal_between' => 'Alle uitgaven tussen :start en :end', + 'all_deposit' => 'Alle inkomsten', + 'title_deposit_between' => 'Alle inkomsten tussen :start en :end', + 'all_transfers' => 'Alle overschrijvingen', + 'title_transfers_between' => 'Alle overschrijvingen tussen :start en :end', + 'all_transfer' => 'Alle overschrijvingen', + 'all_journals_for_tag' => 'Alle transacties voor tag ":tag"', + 'title_transfer_between' => 'Alle overschrijvingen tussen :start en :end', + 'all_journals_for_category' => 'Alle transacties in categorie :name', + 'all_journals_for_budget' => 'Alle transacties voor budget :name', + 'chart_all_journals_for_budget' => 'Grafiek van alle transacties voor budget :name', + 'journals_in_period_for_category' => 'Alle transacties in categorie :name tussen :start en :end', + 'journals_in_period_for_tag' => 'Alle transacties voor tag :tag tussen :start en :end', + 'not_available_demo_user' => 'De functie die je probeert te gebruiken is niet beschikbaar voor gebruikers van de demo.', + 'exchange_rate_instructions' => 'Betaalrekening "@name" accepteert alleen boekingen in @native_currency. Als je @foreign_currency wilt gebruiken moet je ook het bedrag in @native_currency opgeven:', + 'transfer_exchange_rate_instructions' => 'Bronbetaalrekening "@source_name" accepteert alleen overschrijvingen in @source_currency. Doelbetaalrekening "@dest_name" accepteert alleen overschrijvingen in @dest_currency. Je moet het juiste bedrag in beide valuta opgeven.', + 'transaction_data' => 'Transactiegegevens', + 'invalid_server_configuration' => 'Ongeldige serverconfiguratie', + 'invalid_locale_settings' => 'Firefly III kan geldbedragen niet goed weergeven, omdat je server de vereiste software mist. Je kan lezen hoe je die moet installeren.', + 'quickswitch' => 'Quickswitch', + 'sign_in_to_start' => 'Login om te beginnen', + 'sign_in' => 'Inloggen', + 'register_new_account' => 'Registreer een nieuw account', + 'forgot_my_password' => 'Ik ben mijn wachtwoord vergeten', + 'problems_with_input' => 'Er zijn wat problemen met je input.', + 'reset_password' => 'Je wachtwoord resetten', + 'button_reset_password' => 'Reset wachtwoord', + 'reset_button' => 'Reset', + 'want_to_login' => 'Ik wil inloggen', + 'login_page_title' => 'Inloggen bij Firefly III', + 'register_page_title' => 'Registreren bij Firefly III', + 'forgot_pw_page_title' => 'Je wachtwoord voor Firefly III vergeten', + 'reset_pw_page_title' => 'Reset je Firefly III wachtwoord', + 'cannot_reset_demo_user' => 'Je kan het wachtwoord van de demo-gebruiker niet resetten.', + 'no_att_demo_user' => 'De demo user kan niks uploaden.', + 'button_register' => 'Registreren', + 'authorization' => 'Toestemming', + 'active_bills_only' => 'alleen actieve contracten', + 'active_bills_only_total' => 'alle actieve contracten', + 'active_exp_bills_only' => 'alleen actieve en verwachte contracten', + 'active_exp_bills_only_total' => 'alle actieve en verwachte contracten', + 'per_period_sum_1D' => 'Verwachte dagelijkse kosten', + 'per_period_sum_1W' => 'Verwachte wekelijkse kosten', + 'per_period_sum_1M' => 'Verwachte maandelijkse kosten', + 'per_period_sum_3M' => 'Verwachte kwartaalkosten', + 'per_period_sum_6M' => 'Verwachte half-jaarlijkse kosten', + 'per_period_sum_1Y' => 'Verwachte jaarlijkse kosten', + 'average_per_bill' => 'gemiddeld per contract', + 'expected_total' => 'verwacht totaal', + 'reconciliation_account_name' => ':name afstemming (:currency)', + 'saved' => 'Opgeslagen', + 'advanced_options' => 'Geavanceerde opties', + 'advanced_options_explain' => 'Sommige pagina\'s in Firefly III hebben geavanceerde opties verborgen achter deze knop. Voor deze pagina geldt dat niet, maar check zeker de andere pagina\'s!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'uitgeschakeld', - 'no_webhook_messages' => 'Er zijn geen webhook-berichten', - 'webhook_trigger_STORE_TRANSACTION' => 'Na het maken van een transactie', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Na het updaten van een transactie', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Na het verwijderen van een transactie', - 'webhook_response_TRANSACTIONS' => 'Transactiedetails', - 'webhook_response_ACCOUNTS' => 'Rekeningdetails', - 'webhook_response_none_NONE' => 'Geen details', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspecteren', - 'create_new_webhook' => 'Maak nieuwe webhook', - 'webhooks_create_breadcrumb' => 'Maak nieuwe webhook', - 'webhook_trigger_form_help' => 'Geef aan bij welke gebeurtenis de webhook afgaat', - 'webhook_response_form_help' => 'Geef aan wat de webhook mee moet sturen.', - 'webhook_delivery_form_help' => 'Geef aan welk dataformaat gebruikt moet worden.', - 'webhook_active_form_help' => 'De webhook moet actief zijn anders doet-ie het niet.', - 'stored_new_webhook' => 'Nieuw webhook ":title" opgeslagen', - 'delete_webhook' => 'Webhook verwijderen', - 'deleted_webhook' => 'Webhook ":title" verwijderd', - 'edit_webhook' => 'Webhook ":title" wijzigen', - 'updated_webhook' => 'Webhook ":title" bijgewerkt', - 'edit_webhook_js' => 'Webhook "{title}" wijzigen', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'De webhook is getriggerd op de aangegeven transactie. Het resultaat zie je zometeen.', - 'webhook_messages' => 'Webhook-bericht', - 'view_message' => 'Bekijk bericht', - 'view_attempts' => 'Bekijk mislukte pogingen', - 'message_content_title' => 'Inhoud van webhook-bericht', - 'message_content_help' => 'Dit is de inhoud van het bericht dat verzonden was (of niet) met behulp van deze webhook.', - 'attempt_content_title' => 'Webhookpogingen', - 'attempt_content_help' => 'Dit zijn alle mislukte pogingen van de webhook om data te versturen. Na een paar keer stopt Firefly III met proberen.', - 'no_attempts' => 'Er zijn geen mislukte pogingen. Lekker toch?', - 'webhook_attempt_at' => 'Poging op {moment}', - 'logs' => 'Logboeken', - 'response' => 'Reactie', - 'visit_webhook_url' => 'Bezoek URL van webhook', - 'reset_webhook_secret' => 'Reset webhook-geheim', - 'webhook_stored_link' => 'Webhook #{ID} ({title}) is opgeslagen.', - 'webhook_updated_link' => 'Webhook #{ID} ({title}) is geüpdatet.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'uitgeschakeld', + 'no_webhook_messages' => 'Er zijn geen webhook-berichten', + 'webhook_trigger_STORE_TRANSACTION' => 'Na het maken van een transactie', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Na het updaten van een transactie', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Na het verwijderen van een transactie', + 'webhook_response_TRANSACTIONS' => 'Transactiedetails', + 'webhook_response_ACCOUNTS' => 'Rekeningdetails', + 'webhook_response_none_NONE' => 'Geen details', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspecteren', + 'create_new_webhook' => 'Maak nieuwe webhook', + 'webhooks_create_breadcrumb' => 'Maak nieuwe webhook', + 'webhook_trigger_form_help' => 'Geef aan bij welke gebeurtenis de webhook afgaat', + 'webhook_response_form_help' => 'Geef aan wat de webhook mee moet sturen.', + 'webhook_delivery_form_help' => 'Geef aan welk dataformaat gebruikt moet worden.', + 'webhook_active_form_help' => 'De webhook moet actief zijn anders doet-ie het niet.', + 'stored_new_webhook' => 'Nieuw webhook ":title" opgeslagen', + 'delete_webhook' => 'Webhook verwijderen', + 'deleted_webhook' => 'Webhook ":title" verwijderd', + 'edit_webhook' => 'Webhook ":title" wijzigen', + 'updated_webhook' => 'Webhook ":title" bijgewerkt', + 'edit_webhook_js' => 'Webhook "{title}" wijzigen', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'De webhook is getriggerd op de aangegeven transactie. Het resultaat zie je zometeen.', + 'webhook_messages' => 'Webhook-bericht', + 'view_message' => 'Bekijk bericht', + 'view_attempts' => 'Bekijk mislukte pogingen', + 'message_content_title' => 'Inhoud van webhook-bericht', + 'message_content_help' => 'Dit is de inhoud van het bericht dat verzonden was (of niet) met behulp van deze webhook.', + 'attempt_content_title' => 'Webhookpogingen', + 'attempt_content_help' => 'Dit zijn alle mislukte pogingen van de webhook om data te versturen. Na een paar keer stopt Firefly III met proberen.', + 'no_attempts' => 'Er zijn geen mislukte pogingen. Lekker toch?', + 'webhook_attempt_at' => 'Poging op {moment}', + 'logs' => 'Logboeken', + 'response' => 'Reactie', + 'visit_webhook_url' => 'Bezoek URL van webhook', + 'reset_webhook_secret' => 'Reset webhook-geheim', + 'webhook_stored_link' => 'Webhook #{ID} ({title}) is opgeslagen.', + 'webhook_updated_link' => 'Webhook #{ID} ({title}) is geüpdatet.', // API access - 'authorization_request' => 'Firefly III v:version autorisatieverzoek', - 'authorization_request_intro' => "Applicatie \":client\" vraagt \u{200b}\u{200b}toestemming om toegang te krijgen tot je financiële administratie. Wil je :client autoriseren om toegang te krijgen tot je gegevens?", - 'authorization_request_site' => 'Je wordt doorgestuurd naar :url, die vervolgens toegang heeft tot je Firefly III-gegevens.', - 'authorization_request_invalid' => 'Dit toegangsverzoek is ongeldig. Volg deze link niet meer.', - 'scopes_will_be_able' => 'Deze applicatie krijgt toegang tot:', - 'button_authorize' => 'Toestaan', - 'none_in_select_list' => '(geen)', - 'no_piggy_bank' => '(geen spaarpotje)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Betaald in :currency', - 'unpaid_in_currency' => 'Nog niet betaald in :currency', - 'is_alpha_warning' => 'Je gebruikt een ALPHA versie. Let op bugs en fouten.', - 'is_beta_warning' => 'Je gebruikt een BETA versie. Let op bugs en fouten.', - 'all_destination_accounts' => 'Doelrekeningen', - 'all_source_accounts' => 'Bronrekeningen', - 'back_to_index' => 'Terug naar de index', - 'cant_logout_guard' => 'Firefly III kan je niet uitloggen.', - 'internal_reference' => 'Interne referentie', + 'authorization_request' => 'Firefly III v:version autorisatieverzoek', + 'authorization_request_intro' => "Applicatie \":client\" vraagt \u{200b}\u{200b}toestemming om toegang te krijgen tot je financiële administratie. Wil je :client autoriseren om toegang te krijgen tot je gegevens?", + 'authorization_request_site' => 'Je wordt doorgestuurd naar :url, die vervolgens toegang heeft tot je Firefly III-gegevens.', + 'authorization_request_invalid' => 'Dit toegangsverzoek is ongeldig. Volg deze link niet meer.', + 'scopes_will_be_able' => 'Deze applicatie krijgt toegang tot:', + 'button_authorize' => 'Toestaan', + 'none_in_select_list' => '(geen)', + 'no_piggy_bank' => '(geen spaarpotje)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Betaald in :currency', + 'unpaid_in_currency' => 'Nog niet betaald in :currency', + 'is_alpha_warning' => 'Je gebruikt een ALPHA versie. Let op bugs en fouten.', + 'is_beta_warning' => 'Je gebruikt een BETA versie. Let op bugs en fouten.', + 'all_destination_accounts' => 'Doelrekeningen', + 'all_source_accounts' => 'Bronrekeningen', + 'back_to_index' => 'Terug naar de index', + 'cant_logout_guard' => 'Firefly III kan je niet uitloggen.', + 'internal_reference' => 'Interne referentie', // check for updates: - 'update_check_title' => 'Op updates controleren', - 'admin_update_check_title' => 'Controleer automatisch op updates', - 'admin_update_check_explain' => 'Firefly III kan automatisch op updates controleren. Wanneer je deze instelling inschakelt, neemt Firefly III contact op met de update-server om te kijken of er een nieuwe versie van Firefly III beschikbaar is. Wanneer dit het geval is, ontvang je een melding. Je kan deze melding testen met de knop aan de rechterkant. Geef hieronder aan of je Firefly III wilt laten controleren op updates.', - 'check_for_updates_permission' => 'Firefly III kan controleren op updates, maar heeft hiervoor je toestemming nodig. Ga naar de admin om aan te geven of deze functie moet worden ingeschakeld.', - 'updates_ask_me_later' => 'Later vragen', - 'updates_do_not_check' => 'Niet controleren op nieuwe versies', - 'updates_enable_check' => 'Controleren op nieuwe versies', - 'admin_update_check_now_title' => 'Op updates controleren', - 'admin_update_check_now_explain' => 'Als je op de knop drukt, kijkt Firefly III of je huidige versie de nieuwste is.', - 'check_for_updates_button' => 'Controleer nu!', - 'update_new_version_alert' => 'Er is een nieuwe versie van Firefly III beschikbaar. Je gebruikt :your_version, de nieuwste versie is :new_version die werd uitgebracht op :date.', - 'update_version_beta' => 'Dit is een BETA versie. Er kunnen bugs in zitten.', - 'update_version_alpha' => 'Dit is een ALPHA versie. Er kunnen bugs in zitten.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Je gebruikt :version, de nieuwste beschikbare versie.', - 'update_newer_version_alert' => 'Je gebruikt :your_version, wat nieuwer is dan de nieuwste versie, :new_version.', - 'update_check_error' => 'Er is een fout opgetreden bij het controleren op updates: :error', - 'unknown_error' => 'Onbekende fout. Sorry.', - 'disabled_but_check' => 'Je hebt de update-controle uitgeschakeld. Vergeet dus niet zo nu en dan zelf te controleren op updates. Bedankt!', - 'admin_update_channel_title' => 'Updatekanaal', - 'admin_update_channel_explain' => 'Firefly III heeft drie "kanalen" die bepalen of en hoever je voorloopt als het gaat om features, wijzigingen en bugs. Gebruik het "beta"-kanaal als je een avontuurlijke bui hebt en gebruik het "alpha" kanaal als je ook graag met krokodillen zwemt.', - 'update_channel_stable' => 'Stabiel. Zou allemaal goed moeten gaan.', - 'update_channel_beta' => 'Beta. Nieuwe dingen, maar die kunnen stuk zijn.', - 'update_channel_alpha' => 'Alpha. We doen maar wat en jij mag testen.', + 'update_check_title' => 'Op updates controleren', + 'admin_update_check_title' => 'Controleer automatisch op updates', + 'admin_update_check_explain' => 'Firefly III kan automatisch op updates controleren. Wanneer je deze instelling inschakelt, neemt Firefly III contact op met de update-server om te kijken of er een nieuwe versie van Firefly III beschikbaar is. Wanneer dit het geval is, ontvang je een melding. Je kan deze melding testen met de knop aan de rechterkant. Geef hieronder aan of je Firefly III wilt laten controleren op updates.', + 'check_for_updates_permission' => 'Firefly III kan controleren op updates, maar heeft hiervoor je toestemming nodig. Ga naar de admin om aan te geven of deze functie moet worden ingeschakeld.', + 'updates_ask_me_later' => 'Later vragen', + 'updates_do_not_check' => 'Niet controleren op nieuwe versies', + 'updates_enable_check' => 'Controleren op nieuwe versies', + 'admin_update_check_now_title' => 'Op updates controleren', + 'admin_update_check_now_explain' => 'Als je op de knop drukt, kijkt Firefly III of je huidige versie de nieuwste is.', + 'check_for_updates_button' => 'Controleer nu!', + 'update_new_version_alert' => 'Er is een nieuwe versie van Firefly III beschikbaar. Je gebruikt :your_version, de nieuwste versie is :new_version die werd uitgebracht op :date.', + 'update_version_beta' => 'Dit is een BETA versie. Er kunnen bugs in zitten.', + 'update_version_alpha' => 'Dit is een ALPHA versie. Er kunnen bugs in zitten.', + 'update_current_dev_older' => 'Je gebruikt ontwikkelversie ":version", die ouder is dan de nieuwste versie :new_version. Doe een update!', + 'update_current_dev_newer' => 'Je gebruikt de ontwikkelversie ":version", die nieuwer is dan de nieuwste versie :new_version.', + 'update_current_version_alert' => 'Je gebruikt :version, de nieuwste beschikbare versie.', + 'update_newer_version_alert' => 'Je gebruikt :your_version, wat nieuwer is dan de nieuwste versie, :new_version.', + 'update_check_error' => 'Er is een fout opgetreden bij het controleren op updates: :error', + 'unknown_error' => 'Onbekende fout. Sorry.', + 'disabled_but_check' => 'Je hebt de update-controle uitgeschakeld. Vergeet dus niet zo nu en dan zelf te controleren op updates. Bedankt!', + 'admin_update_channel_title' => 'Updatekanaal', + 'admin_update_channel_explain' => 'Firefly III heeft drie "kanalen" die bepalen of en hoever je voorloopt als het gaat om features, wijzigingen en bugs. Gebruik het "beta"-kanaal als je een avontuurlijke bui hebt en gebruik het "alpha" kanaal als je ook graag met krokodillen zwemt.', + 'update_channel_stable' => 'Stabiel. Zou allemaal goed moeten gaan.', + 'update_channel_beta' => 'Beta. Nieuwe dingen, maar die kunnen stuk zijn.', + 'update_channel_alpha' => 'Alpha. We doen maar wat en jij mag testen.', // search - 'search' => 'Zoeken', - 'search_query' => 'Zoekopdracht', - 'search_found_transactions' => 'Firefly III vond :count transactie in :time seconden.|Firefly III vond :count transacties in :time seconden.', - 'search_found_more_transactions' => 'Firefly III vond meer dan :count transacties in :time seconden.', - 'search_for_query' => 'Firefly III zoekt transacties met al deze woorden: :query', - 'invalid_operators_list' => 'De volgende zoekparameters zijn niet geldig en worden genegeerd.', + 'search' => 'Zoeken', + 'search_query' => 'Zoekopdracht', + 'search_found_transactions' => 'Firefly III vond :count transactie in :time seconden.|Firefly III vond :count transacties in :time seconden.', + 'search_found_more_transactions' => 'Firefly III vond meer dan :count transacties in :time seconden.', + 'search_for_query' => 'Firefly III zoekt transacties met al deze woorden: :query', + 'invalid_operators_list' => 'De volgende zoekparameters zijn niet geldig en worden genegeerd.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Transactiedatum is ":value"', - 'search_modifier_not_date_on' => 'Transactiedatum is niet ":value"', - 'search_modifier_reconciled' => 'Transactie is afgestemd', - 'search_modifier_not_reconciled' => 'Transactie is niet afgestemd', - 'search_modifier_id' => 'Transactie ID is ":value"', - 'search_modifier_not_id' => 'Transactie-ID is niet ":value"', - 'search_modifier_date_before' => 'Transactiedatum is vóór of op ":value"', - 'search_modifier_date_after' => 'Transactiedatum is na of op ":value"', - 'search_modifier_external_id_is' => 'Externe ID is ":value"', - 'search_modifier_not_external_id_is' => 'Externe ID is niet ":value"', - 'search_modifier_no_external_url' => 'De transactie heeft geen externe URL', - 'search_modifier_no_external_id' => 'De transactie heeft geen extern ID', - 'search_modifier_not_any_external_url' => 'De transactie heeft geen externe URL', - 'search_modifier_not_any_external_id' => 'De transactie heeft geen extern ID', - 'search_modifier_any_external_url' => 'De transactie heeft een (welke dan ook) externe URL', - 'search_modifier_any_external_id' => 'De transactie heeft een (welke dan ook) extern ID', - 'search_modifier_not_no_external_url' => 'De transactie heeft een (welke dan ook) externe URL', - 'search_modifier_not_no_external_id' => 'De transactie heeft een (welke dan ook) extern ID', - 'search_modifier_internal_reference_is' => 'Interne referentie is ":value"', - 'search_modifier_not_internal_reference_is' => 'Interne referentie is niet ":value"', - 'search_modifier_description_starts' => 'Beschrijving begint met ":value"', - 'search_modifier_not_description_starts' => 'Beschrijving begint niet met ":value"', - 'search_modifier_description_ends' => 'Beschrijving eindigt op ":value"', - 'search_modifier_not_description_ends' => 'Beschrijving eindigt niet met ":value"', - 'search_modifier_description_contains' => 'Beschrijving bevat ":value"', - 'search_modifier_not_description_contains' => 'Beschrijving bevat niet ":value"', - 'search_modifier_description_is' => 'Beschrijving is ":value"', - 'search_modifier_not_description_is' => 'Beschrijving is niet ":value"', - 'search_modifier_currency_is' => 'Transactie (vreemde) valuta is ":value"', - 'search_modifier_not_currency_is' => 'Transactie (vreemde) valuta is niet ":value"', - 'search_modifier_foreign_currency_is' => 'Transactie vreemde valuta is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transactie vreemde valuta is niet ":value"', - 'search_modifier_has_attachments' => 'De transactie moet een bijlage hebben', - 'search_modifier_has_no_category' => 'De transactie heeft geen categorie', - 'search_modifier_not_has_no_category' => 'Transactie heeft een (welke dan ook) categorie', - 'search_modifier_not_has_any_category' => 'De transactie heeft geen categorie', - 'search_modifier_has_any_category' => 'Transactie heeft een (welke dan ook) categorie', - 'search_modifier_has_no_budget' => 'De transactie heeft geen budget', - 'search_modifier_not_has_any_budget' => 'De transactie heeft geen budget', - 'search_modifier_has_any_budget' => 'Transactie heeft een (welke dan ook) budget', - 'search_modifier_not_has_no_budget' => 'Transactie heeft een (welke dan ook) budget', - 'search_modifier_has_no_bill' => 'De transactie heeft geen contract', - 'search_modifier_not_has_no_bill' => 'Transactie heeft een (welke dan ook) contract', - 'search_modifier_has_any_bill' => 'Transactie heeft een (welke dan ook) contract', - 'search_modifier_not_has_any_bill' => 'De transactie heeft geen contract', - 'search_modifier_has_no_tag' => 'De transactie heeft geen tags', - 'search_modifier_not_has_any_tag' => 'De transactie heeft geen tags', - 'search_modifier_not_has_no_tag' => 'Transactie heeft een (welke dan ook) tag', - 'search_modifier_has_any_tag' => 'Transactie heeft een (welke dan ook) tag', - 'search_modifier_notes_contains' => 'De transactienotities bevatten ":value"', - 'search_modifier_not_notes_contains' => 'De transactienotities bevatten niet ":value"', - 'search_modifier_notes_starts' => 'De transactienotities beginnen met ":value"', - 'search_modifier_not_notes_starts' => 'De transactienotities beginnen niet met ":value"', - 'search_modifier_notes_ends' => 'De transactienotities eindigen op ":value"', - 'search_modifier_not_notes_ends' => 'De transactienotities eindigen niet op ":value"', - 'search_modifier_notes_is' => 'De transactienotities zijn ":value"', - 'search_modifier_not_notes_is' => 'De transactienotities zijn niet ":value"', - 'search_modifier_no_notes' => 'Transactie heeft geen notities', - 'search_modifier_not_no_notes' => 'Transactie heeft notities (eender wat dan)', - 'search_modifier_any_notes' => 'Transactie heeft notities (eender wat dan)', - 'search_modifier_not_any_notes' => 'Transactie heeft geen notities', - 'search_modifier_amount_is' => 'Bedrag is precies :value', - 'search_modifier_not_amount_is' => 'Bedrag is niet :value', - 'search_modifier_amount_less' => 'Bedrag is kleiner dan of gelijk aan :value', - 'search_modifier_not_amount_more' => 'Bedrag is kleiner dan of gelijk aan :value', - 'search_modifier_amount_more' => 'Bedrag is meer dan of gelijk aan :value', - 'search_modifier_not_amount_less' => 'Bedrag is meer dan of gelijk aan :value', - 'search_modifier_source_account_is' => 'Bronrekeningnaam is ":value"', - 'search_modifier_not_source_account_is' => 'Bronrekeningnaam is niet ":value"', - 'search_modifier_source_account_contains' => 'Bronrekeningnaam bevat ":value"', - 'search_modifier_not_source_account_contains' => 'Bronrekeningnaam bevat niet ":value"', - 'search_modifier_source_account_starts' => 'Bronrekeningnaam begint met ":value"', - 'search_modifier_not_source_account_starts' => 'Bronrekeningnaam begint niet met ":value"', - 'search_modifier_source_account_ends' => 'Bronrekeningnaam eindigt met ":value"', - 'search_modifier_not_source_account_ends' => 'Bronrekeningnaam eindigt niet met ":value"', - 'search_modifier_source_account_id' => 'Bronrekening ID is :value', - 'search_modifier_not_source_account_id' => 'Bronrekening ID is niet :value', - 'search_modifier_source_account_nr_is' => 'Bronrekeningnummer (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Bronrekeningnummer (IBAN) is niet ":value"', - 'search_modifier_source_account_nr_contains' => 'Bronrekeningnummer (IBAN) bevat ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Bronrekeningnummer (IBAN) bevat niet ":value"', - 'search_modifier_source_account_nr_starts' => 'Bronrekeningnummer (IBAN) begint met ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Bronrekeningnummer (IBAN) begint niet met ":value"', - 'search_modifier_source_account_nr_ends' => 'Bronrekeningnummer (IBAN) eindigt niet op ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Bronrekeningnummer (IBAN) eindigt niet op ":value"', - 'search_modifier_destination_account_is' => 'Doelrekeningnaam is ":value"', - 'search_modifier_not_destination_account_is' => 'Doelrekeningnaam is niet ":value"', - 'search_modifier_destination_account_contains' => 'Doelrekeningnaam bevat ":value"', - 'search_modifier_not_destination_account_contains' => 'Doelrekeningnaam bevat niet ":value"', - 'search_modifier_destination_account_starts' => 'Doelrekeningnaam begint met ":value"', - 'search_modifier_not_destination_account_starts' => 'Doelrekeningnaam start niet met ":value"', - 'search_modifier_destination_account_ends' => 'Doelrekeningnaam eindigt met ":value"', - 'search_modifier_not_destination_account_ends' => 'Doelrekeningnaam eindigt niet op ":value"', - 'search_modifier_destination_account_id' => 'Doelrekening ID is ":value"', - 'search_modifier_not_destination_account_id' => 'Doelrekening ID is niet ":value"', - 'search_modifier_destination_is_cash' => 'Doelrekening is de "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Doelrekening is niet de "(cash)" account', - 'search_modifier_source_is_cash' => 'Bronrekening is de "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Bronrekening is niet de "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Doelrekeningnummer (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Doelrekeningnummer (IBAN) is niet ":value"', - 'search_modifier_destination_account_nr_contains' => 'Doelrekeningnummer (IBAN) bevat ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Doelrekeningnummer (IBAN) bevat niet ":value"', - 'search_modifier_destination_account_nr_starts' => 'Doelrekeningnummer (IBAN) begint met ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Doelrekeningnummer (IBAN) begint niet met ":value"', - 'search_modifier_destination_account_nr_ends' => 'Doelrekeningnummer (IBAN) eindigt met ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Doelrekeningnummer (IBAN) eindigt niet op ":value"', - 'search_modifier_account_id' => 'Bron- of doelrekening ID is/zijn ":value"', - 'search_modifier_not_account_id' => 'Bron- of doelrekening ID is/zijn niet ":value"', - 'search_modifier_category_is' => 'Categorie is ":value"', - 'search_modifier_not_category_is' => 'Categorie is niet ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is niet ":value"', - 'search_modifier_bill_is' => 'Contract is ":value"', - 'search_modifier_not_bill_is' => 'Contract is niet ":value"', - 'search_modifier_transaction_type' => 'Transactietype is ":value"', - 'search_modifier_not_transaction_type' => 'Transactietype is niet ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag bevat ":value"', - 'search_modifier_not_tag_contains' => 'Tag bevat niet ":value"', - 'search_modifier_tag_ends' => 'Tag eindigt op ":value"', - 'search_modifier_tag_starts' => 'Tag begint met ":value"', - 'search_modifier_not_tag_is' => 'Geen tag is ":value"', - 'search_modifier_date_on_year' => 'Transactie is in jaar ":value"', - 'search_modifier_not_date_on_year' => 'Transactie is niet in jaar ":value"', - 'search_modifier_date_on_month' => 'Transactie is in maand ":value"', - 'search_modifier_not_date_on_month' => 'Transactie is niet in maand ":value"', - 'search_modifier_date_on_day' => 'Transactie is op dag van de maand ":value"', - 'search_modifier_not_date_on_day' => 'Transactie is niet op dag van de maand ":value"', - 'search_modifier_date_before_year' => 'Transactie is in of voor ":value"', - 'search_modifier_date_before_month' => 'Transactie is in of voor maand ":value"', - 'search_modifier_date_before_day' => 'Transactie is voor of op dag van de maand ":value"', - 'search_modifier_date_after_year' => 'Transactie is in of na jaar ":value"', - 'search_modifier_date_after_month' => 'Transactie is in of na maand ":value"', - 'search_modifier_date_after_day' => 'Transactie is op of na dag van de maand ":value"', + 'search_modifier_date_on' => 'Transactiedatum is ":value"', + 'search_modifier_not_date_on' => 'Transactiedatum is niet ":value"', + 'search_modifier_reconciled' => 'Transactie is afgestemd', + 'search_modifier_not_reconciled' => 'Transactie is niet afgestemd', + 'search_modifier_id' => 'Transactie ID is ":value"', + 'search_modifier_not_id' => 'Transactie-ID is niet ":value"', + 'search_modifier_date_before' => 'Transactiedatum is vóór of op ":value"', + 'search_modifier_date_after' => 'Transactiedatum is na of op ":value"', + 'search_modifier_external_id_is' => 'Externe ID is ":value"', + 'search_modifier_not_external_id_is' => 'Externe ID is niet ":value"', + 'search_modifier_no_external_url' => 'De transactie heeft geen externe URL', + 'search_modifier_no_external_id' => 'De transactie heeft geen extern ID', + 'search_modifier_not_any_external_url' => 'De transactie heeft geen externe URL', + 'search_modifier_not_any_external_id' => 'De transactie heeft geen extern ID', + 'search_modifier_any_external_url' => 'De transactie heeft een (welke dan ook) externe URL', + 'search_modifier_any_external_id' => 'De transactie heeft een (welke dan ook) extern ID', + 'search_modifier_not_no_external_url' => 'De transactie heeft een (welke dan ook) externe URL', + 'search_modifier_not_no_external_id' => 'De transactie heeft een (welke dan ook) extern ID', + 'search_modifier_internal_reference_is' => 'Interne referentie is ":value"', + 'search_modifier_not_internal_reference_is' => 'Interne referentie is niet ":value"', + 'search_modifier_description_starts' => 'Beschrijving begint met ":value"', + 'search_modifier_not_description_starts' => 'Beschrijving begint niet met ":value"', + 'search_modifier_description_ends' => 'Beschrijving eindigt op ":value"', + 'search_modifier_not_description_ends' => 'Beschrijving eindigt niet met ":value"', + 'search_modifier_description_contains' => 'Beschrijving bevat ":value"', + 'search_modifier_not_description_contains' => 'Beschrijving bevat niet ":value"', + 'search_modifier_description_is' => 'Beschrijving is ":value"', + 'search_modifier_not_description_is' => 'Beschrijving is niet ":value"', + 'search_modifier_currency_is' => 'Transactie (vreemde) valuta is ":value"', + 'search_modifier_not_currency_is' => 'Transactie (vreemde) valuta is niet ":value"', + 'search_modifier_foreign_currency_is' => 'Transactie vreemde valuta is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transactie vreemde valuta is niet ":value"', + 'search_modifier_has_attachments' => 'De transactie moet een bijlage hebben', + 'search_modifier_has_no_category' => 'De transactie heeft geen categorie', + 'search_modifier_not_has_no_category' => 'Transactie heeft een (welke dan ook) categorie', + 'search_modifier_not_has_any_category' => 'De transactie heeft geen categorie', + 'search_modifier_has_any_category' => 'Transactie heeft een (welke dan ook) categorie', + 'search_modifier_has_no_budget' => 'De transactie heeft geen budget', + 'search_modifier_not_has_any_budget' => 'De transactie heeft geen budget', + 'search_modifier_has_any_budget' => 'Transactie heeft een (welke dan ook) budget', + 'search_modifier_not_has_no_budget' => 'Transactie heeft een (welke dan ook) budget', + 'search_modifier_has_no_bill' => 'De transactie heeft geen contract', + 'search_modifier_not_has_no_bill' => 'Transactie heeft een (welke dan ook) contract', + 'search_modifier_has_any_bill' => 'Transactie heeft een (welke dan ook) contract', + 'search_modifier_not_has_any_bill' => 'De transactie heeft geen contract', + 'search_modifier_has_no_tag' => 'De transactie heeft geen tags', + 'search_modifier_not_has_any_tag' => 'De transactie heeft geen tags', + 'search_modifier_not_has_no_tag' => 'Transactie heeft een (welke dan ook) tag', + 'search_modifier_has_any_tag' => 'Transactie heeft een (welke dan ook) tag', + 'search_modifier_notes_contains' => 'De transactienotities bevatten ":value"', + 'search_modifier_not_notes_contains' => 'De transactienotities bevatten niet ":value"', + 'search_modifier_notes_starts' => 'De transactienotities beginnen met ":value"', + 'search_modifier_not_notes_starts' => 'De transactienotities beginnen niet met ":value"', + 'search_modifier_notes_ends' => 'De transactienotities eindigen op ":value"', + 'search_modifier_not_notes_ends' => 'De transactienotities eindigen niet op ":value"', + 'search_modifier_notes_is' => 'De transactienotities zijn ":value"', + 'search_modifier_not_notes_is' => 'De transactienotities zijn niet ":value"', + 'search_modifier_no_notes' => 'Transactie heeft geen notities', + 'search_modifier_not_no_notes' => 'Transactie heeft notities (eender wat dan)', + 'search_modifier_any_notes' => 'Transactie heeft notities (eender wat dan)', + 'search_modifier_not_any_notes' => 'Transactie heeft geen notities', + 'search_modifier_amount_is' => 'Bedrag is precies :value', + 'search_modifier_not_amount_is' => 'Bedrag is niet :value', + 'search_modifier_amount_less' => 'Bedrag is kleiner dan of gelijk aan :value', + 'search_modifier_not_amount_more' => 'Bedrag is kleiner dan of gelijk aan :value', + 'search_modifier_amount_more' => 'Bedrag is meer dan of gelijk aan :value', + 'search_modifier_not_amount_less' => 'Bedrag is meer dan of gelijk aan :value', + 'search_modifier_source_account_is' => 'Bronrekeningnaam is ":value"', + 'search_modifier_not_source_account_is' => 'Bronrekeningnaam is niet ":value"', + 'search_modifier_source_account_contains' => 'Bronrekeningnaam bevat ":value"', + 'search_modifier_not_source_account_contains' => 'Bronrekeningnaam bevat niet ":value"', + 'search_modifier_source_account_starts' => 'Bronrekeningnaam begint met ":value"', + 'search_modifier_not_source_account_starts' => 'Bronrekeningnaam begint niet met ":value"', + 'search_modifier_source_account_ends' => 'Bronrekeningnaam eindigt met ":value"', + 'search_modifier_not_source_account_ends' => 'Bronrekeningnaam eindigt niet met ":value"', + 'search_modifier_source_account_id' => 'Bronrekening ID is :value', + 'search_modifier_not_source_account_id' => 'Bronrekening ID is niet :value', + 'search_modifier_source_account_nr_is' => 'Bronrekeningnummer (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Bronrekeningnummer (IBAN) is niet ":value"', + 'search_modifier_source_account_nr_contains' => 'Bronrekeningnummer (IBAN) bevat ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Bronrekeningnummer (IBAN) bevat niet ":value"', + 'search_modifier_source_account_nr_starts' => 'Bronrekeningnummer (IBAN) begint met ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Bronrekeningnummer (IBAN) begint niet met ":value"', + 'search_modifier_source_account_nr_ends' => 'Bronrekeningnummer (IBAN) eindigt niet op ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Bronrekeningnummer (IBAN) eindigt niet op ":value"', + 'search_modifier_destination_account_is' => 'Doelrekeningnaam is ":value"', + 'search_modifier_not_destination_account_is' => 'Doelrekeningnaam is niet ":value"', + 'search_modifier_destination_account_contains' => 'Doelrekeningnaam bevat ":value"', + 'search_modifier_not_destination_account_contains' => 'Doelrekeningnaam bevat niet ":value"', + 'search_modifier_destination_account_starts' => 'Doelrekeningnaam begint met ":value"', + 'search_modifier_not_destination_account_starts' => 'Doelrekeningnaam start niet met ":value"', + 'search_modifier_destination_account_ends' => 'Doelrekeningnaam eindigt met ":value"', + 'search_modifier_not_destination_account_ends' => 'Doelrekeningnaam eindigt niet op ":value"', + 'search_modifier_destination_account_id' => 'Doelrekening ID is ":value"', + 'search_modifier_not_destination_account_id' => 'Doelrekening ID is niet ":value"', + 'search_modifier_destination_is_cash' => 'Doelrekening is de "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Doelrekening is niet de "(cash)" account', + 'search_modifier_source_is_cash' => 'Bronrekening is de "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Bronrekening is niet de "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Doelrekeningnummer (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Doelrekeningnummer (IBAN) is niet ":value"', + 'search_modifier_destination_account_nr_contains' => 'Doelrekeningnummer (IBAN) bevat ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Doelrekeningnummer (IBAN) bevat niet ":value"', + 'search_modifier_destination_account_nr_starts' => 'Doelrekeningnummer (IBAN) begint met ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Doelrekeningnummer (IBAN) begint niet met ":value"', + 'search_modifier_destination_account_nr_ends' => 'Doelrekeningnummer (IBAN) eindigt met ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Doelrekeningnummer (IBAN) eindigt niet op ":value"', + 'search_modifier_account_id' => 'Bron- of doelrekening ID is/zijn ":value"', + 'search_modifier_not_account_id' => 'Bron- of doelrekening ID is/zijn niet ":value"', + 'search_modifier_category_is' => 'Categorie is ":value"', + 'search_modifier_not_category_is' => 'Categorie is niet ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is niet ":value"', + 'search_modifier_bill_is' => 'Contract is ":value"', + 'search_modifier_not_bill_is' => 'Contract is niet ":value"', + 'search_modifier_transaction_type' => 'Transactietype is ":value"', + 'search_modifier_not_transaction_type' => 'Transactietype is niet ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag bevat ":value"', + 'search_modifier_not_tag_contains' => 'Tag bevat niet ":value"', + 'search_modifier_tag_ends' => 'Tag eindigt op ":value"', + 'search_modifier_tag_starts' => 'Tag begint met ":value"', + 'search_modifier_not_tag_is' => 'Geen tag is ":value"', + 'search_modifier_date_on_year' => 'Transactie is in jaar ":value"', + 'search_modifier_not_date_on_year' => 'Transactie is niet in jaar ":value"', + 'search_modifier_date_on_month' => 'Transactie is in maand ":value"', + 'search_modifier_not_date_on_month' => 'Transactie is niet in maand ":value"', + 'search_modifier_date_on_day' => 'Transactie is op dag van de maand ":value"', + 'search_modifier_not_date_on_day' => 'Transactie is niet op dag van de maand ":value"', + 'search_modifier_date_before_year' => 'Transactie is in of voor ":value"', + 'search_modifier_date_before_month' => 'Transactie is in of voor maand ":value"', + 'search_modifier_date_before_day' => 'Transactie is voor of op dag van de maand ":value"', + 'search_modifier_date_after_year' => 'Transactie is in of na jaar ":value"', + 'search_modifier_date_after_month' => 'Transactie is in of na maand ":value"', + 'search_modifier_date_after_day' => 'Transactie is op of na dag van de maand ":value"', // new - 'search_modifier_tag_is_not' => 'Geen tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Bron- of doelrekeningnaam is ":value"', - 'search_modifier_not_account_is' => 'Bron- noch doelrekeningnaam is ":value"', - 'search_modifier_account_contains' => 'Bron- of doelrekeningnaam bevat ":value"', - 'search_modifier_not_account_contains' => 'Bron- noch doelrekeningnaam bevat ":value"', - 'search_modifier_account_ends' => 'Bron- of doelrekeningnaam eindigt op ":value"', - 'search_modifier_not_account_ends' => 'Bron- noch doelrekeningnaam eindigt op ":value"', - 'search_modifier_account_starts' => 'Bron- of doelrekeningnaam begint met ":value"', - 'search_modifier_not_account_starts' => 'Bron- noch doelrekeningnaam begint met ":value"', - 'search_modifier_account_nr_is' => 'Bron- of doelrekeningnummer / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Bron- noch doelrekeningnummer / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Bron- of doelrekeningnummer / IBAN bevat ":value"', - 'search_modifier_not_account_nr_contains' => 'Bron- noch doelrekeningnummer / IBAN bevat ":value"', - 'search_modifier_account_nr_ends' => 'Bron- of doelrekeningnummer / IBAN eindigt op ":value"', - 'search_modifier_not_account_nr_ends' => 'Bron- noch doelrekeningnummer / IBAN eindigt op ":value"', - 'search_modifier_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint met ":value"', - 'search_modifier_not_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint niet met ":value"', - 'search_modifier_category_contains' => 'Categorie bevat ":value"', - 'search_modifier_not_category_contains' => 'Categorie bevat niet ":value"', - 'search_modifier_category_ends' => 'Categorie eindigt op ":value"', - 'search_modifier_not_category_ends' => 'Categorie eindigt niet op ":value"', - 'search_modifier_category_starts' => 'Categorie begint met ":value"', - 'search_modifier_not_category_starts' => 'Categorie begint niet met ":value"', - 'search_modifier_budget_contains' => 'Budget bevat ":value"', - 'search_modifier_not_budget_contains' => 'Budget bevat niet ":value"', - 'search_modifier_budget_ends' => 'Budget eindigt op ":value"', - 'search_modifier_not_budget_ends' => 'Budget eindigt niet op ":value"', - 'search_modifier_budget_starts' => 'Budget begint met ":value"', - 'search_modifier_not_budget_starts' => 'Budget begint niet met ":value"', - 'search_modifier_bill_contains' => 'Contract bevat ":value"', - 'search_modifier_not_bill_contains' => 'Contract bevat niet ":value"', - 'search_modifier_bill_ends' => 'Contract eindigt op ":value"', - 'search_modifier_not_bill_ends' => 'Contract eindigt niet op ":value"', - 'search_modifier_bill_starts' => 'Contract begint met ":value"', - 'search_modifier_not_bill_starts' => 'Contract begint niet met ":value"', - 'search_modifier_external_id_contains' => 'Externe ID bevat ":value"', - 'search_modifier_not_external_id_contains' => 'Externe ID bevat niet ":value"', - 'search_modifier_external_id_ends' => 'Externe ID eindigt op ":value"', - 'search_modifier_not_external_id_ends' => 'Externe ID eindigt niet op ":value"', - 'search_modifier_external_id_starts' => 'Externe ID begint met ":value"', - 'search_modifier_not_external_id_starts' => 'Externe ID begint niet met ":value"', - 'search_modifier_internal_reference_contains' => 'Interne referentie bevat ":value"', - 'search_modifier_not_internal_reference_contains' => 'Interne referentie bevat niet ":value"', - 'search_modifier_internal_reference_ends' => 'Interne referentie eindigt op ":value"', - 'search_modifier_internal_reference_starts' => 'Interne referentie begint met ":value"', - 'search_modifier_not_internal_reference_ends' => 'Interne referentie eindigt niet op ":value"', - 'search_modifier_not_internal_reference_starts' => 'Interne referentie begint niet met ":value"', - 'search_modifier_external_url_is' => 'Externe URL is ":value"', - 'search_modifier_not_external_url_is' => 'Externe URL is niet ":value"', - 'search_modifier_external_url_contains' => 'Externe URL bevat ":value"', - 'search_modifier_not_external_url_contains' => 'Externe URL bevat niet ":value"', - 'search_modifier_external_url_ends' => 'Externe URL eindigt op ":value"', - 'search_modifier_not_external_url_ends' => 'Externe URL eindigt niet op ":value"', - 'search_modifier_external_url_starts' => 'Externe URL begint met ":value"', - 'search_modifier_not_external_url_starts' => 'Externe ID begint niet met ":value"', - 'search_modifier_has_no_attachments' => 'Transactie heeft geen bijlagen', - 'search_modifier_not_has_no_attachments' => 'Transactie heeft bijlagen', - 'search_modifier_not_has_attachments' => 'Transactie heeft geen bijlagen', - 'search_modifier_account_is_cash' => 'Bron- of doelrekening is de "(cash)"-rekening.', - 'search_modifier_not_account_is_cash' => 'Bron- noch doelrekening is de "(cash)"-rekening.', - 'search_modifier_journal_id' => 'Het journal-ID is ":value"', - 'search_modifier_not_journal_id' => 'Het journal-ID is niet ":value"', - 'search_modifier_recurrence_id' => 'Het ID van de periodieke transactie is ":value"', - 'search_modifier_not_recurrence_id' => 'Het ID van de periodieke transactie is niet ":value"', - 'search_modifier_foreign_amount_is' => 'Het bedrag in vreemde valuta is ":value"', - 'search_modifier_not_foreign_amount_is' => 'Het bedrag in vreemde valuta is niet ":value"', - 'search_modifier_foreign_amount_less' => 'Het bedrag in vreemde valuta is minder dan ":value"', - 'search_modifier_not_foreign_amount_more' => 'Het bedrag in vreemde valuta is minder dan ":value"', - 'search_modifier_not_foreign_amount_less' => 'Het bedrag in vreemde valuta is meer dan ":value"', - 'search_modifier_foreign_amount_more' => 'Het bedrag in vreemde valuta is meer dan ":value"', - 'search_modifier_exists' => 'Transactie bestaat (elke transactie)', - 'search_modifier_not_exists' => 'Transactie bestaat niet (geen transactie)', + 'search_modifier_tag_is_not' => 'Geen tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Bron- of doelrekeningnaam is ":value"', + 'search_modifier_not_account_is' => 'Bron- noch doelrekeningnaam is ":value"', + 'search_modifier_account_contains' => 'Bron- of doelrekeningnaam bevat ":value"', + 'search_modifier_not_account_contains' => 'Bron- noch doelrekeningnaam bevat ":value"', + 'search_modifier_account_ends' => 'Bron- of doelrekeningnaam eindigt op ":value"', + 'search_modifier_not_account_ends' => 'Bron- noch doelrekeningnaam eindigt op ":value"', + 'search_modifier_account_starts' => 'Bron- of doelrekeningnaam begint met ":value"', + 'search_modifier_not_account_starts' => 'Bron- noch doelrekeningnaam begint met ":value"', + 'search_modifier_account_nr_is' => 'Bron- of doelrekeningnummer / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Bron- noch doelrekeningnummer / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Bron- of doelrekeningnummer / IBAN bevat ":value"', + 'search_modifier_not_account_nr_contains' => 'Bron- noch doelrekeningnummer / IBAN bevat ":value"', + 'search_modifier_account_nr_ends' => 'Bron- of doelrekeningnummer / IBAN eindigt op ":value"', + 'search_modifier_not_account_nr_ends' => 'Bron- noch doelrekeningnummer / IBAN eindigt op ":value"', + 'search_modifier_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint met ":value"', + 'search_modifier_not_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint niet met ":value"', + 'search_modifier_category_contains' => 'Categorie bevat ":value"', + 'search_modifier_not_category_contains' => 'Categorie bevat niet ":value"', + 'search_modifier_category_ends' => 'Categorie eindigt op ":value"', + 'search_modifier_not_category_ends' => 'Categorie eindigt niet op ":value"', + 'search_modifier_category_starts' => 'Categorie begint met ":value"', + 'search_modifier_not_category_starts' => 'Categorie begint niet met ":value"', + 'search_modifier_budget_contains' => 'Budget bevat ":value"', + 'search_modifier_not_budget_contains' => 'Budget bevat niet ":value"', + 'search_modifier_budget_ends' => 'Budget eindigt op ":value"', + 'search_modifier_not_budget_ends' => 'Budget eindigt niet op ":value"', + 'search_modifier_budget_starts' => 'Budget begint met ":value"', + 'search_modifier_not_budget_starts' => 'Budget begint niet met ":value"', + 'search_modifier_bill_contains' => 'Contract bevat ":value"', + 'search_modifier_not_bill_contains' => 'Contract bevat niet ":value"', + 'search_modifier_bill_ends' => 'Contract eindigt op ":value"', + 'search_modifier_not_bill_ends' => 'Contract eindigt niet op ":value"', + 'search_modifier_bill_starts' => 'Contract begint met ":value"', + 'search_modifier_not_bill_starts' => 'Contract begint niet met ":value"', + 'search_modifier_external_id_contains' => 'Externe ID bevat ":value"', + 'search_modifier_not_external_id_contains' => 'Externe ID bevat niet ":value"', + 'search_modifier_external_id_ends' => 'Externe ID eindigt op ":value"', + 'search_modifier_not_external_id_ends' => 'Externe ID eindigt niet op ":value"', + 'search_modifier_external_id_starts' => 'Externe ID begint met ":value"', + 'search_modifier_not_external_id_starts' => 'Externe ID begint niet met ":value"', + 'search_modifier_internal_reference_contains' => 'Interne referentie bevat ":value"', + 'search_modifier_not_internal_reference_contains' => 'Interne referentie bevat niet ":value"', + 'search_modifier_internal_reference_ends' => 'Interne referentie eindigt op ":value"', + 'search_modifier_internal_reference_starts' => 'Interne referentie begint met ":value"', + 'search_modifier_not_internal_reference_ends' => 'Interne referentie eindigt niet op ":value"', + 'search_modifier_not_internal_reference_starts' => 'Interne referentie begint niet met ":value"', + 'search_modifier_external_url_is' => 'Externe URL is ":value"', + 'search_modifier_not_external_url_is' => 'Externe URL is niet ":value"', + 'search_modifier_external_url_contains' => 'Externe URL bevat ":value"', + 'search_modifier_not_external_url_contains' => 'Externe URL bevat niet ":value"', + 'search_modifier_external_url_ends' => 'Externe URL eindigt op ":value"', + 'search_modifier_not_external_url_ends' => 'Externe URL eindigt niet op ":value"', + 'search_modifier_external_url_starts' => 'Externe URL begint met ":value"', + 'search_modifier_not_external_url_starts' => 'Externe ID begint niet met ":value"', + 'search_modifier_has_no_attachments' => 'Transactie heeft geen bijlagen', + 'search_modifier_not_has_no_attachments' => 'Transactie heeft bijlagen', + 'search_modifier_not_has_attachments' => 'Transactie heeft geen bijlagen', + 'search_modifier_account_is_cash' => 'Bron- of doelrekening is de "(cash)"-rekening.', + 'search_modifier_not_account_is_cash' => 'Bron- noch doelrekening is de "(cash)"-rekening.', + 'search_modifier_journal_id' => 'Het journal-ID is ":value"', + 'search_modifier_not_journal_id' => 'Het journal-ID is niet ":value"', + 'search_modifier_recurrence_id' => 'Het ID van de periodieke transactie is ":value"', + 'search_modifier_not_recurrence_id' => 'Het ID van de periodieke transactie is niet ":value"', + 'search_modifier_foreign_amount_is' => 'Het bedrag in vreemde valuta is ":value"', + 'search_modifier_not_foreign_amount_is' => 'Het bedrag in vreemde valuta is niet ":value"', + 'search_modifier_foreign_amount_less' => 'Het bedrag in vreemde valuta is minder dan ":value"', + 'search_modifier_not_foreign_amount_more' => 'Het bedrag in vreemde valuta is minder dan ":value"', + 'search_modifier_not_foreign_amount_less' => 'Het bedrag in vreemde valuta is meer dan ":value"', + 'search_modifier_foreign_amount_more' => 'Het bedrag in vreemde valuta is meer dan ":value"', + 'search_modifier_exists' => 'Transactie bestaat (elke transactie)', + 'search_modifier_not_exists' => 'Transactie bestaat niet (geen transactie)', // date fields - 'search_modifier_interest_date_on' => 'De rentedatum is ":value"', - 'search_modifier_not_interest_date_on' => 'De rentedatum is niet ":value"', - 'search_modifier_interest_date_on_year' => 'De rentedatum is in jaar ":value"', - 'search_modifier_not_interest_date_on_year' => 'De rentedatum is niet in jaar ":value"', - 'search_modifier_interest_date_on_month' => 'De rentedatum is in maand ":value"', - 'search_modifier_not_interest_date_on_month' => 'De rentedatum is niet in maand ":value"', - 'search_modifier_interest_date_on_day' => 'De rentedatum is op dag van de maand ":value"', - 'search_modifier_not_interest_date_on_day' => 'De rentedatum is niet op dag van de maand ":value"', - 'search_modifier_interest_date_before_year' => 'De rentedatum is in of voor jaar ":value"', - 'search_modifier_interest_date_before_month' => 'De rentedatum is in of voor maand ":value"', - 'search_modifier_interest_date_before_day' => 'De rentedatum is op of voor dag van de maand ":value"', - 'search_modifier_interest_date_after_year' => 'De rentedatum is in of na jaar ":value"', - 'search_modifier_interest_date_after_month' => 'De rentedatum is in of na maand ":value"', - 'search_modifier_interest_date_after_day' => 'De rentedatum is op of na dag van de maand ":value"', - 'search_modifier_book_date_on_year' => 'De boekdatum is in jaar ":value"', - 'search_modifier_book_date_on_month' => 'De boekdatum is in maand ":value"', - 'search_modifier_book_date_on_day' => 'De boekdatum is op dag van de maand ":value"', - 'search_modifier_not_book_date_on_year' => 'De boekdatum is niet in jaar ":value"', - 'search_modifier_not_book_date_on_month' => 'De boekdatum is niet in maand ":value"', - 'search_modifier_not_book_date_on_day' => 'De boekdatum is niet op dag van de maand ":value"', - 'search_modifier_book_date_before_year' => 'De boekdatum is in of voor jaar ":value"', - 'search_modifier_book_date_before_month' => 'De boekdatum is in of voor maand ":value"', - 'search_modifier_book_date_before_day' => 'De boekdatum op in of voor dag van de maand ":value"', - 'search_modifier_book_date_after_year' => 'De boekdatum is in of na jaar ":value"', - 'search_modifier_book_date_after_month' => 'De boekdatum is in of na maand ":value"', - 'search_modifier_book_date_after_day' => 'De boekdatum is op of na dag van de maand ":value"', - 'search_modifier_process_date_on_year' => 'De verwerkingsdatum is in jaar ":value"', - 'search_modifier_process_date_on_month' => 'De verwerkingsdatum is in maand ":value"', - 'search_modifier_process_date_on_day' => 'De verwerkingsdatum is op dag van de maand ":value"', - 'search_modifier_not_process_date_on_year' => 'De verwerkingsdatum is niet in jaar ":value"', - 'search_modifier_not_process_date_on_month' => 'De verwerkingsdatum is niet in maand ":value"', - 'search_modifier_not_process_date_on_day' => 'De verwerkingsdatum is niet op dag van de maand ":value"', - 'search_modifier_process_date_before_year' => 'De verwerkingsdatum is in of voor jaar ":value"', - 'search_modifier_process_date_before_month' => 'De verwerkingsdatum is in of voor maand ":value"', - 'search_modifier_process_date_before_day' => 'De verwerkingsdatum is op of voor dag van de maand ":value"', - 'search_modifier_process_date_after_year' => 'De verwerkingsdatum is in of na jaar ":value"', - 'search_modifier_process_date_after_month' => 'De verwerkingsdatum is in of na maand ":value"', - 'search_modifier_process_date_after_day' => 'De verwerkingsdatum is op of na dag van de maand ":value"', - 'search_modifier_due_date_on_year' => 'De vervaldatum is in jaar ":value"', - 'search_modifier_due_date_on_month' => 'De vervaldatum is in maand ":value"', - 'search_modifier_due_date_on_day' => 'De vervaldatum is op dag van de maand ":value"', - 'search_modifier_not_due_date_on_year' => 'De vervaldatum is niet in jaar ":value"', - 'search_modifier_not_due_date_on_month' => 'De vervaldatum is niet in maand ":value"', - 'search_modifier_not_due_date_on_day' => 'De vervaldatum is niet op dag van de maand ":value"', - 'search_modifier_due_date_before_year' => 'De vervaldatum is in of voor jaar ":value"', - 'search_modifier_due_date_before_month' => 'De vervaldatum is in of voor maand ":value"', - 'search_modifier_due_date_before_day' => 'De vervaldatum is op of voor dag van de maand ":value"', - 'search_modifier_due_date_after_year' => 'De vervaldatum is in of na jaar ":value"', - 'search_modifier_due_date_after_month' => 'De vervaldatum is in of na maand ":value"', - 'search_modifier_due_date_after_day' => 'De vervaldatum is op of na dag van de maand ":value"', - 'search_modifier_payment_date_on_year' => 'De betalingsdatum is in jaar ":value"', - 'search_modifier_payment_date_on_month' => 'De betalingsdatum is in maand ":value"', - 'search_modifier_payment_date_on_day' => 'De betalingsdatum is op dag van de maand ":value"', - 'search_modifier_not_payment_date_on_year' => 'De betalingsdatum is niet in jaar ":value"', - 'search_modifier_not_payment_date_on_month' => 'De betalingsdatum is niet in maand ":value"', - 'search_modifier_not_payment_date_on_day' => 'De betalingsdatum is niet op dag van de maand ":value"', - 'search_modifier_payment_date_before_year' => 'De betalingsdatum is in of voor jaar ":value"', - 'search_modifier_payment_date_before_month' => 'De betalingsdatum is in of voor maand ":value"', - 'search_modifier_payment_date_before_day' => 'De betalingsdatum is op of voor dag van de maand ":value"', - 'search_modifier_payment_date_after_year' => 'De betalingsdatum is in of na jaar ":value"', - 'search_modifier_payment_date_after_month' => 'De betalingsdatum is in of na maand ":value"', - 'search_modifier_payment_date_after_day' => 'De betalingsdatum is op of na dag van de maand ":value"', - 'search_modifier_invoice_date_on_year' => 'De factuurdatum is in jaar ":value"', - 'search_modifier_invoice_date_on_month' => 'De factuurdatum is in maand ":value"', - 'search_modifier_invoice_date_on_day' => 'De factuurdatum is op dag van de maand ":value"', - 'search_modifier_not_invoice_date_on_year' => 'De factuurdatum is niet in jaar ":value"', - 'search_modifier_not_invoice_date_on_month' => 'De factuurdatum is niet in maand ":value"', - 'search_modifier_not_invoice_date_on_day' => 'De factuurdatum is niet op dag van de maand ":value"', - 'search_modifier_invoice_date_before_year' => 'De factuurdatum is in of voor jaar ":value"', - 'search_modifier_invoice_date_before_month' => 'De factuurdatum is in of voor maand ":value"', - 'search_modifier_invoice_date_before_day' => 'De factuurdatum is op of voor dag van de maand ":value"', - 'search_modifier_invoice_date_after_year' => 'De factuurdatum is in of na jaar ":value"', - 'search_modifier_invoice_date_after_month' => 'De factuurdatum is in of na maand ":value"', - 'search_modifier_invoice_date_after_day' => 'De factuurdatum is op of na dag van de maand ":value"', + 'search_modifier_interest_date_on' => 'De rentedatum is ":value"', + 'search_modifier_not_interest_date_on' => 'De rentedatum is niet ":value"', + 'search_modifier_interest_date_on_year' => 'De rentedatum is in jaar ":value"', + 'search_modifier_not_interest_date_on_year' => 'De rentedatum is niet in jaar ":value"', + 'search_modifier_interest_date_on_month' => 'De rentedatum is in maand ":value"', + 'search_modifier_not_interest_date_on_month' => 'De rentedatum is niet in maand ":value"', + 'search_modifier_interest_date_on_day' => 'De rentedatum is op dag van de maand ":value"', + 'search_modifier_not_interest_date_on_day' => 'De rentedatum is niet op dag van de maand ":value"', + 'search_modifier_interest_date_before_year' => 'De rentedatum is in of voor jaar ":value"', + 'search_modifier_interest_date_before_month' => 'De rentedatum is in of voor maand ":value"', + 'search_modifier_interest_date_before_day' => 'De rentedatum is op of voor dag van de maand ":value"', + 'search_modifier_interest_date_after_year' => 'De rentedatum is in of na jaar ":value"', + 'search_modifier_interest_date_after_month' => 'De rentedatum is in of na maand ":value"', + 'search_modifier_interest_date_after_day' => 'De rentedatum is op of na dag van de maand ":value"', + 'search_modifier_book_date_on_year' => 'De boekdatum is in jaar ":value"', + 'search_modifier_book_date_on_month' => 'De boekdatum is in maand ":value"', + 'search_modifier_book_date_on_day' => 'De boekdatum is op dag van de maand ":value"', + 'search_modifier_not_book_date_on_year' => 'De boekdatum is niet in jaar ":value"', + 'search_modifier_not_book_date_on_month' => 'De boekdatum is niet in maand ":value"', + 'search_modifier_not_book_date_on_day' => 'De boekdatum is niet op dag van de maand ":value"', + 'search_modifier_book_date_before_year' => 'De boekdatum is in of voor jaar ":value"', + 'search_modifier_book_date_before_month' => 'De boekdatum is in of voor maand ":value"', + 'search_modifier_book_date_before_day' => 'De boekdatum op in of voor dag van de maand ":value"', + 'search_modifier_book_date_after_year' => 'De boekdatum is in of na jaar ":value"', + 'search_modifier_book_date_after_month' => 'De boekdatum is in of na maand ":value"', + 'search_modifier_book_date_after_day' => 'De boekdatum is op of na dag van de maand ":value"', + 'search_modifier_process_date_on_year' => 'De verwerkingsdatum is in jaar ":value"', + 'search_modifier_process_date_on_month' => 'De verwerkingsdatum is in maand ":value"', + 'search_modifier_process_date_on_day' => 'De verwerkingsdatum is op dag van de maand ":value"', + 'search_modifier_not_process_date_on_year' => 'De verwerkingsdatum is niet in jaar ":value"', + 'search_modifier_not_process_date_on_month' => 'De verwerkingsdatum is niet in maand ":value"', + 'search_modifier_not_process_date_on_day' => 'De verwerkingsdatum is niet op dag van de maand ":value"', + 'search_modifier_process_date_before_year' => 'De verwerkingsdatum is in of voor jaar ":value"', + 'search_modifier_process_date_before_month' => 'De verwerkingsdatum is in of voor maand ":value"', + 'search_modifier_process_date_before_day' => 'De verwerkingsdatum is op of voor dag van de maand ":value"', + 'search_modifier_process_date_after_year' => 'De verwerkingsdatum is in of na jaar ":value"', + 'search_modifier_process_date_after_month' => 'De verwerkingsdatum is in of na maand ":value"', + 'search_modifier_process_date_after_day' => 'De verwerkingsdatum is op of na dag van de maand ":value"', + 'search_modifier_due_date_on_year' => 'De vervaldatum is in jaar ":value"', + 'search_modifier_due_date_on_month' => 'De vervaldatum is in maand ":value"', + 'search_modifier_due_date_on_day' => 'De vervaldatum is op dag van de maand ":value"', + 'search_modifier_not_due_date_on_year' => 'De vervaldatum is niet in jaar ":value"', + 'search_modifier_not_due_date_on_month' => 'De vervaldatum is niet in maand ":value"', + 'search_modifier_not_due_date_on_day' => 'De vervaldatum is niet op dag van de maand ":value"', + 'search_modifier_due_date_before_year' => 'De vervaldatum is in of voor jaar ":value"', + 'search_modifier_due_date_before_month' => 'De vervaldatum is in of voor maand ":value"', + 'search_modifier_due_date_before_day' => 'De vervaldatum is op of voor dag van de maand ":value"', + 'search_modifier_due_date_after_year' => 'De vervaldatum is in of na jaar ":value"', + 'search_modifier_due_date_after_month' => 'De vervaldatum is in of na maand ":value"', + 'search_modifier_due_date_after_day' => 'De vervaldatum is op of na dag van de maand ":value"', + 'search_modifier_payment_date_on_year' => 'De betalingsdatum is in jaar ":value"', + 'search_modifier_payment_date_on_month' => 'De betalingsdatum is in maand ":value"', + 'search_modifier_payment_date_on_day' => 'De betalingsdatum is op dag van de maand ":value"', + 'search_modifier_not_payment_date_on_year' => 'De betalingsdatum is niet in jaar ":value"', + 'search_modifier_not_payment_date_on_month' => 'De betalingsdatum is niet in maand ":value"', + 'search_modifier_not_payment_date_on_day' => 'De betalingsdatum is niet op dag van de maand ":value"', + 'search_modifier_payment_date_before_year' => 'De betalingsdatum is in of voor jaar ":value"', + 'search_modifier_payment_date_before_month' => 'De betalingsdatum is in of voor maand ":value"', + 'search_modifier_payment_date_before_day' => 'De betalingsdatum is op of voor dag van de maand ":value"', + 'search_modifier_payment_date_after_year' => 'De betalingsdatum is in of na jaar ":value"', + 'search_modifier_payment_date_after_month' => 'De betalingsdatum is in of na maand ":value"', + 'search_modifier_payment_date_after_day' => 'De betalingsdatum is op of na dag van de maand ":value"', + 'search_modifier_invoice_date_on_year' => 'De factuurdatum is in jaar ":value"', + 'search_modifier_invoice_date_on_month' => 'De factuurdatum is in maand ":value"', + 'search_modifier_invoice_date_on_day' => 'De factuurdatum is op dag van de maand ":value"', + 'search_modifier_not_invoice_date_on_year' => 'De factuurdatum is niet in jaar ":value"', + 'search_modifier_not_invoice_date_on_month' => 'De factuurdatum is niet in maand ":value"', + 'search_modifier_not_invoice_date_on_day' => 'De factuurdatum is niet op dag van de maand ":value"', + 'search_modifier_invoice_date_before_year' => 'De factuurdatum is in of voor jaar ":value"', + 'search_modifier_invoice_date_before_month' => 'De factuurdatum is in of voor maand ":value"', + 'search_modifier_invoice_date_before_day' => 'De factuurdatum is op of voor dag van de maand ":value"', + 'search_modifier_invoice_date_after_year' => 'De factuurdatum is in of na jaar ":value"', + 'search_modifier_invoice_date_after_month' => 'De factuurdatum is in of na maand ":value"', + 'search_modifier_invoice_date_after_day' => 'De factuurdatum is op of na dag van de maand ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'De transactie werd het laatst gewijzigd in jaar ":value"', - 'search_modifier_updated_at_on_month' => 'De transactie werd het laatst gewijzigd in maand ":value"', - 'search_modifier_updated_at_on_day' => 'De transactie werd het laatst gewijzigd op dag van de maand ":value"', - 'search_modifier_not_updated_at_on_year' => 'De transactie werd niet het laatst gewijzigd in jaar ":value"', - 'search_modifier_not_updated_at_on_month' => 'De transactie werd niet het laatst gewijzigd in maand ":value"', - 'search_modifier_not_updated_at_on_day' => 'De transactie werd niet het laatst gewijzigd op dag van de maand ":value"', - 'search_modifier_updated_at_before_year' => 'De transactie werd het laatst gewijzigd in of voor jaar ":value"', - 'search_modifier_updated_at_before_month' => 'De transactie werd het laatst gewijzigd in of voor maand ":value"', - 'search_modifier_updated_at_before_day' => 'De transactie werd het laatst gewijzigd op of voor dag van de maand ":value"', - 'search_modifier_updated_at_after_year' => 'De transactie werd het laatst gewijzigd in of na jaar ":value"', - 'search_modifier_updated_at_after_month' => 'De transactie werd het laatst gewijzigd in of na maand ":value"', - 'search_modifier_updated_at_after_day' => 'Transactie werd laatst gewijzigd op of na dag van de maand ":value"', - 'search_modifier_created_at_on_year' => 'Transactie werd gemaakt in jaar ":value"', - 'search_modifier_created_at_on_month' => 'Transactie werd gemaakt in maand ":value"', - 'search_modifier_created_at_on_day' => 'Transactie werd gemaakt op dag van de maand ":value"', - 'search_modifier_not_created_at_on_year' => 'De transactie werd niet gemaakt in jaar ":value"', - 'search_modifier_not_created_at_on_month' => 'De transactie werd niet gemaakt in maand ":value"', - 'search_modifier_not_created_at_on_day' => 'Transactie werd niet gemaakt op dag van de maand ":value"', - 'search_modifier_created_at_before_year' => 'Transactie werd gemaakt in of voor jaar ":value"', - 'search_modifier_created_at_before_month' => 'Transactie werd gemaakt in of voor maand ":value"', - 'search_modifier_created_at_before_day' => 'Transactie werd gemaakt op of voor dag van de maand ":value"', - 'search_modifier_created_at_after_year' => 'Transactie werd gemaakt in of na jaar ":value"', - 'search_modifier_created_at_after_month' => 'Transactie werd gemaakt in of na maand ":value"', - 'search_modifier_created_at_after_day' => 'Transactie werd gemaakt op of na dag van de maand ":value"', - 'search_modifier_interest_date_before' => 'Rentedatum is op of voor ":value"', - 'search_modifier_interest_date_after' => 'Rentedatum is op of na ":value"', - 'search_modifier_book_date_on' => 'Boekdatum is op ":value"', - 'search_modifier_not_book_date_on' => 'Boekdatum is niet op ":value"', - 'search_modifier_book_date_before' => 'Boekdatum is op of voor ":value"', - 'search_modifier_book_date_after' => 'Boekdatum is op of na ":value"', - 'search_modifier_process_date_on' => 'Verwerkingsdatum is op ":value"', - 'search_modifier_not_process_date_on' => 'Verwerkingsdatum is niet op ":value"', - 'search_modifier_process_date_before' => 'Verwerkingsdatum is op of voor ":value"', - 'search_modifier_process_date_after' => 'Verwerkingsdatum is op of na ":value"', - 'search_modifier_due_date_on' => 'Vervaldatum is op ":value"', - 'search_modifier_not_due_date_on' => 'Vervaldatum is niet op ":value"', - 'search_modifier_due_date_before' => 'Vervaldatum is op of voor ":value"', - 'search_modifier_due_date_after' => 'Vervaldatum is op of na ":value"', - 'search_modifier_payment_date_on' => 'Betalingsdatum is op ":value"', - 'search_modifier_not_payment_date_on' => 'Betalingsdatum is niet op ":value"', - 'search_modifier_payment_date_before' => 'Betalingsdatum is op of voor ":value"', - 'search_modifier_payment_date_after' => 'Betalingsdatum is op of na ":value"', - 'search_modifier_invoice_date_on' => 'Factuurdatum is op ":value"', - 'search_modifier_not_invoice_date_on' => 'Factuurdatum is niet op ":value"', - 'search_modifier_invoice_date_before' => 'Factuurdatum is op of voor ":value"', - 'search_modifier_invoice_date_after' => 'Factuurdatum is op of na ":value"', - 'search_modifier_created_at_on' => 'Transactie werd gemaakt op ":value"', - 'search_modifier_not_created_at_on' => 'Transactie werd niet gemaakt op ":value"', - 'search_modifier_created_at_before' => 'Transactie werd gemaakt op of voor ":value"', - 'search_modifier_created_at_after' => 'Transactie werd gemaakt op of na ":value"', - 'search_modifier_updated_at_on' => 'Transactie werd gewijzigd op ":value"', - 'search_modifier_not_updated_at_on' => 'Transactie werd niet het laatst gewijzigd op ":value"', - 'search_modifier_updated_at_before' => 'Transactie werd gewijzigd op of voor ":value"', - 'search_modifier_updated_at_after' => 'Transactie werd gewijzigd op of na ":value"', + 'search_modifier_updated_at_on_year' => 'De transactie werd het laatst gewijzigd in jaar ":value"', + 'search_modifier_updated_at_on_month' => 'De transactie werd het laatst gewijzigd in maand ":value"', + 'search_modifier_updated_at_on_day' => 'De transactie werd het laatst gewijzigd op dag van de maand ":value"', + 'search_modifier_not_updated_at_on_year' => 'De transactie werd niet het laatst gewijzigd in jaar ":value"', + 'search_modifier_not_updated_at_on_month' => 'De transactie werd niet het laatst gewijzigd in maand ":value"', + 'search_modifier_not_updated_at_on_day' => 'De transactie werd niet het laatst gewijzigd op dag van de maand ":value"', + 'search_modifier_updated_at_before_year' => 'De transactie werd het laatst gewijzigd in of voor jaar ":value"', + 'search_modifier_updated_at_before_month' => 'De transactie werd het laatst gewijzigd in of voor maand ":value"', + 'search_modifier_updated_at_before_day' => 'De transactie werd het laatst gewijzigd op of voor dag van de maand ":value"', + 'search_modifier_updated_at_after_year' => 'De transactie werd het laatst gewijzigd in of na jaar ":value"', + 'search_modifier_updated_at_after_month' => 'De transactie werd het laatst gewijzigd in of na maand ":value"', + 'search_modifier_updated_at_after_day' => 'Transactie werd laatst gewijzigd op of na dag van de maand ":value"', + 'search_modifier_created_at_on_year' => 'Transactie werd gemaakt in jaar ":value"', + 'search_modifier_created_at_on_month' => 'Transactie werd gemaakt in maand ":value"', + 'search_modifier_created_at_on_day' => 'Transactie werd gemaakt op dag van de maand ":value"', + 'search_modifier_not_created_at_on_year' => 'De transactie werd niet gemaakt in jaar ":value"', + 'search_modifier_not_created_at_on_month' => 'De transactie werd niet gemaakt in maand ":value"', + 'search_modifier_not_created_at_on_day' => 'Transactie werd niet gemaakt op dag van de maand ":value"', + 'search_modifier_created_at_before_year' => 'Transactie werd gemaakt in of voor jaar ":value"', + 'search_modifier_created_at_before_month' => 'Transactie werd gemaakt in of voor maand ":value"', + 'search_modifier_created_at_before_day' => 'Transactie werd gemaakt op of voor dag van de maand ":value"', + 'search_modifier_created_at_after_year' => 'Transactie werd gemaakt in of na jaar ":value"', + 'search_modifier_created_at_after_month' => 'Transactie werd gemaakt in of na maand ":value"', + 'search_modifier_created_at_after_day' => 'Transactie werd gemaakt op of na dag van de maand ":value"', + 'search_modifier_interest_date_before' => 'Rentedatum is op of voor ":value"', + 'search_modifier_interest_date_after' => 'Rentedatum is op of na ":value"', + 'search_modifier_book_date_on' => 'Boekdatum is op ":value"', + 'search_modifier_not_book_date_on' => 'Boekdatum is niet op ":value"', + 'search_modifier_book_date_before' => 'Boekdatum is op of voor ":value"', + 'search_modifier_book_date_after' => 'Boekdatum is op of na ":value"', + 'search_modifier_process_date_on' => 'Verwerkingsdatum is op ":value"', + 'search_modifier_not_process_date_on' => 'Verwerkingsdatum is niet op ":value"', + 'search_modifier_process_date_before' => 'Verwerkingsdatum is op of voor ":value"', + 'search_modifier_process_date_after' => 'Verwerkingsdatum is op of na ":value"', + 'search_modifier_due_date_on' => 'Vervaldatum is op ":value"', + 'search_modifier_not_due_date_on' => 'Vervaldatum is niet op ":value"', + 'search_modifier_due_date_before' => 'Vervaldatum is op of voor ":value"', + 'search_modifier_due_date_after' => 'Vervaldatum is op of na ":value"', + 'search_modifier_payment_date_on' => 'Betalingsdatum is op ":value"', + 'search_modifier_not_payment_date_on' => 'Betalingsdatum is niet op ":value"', + 'search_modifier_payment_date_before' => 'Betalingsdatum is op of voor ":value"', + 'search_modifier_payment_date_after' => 'Betalingsdatum is op of na ":value"', + 'search_modifier_invoice_date_on' => 'Factuurdatum is op ":value"', + 'search_modifier_not_invoice_date_on' => 'Factuurdatum is niet op ":value"', + 'search_modifier_invoice_date_before' => 'Factuurdatum is op of voor ":value"', + 'search_modifier_invoice_date_after' => 'Factuurdatum is op of na ":value"', + 'search_modifier_created_at_on' => 'Transactie werd gemaakt op ":value"', + 'search_modifier_not_created_at_on' => 'Transactie werd niet gemaakt op ":value"', + 'search_modifier_created_at_before' => 'Transactie werd gemaakt op of voor ":value"', + 'search_modifier_created_at_after' => 'Transactie werd gemaakt op of na ":value"', + 'search_modifier_updated_at_on' => 'Transactie werd gewijzigd op ":value"', + 'search_modifier_not_updated_at_on' => 'Transactie werd niet het laatst gewijzigd op ":value"', + 'search_modifier_updated_at_before' => 'Transactie werd gewijzigd op of voor ":value"', + 'search_modifier_updated_at_after' => 'Transactie werd gewijzigd op of na ":value"', - 'search_modifier_attachment_name_is' => 'Enige bijlage heet ":value"', - 'search_modifier_attachment_name_contains' => 'Er is een bijlage waarvan de naam ":value" bevat', - 'search_modifier_attachment_name_starts' => 'Er is een bijlage waarvan de naam begint met ":value"', - 'search_modifier_attachment_name_ends' => 'Er is een bijlage waarvan de naam eindigt op ":value"', - 'search_modifier_attachment_notes_are' => 'Er is een bijlage met notitie ":value"', - 'search_modifier_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie ":value" bevat', - 'search_modifier_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":value"', - 'search_modifier_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie eindigt op ":value"', - 'search_modifier_not_attachment_name_is' => 'Geen bijlage heet ":value"', - 'search_modifier_not_attachment_name_contains' => 'Er is geen bijlage waarvan de naam ":value" bevat', - 'search_modifier_not_attachment_name_starts' => 'Er is geen bijlage waarvan de naam begint met ":value"', - 'search_modifier_not_attachment_name_ends' => 'Er is geen bijlage waarvan de naam eindigt op ":value"', - 'search_modifier_not_attachment_notes_are' => 'Er is een bijlage waarvan de notitie niet eindigt op ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie niet ":value" bevatten', - 'search_modifier_not_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie niet eindigt op ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update regel ":rule" middels zoekquery', - 'create_rule_from_query' => 'Nieuwe regel op basis van zoekquery', - 'rule_from_search_words' => 'Firefly III heeft moeite met deze query: ":string". De voorgestelde regel die past bij je zoekquery kan afwijken. Controleer de regel zorgvuldig.', + 'search_modifier_attachment_name_is' => 'Enige bijlage heet ":value"', + 'search_modifier_attachment_name_contains' => 'Er is een bijlage waarvan de naam ":value" bevat', + 'search_modifier_attachment_name_starts' => 'Er is een bijlage waarvan de naam begint met ":value"', + 'search_modifier_attachment_name_ends' => 'Er is een bijlage waarvan de naam eindigt op ":value"', + 'search_modifier_attachment_notes_are' => 'Er is een bijlage met notitie ":value"', + 'search_modifier_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie ":value" bevat', + 'search_modifier_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":value"', + 'search_modifier_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie eindigt op ":value"', + 'search_modifier_not_attachment_name_is' => 'Geen bijlage heet ":value"', + 'search_modifier_not_attachment_name_contains' => 'Er is geen bijlage waarvan de naam ":value" bevat', + 'search_modifier_not_attachment_name_starts' => 'Er is geen bijlage waarvan de naam begint met ":value"', + 'search_modifier_not_attachment_name_ends' => 'Er is geen bijlage waarvan de naam eindigt op ":value"', + 'search_modifier_not_attachment_notes_are' => 'Er is een bijlage waarvan de notitie niet eindigt op ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie niet ":value" bevatten', + 'search_modifier_not_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie niet eindigt op ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update regel ":rule" middels zoekquery', + 'create_rule_from_query' => 'Nieuwe regel op basis van zoekquery', + 'rule_from_search_words' => 'Firefly III heeft moeite met deze query: ":string". De voorgestelde regel die past bij je zoekquery kan afwijken. Controleer de regel zorgvuldig.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'De volgende wijzigingen worden ook toegepast op de zoekopdracht:', - 'general_search_error' => 'Er is een fout opgetreden tijdens het zoeken. Controleer de log-bestanden voor meer informatie.', - 'search_box' => 'Zoeken', - 'search_box_intro' => 'Welkom bij de zoekfunctie van Firefly III. Voer je zoekopdracht in het vak. Bekijk zeker de help-pagina, want de zoekfunctie is behoorlijk geadvanceerd.', - 'search_error' => 'Fout tijdens het zoeken', - 'search_searching' => 'Bezig met zoeken ...', - 'search_results' => 'Zoekresultaten', + 'modifiers_applies_are' => 'De volgende wijzigingen worden ook toegepast op de zoekopdracht:', + 'general_search_error' => 'Er is een fout opgetreden tijdens het zoeken. Controleer de log-bestanden voor meer informatie.', + 'search_box' => 'Zoeken', + 'search_box_intro' => 'Welkom bij de zoekfunctie van Firefly III. Voer je zoekopdracht in het vak. Bekijk zeker de help-pagina, want de zoekfunctie is behoorlijk geadvanceerd.', + 'search_error' => 'Fout tijdens het zoeken', + 'search_searching' => 'Bezig met zoeken ...', + 'search_results' => 'Zoekresultaten', // repeat frequencies: - 'repeat_freq_yearly' => 'jaarlijks', - 'repeat_freq_half-year' => 'elk half jaar', - 'repeat_freq_quarterly' => 'elk kwartaal', - 'repeat_freq_monthly' => 'maandelijks', - 'repeat_freq_weekly' => 'wekelijks', - 'repeat_freq_daily' => 'dagelijks', - 'daily' => 'dagelijks', - 'weekly' => 'wekelijks', - 'quarterly' => 'elk kwartaal', - 'half-year' => 'elk half jaar', - 'yearly' => 'elk jaar', + 'repeat_freq_yearly' => 'jaarlijks', + 'repeat_freq_half-year' => 'elk half jaar', + 'repeat_freq_quarterly' => 'elk kwartaal', + 'repeat_freq_monthly' => 'maandelijks', + 'repeat_freq_weekly' => 'wekelijks', + 'repeat_freq_daily' => 'dagelijks', + 'daily' => 'dagelijks', + 'weekly' => 'wekelijks', + 'quarterly' => 'elk kwartaal', + 'half-year' => 'elk half jaar', + 'yearly' => 'elk jaar', // rules - 'is_not_rule_trigger' => 'Niet', - 'cannot_fire_inactive_rules' => 'Inactieve regels doen het niet.', - 'show_triggers' => 'Toon triggers', - 'show_actions' => 'Toon acties', - 'rules' => 'Regels', - 'rule_name' => 'Regelnaam', - 'rule_triggers' => 'Regel reageert op', - 'rule_actions' => 'Regel zal dan', - 'new_rule' => 'Nieuwe regel', - 'new_rule_group' => 'Nieuwe regelgroep', - 'rule_priority_up' => 'Geef regel meer prioriteit', - 'rule_priority_down' => 'Geef regel minder prioriteit', - 'make_new_rule_group' => 'Maak nieuwe regelgroep', - 'store_new_rule_group' => 'Sla nieuwe regelgroep op', - 'created_new_rule_group' => 'Nieuwe regelgroep ":title" opgeslagen!', - 'updated_rule_group' => 'Regelgroep ":title" geüpdatet.', - 'edit_rule_group' => 'Wijzig regelgroep ":title"', - 'duplicate_rule' => 'Dupliceer regel ":title"', - 'rule_copy_of' => 'Kopie van ":title"', - 'duplicated_rule' => 'Regel ":title" gekopieerd naar ":newTitle"', - 'delete_rule_group' => 'Verwijder regelgroep ":title"', - 'deleted_rule_group' => 'Regelgroep ":title" verwijderd', - 'update_rule_group' => 'Wijzig regelgroep', - 'no_rules_in_group' => 'Er zijn geen regels in deze groep', - 'move_rule_group_up' => 'Verplaats regelgroep omhoog', - 'move_rule_group_down' => 'Verplaats regelgroep omlaag', - 'save_rules_by_moving' => 'Red deze regel van de ondergang door ze te verplaatsen naar een andere regelgroep:|Red deze regels van de ondergang door ze te verplaatsen naar een andere regelgroep:', - 'make_new_rule' => 'Maak een nieuwe regel in regelgroep ":title"', - 'make_new_rule_no_group' => 'Maak een nieuwe regel', - 'instructions_rule_from_bill' => 'Om transacties te kunnen koppelen aan je nieuwe contract ":name" moet Firefly III een nieuwe regel maken die automatisch checkt of nieuwe transacties horen bij dit nieuwe contract. Check de details hieronder en sla de nieuwe regel op, zodat Firefly III dit klusje voor je kan klaren.', - 'instructions_rule_from_journal' => 'Maak een regel op basis van één van je transacties. Vul dit formulier aan.', - 'rule_is_strict' => 'strikte regel', - 'rule_is_not_strict' => 'niet-strikte regel', - 'rule_help_stop_processing' => 'Zet hier een vinkje om latere regels in deze groep te negeren.', - 'rule_help_strict' => 'Voor strikte regels geldt dat ALLE triggers overeen moeten komen. Voor niet-strikte regel is één trigger genoeg om de acties uit te laten voeren.', - 'rule_help_active' => 'Niet actieve regels zullen nooit worden gecontroleerd.', - 'stored_new_rule' => 'Nieuwe regel ":title" opgeslagen', - 'deleted_rule' => 'Regel ":title" verwijderd', - 'store_new_rule' => 'Sla nieuwe regel op', - 'updated_rule' => 'Regel ":title" geüpdatet', - 'default_rule_group_name' => 'Standaard regels', - 'default_rule_group_description' => 'Al je regels die niet in een bepaalde groep zitten.', - 'trigger' => 'Trigger', - 'trigger_value' => 'Trigger bij waarde', - 'stop_processing_other_triggers' => 'Reageer niet meer op andere triggers', - 'add_rule_trigger' => 'Nieuwe trigger toevoegen', - 'action' => 'Actie', - 'action_value' => 'Actie-waarde', - 'stop_executing_other_actions' => 'Voer verdere acties niet uit', - 'add_rule_action' => 'Nieuwe actie toevoegen', - 'edit_rule' => 'Wijzig regel ":title"', - 'delete_rule' => 'Verwijder regel ":title"', - 'update_rule' => 'Werk regel bij', - 'test_rule_triggers' => 'Bekijk welke transacties hieraan voldoen', - 'warning_no_matching_transactions' => 'Geen overeenkomende transacties gevonden.', - 'warning_no_valid_triggers' => 'Geen geldige triggers gevonden.', - 'apply_rule_selection' => 'Pas regel ":title" toe op een selectie van je transacties', - 'apply_rule_selection_intro' => 'Regels zoals ":title" worden normaal alleen op nieuwe of geüpdate transacties toegepast, maar Firefly III kan ze ook toepassen op (een selectie van) je bestaande transacties. Dit kan praktisch zijn als je een regels hebt veranderd en je wilt de veranderingen toepassen op al je transacties.', - 'include_transactions_from_accounts' => 'Gebruik transacties van deze rekeningen', - 'include' => 'Opnemen?', - 'applied_rule_selection' => '{0} Er zijn geen transacties in je selectie veranderd door regel ":title".|[1] Eén transactie in je selectie is veranderd door regel ":title".|[2,*] :count transacties in je selectie zijn veranderd door regel ":title".', - 'execute' => 'Uitvoeren', - 'apply_rule_group_selection' => 'Pas regelgroep ":title" toe op een selectie van je transacties', - 'apply_rule_group_selection_intro' => 'Regelgroepen zoals ":title" worden normaal alleen op nieuwe of geüpdate transacties toegepast, maar Firefly III kan ze ook toepassen op (een selectie van) je bestaande transacties. Dit kan praktisch zijn als je regels in de groep hebt veranderd en je wilt de veranderingen toepassen op al je transacties.', - 'applied_rule_group_selection' => 'Regelgroep ":title" is toegepast op je selectie.', + 'is_not_rule_trigger' => 'Niet', + 'cannot_fire_inactive_rules' => 'Inactieve regels doen het niet.', + 'show_triggers' => 'Toon triggers', + 'show_actions' => 'Toon acties', + 'rules' => 'Regels', + 'rule_name' => 'Regelnaam', + 'rule_triggers' => 'Regel reageert op', + 'rule_actions' => 'Regel zal dan', + 'new_rule' => 'Nieuwe regel', + 'new_rule_group' => 'Nieuwe regelgroep', + 'rule_priority_up' => 'Geef regel meer prioriteit', + 'rule_priority_down' => 'Geef regel minder prioriteit', + 'make_new_rule_group' => 'Maak nieuwe regelgroep', + 'store_new_rule_group' => 'Sla nieuwe regelgroep op', + 'created_new_rule_group' => 'Nieuwe regelgroep ":title" opgeslagen!', + 'updated_rule_group' => 'Regelgroep ":title" geüpdatet.', + 'edit_rule_group' => 'Wijzig regelgroep ":title"', + 'duplicate_rule' => 'Dupliceer regel ":title"', + 'rule_copy_of' => 'Kopie van ":title"', + 'duplicated_rule' => 'Regel ":title" gekopieerd naar ":newTitle"', + 'delete_rule_group' => 'Verwijder regelgroep ":title"', + 'deleted_rule_group' => 'Regelgroep ":title" verwijderd', + 'update_rule_group' => 'Wijzig regelgroep', + 'no_rules_in_group' => 'Er zijn geen regels in deze groep', + 'move_rule_group_up' => 'Verplaats regelgroep omhoog', + 'move_rule_group_down' => 'Verplaats regelgroep omlaag', + 'save_rules_by_moving' => 'Red deze regel van de ondergang door ze te verplaatsen naar een andere regelgroep:|Red deze regels van de ondergang door ze te verplaatsen naar een andere regelgroep:', + 'make_new_rule' => 'Maak een nieuwe regel in regelgroep ":title"', + 'make_new_rule_no_group' => 'Maak een nieuwe regel', + 'instructions_rule_from_bill' => 'Om transacties te kunnen koppelen aan je nieuwe contract ":name" moet Firefly III een nieuwe regel maken die automatisch checkt of nieuwe transacties horen bij dit nieuwe contract. Check de details hieronder en sla de nieuwe regel op, zodat Firefly III dit klusje voor je kan klaren.', + 'instructions_rule_from_journal' => 'Maak een regel op basis van één van je transacties. Vul dit formulier aan.', + 'rule_is_strict' => 'strikte regel', + 'rule_is_not_strict' => 'niet-strikte regel', + 'rule_help_stop_processing' => 'Zet hier een vinkje om latere regels in deze groep te negeren.', + 'rule_help_strict' => 'Voor strikte regels geldt dat ALLE triggers overeen moeten komen. Voor niet-strikte regel is één trigger genoeg om de acties uit te laten voeren.', + 'rule_help_active' => 'Niet actieve regels zullen nooit worden gecontroleerd.', + 'stored_new_rule' => 'Nieuwe regel ":title" opgeslagen', + 'deleted_rule' => 'Regel ":title" verwijderd', + 'store_new_rule' => 'Sla nieuwe regel op', + 'updated_rule' => 'Regel ":title" geüpdatet', + 'default_rule_group_name' => 'Standaard regels', + 'default_rule_group_description' => 'Al je regels die niet in een bepaalde groep zitten.', + 'trigger' => 'Trigger', + 'trigger_value' => 'Trigger bij waarde', + 'stop_processing_other_triggers' => 'Reageer niet meer op andere triggers', + 'add_rule_trigger' => 'Nieuwe trigger toevoegen', + 'action' => 'Actie', + 'action_value' => 'Actie-waarde', + 'stop_executing_other_actions' => 'Voer verdere acties niet uit', + 'add_rule_action' => 'Nieuwe actie toevoegen', + 'edit_rule' => 'Wijzig regel ":title"', + 'delete_rule' => 'Verwijder regel ":title"', + 'update_rule' => 'Werk regel bij', + 'test_rule_triggers' => 'Bekijk welke transacties hieraan voldoen', + 'warning_no_matching_transactions' => 'Geen overeenkomende transacties gevonden.', + 'warning_no_valid_triggers' => 'Geen geldige triggers gevonden.', + 'apply_rule_selection' => 'Pas regel ":title" toe op een selectie van je transacties', + 'apply_rule_selection_intro' => 'Regels zoals ":title" worden normaal alleen op nieuwe of geüpdate transacties toegepast, maar Firefly III kan ze ook toepassen op (een selectie van) je bestaande transacties. Dit kan praktisch zijn als je een regels hebt veranderd en je wilt de veranderingen toepassen op al je transacties.', + 'include_transactions_from_accounts' => 'Gebruik transacties van deze rekeningen', + 'include' => 'Opnemen?', + 'applied_rule_selection' => '{0} Er zijn geen transacties in je selectie veranderd door regel ":title".|[1] Eén transactie in je selectie is veranderd door regel ":title".|[2,*] :count transacties in je selectie zijn veranderd door regel ":title".', + 'execute' => 'Uitvoeren', + 'apply_rule_group_selection' => 'Pas regelgroep ":title" toe op een selectie van je transacties', + 'apply_rule_group_selection_intro' => 'Regelgroepen zoals ":title" worden normaal alleen op nieuwe of geüpdate transacties toegepast, maar Firefly III kan ze ook toepassen op (een selectie van) je bestaande transacties. Dit kan praktisch zijn als je regels in de groep hebt veranderd en je wilt de veranderingen toepassen op al je transacties.', + 'applied_rule_group_selection' => 'Regelgroep ":title" is toegepast op je selectie.', // actions and triggers - 'rule_trigger_store_journal' => 'Als een transactie wordt gemaakt', - 'rule_trigger_update_journal' => 'Als een transactie wordt bijgewerkt', - 'rule_trigger_user_action' => 'Gebruikersactie is ":trigger_value"', + 'rule_trigger_store_journal' => 'Als een transactie wordt gemaakt', + 'rule_trigger_update_journal' => 'Als een transactie wordt bijgewerkt', + 'rule_trigger_user_action' => 'Gebruikersactie is ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Bronrekeningnaam begint met..', - 'rule_trigger_source_account_starts' => 'Bronrekeningnaam begint met ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Bronrekeningnaam eindigt op..', - 'rule_trigger_source_account_ends' => 'Bronrekeningnaam eindigt op ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Bronrekeningnaam is..', - 'rule_trigger_source_account_is' => 'Bronrekeningnaam is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Bronrekeningnaam bevat..', - 'rule_trigger_source_account_contains' => 'Bronrekeningnaam bevat ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Bron- of doelrekening-ID is..', - 'rule_trigger_account_id' => 'Bron- of doelrekening-ID is :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Bronrekening ID is..', - 'rule_trigger_source_account_id' => 'Bronrekening ID is :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Doelrekening ID is..', - 'rule_trigger_destination_account_id' => 'Doelrekening ID is precies :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Bron- of doelrekening is een cash-rekening', - 'rule_trigger_account_is_cash' => 'Bron- of doelrekening is een cash-rekening', - 'rule_trigger_source_is_cash_choice' => 'Bronrekening is (cash) account', - 'rule_trigger_source_is_cash' => 'Bronrekening is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Doelrekening is (cash) account', - 'rule_trigger_destination_is_cash' => 'Doelrekening is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Bronrekeningnummer begint met..', - 'rule_trigger_source_account_nr_starts' => 'Bronrekeningnummer begint met ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Bronrekeningnummer eindigt op..', - 'rule_trigger_source_account_nr_ends' => 'Bronrekeningnummer eindigt op ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Bronrekeningnummer / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Bronrekeningnummer / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Bronrekeningnummer / IBAN bevat..', - 'rule_trigger_source_account_nr_contains' => 'Bronrekeningnummer / IBAN bevat ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Doelrekeningnaam begint met..', - 'rule_trigger_destination_account_starts' => 'Doelrekeningnaam begint met ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Doelrekeningnaam eindigt op..', - 'rule_trigger_destination_account_ends' => 'Doelrekeningnaam eindigt op ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Doelrekeningnaam is..', - 'rule_trigger_destination_account_is' => 'Doelrekeningnaam is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Doelrekeningnaam bevat..', - 'rule_trigger_destination_account_contains' => 'Doelrekeningnaam bevat ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Doelrekeningnummer / IBAN begint met..', - 'rule_trigger_destination_account_nr_starts' => 'Doelrekeningnummer / IBAN begint met ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Doelrekeningnummer / IBAN eindigt op..', - 'rule_trigger_destination_account_nr_ends' => 'Doelrekeningnummer / IBAN eindigt op ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Doelrekeningnummer / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Doelrekeningnummer / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Doelrekeningnummer / IBAN bevat..', - 'rule_trigger_destination_account_nr_contains' => 'Doelrekeningnummer / IBAN bevat ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transactietype is..', - 'rule_trigger_transaction_type' => 'Transactiesoort is ":trigger_value" (Engels)', - 'rule_trigger_category_is_choice' => 'Categorie is..', - 'rule_trigger_category_is' => 'Categorie is ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Bedrag is kleiner dan of gelijk aan ..', - 'rule_trigger_amount_less' => 'Bedrag is kleiner dan of gelijk aan :trigger_value', - 'rule_trigger_amount_is_choice' => 'Bedrag is..', - 'rule_trigger_amount_is' => 'Bedrag is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Bedrag is groter dan of gelijk aan..', - 'rule_trigger_amount_more' => 'Bedrag is groter dan of gelijk aan :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beschrijving begint met..', - 'rule_trigger_description_starts' => 'Beschrijving begint met ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beschrijving eindigt op..', - 'rule_trigger_description_ends' => 'Beschrijving eindigt op ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beschrijving bevat..', - 'rule_trigger_description_contains' => 'Beschrijving bevat ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beschrijving is..', - 'rule_trigger_description_is' => 'Beschrijving is ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transactiedatum is..', - 'rule_trigger_date_on' => 'Transactiedatum is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transactiedatum is vóór..', - 'rule_trigger_date_before' => 'Transactiedatum is vóór ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transactiedatum is na..', - 'rule_trigger_date_after' => 'Transactiedatum is na ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transactie is gemaakt op..', - 'rule_trigger_created_at_on' => 'Transactie werd gemaakt op ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transactie werd laatst gewijzigd op..', - 'rule_trigger_updated_at_on' => 'Transactie werd laatst gewijzigd op ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget is..', - 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Een tag is..', - 'rule_trigger_tag_is' => 'Een tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transactievaluta is..', - 'rule_trigger_currency_is' => 'Transactievaluta is ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transactie vreemde valuta is..', - 'rule_trigger_foreign_currency_is' => 'Transactie vreemde valuta is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Heeft minstens zoveel bijlagen', - 'rule_trigger_has_attachments' => 'Heeft minstens :trigger_value bijlage(n)', - 'rule_trigger_has_no_category_choice' => 'Heeft geen categorie', - 'rule_trigger_has_no_category' => 'Transactie heeft geen categorie', - 'rule_trigger_has_any_category_choice' => 'Heeft een (welke dan ook) categorie', - 'rule_trigger_has_any_category' => 'Transactie heeft een (welke dan ook) categorie', - 'rule_trigger_has_no_budget_choice' => 'Heeft geen budget', - 'rule_trigger_has_no_budget' => 'Transactie heeft geen budget', - 'rule_trigger_has_any_budget_choice' => 'Heeft een (welke dan ook) budget', - 'rule_trigger_has_any_budget' => 'Transactie heeft een (welke dan ook) budget', - 'rule_trigger_has_no_bill_choice' => 'Heeft geen contract', - 'rule_trigger_has_no_bill' => 'Transactie heeft geen contract', - 'rule_trigger_has_any_bill_choice' => 'Heeft een (welke dan ook) contract', - 'rule_trigger_has_any_bill' => 'Transactie heeft een (welke dan ook) contract', - 'rule_trigger_has_no_tag_choice' => 'Heeft geen tag(s)', - 'rule_trigger_has_no_tag' => 'Transactie heeft geen tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Heeft een of meer tags', - 'rule_trigger_has_any_tag' => 'Transactie heeft een of meer tags', - 'rule_trigger_any_notes_choice' => 'Heeft (enige) notities', - 'rule_trigger_any_notes' => 'Transactie heeft (enige) notities', - 'rule_trigger_no_notes_choice' => 'Heeft geen notities', - 'rule_trigger_no_notes' => 'Transactie heeft geen notities', - 'rule_trigger_notes_is_choice' => 'Notities zijn..', - 'rule_trigger_notes_is' => 'Notities zijn ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notities bevatten..', - 'rule_trigger_notes_contains' => 'Notities bevatten ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notities beginnen met..', - 'rule_trigger_notes_starts' => 'Notities beginnen met ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notities eindigen op..', - 'rule_trigger_notes_ends' => 'Notities eindigen op ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Contract is..', - 'rule_trigger_bill_is' => 'Contract is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Externe ID is..', - 'rule_trigger_external_id_is' => 'Externe ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Interne referentie is..', - 'rule_trigger_internal_reference_is' => 'Interne referentie is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transactiejournaal ID is..', - 'rule_trigger_journal_id' => 'Transactiejournaal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transactie heeft een externe URL', - 'rule_trigger_any_external_url_choice' => 'Transactie heeft een externe URL', - 'rule_trigger_any_external_id' => 'Transactie heeft een extern ID', - 'rule_trigger_any_external_id_choice' => 'Transactie heeft een extern ID', - 'rule_trigger_no_external_url_choice' => 'De transactie heeft geen externe URL', - 'rule_trigger_no_external_url' => 'De transactie heeft geen externe URL', - 'rule_trigger_no_external_id_choice' => 'Transactie heeft geen extern ID', - 'rule_trigger_no_external_id' => 'Transactie heeft geen extern ID', - 'rule_trigger_id_choice' => 'Transactie-ID is..', - 'rule_trigger_id' => 'Transactie-ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Bronrekeningnaam begint met..', + 'rule_trigger_source_account_starts' => 'Bronrekeningnaam begint met ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Bronrekeningnaam eindigt op..', + 'rule_trigger_source_account_ends' => 'Bronrekeningnaam eindigt op ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Bronrekeningnaam is..', + 'rule_trigger_source_account_is' => 'Bronrekeningnaam is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Bronrekeningnaam bevat..', + 'rule_trigger_source_account_contains' => 'Bronrekeningnaam bevat ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Bron- of doelrekening-ID is..', + 'rule_trigger_account_id' => 'Bron- of doelrekening-ID is :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Bronrekening ID is..', + 'rule_trigger_source_account_id' => 'Bronrekening ID is :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Doelrekening ID is..', + 'rule_trigger_destination_account_id' => 'Doelrekening ID is precies :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Bron- of doelrekening is een cash-rekening', + 'rule_trigger_account_is_cash' => 'Bron- of doelrekening is een cash-rekening', + 'rule_trigger_source_is_cash_choice' => 'Bronrekening is (cash) account', + 'rule_trigger_source_is_cash' => 'Bronrekening is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Doelrekening is (cash) account', + 'rule_trigger_destination_is_cash' => 'Doelrekening is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Bronrekeningnummer begint met..', + 'rule_trigger_source_account_nr_starts' => 'Bronrekeningnummer begint met ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Bronrekeningnummer eindigt op..', + 'rule_trigger_source_account_nr_ends' => 'Bronrekeningnummer eindigt op ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Bronrekeningnummer / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Bronrekeningnummer / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Bronrekeningnummer / IBAN bevat..', + 'rule_trigger_source_account_nr_contains' => 'Bronrekeningnummer / IBAN bevat ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Doelrekeningnaam begint met..', + 'rule_trigger_destination_account_starts' => 'Doelrekeningnaam begint met ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Doelrekeningnaam eindigt op..', + 'rule_trigger_destination_account_ends' => 'Doelrekeningnaam eindigt op ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Doelrekeningnaam is..', + 'rule_trigger_destination_account_is' => 'Doelrekeningnaam is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Doelrekeningnaam bevat..', + 'rule_trigger_destination_account_contains' => 'Doelrekeningnaam bevat ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Doelrekeningnummer / IBAN begint met..', + 'rule_trigger_destination_account_nr_starts' => 'Doelrekeningnummer / IBAN begint met ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Doelrekeningnummer / IBAN eindigt op..', + 'rule_trigger_destination_account_nr_ends' => 'Doelrekeningnummer / IBAN eindigt op ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Doelrekeningnummer / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Doelrekeningnummer / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Doelrekeningnummer / IBAN bevat..', + 'rule_trigger_destination_account_nr_contains' => 'Doelrekeningnummer / IBAN bevat ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transactietype is..', + 'rule_trigger_transaction_type' => 'Transactiesoort is ":trigger_value" (Engels)', + 'rule_trigger_category_is_choice' => 'Categorie is..', + 'rule_trigger_category_is' => 'Categorie is ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Bedrag is kleiner dan of gelijk aan ..', + 'rule_trigger_amount_less' => 'Bedrag is kleiner dan of gelijk aan :trigger_value', + 'rule_trigger_amount_is_choice' => 'Bedrag is..', + 'rule_trigger_amount_is' => 'Bedrag is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Bedrag is groter dan of gelijk aan..', + 'rule_trigger_amount_more' => 'Bedrag is groter dan of gelijk aan :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beschrijving begint met..', + 'rule_trigger_description_starts' => 'Beschrijving begint met ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beschrijving eindigt op..', + 'rule_trigger_description_ends' => 'Beschrijving eindigt op ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beschrijving bevat..', + 'rule_trigger_description_contains' => 'Beschrijving bevat ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beschrijving is..', + 'rule_trigger_description_is' => 'Beschrijving is ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transactiedatum is..', + 'rule_trigger_date_on' => 'Transactiedatum is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transactiedatum is vóór..', + 'rule_trigger_date_before' => 'Transactiedatum is vóór ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transactiedatum is na..', + 'rule_trigger_date_after' => 'Transactiedatum is na ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transactie is gemaakt op..', + 'rule_trigger_created_at_on' => 'Transactie werd gemaakt op ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transactie werd laatst gewijzigd op..', + 'rule_trigger_updated_at_on' => 'Transactie werd laatst gewijzigd op ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget is..', + 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Een tag is..', + 'rule_trigger_tag_is' => 'Een tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transactievaluta is..', + 'rule_trigger_currency_is' => 'Transactievaluta is ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transactie vreemde valuta is..', + 'rule_trigger_foreign_currency_is' => 'Transactie vreemde valuta is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Heeft minstens zoveel bijlagen', + 'rule_trigger_has_attachments' => 'Heeft minstens :trigger_value bijlage(n)', + 'rule_trigger_has_no_category_choice' => 'Heeft geen categorie', + 'rule_trigger_has_no_category' => 'Transactie heeft geen categorie', + 'rule_trigger_has_any_category_choice' => 'Heeft een (welke dan ook) categorie', + 'rule_trigger_has_any_category' => 'Transactie heeft een (welke dan ook) categorie', + 'rule_trigger_has_no_budget_choice' => 'Heeft geen budget', + 'rule_trigger_has_no_budget' => 'Transactie heeft geen budget', + 'rule_trigger_has_any_budget_choice' => 'Heeft een (welke dan ook) budget', + 'rule_trigger_has_any_budget' => 'Transactie heeft een (welke dan ook) budget', + 'rule_trigger_has_no_bill_choice' => 'Heeft geen contract', + 'rule_trigger_has_no_bill' => 'Transactie heeft geen contract', + 'rule_trigger_has_any_bill_choice' => 'Heeft een (welke dan ook) contract', + 'rule_trigger_has_any_bill' => 'Transactie heeft een (welke dan ook) contract', + 'rule_trigger_has_no_tag_choice' => 'Heeft geen tag(s)', + 'rule_trigger_has_no_tag' => 'Transactie heeft geen tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Heeft een of meer tags', + 'rule_trigger_has_any_tag' => 'Transactie heeft een of meer tags', + 'rule_trigger_any_notes_choice' => 'Heeft (enige) notities', + 'rule_trigger_any_notes' => 'Transactie heeft (enige) notities', + 'rule_trigger_no_notes_choice' => 'Heeft geen notities', + 'rule_trigger_no_notes' => 'Transactie heeft geen notities', + 'rule_trigger_notes_is_choice' => 'Notities zijn..', + 'rule_trigger_notes_is' => 'Notities zijn ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notities bevatten..', + 'rule_trigger_notes_contains' => 'Notities bevatten ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notities beginnen met..', + 'rule_trigger_notes_starts' => 'Notities beginnen met ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notities eindigen op..', + 'rule_trigger_notes_ends' => 'Notities eindigen op ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Contract is..', + 'rule_trigger_bill_is' => 'Contract is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Externe ID is..', + 'rule_trigger_external_id_is' => 'Externe ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Interne referentie is..', + 'rule_trigger_internal_reference_is' => 'Interne referentie is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transactiejournaal ID is..', + 'rule_trigger_journal_id' => 'Transactiejournaal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transactie heeft een externe URL', + 'rule_trigger_any_external_url_choice' => 'Transactie heeft een externe URL', + 'rule_trigger_any_external_id' => 'Transactie heeft een extern ID', + 'rule_trigger_any_external_id_choice' => 'Transactie heeft een extern ID', + 'rule_trigger_no_external_url_choice' => 'De transactie heeft geen externe URL', + 'rule_trigger_no_external_url' => 'De transactie heeft geen externe URL', + 'rule_trigger_no_external_id_choice' => 'Transactie heeft geen extern ID', + 'rule_trigger_no_external_id' => 'Transactie heeft geen extern ID', + 'rule_trigger_id_choice' => 'Transactie-ID is..', + 'rule_trigger_id' => 'Transactie-ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Gebruikersactie is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Geen tag is..', - 'rule_trigger_tag_is_not' => 'Geen enkele tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Bron- of doelrekeningnaam is..', - 'rule_trigger_account_is' => 'Bron- of doelrekeningnaam is ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Bron- of doelrekeningnaam bevat..', - 'rule_trigger_account_contains' => 'Bron- of doelrekeningnaam bevat ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Bron- of doelrekeningnaam eindigt op..', - 'rule_trigger_account_ends' => 'Bron- of doelrekeningnaam eindigt op ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Bron- of doelrekeningnaam begint met..', - 'rule_trigger_account_starts' => 'Bron- of doelrekeningnaam begint met ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Bron- of doelrekeningnummer / IBAN is..', - 'rule_trigger_account_nr_is' => 'Bron- of doelrekeningnummer / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Bron- of doelrekeningnummer / IBAN bevat..', - 'rule_trigger_account_nr_contains' => 'Bron- of doelrekeningnummer / IBAN bevat ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Bron- of doelrekeningnummer / IBAN eindigt op..', - 'rule_trigger_account_nr_ends' => 'Bron- of doelrekeningnummer / IBAN eindigt op ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Bron- of doelrekeningnummer / IBAN begint met..', - 'rule_trigger_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint met ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Categorie bevat..', - 'rule_trigger_category_contains' => 'Categorie bevat ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Categorie eindigt op..', - 'rule_trigger_category_ends' => 'Categorie eindigt op ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Categorie begint met..', - 'rule_trigger_category_starts' => 'Categorie begint met ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget bevat..', - 'rule_trigger_budget_contains' => 'Budget bevat ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget eindigt op..', - 'rule_trigger_budget_ends' => 'Budget eindigt op ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget begint met..', - 'rule_trigger_budget_starts' => 'Budget begint met ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Contract bevat..', - 'rule_trigger_bill_contains' => 'Contract bevat ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Contract eindigt op..', - 'rule_trigger_bill_ends' => 'Contract eindigt op ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Contract begint met..', - 'rule_trigger_bill_starts' => 'Contract begint met ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Externe ID bevat..', - 'rule_trigger_external_id_contains' => 'Externe ID bevat ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Externe ID eindigt op..', - 'rule_trigger_external_id_ends' => 'Externe ID eindigt op ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Externe ID begint met..', - 'rule_trigger_external_id_starts' => 'Externe ID begint met ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Interne referentie bevat..', - 'rule_trigger_internal_reference_contains' => 'Interne referentie bevat ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Interne referentie eindigt op..', - 'rule_trigger_internal_reference_ends' => 'Interne referentie eindigt op ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Interne referentie begint met..', - 'rule_trigger_internal_reference_starts' => 'Interne referentie begint met op ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Externe URL is..', - 'rule_trigger_external_url_is' => 'Externe URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Externe URL bevat..', - 'rule_trigger_external_url_contains' => 'Externe URL bevat ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Externe URL eindigt op..', - 'rule_trigger_external_url_ends' => 'Externe URL eindigt op ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Externe URL begint met..', - 'rule_trigger_external_url_starts' => 'Externe URL begint met ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Heeft geen bijlagen', - 'rule_trigger_has_no_attachments' => 'Transactie heeft geen bijlagen', - 'rule_trigger_recurrence_id_choice' => 'ID van de periodieke transactie is..', - 'rule_trigger_recurrence_id' => 'ID van de periodieke transactie is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Rentedatum is op..', - 'rule_trigger_interest_date_on' => 'Rentedatum is op ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Rentedatum is voor..', - 'rule_trigger_interest_date_before' => 'Rentedatum is voor ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Rentedatum is na..', - 'rule_trigger_interest_date_after' => 'Rentedatum is na ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Boekdatum is op..', - 'rule_trigger_book_date_on' => 'Boekdatum is op ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Boekdatum is voor..', - 'rule_trigger_book_date_before' => 'Boekdatum is voor ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Boekdatum is na..', - 'rule_trigger_book_date_after' => 'Boekdatum is na ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Verwerkingsdatum is op..', - 'rule_trigger_process_date_on' => 'Verwerkingsdatum is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Verwerkingsdatum is voor..', - 'rule_trigger_process_date_before' => 'Verwerkingsdatum is voor ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Verwerkingsdatum is na..', - 'rule_trigger_process_date_after' => 'Verwerkingsdatum is na ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Vervaldatum is op..', - 'rule_trigger_due_date_on' => 'Vervaldatum is ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Vervaldatum is voor..', - 'rule_trigger_due_date_before' => 'Vervaldatum is voor ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Vervaldatum is na..', - 'rule_trigger_due_date_after' => 'Vervaldatum is na ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Betalingsdatum is op..', - 'rule_trigger_payment_date_on' => 'Betalingsdatum is ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Betalingsdatum is voor..', - 'rule_trigger_payment_date_before' => 'Betalingsdatum is voor ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Betalingsdatum is na..', - 'rule_trigger_payment_date_after' => 'Betalingsdatum is na ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Factuurdatum is op..', - 'rule_trigger_invoice_date_on' => 'Factuurdatum is ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Factuurdatum is voor..', - 'rule_trigger_invoice_date_before' => 'Factuurdatum is voor ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Factuurdatum is na..', - 'rule_trigger_invoice_date_after' => 'Factuurdatum is na ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transactie werd gemaakt voor..', - 'rule_trigger_created_at_before' => 'Transactie werd gemaakt voor ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transactie werd gemaakt na..', - 'rule_trigger_created_at_after' => 'Transactie werd gemaakt na ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transactie werd laatst gewijzigd voor..', - 'rule_trigger_updated_at_before' => 'Transactie werd laatst gewijzigd voor ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transactie werd laatst gewijzigd na..', - 'rule_trigger_updated_at_after' => 'Transactie werd laatst gewijzigd na ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Bedrag in vreemde valuta is precies..', - 'rule_trigger_foreign_amount_is' => 'Bedrag in vreemde valuta is ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Bedrag in vreemde valuta is minder dan..', - 'rule_trigger_foreign_amount_less' => 'Bedrag in vreemde valuta is minder dan ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Bedrag in vreemde valuta is meer dan..', - 'rule_trigger_foreign_amount_more' => 'Bedrag in vreemde valuta is meer dan ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Er is een bijlage met naam..', - 'rule_trigger_attachment_name_is' => 'Er is een bijlage met naam ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Er is een bijlage waarvan de naam bevat..', - 'rule_trigger_attachment_name_contains' => 'Er is een bijlage waarvan de naam ":trigger_value" bevat', - 'rule_trigger_attachment_name_starts_choice' => 'Er is een bijlage waarvan de naam begint met..', - 'rule_trigger_attachment_name_starts' => 'Er is een bijlage waarvan de naam begint met ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Er is een bijlage waarvan de naam eindigt op..', - 'rule_trigger_attachment_name_ends' => 'Er is een bijlage waarvan de naam eindigt op ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Een bijlage\'s notitie is..', - 'rule_trigger_attachment_notes_are' => 'Er is een bijlage waarvan de notitie ":trigger_value" is', - 'rule_trigger_attachment_notes_contains_choice' => 'Een bijlage\'s notitie bevat..', - 'rule_trigger_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie ":trigger_value" bevat', - 'rule_trigger_attachment_notes_starts_choice' => 'Een bijlage\'s notitie begint met..', - 'rule_trigger_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Een bijlage\'s notitie eindigt op..', - 'rule_trigger_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie eindigt op ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transactie is afgestemd', - 'rule_trigger_reconciled' => 'Transactie is afgestemd', - 'rule_trigger_exists_choice' => 'Elke transactie komt overeen(!)', - 'rule_trigger_exists' => 'Elke transactie komt overeen', + 'rule_trigger_user_action_choice' => 'Gebruikersactie is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Geen tag is..', + 'rule_trigger_tag_is_not' => 'Geen enkele tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Bron- of doelrekeningnaam is..', + 'rule_trigger_account_is' => 'Bron- of doelrekeningnaam is ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Bron- of doelrekeningnaam bevat..', + 'rule_trigger_account_contains' => 'Bron- of doelrekeningnaam bevat ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Bron- of doelrekeningnaam eindigt op..', + 'rule_trigger_account_ends' => 'Bron- of doelrekeningnaam eindigt op ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Bron- of doelrekeningnaam begint met..', + 'rule_trigger_account_starts' => 'Bron- of doelrekeningnaam begint met ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Bron- of doelrekeningnummer / IBAN is..', + 'rule_trigger_account_nr_is' => 'Bron- of doelrekeningnummer / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Bron- of doelrekeningnummer / IBAN bevat..', + 'rule_trigger_account_nr_contains' => 'Bron- of doelrekeningnummer / IBAN bevat ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Bron- of doelrekeningnummer / IBAN eindigt op..', + 'rule_trigger_account_nr_ends' => 'Bron- of doelrekeningnummer / IBAN eindigt op ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Bron- of doelrekeningnummer / IBAN begint met..', + 'rule_trigger_account_nr_starts' => 'Bron- of doelrekeningnummer / IBAN begint met ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Categorie bevat..', + 'rule_trigger_category_contains' => 'Categorie bevat ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Categorie eindigt op..', + 'rule_trigger_category_ends' => 'Categorie eindigt op ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Categorie begint met..', + 'rule_trigger_category_starts' => 'Categorie begint met ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget bevat..', + 'rule_trigger_budget_contains' => 'Budget bevat ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget eindigt op..', + 'rule_trigger_budget_ends' => 'Budget eindigt op ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget begint met..', + 'rule_trigger_budget_starts' => 'Budget begint met ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Contract bevat..', + 'rule_trigger_bill_contains' => 'Contract bevat ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Contract eindigt op..', + 'rule_trigger_bill_ends' => 'Contract eindigt op ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Contract begint met..', + 'rule_trigger_bill_starts' => 'Contract begint met ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Externe ID bevat..', + 'rule_trigger_external_id_contains' => 'Externe ID bevat ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Externe ID eindigt op..', + 'rule_trigger_external_id_ends' => 'Externe ID eindigt op ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Externe ID begint met..', + 'rule_trigger_external_id_starts' => 'Externe ID begint met ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Interne referentie bevat..', + 'rule_trigger_internal_reference_contains' => 'Interne referentie bevat ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Interne referentie eindigt op..', + 'rule_trigger_internal_reference_ends' => 'Interne referentie eindigt op ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Interne referentie begint met..', + 'rule_trigger_internal_reference_starts' => 'Interne referentie begint met op ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Externe URL is..', + 'rule_trigger_external_url_is' => 'Externe URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Externe URL bevat..', + 'rule_trigger_external_url_contains' => 'Externe URL bevat ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Externe URL eindigt op..', + 'rule_trigger_external_url_ends' => 'Externe URL eindigt op ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Externe URL begint met..', + 'rule_trigger_external_url_starts' => 'Externe URL begint met ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Heeft geen bijlagen', + 'rule_trigger_has_no_attachments' => 'Transactie heeft geen bijlagen', + 'rule_trigger_recurrence_id_choice' => 'ID van de periodieke transactie is..', + 'rule_trigger_recurrence_id' => 'ID van de periodieke transactie is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Rentedatum is op..', + 'rule_trigger_interest_date_on' => 'Rentedatum is op ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Rentedatum is voor..', + 'rule_trigger_interest_date_before' => 'Rentedatum is voor ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Rentedatum is na..', + 'rule_trigger_interest_date_after' => 'Rentedatum is na ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Boekdatum is op..', + 'rule_trigger_book_date_on' => 'Boekdatum is op ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Boekdatum is voor..', + 'rule_trigger_book_date_before' => 'Boekdatum is voor ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Boekdatum is na..', + 'rule_trigger_book_date_after' => 'Boekdatum is na ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Verwerkingsdatum is op..', + 'rule_trigger_process_date_on' => 'Verwerkingsdatum is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Verwerkingsdatum is voor..', + 'rule_trigger_process_date_before' => 'Verwerkingsdatum is voor ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Verwerkingsdatum is na..', + 'rule_trigger_process_date_after' => 'Verwerkingsdatum is na ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Vervaldatum is op..', + 'rule_trigger_due_date_on' => 'Vervaldatum is ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Vervaldatum is voor..', + 'rule_trigger_due_date_before' => 'Vervaldatum is voor ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Vervaldatum is na..', + 'rule_trigger_due_date_after' => 'Vervaldatum is na ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Betalingsdatum is op..', + 'rule_trigger_payment_date_on' => 'Betalingsdatum is ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Betalingsdatum is voor..', + 'rule_trigger_payment_date_before' => 'Betalingsdatum is voor ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Betalingsdatum is na..', + 'rule_trigger_payment_date_after' => 'Betalingsdatum is na ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Factuurdatum is op..', + 'rule_trigger_invoice_date_on' => 'Factuurdatum is ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Factuurdatum is voor..', + 'rule_trigger_invoice_date_before' => 'Factuurdatum is voor ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Factuurdatum is na..', + 'rule_trigger_invoice_date_after' => 'Factuurdatum is na ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transactie werd gemaakt voor..', + 'rule_trigger_created_at_before' => 'Transactie werd gemaakt voor ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transactie werd gemaakt na..', + 'rule_trigger_created_at_after' => 'Transactie werd gemaakt na ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transactie werd laatst gewijzigd voor..', + 'rule_trigger_updated_at_before' => 'Transactie werd laatst gewijzigd voor ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transactie werd laatst gewijzigd na..', + 'rule_trigger_updated_at_after' => 'Transactie werd laatst gewijzigd na ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Bedrag in vreemde valuta is precies..', + 'rule_trigger_foreign_amount_is' => 'Bedrag in vreemde valuta is ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Bedrag in vreemde valuta is minder dan..', + 'rule_trigger_foreign_amount_less' => 'Bedrag in vreemde valuta is minder dan ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Bedrag in vreemde valuta is meer dan..', + 'rule_trigger_foreign_amount_more' => 'Bedrag in vreemde valuta is meer dan ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Er is een bijlage met naam..', + 'rule_trigger_attachment_name_is' => 'Er is een bijlage met naam ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Er is een bijlage waarvan de naam bevat..', + 'rule_trigger_attachment_name_contains' => 'Er is een bijlage waarvan de naam ":trigger_value" bevat', + 'rule_trigger_attachment_name_starts_choice' => 'Er is een bijlage waarvan de naam begint met..', + 'rule_trigger_attachment_name_starts' => 'Er is een bijlage waarvan de naam begint met ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Er is een bijlage waarvan de naam eindigt op..', + 'rule_trigger_attachment_name_ends' => 'Er is een bijlage waarvan de naam eindigt op ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Een bijlage\'s notitie is..', + 'rule_trigger_attachment_notes_are' => 'Er is een bijlage waarvan de notitie ":trigger_value" is', + 'rule_trigger_attachment_notes_contains_choice' => 'Een bijlage\'s notitie bevat..', + 'rule_trigger_attachment_notes_contains' => 'Er is een bijlage waarvan de notitie ":trigger_value" bevat', + 'rule_trigger_attachment_notes_starts_choice' => 'Een bijlage\'s notitie begint met..', + 'rule_trigger_attachment_notes_starts' => 'Er is een bijlage waarvan de notitie begint met ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Een bijlage\'s notitie eindigt op..', + 'rule_trigger_attachment_notes_ends' => 'Er is een bijlage waarvan de notitie eindigt op ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transactie is afgestemd', + 'rule_trigger_reconciled' => 'Transactie is afgestemd', + 'rule_trigger_exists_choice' => 'Elke transactie komt overeen(!)', + 'rule_trigger_exists' => 'Elke transactie komt overeen', // more values for new types: - 'rule_trigger_not_account_id' => 'Rekening-ID is niet ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Bronrekening-ID is niet ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Doelrekening-ID is niet ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transactietype is niet ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is niet ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Omschrijving is niet ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Omschrijving bevat niet', - 'rule_trigger_not_description_ends' => 'Omschrijving eindigt niet op ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Omschrijving begint niet met ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notitie is niet ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notitie bevat niet ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notitie eindigt niet op ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notitie begint niet met ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Bronrekening is niet ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Bronrekening bevat niet ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Bronrekening eindigt niet op ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Bronrekening begint niet met ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Bronrekeningnummer / IBAN is niet ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Bronrekeningnummer / IBAN bevat niet ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Bronrekeningnummer / IBAN eindigt niet op ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Bronrekeningnummer / IBAN begint niet met ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Doelrekening is niet ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Doelrekeningnaam bevat niet ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Doelrekening eindigt niet op ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Doelrekeningnaam begint niet met ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Doelrekeningnummer / IBAN is niet ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Doelrekeningnummer / IBAN bevat niet ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Doelrekeningnummer / IBAN eindigt niet op ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Doelrekeningnummer / IBAN start niet met ":trigger_value"', - 'rule_trigger_not_account_is' => 'Geen van beide rekeningen is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Geen van beide rekeningen bevat ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Geen van beide rekeningen eindigt op ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Geen van beide rekeningen begint met ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Geen van beide rekeningnummers / IBAN\'s is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Geen van beide rekeningnummers / IBAN\'s bevat ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Geen van beide rekeningnummers / IBAN\'s eindigt op ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Geen van beide rekeningnummers / IBAN\'s begint met ":trigger_value"', - 'rule_trigger_not_category_is' => 'Categorie is niet ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Categorie bevat niet ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Categorie eindigt niet op ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Categorie begint niet met ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is niet ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget bevat niet ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget eindigt niet op ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget begint niet met ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Contract is niet ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Contract bevat niet ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Contract eindigt niet op ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Contract eindigt niet met ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Externe ID is niet ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Externe ID bevat niet ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Externe ID eindigt niet op ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Externe ID begint niet met ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Interne referentie is niet ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Interne referentie bevat niet ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Interne referentie eindigt niet op ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Interne referentie begint niet met ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'Externe URL is niet ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Externe URL bevat niet ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Externe URL eindigt niet op ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Externe URL begint niet met ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Valuta is niet ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Vreemde valuta is niet ":trigger_value"', - 'rule_trigger_not_id' => 'Transactie-ID is niet ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transactiejournaal ID is ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Periodieke transactie-ID is niet ":trigger_value"', - 'rule_trigger_not_date_on' => 'Datum is niet op ":trigger_value"', - 'rule_trigger_not_date_before' => 'Datum is niet voor ":trigger_value"', - 'rule_trigger_not_date_after' => 'Datum is niet na ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Rentedatum is niet op ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Rentedatum is niet voor ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Rentedatum is niet na ":trigger_value"rente', - 'rule_trigger_not_book_date_on' => 'Boekdatum is niet ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Boekdatum is niet voor ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Boekdatum is niet na ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Verwerkingsdatum is niet op ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Verwerkingsdatum is niet voor ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Verwerkingsdatum is niet na ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Vervaldatum is niet op ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Vervaldatum is niet voor ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Vervaldatum is niet na ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Betalingsdatum is niet ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Betalingsdatum is niet voor ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Betalingsdatum is niet na ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Factuurdatum is niet op ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Factuurdatum is niet voor ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Factuurdatum is niet na ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transactie is niet gemaakt op ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transactie is niet gemaakt voor ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transactie is niet gemaakt na ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transactie is niet bijgewerkt op ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transactie is niet bijgewerkt voor ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transactie is niet bijgewerkt na ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transactiebedrag is niet ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transactiebedrag is meer dan ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transactiebedrag is minder dan ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Vreemde valutabedrag is niet ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Vreemde valutabedrag is meer dan ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Vreemde valutabedrag is minder dan ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Geen bijlage met de naam ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Geen bijlage waarvan de naam ":trigger_value" bevat', - 'rule_trigger_not_attachment_name_starts' => 'Geen bijlage waarvan de naam begint met ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Geen bijlage waarvan de naam eindigt op ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Geen bijlagenotitie is ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Geen bijlagenotitie bevat ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Geen bijlagenotitie start met ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Geen bijlagenotitie eindigt op ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transactie is niet afgestemd', - 'rule_trigger_not_exists' => 'Transactie bestaat niet', - 'rule_trigger_not_has_attachments' => 'Transactie heeft geen bijlagen', - 'rule_trigger_not_has_any_category' => 'Transactie heeft geen categorie', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transactie heeft geen contract', - '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' => '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', - 'rule_trigger_not_destination_is_cash' => 'Doelrekening is geen cash-rekening', - 'rule_trigger_not_account_is_cash' => 'Geen van beide rekeningen is een cash-rekening', + 'rule_trigger_not_account_id' => 'Rekening-ID is niet ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Bronrekening-ID is niet ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Doelrekening-ID is niet ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transactietype is niet ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is niet ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Omschrijving is niet ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Omschrijving bevat niet', + 'rule_trigger_not_description_ends' => 'Omschrijving eindigt niet op ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Omschrijving begint niet met ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notitie is niet ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notitie bevat niet ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notitie eindigt niet op ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notitie begint niet met ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Bronrekening is niet ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Bronrekening bevat niet ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Bronrekening eindigt niet op ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Bronrekening begint niet met ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Bronrekeningnummer / IBAN is niet ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Bronrekeningnummer / IBAN bevat niet ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Bronrekeningnummer / IBAN eindigt niet op ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Bronrekeningnummer / IBAN begint niet met ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Doelrekening is niet ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Doelrekeningnaam bevat niet ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Doelrekening eindigt niet op ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Doelrekeningnaam begint niet met ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Doelrekeningnummer / IBAN is niet ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Doelrekeningnummer / IBAN bevat niet ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Doelrekeningnummer / IBAN eindigt niet op ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Doelrekeningnummer / IBAN start niet met ":trigger_value"', + 'rule_trigger_not_account_is' => 'Geen van beide rekeningen is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Geen van beide rekeningen bevat ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Geen van beide rekeningen eindigt op ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Geen van beide rekeningen begint met ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Geen van beide rekeningnummers / IBAN\'s is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Geen van beide rekeningnummers / IBAN\'s bevat ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Geen van beide rekeningnummers / IBAN\'s eindigt op ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Geen van beide rekeningnummers / IBAN\'s begint met ":trigger_value"', + 'rule_trigger_not_category_is' => 'Categorie is niet ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Categorie bevat niet ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Categorie eindigt niet op ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Categorie begint niet met ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is niet ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget bevat niet ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget eindigt niet op ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget begint niet met ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Contract is niet ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Contract bevat niet ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Contract eindigt niet op ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Contract eindigt niet met ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Externe ID is niet ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Externe ID bevat niet ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Externe ID eindigt niet op ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Externe ID begint niet met ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Interne referentie is niet ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Interne referentie bevat niet ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Interne referentie eindigt niet op ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Interne referentie begint niet met ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'Externe URL is niet ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Externe URL bevat niet ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Externe URL eindigt niet op ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Externe URL begint niet met ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Valuta is niet ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Vreemde valuta is niet ":trigger_value"', + 'rule_trigger_not_id' => 'Transactie-ID is niet ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transactiejournaal ID is ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Periodieke transactie-ID is niet ":trigger_value"', + 'rule_trigger_not_date_on' => 'Datum is niet op ":trigger_value"', + 'rule_trigger_not_date_before' => 'Datum is niet voor ":trigger_value"', + 'rule_trigger_not_date_after' => 'Datum is niet na ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Rentedatum is niet op ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Rentedatum is niet voor ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Rentedatum is niet na ":trigger_value"rente', + 'rule_trigger_not_book_date_on' => 'Boekdatum is niet ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Boekdatum is niet voor ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Boekdatum is niet na ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Verwerkingsdatum is niet op ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Verwerkingsdatum is niet voor ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Verwerkingsdatum is niet na ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Vervaldatum is niet op ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Vervaldatum is niet voor ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Vervaldatum is niet na ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Betalingsdatum is niet ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Betalingsdatum is niet voor ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Betalingsdatum is niet na ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Factuurdatum is niet op ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Factuurdatum is niet voor ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Factuurdatum is niet na ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transactie is niet gemaakt op ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transactie is niet gemaakt voor ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transactie is niet gemaakt na ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transactie is niet bijgewerkt op ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transactie is niet bijgewerkt voor ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transactie is niet bijgewerkt na ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transactiebedrag is niet ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transactiebedrag is meer dan ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transactiebedrag is minder dan ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Vreemde valutabedrag is niet ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Vreemde valutabedrag is meer dan ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Vreemde valutabedrag is minder dan ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Geen bijlage met de naam ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Geen bijlage waarvan de naam ":trigger_value" bevat', + 'rule_trigger_not_attachment_name_starts' => 'Geen bijlage waarvan de naam begint met ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Geen bijlage waarvan de naam eindigt op ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Geen bijlagenotitie is ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Geen bijlagenotitie bevat ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Geen bijlagenotitie start met ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Geen bijlagenotitie eindigt op ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transactie is niet afgestemd', + 'rule_trigger_not_exists' => 'Transactie bestaat niet', + 'rule_trigger_not_has_attachments' => 'Transactie heeft geen bijlagen', + 'rule_trigger_not_has_any_category' => 'Transactie heeft geen categorie', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transactie heeft geen contract', + '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' => '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', + 'rule_trigger_not_destination_is_cash' => 'Doelrekening is geen cash-rekening', + 'rule_trigger_not_account_is_cash' => 'Geen van beide rekeningen is een cash-rekening', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'VERWIJDER transactie(!)', - 'rule_action_delete_transaction' => 'VERWIJDER transactie(!)', - 'rule_action_set_category' => 'Verander categorie naar ":action_value"', - 'rule_action_clear_category' => 'Maak categorie-veld leeg', - 'rule_action_set_budget' => 'Sla op onder budget ":action_value"', - 'rule_action_clear_budget' => 'Sla op zonder budget', - 'rule_action_add_tag' => 'Voeg tag ":action_value" toe', - 'rule_action_remove_tag' => 'Haal tag ":action_value" weg', - 'rule_action_remove_all_tags' => 'Haal alle tags weg', - 'rule_action_set_description' => 'Geef beschrijving ":action_value"', - 'rule_action_append_description' => 'Zet ":action_value" voor de beschrijving', - 'rule_action_prepend_description' => 'Zet ":action_value" voor de beschrijving', - 'rule_action_set_category_choice' => 'Stel categorie in op ..', - 'rule_action_clear_category_choice' => 'Geef geen categorie', - 'rule_action_set_budget_choice' => 'Stel budget in op ..', - 'rule_action_clear_budget_choice' => 'Maak budget-veld leeg', - 'rule_action_add_tag_choice' => 'Voeg tag toe ..', - 'rule_action_remove_tag_choice' => 'Haal tag weg ..', - 'rule_action_remove_all_tags_choice' => 'Haal alle tags weg', - 'rule_action_set_description_choice' => 'Stel omschrijving in op ..', - 'rule_action_update_piggy_choice' => 'Voeg toe / verwijder het transactiebedrag in spaarpotje ..', - 'rule_action_update_piggy' => 'Voeg toe / verwijder het transactiebedrag in ":action_value"', - 'rule_action_append_description_choice' => 'Zet .. achter de omschrijving', - 'rule_action_prepend_description_choice' => 'Zet .. voor de omschrijving', - 'rule_action_set_source_account_choice' => 'Verander bronrekening naar ..', - 'rule_action_set_source_account' => 'Verander bronrekening naar ":action_value"', - 'rule_action_set_destination_account_choice' => 'Verander doelrekening naar ..', - 'rule_action_set_destination_account' => 'Verander doelrekening naar ":action_value"', - 'rule_action_append_notes_choice' => 'Vul notitie aan met ..', - 'rule_action_append_notes' => 'Vul notitie aan met ":action_value"', - 'rule_action_prepend_notes_choice' => 'Zet .. voor notitie', - 'rule_action_prepend_notes' => 'Zet tekst ":action_value" voor notitie', - 'rule_action_clear_notes_choice' => 'Verwijder notitie', - 'rule_action_clear_notes' => 'Verwijder notitie', - 'rule_action_set_notes_choice' => 'Stel notities in op ..', - 'rule_action_link_to_bill_choice' => 'Link naar een contract ..', - 'rule_action_link_to_bill' => 'Link naar contract ":action_value"', - 'rule_action_switch_accounts_choice' => 'Wissel bron- en doelrekening (alleen overschrijvingen!)', - 'rule_action_switch_accounts' => 'Wissel bron- en doelrekening', - 'rule_action_set_notes' => 'Verander notitie in ":action_value"', - 'rule_action_convert_deposit_choice' => 'Verander de transactie in inkomsten', - 'rule_action_convert_deposit' => 'Verander de transactie in inkomsten van ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Verander de transactie in een uitgave', - 'rule_action_convert_withdrawal' => 'Verander de transactie in een uitgave bij ":action_value"', - 'rule_action_convert_transfer_choice' => 'Verander de transactie in een overschrijving', - 'rule_action_convert_transfer' => 'Verander de transactie in een overschrijving met ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Voeg de omschrijving toe aan de transactienotities', - 'rule_action_append_notes_to_descr_choice' => 'Voeg de transactienotities toe aan de beschrijving', - 'rule_action_move_descr_to_notes_choice' => 'Vervang de huidige transactienotities door de omschrijving', - 'rule_action_move_notes_to_descr_choice' => 'Vervang de huidige beschrijving door transactienotities', - 'rule_action_append_descr_to_notes' => 'Voeg omschrijving toe aan notitie', - 'rule_action_append_notes_to_descr' => 'Voeg notitie toe aan beschrijving', - 'rule_action_move_descr_to_notes' => 'Notitie vervangen door omschrijving', - 'rule_action_move_notes_to_descr' => 'Beschrijving vervangen door notitie', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Verander doelrekening naar (cash)-rekening', - 'rule_action_set_source_to_cash_choice' => 'Verander bronrekening naar (cash)-rekening', - 'rulegroup_for_bills_title' => 'Regelgroep voor contracten', - 'rulegroup_for_bills_description' => 'Een speciale regelgroep voor alle regels die betrekking hebben op contracten.', - 'rule_for_bill_title' => 'Automatisch gegenereerde regel voor contract ":name"', - 'rule_for_bill_description' => 'Deze regel is automatisch gegenereerd om te transacties te matchen met contract ":name".', - 'create_rule_for_bill' => 'Maak een nieuwe regel voor contract ":name"', - 'create_rule_for_bill_txt' => 'Goed bezig, je hebt nieuw contract ":name" gemaakt. Firefly III can automagisch naar je uitgaven kijken en deze koppelen aan dit contract. Als je bijvoorbeeld je huur betaalt wordt de uitgave gekoppeld aan contract "huur". Op die manier laat Firefly III je zien welke rekeningen nog betaald moeten worden en welke niet. Om dat te doen moet er een regel gemaakt worden. Firefly III heeft vast wat handige waardes ingevuld. Dubbelcheck deze. Als ze kloppen zal Firefly III automatisch de juiste uitgave aan het juiste contract koppelen. Kijk dus goed of de triggers kloppen en corrigeer waar nodig.', - 'new_rule_for_bill_title' => 'Regel voor contract ":name"', - 'new_rule_for_bill_description' => 'Deze regel markeert uitgaven voor contract ":name".', + 'rule_action_delete_transaction_choice' => 'VERWIJDER transactie(!)', + 'rule_action_delete_transaction' => 'VERWIJDER transactie(!)', + 'rule_action_set_category' => 'Verander categorie naar ":action_value"', + 'rule_action_clear_category' => 'Maak categorie-veld leeg', + 'rule_action_set_budget' => 'Sla op onder budget ":action_value"', + 'rule_action_clear_budget' => 'Sla op zonder budget', + 'rule_action_add_tag' => 'Voeg tag ":action_value" toe', + 'rule_action_remove_tag' => 'Haal tag ":action_value" weg', + 'rule_action_remove_all_tags' => 'Haal alle tags weg', + 'rule_action_set_description' => 'Geef beschrijving ":action_value"', + 'rule_action_append_description' => 'Zet ":action_value" voor de beschrijving', + 'rule_action_prepend_description' => 'Zet ":action_value" voor de beschrijving', + 'rule_action_set_category_choice' => 'Stel categorie in op ..', + 'rule_action_clear_category_choice' => 'Geef geen categorie', + 'rule_action_set_budget_choice' => 'Stel budget in op ..', + 'rule_action_clear_budget_choice' => 'Maak budget-veld leeg', + 'rule_action_add_tag_choice' => 'Voeg tag toe ..', + 'rule_action_remove_tag_choice' => 'Haal tag weg ..', + 'rule_action_remove_all_tags_choice' => 'Haal alle tags weg', + 'rule_action_set_description_choice' => 'Stel omschrijving in op ..', + 'rule_action_update_piggy_choice' => 'Voeg toe / verwijder het transactiebedrag in spaarpotje ..', + 'rule_action_update_piggy' => 'Voeg toe / verwijder het transactiebedrag in ":action_value"', + 'rule_action_append_description_choice' => 'Zet .. achter de omschrijving', + 'rule_action_prepend_description_choice' => 'Zet .. voor de omschrijving', + 'rule_action_set_source_account_choice' => 'Verander bronrekening naar ..', + 'rule_action_set_source_account' => 'Verander bronrekening naar ":action_value"', + 'rule_action_set_destination_account_choice' => 'Verander doelrekening naar ..', + 'rule_action_set_destination_account' => 'Verander doelrekening naar ":action_value"', + 'rule_action_append_notes_choice' => 'Vul notitie aan met ..', + 'rule_action_append_notes' => 'Vul notitie aan met ":action_value"', + 'rule_action_prepend_notes_choice' => 'Zet .. voor notitie', + 'rule_action_prepend_notes' => 'Zet tekst ":action_value" voor notitie', + 'rule_action_clear_notes_choice' => 'Verwijder notitie', + 'rule_action_clear_notes' => 'Verwijder notitie', + 'rule_action_set_notes_choice' => 'Stel notities in op ..', + 'rule_action_link_to_bill_choice' => 'Link naar een contract ..', + 'rule_action_link_to_bill' => 'Link naar contract ":action_value"', + 'rule_action_switch_accounts_choice' => 'Wissel bron- en doelrekening (alleen overschrijvingen!)', + 'rule_action_switch_accounts' => 'Wissel bron- en doelrekening', + 'rule_action_set_notes' => 'Verander notitie in ":action_value"', + 'rule_action_convert_deposit_choice' => 'Verander de transactie in inkomsten', + 'rule_action_convert_deposit' => 'Verander de transactie in inkomsten van ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Verander de transactie in een uitgave', + 'rule_action_convert_withdrawal' => 'Verander de transactie in een uitgave bij ":action_value"', + 'rule_action_convert_transfer_choice' => 'Verander de transactie in een overschrijving', + 'rule_action_convert_transfer' => 'Verander de transactie in een overschrijving met ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Voeg de omschrijving toe aan de transactienotities', + 'rule_action_append_notes_to_descr_choice' => 'Voeg de transactienotities toe aan de beschrijving', + 'rule_action_move_descr_to_notes_choice' => 'Vervang de huidige transactienotities door de omschrijving', + 'rule_action_move_notes_to_descr_choice' => 'Vervang de huidige beschrijving door transactienotities', + 'rule_action_append_descr_to_notes' => 'Voeg omschrijving toe aan notitie', + 'rule_action_append_notes_to_descr' => 'Voeg notitie toe aan beschrijving', + 'rule_action_move_descr_to_notes' => 'Notitie vervangen door omschrijving', + 'rule_action_move_notes_to_descr' => 'Beschrijving vervangen door notitie', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Verander doelrekening naar (cash)-rekening', + 'rule_action_set_source_to_cash_choice' => 'Verander bronrekening naar (cash)-rekening', + 'rulegroup_for_bills_title' => 'Regelgroep voor contracten', + 'rulegroup_for_bills_description' => 'Een speciale regelgroep voor alle regels die betrekking hebben op contracten.', + 'rule_for_bill_title' => 'Automatisch gegenereerde regel voor contract ":name"', + 'rule_for_bill_description' => 'Deze regel is automatisch gegenereerd om te transacties te matchen met contract ":name".', + 'create_rule_for_bill' => 'Maak een nieuwe regel voor contract ":name"', + 'create_rule_for_bill_txt' => 'Goed bezig, je hebt nieuw contract ":name" gemaakt. Firefly III can automagisch naar je uitgaven kijken en deze koppelen aan dit contract. Als je bijvoorbeeld je huur betaalt wordt de uitgave gekoppeld aan contract "huur". Op die manier laat Firefly III je zien welke rekeningen nog betaald moeten worden en welke niet. Om dat te doen moet er een regel gemaakt worden. Firefly III heeft vast wat handige waardes ingevuld. Dubbelcheck deze. Als ze kloppen zal Firefly III automatisch de juiste uitgave aan het juiste contract koppelen. Kijk dus goed of de triggers kloppen en corrigeer waar nodig.', + 'new_rule_for_bill_title' => 'Regel voor contract ":name"', + 'new_rule_for_bill_description' => 'Deze regel markeert uitgaven voor contract ":name".', - 'new_rule_for_journal_title' => 'Regel gebaseerd op transactie ":description"', - 'new_rule_for_journal_description' => 'Deze regel is gebaseerd op transactie ":description". Hij matcht met transacties die precies hetzelfde zijn.', + 'new_rule_for_journal_title' => 'Regel gebaseerd op transactie ":description"', + 'new_rule_for_journal_description' => 'Deze regel is gebaseerd op transactie ":description". Hij matcht met transacties die precies hetzelfde zijn.', // tags - 'store_new_tag' => 'Sla tag op', - 'update_tag' => 'Sla wijzigingen op', - 'no_location_set' => 'Zonder plaats', - 'meta_data' => 'Metagegevens', - 'location' => 'Plaats', - 'location_first_split' => 'De locatie voor deze transactie kan worden ingesteld bij de eerste splits van deze transactie.', - 'without_date' => 'Zonder datum', - 'result' => 'Resultaat', - 'sums_apply_to_range' => 'Alle sommen gelden voor het geselecteerde bereik', - 'mapbox_api_key' => 'Om de kaart te gebruiken regel je een API-key bij Mapbox. Open je .env-bestand en zet deze achter MAPBOX_API_KEY=.', - 'press_object_location' => 'Klik met de rechtermuisknop of druk lang om de locatie van het object in te stellen.', - 'click_tap_location' => 'Klik of tik op de kaart om een locatie toe te voegen', - 'clear_location' => 'Wis locatie', - 'delete_all_selected_tags' => 'Alle geselecteerde tags verwijderen', - 'select_tags_to_delete' => 'Vergeet niet om tags te selecteren.', - 'deleted_x_tags' => ':count tag verwijderd.|:count tags verwijderd.', - 'create_rule_from_transaction' => 'Regel aanmaken op basis van een transactie', - 'create_recurring_from_transaction' => 'Maak periodieke transactie gebaseerd op transactie', + 'store_new_tag' => 'Sla tag op', + 'update_tag' => 'Sla wijzigingen op', + 'no_location_set' => 'Zonder plaats', + 'meta_data' => 'Metagegevens', + 'location' => 'Plaats', + 'location_first_split' => 'De locatie voor deze transactie kan worden ingesteld bij de eerste splits van deze transactie.', + 'without_date' => 'Zonder datum', + 'result' => 'Resultaat', + 'sums_apply_to_range' => 'Alle sommen gelden voor het geselecteerde bereik', + 'mapbox_api_key' => 'Om de kaart te gebruiken regel je een API-key bij Mapbox. Open je .env-bestand en zet deze achter MAPBOX_API_KEY=.', + 'press_object_location' => 'Klik met de rechtermuisknop of druk lang om de locatie van het object in te stellen.', + 'click_tap_location' => 'Klik of tik op de kaart om een locatie toe te voegen', + 'clear_location' => 'Wis locatie', + 'delete_all_selected_tags' => 'Alle geselecteerde tags verwijderen', + 'select_tags_to_delete' => 'Vergeet niet om tags te selecteren.', + 'deleted_x_tags' => ':count tag verwijderd.|:count tags verwijderd.', + 'create_rule_from_transaction' => 'Regel aanmaken op basis van een transactie', + 'create_recurring_from_transaction' => 'Maak periodieke transactie gebaseerd op transactie', // preferences - 'dark_mode_option_browser' => 'Je browser bepaalt', - 'dark_mode_option_light' => 'Altijd licht', - 'dark_mode_option_dark' => 'Altijd donker', - 'equal_to_language' => '(zelfde als taal)', - 'dark_mode_preference' => 'Nachtmodus', - 'dark_mode_preference_help' => 'Stel nachtmodus in.', - 'pref_home_screen_accounts' => 'Voorpaginarekeningen', - 'pref_home_screen_accounts_help' => 'Welke betaalrekeningen wil je op de voorpagina zien?', - 'pref_view_range' => 'Bereik', - 'pref_view_range_help' => 'Sommige grafieken worden automagisch gegroepeerd in periodes. Ook je budgetten zullen standaard in deze periode verdeeld worden. Welke periode mag het zijn?', - 'pref_1D' => 'Eén dag', - 'pref_1W' => 'Eén week', - 'pref_1M' => 'Eén maand', - 'pref_3M' => 'Drie maanden (kwartaal)', - 'pref_6M' => 'Zes maanden', - 'pref_1Y' => 'Eén jaar', - 'pref_last365' => 'Afgelopen jaar', - 'pref_last90' => 'Afgelopen 90 dagen', - 'pref_last30' => 'Afgelopen 30 dagen', - 'pref_last7' => 'Afgelopen 7 dagen', - 'pref_YTD' => 'Jaar tot nu', - 'pref_QTD' => 'Kwartaal tot nu', - 'pref_MTD' => 'Maand tot nu', - 'pref_languages' => 'Talen', - 'pref_locale' => 'Lokale instellingen', - 'pref_languages_help' => 'Firefly III ondersteunt meerdere talen. Welke heeft jouw voorkeur?', - 'pref_locale_help' => 'Firefly III kan andere lokale instellingen gebruiken, die bepalen hoe valuta, nummers en datums worden weergegeven. De lijst hieronder is compleet maar niet alles wordt ondersteund door jouw systeem. Het kan zijn dat Firefly III bepaalde lokale instellingen niet lekker weergeeft; neem dan contact met me op.', - 'pref_locale_no_demo' => 'Deze functie werkt niet voor de demo-gebruiker.', - 'pref_custom_fiscal_year' => 'Instellingen voor boekjaar', - 'pref_custom_fiscal_year_label' => 'Ingeschakeld', - 'pref_custom_fiscal_year_help' => 'Voor in landen die een boekjaar gebruiken anders dan 1 januari tot 31 december', - 'pref_fiscal_year_start_label' => 'Start van boekjaar', - 'pref_two_factor_auth' => 'Authenticatie in twee stappen', - 'pref_two_factor_auth_help' => 'Als je authenticatie in twee stappen (ook wel twee-factor authenticatie genoemd) inschakelt voeg je een extra beveiligingslaag toe aan je account. Je logt in met iets dat je weet (je wachtwoord) en iets dat je hebt (een verificatiecode). Verificatiecodes worden gegenereerd door apps op je telefoon, zoals Authy en Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Authenticatie in twee stappen inschakelen', - 'pref_two_factor_auth_disabled' => 'Je verificatiecode voor authenticatie in twee stappen is verwijderd, en uitgeschakeld', - 'pref_two_factor_auth_remove_it' => 'Vergeet niet om je Firefly III account uit je authenticatie appje te verwijderen!', - 'pref_two_factor_auth_code' => 'Bevestig de code', - 'pref_two_factor_auth_code_help' => 'Scan deze QR code met een app op je telefoon (zoals Authy of Google Authenticator). Vul de code die je terug krijgt hier in.', - 'pref_two_factor_auth_reset_code' => 'Reset de verificatiecode', - 'pref_two_factor_auth_disable_2fa' => '2FA uitzetten', - '2fa_use_secret_instead' => 'Als je de QR code niet kan scannen gebruik dan de geheime code: :secret.', - '2fa_backup_codes' => 'Sla deze backupcodes op zodat je toegang houdt als je je apparaat verliest.', - '2fa_already_enabled' => 'Tweestapsverificatie is al ingeschakeld.', - 'wrong_mfa_code' => 'Deze code is niet geldig.', - 'pref_save_settings' => 'Instellingen opslaan', - 'saved_preferences' => 'Voorkeuren opgeslagen!', - 'preferences_general' => 'Algemeen', - 'preferences_frontpage' => 'Homepagina', - 'preferences_security' => 'Veiligheid', - 'preferences_layout' => 'Uiterlijk', - 'preferences_notifications' => 'Meldingen', - 'pref_home_show_deposits' => 'Laat inkomsten zien op de homepagina', - 'pref_home_show_deposits_info' => 'De homepagina laat al crediteuren zien. Wil je ook je debiteuren zien?', - 'pref_home_do_show_deposits' => 'Ja, kom maar op', - 'successful_count' => 'waarvan :count met succes', - 'list_page_size_title' => 'Paginalengte', - 'list_page_size_help' => 'Per lijst met dingen (accounts, transacties, enz.) zie je hooguit zoveel items.', - 'list_page_size_label' => 'Paginalengte', - 'between_dates' => '(:start en :end)', - 'pref_optional_fields_transaction' => 'Optionele velden voor transacties', - 'pref_optional_fields_transaction_help' => 'Standaard staan niet alle velden aan (vanwege het overzicht). Hier kan je zulke extra velden alsnog aanzetten, als je denkt dat ze handig zijn. Als je een veld uitzet, maar deze heeft wel degelijk een waarde, dan is-ie altijd zichtbaar, wat je ook doet.', - 'optional_tj_date_fields' => 'Datumvelden', - 'optional_tj_other_fields' => 'Overige velden', - 'optional_tj_attachment_fields' => 'Bijlagen', - 'pref_optional_tj_interest_date' => 'Rentedatum', - 'pref_optional_tj_book_date' => 'Boekdatum', - 'pref_optional_tj_process_date' => 'Verwerkingsdatum', - 'pref_optional_tj_due_date' => 'Vervaldatum', - 'pref_optional_tj_payment_date' => 'Betalingsdatum', - 'pref_optional_tj_invoice_date' => 'Factuurdatum', - 'pref_optional_tj_internal_reference' => 'Interne referentie', - 'pref_optional_tj_notes' => 'Notities', - 'pref_optional_tj_attachments' => 'Bijlagen', - 'pref_optional_tj_external_url' => 'Externe URL', - 'pref_optional_tj_location' => 'Locatie', - 'pref_optional_tj_links' => 'Transactiekoppelingen', - 'optional_field_meta_dates' => 'Data', - 'optional_field_meta_business' => 'Zakelijk', - 'optional_field_attachments' => 'Bijlagen', - 'optional_field_meta_data' => 'Optionele meta-gegevens', - 'external_url' => 'Externe URL', - 'pref_notification_bill_reminder' => 'Herinnering over het verlopen van contracten', - 'pref_notification_new_access_token' => 'Melding wanneer een nieuwe API-toegangstoken wordt aangemaakt', - 'pref_notification_transaction_creation' => 'Melding wanneer een transactie automatisch wordt aangemaakt', - 'pref_notification_user_login' => 'Melding wanneer je inlogt vanaf een nieuwe locatie', - 'pref_notification_rule_action_failures' => 'Waarschuwen wanneer regelacties niet utgevoerd kunnen worden (alleen via Slack of Discord)', - 'pref_notifications' => 'Meldingen', - 'pref_notifications_help' => 'Geef aan of dit meldingen zijn die je zou willen krijgen. Sommige meldingen kunnen gevoelige financiële informatie bevatten.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Als je wilt dat Firefly III je informeert met Slack, vul dan hier de webhook URL in. Laat anders het veld leeg. Als je een beheerder bent, moet je deze URL ook in de administratie invullen.', - 'slack_url_label' => 'Slack "binnenkomende webhook" URL', + 'dark_mode_option_browser' => 'Je browser bepaalt', + 'dark_mode_option_light' => 'Altijd licht', + 'dark_mode_option_dark' => 'Altijd donker', + 'equal_to_language' => '(zelfde als taal)', + 'dark_mode_preference' => 'Nachtmodus', + 'dark_mode_preference_help' => 'Stel nachtmodus in.', + 'pref_home_screen_accounts' => 'Voorpaginarekeningen', + 'pref_home_screen_accounts_help' => 'Welke betaalrekeningen wil je op de voorpagina zien?', + 'pref_view_range' => 'Bereik', + 'pref_view_range_help' => 'Sommige grafieken worden automagisch gegroepeerd in periodes. Ook je budgetten zullen standaard in deze periode verdeeld worden. Welke periode mag het zijn?', + 'pref_1D' => 'Eén dag', + 'pref_1W' => 'Eén week', + 'pref_1M' => 'Eén maand', + 'pref_3M' => 'Drie maanden (kwartaal)', + 'pref_6M' => 'Zes maanden', + 'pref_1Y' => 'Eén jaar', + 'pref_last365' => 'Afgelopen jaar', + 'pref_last90' => 'Afgelopen 90 dagen', + 'pref_last30' => 'Afgelopen 30 dagen', + 'pref_last7' => 'Afgelopen 7 dagen', + 'pref_YTD' => 'Jaar tot nu', + 'pref_QTD' => 'Kwartaal tot nu', + 'pref_MTD' => 'Maand tot nu', + 'pref_languages' => 'Talen', + 'pref_locale' => 'Lokale instellingen', + 'pref_languages_help' => 'Firefly III ondersteunt meerdere talen. Welke heeft jouw voorkeur?', + 'pref_locale_help' => 'Firefly III kan andere lokale instellingen gebruiken, die bepalen hoe valuta, nummers en datums worden weergegeven. De lijst hieronder is compleet maar niet alles wordt ondersteund door jouw systeem. Het kan zijn dat Firefly III bepaalde lokale instellingen niet lekker weergeeft; neem dan contact met me op.', + 'pref_locale_no_demo' => 'Deze functie werkt niet voor de demo-gebruiker.', + 'pref_custom_fiscal_year' => 'Instellingen voor boekjaar', + 'pref_custom_fiscal_year_label' => 'Ingeschakeld', + 'pref_custom_fiscal_year_help' => 'Voor in landen die een boekjaar gebruiken anders dan 1 januari tot 31 december', + 'pref_fiscal_year_start_label' => 'Start van boekjaar', + 'pref_two_factor_auth' => 'Authenticatie in twee stappen', + 'pref_two_factor_auth_help' => 'Als je authenticatie in twee stappen (ook wel twee-factor authenticatie genoemd) inschakelt voeg je een extra beveiligingslaag toe aan je account. Je logt in met iets dat je weet (je wachtwoord) en iets dat je hebt (een verificatiecode). Verificatiecodes worden gegenereerd door apps op je telefoon, zoals Authy en Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Authenticatie in twee stappen inschakelen', + 'pref_two_factor_auth_disabled' => 'Je verificatiecode voor authenticatie in twee stappen is verwijderd, en uitgeschakeld', + 'pref_two_factor_auth_remove_it' => 'Vergeet niet om je Firefly III account uit je authenticatie appje te verwijderen!', + 'pref_two_factor_auth_code' => 'Bevestig de code', + 'pref_two_factor_auth_code_help' => 'Scan deze QR code met een app op je telefoon (zoals Authy of Google Authenticator). Vul de code die je terug krijgt hier in.', + 'pref_two_factor_auth_reset_code' => 'Reset de verificatiecode', + 'pref_two_factor_auth_disable_2fa' => '2FA uitzetten', + '2fa_use_secret_instead' => 'Als je de QR code niet kan scannen gebruik dan de geheime code: :secret.', + '2fa_backup_codes' => 'Sla deze backupcodes op zodat je toegang houdt als je je apparaat verliest.', + '2fa_already_enabled' => 'Tweestapsverificatie is al ingeschakeld.', + 'wrong_mfa_code' => 'Deze code is niet geldig.', + 'pref_save_settings' => 'Instellingen opslaan', + 'saved_preferences' => 'Voorkeuren opgeslagen!', + 'preferences_general' => 'Algemeen', + 'preferences_frontpage' => 'Homepagina', + 'preferences_security' => 'Veiligheid', + 'preferences_layout' => 'Uiterlijk', + 'preferences_notifications' => 'Meldingen', + 'pref_home_show_deposits' => 'Laat inkomsten zien op de homepagina', + 'pref_home_show_deposits_info' => 'De homepagina laat al crediteuren zien. Wil je ook je debiteuren zien?', + 'pref_home_do_show_deposits' => 'Ja, kom maar op', + 'successful_count' => 'waarvan :count met succes', + 'list_page_size_title' => 'Paginalengte', + 'list_page_size_help' => 'Per lijst met dingen (accounts, transacties, enz.) zie je hooguit zoveel items.', + 'list_page_size_label' => 'Paginalengte', + 'between_dates' => '(:start en :end)', + 'pref_optional_fields_transaction' => 'Optionele velden voor transacties', + 'pref_optional_fields_transaction_help' => 'Standaard staan niet alle velden aan (vanwege het overzicht). Hier kan je zulke extra velden alsnog aanzetten, als je denkt dat ze handig zijn. Als je een veld uitzet, maar deze heeft wel degelijk een waarde, dan is-ie altijd zichtbaar, wat je ook doet.', + 'optional_tj_date_fields' => 'Datumvelden', + 'optional_tj_other_fields' => 'Overige velden', + 'optional_tj_attachment_fields' => 'Bijlagen', + 'pref_optional_tj_interest_date' => 'Rentedatum', + 'pref_optional_tj_book_date' => 'Boekdatum', + 'pref_optional_tj_process_date' => 'Verwerkingsdatum', + 'pref_optional_tj_due_date' => 'Vervaldatum', + 'pref_optional_tj_payment_date' => 'Betalingsdatum', + 'pref_optional_tj_invoice_date' => 'Factuurdatum', + 'pref_optional_tj_internal_reference' => 'Interne referentie', + 'pref_optional_tj_notes' => 'Notities', + 'pref_optional_tj_attachments' => 'Bijlagen', + 'pref_optional_tj_external_url' => 'Externe URL', + 'pref_optional_tj_location' => 'Locatie', + 'pref_optional_tj_links' => 'Transactiekoppelingen', + 'optional_field_meta_dates' => 'Data', + 'optional_field_meta_business' => 'Zakelijk', + 'optional_field_attachments' => 'Bijlagen', + 'optional_field_meta_data' => 'Optionele meta-gegevens', + 'external_url' => 'Externe URL', + 'pref_notification_bill_reminder' => 'Herinnering over het verlopen van contracten', + 'pref_notification_new_access_token' => 'Melding wanneer een nieuwe API-toegangstoken wordt aangemaakt', + 'pref_notification_transaction_creation' => 'Melding wanneer een transactie automatisch wordt aangemaakt', + 'pref_notification_user_login' => 'Melding wanneer je inlogt vanaf een nieuwe locatie', + 'pref_notification_rule_action_failures' => 'Waarschuwen wanneer regelacties niet utgevoerd kunnen worden (alleen via Slack of Discord)', + 'pref_notifications' => 'Meldingen', + 'pref_notifications_help' => 'Geef aan of dit meldingen zijn die je zou willen krijgen. Sommige meldingen kunnen gevoelige financiële informatie bevatten.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Als je wilt dat Firefly III je informeert met Slack, vul dan hier de webhook URL in. Laat anders het veld leeg. Als je een beheerder bent, moet je deze URL ook in de administratie invullen.', + 'slack_url_label' => 'Slack "binnenkomende webhook" URL', // Financial administrations - 'administration_index' => 'Financiële administratie', - 'administrations_index_menu' => 'Financiële administratie(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financiële administratie', + 'administrations_index_menu' => 'Financiële administratie(s)', + 'administrations_breadcrumb' => 'Grootboeken', + 'administrations_page_title' => 'Grootboeken', + 'administrations_page_sub_title' => 'Overzicht', + 'create_administration' => 'Maak nieuw grootboek', + 'administration_owner' => 'Grootboekeigenaar: {{email}}', + 'administration_you' => 'Jouw rol: {{role}}', + 'other_users_in_admin' => 'Andere gebruikers van dit grootboek', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Gegevens wissen uit Firefly III', - 'purge_data_expl' => '"Wissen" betekent "verwijderen wat al is verwijderd". In normale omstandigheden verwijdert Firefly III niets definitief. Het verbergt het. De knop hieronder verwijdert al deze eerder "verwijderd" items VOOR ALTIJD.', - 'delete_stuff_header' => 'Gegevens verwijderen en wissen', - 'purge_all_data' => 'Wis alle verwijderde items', - 'purge_data' => 'Gegevens wissen', - 'purged_all_records' => 'Alle verwijderde records zijn gewist.', - 'delete_data_title' => 'Gegevens verwijderen uit Firefly III', - 'permanent_delete_stuff' => 'Je kan dingen verwijderen uit Firefly III. Met de knoppen hieronder kan je de genoemde items verwijderen en verbergen. Dit kan je niet ongedaan maken, tenzij je in de database gaat grutten naar de originele data.', - 'other_sessions_logged_out' => 'Al je andere sessies zijn uitgelogd.', - 'delete_unused_accounts' => 'Als je ongebruikte accounts verwijdert, worden ze ook uit je autocomplete-lijsten gewist.', - 'delete_all_unused_accounts' => 'Ongebruikte accounts verwijderen', - 'deleted_all_unused_accounts' => 'Alle ongebruikte accounts zijn verwijderd', - 'delete_all_budgets' => 'Verwijder ALLE budgetten', - 'delete_all_categories' => 'Verwijder ALLE categorieën', - 'delete_all_tags' => 'Verwijder ALLE tags', - 'delete_all_bills' => 'Verwijder AL je contracten', - 'delete_all_piggy_banks' => 'Verwijder AL je spaarpotjes', - 'delete_all_rules' => 'Verwijder AL je regels', - 'delete_all_recurring' => 'Verwijder AL je periodieke transacties', - 'delete_all_object_groups' => 'Verwijder AL je objectgroepen', - 'delete_all_accounts' => 'Verwijder AL je rekeningen', - 'delete_all_asset_accounts' => 'Verwijder AL je betaalrekeningen', - 'delete_all_expense_accounts' => 'Verwijder AL je crediteuren', - 'delete_all_revenue_accounts' => 'Verwijder AL je debiteuren', - 'delete_all_liabilities' => 'Verwijder AL je passiva', - 'delete_all_transactions' => 'Verwijder AL je transacties', - 'delete_all_withdrawals' => 'Verwijder AL je uitgaven', - 'delete_all_deposits' => 'Verwijder AL je inkomsten', - 'delete_all_transfers' => 'Verwijder AL je overschrijvingen', - 'also_delete_transactions' => 'Het verwijderen van rekeningen betekent dat ALLE bijbehorende transacties OOK worden verwijderd!', - 'deleted_all_budgets' => 'Alle budgets zijn verwijderd', - 'deleted_all_categories' => 'Alle categorieën zijn verwijderd', - 'deleted_all_tags' => 'Alle tags zijn verwijderd', - 'deleted_all_bills' => 'Al je contracten zijn verwijderd', - 'deleted_all_piggy_banks' => 'Al je spaarpotjes zijn verwijderd', - 'deleted_all_rules' => 'Al je regels en regelgroepen zijn verwijderd', - 'deleted_all_object_groups' => 'Al je groepen zijn verwijderd', - 'deleted_all_accounts' => 'Al je rekeningen zijn verwijderd', - 'deleted_all_asset_accounts' => 'Al je betaalrekeningen zijn verwijderd', - 'deleted_all_expense_accounts' => 'Al je crediteuren zijn verwijderd', - 'deleted_all_revenue_accounts' => 'Al je debiteuren zijn verwijderd', - 'deleted_all_liabilities' => 'Al je passiva zijn verwijderd', - 'deleted_all_transactions' => 'Al je transacties zijn verwijderd', - 'deleted_all_withdrawals' => 'Al je uitgaven zijn verwijderd', - 'deleted_all_deposits' => 'Al je inkomsten zijn verwijderd', - 'deleted_all_transfers' => 'Al je overschrijvingen zijn verwijderd', - 'deleted_all_recurring' => 'Al je periodiek transacties zijn verwijderd', - 'change_your_password' => 'Verander je wachtwoord', - 'delete_account' => 'Verwijder je account', - 'current_password' => 'Huidige wachtwoord', - 'new_password' => 'Nieuw wachtwoord', - 'new_password_again' => 'Nieuw wachtwoord (bevestiging)', - 'delete_your_account' => 'Verwijder je account', - 'delete_your_account_help' => 'Als je je account verwijdert worden ook al je rekeningen, transacties en alle andere zaken verwijderd. Alles is dan WEG.', - 'delete_your_account_password' => 'Voer je wachtwoord in om door te gaan.', - 'password' => 'Wachtwoord', - 'are_you_sure' => 'Zeker weten? Je kan niet meer terug!', - 'delete_account_button' => 'VERWIJDER je account', - 'invalid_current_password' => 'Huidige wachtwoord is niet geldig!', - 'password_changed' => 'Je wachtwoord is veranderd!', - 'should_change' => 'Vul ook echt een ander wachtwoord in.', - 'invalid_password' => 'Ongeldig wachtwoord!', - 'what_is_pw_security' => 'Wat is "Bevestig wachtwoordsterkte"?', - 'secure_pw_title' => 'Hoe kies je een veilig wachtwoord', - 'forgot_password_response' => 'Bedankt. Als er een account bestaat met dit e-mailadres, vind je de instructies in je inbox.', - 'secure_pw_history' => 'Elke week lees je wel hoe sites de wachtwoorden van hun gebruikers verliezen. Hackers en dieven gebruiken deze wachtwoorden om te kijken of ze je persoonsgegevens kunnen buitmaken. Deze gegevens zijn geld waard.', - 'secure_pw_ff' => 'Gebruik je overal hetzelfde wachtwoord? Als één site je wachtwoord kwijt raakt hebben hackers toegang tot al je data. Firefly III rekent er op dat je een sterk en uniek wachtwoord kiest om je financiële gegevens te beschermen.', - 'secure_pw_check_box' => 'Om je daarbij te helpen kan Firefly III checken of het wachtwoord dat je wilt gebruiken is gestolen in het verleden. Als dat zo is, raadt Firefly III je aan om dat wachtwoord NIET te gebruiken.', - 'secure_pw_working_title' => 'Hoe werkt het?', - 'secure_pw_working' => 'Als je het vinkje aanvinkt stuurt Firefly III de eerste vijf karakters van de SHA1-hash van je wachtwoord naar de website van Troy Hunt om te zien of-ie op de lijst staat. Dit voorkomt dat je een onveilig wachtwoord gebruikt, zoals is voorgeschreven in een speciale publicatie van het NIST over dit onderwerp.', - 'secure_pw_should' => 'Vinkje zetten of niet?', - 'secure_pw_long_password' => 'Ja. Controleer altijd of je wachtwoord is veilig.', - 'command_line_token' => 'Opdrachtprompt-token', - 'explain_command_line_token' => 'Je hebt dit token nodig als je commando\'s op de commandline draait, zoals het exporteren van data. Zonder dit token werkt die gevoelige opdracht niet. Deel je opdrachtprompt-token niet. Niemand zal hier naar vragen, zelfs ik niet. Als je bang bent dat-ie op straat ligt, genereer dan een nieuw token.', - 'regenerate_command_line_token' => 'Nieuw opdrachtprompt-token genereren', - 'token_regenerated' => 'Er is een nieuw opdrachtprompt-token gegenereerd', - 'change_your_email' => 'Verander je emailadres', - 'email_verification' => 'Het systeem verstuurt een mailtje naar je oude EN nieuwe emailadres. Uit veiligheidsoverwegingen ben je zometeen uitgelogd en kan je pas weer inloggen als je je emailadres hebt bevestigd. Doe dit niet als je niet zeker weet of je Firefly III installatie wel mail kan versturen. Als je een admin bent, test dit dan eerst in de administratie.', - 'email_changed_logout' => 'Je kan niet inloggen tot je je emailadres bevestigd.', - 'login_with_new_email' => 'Je kan nu inloggen met je nieuwe emailadres.', - 'login_with_old_email' => 'Je kan nu weer inloggen met je oude emailadres.', - 'login_provider_local_only' => 'Je kan dit niet doen als je inlogt via ":login_provider".', - 'external_user_mgt_disabled' => 'Deze actie is niet beschikbaar wanneer Firefly III niet verantwoordelijk is voor gebruikersbeheer of authenticatie.', - 'external_auth_disabled' => 'Deze actie is niet beschikbaar wanneer Firefly III niet verantwoordelijk is voor authenticatie.', - 'delete_local_info_only' => 'Omdat Firefly III niet verantwoordelijk is voor gebruikersbeheer of authenticatie zal deze functie alleen de lokale Firefly III informatie verwijderen.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'Je hebt nog geen OAuth-clients aangemaakt.', - 'profile_oauth_clients_external_auth' => 'Als je een externe verificatieprovider zoals Authelia gebruikt, dan zullen OAuth Clients niet werken. Je kan alleen persoonlijke toegangstokens gebruiken.', - 'profile_oauth_clients_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Naam', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Nieuwe client aanmaken', - 'profile_oauth_create_client' => 'Client aanmaken', - 'profile_oauth_edit_client' => 'Client bewerken', - 'profile_oauth_name_help' => 'Iets dat je gebruikers herkennen en vertrouwen.', - 'profile_oauth_redirect_url' => 'Redirect-URL', - 'profile_oauth_redirect_url_help' => 'De authorisatie-callback-url van jouw applicatie.', - 'profile_authorized_apps' => 'Geautoriseerde toepassingen', - 'profile_authorized_clients' => 'Geautoriseerde clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Intrekken', - 'profile_oauth_client_secret_title' => 'Client secret', - 'profile_oauth_client_secret_expl' => 'Hier is je nieuwe client secret. Dit is de enige keer dat deze getoond wordt dus verlies deze niet! Je kan dit secret gebruiken om API-aanvragen te maken.', - 'profile_personal_access_tokens' => 'Persoonlijke toegangstokens', - 'profile_personal_access_token' => 'Persoonlijk toegangstoken', - 'profile_oauth_confidential' => 'Vertrouwelijk', - 'profile_oauth_confidential_help' => 'Dit vinkje is bedoeld voor applicaties die geheimen kunnen bewaren. Applicaties zoals sommige desktop-apps en Javascript apps kunnen dit niet. In zo\'n geval haal je het vinkje weg.', - 'profile_personal_access_token_explanation' => 'Hier is je nieuwe persoonlijke toegangstoken. Dit is de enige keer dat deze getoond wordt dus verlies deze niet! Je kan deze toegangstoken gebruiken om API-aanvragen te maken.', - 'profile_no_personal_access_token' => 'Je hebt nog geen persoonlijke toegangstokens aangemaakt.', - 'profile_create_new_token' => 'Nieuwe token aanmaken', - 'profile_create_token' => 'Token aanmaken', - 'profile_create' => 'Creër', - 'profile_save_changes' => 'Aanpassingen opslaan', - 'profile_whoops' => 'Oeps!', - 'profile_something_wrong' => 'Er is iets mis gegaan!', - 'profile_try_again' => 'Er is iets misgegaan. Probeer het nogmaals.', - 'amounts' => 'Bedragen', - 'multi_account_warning_unknown' => 'Afhankelijk van het type transactie wordt de bron- en/of doelrekening overschreven door wat er in de eerste split staat.', - 'multi_account_warning_withdrawal' => 'De bronrekening wordt overschreven door wat er in de eerste split staat.', - 'multi_account_warning_deposit' => 'De doelrekening wordt overschreven door wat er in de eerste split staat.', - 'multi_account_warning_transfer' => 'De bron + doelrekening wordt overschreven door wat er in de eerste split staat.', + 'purge_data_title' => 'Gegevens wissen uit Firefly III', + 'purge_data_expl' => '"Wissen" betekent "verwijderen wat al is verwijderd". In normale omstandigheden verwijdert Firefly III niets definitief. Het verbergt het. De knop hieronder verwijdert al deze eerder "verwijderd" items VOOR ALTIJD.', + 'delete_stuff_header' => 'Gegevens verwijderen en wissen', + 'purge_all_data' => 'Wis alle verwijderde items', + 'purge_data' => 'Gegevens wissen', + 'purged_all_records' => 'Alle verwijderde records zijn gewist.', + 'delete_data_title' => 'Gegevens verwijderen uit Firefly III', + 'permanent_delete_stuff' => 'Je kan dingen verwijderen uit Firefly III. Met de knoppen hieronder kan je de genoemde items verwijderen en verbergen. Dit kan je niet ongedaan maken, tenzij je in de database gaat grutten naar de originele data.', + 'other_sessions_logged_out' => 'Al je andere sessies zijn uitgelogd.', + 'delete_unused_accounts' => 'Als je ongebruikte accounts verwijdert, worden ze ook uit je autocomplete-lijsten gewist.', + 'delete_all_unused_accounts' => 'Ongebruikte accounts verwijderen', + 'deleted_all_unused_accounts' => 'Alle ongebruikte accounts zijn verwijderd', + 'delete_all_budgets' => 'Verwijder ALLE budgetten', + 'delete_all_categories' => 'Verwijder ALLE categorieën', + 'delete_all_tags' => 'Verwijder ALLE tags', + 'delete_all_bills' => 'Verwijder AL je contracten', + 'delete_all_piggy_banks' => 'Verwijder AL je spaarpotjes', + 'delete_all_rules' => 'Verwijder AL je regels', + 'delete_all_recurring' => 'Verwijder AL je periodieke transacties', + 'delete_all_object_groups' => 'Verwijder AL je objectgroepen', + 'delete_all_accounts' => 'Verwijder AL je rekeningen', + 'delete_all_asset_accounts' => 'Verwijder AL je betaalrekeningen', + 'delete_all_expense_accounts' => 'Verwijder AL je crediteuren', + 'delete_all_revenue_accounts' => 'Verwijder AL je debiteuren', + 'delete_all_liabilities' => 'Verwijder AL je passiva', + 'delete_all_transactions' => 'Verwijder AL je transacties', + 'delete_all_withdrawals' => 'Verwijder AL je uitgaven', + 'delete_all_deposits' => 'Verwijder AL je inkomsten', + 'delete_all_transfers' => 'Verwijder AL je overschrijvingen', + 'also_delete_transactions' => 'Het verwijderen van rekeningen betekent dat ALLE bijbehorende transacties OOK worden verwijderd!', + 'deleted_all_budgets' => 'Alle budgets zijn verwijderd', + 'deleted_all_categories' => 'Alle categorieën zijn verwijderd', + 'deleted_all_tags' => 'Alle tags zijn verwijderd', + 'deleted_all_bills' => 'Al je contracten zijn verwijderd', + 'deleted_all_piggy_banks' => 'Al je spaarpotjes zijn verwijderd', + 'deleted_all_rules' => 'Al je regels en regelgroepen zijn verwijderd', + 'deleted_all_object_groups' => 'Al je groepen zijn verwijderd', + 'deleted_all_accounts' => 'Al je rekeningen zijn verwijderd', + 'deleted_all_asset_accounts' => 'Al je betaalrekeningen zijn verwijderd', + 'deleted_all_expense_accounts' => 'Al je crediteuren zijn verwijderd', + 'deleted_all_revenue_accounts' => 'Al je debiteuren zijn verwijderd', + 'deleted_all_liabilities' => 'Al je passiva zijn verwijderd', + 'deleted_all_transactions' => 'Al je transacties zijn verwijderd', + 'deleted_all_withdrawals' => 'Al je uitgaven zijn verwijderd', + 'deleted_all_deposits' => 'Al je inkomsten zijn verwijderd', + 'deleted_all_transfers' => 'Al je overschrijvingen zijn verwijderd', + 'deleted_all_recurring' => 'Al je periodiek transacties zijn verwijderd', + 'change_your_password' => 'Verander je wachtwoord', + 'delete_account' => 'Verwijder je account', + 'current_password' => 'Huidige wachtwoord', + 'new_password' => 'Nieuw wachtwoord', + 'new_password_again' => 'Nieuw wachtwoord (bevestiging)', + 'delete_your_account' => 'Verwijder je account', + 'delete_your_account_help' => 'Als je je account verwijdert worden ook al je rekeningen, transacties en alle andere zaken verwijderd. Alles is dan WEG.', + 'delete_your_account_password' => 'Voer je wachtwoord in om door te gaan.', + 'password' => 'Wachtwoord', + 'are_you_sure' => 'Zeker weten? Je kan niet meer terug!', + 'delete_account_button' => 'VERWIJDER je account', + 'invalid_current_password' => 'Huidige wachtwoord is niet geldig!', + 'password_changed' => 'Je wachtwoord is veranderd!', + 'should_change' => 'Vul ook echt een ander wachtwoord in.', + 'invalid_password' => 'Ongeldig wachtwoord!', + 'what_is_pw_security' => 'Wat is "Bevestig wachtwoordsterkte"?', + 'secure_pw_title' => 'Hoe kies je een veilig wachtwoord', + 'forgot_password_response' => 'Bedankt. Als er een account bestaat met dit e-mailadres, vind je de instructies in je inbox.', + 'secure_pw_history' => 'Elke week lees je wel hoe sites de wachtwoorden van hun gebruikers verliezen. Hackers en dieven gebruiken deze wachtwoorden om te kijken of ze je persoonsgegevens kunnen buitmaken. Deze gegevens zijn geld waard.', + 'secure_pw_ff' => 'Gebruik je overal hetzelfde wachtwoord? Als één site je wachtwoord kwijt raakt hebben hackers toegang tot al je data. Firefly III rekent er op dat je een sterk en uniek wachtwoord kiest om je financiële gegevens te beschermen.', + 'secure_pw_check_box' => 'Om je daarbij te helpen kan Firefly III checken of het wachtwoord dat je wilt gebruiken is gestolen in het verleden. Als dat zo is, raadt Firefly III je aan om dat wachtwoord NIET te gebruiken.', + 'secure_pw_working_title' => 'Hoe werkt het?', + 'secure_pw_working' => 'Als je het vinkje aanvinkt stuurt Firefly III de eerste vijf karakters van de SHA1-hash van je wachtwoord naar de website van Troy Hunt om te zien of-ie op de lijst staat. Dit voorkomt dat je een onveilig wachtwoord gebruikt, zoals is voorgeschreven in een speciale publicatie van het NIST over dit onderwerp.', + 'secure_pw_should' => 'Vinkje zetten of niet?', + 'secure_pw_long_password' => 'Ja. Controleer altijd of je wachtwoord is veilig.', + 'command_line_token' => 'Opdrachtprompt-token', + 'explain_command_line_token' => 'Je hebt dit token nodig als je commando\'s op de commandline draait, zoals het exporteren van data. Zonder dit token werkt die gevoelige opdracht niet. Deel je opdrachtprompt-token niet. Niemand zal hier naar vragen, zelfs ik niet. Als je bang bent dat-ie op straat ligt, genereer dan een nieuw token.', + 'regenerate_command_line_token' => 'Nieuw opdrachtprompt-token genereren', + 'token_regenerated' => 'Er is een nieuw opdrachtprompt-token gegenereerd', + 'change_your_email' => 'Verander je emailadres', + 'email_verification' => 'Het systeem verstuurt een mailtje naar je oude EN nieuwe emailadres. Uit veiligheidsoverwegingen ben je zometeen uitgelogd en kan je pas weer inloggen als je je emailadres hebt bevestigd. Doe dit niet als je niet zeker weet of je Firefly III installatie wel mail kan versturen. Als je een admin bent, test dit dan eerst in de administratie.', + 'email_changed_logout' => 'Je kan niet inloggen tot je je emailadres bevestigd.', + 'login_with_new_email' => 'Je kan nu inloggen met je nieuwe emailadres.', + 'login_with_old_email' => 'Je kan nu weer inloggen met je oude emailadres.', + 'login_provider_local_only' => 'Je kan dit niet doen als je inlogt via ":login_provider".', + 'external_user_mgt_disabled' => 'Deze actie is niet beschikbaar wanneer Firefly III niet verantwoordelijk is voor gebruikersbeheer of authenticatie.', + 'external_auth_disabled' => 'Deze actie is niet beschikbaar wanneer Firefly III niet verantwoordelijk is voor authenticatie.', + 'delete_local_info_only' => 'Omdat Firefly III niet verantwoordelijk is voor gebruikersbeheer of authenticatie zal deze functie alleen de lokale Firefly III informatie verwijderen.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'Je hebt nog geen OAuth-clients aangemaakt.', + 'profile_oauth_clients_external_auth' => 'Als je een externe verificatieprovider zoals Authelia gebruikt, dan zullen OAuth Clients niet werken. Je kan alleen persoonlijke toegangstokens gebruiken.', + 'profile_oauth_clients_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Naam', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Nieuwe client aanmaken', + 'profile_oauth_create_client' => 'Client aanmaken', + 'profile_oauth_edit_client' => 'Client bewerken', + 'profile_oauth_name_help' => 'Iets dat je gebruikers herkennen en vertrouwen.', + 'profile_oauth_redirect_url' => 'Redirect-URL', + 'profile_oauth_redirect_url_help' => 'De authorisatie-callback-url van jouw applicatie.', + 'profile_authorized_apps' => 'Geautoriseerde toepassingen', + 'profile_authorized_clients' => 'Geautoriseerde clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Intrekken', + 'profile_oauth_client_secret_title' => 'Client secret', + 'profile_oauth_client_secret_expl' => 'Hier is je nieuwe client secret. Dit is de enige keer dat deze getoond wordt dus verlies deze niet! Je kan dit secret gebruiken om API-aanvragen te maken.', + 'profile_personal_access_tokens' => 'Persoonlijke toegangstokens', + 'profile_personal_access_token' => 'Persoonlijk toegangstoken', + 'profile_oauth_confidential' => 'Vertrouwelijk', + 'profile_oauth_confidential_help' => 'Dit vinkje is bedoeld voor applicaties die geheimen kunnen bewaren. Applicaties zoals sommige desktop-apps en Javascript apps kunnen dit niet. In zo\'n geval haal je het vinkje weg.', + 'profile_personal_access_token_explanation' => 'Hier is je nieuwe persoonlijke toegangstoken. Dit is de enige keer dat deze getoond wordt dus verlies deze niet! Je kan deze toegangstoken gebruiken om API-aanvragen te maken.', + 'profile_no_personal_access_token' => 'Je hebt nog geen persoonlijke toegangstokens aangemaakt.', + 'profile_create_new_token' => 'Nieuwe token aanmaken', + 'profile_create_token' => 'Token aanmaken', + 'profile_create' => 'Creër', + 'profile_save_changes' => 'Aanpassingen opslaan', + 'profile_whoops' => 'Oeps!', + 'profile_something_wrong' => 'Er is iets mis gegaan!', + 'profile_try_again' => 'Er is iets misgegaan. Probeer het nogmaals.', + 'amounts' => 'Bedragen', + 'multi_account_warning_unknown' => 'Afhankelijk van het type transactie wordt de bron- en/of doelrekening overschreven door wat er in de eerste split staat.', + 'multi_account_warning_withdrawal' => 'De bronrekening wordt overschreven door wat er in de eerste split staat.', + 'multi_account_warning_deposit' => 'De doelrekening wordt overschreven door wat er in de eerste split staat.', + 'multi_account_warning_transfer' => 'De bron + doelrekening wordt overschreven door wat er in de eerste split staat.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Gegevens exporteren uit Firefly III', - 'export_data_menu' => 'Exporteren', - 'export_data_bc' => 'Gegevens exporteren uit Firefly III', - 'export_data_main_title' => 'Gegevens exporteren uit Firefly III', - 'export_data_expl' => 'Met deze link kan je alle transacties + metadata uit Firefly III exporteren. Raadpleeg de help ((?)-pictogram) voor meer informatie over het proces.', - 'export_data_all_transactions' => 'Exporteer alle transacties', - 'export_data_advanced_expl' => 'Als je een meer geavanceerde opties nodig hebt of specifieke data wilt exporteren, lees dan de hulp over het gebruik van het console commando php artisan help firefly-iii:export -data.', + 'export_data_title' => 'Gegevens exporteren uit Firefly III', + 'export_data_menu' => 'Exporteren', + 'export_data_bc' => 'Gegevens exporteren uit Firefly III', + 'export_data_main_title' => 'Gegevens exporteren uit Firefly III', + 'export_data_expl' => 'Met deze link kan je alle transacties + metadata uit Firefly III exporteren. Raadpleeg de help ((?)-pictogram) voor meer informatie over het proces.', + 'export_data_all_transactions' => 'Exporteer alle transacties', + 'export_data_advanced_expl' => 'Als je een meer geavanceerde opties nodig hebt of specifieke data wilt exporteren, lees dan de hulp over het gebruik van het console commando php artisan help firefly-iii:export -data.', // attachments - 'nr_of_attachments' => 'Eén bijlage|:count bijlagen', - 'attachments' => 'Bijlagen', - 'edit_attachment' => 'Wijzig bijlage ":name"', - 'update_attachment' => 'Update bijlage', - 'delete_attachment' => 'Verwijder bijlage ":name"', - 'attachment_deleted' => 'Bijlage ":name" verwijderd', - 'liabilities_deleted' => 'Passiva ":name" verwijderd', - 'attachment_updated' => 'Attachment ":name" geüpdatet', - 'upload_max_file_size' => 'Maximale grootte: :size', - 'list_all_attachments' => 'Lijst van alle bijlagen', + 'nr_of_attachments' => 'Eén bijlage|:count bijlagen', + 'attachments' => 'Bijlagen', + 'edit_attachment' => 'Wijzig bijlage ":name"', + 'update_attachment' => 'Update bijlage', + 'delete_attachment' => 'Verwijder bijlage ":name"', + 'attachment_deleted' => 'Bijlage ":name" verwijderd', + 'liabilities_deleted' => 'Passiva ":name" verwijderd', + 'attachment_updated' => 'Attachment ":name" geüpdatet', + 'upload_max_file_size' => 'Maximale grootte: :size', + 'list_all_attachments' => 'Lijst van alle bijlagen', // transaction index - 'is_reconciled_fields_dropped' => 'Omdat deze transactie al is afgestemd, kan je het bedrag noch de rekeningen wijzigen.', - 'title_expenses' => 'Uitgaven', - 'title_withdrawal' => 'Uitgaven', - 'title_revenue' => 'Inkomsten', - 'title_deposit' => 'Inkomsten', - 'title_transfer' => 'Overschrijvingen', - 'title_transfers' => 'Overschrijvingen', - 'submission_options' => 'Inzending opties', - 'apply_rules_checkbox' => 'Regels toepassen', - 'fire_webhooks_checkbox' => 'Webhooks starten', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Omdat deze transactie al is afgestemd, kan je het bedrag noch de rekeningen wijzigen.', + 'title_expenses' => 'Uitgaven', + 'title_withdrawal' => 'Uitgaven', + 'title_revenue' => 'Inkomsten', + 'title_deposit' => 'Inkomsten', + 'title_transfer' => 'Overschrijvingen', + 'title_transfers' => 'Overschrijvingen', + 'submission_options' => 'Inzending opties', + 'apply_rules_checkbox' => 'Regels toepassen', + 'fire_webhooks_checkbox' => 'Webhooks starten', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Deze transactie is al een uitgave', - 'convert_is_already_type_Deposit' => 'Deze transactie is al inkomsten', - 'convert_is_already_type_Transfer' => 'Deze transactie is al een overschrijving', - 'convert_to_Withdrawal' => 'Verander ":description" in een uitgave', - 'convert_to_Deposit' => 'Verander ":description" in inkomsten', - 'convert_to_Transfer' => 'Verander ":description" in een overschrijving', - 'convert_options_WithdrawalDeposit' => 'Verander een uitgave in inkomsten', - 'convert_options_WithdrawalTransfer' => 'Verander een uitgave in een overschrijving', - 'convert_options_DepositTransfer' => 'Verander inkomsten in een overschrijving', - 'convert_options_DepositWithdrawal' => 'Verander inkomsten in een uitgave', - 'convert_options_TransferWithdrawal' => 'Verander een overschrijving in een uitgave', - 'convert_options_TransferDeposit' => 'Verander een overschrijving in inkomsten', - 'convert_Withdrawal_to_deposit' => 'Verander deze uitgave in inkomsten', - 'convert_Withdrawal_to_transfer' => 'Verander deze uitgave in een overschrijving', - 'convert_Deposit_to_withdrawal' => 'Verander deze inkomsten in een uitgave', - 'convert_Deposit_to_transfer' => 'Verander deze inkomsten in een overschrijving', - 'convert_Transfer_to_deposit' => 'Verander deze overschrijving in inkomsten', - 'convert_Transfer_to_withdrawal' => 'Verander deze overschrijving in een uitgave', - 'convert_please_set_revenue_source' => 'Kies de debiteur waar het geld vandaan gaat komen.', - 'convert_please_set_asset_destination' => 'Kies de betaalrekening waar het geld heen zal gaan.', - 'convert_please_set_expense_destination' => 'Kies de crediteur waar het geld heen zal gaan.', - 'convert_please_set_asset_source' => 'Kies de betaalrekening waar het geld vandaan zal komen.', - 'convert_expl_w_d' => 'Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekening, in plaats van dat het er uit gehaald wordt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekeningen, in plaats van dat het er uit gehaald wordt.', - 'convert_expl_w_t' => 'Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.', - 'convert_expl_d_w' => 'Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekening in plaats van dat het daar wordt gestort.|Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekeningen in plaats van dat het daar wordt gestort.', - 'convert_expl_d_t' => 'Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.', - 'convert_expl_t_w' => 'Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekening in plaats van dat het wordt afgeschreven van de originele bronrekening.|Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekeningen in plaats van dat het wordt afgeschreven van de originele bronrekeningen.', - 'convert_expl_t_d' => 'Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekening die je hier ziet, in plaats van dat het als inkomsten binnenkomt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekeningen die je hier ziet, in plaats van dat het als inkomsten binnenkomt.', - 'convert_select_sources' => 'Kies de nieuwe bronrekening om de conversie af te maken.|Kies de nieuwe bronrekeningen om de conversie af te maken.', - 'convert_select_destinations' => 'Kies de nieuwe doelrekening om de conversie af te maken.|Kies de nieuwe doelrekeningen om de conversie af te maken.', - 'converted_to_Withdrawal' => 'De transactie is veranderd in een uitgave', - 'converted_to_Deposit' => 'De transactie is veranderd in inkomsten', - 'converted_to_Transfer' => 'De transactie is veranderd in een overschrijving', - 'invalid_convert_selection' => 'De rekening die je hebt geselecteerd wordt al gebruikt in deze transactie, of bestaat niet.', - 'source_or_dest_invalid' => 'Kan de juiste transactiegegevens niet vinden. Conversie is niet mogelijk.', - 'convert_to_withdrawal' => 'Converteren naar een uitgave', - 'convert_to_deposit' => 'Converteer naar inkomsten', - 'convert_to_transfer' => 'Converteren naar een overschrijving', + 'convert_is_already_type_Withdrawal' => 'Deze transactie is al een uitgave', + 'convert_is_already_type_Deposit' => 'Deze transactie is al inkomsten', + 'convert_is_already_type_Transfer' => 'Deze transactie is al een overschrijving', + 'convert_to_Withdrawal' => 'Verander ":description" in een uitgave', + 'convert_to_Deposit' => 'Verander ":description" in inkomsten', + 'convert_to_Transfer' => 'Verander ":description" in een overschrijving', + 'convert_options_WithdrawalDeposit' => 'Verander een uitgave in inkomsten', + 'convert_options_WithdrawalTransfer' => 'Verander een uitgave in een overschrijving', + 'convert_options_DepositTransfer' => 'Verander inkomsten in een overschrijving', + 'convert_options_DepositWithdrawal' => 'Verander inkomsten in een uitgave', + 'convert_options_TransferWithdrawal' => 'Verander een overschrijving in een uitgave', + 'convert_options_TransferDeposit' => 'Verander een overschrijving in inkomsten', + 'convert_Withdrawal_to_deposit' => 'Verander deze uitgave in inkomsten', + 'convert_Withdrawal_to_transfer' => 'Verander deze uitgave in een overschrijving', + 'convert_Deposit_to_withdrawal' => 'Verander deze inkomsten in een uitgave', + 'convert_Deposit_to_transfer' => 'Verander deze inkomsten in een overschrijving', + 'convert_Transfer_to_deposit' => 'Verander deze overschrijving in inkomsten', + 'convert_Transfer_to_withdrawal' => 'Verander deze overschrijving in een uitgave', + 'convert_please_set_revenue_source' => 'Kies de debiteur waar het geld vandaan gaat komen.', + 'convert_please_set_asset_destination' => 'Kies de betaalrekening waar het geld heen zal gaan.', + 'convert_please_set_expense_destination' => 'Kies de crediteur waar het geld heen zal gaan.', + 'convert_please_set_asset_source' => 'Kies de betaalrekening waar het geld vandaan zal komen.', + 'convert_expl_w_d' => 'Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekening, in plaats van dat het er uit gehaald wordt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je de transactie converteert van een uitgave naar inkomsten, wordt het geld gestort in de weergegeven doelrekeningen, in plaats van dat het er uit gehaald wordt.', + 'convert_expl_w_t' => 'Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Als je een uitgave in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.', + 'convert_expl_d_w' => 'Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekening in plaats van dat het daar wordt gestort.|Als je inkomsten converteert naar een uitgave wordt het geld uitgegeven vanaf de aangegeven bronrekeningen in plaats van dat het daar wordt gestort.', + 'convert_expl_d_t' => 'Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekening naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.|Wanneer je inkomsten in een overschrijving converteert, wordt het geld overgemaakt van de bronrekeningen naar een andere betaalrekening of passiva in plaats van dat je het uitgeeft.', + 'convert_expl_t_w' => 'Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekening in plaats van dat het wordt afgeschreven van de originele bronrekening.|Als je converteert van een overschrijving naar een afschrijving wordt het geld uitgegeven bij de hier genoemde doelrekeningen in plaats van dat het wordt afgeschreven van de originele bronrekeningen.', + 'convert_expl_t_d' => 'Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekening die je hier ziet, in plaats van dat het als inkomsten binnenkomt. Kies de nieuwe bronrekening om de conversie af te maken.|Als je een overschrijving converteert naar inkomsten wordt het geld gestort op de doelrekeningen die je hier ziet, in plaats van dat het als inkomsten binnenkomt.', + 'convert_select_sources' => 'Kies de nieuwe bronrekening om de conversie af te maken.|Kies de nieuwe bronrekeningen om de conversie af te maken.', + 'convert_select_destinations' => 'Kies de nieuwe doelrekening om de conversie af te maken.|Kies de nieuwe doelrekeningen om de conversie af te maken.', + 'converted_to_Withdrawal' => 'De transactie is veranderd in een uitgave', + 'converted_to_Deposit' => 'De transactie is veranderd in inkomsten', + 'converted_to_Transfer' => 'De transactie is veranderd in een overschrijving', + 'invalid_convert_selection' => 'De rekening die je hebt geselecteerd wordt al gebruikt in deze transactie, of bestaat niet.', + 'source_or_dest_invalid' => 'Kan de juiste transactiegegevens niet vinden. Conversie is niet mogelijk.', + 'convert_to_withdrawal' => 'Converteren naar een uitgave', + 'convert_to_deposit' => 'Converteer naar inkomsten', + 'convert_to_transfer' => 'Converteren naar een overschrijving', // create new stuff: - 'create_new_withdrawal' => 'Nieuwe uitgave', - 'create_new_deposit' => 'Nieuwe inkomsten', - 'create_new_transfer' => 'Nieuwe overschrijving', - 'create_new_asset' => 'Nieuwe betaalrekening', - 'create_new_liabilities' => 'Maak nieuwe passiva', - 'create_new_expense' => 'Nieuwe crediteur', - 'create_new_revenue' => 'Nieuwe debiteur', - 'create_new_piggy_bank' => 'Nieuw spaarpotje', - 'create_new_bill' => 'Nieuw contract', - 'create_new_subscription' => 'Maak een nieuw abonnement', - 'create_new_rule' => 'Maak een nieuwe regel', + 'create_new_withdrawal' => 'Nieuwe uitgave', + 'create_new_deposit' => 'Nieuwe inkomsten', + 'create_new_transfer' => 'Nieuwe overschrijving', + 'create_new_asset' => 'Nieuwe betaalrekening', + 'create_new_liabilities' => 'Maak nieuwe passiva', + 'create_new_expense' => 'Nieuwe crediteur', + 'create_new_revenue' => 'Nieuwe debiteur', + 'create_new_piggy_bank' => 'Nieuw spaarpotje', + 'create_new_bill' => 'Nieuw contract', + 'create_new_subscription' => 'Maak een nieuw abonnement', + 'create_new_rule' => 'Maak een nieuwe regel', // currencies: - 'create_currency' => 'Voeg nieuwe valuta toe', - 'store_currency' => 'Sla nieuwe valuta op', - 'update_currency' => 'Wijzig valuta', - 'new_default_currency' => '":name" is nu de standaardvaluta.', - 'default_currency_failed' => 'Kan ":name" niet de standaardvaluta maken. Check de logs.', - 'cannot_delete_currency' => 'Kan ":name" niet verwijderen, want deze is in gebruik.', - 'cannot_delete_fallback_currency' => ':naam is de systeemvaluta en kan niet verwijderd worden.', - 'cannot_disable_currency_journals' => 'Je kan :name niet uitschakelen, er zijn nog transacties die deze valuta gebruiken.', - 'cannot_disable_currency_last_left' => 'Je kan :name niet uitschakelen, het is de laatste beschikbare valuta.', - 'cannot_disable_currency_account_meta' => 'Je kan :name niet uitschakelen, er zijn nog betaalrekeningen die deze valuta gebruiken.', - 'cannot_disable_currency_bills' => 'Je kan :name niet uitschakelen, er zijn nog contracten die deze valuta gebruiken.', - 'cannot_disable_currency_recurring' => 'Je kan :name niet uitschakelen, er zijn nog herhalende transacties die deze valuta gebruiken.', - 'cannot_disable_currency_available_budgets' => 'Je kan :name niet uitschakelen, er zijn nog budgetten die deze valuta gebruiken.', - 'cannot_disable_currency_budget_limits' => 'Je kan :name niet uitschakelen, er zijn nog budgetlimieten die deze valuta gebruiken.', - 'cannot_disable_currency_current_default' => 'Je kan :name niet uitschakelen, het is de standaardvaluta.', - 'cannot_disable_currency_system_fallback' => 'Je kan :name niet uitschakelen, het is de standaardvaluta van Firefly III.', - 'disable_EUR_side_effects' => 'De euro is de standardvaluta van Firefly III. Als je die uitzet kan het zijn dat je dingen sloopt. Doe dit op eigen risico.', - 'deleted_currency' => 'Valuta :name verwijderd', - 'created_currency' => 'Nieuwe valuta :name opgeslagen', - 'could_not_store_currency' => 'Kon nieuwe valuta niet opslaan.', - 'updated_currency' => 'Valuta :name bijgewerkt', - 'ask_site_owner' => 'Vraag :owner of deze valuta wilt toevoegen, verwijderen of wijzigen.', - 'currencies_intro' => 'Firefly III ondersteunt diverse valuta die je hier kan instellen en bewerken.', - 'make_default_currency' => 'Maak standaard', - 'default_currency' => 'standaard', - 'currency_is_disabled' => 'Uitgeschakeld', - 'enable_currency' => 'Inschakelen', - 'disable_currency' => 'Uitschakelen', - 'currencies_default_disabled' => 'De meeste van deze valuta zijn standaard uitgeschakeld. Om ze te gebruiken, moet je ze eerst inschakelen.', - 'currency_is_now_enabled' => 'Valuta ":name" is ingeschakeld', - 'could_not_enable_currency' => 'Kon valuta ":name" niet inschakelen. Check de logs', - 'currency_is_now_disabled' => 'Valuta ":name" is uitgeschakeld', - 'could_not_disable_currency' => 'Kon valuta ":name" niet uitschakelen. Misschien is deze nog steeds in gebruik?', + 'create_currency' => 'Voeg nieuwe valuta toe', + 'store_currency' => 'Sla nieuwe valuta op', + 'update_currency' => 'Wijzig valuta', + 'new_default_currency' => '":name" is nu de standaardvaluta.', + 'default_currency_failed' => 'Kan ":name" niet de standaardvaluta maken. Check de logs.', + 'cannot_delete_currency' => 'Kan ":name" niet verwijderen, want deze is in gebruik.', + 'cannot_delete_fallback_currency' => ':naam is de systeemvaluta en kan niet verwijderd worden.', + 'cannot_disable_currency_journals' => 'Je kan :name niet uitschakelen, er zijn nog transacties die deze valuta gebruiken.', + 'cannot_disable_currency_last_left' => 'Je kan :name niet uitschakelen, het is de laatste beschikbare valuta.', + 'cannot_disable_currency_account_meta' => 'Je kan :name niet uitschakelen, er zijn nog betaalrekeningen die deze valuta gebruiken.', + 'cannot_disable_currency_bills' => 'Je kan :name niet uitschakelen, er zijn nog contracten die deze valuta gebruiken.', + 'cannot_disable_currency_recurring' => 'Je kan :name niet uitschakelen, er zijn nog herhalende transacties die deze valuta gebruiken.', + 'cannot_disable_currency_available_budgets' => 'Je kan :name niet uitschakelen, er zijn nog budgetten die deze valuta gebruiken.', + 'cannot_disable_currency_budget_limits' => 'Je kan :name niet uitschakelen, er zijn nog budgetlimieten die deze valuta gebruiken.', + 'cannot_disable_currency_current_default' => 'Je kan :name niet uitschakelen, het is de standaardvaluta.', + 'cannot_disable_currency_system_fallback' => 'Je kan :name niet uitschakelen, het is de standaardvaluta van Firefly III.', + 'disable_EUR_side_effects' => 'De euro is de standardvaluta van Firefly III. Als je die uitzet kan het zijn dat je dingen sloopt. Doe dit op eigen risico.', + 'deleted_currency' => 'Valuta :name verwijderd', + 'created_currency' => 'Nieuwe valuta :name opgeslagen', + 'could_not_store_currency' => 'Kon nieuwe valuta niet opslaan.', + 'updated_currency' => 'Valuta :name bijgewerkt', + 'ask_site_owner' => 'Vraag :owner of deze valuta wilt toevoegen, verwijderen of wijzigen.', + 'currencies_intro' => 'Firefly III ondersteunt diverse valuta die je hier kan instellen en bewerken.', + 'make_default_currency' => 'Maak standaard', + 'default_currency' => 'standaard', + 'currency_is_disabled' => 'Uitgeschakeld', + 'enable_currency' => 'Inschakelen', + 'disable_currency' => 'Uitschakelen', + 'currencies_default_disabled' => 'De meeste van deze valuta zijn standaard uitgeschakeld. Om ze te gebruiken, moet je ze eerst inschakelen.', + 'currency_is_now_enabled' => 'Valuta ":name" is ingeschakeld', + 'could_not_enable_currency' => 'Kon valuta ":name" niet inschakelen. Check de logs', + 'currency_is_now_disabled' => 'Valuta ":name" is uitgeschakeld', + 'could_not_disable_currency' => 'Kon valuta ":name" niet uitschakelen. Misschien is deze nog steeds in gebruik?', // forms: - 'mandatoryFields' => 'Verplichte velden', - 'optionalFields' => 'Optionele velden', - 'options' => 'Opties', + 'mandatoryFields' => 'Verplichte velden', + 'optionalFields' => 'Optionele velden', + 'options' => 'Opties', // budgets: - 'daily_budgets' => 'Dagelijkse budgetten', - 'weekly_budgets' => 'Wekelijkse budgetten', - 'monthly_budgets' => 'Maandelijkse budgetten', - 'quarterly_budgets' => 'Driemaandelijkse budgetten', - 'half_year_budgets' => 'Halfjaarlijkse budgetten', - 'yearly_budgets' => 'Jaarlijkse budgetten', - 'other_budgets' => 'Aangepaste budgetten', - 'budget_limit_not_in_range' => 'Dit bedrag is van toepassing op :start tot :end:', - 'total_available_budget' => 'Totaal beschikbare budget (tussen :start en :end)', - 'total_available_budget_in_currency' => 'Totaal beschikbare budget in :currency', - 'see_below' => 'zie onder', - 'create_new_budget' => 'Maak een nieuw budget', - 'store_new_budget' => 'Sla nieuw budget op', - 'stored_new_budget' => 'Nieuw budget ":name" opgeslagen', - 'available_between' => 'Beschikbaar tussen :start en :end', - 'transactionsWithoutBudget' => 'Uitgaven zonder budget', - 'transactions_no_budget' => 'Uitgaven zonder budget tussen :start en :end', - 'spent_between' => 'Al uitgegeven tussen :start en :end', - 'spent_between_left' => 'Uitgegeven :spent tussen :start en :end. Over: :left.', - 'set_available_amount' => 'Stel beschikbaar bedrag in', - 'update_available_amount' => 'Update beschikbaar bedrag', - 'ab_basic_modal_explain' => 'Gebruik dit formulier om aan te geven hoeveel je verwacht in de aangegeven periode (in totaal, in :currency) te kunnen begroten.', - 'createBudget' => 'Maak nieuw budget', - 'invalid_currency' => 'Dit is een ongeldige valuta', - 'invalid_amount' => 'Vul een bedrag in', - 'set_ab' => 'Het beschikbare budgetbedrag is ingesteld', - 'updated_ab' => 'Het beschikbare budgetbedrag is bijgewerkt', - 'deleted_ab' => 'Het beschikbare budgetbedrag is verwijderd', - 'deleted_bl' => 'Het gebudgetteerde bedrag is verwijderd', - 'alt_currency_ab_create' => 'Stel beschikbare budget in in een andere valuta', - 'bl_create_btn' => 'Stel budget in in een andere valuta', - 'inactiveBudgets' => 'Inactieve budgetten', - 'without_budget_between' => 'Transacties zonder budget tussen :start en :end', - 'delete_budget' => 'Verwijder budget ":name"', - 'deleted_budget' => 'Budget ":name" verwijderd', - 'edit_budget' => 'Wijzig budget ":name"', - 'updated_budget' => 'Budget ":name" geüpdatet', - 'update_amount' => 'Bedrag bijwerken', - 'update_budget' => 'Budget bijwerken', - 'update_budget_amount_range' => 'Update het verwacht beschikbare bedrag tussen :start en :end', - 'set_budget_limit_title' => 'Stel begroot bedrag in voor budget :budget tussen :start en :end', - 'set_budget_limit' => 'Stel begroot bedrag in', - 'budget_period_navigator' => 'Periodenavigator', - 'info_on_available_amount' => 'Wat heb ik beschikbaar?', - 'available_amount_indication' => 'Gebruik deze bedragen om een indruk te krijgen van wat je totale budget zou kunnen zijn.', - 'suggested' => 'Gesuggereerd', - 'average_between' => 'Gemiddelde tussen :start en :end', - 'transferred_in' => 'Overgeboekt (inkomend)', - 'transferred_away' => 'Overgeboekt (uitgaand)', - 'auto_budget_none' => 'Geen auto-budget', - 'auto_budget_reset' => 'Vast bedrag elke periode', - 'auto_budget_rollover' => 'Voeg elke periode een bedrag toe', - 'auto_budget_adjusted' => 'Voeg elke periode een bedrag toe en corrigeer voor overbesteding', - 'auto_budget_period_daily' => 'Dagelijks', - 'auto_budget_period_weekly' => 'Wekelijks', - 'auto_budget_period_monthly' => 'Maandelijks', - 'auto_budget_period_quarterly' => 'Elk kwartaal', - 'auto_budget_period_half_year' => 'Elk half jaar', - 'auto_budget_period_yearly' => 'Jaarlijks', - 'auto_budget_help' => 'Je kan meer lezen over deze functie in de hulppagina\'s. Klik op het (?) icoontje rechtsboven.', - 'auto_budget_reset_icon' => 'Het budget wordt periodiek ingesteld', - 'auto_budget_rollover_icon' => 'Het budget wordt periodiek aangevuld', - 'auto_budget_adjusted_icon' => 'Het bedrag zal periodiek stijgen en corrigeren bij overmatige uitgaven', - 'remove_budgeted_amount' => 'Verwijder gebudgetteerd bedrag in :currency', + 'daily_budgets' => 'Dagelijkse budgetten', + 'weekly_budgets' => 'Wekelijkse budgetten', + 'monthly_budgets' => 'Maandelijkse budgetten', + 'quarterly_budgets' => 'Driemaandelijkse budgetten', + 'half_year_budgets' => 'Halfjaarlijkse budgetten', + 'yearly_budgets' => 'Jaarlijkse budgetten', + 'other_budgets' => 'Aangepaste budgetten', + 'budget_limit_not_in_range' => 'Dit bedrag is van toepassing op :start tot :end:', + 'total_available_budget' => 'Totaal beschikbare budget (tussen :start en :end)', + 'total_available_budget_in_currency' => 'Totaal beschikbare budget in :currency', + 'see_below' => 'zie onder', + 'create_new_budget' => 'Maak een nieuw budget', + 'store_new_budget' => 'Sla nieuw budget op', + 'stored_new_budget' => 'Nieuw budget ":name" opgeslagen', + 'available_between' => 'Beschikbaar tussen :start en :end', + 'transactionsWithoutBudget' => 'Uitgaven zonder budget', + 'transactions_no_budget' => 'Uitgaven zonder budget tussen :start en :end', + 'spent_between' => 'Al uitgegeven tussen :start en :end', + 'spent_between_left' => 'Uitgegeven :spent tussen :start en :end. Over: :left.', + 'set_available_amount' => 'Stel beschikbaar bedrag in', + 'update_available_amount' => 'Update beschikbaar bedrag', + 'ab_basic_modal_explain' => 'Gebruik dit formulier om aan te geven hoeveel je verwacht in de aangegeven periode (in totaal, in :currency) te kunnen begroten.', + 'createBudget' => 'Maak nieuw budget', + 'invalid_currency' => 'Dit is een ongeldige valuta', + 'invalid_amount' => 'Vul een bedrag in', + 'set_ab' => 'Het beschikbare budgetbedrag is ingesteld', + 'updated_ab' => 'Het beschikbare budgetbedrag is bijgewerkt', + 'deleted_ab' => 'Het beschikbare budgetbedrag is verwijderd', + 'deleted_bl' => 'Het gebudgetteerde bedrag is verwijderd', + 'alt_currency_ab_create' => 'Stel beschikbare budget in in een andere valuta', + 'bl_create_btn' => 'Stel budget in in een andere valuta', + 'inactiveBudgets' => 'Inactieve budgetten', + 'without_budget_between' => 'Transacties zonder budget tussen :start en :end', + 'delete_budget' => 'Verwijder budget ":name"', + 'deleted_budget' => 'Budget ":name" verwijderd', + 'edit_budget' => 'Wijzig budget ":name"', + 'updated_budget' => 'Budget ":name" geüpdatet', + 'update_amount' => 'Bedrag bijwerken', + 'update_budget' => 'Budget bijwerken', + 'update_budget_amount_range' => 'Update het verwacht beschikbare bedrag tussen :start en :end', + 'set_budget_limit_title' => 'Stel begroot bedrag in voor budget :budget tussen :start en :end', + 'set_budget_limit' => 'Stel begroot bedrag in', + 'budget_period_navigator' => 'Periodenavigator', + 'info_on_available_amount' => 'Wat heb ik beschikbaar?', + 'available_amount_indication' => 'Gebruik deze bedragen om een indruk te krijgen van wat je totale budget zou kunnen zijn.', + 'suggested' => 'Gesuggereerd', + 'average_between' => 'Gemiddelde tussen :start en :end', + 'transferred_in' => 'Overgeboekt (inkomend)', + 'transferred_away' => 'Overgeboekt (uitgaand)', + 'auto_budget_none' => 'Geen auto-budget', + 'auto_budget_reset' => 'Vast bedrag elke periode', + 'auto_budget_rollover' => 'Voeg elke periode een bedrag toe', + 'auto_budget_adjusted' => 'Voeg elke periode een bedrag toe en corrigeer voor overbesteding', + 'auto_budget_period_daily' => 'Dagelijks', + 'auto_budget_period_weekly' => 'Wekelijks', + 'auto_budget_period_monthly' => 'Maandelijks', + 'auto_budget_period_quarterly' => 'Elk kwartaal', + 'auto_budget_period_half_year' => 'Elk half jaar', + 'auto_budget_period_yearly' => 'Jaarlijks', + 'auto_budget_help' => 'Je kan meer lezen over deze functie in de hulppagina\'s. Klik op het (?) icoontje rechtsboven.', + 'auto_budget_reset_icon' => 'Het budget wordt periodiek ingesteld', + 'auto_budget_rollover_icon' => 'Het budget wordt periodiek aangevuld', + 'auto_budget_adjusted_icon' => 'Het bedrag zal periodiek stijgen en corrigeren bij overmatige uitgaven', + 'remove_budgeted_amount' => 'Verwijder gebudgetteerd bedrag in :currency', // bills: - 'subscription' => 'Abonnement', - 'not_expected_period' => 'Niet verwacht deze periode', - 'subscriptions_in_group' => 'Abonnementen in groep "%{title}"', - 'subscr_expected_x_times' => 'Verwacht %{amount} %{times} keer te betalen in deze periode', - 'not_or_not_yet' => '(nog) niet', - 'visit_bill' => 'Bezoek contract ":name" bij Firefly III', - 'match_between_amounts' => 'Contract past bij transacties tussen :low en :high.', - 'running_again_loss' => 'Eerder gekoppelde transacties met dit contract kunnen hun koppeling verliezen, als ze (niet langer) overeenkomen met de regel(s).', - 'bill_related_rules' => 'Regels gerelateerd aan dit contract', - 'repeats' => 'Herhaalt', - 'bill_end_date_help' => 'Optioneel veld. Het contract eindigt op deze datum.', - 'bill_extension_date_help' => 'Optioneel veld. Het contract moet verlengd of opgezegd worden voor of op deze datum.', - 'bill_end_index_line' => 'Het contract eindigt op :date', - 'bill_extension_index_line' => 'Het contract moet verlengd of opgezegd worden op :date', - 'connected_journals' => 'Verbonden transacties', - 'auto_match_on' => 'Automatisch herkend door Firefly III', - 'auto_match_off' => 'Niet automatisch herkend door Firefly III', - 'next_expected_match' => 'Volgende verwachte transactie', - 'delete_bill' => 'Verwijder contract ":name"', - 'deleted_bill' => 'Contract ":name" verwijderd', - 'edit_bill' => 'Wijzig contract ":name"', - 'more' => 'Meer', - 'rescan_old' => 'Voer regels opnieuw uit op alle transacties', - 'update_bill' => 'Wijzig contract', - 'updated_bill' => 'Contract ":name" geüpdatet', - 'store_new_bill' => 'Sla nieuw contract op', - 'stored_new_bill' => 'Nieuw contract ":name" opgeslagen', - 'cannot_scan_inactive_bill' => 'Inactieve contracten kunnen niet worden gescand.', - 'rescanned_bill' => 'Alles opnieuw gescand, en :count transactie is gekoppeld aan het contract.|Alles opnieuw gescand, en :count transacties zijn gekoppeld aan het contract.', - 'average_bill_amount_year' => 'Gemiddeld contractbedrag (:year)', - 'average_bill_amount_overall' => 'Gemiddeld contractbedrag (gehele periode)', - 'bill_is_active' => 'Contract is actief', - 'bill_expected_between' => 'Verwacht tussen :start en :end', - 'bill_will_automatch' => 'Waar van toepassing wordt dit contract automatisch gekoppeld aan transacties', - 'skips_over' => 'slaat over', - 'bill_store_error' => 'Er ging wat fout bij het opslaan van het contract. Kijk in de logbestanden', - 'list_inactive_rule' => 'inactieve regel', - 'bill_edit_rules' => 'Firefly III gaat proberen de gerelateerde regel ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.|Firefly III gaat proberen de :count gerelateerde regels ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.', - 'bill_expected_date' => 'Verwacht :date', - 'bill_expected_date_js' => 'Verwacht op {date}', - 'expected_amount' => '(Verwacht) bedrag', - 'bill_paid_on' => 'Betaald op {date}', - 'bill_repeats_weekly' => 'Herhaalt wekelijks', - 'bill_repeats_monthly' => 'Herhaalt maandelijks', - 'bill_repeats_quarterly' => 'Herhaalt elk kwartaal', - 'bill_repeats_half-year' => 'Herhaalt elk half jaar', - 'bill_repeats_yearly' => 'Herhaalt jaarlijks', - 'bill_repeats_weekly_other' => 'Herhaalt om de week', - 'bill_repeats_monthly_other' => 'Herhaalt om de maand', - 'bill_repeats_quarterly_other' => 'Herhaalt om het kwartaal', - 'bill_repeats_half-year_other' => 'Herhaalt jaarlijks', - 'bill_repeats_yearly_other' => 'Herhaalt om het jaar', - 'bill_repeats_weekly_skip' => 'Herhaalt elke {skip} weken', - 'bill_repeats_monthly_skip' => 'Herhaalt elke {skip} maanden', - 'bill_repeats_quarterly_skip' => 'Herhaalt elke {skip} kwartalen', - 'bill_repeats_half-year_skip' => 'Herhaalt elke {skip} halve jaren', - 'bill_repeats_yearly_skip' => 'Herhaalt elke {skip} jaar', - 'subscriptions' => 'Abonnementen', - 'go_to_subscriptions' => 'Ga naar je abonnementen', - 'forever' => 'Voor altijd', - 'extension_date_is' => 'Verlengdatum is {date}', + 'subscription' => 'Abonnement', + 'not_expected_period' => 'Niet verwacht deze periode', + 'subscriptions_in_group' => 'Abonnementen in groep "%{title}"', + 'subscr_expected_x_times' => 'Verwacht %{amount} %{times} keer te betalen in deze periode', + 'not_or_not_yet' => '(nog) niet', + 'visit_bill' => 'Bezoek contract ":name" bij Firefly III', + 'match_between_amounts' => 'Contract past bij transacties tussen :low en :high.', + 'running_again_loss' => 'Eerder gekoppelde transacties met dit contract kunnen hun koppeling verliezen, als ze (niet langer) overeenkomen met de regel(s).', + 'bill_related_rules' => 'Regels gerelateerd aan dit contract', + 'repeats' => 'Herhaalt', + 'bill_end_date_help' => 'Optioneel veld. Het contract eindigt op deze datum.', + 'bill_extension_date_help' => 'Optioneel veld. Het contract moet verlengd of opgezegd worden voor of op deze datum.', + 'bill_end_index_line' => 'Het contract eindigt op :date', + 'bill_extension_index_line' => 'Het contract moet verlengd of opgezegd worden op :date', + 'connected_journals' => 'Verbonden transacties', + 'auto_match_on' => 'Automatisch herkend door Firefly III', + 'auto_match_off' => 'Niet automatisch herkend door Firefly III', + 'next_expected_match' => 'Volgende verwachte transactie', + 'delete_bill' => 'Verwijder contract ":name"', + 'deleted_bill' => 'Contract ":name" verwijderd', + 'edit_bill' => 'Wijzig contract ":name"', + 'more' => 'Meer', + 'rescan_old' => 'Voer regels opnieuw uit op alle transacties', + 'update_bill' => 'Wijzig contract', + 'updated_bill' => 'Contract ":name" geüpdatet', + 'store_new_bill' => 'Sla nieuw contract op', + 'stored_new_bill' => 'Nieuw contract ":name" opgeslagen', + 'cannot_scan_inactive_bill' => 'Inactieve contracten kunnen niet worden gescand.', + 'rescanned_bill' => 'Alles opnieuw gescand, en :count transactie is gekoppeld aan het contract.|Alles opnieuw gescand, en :count transacties zijn gekoppeld aan het contract.', + 'average_bill_amount_year' => 'Gemiddeld contractbedrag (:year)', + 'average_bill_amount_overall' => 'Gemiddeld contractbedrag (gehele periode)', + 'bill_is_active' => 'Contract is actief', + 'bill_expected_between' => 'Verwacht tussen :start en :end', + 'bill_will_automatch' => 'Waar van toepassing wordt dit contract automatisch gekoppeld aan transacties', + 'skips_over' => 'slaat over', + 'bill_store_error' => 'Er ging wat fout bij het opslaan van het contract. Kijk in de logbestanden', + 'list_inactive_rule' => 'inactieve regel', + 'bill_edit_rules' => 'Firefly III gaat proberen de gerelateerde regel ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.|Firefly III gaat proberen de :count gerelateerde regels ook aan te passen. Als je deze zelf al hebt gewijzigd echter, zal dit niet gebeuren.', + 'bill_expected_date' => 'Verwacht :date', + 'bill_expected_date_js' => 'Verwacht op {date}', + 'expected_amount' => '(Verwacht) bedrag', + 'bill_paid_on' => 'Betaald op {date}', + 'bill_repeats_weekly' => 'Herhaalt wekelijks', + 'bill_repeats_monthly' => 'Herhaalt maandelijks', + 'bill_repeats_quarterly' => 'Herhaalt elk kwartaal', + 'bill_repeats_half-year' => 'Herhaalt elk half jaar', + 'bill_repeats_yearly' => 'Herhaalt jaarlijks', + 'bill_repeats_weekly_other' => 'Herhaalt om de week', + 'bill_repeats_monthly_other' => 'Herhaalt om de maand', + 'bill_repeats_quarterly_other' => 'Herhaalt om het kwartaal', + 'bill_repeats_half-year_other' => 'Herhaalt jaarlijks', + 'bill_repeats_yearly_other' => 'Herhaalt om het jaar', + 'bill_repeats_weekly_skip' => 'Herhaalt elke {skip} weken', + 'bill_repeats_monthly_skip' => 'Herhaalt elke {skip} maanden', + 'bill_repeats_quarterly_skip' => 'Herhaalt elke {skip} kwartalen', + 'bill_repeats_half-year_skip' => 'Herhaalt elke {skip} halve jaren', + 'bill_repeats_yearly_skip' => 'Herhaalt elke {skip} jaar', + 'subscriptions' => 'Abonnementen', + 'go_to_subscriptions' => 'Ga naar je abonnementen', + 'forever' => 'Voor altijd', + 'extension_date_is' => 'Verlengdatum is {date}', // accounts: - 'i_am_owed_amount' => 'Ik ben het bedrag verschuldigd', - 'i_owe_amount' => 'Het bedrag is mij verschuldigd', - 'inactive_account_link' => 'Je hebt :count inactieve (gearchiveerde) rekening, die je kan bekijken op deze aparte pagina.|Je hebt :count inactieve (gearchiveerde) rekeningen, die je kan bekijken op deze aparte pagina.', - 'all_accounts_inactive' => 'Dit zijn je inactieve rekeningen.', - 'active_account_link' => 'Deze link gaat terug naar je actieve rekeningen.', - 'account_missing_transaction' => 'Rekening #:id (":name") kan je niet bekijken in Firefly III, maar het origineel is kwijt.', - 'cc_monthly_payment_date_help' => 'Maakt niet uit welk jaar of welke maand. Alleen de dag van de maand is relevant.', - 'details_for_asset' => 'Overzicht voor betaalrekening ":name"', - 'details_for_expense' => 'Overzicht voor crediteur ":name"', - 'details_for_revenue' => 'Overzicht voor debiteur ":name"', - 'details_for_cash' => 'Overzicht voor contant geldrekening ":name"', - 'store_new_asset_account' => 'Sla nieuwe betaalrekening op', - 'store_new_expense_account' => 'Sla nieuwe crediteur op', - 'store_new_revenue_account' => 'Sla nieuwe debiteur op', - 'edit_asset_account' => 'Wijzig betaalrekening ":name"', - 'edit_expense_account' => 'Wijzig crediteur ":name"', - 'edit_revenue_account' => 'Wijzig debiteur ":name"', - 'delete_asset_account' => 'Verwijder betaalrekening ":name"', - 'delete_expense_account' => 'Verwijder crediteur ":name"', - 'delete_revenue_account' => 'Verwijder debiteur ":name"', - 'delete_liabilities_account' => 'Verwijder passiva ":name"', - 'asset_deleted' => 'Betaalrekening ":name" is verwijderd.', - 'account_deleted' => 'Rekening ":name" is verwijderd', - 'expense_deleted' => 'Crediteur ":name" is verwijderd.', - 'revenue_deleted' => 'Debiteur ":name" is verwijderd.', - 'update_asset_account' => 'Wijzig betaalrekening', - 'update_undefined_account' => 'Account bijwerken', - 'update_liabilities_account' => 'Update passiva', - 'update_expense_account' => 'Wijzig crediteur', - 'update_revenue_account' => 'Wijzig debiteur', - 'make_new_asset_account' => 'Nieuwe betaalrekening', - 'make_new_expense_account' => 'Nieuwe crediteur', - 'make_new_revenue_account' => 'Nieuwe debiteur', - 'make_new_liabilities_account' => 'Maak nieuwe passiva', - 'asset_accounts' => 'Betaalrekeningen', - 'undefined_accounts' => 'Rekeningen', - 'asset_accounts_inactive' => 'Betaalrekeningen (inactief)', - 'expense_account' => 'Crediteur', - 'expense_accounts' => 'Crediteuren', - 'expense_accounts_inactive' => 'Crediteuren (inactief)', - 'revenue_account' => 'Debiteur', - 'revenue_accounts' => 'Debiteuren', - 'revenue_accounts_inactive' => 'Debiteuren (inactief)', - 'cash_accounts' => 'Contant geldrekeningen', - 'Cash account' => 'Contant geldrekening', - 'liabilities_accounts' => 'Passiva', - 'liabilities_accounts_inactive' => 'Passiva (inactief)', - 'reconcile_account' => 'Afstemmen betaalrekening ":account"', - 'overview_of_reconcile_modal' => 'Overview van afstemming', - 'delete_reconciliation' => 'Verwijder afstemmingstransactie', - 'update_reconciliation' => 'Update afstemmingstransactie', - 'amount_cannot_be_zero' => 'Het bedrag mag niet nul zijn', - 'end_of_reconcile_period' => 'Einde van afstemmingsperiode: :period', - 'start_of_reconcile_period' => 'Begin van afstemmingsperiode: :period', - 'start_balance' => 'Startsaldo', - 'end_balance' => 'Eindsaldo', - 'update_balance_dates_instruction' => 'Vergelijk de bedragen en datums hierboven met je bankafschrift en druk op "Begin met afstemmen"', - 'select_transactions_instruction' => 'Selecteer de transacties die op je bankafschrift staan.', - 'select_range_and_balance' => 'Controleer eerst het datumbereik en de saldo\'s. Druk vervolgens op "Begin met afstemmen"', - 'date_change_instruction' => 'Als je het datumbereik nu wijzigt, gaat je voortgang verloren.', - 'update_selection' => 'Selectie bijwerken', - 'store_reconcile' => 'Afstemming opslaan', - 'reconciliation_transaction' => 'Afstemmingstransactie', - 'Reconciliation' => 'Afstemming', - 'reconciliation' => 'Afstemming', - 'reconcile_options' => 'Afstemmingsopties', - 'reconcile_range' => 'Afstemmingsbereik', - 'start_reconcile' => 'Begin met afstemmen', - 'cash_account_type' => 'Cash', - 'cash' => 'contant', - 'cant_find_redirect_account' => 'Firefly III probeerde je door te sturen maar het ging mis. Sorry. Terug naar de index.', - 'account_type' => 'Rekeningtype', - 'save_transactions_by_moving' => 'Bewaar deze transactie door ze aan een andere rekening te koppelen:|Bewaar deze transacties door ze aan een andere rekening te koppelen:', - 'save_transactions_by_moving_js' => 'Geen transacties|Bewaar deze transactie door ze aan een andere rekening te koppelen.|Bewaar deze transacties door ze aan een andere rekening te koppelen.', - 'stored_new_account' => 'Nieuwe rekening ":name" opgeslagen!', - 'stored_new_account_js' => 'Nieuwe account "{name}" opgeslagen!', - 'updated_account' => 'Rekening ":name" geüpdatet', - 'updated_account_js' => 'Account "{title}" bijgewerkt.', - 'credit_card_options' => 'Opties voor credit cards', - 'no_transactions_account' => 'Betaalrekening ":name" heeft geen transacties (in deze periode).', - 'no_transactions_period' => 'Er zijn geen transacties (in deze periode).', - 'no_data_for_chart' => 'Er is (nog) niet genoeg informatie om deze grafiek te tekenen.', - 'select_at_least_one_account' => 'Selecteer ten minste één betaalrekening', - 'select_at_least_one_category' => 'Selecteer ten minste één categorie', - 'select_at_least_one_budget' => 'Selecteer ten minste één budget', - 'select_at_least_one_tag' => 'Selecteer ten minste één tag', - 'select_at_least_one_expense' => 'Kies minstens één combinatie van crediteuren/debiteuren. Als die die niet hebt (de lijst is leeg) is dit rapport niet beschikbaar voor jou.', - 'account_default_currency' => 'Dit wordt de valuta die standaard gekoppeld wordt met de rekening.', - 'reconcile_has_more' => 'Je Firefly III boekhouding bevat meer geld dan je bank beweert dat er in zou moeten zitten. Je hebt verschillende opties. Kies wat je wilt doen, en klik dan "Bevestig afstemming".', - 'reconcile_has_less' => 'Je Firefly III boekhouding bevat minder geld dan je bank beweert dat er in zou moeten zitten. Je hebt verschillende opties. Kies wat je wilt doen, en klik dan "Bevestig afstemming".', - 'reconcile_is_equal' => 'Je Firefly III boekhouding en je bankafschriften lopen gelijk. Je hoeft niets te doen. Klik op "Bevestig afstemming" om je invoer te bevestigen.', - 'create_pos_reconcile_transaction' => 'Markeer de geselecteerde transacties als afgestemd, en voeg :amount toe aan de betaalrekening.', - 'create_neg_reconcile_transaction' => 'Markeer de geselecteerde transacties als afgestemd, en verwijder :amount van de betaalrekening.', - 'reconcile_do_nothing' => 'Markeer de geselecteerde transacties als afgestemd, maar maak geen afstemmingstransactie (correctie).', - 'reconcile_go_back' => 'Je kan een afstemmingstransactie later altijd wijzigen.', - 'must_be_asset_account' => 'Je kan alleen betaalrekeningen afstemmen', - 'reconciliation_stored' => 'Afstemming opgeslagen', - 'reconciliation_error' => 'De correctie is niet opgeslagen, maar de transacties zijn wel aangemerkt als afgestemd: :error.', - 'reconciliation_transaction_title' => 'Afstemming (:from tot :to)', - 'sum_of_reconciliation' => 'Som van afstemming', - 'reconcile_this_account' => 'Stem deze rekening af', - 'reconcile' => 'Afstemmen', - 'show' => 'Bekijken', - 'confirm_reconciliation' => 'Bevestig afstemming', - 'submitted_start_balance' => 'Ingevoerd startsaldo', - 'selected_transactions' => 'Geselecteerde transacties (:count)', - 'already_cleared_transactions' => 'Al afgestemde transacties (:count)', - 'submitted_end_balance' => 'Ingevoerd eindsaldo', - 'initial_balance_description' => 'Startsaldo voor ":account"', - 'liability_credit_description' => 'Leningkrediet voor ":account"', - 'interest_calc_' => 'onbekend', - 'interest_calc_daily' => 'Per dag', - 'interest_calc_monthly' => 'Per maand', - 'interest_calc_yearly' => 'Per jaar', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half jaar', - 'interest_calc_quarterly' => 'Per kwartaal', - 'initial_balance_account' => 'Startsaldorekening voor :account', - 'list_options' => 'Lijstopties', + 'i_am_owed_amount' => 'Ik ben het bedrag verschuldigd', + 'i_owe_amount' => 'Het bedrag is mij verschuldigd', + 'inactive_account_link' => 'Je hebt :count inactieve (gearchiveerde) rekening, die je kan bekijken op deze aparte pagina.|Je hebt :count inactieve (gearchiveerde) rekeningen, die je kan bekijken op deze aparte pagina.', + 'all_accounts_inactive' => 'Dit zijn je inactieve rekeningen.', + 'active_account_link' => 'Deze link gaat terug naar je actieve rekeningen.', + 'account_missing_transaction' => 'Rekening #:id (":name") kan je niet bekijken in Firefly III, maar het origineel is kwijt.', + 'cc_monthly_payment_date_help' => 'Maakt niet uit welk jaar of welke maand. Alleen de dag van de maand is relevant.', + 'details_for_asset' => 'Overzicht voor betaalrekening ":name"', + 'details_for_expense' => 'Overzicht voor crediteur ":name"', + 'details_for_revenue' => 'Overzicht voor debiteur ":name"', + 'details_for_cash' => 'Overzicht voor contant geldrekening ":name"', + 'store_new_asset_account' => 'Sla nieuwe betaalrekening op', + 'store_new_expense_account' => 'Sla nieuwe crediteur op', + 'store_new_revenue_account' => 'Sla nieuwe debiteur op', + 'edit_asset_account' => 'Wijzig betaalrekening ":name"', + 'edit_expense_account' => 'Wijzig crediteur ":name"', + 'edit_revenue_account' => 'Wijzig debiteur ":name"', + 'delete_asset_account' => 'Verwijder betaalrekening ":name"', + 'delete_expense_account' => 'Verwijder crediteur ":name"', + 'delete_revenue_account' => 'Verwijder debiteur ":name"', + 'delete_liabilities_account' => 'Verwijder passiva ":name"', + 'asset_deleted' => 'Betaalrekening ":name" is verwijderd.', + 'account_deleted' => 'Rekening ":name" is verwijderd', + 'expense_deleted' => 'Crediteur ":name" is verwijderd.', + 'revenue_deleted' => 'Debiteur ":name" is verwijderd.', + 'update_asset_account' => 'Wijzig betaalrekening', + 'update_undefined_account' => 'Account bijwerken', + 'update_liabilities_account' => 'Update passiva', + 'update_expense_account' => 'Wijzig crediteur', + 'update_revenue_account' => 'Wijzig debiteur', + 'make_new_asset_account' => 'Nieuwe betaalrekening', + 'make_new_expense_account' => 'Nieuwe crediteur', + 'make_new_revenue_account' => 'Nieuwe debiteur', + 'make_new_liabilities_account' => 'Maak nieuwe passiva', + 'asset_accounts' => 'Betaalrekeningen', + 'undefined_accounts' => 'Rekeningen', + 'asset_accounts_inactive' => 'Betaalrekeningen (inactief)', + 'expense_account' => 'Crediteur', + 'expense_accounts' => 'Crediteuren', + 'expense_accounts_inactive' => 'Crediteuren (inactief)', + 'revenue_account' => 'Debiteur', + 'revenue_accounts' => 'Debiteuren', + 'revenue_accounts_inactive' => 'Debiteuren (inactief)', + 'cash_accounts' => 'Contant geldrekeningen', + 'Cash account' => 'Contant geldrekening', + 'liabilities_accounts' => 'Passiva', + 'liabilities_accounts_inactive' => 'Passiva (inactief)', + 'reconcile_account' => 'Afstemmen betaalrekening ":account"', + 'overview_of_reconcile_modal' => 'Overview van afstemming', + 'delete_reconciliation' => 'Verwijder afstemmingstransactie', + 'update_reconciliation' => 'Update afstemmingstransactie', + 'amount_cannot_be_zero' => 'Het bedrag mag niet nul zijn', + 'end_of_reconcile_period' => 'Einde van afstemmingsperiode: :period', + 'start_of_reconcile_period' => 'Begin van afstemmingsperiode: :period', + 'start_balance' => 'Startsaldo', + 'end_balance' => 'Eindsaldo', + 'update_balance_dates_instruction' => 'Vergelijk de bedragen en datums hierboven met je bankafschrift en druk op "Begin met afstemmen"', + 'select_transactions_instruction' => 'Selecteer de transacties die op je bankafschrift staan.', + 'select_range_and_balance' => 'Controleer eerst het datumbereik en de saldo\'s. Druk vervolgens op "Begin met afstemmen"', + 'date_change_instruction' => 'Als je het datumbereik nu wijzigt, gaat je voortgang verloren.', + 'update_selection' => 'Selectie bijwerken', + 'store_reconcile' => 'Afstemming opslaan', + 'reconciliation_transaction' => 'Afstemmingstransactie', + 'Reconciliation' => 'Afstemming', + 'reconciliation' => 'Afstemming', + 'reconcile_options' => 'Afstemmingsopties', + 'reconcile_range' => 'Afstemmingsbereik', + 'start_reconcile' => 'Begin met afstemmen', + 'cash_account_type' => 'Cash', + 'cash' => 'contant', + 'cant_find_redirect_account' => 'Firefly III probeerde je door te sturen maar het ging mis. Sorry. Terug naar de index.', + 'account_type' => 'Rekeningtype', + 'save_transactions_by_moving' => 'Bewaar deze transactie door ze aan een andere rekening te koppelen:|Bewaar deze transacties door ze aan een andere rekening te koppelen:', + 'save_transactions_by_moving_js' => 'Geen transacties|Bewaar deze transactie door ze aan een andere rekening te koppelen.|Bewaar deze transacties door ze aan een andere rekening te koppelen.', + 'stored_new_account' => 'Nieuwe rekening ":name" opgeslagen!', + 'stored_new_account_js' => 'Nieuwe account "{name}" opgeslagen!', + 'updated_account' => 'Rekening ":name" geüpdatet', + 'updated_account_js' => 'Account "{title}" bijgewerkt.', + 'credit_card_options' => 'Opties voor credit cards', + 'no_transactions_account' => 'Betaalrekening ":name" heeft geen transacties (in deze periode).', + 'no_transactions_period' => 'Er zijn geen transacties (in deze periode).', + 'no_data_for_chart' => 'Er is (nog) niet genoeg informatie om deze grafiek te tekenen.', + 'select_at_least_one_account' => 'Selecteer ten minste één betaalrekening', + 'select_at_least_one_category' => 'Selecteer ten minste één categorie', + 'select_at_least_one_budget' => 'Selecteer ten minste één budget', + 'select_at_least_one_tag' => 'Selecteer ten minste één tag', + 'select_at_least_one_expense' => 'Kies minstens één combinatie van crediteuren/debiteuren. Als die die niet hebt (de lijst is leeg) is dit rapport niet beschikbaar voor jou.', + 'account_default_currency' => 'Dit wordt de valuta die standaard gekoppeld wordt met de rekening.', + 'reconcile_has_more' => 'Je Firefly III boekhouding bevat meer geld dan je bank beweert dat er in zou moeten zitten. Je hebt verschillende opties. Kies wat je wilt doen, en klik dan "Bevestig afstemming".', + 'reconcile_has_less' => 'Je Firefly III boekhouding bevat minder geld dan je bank beweert dat er in zou moeten zitten. Je hebt verschillende opties. Kies wat je wilt doen, en klik dan "Bevestig afstemming".', + 'reconcile_is_equal' => 'Je Firefly III boekhouding en je bankafschriften lopen gelijk. Je hoeft niets te doen. Klik op "Bevestig afstemming" om je invoer te bevestigen.', + 'create_pos_reconcile_transaction' => 'Markeer de geselecteerde transacties als afgestemd, en voeg :amount toe aan de betaalrekening.', + 'create_neg_reconcile_transaction' => 'Markeer de geselecteerde transacties als afgestemd, en verwijder :amount van de betaalrekening.', + 'reconcile_do_nothing' => 'Markeer de geselecteerde transacties als afgestemd, maar maak geen afstemmingstransactie (correctie).', + 'reconcile_go_back' => 'Je kan een afstemmingstransactie later altijd wijzigen.', + 'must_be_asset_account' => 'Je kan alleen betaalrekeningen afstemmen', + 'reconciliation_stored' => 'Afstemming opgeslagen', + 'reconciliation_error' => 'De correctie is niet opgeslagen, maar de transacties zijn wel aangemerkt als afgestemd: :error.', + 'reconciliation_transaction_title' => 'Afstemming (:from tot :to)', + 'sum_of_reconciliation' => 'Som van afstemming', + 'reconcile_this_account' => 'Stem deze rekening af', + 'reconcile' => 'Afstemmen', + 'show' => 'Bekijken', + 'confirm_reconciliation' => 'Bevestig afstemming', + 'submitted_start_balance' => 'Ingevoerd startsaldo', + 'selected_transactions' => 'Geselecteerde transacties (:count)', + 'already_cleared_transactions' => 'Al afgestemde transacties (:count)', + 'submitted_end_balance' => 'Ingevoerd eindsaldo', + 'initial_balance_description' => 'Startsaldo voor ":account"', + 'liability_credit_description' => 'Leningkrediet voor ":account"', + 'interest_calc_' => 'onbekend', + 'interest_calc_daily' => 'Per dag', + 'interest_calc_monthly' => 'Per maand', + 'interest_calc_yearly' => 'Per jaar', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half jaar', + 'interest_calc_quarterly' => 'Per kwartaal', + 'initial_balance_account' => 'Startsaldorekening voor :account', + 'list_options' => 'Lijstopties', // categories: - 'new_category' => 'Nieuwe categorie', - 'create_new_category' => 'Nieuwe categorie', - 'without_category' => 'Zonder categorie', - 'update_category' => 'Update categorie', - 'updated_category' => 'Categorie ":name" geüpdatet', - 'categories' => 'Categorieën', - 'edit_category' => 'Wijzig categorie ":name"', - 'no_category' => '(geen categorie)', - 'unknown_category_plain' => 'Geen categorie', - 'category' => 'Categorie', - 'delete_category' => 'Verwijder categorie ":name"', - 'deleted_category' => 'Categorie ":name" verwijderd', - 'store_category' => 'Sla nieuwe categorie op', - 'stored_category' => 'Nieuwe categorie ":name" opgeslagen', - 'without_category_between' => 'Zonder categorie tussen :start en :end', + 'new_category' => 'Nieuwe categorie', + 'create_new_category' => 'Nieuwe categorie', + 'without_category' => 'Zonder categorie', + 'update_category' => 'Update categorie', + 'updated_category' => 'Categorie ":name" geüpdatet', + 'categories' => 'Categorieën', + 'edit_category' => 'Wijzig categorie ":name"', + 'no_category' => '(geen categorie)', + 'unknown_category_plain' => 'Geen categorie', + 'category' => 'Categorie', + 'delete_category' => 'Verwijder categorie ":name"', + 'deleted_category' => 'Categorie ":name" verwijderd', + 'store_category' => 'Sla nieuwe categorie op', + 'stored_category' => 'Nieuwe categorie ":name" opgeslagen', + 'without_category_between' => 'Zonder categorie tussen :start en :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Wacht even tot het formulier geladen is', - 'wait_loading_data' => 'Wacht even tot de gegevens er zijn...', - 'wait_attachments' => 'Wacht even tot de bijlagen geüpload zijn.', - 'errors_upload' => 'De upload is mislukt. Check je browserconsole, daar zie je de foutmelding.', - 'amount_foreign_if' => 'Optioneel, bedrag in vreemde valuta', - 'amount_destination_account' => 'Bedrag in de valuta van de doelrekening', - 'edit_transaction_title' => 'Wijzig transactie ":description"', - 'unreconcile' => 'Ongedaan maken van afstemming', - 'update_withdrawal' => 'Wijzig uitgave', - 'update_deposit' => 'Wijzig inkomsten', - 'update_transaction' => 'Update transactie', - 'update_transfer' => 'Wijzig overschrijving', - 'updated_withdrawal' => 'Uitgave ":description" geüpdatet', - 'updated_deposit' => 'Inkomsten ":description" geüpdatet', - 'updated_transfer' => 'Overschrijving ":description" geüpdatet', - 'no_changes_withdrawal' => 'Uitgave ":description" is niet gewijzigd.', - 'no_changes_deposit' => 'Inkomsten ":description" is niet gewijzigd.', - 'no_changes_transfer' => 'Overschrijving ":description" is niet gewijzigd.', - 'delete_withdrawal' => 'Verwijder uitgave ":description"', - 'delete_deposit' => 'Verwijder inkomsten ":description"', - 'delete_transfer' => 'Verwijder overschrijving ":description"', - 'deleted_withdrawal' => 'Uitgave ":description" verwijderd', - 'deleted_deposit' => 'Inkomsten ":description" verwijderd', - 'deleted_transfer' => 'Overschrijving ":description" verwijderd', - 'deleted_reconciliation' => 'Afstemming ":description" verwijderd', - 'stored_journal' => 'Nieuw transactie ":description" opgeslagen', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Je nieuwe transactie is succesvol aangemaakt', - 'updated_journal_no_descr' => 'De transactie is geüpdatet', - 'select_transactions' => 'Selecteer transacties', - 'rule_group_select_transactions' => '":title" op transacties toepassen', - 'rule_select_transactions' => '":title" op transacties toepassen', - 'stop_selection' => 'Stop met selecteren', - 'reconcile_selected' => 'Afstemmen', - 'mass_delete_journals' => 'Verwijder een aantal transacties', - 'mass_edit_journals' => 'Wijzig een aantal transacties', - 'mass_bulk_journals' => 'Wijzig een aantal transacties in bulk', - 'mass_bulk_journals_explain' => 'Gebruik dit formulier om de onderstaande transacties in één keer aan te passen. Alle transacties die je hier ziet worden geüpdated.', - 'part_of_split' => 'Deze transactie is onderdeel van een gesplitste transactie. Als je niet alle splits hebt geselecteerd dan verander je wellicht maar één stuk van een gesplitste transactie.', - 'bulk_set_new_values' => 'Gebruik de velden hieronder voor nieuwe waarden. Als je ze leeg laat, worden ze leeggemaakt voor alle gebruikers. Denk eraan dat alleen uitgaven een budget kunnen krijgen.', - 'no_bulk_category' => 'Update categorie niet', - 'no_bulk_budget' => 'Update budget niet', - 'no_bulk_tags' => 'Update tag(s) niet', - 'replace_with_these_tags' => 'Vervang met deze tags', - 'append_these_tags' => 'Voeg deze tags toe', - 'mass_edit' => 'Wijzig in lijst', - 'bulk_edit' => 'Wijzig in bulk', - 'mass_delete' => 'Verwijder', - 'cannot_edit_other_fields' => 'Je kan andere velden dan de velden die je hier ziet niet groepsgewijs wijzigen. Er is geen ruimte om ze te laten zien. Als je deze velden toch wilt wijzigen, volg dan de link naast de transactie en wijzig ze stuk voor stuk.', - 'cannot_change_amount_reconciled' => 'Je kan het bedrag van een afgestemde transactie niet aanpassen.', - 'no_budget' => '(geen budget)', - 'no_bill' => '(geen contract)', - 'account_per_budget' => 'Rekening per budget', - 'account_per_category' => 'Rekening per categorie', - 'create_new_object' => 'Opslaan', - 'empty' => '(leeg)', - 'all_other_budgets' => '(alle andere budgetten)', - 'all_other_accounts' => '(alle andere rekeningen)', - 'expense_per_source_account' => 'Uitgaven per bronrekening', - 'expense_per_destination_account' => 'Uitgaven per doelrekening', - 'income_per_destination_account' => 'Inkomen per doelrekening', - 'spent_in_specific_category' => 'Uitgegeven in categorie ":category"', - 'earned_in_specific_category' => 'Verdiend in categorie ":category"', - 'spent_in_specific_tag' => 'Uitgegeven in tag ":tag"', - 'earned_in_specific_tag' => 'Verdiend in tag ":tag"', - 'income_per_source_account' => 'Inkomen per bronrekening', - 'average_spending_per_destination' => 'Gemiddelde uitgave per doelrekening', - 'average_spending_per_source' => 'Gemiddelde uitgave per bronrekening', - 'average_earning_per_source' => 'Gemiddelde inkomsten per bronrekening', - 'average_earning_per_destination' => 'Gemiddelde inkomsten per doelrekening', - 'account_per_tag' => 'Rekening per tag', - 'tag_report_expenses_listed_once' => 'Uitgaven en inkomsten worden nooit dubbel vermeld. Als een transactie meerdere tags heeft komt-ie waarschijnlijk maar één keer voorbij, onder één van de tags. De lijst lijkt dus gegevens te missen maar de bedragen zijn correct.', - 'double_report_expenses_charted_once' => 'Uitgaven en inkomsten worden nooit dubbel vermeld. Als een transactie meerdere tags heeft kan het zijn dat-ie maar onder één tag in beeld komt. De grafiek lijkt dus informatie te missen, maar de bedragen zullen kloppen.', - 'tag_report_chart_single_tag' => 'Deze grafiek slaat op een enkele tag. Als een transactie meerdere tags heeft kan het dus zijn dat je dit in andere grafieken terug ziet komen.', - 'tag' => 'Tag', - 'no_budget_squared' => '(geen budget)', - 'perm-delete-many' => 'Als je veel transacties in één keer verwijderd kan dit je boekhouding aardig verstoren. Wees dus voorzichtig. Je hebt hier ook de mogelijkheid om één split van een gesplitste transactie weg te gooien, dus let op.', - 'mass_deleted_transactions_success' => ':count transactie verwijderd.|:count transacties verwijderd.', - 'mass_edited_transactions_success' => ':count transactie geüpdatet.|:count transacties geüpdatet.', - 'opt_group_' => '(geen rekeningtype)', - 'opt_group_no_account_type' => '(geen rekeningtype)', - 'opt_group_defaultAsset' => 'Standaard betaalrekeningen', - 'opt_group_savingAsset' => 'Spaarrekeningen', - 'opt_group_sharedAsset' => 'Gedeelde betaalrekeningen', - 'opt_group_ccAsset' => 'Creditcards', - 'opt_group_cashWalletAsset' => 'Cash portomonees', - 'opt_group_expense_account' => 'Crediteuren', - 'opt_group_revenue_account' => 'Debiteuren', - 'opt_group_l_Loan' => 'Passiva: lening', - 'opt_group_cash_account' => 'Contant geldrekening', - 'opt_group_l_Debt' => 'Passiva: schuld', - 'opt_group_l_Mortgage' => 'Passiva: hypotheek', - 'opt_group_l_Credit card' => 'Passiva: credit card', - 'notes' => 'Notities', - 'unknown_journal_error' => 'Kon de transactie niet opslaan. Kijk in de logbestanden.', - 'attachment_not_found' => 'Deze bijlage kon niet gevonden worden.', - 'journal_link_bill' => 'Deze transactie is gekoppeld aan contract :name. Om de verbinding te verwijderen haal je het vinkje weg. Gebruik regels om een ander contract te koppelen.', - 'transaction_stored_link' => 'Transactie #{ID} ("{title}") is opgeslagen.', - 'transaction_new_stored_link' => 'Transactie #{ID} is opgeslagen.', - 'transaction_updated_link' => 'Transactie #{ID} ("{title}") is geüpdatet.', - 'transaction_updated_no_changes' => 'Transactie #{ID} ("{title}") is niet gewijzigd.', - 'first_split_decides' => 'De eerste split bepaalt wat hier staat', - 'first_split_overrules_source' => 'De eerste split kan de bronrekening overschrijven', - 'first_split_overrules_destination' => 'De eerste split kan de doelrekening overschrijven', - 'spent_x_of_y' => '{amount} van {total} uitgegeven', + 'wait_loading_transaction' => 'Wacht even tot het formulier geladen is', + 'wait_loading_data' => 'Wacht even tot de gegevens er zijn...', + 'wait_attachments' => 'Wacht even tot de bijlagen geüpload zijn.', + 'errors_upload' => 'De upload is mislukt. Check je browserconsole, daar zie je de foutmelding.', + 'amount_foreign_if' => 'Optioneel, bedrag in vreemde valuta', + 'amount_destination_account' => 'Bedrag in de valuta van de doelrekening', + 'edit_transaction_title' => 'Wijzig transactie ":description"', + 'unreconcile' => 'Ongedaan maken van afstemming', + 'update_withdrawal' => 'Wijzig uitgave', + 'update_deposit' => 'Wijzig inkomsten', + 'update_transaction' => 'Update transactie', + 'update_transfer' => 'Wijzig overschrijving', + 'updated_withdrawal' => 'Uitgave ":description" geüpdatet', + 'updated_deposit' => 'Inkomsten ":description" geüpdatet', + 'updated_transfer' => 'Overschrijving ":description" geüpdatet', + 'no_changes_withdrawal' => 'Uitgave ":description" is niet gewijzigd.', + 'no_changes_deposit' => 'Inkomsten ":description" is niet gewijzigd.', + 'no_changes_transfer' => 'Overschrijving ":description" is niet gewijzigd.', + 'delete_withdrawal' => 'Verwijder uitgave ":description"', + 'delete_deposit' => 'Verwijder inkomsten ":description"', + 'delete_transfer' => 'Verwijder overschrijving ":description"', + 'deleted_withdrawal' => 'Uitgave ":description" verwijderd', + 'deleted_deposit' => 'Inkomsten ":description" verwijderd', + 'deleted_transfer' => 'Overschrijving ":description" verwijderd', + 'deleted_reconciliation' => 'Afstemming ":description" verwijderd', + 'stored_journal' => 'Nieuw transactie ":description" opgeslagen', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Je nieuwe transactie is succesvol aangemaakt', + 'updated_journal_no_descr' => 'De transactie is geüpdatet', + 'select_transactions' => 'Selecteer transacties', + 'rule_group_select_transactions' => '":title" op transacties toepassen', + 'rule_select_transactions' => '":title" op transacties toepassen', + 'stop_selection' => 'Stop met selecteren', + 'reconcile_selected' => 'Afstemmen', + 'mass_delete_journals' => 'Verwijder een aantal transacties', + 'mass_edit_journals' => 'Wijzig een aantal transacties', + 'mass_bulk_journals' => 'Wijzig een aantal transacties in bulk', + 'mass_bulk_journals_explain' => 'Gebruik dit formulier om de onderstaande transacties in één keer aan te passen. Alle transacties die je hier ziet worden geüpdated.', + 'part_of_split' => 'Deze transactie is onderdeel van een gesplitste transactie. Als je niet alle splits hebt geselecteerd dan verander je wellicht maar één stuk van een gesplitste transactie.', + 'bulk_set_new_values' => 'Gebruik de velden hieronder voor nieuwe waarden. Als je ze leeg laat, worden ze leeggemaakt voor alle gebruikers. Denk eraan dat alleen uitgaven een budget kunnen krijgen.', + 'no_bulk_category' => 'Update categorie niet', + 'no_bulk_budget' => 'Update budget niet', + 'no_bulk_tags' => 'Update tag(s) niet', + 'replace_with_these_tags' => 'Vervang met deze tags', + 'append_these_tags' => 'Voeg deze tags toe', + 'mass_edit' => 'Wijzig in lijst', + 'bulk_edit' => 'Wijzig in bulk', + 'mass_delete' => 'Verwijder', + 'cannot_edit_other_fields' => 'Je kan andere velden dan de velden die je hier ziet niet groepsgewijs wijzigen. Er is geen ruimte om ze te laten zien. Als je deze velden toch wilt wijzigen, volg dan de link naast de transactie en wijzig ze stuk voor stuk.', + 'cannot_change_amount_reconciled' => 'Je kan het bedrag van een afgestemde transactie niet aanpassen.', + 'no_budget' => '(geen budget)', + 'no_bill' => '(geen contract)', + 'account_per_budget' => 'Rekening per budget', + 'account_per_category' => 'Rekening per categorie', + 'create_new_object' => 'Opslaan', + 'empty' => '(leeg)', + 'all_other_budgets' => '(alle andere budgetten)', + 'all_other_accounts' => '(alle andere rekeningen)', + 'expense_per_source_account' => 'Uitgaven per bronrekening', + 'expense_per_destination_account' => 'Uitgaven per doelrekening', + 'income_per_destination_account' => 'Inkomen per doelrekening', + 'spent_in_specific_category' => 'Uitgegeven in categorie ":category"', + 'earned_in_specific_category' => 'Verdiend in categorie ":category"', + 'spent_in_specific_tag' => 'Uitgegeven in tag ":tag"', + 'earned_in_specific_tag' => 'Verdiend in tag ":tag"', + 'income_per_source_account' => 'Inkomen per bronrekening', + 'average_spending_per_destination' => 'Gemiddelde uitgave per doelrekening', + 'average_spending_per_source' => 'Gemiddelde uitgave per bronrekening', + 'average_earning_per_source' => 'Gemiddelde inkomsten per bronrekening', + 'average_earning_per_destination' => 'Gemiddelde inkomsten per doelrekening', + 'account_per_tag' => 'Rekening per tag', + 'tag_report_expenses_listed_once' => 'Uitgaven en inkomsten worden nooit dubbel vermeld. Als een transactie meerdere tags heeft komt-ie waarschijnlijk maar één keer voorbij, onder één van de tags. De lijst lijkt dus gegevens te missen maar de bedragen zijn correct.', + 'double_report_expenses_charted_once' => 'Uitgaven en inkomsten worden nooit dubbel vermeld. Als een transactie meerdere tags heeft kan het zijn dat-ie maar onder één tag in beeld komt. De grafiek lijkt dus informatie te missen, maar de bedragen zullen kloppen.', + 'tag_report_chart_single_tag' => 'Deze grafiek slaat op een enkele tag. Als een transactie meerdere tags heeft kan het dus zijn dat je dit in andere grafieken terug ziet komen.', + 'tag' => 'Tag', + 'no_budget_squared' => '(geen budget)', + 'perm-delete-many' => 'Als je veel transacties in één keer verwijderd kan dit je boekhouding aardig verstoren. Wees dus voorzichtig. Je hebt hier ook de mogelijkheid om één split van een gesplitste transactie weg te gooien, dus let op.', + 'mass_deleted_transactions_success' => ':count transactie verwijderd.|:count transacties verwijderd.', + 'mass_edited_transactions_success' => ':count transactie geüpdatet.|:count transacties geüpdatet.', + 'opt_group_' => '(geen rekeningtype)', + 'opt_group_no_account_type' => '(geen rekeningtype)', + 'opt_group_defaultAsset' => 'Standaard betaalrekeningen', + 'opt_group_savingAsset' => 'Spaarrekeningen', + 'opt_group_sharedAsset' => 'Gedeelde betaalrekeningen', + 'opt_group_ccAsset' => 'Creditcards', + 'opt_group_cashWalletAsset' => 'Cash portomonees', + 'opt_group_expense_account' => 'Crediteuren', + 'opt_group_revenue_account' => 'Debiteuren', + 'opt_group_l_Loan' => 'Passiva: lening', + 'opt_group_cash_account' => 'Contant geldrekening', + 'opt_group_l_Debt' => 'Passiva: schuld', + 'opt_group_l_Mortgage' => 'Passiva: hypotheek', + 'opt_group_l_Credit card' => 'Passiva: credit card', + 'notes' => 'Notities', + 'unknown_journal_error' => 'Kon de transactie niet opslaan. Kijk in de logbestanden.', + 'attachment_not_found' => 'Deze bijlage kon niet gevonden worden.', + 'journal_link_bill' => 'Deze transactie is gekoppeld aan contract :name. Om de verbinding te verwijderen haal je het vinkje weg. Gebruik regels om een ander contract te koppelen.', + 'transaction_stored_link' => 'Transactie #{ID} ("{title}") is opgeslagen.', + 'transaction_new_stored_link' => 'Transactie #{ID} is opgeslagen.', + 'transaction_updated_link' => 'Transactie #{ID} ("{title}") is geüpdatet.', + 'transaction_updated_no_changes' => 'Transactie #{ID} ("{title}") is niet gewijzigd.', + 'first_split_decides' => 'De eerste split bepaalt wat hier staat', + 'first_split_overrules_source' => 'De eerste split kan de bronrekening overschrijven', + 'first_split_overrules_destination' => 'De eerste split kan de doelrekening overschrijven', + 'spent_x_of_y' => '{amount} van {total} uitgegeven', // new user: - 'welcome' => 'Welkom bij Firefly III!', - 'submit' => 'Invoeren', - 'submission' => 'Indienen', - 'submit_yes_really' => 'Invoeren (ik weet wat ik doe)', - 'getting_started' => 'Aan de start!', - 'to_get_started' => 'Het is goed om te zien dat de installatie van Firefly III gelukt is. Voer de naam van je bank in en het saldo van je belangrijkste betaalrekening. Meerdere rekeningen kan je later toevoegen, maar we moeten ergens beginnen natuurlijk.', - 'savings_balance_text' => 'Firefly III maakt automatisch een spaarrekening voor je. Daar zit normaal geen geld in, maar je kan hier opgeven hoeveel er op staat.', - 'finish_up_new_user' => 'That\'s it! Druk op Opslaan om door te gaan. Je gaat dan naar de homepage van Firefly III.', - 'stored_new_accounts_new_user' => 'Hoera! Je nieuwe accounts zijn opgeslagen.', - 'set_preferred_language' => 'Als je Firefly III liever in een andere taal gebruikt, geef dat dan hier aan.', - 'language' => 'Taal', - 'new_savings_account' => ':bank_name spaarrekening', - 'cash_wallet' => 'Cash-rekening', - 'currency_not_present' => 'Geen zorgen als de valuta die je gewend bent er niet tussen staat. Je kan je eigen valuta maken onder Opties > Valuta.', + 'welcome' => 'Welkom bij Firefly III!', + 'submit' => 'Invoeren', + 'submission' => 'Indienen', + 'submit_yes_really' => 'Invoeren (ik weet wat ik doe)', + 'getting_started' => 'Aan de start!', + 'to_get_started' => 'Het is goed om te zien dat de installatie van Firefly III gelukt is. Voer de naam van je bank in en het saldo van je belangrijkste betaalrekening. Meerdere rekeningen kan je later toevoegen, maar we moeten ergens beginnen natuurlijk.', + 'savings_balance_text' => 'Firefly III maakt automatisch een spaarrekening voor je. Daar zit normaal geen geld in, maar je kan hier opgeven hoeveel er op staat.', + 'finish_up_new_user' => 'That\'s it! Druk op Opslaan om door te gaan. Je gaat dan naar de homepage van Firefly III.', + 'stored_new_accounts_new_user' => 'Hoera! Je nieuwe accounts zijn opgeslagen.', + 'set_preferred_language' => 'Als je Firefly III liever in een andere taal gebruikt, geef dat dan hier aan.', + 'language' => 'Taal', + 'new_savings_account' => ':bank_name spaarrekening', + 'cash_wallet' => 'Cash-rekening', + 'currency_not_present' => 'Geen zorgen als de valuta die je gewend bent er niet tussen staat. Je kan je eigen valuta maken onder Opties > Valuta.', // home page: - 'transaction_table_description' => 'Een tabel met je transacties', - 'opposing_account' => 'Tegenrekening', - 'yourAccounts' => 'Je betaalrekeningen', - 'your_accounts' => 'Je rekeningoverzicht', - 'category_overview' => 'Categorieoverzicht', - 'expense_overview' => 'Crediteurenoverzicht', - 'revenue_overview' => 'Debiteurenoverzicht', - 'budgetsAndSpending' => 'Budgetten en uitgaven', - 'budgets_and_spending' => 'Budgetten en uitgaven', - 'go_to_budget' => 'Ga naar budget "{budget}"', - 'go_to_deposits' => 'Ga naar je inkomsten', - 'go_to_expenses' => 'Ga naar je uitgaven', - 'savings' => 'Sparen', - 'newWithdrawal' => 'Nieuwe uitgave', - 'newDeposit' => 'Nieuwe inkomsten', - 'newTransfer' => 'Nieuwe overschrijving', - 'bills_to_pay' => 'Openstaande contracten', - 'per_day' => 'Per dag', - 'left_to_spend_per_day' => 'Te besteden per dag', - 'bills_paid' => 'Betaalde contracten', - 'custom_period' => 'Aangepaste periode', - 'reset_to_current' => 'Reset naar huidige periode', - 'select_period' => 'Selecteer een periode', + 'transaction_table_description' => 'Een tabel met je transacties', + 'opposing_account' => 'Tegenrekening', + 'yourAccounts' => 'Je betaalrekeningen', + 'your_accounts' => 'Je rekeningoverzicht', + 'category_overview' => 'Categorieoverzicht', + 'expense_overview' => 'Crediteurenoverzicht', + 'revenue_overview' => 'Debiteurenoverzicht', + 'budgetsAndSpending' => 'Budgetten en uitgaven', + 'budgets_and_spending' => 'Budgetten en uitgaven', + 'go_to_budget' => 'Ga naar budget "{budget}"', + 'go_to_deposits' => 'Ga naar je inkomsten', + 'go_to_expenses' => 'Ga naar je uitgaven', + 'savings' => 'Sparen', + 'newWithdrawal' => 'Nieuwe uitgave', + 'newDeposit' => 'Nieuwe inkomsten', + 'newTransfer' => 'Nieuwe overschrijving', + 'bills_to_pay' => 'Openstaande contracten', + 'per_day' => 'Per dag', + 'left_to_spend_per_day' => 'Te besteden per dag', + 'bills_paid' => 'Betaalde contracten', + 'custom_period' => 'Aangepaste periode', + 'reset_to_current' => 'Reset naar huidige periode', + 'select_period' => 'Selecteer een periode', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Voorkeuren', - 'logout' => 'Uitloggen', - 'logout_other_sessions' => 'Alle andere sessies afmelden', - 'toggleNavigation' => 'Navigatie aan of uit', - 'searchPlaceholder' => 'Zoeken...', - 'version' => 'Versie', - 'dashboard' => 'Dashboard', - 'income_and_expense' => 'Inkomsten en uitgaven', - 'all_money' => 'Al je geld', - 'unknown_source_plain' => 'Onbekend bronrekening', - 'unknown_dest_plain' => 'Onbekende doelrekening', - 'unknown_any_plain' => 'Onbekende rekening', - 'unknown_budget_plain' => 'Geen budget', - 'available_budget' => 'Beschikbaar budget ({currency})', - 'currencies' => 'Valuta', - 'activity' => 'Activiteit', - 'usage' => 'Gebruik', - 'accounts' => 'Rekeningen', - 'Asset account' => 'Betaalrekening', - 'Default account' => 'Betaalrekening', - 'Expense account' => 'Crediteur', - 'Revenue account' => 'Debiteur', - 'Initial balance account' => 'Startbalansrekening', - 'account_type_Asset account' => 'Betaalrekening', - 'account_type_Expense account' => 'Crediteur', - 'account_type_Revenue account' => 'Debiteur', - 'account_type_Debt' => 'Schuld', - 'account_type_Loan' => 'Lening', - 'account_type_Mortgage' => 'Hypotheek', - 'account_type_debt' => 'Schuld', - 'account_type_loan' => 'Lening', - 'account_type_mortgage' => 'Hypotheek', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Volledige betaling elke maand', - 'liability_direction_credit' => 'Ik krijg dit bedrag terug', - 'liability_direction_debit' => 'Ik moet dit bedrag terugbetalen', - 'liability_direction_credit_short' => 'Schuldeiser', - 'liability_direction_debit_short' => 'Schuldenaar', - 'liability_direction__short' => 'Onbekend', - 'liability_direction_null_short' => 'Onbekend', - 'Liability credit' => 'Leningkrediet', - 'budgets' => 'Budgetten', - 'tags' => 'Tags', - 'reports' => 'Overzichten', - 'transactions' => 'Transacties', - 'expenses' => 'Uitgaven', - 'income' => 'Inkomsten', - 'transfers' => 'Overschrijvingen', - 'moneyManagement' => 'Geldbeheer', - 'money_management' => 'Geldbeheer', - 'tools' => 'Extra', - 'piggyBanks' => 'Spaarpotjes', - 'piggy_banks' => 'Spaarpotjes', - 'amount_x_of_y' => '{current} van {total}', - 'bills' => 'Contracten', - 'withdrawal' => 'Uitgave', - 'opening_balance' => 'Startsaldo', - 'deposit' => 'Inkomsten', - 'account' => 'Rekening', - 'transfer' => 'Overschrijving', - 'Withdrawal' => 'Uitgave', - 'Deposit' => 'Inkomsten', - 'Transfer' => 'Overschrijving', - 'bill' => 'Contract', - 'yes' => 'Ja', - 'no' => 'Nee', - 'amount' => 'Bedrag', - 'overview' => 'Overzicht', - 'saveOnAccount' => 'Sparen op rekening', - 'unknown' => 'Onbekend', - 'monthly' => 'Maandelijks', - 'profile' => 'Profiel', - 'errors' => 'Fouten', - 'debt_start_date' => 'Begindatum van schuld', - 'debt_start_amount' => 'Beginbedrag van schuld', - 'debt_start_amount_help' => 'Het is handig om hier een negatief bedrag in te stellen. Lees de help-pagina\'s ((?)-icoontje rechtsboven) voor meer info.', - 'interest_period_help' => 'Dit veld doet verder niks. Firefly III gaat dit niet voor je uitrekenen. Banken pakken dit toch altijd net anders aan.', - 'store_new_liabilities_account' => 'Nieuwe passiva opslaan', - 'edit_liabilities_account' => 'Passiva ":name" wijzigen', - 'financial_control' => 'Financieel overzicht', - 'accounting' => 'Boekhouden', - 'automation' => 'Automatisering', - 'others' => 'Overige', - 'classification' => 'Indeling', - 'store_transaction' => 'Transactie opslaan', + 'currency' => 'Valuta', + 'preferences' => 'Voorkeuren', + 'logout' => 'Uitloggen', + 'logout_other_sessions' => 'Alle andere sessies afmelden', + 'toggleNavigation' => 'Navigatie aan of uit', + 'searchPlaceholder' => 'Zoeken...', + 'version' => 'Versie', + 'dashboard' => 'Dashboard', + 'income_and_expense' => 'Inkomsten en uitgaven', + 'all_money' => 'Al je geld', + 'unknown_source_plain' => 'Onbekend bronrekening', + 'unknown_dest_plain' => 'Onbekende doelrekening', + 'unknown_any_plain' => 'Onbekende rekening', + 'unknown_budget_plain' => 'Geen budget', + 'available_budget' => 'Beschikbaar budget ({currency})', + 'currencies' => 'Valuta', + 'activity' => 'Activiteit', + 'usage' => 'Gebruik', + 'accounts' => 'Rekeningen', + 'Asset account' => 'Betaalrekening', + 'Default account' => 'Betaalrekening', + 'Expense account' => 'Crediteur', + 'Revenue account' => 'Debiteur', + 'Initial balance account' => 'Startbalansrekening', + 'account_type_Asset account' => 'Betaalrekening', + 'account_type_Expense account' => 'Crediteur', + 'account_type_Revenue account' => 'Debiteur', + 'account_type_Debt' => 'Schuld', + 'account_type_Loan' => 'Lening', + 'account_type_Mortgage' => 'Hypotheek', + 'account_type_debt' => 'Schuld', + 'account_type_loan' => 'Lening', + 'account_type_mortgage' => 'Hypotheek', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Volledige betaling elke maand', + 'liability_direction_credit' => 'Ik krijg dit bedrag terug', + 'liability_direction_debit' => 'Ik moet dit bedrag terugbetalen', + 'liability_direction_credit_short' => 'Schuldeiser', + 'liability_direction_debit_short' => 'Schuldenaar', + 'liability_direction__short' => 'Onbekend', + 'liability_direction_null_short' => 'Onbekend', + 'Liability credit' => 'Leningkrediet', + 'budgets' => 'Budgetten', + 'tags' => 'Tags', + 'reports' => 'Overzichten', + 'transactions' => 'Transacties', + 'expenses' => 'Uitgaven', + 'income' => 'Inkomsten', + 'transfers' => 'Overschrijvingen', + 'moneyManagement' => 'Geldbeheer', + 'money_management' => 'Geldbeheer', + 'tools' => 'Extra', + 'piggyBanks' => 'Spaarpotjes', + 'piggy_banks' => 'Spaarpotjes', + 'amount_x_of_y' => '{current} van {total}', + 'bills' => 'Contracten', + 'withdrawal' => 'Uitgave', + 'opening_balance' => 'Startsaldo', + 'deposit' => 'Inkomsten', + 'account' => 'Rekening', + 'transfer' => 'Overschrijving', + 'Withdrawal' => 'Uitgave', + 'Deposit' => 'Inkomsten', + 'Transfer' => 'Overschrijving', + 'bill' => 'Contract', + 'yes' => 'Ja', + 'no' => 'Nee', + 'amount' => 'Bedrag', + 'overview' => 'Overzicht', + 'saveOnAccount' => 'Sparen op rekening', + 'unknown' => 'Onbekend', + 'monthly' => 'Maandelijks', + 'profile' => 'Profiel', + 'errors' => 'Fouten', + 'debt_start_date' => 'Begindatum van schuld', + 'debt_start_amount' => 'Beginbedrag van schuld', + 'debt_start_amount_help' => 'Het is handig om hier een negatief bedrag in te stellen. Lees de help-pagina\'s ((?)-icoontje rechtsboven) voor meer info.', + 'interest_period_help' => 'Dit veld doet verder niks. Firefly III gaat dit niet voor je uitrekenen. Banken pakken dit toch altijd net anders aan.', + 'store_new_liabilities_account' => 'Nieuwe passiva opslaan', + 'edit_liabilities_account' => 'Passiva ":name" wijzigen', + 'financial_control' => 'Financieel overzicht', + 'accounting' => 'Boekhouden', + 'automation' => 'Automatisering', + 'others' => 'Overige', + 'classification' => 'Indeling', + 'store_transaction' => 'Transactie opslaan', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Standaard financieel rapport (:start tot :end)', - 'report_audit' => 'Transactiehistorie-overzicht van :start tot :end', - 'report_category' => 'Categorierapport van :start tot :end', - 'report_double' => 'Debiteuren/crediteurenrapport tussen :start en :end', - 'report_budget' => 'Budgetrapport van :start tot :end', - 'report_tag' => 'Tagrapport van :start tot :end', - 'quick_link_reports' => 'Snelle links', - 'quick_link_examples' => 'Dit zijn wat voorbeelden om mee te beginnnen. Check de help-pagina\'s onder de (?)-knop voor meer info over de overzichten en de "magic words" die je kan gebruiken.', - 'quick_link_default_report' => 'Standaard financieel rapport', - 'quick_link_audit_report' => 'Transactiehistorie-overzicht', - 'report_this_month_quick' => 'Deze maand, alle rekeningen', - 'report_last_month_quick' => 'Afgelopen maand, alle rekeningen', - 'report_this_year_quick' => 'Dit jaar, alle rekeningen', - 'report_this_fiscal_year_quick' => 'Huidig boekjaar, alle rekeningen', - 'report_all_time_quick' => 'Gehele periode, alle rekeningen', - 'reports_can_bookmark' => 'Je kan rapporten aan je favorieten toevoegen.', - 'incomeVsExpenses' => 'Inkomsten tegenover uitgaven', - 'accountBalances' => 'Rekeningsaldi', - 'balanceStart' => 'Saldo aan het begin van de periode', - 'balanceEnd' => 'Saldo aan het einde van de periode', - 'splitByAccount' => 'Per betaalrekening', - 'coveredWithTags' => 'Gecorrigeerd met tags', - 'leftInBudget' => 'Over van budget', - 'left_in_debt' => 'Verschuldigd bedrag', - 'sumOfSums' => 'Alles bij elkaar', - 'noCategory' => '(zonder categorie)', - 'notCharged' => '(Nog) niet betaald', - 'inactive' => 'Niet actief', - 'active' => 'Actief', - 'difference' => 'Verschil', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Uit', - 'topX' => 'top :number', - 'show_full_list' => 'Laat hele lijst zien', - 'show_only_top' => 'Alleen top :number', - 'report_type' => 'Rapporttype', - 'report_type_default' => 'Standard financieel rapport', - 'report_type_audit' => 'Transactiehistorie-overzicht (audit)', - 'report_type_category' => 'Categorierapport', - 'report_type_budget' => 'Budgetrapport', - 'report_type_tag' => 'Tagrapport', - 'report_type_double' => 'Debiteuren/crediteurenrapport', - 'more_info_help' => 'Meer informatie over deze rapporten vind je in de hulppagina\'s. Klik daarvoor op het (?) icoontje rechtsboven.', - 'report_included_accounts' => 'Accounts in rapport', - 'report_date_range' => 'Datumbereik', - 'report_preset_ranges' => 'Standaardbereik', - 'shared' => 'Gedeeld', - 'fiscal_year' => 'Boekjaar', - 'income_entry' => 'Inkomsten naar rekening ":name" tussen :start en :end', - 'expense_entry' => 'Uitgaven naar rekening ":name" tussen :start en :end', - 'category_entry' => 'Inkomen en uitgaven in categorie ":name" tussen :start en :end', - 'budget_spent_amount' => 'Uitgaven in budget ":budget" tussen :start en :end', - 'balance_amount' => 'Uitgaven in :budget betaald van rekening ":account" tussen :start en :end', - 'no_audit_activity' => 'Geen activiteit op betaalrekening :account_name tussen :start en :end.', - 'audit_end_balance' => 'Aan het einde van de dag, :end, was het saldo van betaalrekening :account_name :balance', - 'reports_extra_options' => 'Extra opties', - 'report_has_no_extra_options' => 'Er zijn geen extra opties voor dit overzicht', - 'reports_submit' => 'Bekijk overzicht', - 'end_after_start_date' => 'Einddatum moet na begindatum liggen.', - 'select_category' => 'Selecteer categorie(ën)', - 'select_budget' => 'Selecteer budget(ten).', - 'select_tag' => 'Selecteer tag(s).', - 'income_per_category' => 'Inkomen per categorie', - 'expense_per_category' => 'Uitgaven per categorie', - 'expense_per_budget' => 'Uitgaven per budget', - 'income_per_account' => 'Inkomen per rekening', - 'expense_per_account' => 'Uitgaven per rekening', - 'expense_per_tag' => 'Uitgaven per tag', - 'income_per_tag' => 'Inkomsten per tag', - 'include_expense_not_in_budget' => 'Inclusief uitgaven niet in deze budget(ten)', - 'include_expense_not_in_account' => 'Inclusief uitgaven niet vanaf deze rekening(en)', - 'include_expense_not_in_category' => 'Inclusief uitgaven niet in deze categorie(ën)', - 'include_income_not_in_category' => 'Inclusief inkomsten niet in deze categorie(ën)', - 'include_income_not_in_account' => 'Inclusief inkomsten niet op deze rekening(en)', - 'include_income_not_in_tags' => 'Inclusief inkomsten niet getagged met deze tag(s)', - 'include_expense_not_in_tags' => 'Inclusief uitgaven niet getagged met deze tag(s)', - 'everything_else' => 'De rest', - 'income_and_expenses' => 'Inkomsten en uitgaven', - 'spent_average' => 'Uitgegeven (gemiddeld)', - 'income_average' => 'Inkomsten (gemiddeld)', - 'transaction_count' => 'Transacties', - 'average_spending_per_account' => 'Gemiddeld uitgegeven per rekening', - 'average_income_per_account' => 'Gemiddeld verdiend per rekening', - 'total' => 'Totaal', - 'description' => 'Omschrijving', - 'sum_of_period' => 'Som van periode', - 'average_in_period' => 'Gemiddelde in periode', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Standaard betaalrekening', - 'account_role_sharedAsset' => 'Gedeelde betaalrekening', - 'account_role_savingAsset' => 'Spaarrekening', - 'account_role_ccAsset' => 'Credit card', - 'account_role_cashWalletAsset' => 'Cash', - 'budget_chart_click' => "Klik op een budgetnaam in de tabel hierboven om een \u{200b}\u{200b}grafiek te zien.", - 'category_chart_click' => "Klik op een categorienaam in de tabel hierboven om een \u{200b}\u{200b}grafiek te zien.", - 'in_out_accounts' => 'Inkomsten en uitgaven per combinatie', - 'in_out_accounts_per_asset' => 'Inkomsten en uitgaven (per betaalrekening)', - 'in_out_per_category' => 'Verdiend en uitgegeven per categorie', - 'out_per_budget' => 'Uitgaven per budget', - 'select_expense_revenue' => 'Selecteer debiteur+crediteur', - 'multi_currency_report_sum' => 'Omdat deze tabel rekeningen met diverse valuta bevat, kan het zijn dat de optelsommen nergens op slaan. De pagina valt altijd terug op je standaardvaluta.', - 'sum_in_default_currency' => 'Deze lijst is altijd in je standaardvaluta.', - 'net_filtered_prefs' => 'Deze grafiek bevat nooit betaalrekeningen die je niet het vinkje "meetellen in kapitaal" hebt gegeven.', + 'report_default' => 'Standaard financieel rapport (:start tot :end)', + 'report_audit' => 'Transactiehistorie-overzicht van :start tot :end', + 'report_category' => 'Categorierapport van :start tot :end', + 'report_double' => 'Debiteuren/crediteurenrapport tussen :start en :end', + 'report_budget' => 'Budgetrapport van :start tot :end', + 'report_tag' => 'Tagrapport van :start tot :end', + 'quick_link_reports' => 'Snelle links', + 'quick_link_examples' => 'Dit zijn wat voorbeelden om mee te beginnnen. Check de help-pagina\'s onder de (?)-knop voor meer info over de overzichten en de "magic words" die je kan gebruiken.', + 'quick_link_default_report' => 'Standaard financieel rapport', + 'quick_link_audit_report' => 'Transactiehistorie-overzicht', + 'report_this_month_quick' => 'Deze maand, alle rekeningen', + 'report_last_month_quick' => 'Afgelopen maand, alle rekeningen', + 'report_this_year_quick' => 'Dit jaar, alle rekeningen', + 'report_this_fiscal_year_quick' => 'Huidig boekjaar, alle rekeningen', + 'report_all_time_quick' => 'Gehele periode, alle rekeningen', + 'reports_can_bookmark' => 'Je kan rapporten aan je favorieten toevoegen.', + 'incomeVsExpenses' => 'Inkomsten tegenover uitgaven', + 'accountBalances' => 'Rekeningsaldi', + 'balanceStart' => 'Saldo aan het begin van de periode', + 'balanceEnd' => 'Saldo aan het einde van de periode', + 'splitByAccount' => 'Per betaalrekening', + 'coveredWithTags' => 'Gecorrigeerd met tags', + 'leftInBudget' => 'Over van budget', + 'left_in_debt' => 'Verschuldigd bedrag', + 'sumOfSums' => 'Alles bij elkaar', + 'noCategory' => '(zonder categorie)', + 'notCharged' => '(Nog) niet betaald', + 'inactive' => 'Niet actief', + 'active' => 'Actief', + 'difference' => 'Verschil', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Uit', + 'topX' => 'top :number', + 'show_full_list' => 'Laat hele lijst zien', + 'show_only_top' => 'Alleen top :number', + 'report_type' => 'Rapporttype', + 'report_type_default' => 'Standard financieel rapport', + 'report_type_audit' => 'Transactiehistorie-overzicht (audit)', + 'report_type_category' => 'Categorierapport', + 'report_type_budget' => 'Budgetrapport', + 'report_type_tag' => 'Tagrapport', + 'report_type_double' => 'Debiteuren/crediteurenrapport', + 'more_info_help' => 'Meer informatie over deze rapporten vind je in de hulppagina\'s. Klik daarvoor op het (?) icoontje rechtsboven.', + 'report_included_accounts' => 'Accounts in rapport', + 'report_date_range' => 'Datumbereik', + 'report_preset_ranges' => 'Standaardbereik', + 'shared' => 'Gedeeld', + 'fiscal_year' => 'Boekjaar', + 'income_entry' => 'Inkomsten naar rekening ":name" tussen :start en :end', + 'expense_entry' => 'Uitgaven naar rekening ":name" tussen :start en :end', + 'category_entry' => 'Inkomen en uitgaven in categorie ":name" tussen :start en :end', + 'budget_spent_amount' => 'Uitgaven in budget ":budget" tussen :start en :end', + 'balance_amount' => 'Uitgaven in :budget betaald van rekening ":account" tussen :start en :end', + 'no_audit_activity' => 'Geen activiteit op betaalrekening :account_name tussen :start en :end.', + 'audit_end_balance' => 'Aan het einde van de dag, :end, was het saldo van betaalrekening :account_name :balance', + 'reports_extra_options' => 'Extra opties', + 'report_has_no_extra_options' => 'Er zijn geen extra opties voor dit overzicht', + 'reports_submit' => 'Bekijk overzicht', + 'end_after_start_date' => 'Einddatum moet na begindatum liggen.', + 'select_category' => 'Selecteer categorie(ën)', + 'select_budget' => 'Selecteer budget(ten).', + 'select_tag' => 'Selecteer tag(s).', + 'income_per_category' => 'Inkomen per categorie', + 'expense_per_category' => 'Uitgaven per categorie', + 'expense_per_budget' => 'Uitgaven per budget', + 'income_per_account' => 'Inkomen per rekening', + 'expense_per_account' => 'Uitgaven per rekening', + 'expense_per_tag' => 'Uitgaven per tag', + 'income_per_tag' => 'Inkomsten per tag', + 'include_expense_not_in_budget' => 'Inclusief uitgaven niet in deze budget(ten)', + 'include_expense_not_in_account' => 'Inclusief uitgaven niet vanaf deze rekening(en)', + 'include_expense_not_in_category' => 'Inclusief uitgaven niet in deze categorie(ën)', + 'include_income_not_in_category' => 'Inclusief inkomsten niet in deze categorie(ën)', + 'include_income_not_in_account' => 'Inclusief inkomsten niet op deze rekening(en)', + 'include_income_not_in_tags' => 'Inclusief inkomsten niet getagged met deze tag(s)', + 'include_expense_not_in_tags' => 'Inclusief uitgaven niet getagged met deze tag(s)', + 'everything_else' => 'De rest', + 'income_and_expenses' => 'Inkomsten en uitgaven', + 'spent_average' => 'Uitgegeven (gemiddeld)', + 'income_average' => 'Inkomsten (gemiddeld)', + 'transaction_count' => 'Transacties', + 'average_spending_per_account' => 'Gemiddeld uitgegeven per rekening', + 'average_income_per_account' => 'Gemiddeld verdiend per rekening', + 'total' => 'Totaal', + 'description' => 'Omschrijving', + 'sum_of_period' => 'Som van periode', + 'average_in_period' => 'Gemiddelde in periode', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Standaard betaalrekening', + 'account_role_sharedAsset' => 'Gedeelde betaalrekening', + 'account_role_savingAsset' => 'Spaarrekening', + 'account_role_ccAsset' => 'Credit card', + 'account_role_cashWalletAsset' => 'Cash', + 'budget_chart_click' => "Klik op een budgetnaam in de tabel hierboven om een \u{200b}\u{200b}grafiek te zien.", + 'category_chart_click' => "Klik op een categorienaam in de tabel hierboven om een \u{200b}\u{200b}grafiek te zien.", + 'in_out_accounts' => 'Inkomsten en uitgaven per combinatie', + 'in_out_accounts_per_asset' => 'Inkomsten en uitgaven (per betaalrekening)', + 'in_out_per_category' => 'Verdiend en uitgegeven per categorie', + 'out_per_budget' => 'Uitgaven per budget', + 'select_expense_revenue' => 'Selecteer debiteur+crediteur', + 'multi_currency_report_sum' => 'Omdat deze tabel rekeningen met diverse valuta bevat, kan het zijn dat de optelsommen nergens op slaan. De pagina valt altijd terug op je standaardvaluta.', + 'sum_in_default_currency' => 'Deze lijst is altijd in je standaardvaluta.', + 'net_filtered_prefs' => 'Deze grafiek bevat nooit betaalrekeningen die je niet het vinkje "meetellen in kapitaal" hebt gegeven.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Diagram', - 'month' => 'Maand', - 'budget' => 'Budget', - 'spent' => 'Uitgegeven', - 'spent_capped' => 'Uitgegeven (beperkt)', - 'spent_in_budget' => 'Uitgegeven in budget', - 'left_to_spend' => 'Over om uit te geven', - 'earned' => 'Verdiend', - 'overspent' => 'Teveel uitgegeven', - 'left' => 'Over', - 'max-amount' => 'Maximumbedrag', - 'min-amount' => 'Minimumbedrag', - 'journal-amount' => 'Bedrag voor dit contract', - 'name' => 'Naam', - 'date' => 'Datum', - 'date_and_time' => 'Datum en tijd', - 'time' => 'Tijd', - 'paid' => 'Betaald', - 'unpaid' => 'Niet betaald', - 'day' => 'Dag', - 'budgeted' => 'Gebudgetteerd', - 'period' => 'Periode', - 'balance' => 'Saldo', - 'in_out_period' => 'In + uit deze periode', - 'sum' => 'Som', - 'summary' => 'Samenvatting', - 'average' => 'Gemiddeld', - 'balanceFor' => 'Saldo op :name', - 'no_tags' => '(geen tags)', - 'nothing_found' => '(niets gevonden)', + 'chart' => 'Diagram', + 'month' => 'Maand', + 'budget' => 'Budget', + 'spent' => 'Uitgegeven', + 'spent_capped' => 'Uitgegeven (beperkt)', + 'spent_in_budget' => 'Uitgegeven in budget', + 'left_to_spend' => 'Over om uit te geven', + 'earned' => 'Verdiend', + 'overspent' => 'Teveel uitgegeven', + 'left' => 'Over', + 'max-amount' => 'Maximumbedrag', + 'min-amount' => 'Minimumbedrag', + 'journal-amount' => 'Bedrag voor dit contract', + 'name' => 'Naam', + 'date' => 'Datum', + 'date_and_time' => 'Datum en tijd', + 'time' => 'Tijd', + 'paid' => 'Betaald', + 'unpaid' => 'Niet betaald', + 'day' => 'Dag', + 'budgeted' => 'Gebudgetteerd', + 'period' => 'Periode', + 'balance' => 'Saldo', + 'in_out_period' => 'In + uit deze periode', + 'sum' => 'Som', + 'summary' => 'Samenvatting', + 'average' => 'Gemiddeld', + 'balanceFor' => 'Saldo op :name', + 'no_tags' => '(geen tags)', + 'nothing_found' => '(niets gevonden)', // piggy banks: - 'event_history' => 'Gebeurtenisgeschiedenis', - 'add_money_to_piggy' => 'Stop geld in spaarpotje ":name"', - 'piggy_bank' => 'Spaarpotje', - 'new_piggy_bank' => 'Nieuw spaarpotje', - 'store_piggy_bank' => 'Sla spaarpotje op', - 'stored_piggy_bank' => 'Nieuw spaarpotje ":name" opgeslagen', - 'account_status' => 'Rekeningoverzicht', - 'left_for_piggy_banks' => 'Over voor spaarpotjes', - 'sum_of_piggy_banks' => 'Som van spaarpotjes', - 'saved_so_far' => 'Gespaard', - 'left_to_save' => 'Te sparen', - 'suggested_amount' => 'Voorgesteld spaarbedrag per maand', - 'add_money_to_piggy_title' => 'Stop geld in spaarpotje ":name"', - 'remove_money_from_piggy_title' => 'Haal geld uit spaarpotje ":name"', - 'add' => 'Toevoegen', - 'no_money_for_piggy' => 'Er is geen geld voor dit spaarpotje.', - 'suggested_savings_per_month' => 'Voorgesteld per maand', + 'event_history' => 'Gebeurtenisgeschiedenis', + 'add_money_to_piggy' => 'Stop geld in spaarpotje ":name"', + 'piggy_bank' => 'Spaarpotje', + 'new_piggy_bank' => 'Nieuw spaarpotje', + 'store_piggy_bank' => 'Sla spaarpotje op', + 'stored_piggy_bank' => 'Nieuw spaarpotje ":name" opgeslagen', + 'account_status' => 'Rekeningoverzicht', + 'left_for_piggy_banks' => 'Over voor spaarpotjes', + 'sum_of_piggy_banks' => 'Som van spaarpotjes', + 'saved_so_far' => 'Gespaard', + 'left_to_save' => 'Te sparen', + 'suggested_amount' => 'Voorgesteld spaarbedrag per maand', + 'add_money_to_piggy_title' => 'Stop geld in spaarpotje ":name"', + 'remove_money_from_piggy_title' => 'Haal geld uit spaarpotje ":name"', + 'add' => 'Toevoegen', + 'no_money_for_piggy' => 'Er is geen geld voor dit spaarpotje.', + 'suggested_savings_per_month' => 'Voorgesteld per maand', - 'remove' => 'Verwijderen', - 'max_amount_add' => 'Hooguit toe te voegen', - 'max_amount_remove' => 'Hooguit te verwijderen', - 'update_piggy_button' => 'Wijzig spaarpotje', - 'update_piggy_title' => 'Wijzig spaarpotje ":name"', - 'updated_piggy_bank' => 'Spaarpotje ":name" geüpdatet', - 'details' => 'Details', - 'events' => 'Gebeurtenissen', - 'target_amount' => 'Doelbedrag', - 'start_date' => 'Startdatum', - 'no_start_date' => 'Geen startdatum', - 'target_date' => 'Doeldatum', - 'no_target_date' => 'Geen doeldatum', - 'table' => 'Tabel', - 'delete_piggy_bank' => 'Verwijder spaarpotje ":name"', - 'cannot_add_amount_piggy' => 'Kon bedrag :amount niet aan ":name" toevoegen.', - 'cannot_remove_from_piggy' => 'Kon bedrag :amount niet weghalen uit ":name".', - 'deleted_piggy_bank' => 'Spaarpotje ":name" verwijderd', - 'added_amount_to_piggy' => ':amount aan ":name" toegevoegd', - 'removed_amount_from_piggy' => ':amount uit ":name" gehaald', - 'piggy_events' => 'Gerelateerde spaarpotjes', + 'remove' => 'Verwijderen', + 'max_amount_add' => 'Hooguit toe te voegen', + 'max_amount_remove' => 'Hooguit te verwijderen', + 'update_piggy_button' => 'Wijzig spaarpotje', + 'update_piggy_title' => 'Wijzig spaarpotje ":name"', + 'updated_piggy_bank' => 'Spaarpotje ":name" geüpdatet', + 'details' => 'Details', + 'events' => 'Gebeurtenissen', + 'target_amount' => 'Doelbedrag', + 'start_date' => 'Startdatum', + 'no_start_date' => 'Geen startdatum', + 'target_date' => 'Doeldatum', + 'no_target_date' => 'Geen doeldatum', + 'table' => 'Tabel', + 'delete_piggy_bank' => 'Verwijder spaarpotje ":name"', + 'cannot_add_amount_piggy' => 'Kon bedrag :amount niet aan ":name" toevoegen.', + 'cannot_remove_from_piggy' => 'Kon bedrag :amount niet weghalen uit ":name".', + 'deleted_piggy_bank' => 'Spaarpotje ":name" verwijderd', + 'added_amount_to_piggy' => ':amount aan ":name" toegevoegd', + 'removed_amount_from_piggy' => ':amount uit ":name" gehaald', + 'piggy_events' => 'Gerelateerde spaarpotjes', // tags - 'delete_tag' => 'Verwijder tag ":tag"', - 'deleted_tag' => 'Tag ":tag" verwijderd', - 'new_tag' => 'Maak nieuwe tag', - 'edit_tag' => 'Wijzig tag ":tag"', - 'updated_tag' => 'Tag ":tag" geüpdatet', - 'created_tag' => 'Tag ":tag" opgeslagen!', + 'delete_tag' => 'Verwijder tag ":tag"', + 'deleted_tag' => 'Tag ":tag" verwijderd', + 'new_tag' => 'Maak nieuwe tag', + 'edit_tag' => 'Wijzig tag ":tag"', + 'updated_tag' => 'Tag ":tag" geüpdatet', + 'created_tag' => 'Tag ":tag" opgeslagen!', - 'transaction_journal_information' => 'Transactieinformatie', - 'transaction_journal_amount' => 'Bedraginformatie', - 'transaction_journal_meta' => 'Metainformatie', - 'transaction_journal_more' => 'Meer informatie', - 'basic_journal_information' => 'Standaard transactieinformatie', - 'transaction_journal_extra' => 'Extra informatie', - 'att_part_of_journal' => 'Opgeslagen onder ":journal"', - 'total_amount' => 'Totaalbedrag', - 'number_of_decimals' => 'Aantal decimalen', + 'transaction_journal_information' => 'Transactieinformatie', + 'transaction_journal_amount' => 'Bedraginformatie', + 'transaction_journal_meta' => 'Metainformatie', + 'transaction_journal_more' => 'Meer informatie', + 'basic_journal_information' => 'Standaard transactieinformatie', + 'transaction_journal_extra' => 'Extra informatie', + 'att_part_of_journal' => 'Opgeslagen onder ":journal"', + 'total_amount' => 'Totaalbedrag', + 'number_of_decimals' => 'Aantal decimalen', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'De uitnodiging aan ":address" is al gebruikt.', - 'invite_is_deleted' => 'De uitnodiging aan ":address" is verwijderd.', - 'invite_new_user_title' => 'Nieuwe gebruiker uitnodigen', - 'invite_new_user_text' => 'Als beheerder kun je gebruikers uitnodigen om zich te registreren bij jouw Firefly III-installatie. Je kan een directe link maken en deze vervolgens delen met gebruiker. Hiermee kunnen ze een account maken. De uitgenodigde gebruiker en hun uitnodigingslink verschijnen in de onderstaande tabel. Je kan die link met ze delen.', - 'invited_user_mail' => 'E-mailadres', - 'invite_user' => 'Gebruiker uitnodigen', - 'user_is_invited' => 'E-mailadres ":address" is uitgenodigd voor Firefly III', - 'administration' => 'Administratie', - 'system_settings' => 'Systeeminstellingen', - 'code_already_used' => 'Uitnodigingscode is al gebruikt', - 'user_administration' => 'Gebruikersadministratie', - 'list_all_users' => 'Alle gebruikers', - 'all_users' => 'Alle gebruikers', - 'instance_configuration' => 'Instellingen', - 'firefly_instance_configuration' => 'Instellingen voor Firefly III', - 'setting_single_user_mode' => 'Enkele gebruiker-modus', - 'setting_single_user_mode_explain' => 'Standaard accepteert Firefly III maar één (1) gebruiker: jijzelf. Dit is een veiligheidsmaatregel, zodat anderen niet zomaar jouw installatie kunnen gebruiken, tenzij je dit aanzet. Toekomstige registraties zijn nu geblokkeerd. Als je dit vinkje uitzet kunnen anderen jouw installatie ook gebruiken, gegeven dat ze er bij kunnen (je installatie hangt aan het internet).', - 'store_configuration' => 'Configuratie opslaan', - 'single_user_administration' => 'Gebruikersadministratie voor :email', - 'edit_user' => 'Wijzig gebruiker :email', - 'hidden_fields_preferences' => 'Je kan meer transactieopties inschakelen in je instellingen.', - 'user_data_information' => 'Gebruikersgegevens', - 'user_information' => 'Gebruikersinformatie', - 'total_size' => 'totale grootte', - 'budget_or_budgets' => ':count budget|:count budgetten', - 'budgets_with_limits' => ':count budget met een ingesteld bedrag|:count budgetten met een ingesteld bedrag', - 'nr_of_rules_in_total_groups' => ':count_rules regel(s) in :count_groups regelgroep(en)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'De configuratie is bijgewerkt', - 'setting_is_demo_site' => 'Demo website', - 'setting_is_demo_site_explain' => 'Als je dit aanzet doet jouw installatie alsof het een demo-site is, en dat kan problemen opleveren.', - 'block_code_bounced' => 'Email kwam niet aan', - 'block_code_expired' => 'Demo-account verlopen', - 'no_block_code' => 'Geen reden of gebruiker niet geblokkeerd', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'De gebruiker heeft zijn nieuwe emailadres nog niet bevestigd', - 'admin_update_email' => 'Integendeel tot de profielpagina krijgt de gebruiker hier geen notificatie van!', - 'update_user' => 'Gebruiker bijwerken', - 'updated_user' => 'Gebruikersgegevens zijn gewijzigd.', - 'delete_user' => 'Verwijder gebruiker :email', - 'user_deleted' => 'De gebruiker is verwijderd', - 'send_test_email' => 'Stuur testmail', - 'send_test_email_text' => 'Druk op deze knop om te zien of je installatie mail of een Slack-bericht kan versturen. Je ziet hier geen foutmeldingen (als ze er zijn), deze vind je in de logboeken. Je kan deze knop zo vaak indrukken als je wilt. Er is geen optie die spam voorkomt. Het testbericht wordt verstuurd naar :email en zou vrij vlot aan moeten komen.', - 'send_message' => 'Verstuur bericht', - 'send_test_triggered' => 'Testmail verstuurd. Check je inbox en de logboeken.', - 'give_admin_careful' => 'Gebruikers die je beheerdersrechten geeft kunnen die van jou afpakken. Wees voorzichtig.', - 'admin_maintanance_title' => 'Onderhoud', - 'admin_maintanance_expl' => 'Handige knopjes voor Firefly III onderhoud', - 'admin_maintenance_clear_cache' => 'Cache leegmaken', - 'admin_notifications' => 'Admin notificaties', - 'admin_notifications_expl' => 'De volgende meldingen kunnen door de beheerder in- of uitgeschakeld worden. Als je deze berichten ook via Slack wilt ontvangen, stel dan de "binnenkomende webhook" URL in.', - 'admin_notification_check_user_new_reg' => 'Gebruiker krijgt na registratie een welkomstbericht', - 'admin_notification_check_admin_new_reg' => 'Beheerder(s) krijgen een melding voor nieuwe gebruikers', - 'admin_notification_check_new_version' => 'Een nieuwe versie is beschikbaar', - 'admin_notification_check_invite_created' => 'Een gebruiker is uitgenodigd voor Firefly III', - 'admin_notification_check_invite_redeemed' => 'Een gebruikersuitnodiging is gebruikt', - 'all_invited_users' => 'Alle uitgenodigde gebruikers', - 'save_notification_settings' => 'Instellingen opslaan', - 'notification_settings_saved' => 'De instellingen voor meldingen zijn opgeslagen', + 'invite_is_already_redeemed' => 'De uitnodiging aan ":address" is al gebruikt.', + 'invite_is_deleted' => 'De uitnodiging aan ":address" is verwijderd.', + 'invite_new_user_title' => 'Nieuwe gebruiker uitnodigen', + 'invite_new_user_text' => 'Als beheerder kun je gebruikers uitnodigen om zich te registreren bij jouw Firefly III-installatie. Je kan een directe link maken en deze vervolgens delen met gebruiker. Hiermee kunnen ze een account maken. De uitgenodigde gebruiker en hun uitnodigingslink verschijnen in de onderstaande tabel. Je kan die link met ze delen.', + 'invited_user_mail' => 'E-mailadres', + 'invite_user' => 'Gebruiker uitnodigen', + 'user_is_invited' => 'E-mailadres ":address" is uitgenodigd voor Firefly III', + 'administration' => 'Administratie', + 'system_settings' => 'Systeeminstellingen', + 'code_already_used' => 'Uitnodigingscode is al gebruikt', + 'user_administration' => 'Gebruikersadministratie', + 'list_all_users' => 'Alle gebruikers', + 'all_users' => 'Alle gebruikers', + 'instance_configuration' => 'Instellingen', + 'firefly_instance_configuration' => 'Instellingen voor Firefly III', + 'setting_single_user_mode' => 'Enkele gebruiker-modus', + 'setting_single_user_mode_explain' => 'Standaard accepteert Firefly III maar één (1) gebruiker: jijzelf. Dit is een veiligheidsmaatregel, zodat anderen niet zomaar jouw installatie kunnen gebruiken, tenzij je dit aanzet. Toekomstige registraties zijn nu geblokkeerd. Als je dit vinkje uitzet kunnen anderen jouw installatie ook gebruiken, gegeven dat ze er bij kunnen (je installatie hangt aan het internet).', + 'store_configuration' => 'Configuratie opslaan', + 'single_user_administration' => 'Gebruikersadministratie voor :email', + 'edit_user' => 'Wijzig gebruiker :email', + 'hidden_fields_preferences' => 'Je kan meer transactieopties inschakelen in je instellingen.', + 'user_data_information' => 'Gebruikersgegevens', + 'user_information' => 'Gebruikersinformatie', + 'total_size' => 'totale grootte', + 'budget_or_budgets' => ':count budget|:count budgetten', + 'budgets_with_limits' => ':count budget met een ingesteld bedrag|:count budgetten met een ingesteld bedrag', + 'nr_of_rules_in_total_groups' => ':count_rules regel(s) in :count_groups regelgroep(en)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'De configuratie is bijgewerkt', + 'setting_is_demo_site' => 'Demo website', + 'setting_is_demo_site_explain' => 'Als je dit aanzet doet jouw installatie alsof het een demo-site is, en dat kan problemen opleveren.', + 'block_code_bounced' => 'Email kwam niet aan', + 'block_code_expired' => 'Demo-account verlopen', + 'no_block_code' => 'Geen reden of gebruiker niet geblokkeerd', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'De gebruiker heeft zijn nieuwe emailadres nog niet bevestigd', + 'admin_update_email' => 'Integendeel tot de profielpagina krijgt de gebruiker hier geen notificatie van!', + 'update_user' => 'Gebruiker bijwerken', + 'updated_user' => 'Gebruikersgegevens zijn gewijzigd.', + 'delete_user' => 'Verwijder gebruiker :email', + 'user_deleted' => 'De gebruiker is verwijderd', + 'send_test_email' => 'Stuur testmail', + 'send_test_email_text' => 'Druk op deze knop om te zien of je installatie mail of een Slack-bericht kan versturen. Je ziet hier geen foutmeldingen (als ze er zijn), deze vind je in de logboeken. Je kan deze knop zo vaak indrukken als je wilt. Er is geen optie die spam voorkomt. Het testbericht wordt verstuurd naar :email en zou vrij vlot aan moeten komen.', + 'send_message' => 'Verstuur bericht', + 'send_test_triggered' => 'Testmail verstuurd. Check je inbox en de logboeken.', + 'give_admin_careful' => 'Gebruikers die je beheerdersrechten geeft kunnen die van jou afpakken. Wees voorzichtig.', + 'admin_maintanance_title' => 'Onderhoud', + 'admin_maintanance_expl' => 'Handige knopjes voor Firefly III onderhoud', + 'admin_maintenance_clear_cache' => 'Cache leegmaken', + 'admin_notifications' => 'Admin notificaties', + 'admin_notifications_expl' => 'De volgende meldingen kunnen door de beheerder in- of uitgeschakeld worden. Als je deze berichten ook via Slack wilt ontvangen, stel dan de "binnenkomende webhook" URL in.', + 'admin_notification_check_user_new_reg' => 'Gebruiker krijgt na registratie een welkomstbericht', + 'admin_notification_check_admin_new_reg' => 'Beheerder(s) krijgen een melding voor nieuwe gebruikers', + 'admin_notification_check_new_version' => 'Een nieuwe versie is beschikbaar', + 'admin_notification_check_invite_created' => 'Een gebruiker is uitgenodigd voor Firefly III', + 'admin_notification_check_invite_redeemed' => 'Een gebruikersuitnodiging is gebruikt', + 'all_invited_users' => 'Alle uitgenodigde gebruikers', + 'save_notification_settings' => 'Instellingen opslaan', + 'notification_settings_saved' => 'De instellingen voor meldingen zijn opgeslagen', - 'split_transaction_title' => 'Beschrijving van de gesplitste transactie', - 'split_transaction_title_help' => 'Als je een gesplitste transactie maakt, moet er een algemene beschrijving zijn voor alle splitsingen van de transactie.', - 'split_title_help' => 'Als je een gesplitste transactie maakt, moet er een algemene beschrijving zijn voor alle splitsingen van de transactie.', - 'you_create_transfer' => 'Je maakt een overschrijving.', - 'you_create_withdrawal' => 'Je maakt een uitgave.', - 'you_create_deposit' => 'Je maakt inkomsten.', + 'split_transaction_title' => 'Beschrijving van de gesplitste transactie', + 'split_transaction_title_help' => 'Als je een gesplitste transactie maakt, moet er een algemene beschrijving zijn voor alle splitsingen van de transactie.', + 'split_title_help' => 'Als je een gesplitste transactie maakt, moet er een algemene beschrijving zijn voor alle splitsingen van de transactie.', + 'you_create_transfer' => 'Je maakt een overschrijving.', + 'you_create_withdrawal' => 'Je maakt een uitgave.', + 'you_create_deposit' => 'Je maakt inkomsten.', // links - 'journal_link_configuration' => 'Instellingen voor transactiekoppelingen', - 'create_new_link_type' => 'Maak nieuw koppeltype', - 'store_new_link_type' => 'Sla nieuw koppeltype op', - 'update_link_type' => 'Update koppeltype', - 'edit_link_type' => 'Wijzig linktype ":name"', - 'updated_link_type' => 'Koppeltype ":name" gewijzigd', - 'delete_link_type' => 'Koppeltype ":name" verwijderen', - 'deleted_link_type' => 'Koppeltype ":name" verwijderd', - 'stored_new_link_type' => 'Koppeltype ":name" opgeslagen', - 'cannot_edit_link_type' => 'Kan koppeltype ":name" niet wijzigen', - 'link_type_help_name' => 'Bijv. "Dupliceert"', - 'link_type_help_inward' => 'Bijv. "dupliceert"', - 'link_type_help_outward' => 'Bijv. "is duplicaat van"', - 'save_connections_by_moving' => 'Sla de link tussen deze transacties op door ze te op te slaan onder een ander linktype:', - 'do_not_save_connection' => '(gooi ook koppelingen weg)', - 'link_transaction' => 'Koppel transactie', - 'link_to_other_transaction' => 'Koppel deze transactie aan een andere transactie', - 'select_transaction_to_link' => 'Selecteer een transactie om te koppelen. De links worden door Firefly III verder niet gebruikt (behalve voor de show), maar dit gaat nog veranderen. Gebruik de box om een transactie te selecteren op ID of beschrijving. Als je je eigen linktypes wilt toevoegen moet je even in de administratie kijken.', - 'this_transaction' => 'Deze transactie', - 'transaction' => 'Transactie', - 'comments' => 'Opmerkingen', - 'link_notes' => 'Notities voor bij de link.', - 'invalid_link_selection' => 'Deze transacties kunnen niet worden gekoppeld', - 'selected_transaction' => 'Geselecteerde transactie', - 'journals_linked' => 'De transacties zijn gekoppeld.', - 'journals_error_linked' => 'Deze transacties zijn al gekoppeld.', - 'journals_link_to_self' => 'Je kan een transactie niet aan zichzelf koppelen', - 'journal_links' => 'Transactiekoppelingen', - 'this_withdrawal' => 'Deze uitgave', - 'this_deposit' => 'Deze inkomsten', - 'this_transfer' => 'Deze overschrijving', - 'overview_for_link' => 'Overzicht voor koppeltype ":name"', - 'source_transaction' => 'Brontransactie', - 'link_description' => 'Beschrijving van koppeling', - 'destination_transaction' => 'Doeltransactie', - 'delete_journal_link' => 'Verwijder de koppeling tussen :source en :destination', - 'deleted_link' => 'Koppeling verwijderd', + 'journal_link_configuration' => 'Instellingen voor transactiekoppelingen', + 'create_new_link_type' => 'Maak nieuw koppeltype', + 'store_new_link_type' => 'Sla nieuw koppeltype op', + 'update_link_type' => 'Update koppeltype', + 'edit_link_type' => 'Wijzig linktype ":name"', + 'updated_link_type' => 'Koppeltype ":name" gewijzigd', + 'delete_link_type' => 'Koppeltype ":name" verwijderen', + 'deleted_link_type' => 'Koppeltype ":name" verwijderd', + 'stored_new_link_type' => 'Koppeltype ":name" opgeslagen', + 'cannot_edit_link_type' => 'Kan koppeltype ":name" niet wijzigen', + 'link_type_help_name' => 'Bijv. "Dupliceert"', + 'link_type_help_inward' => 'Bijv. "dupliceert"', + 'link_type_help_outward' => 'Bijv. "is duplicaat van"', + 'save_connections_by_moving' => 'Sla de link tussen deze transacties op door ze te op te slaan onder een ander linktype:', + 'do_not_save_connection' => '(gooi ook koppelingen weg)', + 'link_transaction' => 'Koppel transactie', + 'link_to_other_transaction' => 'Koppel deze transactie aan een andere transactie', + 'select_transaction_to_link' => 'Selecteer een transactie om te koppelen. De links worden door Firefly III verder niet gebruikt (behalve voor de show), maar dit gaat nog veranderen. Gebruik de box om een transactie te selecteren op ID of beschrijving. Als je je eigen linktypes wilt toevoegen moet je even in de administratie kijken.', + 'this_transaction' => 'Deze transactie', + 'transaction' => 'Transactie', + 'comments' => 'Opmerkingen', + 'link_notes' => 'Notities voor bij de link.', + 'invalid_link_selection' => 'Deze transacties kunnen niet worden gekoppeld', + 'selected_transaction' => 'Geselecteerde transactie', + 'journals_linked' => 'De transacties zijn gekoppeld.', + 'journals_error_linked' => 'Deze transacties zijn al gekoppeld.', + 'journals_link_to_self' => 'Je kan een transactie niet aan zichzelf koppelen', + 'journal_links' => 'Transactiekoppelingen', + 'this_withdrawal' => 'Deze uitgave', + 'this_deposit' => 'Deze inkomsten', + 'this_transfer' => 'Deze overschrijving', + 'overview_for_link' => 'Overzicht voor koppeltype ":name"', + 'source_transaction' => 'Brontransactie', + 'link_description' => 'Beschrijving van koppeling', + 'destination_transaction' => 'Doeltransactie', + 'delete_journal_link' => 'Verwijder de koppeling tussen :source en :destination', + 'deleted_link' => 'Koppeling verwijderd', // link translations: - 'Paid_name' => 'Betaald', - 'Refund_name' => 'Restitutie', - 'Reimbursement_name' => 'Vergoeding', - 'Related_name' => 'Gerelateerd', - 'relates to_inward' => 'gerelateerd aan', - 'is (partially) refunded by_inward' => 'wordt (deels) terugbetaald door', - 'is (partially) paid for by_inward' => 'wordt (deels) betaald door', - 'is (partially) reimbursed by_inward' => 'wordt (deels) vergoed door', - 'inward_transaction' => 'Actieve transactie', - 'outward_transaction' => 'Passieve transactie', - 'relates to_outward' => 'gerelateerd aan', - '(partially) refunds_outward' => 'is een (gedeeltelijke) terugbetaling voor', - '(partially) pays for_outward' => 'betaalt (deels) voor', - '(partially) reimburses_outward' => 'vergoedt (deels)', - 'is (partially) refunded by' => 'wordt (deels) terugbetaald door', - 'is (partially) paid for by' => 'wordt (deels) betaald door', - 'is (partially) reimbursed by' => 'wordt (deels) vergoed door', - 'relates to' => 'gerelateerd aan', - '(partially) refunds' => 'is een (gedeeltelijke) terugbetaling voor', - '(partially) pays for' => 'betaalt (deels) voor', - '(partially) reimburses' => 'vergoedt (deels)', + 'Paid_name' => 'Betaald', + 'Refund_name' => 'Restitutie', + 'Reimbursement_name' => 'Vergoeding', + 'Related_name' => 'Gerelateerd', + 'relates to_inward' => 'gerelateerd aan', + 'is (partially) refunded by_inward' => 'wordt (deels) terugbetaald door', + 'is (partially) paid for by_inward' => 'wordt (deels) betaald door', + 'is (partially) reimbursed by_inward' => 'wordt (deels) vergoed door', + 'inward_transaction' => 'Actieve transactie', + 'outward_transaction' => 'Passieve transactie', + 'relates to_outward' => 'gerelateerd aan', + '(partially) refunds_outward' => 'is een (gedeeltelijke) terugbetaling voor', + '(partially) pays for_outward' => 'betaalt (deels) voor', + '(partially) reimburses_outward' => 'vergoedt (deels)', + 'is (partially) refunded by' => 'wordt (deels) terugbetaald door', + 'is (partially) paid for by' => 'wordt (deels) betaald door', + 'is (partially) reimbursed by' => 'wordt (deels) vergoed door', + 'relates to' => 'gerelateerd aan', + '(partially) refunds' => 'is een (gedeeltelijke) terugbetaling voor', + '(partially) pays for' => 'betaalt (deels) voor', + '(partially) reimburses' => 'vergoedt (deels)', // split a transaction: - 'splits' => 'Splitten', - 'add_another_split' => 'Voeg een split toe', - 'cannot_edit_opening_balance' => 'Je kan het startsaldo van een rekening niet wijzigen via dit scherm.', - 'no_edit_multiple_left' => 'Je hebt geen geldige transacties geselecteerd.', - 'breadcrumb_convert_group' => 'Verander transactie', - 'convert_invalid_source' => 'Broninformatie is ongeldig voor transactie #%d.', - 'convert_invalid_destination' => 'Doelrekeninginformatie is ongeldig voor transactie #%d.', - 'create_another' => 'Terug naar deze pagina voor een nieuwe transactie.', - 'after_update_create_another' => 'Na het opslaan terug om door te gaan met wijzigen.', - 'store_as_new' => 'Opslaan als nieuwe transactie ipv de huidige bij te werken.', - 'reset_after' => 'Reset formulier na opslaan', - 'errors_submission' => 'Er ging iets mis. Check de errors.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Split uitklappen', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Split inklappen', + 'splits' => 'Splitten', + 'add_another_split' => 'Voeg een split toe', + 'cannot_edit_opening_balance' => 'Je kan het startsaldo van een rekening niet wijzigen via dit scherm.', + 'no_edit_multiple_left' => 'Je hebt geen geldige transacties geselecteerd.', + 'breadcrumb_convert_group' => 'Verander transactie', + 'convert_invalid_source' => 'Broninformatie is ongeldig voor transactie #%d.', + 'convert_invalid_destination' => 'Doelrekeninginformatie is ongeldig voor transactie #%d.', + 'create_another' => 'Terug naar deze pagina voor een nieuwe transactie.', + 'after_update_create_another' => 'Na het opslaan terug om door te gaan met wijzigen.', + 'store_as_new' => 'Opslaan als nieuwe transactie ipv de huidige bij te werken.', + 'reset_after' => 'Reset formulier na opslaan', + 'errors_submission' => 'Er ging iets mis. Check de errors.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Split uitklappen', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Split inklappen', // object groups - 'default_group_title_name' => '(ongegroepeerd)', - 'default_group_title_name_plain' => 'ongegroepeerd', + 'default_group_title_name' => '(ongegroepeerd)', + 'default_group_title_name_plain' => 'ongegroepeerd', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Je hebt een betaalrekening nodig!', - 'no_accounts_intro_asset' => 'Je hebt nog geen betaalrekeningen. Betaalrekeningen zijn je meest belangrijke rekeningen: je bankrekening, spaarrekening, gedeelde rekening of zelfs je creditcard.', - 'no_accounts_imperative_asset' => 'Om Firefly III te gebruiken moet je minstens één betaalrekening hebben. Die kan je nu maken:', - 'no_accounts_create_asset' => 'Maak een betaalrekening', - 'no_accounts_title_expense' => 'Je hebt een crediteur nodig!', - 'no_accounts_intro_expense' => 'Je hebt nog geen crediteuren-rekeningen. Crediteuren zijn de plaatsen waar je geld uitgeeft, zoals winkels en supermarkten.', - 'no_accounts_imperative_expense' => 'Crediteuren worden automatisch gemaakt als je transacties maakt, maar je kan ze ook met de hand maken. Die kan je nu maken:', - 'no_accounts_create_expense' => 'Maak een crediteur', - 'no_accounts_title_revenue' => 'Je hebt een debiteur nodig!', - 'no_accounts_intro_revenue' => 'Je hebt nog geen debiteuren-rekeningen. Debiteuren zijn de plaatsen of mensen waar je geld van ontvangt, zoals je werkgever.', - 'no_accounts_imperative_revenue' => 'Dediteuren worden automatisch aangemaakt als je transacties aanmaakt, maar je kan ze ook met de hand maken. Zoals nu:', - 'no_accounts_create_revenue' => 'Maak een debiteur', - 'no_accounts_title_liabilities' => 'Maak een passiva!', - 'no_accounts_intro_liabilities' => 'Je hebt nog geen passiva. "Passiva" is de technische term voor schulden, leningen, hypotheken en meer van die dingen.', - 'no_accounts_imperative_liabilities' => 'Je hoeft deze functie niet gebruiken maar het is handig als je zulke dingen wilt bijhouden.', - 'no_accounts_create_liabilities' => 'Maak een passiva', - 'no_budgets_title_default' => 'Je hebt een budget nodig', - 'no_rules_title_default' => 'Je hebt een regel nodig', - 'no_budgets_intro_default' => 'Je hebt nog geen budgetten. Budgetten gebruik je om je uitgaven te groeperen. Daarmee kan je je uitgaven beperken.', - 'no_rules_intro_default' => 'Je hebt nog geen regels. Regels zijn handige automaatjes die transacties voor je kunnen verwerken.', - 'no_rules_imperative_default' => 'Regels kunnen erg handig zijn bij het beheren van transacties. Je kan er nu een maken:', - 'no_budgets_imperative_default' => 'Budgetten zijn de basis-gereedschappen van financieel beheer. Je kan nu een budget maken:', - 'no_budgets_create_default' => 'Maak een budget', - 'no_rules_create_default' => 'Maak een regel', - 'no_categories_title_default' => 'Je hebt een categorie nodig!', - 'no_categories_intro_default' => 'Je hebt nog geen categorieën. Categorieën gebruik je om je transacties gedetailleerd in te delen.', - 'no_categories_imperative_default' => 'Categorieën worden automatisch aangemaakt als je transacties maakt, maar dit kan ook met de hand. Zoals nu:', - 'no_categories_create_default' => 'Maak een categorie', - 'no_tags_title_default' => 'Je hebt tags nodig!', - 'no_tags_intro_default' => 'Je hebt nog geen tags. Tags gebruik je om je transacties te voorzien van specifieke keywords.', - 'no_tags_imperative_default' => 'Tags worden automatisch gemaakt als je ze toevoegt aan een transactie, maar dit kan ook met de hand. Zoals nu:', - 'no_tags_create_default' => 'Maak een tag', - 'no_transactions_title_withdrawal' => 'Je hebt uitgaven nodig!', - 'no_transactions_intro_withdrawal' => 'Je hebt nog geen uitgaven opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', - 'no_transactions_imperative_withdrawal' => 'Heb je geld uitgegeven? Schrijf het dan op:', - 'no_transactions_create_withdrawal' => 'Registreer een uitgave', - 'no_transactions_title_deposit' => 'Je hebt inkomsten nodig!', - 'no_transactions_intro_deposit' => 'Je hebt nog geen inkomsten opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', - 'no_transactions_imperative_deposit' => 'Heb je geld ontvangen? Schrijf het dan op:', - 'no_transactions_create_deposit' => 'Registreer inkomsten', - 'no_transactions_title_transfers' => 'Je hebt overschrijvingen nodig!', - 'no_transactions_intro_transfers' => 'Je hebt nog geen overschrijvingen opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', - 'no_transactions_imperative_transfers' => 'Heb je geld heen-en-weer geschoven? Schrijf het dan op:', - 'no_transactions_create_transfers' => 'Registreer een overschrijving', - 'no_piggies_title_default' => 'Je hebt spaarpotjes nodig!', - 'no_piggies_intro_default' => 'Je hebt nog geen spaarpotjes. Maak spaarpotjes om je spaargeld te verdelen over de zaken waar je voor wilt sparen.', - 'no_piggies_imperative_default' => 'Heb je zaken waar je voor wilt sparen? Maak dan een spaarpotje en houd het bij:', - 'no_piggies_create_default' => 'Maak een spaarpotje', - 'no_bills_title_default' => 'Je hebt contracten nodig!', - 'no_bills_intro_default' => 'Je hebt nog geen contracten. Je kan contracten gebruiken om terugkerende uitgaven bij te houden, zoals de huur of verzekeringen.', - 'no_bills_imperative_default' => 'Heb je zulke uitgaven? Maak dan een contract en houd de betalingen bij:', - 'no_bills_create_default' => 'Maak een contract', + 'no_accounts_title_asset' => 'Je hebt een betaalrekening nodig!', + 'no_accounts_intro_asset' => 'Je hebt nog geen betaalrekeningen. Betaalrekeningen zijn je meest belangrijke rekeningen: je bankrekening, spaarrekening, gedeelde rekening of zelfs je creditcard.', + 'no_accounts_imperative_asset' => 'Om Firefly III te gebruiken moet je minstens één betaalrekening hebben. Die kan je nu maken:', + 'no_accounts_create_asset' => 'Maak een betaalrekening', + 'no_accounts_title_expense' => 'Je hebt een crediteur nodig!', + 'no_accounts_intro_expense' => 'Je hebt nog geen crediteuren-rekeningen. Crediteuren zijn de plaatsen waar je geld uitgeeft, zoals winkels en supermarkten.', + 'no_accounts_imperative_expense' => 'Crediteuren worden automatisch gemaakt als je transacties maakt, maar je kan ze ook met de hand maken. Die kan je nu maken:', + 'no_accounts_create_expense' => 'Maak een crediteur', + 'no_accounts_title_revenue' => 'Je hebt een debiteur nodig!', + 'no_accounts_intro_revenue' => 'Je hebt nog geen debiteuren-rekeningen. Debiteuren zijn de plaatsen of mensen waar je geld van ontvangt, zoals je werkgever.', + 'no_accounts_imperative_revenue' => 'Dediteuren worden automatisch aangemaakt als je transacties aanmaakt, maar je kan ze ook met de hand maken. Zoals nu:', + 'no_accounts_create_revenue' => 'Maak een debiteur', + 'no_accounts_title_liabilities' => 'Maak een passiva!', + 'no_accounts_intro_liabilities' => 'Je hebt nog geen passiva. "Passiva" is de technische term voor schulden, leningen, hypotheken en meer van die dingen.', + 'no_accounts_imperative_liabilities' => 'Je hoeft deze functie niet gebruiken maar het is handig als je zulke dingen wilt bijhouden.', + 'no_accounts_create_liabilities' => 'Maak een passiva', + 'no_budgets_title_default' => 'Je hebt een budget nodig', + 'no_rules_title_default' => 'Je hebt een regel nodig', + 'no_budgets_intro_default' => 'Je hebt nog geen budgetten. Budgetten gebruik je om je uitgaven te groeperen. Daarmee kan je je uitgaven beperken.', + 'no_rules_intro_default' => 'Je hebt nog geen regels. Regels zijn handige automaatjes die transacties voor je kunnen verwerken.', + 'no_rules_imperative_default' => 'Regels kunnen erg handig zijn bij het beheren van transacties. Je kan er nu een maken:', + 'no_budgets_imperative_default' => 'Budgetten zijn de basis-gereedschappen van financieel beheer. Je kan nu een budget maken:', + 'no_budgets_create_default' => 'Maak een budget', + 'no_rules_create_default' => 'Maak een regel', + 'no_categories_title_default' => 'Je hebt een categorie nodig!', + 'no_categories_intro_default' => 'Je hebt nog geen categorieën. Categorieën gebruik je om je transacties gedetailleerd in te delen.', + 'no_categories_imperative_default' => 'Categorieën worden automatisch aangemaakt als je transacties maakt, maar dit kan ook met de hand. Zoals nu:', + 'no_categories_create_default' => 'Maak een categorie', + 'no_tags_title_default' => 'Je hebt tags nodig!', + 'no_tags_intro_default' => 'Je hebt nog geen tags. Tags gebruik je om je transacties te voorzien van specifieke keywords.', + 'no_tags_imperative_default' => 'Tags worden automatisch gemaakt als je ze toevoegt aan een transactie, maar dit kan ook met de hand. Zoals nu:', + 'no_tags_create_default' => 'Maak een tag', + 'no_transactions_title_withdrawal' => 'Je hebt uitgaven nodig!', + 'no_transactions_intro_withdrawal' => 'Je hebt nog geen uitgaven opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', + 'no_transactions_imperative_withdrawal' => 'Heb je geld uitgegeven? Schrijf het dan op:', + 'no_transactions_create_withdrawal' => 'Registreer een uitgave', + 'no_transactions_title_deposit' => 'Je hebt inkomsten nodig!', + 'no_transactions_intro_deposit' => 'Je hebt nog geen inkomsten opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', + 'no_transactions_imperative_deposit' => 'Heb je geld ontvangen? Schrijf het dan op:', + 'no_transactions_create_deposit' => 'Registreer inkomsten', + 'no_transactions_title_transfers' => 'Je hebt overschrijvingen nodig!', + 'no_transactions_intro_transfers' => 'Je hebt nog geen overschrijvingen opgeslagen. Doe dit om te beginnen met het beheren van je financiën.', + 'no_transactions_imperative_transfers' => 'Heb je geld heen-en-weer geschoven? Schrijf het dan op:', + 'no_transactions_create_transfers' => 'Registreer een overschrijving', + 'no_piggies_title_default' => 'Je hebt spaarpotjes nodig!', + 'no_piggies_intro_default' => 'Je hebt nog geen spaarpotjes. Maak spaarpotjes om je spaargeld te verdelen over de zaken waar je voor wilt sparen.', + 'no_piggies_imperative_default' => 'Heb je zaken waar je voor wilt sparen? Maak dan een spaarpotje en houd het bij:', + 'no_piggies_create_default' => 'Maak een spaarpotje', + 'no_bills_title_default' => 'Je hebt contracten nodig!', + 'no_bills_intro_default' => 'Je hebt nog geen contracten. Je kan contracten gebruiken om terugkerende uitgaven bij te houden, zoals de huur of verzekeringen.', + 'no_bills_imperative_default' => 'Heb je zulke uitgaven? Maak dan een contract en houd de betalingen bij:', + 'no_bills_create_default' => 'Maak een contract', // recurring transactions - 'create_right_now' => 'Nu maken', - 'no_new_transaction_in_recurrence' => 'Geen nieuwe transactie is aangemaakt. Misschien was deze al uitgevoerd voor deze datum?', - 'recurrences' => 'Periodieke transacties', - 'repeat_until_in_past' => 'Deze periodieke transactie stopte met herhalen op :date.', - 'recurring_calendar_view' => 'Kalender', - 'no_recurring_title_default' => 'Maak een periodieke transactie!', - 'no_recurring_intro_default' => 'Je hebt nog geen periodieke transacties. Je kan deze gebruiken om er voor te zorgen dat Firefly III automatisch nieuwe transacties voor je maakt.', - 'no_recurring_imperative_default' => 'Dit is een behoorlijk geadvanceerde functie maar het kan vreselijk handig zijn. Lees ook zeker de documentatie (?)-icoontje rechtsboven) voor je verder gaat.', - 'no_recurring_create_default' => 'Maak een periodieke transactie', - 'make_new_recurring' => 'Maak een periodieke transactie', - 'recurring_daily' => 'Elke dag', - 'recurring_weekly' => 'Elke week op :weekday', - 'recurring_weekly_skip' => 'Elke :skip(e) week op :weekday', - 'recurring_monthly' => 'Elke maand op de :dayOfMonth(e) dag', - 'recurring_monthly_skip' => 'Elke :skip(e) maand op de :dayOfMonth(e) dag', - 'recurring_ndom' => 'Elke maand op de :dayOfMonth(e) :weekday', - 'recurring_yearly' => 'Elk jaar op :date', - 'overview_for_recurrence' => 'Overzicht voor periodieke transactie ":title"', - 'warning_duplicates_repetitions' => 'Soms zie je hier datums dubbel staan. Dat kan als meerdere herhalingen in elkaars vaarwater zitten. Firefly III maakt altijd maar één transactie per dag.', - 'created_transactions' => 'Gerelateerde transacties', - 'expected_withdrawals' => 'Verwachte uitgaven', - 'expected_deposits' => 'Verwachte inkomsten', - 'expected_transfers' => 'Verwachte overschrijvingen', - 'created_withdrawals' => 'Gemaakte uitgaven', - 'created_deposits' => 'Gemaakte inkomsten', - 'created_transfers' => 'Gemaakte overschrijvingen', - 'recurring_info' => 'Periodieke transactie :count van :total', - 'created_from_recurrence' => 'Gemaakt door periodieke transactie ":title" (#:id)', - 'recurring_never_cron' => 'Het lijkt er op dat je cronjob die nodig is voor periodieke transacties nog nooit gedraaid heeft. Niet zo gek natuurlijk als je Firefly III echt net geïnstalleerd hebt, maar denk eraan dat je dit regelt. Check de helppagina\'s via het (?)-icoontje rechtsboven.', - 'recurring_cron_long_ago' => 'Het lijkt er op dat het meer dan 36 uur geleden is sinds de cronjob heeft gedraaid die je nodig hebt voor het maken van periodieke transacties. Weet je zeker dat deze goed is ingesteld? Check de helppagina\'s onder het (?)-icoontje rechtsboven voor meer informatie.', + 'create_right_now' => 'Nu maken', + 'no_new_transaction_in_recurrence' => 'Geen nieuwe transactie is aangemaakt. Misschien was deze al uitgevoerd voor deze datum?', + 'recurrences' => 'Periodieke transacties', + 'repeat_until_in_past' => 'Deze periodieke transactie stopte met herhalen op :date.', + 'recurring_calendar_view' => 'Kalender', + 'no_recurring_title_default' => 'Maak een periodieke transactie!', + 'no_recurring_intro_default' => 'Je hebt nog geen periodieke transacties. Je kan deze gebruiken om er voor te zorgen dat Firefly III automatisch nieuwe transacties voor je maakt.', + 'no_recurring_imperative_default' => 'Dit is een behoorlijk geadvanceerde functie maar het kan vreselijk handig zijn. Lees ook zeker de documentatie (?)-icoontje rechtsboven) voor je verder gaat.', + 'no_recurring_create_default' => 'Maak een periodieke transactie', + 'make_new_recurring' => 'Maak een periodieke transactie', + 'recurring_daily' => 'Elke dag', + 'recurring_weekly' => 'Elke week op :weekday', + 'recurring_weekly_skip' => 'Elke :skip(e) week op :weekday', + 'recurring_monthly' => 'Elke maand op de :dayOfMonth(e) dag', + 'recurring_monthly_skip' => 'Elke :skip(e) maand op de :dayOfMonth(e) dag', + 'recurring_ndom' => 'Elke maand op de :dayOfMonth(e) :weekday', + 'recurring_yearly' => 'Elk jaar op :date', + 'overview_for_recurrence' => 'Overzicht voor periodieke transactie ":title"', + 'warning_duplicates_repetitions' => 'Soms zie je hier datums dubbel staan. Dat kan als meerdere herhalingen in elkaars vaarwater zitten. Firefly III maakt altijd maar één transactie per dag.', + 'created_transactions' => 'Gerelateerde transacties', + 'expected_withdrawals' => 'Verwachte uitgaven', + 'expected_deposits' => 'Verwachte inkomsten', + 'expected_transfers' => 'Verwachte overschrijvingen', + 'created_withdrawals' => 'Gemaakte uitgaven', + 'created_deposits' => 'Gemaakte inkomsten', + 'created_transfers' => 'Gemaakte overschrijvingen', + 'recurring_info' => 'Periodieke transactie :count van :total', + 'created_from_recurrence' => 'Gemaakt door periodieke transactie ":title" (#:id)', + 'recurring_never_cron' => 'Het lijkt er op dat je cronjob die nodig is voor periodieke transacties nog nooit gedraaid heeft. Niet zo gek natuurlijk als je Firefly III echt net geïnstalleerd hebt, maar denk eraan dat je dit regelt. Check de helppagina\'s via het (?)-icoontje rechtsboven.', + 'recurring_cron_long_ago' => 'Het lijkt er op dat het meer dan 36 uur geleden is sinds de cronjob heeft gedraaid die je nodig hebt voor het maken van periodieke transacties. Weet je zeker dat deze goed is ingesteld? Check de helppagina\'s onder het (?)-icoontje rechtsboven voor meer informatie.', - 'create_new_recurrence' => 'Maak een nieuwe periodieke transactie', - 'help_first_date' => 'Geef aan wanneer je de eerste transactie verwacht. Dit moet in de toekomst zijn.', - 'help_first_date_no_past' => 'Geef aan wanneer je de eerste transactie verwacht. Firefly III zal geen transacties in het verleden maken.', - 'no_currency' => '(geen valuta)', - 'mandatory_for_recurring' => 'Verplichte periodieke informatie', - 'mandatory_for_transaction' => 'Verplichte transactieinformatie', - 'optional_for_recurring' => 'Optionele periodieke informatie', - 'optional_for_transaction' => 'Optionele transactieinformatie', - 'change_date_other_options' => 'Wijzig de "eerste datum" om meer opties te zien.', - 'mandatory_fields_for_tranaction' => 'De waarden die je hier invult worden gebruikt om de transactie(s) te maken', - 'click_for_calendar' => 'Hier vind je een kalender die laat zien wanneer de transactie zal herhalen.', - 'repeat_forever' => 'Voor altijd herhalen', - 'repeat_until_date' => 'Herhalen tot een datum', - 'repeat_times' => 'Een aantal maal herhalen', - 'recurring_skips_one' => 'Elke tweede', - 'recurring_skips_more' => 'Slaat :count keer over', - 'store_new_recurrence' => 'Sla periodieke transactie op', - 'stored_new_recurrence' => 'Periodieke transactie ":title" is opgeslagen.', - 'edit_recurrence' => 'Wijzig periodieke transactie ":title"', - 'recurring_repeats_until' => 'Herhaalt tot :date', - 'recurring_repeats_forever' => 'Blijft herhalen', - 'recurring_repeats_x_times' => 'Herhaalt :count keer|Herhaalt :count keer', - 'update_recurrence' => 'Wijzig periodieke transactie', - 'updated_recurrence' => 'Periodieke transactie ":title" is gewijzigd', - 'recurrence_is_inactive' => 'Deze periodieke transactie is niet actief en maakt geen transacties aan.', - 'delete_recurring' => 'Verwijder periodieke transactie ":title"', - 'new_recurring_transaction' => 'Nieuwe periodieke transactie', - 'help_weekend' => 'Wat moet Firefly III doen als de periodieke transactie in het weekend valt?', - 'do_nothing' => 'Gewoon transactie maken', - 'skip_transaction' => 'Transactie overslaan', - 'jump_to_friday' => 'Transactie maken op de vrijdag ervoor', - 'jump_to_monday' => 'Transactie maken op de maandag erna', - 'will_jump_friday' => 'Wordt op de vrijdag ervoor gemaakt i.p.v. in het weekend.', - 'will_jump_monday' => 'Wordt op de maandag erna gemaakt i. p. v. in het weekend.', - 'except_weekends' => 'Behalve de weekenden', - 'recurrence_deleted' => 'Periodieke transactie ":title" verwijderd', + 'create_new_recurrence' => 'Maak een nieuwe periodieke transactie', + 'help_first_date' => 'Geef aan wanneer je de eerste transactie verwacht. Dit moet in de toekomst zijn.', + 'help_first_date_no_past' => 'Geef aan wanneer je de eerste transactie verwacht. Firefly III zal geen transacties in het verleden maken.', + 'no_currency' => '(geen valuta)', + 'mandatory_for_recurring' => 'Verplichte periodieke informatie', + 'mandatory_for_transaction' => 'Verplichte transactieinformatie', + 'optional_for_recurring' => 'Optionele periodieke informatie', + 'optional_for_transaction' => 'Optionele transactieinformatie', + 'change_date_other_options' => 'Wijzig de "eerste datum" om meer opties te zien.', + 'mandatory_fields_for_tranaction' => 'De waarden die je hier invult worden gebruikt om de transactie(s) te maken', + 'click_for_calendar' => 'Hier vind je een kalender die laat zien wanneer de transactie zal herhalen.', + 'repeat_forever' => 'Voor altijd herhalen', + 'repeat_until_date' => 'Herhalen tot een datum', + 'repeat_times' => 'Een aantal maal herhalen', + 'recurring_skips_one' => 'Elke tweede', + 'recurring_skips_more' => 'Slaat :count keer over', + 'store_new_recurrence' => 'Sla periodieke transactie op', + 'stored_new_recurrence' => 'Periodieke transactie ":title" is opgeslagen.', + 'edit_recurrence' => 'Wijzig periodieke transactie ":title"', + 'recurring_repeats_until' => 'Herhaalt tot :date', + 'recurring_repeats_forever' => 'Blijft herhalen', + 'recurring_repeats_x_times' => 'Herhaalt :count keer|Herhaalt :count keer', + 'update_recurrence' => 'Wijzig periodieke transactie', + 'updated_recurrence' => 'Periodieke transactie ":title" is gewijzigd', + 'recurrence_is_inactive' => 'Deze periodieke transactie is niet actief en maakt geen transacties aan.', + 'delete_recurring' => 'Verwijder periodieke transactie ":title"', + 'new_recurring_transaction' => 'Nieuwe periodieke transactie', + 'help_weekend' => 'Wat moet Firefly III doen als de periodieke transactie in het weekend valt?', + 'do_nothing' => 'Gewoon transactie maken', + 'skip_transaction' => 'Transactie overslaan', + 'jump_to_friday' => 'Transactie maken op de vrijdag ervoor', + 'jump_to_monday' => 'Transactie maken op de maandag erna', + 'will_jump_friday' => 'Wordt op de vrijdag ervoor gemaakt i.p.v. in het weekend.', + 'will_jump_monday' => 'Wordt op de maandag erna gemaakt i. p. v. in het weekend.', + 'except_weekends' => 'Behalve de weekenden', + 'recurrence_deleted' => 'Periodieke transactie ":title" verwijderd', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Uitgegeven (:currency)', - 'box_earned_in_currency' => 'Verdiend (:currency)', - 'box_budgeted_in_currency' => 'Gebudgetteerd (:currency)', - 'box_bill_paid_in_currency' => 'Betaalde rekeningen (:currency)', - 'box_bill_unpaid_in_currency' => 'Onbetaalde rekeningen (:currency)', - 'box_left_to_spend_in_currency' => 'Uit te geven (:currency)', - 'box_net_worth_in_currency' => 'Kapitaal (:currency)', - 'box_spend_per_day' => 'Te besteden per dag: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Uitgegeven (:currency)', + 'box_earned_in_currency' => 'Verdiend (:currency)', + 'box_budgeted_in_currency' => 'Gebudgetteerd (:currency)', + 'box_bill_paid_in_currency' => 'Betaalde rekeningen (:currency)', + 'box_bill_unpaid_in_currency' => 'Onbetaalde rekeningen (:currency)', + 'box_left_to_spend_in_currency' => 'Uit te geven (:currency)', + 'box_net_worth_in_currency' => 'Kapitaal (:currency)', + 'box_spend_per_day' => 'Te besteden per dag: :amount', // debug page - 'debug_page' => 'Debugpagina', - 'debug_submit_instructions' => 'Gebruik de inhoud van dit vak als je tegen problemen aanloopt. Copy en paste dit in een nieuw of bestaand GitHub issue. Er wordt een mooie tabel gegenereerd die handig is voor de diagnose.', - 'debug_pretty_table' => 'Als je de content van dit vak in GitHub copypaste komt er een tabel tevoorschijn. Zet hier dus geen haakjes of quotes omheen.', - 'debug_additional_data' => 'Je mag ook de content van deze box delen. Die kan je copy-pasten in een nieuw of bestaand GitHub issue. Dikke kans echter dat hier privégegevens instaan zoals rekeningnamen, transactiedetails of e-mailadressen.', + 'debug_page' => 'Debugpagina', + 'debug_submit_instructions' => 'Gebruik de inhoud van dit vak als je tegen problemen aanloopt. Copy en paste dit in een nieuw of bestaand GitHub issue. Er wordt een mooie tabel gegenereerd die handig is voor de diagnose.', + 'debug_pretty_table' => 'Als je de content van dit vak in GitHub copypaste komt er een tabel tevoorschijn. Zet hier dus geen haakjes of quotes omheen.', + 'debug_additional_data' => 'Je mag ook de content van deze box delen. Die kan je copy-pasten in een nieuw of bestaand GitHub issue. Dikke kans echter dat hier privégegevens instaan zoals rekeningnamen, transactiedetails of e-mailadressen.', // object groups - 'object_groups_menu_bar' => 'Groepen', - 'object_groups_page_title' => 'Groepen', - 'object_groups_breadcrumb' => 'Groepen', - 'object_groups_index' => 'Overzicht', - 'object_groups' => 'Groepen', - 'object_groups_empty_explain' => 'Sommige dingen in Firefly III kan je groeperen. Spaarpotjes bijvoorbeeld hebben een "Groep"-veld als je ze wijzigt of maakt. Als je dit veld gebruikt kan je hier de namen en volgorde van die groepen wijzigen. Check de helppagina\'s, rechtsboven het (?) icoontje, voor meer info.', - 'object_group_title' => 'Titel', - 'edit_object_group' => 'Wijzig groep ":title"', - 'delete_object_group' => 'Verwijder groep ":title"', - 'update_object_group' => 'Groep bijwerken', - 'updated_object_group' => 'Groep ":title" geüpdatet', - 'deleted_object_group' => 'Groep ":title" verwijderd', - 'object_group' => 'Groep', + 'object_groups_menu_bar' => 'Groepen', + 'object_groups_page_title' => 'Groepen', + 'object_groups_breadcrumb' => 'Groepen', + 'object_groups_index' => 'Overzicht', + 'object_groups' => 'Groepen', + 'object_groups_empty_explain' => 'Sommige dingen in Firefly III kan je groeperen. Spaarpotjes bijvoorbeeld hebben een "Groep"-veld als je ze wijzigt of maakt. Als je dit veld gebruikt kan je hier de namen en volgorde van die groepen wijzigen. Check de helppagina\'s, rechtsboven het (?) icoontje, voor meer info.', + 'object_group_title' => 'Titel', + 'edit_object_group' => 'Wijzig groep ":title"', + 'delete_object_group' => 'Verwijder groep ":title"', + 'update_object_group' => 'Groep bijwerken', + 'updated_object_group' => 'Groep ":title" geüpdatet', + 'deleted_object_group' => 'Groep ":title" verwijderd', + 'object_group' => 'Groep', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit logboek items', - 'ale_action_log_add' => ':amount toegevoegd aan spaarpotje ":name"', - 'ale_action_log_remove' => ':amount is verwijderd uit spaarpotje ":name"', - 'ale_action_clear_budget' => 'Verwijderd uit budget', - 'ale_action_update_group_title' => 'Transactietitel bijgewerkt', - 'ale_action_update_date' => 'Transactiedatum bijgewerkt', - 'ale_action_update_order' => 'Transactievolgorde bijgewerkt', - 'ale_action_clear_category' => 'Verwijderd uit categorie', - 'ale_action_clear_notes' => 'Verwijderde notities', - 'ale_action_clear_tag' => 'Tag gewist', - 'ale_action_clear_all_tags' => 'Alle tags gewist', - 'ale_action_set_bill' => 'Gekoppeld aan contract', - 'ale_action_switch_accounts' => 'Bron- en doelrekening gewisseld', - 'ale_action_set_budget' => 'Budget ingesteld', - 'ale_action_set_category' => 'Categorie ingesteld', - 'ale_action_set_source' => 'Bronrekening veranderd', - 'ale_action_set_destination' => 'Doelrekening veranderd', - 'ale_action_update_transaction_type' => 'Transactietype gewijzigd', - 'ale_action_update_notes' => 'Notities veranderd', - 'ale_action_update_description' => 'Omschrijving veranderd', - 'ale_action_add_to_piggy' => 'Spaarpotje', - 'ale_action_remove_from_piggy' => 'Spaarpotje', - 'ale_action_add_tag' => 'Tag toegevoegd', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit logboek items', + 'ale_action_log_add' => ':amount toegevoegd aan spaarpotje ":name"', + 'ale_action_log_remove' => ':amount is verwijderd uit spaarpotje ":name"', + 'ale_action_clear_budget' => 'Verwijderd uit budget', + 'ale_action_update_group_title' => 'Transactietitel bijgewerkt', + 'ale_action_update_date' => 'Transactiedatum bijgewerkt', + 'ale_action_update_order' => 'Transactievolgorde bijgewerkt', + 'ale_action_clear_category' => 'Verwijderd uit categorie', + 'ale_action_clear_notes' => 'Verwijderde notities', + 'ale_action_clear_tag' => 'Tag gewist', + 'ale_action_clear_all_tags' => 'Alle tags gewist', + 'ale_action_set_bill' => 'Gekoppeld aan contract', + 'ale_action_switch_accounts' => 'Bron- en doelrekening gewisseld', + 'ale_action_set_budget' => 'Budget ingesteld', + 'ale_action_set_category' => 'Categorie ingesteld', + 'ale_action_set_source' => 'Bronrekening veranderd', + 'ale_action_set_destination' => 'Doelrekening veranderd', + 'ale_action_update_transaction_type' => 'Transactietype gewijzigd', + 'ale_action_update_notes' => 'Notities veranderd', + 'ale_action_update_description' => 'Omschrijving veranderd', + 'ale_action_add_to_piggy' => 'Spaarpotje', + 'ale_action_remove_from_piggy' => 'Spaarpotje', + 'ale_action_add_tag' => 'Tag toegevoegd', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Doe valutaconversie', - 'disable_auto_convert' => 'Doe geen valutaconversie', + 'enable_auto_convert' => 'Doe valutaconversie', + 'disable_auto_convert' => 'Doe geen valutaconversie', ]; /* diff --git a/resources/lang/nl_NL/rules.php b/resources/lang/nl_NL/rules.php index 84312afd8f..0a12f69a04 100644 --- a/resources/lang/nl_NL/rules.php +++ b/resources/lang/nl_NL/rules.php @@ -70,5 +70,5 @@ return [ 'cannot_find_budget' => 'Firefly III kan budget ":name" niet vinden', 'cannot_find_category' => 'Firefly III kan categorie ":name" niet vinden', 'cannot_set_budget' => 'Firefly III kan budget ":name" niet instellen op een transactie van het type ":type"', - 'journal_invalid_amount' => 'Firefly III can\'t set amount ":amount" because it is not a valid number.', + 'journal_invalid_amount' => 'Firefly III kan bedrag ":amount" niet instellen omdat dit geen geldig getal is.', ]; diff --git a/resources/lang/nl_NL/validation.php b/resources/lang/nl_NL/validation.php index 1a7e85ee36..215bf8c490 100644 --- a/resources/lang/nl_NL/validation.php +++ b/resources/lang/nl_NL/validation.php @@ -55,11 +55,11 @@ return [ 'reconciled_forbidden_field' => 'Deze transactie is al afgestemd, dus je kan ":field" niet wijzigen', 'deleted_user' => 'Je kan je niet registreren met dit e-mailadres.', 'rule_trigger_value' => 'Deze waarde is niet geldig voor de geselecteerde trigger.', - 'rule_action_expression' => 'Invalid expression. :error', + 'rule_action_expression' => 'Ongeldige expressie (foutmelding in het Engels): :error', 'rule_action_value' => 'Deze waarde is niet geldig voor de geselecteerde actie.', 'file_already_attached' => 'Het geuploade bestand ":name" is al gelinkt aan deze transactie.', 'file_attached' => 'Bestand ":name" is succesvol geüpload.', - 'file_zero' => 'The file is zero bytes in size.', + 'file_zero' => 'Het bestand is nul bytes.', 'must_exist' => 'Het ID in veld :attribute bestaat niet.', 'all_accounts_equal' => 'Alle rekeningen in dit veld moeten gelijk zijn.', 'group_title_mandatory' => 'Een groepstitel is verplicht wanneer er meer dan één transactie is.', @@ -197,7 +197,7 @@ return [ * */ - 'secure_password' => 'This is not a secure password. Please try again. For more information, visit https://bit.ly/FF3-password', + 'secure_password' => 'Dit is geen veilig wachtwoord. Probeer het nog een keer. Zie ook: https://bit.ly/FF3-password', 'valid_recurrence_rep_type' => 'Dit is geen geldige herhaling voor periodieke transacties.', 'valid_recurrence_rep_moment' => 'Ongeldig herhaalmoment voor dit type herhaling.', 'invalid_account_info' => 'Ongeldige rekeninginformatie.', @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Je hebt niet de juiste toegangsrechten voor deze administratie.', + 'administration_owner_rename' => 'Je kan je standaardgrootboek niet hernoemen.', ]; /* diff --git a/resources/lang/nn_NO/firefly.php b/resources/lang/nn_NO/firefly.php index b04a04c40e..5f198785aa 100644 --- a/resources/lang/nn_NO/firefly.php +++ b/resources/lang/nn_NO/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Lukk', - 'actions' => 'Handlinger', - 'edit' => 'Rediger', - 'delete' => 'Slett', - 'split' => 'Del opp', - 'single_split' => 'Del opp', - 'clone' => 'Klon', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Bekreft handling', - 'last_seven_days' => 'Syv siste dager', - 'last_thirty_days' => 'Tredve siste dager', - 'last_180_days' => 'Siste 180 dager', - 'month_to_date' => 'Måned til dato', - 'year_to_date' => 'År til dato', - 'YTD' => 'Hittil i år', - 'welcome_back' => 'Korleis går det?', - 'everything' => 'Alt', - 'today' => 'i dag', - 'customRange' => 'Egendefinert utval', - 'date_range' => 'Datointervall', - 'apply' => 'Bruk', - 'select_date' => 'Vel dato..', - 'cancel' => 'Avbryt', - 'from' => 'Frå', - 'to' => 'Til', - 'structure' => 'Struktur', - 'help_translating' => 'Denne hjelpeteksten er ikkje tilgjengelig på ditt språk. Vil du hjelpa å oversetta?', - 'showEverything' => 'Vis alt', - 'never' => 'Aldri', - 'no_results_for_empty_search' => 'Søket ditt var tomt, så ingenting vart funnet.', - 'removed_amount' => 'Fjerna :amount', - 'added_amount' => 'La til :amount', - 'asset_account_role_help' => 'Eventuelle ekstra alternativ som følge av ditt val kan settes senere.', - 'Opening balance' => 'Startsaldo', - 'create_new_stuff' => 'Lag nye ting', - 'new_withdrawal' => 'Nytt uttak', - 'create_new_transaction' => 'Opprett ny transaksjon', - 'sidebar_frontpage_create' => 'Opprett', - 'new_transaction' => 'Ny transaksjon', - 'no_rules_for_bill' => 'Denne rekninga har ingen reglar knytt til den.', - 'go_to_asset_accounts' => 'Sjå aktivakontoane dine', - 'go_to_budgets' => 'Gå til budsjetta dine', - 'go_to_withdrawals' => 'Gå til uttaka dine', - 'clones_journal_x' => 'Denne transaksjonen er ein klone av ":description" (#:id)', - 'go_to_categories' => 'Gå til kategoriane dine', - 'go_to_bills' => 'Gå til rekningane dine', - 'go_to_expense_accounts' => 'Sjå utgiftskontoane dine', - 'go_to_revenue_accounts' => 'Sjå inntektskontoane dine', - 'go_to_piggies' => 'Gå til sparegrisane dine', - 'new_deposit' => 'Nytt innskot', - 'new_transfer' => 'Ny overføring', - 'new_transfers' => 'Ny overføring', - 'new_asset_account' => 'Ny aktivakonto', - 'new_expense_account' => 'Ny utgiftskonto', - 'new_revenue_account' => 'Ny inntektskonto', - 'new_liabilities_account' => 'Ny gjeld', - 'new_budget' => 'Nytt budsjett', - 'new_bill' => 'Ny rekning', - 'block_account_logout' => 'Du har vorte logga ut. Blokkerte kontoar kan ikkje bruka denne nettstaden. Har du registrert deg med ei gyldig e-postadresse?', - 'flash_success' => 'Suksess!', - 'flash_info' => 'Melding', - 'flash_warning' => 'Advarsel!', - 'flash_error' => 'Feil!', - 'flash_danger' => 'Fare!', - 'flash_info_multiple' => 'Det eksisterar ei melding | Det eksisterar :count meldingar', - 'flash_error_multiple' => 'Det er ein feil | Det er :count feil', - 'net_worth' => 'Formue', - 'help_for_this_page' => 'Hjelp for denne sida', - 'help_for_this_page_body' => 'Du finn meir informasjon om denne sida i dokumentasjonen.', - 'two_factor_welcome' => 'Hallo!', - 'two_factor_enter_code' => 'Ver venleg å skriv inn tofaktorautentiseringskoden for å fortsetja. Appen på telefonen kan generera den for deg.', - 'two_factor_code_here' => 'Skriv koden her', - 'two_factor_title' => 'Tofaktorautentisering', - 'authenticate' => 'Autentisere', - 'two_factor_forgot_title' => 'Mista tofaktorautentisering', - 'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.', - 'two_factor_lost_header' => 'Mista tofaktorautentisering?', - 'two_factor_lost_intro' => 'Om du òg har mistet sikkerhetskodane din, har du uflaks. Noko du ikkje kan fiksa frå webgrensesnittet. Du har to val.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Ellers sender ein epost til eigaren av nettsida, :site_owner og spør vedkommande om å tilbakestille tofaktorautentiseringa din.', - 'mfa_backup_code' => 'Du har brukt ein sikkerhetskode for å logge inn i Firefly III. Den kan ikkje brukes igjen, så kryss den frå lista din.', - 'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder', - 'pref_two_factor_backup_code_count' => 'Du har :count gyldige backup-koder. You have :count valid backup koder.', - '2fa_i_have_them' => 'Jeg lagra dem!', - 'warning_much_data' => ':days dager med data kan ta litt tid å laste.', - 'registered' => 'Registreringen var vellukka!', - 'Default asset account' => 'Standard aktivakonto', - 'no_budget_pointer' => 'Det ser ikkje ut til at du har budsjett enda. Du bør oppretta nokon på budsjett-sida. Budsjett kan hjelpa deg med å halda oversikt over utgifter.', - 'no_bill_pointer' => 'Det ser ut til at du ikkje har nokon rekningar enda. Du bør oppretta nokon på rekningar-side. Rekningar kan hjelpa deg med å holde oversikt over utgifter.', - 'Savings account' => 'Sparekonto', - 'Credit card' => 'Kredittkort', - 'source_accounts' => 'Kjeldekonto|Kjeldekontoar', - 'destination_accounts' => 'Målkonto|Målkontoar', - 'user_id_is' => 'Din brukar-ID er :user', - 'field_supports_markdown' => 'Dette feltet støttar Markdown.', - 'need_more_help' => 'Om du treng meir hjelp med å bruka Firefly III, ver venleg å opprett ei sak på Github.', - 'reenable_intro_text' => 'Du kan òg reaktivera introduksjonsveiledningen.', - 'intro_boxes_after_refresh' => 'Innføringsboksane vil dukke opp igjen når du laster sida på nytt.', - 'show_all_no_filter' => 'Vis alle transaksjonar uten å gruppere dei etter dato.', - 'expenses_by_category' => 'Utgifter etter kategori', - 'expenses_by_budget' => 'Utgifter etter budsjett', - 'income_by_category' => 'Inntekt etter kategori', - 'expenses_by_asset_account' => 'Utgifter etter aktivakonto', - 'expenses_by_expense_account' => 'Utgifter etter utgiftskonto', - 'cannot_redirect_to_account' => 'Firefly III kan ikkje videresende deg til rett side. Beklager.', - 'sum_of_expenses' => 'Sum av utgifter', - 'sum_of_income' => 'Sum av inntekt', - 'liabilities' => 'Gjeld', - 'spent_in_specific_budget' => 'Brukt i budsjett ":budget"', - 'spent_in_specific_double' => 'Brukt i konto ":account', - 'earned_in_specific_double' => 'Opptjent i konto ":account', - 'source_account' => 'Kjeldekonto', - 'source_account_reconciliation' => 'Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.', - 'destination_account' => 'Målkonto', - 'destination_account_reconciliation' => 'Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.', - 'sum_of_expenses_in_budget' => 'Brukt totalt i budsjett «:budget»', - 'left_in_budget_limit' => 'Att å bruka i følge budsjett', - 'current_period' => 'Noverande periode', - 'show_the_current_period_and_overview' => 'Vis gjeldande periode og oversikt', - 'pref_languages_locale' => 'For at eit anna språk enn engelsk skal fungera skikkelig, må operativsystemet ditt vera utstyrt med rett lokalinformasjon. Om dette ikkje er på plass, kan valutadata, datoar og beløp verta vist feil.', - 'budget_in_period' => 'Alle transaksjonar for budsjett ":name" mellom :start og :end i :currency', - 'chart_budget_in_period' => 'Diagram for alle transaksjonar for budsjett ":name" mellom :start og :end i :currency', - 'chart_budget_in_period_only_currency' => 'Beløpet du budsjetterte var i :currency, så dette diagrammet vil berre visa transaksjonar i :currency.', - 'chart_account_in_period' => 'Diagram for alle transaksjonar for konto ":name" (:balance) mellom :start og :end', - 'chart_category_in_period' => 'Diagram for alle transaksjonar for kategori ":name" mellom :start og :end', - 'chart_category_all' => 'Graf over alle transaksjonar for kategori ":name"', - 'clone_withdrawal' => 'Klone dette uttaket', - 'clone_deposit' => 'Klone dette innskuddet', - 'clone_transfer' => 'Klone denne overføringen', - 'multi_select_no_selection' => 'Ingen valt', - 'multi_select_select_all' => 'Vel alle', - 'multi_select_n_selected' => 'valt', - 'multi_select_all_selected' => 'Alle valde', - 'multi_select_filter_placeholder' => 'Finn..', - 'intro_next_label' => 'Neste', - 'intro_prev_label' => 'Forrige', - 'intro_skip_label' => 'Hopp over', - 'intro_done_label' => 'Ferdig', - 'between_dates_breadcrumb' => 'Mellom :start og :end', - 'all_journals_without_budget' => 'Alle transaksjonar uten budsjett', - 'journals_without_budget' => 'Transaksjoner uten budsjett', - 'all_journals_without_category' => 'Alle ukategoriserte transaksjonar', - 'journals_without_category' => 'Ukategoriserte transaksjonar', - 'all_journals_for_account' => 'Alle transaksjonar for konto :name', - 'chart_all_journals_for_account' => 'Graf over alle transaksjonar for konto :name', - 'journals_in_period_for_account' => 'Alle transaksjonar for konto :name mellom :start og :end', - 'journals_in_period_for_account_js' => 'Alle transaksjonar for konto {title} mellom {start} og {end}', - 'transferred' => 'Overført', - 'all_withdrawal' => 'Alle utgifter', - 'all_transactions' => 'Alle transaksjonar', - 'title_withdrawal_between' => 'Alle utgifter mellom :start og :end', - 'all_deposit' => 'Alle inntekter', - 'title_deposit_between' => 'Alle inntekter mellom :start og :end', - 'all_transfers' => 'Alle overføringer', - 'title_transfers_between' => 'Alle overføringer mellom :start og :end', - 'all_transfer' => 'Alle overføringer', - 'all_journals_for_tag' => 'Alle transaksjonar for nøkkelordet «:tag»', - 'title_transfer_between' => 'Alle overføringer mellom :start og :end', - 'all_journals_for_category' => 'Alle transaksjonar for kategori :name', - 'all_journals_for_budget' => 'Alle transaksjonar for budsjett :name', - 'chart_all_journals_for_budget' => 'Graf over alle transaksjonar for budsjett :name', - 'journals_in_period_for_category' => 'Alle transaksjonar for kategori :name mellom :start og :end', - 'journals_in_period_for_tag' => 'Alle transaksjonar for nøkkelordet :tag mellom :start og :end', - 'not_available_demo_user' => 'Funksjonen du prøvar å få tilgang til, er ikkje tilgjengeleg for demobrukarar.', - 'exchange_rate_instructions' => 'Aktivakonto "@name" godtar kun transaksjonar i @native_currency. Om du ønskar å bruka @foreign_currency i staden, må du passe på at beløpet i @native_currency òg er satt:', - 'transfer_exchange_rate_instructions' => 'Kjeldekonto "@source_name" godtar kun transaksjonar i @source_currency. Destinasjonskonto "@dest_name" aksepterer berre transaksjonar i @dest_currency. Du må angi overført beløp rett i begge valutaene.', - 'transaction_data' => 'Transaksjonsdata', - 'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Hurtigbryter', - 'sign_in_to_start' => 'Logg inn for å starte økten', - 'sign_in' => 'Logg inn', - 'register_new_account' => 'Registrer ein ny konto', - 'forgot_my_password' => 'Jeg har glemt passordet mitt', - 'problems_with_input' => 'Det var nokon problemer med utfyllingen din.', - 'reset_password' => 'Tilbakestill passordet ditt', - 'button_reset_password' => 'Tilbakestill passord', - 'reset_button' => 'Tilbakestill', - 'want_to_login' => 'Jeg vil logge inn', - 'login_page_title' => 'Innlogging til Firefly III', - 'register_page_title' => 'Registrer deg på Firefly III', - 'forgot_pw_page_title' => 'Glemt passord for Firefly III', - 'reset_pw_page_title' => 'Nullstill passord for Firefly III', - 'cannot_reset_demo_user' => 'Du kan ikkje nustille passordet til demo brukar.', - 'no_att_demo_user' => 'Demo brukaren kan ikkje laste opp vedlegg.', - 'button_register' => 'Registrer', - 'authorization' => 'Autorisasjon', - 'active_bills_only' => 'kun aktive rekningar', - 'active_bills_only_total' => 'alle aktive rekningar', - 'active_exp_bills_only' => 'kun aktive og forventa rekningar', - 'active_exp_bills_only_total' => 'kun aktive og forventa rekningar', - 'per_period_sum_1D' => 'Forventa daglege kostnadar', - 'per_period_sum_1W' => 'Forventa vekentlege kostnadar', - 'per_period_sum_1M' => 'Forventa månadlege kostnadar', - 'per_period_sum_3M' => 'Forventa kvartalskostnadar', - 'per_period_sum_6M' => 'Forventa halvårlege kostnadar', - 'per_period_sum_1Y' => 'Forventa årlege kostnadar', - 'average_per_bill' => 'gjennomsnitt per rekning', - 'expected_total' => 'forventet totalt', - 'reconciliation_account_name' => ':name avstemming (:currency)', - 'saved' => 'Lagret', - 'advanced_options' => 'Avanserte innstillinger', - 'advanced_options_explain' => 'Nokre sider i Firefly III har avanserte alternativ gøymt bak denne knappen. Denne sida har ikkje noko spesielt her, men sjekk ut dei andre!', - 'here_be_dragons' => 'Her eksisterar drager', + 'close' => 'Lukk', + 'actions' => 'Handlinger', + 'edit' => 'Rediger', + 'delete' => 'Slett', + 'split' => 'Del opp', + 'single_split' => 'Del opp', + 'clone' => 'Klon', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Bekreft handling', + 'last_seven_days' => 'Syv siste dager', + 'last_thirty_days' => 'Tredve siste dager', + 'last_180_days' => 'Siste 180 dager', + 'month_to_date' => 'Måned til dato', + 'year_to_date' => 'År til dato', + 'YTD' => 'Hittil i år', + 'welcome_back' => 'Korleis går det?', + 'everything' => 'Alt', + 'today' => 'i dag', + 'customRange' => 'Egendefinert utval', + 'date_range' => 'Datointervall', + 'apply' => 'Bruk', + 'select_date' => 'Vel dato..', + 'cancel' => 'Avbryt', + 'from' => 'Frå', + 'to' => 'Til', + 'structure' => 'Struktur', + 'help_translating' => 'Denne hjelpeteksten er ikkje tilgjengelig på ditt språk. Vil du hjelpa å oversetta?', + 'showEverything' => 'Vis alt', + 'never' => 'Aldri', + 'no_results_for_empty_search' => 'Søket ditt var tomt, så ingenting vart funnet.', + 'removed_amount' => 'Fjerna :amount', + 'added_amount' => 'La til :amount', + 'asset_account_role_help' => 'Eventuelle ekstra alternativ som følge av ditt val kan settes senere.', + 'Opening balance' => 'Startsaldo', + 'create_new_stuff' => 'Lag nye ting', + 'new_withdrawal' => 'Nytt uttak', + 'create_new_transaction' => 'Opprett ny transaksjon', + 'sidebar_frontpage_create' => 'Opprett', + 'new_transaction' => 'Ny transaksjon', + 'no_rules_for_bill' => 'Denne rekninga har ingen reglar knytt til den.', + 'go_to_asset_accounts' => 'Sjå aktivakontoane dine', + 'go_to_budgets' => 'Gå til budsjetta dine', + 'go_to_withdrawals' => 'Gå til uttaka dine', + 'clones_journal_x' => 'Denne transaksjonen er ein klone av ":description" (#:id)', + 'go_to_categories' => 'Gå til kategoriane dine', + 'go_to_bills' => 'Gå til rekningane dine', + 'go_to_expense_accounts' => 'Sjå utgiftskontoane dine', + 'go_to_revenue_accounts' => 'Sjå inntektskontoane dine', + 'go_to_piggies' => 'Gå til sparegrisane dine', + 'new_deposit' => 'Nytt innskot', + 'new_transfer' => 'Ny overføring', + 'new_transfers' => 'Ny overføring', + 'new_asset_account' => 'Ny aktivakonto', + 'new_expense_account' => 'Ny utgiftskonto', + 'new_revenue_account' => 'Ny inntektskonto', + 'new_liabilities_account' => 'Ny gjeld', + 'new_budget' => 'Nytt budsjett', + 'new_bill' => 'Ny rekning', + 'block_account_logout' => 'Du har vorte logga ut. Blokkerte kontoar kan ikkje bruka denne nettstaden. Har du registrert deg med ei gyldig e-postadresse?', + 'flash_success' => 'Suksess!', + 'flash_info' => 'Melding', + 'flash_warning' => 'Advarsel!', + 'flash_error' => 'Feil!', + 'flash_danger' => 'Fare!', + 'flash_info_multiple' => 'Det eksisterar ei melding | Det eksisterar :count meldingar', + 'flash_error_multiple' => 'Det er ein feil | Det er :count feil', + 'net_worth' => 'Formue', + 'help_for_this_page' => 'Hjelp for denne sida', + 'help_for_this_page_body' => 'Du finn meir informasjon om denne sida i dokumentasjonen.', + 'two_factor_welcome' => 'Hallo!', + 'two_factor_enter_code' => 'Ver venleg å skriv inn tofaktorautentiseringskoden for å fortsetja. Appen på telefonen kan generera den for deg.', + 'two_factor_code_here' => 'Skriv koden her', + 'two_factor_title' => 'Tofaktorautentisering', + 'authenticate' => 'Autentisere', + 'two_factor_forgot_title' => 'Mista tofaktorautentisering', + 'two_factor_forgot' => 'Jeg har glemt/mistet min tofaktor-ting.', + 'two_factor_lost_header' => 'Mista tofaktorautentisering?', + 'two_factor_lost_intro' => 'Om du òg har mistet sikkerhetskodane din, har du uflaks. Noko du ikkje kan fiksa frå webgrensesnittet. Du har to val.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Ellers sender ein epost til eigaren av nettsida, :site_owner og spør vedkommande om å tilbakestille tofaktorautentiseringa din.', + 'mfa_backup_code' => 'Du har brukt ein sikkerhetskode for å logge inn i Firefly III. Den kan ikkje brukes igjen, så kryss den frå lista din.', + 'pref_two_factor_new_backup_codes' => 'Få nye sikkerhetskoder', + 'pref_two_factor_backup_code_count' => 'Du har :count gyldige backup-koder. You have :count valid backup koder.', + '2fa_i_have_them' => 'Jeg lagra dem!', + 'warning_much_data' => ':days dager med data kan ta litt tid å laste.', + 'registered' => 'Registreringen var vellukka!', + 'Default asset account' => 'Standard aktivakonto', + 'no_budget_pointer' => 'Det ser ikkje ut til at du har budsjett enda. Du bør oppretta nokon på budsjett-sida. Budsjett kan hjelpa deg med å halda oversikt over utgifter.', + 'no_bill_pointer' => 'Det ser ut til at du ikkje har nokon rekningar enda. Du bør oppretta nokon på rekningar-side. Rekningar kan hjelpa deg med å holde oversikt over utgifter.', + 'Savings account' => 'Sparekonto', + 'Credit card' => 'Kredittkort', + 'source_accounts' => 'Kjeldekonto|Kjeldekontoar', + 'destination_accounts' => 'Målkonto|Målkontoar', + 'user_id_is' => 'Din brukar-ID er :user', + 'field_supports_markdown' => 'Dette feltet støttar Markdown.', + 'need_more_help' => 'Om du treng meir hjelp med å bruka Firefly III, ver venleg å opprett ei sak på Github.', + 'reenable_intro_text' => 'Du kan òg reaktivera introduksjonsveiledningen.', + 'intro_boxes_after_refresh' => 'Innføringsboksane vil dukke opp igjen når du laster sida på nytt.', + 'show_all_no_filter' => 'Vis alle transaksjonar uten å gruppere dei etter dato.', + 'expenses_by_category' => 'Utgifter etter kategori', + 'expenses_by_budget' => 'Utgifter etter budsjett', + 'income_by_category' => 'Inntekt etter kategori', + 'expenses_by_asset_account' => 'Utgifter etter aktivakonto', + 'expenses_by_expense_account' => 'Utgifter etter utgiftskonto', + 'cannot_redirect_to_account' => 'Firefly III kan ikkje videresende deg til rett side. Beklager.', + 'sum_of_expenses' => 'Sum av utgifter', + 'sum_of_income' => 'Sum av inntekt', + 'liabilities' => 'Gjeld', + 'spent_in_specific_budget' => 'Brukt i budsjett ":budget"', + 'spent_in_specific_double' => 'Brukt i konto ":account', + 'earned_in_specific_double' => 'Opptjent i konto ":account', + 'source_account' => 'Kjeldekonto', + 'source_account_reconciliation' => 'Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.', + 'destination_account' => 'Målkonto', + 'destination_account_reconciliation' => 'Du kan ikkje redigera kildekontoen for ein avstemmingstransaksjon.', + 'sum_of_expenses_in_budget' => 'Brukt totalt i budsjett «:budget»', + 'left_in_budget_limit' => 'Att å bruka i følge budsjett', + 'current_period' => 'Noverande periode', + 'show_the_current_period_and_overview' => 'Vis gjeldande periode og oversikt', + 'pref_languages_locale' => 'For at eit anna språk enn engelsk skal fungera skikkelig, må operativsystemet ditt vera utstyrt med rett lokalinformasjon. Om dette ikkje er på plass, kan valutadata, datoar og beløp verta vist feil.', + 'budget_in_period' => 'Alle transaksjonar for budsjett ":name" mellom :start og :end i :currency', + 'chart_budget_in_period' => 'Diagram for alle transaksjonar for budsjett ":name" mellom :start og :end i :currency', + 'chart_budget_in_period_only_currency' => 'Beløpet du budsjetterte var i :currency, så dette diagrammet vil berre visa transaksjonar i :currency.', + 'chart_account_in_period' => 'Diagram for alle transaksjonar for konto ":name" (:balance) mellom :start og :end', + 'chart_category_in_period' => 'Diagram for alle transaksjonar for kategori ":name" mellom :start og :end', + 'chart_category_all' => 'Graf over alle transaksjonar for kategori ":name"', + 'clone_withdrawal' => 'Klone dette uttaket', + 'clone_deposit' => 'Klone dette innskuddet', + 'clone_transfer' => 'Klone denne overføringen', + 'multi_select_no_selection' => 'Ingen valt', + 'multi_select_select_all' => 'Vel alle', + 'multi_select_n_selected' => 'valt', + 'multi_select_all_selected' => 'Alle valde', + 'multi_select_filter_placeholder' => 'Finn..', + 'intro_next_label' => 'Neste', + 'intro_prev_label' => 'Forrige', + 'intro_skip_label' => 'Hopp over', + 'intro_done_label' => 'Ferdig', + 'between_dates_breadcrumb' => 'Mellom :start og :end', + 'all_journals_without_budget' => 'Alle transaksjonar uten budsjett', + 'journals_without_budget' => 'Transaksjoner uten budsjett', + 'all_journals_without_category' => 'Alle ukategoriserte transaksjonar', + 'journals_without_category' => 'Ukategoriserte transaksjonar', + 'all_journals_for_account' => 'Alle transaksjonar for konto :name', + 'chart_all_journals_for_account' => 'Graf over alle transaksjonar for konto :name', + 'journals_in_period_for_account' => 'Alle transaksjonar for konto :name mellom :start og :end', + 'journals_in_period_for_account_js' => 'Alle transaksjonar for konto {title} mellom {start} og {end}', + 'transferred' => 'Overført', + 'all_withdrawal' => 'Alle utgifter', + 'all_transactions' => 'Alle transaksjonar', + 'title_withdrawal_between' => 'Alle utgifter mellom :start og :end', + 'all_deposit' => 'Alle inntekter', + 'title_deposit_between' => 'Alle inntekter mellom :start og :end', + 'all_transfers' => 'Alle overføringer', + 'title_transfers_between' => 'Alle overføringer mellom :start og :end', + 'all_transfer' => 'Alle overføringer', + 'all_journals_for_tag' => 'Alle transaksjonar for nøkkelordet «:tag»', + 'title_transfer_between' => 'Alle overføringer mellom :start og :end', + 'all_journals_for_category' => 'Alle transaksjonar for kategori :name', + 'all_journals_for_budget' => 'Alle transaksjonar for budsjett :name', + 'chart_all_journals_for_budget' => 'Graf over alle transaksjonar for budsjett :name', + 'journals_in_period_for_category' => 'Alle transaksjonar for kategori :name mellom :start og :end', + 'journals_in_period_for_tag' => 'Alle transaksjonar for nøkkelordet :tag mellom :start og :end', + 'not_available_demo_user' => 'Funksjonen du prøvar å få tilgang til, er ikkje tilgjengeleg for demobrukarar.', + 'exchange_rate_instructions' => 'Aktivakonto "@name" godtar kun transaksjonar i @native_currency. Om du ønskar å bruka @foreign_currency i staden, må du passe på at beløpet i @native_currency òg er satt:', + 'transfer_exchange_rate_instructions' => 'Kjeldekonto "@source_name" godtar kun transaksjonar i @source_currency. Destinasjonskonto "@dest_name" aksepterer berre transaksjonar i @dest_currency. Du må angi overført beløp rett i begge valutaene.', + 'transaction_data' => 'Transaksjonsdata', + 'invalid_server_configuration' => 'Ugyldig serverkonfigurasjon', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Hurtigbryter', + 'sign_in_to_start' => 'Logg inn for å starte økten', + 'sign_in' => 'Logg inn', + 'register_new_account' => 'Registrer ein ny konto', + 'forgot_my_password' => 'Jeg har glemt passordet mitt', + 'problems_with_input' => 'Det var nokon problemer med utfyllingen din.', + 'reset_password' => 'Tilbakestill passordet ditt', + 'button_reset_password' => 'Tilbakestill passord', + 'reset_button' => 'Tilbakestill', + 'want_to_login' => 'Jeg vil logge inn', + 'login_page_title' => 'Innlogging til Firefly III', + 'register_page_title' => 'Registrer deg på Firefly III', + 'forgot_pw_page_title' => 'Glemt passord for Firefly III', + 'reset_pw_page_title' => 'Nullstill passord for Firefly III', + 'cannot_reset_demo_user' => 'Du kan ikkje nustille passordet til demo brukar.', + 'no_att_demo_user' => 'Demo brukaren kan ikkje laste opp vedlegg.', + 'button_register' => 'Registrer', + 'authorization' => 'Autorisasjon', + 'active_bills_only' => 'kun aktive rekningar', + 'active_bills_only_total' => 'alle aktive rekningar', + 'active_exp_bills_only' => 'kun aktive og forventa rekningar', + 'active_exp_bills_only_total' => 'kun aktive og forventa rekningar', + 'per_period_sum_1D' => 'Forventa daglege kostnadar', + 'per_period_sum_1W' => 'Forventa vekentlege kostnadar', + 'per_period_sum_1M' => 'Forventa månadlege kostnadar', + 'per_period_sum_3M' => 'Forventa kvartalskostnadar', + 'per_period_sum_6M' => 'Forventa halvårlege kostnadar', + 'per_period_sum_1Y' => 'Forventa årlege kostnadar', + 'average_per_bill' => 'gjennomsnitt per rekning', + 'expected_total' => 'forventet totalt', + 'reconciliation_account_name' => ':name avstemming (:currency)', + 'saved' => 'Lagret', + 'advanced_options' => 'Avanserte innstillinger', + 'advanced_options_explain' => 'Nokre sider i Firefly III har avanserte alternativ gøymt bak denne knappen. Denne sida har ikkje noko spesielt her, men sjekk ut dei andre!', + 'here_be_dragons' => 'Her eksisterar drager', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'deaktivert', - 'no_webhook_messages' => 'Ingen Webhook meldingar', - 'webhook_trigger_STORE_TRANSACTION' => 'Etter transaksjons opprettelse', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Etter transaksjons oppdatering', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Etter transaksjons sletting', - 'webhook_response_TRANSACTIONS' => 'Transaksjonsdetaljer', - 'webhook_response_ACCOUNTS' => 'Kontodetaljer', - 'webhook_response_none_NONE' => 'Ingen detaljer', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspiser', - 'create_new_webhook' => 'Opprett ny Webhook', - 'webhooks_create_breadcrumb' => 'Opprett ny Webhook', - 'webhook_trigger_form_help' => 'Kva for ei hending skal Webhook utløysa', - 'webhook_response_form_help' => 'Kva skal Webhook må senda til URL.', - 'webhook_delivery_form_help' => 'Kva format skal Webhook sende data i.', - 'webhook_active_form_help' => 'Webhook må aktiverast for å fungera.', - 'stored_new_webhook' => 'Lagret ny webhook ":title"', - 'delete_webhook' => 'Slett Webhook', - 'deleted_webhook' => 'Sletta Webhook ":title"', - 'edit_webhook' => 'Rediger Webhook ":title"', - 'updated_webhook' => 'Oppdatert Webhook ":title"', - 'edit_webhook_js' => 'Rediger Webhook "{title}"', - 'show_webhook' => 'Webhook «:title»', - 'webhook_was_triggered' => 'Webhook vart trigget på den angitte transaksjonen. Ver venleg å vent på resultatet.', - 'webhook_messages' => 'Webhook melding', - 'view_message' => 'Vis melding', - 'view_attempts' => 'Vis mislykkede forsøk', - 'message_content_title' => 'Webhook meldingsinnhold', - 'message_content_help' => 'Dette er innhaldet av meldinga som vart sendt (eller forsøkt sendt) med denne Webhook.', - 'attempt_content_title' => 'Webhook forsøk', - 'attempt_content_help' => 'Dette er alle mislykkede forsøk på denne webhook-meldinga som vert sendt til den konfigurerte URL-en. Etter ein tid vil Firefly III slutta å prøve.', - 'no_attempts' => 'Det er ingen mislykkede forsøk. Det er god ting!', - 'webhook_attempt_at' => 'Forsøk på {moment}', - 'logs' => 'Logger', - 'response' => 'Respons', - 'visit_webhook_url' => 'Besøk URL til webhook', - 'reset_webhook_secret' => 'Tilbakestill Webhook hemmelegheit', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") er lagra.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") er oppdatert.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'deaktivert', + 'no_webhook_messages' => 'Ingen Webhook meldingar', + 'webhook_trigger_STORE_TRANSACTION' => 'Etter transaksjons opprettelse', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Etter transaksjons oppdatering', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Etter transaksjons sletting', + 'webhook_response_TRANSACTIONS' => 'Transaksjonsdetaljer', + 'webhook_response_ACCOUNTS' => 'Kontodetaljer', + 'webhook_response_none_NONE' => 'Ingen detaljer', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspiser', + 'create_new_webhook' => 'Opprett ny Webhook', + 'webhooks_create_breadcrumb' => 'Opprett ny Webhook', + 'webhook_trigger_form_help' => 'Kva for ei hending skal Webhook utløysa', + 'webhook_response_form_help' => 'Kva skal Webhook må senda til URL.', + 'webhook_delivery_form_help' => 'Kva format skal Webhook sende data i.', + 'webhook_active_form_help' => 'Webhook må aktiverast for å fungera.', + 'stored_new_webhook' => 'Lagret ny webhook ":title"', + 'delete_webhook' => 'Slett Webhook', + 'deleted_webhook' => 'Sletta Webhook ":title"', + 'edit_webhook' => 'Rediger Webhook ":title"', + 'updated_webhook' => 'Oppdatert Webhook ":title"', + 'edit_webhook_js' => 'Rediger Webhook "{title}"', + 'show_webhook' => 'Webhook «:title»', + 'webhook_was_triggered' => 'Webhook vart trigget på den angitte transaksjonen. Ver venleg å vent på resultatet.', + 'webhook_messages' => 'Webhook melding', + 'view_message' => 'Vis melding', + 'view_attempts' => 'Vis mislykkede forsøk', + 'message_content_title' => 'Webhook meldingsinnhold', + 'message_content_help' => 'Dette er innhaldet av meldinga som vart sendt (eller forsøkt sendt) med denne Webhook.', + 'attempt_content_title' => 'Webhook forsøk', + 'attempt_content_help' => 'Dette er alle mislykkede forsøk på denne webhook-meldinga som vert sendt til den konfigurerte URL-en. Etter ein tid vil Firefly III slutta å prøve.', + 'no_attempts' => 'Det er ingen mislykkede forsøk. Det er god ting!', + 'webhook_attempt_at' => 'Forsøk på {moment}', + 'logs' => 'Logger', + 'response' => 'Respons', + 'visit_webhook_url' => 'Besøk URL til webhook', + 'reset_webhook_secret' => 'Tilbakestill Webhook hemmelegheit', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") er lagra.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") er oppdatert.', // API access - 'authorization_request' => 'Firefly III v:version autorisasjonsspørsmål', - 'authorization_request_intro' => 'Applikasjonen ":client" spør om tilgang til din finansielle administrasjon. Vil du tillata :client slik at han får tilgang til dine data?', - 'authorization_request_site' => 'Du vil verta omdirigert til :url som vil gje tilgang til dine Firefly III data.', - 'authorization_request_invalid' => 'Dette tilgangsspørsmålet er ugyldig. Ver venleg å ikkje følg denne koplinga igjen.', - 'scopes_will_be_able' => 'Denne applikasjonen vil kunne:', - 'button_authorize' => 'Autoriser', - 'none_in_select_list' => '(ingen)', - 'no_piggy_bank' => '(ingen sparegriser)', - 'name_in_currency' => ':name i :currency', - 'paid_in_currency' => 'Betalt i :currency', - 'unpaid_in_currency' => 'Ubetalt i :currency', - 'is_alpha_warning' => 'Du køyrer ein ALPHA-versjon. Vær varsom for feil og problemer.', - 'is_beta_warning' => 'Du køyrer ein BETA-versjon. Vær varsom for bugs og problemer.', - 'all_destination_accounts' => 'Målkonto', - 'all_source_accounts' => 'Kjeldekontoar', - 'back_to_index' => 'Tilbake til index', - 'cant_logout_guard' => 'Firefly III kan ikkje logge deg ut.', - 'internal_reference' => 'Intern referanse', + 'authorization_request' => 'Firefly III v:version autorisasjonsspørsmål', + 'authorization_request_intro' => 'Applikasjonen ":client" spør om tilgang til din finansielle administrasjon. Vil du tillata :client slik at han får tilgang til dine data?', + 'authorization_request_site' => 'Du vil verta omdirigert til :url som vil gje tilgang til dine Firefly III data.', + 'authorization_request_invalid' => 'Dette tilgangsspørsmålet er ugyldig. Ver venleg å ikkje følg denne koplinga igjen.', + 'scopes_will_be_able' => 'Denne applikasjonen vil kunne:', + 'button_authorize' => 'Autoriser', + 'none_in_select_list' => '(ingen)', + 'no_piggy_bank' => '(ingen sparegriser)', + 'name_in_currency' => ':name i :currency', + 'paid_in_currency' => 'Betalt i :currency', + 'unpaid_in_currency' => 'Ubetalt i :currency', + 'is_alpha_warning' => 'Du køyrer ein ALPHA-versjon. Vær varsom for feil og problemer.', + 'is_beta_warning' => 'Du køyrer ein BETA-versjon. Vær varsom for bugs og problemer.', + 'all_destination_accounts' => 'Målkonto', + 'all_source_accounts' => 'Kjeldekontoar', + 'back_to_index' => 'Tilbake til index', + 'cant_logout_guard' => 'Firefly III kan ikkje logge deg ut.', + 'internal_reference' => 'Intern referanse', // check for updates: - 'update_check_title' => 'Sjå etter oppdateringar', - 'admin_update_check_title' => 'Sjå etter oppdateringar automatisk', - 'admin_update_check_explain' => 'Firefly III kan sjekka etter oppdateringar automatisk. Når du aktiverar denne innstillinga, vil systemet kontakta Github for å sjå om ein ny versjon av Firefly III er tilgjengeleg. Når det er kjem ei ny oppdatering, vil du få beskjed. Du kan testa denne beskjeden ved å bruka knappen til høgre. Ver venleg å marker nedanfor om du vil at Firefly III skal sjå etter oppdateringar.', - 'check_for_updates_permission' => 'Firefly III kan sjå etter oppdateringar, men det krev løyvet ditt først. Gå til -administrasjonen for å velga om denne funksjonen skal aktiverast.', - 'updates_ask_me_later' => 'Spør meg senere', - 'updates_do_not_check' => 'Ikke sjå etter oppdateringar', - 'updates_enable_check' => 'Aktiver oppdateringssjekk', - 'admin_update_check_now_title' => 'Sjå etter oppdateringar no', - 'admin_update_check_now_explain' => 'Om du trykker på knappen, vil Firefly III sjå om din noverande versjon er den nyaste.', - 'check_for_updates_button' => 'Sjekk no!', - 'update_new_version_alert' => 'Ein ny versjon av Firefly III er tilgjengeleg. Du køyrer :your_version, den nyaste versjonen er :new_version som vart utgitt den :date.', - 'update_version_beta' => 'Dette er ein BETA versjon, du kan oppleve problemer.', - 'update_version_alpha' => 'Dette er ein ALPHA versjon, du kan oppleve problemer.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Du køyrer :version, som er den nyaste tilgjengelege utgjevinga.', - 'update_newer_version_alert' => 'Du køyrer :your_version, som er nyare enn den nyaste versjonen, :new_version.', - 'update_check_error' => 'Det oppstod ein feil under søk etter oppdatering: :error', - 'unknown_error' => 'Ukjent feil. Beklager det.', - 'disabled_but_check' => 'Du har deaktivert oppdateringssjekk. Ikke gløym å oppdatera sjølv av og til. Tusen takk!', - 'admin_update_channel_title' => 'Oppdater kanal', - 'admin_update_channel_explain' => 'Firefly III har tre oppdaterings "kanaler" som bestemmer kor mykje du ønskar å ligga foran med tanke på funksjoner, forbetringar og feil. Bruk beta-kanalen dersom du er eventyrlysten og "alfa" når du likar å leva farleg.', - 'update_channel_stable' => 'Stable. Alt skal fungera som forventet.', - 'update_channel_beta' => 'Beta. Nye funksjoner, men kan ha enkelte programfeil.', - 'update_channel_alpha' => 'Alfa. Me sleng nye ting inn, og brukar det som fell av.', + 'update_check_title' => 'Sjå etter oppdateringar', + 'admin_update_check_title' => 'Sjå etter oppdateringar automatisk', + 'admin_update_check_explain' => 'Firefly III kan sjekka etter oppdateringar automatisk. Når du aktiverar denne innstillinga, vil systemet kontakta Github for å sjå om ein ny versjon av Firefly III er tilgjengeleg. Når det er kjem ei ny oppdatering, vil du få beskjed. Du kan testa denne beskjeden ved å bruka knappen til høgre. Ver venleg å marker nedanfor om du vil at Firefly III skal sjå etter oppdateringar.', + 'check_for_updates_permission' => 'Firefly III kan sjå etter oppdateringar, men det krev løyvet ditt først. Gå til -administrasjonen for å velga om denne funksjonen skal aktiverast.', + 'updates_ask_me_later' => 'Spør meg senere', + 'updates_do_not_check' => 'Ikke sjå etter oppdateringar', + 'updates_enable_check' => 'Aktiver oppdateringssjekk', + 'admin_update_check_now_title' => 'Sjå etter oppdateringar no', + 'admin_update_check_now_explain' => 'Om du trykker på knappen, vil Firefly III sjå om din noverande versjon er den nyaste.', + 'check_for_updates_button' => 'Sjekk no!', + 'update_new_version_alert' => 'Ein ny versjon av Firefly III er tilgjengeleg. Du køyrer :your_version, den nyaste versjonen er :new_version som vart utgitt den :date.', + 'update_version_beta' => 'Dette er ein BETA versjon, du kan oppleve problemer.', + 'update_version_alpha' => 'Dette er ein ALPHA versjon, du kan oppleve problemer.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Du køyrer :version, som er den nyaste tilgjengelege utgjevinga.', + 'update_newer_version_alert' => 'Du køyrer :your_version, som er nyare enn den nyaste versjonen, :new_version.', + 'update_check_error' => 'Det oppstod ein feil under søk etter oppdatering: :error', + 'unknown_error' => 'Ukjent feil. Beklager det.', + 'disabled_but_check' => 'Du har deaktivert oppdateringssjekk. Ikke gløym å oppdatera sjølv av og til. Tusen takk!', + 'admin_update_channel_title' => 'Oppdater kanal', + 'admin_update_channel_explain' => 'Firefly III har tre oppdaterings "kanaler" som bestemmer kor mykje du ønskar å ligga foran med tanke på funksjoner, forbetringar og feil. Bruk beta-kanalen dersom du er eventyrlysten og "alfa" når du likar å leva farleg.', + 'update_channel_stable' => 'Stable. Alt skal fungera som forventet.', + 'update_channel_beta' => 'Beta. Nye funksjoner, men kan ha enkelte programfeil.', + 'update_channel_alpha' => 'Alfa. Me sleng nye ting inn, og brukar det som fell av.', // search - 'search' => 'Søk', - 'search_query' => 'Spørring', - 'search_found_transactions' => 'Firefly III fant :count transaksjon på :time sekunder|Firefly III fant :count transaksjonar på :time sekunder.', - 'search_found_more_transactions' => 'Firefly III fant meir enn :count transaksjonar på :time sekunder.', - 'search_for_query' => 'Firefly III leter etter transaksjonar med desse ordene: :query', - 'invalid_operators_list' => 'Desse søkeparametrane er ikkje gyldige og vart ignorert.', + 'search' => 'Søk', + 'search_query' => 'Spørring', + 'search_found_transactions' => 'Firefly III fant :count transaksjon på :time sekunder|Firefly III fant :count transaksjonar på :time sekunder.', + 'search_found_more_transactions' => 'Firefly III fant meir enn :count transaksjonar på :time sekunder.', + 'search_for_query' => 'Firefly III leter etter transaksjonar med desse ordene: :query', + 'invalid_operators_list' => 'Desse søkeparametrane er ikkje gyldige og vart ignorert.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Transaksjons dato er ":value"', - 'search_modifier_not_date_on' => 'Transaksjonsdato er ikkje ":value"', - 'search_modifier_reconciled' => 'Transaksjonen er avstemt', - 'search_modifier_not_reconciled' => 'Transaksjonen er ikkje avstemt', - 'search_modifier_id' => 'Transaksjons ID er ":value"', - 'search_modifier_not_id' => 'Transaksjons ID er ikkje ":value"', - 'search_modifier_date_before' => 'Transaksjonsdato er før eller på ":value"', - 'search_modifier_date_after' => 'Transaksjons dato er etter eller på ":value"', - 'search_modifier_external_id_is' => 'Ekstern ID er ":value"', - 'search_modifier_not_external_id_is' => 'Ekstern ID er ikkje ":value"', - 'search_modifier_no_external_url' => 'Transaksjonen har ingen ekstern URL', - 'search_modifier_no_external_id' => 'Transaksjonen har ingen ekstern ID', - 'search_modifier_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', - 'search_modifier_not_any_external_id' => 'Transaksjonen har ingen ekstern ID', - 'search_modifier_any_external_url' => 'Transaksjonen må ha minst ein ekstern URL', - 'search_modifier_any_external_id' => 'Transaksjonen må ha ein (vilkårleg) ekstern ID', - 'search_modifier_not_no_external_url' => 'Transaksjonen må ha ein (vilkårleg) ekstern URL', - 'search_modifier_not_no_external_id' => 'Transaksjonen må ha ein (vilkårleg) ekstern ID', - 'search_modifier_internal_reference_is' => 'Intern referanse er ":value"', - 'search_modifier_not_internal_reference_is' => 'Intern referanse er ikkje ":value"', - 'search_modifier_description_starts' => 'Beskrivinga byrjar med ":value', - 'search_modifier_not_description_starts' => 'Beskrivinga byrjar ikkje med ":value"', - 'search_modifier_description_ends' => 'Beskrivinga sluttar på ":value', - 'search_modifier_not_description_ends' => 'Beskrivinga sluttar ikkje på ":value', - 'search_modifier_description_contains' => 'Beskrivinga inneheld ":value"', - 'search_modifier_not_description_contains' => 'Beskrivinga inneheld ikkje ":value', - 'search_modifier_description_is' => 'Beskrivinga er nøyaktig ":value""', - 'search_modifier_not_description_is' => 'Beskrivinga er nøyaktig ikkje ":value', - 'search_modifier_currency_is' => 'Transaksjon (fremmed) valuta er ":value"', - 'search_modifier_not_currency_is' => 'Transaksjon (fremmed) valuta er ikkje ":value"', - 'search_modifier_foreign_currency_is' => 'Transaksjonen for utenlansk valuta er ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaksjonen fremmed valuta er ikkje ":value"', - 'search_modifier_has_attachments' => 'Transaksjonen må ha minst eit vedlegg', - 'search_modifier_has_no_category' => 'Transaksjonen kan ikkje ha nokon kategori', - 'search_modifier_not_has_no_category' => 'Transaksjonen må ha ein (vilkårleg) kategori', - 'search_modifier_not_has_any_category' => 'Transaksjonen må ikkje ha nokon kategori', - 'search_modifier_has_any_category' => 'Transaksjonen må ha ein (nokre) kategori(ar)', - 'search_modifier_has_no_budget' => 'Transaksjonen må ikkje ha noko budsjett', - 'search_modifier_not_has_any_budget' => 'Transaksjonen må ikkje ha noko budsjett', - 'search_modifier_has_any_budget' => 'Transaksjonen må ha ein (nokre) kategori(ar)', - 'search_modifier_not_has_no_budget' => 'Transaksjonen må ha eit (kva som helst) budsjett', - 'search_modifier_has_no_bill' => 'Transaksjonen må ikkje ha nokon rekning', - 'search_modifier_not_has_no_bill' => 'Transaksjonen må ha ei (vilkårleg) rekning', - 'search_modifier_has_any_bill' => 'Transaksjonen må ha ein eller fleire rekningar', - 'search_modifier_not_has_any_bill' => 'Transaksjonen kan ikkje ha nokon rekning', - 'search_modifier_has_no_tag' => 'Transaksjonen må ikkje ha nøkkelord', - 'search_modifier_not_has_any_tag' => 'Transaksjonen må ikkje ha nøkkelord', - 'search_modifier_not_has_no_tag' => 'Transaksjonen må ha eit (vilkårleg) nøkkelord', - 'search_modifier_has_any_tag' => 'Transaksjonen må ha minst eit (vilkårleg) nøkkelord', - 'search_modifier_notes_contains' => 'Transaksjonsnotata inneheld ":value"', - 'search_modifier_not_notes_contains' => 'Transaksjonsnotata inneheld ikkje ":value', - 'search_modifier_notes_starts' => 'Transaksjons notat inneheld ":value"', - 'search_modifier_not_notes_starts' => 'Transaksjonsnotata byrjar ikkje med ":value', - 'search_modifier_notes_ends' => 'Transaksjons notat ender med ":value"', - 'search_modifier_not_notes_ends' => 'Transaksjonsnotata sluttar ikkje med ":value', - 'search_modifier_notes_is' => 'Transaksjonsnotata er nøyaktig ":value"', - 'search_modifier_not_notes_is' => 'Transaksjonsnotata er nøyaktig ikkje ":value', - 'search_modifier_no_notes' => 'Transaksjonen har ingen notat', - 'search_modifier_not_no_notes' => 'Transaksjonen må ha notat', - 'search_modifier_any_notes' => 'Transaksjonen må ha notat', - 'search_modifier_not_any_notes' => 'Transaksjonen har ingen notat', - 'search_modifier_amount_is' => 'Beløpet er nøyaktig :value', - 'search_modifier_not_amount_is' => 'Beløpet er ikkje :value', - 'search_modifier_amount_less' => 'Beløpet er mindre enn eller lik :value', - 'search_modifier_not_amount_more' => 'Beløpet er mindre enn eller lik :value', - 'search_modifier_amount_more' => 'Beløpet er meir enn eller lik :value', - 'search_modifier_not_amount_less' => 'Beløpet er meir enn eller lik :value', - 'search_modifier_source_account_is' => 'Kjeldekonto er nøyaktig ":value"', - 'search_modifier_not_source_account_is' => 'Kjeldekonto namn er ikkje ":value"', - 'search_modifier_source_account_contains' => 'Kjeldekonto namn inneheld ":value"', - 'search_modifier_not_source_account_contains' => 'Kjeldekonto namn inneheld ikkje ":value"', - 'search_modifier_source_account_starts' => 'Kjeldekonto namn byrjar med ":value"', - 'search_modifier_not_source_account_starts' => 'Kjeldekonto namn byrjar ikkje med ":value"', - 'search_modifier_source_account_ends' => 'Kild konto namn sluttar med ":value"', - 'search_modifier_not_source_account_ends' => 'Kjeldekonto namn sluttar ikkje med ":value"', - 'search_modifier_source_account_id' => 'Kjeldekonto ID er :value', - 'search_modifier_not_source_account_id' => 'Kjeldekonto ID er ikkje :value', - 'search_modifier_source_account_nr_is' => 'Kjeldekontonummer (IBAN) er ":value"', - 'search_modifier_not_source_account_nr_is' => 'Kjeldekonto nummer (IBAN) er ikkje ":value"', - 'search_modifier_source_account_nr_contains' => 'Kjeldekontonummer (IBAN) inneheld ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Kjeldekonto nummer (IBAN) inneheld ikkje ":value"', - 'search_modifier_source_account_nr_starts' => 'Kjeldekontonummer (IBAN) byrjar med ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Kjeldekonto nummer (IBAN) byrjar ikkje med ":value"', - 'search_modifier_source_account_nr_ends' => 'Kjeldekonto nummer (IBAN) sluttar på ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Kjeldekonto nummer (IBAN) sluttar ikkje på ":value"', - 'search_modifier_destination_account_is' => 'Målkontonamn er nøyaktig ":value"', - 'search_modifier_not_destination_account_is' => 'Målkonto namn er ikkje ":value"', - 'search_modifier_destination_account_contains' => 'Målkontonamnet inneheld ":value"', - 'search_modifier_not_destination_account_contains' => 'Målkonto namn inneheld ikkje ":value"', - 'search_modifier_destination_account_starts' => 'Målkontonamnet byrjar med ":value"', - 'search_modifier_not_destination_account_starts' => 'Målkonto namn byrjar ikkje med ":value"', - 'search_modifier_destination_account_ends' => 'Målkonto namn sluttar på ":value"', - 'search_modifier_not_destination_account_ends' => 'Målkonto namn sluttar ikkje på ":value"', - 'search_modifier_destination_account_id' => 'Målkonto ID er :value', - 'search_modifier_not_destination_account_id' => 'Målkonto ID er ikkje :value', - 'search_modifier_destination_is_cash' => 'Målkonto er "(cash)"-kontoen', - 'search_modifier_not_destination_is_cash' => 'Målkonto er ikkje "(cash)"-kontoen', - 'search_modifier_source_is_cash' => 'Kjeldekonto er "(cash)"-kontoen', - 'search_modifier_not_source_is_cash' => 'Kjeldekonto er ikkje "(cash)"-kontoen', - 'search_modifier_destination_account_nr_is' => 'Målkontonummer (IBAN) er ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Målkonto nummer (IBAN) er ":value"', - 'search_modifier_destination_account_nr_contains' => 'Målkontonummer (IBAN) inneheld ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Målkonto nummer (CIBAN) inneheld ikkje ":value"', - 'search_modifier_destination_account_nr_starts' => 'Målkontonummer (CIBAN) byrjar med ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Målkonto nummer (CIBAN) byrjar ikkje med ":value"', - 'search_modifier_destination_account_nr_ends' => 'Kjeldekontonummer (IBAN) sluttar med ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Målkonto nummer (CIBAN) ender ikkje med ":value"', - 'search_modifier_account_id' => 'Kjelde eller målkonto-IDer er: :value', - 'search_modifier_not_account_id' => 'Kjelde eller målkonto ID er/er ikkje: :value', - 'search_modifier_category_is' => 'Kategorien er ":value"', - 'search_modifier_not_category_is' => 'Kategorien er ikkje ":value"', - 'search_modifier_budget_is' => 'Budsjettet er ":value"', - 'search_modifier_not_budget_is' => 'Budsjettet er ikkje ":value"', - 'search_modifier_bill_is' => 'Rekning er ":value"', - 'search_modifier_not_bill_is' => 'Rekning er ikkje ":value"', - 'search_modifier_transaction_type' => 'Transaksjonstype er ":value"', - 'search_modifier_not_transaction_type' => 'Transaksjonstype er ikkje ":value"', - 'search_modifier_tag_is' => 'Nøkkelordet er «:value»', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'Ingen nøkkelord er «:value»', - 'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"', - 'search_modifier_not_date_on_year' => 'Transaksjonen er ikkje i året ":value"', - 'search_modifier_date_on_month' => 'Transaksjonen er i månaden ":value"', - 'search_modifier_not_date_on_month' => 'Transaksjonen er ikkje i måneden ":value"', - 'search_modifier_date_on_day' => 'Transaksjonen er på dagen i måneden ":value"', - 'search_modifier_not_date_on_day' => 'Transaksjonen er ikkje på dagen for månaden ":value"', - 'search_modifier_date_before_year' => 'Transaksjonen er før eller i år ":value"', - 'search_modifier_date_before_month' => 'Transaksjonen er før eller i månaden ":value"', - 'search_modifier_date_before_day' => 'Transaksjonen er før eller på dagen i månaden ":value"', - 'search_modifier_date_after_year' => 'Transaksjonen er i eller etter år ":value"', - 'search_modifier_date_after_month' => 'Transaksjonen er i eller etter månaden ":value"', - 'search_modifier_date_after_day' => 'Transaksjonen er etter eller på dagen i månaden ":value"', + 'search_modifier_date_on' => 'Transaksjons dato er ":value"', + 'search_modifier_not_date_on' => 'Transaksjonsdato er ikkje ":value"', + 'search_modifier_reconciled' => 'Transaksjonen er avstemt', + 'search_modifier_not_reconciled' => 'Transaksjonen er ikkje avstemt', + 'search_modifier_id' => 'Transaksjons ID er ":value"', + 'search_modifier_not_id' => 'Transaksjons ID er ikkje ":value"', + 'search_modifier_date_before' => 'Transaksjonsdato er før eller på ":value"', + 'search_modifier_date_after' => 'Transaksjons dato er etter eller på ":value"', + 'search_modifier_external_id_is' => 'Ekstern ID er ":value"', + 'search_modifier_not_external_id_is' => 'Ekstern ID er ikkje ":value"', + 'search_modifier_no_external_url' => 'Transaksjonen har ingen ekstern URL', + 'search_modifier_no_external_id' => 'Transaksjonen har ingen ekstern ID', + 'search_modifier_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', + 'search_modifier_not_any_external_id' => 'Transaksjonen har ingen ekstern ID', + 'search_modifier_any_external_url' => 'Transaksjonen må ha minst ein ekstern URL', + 'search_modifier_any_external_id' => 'Transaksjonen må ha ein (vilkårleg) ekstern ID', + 'search_modifier_not_no_external_url' => 'Transaksjonen må ha ein (vilkårleg) ekstern URL', + 'search_modifier_not_no_external_id' => 'Transaksjonen må ha ein (vilkårleg) ekstern ID', + 'search_modifier_internal_reference_is' => 'Intern referanse er ":value"', + 'search_modifier_not_internal_reference_is' => 'Intern referanse er ikkje ":value"', + 'search_modifier_description_starts' => 'Beskrivinga byrjar med ":value', + 'search_modifier_not_description_starts' => 'Beskrivinga byrjar ikkje med ":value"', + 'search_modifier_description_ends' => 'Beskrivinga sluttar på ":value', + 'search_modifier_not_description_ends' => 'Beskrivinga sluttar ikkje på ":value', + 'search_modifier_description_contains' => 'Beskrivinga inneheld ":value"', + 'search_modifier_not_description_contains' => 'Beskrivinga inneheld ikkje ":value', + 'search_modifier_description_is' => 'Beskrivinga er nøyaktig ":value""', + 'search_modifier_not_description_is' => 'Beskrivinga er nøyaktig ikkje ":value', + 'search_modifier_currency_is' => 'Transaksjon (fremmed) valuta er ":value"', + 'search_modifier_not_currency_is' => 'Transaksjon (fremmed) valuta er ikkje ":value"', + 'search_modifier_foreign_currency_is' => 'Transaksjonen for utenlansk valuta er ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaksjonen fremmed valuta er ikkje ":value"', + 'search_modifier_has_attachments' => 'Transaksjonen må ha minst eit vedlegg', + 'search_modifier_has_no_category' => 'Transaksjonen kan ikkje ha nokon kategori', + 'search_modifier_not_has_no_category' => 'Transaksjonen må ha ein (vilkårleg) kategori', + 'search_modifier_not_has_any_category' => 'Transaksjonen må ikkje ha nokon kategori', + 'search_modifier_has_any_category' => 'Transaksjonen må ha ein (nokre) kategori(ar)', + 'search_modifier_has_no_budget' => 'Transaksjonen må ikkje ha noko budsjett', + 'search_modifier_not_has_any_budget' => 'Transaksjonen må ikkje ha noko budsjett', + 'search_modifier_has_any_budget' => 'Transaksjonen må ha ein (nokre) kategori(ar)', + 'search_modifier_not_has_no_budget' => 'Transaksjonen må ha eit (kva som helst) budsjett', + 'search_modifier_has_no_bill' => 'Transaksjonen må ikkje ha nokon rekning', + 'search_modifier_not_has_no_bill' => 'Transaksjonen må ha ei (vilkårleg) rekning', + 'search_modifier_has_any_bill' => 'Transaksjonen må ha ein eller fleire rekningar', + 'search_modifier_not_has_any_bill' => 'Transaksjonen kan ikkje ha nokon rekning', + 'search_modifier_has_no_tag' => 'Transaksjonen må ikkje ha nøkkelord', + 'search_modifier_not_has_any_tag' => 'Transaksjonen må ikkje ha nøkkelord', + 'search_modifier_not_has_no_tag' => 'Transaksjonen må ha eit (vilkårleg) nøkkelord', + 'search_modifier_has_any_tag' => 'Transaksjonen må ha minst eit (vilkårleg) nøkkelord', + 'search_modifier_notes_contains' => 'Transaksjonsnotata inneheld ":value"', + 'search_modifier_not_notes_contains' => 'Transaksjonsnotata inneheld ikkje ":value', + 'search_modifier_notes_starts' => 'Transaksjons notat inneheld ":value"', + 'search_modifier_not_notes_starts' => 'Transaksjonsnotata byrjar ikkje med ":value', + 'search_modifier_notes_ends' => 'Transaksjons notat ender med ":value"', + 'search_modifier_not_notes_ends' => 'Transaksjonsnotata sluttar ikkje med ":value', + 'search_modifier_notes_is' => 'Transaksjonsnotata er nøyaktig ":value"', + 'search_modifier_not_notes_is' => 'Transaksjonsnotata er nøyaktig ikkje ":value', + 'search_modifier_no_notes' => 'Transaksjonen har ingen notat', + 'search_modifier_not_no_notes' => 'Transaksjonen må ha notat', + 'search_modifier_any_notes' => 'Transaksjonen må ha notat', + 'search_modifier_not_any_notes' => 'Transaksjonen har ingen notat', + 'search_modifier_amount_is' => 'Beløpet er nøyaktig :value', + 'search_modifier_not_amount_is' => 'Beløpet er ikkje :value', + 'search_modifier_amount_less' => 'Beløpet er mindre enn eller lik :value', + 'search_modifier_not_amount_more' => 'Beløpet er mindre enn eller lik :value', + 'search_modifier_amount_more' => 'Beløpet er meir enn eller lik :value', + 'search_modifier_not_amount_less' => 'Beløpet er meir enn eller lik :value', + 'search_modifier_source_account_is' => 'Kjeldekonto er nøyaktig ":value"', + 'search_modifier_not_source_account_is' => 'Kjeldekonto namn er ikkje ":value"', + 'search_modifier_source_account_contains' => 'Kjeldekonto namn inneheld ":value"', + 'search_modifier_not_source_account_contains' => 'Kjeldekonto namn inneheld ikkje ":value"', + 'search_modifier_source_account_starts' => 'Kjeldekonto namn byrjar med ":value"', + 'search_modifier_not_source_account_starts' => 'Kjeldekonto namn byrjar ikkje med ":value"', + 'search_modifier_source_account_ends' => 'Kild konto namn sluttar med ":value"', + 'search_modifier_not_source_account_ends' => 'Kjeldekonto namn sluttar ikkje med ":value"', + 'search_modifier_source_account_id' => 'Kjeldekonto ID er :value', + 'search_modifier_not_source_account_id' => 'Kjeldekonto ID er ikkje :value', + 'search_modifier_source_account_nr_is' => 'Kjeldekontonummer (IBAN) er ":value"', + 'search_modifier_not_source_account_nr_is' => 'Kjeldekonto nummer (IBAN) er ikkje ":value"', + 'search_modifier_source_account_nr_contains' => 'Kjeldekontonummer (IBAN) inneheld ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Kjeldekonto nummer (IBAN) inneheld ikkje ":value"', + 'search_modifier_source_account_nr_starts' => 'Kjeldekontonummer (IBAN) byrjar med ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Kjeldekonto nummer (IBAN) byrjar ikkje med ":value"', + 'search_modifier_source_account_nr_ends' => 'Kjeldekonto nummer (IBAN) sluttar på ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Kjeldekonto nummer (IBAN) sluttar ikkje på ":value"', + 'search_modifier_destination_account_is' => 'Målkontonamn er nøyaktig ":value"', + 'search_modifier_not_destination_account_is' => 'Målkonto namn er ikkje ":value"', + 'search_modifier_destination_account_contains' => 'Målkontonamnet inneheld ":value"', + 'search_modifier_not_destination_account_contains' => 'Målkonto namn inneheld ikkje ":value"', + 'search_modifier_destination_account_starts' => 'Målkontonamnet byrjar med ":value"', + 'search_modifier_not_destination_account_starts' => 'Målkonto namn byrjar ikkje med ":value"', + 'search_modifier_destination_account_ends' => 'Målkonto namn sluttar på ":value"', + 'search_modifier_not_destination_account_ends' => 'Målkonto namn sluttar ikkje på ":value"', + 'search_modifier_destination_account_id' => 'Målkonto ID er :value', + 'search_modifier_not_destination_account_id' => 'Målkonto ID er ikkje :value', + 'search_modifier_destination_is_cash' => 'Målkonto er "(cash)"-kontoen', + 'search_modifier_not_destination_is_cash' => 'Målkonto er ikkje "(cash)"-kontoen', + 'search_modifier_source_is_cash' => 'Kjeldekonto er "(cash)"-kontoen', + 'search_modifier_not_source_is_cash' => 'Kjeldekonto er ikkje "(cash)"-kontoen', + 'search_modifier_destination_account_nr_is' => 'Målkontonummer (IBAN) er ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Målkonto nummer (IBAN) er ":value"', + 'search_modifier_destination_account_nr_contains' => 'Målkontonummer (IBAN) inneheld ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Målkonto nummer (CIBAN) inneheld ikkje ":value"', + 'search_modifier_destination_account_nr_starts' => 'Målkontonummer (CIBAN) byrjar med ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Målkonto nummer (CIBAN) byrjar ikkje med ":value"', + 'search_modifier_destination_account_nr_ends' => 'Kjeldekontonummer (IBAN) sluttar med ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Målkonto nummer (CIBAN) ender ikkje med ":value"', + 'search_modifier_account_id' => 'Kjelde eller målkonto-IDer er: :value', + 'search_modifier_not_account_id' => 'Kjelde eller målkonto ID er/er ikkje: :value', + 'search_modifier_category_is' => 'Kategorien er ":value"', + 'search_modifier_not_category_is' => 'Kategorien er ikkje ":value"', + 'search_modifier_budget_is' => 'Budsjettet er ":value"', + 'search_modifier_not_budget_is' => 'Budsjettet er ikkje ":value"', + 'search_modifier_bill_is' => 'Rekning er ":value"', + 'search_modifier_not_bill_is' => 'Rekning er ikkje ":value"', + 'search_modifier_transaction_type' => 'Transaksjonstype er ":value"', + 'search_modifier_not_transaction_type' => 'Transaksjonstype er ikkje ":value"', + 'search_modifier_tag_is' => 'Nøkkelordet er «:value»', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'Ingen nøkkelord er «:value»', + 'search_modifier_date_on_year' => 'Transaksjonen er i år ":value"', + 'search_modifier_not_date_on_year' => 'Transaksjonen er ikkje i året ":value"', + 'search_modifier_date_on_month' => 'Transaksjonen er i månaden ":value"', + 'search_modifier_not_date_on_month' => 'Transaksjonen er ikkje i måneden ":value"', + 'search_modifier_date_on_day' => 'Transaksjonen er på dagen i måneden ":value"', + 'search_modifier_not_date_on_day' => 'Transaksjonen er ikkje på dagen for månaden ":value"', + 'search_modifier_date_before_year' => 'Transaksjonen er før eller i år ":value"', + 'search_modifier_date_before_month' => 'Transaksjonen er før eller i månaden ":value"', + 'search_modifier_date_before_day' => 'Transaksjonen er før eller på dagen i månaden ":value"', + 'search_modifier_date_after_year' => 'Transaksjonen er i eller etter år ":value"', + 'search_modifier_date_after_month' => 'Transaksjonen er i eller etter månaden ":value"', + 'search_modifier_date_after_day' => 'Transaksjonen er etter eller på dagen i månaden ":value"', // new - 'search_modifier_tag_is_not' => 'Ingen nøkkelord er «:value»', - 'search_modifier_not_tag_is_not' => 'Nøkkelordet er «:value»', - 'search_modifier_account_is' => 'Alle kontoane er ":value"', - 'search_modifier_not_account_is' => 'Ingen av kontoane er ":value"', - 'search_modifier_account_contains' => 'Alle kontoane inneheld ":value"', - 'search_modifier_not_account_contains' => 'Ingen av kontoane inneheld ":value"', - 'search_modifier_account_ends' => 'Alle kontoane sluttar med ":value"', - 'search_modifier_not_account_ends' => 'Ingen av kontoane sluttar med ":value"', - 'search_modifier_account_starts' => 'Alle kontoane byrjar med ":value"', - 'search_modifier_not_account_starts' => 'Ingen av kontoane byrjar med ":value"', - 'search_modifier_account_nr_is' => 'Alle kontonummer / IBAN er ":value"', - 'search_modifier_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":value"', - 'search_modifier_account_nr_contains' => 'Alle kontonummer / IBAN inneheld ":value"', - 'search_modifier_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneheld ":value"', - 'search_modifier_account_nr_ends' => 'Alle kontonummer / IBAN sluttar med ":value"', - 'search_modifier_not_account_nr_ends' => 'Ingen kontonummer / IBAN sluttar med ":value"', - 'search_modifier_account_nr_starts' => 'Alle kontonummer / IBAN byrjar med ":value"', - 'search_modifier_not_account_nr_starts' => 'Ingen kontonummer / IBAN byrjar med ":value"', - 'search_modifier_category_contains' => 'Kategorien inneheld ":value"', - 'search_modifier_not_category_contains' => 'Kategorien inneheld ikkje ":value"', - 'search_modifier_category_ends' => 'Kategorien sluttar på ":value"', - 'search_modifier_not_category_ends' => 'Kategorien sluttar ikkje på ":value"', - 'search_modifier_category_starts' => 'Kategorien byrjar med ":value"', - 'search_modifier_not_category_starts' => 'Kategorien byrjar ikkje med ":value"', - 'search_modifier_budget_contains' => 'Budsjettet inneheld ":value"', - 'search_modifier_not_budget_contains' => 'Budsjettet inneheld ikkje ":value"', - 'search_modifier_budget_ends' => 'Budsjettet sluttar med ":value"', - 'search_modifier_not_budget_ends' => 'Budsjettet sluttar ikkje på ":value"', - 'search_modifier_budget_starts' => 'Budsjettet byrjar med ":value"', - 'search_modifier_not_budget_starts' => 'Budsjettet byrjar ikkje med ":value"', - 'search_modifier_bill_contains' => 'Rekninga inneheld ":value"', - 'search_modifier_not_bill_contains' => 'Rekninga inneheld ikkje ":value"', - 'search_modifier_bill_ends' => 'Rekning sluttar med ":value"', - 'search_modifier_not_bill_ends' => 'Rekning sluttar ikkje på ":value"', - 'search_modifier_bill_starts' => 'Rekning byrjar med ":value"', - 'search_modifier_not_bill_starts' => 'Rekninga byrjar ikkje med ":value"', - 'search_modifier_external_id_contains' => 'Ekstern ID inneheld ":value"', - 'search_modifier_not_external_id_contains' => 'Ekstern ID inneheld ikkje ":value"', - 'search_modifier_external_id_ends' => 'Ekstern ID sluttar med ":value"', - 'search_modifier_not_external_id_ends' => 'Ekstern ID sluttar ikkje med ":value"', - 'search_modifier_external_id_starts' => 'Ekstern ID byrjar med ":value"', - 'search_modifier_not_external_id_starts' => 'Ekstern ID byrjar ikkje med ":value"', - 'search_modifier_internal_reference_contains' => 'Intern referanse inneheld ":value"', - 'search_modifier_not_internal_reference_contains' => 'Intern referanse inneheld ikkje ":value"', - 'search_modifier_internal_reference_ends' => 'Intern referanse sluttar med ":value"', - 'search_modifier_internal_reference_starts' => 'Intern referanse byrjar med ":value"', - 'search_modifier_not_internal_reference_ends' => 'Intern referanse sluttar ikkje med ":value"', - 'search_modifier_not_internal_reference_starts' => 'Intern referanse byrjar ikkje med ":value"', - 'search_modifier_external_url_is' => 'Ekstern URL er ":value"', - 'search_modifier_not_external_url_is' => 'Ekstern URL er ikkje ":value"', - 'search_modifier_external_url_contains' => 'Ekstern URL inneheld ":value"', - 'search_modifier_not_external_url_contains' => 'Ekstern URL inneheld ikkje ":value"', - 'search_modifier_external_url_ends' => 'Ekstern URL sluttar med ":value"', - 'search_modifier_not_external_url_ends' => 'Ekstern URL sluttar ikkje med ":value"', - 'search_modifier_external_url_starts' => 'Ekstern URL byrjar med ":value"', - 'search_modifier_not_external_url_starts' => 'Ekstern URL byrjar ikkje med ":value"', - 'search_modifier_has_no_attachments' => 'Transaksjonen har ingen vedlegg', - 'search_modifier_not_has_no_attachments' => 'Transaksjonen har vedlegg', - 'search_modifier_not_has_attachments' => 'Transaksjonen har ingen vedlegg', - 'search_modifier_account_is_cash' => 'Alle konti er "(cash)"-konto.', - 'search_modifier_not_account_is_cash' => 'Ingen konti er "(cash)"-kontoen.', - 'search_modifier_journal_id' => 'Journal ID er ":value"', - 'search_modifier_not_journal_id' => 'Journal ID er ikkje ":value"', - 'search_modifier_recurrence_id' => 'Den gjentakande transaksjons ID er ":value"', - 'search_modifier_not_recurrence_id' => 'Den gjentakande transaksjons ID er ikkje ":value"', - 'search_modifier_foreign_amount_is' => 'Det utenlandske beløpet er ":value"', - 'search_modifier_not_foreign_amount_is' => 'Det utenlandske beløpet er ikkje ":value"', - 'search_modifier_foreign_amount_less' => 'Det utenlandske beløpet er mindre enn ":value"', - 'search_modifier_not_foreign_amount_more' => 'Det utenlandske beløpet er mindre enn ":value"', - 'search_modifier_not_foreign_amount_less' => 'Det utenlandske beløpet er meir enn ":value"', - 'search_modifier_foreign_amount_more' => 'Det utenlandske beløpet er meir enn ":value"', - 'search_modifier_exists' => 'Transaksjon eksisterer (vilkårleg transaksjon)', - 'search_modifier_not_exists' => 'Transaksjonen eksisterer ikkje (alle transaksjonar)', + 'search_modifier_tag_is_not' => 'Ingen nøkkelord er «:value»', + 'search_modifier_not_tag_is_not' => 'Nøkkelordet er «:value»', + 'search_modifier_account_is' => 'Alle kontoane er ":value"', + 'search_modifier_not_account_is' => 'Ingen av kontoane er ":value"', + 'search_modifier_account_contains' => 'Alle kontoane inneheld ":value"', + 'search_modifier_not_account_contains' => 'Ingen av kontoane inneheld ":value"', + 'search_modifier_account_ends' => 'Alle kontoane sluttar med ":value"', + 'search_modifier_not_account_ends' => 'Ingen av kontoane sluttar med ":value"', + 'search_modifier_account_starts' => 'Alle kontoane byrjar med ":value"', + 'search_modifier_not_account_starts' => 'Ingen av kontoane byrjar med ":value"', + 'search_modifier_account_nr_is' => 'Alle kontonummer / IBAN er ":value"', + 'search_modifier_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":value"', + 'search_modifier_account_nr_contains' => 'Alle kontonummer / IBAN inneheld ":value"', + 'search_modifier_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneheld ":value"', + 'search_modifier_account_nr_ends' => 'Alle kontonummer / IBAN sluttar med ":value"', + 'search_modifier_not_account_nr_ends' => 'Ingen kontonummer / IBAN sluttar med ":value"', + 'search_modifier_account_nr_starts' => 'Alle kontonummer / IBAN byrjar med ":value"', + 'search_modifier_not_account_nr_starts' => 'Ingen kontonummer / IBAN byrjar med ":value"', + 'search_modifier_category_contains' => 'Kategorien inneheld ":value"', + 'search_modifier_not_category_contains' => 'Kategorien inneheld ikkje ":value"', + 'search_modifier_category_ends' => 'Kategorien sluttar på ":value"', + 'search_modifier_not_category_ends' => 'Kategorien sluttar ikkje på ":value"', + 'search_modifier_category_starts' => 'Kategorien byrjar med ":value"', + 'search_modifier_not_category_starts' => 'Kategorien byrjar ikkje med ":value"', + 'search_modifier_budget_contains' => 'Budsjettet inneheld ":value"', + 'search_modifier_not_budget_contains' => 'Budsjettet inneheld ikkje ":value"', + 'search_modifier_budget_ends' => 'Budsjettet sluttar med ":value"', + 'search_modifier_not_budget_ends' => 'Budsjettet sluttar ikkje på ":value"', + 'search_modifier_budget_starts' => 'Budsjettet byrjar med ":value"', + 'search_modifier_not_budget_starts' => 'Budsjettet byrjar ikkje med ":value"', + 'search_modifier_bill_contains' => 'Rekninga inneheld ":value"', + 'search_modifier_not_bill_contains' => 'Rekninga inneheld ikkje ":value"', + 'search_modifier_bill_ends' => 'Rekning sluttar med ":value"', + 'search_modifier_not_bill_ends' => 'Rekning sluttar ikkje på ":value"', + 'search_modifier_bill_starts' => 'Rekning byrjar med ":value"', + 'search_modifier_not_bill_starts' => 'Rekninga byrjar ikkje med ":value"', + 'search_modifier_external_id_contains' => 'Ekstern ID inneheld ":value"', + 'search_modifier_not_external_id_contains' => 'Ekstern ID inneheld ikkje ":value"', + 'search_modifier_external_id_ends' => 'Ekstern ID sluttar med ":value"', + 'search_modifier_not_external_id_ends' => 'Ekstern ID sluttar ikkje med ":value"', + 'search_modifier_external_id_starts' => 'Ekstern ID byrjar med ":value"', + 'search_modifier_not_external_id_starts' => 'Ekstern ID byrjar ikkje med ":value"', + 'search_modifier_internal_reference_contains' => 'Intern referanse inneheld ":value"', + 'search_modifier_not_internal_reference_contains' => 'Intern referanse inneheld ikkje ":value"', + 'search_modifier_internal_reference_ends' => 'Intern referanse sluttar med ":value"', + 'search_modifier_internal_reference_starts' => 'Intern referanse byrjar med ":value"', + 'search_modifier_not_internal_reference_ends' => 'Intern referanse sluttar ikkje med ":value"', + 'search_modifier_not_internal_reference_starts' => 'Intern referanse byrjar ikkje med ":value"', + 'search_modifier_external_url_is' => 'Ekstern URL er ":value"', + 'search_modifier_not_external_url_is' => 'Ekstern URL er ikkje ":value"', + 'search_modifier_external_url_contains' => 'Ekstern URL inneheld ":value"', + 'search_modifier_not_external_url_contains' => 'Ekstern URL inneheld ikkje ":value"', + 'search_modifier_external_url_ends' => 'Ekstern URL sluttar med ":value"', + 'search_modifier_not_external_url_ends' => 'Ekstern URL sluttar ikkje med ":value"', + 'search_modifier_external_url_starts' => 'Ekstern URL byrjar med ":value"', + 'search_modifier_not_external_url_starts' => 'Ekstern URL byrjar ikkje med ":value"', + 'search_modifier_has_no_attachments' => 'Transaksjonen har ingen vedlegg', + 'search_modifier_not_has_no_attachments' => 'Transaksjonen har vedlegg', + 'search_modifier_not_has_attachments' => 'Transaksjonen har ingen vedlegg', + 'search_modifier_account_is_cash' => 'Alle konti er "(cash)"-konto.', + 'search_modifier_not_account_is_cash' => 'Ingen konti er "(cash)"-kontoen.', + 'search_modifier_journal_id' => 'Journal ID er ":value"', + 'search_modifier_not_journal_id' => 'Journal ID er ikkje ":value"', + 'search_modifier_recurrence_id' => 'Den gjentakande transaksjons ID er ":value"', + 'search_modifier_not_recurrence_id' => 'Den gjentakande transaksjons ID er ikkje ":value"', + 'search_modifier_foreign_amount_is' => 'Det utenlandske beløpet er ":value"', + 'search_modifier_not_foreign_amount_is' => 'Det utenlandske beløpet er ikkje ":value"', + 'search_modifier_foreign_amount_less' => 'Det utenlandske beløpet er mindre enn ":value"', + 'search_modifier_not_foreign_amount_more' => 'Det utenlandske beløpet er mindre enn ":value"', + 'search_modifier_not_foreign_amount_less' => 'Det utenlandske beløpet er meir enn ":value"', + 'search_modifier_foreign_amount_more' => 'Det utenlandske beløpet er meir enn ":value"', + 'search_modifier_exists' => 'Transaksjon eksisterer (vilkårleg transaksjon)', + 'search_modifier_not_exists' => 'Transaksjonen eksisterer ikkje (alle transaksjonar)', // date fields - 'search_modifier_interest_date_on' => 'Transaksjonens rentedato er ":value"', - 'search_modifier_not_interest_date_on' => 'Transaksjonens rentedato er ikkje ":value"', - 'search_modifier_interest_date_on_year' => 'Transaksjonsrentens dato er i år ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaksjonens rentedato er ikkje i år ":value"', - 'search_modifier_interest_date_on_month' => 'Transaksjonsrentens dato er i månaden ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaksjonens rentedato er ikkje i månaden ":value"', - 'search_modifier_interest_date_on_day' => 'Transaksjonsrentens dato er på dagen i månaden ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaksjonens rentedato er ikkje på dag i månaden ":value"', - 'search_modifier_interest_date_before_year' => 'Transaksjonsrentens dato er før eller i år ":value"', - 'search_modifier_interest_date_before_month' => 'Transaksjonsrentens dato er før eller i månaden ":value"', - 'search_modifier_interest_date_before_day' => 'Transaksjonsrentenedato er før eller på dagen i månaden ":value', - 'search_modifier_interest_date_after_year' => 'Transaksjonsrentens dato er etter eller i år ":value"', - 'search_modifier_interest_date_after_month' => 'Transaksjonsrentens dato er etter eller i månaden ":value"', - 'search_modifier_interest_date_after_day' => 'Transaksjonsrentens dato er etter eller på dagen i månaden ":value', - 'search_modifier_book_date_on_year' => 'Bokføringsdato for transaksjonen er i år ":value"', - 'search_modifier_book_date_on_month' => 'Bokføringsdato for transaksjonen er i månaden ":value"', - 'search_modifier_book_date_on_day' => 'Bokføringsdato for transaksjonen er på dagen i månaden ":value"', - 'search_modifier_not_book_date_on_year' => 'Bokføringsdato for transaksjonen er ikkje i år ":value"', - 'search_modifier_not_book_date_on_month' => 'Bokføringsdato for transaksjonen er ikkje i månaden ":value"', - 'search_modifier_not_book_date_on_day' => 'Bokføringsdato for transaksjonen er ikkje på dag i månaden ":value"', - 'search_modifier_book_date_before_year' => 'Transaksjons bokdato er før eller i år ":value"', - 'search_modifier_book_date_before_month' => 'Bokføringsdato for transaksjonen er før eller i månaden ":value"', - 'search_modifier_book_date_before_day' => 'Bokføringsdato for transaksjonen er før eller på dagen i månaden ":value"', - 'search_modifier_book_date_after_year' => 'Bokføringsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_book_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i månaden ":value"', - 'search_modifier_book_date_after_day' => 'Bokføringsdato for transaksjonen er etter eller på dagen i månaden ":value"', - 'search_modifier_process_date_on_year' => 'Transaksjonsprosessdato er i år ":value"', - 'search_modifier_process_date_on_month' => 'Transaksjonsprosessdato er i månaden ":value"', - 'search_modifier_process_date_on_day' => 'Transaksjonsprosessdato er på dagen i månaden ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaksjonens utførelsesdato er ikkje i år ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaksjonens utførelsesdato er ikkje i månaden ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaksjonen er ikkje på dagen for månaden ":value', - 'search_modifier_process_date_before_year' => 'Transaksjonsprosessdato er før eller i år ":value"', - 'search_modifier_process_date_before_month' => 'Transaksjonsdato er før eller i månaden ":value"', - 'search_modifier_process_date_before_day' => 'Transaksjonsprosessdato er før eller på dagen i månaden ":value"', - 'search_modifier_process_date_after_year' => 'Transaksjonsprosessdato er etter eller i år ":value"', - 'search_modifier_process_date_after_month' => 'Transaksjonsprosessdato er etter eller i månaden ":value"', - 'search_modifier_process_date_after_day' => 'Transaksjonsprosessdato er etter eller på dagen i månaden ":value', - 'search_modifier_due_date_on_year' => 'Forfallsdato for transaksjonen er i år ":value"', - 'search_modifier_due_date_on_month' => 'Forfallsdato for transaksjonen er i månaden ":value"', - 'search_modifier_due_date_on_day' => 'Forfallsdato for transaksjonen er på dagen i månaden ":value"', - 'search_modifier_not_due_date_on_year' => 'Forfallsdato for transaksjonen er ikkje i år ":value"', - 'search_modifier_not_due_date_on_month' => 'Forfallsdato for transaksjonen er ikkje i månaden ":value"', - 'search_modifier_not_due_date_on_day' => 'Forfallsdato for transaksjonen er ikkje på dag i månaden ":value"', - 'search_modifier_due_date_before_year' => 'Forfallsdato for transaksjonen er før eller i år ":value"', - 'search_modifier_due_date_before_month' => 'Forfallsdato for transaksjonen er før eller i månaden ":value"', - 'search_modifier_due_date_before_day' => 'Forfallsdato for transaksjonen er før eller på dagen i måneden ":value"', - 'search_modifier_due_date_after_year' => 'Forfallsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_due_date_after_month' => 'Forfallsdato for transaksjonen er etter eller i månaden ":value"', - 'search_modifier_due_date_after_day' => 'Forfallsdato for transaksjonen er etter eller på dagen i månaden ":value', - 'search_modifier_payment_date_on_year' => 'Betalingsdato i år ":value"', - 'search_modifier_payment_date_on_month' => 'Betalingsdato for transaksjonen er i månaden ":value"', - 'search_modifier_payment_date_on_day' => 'Betalingsdato for transaksjonen er på dagen i månaden ":value"', - 'search_modifier_not_payment_date_on_year' => 'Betalingsdato for transaksjonen er ikkje i år ":value"', - 'search_modifier_not_payment_date_on_month' => 'Betalingsdato for transaksjonen er ikkje i månaden ":value"', - 'search_modifier_not_payment_date_on_day' => 'Betalingsdato for transaksjonen er ikkje på dagen i månaden ":value"', - 'search_modifier_payment_date_before_year' => 'Betalingsdato for transaksjonen er før eller i år ":value"', - 'search_modifier_payment_date_before_month' => 'Betalingsdato for transaksjonen er før eller i månaden ":value"', - 'search_modifier_payment_date_before_day' => 'Betalingsdato for transaksjonen er før eller på dagen i månaden ":value"', - 'search_modifier_payment_date_after_year' => 'Betalingsdato for transaksjonen er etter eller i år ":value"', - 'search_modifier_payment_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i månaden ":value"', - 'search_modifier_payment_date_after_day' => 'Betalingsdato for transaksjonen er etter eller på dagen i månaden ":value"', - 'search_modifier_invoice_date_on_year' => 'Fakturadato for transaksjon er i år ":value"', - 'search_modifier_invoice_date_on_month' => 'Fakturadato for transaksjon er i månaden ":value"', - 'search_modifier_invoice_date_on_day' => 'Fakturadato for transaksjon er på dagen i månaden ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Fakturadato for transaksjonen er ikkje i år ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Fakturadato for transaksjonen er ikkje i månaden ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Fakturadato for transaksjon er ikkje på dag i månaden ":value"', - 'search_modifier_invoice_date_before_year' => 'Fakturadato for transaksjon er før eller i år ":value"', - 'search_modifier_invoice_date_before_month' => 'Fakturadato for transaksjon er før eller i månaden ":value"', - 'search_modifier_invoice_date_before_day' => 'Fakturadato for transaksjon er før eller på dagen i månaden ":value"', - 'search_modifier_invoice_date_after_year' => 'Fakturadato for transaksjon er etter eller i år ":value"', - 'search_modifier_invoice_date_after_month' => 'Fakturadato for transaksjon er etter eller i månaden ":value"', - 'search_modifier_invoice_date_after_day' => 'Fakturadato for transaksjon er etter eller på dagen i månaden ":value"', + 'search_modifier_interest_date_on' => 'Transaksjonens rentedato er ":value"', + 'search_modifier_not_interest_date_on' => 'Transaksjonens rentedato er ikkje ":value"', + 'search_modifier_interest_date_on_year' => 'Transaksjonsrentens dato er i år ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaksjonens rentedato er ikkje i år ":value"', + 'search_modifier_interest_date_on_month' => 'Transaksjonsrentens dato er i månaden ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaksjonens rentedato er ikkje i månaden ":value"', + 'search_modifier_interest_date_on_day' => 'Transaksjonsrentens dato er på dagen i månaden ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaksjonens rentedato er ikkje på dag i månaden ":value"', + 'search_modifier_interest_date_before_year' => 'Transaksjonsrentens dato er før eller i år ":value"', + 'search_modifier_interest_date_before_month' => 'Transaksjonsrentens dato er før eller i månaden ":value"', + 'search_modifier_interest_date_before_day' => 'Transaksjonsrentenedato er før eller på dagen i månaden ":value', + 'search_modifier_interest_date_after_year' => 'Transaksjonsrentens dato er etter eller i år ":value"', + 'search_modifier_interest_date_after_month' => 'Transaksjonsrentens dato er etter eller i månaden ":value"', + 'search_modifier_interest_date_after_day' => 'Transaksjonsrentens dato er etter eller på dagen i månaden ":value', + 'search_modifier_book_date_on_year' => 'Bokføringsdato for transaksjonen er i år ":value"', + 'search_modifier_book_date_on_month' => 'Bokføringsdato for transaksjonen er i månaden ":value"', + 'search_modifier_book_date_on_day' => 'Bokføringsdato for transaksjonen er på dagen i månaden ":value"', + 'search_modifier_not_book_date_on_year' => 'Bokføringsdato for transaksjonen er ikkje i år ":value"', + 'search_modifier_not_book_date_on_month' => 'Bokføringsdato for transaksjonen er ikkje i månaden ":value"', + 'search_modifier_not_book_date_on_day' => 'Bokføringsdato for transaksjonen er ikkje på dag i månaden ":value"', + 'search_modifier_book_date_before_year' => 'Transaksjons bokdato er før eller i år ":value"', + 'search_modifier_book_date_before_month' => 'Bokføringsdato for transaksjonen er før eller i månaden ":value"', + 'search_modifier_book_date_before_day' => 'Bokføringsdato for transaksjonen er før eller på dagen i månaden ":value"', + 'search_modifier_book_date_after_year' => 'Bokføringsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_book_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i månaden ":value"', + 'search_modifier_book_date_after_day' => 'Bokføringsdato for transaksjonen er etter eller på dagen i månaden ":value"', + 'search_modifier_process_date_on_year' => 'Transaksjonsprosessdato er i år ":value"', + 'search_modifier_process_date_on_month' => 'Transaksjonsprosessdato er i månaden ":value"', + 'search_modifier_process_date_on_day' => 'Transaksjonsprosessdato er på dagen i månaden ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaksjonens utførelsesdato er ikkje i år ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaksjonens utførelsesdato er ikkje i månaden ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaksjonen er ikkje på dagen for månaden ":value', + 'search_modifier_process_date_before_year' => 'Transaksjonsprosessdato er før eller i år ":value"', + 'search_modifier_process_date_before_month' => 'Transaksjonsdato er før eller i månaden ":value"', + 'search_modifier_process_date_before_day' => 'Transaksjonsprosessdato er før eller på dagen i månaden ":value"', + 'search_modifier_process_date_after_year' => 'Transaksjonsprosessdato er etter eller i år ":value"', + 'search_modifier_process_date_after_month' => 'Transaksjonsprosessdato er etter eller i månaden ":value"', + 'search_modifier_process_date_after_day' => 'Transaksjonsprosessdato er etter eller på dagen i månaden ":value', + 'search_modifier_due_date_on_year' => 'Forfallsdato for transaksjonen er i år ":value"', + 'search_modifier_due_date_on_month' => 'Forfallsdato for transaksjonen er i månaden ":value"', + 'search_modifier_due_date_on_day' => 'Forfallsdato for transaksjonen er på dagen i månaden ":value"', + 'search_modifier_not_due_date_on_year' => 'Forfallsdato for transaksjonen er ikkje i år ":value"', + 'search_modifier_not_due_date_on_month' => 'Forfallsdato for transaksjonen er ikkje i månaden ":value"', + 'search_modifier_not_due_date_on_day' => 'Forfallsdato for transaksjonen er ikkje på dag i månaden ":value"', + 'search_modifier_due_date_before_year' => 'Forfallsdato for transaksjonen er før eller i år ":value"', + 'search_modifier_due_date_before_month' => 'Forfallsdato for transaksjonen er før eller i månaden ":value"', + 'search_modifier_due_date_before_day' => 'Forfallsdato for transaksjonen er før eller på dagen i måneden ":value"', + 'search_modifier_due_date_after_year' => 'Forfallsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_due_date_after_month' => 'Forfallsdato for transaksjonen er etter eller i månaden ":value"', + 'search_modifier_due_date_after_day' => 'Forfallsdato for transaksjonen er etter eller på dagen i månaden ":value', + 'search_modifier_payment_date_on_year' => 'Betalingsdato i år ":value"', + 'search_modifier_payment_date_on_month' => 'Betalingsdato for transaksjonen er i månaden ":value"', + 'search_modifier_payment_date_on_day' => 'Betalingsdato for transaksjonen er på dagen i månaden ":value"', + 'search_modifier_not_payment_date_on_year' => 'Betalingsdato for transaksjonen er ikkje i år ":value"', + 'search_modifier_not_payment_date_on_month' => 'Betalingsdato for transaksjonen er ikkje i månaden ":value"', + 'search_modifier_not_payment_date_on_day' => 'Betalingsdato for transaksjonen er ikkje på dagen i månaden ":value"', + 'search_modifier_payment_date_before_year' => 'Betalingsdato for transaksjonen er før eller i år ":value"', + 'search_modifier_payment_date_before_month' => 'Betalingsdato for transaksjonen er før eller i månaden ":value"', + 'search_modifier_payment_date_before_day' => 'Betalingsdato for transaksjonen er før eller på dagen i månaden ":value"', + 'search_modifier_payment_date_after_year' => 'Betalingsdato for transaksjonen er etter eller i år ":value"', + 'search_modifier_payment_date_after_month' => 'Bokføringsdato for transaksjonen er etter eller i månaden ":value"', + 'search_modifier_payment_date_after_day' => 'Betalingsdato for transaksjonen er etter eller på dagen i månaden ":value"', + 'search_modifier_invoice_date_on_year' => 'Fakturadato for transaksjon er i år ":value"', + 'search_modifier_invoice_date_on_month' => 'Fakturadato for transaksjon er i månaden ":value"', + 'search_modifier_invoice_date_on_day' => 'Fakturadato for transaksjon er på dagen i månaden ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Fakturadato for transaksjonen er ikkje i år ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Fakturadato for transaksjonen er ikkje i månaden ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Fakturadato for transaksjon er ikkje på dag i månaden ":value"', + 'search_modifier_invoice_date_before_year' => 'Fakturadato for transaksjon er før eller i år ":value"', + 'search_modifier_invoice_date_before_month' => 'Fakturadato for transaksjon er før eller i månaden ":value"', + 'search_modifier_invoice_date_before_day' => 'Fakturadato for transaksjon er før eller på dagen i månaden ":value"', + 'search_modifier_invoice_date_after_year' => 'Fakturadato for transaksjon er etter eller i år ":value"', + 'search_modifier_invoice_date_after_month' => 'Fakturadato for transaksjon er etter eller i månaden ":value"', + 'search_modifier_invoice_date_after_day' => 'Fakturadato for transaksjon er etter eller på dagen i månaden ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaksjonen vart oppdatert i år ":value"', - 'search_modifier_updated_at_on_month' => 'Transaksjonen vart oppdatert i månaden ":value"', - 'search_modifier_updated_at_on_day' => 'Transaksjonen vart sist oppdatert på dagen i månaden ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaksjonen vart ikkje oppdatert sist i år ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaksjonen vart ikkje sist oppdatert i månaden ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaksjonen vart ikkje sist oppdatert på dag i månaden ":value"', - 'search_modifier_updated_at_before_year' => 'Transaksjonen vart sist oppdatert i eller før år ":value"', - 'search_modifier_updated_at_before_month' => 'Transaksjonen vart sist oppdatert i eller før månaden ":value"', - 'search_modifier_updated_at_before_day' => 'Transaksjonen vart sist oppdatert på eller før dag i månaden ":value"', - 'search_modifier_updated_at_after_year' => 'Transaksjonen vart sist oppdatert i eller etter år ":value"', - 'search_modifier_updated_at_after_month' => 'Transaksjonen vart sist oppdatert i eller etter månaden ":value"', - 'search_modifier_updated_at_after_day' => 'Transaksjonen vart sist oppdatert på eller etter ein dag i månaden ":value"', - 'search_modifier_created_at_on_year' => 'Transaksjonen vart oppretta i år ":value', - 'search_modifier_created_at_on_month' => 'Transaksjonen vart oppretta i månaden ":value"', - 'search_modifier_created_at_on_day' => 'Transaksjonen vart oppretta på dag i månaden ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaksjonen vart ikkje oppretta i år ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaksjonen vart ikkje oppretta i månaden ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaksjonen vart ikkje oppretta på dag i måneden ":value"', - 'search_modifier_created_at_before_year' => 'Transaksjonen vart oppretta i eller før år ":value"', - 'search_modifier_created_at_before_month' => 'Transaksjonen vart oppretta i eller før månaden ":value"', - 'search_modifier_created_at_before_day' => 'Transaksjonen vart oppretta på eller før dag i måneden ":value"', - 'search_modifier_created_at_after_year' => 'Transaksjonen vart oppretta i eller etter år ":value"', - 'search_modifier_created_at_after_month' => 'Transaksjonen vart oppretta i eller etter månaden ":value"', - 'search_modifier_created_at_after_day' => 'Transaksjonen vart oppretta på eller etter dag i måneden ":value', - 'search_modifier_interest_date_before' => 'Transaksjonsrentens dato er på eller før ":value"', - 'search_modifier_interest_date_after' => 'Transaksjonens rentedato er på eller etter ":value"', - 'search_modifier_book_date_on' => 'Bokføringsdato for transaksjonen er ":value"', - 'search_modifier_not_book_date_on' => 'Bokføringsdato for transaksjonen er ikkje ":value"', - 'search_modifier_book_date_before' => 'Bokføringsdato for transaksjonen er på eller før ":value"', - 'search_modifier_book_date_after' => 'Bokføringsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_process_date_on' => 'Transaksjonens utførelsesdato er ":value"', - 'search_modifier_not_process_date_on' => 'Transaksjonens utførelsesdato er ikkje ":value"', - 'search_modifier_process_date_before' => 'Transaksjonens utførelsesdato er på eller før ":value"', - 'search_modifier_process_date_after' => 'Transaksjonens utførelsesdato er på eller etter ":value"', - 'search_modifier_due_date_on' => 'Forfallsdato for transaksjonen er ":value"', - 'search_modifier_not_due_date_on' => 'Forfallsdato for transaksjonen er ikkje ":value"', - 'search_modifier_due_date_before' => 'Forfallsdato for transaksjonen er på eller før ":value"', - 'search_modifier_due_date_after' => 'Forfallsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_payment_date_on' => 'Betalingsdato for transaksjonen er ":value"', - 'search_modifier_not_payment_date_on' => 'Betalingsdato for transaksjonen er ikkje ":value"', - 'search_modifier_payment_date_before' => 'Betalingsdato for transaksjonen er på eller før ":value"', - 'search_modifier_payment_date_after' => 'Betalingsdato for transaksjonen er på eller etter ":value"', - 'search_modifier_invoice_date_on' => 'Fakturadato for transaksjon er på ":value"', - 'search_modifier_not_invoice_date_on' => 'Fakturadato for transaksjon er ikkje ":value"', - 'search_modifier_invoice_date_before' => 'Fakturadato for transaksjon er på eller før ":value"', - 'search_modifier_invoice_date_after' => 'Fakturadato for transaksjon er på eller etter ":value"', - 'search_modifier_created_at_on' => 'Transaksjonen vart oppretta på ":value', - 'search_modifier_not_created_at_on' => 'Transaksjonen vart ikkje oppretta på ":value', - 'search_modifier_created_at_before' => 'Transaksjonen vart oppretta på eller før ":value"', - 'search_modifier_created_at_after' => 'Transaksjonen vart oppretta på eller etter ":value"', - 'search_modifier_updated_at_on' => 'Transaksjonen vart oppdatert ":value"', - 'search_modifier_not_updated_at_on' => 'Transaksjonen vart ikkje oppdatert ":value"', - 'search_modifier_updated_at_before' => 'Transaksjonen vart oppdatert på dato eller før ":value"', - 'search_modifier_updated_at_after' => 'Transaksjonen vart oppdatert på eller etter ":value"', + 'search_modifier_updated_at_on_year' => 'Transaksjonen vart oppdatert i år ":value"', + 'search_modifier_updated_at_on_month' => 'Transaksjonen vart oppdatert i månaden ":value"', + 'search_modifier_updated_at_on_day' => 'Transaksjonen vart sist oppdatert på dagen i månaden ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaksjonen vart ikkje oppdatert sist i år ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaksjonen vart ikkje sist oppdatert i månaden ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaksjonen vart ikkje sist oppdatert på dag i månaden ":value"', + 'search_modifier_updated_at_before_year' => 'Transaksjonen vart sist oppdatert i eller før år ":value"', + 'search_modifier_updated_at_before_month' => 'Transaksjonen vart sist oppdatert i eller før månaden ":value"', + 'search_modifier_updated_at_before_day' => 'Transaksjonen vart sist oppdatert på eller før dag i månaden ":value"', + 'search_modifier_updated_at_after_year' => 'Transaksjonen vart sist oppdatert i eller etter år ":value"', + 'search_modifier_updated_at_after_month' => 'Transaksjonen vart sist oppdatert i eller etter månaden ":value"', + 'search_modifier_updated_at_after_day' => 'Transaksjonen vart sist oppdatert på eller etter ein dag i månaden ":value"', + 'search_modifier_created_at_on_year' => 'Transaksjonen vart oppretta i år ":value', + 'search_modifier_created_at_on_month' => 'Transaksjonen vart oppretta i månaden ":value"', + 'search_modifier_created_at_on_day' => 'Transaksjonen vart oppretta på dag i månaden ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaksjonen vart ikkje oppretta i år ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaksjonen vart ikkje oppretta i månaden ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaksjonen vart ikkje oppretta på dag i måneden ":value"', + 'search_modifier_created_at_before_year' => 'Transaksjonen vart oppretta i eller før år ":value"', + 'search_modifier_created_at_before_month' => 'Transaksjonen vart oppretta i eller før månaden ":value"', + 'search_modifier_created_at_before_day' => 'Transaksjonen vart oppretta på eller før dag i måneden ":value"', + 'search_modifier_created_at_after_year' => 'Transaksjonen vart oppretta i eller etter år ":value"', + 'search_modifier_created_at_after_month' => 'Transaksjonen vart oppretta i eller etter månaden ":value"', + 'search_modifier_created_at_after_day' => 'Transaksjonen vart oppretta på eller etter dag i måneden ":value', + 'search_modifier_interest_date_before' => 'Transaksjonsrentens dato er på eller før ":value"', + 'search_modifier_interest_date_after' => 'Transaksjonens rentedato er på eller etter ":value"', + 'search_modifier_book_date_on' => 'Bokføringsdato for transaksjonen er ":value"', + 'search_modifier_not_book_date_on' => 'Bokføringsdato for transaksjonen er ikkje ":value"', + 'search_modifier_book_date_before' => 'Bokføringsdato for transaksjonen er på eller før ":value"', + 'search_modifier_book_date_after' => 'Bokføringsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_process_date_on' => 'Transaksjonens utførelsesdato er ":value"', + 'search_modifier_not_process_date_on' => 'Transaksjonens utførelsesdato er ikkje ":value"', + 'search_modifier_process_date_before' => 'Transaksjonens utførelsesdato er på eller før ":value"', + 'search_modifier_process_date_after' => 'Transaksjonens utførelsesdato er på eller etter ":value"', + 'search_modifier_due_date_on' => 'Forfallsdato for transaksjonen er ":value"', + 'search_modifier_not_due_date_on' => 'Forfallsdato for transaksjonen er ikkje ":value"', + 'search_modifier_due_date_before' => 'Forfallsdato for transaksjonen er på eller før ":value"', + 'search_modifier_due_date_after' => 'Forfallsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_payment_date_on' => 'Betalingsdato for transaksjonen er ":value"', + 'search_modifier_not_payment_date_on' => 'Betalingsdato for transaksjonen er ikkje ":value"', + 'search_modifier_payment_date_before' => 'Betalingsdato for transaksjonen er på eller før ":value"', + 'search_modifier_payment_date_after' => 'Betalingsdato for transaksjonen er på eller etter ":value"', + 'search_modifier_invoice_date_on' => 'Fakturadato for transaksjon er på ":value"', + 'search_modifier_not_invoice_date_on' => 'Fakturadato for transaksjon er ikkje ":value"', + 'search_modifier_invoice_date_before' => 'Fakturadato for transaksjon er på eller før ":value"', + 'search_modifier_invoice_date_after' => 'Fakturadato for transaksjon er på eller etter ":value"', + 'search_modifier_created_at_on' => 'Transaksjonen vart oppretta på ":value', + 'search_modifier_not_created_at_on' => 'Transaksjonen vart ikkje oppretta på ":value', + 'search_modifier_created_at_before' => 'Transaksjonen vart oppretta på eller før ":value"', + 'search_modifier_created_at_after' => 'Transaksjonen vart oppretta på eller etter ":value"', + 'search_modifier_updated_at_on' => 'Transaksjonen vart oppdatert ":value"', + 'search_modifier_not_updated_at_on' => 'Transaksjonen vart ikkje oppdatert ":value"', + 'search_modifier_updated_at_before' => 'Transaksjonen vart oppdatert på dato eller før ":value"', + 'search_modifier_updated_at_after' => 'Transaksjonen vart oppdatert på eller etter ":value"', - 'search_modifier_attachment_name_is' => 'Namn på vedlegg er ":value"', - 'search_modifier_attachment_name_contains' => 'Namn på vedlegg inneheld ":value"', - 'search_modifier_attachment_name_starts' => 'Namn på vedlegg byrjar med ":value"', - 'search_modifier_attachment_name_ends' => 'Namn på vedlegg sluttar med ":value"', - 'search_modifier_attachment_notes_are' => 'Notat på eventuelle vedlegg er ":value"', - 'search_modifier_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ":value"', - 'search_modifier_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":value"', - 'search_modifier_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar med ":value"', - 'search_modifier_not_attachment_name_is' => 'Namn på vedlegg er ikkje ":value"', - 'search_modifier_not_attachment_name_contains' => 'Namn på vedlegg inneheld ikkje ":value"', - 'search_modifier_not_attachment_name_starts' => 'Namn på vedlegg byrjar ikkje med ":value"', - 'search_modifier_not_attachment_name_ends' => 'Namn på vedlegg sluttar ikkje med ":value"', - 'search_modifier_not_attachment_notes_are' => 'Notat på eventuelle vedlegg er ikkje ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ikkje ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar ikkje med ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT er ":value"', - 'update_rule_from_query' => 'Oppdater regel ":rule" frå søk', - 'create_rule_from_query' => 'Lag ny regel frå søk', - 'rule_from_search_words' => 'Regelverksmotoren har problemer med søkeparameteren ":string". Den foreslåtte regelen som passar til ditt søk kan gje eit anna resultat. Ver venleg å kontroller reglane nøye.', + 'search_modifier_attachment_name_is' => 'Namn på vedlegg er ":value"', + 'search_modifier_attachment_name_contains' => 'Namn på vedlegg inneheld ":value"', + 'search_modifier_attachment_name_starts' => 'Namn på vedlegg byrjar med ":value"', + 'search_modifier_attachment_name_ends' => 'Namn på vedlegg sluttar med ":value"', + 'search_modifier_attachment_notes_are' => 'Notat på eventuelle vedlegg er ":value"', + 'search_modifier_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ":value"', + 'search_modifier_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":value"', + 'search_modifier_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar med ":value"', + 'search_modifier_not_attachment_name_is' => 'Namn på vedlegg er ikkje ":value"', + 'search_modifier_not_attachment_name_contains' => 'Namn på vedlegg inneheld ikkje ":value"', + 'search_modifier_not_attachment_name_starts' => 'Namn på vedlegg byrjar ikkje med ":value"', + 'search_modifier_not_attachment_name_ends' => 'Namn på vedlegg sluttar ikkje med ":value"', + 'search_modifier_not_attachment_notes_are' => 'Notat på eventuelle vedlegg er ikkje ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ikkje ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar ikkje med ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT er ":value"', + 'update_rule_from_query' => 'Oppdater regel ":rule" frå søk', + 'create_rule_from_query' => 'Lag ny regel frå søk', + 'rule_from_search_words' => 'Regelverksmotoren har problemer med søkeparameteren ":string". Den foreslåtte regelen som passar til ditt søk kan gje eit anna resultat. Ver venleg å kontroller reglane nøye.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Dei følgende modifikatorer er lagt til søket i tillegg:', - 'general_search_error' => 'Det oppstod ein feil under søking. Ver venleg å sjekk loggfilene for meir informasjon.', - 'search_box' => 'Søk', - 'search_box_intro' => 'Velkomen til søkefunksjonen i Firefly III. Skriv inn søkefrasen din i boksen. Pass på at du sjekkar hjelpefila, for søkefunksjonen er ganske avansert.', - 'search_error' => 'Feil under søking', - 'search_searching' => 'Søker ...', - 'search_results' => 'Søkeresultater', + 'modifiers_applies_are' => 'Dei følgende modifikatorer er lagt til søket i tillegg:', + 'general_search_error' => 'Det oppstod ein feil under søking. Ver venleg å sjekk loggfilene for meir informasjon.', + 'search_box' => 'Søk', + 'search_box_intro' => 'Velkomen til søkefunksjonen i Firefly III. Skriv inn søkefrasen din i boksen. Pass på at du sjekkar hjelpefila, for søkefunksjonen er ganske avansert.', + 'search_error' => 'Feil under søking', + 'search_searching' => 'Søker ...', + 'search_results' => 'Søkeresultater', // repeat frequencies: - 'repeat_freq_yearly' => 'årleg', - 'repeat_freq_half-year' => 'kvart halvår', - 'repeat_freq_quarterly' => 'kvartalsvis', - 'repeat_freq_monthly' => 'månadleg', - 'repeat_freq_weekly' => 'ukentlig', - 'repeat_freq_daily' => 'dagleg', - 'daily' => 'dagleg', - 'weekly' => 'ukentlig', - 'quarterly' => 'kvartalsvis', - 'half-year' => 'kvart halvår', - 'yearly' => 'årleg', + 'repeat_freq_yearly' => 'årleg', + 'repeat_freq_half-year' => 'kvart halvår', + 'repeat_freq_quarterly' => 'kvartalsvis', + 'repeat_freq_monthly' => 'månadleg', + 'repeat_freq_weekly' => 'ukentlig', + 'repeat_freq_daily' => 'dagleg', + 'daily' => 'dagleg', + 'weekly' => 'ukentlig', + 'quarterly' => 'kvartalsvis', + 'half-year' => 'kvart halvår', + 'yearly' => 'årleg', // rules - 'is_not_rule_trigger' => 'Ikke', - 'cannot_fire_inactive_rules' => 'Du kan ikkje køyra inaktive reglar.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Regler', - 'rule_name' => 'Namn på regel', - 'rule_triggers' => 'Regel utløses når', - 'rule_actions' => 'Regel vil', - 'new_rule' => 'Ny regel', - 'new_rule_group' => 'Ny regelgruppe', - 'rule_priority_up' => 'Gi regel høyere prioritet', - 'rule_priority_down' => 'Gi regel lavere prioritet', - 'make_new_rule_group' => 'Opprett ny regelgruppe', - 'store_new_rule_group' => 'Lagra ny regelgruppe', - 'created_new_rule_group' => 'Ny regelgruppe ":title" vart lagra!', - 'updated_rule_group' => 'Oppdaterte regelgruppen ":title".', - 'edit_rule_group' => 'Rediger regelgruppe ":title"', - 'duplicate_rule' => 'Kopier regel ":title"', - 'rule_copy_of' => 'Duplikat av ":title"', - 'duplicated_rule' => 'Duplisert regel:title" inn i ":newTitle"', - 'delete_rule_group' => 'Slett regelgruppe ":title"', - 'deleted_rule_group' => 'Sletta regelgruppe ":title"', - 'update_rule_group' => 'Oppdater regelgruppe', - 'no_rules_in_group' => 'Det eksisterar ingen reglar i denne gruppen', - 'move_rule_group_up' => 'Flytt regelgruppen opp', - 'move_rule_group_down' => 'Flytt regelgruppen ned', - 'save_rules_by_moving' => 'Lagra denne regelen ved å flytte den til ein annan regelgruppe: Lagra desse reglane ved å flytte dei til ein annan regelgruppe:', - 'make_new_rule' => 'Opprett ny regel i regelgruppen ":title"', - 'make_new_rule_no_group' => 'Lag ein ny regel', - 'instructions_rule_from_bill' => 'For å kopla transaksjonar til den nye rekninga di «:name», kan Firefly III laga ein regel som automatisk vil verta kontrollert mot eksisterande transaksjonar. Ver venleg å verifiser detaljane nedenfor og lagra regelen for å få Firefly III til å automatisk kopla transaksjonar til din nye rekning.', - 'instructions_rule_from_journal' => 'Opprett ein regel basert på ein av dine transaksjonar. Fullfør eller send inn skjemaet nedanfor.', - 'rule_is_strict' => 'strikt regel', - 'rule_is_not_strict' => 'ikkje-strikt regel', - 'rule_help_stop_processing' => 'Om du markerer denne boksen, vil ikkje senere reglar i denne gruppen verta utløst.', - 'rule_help_strict' => 'I strikte reglar må ALLE triggere slå til for at aksjonen skal verta utført. Ved ikkje-strikt reglar kan UANSETT trigger få aksjonen til å verta utført.', - 'rule_help_active' => 'Inaktive reglar vil aldri utløses.', - 'stored_new_rule' => 'Lagret ny regel med tittel ":title"', - 'deleted_rule' => 'Sletta regel med tittel ":title"', - 'store_new_rule' => 'Lagra ny regel', - 'updated_rule' => 'Oppdaterte regel med tittel ":title"', - 'default_rule_group_name' => 'Standardregler', - 'default_rule_group_description' => 'Alle dine reglar ligg ikkje i noko bestemt gruppe.', - 'trigger' => 'Utløser', - 'trigger_value' => 'Utløs på verdi', - 'stop_processing_other_triggers' => 'Slutt å prosessere andre utløsere', - 'add_rule_trigger' => 'Legg til ny utløser', - 'action' => 'Handling', - 'action_value' => 'Handlingsverdi', - 'stop_executing_other_actions' => 'Slutt å utføre andre handlinger', - 'add_rule_action' => 'Legg til ny handling', - 'edit_rule' => 'Rediger regel ":title"', - 'delete_rule' => 'Slett regel ":title"', - 'update_rule' => 'Oppdater regel', - 'test_rule_triggers' => 'Sjå transaksjonar som passar', - 'warning_no_matching_transactions' => 'Ingen samsvarende transaksjonar funnet.', - 'warning_no_valid_triggers' => 'Ingen gyldige utløsere oppgitt.', - 'apply_rule_selection' => 'Bruk regel ":title" til eit utval av dine transaksjonar', - 'apply_rule_selection_intro' => 'Regler som «:title» vert vanlegvis berre brukt til nye eller oppdaterte transaksjonar, men du kan få Firefly III til å køyra dei på eit utval av dine eksisterande transaksjonar. Dette kan vera nyttig når du har oppdatert ein regel, og du treng at endringane vert brukt på alle dine tidlegare transaksjonar.', - 'include_transactions_from_accounts' => 'Ta med transaksjonar frå desse kontoane', - 'include' => 'Inkluder?', - 'applied_rule_selection' => '{0} Ingen transaksjonar i ditt utval vart endra med regel ":title.[1] Ein transaksjon i ditt val vart endra av regel ":title". [2,*] :count transaksjonar i utvalet vart endra ved regel ":title. ".', - 'execute' => 'Kjør', - 'apply_rule_group_selection' => 'Bruk regelgruppe ":title" til eit utval av dine transaksjonar', - 'apply_rule_group_selection_intro' => 'Regelgrupper som «:title» vert vanlegvis berre berre brukt til nye eller oppdaterte transaksjonar, men du kan få Firefly III til å køyra dei på eit utval av dine eksisterande transaksjonar. Dette kan vera nyttig når du har oppdatert ei regelgruppe, og du treng at endringane vert brukt på alle dine tidlegare transaksjonar.', - 'applied_rule_group_selection' => 'Regelgruppe ":title" har vorte brukt på ditt utval.', + 'is_not_rule_trigger' => 'Ikke', + 'cannot_fire_inactive_rules' => 'Du kan ikkje køyra inaktive reglar.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Regler', + 'rule_name' => 'Namn på regel', + 'rule_triggers' => 'Regel utløses når', + 'rule_actions' => 'Regel vil', + 'new_rule' => 'Ny regel', + 'new_rule_group' => 'Ny regelgruppe', + 'rule_priority_up' => 'Gi regel høyere prioritet', + 'rule_priority_down' => 'Gi regel lavere prioritet', + 'make_new_rule_group' => 'Opprett ny regelgruppe', + 'store_new_rule_group' => 'Lagra ny regelgruppe', + 'created_new_rule_group' => 'Ny regelgruppe ":title" vart lagra!', + 'updated_rule_group' => 'Oppdaterte regelgruppen ":title".', + 'edit_rule_group' => 'Rediger regelgruppe ":title"', + 'duplicate_rule' => 'Kopier regel ":title"', + 'rule_copy_of' => 'Duplikat av ":title"', + 'duplicated_rule' => 'Duplisert regel:title" inn i ":newTitle"', + 'delete_rule_group' => 'Slett regelgruppe ":title"', + 'deleted_rule_group' => 'Sletta regelgruppe ":title"', + 'update_rule_group' => 'Oppdater regelgruppe', + 'no_rules_in_group' => 'Det eksisterar ingen reglar i denne gruppen', + 'move_rule_group_up' => 'Flytt regelgruppen opp', + 'move_rule_group_down' => 'Flytt regelgruppen ned', + 'save_rules_by_moving' => 'Lagra denne regelen ved å flytte den til ein annan regelgruppe: Lagra desse reglane ved å flytte dei til ein annan regelgruppe:', + 'make_new_rule' => 'Opprett ny regel i regelgruppen ":title"', + 'make_new_rule_no_group' => 'Lag ein ny regel', + 'instructions_rule_from_bill' => 'For å kopla transaksjonar til den nye rekninga di «:name», kan Firefly III laga ein regel som automatisk vil verta kontrollert mot eksisterande transaksjonar. Ver venleg å verifiser detaljane nedenfor og lagra regelen for å få Firefly III til å automatisk kopla transaksjonar til din nye rekning.', + 'instructions_rule_from_journal' => 'Opprett ein regel basert på ein av dine transaksjonar. Fullfør eller send inn skjemaet nedanfor.', + 'rule_is_strict' => 'strikt regel', + 'rule_is_not_strict' => 'ikkje-strikt regel', + 'rule_help_stop_processing' => 'Om du markerer denne boksen, vil ikkje senere reglar i denne gruppen verta utløst.', + 'rule_help_strict' => 'I strikte reglar må ALLE triggere slå til for at aksjonen skal verta utført. Ved ikkje-strikt reglar kan UANSETT trigger få aksjonen til å verta utført.', + 'rule_help_active' => 'Inaktive reglar vil aldri utløses.', + 'stored_new_rule' => 'Lagret ny regel med tittel ":title"', + 'deleted_rule' => 'Sletta regel med tittel ":title"', + 'store_new_rule' => 'Lagra ny regel', + 'updated_rule' => 'Oppdaterte regel med tittel ":title"', + 'default_rule_group_name' => 'Standardregler', + 'default_rule_group_description' => 'Alle dine reglar ligg ikkje i noko bestemt gruppe.', + 'trigger' => 'Utløser', + 'trigger_value' => 'Utløs på verdi', + 'stop_processing_other_triggers' => 'Slutt å prosessere andre utløsere', + 'add_rule_trigger' => 'Legg til ny utløser', + 'action' => 'Handling', + 'action_value' => 'Handlingsverdi', + 'stop_executing_other_actions' => 'Slutt å utføre andre handlinger', + 'add_rule_action' => 'Legg til ny handling', + 'edit_rule' => 'Rediger regel ":title"', + 'delete_rule' => 'Slett regel ":title"', + 'update_rule' => 'Oppdater regel', + 'test_rule_triggers' => 'Sjå transaksjonar som passar', + 'warning_no_matching_transactions' => 'Ingen samsvarende transaksjonar funnet.', + 'warning_no_valid_triggers' => 'Ingen gyldige utløsere oppgitt.', + 'apply_rule_selection' => 'Bruk regel ":title" til eit utval av dine transaksjonar', + 'apply_rule_selection_intro' => 'Regler som «:title» vert vanlegvis berre brukt til nye eller oppdaterte transaksjonar, men du kan få Firefly III til å køyra dei på eit utval av dine eksisterande transaksjonar. Dette kan vera nyttig når du har oppdatert ein regel, og du treng at endringane vert brukt på alle dine tidlegare transaksjonar.', + 'include_transactions_from_accounts' => 'Ta med transaksjonar frå desse kontoane', + 'include' => 'Inkluder?', + 'applied_rule_selection' => '{0} Ingen transaksjonar i ditt utval vart endra med regel ":title.[1] Ein transaksjon i ditt val vart endra av regel ":title". [2,*] :count transaksjonar i utvalet vart endra ved regel ":title. ".', + 'execute' => 'Kjør', + 'apply_rule_group_selection' => 'Bruk regelgruppe ":title" til eit utval av dine transaksjonar', + 'apply_rule_group_selection_intro' => 'Regelgrupper som «:title» vert vanlegvis berre berre brukt til nye eller oppdaterte transaksjonar, men du kan få Firefly III til å køyra dei på eit utval av dine eksisterande transaksjonar. Dette kan vera nyttig når du har oppdatert ei regelgruppe, og du treng at endringane vert brukt på alle dine tidlegare transaksjonar.', + 'applied_rule_group_selection' => 'Regelgruppe ":title" har vorte brukt på ditt utval.', // actions and triggers - 'rule_trigger_store_journal' => 'Når ein transaksjon er opprettet', - 'rule_trigger_update_journal' => 'Når ein transaksjon er oppdatert', - 'rule_trigger_user_action' => 'Brukarhandling er ":trigger_value"', + 'rule_trigger_store_journal' => 'Når ein transaksjon er opprettet', + 'rule_trigger_update_journal' => 'Når ein transaksjon er oppdatert', + 'rule_trigger_user_action' => 'Brukarhandling er ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Kjeldekonto namn byrjar med..', - 'rule_trigger_source_account_starts' => 'Kjeldenamnet byrjar med ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Kjeldenamnet sluttar med..', - 'rule_trigger_source_account_ends' => 'Kjeldekontonamnet sluttar med ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Kjeldekonto namn er..', - 'rule_trigger_source_account_is' => 'Kjeldekonto namnet er ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Kjeldekonto namn inneheld..', - 'rule_trigger_source_account_contains' => 'Kjeldekonto namnet inneheld ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Ein av konto ID\'er, er nøyaktig.', - 'rule_trigger_account_id' => 'Ein av konto ID\'er, er nøyaktig :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Kjeldekonto-ID er nøyaktig..', - 'rule_trigger_source_account_id' => 'Kjeldekonto-IDen er nøyaktig :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Målkonto ID er nøyaktig..', - 'rule_trigger_destination_account_id' => 'Målkonto ID er nøyaktig :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Ein av konto er kontant', - 'rule_trigger_account_is_cash' => 'Ein av konto er kontant', - 'rule_trigger_source_is_cash_choice' => 'Kjeldekonto er (kontant) konto', - 'rule_trigger_source_is_cash' => 'Kjeldekonto er (kontant) konto', - 'rule_trigger_destination_is_cash_choice' => 'Målkonto er (kontant) konto', - 'rule_trigger_destination_is_cash' => 'Målkonto er (kontant) konto', - 'rule_trigger_source_account_nr_starts_choice' => 'Kjeldekontonummer / IBAN byrjar med..', - 'rule_trigger_source_account_nr_starts' => 'Kjeldekontoummer / IBAN byrjar med ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Kjeldekontonummer / IBAN sluttar med..', - 'rule_trigger_source_account_nr_ends' => 'Kjeldekontoummer / IBAN sluttar med ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Kjeldekontonummer / IBAN er..', - 'rule_trigger_source_account_nr_is' => 'Kjeldekontoummer / IBAN er ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Kjeldekontonummer / IBAN inneheld..', - 'rule_trigger_source_account_nr_contains' => 'Kjeldekontonummer / IBAN inneheld ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Målkontonamnet byrjar med..', - 'rule_trigger_destination_account_starts' => 'Målkontonamnet byrjar med ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Målkontonamnet sluttar med..', - 'rule_trigger_destination_account_ends' => 'Målkonto namn sluttar med ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Målkonto namn sluttar med..', - 'rule_trigger_destination_account_is' => 'Målkontonamn er ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Målkontonamn inneheld..', - 'rule_trigger_destination_account_contains' => 'Målkontonamnet inneheld ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Målkontonummer / IBAN byrjar med..', - 'rule_trigger_destination_account_nr_starts' => 'Målkontonummer / IBAN byrjar med ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Målkontonummer / IBAN sluttar med..', - 'rule_trigger_destination_account_nr_ends' => 'Målkontonummer / IBAN sluttar med ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Målkontonummer / IBAN er..', - 'rule_trigger_destination_account_nr_is' => 'Målkontonummer / IBAN er ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Målkontonummer / IBAN inneheld..', - 'rule_trigger_destination_account_nr_contains' => 'Målkontonummer / IBAN inneheld ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaksjonen er av typen..', - 'rule_trigger_transaction_type' => 'Transaksjonen er av typen ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategori er..', - 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Beløpet er mindre eller lik ..', - 'rule_trigger_amount_less' => 'Beløpet er mindre eller likt :trigger_value', - 'rule_trigger_amount_is_choice' => 'Beløpet er..', - 'rule_trigger_amount_is' => 'Beløpet er :trigger_value', - 'rule_trigger_amount_more_choice' => 'Beløpet er meir eller lik..', - 'rule_trigger_amount_more' => 'Beløpet er meir eller lik :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beskrivinga byrjar med..', - 'rule_trigger_description_starts' => 'Beskrivinga byrjar med ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beskrivinga sluttar med..', - 'rule_trigger_description_ends' => 'Beskrivinga sluttar med ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beskrivinga inneheld..', - 'rule_trigger_description_contains' => 'Beskrivinga inneheld ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beskrivinga er..', - 'rule_trigger_description_is' => 'Beskrivinga er ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaksjonsdato er..', - 'rule_trigger_date_on' => 'Transaksjons dato er ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaksjons dato er før..', - 'rule_trigger_date_before' => 'Transaksjons dato er før ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaksjons dato er etter..', - 'rule_trigger_date_after' => 'Transaksjons dato er etter ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaksjonen vart gjort på..', - 'rule_trigger_created_at_on' => 'Transaksjonen vart gjort på ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaksjonen vart sist redigert den..', - 'rule_trigger_updated_at_on' => 'Transaksjonen vart sist redigert den ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budsjett er..', - 'rule_trigger_budget_is' => 'Budsjett er ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Eit vilkårleg nøkkelord er..', - 'rule_trigger_tag_is' => 'Eit vilkårleg nøkkelord er «:trigger_value»', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaksjonsvaluta er..', - 'rule_trigger_currency_is' => 'Transaksjonsvaluta er ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaksjonens fremmed valuta er..', - 'rule_trigger_foreign_currency_is' => 'Transaksjonens fremmed valuta er ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Har minst så mange vedlegg', - 'rule_trigger_has_attachments' => 'Har minst :trigger_value vedlegg', - 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', - 'rule_trigger_has_no_category' => 'Transaksjonen har ingen kategori', - 'rule_trigger_has_any_category_choice' => 'Har ein (vilkårleg) kategori', - 'rule_trigger_has_any_category' => 'Transaksjonen har ein (vilkårleg) kategori', - 'rule_trigger_has_no_budget_choice' => 'Har ingen budsjett', - 'rule_trigger_has_no_budget' => 'Transaksjonen har ikkje noko budsjett', - 'rule_trigger_has_any_budget_choice' => 'Har eit (kva som helst) budsjett', - 'rule_trigger_has_any_budget' => 'Transaksjonen har eit (kva som helst) budsjett', - 'rule_trigger_has_no_bill_choice' => 'Har ingen rekning', - 'rule_trigger_has_no_bill' => 'Transaksjonen har ingen rekningar', - 'rule_trigger_has_any_bill_choice' => 'Har ein rekning', - 'rule_trigger_has_any_bill' => 'Transaksjonen har ei (vikårleg) rekning', - 'rule_trigger_has_no_tag_choice' => 'Har ingen nøkkelord', - 'rule_trigger_has_no_tag' => 'Transaksjonen har ingen nøkkelord', - 'rule_trigger_has_any_tag_choice' => 'Har eit eller fleire (vilkårlege) nøkkelord', - 'rule_trigger_has_any_tag' => 'Transaksjonen har ein eller fleire (vikårlege) nøkkelord', - 'rule_trigger_any_notes_choice' => 'Har notat', - 'rule_trigger_any_notes' => 'Transaksjonen har notat', - 'rule_trigger_no_notes_choice' => 'Har ikkje notat', - 'rule_trigger_no_notes' => 'Transaksjonen har ikkje notat', - 'rule_trigger_notes_is_choice' => 'Notat er..', - 'rule_trigger_notes_is' => 'Notat er ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notat inneheld..', - 'rule_trigger_notes_contains' => 'Notat inneheld ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notat byrjar med..', - 'rule_trigger_notes_starts' => 'Notat byrjar med ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notat sluttar med..', - 'rule_trigger_notes_ends' => 'Notat sluttar med ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Rekning er..', - 'rule_trigger_bill_is' => 'Rekning er ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Ekstern ID er..', - 'rule_trigger_external_id_is' => 'Ekstern ID er ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Intern referanse er..', - 'rule_trigger_internal_reference_is' => 'Ekstern referanse er ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaksjonens journal ID er..', - 'rule_trigger_journal_id' => 'Transaksjonens journal ID er ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_no_external_url' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaksjons-ID er', - 'rule_trigger_id' => 'Transaksjons ID er ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT er..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT er ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Kjeldekonto namn byrjar med..', + 'rule_trigger_source_account_starts' => 'Kjeldenamnet byrjar med ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Kjeldenamnet sluttar med..', + 'rule_trigger_source_account_ends' => 'Kjeldekontonamnet sluttar med ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Kjeldekonto namn er..', + 'rule_trigger_source_account_is' => 'Kjeldekonto namnet er ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Kjeldekonto namn inneheld..', + 'rule_trigger_source_account_contains' => 'Kjeldekonto namnet inneheld ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Ein av konto ID\'er, er nøyaktig.', + 'rule_trigger_account_id' => 'Ein av konto ID\'er, er nøyaktig :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Kjeldekonto-ID er nøyaktig..', + 'rule_trigger_source_account_id' => 'Kjeldekonto-IDen er nøyaktig :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Målkonto ID er nøyaktig..', + 'rule_trigger_destination_account_id' => 'Målkonto ID er nøyaktig :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Ein av konto er kontant', + 'rule_trigger_account_is_cash' => 'Ein av konto er kontant', + 'rule_trigger_source_is_cash_choice' => 'Kjeldekonto er (kontant) konto', + 'rule_trigger_source_is_cash' => 'Kjeldekonto er (kontant) konto', + 'rule_trigger_destination_is_cash_choice' => 'Målkonto er (kontant) konto', + 'rule_trigger_destination_is_cash' => 'Målkonto er (kontant) konto', + 'rule_trigger_source_account_nr_starts_choice' => 'Kjeldekontonummer / IBAN byrjar med..', + 'rule_trigger_source_account_nr_starts' => 'Kjeldekontoummer / IBAN byrjar med ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Kjeldekontonummer / IBAN sluttar med..', + 'rule_trigger_source_account_nr_ends' => 'Kjeldekontoummer / IBAN sluttar med ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Kjeldekontonummer / IBAN er..', + 'rule_trigger_source_account_nr_is' => 'Kjeldekontoummer / IBAN er ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Kjeldekontonummer / IBAN inneheld..', + 'rule_trigger_source_account_nr_contains' => 'Kjeldekontonummer / IBAN inneheld ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Målkontonamnet byrjar med..', + 'rule_trigger_destination_account_starts' => 'Målkontonamnet byrjar med ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Målkontonamnet sluttar med..', + 'rule_trigger_destination_account_ends' => 'Målkonto namn sluttar med ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Målkonto namn sluttar med..', + 'rule_trigger_destination_account_is' => 'Målkontonamn er ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Målkontonamn inneheld..', + 'rule_trigger_destination_account_contains' => 'Målkontonamnet inneheld ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Målkontonummer / IBAN byrjar med..', + 'rule_trigger_destination_account_nr_starts' => 'Målkontonummer / IBAN byrjar med ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Målkontonummer / IBAN sluttar med..', + 'rule_trigger_destination_account_nr_ends' => 'Målkontonummer / IBAN sluttar med ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Målkontonummer / IBAN er..', + 'rule_trigger_destination_account_nr_is' => 'Målkontonummer / IBAN er ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Målkontonummer / IBAN inneheld..', + 'rule_trigger_destination_account_nr_contains' => 'Målkontonummer / IBAN inneheld ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaksjonen er av typen..', + 'rule_trigger_transaction_type' => 'Transaksjonen er av typen ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori er..', + 'rule_trigger_category_is' => 'Kategori er ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Beløpet er mindre eller lik ..', + 'rule_trigger_amount_less' => 'Beløpet er mindre eller likt :trigger_value', + 'rule_trigger_amount_is_choice' => 'Beløpet er..', + 'rule_trigger_amount_is' => 'Beløpet er :trigger_value', + 'rule_trigger_amount_more_choice' => 'Beløpet er meir eller lik..', + 'rule_trigger_amount_more' => 'Beløpet er meir eller lik :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beskrivinga byrjar med..', + 'rule_trigger_description_starts' => 'Beskrivinga byrjar med ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beskrivinga sluttar med..', + 'rule_trigger_description_ends' => 'Beskrivinga sluttar med ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beskrivinga inneheld..', + 'rule_trigger_description_contains' => 'Beskrivinga inneheld ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beskrivinga er..', + 'rule_trigger_description_is' => 'Beskrivinga er ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaksjonsdato er..', + 'rule_trigger_date_on' => 'Transaksjons dato er ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaksjons dato er før..', + 'rule_trigger_date_before' => 'Transaksjons dato er før ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaksjons dato er etter..', + 'rule_trigger_date_after' => 'Transaksjons dato er etter ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaksjonen vart gjort på..', + 'rule_trigger_created_at_on' => 'Transaksjonen vart gjort på ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaksjonen vart sist redigert den..', + 'rule_trigger_updated_at_on' => 'Transaksjonen vart sist redigert den ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budsjett er..', + 'rule_trigger_budget_is' => 'Budsjett er ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Eit vilkårleg nøkkelord er..', + 'rule_trigger_tag_is' => 'Eit vilkårleg nøkkelord er «:trigger_value»', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaksjonsvaluta er..', + 'rule_trigger_currency_is' => 'Transaksjonsvaluta er ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaksjonens fremmed valuta er..', + 'rule_trigger_foreign_currency_is' => 'Transaksjonens fremmed valuta er ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Har minst så mange vedlegg', + 'rule_trigger_has_attachments' => 'Har minst :trigger_value vedlegg', + 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', + 'rule_trigger_has_no_category' => 'Transaksjonen har ingen kategori', + 'rule_trigger_has_any_category_choice' => 'Har ein (vilkårleg) kategori', + 'rule_trigger_has_any_category' => 'Transaksjonen har ein (vilkårleg) kategori', + 'rule_trigger_has_no_budget_choice' => 'Har ingen budsjett', + 'rule_trigger_has_no_budget' => 'Transaksjonen har ikkje noko budsjett', + 'rule_trigger_has_any_budget_choice' => 'Har eit (kva som helst) budsjett', + 'rule_trigger_has_any_budget' => 'Transaksjonen har eit (kva som helst) budsjett', + 'rule_trigger_has_no_bill_choice' => 'Har ingen rekning', + 'rule_trigger_has_no_bill' => 'Transaksjonen har ingen rekningar', + 'rule_trigger_has_any_bill_choice' => 'Har ein rekning', + 'rule_trigger_has_any_bill' => 'Transaksjonen har ei (vikårleg) rekning', + 'rule_trigger_has_no_tag_choice' => 'Har ingen nøkkelord', + 'rule_trigger_has_no_tag' => 'Transaksjonen har ingen nøkkelord', + 'rule_trigger_has_any_tag_choice' => 'Har eit eller fleire (vilkårlege) nøkkelord', + 'rule_trigger_has_any_tag' => 'Transaksjonen har ein eller fleire (vikårlege) nøkkelord', + 'rule_trigger_any_notes_choice' => 'Har notat', + 'rule_trigger_any_notes' => 'Transaksjonen har notat', + 'rule_trigger_no_notes_choice' => 'Har ikkje notat', + 'rule_trigger_no_notes' => 'Transaksjonen har ikkje notat', + 'rule_trigger_notes_is_choice' => 'Notat er..', + 'rule_trigger_notes_is' => 'Notat er ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notat inneheld..', + 'rule_trigger_notes_contains' => 'Notat inneheld ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notat byrjar med..', + 'rule_trigger_notes_starts' => 'Notat byrjar med ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notat sluttar med..', + 'rule_trigger_notes_ends' => 'Notat sluttar med ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Rekning er..', + 'rule_trigger_bill_is' => 'Rekning er ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Ekstern ID er..', + 'rule_trigger_external_id_is' => 'Ekstern ID er ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Intern referanse er..', + 'rule_trigger_internal_reference_is' => 'Ekstern referanse er ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaksjonens journal ID er..', + 'rule_trigger_journal_id' => 'Transaksjonens journal ID er ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_no_external_url' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaksjons-ID er', + 'rule_trigger_id' => 'Transaksjons ID er ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT er..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT er ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Brukarhandling er ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Ingen nøkkelord er..', - 'rule_trigger_tag_is_not' => 'Ingen nøkkelord er «:trigger_value»', - 'rule_trigger_account_is_choice' => 'Ein av kontoane er nøyaktig..', - 'rule_trigger_account_is' => 'Ein av kontoane er nøyaktig ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Ein av kontoane inneheld..', - 'rule_trigger_account_contains' => 'Ein av kontoane inneheld ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Ein av kontoane sluttar med..', - 'rule_trigger_account_ends' => 'Beskrivinga sluttar med ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Ein av kontoane byrjar med..', - 'rule_trigger_account_starts' => 'Ein av kontoane byrjar med ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Ein av kontoanes nummer / IBAN er..', - 'rule_trigger_account_nr_is' => 'Kontonummer / IBAN er ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Kontonummer / IBAN inneheld..', - 'rule_trigger_account_nr_contains' => 'Alle kontonummer / IBAN inneheld ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Alle kontonummer / IBAN sluttar med..', - 'rule_trigger_account_nr_ends' => 'Alle kontonummer / IBAN sluttar med ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Alle kontonummer / IBAN byrjar med..', - 'rule_trigger_account_nr_starts' => 'Alle kontonummer / IBAN byrjar med ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Kategori inneheld..', - 'rule_trigger_category_contains' => 'Kategorien inneheld ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Kategori slutter med..', - 'rule_trigger_category_ends' => 'Kategorien sluttar med ":trigger_value', - 'rule_trigger_category_starts_choice' => 'Kategori byrjar med..', - 'rule_trigger_category_starts' => 'Kategorien byrjar med ":trigger_value', - 'rule_trigger_budget_contains_choice' => 'Budsjett inneheld..', - 'rule_trigger_budget_contains' => 'Budsjettet inneheld ":trigger_value', - 'rule_trigger_budget_ends_choice' => 'Budsjettet sluttar med..', - 'rule_trigger_budget_ends' => 'Budsjettet sluttar med ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budsjettet byrjar med..', - 'rule_trigger_budget_starts' => 'Budsjettet byrjar med ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Rekning inneheld..', - 'rule_trigger_bill_contains' => 'Rekninga inneheld ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Rekninga sluttar med..', - 'rule_trigger_bill_ends' => 'Rekning sluttar med ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Rekninga byrjar med..', - 'rule_trigger_bill_starts' => 'Rekning byrjar med ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Ekstern ID inneheld..', - 'rule_trigger_external_id_contains' => 'Ekstern ID inneheld ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Ekstern ID sluttar med..', - 'rule_trigger_external_id_ends' => 'Ekstern ID sluttar med ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Ekstern ID byrjar med..', - 'rule_trigger_external_id_starts' => 'Ekstern ID byrjar med ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Intern referanse inneheld..', - 'rule_trigger_internal_reference_contains' => 'Ekstern referanse ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Intern referanse ender med..', - 'rule_trigger_internal_reference_ends' => 'Intern referanse ender med ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Intern referanse byrjar med..', - 'rule_trigger_internal_reference_starts' => 'Intern referanse byrjar med ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Ekstern URL er..', - 'rule_trigger_external_url_is' => 'Ekstern URL er ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Ekstern URL inneheld..', - 'rule_trigger_external_url_contains' => 'Ekstern URL inneheld ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Ekstern URL sluttar med..', - 'rule_trigger_external_url_ends' => 'Ekstern URL sluttar med ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Ekstern URL byrjar med..', - 'rule_trigger_external_url_starts' => 'Ekstern URL byrjar med ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Har ingen vedlegg', - 'rule_trigger_has_no_attachments' => 'Transaksjonen har ingen vedlegg', - 'rule_trigger_recurrence_id_choice' => 'Gjentakande transaksjons ID er..', - 'rule_trigger_recurrence_id' => 'Gjentakande transaksjons ID er ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Rentedato er..', - 'rule_trigger_interest_date_on' => 'Rentedato er ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Rentedato er før..', - 'rule_trigger_interest_date_before' => 'Rentedato er før ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Rentedato er etter..', - 'rule_trigger_interest_date_after' => 'Rentedato er etter ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Bokført dato er..', - 'rule_trigger_book_date_on' => 'Bokført dato er ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Bokført dato er før..', - 'rule_trigger_book_date_before' => 'Bokført dato er før ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Bokført dato er etter..', - 'rule_trigger_book_date_after' => 'Bokført dato er etter ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Prosessdato er..', - 'rule_trigger_process_date_on' => 'Prosessdato er ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Prosessdato er før..', - 'rule_trigger_process_date_before' => 'Prosessdato er før ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Prosessdato er etter..', - 'rule_trigger_process_date_after' => 'Prosessdato er etter ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Forfallsdato er..', - 'rule_trigger_due_date_on' => 'Forfallsdato er den ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Forfallsdato er før..', - 'rule_trigger_due_date_before' => 'Forfallsdato er før ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Forfallsdato er etter..', - 'rule_trigger_due_date_after' => 'Forfallsdato er etter ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Betalingsdato er på..', - 'rule_trigger_payment_date_on' => 'Betalingsdato er på ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Betalingsdato er før..', - 'rule_trigger_payment_date_before' => 'Betalingsdato er før ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Betalingsdato er etter..', - 'rule_trigger_payment_date_after' => 'Betalingsdato er etter ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Fakturadato er på..', - 'rule_trigger_invoice_date_on' => 'Fakturadato er den ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Fakturadato er før..', - 'rule_trigger_invoice_date_before' => 'Fakturadato er før ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Fakturadato er etter..', - 'rule_trigger_invoice_date_after' => 'Fakturadato er etter ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaksjonen vart oppretta før..', - 'rule_trigger_created_at_before' => 'Transaksjonen vart oppretta før ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaksjonen vart oppretta etter..', - 'rule_trigger_created_at_after' => 'Transaksjonen vart oppretta etter ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaksjonen vart sist oppdatert før..', - 'rule_trigger_updated_at_before' => 'Transaksjonen vart sist oppdatert før ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaksjonen vart sist oppdatert etter..', - 'rule_trigger_updated_at_after' => 'Transaksjonen vart sist oppdatert etter ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Det utenlanske beløpet er nøyaktig..', - 'rule_trigger_foreign_amount_is' => 'Utenlanske beløpet er nøyaktig ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Utenlandske beløpet er mindre enn..', - 'rule_trigger_foreign_amount_less' => 'Utenlandske beløpet er mindre enn ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Utenlandske beløpet er meir enn..', - 'rule_trigger_foreign_amount_more' => 'Utenlandske beløpet er meir enn ":trigger_value', - 'rule_trigger_attachment_name_is_choice' => 'Eventuelle vedlagte namn er..', - 'rule_trigger_attachment_name_is' => 'Namn på eventuelle vedlegg er ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Eventuelle vedlagte namn inneheld..', - 'rule_trigger_attachment_name_contains' => 'Eventuelle vedlagte namn inneheld ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Namn på eventuelle vedlegg byrjar med..', - 'rule_trigger_attachment_name_starts' => 'Eventuelle vedlagte namn byrjar med ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Eventuelle vedlegg sluttar med..', - 'rule_trigger_attachment_name_ends' => 'Eventuelle vedlagte namn sluttar med ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Notat på eventuelle vedlegg er..', - 'rule_trigger_attachment_notes_are' => 'Notat på eventuelle vedlegg er ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Notat på eventuelle vedlegg inneheld..', - 'rule_trigger_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Notat på eventuelle vedlegg byrjar med..', - 'rule_trigger_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Notat på eventuelle vedlegg sluttar med..', - 'rule_trigger_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar med ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaksjonen er avstemt', - 'rule_trigger_reconciled' => 'Transaksjonen er avstemt', - 'rule_trigger_exists_choice' => 'Alle transaksjonar passar(!)', - 'rule_trigger_exists' => 'Alle transaksjonar passar', + 'rule_trigger_user_action_choice' => 'Brukarhandling er ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Ingen nøkkelord er..', + 'rule_trigger_tag_is_not' => 'Ingen nøkkelord er «:trigger_value»', + 'rule_trigger_account_is_choice' => 'Ein av kontoane er nøyaktig..', + 'rule_trigger_account_is' => 'Ein av kontoane er nøyaktig ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Ein av kontoane inneheld..', + 'rule_trigger_account_contains' => 'Ein av kontoane inneheld ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Ein av kontoane sluttar med..', + 'rule_trigger_account_ends' => 'Beskrivinga sluttar med ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Ein av kontoane byrjar med..', + 'rule_trigger_account_starts' => 'Ein av kontoane byrjar med ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Ein av kontoanes nummer / IBAN er..', + 'rule_trigger_account_nr_is' => 'Kontonummer / IBAN er ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Kontonummer / IBAN inneheld..', + 'rule_trigger_account_nr_contains' => 'Alle kontonummer / IBAN inneheld ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Alle kontonummer / IBAN sluttar med..', + 'rule_trigger_account_nr_ends' => 'Alle kontonummer / IBAN sluttar med ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Alle kontonummer / IBAN byrjar med..', + 'rule_trigger_account_nr_starts' => 'Alle kontonummer / IBAN byrjar med ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Kategori inneheld..', + 'rule_trigger_category_contains' => 'Kategorien inneheld ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Kategori slutter med..', + 'rule_trigger_category_ends' => 'Kategorien sluttar med ":trigger_value', + 'rule_trigger_category_starts_choice' => 'Kategori byrjar med..', + 'rule_trigger_category_starts' => 'Kategorien byrjar med ":trigger_value', + 'rule_trigger_budget_contains_choice' => 'Budsjett inneheld..', + 'rule_trigger_budget_contains' => 'Budsjettet inneheld ":trigger_value', + 'rule_trigger_budget_ends_choice' => 'Budsjettet sluttar med..', + 'rule_trigger_budget_ends' => 'Budsjettet sluttar med ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budsjettet byrjar med..', + 'rule_trigger_budget_starts' => 'Budsjettet byrjar med ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Rekning inneheld..', + 'rule_trigger_bill_contains' => 'Rekninga inneheld ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Rekninga sluttar med..', + 'rule_trigger_bill_ends' => 'Rekning sluttar med ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Rekninga byrjar med..', + 'rule_trigger_bill_starts' => 'Rekning byrjar med ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Ekstern ID inneheld..', + 'rule_trigger_external_id_contains' => 'Ekstern ID inneheld ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Ekstern ID sluttar med..', + 'rule_trigger_external_id_ends' => 'Ekstern ID sluttar med ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Ekstern ID byrjar med..', + 'rule_trigger_external_id_starts' => 'Ekstern ID byrjar med ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Intern referanse inneheld..', + 'rule_trigger_internal_reference_contains' => 'Ekstern referanse ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Intern referanse ender med..', + 'rule_trigger_internal_reference_ends' => 'Intern referanse ender med ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Intern referanse byrjar med..', + 'rule_trigger_internal_reference_starts' => 'Intern referanse byrjar med ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Ekstern URL er..', + 'rule_trigger_external_url_is' => 'Ekstern URL er ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Ekstern URL inneheld..', + 'rule_trigger_external_url_contains' => 'Ekstern URL inneheld ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Ekstern URL sluttar med..', + 'rule_trigger_external_url_ends' => 'Ekstern URL sluttar med ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Ekstern URL byrjar med..', + 'rule_trigger_external_url_starts' => 'Ekstern URL byrjar med ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Har ingen vedlegg', + 'rule_trigger_has_no_attachments' => 'Transaksjonen har ingen vedlegg', + 'rule_trigger_recurrence_id_choice' => 'Gjentakande transaksjons ID er..', + 'rule_trigger_recurrence_id' => 'Gjentakande transaksjons ID er ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Rentedato er..', + 'rule_trigger_interest_date_on' => 'Rentedato er ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Rentedato er før..', + 'rule_trigger_interest_date_before' => 'Rentedato er før ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Rentedato er etter..', + 'rule_trigger_interest_date_after' => 'Rentedato er etter ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Bokført dato er..', + 'rule_trigger_book_date_on' => 'Bokført dato er ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Bokført dato er før..', + 'rule_trigger_book_date_before' => 'Bokført dato er før ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Bokført dato er etter..', + 'rule_trigger_book_date_after' => 'Bokført dato er etter ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Prosessdato er..', + 'rule_trigger_process_date_on' => 'Prosessdato er ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Prosessdato er før..', + 'rule_trigger_process_date_before' => 'Prosessdato er før ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Prosessdato er etter..', + 'rule_trigger_process_date_after' => 'Prosessdato er etter ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Forfallsdato er..', + 'rule_trigger_due_date_on' => 'Forfallsdato er den ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Forfallsdato er før..', + 'rule_trigger_due_date_before' => 'Forfallsdato er før ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Forfallsdato er etter..', + 'rule_trigger_due_date_after' => 'Forfallsdato er etter ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Betalingsdato er på..', + 'rule_trigger_payment_date_on' => 'Betalingsdato er på ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Betalingsdato er før..', + 'rule_trigger_payment_date_before' => 'Betalingsdato er før ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Betalingsdato er etter..', + 'rule_trigger_payment_date_after' => 'Betalingsdato er etter ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Fakturadato er på..', + 'rule_trigger_invoice_date_on' => 'Fakturadato er den ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Fakturadato er før..', + 'rule_trigger_invoice_date_before' => 'Fakturadato er før ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Fakturadato er etter..', + 'rule_trigger_invoice_date_after' => 'Fakturadato er etter ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaksjonen vart oppretta før..', + 'rule_trigger_created_at_before' => 'Transaksjonen vart oppretta før ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaksjonen vart oppretta etter..', + 'rule_trigger_created_at_after' => 'Transaksjonen vart oppretta etter ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaksjonen vart sist oppdatert før..', + 'rule_trigger_updated_at_before' => 'Transaksjonen vart sist oppdatert før ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaksjonen vart sist oppdatert etter..', + 'rule_trigger_updated_at_after' => 'Transaksjonen vart sist oppdatert etter ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Det utenlanske beløpet er nøyaktig..', + 'rule_trigger_foreign_amount_is' => 'Utenlanske beløpet er nøyaktig ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Utenlandske beløpet er mindre enn..', + 'rule_trigger_foreign_amount_less' => 'Utenlandske beløpet er mindre enn ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Utenlandske beløpet er meir enn..', + 'rule_trigger_foreign_amount_more' => 'Utenlandske beløpet er meir enn ":trigger_value', + 'rule_trigger_attachment_name_is_choice' => 'Eventuelle vedlagte namn er..', + 'rule_trigger_attachment_name_is' => 'Namn på eventuelle vedlegg er ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Eventuelle vedlagte namn inneheld..', + 'rule_trigger_attachment_name_contains' => 'Eventuelle vedlagte namn inneheld ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Namn på eventuelle vedlegg byrjar med..', + 'rule_trigger_attachment_name_starts' => 'Eventuelle vedlagte namn byrjar med ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Eventuelle vedlegg sluttar med..', + 'rule_trigger_attachment_name_ends' => 'Eventuelle vedlagte namn sluttar med ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Notat på eventuelle vedlegg er..', + 'rule_trigger_attachment_notes_are' => 'Notat på eventuelle vedlegg er ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Notat på eventuelle vedlegg inneheld..', + 'rule_trigger_attachment_notes_contains' => 'Notat på eventuelle vedlegg inneheld ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Notat på eventuelle vedlegg byrjar med..', + 'rule_trigger_attachment_notes_starts' => 'Notat på eventuelle vedlegg byrjar med ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Notat på eventuelle vedlegg sluttar med..', + 'rule_trigger_attachment_notes_ends' => 'Notat på eventuelle vedlegg sluttar med ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaksjonen er avstemt', + 'rule_trigger_reconciled' => 'Transaksjonen er avstemt', + 'rule_trigger_exists_choice' => 'Alle transaksjonar passar(!)', + 'rule_trigger_exists' => 'Alle transaksjonar passar', // more values for new types: - 'rule_trigger_not_account_id' => 'Konto ID er ikkje ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Kjeldekonto ID er ikkje ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Målkonto ID er ikkje ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaksjonstype er ikkje ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Nøkkelordet er ikkje «:trigger_value»', - 'rule_trigger_not_tag_is_not' => 'Nøkkelordet er «:trigger_value»', - 'rule_trigger_not_description_is' => 'Beskrivinga er ikkje ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Beskrivinga inneheld ikkje', - 'rule_trigger_not_description_ends' => 'Beskrivinga sluttar ikkje med ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Beskrivinga byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notata er ikkje ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notata inneheld ikkje ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notata sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notata byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Kjeldekonto er ikkje ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Kjeldekonto inneheld ikkje ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Kjeldekontoen inneheld ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Kjeldekontoen byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Kjeldekontonummer / IBAN er ikkje ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Kjeldekontonummer / IBAN inneheld ikkje ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Kjeldekontonummer / IBAN sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Kjeldekontoummer / IBAN byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Målkonto er ikkje ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Målkonto inneheld ikkje ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Målkonto sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Målkonto byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Målkonto nummer / IBAN er ikkje ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Målkonto nummer / IBAN inneheld ikkje ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Målkonto nummer / IBAN sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Målkonto nummer / IBAN byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_account_is' => 'Ingen konto er ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Ingen konto inneheld ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Ingen konto sluttar på ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Ingen konto byrjar med ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneheld ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Ingen kontonummer / IBAN sluttar på":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Ingen kontonummer / IBAN byrjar med ":trigger_value"', - 'rule_trigger_not_category_is' => 'Kategori er ikkje ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Kategori inneheld ikkje ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Kategori sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Kategori byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budsjett er ikkje ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budsjett inneheld ikkje ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budsjett sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budsjettet byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Rekninga er ikkje ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Rekninga inneheld ikkje ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Rekninga sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Rekninga sluttar ikkje med ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Ekstern ID er ikkje ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Ekstern ID inneheld ikkje ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Ekstern ID sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Ekstern ID byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Intern referanse er ikkje ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Intern referanse inneheld ikkje ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Intern referanse sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Intern referanse byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'Ekstern URL er ikkje ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Ekstern URL inneheld ikkje ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Ekstern URL sluttar ikkje på ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Ekstern URL byrjar ikkje med ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Valuta er ikkje ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Fremmed valuta er ikkje ":trigger_value"', - 'rule_trigger_not_id' => 'Transaksjons ID er ikkje ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaksjonens journal ID er ikkje ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Gjentakande ID er ikkje ":trigger_value"', - 'rule_trigger_not_date_on' => 'Datoen er ikkje på ":trigger_value"', - 'rule_trigger_not_date_before' => 'Dato er ikkje før ":trigger_value"', - 'rule_trigger_not_date_after' => 'Datoen er ikkje etter ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Rentedato er ikkje på ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Rentedato er ikkje før ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Rentedato er ikkje etter ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Bokføringsdato er ikkje på ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Bokføringsdato er ikkje før ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Bokføringsdato er ikkje etter ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Prosessdato er ikkje på ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Prosessdato er ikkje før ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Prosessdato er ikkje etter ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Forfallsdato er ikkje den ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Forfallsdato er ikkje før ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Forfallsdato er ikkje etter ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Betalingsdato er ikkje på ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Betalingsdato er ikkje før ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Betalingsdato er ikkje etter ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Fakturadato er ikkje på ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Fakturadato er ikkje før ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Fakturadato er ikkje etter ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaksjonen er ikkje oppretta på ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaksjonen er ikkje oppretta før ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaksjonen er ikkje oppretta etter ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaksjonen er ikkje oppdatert på ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaksjonen er ikkje oppdatert før ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaksjonen er ikkje oppdatert etter ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaksjonsbeløp er ikkje ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaksjonsbeløp er meir enn ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaksjonsbeløp er mindre enn ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Utenlandsk transaksjonsbeløp er ikkje ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Utenlandsk transaksjonsbeløp er meir enn ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Utenlandsk transaksjonsbeløp er mindre enn ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Ingen vedlegg heter ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Intet vedleggsnamn inneheld ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Ingen vedleggsnamn byrjar med ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Ingen vedleggsnamn sluttar på ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Ingen vedlagte notat er ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Ingen vedlagte notat inneheld ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Ingen vedlagte notat byrjar med ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Ingen vedlagte notat sluttar på ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaksjonen er ikkje avstemt', - 'rule_trigger_not_exists' => 'Transaksjonen eksisterer ikkje', - 'rule_trigger_not_has_attachments' => 'Transaksjonen har ingen vedlegg', - 'rule_trigger_not_has_any_category' => 'Transaksjonen har ingen kategori', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaksjonen har ingen rekningar', - 'rule_trigger_not_has_any_tag' => 'Transaksjonen har ingen nøkkelord', - 'rule_trigger_not_any_notes' => 'Transaksjonen har ingen notat', - 'rule_trigger_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', - 'rule_trigger_not_has_no_attachments' => 'Transaksjonen har eit (kva som helst) vedlegg', - 'rule_trigger_not_has_no_category' => 'Transaksjonen har ein (hvem som helst) kategori', - 'rule_trigger_not_has_no_budget' => 'Transaksjonen har eit (kva som helst) budsjett', - 'rule_trigger_not_has_no_bill' => 'Transaksjonen har ein (hvilen som helst) rekning', - 'rule_trigger_not_has_no_tag' => 'Transaksjonen har eit (vilkårleg) nøkkelord', - 'rule_trigger_not_no_notes' => 'Transaksjonen har notat', - 'rule_trigger_not_no_external_url' => 'Transaksjonen har ein ekstern URL', - 'rule_trigger_not_source_is_cash' => 'Kjeldekonto er ikkje ein kontantkonto', - 'rule_trigger_not_destination_is_cash' => 'Målkonto er ikkje ein kontantkonto', - 'rule_trigger_not_account_is_cash' => 'Ingen konto er ein kontantkonto', + 'rule_trigger_not_account_id' => 'Konto ID er ikkje ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Kjeldekonto ID er ikkje ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Målkonto ID er ikkje ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaksjonstype er ikkje ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Nøkkelordet er ikkje «:trigger_value»', + 'rule_trigger_not_tag_is_not' => 'Nøkkelordet er «:trigger_value»', + 'rule_trigger_not_description_is' => 'Beskrivinga er ikkje ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Beskrivinga inneheld ikkje', + 'rule_trigger_not_description_ends' => 'Beskrivinga sluttar ikkje med ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Beskrivinga byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notata er ikkje ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notata inneheld ikkje ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notata sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notata byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Kjeldekonto er ikkje ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Kjeldekonto inneheld ikkje ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Kjeldekontoen inneheld ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Kjeldekontoen byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Kjeldekontonummer / IBAN er ikkje ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Kjeldekontonummer / IBAN inneheld ikkje ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Kjeldekontonummer / IBAN sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Kjeldekontoummer / IBAN byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Målkonto er ikkje ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Målkonto inneheld ikkje ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Målkonto sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Målkonto byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Målkonto nummer / IBAN er ikkje ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Målkonto nummer / IBAN inneheld ikkje ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Målkonto nummer / IBAN sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Målkonto nummer / IBAN byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_account_is' => 'Ingen konto er ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Ingen konto inneheld ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Ingen konto sluttar på ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Ingen konto byrjar med ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Ingen kontonummer / IBAN er ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Ingen kontonummer / IBAN inneheld ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Ingen kontonummer / IBAN sluttar på":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Ingen kontonummer / IBAN byrjar med ":trigger_value"', + 'rule_trigger_not_category_is' => 'Kategori er ikkje ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Kategori inneheld ikkje ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Kategori sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Kategori byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budsjett er ikkje ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budsjett inneheld ikkje ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budsjett sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budsjettet byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Rekninga er ikkje ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Rekninga inneheld ikkje ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Rekninga sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Rekninga sluttar ikkje med ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Ekstern ID er ikkje ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Ekstern ID inneheld ikkje ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Ekstern ID sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Ekstern ID byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Intern referanse er ikkje ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Intern referanse inneheld ikkje ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Intern referanse sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Intern referanse byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'Ekstern URL er ikkje ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Ekstern URL inneheld ikkje ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Ekstern URL sluttar ikkje på ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Ekstern URL byrjar ikkje med ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Valuta er ikkje ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Fremmed valuta er ikkje ":trigger_value"', + 'rule_trigger_not_id' => 'Transaksjons ID er ikkje ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaksjonens journal ID er ikkje ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Gjentakande ID er ikkje ":trigger_value"', + 'rule_trigger_not_date_on' => 'Datoen er ikkje på ":trigger_value"', + 'rule_trigger_not_date_before' => 'Dato er ikkje før ":trigger_value"', + 'rule_trigger_not_date_after' => 'Datoen er ikkje etter ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Rentedato er ikkje på ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Rentedato er ikkje før ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Rentedato er ikkje etter ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Bokføringsdato er ikkje på ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Bokføringsdato er ikkje før ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Bokføringsdato er ikkje etter ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Prosessdato er ikkje på ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Prosessdato er ikkje før ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Prosessdato er ikkje etter ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Forfallsdato er ikkje den ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Forfallsdato er ikkje før ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Forfallsdato er ikkje etter ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Betalingsdato er ikkje på ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Betalingsdato er ikkje før ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Betalingsdato er ikkje etter ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Fakturadato er ikkje på ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Fakturadato er ikkje før ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Fakturadato er ikkje etter ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaksjonen er ikkje oppretta på ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaksjonen er ikkje oppretta før ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaksjonen er ikkje oppretta etter ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaksjonen er ikkje oppdatert på ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaksjonen er ikkje oppdatert før ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaksjonen er ikkje oppdatert etter ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaksjonsbeløp er ikkje ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaksjonsbeløp er meir enn ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaksjonsbeløp er mindre enn ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Utenlandsk transaksjonsbeløp er ikkje ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Utenlandsk transaksjonsbeløp er meir enn ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Utenlandsk transaksjonsbeløp er mindre enn ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Ingen vedlegg heter ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Intet vedleggsnamn inneheld ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Ingen vedleggsnamn byrjar med ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Ingen vedleggsnamn sluttar på ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Ingen vedlagte notat er ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Ingen vedlagte notat inneheld ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Ingen vedlagte notat byrjar med ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Ingen vedlagte notat sluttar på ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaksjonen er ikkje avstemt', + 'rule_trigger_not_exists' => 'Transaksjonen eksisterer ikkje', + 'rule_trigger_not_has_attachments' => 'Transaksjonen har ingen vedlegg', + 'rule_trigger_not_has_any_category' => 'Transaksjonen har ingen kategori', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaksjonen har ingen rekningar', + 'rule_trigger_not_has_any_tag' => 'Transaksjonen har ingen nøkkelord', + 'rule_trigger_not_any_notes' => 'Transaksjonen har ingen notat', + 'rule_trigger_not_any_external_url' => 'Transaksjonen har ingen ekstern URL', + 'rule_trigger_not_has_no_attachments' => 'Transaksjonen har eit (kva som helst) vedlegg', + 'rule_trigger_not_has_no_category' => 'Transaksjonen har ein (hvem som helst) kategori', + 'rule_trigger_not_has_no_budget' => 'Transaksjonen har eit (kva som helst) budsjett', + 'rule_trigger_not_has_no_bill' => 'Transaksjonen har ein (hvilen som helst) rekning', + 'rule_trigger_not_has_no_tag' => 'Transaksjonen har eit (vilkårleg) nøkkelord', + 'rule_trigger_not_no_notes' => 'Transaksjonen har notat', + 'rule_trigger_not_no_external_url' => 'Transaksjonen har ein ekstern URL', + 'rule_trigger_not_source_is_cash' => 'Kjeldekonto er ikkje ein kontantkonto', + 'rule_trigger_not_destination_is_cash' => 'Målkonto er ikkje ein kontantkonto', + 'rule_trigger_not_account_is_cash' => 'Ingen konto er ein kontantkonto', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'SLETT transaksjon(!)', - 'rule_action_delete_transaction' => 'SLETT transaksjon(!)', - 'rule_action_set_category' => 'Sett kategori til ":action_value"', - 'rule_action_clear_category' => 'Tøm kategori', - 'rule_action_set_budget' => 'Sett budsjett til ":action_value"', - 'rule_action_clear_budget' => 'Tøm budsjett', - 'rule_action_add_tag' => 'Legg til nøkkelordet «:action_value»', - 'rule_action_remove_tag' => 'Fjern nøkkelordet «:action_value»', - 'rule_action_remove_all_tags' => 'Fjern alle nøkkelord', - 'rule_action_set_description' => 'Sett beskriving til ":action_value"', - 'rule_action_append_description' => 'Legg til ":action_value" på slutten av beskrivinga', - 'rule_action_prepend_description' => 'Legg til ":action_value" på begynnelsen av beskrivinga', - 'rule_action_set_category_choice' => 'Sett kategori til ..', - 'rule_action_clear_category_choice' => 'Tøm alle kategoriar', - 'rule_action_set_budget_choice' => 'Sett budsjett til ..', - 'rule_action_clear_budget_choice' => 'Tøm alle budsjett', - 'rule_action_add_tag_choice' => 'Legg til nøkkelord ..', - 'rule_action_remove_tag_choice' => 'Fjern nøkkelord ..', - 'rule_action_remove_all_tags_choice' => 'Fjern alle nøkkelord', - 'rule_action_set_description_choice' => 'Sett beskriving til ..', - 'rule_action_update_piggy_choice' => 'Legg til / fjern transaksjonsbeløp i sparegris ..', - 'rule_action_update_piggy' => 'Legg til / fjern transaksjonsbeløp i sparegrisen ":action_value"', - 'rule_action_append_description_choice' => 'Legg til i beskriving ..', - 'rule_action_prepend_description_choice' => 'Legg til foran beskrivinga med ..', - 'rule_action_set_source_account_choice' => 'Sett kjeldekonto til ..', - 'rule_action_set_source_account' => 'Sett kjeldekonto til :action_value', - 'rule_action_set_destination_account_choice' => 'Sett målkonto til ..', - 'rule_action_set_destination_account' => 'Sett målkonto til :action_value', - 'rule_action_append_notes_choice' => 'Legg til notat med ..', - 'rule_action_append_notes' => 'Legg til notat med ":action_value"', - 'rule_action_prepend_notes_choice' => 'Legg følgande framfor notat ..', - 'rule_action_prepend_notes' => 'Legg ":action_value" framfor notatet', - 'rule_action_clear_notes_choice' => 'Fjern notat', - 'rule_action_clear_notes' => 'Fjern notat', - 'rule_action_set_notes_choice' => 'Sett notat til ..', - 'rule_action_link_to_bill_choice' => 'Koble til ein rekning ..', - 'rule_action_link_to_bill' => 'Link til rekning «:action_value»', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Sett notat til ":action_value"', - 'rule_action_convert_deposit_choice' => 'Konverter transaksjonen til eit innskot', - 'rule_action_convert_deposit' => 'Konverter transaksjonen til eit innskot frå ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Konverter denne transaksjonen til eit uttak', - 'rule_action_convert_withdrawal' => 'Konverter transaksjonen til eit uttak til ":action_value"', - 'rule_action_convert_transfer_choice' => 'Konverter transaksjonen til ein overføring', - 'rule_action_convert_transfer' => 'Konverter transaksjonen til ein overføring med ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Legg til beskrivinga på transaksjonsnotata', - 'rule_action_append_notes_to_descr_choice' => 'Legg transaksjonsnotatet til beskrivinga', - 'rule_action_move_descr_to_notes_choice' => 'Erstatt gjeldande transaksjonsnotat med beskrivinga', - 'rule_action_move_notes_to_descr_choice' => 'Erstatt gjeldande beskriving med transaksjonsnotata', - 'rule_action_append_descr_to_notes' => 'Legg beskrivinga til notata', - 'rule_action_append_notes_to_descr' => 'Legg notat til beskrivinga', - 'rule_action_move_descr_to_notes' => 'Erstatt notat med beskriving', - 'rule_action_move_notes_to_descr' => 'Erstatt beskriving med notat', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Regelgruppe for rekningar', - 'rulegroup_for_bills_description' => 'Ein spesiell regelgruppe for alle reglane som involverer rekningar.', - 'rule_for_bill_title' => 'Automatisk generert regel for rekning ":name"', - 'rule_for_bill_description' => 'Denne regelen er automatisk generert for å kopla rekninga ":name".', - 'create_rule_for_bill' => 'Opprett ny regel for rekning ":name"', - 'create_rule_for_bill_txt' => 'Du har nettopp oppretta ein ny rekning kalt ":name", gratulerer! Firefly III kan automagisk kopla nye utbetalinger til denne rekninga. Når du betaler husleien, vil for eksempel rekninga "husleie" knyttes til utbetalingen. På denne måten kan Firefly III vise nøyaktig kva rekningar som ligg til forfall. For å gjera dette, må du oppretta ein ny regel. Firefly III har fylt ut nokon fornuftige standardverdiar for deg. Kontroller at desse er riktige. Om desse verdiane er riktige, vil Firefly III automatisk koble rett utbetaling til rett rekning. Sjekk ut triggerne for å sjå om dei er korrekte, og legg til nokon om dei er feil.', - 'new_rule_for_bill_title' => 'Regel for rekning ":name"', - 'new_rule_for_bill_description' => 'Denne regelen markerer transaksjonar for rekning ":name".', + 'rule_action_delete_transaction_choice' => 'SLETT transaksjon(!)', + 'rule_action_delete_transaction' => 'SLETT transaksjon(!)', + 'rule_action_set_category' => 'Sett kategori til ":action_value"', + 'rule_action_clear_category' => 'Tøm kategori', + 'rule_action_set_budget' => 'Sett budsjett til ":action_value"', + 'rule_action_clear_budget' => 'Tøm budsjett', + 'rule_action_add_tag' => 'Legg til nøkkelordet «:action_value»', + 'rule_action_remove_tag' => 'Fjern nøkkelordet «:action_value»', + 'rule_action_remove_all_tags' => 'Fjern alle nøkkelord', + 'rule_action_set_description' => 'Sett beskriving til ":action_value"', + 'rule_action_append_description' => 'Legg til ":action_value" på slutten av beskrivinga', + 'rule_action_prepend_description' => 'Legg til ":action_value" på begynnelsen av beskrivinga', + 'rule_action_set_category_choice' => 'Sett kategori til ..', + 'rule_action_clear_category_choice' => 'Tøm alle kategoriar', + 'rule_action_set_budget_choice' => 'Sett budsjett til ..', + 'rule_action_clear_budget_choice' => 'Tøm alle budsjett', + 'rule_action_add_tag_choice' => 'Legg til nøkkelord ..', + 'rule_action_remove_tag_choice' => 'Fjern nøkkelord ..', + 'rule_action_remove_all_tags_choice' => 'Fjern alle nøkkelord', + 'rule_action_set_description_choice' => 'Sett beskriving til ..', + 'rule_action_update_piggy_choice' => 'Legg til / fjern transaksjonsbeløp i sparegris ..', + 'rule_action_update_piggy' => 'Legg til / fjern transaksjonsbeløp i sparegrisen ":action_value"', + 'rule_action_append_description_choice' => 'Legg til i beskriving ..', + 'rule_action_prepend_description_choice' => 'Legg til foran beskrivinga med ..', + 'rule_action_set_source_account_choice' => 'Sett kjeldekonto til ..', + 'rule_action_set_source_account' => 'Sett kjeldekonto til :action_value', + 'rule_action_set_destination_account_choice' => 'Sett målkonto til ..', + 'rule_action_set_destination_account' => 'Sett målkonto til :action_value', + 'rule_action_append_notes_choice' => 'Legg til notat med ..', + 'rule_action_append_notes' => 'Legg til notat med ":action_value"', + 'rule_action_prepend_notes_choice' => 'Legg følgande framfor notat ..', + 'rule_action_prepend_notes' => 'Legg ":action_value" framfor notatet', + 'rule_action_clear_notes_choice' => 'Fjern notat', + 'rule_action_clear_notes' => 'Fjern notat', + 'rule_action_set_notes_choice' => 'Sett notat til ..', + 'rule_action_link_to_bill_choice' => 'Koble til ein rekning ..', + 'rule_action_link_to_bill' => 'Link til rekning «:action_value»', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Sett notat til ":action_value"', + 'rule_action_convert_deposit_choice' => 'Konverter transaksjonen til eit innskot', + 'rule_action_convert_deposit' => 'Konverter transaksjonen til eit innskot frå ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Konverter denne transaksjonen til eit uttak', + 'rule_action_convert_withdrawal' => 'Konverter transaksjonen til eit uttak til ":action_value"', + 'rule_action_convert_transfer_choice' => 'Konverter transaksjonen til ein overføring', + 'rule_action_convert_transfer' => 'Konverter transaksjonen til ein overføring med ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Legg til beskrivinga på transaksjonsnotata', + 'rule_action_append_notes_to_descr_choice' => 'Legg transaksjonsnotatet til beskrivinga', + 'rule_action_move_descr_to_notes_choice' => 'Erstatt gjeldande transaksjonsnotat med beskrivinga', + 'rule_action_move_notes_to_descr_choice' => 'Erstatt gjeldande beskriving med transaksjonsnotata', + 'rule_action_append_descr_to_notes' => 'Legg beskrivinga til notata', + 'rule_action_append_notes_to_descr' => 'Legg notat til beskrivinga', + 'rule_action_move_descr_to_notes' => 'Erstatt notat med beskriving', + 'rule_action_move_notes_to_descr' => 'Erstatt beskriving med notat', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Regelgruppe for rekningar', + 'rulegroup_for_bills_description' => 'Ein spesiell regelgruppe for alle reglane som involverer rekningar.', + 'rule_for_bill_title' => 'Automatisk generert regel for rekning ":name"', + 'rule_for_bill_description' => 'Denne regelen er automatisk generert for å kopla rekninga ":name".', + 'create_rule_for_bill' => 'Opprett ny regel for rekning ":name"', + 'create_rule_for_bill_txt' => 'Du har nettopp oppretta ein ny rekning kalt ":name", gratulerer! Firefly III kan automagisk kopla nye utbetalinger til denne rekninga. Når du betaler husleien, vil for eksempel rekninga "husleie" knyttes til utbetalingen. På denne måten kan Firefly III vise nøyaktig kva rekningar som ligg til forfall. For å gjera dette, må du oppretta ein ny regel. Firefly III har fylt ut nokon fornuftige standardverdiar for deg. Kontroller at desse er riktige. Om desse verdiane er riktige, vil Firefly III automatisk koble rett utbetaling til rett rekning. Sjekk ut triggerne for å sjå om dei er korrekte, og legg til nokon om dei er feil.', + 'new_rule_for_bill_title' => 'Regel for rekning ":name"', + 'new_rule_for_bill_description' => 'Denne regelen markerer transaksjonar for rekning ":name".', - 'new_rule_for_journal_title' => 'Regel basert på transaksjon ":description"', - 'new_rule_for_journal_description' => 'Denne regelen er basert på transaksjon ":description. Den vil passa transaksjonar som er like.', + 'new_rule_for_journal_title' => 'Regel basert på transaksjon ":description"', + 'new_rule_for_journal_description' => 'Denne regelen er basert på transaksjon ":description. Den vil passa transaksjonar som er like.', // tags - 'store_new_tag' => 'Lagra nytt nøkkelord', - 'update_tag' => 'Oppdater nøkkelord', - 'no_location_set' => 'Ingen plassering spesifisert.', - 'meta_data' => 'Metadata', - 'location' => 'Sted', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Uten dato', - 'result' => 'Resultat', - 'sums_apply_to_range' => 'Alle beløp gjelder for det valde området', - 'mapbox_api_key' => 'For å bruka kart, få ein API-nøkkel frå Mapbox. Åpne .env filen og angi denne koden etter MAPBOX_API_KEY =.', - 'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Tøm lokasjon', - 'delete_all_selected_tags' => 'Slett alle valde nøkkelord', - 'select_tags_to_delete' => 'Ikke gløym å velja nokre nøkkelord.', - 'deleted_x_tags' => 'Sletta :count nøkkelord.|Sletta :count nøkkelord.', - 'create_rule_from_transaction' => 'Opprett regel basert på transaksjon', - 'create_recurring_from_transaction' => 'Opprett gjentakande transaksjon basert på transaksjon', + 'store_new_tag' => 'Lagra nytt nøkkelord', + 'update_tag' => 'Oppdater nøkkelord', + 'no_location_set' => 'Ingen plassering spesifisert.', + 'meta_data' => 'Metadata', + 'location' => 'Sted', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Uten dato', + 'result' => 'Resultat', + 'sums_apply_to_range' => 'Alle beløp gjelder for det valde området', + 'mapbox_api_key' => 'For å bruka kart, få ein API-nøkkel frå Mapbox. Åpne .env filen og angi denne koden etter MAPBOX_API_KEY =.', + 'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Tøm lokasjon', + 'delete_all_selected_tags' => 'Slett alle valde nøkkelord', + 'select_tags_to_delete' => 'Ikke gløym å velja nokre nøkkelord.', + 'deleted_x_tags' => 'Sletta :count nøkkelord.|Sletta :count nøkkelord.', + 'create_rule_from_transaction' => 'Opprett regel basert på transaksjon', + 'create_recurring_from_transaction' => 'Opprett gjentakande transaksjon basert på transaksjon', // preferences - 'dark_mode_option_browser' => 'La nettleseren din avgjera', - 'dark_mode_option_light' => 'Alltid lys', - 'dark_mode_option_dark' => 'Alltid mørk', - 'equal_to_language' => '(likt språk)', - 'dark_mode_preference' => 'Mørk modus', - 'dark_mode_preference_help' => 'Fortell Firefly III når den skal bruka mørk modus.', - 'pref_home_screen_accounts' => 'Startskjermkontoar', - 'pref_home_screen_accounts_help' => 'Kva kontoar skal visast på startsida?', - 'pref_view_range' => 'Visningsgrense', - 'pref_view_range_help' => 'Nokre diagram er automatisk gruppert i periodar. Budsjetta grupperast òg i periodar. Kva for ein periode føretrekk du?', - 'pref_1D' => 'Én dag', - 'pref_1W' => 'Én veke', - 'pref_1M' => 'Ein månad', - 'pref_3M' => 'Tre måneder (kvartal)', - 'pref_6M' => 'Seks måneder', - 'pref_1Y' => 'Ett år', - 'pref_last365' => 'I fjor', - 'pref_last90' => 'Siste 90 dager', - 'pref_last30' => 'Siste 30 dagene', - 'pref_last7' => 'Siste 7 dager', - 'pref_YTD' => 'År til dato', - 'pref_QTD' => 'Kvartal til dato', - 'pref_MTD' => 'Måned til dato', - 'pref_languages' => 'Språk', - 'pref_locale' => 'Instillinger for språk', - 'pref_languages_help' => 'Firefly III støttar fleire språk. Kva føretrekk du?', - 'pref_locale_help' => 'Firefly III lar deg velga andre lokale innstillinger, som korleis valutaer, tal og datoar er formatert. Oppføringar i denne lista vert kanskje ikkje støtta av systemet ditt. Firefly III har ikkje rett dato innstillinger for alle steder; kontakt meg gjerne for forbetringar.', - 'pref_locale_no_demo' => 'Denne funksjonen vil ikkje fungera for demo-brukar.', - 'pref_custom_fiscal_year' => 'Innstillinger for rekneskapsår', - 'pref_custom_fiscal_year_label' => 'Aktivert', - 'pref_custom_fiscal_year_help' => 'I land som brukar eit anna rekneskapsår enn 1. januar til 31. desember, kan du slå på dette og angi start- og sluttdager for rekneskapsåret', - 'pref_fiscal_year_start_label' => 'Rekneskapsårets startdato', - 'pref_two_factor_auth' => '2-trinnsverifisering', - 'pref_two_factor_auth_help' => 'Når du aktiverar 2-trinnsverifisering (òg kjent som tofaktorautentisering), legg du til eit ekstra sikkerhetslag på kontoen din. Du loggar deg på med noko du veit (passordet ditt) og noko du har (ein bekreftelseskode). Bekreftelseskodar vert laga av eit program på telefonen, for eksempel Authy eller Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Skru på 2-trinnsverifisering', - 'pref_two_factor_auth_disabled' => '2-trinnsverifisering er fjerna og deaktivert', - 'pref_two_factor_auth_remove_it' => 'Ikke gløym å fjerna kontoen frå autentiseringsappen din!', - 'pref_two_factor_auth_code' => 'Bekreftelseskode', - 'pref_two_factor_auth_code_help' => 'Skann QR-koden med eit program på telefonen, for eksempel Authy eller Google Authenticator, og skriv inn den genererte koden.', - 'pref_two_factor_auth_reset_code' => 'Tilbakestill verifiseringskoden', - 'pref_two_factor_auth_disable_2fa' => 'Deaktiver 2FA', - '2fa_use_secret_instead' => 'Om du ikkje kan skanne QR- koden, bruk gjerne hemmelegheita i staden: :secret.', - '2fa_backup_codes' => 'Lagra desse sikkerhetskodane for å få tilgang i tilfelle du mister enheten.', - '2fa_already_enabled' => '2-trinns verifisering er allereie aktivert.', - 'wrong_mfa_code' => 'Denne MFA-koden er ikkje gyldig.', - 'pref_save_settings' => 'Lagra innstillinger', - 'saved_preferences' => 'Innstillinger lagra!', - 'preferences_general' => 'Generelt', - 'preferences_frontpage' => 'Startskjermen', - 'preferences_security' => 'Sikkerhet', - 'preferences_layout' => 'Oppsett', - 'preferences_notifications' => 'Varsler', - 'pref_home_show_deposits' => 'Vis innskot på startskjermen', - 'pref_home_show_deposits_info' => 'Startskjermen visar allereie kostnadskontoane dine. Skal den òg vise inntektskontoane dine?', - 'pref_home_do_show_deposits' => 'Ja, vis dem', - 'successful_count' => 'korav :count var vellukka', - 'list_page_size_title' => 'Sidestørrelse', - 'list_page_size_help' => 'Ei liste over ting (kontoar, transaksjonar osv.). Visar maksimalt dette antal element på kvar side.', - 'list_page_size_label' => 'Sidestørrelse', - 'between_dates' => '(:start og :end)', - 'pref_optional_fields_transaction' => 'Valgfrie felt for transaksjonar', - 'pref_optional_fields_transaction_help' => 'Som standard er ikkje alle felt aktivert når du oppretter ein ny transaksjon (for å unngå forvirring). Nedanfor kan du aktivera desse felta om du trur dei kan vera nyttige for deg. Selvfølgelig vil eit felt som er deaktivert, men allereie fylt inn, vera synlig, uavhengig av innstillinga.', - 'optional_tj_date_fields' => 'Datofelter', - 'optional_tj_other_fields' => 'Andre felt', - 'optional_tj_attachment_fields' => 'Vedleggsfelter', - 'pref_optional_tj_interest_date' => 'Rentedato', - 'pref_optional_tj_book_date' => 'Bokføringsdato', - 'pref_optional_tj_process_date' => 'Prosesseringsdato', - 'pref_optional_tj_due_date' => 'Forfallsdato', - 'pref_optional_tj_payment_date' => 'Betalingsdato', - 'pref_optional_tj_invoice_date' => 'Fakturadato', - 'pref_optional_tj_internal_reference' => 'Intern referanse', - 'pref_optional_tj_notes' => 'Notat', - 'pref_optional_tj_attachments' => 'Vedlegg', - 'pref_optional_tj_external_url' => 'Ekstern URL', - 'pref_optional_tj_location' => 'Sted', - 'pref_optional_tj_links' => 'Transaksjonskoplingar', - 'optional_field_meta_dates' => 'Datoer', - 'optional_field_meta_business' => 'Bedrift', - 'optional_field_attachments' => 'Vedlegg', - 'optional_field_meta_data' => 'Valgfri metadata', - 'external_url' => 'Ekstern URL', - 'pref_notification_bill_reminder' => 'Påminnelse om forfallende rekningar', - 'pref_notification_new_access_token' => 'Varsle når eit nytt API tilgangstoken er opprettet', - 'pref_notification_transaction_creation' => 'Varsle når ein transaksjon opprettes automatisk', - 'pref_notification_user_login' => 'Varsle når du loggar inn frå eit ny plass', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Varslinger', - 'pref_notifications_help' => 'Angi om dette er varsler du ønskar å få. Nokre meldingar kan inneholda sensitiv økonomisk informasjon.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Om du vil at Firefly III skal varsle deg ved hjelp av Slack, skriv inn webhook-URLen her. Ellers la feltet stå tomt. Dersom du er ein administrator må du òg definera denne URL-adressa i administrasjonen.', - 'slack_url_label' => 'Slack «incoming webhook» URL', + 'dark_mode_option_browser' => 'La nettleseren din avgjera', + 'dark_mode_option_light' => 'Alltid lys', + 'dark_mode_option_dark' => 'Alltid mørk', + 'equal_to_language' => '(likt språk)', + 'dark_mode_preference' => 'Mørk modus', + 'dark_mode_preference_help' => 'Fortell Firefly III når den skal bruka mørk modus.', + 'pref_home_screen_accounts' => 'Startskjermkontoar', + 'pref_home_screen_accounts_help' => 'Kva kontoar skal visast på startsida?', + 'pref_view_range' => 'Visningsgrense', + 'pref_view_range_help' => 'Nokre diagram er automatisk gruppert i periodar. Budsjetta grupperast òg i periodar. Kva for ein periode føretrekk du?', + 'pref_1D' => 'Én dag', + 'pref_1W' => 'Én veke', + 'pref_1M' => 'Ein månad', + 'pref_3M' => 'Tre måneder (kvartal)', + 'pref_6M' => 'Seks måneder', + 'pref_1Y' => 'Ett år', + 'pref_last365' => 'I fjor', + 'pref_last90' => 'Siste 90 dager', + 'pref_last30' => 'Siste 30 dagene', + 'pref_last7' => 'Siste 7 dager', + 'pref_YTD' => 'År til dato', + 'pref_QTD' => 'Kvartal til dato', + 'pref_MTD' => 'Måned til dato', + 'pref_languages' => 'Språk', + 'pref_locale' => 'Instillinger for språk', + 'pref_languages_help' => 'Firefly III støttar fleire språk. Kva føretrekk du?', + 'pref_locale_help' => 'Firefly III lar deg velga andre lokale innstillinger, som korleis valutaer, tal og datoar er formatert. Oppføringar i denne lista vert kanskje ikkje støtta av systemet ditt. Firefly III har ikkje rett dato innstillinger for alle steder; kontakt meg gjerne for forbetringar.', + 'pref_locale_no_demo' => 'Denne funksjonen vil ikkje fungera for demo-brukar.', + 'pref_custom_fiscal_year' => 'Innstillinger for rekneskapsår', + 'pref_custom_fiscal_year_label' => 'Aktivert', + 'pref_custom_fiscal_year_help' => 'I land som brukar eit anna rekneskapsår enn 1. januar til 31. desember, kan du slå på dette og angi start- og sluttdager for rekneskapsåret', + 'pref_fiscal_year_start_label' => 'Rekneskapsårets startdato', + 'pref_two_factor_auth' => '2-trinnsverifisering', + 'pref_two_factor_auth_help' => 'Når du aktiverar 2-trinnsverifisering (òg kjent som tofaktorautentisering), legg du til eit ekstra sikkerhetslag på kontoen din. Du loggar deg på med noko du veit (passordet ditt) og noko du har (ein bekreftelseskode). Bekreftelseskodar vert laga av eit program på telefonen, for eksempel Authy eller Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Skru på 2-trinnsverifisering', + 'pref_two_factor_auth_disabled' => '2-trinnsverifisering er fjerna og deaktivert', + 'pref_two_factor_auth_remove_it' => 'Ikke gløym å fjerna kontoen frå autentiseringsappen din!', + 'pref_two_factor_auth_code' => 'Bekreftelseskode', + 'pref_two_factor_auth_code_help' => 'Skann QR-koden med eit program på telefonen, for eksempel Authy eller Google Authenticator, og skriv inn den genererte koden.', + 'pref_two_factor_auth_reset_code' => 'Tilbakestill verifiseringskoden', + 'pref_two_factor_auth_disable_2fa' => 'Deaktiver 2FA', + '2fa_use_secret_instead' => 'Om du ikkje kan skanne QR- koden, bruk gjerne hemmelegheita i staden: :secret.', + '2fa_backup_codes' => 'Lagra desse sikkerhetskodane for å få tilgang i tilfelle du mister enheten.', + '2fa_already_enabled' => '2-trinns verifisering er allereie aktivert.', + 'wrong_mfa_code' => 'Denne MFA-koden er ikkje gyldig.', + 'pref_save_settings' => 'Lagra innstillinger', + 'saved_preferences' => 'Innstillinger lagra!', + 'preferences_general' => 'Generelt', + 'preferences_frontpage' => 'Startskjermen', + 'preferences_security' => 'Sikkerhet', + 'preferences_layout' => 'Oppsett', + 'preferences_notifications' => 'Varsler', + 'pref_home_show_deposits' => 'Vis innskot på startskjermen', + 'pref_home_show_deposits_info' => 'Startskjermen visar allereie kostnadskontoane dine. Skal den òg vise inntektskontoane dine?', + 'pref_home_do_show_deposits' => 'Ja, vis dem', + 'successful_count' => 'korav :count var vellukka', + 'list_page_size_title' => 'Sidestørrelse', + 'list_page_size_help' => 'Ei liste over ting (kontoar, transaksjonar osv.). Visar maksimalt dette antal element på kvar side.', + 'list_page_size_label' => 'Sidestørrelse', + 'between_dates' => '(:start og :end)', + 'pref_optional_fields_transaction' => 'Valgfrie felt for transaksjonar', + 'pref_optional_fields_transaction_help' => 'Som standard er ikkje alle felt aktivert når du oppretter ein ny transaksjon (for å unngå forvirring). Nedanfor kan du aktivera desse felta om du trur dei kan vera nyttige for deg. Selvfølgelig vil eit felt som er deaktivert, men allereie fylt inn, vera synlig, uavhengig av innstillinga.', + 'optional_tj_date_fields' => 'Datofelter', + 'optional_tj_other_fields' => 'Andre felt', + 'optional_tj_attachment_fields' => 'Vedleggsfelter', + 'pref_optional_tj_interest_date' => 'Rentedato', + 'pref_optional_tj_book_date' => 'Bokføringsdato', + 'pref_optional_tj_process_date' => 'Prosesseringsdato', + 'pref_optional_tj_due_date' => 'Forfallsdato', + 'pref_optional_tj_payment_date' => 'Betalingsdato', + 'pref_optional_tj_invoice_date' => 'Fakturadato', + 'pref_optional_tj_internal_reference' => 'Intern referanse', + 'pref_optional_tj_notes' => 'Notat', + 'pref_optional_tj_attachments' => 'Vedlegg', + 'pref_optional_tj_external_url' => 'Ekstern URL', + 'pref_optional_tj_location' => 'Sted', + 'pref_optional_tj_links' => 'Transaksjonskoplingar', + 'optional_field_meta_dates' => 'Datoer', + 'optional_field_meta_business' => 'Bedrift', + 'optional_field_attachments' => 'Vedlegg', + 'optional_field_meta_data' => 'Valgfri metadata', + 'external_url' => 'Ekstern URL', + 'pref_notification_bill_reminder' => 'Påminnelse om forfallende rekningar', + 'pref_notification_new_access_token' => 'Varsle når eit nytt API tilgangstoken er opprettet', + 'pref_notification_transaction_creation' => 'Varsle når ein transaksjon opprettes automatisk', + 'pref_notification_user_login' => 'Varsle når du loggar inn frå eit ny plass', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Varslinger', + 'pref_notifications_help' => 'Angi om dette er varsler du ønskar å få. Nokre meldingar kan inneholda sensitiv økonomisk informasjon.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Om du vil at Firefly III skal varsle deg ved hjelp av Slack, skriv inn webhook-URLen her. Ellers la feltet stå tomt. Dersom du er ein administrator må du òg definera denne URL-adressa i administrasjonen.', + 'slack_url_label' => 'Slack «incoming webhook» URL', // Financial administrations - 'administration_index' => 'Økonomisk administrasjon', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Økonomisk administrasjon', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Rens data frå Firefly III', - 'purge_data_expl' => 'Rensing betyr «slett det som allereie er sletta». Under normale omstendigheiter slettar Firefly III ingenting permanent. Det gjemmer det. Knappen under slettar alle desse tidlegare «sletta» oppføringane FOR ALLTID.', - 'delete_stuff_header' => 'Slett og rens data', - 'purge_all_data' => 'Rens alle sletta postar', - 'purge_data' => 'Rens data', - 'purged_all_records' => 'Alle sletta postar vart fjerna.', - 'delete_data_title' => 'Slett data frå Firefly III', - 'permanent_delete_stuff' => 'Du kan sletta ting frå Firefly III. Ved å bruka knappane under betyr at oppføringane dine vil verta fjerna frå visning og skjult. Det er ikkje mogleg å angre på dette, men elementa kan forbli i databasen kor du kan hente dei tilbake om nødvendig.', - 'other_sessions_logged_out' => 'Alle dine andre økter har vorte logget ut.', - 'delete_unused_accounts' => 'Sletting av ubrukte kontoar vil tømma auto-fullfør listene dine.', - 'delete_all_unused_accounts' => 'Slett ubrukte kontoar', - 'deleted_all_unused_accounts' => 'Alle ubrukte kontoar er sletta', - 'delete_all_budgets' => 'Slett ALLE budsjett', - 'delete_all_categories' => 'Slett ALLE kategoriane dine', - 'delete_all_tags' => 'Slett ALLE nøkkelorda dine', - 'delete_all_bills' => 'Slett ALLE rekningane dine', - 'delete_all_piggy_banks' => 'Slett ALLE sparegriser', - 'delete_all_rules' => 'Slett ALLE reglane dine', - 'delete_all_recurring' => 'Slett ALLE gjentakande transaksjonar', - 'delete_all_object_groups' => 'Slett ALLE objektgrupper', - 'delete_all_accounts' => 'Slett ALLE kontoane dine', - 'delete_all_asset_accounts' => 'Slett ALLE aktivakontoane dine', - 'delete_all_expense_accounts' => 'Slett ALLE utgiftskontoane dine', - 'delete_all_revenue_accounts' => 'Slett ALLE inntektskontoane dine', - 'delete_all_liabilities' => 'Slett ALLE forpliktelser', - 'delete_all_transactions' => 'Slett ALLE transaksjonane dine', - 'delete_all_withdrawals' => 'Slett ALLE uttaka dine', - 'delete_all_deposits' => 'Slett ALLE innskot', - 'delete_all_transfers' => 'Slett ALLE overføringer', - 'also_delete_transactions' => 'Når kontoar vert sletta så vert ALLE tilhøyrande uttak, innskot og overføringar sletta!', - 'deleted_all_budgets' => 'Alle budsjett har vorte sletta', - 'deleted_all_categories' => 'Alle kategoriar har vorte sletta', - 'deleted_all_tags' => 'Alle nøkkelorda har vorte sletta', - 'deleted_all_bills' => 'Alle rekningar har vorte sletta', - 'deleted_all_piggy_banks' => 'Alle sparegriser er sletta', - 'deleted_all_rules' => 'Alle reglar og regelgrupper er sletta', - 'deleted_all_object_groups' => 'Alle grupper har vorte sletta', - 'deleted_all_accounts' => 'Alle kontoar har vorte sletta', - 'deleted_all_asset_accounts' => 'Alle aktivakontoar har vorte sletta', - 'deleted_all_expense_accounts' => 'Alle utgiftskontoar har blitt sletta', - 'deleted_all_revenue_accounts' => 'Alle inntektskontoar har blitt sletta', - 'deleted_all_liabilities' => 'Alle forpliktelser har vorte sletta', - 'deleted_all_transactions' => 'Alle transaksjonar har vorte sletta', - 'deleted_all_withdrawals' => 'Alle uttak er sletta', - 'deleted_all_deposits' => 'Alle innskot er sletta', - 'deleted_all_transfers' => 'Alle overføringer er sletta', - 'deleted_all_recurring' => 'Alle gjentakande transaksjonar har vorte sletta', - 'change_your_password' => 'Endre passord', - 'delete_account' => 'Slett konto', - 'current_password' => 'Noverande passord', - 'new_password' => 'Nytt passord', - 'new_password_again' => 'Nytt passord (gjenta)', - 'delete_your_account' => 'Slett din konto', - 'delete_your_account_help' => 'Om du slettar brukarkontoen din så vert og alle kontoar, transaksjonar, og alt anna du har lagra i Firefly III sletta. Det vert vekke FOR GODT.', - 'delete_your_account_password' => 'Skriv inn passordet ditt for å fortsetja.', - 'password' => 'Passord', - 'are_you_sure' => 'Er du sikker? Du kan ikkje angre på dette.', - 'delete_account_button' => 'SLETT din konto', - 'invalid_current_password' => 'Ugyldig noverande passord!', - 'password_changed' => 'Passord endra!', - 'should_change' => 'Tanken er å endra passordet ditt.', - 'invalid_password' => 'Ugyldig passord!', - 'what_is_pw_security' => 'Kva er «sjekk passordsikkerhet»?', - 'secure_pw_title' => 'Korleis velga eit sikkert passord', - 'forgot_password_response' => 'Takk skal du ha. Om det eksisterar ein konto med denne e-postadressa, finn du instruksjonar i innboksen din.', - 'secure_pw_history' => 'Ikke ein veke går uten at du leser i nyheitene om eit nettsted som har mistet passord for brukarane sine. Hackere og tyver brukar desse passorda for å prøve å stjela din private informasjon. Denne informasjonen er verdifull.', - 'secure_pw_ff' => 'Brukar du det same passordet over alt på Internett? Om berre ein nettstad mistar passordet, har datasnokar tilgang til alle dine data. Firefly III er avhengig av at du vel eit sterkt og unikt passord for å beskytta dine finansielle data.', - 'secure_pw_check_box' => 'For å hjelpa deg kan Firefly III sjekka om passordet du vil bruka har vorte stole tidlegare. Om dette er tilfelle, rådar Firefly III deg til ikkje å bruka dette passordet.', - 'secure_pw_working_title' => 'Korleis virker det?', - 'secure_pw_working' => 'Ved å huke av denne boksen vil Firefly III sende dei fem første teikna til SHA1-hashen av passordet ditt til nettsida til Troy Hunt for å sjå om det er på lista hans. Dette vil stoppe deg frå å bruka usikre passord som anbefalt i den siste spesialpublikasjonen frå NIST om dette emnet.', - 'secure_pw_should' => 'Bør eg huke av boksen?', - 'secure_pw_long_password' => 'Ja. Alltid bekreft at passordet ditt er trygt.', - 'command_line_token' => 'Kommandolinjenøkkel', - 'explain_command_line_token' => 'Du trenger dette "token" for å utføre kommander på kommandolinje som f. eks. importere eller eksportere. Uten dette teiknet fungerar ikkje kommandoene. Ikke del din kommandolinje token. Ingen vil spørre deg om dette spesialteiknet, ikkje engang meg. Om du frykter at du har mistet dette, eller ved paranoia, trykk på knappen for å generera eit nytt "token".', - 'regenerate_command_line_token' => 'Regenerer kommandolinjenøkkel', - 'token_regenerated' => 'Ein ny kommandolinjenøkkel vart generert', - 'change_your_email' => 'Endre din epostadresse', - 'email_verification' => 'Ein e-postmelding sendes til din gamle og nye e-postadresse. Av sikkerhetsgrunner, vil du ikkje kunne logge inn før du bekrefter din nye epostadresse. Om du er usikker på om Firefly III installasjonen er i stand til å sende e-post, ikkje bruk denne funksjonen. Om du er administrator, kan du teste dette i Administrasjon.', - 'email_changed_logout' => 'Inntil du bekrefter e-postadressa din, kan du ikkje logge inn.', - 'login_with_new_email' => 'Du kan no logge inn med din nye e-postadresse.', - 'login_with_old_email' => 'Du kan no logge inn med din gamle e-postadresse igjen.', - 'login_provider_local_only' => 'Denne handlinga er ikkje tilgjengeleg ved autentisering gjennom «:login_provider».', - 'external_user_mgt_disabled' => 'Denne handlinga er ikkje tilgjengelig når Firefly III ikkje er ansvarlig for brukarstyring eller autentiseringshandtering.', - 'external_auth_disabled' => 'Denne handlinga er ikkje tilgjengeleg når Firefly III ikkje er ansvarlig for autentiseringshandtering.', - 'delete_local_info_only' => 'Fordi Firefly III ikkje er ansvarlig for brukarstyring eller autentiseringshandtering, vil denne funksjonen berre sletta lokal informasjon om Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth klienter', - 'profile_oauth_no_clients' => 'Du har ikkje oppretta nokon OAuth klienter.', - 'profile_oauth_clients_external_auth' => 'Om du brukar ein ekstern autentiseringsleverandør som Authelia, vil ikkje OAuth klientar fungera. Du kan berre bruka personlege tilgangsnøklar.', - 'profile_oauth_clients_header' => 'Klienter', - 'profile_oauth_client_id' => 'Klient-ID', - 'profile_oauth_client_name' => 'Namn', - 'profile_oauth_client_secret' => 'Hemmelegheit', - 'profile_oauth_create_new_client' => 'Opprett Ny Klient', - 'profile_oauth_create_client' => 'Opprett Klient', - 'profile_oauth_edit_client' => 'Rediger Klient', - 'profile_oauth_name_help' => 'Noko brukarane dine vil gjenkjenne og stole på.', - 'profile_oauth_redirect_url' => 'Videresendings-URL', - 'profile_oauth_redirect_url_help' => 'Programmets tilbakekallingslenkje for autorisering.', - 'profile_authorized_apps' => 'Dine autoriserte applikasjoner', - 'profile_authorized_clients' => 'Autoriserte klienter', - 'profile_scopes' => 'Omfang', - 'profile_revoke' => 'Tilbakekall', - 'profile_oauth_client_secret_title' => 'Klient Hemmelegheit', - 'profile_oauth_client_secret_expl' => 'Her er din nye klienthemmelegheit. Dette er den einaste gongen han vert vist så ikkje mist han! Du kan bruka denne hemmeligheita til å laga API-spørsmål.', - 'profile_personal_access_tokens' => 'Personleg tilgangsnøkkel', - 'profile_personal_access_token' => 'Personleg tilgangsnøkkel', - 'profile_oauth_confidential' => 'Konfidensiell', - 'profile_oauth_confidential_help' => 'Krev at klienten godkjenner med ein hemmelegheit. Konfidensielle klienter kan halde legitimasjon på ein sikker måte uten å utsette dei for uautoriserte parter. Offentlige programmer, som skrivebord eller JavaScript SPA-programmer er ikkje istand til å halda hemmelegheiter sikra.', - 'profile_personal_access_token_explanation' => 'Her er din nye personlege tilgangsnøkkel. Dette er den einaste gongen han vert vist så ikkje mist han! Du kan no bruka tilgangsnøkkelen til å laga API-spørsmål.', - 'profile_no_personal_access_token' => 'Du har ikkje oppretta personlege tilgangsnøklar.', - 'profile_create_new_token' => 'Opprette nytt token', - 'profile_create_token' => 'Opprett token', - 'profile_create' => 'Opprett', - 'profile_save_changes' => 'Lagra endringer', - 'profile_whoops' => 'Oisann!', - 'profile_something_wrong' => 'Noko gjekk gale!', - 'profile_try_again' => 'Noko gjekk gale. Prøv på nytt.', - 'amounts' => 'Beløp', - 'multi_account_warning_unknown' => 'Avhengig av kva type transaksjon du opprettar, Kjelde og/eller målkonto for etterfølgande delingar kan overstyrast av det som er definert i transaksjonens første del.', - 'multi_account_warning_withdrawal' => 'Husk at kildekontoen for etterfølgende oppsplitting skal overlates av kva som defineres i den første delen av uttrekket.', - 'multi_account_warning_deposit' => 'Husk at mottakerkontoen for etterfølgende oppsplitting skal overstyres av det som er definert i den første delen av depositumet.', - 'multi_account_warning_transfer' => 'Husk at kildens pluss destinasjonskonto med etterfølgende oppdeling overstyres av det som er definert i ein første del av overføringen.', + 'purge_data_title' => 'Rens data frå Firefly III', + 'purge_data_expl' => 'Rensing betyr «slett det som allereie er sletta». Under normale omstendigheiter slettar Firefly III ingenting permanent. Det gjemmer det. Knappen under slettar alle desse tidlegare «sletta» oppføringane FOR ALLTID.', + 'delete_stuff_header' => 'Slett og rens data', + 'purge_all_data' => 'Rens alle sletta postar', + 'purge_data' => 'Rens data', + 'purged_all_records' => 'Alle sletta postar vart fjerna.', + 'delete_data_title' => 'Slett data frå Firefly III', + 'permanent_delete_stuff' => 'Du kan sletta ting frå Firefly III. Ved å bruka knappane under betyr at oppføringane dine vil verta fjerna frå visning og skjult. Det er ikkje mogleg å angre på dette, men elementa kan forbli i databasen kor du kan hente dei tilbake om nødvendig.', + 'other_sessions_logged_out' => 'Alle dine andre økter har vorte logget ut.', + 'delete_unused_accounts' => 'Sletting av ubrukte kontoar vil tømma auto-fullfør listene dine.', + 'delete_all_unused_accounts' => 'Slett ubrukte kontoar', + 'deleted_all_unused_accounts' => 'Alle ubrukte kontoar er sletta', + 'delete_all_budgets' => 'Slett ALLE budsjett', + 'delete_all_categories' => 'Slett ALLE kategoriane dine', + 'delete_all_tags' => 'Slett ALLE nøkkelorda dine', + 'delete_all_bills' => 'Slett ALLE rekningane dine', + 'delete_all_piggy_banks' => 'Slett ALLE sparegriser', + 'delete_all_rules' => 'Slett ALLE reglane dine', + 'delete_all_recurring' => 'Slett ALLE gjentakande transaksjonar', + 'delete_all_object_groups' => 'Slett ALLE objektgrupper', + 'delete_all_accounts' => 'Slett ALLE kontoane dine', + 'delete_all_asset_accounts' => 'Slett ALLE aktivakontoane dine', + 'delete_all_expense_accounts' => 'Slett ALLE utgiftskontoane dine', + 'delete_all_revenue_accounts' => 'Slett ALLE inntektskontoane dine', + 'delete_all_liabilities' => 'Slett ALLE forpliktelser', + 'delete_all_transactions' => 'Slett ALLE transaksjonane dine', + 'delete_all_withdrawals' => 'Slett ALLE uttaka dine', + 'delete_all_deposits' => 'Slett ALLE innskot', + 'delete_all_transfers' => 'Slett ALLE overføringer', + 'also_delete_transactions' => 'Når kontoar vert sletta så vert ALLE tilhøyrande uttak, innskot og overføringar sletta!', + 'deleted_all_budgets' => 'Alle budsjett har vorte sletta', + 'deleted_all_categories' => 'Alle kategoriar har vorte sletta', + 'deleted_all_tags' => 'Alle nøkkelorda har vorte sletta', + 'deleted_all_bills' => 'Alle rekningar har vorte sletta', + 'deleted_all_piggy_banks' => 'Alle sparegriser er sletta', + 'deleted_all_rules' => 'Alle reglar og regelgrupper er sletta', + 'deleted_all_object_groups' => 'Alle grupper har vorte sletta', + 'deleted_all_accounts' => 'Alle kontoar har vorte sletta', + 'deleted_all_asset_accounts' => 'Alle aktivakontoar har vorte sletta', + 'deleted_all_expense_accounts' => 'Alle utgiftskontoar har blitt sletta', + 'deleted_all_revenue_accounts' => 'Alle inntektskontoar har blitt sletta', + 'deleted_all_liabilities' => 'Alle forpliktelser har vorte sletta', + 'deleted_all_transactions' => 'Alle transaksjonar har vorte sletta', + 'deleted_all_withdrawals' => 'Alle uttak er sletta', + 'deleted_all_deposits' => 'Alle innskot er sletta', + 'deleted_all_transfers' => 'Alle overføringer er sletta', + 'deleted_all_recurring' => 'Alle gjentakande transaksjonar har vorte sletta', + 'change_your_password' => 'Endre passord', + 'delete_account' => 'Slett konto', + 'current_password' => 'Noverande passord', + 'new_password' => 'Nytt passord', + 'new_password_again' => 'Nytt passord (gjenta)', + 'delete_your_account' => 'Slett din konto', + 'delete_your_account_help' => 'Om du slettar brukarkontoen din så vert og alle kontoar, transaksjonar, og alt anna du har lagra i Firefly III sletta. Det vert vekke FOR GODT.', + 'delete_your_account_password' => 'Skriv inn passordet ditt for å fortsetja.', + 'password' => 'Passord', + 'are_you_sure' => 'Er du sikker? Du kan ikkje angre på dette.', + 'delete_account_button' => 'SLETT din konto', + 'invalid_current_password' => 'Ugyldig noverande passord!', + 'password_changed' => 'Passord endra!', + 'should_change' => 'Tanken er å endra passordet ditt.', + 'invalid_password' => 'Ugyldig passord!', + 'what_is_pw_security' => 'Kva er «sjekk passordsikkerhet»?', + 'secure_pw_title' => 'Korleis velga eit sikkert passord', + 'forgot_password_response' => 'Takk skal du ha. Om det eksisterar ein konto med denne e-postadressa, finn du instruksjonar i innboksen din.', + 'secure_pw_history' => 'Ikke ein veke går uten at du leser i nyheitene om eit nettsted som har mistet passord for brukarane sine. Hackere og tyver brukar desse passorda for å prøve å stjela din private informasjon. Denne informasjonen er verdifull.', + 'secure_pw_ff' => 'Brukar du det same passordet over alt på Internett? Om berre ein nettstad mistar passordet, har datasnokar tilgang til alle dine data. Firefly III er avhengig av at du vel eit sterkt og unikt passord for å beskytta dine finansielle data.', + 'secure_pw_check_box' => 'For å hjelpa deg kan Firefly III sjekka om passordet du vil bruka har vorte stole tidlegare. Om dette er tilfelle, rådar Firefly III deg til ikkje å bruka dette passordet.', + 'secure_pw_working_title' => 'Korleis virker det?', + 'secure_pw_working' => 'Ved å huke av denne boksen vil Firefly III sende dei fem første teikna til SHA1-hashen av passordet ditt til nettsida til Troy Hunt for å sjå om det er på lista hans. Dette vil stoppe deg frå å bruka usikre passord som anbefalt i den siste spesialpublikasjonen frå NIST om dette emnet.', + 'secure_pw_should' => 'Bør eg huke av boksen?', + 'secure_pw_long_password' => 'Ja. Alltid bekreft at passordet ditt er trygt.', + 'command_line_token' => 'Kommandolinjenøkkel', + 'explain_command_line_token' => 'Du trenger dette "token" for å utføre kommander på kommandolinje som f. eks. importere eller eksportere. Uten dette teiknet fungerar ikkje kommandoene. Ikke del din kommandolinje token. Ingen vil spørre deg om dette spesialteiknet, ikkje engang meg. Om du frykter at du har mistet dette, eller ved paranoia, trykk på knappen for å generera eit nytt "token".', + 'regenerate_command_line_token' => 'Regenerer kommandolinjenøkkel', + 'token_regenerated' => 'Ein ny kommandolinjenøkkel vart generert', + 'change_your_email' => 'Endre din epostadresse', + 'email_verification' => 'Ein e-postmelding sendes til din gamle og nye e-postadresse. Av sikkerhetsgrunner, vil du ikkje kunne logge inn før du bekrefter din nye epostadresse. Om du er usikker på om Firefly III installasjonen er i stand til å sende e-post, ikkje bruk denne funksjonen. Om du er administrator, kan du teste dette i Administrasjon.', + 'email_changed_logout' => 'Inntil du bekrefter e-postadressa din, kan du ikkje logge inn.', + 'login_with_new_email' => 'Du kan no logge inn med din nye e-postadresse.', + 'login_with_old_email' => 'Du kan no logge inn med din gamle e-postadresse igjen.', + 'login_provider_local_only' => 'Denne handlinga er ikkje tilgjengeleg ved autentisering gjennom «:login_provider».', + 'external_user_mgt_disabled' => 'Denne handlinga er ikkje tilgjengelig når Firefly III ikkje er ansvarlig for brukarstyring eller autentiseringshandtering.', + 'external_auth_disabled' => 'Denne handlinga er ikkje tilgjengeleg når Firefly III ikkje er ansvarlig for autentiseringshandtering.', + 'delete_local_info_only' => 'Fordi Firefly III ikkje er ansvarlig for brukarstyring eller autentiseringshandtering, vil denne funksjonen berre sletta lokal informasjon om Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth klienter', + 'profile_oauth_no_clients' => 'Du har ikkje oppretta nokon OAuth klienter.', + 'profile_oauth_clients_external_auth' => 'Om du brukar ein ekstern autentiseringsleverandør som Authelia, vil ikkje OAuth klientar fungera. Du kan berre bruka personlege tilgangsnøklar.', + 'profile_oauth_clients_header' => 'Klienter', + 'profile_oauth_client_id' => 'Klient-ID', + 'profile_oauth_client_name' => 'Namn', + 'profile_oauth_client_secret' => 'Hemmelegheit', + 'profile_oauth_create_new_client' => 'Opprett Ny Klient', + 'profile_oauth_create_client' => 'Opprett Klient', + 'profile_oauth_edit_client' => 'Rediger Klient', + 'profile_oauth_name_help' => 'Noko brukarane dine vil gjenkjenne og stole på.', + 'profile_oauth_redirect_url' => 'Videresendings-URL', + 'profile_oauth_redirect_url_help' => 'Programmets tilbakekallingslenkje for autorisering.', + 'profile_authorized_apps' => 'Dine autoriserte applikasjoner', + 'profile_authorized_clients' => 'Autoriserte klienter', + 'profile_scopes' => 'Omfang', + 'profile_revoke' => 'Tilbakekall', + 'profile_oauth_client_secret_title' => 'Klient Hemmelegheit', + 'profile_oauth_client_secret_expl' => 'Her er din nye klienthemmelegheit. Dette er den einaste gongen han vert vist så ikkje mist han! Du kan bruka denne hemmeligheita til å laga API-spørsmål.', + 'profile_personal_access_tokens' => 'Personleg tilgangsnøkkel', + 'profile_personal_access_token' => 'Personleg tilgangsnøkkel', + 'profile_oauth_confidential' => 'Konfidensiell', + 'profile_oauth_confidential_help' => 'Krev at klienten godkjenner med ein hemmelegheit. Konfidensielle klienter kan halde legitimasjon på ein sikker måte uten å utsette dei for uautoriserte parter. Offentlige programmer, som skrivebord eller JavaScript SPA-programmer er ikkje istand til å halda hemmelegheiter sikra.', + 'profile_personal_access_token_explanation' => 'Her er din nye personlege tilgangsnøkkel. Dette er den einaste gongen han vert vist så ikkje mist han! Du kan no bruka tilgangsnøkkelen til å laga API-spørsmål.', + 'profile_no_personal_access_token' => 'Du har ikkje oppretta personlege tilgangsnøklar.', + 'profile_create_new_token' => 'Opprette nytt token', + 'profile_create_token' => 'Opprett token', + 'profile_create' => 'Opprett', + 'profile_save_changes' => 'Lagra endringer', + 'profile_whoops' => 'Oisann!', + 'profile_something_wrong' => 'Noko gjekk gale!', + 'profile_try_again' => 'Noko gjekk gale. Prøv på nytt.', + 'amounts' => 'Beløp', + 'multi_account_warning_unknown' => 'Avhengig av kva type transaksjon du opprettar, Kjelde og/eller målkonto for etterfølgande delingar kan overstyrast av det som er definert i transaksjonens første del.', + 'multi_account_warning_withdrawal' => 'Husk at kildekontoen for etterfølgende oppsplitting skal overlates av kva som defineres i den første delen av uttrekket.', + 'multi_account_warning_deposit' => 'Husk at mottakerkontoen for etterfølgende oppsplitting skal overstyres av det som er definert i den første delen av depositumet.', + 'multi_account_warning_transfer' => 'Husk at kildens pluss destinasjonskonto med etterfølgende oppdeling overstyres av det som er definert i ein første del av overføringen.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Eksportere data frå Firefly III', - 'export_data_menu' => 'Eksporter data', - 'export_data_bc' => 'Eksportere data frå Firefly III', - 'export_data_main_title' => 'Importer data til Firefly III', - 'export_data_expl' => 'Denne lenkja lar deg eksportera alle transaksjonar + metadata frå Firefly III. Referer til hjelp (øvst til høgre (?)-ikon) for meir informasjon om prosessen.', - 'export_data_all_transactions' => 'Eksportere alle transaksjonar', - 'export_data_advanced_expl' => 'Dersom du trenger ein meir avansert eller spesifikk type eksport, les "hjelpen" om korleis man brukar konsollkommandoen php artisan help firefly-ii:export-data.', + 'export_data_title' => 'Eksportere data frå Firefly III', + 'export_data_menu' => 'Eksporter data', + 'export_data_bc' => 'Eksportere data frå Firefly III', + 'export_data_main_title' => 'Importer data til Firefly III', + 'export_data_expl' => 'Denne lenkja lar deg eksportera alle transaksjonar + metadata frå Firefly III. Referer til hjelp (øvst til høgre (?)-ikon) for meir informasjon om prosessen.', + 'export_data_all_transactions' => 'Eksportere alle transaksjonar', + 'export_data_advanced_expl' => 'Dersom du trenger ein meir avansert eller spesifikk type eksport, les "hjelpen" om korleis man brukar konsollkommandoen php artisan help firefly-ii:export-data.', // attachments - 'nr_of_attachments' => 'Ett vedlegg|:count vedlegg', - 'attachments' => 'Vedlegg', - 'edit_attachment' => 'Rediger vedlegg ":name"', - 'update_attachment' => 'Oppdater vedlegget', - 'delete_attachment' => 'Slett vedlegg ":name"', - 'attachment_deleted' => 'Sletta vedlegg ":name"', - 'liabilities_deleted' => 'Sletta gjeld ":name"', - 'attachment_updated' => 'Oppdatert vedlegg ":name"', - 'upload_max_file_size' => 'Maks filstørrelse: :size', - 'list_all_attachments' => 'Liste over alle vedlegg', + 'nr_of_attachments' => 'Ett vedlegg|:count vedlegg', + 'attachments' => 'Vedlegg', + 'edit_attachment' => 'Rediger vedlegg ":name"', + 'update_attachment' => 'Oppdater vedlegget', + 'delete_attachment' => 'Slett vedlegg ":name"', + 'attachment_deleted' => 'Sletta vedlegg ":name"', + 'liabilities_deleted' => 'Sletta gjeld ":name"', + 'attachment_updated' => 'Oppdatert vedlegg ":name"', + 'upload_max_file_size' => 'Maks filstørrelse: :size', + 'list_all_attachments' => 'Liste over alle vedlegg', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Utgifter', - 'title_withdrawal' => 'Utgifter', - 'title_revenue' => 'Inntekt', - 'title_deposit' => 'Inntekt', - 'title_transfer' => 'Overføringer', - 'title_transfers' => 'Overføringer', - 'submission_options' => 'Alternativer for innsending', - 'apply_rules_checkbox' => 'Bruk reglar', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Utgifter', + 'title_withdrawal' => 'Utgifter', + 'title_revenue' => 'Inntekt', + 'title_deposit' => 'Inntekt', + 'title_transfer' => 'Overføringer', + 'title_transfers' => 'Overføringer', + 'submission_options' => 'Alternativer for innsending', + 'apply_rules_checkbox' => 'Bruk reglar', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allereie eit uttak', - 'convert_is_already_type_Deposit' => 'Denne transaksjonen er allereie eit innskot', - 'convert_is_already_type_Transfer' => 'Denne transaksjonen er allereie ein overføring', - 'convert_to_Withdrawal' => 'Konverter ":description" til eit uttak', - 'convert_to_Deposit' => 'Konverter ":description" til eit innskot', - 'convert_to_Transfer' => 'Konverter ":description" til ein overføring', - 'convert_options_WithdrawalDeposit' => 'Konverter eit uttak til eit innskot', - 'convert_options_WithdrawalTransfer' => 'Konverter eit uttak til ein overføring', - 'convert_options_DepositTransfer' => 'Konverter eit innskot til ein overføring', - 'convert_options_DepositWithdrawal' => 'Konverter eit innskot til eit uttak', - 'convert_options_TransferWithdrawal' => 'Konverter ein overføring til eit uttak', - 'convert_options_TransferDeposit' => 'Konverter ein overføring til eit innskot', - 'convert_Withdrawal_to_deposit' => 'Konverter dette uttaket til eit innskot', - 'convert_Withdrawal_to_transfer' => 'Konverter dette uttaket til ein overføring', - 'convert_Deposit_to_withdrawal' => 'Konverter dette innskuddet til eit uttak', - 'convert_Deposit_to_transfer' => 'Konverter dette innskuddet til ein overføring', - 'convert_Transfer_to_deposit' => 'Konverter denne overføringen til eit innskot', - 'convert_Transfer_to_withdrawal' => 'Konverter denne overføringen til eit uttak', - 'convert_please_set_revenue_source' => 'Ver venleg å vel inntektskontoen pengane vil komma frå.', - 'convert_please_set_asset_destination' => 'Ver venleg å vel aktivakontoen pengane skal gå til.', - 'convert_please_set_expense_destination' => 'Ver venleg å vel utgiftsskontoen pengane skal gå til.', - 'convert_please_set_asset_source' => 'Ver venleg å vel aktivakontoen pengane kjem frå.', - 'convert_expl_w_d' => 'Når du endrar eit uttak til eit innskot, vert pengane bli satt inn på den angitte målkontoen i staden for å verta tatt ut av den.|Når du endrar eit uttak til eit innskot, vert pengane bli satt inn på dei angitte målkontoane i staden for å verta tatt ut av dei.', - 'convert_expl_w_t' => 'Ved konvertering frå uttak til overføring, vil pengane overføres frå kildekontoen til andre aktiva eller gjeld i staden for å verta brukt på den opprinnelige utgiftskontoen.|Ved konvertering frå uttak til overføring, vil pengane overføres frå kjeldekontoane til andre aktiva eller gjeldskontoar i staden for å verta brukt på den opprinnelige utgiftskontoen.', - 'convert_expl_d_w' => 'Når du endrar eit innskot til eit uttak, vert pengane bli tatt ut av den angitte kjeldekontoen i staden for å verta satt inn.|Når du endrar eit innskot til eit uttak, vert pengane bli tatt ut av dei angitte kjeldekontoane i staden for å verta satt inn.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'Når du konverterar ei overføring til eit uttak, vert pengene brukt på målkontoen du vel her, i staden for å verta overført.|Når du konverterar ei overføring til eit uttak, vert pengene brukt på målkontoane du vel her, i staden for å verta overført.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'Transaksjonen er konvertert til eit uttak', - 'converted_to_Deposit' => 'Transaksjonen er konvertert til eit innskot', - 'converted_to_Transfer' => 'Transaksjonen er konvertert til ein overføring', - 'invalid_convert_selection' => 'Kontoen du har valt er allereie brukt i denne transaksjonen eller eksisterar ikkje.', - 'source_or_dest_invalid' => 'Finner ikkje rett transaksjonsdetaljer. Konvertering er ikkje mogleg.', - 'convert_to_withdrawal' => 'Konverter til eit uttak', - 'convert_to_deposit' => 'Konverter til eit innskot', - 'convert_to_transfer' => 'Konverter til ei overføring', + 'convert_is_already_type_Withdrawal' => 'Denne transaksjonen er allereie eit uttak', + 'convert_is_already_type_Deposit' => 'Denne transaksjonen er allereie eit innskot', + 'convert_is_already_type_Transfer' => 'Denne transaksjonen er allereie ein overføring', + 'convert_to_Withdrawal' => 'Konverter ":description" til eit uttak', + 'convert_to_Deposit' => 'Konverter ":description" til eit innskot', + 'convert_to_Transfer' => 'Konverter ":description" til ein overføring', + 'convert_options_WithdrawalDeposit' => 'Konverter eit uttak til eit innskot', + 'convert_options_WithdrawalTransfer' => 'Konverter eit uttak til ein overføring', + 'convert_options_DepositTransfer' => 'Konverter eit innskot til ein overføring', + 'convert_options_DepositWithdrawal' => 'Konverter eit innskot til eit uttak', + 'convert_options_TransferWithdrawal' => 'Konverter ein overføring til eit uttak', + 'convert_options_TransferDeposit' => 'Konverter ein overføring til eit innskot', + 'convert_Withdrawal_to_deposit' => 'Konverter dette uttaket til eit innskot', + 'convert_Withdrawal_to_transfer' => 'Konverter dette uttaket til ein overføring', + 'convert_Deposit_to_withdrawal' => 'Konverter dette innskuddet til eit uttak', + 'convert_Deposit_to_transfer' => 'Konverter dette innskuddet til ein overføring', + 'convert_Transfer_to_deposit' => 'Konverter denne overføringen til eit innskot', + 'convert_Transfer_to_withdrawal' => 'Konverter denne overføringen til eit uttak', + 'convert_please_set_revenue_source' => 'Ver venleg å vel inntektskontoen pengane vil komma frå.', + 'convert_please_set_asset_destination' => 'Ver venleg å vel aktivakontoen pengane skal gå til.', + 'convert_please_set_expense_destination' => 'Ver venleg å vel utgiftsskontoen pengane skal gå til.', + 'convert_please_set_asset_source' => 'Ver venleg å vel aktivakontoen pengane kjem frå.', + 'convert_expl_w_d' => 'Når du endrar eit uttak til eit innskot, vert pengane bli satt inn på den angitte målkontoen i staden for å verta tatt ut av den.|Når du endrar eit uttak til eit innskot, vert pengane bli satt inn på dei angitte målkontoane i staden for å verta tatt ut av dei.', + 'convert_expl_w_t' => 'Ved konvertering frå uttak til overføring, vil pengane overføres frå kildekontoen til andre aktiva eller gjeld i staden for å verta brukt på den opprinnelige utgiftskontoen.|Ved konvertering frå uttak til overføring, vil pengane overføres frå kjeldekontoane til andre aktiva eller gjeldskontoar i staden for å verta brukt på den opprinnelige utgiftskontoen.', + 'convert_expl_d_w' => 'Når du endrar eit innskot til eit uttak, vert pengane bli tatt ut av den angitte kjeldekontoen i staden for å verta satt inn.|Når du endrar eit innskot til eit uttak, vert pengane bli tatt ut av dei angitte kjeldekontoane i staden for å verta satt inn.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'Når du konverterar ei overføring til eit uttak, vert pengene brukt på målkontoen du vel her, i staden for å verta overført.|Når du konverterar ei overføring til eit uttak, vert pengene brukt på målkontoane du vel her, i staden for å verta overført.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'Transaksjonen er konvertert til eit uttak', + 'converted_to_Deposit' => 'Transaksjonen er konvertert til eit innskot', + 'converted_to_Transfer' => 'Transaksjonen er konvertert til ein overføring', + 'invalid_convert_selection' => 'Kontoen du har valt er allereie brukt i denne transaksjonen eller eksisterar ikkje.', + 'source_or_dest_invalid' => 'Finner ikkje rett transaksjonsdetaljer. Konvertering er ikkje mogleg.', + 'convert_to_withdrawal' => 'Konverter til eit uttak', + 'convert_to_deposit' => 'Konverter til eit innskot', + 'convert_to_transfer' => 'Konverter til ei overføring', // create new stuff: - 'create_new_withdrawal' => 'Opprett nytt uttak', - 'create_new_deposit' => 'Opprett nytt innskot', - 'create_new_transfer' => 'Opprett ny overføring', - 'create_new_asset' => 'Opprett ny aktivakonto', - 'create_new_liabilities' => 'Opprett ny gjeld', - 'create_new_expense' => 'Opprett ny utgiftskonto', - 'create_new_revenue' => 'Opprett ny inntektskonto', - 'create_new_piggy_bank' => 'Opprett ny sparegris', - 'create_new_bill' => 'Opprett ny rekning', - 'create_new_subscription' => 'Opprett nytt abonnement', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Opprett nytt uttak', + 'create_new_deposit' => 'Opprett nytt innskot', + 'create_new_transfer' => 'Opprett ny overføring', + 'create_new_asset' => 'Opprett ny aktivakonto', + 'create_new_liabilities' => 'Opprett ny gjeld', + 'create_new_expense' => 'Opprett ny utgiftskonto', + 'create_new_revenue' => 'Opprett ny inntektskonto', + 'create_new_piggy_bank' => 'Opprett ny sparegris', + 'create_new_bill' => 'Opprett ny rekning', + 'create_new_subscription' => 'Opprett nytt abonnement', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Opprett ein ny valuta', - 'store_currency' => 'Lagra ny valuta', - 'update_currency' => 'Oppdater valuta', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Kan ikkje sletta :name fordi det er fortsatt i bruk.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Kan ikkje deaktivera :name fordi det er den siste aktive valutaen.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Kan ikkje deaktivera :name fordi den er brukt i rekningar.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Valuta :name sletta', - 'created_currency' => 'Valuta :name opprettet', - 'could_not_store_currency' => 'Kan ikkje lagra den nye valutaen.', - 'updated_currency' => 'Valuta :name oppdatert', - 'ask_site_owner' => 'Spør :owner om å legga til, fjerna eller redigera valutaer.', - 'currencies_intro' => 'Firefly III støttar ulike valutaer som du kan definere og aktivera her.', - 'make_default_currency' => 'Sett som standard', - 'default_currency' => 'standard', - 'currency_is_disabled' => 'Deaktivert', - 'enable_currency' => 'Aktiver', - 'disable_currency' => 'Deaktiver', - 'currencies_default_disabled' => 'Dei fleste valutaene er deaktivert som standard. For å bruka dem, må du aktivera dei først.', - 'currency_is_now_enabled' => 'Valuta ":name" er aktivert', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Valuta ":name" er deaktivert', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Opprett ein ny valuta', + 'store_currency' => 'Lagra ny valuta', + 'update_currency' => 'Oppdater valuta', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Kan ikkje sletta :name fordi det er fortsatt i bruk.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Kan ikkje deaktivera :name fordi det er den siste aktive valutaen.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Kan ikkje deaktivera :name fordi den er brukt i rekningar.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Valuta :name sletta', + 'created_currency' => 'Valuta :name opprettet', + 'could_not_store_currency' => 'Kan ikkje lagra den nye valutaen.', + 'updated_currency' => 'Valuta :name oppdatert', + 'ask_site_owner' => 'Spør :owner om å legga til, fjerna eller redigera valutaer.', + 'currencies_intro' => 'Firefly III støttar ulike valutaer som du kan definere og aktivera her.', + 'make_default_currency' => 'Sett som standard', + 'default_currency' => 'standard', + 'currency_is_disabled' => 'Deaktivert', + 'enable_currency' => 'Aktiver', + 'disable_currency' => 'Deaktiver', + 'currencies_default_disabled' => 'Dei fleste valutaene er deaktivert som standard. For å bruka dem, må du aktivera dei først.', + 'currency_is_now_enabled' => 'Valuta ":name" er aktivert', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Valuta ":name" er deaktivert', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Obligatoriske felter', - 'optionalFields' => 'Valgfrie felter', - 'options' => 'Alternativer', + 'mandatoryFields' => 'Obligatoriske felter', + 'optionalFields' => 'Valgfrie felter', + 'options' => 'Alternativer', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'Dette beløpet gjeld frå :start til :end:', - 'total_available_budget' => 'Totalt tilgjengeleg budsjett (mellom :start og :end)', - 'total_available_budget_in_currency' => 'Totalt tilgjengeleg budsjett i :currency', - 'see_below' => 'sjå nedanfor', - 'create_new_budget' => 'Opprett eit nytt budsjett', - 'store_new_budget' => 'Lagra nytt budsjett', - 'stored_new_budget' => 'Lagret nytt budsjett ":name"', - 'available_between' => 'Tilgjengeleg mellom :start og :end', - 'transactionsWithoutBudget' => 'Utgifter uten budsjett', - 'transactions_no_budget' => 'Utgifter uten budsjett mellom :start og :end', - 'spent_between' => 'Allereie brukt mellom :start og :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Sett tilgjengeleg beløp', - 'update_available_amount' => 'Oppdater tilgjengeleg beløp', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'Nytt budsjett', - 'invalid_currency' => 'Dette er ein ugyldig valuta', - 'invalid_amount' => 'Ver venleg og skriv inn eit beløp', - 'set_ab' => 'Det tilgjengelege budsjettbeløpet er satt', - 'updated_ab' => 'Det tilgjengelege budsjettbeløpet har vorte oppdatert', - 'deleted_ab' => 'Det tilgjengelege budsjettbeløpet har vorte sletta', - 'deleted_bl' => 'Det budsjetterte beløpet er fjerna', - 'alt_currency_ab_create' => 'Sett tilgjengeleg budsjett i annan valuta', - 'bl_create_btn' => 'Angi budsjett i annan valuta', - 'inactiveBudgets' => 'Inaktive budsjett', - 'without_budget_between' => 'Transaksjoner uten eit budsjett mellom :start og :end', - 'delete_budget' => 'Slett budsjett ":name"', - 'deleted_budget' => 'Slett budsjett ":name"', - 'edit_budget' => 'Rediger budsjett ":name"', - 'updated_budget' => 'Oppdater budsjett ":name"', - 'update_amount' => 'Oppdater beløp', - 'update_budget' => 'Oppdater budsjett', - 'update_budget_amount_range' => 'Oppdater (forventa) tilgjengeleg beløp mellom :start og :end', - 'set_budget_limit_title' => 'Sett budsjettert beløp for budsjett :budget mellom :start og :end', - 'set_budget_limit' => 'Angi budsjettert beløp', - 'budget_period_navigator' => 'Periodenavigering', - 'info_on_available_amount' => 'Kva har eg tilgjengeleg?', - 'available_amount_indication' => 'Bruk desse beløpa for å få ein indikasjon på kva ditt totale budsjett kan vera.', - 'suggested' => 'Foreslått', - 'average_between' => 'Gjennomsnitt mellom :start og :end', - 'transferred_in' => 'Overført (in)', - 'transferred_away' => 'Overført (vekke)', - 'auto_budget_none' => 'Ingen automatisk budsjett', - 'auto_budget_reset' => 'Angi eit fast beløp kvar periode', - 'auto_budget_rollover' => 'Legg til eit fast beløp kvar periode', - 'auto_budget_adjusted' => 'Legg til eit beløp kvar periode og korriger for overforbruk', - 'auto_budget_period_daily' => 'Dagleg', - 'auto_budget_period_weekly' => 'Ukentlig', - 'auto_budget_period_monthly' => 'Månadleg', - 'auto_budget_period_quarterly' => 'Kvartalsvis', - 'auto_budget_period_half_year' => 'Kvart halvår', - 'auto_budget_period_yearly' => 'Årleg', - 'auto_budget_help' => 'Du kan lesa meir om denne funksjonen under hjelp. Klikk ikonet øvst til høgre (?).', - 'auto_budget_reset_icon' => 'Budsjettet vert fastsatt periodisk', - 'auto_budget_rollover_icon' => 'Budsjettbeløpet vil øke periodisk', - 'auto_budget_adjusted_icon' => 'Budsjettbeløpet vil periodevis auka og korrigerast for overforbruk', - 'remove_budgeted_amount' => 'Fjern budsjettert beløp i :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'Dette beløpet gjeld frå :start til :end:', + 'total_available_budget' => 'Totalt tilgjengeleg budsjett (mellom :start og :end)', + 'total_available_budget_in_currency' => 'Totalt tilgjengeleg budsjett i :currency', + 'see_below' => 'sjå nedanfor', + 'create_new_budget' => 'Opprett eit nytt budsjett', + 'store_new_budget' => 'Lagra nytt budsjett', + 'stored_new_budget' => 'Lagret nytt budsjett ":name"', + 'available_between' => 'Tilgjengeleg mellom :start og :end', + 'transactionsWithoutBudget' => 'Utgifter uten budsjett', + 'transactions_no_budget' => 'Utgifter uten budsjett mellom :start og :end', + 'spent_between' => 'Allereie brukt mellom :start og :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Sett tilgjengeleg beløp', + 'update_available_amount' => 'Oppdater tilgjengeleg beløp', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'Nytt budsjett', + 'invalid_currency' => 'Dette er ein ugyldig valuta', + 'invalid_amount' => 'Ver venleg og skriv inn eit beløp', + 'set_ab' => 'Det tilgjengelege budsjettbeløpet er satt', + 'updated_ab' => 'Det tilgjengelege budsjettbeløpet har vorte oppdatert', + 'deleted_ab' => 'Det tilgjengelege budsjettbeløpet har vorte sletta', + 'deleted_bl' => 'Det budsjetterte beløpet er fjerna', + 'alt_currency_ab_create' => 'Sett tilgjengeleg budsjett i annan valuta', + 'bl_create_btn' => 'Angi budsjett i annan valuta', + 'inactiveBudgets' => 'Inaktive budsjett', + 'without_budget_between' => 'Transaksjoner uten eit budsjett mellom :start og :end', + 'delete_budget' => 'Slett budsjett ":name"', + 'deleted_budget' => 'Slett budsjett ":name"', + 'edit_budget' => 'Rediger budsjett ":name"', + 'updated_budget' => 'Oppdater budsjett ":name"', + 'update_amount' => 'Oppdater beløp', + 'update_budget' => 'Oppdater budsjett', + 'update_budget_amount_range' => 'Oppdater (forventa) tilgjengeleg beløp mellom :start og :end', + 'set_budget_limit_title' => 'Sett budsjettert beløp for budsjett :budget mellom :start og :end', + 'set_budget_limit' => 'Angi budsjettert beløp', + 'budget_period_navigator' => 'Periodenavigering', + 'info_on_available_amount' => 'Kva har eg tilgjengeleg?', + 'available_amount_indication' => 'Bruk desse beløpa for å få ein indikasjon på kva ditt totale budsjett kan vera.', + 'suggested' => 'Foreslått', + 'average_between' => 'Gjennomsnitt mellom :start og :end', + 'transferred_in' => 'Overført (in)', + 'transferred_away' => 'Overført (vekke)', + 'auto_budget_none' => 'Ingen automatisk budsjett', + 'auto_budget_reset' => 'Angi eit fast beløp kvar periode', + 'auto_budget_rollover' => 'Legg til eit fast beløp kvar periode', + 'auto_budget_adjusted' => 'Legg til eit beløp kvar periode og korriger for overforbruk', + 'auto_budget_period_daily' => 'Dagleg', + 'auto_budget_period_weekly' => 'Ukentlig', + 'auto_budget_period_monthly' => 'Månadleg', + 'auto_budget_period_quarterly' => 'Kvartalsvis', + 'auto_budget_period_half_year' => 'Kvart halvår', + 'auto_budget_period_yearly' => 'Årleg', + 'auto_budget_help' => 'Du kan lesa meir om denne funksjonen under hjelp. Klikk ikonet øvst til høgre (?).', + 'auto_budget_reset_icon' => 'Budsjettet vert fastsatt periodisk', + 'auto_budget_rollover_icon' => 'Budsjettbeløpet vil øke periodisk', + 'auto_budget_adjusted_icon' => 'Budsjettbeløpet vil periodevis auka og korrigerast for overforbruk', + 'remove_budgeted_amount' => 'Fjern budsjettert beløp i :currency', // bills: - 'subscription' => 'Abonnement', - 'not_expected_period' => 'Ikke forventet denne perioden', - 'subscriptions_in_group' => 'Abonnement i gruppa «%{title}»', - 'subscr_expected_x_times' => 'Forvent å betal %{amount} %{times} gonger denne perioden', - 'not_or_not_yet' => 'Ikke (enda)', - 'visit_bill' => 'Sjå rekninga ":name" på Firefly III', - 'match_between_amounts' => 'Rekning passar transaksjonar mellom :low og :high.', - 'running_again_loss' => 'Tidlegare kopla transaksjonar til denne rekninga kan miste koplinga si, om dei (ikkje lengre) stemmer overens med regelen(ane).', - 'bill_related_rules' => 'Regler relatert til denne rekninga', - 'repeats' => 'Gjentas', - 'bill_end_date_help' => 'Valgfritt felt. Rekninga er ventet å vera over på denne datoen.', - 'bill_extension_date_help' => 'Valgfritt felt. Rekninga må utvides (eller annulleres) på eller før denne datoen.', - 'bill_end_index_line' => 'Denne rekninga avsluttes :date', - 'bill_extension_index_line' => 'Denne rekninga må utvides eller kanselleres på :date', - 'connected_journals' => 'Tilknyttede transaksjonar', - 'auto_match_on' => 'Automatisk kopla av Firefly III', - 'auto_match_off' => 'Ikke automatisk kopla av Firefly III', - 'next_expected_match' => 'Neste forventa treff', - 'delete_bill' => 'Slett rekning ":name"', - 'deleted_bill' => 'Sletta rekning ":name"', - 'edit_bill' => 'Rediger rekning ":name"', - 'more' => 'Mer', - 'rescan_old' => 'Kjør reglar igjen, på alle transaksjonar', - 'update_bill' => 'Oppdater rekning', - 'updated_bill' => 'Oppdatert rekning ":name"', - 'store_new_bill' => 'Lagra ny rekning', - 'stored_new_bill' => 'Lagret ny rekning ":name"', - 'cannot_scan_inactive_bill' => 'Inaktive rekningar kan ikkje skannes.', - 'rescanned_bill' => 'Skannet alt på nytt, og kopla :count transaksjon til rekninga |Reskanned alt, og linket :count transaksjon til rekninga.', - 'average_bill_amount_year' => 'Gjennomsnittlig rekningsbeløp (:year)', - 'average_bill_amount_overall' => 'Gjennomsnittlig rekningsbeløp (alt i alt)', - 'bill_is_active' => 'Rekning er aktiv', - 'bill_expected_between' => 'Forventet mellom :start og :end', - 'bill_will_automatch' => 'Rekninga vil automatisk knyttes til samsvarende transaksjonar', - 'skips_over' => 'hopper over', - 'bill_store_error' => 'Det oppsto ein uventa feil medan du lagra den nye rekninga. Ver venleg å sjekk loggfilene', - 'list_inactive_rule' => 'inaktiv regel', - 'bill_edit_rules' => 'Firefly III vil forsøke å redigera regelen òg relatert til denne rekninga. Om du har endra denne regelen sjølv, vil Firefly III ikkje endra noko. Firefly III vil forsøke å redigera reglane for :count òg knytt til denne rekninga. Om du har endra desse reglane sjølv, vil ikkje Firefly III endra noko.', - 'bill_expected_date' => 'Forventet :date', - 'bill_expected_date_js' => 'Forventet {date}', - 'expected_amount' => '(Forventa) beløp', - 'bill_paid_on' => 'Betalt den {date}', - 'bill_repeats_weekly' => 'Gjentas ukentlig', - 'bill_repeats_monthly' => 'Gjentas månadleg', - 'bill_repeats_quarterly' => 'Gjentas kvartalsvis', - 'bill_repeats_half-year' => 'Gjentas kvart halvår', - 'bill_repeats_yearly' => 'Gjentas årleg', - 'bill_repeats_weekly_other' => 'Gjentas annankvar veke', - 'bill_repeats_monthly_other' => 'Gjentas annankvar månad', - 'bill_repeats_quarterly_other' => 'Gjentas annankvar kvartal', - 'bill_repeats_half-year_other' => 'Gjentas årleg', - 'bill_repeats_yearly_other' => 'Gjentas annankvar år', - 'bill_repeats_weekly_skip' => 'Gjentas kvar {skip} veke', - 'bill_repeats_monthly_skip' => 'Gjentas kvar {skip} månad', - 'bill_repeats_quarterly_skip' => 'Gjentas annankvar {skip} kvartal', - 'bill_repeats_half-year_skip' => 'Gjentas kvart {skip} halvår', - 'bill_repeats_yearly_skip' => 'Gjentas kvart {skip} år', - 'subscriptions' => 'Abonnement', - 'go_to_subscriptions' => 'Gå til dine abonnement', - 'forever' => 'For alltid', - 'extension_date_is' => 'Forlengelsesdato er {date}', + 'subscription' => 'Abonnement', + 'not_expected_period' => 'Ikke forventet denne perioden', + 'subscriptions_in_group' => 'Abonnement i gruppa «%{title}»', + 'subscr_expected_x_times' => 'Forvent å betal %{amount} %{times} gonger denne perioden', + 'not_or_not_yet' => 'Ikke (enda)', + 'visit_bill' => 'Sjå rekninga ":name" på Firefly III', + 'match_between_amounts' => 'Rekning passar transaksjonar mellom :low og :high.', + 'running_again_loss' => 'Tidlegare kopla transaksjonar til denne rekninga kan miste koplinga si, om dei (ikkje lengre) stemmer overens med regelen(ane).', + 'bill_related_rules' => 'Regler relatert til denne rekninga', + 'repeats' => 'Gjentas', + 'bill_end_date_help' => 'Valgfritt felt. Rekninga er ventet å vera over på denne datoen.', + 'bill_extension_date_help' => 'Valgfritt felt. Rekninga må utvides (eller annulleres) på eller før denne datoen.', + 'bill_end_index_line' => 'Denne rekninga avsluttes :date', + 'bill_extension_index_line' => 'Denne rekninga må utvides eller kanselleres på :date', + 'connected_journals' => 'Tilknyttede transaksjonar', + 'auto_match_on' => 'Automatisk kopla av Firefly III', + 'auto_match_off' => 'Ikke automatisk kopla av Firefly III', + 'next_expected_match' => 'Neste forventa treff', + 'delete_bill' => 'Slett rekning ":name"', + 'deleted_bill' => 'Sletta rekning ":name"', + 'edit_bill' => 'Rediger rekning ":name"', + 'more' => 'Mer', + 'rescan_old' => 'Kjør reglar igjen, på alle transaksjonar', + 'update_bill' => 'Oppdater rekning', + 'updated_bill' => 'Oppdatert rekning ":name"', + 'store_new_bill' => 'Lagra ny rekning', + 'stored_new_bill' => 'Lagret ny rekning ":name"', + 'cannot_scan_inactive_bill' => 'Inaktive rekningar kan ikkje skannes.', + 'rescanned_bill' => 'Skannet alt på nytt, og kopla :count transaksjon til rekninga |Reskanned alt, og linket :count transaksjon til rekninga.', + 'average_bill_amount_year' => 'Gjennomsnittlig rekningsbeløp (:year)', + 'average_bill_amount_overall' => 'Gjennomsnittlig rekningsbeløp (alt i alt)', + 'bill_is_active' => 'Rekning er aktiv', + 'bill_expected_between' => 'Forventet mellom :start og :end', + 'bill_will_automatch' => 'Rekninga vil automatisk knyttes til samsvarende transaksjonar', + 'skips_over' => 'hopper over', + 'bill_store_error' => 'Det oppsto ein uventa feil medan du lagra den nye rekninga. Ver venleg å sjekk loggfilene', + 'list_inactive_rule' => 'inaktiv regel', + 'bill_edit_rules' => 'Firefly III vil forsøke å redigera regelen òg relatert til denne rekninga. Om du har endra denne regelen sjølv, vil Firefly III ikkje endra noko. Firefly III vil forsøke å redigera reglane for :count òg knytt til denne rekninga. Om du har endra desse reglane sjølv, vil ikkje Firefly III endra noko.', + 'bill_expected_date' => 'Forventet :date', + 'bill_expected_date_js' => 'Forventet {date}', + 'expected_amount' => '(Forventa) beløp', + 'bill_paid_on' => 'Betalt den {date}', + 'bill_repeats_weekly' => 'Gjentas ukentlig', + 'bill_repeats_monthly' => 'Gjentas månadleg', + 'bill_repeats_quarterly' => 'Gjentas kvartalsvis', + 'bill_repeats_half-year' => 'Gjentas kvart halvår', + 'bill_repeats_yearly' => 'Gjentas årleg', + 'bill_repeats_weekly_other' => 'Gjentas annankvar veke', + 'bill_repeats_monthly_other' => 'Gjentas annankvar månad', + 'bill_repeats_quarterly_other' => 'Gjentas annankvar kvartal', + 'bill_repeats_half-year_other' => 'Gjentas årleg', + 'bill_repeats_yearly_other' => 'Gjentas annankvar år', + 'bill_repeats_weekly_skip' => 'Gjentas kvar {skip} veke', + 'bill_repeats_monthly_skip' => 'Gjentas kvar {skip} månad', + 'bill_repeats_quarterly_skip' => 'Gjentas annankvar {skip} kvartal', + 'bill_repeats_half-year_skip' => 'Gjentas kvart {skip} halvår', + 'bill_repeats_yearly_skip' => 'Gjentas kvart {skip} år', + 'subscriptions' => 'Abonnement', + 'go_to_subscriptions' => 'Gå til dine abonnement', + 'forever' => 'For alltid', + 'extension_date_is' => 'Forlengelsesdato er {date}', // accounts: - 'i_am_owed_amount' => 'Jeg er skyldig beløp', - 'i_owe_amount' => 'Jeg skylder beløp', - 'inactive_account_link' => 'Du har :count inaktiv (arkivert) konto, som du kan sjå på denne separate sida. Du har :count inaktive (arkiverte) kontoar som du kan sjå på denne separate sida.', - 'all_accounts_inactive' => 'Dette er dine inaktive kontoar.', - 'active_account_link' => 'Denne lenkja går tilbake til dei aktive kontoane.', - 'account_missing_transaction' => 'Konto #:id (":name") kan ikkje verta vist direkte, Firefly mangler omdirigerings informasjon.', - 'cc_monthly_payment_date_help' => 'Vel eit år og ein månad, det vert ignorert likevel. Berre dagen i måneden er relevant.', - 'details_for_asset' => 'Detaljer for brukskonto ":name"', - 'details_for_expense' => 'Detaljer for utgiftskonto ":name"', - 'details_for_revenue' => 'Detaljer for inntektskonto ":name"', - 'details_for_cash' => 'Detaljer for kontantkonto ":name"', - 'store_new_asset_account' => 'Lagra ny brukskonto', - 'store_new_expense_account' => 'Lagra ny utgiftskonto', - 'store_new_revenue_account' => 'Lagra ny inntektskonto', - 'edit_asset_account' => 'Rediger brukskonto ":name"', - 'edit_expense_account' => 'Rediger utgiftskonto ":name"', - 'edit_revenue_account' => 'Rediger inntektskonto ":name"', - 'delete_asset_account' => 'Slett brukskonto ":name"', - 'delete_expense_account' => 'Slett utgiftskonto ":name"', - 'delete_revenue_account' => 'Slett inntektskonto ":name"', - 'delete_liabilities_account' => 'Slett gjeld ":name"', - 'asset_deleted' => 'Sletting av brukskonto ":name" var vellukka', - 'account_deleted' => 'Sletting av konto ":name" var vellukka', - 'expense_deleted' => 'Sletting av utgiftskonto ":name" var vellukka', - 'revenue_deleted' => 'Sletting av inntekskonto ":name" var vellukka', - 'update_asset_account' => 'Oppdater aktivakonto', - 'update_undefined_account' => 'Oppdater konto', - 'update_liabilities_account' => 'Oppdater gjeld', - 'update_expense_account' => 'Oppdater utgiftskonto', - 'update_revenue_account' => 'Oppdater inntektskonto', - 'make_new_asset_account' => 'Opprett ein ny aktivakonto', - 'make_new_expense_account' => 'Opprett ein ny utgiftskonto', - 'make_new_revenue_account' => 'Opprett ein ny inntektskonto', - 'make_new_liabilities_account' => 'Opprett ny gjeld', - 'asset_accounts' => 'Aktivakontoar', - 'undefined_accounts' => 'Kontoar', - 'asset_accounts_inactive' => 'Aktivakontoar (inaktive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Utgiftskontoar', - 'expense_accounts_inactive' => 'Utgiftskontoar (inaktive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Inntektskontoar', - 'revenue_accounts_inactive' => 'Inntektskontoar (inaktive)', - 'cash_accounts' => 'Kontantkontoar', - 'Cash account' => 'Kontantkonto', - 'liabilities_accounts' => 'Gjeldskonto', - 'liabilities_accounts_inactive' => 'Gjeldskonto (inaktive)', - 'reconcile_account' => 'Avstem konto ":account"', - 'overview_of_reconcile_modal' => 'Balanseoversikt', - 'delete_reconciliation' => 'Slett avstemming', - 'update_reconciliation' => 'Oppdater avstemming', - 'amount_cannot_be_zero' => 'Beløpet kan ikkje vera null', - 'end_of_reconcile_period' => 'Slutten av balanse perioden :period', - 'start_of_reconcile_period' => 'Starten av balanse perioden :period', - 'start_balance' => 'Startsaldo', - 'end_balance' => 'Sluttsaldo', - 'update_balance_dates_instruction' => 'Koble beløpa og datoane over til kontoutskrifta, og trykk på "Start avstemning"', - 'select_transactions_instruction' => 'Vel transaksjonane som visast på kontoutskrifta.', - 'select_range_and_balance' => 'Kontroller først datoperiode og saldo. Deretter trykker du på "Start avstemning"', - 'date_change_instruction' => 'Om du endrer datointervallet no, vil du miste all foreløpig framdrift.', - 'update_selection' => 'Oppdater utval', - 'store_reconcile' => 'Lagra avstemming', - 'reconciliation_transaction' => 'Avstemmingstransaksjon', - 'Reconciliation' => 'Avstemming', - 'reconciliation' => 'Avstemming', - 'reconcile_options' => 'Avstemmingsalternativer', - 'reconcile_range' => 'Avstemningsområde', - 'start_reconcile' => 'Start avstemming', - 'cash_account_type' => 'Kontanter', - 'cash' => 'kontanter', - 'cant_find_redirect_account' => 'Firefly III prøvde å omdirigere deg, men kan ikkje. Beklager det. Tilbake til indeksen.', - 'account_type' => 'Kontotype', - 'save_transactions_by_moving' => 'Lagra denne transaksjonen ved å flytte den til ein annan konto:|Lagra desse transaksjonane ved å flytte dei til ein annan konto:', - 'save_transactions_by_moving_js' => 'Ingen transaksjonar|Lagra denne transaksjonen ved å flytte den til ein annan konto. |Lagra desse transaksjonane ved å flytte dei til ein annan konto.', - 'stored_new_account' => 'Ny konto:name: lagra!', - 'stored_new_account_js' => 'Ny konto "{name}" lagra!', - 'updated_account' => 'Oppdatert konto ":name"', - 'updated_account_js' => 'Oppdatert konto "{title}".', - 'credit_card_options' => 'Kredittkortvalg', - 'no_transactions_account' => 'Det eksisterar ingen transaksjonar (i denne perioden) for brukskonto ":name".', - 'no_transactions_period' => 'Det eksisterar ingen transaksjonar (i denne perioden).', - 'no_data_for_chart' => 'Det er ikkje nok informasjon (enda) til å generera dette diagrammet.', - 'select_at_least_one_account' => 'Vel minst ein brukskonto', - 'select_at_least_one_category' => 'Vel minst ein kategori', - 'select_at_least_one_budget' => 'Vel minst eit budsjett', - 'select_at_least_one_tag' => 'Vel minst eit nøkkelord', - 'select_at_least_one_expense' => 'Vel minst ein kombinasjon av utgift/inntekts konto. Om du ikkje har ein (lista er tom) så vil ikkje denne rapporten vera tilgjengeleg.', - 'account_default_currency' => 'Dette vert standard valuta for denne kontoen.', - 'reconcile_has_more' => 'Din Firefly III-hovedbok har meir pengar i seg enn banken hevder du burde ha. Det eksisterar fleire alternativ. Ver venleg å vel kva du skal gjera. Deretter trykker du på "Bekreft avstemming".', - 'reconcile_has_less' => 'Din Firefly III-hovedbok har mindre pengar i seg enn banken hevder du burde ha. Det eksisterar fleire alternativ. Ver venleg å vel kva du skal gjera. Deretter trykker du på "Bekreft avstemming".', - 'reconcile_is_equal' => 'Din Firefly III-hovedbok og dine kontoutskriftar samsvarar. Det er ingenting du treng gjera. Ver venleg å trykk "Bekreft avstemming" for å fortsetja.', - 'create_pos_reconcile_transaction' => 'Fjern dei valde transaksjonene, og opprett ein korrigering som legger til :amount til denne aktivakontoen.', - 'create_neg_reconcile_transaction' => 'Fjern dei valde transaksjonene, og opprett ein korrigering som tek bort :amount frå denne aktivakontoen.', - 'reconcile_do_nothing' => 'Fjern dei valde transaksjonene, men ikkje korriger.', - 'reconcile_go_back' => 'Du kan alltid redigera eller sletta ein korrigering senere.', - 'must_be_asset_account' => 'Du kan berre avstemma aktivakontoar', - 'reconciliation_stored' => 'Avstemming lagra', - 'reconciliation_error' => 'På grunn av ein feil vart transaksjonane markert som avstemt, men korrigeringen har ikkje vorte lagra: :error.', - 'reconciliation_transaction_title' => 'Avstemming (:from til :to)', - 'sum_of_reconciliation' => 'Sum av avstemming', - 'reconcile_this_account' => 'Avstem denne kontoen', - 'reconcile' => 'Avstem', - 'show' => 'Vis', - 'confirm_reconciliation' => 'Bekreft avstemming', - 'submitted_start_balance' => 'Innsendt startsaldo', - 'selected_transactions' => 'Valgte transaksjonar (:count)', - 'already_cleared_transactions' => 'Tidlegare rydda transaksjonar (:count)', - 'submitted_end_balance' => 'Innsendt sluttsaldo', - 'initial_balance_description' => 'Start saldo for ":account"', - 'liability_credit_description' => 'Gjeld på lån ":account"', - 'interest_calc_' => 'ukjent', - 'interest_calc_daily' => 'Per dag', - 'interest_calc_monthly' => 'Per månad', - 'interest_calc_yearly' => 'Per år', - 'interest_calc_weekly' => 'Per veke', - 'interest_calc_half-year' => 'Per halvår', - 'interest_calc_quarterly' => 'Per kvartal', - 'initial_balance_account' => 'Inngående balanse for :account', - 'list_options' => 'Listealternativer', + 'i_am_owed_amount' => 'Jeg er skyldig beløp', + 'i_owe_amount' => 'Jeg skylder beløp', + 'inactive_account_link' => 'Du har :count inaktiv (arkivert) konto, som du kan sjå på denne separate sida. Du har :count inaktive (arkiverte) kontoar som du kan sjå på denne separate sida.', + 'all_accounts_inactive' => 'Dette er dine inaktive kontoar.', + 'active_account_link' => 'Denne lenkja går tilbake til dei aktive kontoane.', + 'account_missing_transaction' => 'Konto #:id (":name") kan ikkje verta vist direkte, Firefly mangler omdirigerings informasjon.', + 'cc_monthly_payment_date_help' => 'Vel eit år og ein månad, det vert ignorert likevel. Berre dagen i måneden er relevant.', + 'details_for_asset' => 'Detaljer for brukskonto ":name"', + 'details_for_expense' => 'Detaljer for utgiftskonto ":name"', + 'details_for_revenue' => 'Detaljer for inntektskonto ":name"', + 'details_for_cash' => 'Detaljer for kontantkonto ":name"', + 'store_new_asset_account' => 'Lagra ny brukskonto', + 'store_new_expense_account' => 'Lagra ny utgiftskonto', + 'store_new_revenue_account' => 'Lagra ny inntektskonto', + 'edit_asset_account' => 'Rediger brukskonto ":name"', + 'edit_expense_account' => 'Rediger utgiftskonto ":name"', + 'edit_revenue_account' => 'Rediger inntektskonto ":name"', + 'delete_asset_account' => 'Slett brukskonto ":name"', + 'delete_expense_account' => 'Slett utgiftskonto ":name"', + 'delete_revenue_account' => 'Slett inntektskonto ":name"', + 'delete_liabilities_account' => 'Slett gjeld ":name"', + 'asset_deleted' => 'Sletting av brukskonto ":name" var vellukka', + 'account_deleted' => 'Sletting av konto ":name" var vellukka', + 'expense_deleted' => 'Sletting av utgiftskonto ":name" var vellukka', + 'revenue_deleted' => 'Sletting av inntekskonto ":name" var vellukka', + 'update_asset_account' => 'Oppdater aktivakonto', + 'update_undefined_account' => 'Oppdater konto', + 'update_liabilities_account' => 'Oppdater gjeld', + 'update_expense_account' => 'Oppdater utgiftskonto', + 'update_revenue_account' => 'Oppdater inntektskonto', + 'make_new_asset_account' => 'Opprett ein ny aktivakonto', + 'make_new_expense_account' => 'Opprett ein ny utgiftskonto', + 'make_new_revenue_account' => 'Opprett ein ny inntektskonto', + 'make_new_liabilities_account' => 'Opprett ny gjeld', + 'asset_accounts' => 'Aktivakontoar', + 'undefined_accounts' => 'Kontoar', + 'asset_accounts_inactive' => 'Aktivakontoar (inaktive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Utgiftskontoar', + 'expense_accounts_inactive' => 'Utgiftskontoar (inaktive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Inntektskontoar', + 'revenue_accounts_inactive' => 'Inntektskontoar (inaktive)', + 'cash_accounts' => 'Kontantkontoar', + 'Cash account' => 'Kontantkonto', + 'liabilities_accounts' => 'Gjeldskonto', + 'liabilities_accounts_inactive' => 'Gjeldskonto (inaktive)', + 'reconcile_account' => 'Avstem konto ":account"', + 'overview_of_reconcile_modal' => 'Balanseoversikt', + 'delete_reconciliation' => 'Slett avstemming', + 'update_reconciliation' => 'Oppdater avstemming', + 'amount_cannot_be_zero' => 'Beløpet kan ikkje vera null', + 'end_of_reconcile_period' => 'Slutten av balanse perioden :period', + 'start_of_reconcile_period' => 'Starten av balanse perioden :period', + 'start_balance' => 'Startsaldo', + 'end_balance' => 'Sluttsaldo', + 'update_balance_dates_instruction' => 'Koble beløpa og datoane over til kontoutskrifta, og trykk på "Start avstemning"', + 'select_transactions_instruction' => 'Vel transaksjonane som visast på kontoutskrifta.', + 'select_range_and_balance' => 'Kontroller først datoperiode og saldo. Deretter trykker du på "Start avstemning"', + 'date_change_instruction' => 'Om du endrer datointervallet no, vil du miste all foreløpig framdrift.', + 'update_selection' => 'Oppdater utval', + 'store_reconcile' => 'Lagra avstemming', + 'reconciliation_transaction' => 'Avstemmingstransaksjon', + 'Reconciliation' => 'Avstemming', + 'reconciliation' => 'Avstemming', + 'reconcile_options' => 'Avstemmingsalternativer', + 'reconcile_range' => 'Avstemningsområde', + 'start_reconcile' => 'Start avstemming', + 'cash_account_type' => 'Kontanter', + 'cash' => 'kontanter', + 'cant_find_redirect_account' => 'Firefly III prøvde å omdirigere deg, men kan ikkje. Beklager det. Tilbake til indeksen.', + 'account_type' => 'Kontotype', + 'save_transactions_by_moving' => 'Lagra denne transaksjonen ved å flytte den til ein annan konto:|Lagra desse transaksjonane ved å flytte dei til ein annan konto:', + 'save_transactions_by_moving_js' => 'Ingen transaksjonar|Lagra denne transaksjonen ved å flytte den til ein annan konto. |Lagra desse transaksjonane ved å flytte dei til ein annan konto.', + 'stored_new_account' => 'Ny konto:name: lagra!', + 'stored_new_account_js' => 'Ny konto "{name}" lagra!', + 'updated_account' => 'Oppdatert konto ":name"', + 'updated_account_js' => 'Oppdatert konto "{title}".', + 'credit_card_options' => 'Kredittkortvalg', + 'no_transactions_account' => 'Det eksisterar ingen transaksjonar (i denne perioden) for brukskonto ":name".', + 'no_transactions_period' => 'Det eksisterar ingen transaksjonar (i denne perioden).', + 'no_data_for_chart' => 'Det er ikkje nok informasjon (enda) til å generera dette diagrammet.', + 'select_at_least_one_account' => 'Vel minst ein brukskonto', + 'select_at_least_one_category' => 'Vel minst ein kategori', + 'select_at_least_one_budget' => 'Vel minst eit budsjett', + 'select_at_least_one_tag' => 'Vel minst eit nøkkelord', + 'select_at_least_one_expense' => 'Vel minst ein kombinasjon av utgift/inntekts konto. Om du ikkje har ein (lista er tom) så vil ikkje denne rapporten vera tilgjengeleg.', + 'account_default_currency' => 'Dette vert standard valuta for denne kontoen.', + 'reconcile_has_more' => 'Din Firefly III-hovedbok har meir pengar i seg enn banken hevder du burde ha. Det eksisterar fleire alternativ. Ver venleg å vel kva du skal gjera. Deretter trykker du på "Bekreft avstemming".', + 'reconcile_has_less' => 'Din Firefly III-hovedbok har mindre pengar i seg enn banken hevder du burde ha. Det eksisterar fleire alternativ. Ver venleg å vel kva du skal gjera. Deretter trykker du på "Bekreft avstemming".', + 'reconcile_is_equal' => 'Din Firefly III-hovedbok og dine kontoutskriftar samsvarar. Det er ingenting du treng gjera. Ver venleg å trykk "Bekreft avstemming" for å fortsetja.', + 'create_pos_reconcile_transaction' => 'Fjern dei valde transaksjonene, og opprett ein korrigering som legger til :amount til denne aktivakontoen.', + 'create_neg_reconcile_transaction' => 'Fjern dei valde transaksjonene, og opprett ein korrigering som tek bort :amount frå denne aktivakontoen.', + 'reconcile_do_nothing' => 'Fjern dei valde transaksjonene, men ikkje korriger.', + 'reconcile_go_back' => 'Du kan alltid redigera eller sletta ein korrigering senere.', + 'must_be_asset_account' => 'Du kan berre avstemma aktivakontoar', + 'reconciliation_stored' => 'Avstemming lagra', + 'reconciliation_error' => 'På grunn av ein feil vart transaksjonane markert som avstemt, men korrigeringen har ikkje vorte lagra: :error.', + 'reconciliation_transaction_title' => 'Avstemming (:from til :to)', + 'sum_of_reconciliation' => 'Sum av avstemming', + 'reconcile_this_account' => 'Avstem denne kontoen', + 'reconcile' => 'Avstem', + 'show' => 'Vis', + 'confirm_reconciliation' => 'Bekreft avstemming', + 'submitted_start_balance' => 'Innsendt startsaldo', + 'selected_transactions' => 'Valgte transaksjonar (:count)', + 'already_cleared_transactions' => 'Tidlegare rydda transaksjonar (:count)', + 'submitted_end_balance' => 'Innsendt sluttsaldo', + 'initial_balance_description' => 'Start saldo for ":account"', + 'liability_credit_description' => 'Gjeld på lån ":account"', + 'interest_calc_' => 'ukjent', + 'interest_calc_daily' => 'Per dag', + 'interest_calc_monthly' => 'Per månad', + 'interest_calc_yearly' => 'Per år', + 'interest_calc_weekly' => 'Per veke', + 'interest_calc_half-year' => 'Per halvår', + 'interest_calc_quarterly' => 'Per kvartal', + 'initial_balance_account' => 'Inngående balanse for :account', + 'list_options' => 'Listealternativer', // categories: - 'new_category' => 'Ny kategori', - 'create_new_category' => 'Opprett ein ny kategori', - 'without_category' => 'Uten kategori', - 'update_category' => 'Oppdater kategori', - 'updated_category' => 'Oppdatert kategori ":name"', - 'categories' => 'Kategorier', - 'edit_category' => 'Rediger kategori ":name"', - 'no_category' => '(ingen kategori)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategori', - 'delete_category' => 'Slett kategori ":name"', - 'deleted_category' => 'Sletta kategori ":name"', - 'store_category' => 'Lagra ny kategori', - 'stored_category' => 'Lagret ny kategori ":name"', - 'without_category_between' => 'Uten kategori mellom :start og :end', + 'new_category' => 'Ny kategori', + 'create_new_category' => 'Opprett ein ny kategori', + 'without_category' => 'Uten kategori', + 'update_category' => 'Oppdater kategori', + 'updated_category' => 'Oppdatert kategori ":name"', + 'categories' => 'Kategorier', + 'edit_category' => 'Rediger kategori ":name"', + 'no_category' => '(ingen kategori)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategori', + 'delete_category' => 'Slett kategori ":name"', + 'deleted_category' => 'Sletta kategori ":name"', + 'store_category' => 'Lagra ny kategori', + 'stored_category' => 'Lagret ny kategori ":name"', + 'without_category_between' => 'Uten kategori mellom :start og :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Oppdater uttak', - 'update_deposit' => 'Oppdater innskot', - 'update_transaction' => 'Oppdater transaksjonen', - 'update_transfer' => 'Oppdater overføring', - 'updated_withdrawal' => 'Oppdatert uttak ":description"', - 'updated_deposit' => 'Oppdatert innskot ":description"', - 'updated_transfer' => 'Oppdatert overføring ":description"', - 'no_changes_withdrawal' => 'Uttak ":description" vart ikkje endra.', - 'no_changes_deposit' => 'Innskudd ":description" vart ikkje endra.', - 'no_changes_transfer' => 'Overføring ":description" vart ikkje endra.', - 'delete_withdrawal' => 'Slett uttak ":description"', - 'delete_deposit' => 'Slett innskot ":description"', - 'delete_transfer' => 'Slett overføring ":description"', - 'deleted_withdrawal' => 'Sletta uttak ":description"', - 'deleted_deposit' => 'Sletta innskot ":description"', - 'deleted_transfer' => 'Sletta overføring ":description"', - 'deleted_reconciliation' => 'Sletta avstemmingstransaksjon ":description"', - 'stored_journal' => 'Opprettet ny transaksjon ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Vellykket! Ny transaksjon er opprettet', - 'updated_journal_no_descr' => 'Transaksjonen din vart oppdatert', - 'select_transactions' => 'Vel transaksjonar', - 'rule_group_select_transactions' => 'Påfør ":title" på transaksjonene', - 'rule_select_transactions' => 'Påfør ":title" på transaksjonene', - 'stop_selection' => 'Stop val av transaksjonar', - 'reconcile_selected' => 'Avstem', - 'mass_delete_journals' => 'Slett fleire transaksjonar', - 'mass_edit_journals' => 'Rediger fleire transaksjonar', - 'mass_bulk_journals' => 'Rediger fleire transaksjonar samtidig', - 'mass_bulk_journals_explain' => 'Dette skjemaet lar deg endra eigenskapar for transaksjonane nedanfor i ei oppdatering. Alle transaksjonane i tabellen vil verta oppdatert når du endrer parametrane du ser her.', - 'part_of_split' => 'Denne transaksjonen er ein del av ein delt transaksjon. Om du ikkje har valt alle delane, kan du enda opp med å endra berre halvparten av transaksjonen.', - 'bulk_set_new_values' => 'Bruk innstillingane nedanfor for å angi nye verdiar. Om du lar dei stå tomme, vert dei verande tomme. Vær òg oppmerksom på at kun uttak vil verta gitt eit budsjett.', - 'no_bulk_category' => 'Ikke oppdater kategori', - 'no_bulk_budget' => 'Ikke oppdater budsjett', - 'no_bulk_tags' => 'Ikkje oppdater nøkkelord', - 'replace_with_these_tags' => 'Erstatt med desse nøkkelorda', - 'append_these_tags' => 'Legg til desse nøkkelorda', - 'mass_edit' => 'Rediger individuelt valde', - 'bulk_edit' => 'Rediger valde i bulk', - 'mass_delete' => 'Slett valde', - 'cannot_edit_other_fields' => 'Du kan ikkje masseredigere andre felt enn dei som er her, fordi det er ikkje plass til å vise dem. Ver venleg å følg linken og rediger desse ein om gongen om du må redigera desse felta.', - 'cannot_change_amount_reconciled' => 'Du kan ikkje endra antal avstemte transaksjonar.', - 'no_budget' => '(ingen budsjett)', - 'no_bill' => '(ingen rekning)', - 'account_per_budget' => 'Konto per budsjett', - 'account_per_category' => 'Konto per kategori', - 'create_new_object' => 'Opprett', - 'empty' => '(tom)', - 'all_other_budgets' => '(alle andre budsjett)', - 'all_other_accounts' => '(alle andre kontoar)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Brukt i kategori «:category»', - 'earned_in_specific_category' => 'Opptjent i kategori ":category"', - 'spent_in_specific_tag' => 'Brukt i nøkkelordet «:tag»', - 'earned_in_specific_tag' => 'Opptjent i nøkkelordet «:tag»', - 'income_per_source_account' => 'Inntekter per kildekonto', - 'average_spending_per_destination' => 'Gjennomsnittlig utgift per målkonto', - 'average_spending_per_source' => 'Gjennomsnittlig utgift per kildekonto', - 'average_earning_per_source' => 'Gjennomsnittlig opptjente per kildekonto', - 'average_earning_per_destination' => 'Gjennomsnittlig opptjente per målkonto', - 'account_per_tag' => 'Konto per nøkkelord', - 'tag_report_expenses_listed_once' => 'Utgifter og inntekter vert aldri vist to ganger. Dersom ein transaksjon har fleire nøkkelord, vil han kun bli vist under eit av nøkkelorda sine. Denne lista kan sjå ut til å mangla data, men beløpa vil være korrekte.', - 'double_report_expenses_charted_once' => 'Utgifter og inntekter vert aldri vist to ganger. Dersom ein transaksjon har fleire nøkkelord, vil han kun bli vist under eit av nøkkelorda sine. Dette diagrammet kan sjå ut til å mangla data, men beløpa vil være korrekte.', - 'tag_report_chart_single_tag' => 'Diagrammet gjeld eit enkelt nøkkelord. Hvis ein transaksjon har fleire nøkkelord, vil det du ser her bli reflektert i diagram for andre nøkkelord i tillegg.', - 'tag' => 'Nøkkelord', - 'no_budget_squared' => '(ingen budsjett)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(ingen kontotype)', - 'opt_group_no_account_type' => '(ingen kontotype)', - 'opt_group_defaultAsset' => 'Standard aktivakontoar', - 'opt_group_savingAsset' => 'Sparekontoar', - 'opt_group_sharedAsset' => 'Delte aktivakontoar', - 'opt_group_ccAsset' => 'Kredittkort', - 'opt_group_cashWalletAsset' => 'Kontant lommebok', - 'opt_group_expense_account' => 'Utgiftskontoar', - 'opt_group_revenue_account' => 'Inntektskontoar', - 'opt_group_l_Loan' => 'Gjeld: Lån', - 'opt_group_cash_account' => 'Kontantkonto', - 'opt_group_l_Debt' => 'Gjeld: Gjeld', - 'opt_group_l_Mortgage' => 'Gjeld: Huslån', - 'opt_group_l_Credit card' => 'Gjeld: Kredittkort', - 'notes' => 'Notat', - 'unknown_journal_error' => 'Kunne ikkje lagra transaksjonen. Ver venleg å sjekk loggfilene.', - 'attachment_not_found' => 'Finner ikkje dette vedlegget.', - 'journal_link_bill' => 'Denne transaksjonen er knytt til rekning :name. Om du vil fjerna knytningen, fjerner du avmerkingen. Bruka reglar for å koble den til ein annan rekning.', - 'transaction_stored_link' => 'Transaksjon #{ID} ("{title}") har vorte lagra.', - 'transaction_new_stored_link' => 'Transaksjon #{ID} har vorte lagra.', - 'transaction_updated_link' => 'Transaksjon #{ID} ("{title}") har vorte oppdatert.', - 'transaction_updated_no_changes' => 'Transaksjon #{ID} ("{title}") fekk ingen endringar.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Brukt {amount} av {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Oppdater uttak', + 'update_deposit' => 'Oppdater innskot', + 'update_transaction' => 'Oppdater transaksjonen', + 'update_transfer' => 'Oppdater overføring', + 'updated_withdrawal' => 'Oppdatert uttak ":description"', + 'updated_deposit' => 'Oppdatert innskot ":description"', + 'updated_transfer' => 'Oppdatert overføring ":description"', + 'no_changes_withdrawal' => 'Uttak ":description" vart ikkje endra.', + 'no_changes_deposit' => 'Innskudd ":description" vart ikkje endra.', + 'no_changes_transfer' => 'Overføring ":description" vart ikkje endra.', + 'delete_withdrawal' => 'Slett uttak ":description"', + 'delete_deposit' => 'Slett innskot ":description"', + 'delete_transfer' => 'Slett overføring ":description"', + 'deleted_withdrawal' => 'Sletta uttak ":description"', + 'deleted_deposit' => 'Sletta innskot ":description"', + 'deleted_transfer' => 'Sletta overføring ":description"', + 'deleted_reconciliation' => 'Sletta avstemmingstransaksjon ":description"', + 'stored_journal' => 'Opprettet ny transaksjon ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Vellykket! Ny transaksjon er opprettet', + 'updated_journal_no_descr' => 'Transaksjonen din vart oppdatert', + 'select_transactions' => 'Vel transaksjonar', + 'rule_group_select_transactions' => 'Påfør ":title" på transaksjonene', + 'rule_select_transactions' => 'Påfør ":title" på transaksjonene', + 'stop_selection' => 'Stop val av transaksjonar', + 'reconcile_selected' => 'Avstem', + 'mass_delete_journals' => 'Slett fleire transaksjonar', + 'mass_edit_journals' => 'Rediger fleire transaksjonar', + 'mass_bulk_journals' => 'Rediger fleire transaksjonar samtidig', + 'mass_bulk_journals_explain' => 'Dette skjemaet lar deg endra eigenskapar for transaksjonane nedanfor i ei oppdatering. Alle transaksjonane i tabellen vil verta oppdatert når du endrer parametrane du ser her.', + 'part_of_split' => 'Denne transaksjonen er ein del av ein delt transaksjon. Om du ikkje har valt alle delane, kan du enda opp med å endra berre halvparten av transaksjonen.', + 'bulk_set_new_values' => 'Bruk innstillingane nedanfor for å angi nye verdiar. Om du lar dei stå tomme, vert dei verande tomme. Vær òg oppmerksom på at kun uttak vil verta gitt eit budsjett.', + 'no_bulk_category' => 'Ikke oppdater kategori', + 'no_bulk_budget' => 'Ikke oppdater budsjett', + 'no_bulk_tags' => 'Ikkje oppdater nøkkelord', + 'replace_with_these_tags' => 'Erstatt med desse nøkkelorda', + 'append_these_tags' => 'Legg til desse nøkkelorda', + 'mass_edit' => 'Rediger individuelt valde', + 'bulk_edit' => 'Rediger valde i bulk', + 'mass_delete' => 'Slett valde', + 'cannot_edit_other_fields' => 'Du kan ikkje masseredigere andre felt enn dei som er her, fordi det er ikkje plass til å vise dem. Ver venleg å følg linken og rediger desse ein om gongen om du må redigera desse felta.', + 'cannot_change_amount_reconciled' => 'Du kan ikkje endra antal avstemte transaksjonar.', + 'no_budget' => '(ingen budsjett)', + 'no_bill' => '(ingen rekning)', + 'account_per_budget' => 'Konto per budsjett', + 'account_per_category' => 'Konto per kategori', + 'create_new_object' => 'Opprett', + 'empty' => '(tom)', + 'all_other_budgets' => '(alle andre budsjett)', + 'all_other_accounts' => '(alle andre kontoar)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Brukt i kategori «:category»', + 'earned_in_specific_category' => 'Opptjent i kategori ":category"', + 'spent_in_specific_tag' => 'Brukt i nøkkelordet «:tag»', + 'earned_in_specific_tag' => 'Opptjent i nøkkelordet «:tag»', + 'income_per_source_account' => 'Inntekter per kildekonto', + 'average_spending_per_destination' => 'Gjennomsnittlig utgift per målkonto', + 'average_spending_per_source' => 'Gjennomsnittlig utgift per kildekonto', + 'average_earning_per_source' => 'Gjennomsnittlig opptjente per kildekonto', + 'average_earning_per_destination' => 'Gjennomsnittlig opptjente per målkonto', + 'account_per_tag' => 'Konto per nøkkelord', + 'tag_report_expenses_listed_once' => 'Utgifter og inntekter vert aldri vist to ganger. Dersom ein transaksjon har fleire nøkkelord, vil han kun bli vist under eit av nøkkelorda sine. Denne lista kan sjå ut til å mangla data, men beløpa vil være korrekte.', + 'double_report_expenses_charted_once' => 'Utgifter og inntekter vert aldri vist to ganger. Dersom ein transaksjon har fleire nøkkelord, vil han kun bli vist under eit av nøkkelorda sine. Dette diagrammet kan sjå ut til å mangla data, men beløpa vil være korrekte.', + 'tag_report_chart_single_tag' => 'Diagrammet gjeld eit enkelt nøkkelord. Hvis ein transaksjon har fleire nøkkelord, vil det du ser her bli reflektert i diagram for andre nøkkelord i tillegg.', + 'tag' => 'Nøkkelord', + 'no_budget_squared' => '(ingen budsjett)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(ingen kontotype)', + 'opt_group_no_account_type' => '(ingen kontotype)', + 'opt_group_defaultAsset' => 'Standard aktivakontoar', + 'opt_group_savingAsset' => 'Sparekontoar', + 'opt_group_sharedAsset' => 'Delte aktivakontoar', + 'opt_group_ccAsset' => 'Kredittkort', + 'opt_group_cashWalletAsset' => 'Kontant lommebok', + 'opt_group_expense_account' => 'Utgiftskontoar', + 'opt_group_revenue_account' => 'Inntektskontoar', + 'opt_group_l_Loan' => 'Gjeld: Lån', + 'opt_group_cash_account' => 'Kontantkonto', + 'opt_group_l_Debt' => 'Gjeld: Gjeld', + 'opt_group_l_Mortgage' => 'Gjeld: Huslån', + 'opt_group_l_Credit card' => 'Gjeld: Kredittkort', + 'notes' => 'Notat', + 'unknown_journal_error' => 'Kunne ikkje lagra transaksjonen. Ver venleg å sjekk loggfilene.', + 'attachment_not_found' => 'Finner ikkje dette vedlegget.', + 'journal_link_bill' => 'Denne transaksjonen er knytt til rekning :name. Om du vil fjerna knytningen, fjerner du avmerkingen. Bruka reglar for å koble den til ein annan rekning.', + 'transaction_stored_link' => 'Transaksjon #{ID} ("{title}") har vorte lagra.', + 'transaction_new_stored_link' => 'Transaksjon #{ID} har vorte lagra.', + 'transaction_updated_link' => 'Transaksjon #{ID} ("{title}") har vorte oppdatert.', + 'transaction_updated_no_changes' => 'Transaksjon #{ID} ("{title}") fekk ingen endringar.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Brukt {amount} av {total}', // new user: - 'welcome' => 'Velkomen til Firefly III!', - 'submit' => 'Send inn', - 'submission' => 'Submission', - 'submit_yes_really' => 'Registrer (Jeg veit kva eg gjer)', - 'getting_started' => 'Kom igang', - 'to_get_started' => 'Det er godt å sjå at du har installert Firefly III. Ver venleg å skriv inn bankens namn og saldo på hovedkontoen din for å komma i gang. Du treng Ikke bekymra deg om du har fleire kontoar. Du kan legga dei til seinare. Dette her er berre for at Firefly III skal få noko data å starta med.', - 'savings_balance_text' => 'Firefly III vil automatisk oppretta ein sparekonto for deg. Som standard vil det ikkje vera pengar på sparekontoen din, men om du oppgir saldoen din til Firefly III så vert den lagt inn for deg.', - 'finish_up_new_user' => 'Det var alt! Du kan fortsetja ved å trykke Send. Deretter vil du verta tatt til startskjermen til Firefly III.', - 'stored_new_accounts_new_user' => 'Jippi! Dei nye kontoane dine vart lagra.', - 'set_preferred_language' => 'Om du føretrekk å bruka Firefly III med eit anna språk, ver venleg å indiker det her.', - 'language' => 'Språk', - 'new_savings_account' => ':bank_name sparekonto', - 'cash_wallet' => 'Kontanter lommebok', - 'currency_not_present' => 'Om valutaen du vanligvis brukar ikkje er i lista, fortvil ikkje. Du kan oppretta din eigen valuta under Alternativer > valuta.', + 'welcome' => 'Velkomen til Firefly III!', + 'submit' => 'Send inn', + 'submission' => 'Submission', + 'submit_yes_really' => 'Registrer (Jeg veit kva eg gjer)', + 'getting_started' => 'Kom igang', + 'to_get_started' => 'Det er godt å sjå at du har installert Firefly III. Ver venleg å skriv inn bankens namn og saldo på hovedkontoen din for å komma i gang. Du treng Ikke bekymra deg om du har fleire kontoar. Du kan legga dei til seinare. Dette her er berre for at Firefly III skal få noko data å starta med.', + 'savings_balance_text' => 'Firefly III vil automatisk oppretta ein sparekonto for deg. Som standard vil det ikkje vera pengar på sparekontoen din, men om du oppgir saldoen din til Firefly III så vert den lagt inn for deg.', + 'finish_up_new_user' => 'Det var alt! Du kan fortsetja ved å trykke Send. Deretter vil du verta tatt til startskjermen til Firefly III.', + 'stored_new_accounts_new_user' => 'Jippi! Dei nye kontoane dine vart lagra.', + 'set_preferred_language' => 'Om du føretrekk å bruka Firefly III med eit anna språk, ver venleg å indiker det her.', + 'language' => 'Språk', + 'new_savings_account' => ':bank_name sparekonto', + 'cash_wallet' => 'Kontanter lommebok', + 'currency_not_present' => 'Om valutaen du vanligvis brukar ikkje er i lista, fortvil ikkje. Du kan oppretta din eigen valuta under Alternativer > valuta.', // home page: - 'transaction_table_description' => 'Ein tabell som inneheld transaksjonane dine', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Dine kontoar', - 'your_accounts' => 'Din konto oversikt', - 'category_overview' => 'Kategori oversikt', - 'expense_overview' => 'Utgiftskonto oversikt', - 'revenue_overview' => 'Inntektskonto oversikt', - 'budgetsAndSpending' => 'Budsjett og forbruk', - 'budgets_and_spending' => 'Budsjett og forbruk', - 'go_to_budget' => 'Gå til budsjett "{budget}"', - 'go_to_deposits' => 'Gå til innskot', - 'go_to_expenses' => 'Gå til utgifter', - 'savings' => 'Oppspart', - 'newWithdrawal' => 'Ny utgift', - 'newDeposit' => 'Nytt innskot', - 'newTransfer' => 'Ny overføring', - 'bills_to_pay' => 'Rekningar å betala', - 'per_day' => 'Per dag', - 'left_to_spend_per_day' => 'Att å bruka per dag', - 'bills_paid' => 'Rekningar betalt', - 'custom_period' => 'Tilpassa periode', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Vel periode', + 'transaction_table_description' => 'Ein tabell som inneheld transaksjonane dine', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Dine kontoar', + 'your_accounts' => 'Din konto oversikt', + 'category_overview' => 'Kategori oversikt', + 'expense_overview' => 'Utgiftskonto oversikt', + 'revenue_overview' => 'Inntektskonto oversikt', + 'budgetsAndSpending' => 'Budsjett og forbruk', + 'budgets_and_spending' => 'Budsjett og forbruk', + 'go_to_budget' => 'Gå til budsjett "{budget}"', + 'go_to_deposits' => 'Gå til innskot', + 'go_to_expenses' => 'Gå til utgifter', + 'savings' => 'Oppspart', + 'newWithdrawal' => 'Ny utgift', + 'newDeposit' => 'Nytt innskot', + 'newTransfer' => 'Ny overføring', + 'bills_to_pay' => 'Rekningar å betala', + 'per_day' => 'Per dag', + 'left_to_spend_per_day' => 'Att å bruka per dag', + 'bills_paid' => 'Rekningar betalt', + 'custom_period' => 'Tilpassa periode', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Vel periode', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Innstillinger', - 'logout' => 'Logg ut', - 'logout_other_sessions' => 'Logg ut alle andre økter', - 'toggleNavigation' => 'Vis/Skjul navigation', - 'searchPlaceholder' => 'Søk...', - 'version' => 'Versjon', - 'dashboard' => 'Startskjerm', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Tilgjengelege budsjett ({currency})', - 'currencies' => 'Valutaer', - 'activity' => 'Aktivitet', - 'usage' => 'Bruk', - 'accounts' => 'Kontoar', - 'Asset account' => 'Aktivakonto', - 'Default account' => 'Aktivakonto', - 'Expense account' => 'Utgiftskonto', - 'Revenue account' => 'Inntektskonto', - 'Initial balance account' => 'Startsaldokonto', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Gjeld', - 'account_type_Loan' => 'Lån', - 'account_type_Mortgage' => 'Boliglån', - 'account_type_debt' => 'Gjeld', - 'account_type_loan' => 'Lån', - 'account_type_mortgage' => 'Boliglån', - 'account_type_Credit card' => 'Kredittkort', - 'credit_card_type_monthlyFull' => 'Full betaling kvar månad', - 'liability_direction_credit' => 'Jeg skylder denne gjelda', - 'liability_direction_debit' => 'Jeg skylder denne gjelda til ein annan', - 'liability_direction_credit_short' => 'Jeg skuldet denne gjelda', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Ukjent', - 'liability_direction_null_short' => 'Ukjent', - 'Liability credit' => 'Lån kreditt', - 'budgets' => 'Budsjett', - 'tags' => 'Nøkkelord', - 'reports' => 'Rapportar', - 'transactions' => 'Transaksjoner', - 'expenses' => 'Utgifter', - 'income' => 'Inntekt', - 'transfers' => 'Overføringer', - 'moneyManagement' => 'Pengestyring', - 'money_management' => 'Pengestyring', - 'tools' => 'Verktøy', - 'piggyBanks' => 'Sparegrisar', - 'piggy_banks' => 'Sparegriser', - 'amount_x_of_y' => '{current} av {total}', - 'bills' => 'Rekningar', - 'withdrawal' => 'Uttak', - 'opening_balance' => 'Startsaldo', - 'deposit' => 'Innskudd', - 'account' => 'Konto', - 'transfer' => 'Overføring', - 'Withdrawal' => 'Uttak', - 'Deposit' => 'Innskudd', - 'Transfer' => 'Overføring', - 'bill' => 'Rekning', - 'yes' => 'Ja', - 'no' => 'Nei', - 'amount' => 'Beløp', - 'overview' => 'Oversikt', - 'saveOnAccount' => 'Spar på konto', - 'unknown' => 'Ukjent', - 'monthly' => 'Månadleg', - 'profile' => 'Profil', - 'errors' => 'Feil', - 'debt_start_date' => 'Startdato for gjeld', - 'debt_start_amount' => 'Start beløp for gjeld', - 'debt_start_amount_help' => 'Det er alltid best å definera denne verdien til eit negativt beløp. Les hjelpesidene (topp til høgre (?)-ikonet) for meir informasjon.', - 'interest_period_help' => 'Dette feltet er rent kosmetisk og vil ikkje verta berekna for deg. Sidan det visar seg at bankane er svært sneaky så Firefly III aldri får det rett.', - 'store_new_liabilities_account' => 'Lagra ny gjeld', - 'edit_liabilities_account' => 'Rediger gjeld ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Rekneskap', - 'automation' => 'Automatisering', - 'others' => 'Andre', - 'classification' => 'Klassifisering', - 'store_transaction' => 'Lagra transaksjon', + 'currency' => 'Valuta', + 'preferences' => 'Innstillinger', + 'logout' => 'Logg ut', + 'logout_other_sessions' => 'Logg ut alle andre økter', + 'toggleNavigation' => 'Vis/Skjul navigation', + 'searchPlaceholder' => 'Søk...', + 'version' => 'Versjon', + 'dashboard' => 'Startskjerm', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Tilgjengelege budsjett ({currency})', + 'currencies' => 'Valutaer', + 'activity' => 'Aktivitet', + 'usage' => 'Bruk', + 'accounts' => 'Kontoar', + 'Asset account' => 'Aktivakonto', + 'Default account' => 'Aktivakonto', + 'Expense account' => 'Utgiftskonto', + 'Revenue account' => 'Inntektskonto', + 'Initial balance account' => 'Startsaldokonto', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Gjeld', + 'account_type_Loan' => 'Lån', + 'account_type_Mortgage' => 'Boliglån', + 'account_type_debt' => 'Gjeld', + 'account_type_loan' => 'Lån', + 'account_type_mortgage' => 'Boliglån', + 'account_type_Credit card' => 'Kredittkort', + 'credit_card_type_monthlyFull' => 'Full betaling kvar månad', + 'liability_direction_credit' => 'Jeg skylder denne gjelda', + 'liability_direction_debit' => 'Jeg skylder denne gjelda til ein annan', + 'liability_direction_credit_short' => 'Jeg skuldet denne gjelda', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Ukjent', + 'liability_direction_null_short' => 'Ukjent', + 'Liability credit' => 'Lån kreditt', + 'budgets' => 'Budsjett', + 'tags' => 'Nøkkelord', + 'reports' => 'Rapportar', + 'transactions' => 'Transaksjoner', + 'expenses' => 'Utgifter', + 'income' => 'Inntekt', + 'transfers' => 'Overføringer', + 'moneyManagement' => 'Pengestyring', + 'money_management' => 'Pengestyring', + 'tools' => 'Verktøy', + 'piggyBanks' => 'Sparegrisar', + 'piggy_banks' => 'Sparegriser', + 'amount_x_of_y' => '{current} av {total}', + 'bills' => 'Rekningar', + 'withdrawal' => 'Uttak', + 'opening_balance' => 'Startsaldo', + 'deposit' => 'Innskudd', + 'account' => 'Konto', + 'transfer' => 'Overføring', + 'Withdrawal' => 'Uttak', + 'Deposit' => 'Innskudd', + 'Transfer' => 'Overføring', + 'bill' => 'Rekning', + 'yes' => 'Ja', + 'no' => 'Nei', + 'amount' => 'Beløp', + 'overview' => 'Oversikt', + 'saveOnAccount' => 'Spar på konto', + 'unknown' => 'Ukjent', + 'monthly' => 'Månadleg', + 'profile' => 'Profil', + 'errors' => 'Feil', + 'debt_start_date' => 'Startdato for gjeld', + 'debt_start_amount' => 'Start beløp for gjeld', + 'debt_start_amount_help' => 'Det er alltid best å definera denne verdien til eit negativt beløp. Les hjelpesidene (topp til høgre (?)-ikonet) for meir informasjon.', + 'interest_period_help' => 'Dette feltet er rent kosmetisk og vil ikkje verta berekna for deg. Sidan det visar seg at bankane er svært sneaky så Firefly III aldri får det rett.', + 'store_new_liabilities_account' => 'Lagra ny gjeld', + 'edit_liabilities_account' => 'Rediger gjeld ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Rekneskap', + 'automation' => 'Automatisering', + 'others' => 'Andre', + 'classification' => 'Klassifisering', + 'store_transaction' => 'Lagra transaksjon', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Standard finansiell rapport mellom :start og :end', - 'report_audit' => 'Transaksjonshistorikk og oversikt mellom :start og :end', - 'report_category' => 'Kategori rapport mellom :start og :end', - 'report_double' => 'Utgift/Inntekt kontorapport mellom :start og :end', - 'report_budget' => 'Budsjettrapport mellom :start og :end', - 'report_tag' => 'Nøkkelordrapport mellom :start og :end', - 'quick_link_reports' => 'Hurtiglenkjer', - 'quick_link_examples' => 'Dette er berre nokon eksempel linker for å komma i gang. Sjekk ut hjelpesidene under (?) -knappen for informasjon om alle rapportar og dei magiske orda som du kan bruka.', - 'quick_link_default_report' => 'Standard finansiell rapport', - 'quick_link_audit_report' => 'Oversikt over transaksjonshistorikk', - 'report_this_month_quick' => 'Inneverande månad, alle kontoar', - 'report_last_month_quick' => 'Forrige månad, alle kontoar', - 'report_this_year_quick' => 'Inneverande år, alle kontoar', - 'report_this_fiscal_year_quick' => 'Inneverande rekneskapsår, alle kontoar', - 'report_all_time_quick' => 'Frå tidenes morgon, alle kontoar', - 'reports_can_bookmark' => 'Husk at rapportar kan bokmerkast.', - 'incomeVsExpenses' => 'Inntekter vs. utgifter', - 'accountBalances' => 'Saldo', - 'balanceStart' => 'Saldo ved starten av periode', - 'balanceEnd' => 'Saldo ved utgongen av perioden', - 'splitByAccount' => 'Del opp på konto', - 'coveredWithTags' => 'Dekket med nøkkelord', - 'leftInBudget' => 'Att i budsjett', - 'left_in_debt' => 'Skuldig beløp', - 'sumOfSums' => 'Sum av summer', - 'noCategory' => '(ingen kategori)', - 'notCharged' => 'Ikke belastet (enda)', - 'inactive' => 'Inaktiv', - 'active' => 'Aktiv', - 'difference' => 'Differanse', - 'money_flowing_in' => 'Inn', - 'money_flowing_out' => 'Ut', - 'topX' => 'topp :number', - 'show_full_list' => 'Vis hele lista', - 'show_only_top' => 'Vis berre topp :number', - 'report_type' => 'Rapporttype', - 'report_type_default' => 'Standard finansiell rapport', - 'report_type_audit' => 'Transaksjonshistorikk (revisjon)', - 'report_type_category' => 'Kategorirapport', - 'report_type_budget' => 'Budsjettrapport', - 'report_type_tag' => 'Nøkkelordrapport', - 'report_type_double' => 'Rapport for kostnadar / inntekter', - 'more_info_help' => 'Mer informasjon om desse rapportane finn du på hjelpesidene. Trykk på (?) -ikonet øvst til høgre.', - 'report_included_accounts' => 'Inkluderte kontoar', - 'report_date_range' => 'Datointervall', - 'report_preset_ranges' => 'Forhåndsinnstilte områder', - 'shared' => 'Delt', - 'fiscal_year' => 'Rekneskapsår', - 'income_entry' => 'Inntekter frå konto ":name" mellom :start og :end', - 'expense_entry' => 'Utgifter til konto ":name" mellom :start og :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Utgifter i budsjettet «:budget» mellom :start og :end', - 'balance_amount' => 'Utgifter i budsjett ":budget" betalt frå konto ":account" mellom :start og :end', - 'no_audit_activity' => 'Ingen aktivitet er registrert på konto :account_name mellom :start og :end.', - 'audit_end_balance' => 'Kontobalanse frå :account_name ved slutten av :end var: :balance', - 'reports_extra_options' => 'Ekstra alternativ', - 'report_has_no_extra_options' => 'Denne rapporten har ingen ekstra alternativ', - 'reports_submit' => 'Vis rapport', - 'end_after_start_date' => 'Sluttdato for rapport må vera etter startdato.', - 'select_category' => 'Vel kategori(ar)', - 'select_budget' => 'Vel budsjett.', - 'select_tag' => 'Vel nøkkelord.', - 'income_per_category' => 'Inntekter per kategori', - 'expense_per_category' => 'Utgifter per kategori', - 'expense_per_budget' => 'Utgifter per budsjett', - 'income_per_account' => 'Inntekter per konto', - 'expense_per_account' => 'Utgifter per konto', - 'expense_per_tag' => 'Utgifter per nøkkelord', - 'income_per_tag' => 'Inntekter per nøkkelord', - 'include_expense_not_in_budget' => 'Inkluderte utgifter ikkje med i dei valde budsjettene', - 'include_expense_not_in_account' => 'Inkluderte utgifter ikkje med i dei valde kontoane', - 'include_expense_not_in_category' => 'Inkluderte utgifter ikkje med i dei valde kategoriene', - 'include_income_not_in_category' => 'Inkluderte inntekter ikkje med i dei valde kategoriene', - 'include_income_not_in_account' => 'Inkluderte inntekter ikkje med i dei valde kontoane', - 'include_income_not_in_tags' => 'Inkluderte inntekter ikkje i valde nøkkelord', - 'include_expense_not_in_tags' => 'Inkluderte utgifter ikkje i valde nøkkelord', - 'everything_else' => 'Alt anna', - 'income_and_expenses' => 'Inntekter og utgifter', - 'spent_average' => 'Brukt (gjennomsnittlig)', - 'income_average' => 'Inntekt (gjennomsnittlig)', - 'transaction_count' => 'Transaksjonsantal', - 'average_spending_per_account' => 'Gjennomsnittlig bruk per konto', - 'average_income_per_account' => 'Gjennomsnittlig inntekt per konto', - 'total' => 'Totalt', - 'description' => 'Beskriving', - 'sum_of_period' => 'Sum for perioden', - 'average_in_period' => 'Gjennomsnitt for periode', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Standard aktivakonto', - 'account_role_sharedAsset' => 'Delt aktivakonto', - 'account_role_savingAsset' => 'Sparekonto', - 'account_role_ccAsset' => 'Kredittkort', - 'account_role_cashWalletAsset' => 'Kontant lommebok', - 'budget_chart_click' => 'Ver venleg å trykk på eit budsjettnamn i tabellen ovenfor for å sjå eit diagram.', - 'category_chart_click' => 'Ver venleg å trykk på eit kategorinamn i tabellen ovenfor for å sjå eit diagram.', - 'in_out_accounts' => 'Tjent og brukt pr. kombinasjon', - 'in_out_accounts_per_asset' => 'Tjent og brukt (per aktivakonto)', - 'in_out_per_category' => 'Tjent og brukt per kategori', - 'out_per_budget' => 'Brukt per budsjett', - 'select_expense_revenue' => 'Vel utgifts-/inntektskonto', - 'multi_currency_report_sum' => 'Sidan denne lista inneheld kontoar med forskjellig valuta vil summen(summane) mest sannsynleg ikkje gje meining. Rapporten vil alltid falla tilbake på din standardvaluta.', - 'sum_in_default_currency' => 'Summen vil alltid be i din standard valuta.', - 'net_filtered_prefs' => 'Dette diagrammet vil aldri inkludere kontoar som ikkje har "Inkluder i nettoverdi"-valget avkryssa.', + 'report_default' => 'Standard finansiell rapport mellom :start og :end', + 'report_audit' => 'Transaksjonshistorikk og oversikt mellom :start og :end', + 'report_category' => 'Kategori rapport mellom :start og :end', + 'report_double' => 'Utgift/Inntekt kontorapport mellom :start og :end', + 'report_budget' => 'Budsjettrapport mellom :start og :end', + 'report_tag' => 'Nøkkelordrapport mellom :start og :end', + 'quick_link_reports' => 'Hurtiglenkjer', + 'quick_link_examples' => 'Dette er berre nokon eksempel linker for å komma i gang. Sjekk ut hjelpesidene under (?) -knappen for informasjon om alle rapportar og dei magiske orda som du kan bruka.', + 'quick_link_default_report' => 'Standard finansiell rapport', + 'quick_link_audit_report' => 'Oversikt over transaksjonshistorikk', + 'report_this_month_quick' => 'Inneverande månad, alle kontoar', + 'report_last_month_quick' => 'Forrige månad, alle kontoar', + 'report_this_year_quick' => 'Inneverande år, alle kontoar', + 'report_this_fiscal_year_quick' => 'Inneverande rekneskapsår, alle kontoar', + 'report_all_time_quick' => 'Frå tidenes morgon, alle kontoar', + 'reports_can_bookmark' => 'Husk at rapportar kan bokmerkast.', + 'incomeVsExpenses' => 'Inntekter vs. utgifter', + 'accountBalances' => 'Saldo', + 'balanceStart' => 'Saldo ved starten av periode', + 'balanceEnd' => 'Saldo ved utgongen av perioden', + 'splitByAccount' => 'Del opp på konto', + 'coveredWithTags' => 'Dekket med nøkkelord', + 'leftInBudget' => 'Att i budsjett', + 'left_in_debt' => 'Skuldig beløp', + 'sumOfSums' => 'Sum av summer', + 'noCategory' => '(ingen kategori)', + 'notCharged' => 'Ikke belastet (enda)', + 'inactive' => 'Inaktiv', + 'active' => 'Aktiv', + 'difference' => 'Differanse', + 'money_flowing_in' => 'Inn', + 'money_flowing_out' => 'Ut', + 'topX' => 'topp :number', + 'show_full_list' => 'Vis hele lista', + 'show_only_top' => 'Vis berre topp :number', + 'report_type' => 'Rapporttype', + 'report_type_default' => 'Standard finansiell rapport', + 'report_type_audit' => 'Transaksjonshistorikk (revisjon)', + 'report_type_category' => 'Kategorirapport', + 'report_type_budget' => 'Budsjettrapport', + 'report_type_tag' => 'Nøkkelordrapport', + 'report_type_double' => 'Rapport for kostnadar / inntekter', + 'more_info_help' => 'Mer informasjon om desse rapportane finn du på hjelpesidene. Trykk på (?) -ikonet øvst til høgre.', + 'report_included_accounts' => 'Inkluderte kontoar', + 'report_date_range' => 'Datointervall', + 'report_preset_ranges' => 'Forhåndsinnstilte områder', + 'shared' => 'Delt', + 'fiscal_year' => 'Rekneskapsår', + 'income_entry' => 'Inntekter frå konto ":name" mellom :start og :end', + 'expense_entry' => 'Utgifter til konto ":name" mellom :start og :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Utgifter i budsjettet «:budget» mellom :start og :end', + 'balance_amount' => 'Utgifter i budsjett ":budget" betalt frå konto ":account" mellom :start og :end', + 'no_audit_activity' => 'Ingen aktivitet er registrert på konto :account_name mellom :start og :end.', + 'audit_end_balance' => 'Kontobalanse frå :account_name ved slutten av :end var: :balance', + 'reports_extra_options' => 'Ekstra alternativ', + 'report_has_no_extra_options' => 'Denne rapporten har ingen ekstra alternativ', + 'reports_submit' => 'Vis rapport', + 'end_after_start_date' => 'Sluttdato for rapport må vera etter startdato.', + 'select_category' => 'Vel kategori(ar)', + 'select_budget' => 'Vel budsjett.', + 'select_tag' => 'Vel nøkkelord.', + 'income_per_category' => 'Inntekter per kategori', + 'expense_per_category' => 'Utgifter per kategori', + 'expense_per_budget' => 'Utgifter per budsjett', + 'income_per_account' => 'Inntekter per konto', + 'expense_per_account' => 'Utgifter per konto', + 'expense_per_tag' => 'Utgifter per nøkkelord', + 'income_per_tag' => 'Inntekter per nøkkelord', + 'include_expense_not_in_budget' => 'Inkluderte utgifter ikkje med i dei valde budsjettene', + 'include_expense_not_in_account' => 'Inkluderte utgifter ikkje med i dei valde kontoane', + 'include_expense_not_in_category' => 'Inkluderte utgifter ikkje med i dei valde kategoriene', + 'include_income_not_in_category' => 'Inkluderte inntekter ikkje med i dei valde kategoriene', + 'include_income_not_in_account' => 'Inkluderte inntekter ikkje med i dei valde kontoane', + 'include_income_not_in_tags' => 'Inkluderte inntekter ikkje i valde nøkkelord', + 'include_expense_not_in_tags' => 'Inkluderte utgifter ikkje i valde nøkkelord', + 'everything_else' => 'Alt anna', + 'income_and_expenses' => 'Inntekter og utgifter', + 'spent_average' => 'Brukt (gjennomsnittlig)', + 'income_average' => 'Inntekt (gjennomsnittlig)', + 'transaction_count' => 'Transaksjonsantal', + 'average_spending_per_account' => 'Gjennomsnittlig bruk per konto', + 'average_income_per_account' => 'Gjennomsnittlig inntekt per konto', + 'total' => 'Totalt', + 'description' => 'Beskriving', + 'sum_of_period' => 'Sum for perioden', + 'average_in_period' => 'Gjennomsnitt for periode', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Standard aktivakonto', + 'account_role_sharedAsset' => 'Delt aktivakonto', + 'account_role_savingAsset' => 'Sparekonto', + 'account_role_ccAsset' => 'Kredittkort', + 'account_role_cashWalletAsset' => 'Kontant lommebok', + 'budget_chart_click' => 'Ver venleg å trykk på eit budsjettnamn i tabellen ovenfor for å sjå eit diagram.', + 'category_chart_click' => 'Ver venleg å trykk på eit kategorinamn i tabellen ovenfor for å sjå eit diagram.', + 'in_out_accounts' => 'Tjent og brukt pr. kombinasjon', + 'in_out_accounts_per_asset' => 'Tjent og brukt (per aktivakonto)', + 'in_out_per_category' => 'Tjent og brukt per kategori', + 'out_per_budget' => 'Brukt per budsjett', + 'select_expense_revenue' => 'Vel utgifts-/inntektskonto', + 'multi_currency_report_sum' => 'Sidan denne lista inneheld kontoar med forskjellig valuta vil summen(summane) mest sannsynleg ikkje gje meining. Rapporten vil alltid falla tilbake på din standardvaluta.', + 'sum_in_default_currency' => 'Summen vil alltid be i din standard valuta.', + 'net_filtered_prefs' => 'Dette diagrammet vil aldri inkludere kontoar som ikkje har "Inkluder i nettoverdi"-valget avkryssa.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Diagram', - 'month' => 'Måned', - 'budget' => 'Budsjett', - 'spent' => 'Brukt', - 'spent_capped' => 'Brukt (Avkorta)', - 'spent_in_budget' => 'Brukt i budsjett', - 'left_to_spend' => 'Att å bruka', - 'earned' => 'Opptjent', - 'overspent' => 'Overforbruk', - 'left' => 'Att', - 'max-amount' => 'Maksimumsbeløp', - 'min-amount' => 'Minimumsbeløp', - 'journal-amount' => 'Gjeldande rekningspost', - 'name' => 'Namn', - 'date' => 'Dato', - 'date_and_time' => 'Dato og klokkeslett', - 'time' => 'Tid', - 'paid' => 'Betalt', - 'unpaid' => 'Ikke betalt', - 'day' => 'Dag', - 'budgeted' => 'Budsjettert', - 'period' => 'Periode', - 'balance' => 'Saldo', - 'in_out_period' => 'Inn + ut denne perioden', - 'sum' => 'Sum', - 'summary' => 'Oppsummering', - 'average' => 'Gjennomsnitt', - 'balanceFor' => 'Saldo for :name', - 'no_tags' => '(ingen nøkkelord)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Diagram', + 'month' => 'Måned', + 'budget' => 'Budsjett', + 'spent' => 'Brukt', + 'spent_capped' => 'Brukt (Avkorta)', + 'spent_in_budget' => 'Brukt i budsjett', + 'left_to_spend' => 'Att å bruka', + 'earned' => 'Opptjent', + 'overspent' => 'Overforbruk', + 'left' => 'Att', + 'max-amount' => 'Maksimumsbeløp', + 'min-amount' => 'Minimumsbeløp', + 'journal-amount' => 'Gjeldande rekningspost', + 'name' => 'Namn', + 'date' => 'Dato', + 'date_and_time' => 'Dato og klokkeslett', + 'time' => 'Tid', + 'paid' => 'Betalt', + 'unpaid' => 'Ikke betalt', + 'day' => 'Dag', + 'budgeted' => 'Budsjettert', + 'period' => 'Periode', + 'balance' => 'Saldo', + 'in_out_period' => 'Inn + ut denne perioden', + 'sum' => 'Sum', + 'summary' => 'Oppsummering', + 'average' => 'Gjennomsnitt', + 'balanceFor' => 'Saldo for :name', + 'no_tags' => '(ingen nøkkelord)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Hendelseshistorikk', - 'add_money_to_piggy' => 'Legg til pengar i sparegris ":name"', - 'piggy_bank' => 'Sparegris', - 'new_piggy_bank' => 'Ny sparegris', - 'store_piggy_bank' => 'Opprett ny sparegris', - 'stored_piggy_bank' => 'Lagra ny sparegris ":name"', - 'account_status' => 'Kontostatus', - 'left_for_piggy_banks' => 'Att i sparegriser', - 'sum_of_piggy_banks' => 'Sum i sparegriser', - 'saved_so_far' => 'Spart til no', - 'left_to_save' => 'Att å spara', - 'suggested_amount' => 'Foreslått månadleg beløp for å spara', - 'add_money_to_piggy_title' => 'Legg til pengar i sparegris ":name"', - 'remove_money_from_piggy_title' => 'Fjern pengar frå sparegris ":name"', - 'add' => 'Legg til', - 'no_money_for_piggy' => 'Du har ikkje fleire pengar å legga i denne sparegrisen.', - 'suggested_savings_per_month' => 'Foreslått pr. månad', + 'event_history' => 'Hendelseshistorikk', + 'add_money_to_piggy' => 'Legg til pengar i sparegris ":name"', + 'piggy_bank' => 'Sparegris', + 'new_piggy_bank' => 'Ny sparegris', + 'store_piggy_bank' => 'Opprett ny sparegris', + 'stored_piggy_bank' => 'Lagra ny sparegris ":name"', + 'account_status' => 'Kontostatus', + 'left_for_piggy_banks' => 'Att i sparegriser', + 'sum_of_piggy_banks' => 'Sum i sparegriser', + 'saved_so_far' => 'Spart til no', + 'left_to_save' => 'Att å spara', + 'suggested_amount' => 'Foreslått månadleg beløp for å spara', + 'add_money_to_piggy_title' => 'Legg til pengar i sparegris ":name"', + 'remove_money_from_piggy_title' => 'Fjern pengar frå sparegris ":name"', + 'add' => 'Legg til', + 'no_money_for_piggy' => 'Du har ikkje fleire pengar å legga i denne sparegrisen.', + 'suggested_savings_per_month' => 'Foreslått pr. månad', - 'remove' => 'Fjern', - 'max_amount_add' => 'Maksimumsbeløpet du kan legga til er', - 'max_amount_remove' => 'Maksimumsbeløpet du kan fjerna er', - 'update_piggy_button' => 'Oppdater sparegris', - 'update_piggy_title' => 'Oppdater sparegris ":name"', - 'updated_piggy_bank' => 'Oppdatert sparegris ":name"', - 'details' => 'Detaljer', - 'events' => 'Hendelser', - 'target_amount' => 'Målbeløp', - 'start_date' => 'Startdato', - 'no_start_date' => 'Ingen start dato', - 'target_date' => 'Måldato', - 'no_target_date' => 'Ingen måldato', - 'table' => 'Tabell', - 'delete_piggy_bank' => 'Slett sparegris ":name"', - 'cannot_add_amount_piggy' => 'Kan ikkje legga :amount til i ":name".', - 'cannot_remove_from_piggy' => 'Kan ikkje fjerna :amount frå ":name".', - 'deleted_piggy_bank' => 'Sletta sparegris ":name"', - 'added_amount_to_piggy' => 'La til :amount i ":name"', - 'removed_amount_from_piggy' => 'Fjerna :amount frå ":name"', - 'piggy_events' => 'Tilhøyrande sparegrisar', + 'remove' => 'Fjern', + 'max_amount_add' => 'Maksimumsbeløpet du kan legga til er', + 'max_amount_remove' => 'Maksimumsbeløpet du kan fjerna er', + 'update_piggy_button' => 'Oppdater sparegris', + 'update_piggy_title' => 'Oppdater sparegris ":name"', + 'updated_piggy_bank' => 'Oppdatert sparegris ":name"', + 'details' => 'Detaljer', + 'events' => 'Hendelser', + 'target_amount' => 'Målbeløp', + 'start_date' => 'Startdato', + 'no_start_date' => 'Ingen start dato', + 'target_date' => 'Måldato', + 'no_target_date' => 'Ingen måldato', + 'table' => 'Tabell', + 'delete_piggy_bank' => 'Slett sparegris ":name"', + 'cannot_add_amount_piggy' => 'Kan ikkje legga :amount til i ":name".', + 'cannot_remove_from_piggy' => 'Kan ikkje fjerna :amount frå ":name".', + 'deleted_piggy_bank' => 'Sletta sparegris ":name"', + 'added_amount_to_piggy' => 'La til :amount i ":name"', + 'removed_amount_from_piggy' => 'Fjerna :amount frå ":name"', + 'piggy_events' => 'Tilhøyrande sparegrisar', // tags - 'delete_tag' => 'Slett nøkkelordet «:tag»', - 'deleted_tag' => 'Sletta nøkkelordet «:tag»', - 'new_tag' => 'Lag nytt nøkkelord', - 'edit_tag' => 'Rediger nøkkelordet «:tag»', - 'updated_tag' => 'Oppdaterte nøkkelordet «:tag»', - 'created_tag' => 'Nøkkelordet «:tag» har vorte oppretta!', + 'delete_tag' => 'Slett nøkkelordet «:tag»', + 'deleted_tag' => 'Sletta nøkkelordet «:tag»', + 'new_tag' => 'Lag nytt nøkkelord', + 'edit_tag' => 'Rediger nøkkelordet «:tag»', + 'updated_tag' => 'Oppdaterte nøkkelordet «:tag»', + 'created_tag' => 'Nøkkelordet «:tag» har vorte oppretta!', - 'transaction_journal_information' => 'Transaksjonsinformasjon', - 'transaction_journal_amount' => 'Beløpsinformasjon', - 'transaction_journal_meta' => 'Metainformasjon', - 'transaction_journal_more' => 'Meir informasjon', - 'basic_journal_information' => 'Grunnleggande transaksjonsinformasjon', - 'transaction_journal_extra' => 'Ekstra informasjon', - 'att_part_of_journal' => 'Lagra under «:journal»', - 'total_amount' => 'Totalbeløp', - 'number_of_decimals' => 'Antal desimalar', + 'transaction_journal_information' => 'Transaksjonsinformasjon', + 'transaction_journal_amount' => 'Beløpsinformasjon', + 'transaction_journal_meta' => 'Metainformasjon', + 'transaction_journal_more' => 'Meir informasjon', + 'basic_journal_information' => 'Grunnleggande transaksjonsinformasjon', + 'transaction_journal_extra' => 'Ekstra informasjon', + 'att_part_of_journal' => 'Lagra under «:journal»', + 'total_amount' => 'Totalbeløp', + 'number_of_decimals' => 'Antal desimalar', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Invitasjonen til «:address» har allerede vorte innløyst.', - 'invite_is_deleted' => 'Invitasjonen til «:address» vart sletta.', - 'invite_new_user_title' => 'Inviter ny brukar', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'E-postadresse', - 'invite_user' => 'Inviter brukar', - 'user_is_invited' => 'E-postadressa «:address» vart invitert til Firefly III', - 'administration' => 'Administrasjon', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invitasjonskoden er allereie brukt', - 'user_administration' => 'Brukaradministrasjon', - 'list_all_users' => 'Alle brukarar', - 'all_users' => 'Alle brukarar', - 'instance_configuration' => 'Konfigurasjon', - 'firefly_instance_configuration' => 'Konfigurasjonsalternativer for Firefly III', - 'setting_single_user_mode' => 'Enkeltbrukarmodus', - 'setting_single_user_mode_explain' => 'Som standard godtar Firefly III berre ein (1) registrering: deg. Dette er eit sikkerhetstiltak, som hindrer andre i å bruka din instans om du ikkje tillatar dei det. Fremtidige registreringer er blokkert. Når du kryssar av denne ruten kan andre bruka din førekomst, forutsatt at dei kan nå serveren (når den er kopla til Internett).', - 'store_configuration' => 'Lagra konfigurasjon', - 'single_user_administration' => 'Brukaradministrasjon for :email', - 'edit_user' => 'Rediger brukar :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Brukardata', - 'user_information' => 'Brukarinformasjon', - 'total_size' => 'totalstørrelse', - 'budget_or_budgets' => ':count budsjett|:count budsjett', - 'budgets_with_limits' => ':count budsjett med konfigurert beløp|:count budsjett med konfigurert beløp', - 'nr_of_rules_in_total_groups' => ':count_rules reglar i :count_groups regel gruppe(r)', - 'tag_or_tags' => ':count nøkkelord|:count nøkkelord', - 'configuration_updated' => 'Konfigurasjonen er oppdatert', - 'setting_is_demo_site' => 'Demo nettsted', - 'setting_is_demo_site_explain' => 'Om du avhuker denne boksen, vil installasjonen oppføre seg som om det er ein demo site, som kan ha rare bivirkninger.', - 'block_code_bounced' => 'Epostmelding(ar) kunne ikkje leveres', - 'block_code_expired' => 'Demo-konto utløpt', - 'no_block_code' => 'Ingen grunn for utestengelse eller brukaren er ikkje utestengt', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Brukaren har ikkje bekreftet ny e-postadresse enda', - 'admin_update_email' => 'I motsetning til profilsida, vil brukaren IKKE verta varslet om at e-postadressa er endra!', - 'update_user' => 'Oppdater brukar', - 'updated_user' => 'Brukardata er endra.', - 'delete_user' => 'Slett brukar :email', - 'user_deleted' => 'Brukaren er sletta', - 'send_test_email' => 'Send test-epostmelding', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send melding', - 'send_test_triggered' => 'Test vart utløst. Sjekk innboksen din og loggfilene.', - 'give_admin_careful' => 'Brukarar som får administrative rettigheter kan ta bort din. Vær forsiktig.', - 'admin_maintanance_title' => 'Vedlikehold', - 'admin_maintanance_expl' => 'Nokre smarte knappar for Firefly III vedlikehald', - 'admin_maintenance_clear_cache' => 'Tøm hurtigminne', - 'admin_notifications' => 'Admin varsel', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'Brukar får velkomstmelding etter registrering', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'Ein ny versjon er tilgjengeleg', - 'admin_notification_check_invite_created' => 'Ein brukar er invitert til Firefly III', - 'admin_notification_check_invite_redeemed' => 'Ein brukerinvitasjon er innløyst', - 'all_invited_users' => 'Alle inviterte brukarar', - 'save_notification_settings' => 'Lagra innstillingar', - 'notification_settings_saved' => 'Varslingsinnstillingane har vorte lagra', + 'invite_is_already_redeemed' => 'Invitasjonen til «:address» har allerede vorte innløyst.', + 'invite_is_deleted' => 'Invitasjonen til «:address» vart sletta.', + 'invite_new_user_title' => 'Inviter ny brukar', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'E-postadresse', + 'invite_user' => 'Inviter brukar', + 'user_is_invited' => 'E-postadressa «:address» vart invitert til Firefly III', + 'administration' => 'Administrasjon', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invitasjonskoden er allereie brukt', + 'user_administration' => 'Brukaradministrasjon', + 'list_all_users' => 'Alle brukarar', + 'all_users' => 'Alle brukarar', + 'instance_configuration' => 'Konfigurasjon', + 'firefly_instance_configuration' => 'Konfigurasjonsalternativer for Firefly III', + 'setting_single_user_mode' => 'Enkeltbrukarmodus', + 'setting_single_user_mode_explain' => 'Som standard godtar Firefly III berre ein (1) registrering: deg. Dette er eit sikkerhetstiltak, som hindrer andre i å bruka din instans om du ikkje tillatar dei det. Fremtidige registreringer er blokkert. Når du kryssar av denne ruten kan andre bruka din førekomst, forutsatt at dei kan nå serveren (når den er kopla til Internett).', + 'store_configuration' => 'Lagra konfigurasjon', + 'single_user_administration' => 'Brukaradministrasjon for :email', + 'edit_user' => 'Rediger brukar :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Brukardata', + 'user_information' => 'Brukarinformasjon', + 'total_size' => 'totalstørrelse', + 'budget_or_budgets' => ':count budsjett|:count budsjett', + 'budgets_with_limits' => ':count budsjett med konfigurert beløp|:count budsjett med konfigurert beløp', + 'nr_of_rules_in_total_groups' => ':count_rules reglar i :count_groups regel gruppe(r)', + 'tag_or_tags' => ':count nøkkelord|:count nøkkelord', + 'configuration_updated' => 'Konfigurasjonen er oppdatert', + 'setting_is_demo_site' => 'Demo nettsted', + 'setting_is_demo_site_explain' => 'Om du avhuker denne boksen, vil installasjonen oppføre seg som om det er ein demo site, som kan ha rare bivirkninger.', + 'block_code_bounced' => 'Epostmelding(ar) kunne ikkje leveres', + 'block_code_expired' => 'Demo-konto utløpt', + 'no_block_code' => 'Ingen grunn for utestengelse eller brukaren er ikkje utestengt', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Brukaren har ikkje bekreftet ny e-postadresse enda', + 'admin_update_email' => 'I motsetning til profilsida, vil brukaren IKKE verta varslet om at e-postadressa er endra!', + 'update_user' => 'Oppdater brukar', + 'updated_user' => 'Brukardata er endra.', + 'delete_user' => 'Slett brukar :email', + 'user_deleted' => 'Brukaren er sletta', + 'send_test_email' => 'Send test-epostmelding', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send melding', + 'send_test_triggered' => 'Test vart utløst. Sjekk innboksen din og loggfilene.', + 'give_admin_careful' => 'Brukarar som får administrative rettigheter kan ta bort din. Vær forsiktig.', + 'admin_maintanance_title' => 'Vedlikehold', + 'admin_maintanance_expl' => 'Nokre smarte knappar for Firefly III vedlikehald', + 'admin_maintenance_clear_cache' => 'Tøm hurtigminne', + 'admin_notifications' => 'Admin varsel', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'Brukar får velkomstmelding etter registrering', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'Ein ny versjon er tilgjengeleg', + 'admin_notification_check_invite_created' => 'Ein brukar er invitert til Firefly III', + 'admin_notification_check_invite_redeemed' => 'Ein brukerinvitasjon er innløyst', + 'all_invited_users' => 'Alle inviterte brukarar', + 'save_notification_settings' => 'Lagra innstillingar', + 'notification_settings_saved' => 'Varslingsinnstillingane har vorte lagra', - 'split_transaction_title' => 'Beskrivinga av den splitta transaksjonen', - 'split_transaction_title_help' => 'Om du oppretter ein splittet transaksjon, må du ha ein hoved beskriving for alle deler av transaksjonen.', - 'split_title_help' => 'Om du oppretter ein splittet transaksjon, må du ha ein global beskriving for alle deler av transaksjonen.', - 'you_create_transfer' => 'Du lager ein overføring.', - 'you_create_withdrawal' => 'Du lager eit uttak.', - 'you_create_deposit' => 'Du lager ein innskud.', + 'split_transaction_title' => 'Beskrivinga av den splitta transaksjonen', + 'split_transaction_title_help' => 'Om du oppretter ein splittet transaksjon, må du ha ein hoved beskriving for alle deler av transaksjonen.', + 'split_title_help' => 'Om du oppretter ein splittet transaksjon, må du ha ein global beskriving for alle deler av transaksjonen.', + 'you_create_transfer' => 'Du lager ein overføring.', + 'you_create_withdrawal' => 'Du lager eit uttak.', + 'you_create_deposit' => 'Du lager ein innskud.', // links - 'journal_link_configuration' => 'Konfigurasjon av transaksjonslenkjer', - 'create_new_link_type' => 'Opprett ny lenktype', - 'store_new_link_type' => 'Lagra ny koblingstype', - 'update_link_type' => 'Oppdater koblingstype', - 'edit_link_type' => 'Rediger lenkjetype «:name»', - 'updated_link_type' => 'Oppdatert lenkjetype «:name»', - 'delete_link_type' => 'Slett lenkjetype «:name»', - 'deleted_link_type' => 'Sletta lenkjetype «:name»', - 'stored_new_link_type' => 'Lagra ny lenkjetype «:name»', - 'cannot_edit_link_type' => 'Kan ikkje redigera lenkjetype «:name»', - 'link_type_help_name' => 'Dvs. "Duplikater"', - 'link_type_help_inward' => 'Dvs. "duplikater"', - 'link_type_help_outward' => 'Dvs. "dupliseres av"', - 'save_connections_by_moving' => 'Lagra koblingen mellom desse transaksjonane ved å flytte dei til ein annan lenktype:', - 'do_not_save_connection' => '(ikkje lagra kobling)', - 'link_transaction' => 'Sammenkoble transaksjon', - 'link_to_other_transaction' => 'Koble denne transaksjonen til ein annan transaksjon', - 'select_transaction_to_link' => 'Vel ein transaksjon å koble til denne transaksjonen. Lenker er for tiden ubrukt i Firefly III (bortsett frå å verta vist), men eg planlegg å endra dette i framtida. Bruk søkeboksen for å velga ein transaksjon, enten etter tittel eller etter ID. Om du vil legga til egendefinerte lenkjetyper, sjekk administrasjonsavsnittetet.', - 'this_transaction' => 'Denne transaksjonen', - 'transaction' => 'Transaksjon', - 'comments' => 'Kommentarar', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Kan ikkje koble desse transaksjonane saman', - 'selected_transaction' => 'Vel transaksjonar', - 'journals_linked' => 'Transaksjonane er knytt saman.', - 'journals_error_linked' => 'Desse transaksjonane er allereie knytt saman.', - 'journals_link_to_self' => 'Du kan ikkje koble ein transaksjon til seg sjølv', - 'journal_links' => 'Transaksjonskoblinger', - 'this_withdrawal' => 'Dette uttaket', - 'this_deposit' => 'Dette innskuddet', - 'this_transfer' => 'Denne overføringen', - 'overview_for_link' => 'Oversikt for linktype «:name»', - 'source_transaction' => 'Kjeldetransaksjon', - 'link_description' => 'Lenkjebeskriving', - 'destination_transaction' => 'Destinasjonstransaksjon', - 'delete_journal_link' => 'Slett koblingen mellom :source og :destination', - 'deleted_link' => 'Sletta kobling', + 'journal_link_configuration' => 'Konfigurasjon av transaksjonslenkjer', + 'create_new_link_type' => 'Opprett ny lenktype', + 'store_new_link_type' => 'Lagra ny koblingstype', + 'update_link_type' => 'Oppdater koblingstype', + 'edit_link_type' => 'Rediger lenkjetype «:name»', + 'updated_link_type' => 'Oppdatert lenkjetype «:name»', + 'delete_link_type' => 'Slett lenkjetype «:name»', + 'deleted_link_type' => 'Sletta lenkjetype «:name»', + 'stored_new_link_type' => 'Lagra ny lenkjetype «:name»', + 'cannot_edit_link_type' => 'Kan ikkje redigera lenkjetype «:name»', + 'link_type_help_name' => 'Dvs. "Duplikater"', + 'link_type_help_inward' => 'Dvs. "duplikater"', + 'link_type_help_outward' => 'Dvs. "dupliseres av"', + 'save_connections_by_moving' => 'Lagra koblingen mellom desse transaksjonane ved å flytte dei til ein annan lenktype:', + 'do_not_save_connection' => '(ikkje lagra kobling)', + 'link_transaction' => 'Sammenkoble transaksjon', + 'link_to_other_transaction' => 'Koble denne transaksjonen til ein annan transaksjon', + 'select_transaction_to_link' => 'Vel ein transaksjon å koble til denne transaksjonen. Lenker er for tiden ubrukt i Firefly III (bortsett frå å verta vist), men eg planlegg å endra dette i framtida. Bruk søkeboksen for å velga ein transaksjon, enten etter tittel eller etter ID. Om du vil legga til egendefinerte lenkjetyper, sjekk administrasjonsavsnittetet.', + 'this_transaction' => 'Denne transaksjonen', + 'transaction' => 'Transaksjon', + 'comments' => 'Kommentarar', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Kan ikkje koble desse transaksjonane saman', + 'selected_transaction' => 'Vel transaksjonar', + 'journals_linked' => 'Transaksjonane er knytt saman.', + 'journals_error_linked' => 'Desse transaksjonane er allereie knytt saman.', + 'journals_link_to_self' => 'Du kan ikkje koble ein transaksjon til seg sjølv', + 'journal_links' => 'Transaksjonskoblinger', + 'this_withdrawal' => 'Dette uttaket', + 'this_deposit' => 'Dette innskuddet', + 'this_transfer' => 'Denne overføringen', + 'overview_for_link' => 'Oversikt for linktype «:name»', + 'source_transaction' => 'Kjeldetransaksjon', + 'link_description' => 'Lenkjebeskriving', + 'destination_transaction' => 'Destinasjonstransaksjon', + 'delete_journal_link' => 'Slett koblingen mellom :source og :destination', + 'deleted_link' => 'Sletta kobling', // link translations: - 'Paid_name' => 'Betalt', - 'Refund_name' => 'Refusjon', - 'Reimbursement_name' => 'Tilbakebetaling', - 'Related_name' => 'Relatert', - 'relates to_inward' => 'relatert til', - 'is (partially) refunded by_inward' => 'er (delvis) refundert av', - 'is (partially) paid for by_inward' => 'er (delvis) betalt av', - 'is (partially) reimbursed by_inward' => 'er (delvis) tilbakebetalt av', - 'inward_transaction' => 'Innlands transaksjon', - 'outward_transaction' => 'Utenland transaksjon', - 'relates to_outward' => 'relatert til', - '(partially) refunds_outward' => '(delvise) refusjoner', - '(partially) pays for_outward' => 'betaler (delvis) for', - '(partially) reimburses_outward' => 'tilbakebetaler (delvis)', - 'is (partially) refunded by' => 'er (delvis) refundert av', - 'is (partially) paid for by' => 'er (delvis) betalt av', - 'is (partially) reimbursed by' => 'er (delvis) tilbakebetalt av', - 'relates to' => 'relatert til', - '(partially) refunds' => '(delvise) refusjoner', - '(partially) pays for' => 'betaler (delvis) for', - '(partially) reimburses' => 'tilbakebetaler (delvis)', + 'Paid_name' => 'Betalt', + 'Refund_name' => 'Refusjon', + 'Reimbursement_name' => 'Tilbakebetaling', + 'Related_name' => 'Relatert', + 'relates to_inward' => 'relatert til', + 'is (partially) refunded by_inward' => 'er (delvis) refundert av', + 'is (partially) paid for by_inward' => 'er (delvis) betalt av', + 'is (partially) reimbursed by_inward' => 'er (delvis) tilbakebetalt av', + 'inward_transaction' => 'Innlands transaksjon', + 'outward_transaction' => 'Utenland transaksjon', + 'relates to_outward' => 'relatert til', + '(partially) refunds_outward' => '(delvise) refusjoner', + '(partially) pays for_outward' => 'betaler (delvis) for', + '(partially) reimburses_outward' => 'tilbakebetaler (delvis)', + 'is (partially) refunded by' => 'er (delvis) refundert av', + 'is (partially) paid for by' => 'er (delvis) betalt av', + 'is (partially) reimbursed by' => 'er (delvis) tilbakebetalt av', + 'relates to' => 'relatert til', + '(partially) refunds' => '(delvise) refusjoner', + '(partially) pays for' => 'betaler (delvis) for', + '(partially) reimburses' => 'tilbakebetaler (delvis)', // split a transaction: - 'splits' => 'Deler opp', - 'add_another_split' => 'Legg til ein oppdeling til', - 'cannot_edit_opening_balance' => 'Du kan ikkje redigera åpningssaldoen til ein konto.', - 'no_edit_multiple_left' => 'Du har ikkje valt ein tillatt transaksjon for redigering.', - 'breadcrumb_convert_group' => 'Konverter transaksjonen', - 'convert_invalid_source' => 'Kjeldeinformasjon er ugyldig for transaksjon #%d.', - 'convert_invalid_destination' => 'Målinformasjon er ugyldig for transaksjon #%d.', - 'create_another' => 'Gå tilbake hit etter lagring for å oppretta ein ny.', - 'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsetja å redigera.', - 'store_as_new' => 'Lagra som ein ny transaksjon istedenfor å oppdatera.', - 'reset_after' => 'Nullstill skjema etter innsending', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Utvid splitt', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Kollaps deling', + 'splits' => 'Deler opp', + 'add_another_split' => 'Legg til ein oppdeling til', + 'cannot_edit_opening_balance' => 'Du kan ikkje redigera åpningssaldoen til ein konto.', + 'no_edit_multiple_left' => 'Du har ikkje valt ein tillatt transaksjon for redigering.', + 'breadcrumb_convert_group' => 'Konverter transaksjonen', + 'convert_invalid_source' => 'Kjeldeinformasjon er ugyldig for transaksjon #%d.', + 'convert_invalid_destination' => 'Målinformasjon er ugyldig for transaksjon #%d.', + 'create_another' => 'Gå tilbake hit etter lagring for å oppretta ein ny.', + 'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsetja å redigera.', + 'store_as_new' => 'Lagra som ein ny transaksjon istedenfor å oppdatera.', + 'reset_after' => 'Nullstill skjema etter innsending', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Utvid splitt', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Kollaps deling', // object groups - 'default_group_title_name' => '(ikkje gruppert)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ikkje gruppert)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'La oss oppretta ein aktivakonto!', - 'no_accounts_intro_asset' => 'Du har ingen aktivakontoar enda. Aktivakontoar er hovedkontoane dine: brukskonto, sparekonto, delt konto eller til og med kredittkortet ditt.', - 'no_accounts_imperative_asset' => 'For å begynne å bruka Firefly III må du oppretta minst ein aktivakonto. La oss gjera det no:', - 'no_accounts_create_asset' => 'Opprett ein aktivakonto', - 'no_accounts_title_expense' => 'La oss laga ein utgiftskonto!', - 'no_accounts_intro_expense' => 'Du har ingen utgiftskonto enda. Utgiftskontoar er dei stadane du brukar pengar, for eksempel butikkar og supermarked.', - 'no_accounts_imperative_expense' => 'Utgiftskontoar vert oppretta automatisk når du opprettar transaksjonar, men du kan og oppretta dei manuelt om du vil. La oss laga ein no:', - 'no_accounts_create_expense' => 'Opprett ein utgiftskonto', - 'no_accounts_title_revenue' => 'La oss oppretta ein inntektskonto!', - 'no_accounts_intro_revenue' => 'Du har ingen inntektskonto enda. Inntektskontoar er dei stadane du mottek pengar frå, for eksempel arbeidsgjevaren din.', - 'no_accounts_imperative_revenue' => 'Inntektsskontoar vert oppretta automatisk når du opprettar transaksjonar, men du kan og oppretta dei manuelt om du vil. La oss laga ein no:', - 'no_accounts_create_revenue' => 'Opprett ein inntektskonto', - 'no_accounts_title_liabilities' => 'La oss laga eit lån!', - 'no_accounts_intro_liabilities' => 'Du har ikkje gjeld enda. "Gjeldskonto" er kontoar som du registrerar ditt (studie) lån og andre formar for gjeld på.', - 'no_accounts_imperative_liabilities' => 'Du behøver ikkje bruka denne funksjonen, men den kan vera fornuftig å bruka når du vil ha kontroll på desse tingene.', - 'no_accounts_create_liabilities' => 'Opprett gjeld', - 'no_budgets_title_default' => 'La oss laga eit budsjett', - 'no_rules_title_default' => 'La oss laga ein regel', - 'no_budgets_intro_default' => 'Du har ingen budsjett enda. Budsjett brukes til å organisere utgiftane i logiske grupper, som du kan definera tak på for å begrense utgiftane dine.', - 'no_rules_intro_default' => 'Du har ingen reglar enda. Regler er kraftfulle automatiseringer som kan håndtere transaksjonar for deg.', - 'no_rules_imperative_default' => 'Regler kan vera veldig nyttige når du håndterer transaksjonar. La oss laga ein no:', - 'no_budgets_imperative_default' => 'Budsjett er eit basis verktøy for finansiell administrasjon. La oss laga eit no:', - 'no_budgets_create_default' => 'Opprett eit budsjett', - 'no_rules_create_default' => 'Opprett ein regel', - 'no_categories_title_default' => 'La oss laga ein kategori!', - 'no_categories_intro_default' => 'Du har ingen kategoriar enda. Kategorier brukes til å finjustere dine transaksjonar og merke dei med sin eigen kategori.', - 'no_categories_imperative_default' => 'Kategorier opprettes automatisk når du oppretter transaksjonar, men du kan oppretta ein manuelt òg. La oss oppretta ein no:', - 'no_categories_create_default' => 'Opprett ein kategori', - 'no_tags_title_default' => 'La oss laga eit nøkkelord!', - 'no_tags_intro_default' => 'Du har ingen nøkkelord enda. Nøkkelord vert benytta til å finjustera transaksjonar og merka dei med spesifikke ord.', - 'no_tags_imperative_default' => 'Nøkkelord vert oppretta automatisk når du lagar transaksjonar, men du kan òg laga dei manuelt. La oss laga eit no:', - 'no_tags_create_default' => 'Opprett nøkkelord', - 'no_transactions_title_withdrawal' => 'La oss laga ein utgift!', - 'no_transactions_intro_withdrawal' => 'Du har ingen utgifter enda. Du kan legga inn utgifter for å begynne å administrere din økonomi.', - 'no_transactions_imperative_withdrawal' => 'Har du brukt pengar? Då bør du skriva det ned:', - 'no_transactions_create_withdrawal' => 'Opprett ein utgift', - 'no_transactions_title_deposit' => 'La oss legga inn nokon inntekter!', - 'no_transactions_intro_deposit' => 'Du har ingen registrert inntekt enda. Du kan legga inn inntekter for å begynne å administrere din økonomi.', - 'no_transactions_imperative_deposit' => 'Har du mottatt pengar? Da bør du skrive det ned:', - 'no_transactions_create_deposit' => 'Opprett eit innskot', - 'no_transactions_title_transfers' => 'La oss legga inn ein overføring!', - 'no_transactions_intro_transfers' => 'Du har ingen overføringar enda. Når du flyttar pengar mellom aktivakontoar, registreres dette som ei overføring.', - 'no_transactions_imperative_transfers' => 'Har du flyttet pengar rundt? Da bør du skrive det ned:', - 'no_transactions_create_transfers' => 'Opprett ein overføring', - 'no_piggies_title_default' => 'La oss laga ein sparegris!', - 'no_piggies_intro_default' => 'Du har ingen sparegriser enda. Du kan oppretta sparegriser for å forenkle sparing og halde oversikt over kva du sparar til.', - 'no_piggies_imperative_default' => 'Har du ting du sparar pengar til? Lag ein sparegris for å få kontroll på sparinga:', - 'no_piggies_create_default' => 'Lag ein ny sparegris', - 'no_bills_title_default' => 'La oss legga inn ein rekning!', - 'no_bills_intro_default' => 'Du har ingen rekningar enda. Du kan oppretta rekningar for å halde oversikt over vanlige utgifter, som husleie eller forsikringer.', - 'no_bills_imperative_default' => 'Har du rekningar som kjem regelmessig? Opprett ei rekning og for å halde styr betalingane dine:', - 'no_bills_create_default' => 'Opprett ein rekning', + 'no_accounts_title_asset' => 'La oss oppretta ein aktivakonto!', + 'no_accounts_intro_asset' => 'Du har ingen aktivakontoar enda. Aktivakontoar er hovedkontoane dine: brukskonto, sparekonto, delt konto eller til og med kredittkortet ditt.', + 'no_accounts_imperative_asset' => 'For å begynne å bruka Firefly III må du oppretta minst ein aktivakonto. La oss gjera det no:', + 'no_accounts_create_asset' => 'Opprett ein aktivakonto', + 'no_accounts_title_expense' => 'La oss laga ein utgiftskonto!', + 'no_accounts_intro_expense' => 'Du har ingen utgiftskonto enda. Utgiftskontoar er dei stadane du brukar pengar, for eksempel butikkar og supermarked.', + 'no_accounts_imperative_expense' => 'Utgiftskontoar vert oppretta automatisk når du opprettar transaksjonar, men du kan og oppretta dei manuelt om du vil. La oss laga ein no:', + 'no_accounts_create_expense' => 'Opprett ein utgiftskonto', + 'no_accounts_title_revenue' => 'La oss oppretta ein inntektskonto!', + 'no_accounts_intro_revenue' => 'Du har ingen inntektskonto enda. Inntektskontoar er dei stadane du mottek pengar frå, for eksempel arbeidsgjevaren din.', + 'no_accounts_imperative_revenue' => 'Inntektsskontoar vert oppretta automatisk når du opprettar transaksjonar, men du kan og oppretta dei manuelt om du vil. La oss laga ein no:', + 'no_accounts_create_revenue' => 'Opprett ein inntektskonto', + 'no_accounts_title_liabilities' => 'La oss laga eit lån!', + 'no_accounts_intro_liabilities' => 'Du har ikkje gjeld enda. "Gjeldskonto" er kontoar som du registrerar ditt (studie) lån og andre formar for gjeld på.', + 'no_accounts_imperative_liabilities' => 'Du behøver ikkje bruka denne funksjonen, men den kan vera fornuftig å bruka når du vil ha kontroll på desse tingene.', + 'no_accounts_create_liabilities' => 'Opprett gjeld', + 'no_budgets_title_default' => 'La oss laga eit budsjett', + 'no_rules_title_default' => 'La oss laga ein regel', + 'no_budgets_intro_default' => 'Du har ingen budsjett enda. Budsjett brukes til å organisere utgiftane i logiske grupper, som du kan definera tak på for å begrense utgiftane dine.', + 'no_rules_intro_default' => 'Du har ingen reglar enda. Regler er kraftfulle automatiseringer som kan håndtere transaksjonar for deg.', + 'no_rules_imperative_default' => 'Regler kan vera veldig nyttige når du håndterer transaksjonar. La oss laga ein no:', + 'no_budgets_imperative_default' => 'Budsjett er eit basis verktøy for finansiell administrasjon. La oss laga eit no:', + 'no_budgets_create_default' => 'Opprett eit budsjett', + 'no_rules_create_default' => 'Opprett ein regel', + 'no_categories_title_default' => 'La oss laga ein kategori!', + 'no_categories_intro_default' => 'Du har ingen kategoriar enda. Kategorier brukes til å finjustere dine transaksjonar og merke dei med sin eigen kategori.', + 'no_categories_imperative_default' => 'Kategorier opprettes automatisk når du oppretter transaksjonar, men du kan oppretta ein manuelt òg. La oss oppretta ein no:', + 'no_categories_create_default' => 'Opprett ein kategori', + 'no_tags_title_default' => 'La oss laga eit nøkkelord!', + 'no_tags_intro_default' => 'Du har ingen nøkkelord enda. Nøkkelord vert benytta til å finjustera transaksjonar og merka dei med spesifikke ord.', + 'no_tags_imperative_default' => 'Nøkkelord vert oppretta automatisk når du lagar transaksjonar, men du kan òg laga dei manuelt. La oss laga eit no:', + 'no_tags_create_default' => 'Opprett nøkkelord', + 'no_transactions_title_withdrawal' => 'La oss laga ein utgift!', + 'no_transactions_intro_withdrawal' => 'Du har ingen utgifter enda. Du kan legga inn utgifter for å begynne å administrere din økonomi.', + 'no_transactions_imperative_withdrawal' => 'Har du brukt pengar? Då bør du skriva det ned:', + 'no_transactions_create_withdrawal' => 'Opprett ein utgift', + 'no_transactions_title_deposit' => 'La oss legga inn nokon inntekter!', + 'no_transactions_intro_deposit' => 'Du har ingen registrert inntekt enda. Du kan legga inn inntekter for å begynne å administrere din økonomi.', + 'no_transactions_imperative_deposit' => 'Har du mottatt pengar? Da bør du skrive det ned:', + 'no_transactions_create_deposit' => 'Opprett eit innskot', + 'no_transactions_title_transfers' => 'La oss legga inn ein overføring!', + 'no_transactions_intro_transfers' => 'Du har ingen overføringar enda. Når du flyttar pengar mellom aktivakontoar, registreres dette som ei overføring.', + 'no_transactions_imperative_transfers' => 'Har du flyttet pengar rundt? Da bør du skrive det ned:', + 'no_transactions_create_transfers' => 'Opprett ein overføring', + 'no_piggies_title_default' => 'La oss laga ein sparegris!', + 'no_piggies_intro_default' => 'Du har ingen sparegriser enda. Du kan oppretta sparegriser for å forenkle sparing og halde oversikt over kva du sparar til.', + 'no_piggies_imperative_default' => 'Har du ting du sparar pengar til? Lag ein sparegris for å få kontroll på sparinga:', + 'no_piggies_create_default' => 'Lag ein ny sparegris', + 'no_bills_title_default' => 'La oss legga inn ein rekning!', + 'no_bills_intro_default' => 'Du har ingen rekningar enda. Du kan oppretta rekningar for å halde oversikt over vanlige utgifter, som husleie eller forsikringer.', + 'no_bills_imperative_default' => 'Har du rekningar som kjem regelmessig? Opprett ei rekning og for å halde styr betalingane dine:', + 'no_bills_create_default' => 'Opprett ein rekning', // recurring transactions - 'create_right_now' => 'Opprett med ein gang', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Gjentakande transaksjonar', - 'repeat_until_in_past' => 'Denne gjentakande transaksjonen slutta å gjenta :date.', - 'recurring_calendar_view' => 'Kalender', - 'no_recurring_title_default' => 'La oss oppretta ein gjentakande transaksjon!', - 'no_recurring_intro_default' => 'Du har ingen gjentakande transaksjonar enda. Du kan bruka desse for å få Firefly III til å automatisk oppretta transaksjonar for deg.', - 'no_recurring_imperative_default' => 'Dette er ein ganske avansert funksjon, men den kan vera svært nyttig. Husk å lesa dokumentasjonen (?)-ikonet øvst til høgre) før du fortset.', - 'no_recurring_create_default' => 'Opprett ein gjentakande transaksjon', - 'make_new_recurring' => 'Opprett ein gjentakande transaksjon', - 'recurring_daily' => 'Dagleg', - 'recurring_weekly' => 'Kvar veke på :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Kvar månad på :dayOfMonth :weekday', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Kvar månad på :dayOfMonth :weekday', - 'recurring_yearly' => 'Kvart år den :date', - 'overview_for_recurrence' => 'Oversikt for gjentakande transaksjon ":title"', - 'warning_duplicates_repetitions' => 'I sjeldne tilfeller datoane vist to gonger i lista. Dette kan skje når fleire gjentakingar kolliderer. Firefly III genererer alltid ein transaksjon per dag.', - 'created_transactions' => 'Relaterte transaksjonar', - 'expected_withdrawals' => 'Forventa uttak', - 'expected_deposits' => 'Forventa innskot', - 'expected_transfers' => 'Forventa overføringar', - 'created_withdrawals' => 'Opprettede uttak', - 'created_deposits' => 'Opprettede innskot', - 'created_transfers' => 'Opprettede overføringer', - 'recurring_info' => 'Gjentakande transaksjon :count / :total', - 'created_from_recurrence' => 'Opprettet frå gjentakande transaksjon ":title" (#:id)', - 'recurring_never_cron' => 'Det kan sjå ut til at cron jobben som er nødvendig for å støtta gjentakande transaksjonar aldri har køyrt. Dette er sjølvsagt normalt når du nettopp har installert Firefly III, men dette bør settast opp så snart som mogleg. Sjekk ut hjelp-sidene ved å bruka (?) -ikonet øvst i høgre hjørne på sida.', - 'recurring_cron_long_ago' => 'Det ser ut som det har gått meir enn 36 timer sida cron jobben for å støtta gjentakande transaksjonar har køyrt. Er du sikker på at den er satt opp rett? Sjekk ut hjelpe-sidene ved å bruka (?) -ikonet øvst i høgre hjørne på sida.', + 'create_right_now' => 'Opprett med ein gang', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Gjentakande transaksjonar', + 'repeat_until_in_past' => 'Denne gjentakande transaksjonen slutta å gjenta :date.', + 'recurring_calendar_view' => 'Kalender', + 'no_recurring_title_default' => 'La oss oppretta ein gjentakande transaksjon!', + 'no_recurring_intro_default' => 'Du har ingen gjentakande transaksjonar enda. Du kan bruka desse for å få Firefly III til å automatisk oppretta transaksjonar for deg.', + 'no_recurring_imperative_default' => 'Dette er ein ganske avansert funksjon, men den kan vera svært nyttig. Husk å lesa dokumentasjonen (?)-ikonet øvst til høgre) før du fortset.', + 'no_recurring_create_default' => 'Opprett ein gjentakande transaksjon', + 'make_new_recurring' => 'Opprett ein gjentakande transaksjon', + 'recurring_daily' => 'Dagleg', + 'recurring_weekly' => 'Kvar veke på :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Kvar månad på :dayOfMonth :weekday', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Kvar månad på :dayOfMonth :weekday', + 'recurring_yearly' => 'Kvart år den :date', + 'overview_for_recurrence' => 'Oversikt for gjentakande transaksjon ":title"', + 'warning_duplicates_repetitions' => 'I sjeldne tilfeller datoane vist to gonger i lista. Dette kan skje når fleire gjentakingar kolliderer. Firefly III genererer alltid ein transaksjon per dag.', + 'created_transactions' => 'Relaterte transaksjonar', + 'expected_withdrawals' => 'Forventa uttak', + 'expected_deposits' => 'Forventa innskot', + 'expected_transfers' => 'Forventa overføringar', + 'created_withdrawals' => 'Opprettede uttak', + 'created_deposits' => 'Opprettede innskot', + 'created_transfers' => 'Opprettede overføringer', + 'recurring_info' => 'Gjentakande transaksjon :count / :total', + 'created_from_recurrence' => 'Opprettet frå gjentakande transaksjon ":title" (#:id)', + 'recurring_never_cron' => 'Det kan sjå ut til at cron jobben som er nødvendig for å støtta gjentakande transaksjonar aldri har køyrt. Dette er sjølvsagt normalt når du nettopp har installert Firefly III, men dette bør settast opp så snart som mogleg. Sjekk ut hjelp-sidene ved å bruka (?) -ikonet øvst i høgre hjørne på sida.', + 'recurring_cron_long_ago' => 'Det ser ut som det har gått meir enn 36 timer sida cron jobben for å støtta gjentakande transaksjonar har køyrt. Er du sikker på at den er satt opp rett? Sjekk ut hjelpe-sidene ved å bruka (?) -ikonet øvst i høgre hjørne på sida.', - 'create_new_recurrence' => 'Lag ny gjentakande transaksjon', - 'help_first_date' => 'Spesifiser den første forventa gjentakinga. Den må vera i framtida.', - 'help_first_date_no_past' => 'Spesifiser den første forventa gjentakinga. Firefly III vil ikkje oppretta transaksjonar i fortida.', - 'no_currency' => '(ingen valuta)', - 'mandatory_for_recurring' => 'Pålagt gjentakelses informasjon', - 'mandatory_for_transaction' => 'Pålagt transaksjons informasjon', - 'optional_for_recurring' => 'Valgfritt gjentakelses informasjon', - 'optional_for_transaction' => 'Valgfritt transaksjons informasjon', - 'change_date_other_options' => 'Ved å endra på "første dato" får du fleire val.', - 'mandatory_fields_for_tranaction' => 'Verdiane her vil enda opp i transaksjonen(ane) som vert oppretta', - 'click_for_calendar' => 'Trykk her for å få ein kalender som visar deg når transaksjonen vil gjenta seg.', - 'repeat_forever' => 'Gjenta for alltid', - 'repeat_until_date' => 'Gjenta til dato', - 'repeat_times' => 'Gjenta antal gonger', - 'recurring_skips_one' => 'Annankvar', - 'recurring_skips_more' => 'Hopper over :count forekomster', - 'store_new_recurrence' => 'Lagra gjentakande transaksjon', - 'stored_new_recurrence' => 'Gjentakande transaksjon ":title" lagra.', - 'edit_recurrence' => 'Rediger gjentakande transaksjon ":title"', - 'recurring_repeats_until' => 'Gjenta til :date', - 'recurring_repeats_forever' => 'Gjenta for alltid', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Oppdater gjentakande transaksjon', - 'updated_recurrence' => 'Oppdatert gjentakande transaksjon ":title"', - 'recurrence_is_inactive' => 'Denne gjentakande transaksjonen er ikkje aktiv og vil ikkje generera nye transaksjonar.', - 'delete_recurring' => 'Slett gjentakande transaksjon ":title"', - 'new_recurring_transaction' => 'Opprett gjentakande transaksjon', - 'help_weekend' => 'Kva skal Firefly III gjera når gjentakande transaksjon fell på ein Laurdag eller Søndag?', - 'do_nothing' => 'Berre opprett transaksjonen', - 'skip_transaction' => 'Hopp over forekomsten', - 'jump_to_friday' => 'Opprett transaksjonen på foregående Fredag i staden', - 'jump_to_monday' => 'Opprett transaksjonen på neste Måndag i staden', - 'will_jump_friday' => 'Opprettes på Fredag i staden for i helgane.', - 'will_jump_monday' => 'Opprettes på Måndag i staden for i helgane.', - 'except_weekends' => 'Unntatt helger', - 'recurrence_deleted' => 'Gjentakande transaksjon ":title" sletta', + 'create_new_recurrence' => 'Lag ny gjentakande transaksjon', + 'help_first_date' => 'Spesifiser den første forventa gjentakinga. Den må vera i framtida.', + 'help_first_date_no_past' => 'Spesifiser den første forventa gjentakinga. Firefly III vil ikkje oppretta transaksjonar i fortida.', + 'no_currency' => '(ingen valuta)', + 'mandatory_for_recurring' => 'Pålagt gjentakelses informasjon', + 'mandatory_for_transaction' => 'Pålagt transaksjons informasjon', + 'optional_for_recurring' => 'Valgfritt gjentakelses informasjon', + 'optional_for_transaction' => 'Valgfritt transaksjons informasjon', + 'change_date_other_options' => 'Ved å endra på "første dato" får du fleire val.', + 'mandatory_fields_for_tranaction' => 'Verdiane her vil enda opp i transaksjonen(ane) som vert oppretta', + 'click_for_calendar' => 'Trykk her for å få ein kalender som visar deg når transaksjonen vil gjenta seg.', + 'repeat_forever' => 'Gjenta for alltid', + 'repeat_until_date' => 'Gjenta til dato', + 'repeat_times' => 'Gjenta antal gonger', + 'recurring_skips_one' => 'Annankvar', + 'recurring_skips_more' => 'Hopper over :count forekomster', + 'store_new_recurrence' => 'Lagra gjentakande transaksjon', + 'stored_new_recurrence' => 'Gjentakande transaksjon ":title" lagra.', + 'edit_recurrence' => 'Rediger gjentakande transaksjon ":title"', + 'recurring_repeats_until' => 'Gjenta til :date', + 'recurring_repeats_forever' => 'Gjenta for alltid', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Oppdater gjentakande transaksjon', + 'updated_recurrence' => 'Oppdatert gjentakande transaksjon ":title"', + 'recurrence_is_inactive' => 'Denne gjentakande transaksjonen er ikkje aktiv og vil ikkje generera nye transaksjonar.', + 'delete_recurring' => 'Slett gjentakande transaksjon ":title"', + 'new_recurring_transaction' => 'Opprett gjentakande transaksjon', + 'help_weekend' => 'Kva skal Firefly III gjera når gjentakande transaksjon fell på ein Laurdag eller Søndag?', + 'do_nothing' => 'Berre opprett transaksjonen', + 'skip_transaction' => 'Hopp over forekomsten', + 'jump_to_friday' => 'Opprett transaksjonen på foregående Fredag i staden', + 'jump_to_monday' => 'Opprett transaksjonen på neste Måndag i staden', + 'will_jump_friday' => 'Opprettes på Fredag i staden for i helgane.', + 'will_jump_monday' => 'Opprettes på Måndag i staden for i helgane.', + 'except_weekends' => 'Unntatt helger', + 'recurrence_deleted' => 'Gjentakande transaksjon ":title" sletta', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balanse i (:currency)', - 'box_spent_in_currency' => 'Brukt (:currency)', - 'box_earned_in_currency' => 'Opptjent (:currency)', - 'box_budgeted_in_currency' => 'Budsjettert (:currency)', - 'box_bill_paid_in_currency' => 'Betalte faktura (:currency)', - 'box_bill_unpaid_in_currency' => 'Ubetalte faktura (:currency)', - 'box_left_to_spend_in_currency' => 'Att å bruka (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Att å bruka per dag: :amount', + 'box_balance_in_currency' => 'Balanse i (:currency)', + 'box_spent_in_currency' => 'Brukt (:currency)', + 'box_earned_in_currency' => 'Opptjent (:currency)', + 'box_budgeted_in_currency' => 'Budsjettert (:currency)', + 'box_bill_paid_in_currency' => 'Betalte faktura (:currency)', + 'box_bill_unpaid_in_currency' => 'Ubetalte faktura (:currency)', + 'box_left_to_spend_in_currency' => 'Att å bruka (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Att å bruka per dag: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Grupper', - 'object_groups_page_title' => 'Grupper', - 'object_groups_breadcrumb' => 'Grupper', - 'object_groups_index' => 'Oversikt', - 'object_groups' => 'Grupper', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Tittel', - 'edit_object_group' => 'Rediger gruppa «:title»', - 'delete_object_group' => 'Slett gruppa «:title»', - 'update_object_group' => 'Oppdater gruppe', - 'updated_object_group' => 'Gruppa «:title» vart oppdatert', - 'deleted_object_group' => 'Gruppa «:title» vart sletta', - 'object_group' => 'Gruppe', + 'object_groups_menu_bar' => 'Grupper', + 'object_groups_page_title' => 'Grupper', + 'object_groups_breadcrumb' => 'Grupper', + 'object_groups_index' => 'Oversikt', + 'object_groups' => 'Grupper', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Tittel', + 'edit_object_group' => 'Rediger gruppa «:title»', + 'delete_object_group' => 'Slett gruppa «:title»', + 'update_object_group' => 'Oppdater gruppe', + 'updated_object_group' => 'Gruppa «:title» vart oppdatert', + 'deleted_object_group' => 'Gruppa «:title» vart sletta', + 'object_group' => 'Gruppe', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'La til :amount i sparegrisen «:name»', - 'ale_action_log_remove' => 'Fjerna :amount frå sparegrisen «:name»', - 'ale_action_clear_budget' => 'Fjerna frå budsjett', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Fjerna fra kategori', - 'ale_action_clear_notes' => 'Fjerna notat', - 'ale_action_clear_tag' => 'Fjerna nøkkelord', - 'ale_action_clear_all_tags' => 'Fjerna alle nøkkelord', - 'ale_action_set_bill' => 'Kopla til rekning', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Sett budsjett', - 'ale_action_set_category' => 'Sett kategori', - 'ale_action_set_source' => 'Sett kjeldekonto', - 'ale_action_set_destination' => 'Sett målkonto', - 'ale_action_update_transaction_type' => 'Endra transaksjonstype', - 'ale_action_update_notes' => 'Endra notat', - 'ale_action_update_description' => 'Endra beskriving', - 'ale_action_add_to_piggy' => 'Sparegris', - 'ale_action_remove_from_piggy' => 'Sparegris', - 'ale_action_add_tag' => 'La til nøkkelord', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'La til :amount i sparegrisen «:name»', + 'ale_action_log_remove' => 'Fjerna :amount frå sparegrisen «:name»', + 'ale_action_clear_budget' => 'Fjerna frå budsjett', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Fjerna fra kategori', + 'ale_action_clear_notes' => 'Fjerna notat', + 'ale_action_clear_tag' => 'Fjerna nøkkelord', + 'ale_action_clear_all_tags' => 'Fjerna alle nøkkelord', + 'ale_action_set_bill' => 'Kopla til rekning', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Sett budsjett', + 'ale_action_set_category' => 'Sett kategori', + 'ale_action_set_source' => 'Sett kjeldekonto', + 'ale_action_set_destination' => 'Sett målkonto', + 'ale_action_update_transaction_type' => 'Endra transaksjonstype', + 'ale_action_update_notes' => 'Endra notat', + 'ale_action_update_description' => 'Endra beskriving', + 'ale_action_add_to_piggy' => 'Sparegris', + 'ale_action_remove_from_piggy' => 'Sparegris', + 'ale_action_add_tag' => 'La til nøkkelord', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/nn_NO/validation.php b/resources/lang/nn_NO/validation.php index 22637b25f2..13e82ead3b 100644 --- a/resources/lang/nn_NO/validation.php +++ b/resources/lang/nn_NO/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Du har ikkje rettigheter til denne handlinga.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/pl_PL/firefly.php b/resources/lang/pl_PL/firefly.php index b9873c12ea..c8679dafb6 100644 --- a/resources/lang/pl_PL/firefly.php +++ b/resources/lang/pl_PL/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Zamknij', - 'actions' => 'Akcje', - 'edit' => 'Modyfikuj', - 'delete' => 'Usuń', - 'split' => 'Podziel', - 'single_split' => 'Podział', - 'clone' => 'Sklonuj', - 'clone_and_edit' => 'Sklonuj i modyfikuj', - 'confirm_action' => 'Potwierdź akcję', - 'last_seven_days' => 'Ostatnie 7 dni', - 'last_thirty_days' => 'Ostanie 30 dni', - 'last_180_days' => 'Ostatnie 180 dni', - 'month_to_date' => 'Miesiąc do daty', - 'year_to_date' => 'Rok do daty', - 'YTD' => 'Od początku roku', - 'welcome_back' => 'Co jest grane?', - 'everything' => 'Wszystko', - 'today' => 'dzisiaj', - 'customRange' => 'Niestandardowy zakres', - 'date_range' => 'Zakres dat', - 'apply' => 'Zastosuj', - 'select_date' => 'Wybierz datę...', - 'cancel' => 'Anuluj', - 'from' => 'Z', - 'to' => 'Do', - 'structure' => 'Struktura', - 'help_translating' => 'Tekst pomocy nie jest jeszcze dostępny po polsku. Może chcesz pomóc w tłumaczeniu?', - 'showEverything' => 'Pokaż wszystko', - 'never' => 'Nigdy', - 'no_results_for_empty_search' => 'Twoje zapytanie były puste, wiec nic nie zostało znalezione.', - 'removed_amount' => 'Usunięto :amount', - 'added_amount' => 'Dodano :amount', - 'asset_account_role_help' => 'Dodatkowe opcje wynikające z Twojego wyboru można ustawić później.', - 'Opening balance' => 'Bilans otwarcia', - 'create_new_stuff' => 'Utwórz nowe rzeczy', - 'new_withdrawal' => 'Nowa wypłata', - 'create_new_transaction' => 'Stwórz nową transakcję', - 'sidebar_frontpage_create' => 'Utwórz', - 'new_transaction' => 'Nowa transakcja', - 'no_rules_for_bill' => 'Ten rachunek nie ma przypisanych do niego reguł.', - 'go_to_asset_accounts' => 'Zobacz swoje konta aktywów', - 'go_to_budgets' => 'Przejdź do swoich budżetów', - 'go_to_withdrawals' => 'Przejdź do swoich wydatków', - 'clones_journal_x' => 'Ta transakcja jest sklonowana z transakcji ":description" (#:id)', - 'go_to_categories' => 'Przejdź do swoich kategorii', - 'go_to_bills' => 'Przejdź do swoich rachunków', - 'go_to_expense_accounts' => 'Zobacz swoje konta wydatków', - 'go_to_revenue_accounts' => 'Zobacz swoje konta przychodów', - 'go_to_piggies' => 'Przejdź do swoich skarbonek', - 'new_deposit' => 'Nowa wpłata', - 'new_transfer' => 'Nowy transfer', - 'new_transfers' => 'Nowy transfer', - 'new_asset_account' => 'Nowe konto aktywów', - 'new_expense_account' => 'Nowe konto wydatków', - 'new_revenue_account' => 'Nowe konto przychodów', - 'new_liabilities_account' => 'Nowe zobowiązanie', - 'new_budget' => 'Nowy budżet', - 'new_bill' => 'Nowy rachunek', - 'block_account_logout' => 'Zostałeś wylogowany. Zablokowane konta nie mogą korzystać z tej strony. Czy zarejestrowałeś się z prawidłowym adresem e-mail?', - 'flash_success' => 'Sukces!', - 'flash_info' => 'Komunikat', - 'flash_warning' => 'Ostrzeżenie!', - 'flash_error' => 'Błąd!', - 'flash_danger' => 'Uwaga!', - 'flash_info_multiple' => 'Jest jedna wiadomość|Jest :count wiadomości', - 'flash_error_multiple' => 'Jest jeden błąd|Jest :count błędów', - 'net_worth' => 'Wartość netto', - 'help_for_this_page' => 'Pomoc dla tej strony', - 'help_for_this_page_body' => 'Więcej informacji o tej stronie możesz znaleźć w dokumentacji.', - 'two_factor_welcome' => 'Cześć!', - 'two_factor_enter_code' => 'Aby kontynuować, wprowadź kod uwierzytelniania dwuskładnikowego. Twoja aplikacja może wygenerować go dla Ciebie.', - 'two_factor_code_here' => 'Wprowadź tutaj kod', - 'two_factor_title' => 'Weryfikacja dwuskładnikowa', - 'authenticate' => 'Uwierzytelnij', - 'two_factor_forgot_title' => 'Utracone uwierzytelnianie dwuskładnikowe', - 'two_factor_forgot' => 'Zapomniałem mojego uwierzytelnienia dwuskładnikowego.', - 'two_factor_lost_header' => 'Straciłeś uwierzytelnianie dwuskładnikowe?', - 'two_factor_lost_intro' => 'Jeżeli także nie masz kodów, to niestety nie masz szczęścia. To nie jest coś, co możemy naprawić z poziomu przeglądarki. Masz dwie opcje.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'W przeciwnym razie, powiadom właściciela strony, :site_owner i poproś go o zresetowanie Twojego uwierzytelnienia dwuskładnikowego.', - 'mfa_backup_code' => 'Użyłeś kodu zapasowego do zalogowania się do Firefly III. Nie możesz go użyć ponownie, więc wykreśl go z listy.', - 'pref_two_factor_new_backup_codes' => 'Wygeneruj nowe kody zapasowe', - 'pref_two_factor_backup_code_count' => 'Masz :count poprawny kod zapasowy.|Masz :count poprawnych kodów zapasowych.', - '2fa_i_have_them' => 'Kody zapisane!', - 'warning_much_data' => 'Załadowanie danych z :days dni może trochę potrwać.', - 'registered' => 'Zarejestrowałeś się pomyślnie!', - 'Default asset account' => 'Domyślne konto aktywów', - 'no_budget_pointer' => 'Wygląda na to, że nie masz jeszcze budżetów. Powinieneś utworzyć kilka na stronie budżetów. Budżety mogą Ci pomóc śledzić wydatki.', - 'no_bill_pointer' => 'Wygląda na to, że nie masz jeszcze rachunków. Powinieneś utworzyć kilka na stronie rachunków. Rachunki mogą Ci pomóc śledzić wydatki.', - 'Savings account' => 'Konto oszczędnościowe', - 'Credit card' => 'Karta kredytowa', - 'source_accounts' => 'Konto źródłowe | Konta źródłowe', - 'destination_accounts' => 'Konto docelowe|Konta docelowe', - 'user_id_is' => 'Twój identyfikator użytkownika to :user', - 'field_supports_markdown' => 'To pole obsługuje Markdown.', - 'need_more_help' => 'Jeśli potrzebujesz dodatkowej pomocy w korzystaniu z Firefly III, proszę opisz go w zgłoszeniu na Githubie.', - 'reenable_intro_text' => 'Możesz także ponownie włączyć samouczek.', - 'intro_boxes_after_refresh' => 'Samouczek pojawi się po odświeżeniu strony.', - 'show_all_no_filter' => 'Pokaż wszystkie transakcje bez grupowania ich według daty.', - 'expenses_by_category' => 'Wydatki wg kategorii', - 'expenses_by_budget' => 'Wydatki wg budżetu', - 'income_by_category' => 'Dochody wg kategorii', - 'expenses_by_asset_account' => 'Wydatki wg kont aktywów', - 'expenses_by_expense_account' => 'Wydatki wg kont wydatków', - 'cannot_redirect_to_account' => 'Firefly III nie może Cię przekierować na właściwą stronę. Przepraszamy.', - 'sum_of_expenses' => 'Suma wydatków', - 'sum_of_income' => 'Suma dochodów', - 'liabilities' => 'Zobowiązania', - 'spent_in_specific_budget' => 'Wydatki w budżecie ":budget"', - 'spent_in_specific_double' => 'Wydano z kont(a) ":account"', - 'earned_in_specific_double' => 'Zarobiono na konto(a) ":account"', - 'source_account' => 'Konto źródłowe', - 'source_account_reconciliation' => 'Nie możesz edytować konta źródłowego transakcji uzgadniania.', - 'destination_account' => 'Konto docelowe', - 'destination_account_reconciliation' => 'Nie możesz edytować konta docelowego transakcji uzgadniania.', - 'sum_of_expenses_in_budget' => 'Wydano łącznie w budżecie ":budget"', - 'left_in_budget_limit' => 'Możliwe do wydania wg budżetu', - 'current_period' => 'Bieżący okres', - 'show_the_current_period_and_overview' => 'Pokaż bieżący okres oraz przegląd', - 'pref_languages_locale' => 'Aby język inny niż angielski działał poprawnie, twój system operacyjny musi być wyposażony w odpowiednie informacje o lokalizacji. Jeśli nie są one obecne, dane walutowe, daty i kwoty mogą być źle sformatowane.', - 'budget_in_period' => 'Wszystkie transakcje dla budżetu ":name" od :start do :end w :currency', - 'chart_budget_in_period' => 'Wykres wszystkich transakcji dla budżetu ":name" od :start do :end w :currency', - 'chart_budget_in_period_only_currency' => 'Kwota zaplanowanego budżetu była w :currency, więc ten wykres pokaże transakcje tylko w :currency.', - 'chart_account_in_period' => 'Wykres wszystkich transakcji dla konta ":name" (:balance) od :start do :end', - 'chart_category_in_period' => 'Wykres wszystkich transakcji dla kategorii ":name" od :start do :end', - 'chart_category_all' => 'Wykres wszystkich transakcji dla kategorii ":name"', - 'clone_withdrawal' => 'Zduplikuj tę wypłatę', - 'clone_deposit' => 'Zduplikuj tą wpłatę', - 'clone_transfer' => 'Zduplikuj ten transfer', - 'multi_select_no_selection' => 'Nie wybrano', - 'multi_select_select_all' => 'Zaznacz wszystkie', - 'multi_select_n_selected' => 'wybrane', - 'multi_select_all_selected' => 'Wybrano wszystko', - 'multi_select_filter_placeholder' => 'Znajdź...', - 'intro_next_label' => 'Dalej', - 'intro_prev_label' => 'Wstecz', - 'intro_skip_label' => 'Pomiń', - 'intro_done_label' => 'Gotowe', - 'between_dates_breadcrumb' => 'Pomiędzy :start a :end', - 'all_journals_without_budget' => 'Wszystkie transakcje bez budżetu', - 'journals_without_budget' => 'Transakcje bez budżetu', - 'all_journals_without_category' => 'Wszystkie transakcje bez kategorii', - 'journals_without_category' => 'Transakcje bez kategorii', - 'all_journals_for_account' => 'Wszystkie transakcje dla konta :name', - 'chart_all_journals_for_account' => 'Wykres wszystkich transakcji dla konta :name', - 'journals_in_period_for_account' => 'Wszystkie transakcje dla konta :name od :start do :end', - 'journals_in_period_for_account_js' => 'Wszystkie transakcje dla konta {title} od {start} do {end}', - 'transferred' => 'Przesłano', - 'all_withdrawal' => 'Wszystkie wydatki', - 'all_transactions' => 'Wszystkie transakcje', - 'title_withdrawal_between' => 'Wszystkie wydatki do :start do :end', - 'all_deposit' => 'Wszystkie przychody', - 'title_deposit_between' => 'Wszystkie przychody do :start do :end', - 'all_transfers' => 'Wszystkie transfery', - 'title_transfers_between' => 'Wszystkie transfery od :start do :end', - 'all_transfer' => 'Wszystkie transfery', - 'all_journals_for_tag' => 'Wszystkie transakcje dla tagu ":tag"', - 'title_transfer_between' => 'Wszystkie transfery od :start do :end', - 'all_journals_for_category' => 'Wszystkie transakcje dla kategorii :name', - 'all_journals_for_budget' => 'Wszystkie transakcje dla budżetu :name', - 'chart_all_journals_for_budget' => 'Wykres wszystkich transakcji dla budżetu :name', - 'journals_in_period_for_category' => 'Wszystkie transakcje dla kategorii :name od :start do :end', - 'journals_in_period_for_tag' => 'Wszystkie transakcje dla tagu :tag od :start do :end', - 'not_available_demo_user' => 'Funkcja, do której próbujesz uzyskać dostęp nie jest dostępna dla użytkowników demo.', - 'exchange_rate_instructions' => 'Konto aktywów "@name" obsługuje tylko transakcje w walucie @native_currency. Jeśli chcesz użyć waluty @foreign_currency, upewnij się, że kwota w @native_currency jest również znana:', - 'transfer_exchange_rate_instructions' => 'Konto źródłowe "@source_name" obsługuje tylko transakcje w walucie @source_currency. Konto docelowe "@dest_name" obsługuje tylko transakcje w walucie @dest_currency. Musisz podać przelewaną kwotę w obu walutach.', - 'transaction_data' => 'Dane transakcji', - 'invalid_server_configuration' => 'Nieprawidłowa konfiguracja serwera', - 'invalid_locale_settings' => 'Firefly III nie może sformatować kwot pieniężnych, ponieważ na Twoim serwerze brakuje wymaganych pakietów. Sprawdź instrukcje jak je zainstalować (po angielsku).', - 'quickswitch' => 'Szybki przełącznik', - 'sign_in_to_start' => 'Zaloguj się, aby rozpocząć sesję', - 'sign_in' => 'Zaloguj', - 'register_new_account' => 'Zarejestruj nowe konto', - 'forgot_my_password' => 'Nie pamiętam hasła', - 'problems_with_input' => 'Wystąpił problem z wprowadzonymi danymi.', - 'reset_password' => 'Zresetuj swoje hasło', - 'button_reset_password' => 'Zresetuj hasło', - 'reset_button' => 'Zresetuj', - 'want_to_login' => 'Chcę się zalogować', - 'login_page_title' => 'Zaloguj się do Firefly III', - 'register_page_title' => 'Zarejestruj się w Firefly III', - 'forgot_pw_page_title' => 'Nie pamiętam hasła do Firefly III', - 'reset_pw_page_title' => 'Resetowanie hasła do Firefly III', - 'cannot_reset_demo_user' => 'Nie można zresetować hasła dla użytkownika demonstracyjnego.', - 'no_att_demo_user' => 'Użytkownik demonstracyjny nie może przesyłać załączników.', - 'button_register' => 'Zarejestruj', - 'authorization' => 'Autoryzacja', - 'active_bills_only' => 'tylko aktywne rachunki', - 'active_bills_only_total' => 'wszystkie aktywne rachunki', - 'active_exp_bills_only' => 'tylko aktywne i oczekiwane rachunki', - 'active_exp_bills_only_total' => 'tylko aktywne i oczekiwane rachunki', - 'per_period_sum_1D' => 'Oczekiwane koszty dzienne', - 'per_period_sum_1W' => 'Oczekiwane koszty tygodniowe', - 'per_period_sum_1M' => 'Przewidywane koszty miesięczne', - 'per_period_sum_3M' => 'Oczekiwane koszty kwartalne', - 'per_period_sum_6M' => 'Oczekiwane koszty półroczne', - 'per_period_sum_1Y' => 'Oczekiwane koszty roczne', - 'average_per_bill' => 'średnia za rachunek', - 'expected_total' => 'oczekiwana suma', - 'reconciliation_account_name' => 'Uzgadnianie :name (:currency)', - 'saved' => 'Zapisano', - 'advanced_options' => 'Opcje zaawansowane', - 'advanced_options_explain' => 'Niektóre strony w Firefly III mają zaawansowane opcje ukryte pod tym przyciskiem. Ta strona niestety nie ma nic, ale sprawdź inne!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Zamknij', + 'actions' => 'Akcje', + 'edit' => 'Modyfikuj', + 'delete' => 'Usuń', + 'split' => 'Podziel', + 'single_split' => 'Podział', + 'clone' => 'Sklonuj', + 'clone_and_edit' => 'Sklonuj i modyfikuj', + 'confirm_action' => 'Potwierdź akcję', + 'last_seven_days' => 'Ostatnie 7 dni', + 'last_thirty_days' => 'Ostanie 30 dni', + 'last_180_days' => 'Ostatnie 180 dni', + 'month_to_date' => 'Miesiąc do daty', + 'year_to_date' => 'Rok do daty', + 'YTD' => 'Od początku roku', + 'welcome_back' => 'Co jest grane?', + 'everything' => 'Wszystko', + 'today' => 'dzisiaj', + 'customRange' => 'Niestandardowy zakres', + 'date_range' => 'Zakres dat', + 'apply' => 'Zastosuj', + 'select_date' => 'Wybierz datę...', + 'cancel' => 'Anuluj', + 'from' => 'Z', + 'to' => 'Do', + 'structure' => 'Struktura', + 'help_translating' => 'Tekst pomocy nie jest jeszcze dostępny po polsku. Może chcesz pomóc w tłumaczeniu?', + 'showEverything' => 'Pokaż wszystko', + 'never' => 'Nigdy', + 'no_results_for_empty_search' => 'Twoje zapytanie były puste, wiec nic nie zostało znalezione.', + 'removed_amount' => 'Usunięto :amount', + 'added_amount' => 'Dodano :amount', + 'asset_account_role_help' => 'Dodatkowe opcje wynikające z Twojego wyboru można ustawić później.', + 'Opening balance' => 'Bilans otwarcia', + 'create_new_stuff' => 'Utwórz nowe rzeczy', + 'new_withdrawal' => 'Nowa wypłata', + 'create_new_transaction' => 'Stwórz nową transakcję', + 'sidebar_frontpage_create' => 'Utwórz', + 'new_transaction' => 'Nowa transakcja', + 'no_rules_for_bill' => 'Ten rachunek nie ma przypisanych do niego reguł.', + 'go_to_asset_accounts' => 'Zobacz swoje konta aktywów', + 'go_to_budgets' => 'Przejdź do swoich budżetów', + 'go_to_withdrawals' => 'Przejdź do swoich wydatków', + 'clones_journal_x' => 'Ta transakcja jest sklonowana z transakcji ":description" (#:id)', + 'go_to_categories' => 'Przejdź do swoich kategorii', + 'go_to_bills' => 'Przejdź do swoich rachunków', + 'go_to_expense_accounts' => 'Zobacz swoje konta wydatków', + 'go_to_revenue_accounts' => 'Zobacz swoje konta przychodów', + 'go_to_piggies' => 'Przejdź do swoich skarbonek', + 'new_deposit' => 'Nowa wpłata', + 'new_transfer' => 'Nowy transfer', + 'new_transfers' => 'Nowy transfer', + 'new_asset_account' => 'Nowe konto aktywów', + 'new_expense_account' => 'Nowe konto wydatków', + 'new_revenue_account' => 'Nowe konto przychodów', + 'new_liabilities_account' => 'Nowe zobowiązanie', + 'new_budget' => 'Nowy budżet', + 'new_bill' => 'Nowy rachunek', + 'block_account_logout' => 'Zostałeś wylogowany. Zablokowane konta nie mogą korzystać z tej strony. Czy zarejestrowałeś się z prawidłowym adresem e-mail?', + 'flash_success' => 'Sukces!', + 'flash_info' => 'Komunikat', + 'flash_warning' => 'Ostrzeżenie!', + 'flash_error' => 'Błąd!', + 'flash_danger' => 'Uwaga!', + 'flash_info_multiple' => 'Jest jedna wiadomość|Jest :count wiadomości', + 'flash_error_multiple' => 'Jest jeden błąd|Jest :count błędów', + 'net_worth' => 'Wartość netto', + 'help_for_this_page' => 'Pomoc dla tej strony', + 'help_for_this_page_body' => 'Więcej informacji o tej stronie możesz znaleźć w dokumentacji.', + 'two_factor_welcome' => 'Cześć!', + 'two_factor_enter_code' => 'Aby kontynuować, wprowadź kod uwierzytelniania dwuskładnikowego. Twoja aplikacja może wygenerować go dla Ciebie.', + 'two_factor_code_here' => 'Wprowadź tutaj kod', + 'two_factor_title' => 'Weryfikacja dwuskładnikowa', + 'authenticate' => 'Uwierzytelnij', + 'two_factor_forgot_title' => 'Utracone uwierzytelnianie dwuskładnikowe', + 'two_factor_forgot' => 'Zapomniałem mojego uwierzytelnienia dwuskładnikowego.', + 'two_factor_lost_header' => 'Straciłeś uwierzytelnianie dwuskładnikowe?', + 'two_factor_lost_intro' => 'Jeżeli także nie masz kodów, to niestety nie masz szczęścia. To nie jest coś, co możemy naprawić z poziomu przeglądarki. Masz dwie opcje.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'W przeciwnym razie, powiadom właściciela strony, :site_owner i poproś go o zresetowanie Twojego uwierzytelnienia dwuskładnikowego.', + 'mfa_backup_code' => 'Użyłeś kodu zapasowego do zalogowania się do Firefly III. Nie możesz go użyć ponownie, więc wykreśl go z listy.', + 'pref_two_factor_new_backup_codes' => 'Wygeneruj nowe kody zapasowe', + 'pref_two_factor_backup_code_count' => 'Masz :count poprawny kod zapasowy.|Masz :count poprawnych kodów zapasowych.', + '2fa_i_have_them' => 'Kody zapisane!', + 'warning_much_data' => 'Załadowanie danych z :days dni może trochę potrwać.', + 'registered' => 'Zarejestrowałeś się pomyślnie!', + 'Default asset account' => 'Domyślne konto aktywów', + 'no_budget_pointer' => 'Wygląda na to, że nie masz jeszcze budżetów. Powinieneś utworzyć kilka na stronie budżetów. Budżety mogą Ci pomóc śledzić wydatki.', + 'no_bill_pointer' => 'Wygląda na to, że nie masz jeszcze rachunków. Powinieneś utworzyć kilka na stronie rachunków. Rachunki mogą Ci pomóc śledzić wydatki.', + 'Savings account' => 'Konto oszczędnościowe', + 'Credit card' => 'Karta kredytowa', + 'source_accounts' => 'Konto źródłowe | Konta źródłowe', + 'destination_accounts' => 'Konto docelowe|Konta docelowe', + 'user_id_is' => 'Twój identyfikator użytkownika to :user', + 'field_supports_markdown' => 'To pole obsługuje Markdown.', + 'need_more_help' => 'Jeśli potrzebujesz dodatkowej pomocy w korzystaniu z Firefly III, proszę opisz go w zgłoszeniu na Githubie.', + 'reenable_intro_text' => 'Możesz także ponownie włączyć samouczek.', + 'intro_boxes_after_refresh' => 'Samouczek pojawi się po odświeżeniu strony.', + 'show_all_no_filter' => 'Pokaż wszystkie transakcje bez grupowania ich według daty.', + 'expenses_by_category' => 'Wydatki wg kategorii', + 'expenses_by_budget' => 'Wydatki wg budżetu', + 'income_by_category' => 'Dochody wg kategorii', + 'expenses_by_asset_account' => 'Wydatki wg kont aktywów', + 'expenses_by_expense_account' => 'Wydatki wg kont wydatków', + 'cannot_redirect_to_account' => 'Firefly III nie może Cię przekierować na właściwą stronę. Przepraszamy.', + 'sum_of_expenses' => 'Suma wydatków', + 'sum_of_income' => 'Suma dochodów', + 'liabilities' => 'Zobowiązania', + 'spent_in_specific_budget' => 'Wydatki w budżecie ":budget"', + 'spent_in_specific_double' => 'Wydano z kont(a) ":account"', + 'earned_in_specific_double' => 'Zarobiono na konto(a) ":account"', + 'source_account' => 'Konto źródłowe', + 'source_account_reconciliation' => 'Nie możesz edytować konta źródłowego transakcji uzgadniania.', + 'destination_account' => 'Konto docelowe', + 'destination_account_reconciliation' => 'Nie możesz edytować konta docelowego transakcji uzgadniania.', + 'sum_of_expenses_in_budget' => 'Wydano łącznie w budżecie ":budget"', + 'left_in_budget_limit' => 'Możliwe do wydania wg budżetu', + 'current_period' => 'Bieżący okres', + 'show_the_current_period_and_overview' => 'Pokaż bieżący okres oraz przegląd', + 'pref_languages_locale' => 'Aby język inny niż angielski działał poprawnie, twój system operacyjny musi być wyposażony w odpowiednie informacje o lokalizacji. Jeśli nie są one obecne, dane walutowe, daty i kwoty mogą być źle sformatowane.', + 'budget_in_period' => 'Wszystkie transakcje dla budżetu ":name" od :start do :end w :currency', + 'chart_budget_in_period' => 'Wykres wszystkich transakcji dla budżetu ":name" od :start do :end w :currency', + 'chart_budget_in_period_only_currency' => 'Kwota zaplanowanego budżetu była w :currency, więc ten wykres pokaże transakcje tylko w :currency.', + 'chart_account_in_period' => 'Wykres wszystkich transakcji dla konta ":name" (:balance) od :start do :end', + 'chart_category_in_period' => 'Wykres wszystkich transakcji dla kategorii ":name" od :start do :end', + 'chart_category_all' => 'Wykres wszystkich transakcji dla kategorii ":name"', + 'clone_withdrawal' => 'Zduplikuj tę wypłatę', + 'clone_deposit' => 'Zduplikuj tą wpłatę', + 'clone_transfer' => 'Zduplikuj ten transfer', + 'multi_select_no_selection' => 'Nie wybrano', + 'multi_select_select_all' => 'Zaznacz wszystkie', + 'multi_select_n_selected' => 'wybrane', + 'multi_select_all_selected' => 'Wybrano wszystko', + 'multi_select_filter_placeholder' => 'Znajdź...', + 'intro_next_label' => 'Dalej', + 'intro_prev_label' => 'Wstecz', + 'intro_skip_label' => 'Pomiń', + 'intro_done_label' => 'Gotowe', + 'between_dates_breadcrumb' => 'Pomiędzy :start a :end', + 'all_journals_without_budget' => 'Wszystkie transakcje bez budżetu', + 'journals_without_budget' => 'Transakcje bez budżetu', + 'all_journals_without_category' => 'Wszystkie transakcje bez kategorii', + 'journals_without_category' => 'Transakcje bez kategorii', + 'all_journals_for_account' => 'Wszystkie transakcje dla konta :name', + 'chart_all_journals_for_account' => 'Wykres wszystkich transakcji dla konta :name', + 'journals_in_period_for_account' => 'Wszystkie transakcje dla konta :name od :start do :end', + 'journals_in_period_for_account_js' => 'Wszystkie transakcje dla konta {title} od {start} do {end}', + 'transferred' => 'Przesłano', + 'all_withdrawal' => 'Wszystkie wydatki', + 'all_transactions' => 'Wszystkie transakcje', + 'title_withdrawal_between' => 'Wszystkie wydatki do :start do :end', + 'all_deposit' => 'Wszystkie przychody', + 'title_deposit_between' => 'Wszystkie przychody do :start do :end', + 'all_transfers' => 'Wszystkie transfery', + 'title_transfers_between' => 'Wszystkie transfery od :start do :end', + 'all_transfer' => 'Wszystkie transfery', + 'all_journals_for_tag' => 'Wszystkie transakcje dla tagu ":tag"', + 'title_transfer_between' => 'Wszystkie transfery od :start do :end', + 'all_journals_for_category' => 'Wszystkie transakcje dla kategorii :name', + 'all_journals_for_budget' => 'Wszystkie transakcje dla budżetu :name', + 'chart_all_journals_for_budget' => 'Wykres wszystkich transakcji dla budżetu :name', + 'journals_in_period_for_category' => 'Wszystkie transakcje dla kategorii :name od :start do :end', + 'journals_in_period_for_tag' => 'Wszystkie transakcje dla tagu :tag od :start do :end', + 'not_available_demo_user' => 'Funkcja, do której próbujesz uzyskać dostęp nie jest dostępna dla użytkowników demo.', + 'exchange_rate_instructions' => 'Konto aktywów "@name" obsługuje tylko transakcje w walucie @native_currency. Jeśli chcesz użyć waluty @foreign_currency, upewnij się, że kwota w @native_currency jest również znana:', + 'transfer_exchange_rate_instructions' => 'Konto źródłowe "@source_name" obsługuje tylko transakcje w walucie @source_currency. Konto docelowe "@dest_name" obsługuje tylko transakcje w walucie @dest_currency. Musisz podać przelewaną kwotę w obu walutach.', + 'transaction_data' => 'Dane transakcji', + 'invalid_server_configuration' => 'Nieprawidłowa konfiguracja serwera', + 'invalid_locale_settings' => 'Firefly III nie może sformatować kwot pieniężnych, ponieważ na Twoim serwerze brakuje wymaganych pakietów. Sprawdź instrukcje jak je zainstalować (po angielsku).', + 'quickswitch' => 'Szybki przełącznik', + 'sign_in_to_start' => 'Zaloguj się, aby rozpocząć sesję', + 'sign_in' => 'Zaloguj', + 'register_new_account' => 'Zarejestruj nowe konto', + 'forgot_my_password' => 'Nie pamiętam hasła', + 'problems_with_input' => 'Wystąpił problem z wprowadzonymi danymi.', + 'reset_password' => 'Zresetuj swoje hasło', + 'button_reset_password' => 'Zresetuj hasło', + 'reset_button' => 'Zresetuj', + 'want_to_login' => 'Chcę się zalogować', + 'login_page_title' => 'Zaloguj się do Firefly III', + 'register_page_title' => 'Zarejestruj się w Firefly III', + 'forgot_pw_page_title' => 'Nie pamiętam hasła do Firefly III', + 'reset_pw_page_title' => 'Resetowanie hasła do Firefly III', + 'cannot_reset_demo_user' => 'Nie można zresetować hasła dla użytkownika demonstracyjnego.', + 'no_att_demo_user' => 'Użytkownik demonstracyjny nie może przesyłać załączników.', + 'button_register' => 'Zarejestruj', + 'authorization' => 'Autoryzacja', + 'active_bills_only' => 'tylko aktywne rachunki', + 'active_bills_only_total' => 'wszystkie aktywne rachunki', + 'active_exp_bills_only' => 'tylko aktywne i oczekiwane rachunki', + 'active_exp_bills_only_total' => 'tylko aktywne i oczekiwane rachunki', + 'per_period_sum_1D' => 'Oczekiwane koszty dzienne', + 'per_period_sum_1W' => 'Oczekiwane koszty tygodniowe', + 'per_period_sum_1M' => 'Przewidywane koszty miesięczne', + 'per_period_sum_3M' => 'Oczekiwane koszty kwartalne', + 'per_period_sum_6M' => 'Oczekiwane koszty półroczne', + 'per_period_sum_1Y' => 'Oczekiwane koszty roczne', + 'average_per_bill' => 'średnia za rachunek', + 'expected_total' => 'oczekiwana suma', + 'reconciliation_account_name' => 'Uzgadnianie :name (:currency)', + 'saved' => 'Zapisano', + 'advanced_options' => 'Opcje zaawansowane', + 'advanced_options_explain' => 'Niektóre strony w Firefly III mają zaawansowane opcje ukryte pod tym przyciskiem. Ta strona niestety nie ma nic, ale sprawdź inne!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooki', - 'webhooks_breadcrumb' => 'Webhooki', - 'webhooks_menu_disabled' => 'wyłączone', - 'no_webhook_messages' => 'Brak wiadomości webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Po utworzeniu transakcji', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Po zmodyfikowaniu transakcji', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Po usunięciu transakcji', - 'webhook_response_TRANSACTIONS' => 'Szczegóły transakcji', - 'webhook_response_ACCOUNTS' => 'Szczegóły konta', - 'webhook_response_none_NONE' => 'Brak szczegółów', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Zbadaj', - 'create_new_webhook' => 'Utwórz nowy webhook', - 'webhooks_create_breadcrumb' => 'Utwórz nowy webhook', - 'webhook_trigger_form_help' => 'Wskaż zdarzenie do wyzwolenia webhook\'a', - 'webhook_response_form_help' => 'Wskaż, co webhook musi przesłać do adresu URL.', - 'webhook_delivery_form_help' => 'W jakim formacie webhook musi dostarczać dane.', - 'webhook_active_form_help' => 'Webhook musi być aktywny lub nie zostanie wywołany.', - 'stored_new_webhook' => 'Zapisano nowy webhook ":title"', - 'delete_webhook' => 'Usuń webhook', - 'deleted_webhook' => 'Usunięto webhook ":title"', - 'edit_webhook' => 'Edytuj webhook ":title"', - 'updated_webhook' => 'Zaktualizowano webhook ":title"', - 'edit_webhook_js' => 'Edytuj webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Webhook został uruchomiony na wskazanej transakcji. Poczekaj na wyniki.', - 'webhook_messages' => 'Wiadomość webhook\'a', - 'view_message' => 'Podgląd wiadomości', - 'view_attempts' => 'Podgląd nieudanych prób', - 'message_content_title' => 'Treść wiadomości webhook\'a', - 'message_content_help' => 'To jest zawartość wiadomości, która została wysłana (lub próbowano wysłać) za pomocą tego webhooka.', - 'attempt_content_title' => 'Próby dostępu do webhook', - 'attempt_content_help' => 'To są wszystkie nieudane próby przesłania tej wiadomości webhooka do skonfigurowanego adresu URL. Po pewnym czasie Firefly III przestanie próbować.', - 'no_attempts' => 'Nie ma nieudanych prób. To dobrze!', - 'webhook_attempt_at' => 'Próba o {moment}', - 'logs' => 'Logi', - 'response' => 'Odpowiedź', - 'visit_webhook_url' => 'Odwiedź adres URL webhooka', - 'reset_webhook_secret' => 'Resetuj sekret webhooka', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") został zapisany.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") został zaktualizowany.', + 'webhooks' => 'Webhooki', + 'webhooks_breadcrumb' => 'Webhooki', + 'webhooks_menu_disabled' => 'wyłączone', + 'no_webhook_messages' => 'Brak wiadomości webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Po utworzeniu transakcji', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Po zmodyfikowaniu transakcji', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Po usunięciu transakcji', + 'webhook_response_TRANSACTIONS' => 'Szczegóły transakcji', + 'webhook_response_ACCOUNTS' => 'Szczegóły konta', + 'webhook_response_none_NONE' => 'Brak szczegółów', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Zbadaj', + 'create_new_webhook' => 'Utwórz nowy webhook', + 'webhooks_create_breadcrumb' => 'Utwórz nowy webhook', + 'webhook_trigger_form_help' => 'Wskaż zdarzenie do wyzwolenia webhook\'a', + 'webhook_response_form_help' => 'Wskaż, co webhook musi przesłać do adresu URL.', + 'webhook_delivery_form_help' => 'W jakim formacie webhook musi dostarczać dane.', + 'webhook_active_form_help' => 'Webhook musi być aktywny lub nie zostanie wywołany.', + 'stored_new_webhook' => 'Zapisano nowy webhook ":title"', + 'delete_webhook' => 'Usuń webhook', + 'deleted_webhook' => 'Usunięto webhook ":title"', + 'edit_webhook' => 'Edytuj webhook ":title"', + 'updated_webhook' => 'Zaktualizowano webhook ":title"', + 'edit_webhook_js' => 'Edytuj webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Webhook został uruchomiony na wskazanej transakcji. Poczekaj na wyniki.', + 'webhook_messages' => 'Wiadomość webhook\'a', + 'view_message' => 'Podgląd wiadomości', + 'view_attempts' => 'Podgląd nieudanych prób', + 'message_content_title' => 'Treść wiadomości webhook\'a', + 'message_content_help' => 'To jest zawartość wiadomości, która została wysłana (lub próbowano wysłać) za pomocą tego webhooka.', + 'attempt_content_title' => 'Próby dostępu do webhook', + 'attempt_content_help' => 'To są wszystkie nieudane próby przesłania tej wiadomości webhooka do skonfigurowanego adresu URL. Po pewnym czasie Firefly III przestanie próbować.', + 'no_attempts' => 'Nie ma nieudanych prób. To dobrze!', + 'webhook_attempt_at' => 'Próba o {moment}', + 'logs' => 'Logi', + 'response' => 'Odpowiedź', + 'visit_webhook_url' => 'Odwiedź adres URL webhooka', + 'reset_webhook_secret' => 'Resetuj sekret webhooka', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") został zapisany.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") został zaktualizowany.', // API access - 'authorization_request' => 'Żądanie autoryzacji Firefly III v:version', - 'authorization_request_intro' => 'Aplikacja :client prosi o pozwolenie na dostęp do Twojej administracji finansowej. Czy chcesz pozwolić :client na dostęp do tych danych?', - 'authorization_request_site' => 'Zostaniesz przekierowany do :url, który będzie mógł uzyskać dostęp do danych Firefly III.', - 'authorization_request_invalid' => 'Ta prośba o dostęp jest nieprawidłowa. Proszę nigdy więcej nie klikaj tego linku.', - 'scopes_will_be_able' => 'Ta aplikacja będzie mogła:', - 'button_authorize' => 'Autoryzuj', - 'none_in_select_list' => '(żadne)', - 'no_piggy_bank' => '(brak skarbonki)', - 'name_in_currency' => ':name w :currency', - 'paid_in_currency' => 'Zapłacone w :currency', - 'unpaid_in_currency' => 'Niezapłacone w :currency', - 'is_alpha_warning' => 'Używasz wersji ALPHA. Uważaj na błędy i problemy.', - 'is_beta_warning' => 'Używasz wersji BETA. Uważaj na błędy i problemy.', - 'all_destination_accounts' => 'Konta docelowe', - 'all_source_accounts' => 'Konta źródłowe', - 'back_to_index' => 'Wróć do indeksu', - 'cant_logout_guard' => 'Firefly III nie może cię wylogować.', - 'internal_reference' => 'Wewnętrzny nr referencyjny', + 'authorization_request' => 'Żądanie autoryzacji Firefly III v:version', + 'authorization_request_intro' => 'Aplikacja :client prosi o pozwolenie na dostęp do Twojej administracji finansowej. Czy chcesz pozwolić :client na dostęp do tych danych?', + 'authorization_request_site' => 'Zostaniesz przekierowany do :url, który będzie mógł uzyskać dostęp do danych Firefly III.', + 'authorization_request_invalid' => 'Ta prośba o dostęp jest nieprawidłowa. Proszę nigdy więcej nie klikaj tego linku.', + 'scopes_will_be_able' => 'Ta aplikacja będzie mogła:', + 'button_authorize' => 'Autoryzuj', + 'none_in_select_list' => '(żadne)', + 'no_piggy_bank' => '(brak skarbonki)', + 'name_in_currency' => ':name w :currency', + 'paid_in_currency' => 'Zapłacone w :currency', + 'unpaid_in_currency' => 'Niezapłacone w :currency', + 'is_alpha_warning' => 'Używasz wersji ALPHA. Uważaj na błędy i problemy.', + 'is_beta_warning' => 'Używasz wersji BETA. Uważaj na błędy i problemy.', + 'all_destination_accounts' => 'Konta docelowe', + 'all_source_accounts' => 'Konta źródłowe', + 'back_to_index' => 'Wróć do indeksu', + 'cant_logout_guard' => 'Firefly III nie może cię wylogować.', + 'internal_reference' => 'Wewnętrzny nr referencyjny', // check for updates: - 'update_check_title' => 'Sprawdź aktualizacje', - 'admin_update_check_title' => 'Automatycznie sprawdzaj dostępność aktualizacji', - 'admin_update_check_explain' => 'Firefly III może automatycznie sprawdzać dostępność aktualizacji. Po włączeniu tej opcji będzie kontaktować się z serwerem aktualizacji w celu sprawdzenia czy dostępna jest nowa wersja Firefly III. Jeżeli będzie, otrzymasz powiadomienie. Możesz przetestować to powiadomienie używając przycisku po prawej stronie. Wskaż proszę czy chcesz, aby Firefly III sprawdzało dostępność aktualizacji.', - 'check_for_updates_permission' => 'Firefly III może sprawdzić dostępność aktualizacji, ale potrzebuje Twojej zgody, aby to robić. Przejdź do administracji, aby określić, czy ta funkcja ma być włączona.', - 'updates_ask_me_later' => 'Zapytaj mnie później', - 'updates_do_not_check' => 'Nie sprawdzaj dostępności aktualizacji', - 'updates_enable_check' => 'Włącz sprawdzanie aktualizacji', - 'admin_update_check_now_title' => 'Sprawdź dostępność aktualizacji', - 'admin_update_check_now_explain' => 'Jeśli naciśniesz przycisk, Firefly III sprawdzi, czy używasz najnowszej wersji.', - 'check_for_updates_button' => 'Sprawdź teraz!', - 'update_new_version_alert' => 'Dostępna jest nowa wersja Firefly III. Używasz wersji :your_version, najnowsza wersja to :new_version wydana :date.', - 'update_version_beta' => 'Ta wersja jest wersją BETA. Możesz napotkać błędy.', - 'update_version_alpha' => 'Ta wersja jest wersją ALPHA. Możesz napotkać błędy.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Używasz wersji :version, która jest najnowszą dostępną wersją.', - 'update_newer_version_alert' => 'Używasz wersji :your_version, która jest nowsza niż najnowsza wersja, :new_version.', - 'update_check_error' => 'Wystąpił błąd podczas sprawdzania aktualizacji :error', - 'unknown_error' => 'Nieznany błąd. Przepraszamy za to.', - 'disabled_but_check' => 'Wyłączyłeś sprawdzanie aktualizacji. Więc nie zapomnij sprawdzać aktualizacji osobiście od czasu do czasu. Dziękujemy!', - 'admin_update_channel_title' => 'Kanał aktualizacji', - 'admin_update_channel_explain' => 'Firefly III posiada trzy "kanały", które decydują jak wczesnej pod względem funkcji, ulepszeń i błędów wersji używasz. Użyj kanału "beta", jeśli lubisz przygody i "alfa", gdy lubisz żyć niebezpiecznie.', - 'update_channel_stable' => 'Stabilne. Wszystko powinno działać zgodnie z oczekiwaniami.', - 'update_channel_beta' => 'Beta. Nowe funkcje, ale niektóre funkcje mogą nie działać poprawnie.', - 'update_channel_alpha' => 'Alfa. Rzucamy różne rzeczy i zostawiamy to, co się przyklei.', + 'update_check_title' => 'Sprawdź aktualizacje', + 'admin_update_check_title' => 'Automatycznie sprawdzaj dostępność aktualizacji', + 'admin_update_check_explain' => 'Firefly III może automatycznie sprawdzać dostępność aktualizacji. Po włączeniu tej opcji będzie kontaktować się z serwerem aktualizacji w celu sprawdzenia czy dostępna jest nowa wersja Firefly III. Jeżeli będzie, otrzymasz powiadomienie. Możesz przetestować to powiadomienie używając przycisku po prawej stronie. Wskaż proszę czy chcesz, aby Firefly III sprawdzało dostępność aktualizacji.', + 'check_for_updates_permission' => 'Firefly III może sprawdzić dostępność aktualizacji, ale potrzebuje Twojej zgody, aby to robić. Przejdź do administracji, aby określić, czy ta funkcja ma być włączona.', + 'updates_ask_me_later' => 'Zapytaj mnie później', + 'updates_do_not_check' => 'Nie sprawdzaj dostępności aktualizacji', + 'updates_enable_check' => 'Włącz sprawdzanie aktualizacji', + 'admin_update_check_now_title' => 'Sprawdź dostępność aktualizacji', + 'admin_update_check_now_explain' => 'Jeśli naciśniesz przycisk, Firefly III sprawdzi, czy używasz najnowszej wersji.', + 'check_for_updates_button' => 'Sprawdź teraz!', + 'update_new_version_alert' => 'Dostępna jest nowa wersja Firefly III. Używasz wersji :your_version, najnowsza wersja to :new_version wydana :date.', + 'update_version_beta' => 'Ta wersja jest wersją BETA. Możesz napotkać błędy.', + 'update_version_alpha' => 'Ta wersja jest wersją ALPHA. Możesz napotkać błędy.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Używasz wersji :version, która jest najnowszą dostępną wersją.', + 'update_newer_version_alert' => 'Używasz wersji :your_version, która jest nowsza niż najnowsza wersja, :new_version.', + 'update_check_error' => 'Wystąpił błąd podczas sprawdzania aktualizacji :error', + 'unknown_error' => 'Nieznany błąd. Przepraszamy za to.', + 'disabled_but_check' => 'Wyłączyłeś sprawdzanie aktualizacji. Więc nie zapomnij sprawdzać aktualizacji osobiście od czasu do czasu. Dziękujemy!', + 'admin_update_channel_title' => 'Kanał aktualizacji', + 'admin_update_channel_explain' => 'Firefly III posiada trzy "kanały", które decydują jak wczesnej pod względem funkcji, ulepszeń i błędów wersji używasz. Użyj kanału "beta", jeśli lubisz przygody i "alfa", gdy lubisz żyć niebezpiecznie.', + 'update_channel_stable' => 'Stabilne. Wszystko powinno działać zgodnie z oczekiwaniami.', + 'update_channel_beta' => 'Beta. Nowe funkcje, ale niektóre funkcje mogą nie działać poprawnie.', + 'update_channel_alpha' => 'Alfa. Rzucamy różne rzeczy i zostawiamy to, co się przyklei.', // search - 'search' => 'Szukaj', - 'search_query' => 'Zapytanie', - 'search_found_transactions' => 'Firefly III znalazł :count transakcję w :time sekund.|Firefly III znalazł :count transakcji w :time sekund.', - 'search_found_more_transactions' => 'Firefly III znalazł więcej niż :count transakcji w :time sekund.', - 'search_for_query' => 'Firefly III szuka transakcji zawierających wszystkie słowa: :query', - 'invalid_operators_list' => 'Te parametry wyszukiwania nie są prawidłowe i zostały zignorowane.', + 'search' => 'Szukaj', + 'search_query' => 'Zapytanie', + 'search_found_transactions' => 'Firefly III znalazł :count transakcję w :time sekund.|Firefly III znalazł :count transakcji w :time sekund.', + 'search_found_more_transactions' => 'Firefly III znalazł więcej niż :count transakcji w :time sekund.', + 'search_for_query' => 'Firefly III szuka transakcji zawierających wszystkie słowa: :query', + 'invalid_operators_list' => 'Te parametry wyszukiwania nie są prawidłowe i zostały zignorowane.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Data transakcji to ":value"', - 'search_modifier_not_date_on' => 'Data transakcji to nie ":value"', - 'search_modifier_reconciled' => 'Transakcja została uzgodniona', - 'search_modifier_not_reconciled' => 'Transakcja nie została uzgodniona', - 'search_modifier_id' => 'ID transakcji to ":value"', - 'search_modifier_not_id' => 'ID transakcji to nie ":value"', - 'search_modifier_date_before' => 'Data transakcji jest przed lub w ":value"', - 'search_modifier_date_after' => 'Data transakcji jest po lub w ":value"', - 'search_modifier_external_id_is' => 'Zewnętrzne ID to ":value"', - 'search_modifier_not_external_id_is' => 'Zewnętrzne ID to nie ":value"', - 'search_modifier_no_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', - 'search_modifier_no_external_id' => 'Transakcja nie ma zewnętrznego ID', - 'search_modifier_not_any_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', - 'search_modifier_not_any_external_id' => 'Transakcja nie ma zewnętrznego ID', - 'search_modifier_any_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL', - 'search_modifier_any_external_id' => 'Transakcja musi mieć (dowolny) zewnętrzny identyfikator', - 'search_modifier_not_no_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL', - 'search_modifier_not_no_external_id' => 'Transakcja musi mieć (dowolny) zewnętrzny identyfikator', - 'search_modifier_internal_reference_is' => 'Wewnętrzne odwołanie to ":value"', - 'search_modifier_not_internal_reference_is' => 'Wewnętrzne odwołanie to nie ":value"', - 'search_modifier_description_starts' => 'Opis zaczyna się od ":value"', - 'search_modifier_not_description_starts' => 'Opis nie zaczyna się od ":value"', - 'search_modifier_description_ends' => 'Opis kończy się na ":value"', - 'search_modifier_not_description_ends' => 'Opis nie kończy się na ":value"', - 'search_modifier_description_contains' => 'Opis zawiera ":value"', - 'search_modifier_not_description_contains' => 'Opis nie zawiera ":value"', - 'search_modifier_description_is' => 'Opis to ":value"', - 'search_modifier_not_description_is' => 'Opis nie jest dokładnie ":value"', - 'search_modifier_currency_is' => 'Waluta (obca) transakcji to ":value"', - 'search_modifier_not_currency_is' => 'Waluta (obca) transakcji to nie ":value"', - 'search_modifier_foreign_currency_is' => 'Waluta obca transakcji to ":value"', - 'search_modifier_not_foreign_currency_is' => 'Waluta obca transakcji to nie ":value"', - 'search_modifier_has_attachments' => 'Transakcja musi mieć załącznik', - 'search_modifier_has_no_category' => 'Transakcja nie może mieć kategorii', - 'search_modifier_not_has_no_category' => 'Transakcja musi mieć (dowolną) kategorię', - 'search_modifier_not_has_any_category' => 'Transakcja nie może mieć kategorii', - 'search_modifier_has_any_category' => 'Transakcja musi mieć (dowolną) kategorię', - 'search_modifier_has_no_budget' => 'Transakcja nie może mieć budżetu', - 'search_modifier_not_has_any_budget' => 'Transakcja nie może mieć budżetu', - 'search_modifier_has_any_budget' => 'Transakcja musi mieć (dowolny) budżet', - 'search_modifier_not_has_no_budget' => 'Transakcja musi mieć (dowolny) budżet', - 'search_modifier_has_no_bill' => 'Transakcja nie może mieć rachunku', - 'search_modifier_not_has_no_bill' => 'Transakcja musi mieć (dowolny) rachunek', - 'search_modifier_has_any_bill' => 'Transakcja musi mieć (dowolny) rachunek', - 'search_modifier_not_has_any_bill' => 'Transakcja nie może mieć rachunku', - 'search_modifier_has_no_tag' => 'Transakcja nie może mieć tagów', - 'search_modifier_not_has_any_tag' => 'Transakcja nie może mieć tagów', - 'search_modifier_not_has_no_tag' => 'Transakcja musi mieć (dowolny) tag', - 'search_modifier_has_any_tag' => 'Transakcja musi mieć (dowolny) tag', - 'search_modifier_notes_contains' => 'Notatki transakcji zawierają ":value"', - 'search_modifier_not_notes_contains' => 'Notatki transakcji nie zawierają ":value"', - 'search_modifier_notes_starts' => 'Notatki transakcji zaczynają się od ":value"', - 'search_modifier_not_notes_starts' => 'Notatki transakcji nie zaczynają się od ":value"', - 'search_modifier_notes_ends' => 'Notatki transakcji kończą się na ":value"', - 'search_modifier_not_notes_ends' => 'Notatki transakcji nie kończą się na ":value"', - 'search_modifier_notes_is' => 'Notatki transakcji to ":value"', - 'search_modifier_not_notes_is' => 'Notatki transakcji nie są dokładnie ":value"', - 'search_modifier_no_notes' => 'Transakcja nie ma notatek', - 'search_modifier_not_no_notes' => 'Transakcja musi zawierać notatki', - 'search_modifier_any_notes' => 'Transakcja musi zawierać notatki', - 'search_modifier_not_any_notes' => 'Transakcja nie ma notatek', - 'search_modifier_amount_is' => 'Kwota to dokładnie :value', - 'search_modifier_not_amount_is' => 'Kwota to nie :value', - 'search_modifier_amount_less' => 'Kwota jest mniejsza lub równa :value', - 'search_modifier_not_amount_more' => 'Kwota jest mniejsza lub równa :value', - 'search_modifier_amount_more' => 'Kwota jest większa lub równa :value', - 'search_modifier_not_amount_less' => 'Kwota jest większa lub równa :value', - 'search_modifier_source_account_is' => 'Konto źródłowe to ":value"', - 'search_modifier_not_source_account_is' => 'Nazwa konta źródłowego to ":value"', - 'search_modifier_source_account_contains' => 'Konto źródłowe zawiera ":value"', - 'search_modifier_not_source_account_contains' => 'Nazwa konta źródłowego nie zawiera ":value"', - 'search_modifier_source_account_starts' => 'Konto źródłowe zaczyna się od ":value"', - 'search_modifier_not_source_account_starts' => 'Nazwa konta źródłowego nie zaczyna się od ":value"', - 'search_modifier_source_account_ends' => 'Konto źródłowe kończy się na ":value"', - 'search_modifier_not_source_account_ends' => 'Nazwa konta źródłowego nie kończy się na ":value"', - 'search_modifier_source_account_id' => 'ID konta źródłowego to :value', - 'search_modifier_not_source_account_id' => 'ID konta źródłowego to nie :value', - 'search_modifier_source_account_nr_is' => 'Numer konta źródłowego (IBAN) to ":value"', - 'search_modifier_not_source_account_nr_is' => 'Numer konta źródłowego (IBAN) to nie ":value"', - 'search_modifier_source_account_nr_contains' => 'Numer konta źródłowego (IBAN) zawiera ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Numer konta źródłowego (IBAN) nie zawiera ":value"', - 'search_modifier_source_account_nr_starts' => 'Numer konta źródłowego (IBAN) zaczyna się od ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Numer konta źródłowego (IBAN) nie zaczyna się od ":value"', - 'search_modifier_source_account_nr_ends' => 'Numer konta źródłowego (IBAN) kończy się na ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Numer konta źródłowego (IBAN) nie kończy się na ":value"', - 'search_modifier_destination_account_is' => 'Nazwa konta docelowego to ":value"', - 'search_modifier_not_destination_account_is' => 'Nazwa konta docelowego to nie ":value"', - 'search_modifier_destination_account_contains' => 'Nazwa konta docelowego zawiera ":value"', - 'search_modifier_not_destination_account_contains' => 'Nazwa konta docelowego nie zawiera ":value"', - 'search_modifier_destination_account_starts' => 'Nazwa konta docelowego zaczyna się od ":value"', - 'search_modifier_not_destination_account_starts' => 'Nazwa konta docelowego nie zaczyna się od ":value"', - 'search_modifier_destination_account_ends' => 'Nazwa konta docelowego kończy się na ":value"', - 'search_modifier_not_destination_account_ends' => 'Nazwa konta docelowego nie kończy się na ":value"', - 'search_modifier_destination_account_id' => 'ID konta docelowego to :value', - 'search_modifier_not_destination_account_id' => 'ID konta docelowego to nie :value', - 'search_modifier_destination_is_cash' => 'Konto docelowe to konto "(gotówka)"', - 'search_modifier_not_destination_is_cash' => 'Konto docelowe nie jest kontem "(gotówka)"', - 'search_modifier_source_is_cash' => 'Konto źródłowe to konto "(gotówka)"', - 'search_modifier_not_source_is_cash' => 'Konto źródłowe to nie konto "(gotówka)"', - 'search_modifier_destination_account_nr_is' => 'Numer konta docelowego (IBAN) to ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Numer konta docelowego (IBAN) to ":value"', - 'search_modifier_destination_account_nr_contains' => 'Numer konta docelowego (IBAN) zawiera ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Numer konta docelowego (IBAN) nie zawiera ":value"', - 'search_modifier_destination_account_nr_starts' => 'Numer konta docelowego (IBAN) zaczyna się od ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Numer konta docelowego (IBAN) nie zaczyna się od ":value"', - 'search_modifier_destination_account_nr_ends' => 'Numer konta docelowego (IBAN) kończy się na ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Numer konta docelowego (IBAN) nie kończy się na ":value"', - 'search_modifier_account_id' => 'ID konta źródłowego lub docelowego to: :value', - 'search_modifier_not_account_id' => 'ID konta źródłowego lub docelowego to nie: :value', - 'search_modifier_category_is' => 'Kategoria to ":value"', - 'search_modifier_not_category_is' => 'Kategoria to nie ":value"', - 'search_modifier_budget_is' => 'Budżet to ":value"', - 'search_modifier_not_budget_is' => 'Budżet to nie ":value"', - 'search_modifier_bill_is' => 'Rachunek to ":value"', - 'search_modifier_not_bill_is' => 'Rachunek to nie ":value"', - 'search_modifier_transaction_type' => 'Transakcja jest typu ":value"', - 'search_modifier_not_transaction_type' => 'Typ transakcji to nie ":value"', - 'search_modifier_tag_is' => 'Tag to ":value"', - 'search_modifier_tag_contains' => 'Tag zawiera ":value"', - 'search_modifier_not_tag_contains' => 'Tag nie zawiera ":value"', - 'search_modifier_tag_ends' => 'Tag kończy się na ":value"', - 'search_modifier_tag_starts' => 'Tag zaczyna się od ":value"', - 'search_modifier_not_tag_is' => 'Tag nie jest ustawiony na ":value"', - 'search_modifier_date_on_year' => 'Transakcja jest w roku ":value"', - 'search_modifier_not_date_on_year' => 'Transakcja nie jest w roku ":value"', - 'search_modifier_date_on_month' => 'Transakcja jest w miesiącu ":value"', - 'search_modifier_not_date_on_month' => 'Transakcja nie jest w miesiącu ":value"', - 'search_modifier_date_on_day' => 'Transakcja jest w dniu miesiąca ":value"', - 'search_modifier_not_date_on_day' => 'Transakcja nie jest w dniu miesiąca ":value"', - 'search_modifier_date_before_year' => 'Transakcja jest przed lub w roku ":value"', - 'search_modifier_date_before_month' => 'Transakcja jest przed lub w miesiącu ":value"', - 'search_modifier_date_before_day' => 'Transakcja jest przed lub w dniu miesiąca ":value"', - 'search_modifier_date_after_year' => 'Transakcja jest w roku lub po roku ":value"', - 'search_modifier_date_after_month' => 'Transakcja jest w miesiącu lub po miesiącu ":value"', - 'search_modifier_date_after_day' => 'Transakcja jest po lub w dniu miesiąca ":value"', + 'search_modifier_date_on' => 'Data transakcji to ":value"', + 'search_modifier_not_date_on' => 'Data transakcji to nie ":value"', + 'search_modifier_reconciled' => 'Transakcja została uzgodniona', + 'search_modifier_not_reconciled' => 'Transakcja nie została uzgodniona', + 'search_modifier_id' => 'ID transakcji to ":value"', + 'search_modifier_not_id' => 'ID transakcji to nie ":value"', + 'search_modifier_date_before' => 'Data transakcji jest przed lub w ":value"', + 'search_modifier_date_after' => 'Data transakcji jest po lub w ":value"', + 'search_modifier_external_id_is' => 'Zewnętrzne ID to ":value"', + 'search_modifier_not_external_id_is' => 'Zewnętrzne ID to nie ":value"', + 'search_modifier_no_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', + 'search_modifier_no_external_id' => 'Transakcja nie ma zewnętrznego ID', + 'search_modifier_not_any_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', + 'search_modifier_not_any_external_id' => 'Transakcja nie ma zewnętrznego ID', + 'search_modifier_any_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL', + 'search_modifier_any_external_id' => 'Transakcja musi mieć (dowolny) zewnętrzny identyfikator', + 'search_modifier_not_no_external_url' => 'Transakcja musi mieć (dowolny) zewnętrzny adres URL', + 'search_modifier_not_no_external_id' => 'Transakcja musi mieć (dowolny) zewnętrzny identyfikator', + 'search_modifier_internal_reference_is' => 'Wewnętrzne odwołanie to ":value"', + 'search_modifier_not_internal_reference_is' => 'Wewnętrzne odwołanie to nie ":value"', + 'search_modifier_description_starts' => 'Opis zaczyna się od ":value"', + 'search_modifier_not_description_starts' => 'Opis nie zaczyna się od ":value"', + 'search_modifier_description_ends' => 'Opis kończy się na ":value"', + 'search_modifier_not_description_ends' => 'Opis nie kończy się na ":value"', + 'search_modifier_description_contains' => 'Opis zawiera ":value"', + 'search_modifier_not_description_contains' => 'Opis nie zawiera ":value"', + 'search_modifier_description_is' => 'Opis to ":value"', + 'search_modifier_not_description_is' => 'Opis nie jest dokładnie ":value"', + 'search_modifier_currency_is' => 'Waluta (obca) transakcji to ":value"', + 'search_modifier_not_currency_is' => 'Waluta (obca) transakcji to nie ":value"', + 'search_modifier_foreign_currency_is' => 'Waluta obca transakcji to ":value"', + 'search_modifier_not_foreign_currency_is' => 'Waluta obca transakcji to nie ":value"', + 'search_modifier_has_attachments' => 'Transakcja musi mieć załącznik', + 'search_modifier_has_no_category' => 'Transakcja nie może mieć kategorii', + 'search_modifier_not_has_no_category' => 'Transakcja musi mieć (dowolną) kategorię', + 'search_modifier_not_has_any_category' => 'Transakcja nie może mieć kategorii', + 'search_modifier_has_any_category' => 'Transakcja musi mieć (dowolną) kategorię', + 'search_modifier_has_no_budget' => 'Transakcja nie może mieć budżetu', + 'search_modifier_not_has_any_budget' => 'Transakcja nie może mieć budżetu', + 'search_modifier_has_any_budget' => 'Transakcja musi mieć (dowolny) budżet', + 'search_modifier_not_has_no_budget' => 'Transakcja musi mieć (dowolny) budżet', + 'search_modifier_has_no_bill' => 'Transakcja nie może mieć rachunku', + 'search_modifier_not_has_no_bill' => 'Transakcja musi mieć (dowolny) rachunek', + 'search_modifier_has_any_bill' => 'Transakcja musi mieć (dowolny) rachunek', + 'search_modifier_not_has_any_bill' => 'Transakcja nie może mieć rachunku', + 'search_modifier_has_no_tag' => 'Transakcja nie może mieć tagów', + 'search_modifier_not_has_any_tag' => 'Transakcja nie może mieć tagów', + 'search_modifier_not_has_no_tag' => 'Transakcja musi mieć (dowolny) tag', + 'search_modifier_has_any_tag' => 'Transakcja musi mieć (dowolny) tag', + 'search_modifier_notes_contains' => 'Notatki transakcji zawierają ":value"', + 'search_modifier_not_notes_contains' => 'Notatki transakcji nie zawierają ":value"', + 'search_modifier_notes_starts' => 'Notatki transakcji zaczynają się od ":value"', + 'search_modifier_not_notes_starts' => 'Notatki transakcji nie zaczynają się od ":value"', + 'search_modifier_notes_ends' => 'Notatki transakcji kończą się na ":value"', + 'search_modifier_not_notes_ends' => 'Notatki transakcji nie kończą się na ":value"', + 'search_modifier_notes_is' => 'Notatki transakcji to ":value"', + 'search_modifier_not_notes_is' => 'Notatki transakcji nie są dokładnie ":value"', + 'search_modifier_no_notes' => 'Transakcja nie ma notatek', + 'search_modifier_not_no_notes' => 'Transakcja musi zawierać notatki', + 'search_modifier_any_notes' => 'Transakcja musi zawierać notatki', + 'search_modifier_not_any_notes' => 'Transakcja nie ma notatek', + 'search_modifier_amount_is' => 'Kwota to dokładnie :value', + 'search_modifier_not_amount_is' => 'Kwota to nie :value', + 'search_modifier_amount_less' => 'Kwota jest mniejsza lub równa :value', + 'search_modifier_not_amount_more' => 'Kwota jest mniejsza lub równa :value', + 'search_modifier_amount_more' => 'Kwota jest większa lub równa :value', + 'search_modifier_not_amount_less' => 'Kwota jest większa lub równa :value', + 'search_modifier_source_account_is' => 'Konto źródłowe to ":value"', + 'search_modifier_not_source_account_is' => 'Nazwa konta źródłowego to ":value"', + 'search_modifier_source_account_contains' => 'Konto źródłowe zawiera ":value"', + 'search_modifier_not_source_account_contains' => 'Nazwa konta źródłowego nie zawiera ":value"', + 'search_modifier_source_account_starts' => 'Konto źródłowe zaczyna się od ":value"', + 'search_modifier_not_source_account_starts' => 'Nazwa konta źródłowego nie zaczyna się od ":value"', + 'search_modifier_source_account_ends' => 'Konto źródłowe kończy się na ":value"', + 'search_modifier_not_source_account_ends' => 'Nazwa konta źródłowego nie kończy się na ":value"', + 'search_modifier_source_account_id' => 'ID konta źródłowego to :value', + 'search_modifier_not_source_account_id' => 'ID konta źródłowego to nie :value', + 'search_modifier_source_account_nr_is' => 'Numer konta źródłowego (IBAN) to ":value"', + 'search_modifier_not_source_account_nr_is' => 'Numer konta źródłowego (IBAN) to nie ":value"', + 'search_modifier_source_account_nr_contains' => 'Numer konta źródłowego (IBAN) zawiera ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Numer konta źródłowego (IBAN) nie zawiera ":value"', + 'search_modifier_source_account_nr_starts' => 'Numer konta źródłowego (IBAN) zaczyna się od ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Numer konta źródłowego (IBAN) nie zaczyna się od ":value"', + 'search_modifier_source_account_nr_ends' => 'Numer konta źródłowego (IBAN) kończy się na ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Numer konta źródłowego (IBAN) nie kończy się na ":value"', + 'search_modifier_destination_account_is' => 'Nazwa konta docelowego to ":value"', + 'search_modifier_not_destination_account_is' => 'Nazwa konta docelowego to nie ":value"', + 'search_modifier_destination_account_contains' => 'Nazwa konta docelowego zawiera ":value"', + 'search_modifier_not_destination_account_contains' => 'Nazwa konta docelowego nie zawiera ":value"', + 'search_modifier_destination_account_starts' => 'Nazwa konta docelowego zaczyna się od ":value"', + 'search_modifier_not_destination_account_starts' => 'Nazwa konta docelowego nie zaczyna się od ":value"', + 'search_modifier_destination_account_ends' => 'Nazwa konta docelowego kończy się na ":value"', + 'search_modifier_not_destination_account_ends' => 'Nazwa konta docelowego nie kończy się na ":value"', + 'search_modifier_destination_account_id' => 'ID konta docelowego to :value', + 'search_modifier_not_destination_account_id' => 'ID konta docelowego to nie :value', + 'search_modifier_destination_is_cash' => 'Konto docelowe to konto "(gotówka)"', + 'search_modifier_not_destination_is_cash' => 'Konto docelowe nie jest kontem "(gotówka)"', + 'search_modifier_source_is_cash' => 'Konto źródłowe to konto "(gotówka)"', + 'search_modifier_not_source_is_cash' => 'Konto źródłowe to nie konto "(gotówka)"', + 'search_modifier_destination_account_nr_is' => 'Numer konta docelowego (IBAN) to ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Numer konta docelowego (IBAN) to ":value"', + 'search_modifier_destination_account_nr_contains' => 'Numer konta docelowego (IBAN) zawiera ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Numer konta docelowego (IBAN) nie zawiera ":value"', + 'search_modifier_destination_account_nr_starts' => 'Numer konta docelowego (IBAN) zaczyna się od ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Numer konta docelowego (IBAN) nie zaczyna się od ":value"', + 'search_modifier_destination_account_nr_ends' => 'Numer konta docelowego (IBAN) kończy się na ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Numer konta docelowego (IBAN) nie kończy się na ":value"', + 'search_modifier_account_id' => 'ID konta źródłowego lub docelowego to: :value', + 'search_modifier_not_account_id' => 'ID konta źródłowego lub docelowego to nie: :value', + 'search_modifier_category_is' => 'Kategoria to ":value"', + 'search_modifier_not_category_is' => 'Kategoria to nie ":value"', + 'search_modifier_budget_is' => 'Budżet to ":value"', + 'search_modifier_not_budget_is' => 'Budżet to nie ":value"', + 'search_modifier_bill_is' => 'Rachunek to ":value"', + 'search_modifier_not_bill_is' => 'Rachunek to nie ":value"', + 'search_modifier_transaction_type' => 'Transakcja jest typu ":value"', + 'search_modifier_not_transaction_type' => 'Typ transakcji to nie ":value"', + 'search_modifier_tag_is' => 'Tag to ":value"', + 'search_modifier_tag_contains' => 'Tag zawiera ":value"', + 'search_modifier_not_tag_contains' => 'Tag nie zawiera ":value"', + 'search_modifier_tag_ends' => 'Tag kończy się na ":value"', + 'search_modifier_tag_starts' => 'Tag zaczyna się od ":value"', + 'search_modifier_not_tag_is' => 'Tag nie jest ustawiony na ":value"', + 'search_modifier_date_on_year' => 'Transakcja jest w roku ":value"', + 'search_modifier_not_date_on_year' => 'Transakcja nie jest w roku ":value"', + 'search_modifier_date_on_month' => 'Transakcja jest w miesiącu ":value"', + 'search_modifier_not_date_on_month' => 'Transakcja nie jest w miesiącu ":value"', + 'search_modifier_date_on_day' => 'Transakcja jest w dniu miesiąca ":value"', + 'search_modifier_not_date_on_day' => 'Transakcja nie jest w dniu miesiąca ":value"', + 'search_modifier_date_before_year' => 'Transakcja jest przed lub w roku ":value"', + 'search_modifier_date_before_month' => 'Transakcja jest przed lub w miesiącu ":value"', + 'search_modifier_date_before_day' => 'Transakcja jest przed lub w dniu miesiąca ":value"', + 'search_modifier_date_after_year' => 'Transakcja jest w roku lub po roku ":value"', + 'search_modifier_date_after_month' => 'Transakcja jest w miesiącu lub po miesiącu ":value"', + 'search_modifier_date_after_day' => 'Transakcja jest po lub w dniu miesiąca ":value"', // new - 'search_modifier_tag_is_not' => 'Tag nie jest ustawiony na ":value"', - 'search_modifier_not_tag_is_not' => 'Tag to ":value"', - 'search_modifier_account_is' => 'Konto to ":value"', - 'search_modifier_not_account_is' => 'Żadne z kont nie jest ":value"', - 'search_modifier_account_contains' => 'Konto zawiera ":value"', - 'search_modifier_not_account_contains' => 'Żadne z kont nie zawiera ":value"', - 'search_modifier_account_ends' => 'Konto kończy się na ":value"', - 'search_modifier_not_account_ends' => 'Nazwa żadnego konta nie kończy się na ":value"', - 'search_modifier_account_starts' => 'Konto zaczyna się od ":value"', - 'search_modifier_not_account_starts' => 'Nazwa żadnego konta nie zaczyna się na ":value"', - 'search_modifier_account_nr_is' => 'Numer konta / IBAN to ":value"', - 'search_modifier_not_account_nr_is' => 'Żaden numer konta / IBAN nie jest ":value"', - 'search_modifier_account_nr_contains' => 'Numer konta / IBAN zawiera ":value"', - 'search_modifier_not_account_nr_contains' => 'Żaden numer konta / IBAN nie zawiera ":value"', - 'search_modifier_account_nr_ends' => 'Numer konta / IBAN kończy się na ":value"', - 'search_modifier_not_account_nr_ends' => 'Żaden numer konta / IBAN nie kończy się na ":value"', - 'search_modifier_account_nr_starts' => 'Numer konta / IBAN zaczyna się od ":value"', - 'search_modifier_not_account_nr_starts' => 'Żaden numer konta / IBAN nie zaczyna się na ":value"', - 'search_modifier_category_contains' => 'Kategoria zawiera ":value"', - 'search_modifier_not_category_contains' => 'Kategoria nie zawiera ":value"', - 'search_modifier_category_ends' => 'Kategoria kończy się na ":value"', - 'search_modifier_not_category_ends' => 'Kategoria nie kończy się na ":value"', - 'search_modifier_category_starts' => 'Kategoria zaczyna się od ":value"', - 'search_modifier_not_category_starts' => 'Kategoria zaczyna się na ":value"', - 'search_modifier_budget_contains' => 'Budżet zawiera ":value"', - 'search_modifier_not_budget_contains' => 'Budżet nie zawiera ":value"', - 'search_modifier_budget_ends' => 'Budżet kończy się na ":value"', - 'search_modifier_not_budget_ends' => 'Budżet nie kończy się na ":value"', - 'search_modifier_budget_starts' => 'Budżet zaczyna się od ":value"', - 'search_modifier_not_budget_starts' => 'Budżet nie zaczyna się od ":value"', - 'search_modifier_bill_contains' => 'Rachunek zawiera ":value"', - 'search_modifier_not_bill_contains' => 'Rachunek nie zawiera ":value"', - 'search_modifier_bill_ends' => 'Rachunek kończy się na ":value"', - 'search_modifier_not_bill_ends' => 'Rachunek nie kończy się na ":value"', - 'search_modifier_bill_starts' => 'Rachunek zaczyna się od ":value"', - 'search_modifier_not_bill_starts' => 'Rachunek nie zaczyna się od ":value"', - 'search_modifier_external_id_contains' => 'Zewnętrzne ID zawiera ":value"', - 'search_modifier_not_external_id_contains' => 'Zewnętrzne ID nie zawiera ":value"', - 'search_modifier_external_id_ends' => 'Zewnętrzne ID kończy się na ":value"', - 'search_modifier_not_external_id_ends' => 'Zewnętrzne ID nie kończy się na ":value"', - 'search_modifier_external_id_starts' => 'Zewnętrzne ID zaczyna się od ":value"', - 'search_modifier_not_external_id_starts' => 'Zewnętrzne ID nie zaczyna się od ":value"', - 'search_modifier_internal_reference_contains' => 'Wewnętrzne odwołanie zawiera ":value"', - 'search_modifier_not_internal_reference_contains' => 'Wewnętrzne odwołanie nie zawiera ":value"', - 'search_modifier_internal_reference_ends' => 'Wewnętrzne odwołanie kończy się na ":value"', - 'search_modifier_internal_reference_starts' => 'Wewnętrzne odniesienie zaczyna się od ":value"', - 'search_modifier_not_internal_reference_ends' => 'Wewnętrzne odwołanie nie kończy się na ":value"', - 'search_modifier_not_internal_reference_starts' => 'Wewnętrzne odwołanie nie zaczyna się od ":value"', - 'search_modifier_external_url_is' => 'Zewnętrzny adres URL to ":value"', - 'search_modifier_not_external_url_is' => 'Zewnętrzny adres URL to nie ":value"', - 'search_modifier_external_url_contains' => 'Zewnętrzny adres URL zawiera ":value"', - 'search_modifier_not_external_url_contains' => 'Zewnętrzny adres URL nie zawiera ":value"', - 'search_modifier_external_url_ends' => 'Zewnętrzny adres URL kończy się na ":value"', - 'search_modifier_not_external_url_ends' => 'Zewnętrzny adres URL nie kończy się na ":value"', - 'search_modifier_external_url_starts' => 'Zewnętrzny adres URL zaczyna się od ":value"', - 'search_modifier_not_external_url_starts' => 'Zewnętrzny adres URL nie zaczyna się od ":value"', - 'search_modifier_has_no_attachments' => 'Transakcja nie ma załączników', - 'search_modifier_not_has_no_attachments' => 'Transakcja ma załączniki', - 'search_modifier_not_has_attachments' => 'Transakcja nie ma załączników', - 'search_modifier_account_is_cash' => 'Dowolne konto jest kontem "(cash)".', - 'search_modifier_not_account_is_cash' => 'Żadne konto nie jest kontem "(cash)".', - 'search_modifier_journal_id' => 'ID dziennika to ":value"', - 'search_modifier_not_journal_id' => 'ID dziennika to nie ":value"', - 'search_modifier_recurrence_id' => 'ID transakcji cyklicznej to ":value"', - 'search_modifier_not_recurrence_id' => 'ID transakcji cyklicznej to nie ":value"', - 'search_modifier_foreign_amount_is' => 'Kwota obca to ":value"', - 'search_modifier_not_foreign_amount_is' => 'Kwota obca to nie ":value"', - 'search_modifier_foreign_amount_less' => 'Kwota obca jest mniejsza niż ":value"', - 'search_modifier_not_foreign_amount_more' => 'Kwota obca jest mniejsza niż ":value"', - 'search_modifier_not_foreign_amount_less' => 'Kwota obca jest większa niż ":value"', - 'search_modifier_foreign_amount_more' => 'Kwota obca jest większa niż ":value"', - 'search_modifier_exists' => 'Transakcja istnieje (dowolna transakcja)', - 'search_modifier_not_exists' => 'Transakcja nie istnieje (brak transakcji)', + 'search_modifier_tag_is_not' => 'Tag nie jest ustawiony na ":value"', + 'search_modifier_not_tag_is_not' => 'Tag to ":value"', + 'search_modifier_account_is' => 'Konto to ":value"', + 'search_modifier_not_account_is' => 'Żadne z kont nie jest ":value"', + 'search_modifier_account_contains' => 'Konto zawiera ":value"', + 'search_modifier_not_account_contains' => 'Żadne z kont nie zawiera ":value"', + 'search_modifier_account_ends' => 'Konto kończy się na ":value"', + 'search_modifier_not_account_ends' => 'Nazwa żadnego konta nie kończy się na ":value"', + 'search_modifier_account_starts' => 'Konto zaczyna się od ":value"', + 'search_modifier_not_account_starts' => 'Nazwa żadnego konta nie zaczyna się na ":value"', + 'search_modifier_account_nr_is' => 'Numer konta / IBAN to ":value"', + 'search_modifier_not_account_nr_is' => 'Żaden numer konta / IBAN nie jest ":value"', + 'search_modifier_account_nr_contains' => 'Numer konta / IBAN zawiera ":value"', + 'search_modifier_not_account_nr_contains' => 'Żaden numer konta / IBAN nie zawiera ":value"', + 'search_modifier_account_nr_ends' => 'Numer konta / IBAN kończy się na ":value"', + 'search_modifier_not_account_nr_ends' => 'Żaden numer konta / IBAN nie kończy się na ":value"', + 'search_modifier_account_nr_starts' => 'Numer konta / IBAN zaczyna się od ":value"', + 'search_modifier_not_account_nr_starts' => 'Żaden numer konta / IBAN nie zaczyna się na ":value"', + 'search_modifier_category_contains' => 'Kategoria zawiera ":value"', + 'search_modifier_not_category_contains' => 'Kategoria nie zawiera ":value"', + 'search_modifier_category_ends' => 'Kategoria kończy się na ":value"', + 'search_modifier_not_category_ends' => 'Kategoria nie kończy się na ":value"', + 'search_modifier_category_starts' => 'Kategoria zaczyna się od ":value"', + 'search_modifier_not_category_starts' => 'Kategoria zaczyna się na ":value"', + 'search_modifier_budget_contains' => 'Budżet zawiera ":value"', + 'search_modifier_not_budget_contains' => 'Budżet nie zawiera ":value"', + 'search_modifier_budget_ends' => 'Budżet kończy się na ":value"', + 'search_modifier_not_budget_ends' => 'Budżet nie kończy się na ":value"', + 'search_modifier_budget_starts' => 'Budżet zaczyna się od ":value"', + 'search_modifier_not_budget_starts' => 'Budżet nie zaczyna się od ":value"', + 'search_modifier_bill_contains' => 'Rachunek zawiera ":value"', + 'search_modifier_not_bill_contains' => 'Rachunek nie zawiera ":value"', + 'search_modifier_bill_ends' => 'Rachunek kończy się na ":value"', + 'search_modifier_not_bill_ends' => 'Rachunek nie kończy się na ":value"', + 'search_modifier_bill_starts' => 'Rachunek zaczyna się od ":value"', + 'search_modifier_not_bill_starts' => 'Rachunek nie zaczyna się od ":value"', + 'search_modifier_external_id_contains' => 'Zewnętrzne ID zawiera ":value"', + 'search_modifier_not_external_id_contains' => 'Zewnętrzne ID nie zawiera ":value"', + 'search_modifier_external_id_ends' => 'Zewnętrzne ID kończy się na ":value"', + 'search_modifier_not_external_id_ends' => 'Zewnętrzne ID nie kończy się na ":value"', + 'search_modifier_external_id_starts' => 'Zewnętrzne ID zaczyna się od ":value"', + 'search_modifier_not_external_id_starts' => 'Zewnętrzne ID nie zaczyna się od ":value"', + 'search_modifier_internal_reference_contains' => 'Wewnętrzne odwołanie zawiera ":value"', + 'search_modifier_not_internal_reference_contains' => 'Wewnętrzne odwołanie nie zawiera ":value"', + 'search_modifier_internal_reference_ends' => 'Wewnętrzne odwołanie kończy się na ":value"', + 'search_modifier_internal_reference_starts' => 'Wewnętrzne odniesienie zaczyna się od ":value"', + 'search_modifier_not_internal_reference_ends' => 'Wewnętrzne odwołanie nie kończy się na ":value"', + 'search_modifier_not_internal_reference_starts' => 'Wewnętrzne odwołanie nie zaczyna się od ":value"', + 'search_modifier_external_url_is' => 'Zewnętrzny adres URL to ":value"', + 'search_modifier_not_external_url_is' => 'Zewnętrzny adres URL to nie ":value"', + 'search_modifier_external_url_contains' => 'Zewnętrzny adres URL zawiera ":value"', + 'search_modifier_not_external_url_contains' => 'Zewnętrzny adres URL nie zawiera ":value"', + 'search_modifier_external_url_ends' => 'Zewnętrzny adres URL kończy się na ":value"', + 'search_modifier_not_external_url_ends' => 'Zewnętrzny adres URL nie kończy się na ":value"', + 'search_modifier_external_url_starts' => 'Zewnętrzny adres URL zaczyna się od ":value"', + 'search_modifier_not_external_url_starts' => 'Zewnętrzny adres URL nie zaczyna się od ":value"', + 'search_modifier_has_no_attachments' => 'Transakcja nie ma załączników', + 'search_modifier_not_has_no_attachments' => 'Transakcja ma załączniki', + 'search_modifier_not_has_attachments' => 'Transakcja nie ma załączników', + 'search_modifier_account_is_cash' => 'Dowolne konto jest kontem "(cash)".', + 'search_modifier_not_account_is_cash' => 'Żadne konto nie jest kontem "(cash)".', + 'search_modifier_journal_id' => 'ID dziennika to ":value"', + 'search_modifier_not_journal_id' => 'ID dziennika to nie ":value"', + 'search_modifier_recurrence_id' => 'ID transakcji cyklicznej to ":value"', + 'search_modifier_not_recurrence_id' => 'ID transakcji cyklicznej to nie ":value"', + 'search_modifier_foreign_amount_is' => 'Kwota obca to ":value"', + 'search_modifier_not_foreign_amount_is' => 'Kwota obca to nie ":value"', + 'search_modifier_foreign_amount_less' => 'Kwota obca jest mniejsza niż ":value"', + 'search_modifier_not_foreign_amount_more' => 'Kwota obca jest mniejsza niż ":value"', + 'search_modifier_not_foreign_amount_less' => 'Kwota obca jest większa niż ":value"', + 'search_modifier_foreign_amount_more' => 'Kwota obca jest większa niż ":value"', + 'search_modifier_exists' => 'Transakcja istnieje (dowolna transakcja)', + 'search_modifier_not_exists' => 'Transakcja nie istnieje (brak transakcji)', // date fields - 'search_modifier_interest_date_on' => 'Data odsetek transakcji to ":value"', - 'search_modifier_not_interest_date_on' => 'Data odsetek transakcji to nie ":value"', - 'search_modifier_interest_date_on_year' => 'Data odsetek transakcji jest w roku ":value"', - 'search_modifier_not_interest_date_on_year' => 'Data odsetek transakcji nie jest w roku ":value"', - 'search_modifier_interest_date_on_month' => 'Data odsetek transakcji jest w miesiącu ":value"', - 'search_modifier_not_interest_date_on_month' => 'Data odsetek transakcji nie jest w miesiącu ":value"', - 'search_modifier_interest_date_on_day' => 'Data odsetek transakcji przypada w dniu miesiąca ":value"', - 'search_modifier_not_interest_date_on_day' => 'Data odsetek transakcji nie przypada w dniu miesiąca ":value"', - 'search_modifier_interest_date_before_year' => 'Data odsetek transakcji jest przed lub w roku ":value"', - 'search_modifier_interest_date_before_month' => 'Data odsetek transakcji jest przed lub w miesiącu ":value"', - 'search_modifier_interest_date_before_day' => 'Data odsetek transakcji jest przed lub w dniu miesiąca ":value"', - 'search_modifier_interest_date_after_year' => 'Data odsetek transakcji jest po lub w roku ":value"', - 'search_modifier_interest_date_after_month' => 'Data odsetek transakcji jest po lub w miesiącu ":value"', - 'search_modifier_interest_date_after_day' => 'Data odsetek transakcji jest po lub w dniu miesiąca ":value"', - 'search_modifier_book_date_on_year' => 'Data księgowania transakcji jest w roku ":value"', - 'search_modifier_book_date_on_month' => 'Data księgowania transakcji jest w miesiącu ":value"', - 'search_modifier_book_date_on_day' => 'Data księgowania transakcji przypada w dniu miesiąca ":value"', - 'search_modifier_not_book_date_on_year' => 'Data księgowania transakcji nie jest w roku ":value"', - 'search_modifier_not_book_date_on_month' => 'Data księgowania transakcji nie jest w miesiącu ":value"', - 'search_modifier_not_book_date_on_day' => 'Data księgowania transakcji nie przypada w dniu miesiąca ":value"', - 'search_modifier_book_date_before_year' => 'Data księgowania transakcji jest przed lub w roku ":value"', - 'search_modifier_book_date_before_month' => 'Data księgowania transakcji jest przed lub w miesiącu ":value"', - 'search_modifier_book_date_before_day' => 'Data księgowania transakcji jest przed lub w dniu miesiąca ":value"', - 'search_modifier_book_date_after_year' => 'Data księgowania transakcji jest po lub w roku ":value"', - 'search_modifier_book_date_after_month' => 'Data księgowania transakcji jest po lub w miesiącu ":value"', - 'search_modifier_book_date_after_day' => 'Data księgowania transakcji jest po lub w dniu miesiąca ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Data odsetek transakcji to ":value"', + 'search_modifier_not_interest_date_on' => 'Data odsetek transakcji to nie ":value"', + 'search_modifier_interest_date_on_year' => 'Data odsetek transakcji jest w roku ":value"', + 'search_modifier_not_interest_date_on_year' => 'Data odsetek transakcji nie jest w roku ":value"', + 'search_modifier_interest_date_on_month' => 'Data odsetek transakcji jest w miesiącu ":value"', + 'search_modifier_not_interest_date_on_month' => 'Data odsetek transakcji nie jest w miesiącu ":value"', + 'search_modifier_interest_date_on_day' => 'Data odsetek transakcji przypada w dniu miesiąca ":value"', + 'search_modifier_not_interest_date_on_day' => 'Data odsetek transakcji nie przypada w dniu miesiąca ":value"', + 'search_modifier_interest_date_before_year' => 'Data odsetek transakcji jest przed lub w roku ":value"', + 'search_modifier_interest_date_before_month' => 'Data odsetek transakcji jest przed lub w miesiącu ":value"', + 'search_modifier_interest_date_before_day' => 'Data odsetek transakcji jest przed lub w dniu miesiąca ":value"', + 'search_modifier_interest_date_after_year' => 'Data odsetek transakcji jest po lub w roku ":value"', + 'search_modifier_interest_date_after_month' => 'Data odsetek transakcji jest po lub w miesiącu ":value"', + 'search_modifier_interest_date_after_day' => 'Data odsetek transakcji jest po lub w dniu miesiąca ":value"', + 'search_modifier_book_date_on_year' => 'Data księgowania transakcji jest w roku ":value"', + 'search_modifier_book_date_on_month' => 'Data księgowania transakcji jest w miesiącu ":value"', + 'search_modifier_book_date_on_day' => 'Data księgowania transakcji przypada w dniu miesiąca ":value"', + 'search_modifier_not_book_date_on_year' => 'Data księgowania transakcji nie jest w roku ":value"', + 'search_modifier_not_book_date_on_month' => 'Data księgowania transakcji nie jest w miesiącu ":value"', + 'search_modifier_not_book_date_on_day' => 'Data księgowania transakcji nie przypada w dniu miesiąca ":value"', + 'search_modifier_book_date_before_year' => 'Data księgowania transakcji jest przed lub w roku ":value"', + 'search_modifier_book_date_before_month' => 'Data księgowania transakcji jest przed lub w miesiącu ":value"', + 'search_modifier_book_date_before_day' => 'Data księgowania transakcji jest przed lub w dniu miesiąca ":value"', + 'search_modifier_book_date_after_year' => 'Data księgowania transakcji jest po lub w roku ":value"', + 'search_modifier_book_date_after_month' => 'Data księgowania transakcji jest po lub w miesiącu ":value"', + 'search_modifier_book_date_after_day' => 'Data księgowania transakcji jest po lub w dniu miesiąca ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Nazwa dowolnego załącznika to ":value"', - 'search_modifier_attachment_name_contains' => 'Nazwa dowolnego załącznika zawiera ":value"', - 'search_modifier_attachment_name_starts' => 'Nazwa dowolnego załącznika zaczyna się od ":value"', - 'search_modifier_attachment_name_ends' => 'Nazwa dowolnego załącznika kończy się na ":value"', - 'search_modifier_attachment_notes_are' => 'Notatki dowolnego załącznika to ":value"', - 'search_modifier_attachment_notes_contains' => 'Notatki dowolnego załącznika zawierają ":value"', - 'search_modifier_attachment_notes_starts' => 'Notatki dowolnego załącznika zaczynają się od ":value"', - 'search_modifier_attachment_notes_ends' => 'Notatki dowolnego załącznika kończą się na ":value"', - 'search_modifier_not_attachment_name_is' => 'Nazwa dowolnego załącznika to nie ":value"', - 'search_modifier_not_attachment_name_contains' => 'Nazwa dowolnego załącznika nie zawiera ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT to ":value"', - 'update_rule_from_query' => 'Aktualizuj regułę ":rule" z zapytania wyszukiwania', - 'create_rule_from_query' => 'Utwórz nową regułę z zapytania wyszukiwania', - 'rule_from_search_words' => 'Silnik reguł ma problemy z obsługą ":string". Sugerowana reguła, która pasuje do Twojego zapytania może dawać różne wyniki. Proszę dokładnie sprawdź wyzwalacze reguł.', + 'search_modifier_attachment_name_is' => 'Nazwa dowolnego załącznika to ":value"', + 'search_modifier_attachment_name_contains' => 'Nazwa dowolnego załącznika zawiera ":value"', + 'search_modifier_attachment_name_starts' => 'Nazwa dowolnego załącznika zaczyna się od ":value"', + 'search_modifier_attachment_name_ends' => 'Nazwa dowolnego załącznika kończy się na ":value"', + 'search_modifier_attachment_notes_are' => 'Notatki dowolnego załącznika to ":value"', + 'search_modifier_attachment_notes_contains' => 'Notatki dowolnego załącznika zawierają ":value"', + 'search_modifier_attachment_notes_starts' => 'Notatki dowolnego załącznika zaczynają się od ":value"', + 'search_modifier_attachment_notes_ends' => 'Notatki dowolnego załącznika kończą się na ":value"', + 'search_modifier_not_attachment_name_is' => 'Nazwa dowolnego załącznika to nie ":value"', + 'search_modifier_not_attachment_name_contains' => 'Nazwa dowolnego załącznika nie zawiera ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT to ":value"', + 'update_rule_from_query' => 'Aktualizuj regułę ":rule" z zapytania wyszukiwania', + 'create_rule_from_query' => 'Utwórz nową regułę z zapytania wyszukiwania', + 'rule_from_search_words' => 'Silnik reguł ma problemy z obsługą ":string". Sugerowana reguła, która pasuje do Twojego zapytania może dawać różne wyniki. Proszę dokładnie sprawdź wyzwalacze reguł.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Zastosowano także poniższe modyfikatory:', - 'general_search_error' => 'Wystąpił błąd podczas wyszukiwania. Aby uzyskać więcej informacji proszę sprawdzić logi aplikacji.', - 'search_box' => 'Szukaj', - 'search_box_intro' => 'Witamy w funkcji wyszukiwania Firefly III. Wpisz zapytanie w polu. Upewnij się, że sprawdziłeś plik pomocy, ponieważ wyszukiwanie jest dość zaawansowane.', - 'search_error' => 'Błąd podczas wyszukiwania', - 'search_searching' => 'Wyszukiwanie...', - 'search_results' => 'Wyniki wyszukiwania', + 'modifiers_applies_are' => 'Zastosowano także poniższe modyfikatory:', + 'general_search_error' => 'Wystąpił błąd podczas wyszukiwania. Aby uzyskać więcej informacji proszę sprawdzić logi aplikacji.', + 'search_box' => 'Szukaj', + 'search_box_intro' => 'Witamy w funkcji wyszukiwania Firefly III. Wpisz zapytanie w polu. Upewnij się, że sprawdziłeś plik pomocy, ponieważ wyszukiwanie jest dość zaawansowane.', + 'search_error' => 'Błąd podczas wyszukiwania', + 'search_searching' => 'Wyszukiwanie...', + 'search_results' => 'Wyniki wyszukiwania', // repeat frequencies: - 'repeat_freq_yearly' => 'rocznie', - 'repeat_freq_half-year' => 'co pół roku', - 'repeat_freq_quarterly' => 'kwartalnie', - 'repeat_freq_monthly' => 'miesięcznie', - 'repeat_freq_weekly' => 'tygodniowo', - 'repeat_freq_daily' => 'codziennie', - 'daily' => 'dziennie', - 'weekly' => 'tygodniowo', - 'quarterly' => 'kwartalnie', - 'half-year' => 'co pół roku', - 'yearly' => 'rocznie', + 'repeat_freq_yearly' => 'rocznie', + 'repeat_freq_half-year' => 'co pół roku', + 'repeat_freq_quarterly' => 'kwartalnie', + 'repeat_freq_monthly' => 'miesięcznie', + 'repeat_freq_weekly' => 'tygodniowo', + 'repeat_freq_daily' => 'codziennie', + 'daily' => 'dziennie', + 'weekly' => 'tygodniowo', + 'quarterly' => 'kwartalnie', + 'half-year' => 'co pół roku', + 'yearly' => 'rocznie', // rules - 'is_not_rule_trigger' => 'Nie', - 'cannot_fire_inactive_rules' => 'Nie możesz wykonać nieaktywnych reguł.', - 'show_triggers' => 'Pokaż wyzwalacze', - 'show_actions' => 'Pokaż działania', - 'rules' => 'Reguły', - 'rule_name' => 'Nazwa reguły', - 'rule_triggers' => 'Reguły są wyzwalane gdy', - 'rule_actions' => 'Reguła będzie', - 'new_rule' => 'Nowa reguła', - 'new_rule_group' => 'Nowa grupa reguł', - 'rule_priority_up' => 'Zwiększ priorytet reguły', - 'rule_priority_down' => 'Zmniejsz priorytet reguły', - 'make_new_rule_group' => 'Utwórz nową grupę reguł', - 'store_new_rule_group' => 'Zapisz nową grupę reguł', - 'created_new_rule_group' => 'Nowa grupa reguł ":title" została zapisana!', - 'updated_rule_group' => 'Pomyślnie zmodyfikowano grupę reguł ":title".', - 'edit_rule_group' => 'Modyfikuj grupę reguł ":title"', - 'duplicate_rule' => 'Duplikuj regułę ":title"', - 'rule_copy_of' => 'Kopia ":title"', - 'duplicated_rule' => 'Duplikat reguły ":title" w ":newTitle"', - 'delete_rule_group' => 'Usuń grupę reguł ":title"', - 'deleted_rule_group' => 'Usunięto grupę reguł ":title"', - 'update_rule_group' => 'Aktualizuj grupę reguł', - 'no_rules_in_group' => 'Nie ma żadnych reguł w tej grupie', - 'move_rule_group_up' => 'Przenieś grupę reguł w górę', - 'move_rule_group_down' => 'Przenieś grupę reguł w dół', - 'save_rules_by_moving' => 'Zapisz tę regułę, przenosząc ją do innej grupy reguł:|Zapisz te reguły, przenosząc je do innej grupy reguł:', - 'make_new_rule' => 'Utwórz nową regułę w grupie reguł ":title"', - 'make_new_rule_no_group' => 'Stwórz nową regułę', - 'instructions_rule_from_bill' => 'Aby dopasować transakcje do nowego rachunku ":name", Firefly III może utworzyć regułę, która będzie automatycznie sprawdzana względem wszelkich transakcji, które zapisujesz. Sprawdź poniższe szczegóły i zapisz regułę, aby Firefly III automatycznie dopasowywało transakcje do Twojego nowego rachunku.', - 'instructions_rule_from_journal' => 'Utwórz regułę na podstawie jednej z Twoich transakcji. Uzupełnij lub wyślij poniższy formularz.', - 'rule_is_strict' => 'ścisła reguła', - 'rule_is_not_strict' => 'swobodna reguła', - 'rule_help_stop_processing' => 'Gdy zaznaczysz to pole, kolejne reguły w tej grupie nie będą wykonywane.', - 'rule_help_strict' => 'W ścisłych regułach WSZYSTKIE wyzwalacze muszą się aktywować aby akcje zostały wykonane. W swobodnych regułach DOWOLNY wyzwalacz wystarcza do wykonania akcji.', - 'rule_help_active' => 'Nieaktywne reguły nigdy nie zostaną uruchomione.', - 'stored_new_rule' => 'Zapisano regułę o nazwie ":title"', - 'deleted_rule' => 'Usunięto regułę o nazwie ":title"', - 'store_new_rule' => 'Zapisz nową regułę', - 'updated_rule' => 'Zmodyfikowano regułę o nazwie ":title"', - 'default_rule_group_name' => 'Reguły domyślne', - 'default_rule_group_description' => 'Wszystkie twoje reguły, które nie znajdują się w określonej grupie.', - 'trigger' => 'Wyzwalacz', - 'trigger_value' => 'Uruchom dla wartości', - 'stop_processing_other_triggers' => 'Zatrzymaj przetwarzanie innych wyzwalaczy', - 'add_rule_trigger' => 'Dodaj nowy wyzwalacz', - 'action' => 'Akcja', - 'action_value' => 'Wartość akcji', - 'stop_executing_other_actions' => 'Zatrzymaj wykonywanie innych akcji', - 'add_rule_action' => 'Dodaj nową akcję', - 'edit_rule' => 'Modyfikuj regułę ":title"', - 'delete_rule' => 'Usuń regułę ":title"', - 'update_rule' => 'Modyfikuj regułę', - 'test_rule_triggers' => 'Zobacz pasujące transakcje', - 'warning_no_matching_transactions' => 'Nie znaleziono pasujących transakcji.', - 'warning_no_valid_triggers' => 'Nie dostarczono prawidłowych wyzwalaczy.', - 'apply_rule_selection' => 'Zastosuj regułę ":title" do niektórych swoich transakcji', - 'apply_rule_selection_intro' => 'Reguły takie jak ":title" są zwykle stosowane tylko do nowych lub modyfikowanych transakcji, ale możesz powiedzieć Firefly III aby uruchomił ją dla istniejących transakcji. Może to być przydatne, gdy zmodyfikowałeś regułę i potrzebujesz zastosować zmiany dla wszystkich pozostałych transakcji.', - 'include_transactions_from_accounts' => 'Uwzględnij transakcje z tych kont', - 'include' => 'Zawrzeć?', - 'applied_rule_selection' => '{0} Żadna transakcja w Twoim wyborze nie została zmieniona przez regułę ":title".|[1] Jedna transakcja w Twoim wyborze została zmieniona przez regułę ":title".|[2,*] :count transakcje w Twoim wyborze zostały zmienione przez regułę ":title".', - 'execute' => 'Wykonaj', - 'apply_rule_group_selection' => 'Zastosuj grupę reguł ":title" do niektórych swoich transakcji', - 'apply_rule_group_selection_intro' => 'GRupy reguł takie jak ":title" są zwykle stosowane tylko do nowych lub modyfikowanych transakcji, ale możesz powiedzieć Firefly III aby uruchomił ją dla istniejących transakcji. Może to być przydatne, gdy zmodyfikowałeś grupę reguł i potrzebujesz zastosować zmiany dla wszystkich pozostałych transakcji.', - 'applied_rule_group_selection' => 'Grupa reguł ":title" została zastosowana do Twojego wyboru.', + 'is_not_rule_trigger' => 'Nie', + 'cannot_fire_inactive_rules' => 'Nie możesz wykonać nieaktywnych reguł.', + 'show_triggers' => 'Pokaż wyzwalacze', + 'show_actions' => 'Pokaż działania', + 'rules' => 'Reguły', + 'rule_name' => 'Nazwa reguły', + 'rule_triggers' => 'Reguły są wyzwalane gdy', + 'rule_actions' => 'Reguła będzie', + 'new_rule' => 'Nowa reguła', + 'new_rule_group' => 'Nowa grupa reguł', + 'rule_priority_up' => 'Zwiększ priorytet reguły', + 'rule_priority_down' => 'Zmniejsz priorytet reguły', + 'make_new_rule_group' => 'Utwórz nową grupę reguł', + 'store_new_rule_group' => 'Zapisz nową grupę reguł', + 'created_new_rule_group' => 'Nowa grupa reguł ":title" została zapisana!', + 'updated_rule_group' => 'Pomyślnie zmodyfikowano grupę reguł ":title".', + 'edit_rule_group' => 'Modyfikuj grupę reguł ":title"', + 'duplicate_rule' => 'Duplikuj regułę ":title"', + 'rule_copy_of' => 'Kopia ":title"', + 'duplicated_rule' => 'Duplikat reguły ":title" w ":newTitle"', + 'delete_rule_group' => 'Usuń grupę reguł ":title"', + 'deleted_rule_group' => 'Usunięto grupę reguł ":title"', + 'update_rule_group' => 'Aktualizuj grupę reguł', + 'no_rules_in_group' => 'Nie ma żadnych reguł w tej grupie', + 'move_rule_group_up' => 'Przenieś grupę reguł w górę', + 'move_rule_group_down' => 'Przenieś grupę reguł w dół', + 'save_rules_by_moving' => 'Zapisz tę regułę, przenosząc ją do innej grupy reguł:|Zapisz te reguły, przenosząc je do innej grupy reguł:', + 'make_new_rule' => 'Utwórz nową regułę w grupie reguł ":title"', + 'make_new_rule_no_group' => 'Stwórz nową regułę', + 'instructions_rule_from_bill' => 'Aby dopasować transakcje do nowego rachunku ":name", Firefly III może utworzyć regułę, która będzie automatycznie sprawdzana względem wszelkich transakcji, które zapisujesz. Sprawdź poniższe szczegóły i zapisz regułę, aby Firefly III automatycznie dopasowywało transakcje do Twojego nowego rachunku.', + 'instructions_rule_from_journal' => 'Utwórz regułę na podstawie jednej z Twoich transakcji. Uzupełnij lub wyślij poniższy formularz.', + 'rule_is_strict' => 'ścisła reguła', + 'rule_is_not_strict' => 'swobodna reguła', + 'rule_help_stop_processing' => 'Gdy zaznaczysz to pole, kolejne reguły w tej grupie nie będą wykonywane.', + 'rule_help_strict' => 'W ścisłych regułach WSZYSTKIE wyzwalacze muszą się aktywować aby akcje zostały wykonane. W swobodnych regułach DOWOLNY wyzwalacz wystarcza do wykonania akcji.', + 'rule_help_active' => 'Nieaktywne reguły nigdy nie zostaną uruchomione.', + 'stored_new_rule' => 'Zapisano regułę o nazwie ":title"', + 'deleted_rule' => 'Usunięto regułę o nazwie ":title"', + 'store_new_rule' => 'Zapisz nową regułę', + 'updated_rule' => 'Zmodyfikowano regułę o nazwie ":title"', + 'default_rule_group_name' => 'Reguły domyślne', + 'default_rule_group_description' => 'Wszystkie twoje reguły, które nie znajdują się w określonej grupie.', + 'trigger' => 'Wyzwalacz', + 'trigger_value' => 'Uruchom dla wartości', + 'stop_processing_other_triggers' => 'Zatrzymaj przetwarzanie innych wyzwalaczy', + 'add_rule_trigger' => 'Dodaj nowy wyzwalacz', + 'action' => 'Akcja', + 'action_value' => 'Wartość akcji', + 'stop_executing_other_actions' => 'Zatrzymaj wykonywanie innych akcji', + 'add_rule_action' => 'Dodaj nową akcję', + 'edit_rule' => 'Modyfikuj regułę ":title"', + 'delete_rule' => 'Usuń regułę ":title"', + 'update_rule' => 'Modyfikuj regułę', + 'test_rule_triggers' => 'Zobacz pasujące transakcje', + 'warning_no_matching_transactions' => 'Nie znaleziono pasujących transakcji.', + 'warning_no_valid_triggers' => 'Nie dostarczono prawidłowych wyzwalaczy.', + 'apply_rule_selection' => 'Zastosuj regułę ":title" do niektórych swoich transakcji', + 'apply_rule_selection_intro' => 'Reguły takie jak ":title" są zwykle stosowane tylko do nowych lub modyfikowanych transakcji, ale możesz powiedzieć Firefly III aby uruchomił ją dla istniejących transakcji. Może to być przydatne, gdy zmodyfikowałeś regułę i potrzebujesz zastosować zmiany dla wszystkich pozostałych transakcji.', + 'include_transactions_from_accounts' => 'Uwzględnij transakcje z tych kont', + 'include' => 'Zawrzeć?', + 'applied_rule_selection' => '{0} Żadna transakcja w Twoim wyborze nie została zmieniona przez regułę ":title".|[1] Jedna transakcja w Twoim wyborze została zmieniona przez regułę ":title".|[2,*] :count transakcje w Twoim wyborze zostały zmienione przez regułę ":title".', + 'execute' => 'Wykonaj', + 'apply_rule_group_selection' => 'Zastosuj grupę reguł ":title" do niektórych swoich transakcji', + 'apply_rule_group_selection_intro' => 'GRupy reguł takie jak ":title" są zwykle stosowane tylko do nowych lub modyfikowanych transakcji, ale możesz powiedzieć Firefly III aby uruchomił ją dla istniejących transakcji. Może to być przydatne, gdy zmodyfikowałeś grupę reguł i potrzebujesz zastosować zmiany dla wszystkich pozostałych transakcji.', + 'applied_rule_group_selection' => 'Grupa reguł ":title" została zastosowana do Twojego wyboru.', // actions and triggers - 'rule_trigger_store_journal' => 'Po utworzeniu transakcji', - 'rule_trigger_update_journal' => 'Po zmodyfikowaniu transakcji', - 'rule_trigger_user_action' => 'Akcją użytkownika jest ":trigger_value"', + 'rule_trigger_store_journal' => 'Po utworzeniu transakcji', + 'rule_trigger_update_journal' => 'Po zmodyfikowaniu transakcji', + 'rule_trigger_user_action' => 'Akcją użytkownika jest ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Konto źródłowe się zaczyna od..', - 'rule_trigger_source_account_starts' => 'Konto źródłowe się zaczyna od ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Konto źródłowe kończy się na..', - 'rule_trigger_source_account_ends' => 'Konto źródłowe kończy się na ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Kontem źródłowym jest..', - 'rule_trigger_source_account_is' => 'Nazwa konta źródłowego to ":trigger_value:"', - 'rule_trigger_source_account_contains_choice' => 'Nazwa konta źródłowego zawiera..', - 'rule_trigger_source_account_contains' => 'Nazwa konta źródłowego zawiera ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID konta źródłowego to dokładnie..', - 'rule_trigger_source_account_id' => 'ID konta źródłowego to dokładnie :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID konta docelowego to dokładnie..', - 'rule_trigger_destination_account_id' => 'ID konta docelowego to dokładnie :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Dowolne konto jest kontem gotówkowym', - 'rule_trigger_account_is_cash' => 'Dowolne konto jest kontem gotówkowym', - 'rule_trigger_source_is_cash_choice' => 'Konto źródłowe to konto (gotówkowe)', - 'rule_trigger_source_is_cash' => 'Konto źródłowe to konto (gotówkowe)', - 'rule_trigger_destination_is_cash_choice' => 'Konto docelowe to konto (gotówkowe)', - 'rule_trigger_destination_is_cash' => 'Konto docelowe to konto (gotówkowe)', - 'rule_trigger_source_account_nr_starts_choice' => 'Numer / IBAN konta źródłowego zaczyna się od..', - 'rule_trigger_source_account_nr_starts' => 'Numer konta źródłowego / IBAN zaczyna się od ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Numer konta źródłowego / IBAN kończy się na..', - 'rule_trigger_source_account_nr_ends' => 'Numer konta źródłowego / IBAN kończy się ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Numer konta źródłowego / IBAN to..', - 'rule_trigger_source_account_nr_is' => 'Numer konta źródłowego / IBAN to ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Numer konta źródłowego / IBAN zawiera..', - 'rule_trigger_source_account_nr_contains' => 'Numer konta źródłowego / IBAN zawiera ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Nazwa konta docelowego zaczyna się od..', - 'rule_trigger_destination_account_starts' => 'Nazwa konta docelowego zaczyna się od ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Nazwa konta docelowego kończy się na..', - 'rule_trigger_destination_account_ends' => 'Nazwa konta docelowego kończy się na ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Nazwa konta docelowego to..', - 'rule_trigger_destination_account_is' => 'Nazwa konta docelowego to ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Nazwa konta docelowego zawiera..', - 'rule_trigger_destination_account_contains' => 'Nazwa konta docelowego zawiera ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Numer konta docelowego / IBAN zaczyna się od..', - 'rule_trigger_destination_account_nr_starts' => 'Numer konta docelowego / IBAN zaczyna się od ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Numer konta docelowego / IBAN kończy się na..', - 'rule_trigger_destination_account_nr_ends' => 'Numer konta docelowego / IBAN kończy się ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Numer konta docelowego / IBAN to..', - 'rule_trigger_destination_account_nr_is' => 'Numer konta docelowego / IBAN to ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Numer konta docelowego / IBAN zawiera..', - 'rule_trigger_destination_account_nr_contains' => 'Numer konta docelowego / IBAN zawiera ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transakcja jest typu..', - 'rule_trigger_transaction_type' => 'Transakcja jest typu ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategoria to..', - 'rule_trigger_category_is' => 'Kategoria to ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Kwota jest mniejsza lub równa ..', - 'rule_trigger_amount_less' => 'Kwota jest mniejsza lub równa :trigger_value', - 'rule_trigger_amount_is_choice' => 'Kwota to..', - 'rule_trigger_amount_is' => 'Kwota to :trigger_value', - 'rule_trigger_amount_more_choice' => 'Kwota jest większa lub równa..', - 'rule_trigger_amount_more' => 'Kwota jest większa lub równa :trigger_value', - 'rule_trigger_description_starts_choice' => 'Opis zaczyna się od..', - 'rule_trigger_description_starts' => 'Opis się zaczyna od ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Opis kończy się na..', - 'rule_trigger_description_ends' => 'Opis się kończy na ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Opis zawiera..', - 'rule_trigger_description_contains' => 'Opis zawiera ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Opis to..', - 'rule_trigger_description_is' => 'Opis to ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Data transakcji to..', - 'rule_trigger_date_on' => 'Data transakcji to ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Data transakcji jest przed..', - 'rule_trigger_date_before' => 'Data transakcji jest przed ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Data transakcji jest po..', - 'rule_trigger_date_after' => 'Data transakcji jest po ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budżet to..', - 'rule_trigger_budget_is' => 'Budżet to ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Dowolny tag to..', - 'rule_trigger_tag_is' => 'Dowolny tag jest ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Waluta transakcji to..', - 'rule_trigger_currency_is' => 'Waluta transakcji to ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Waluta obca transakcji to..', - 'rule_trigger_foreign_currency_is' => 'Waluta obca transakcji to ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Ma co najmniej podaną liczbę załączników', - 'rule_trigger_has_attachments' => 'Ma co najmniej :trigger_value załącznik(ów)', - 'rule_trigger_has_no_category_choice' => 'Brak kategorii', - 'rule_trigger_has_no_category' => 'Transakcje bez kategorii', - 'rule_trigger_has_any_category_choice' => 'Ma (dowolną) kategorię', - 'rule_trigger_has_any_category' => 'Transakcja ma (dowolną) kategorię', - 'rule_trigger_has_no_budget_choice' => 'Brak budżetu', - 'rule_trigger_has_no_budget' => 'Transakcja bez budżetu', - 'rule_trigger_has_any_budget_choice' => 'Ma (dowolny) budżet', - 'rule_trigger_has_any_budget' => 'Transakcja ma (dowolny) budżet', - 'rule_trigger_has_no_bill_choice' => 'Nie ma rachunku', - 'rule_trigger_has_no_bill' => 'Transakcja bez rachunku', - 'rule_trigger_has_any_bill_choice' => 'Ma (dowolny) rachunek', - 'rule_trigger_has_any_bill' => 'Transakcja ma (dowolny) rachunek', - 'rule_trigger_has_no_tag_choice' => 'Brak tagów', - 'rule_trigger_has_no_tag' => 'Transakcja bez tagów', - 'rule_trigger_has_any_tag_choice' => 'Ma (dowolny) tag (lub kilka)', - 'rule_trigger_has_any_tag' => 'Transakcja ma (dowolny) tag (lub kilka)', - 'rule_trigger_any_notes_choice' => 'Ma (dowolne) notatki', - 'rule_trigger_any_notes' => 'Transakcja ma (dowolne) notatki', - 'rule_trigger_no_notes_choice' => 'Brak notatek', - 'rule_trigger_no_notes' => 'Transakcja bez notatek', - 'rule_trigger_notes_is_choice' => 'Notatki to..', - 'rule_trigger_notes_is' => 'Notatki to ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notatki zawierają..', - 'rule_trigger_notes_contains' => 'Notatki zawierają ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notatki zaczynają się od..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notatki kończą się na..', - 'rule_trigger_notes_ends' => 'Notatki kończą się na ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Rachunek to..', - 'rule_trigger_bill_is' => 'Rachunek to ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Zewnętrzne ID to..', - 'rule_trigger_external_id_is' => 'Zewnętrzne ID to ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Wewnętrzne odwołanie to..', - 'rule_trigger_internal_reference_is' => 'Wewnętrzne odwołanie to ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID dziennika transakcji to..', - 'rule_trigger_journal_id' => 'ID dziennika transakcji to ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transakcja ma (dowolny) zewnętrzny adres URL', - 'rule_trigger_any_external_url_choice' => 'Transakcja ma (dowolny) zewnętrzny adres URL', - 'rule_trigger_any_external_id' => 'Transakcja ma (dowolne) zewnętrzne ID', - 'rule_trigger_any_external_id_choice' => 'Transakcja ma (dowolne) zewnętrzne ID', - 'rule_trigger_no_external_url_choice' => 'Transakcja nie ma zewnętrznego adresu URL', - 'rule_trigger_no_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', - 'rule_trigger_no_external_id_choice' => 'Transakcja nie ma zewnętrznego ID', - 'rule_trigger_no_external_id' => 'Transakcja nie ma zewnętrznego ID', - 'rule_trigger_id_choice' => 'Identyfikator transakcji to..', - 'rule_trigger_id' => 'Identyfikator transakcji to ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT to..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT to ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Konto źródłowe się zaczyna od..', + 'rule_trigger_source_account_starts' => 'Konto źródłowe się zaczyna od ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Konto źródłowe kończy się na..', + 'rule_trigger_source_account_ends' => 'Konto źródłowe kończy się na ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Kontem źródłowym jest..', + 'rule_trigger_source_account_is' => 'Nazwa konta źródłowego to ":trigger_value:"', + 'rule_trigger_source_account_contains_choice' => 'Nazwa konta źródłowego zawiera..', + 'rule_trigger_source_account_contains' => 'Nazwa konta źródłowego zawiera ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID konta źródłowego to dokładnie..', + 'rule_trigger_source_account_id' => 'ID konta źródłowego to dokładnie :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID konta docelowego to dokładnie..', + 'rule_trigger_destination_account_id' => 'ID konta docelowego to dokładnie :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Dowolne konto jest kontem gotówkowym', + 'rule_trigger_account_is_cash' => 'Dowolne konto jest kontem gotówkowym', + 'rule_trigger_source_is_cash_choice' => 'Konto źródłowe to konto (gotówkowe)', + 'rule_trigger_source_is_cash' => 'Konto źródłowe to konto (gotówkowe)', + 'rule_trigger_destination_is_cash_choice' => 'Konto docelowe to konto (gotówkowe)', + 'rule_trigger_destination_is_cash' => 'Konto docelowe to konto (gotówkowe)', + 'rule_trigger_source_account_nr_starts_choice' => 'Numer / IBAN konta źródłowego zaczyna się od..', + 'rule_trigger_source_account_nr_starts' => 'Numer konta źródłowego / IBAN zaczyna się od ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Numer konta źródłowego / IBAN kończy się na..', + 'rule_trigger_source_account_nr_ends' => 'Numer konta źródłowego / IBAN kończy się ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Numer konta źródłowego / IBAN to..', + 'rule_trigger_source_account_nr_is' => 'Numer konta źródłowego / IBAN to ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Numer konta źródłowego / IBAN zawiera..', + 'rule_trigger_source_account_nr_contains' => 'Numer konta źródłowego / IBAN zawiera ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Nazwa konta docelowego zaczyna się od..', + 'rule_trigger_destination_account_starts' => 'Nazwa konta docelowego zaczyna się od ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Nazwa konta docelowego kończy się na..', + 'rule_trigger_destination_account_ends' => 'Nazwa konta docelowego kończy się na ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Nazwa konta docelowego to..', + 'rule_trigger_destination_account_is' => 'Nazwa konta docelowego to ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Nazwa konta docelowego zawiera..', + 'rule_trigger_destination_account_contains' => 'Nazwa konta docelowego zawiera ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Numer konta docelowego / IBAN zaczyna się od..', + 'rule_trigger_destination_account_nr_starts' => 'Numer konta docelowego / IBAN zaczyna się od ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Numer konta docelowego / IBAN kończy się na..', + 'rule_trigger_destination_account_nr_ends' => 'Numer konta docelowego / IBAN kończy się ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Numer konta docelowego / IBAN to..', + 'rule_trigger_destination_account_nr_is' => 'Numer konta docelowego / IBAN to ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Numer konta docelowego / IBAN zawiera..', + 'rule_trigger_destination_account_nr_contains' => 'Numer konta docelowego / IBAN zawiera ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transakcja jest typu..', + 'rule_trigger_transaction_type' => 'Transakcja jest typu ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategoria to..', + 'rule_trigger_category_is' => 'Kategoria to ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Kwota jest mniejsza lub równa ..', + 'rule_trigger_amount_less' => 'Kwota jest mniejsza lub równa :trigger_value', + 'rule_trigger_amount_is_choice' => 'Kwota to..', + 'rule_trigger_amount_is' => 'Kwota to :trigger_value', + 'rule_trigger_amount_more_choice' => 'Kwota jest większa lub równa..', + 'rule_trigger_amount_more' => 'Kwota jest większa lub równa :trigger_value', + 'rule_trigger_description_starts_choice' => 'Opis zaczyna się od..', + 'rule_trigger_description_starts' => 'Opis się zaczyna od ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Opis kończy się na..', + 'rule_trigger_description_ends' => 'Opis się kończy na ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Opis zawiera..', + 'rule_trigger_description_contains' => 'Opis zawiera ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Opis to..', + 'rule_trigger_description_is' => 'Opis to ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Data transakcji to..', + 'rule_trigger_date_on' => 'Data transakcji to ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Data transakcji jest przed..', + 'rule_trigger_date_before' => 'Data transakcji jest przed ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Data transakcji jest po..', + 'rule_trigger_date_after' => 'Data transakcji jest po ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budżet to..', + 'rule_trigger_budget_is' => 'Budżet to ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Dowolny tag to..', + 'rule_trigger_tag_is' => 'Dowolny tag jest ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Waluta transakcji to..', + 'rule_trigger_currency_is' => 'Waluta transakcji to ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Waluta obca transakcji to..', + 'rule_trigger_foreign_currency_is' => 'Waluta obca transakcji to ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Ma co najmniej podaną liczbę załączników', + 'rule_trigger_has_attachments' => 'Ma co najmniej :trigger_value załącznik(ów)', + 'rule_trigger_has_no_category_choice' => 'Brak kategorii', + 'rule_trigger_has_no_category' => 'Transakcje bez kategorii', + 'rule_trigger_has_any_category_choice' => 'Ma (dowolną) kategorię', + 'rule_trigger_has_any_category' => 'Transakcja ma (dowolną) kategorię', + 'rule_trigger_has_no_budget_choice' => 'Brak budżetu', + 'rule_trigger_has_no_budget' => 'Transakcja bez budżetu', + 'rule_trigger_has_any_budget_choice' => 'Ma (dowolny) budżet', + 'rule_trigger_has_any_budget' => 'Transakcja ma (dowolny) budżet', + 'rule_trigger_has_no_bill_choice' => 'Nie ma rachunku', + 'rule_trigger_has_no_bill' => 'Transakcja bez rachunku', + 'rule_trigger_has_any_bill_choice' => 'Ma (dowolny) rachunek', + 'rule_trigger_has_any_bill' => 'Transakcja ma (dowolny) rachunek', + 'rule_trigger_has_no_tag_choice' => 'Brak tagów', + 'rule_trigger_has_no_tag' => 'Transakcja bez tagów', + 'rule_trigger_has_any_tag_choice' => 'Ma (dowolny) tag (lub kilka)', + 'rule_trigger_has_any_tag' => 'Transakcja ma (dowolny) tag (lub kilka)', + 'rule_trigger_any_notes_choice' => 'Ma (dowolne) notatki', + 'rule_trigger_any_notes' => 'Transakcja ma (dowolne) notatki', + 'rule_trigger_no_notes_choice' => 'Brak notatek', + 'rule_trigger_no_notes' => 'Transakcja bez notatek', + 'rule_trigger_notes_is_choice' => 'Notatki to..', + 'rule_trigger_notes_is' => 'Notatki to ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notatki zawierają..', + 'rule_trigger_notes_contains' => 'Notatki zawierają ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notatki zaczynają się od..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notatki kończą się na..', + 'rule_trigger_notes_ends' => 'Notatki kończą się na ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Rachunek to..', + 'rule_trigger_bill_is' => 'Rachunek to ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Zewnętrzne ID to..', + 'rule_trigger_external_id_is' => 'Zewnętrzne ID to ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Wewnętrzne odwołanie to..', + 'rule_trigger_internal_reference_is' => 'Wewnętrzne odwołanie to ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID dziennika transakcji to..', + 'rule_trigger_journal_id' => 'ID dziennika transakcji to ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transakcja ma (dowolny) zewnętrzny adres URL', + 'rule_trigger_any_external_url_choice' => 'Transakcja ma (dowolny) zewnętrzny adres URL', + 'rule_trigger_any_external_id' => 'Transakcja ma (dowolne) zewnętrzne ID', + 'rule_trigger_any_external_id_choice' => 'Transakcja ma (dowolne) zewnętrzne ID', + 'rule_trigger_no_external_url_choice' => 'Transakcja nie ma zewnętrznego adresu URL', + 'rule_trigger_no_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', + 'rule_trigger_no_external_id_choice' => 'Transakcja nie ma zewnętrznego ID', + 'rule_trigger_no_external_id' => 'Transakcja nie ma zewnętrznego ID', + 'rule_trigger_id_choice' => 'Identyfikator transakcji to..', + 'rule_trigger_id' => 'Identyfikator transakcji to ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT to..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT to ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Żaden tag to..', - 'rule_trigger_tag_is_not' => 'Żaden tag to ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Kategoria zawiera..', - 'rule_trigger_category_contains' => 'Kategoria zawiera ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Kategoria kończy się..', - 'rule_trigger_category_ends' => 'Kategoria kończy się na ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Kategoria zaczyna się od..', - 'rule_trigger_category_starts' => 'Kategoria zaczyna się od ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budżet zawiera..', - 'rule_trigger_budget_contains' => 'Budżet zawiera ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budżet kończy się na..', - 'rule_trigger_budget_ends' => 'Budżet kończy się na ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budżet zaczyna się od..', - 'rule_trigger_budget_starts' => 'Budżet zaczyna się od ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Rachunek zawiera..', - 'rule_trigger_bill_contains' => 'Rachunek zawiera ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Rachunek kończy się..', - 'rule_trigger_bill_ends' => 'Rachunek kończy się ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Rachunek zaczyna się od..', - 'rule_trigger_bill_starts' => 'Rachunek zaczyna się od ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Zewnętrzne ID zawiera..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Nie ma załączników', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Data odsetek jest dnia..', - 'rule_trigger_interest_date_on' => 'Data odsetek jest dnia ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Data odsetek jest przed dniem..', - 'rule_trigger_interest_date_before' => 'Data odsetek jest przed dniem ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Kwota obca to dokładnie..', - 'rule_trigger_foreign_amount_is' => 'Kwota obca to dokładnie ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Kwota obca jest mniejsza niż..', - 'rule_trigger_foreign_amount_less' => 'Kwota obca jest mniejsza niż ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Kwota obca jest większa niż..', - 'rule_trigger_foreign_amount_more' => 'Kwota obca jest większa niż ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transakcja została uzgodniona', - 'rule_trigger_reconciled' => 'Transakcja została uzgodniona', - 'rule_trigger_exists_choice' => 'Dowolna transakcja pasuje(!)', - 'rule_trigger_exists' => 'Dowolna transakcja pasuje', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Żaden tag to..', + 'rule_trigger_tag_is_not' => 'Żaden tag to ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Kategoria zawiera..', + 'rule_trigger_category_contains' => 'Kategoria zawiera ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Kategoria kończy się..', + 'rule_trigger_category_ends' => 'Kategoria kończy się na ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Kategoria zaczyna się od..', + 'rule_trigger_category_starts' => 'Kategoria zaczyna się od ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budżet zawiera..', + 'rule_trigger_budget_contains' => 'Budżet zawiera ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budżet kończy się na..', + 'rule_trigger_budget_ends' => 'Budżet kończy się na ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budżet zaczyna się od..', + 'rule_trigger_budget_starts' => 'Budżet zaczyna się od ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Rachunek zawiera..', + 'rule_trigger_bill_contains' => 'Rachunek zawiera ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Rachunek kończy się..', + 'rule_trigger_bill_ends' => 'Rachunek kończy się ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Rachunek zaczyna się od..', + 'rule_trigger_bill_starts' => 'Rachunek zaczyna się od ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Zewnętrzne ID zawiera..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Nie ma załączników', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Data odsetek jest dnia..', + 'rule_trigger_interest_date_on' => 'Data odsetek jest dnia ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Data odsetek jest przed dniem..', + 'rule_trigger_interest_date_before' => 'Data odsetek jest przed dniem ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Kwota obca to dokładnie..', + 'rule_trigger_foreign_amount_is' => 'Kwota obca to dokładnie ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Kwota obca jest mniejsza niż..', + 'rule_trigger_foreign_amount_less' => 'Kwota obca jest mniejsza niż ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Kwota obca jest większa niż..', + 'rule_trigger_foreign_amount_more' => 'Kwota obca jest większa niż ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transakcja została uzgodniona', + 'rule_trigger_reconciled' => 'Transakcja została uzgodniona', + 'rule_trigger_exists_choice' => 'Dowolna transakcja pasuje(!)', + 'rule_trigger_exists' => 'Dowolna transakcja pasuje', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'ID konta docelowego to nie ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag to nie ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag to ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notatki to nie ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notatki nie zawierają ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Konto docelowe to nie ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Konto docelowe nie zawiera ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Konto docelowe nie kończy się na ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Konto docelowe nie zaczyna się od ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Numer konta docelowego / IBAN to nie ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Numer konta docelowego / IBAN nie zawiera ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Numer konta docelowego / IBAN nie kończy się na ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Numer konta docelowego / IBAN nie zaczyna się od ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Kategoria to nie ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Kategoria nie zawiera ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Kategoria nie kończy się na ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Kategoria nie zaczyna się od ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budżet to nie ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budżet nie zawiera ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budżet nie kończy się na ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budżet nie zaczyna się od ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Waluta to nie ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Waluta obca to nie ":trigger_value"', - 'rule_trigger_not_id' => 'Identyfikator transakcji to nie ":trigger_value"', - 'rule_trigger_not_journal_id' => 'ID dziennika transakcji to nie ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Kwota obcej transakcji to nie ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Kwota obcej transakcji jest większa niż ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Kwota obcej transakcji jest mniejsza niż ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transakcja nie została uzgodniona', - 'rule_trigger_not_exists' => 'Transakcja nie istnieje', - 'rule_trigger_not_has_attachments' => 'Transakcja nie ma załączników', - 'rule_trigger_not_has_any_category' => 'Transakcja nie ma kategorii', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transakcja bez rachunku', - 'rule_trigger_not_has_any_tag' => 'Transakcja bez tagów', - 'rule_trigger_not_any_notes' => 'Transakcja bez notatek', - 'rule_trigger_not_any_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', - 'rule_trigger_not_has_no_attachments' => 'Transakcja ma (dowolne) załącznik(i)', - 'rule_trigger_not_has_no_category' => 'Transakcja ma (dowolną) kategorię', - 'rule_trigger_not_has_no_budget' => 'Transakcja ma (dowolny) budżet', - 'rule_trigger_not_has_no_bill' => 'Transakcja ma (dowolny) rachunek', - 'rule_trigger_not_has_no_tag' => 'Transakcja ma (dowolny) tag', - 'rule_trigger_not_no_notes' => 'Transakcja ma dowolne notatki', - 'rule_trigger_not_no_external_url' => 'Transakcja ma zewnętrzny adres URL', - 'rule_trigger_not_source_is_cash' => 'Konto źródłowe to nie konto gotówkowe', - 'rule_trigger_not_destination_is_cash' => 'Konto docelowe to nie konto gotówkowe', - 'rule_trigger_not_account_is_cash' => 'Żadne konto nie jest kontem gotówkowym', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'ID konta docelowego to nie ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag to nie ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag to ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notatki to nie ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notatki nie zawierają ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Konto docelowe to nie ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Konto docelowe nie zawiera ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Konto docelowe nie kończy się na ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Konto docelowe nie zaczyna się od ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Numer konta docelowego / IBAN to nie ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Numer konta docelowego / IBAN nie zawiera ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Numer konta docelowego / IBAN nie kończy się na ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Numer konta docelowego / IBAN nie zaczyna się od ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Kategoria to nie ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Kategoria nie zawiera ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Kategoria nie kończy się na ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Kategoria nie zaczyna się od ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budżet to nie ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budżet nie zawiera ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budżet nie kończy się na ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budżet nie zaczyna się od ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Waluta to nie ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Waluta obca to nie ":trigger_value"', + 'rule_trigger_not_id' => 'Identyfikator transakcji to nie ":trigger_value"', + 'rule_trigger_not_journal_id' => 'ID dziennika transakcji to nie ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Kwota obcej transakcji to nie ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Kwota obcej transakcji jest większa niż ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Kwota obcej transakcji jest mniejsza niż ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transakcja nie została uzgodniona', + 'rule_trigger_not_exists' => 'Transakcja nie istnieje', + 'rule_trigger_not_has_attachments' => 'Transakcja nie ma załączników', + 'rule_trigger_not_has_any_category' => 'Transakcja nie ma kategorii', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transakcja bez rachunku', + 'rule_trigger_not_has_any_tag' => 'Transakcja bez tagów', + 'rule_trigger_not_any_notes' => 'Transakcja bez notatek', + 'rule_trigger_not_any_external_url' => 'Transakcja nie ma zewnętrznego adresu URL', + 'rule_trigger_not_has_no_attachments' => 'Transakcja ma (dowolne) załącznik(i)', + 'rule_trigger_not_has_no_category' => 'Transakcja ma (dowolną) kategorię', + 'rule_trigger_not_has_no_budget' => 'Transakcja ma (dowolny) budżet', + 'rule_trigger_not_has_no_bill' => 'Transakcja ma (dowolny) rachunek', + 'rule_trigger_not_has_no_tag' => 'Transakcja ma (dowolny) tag', + 'rule_trigger_not_no_notes' => 'Transakcja ma dowolne notatki', + 'rule_trigger_not_no_external_url' => 'Transakcja ma zewnętrzny adres URL', + 'rule_trigger_not_source_is_cash' => 'Konto źródłowe to nie konto gotówkowe', + 'rule_trigger_not_destination_is_cash' => 'Konto docelowe to nie konto gotówkowe', + 'rule_trigger_not_account_is_cash' => 'Żadne konto nie jest kontem gotówkowym', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'USUŃ transakcję(!)', - 'rule_action_delete_transaction' => 'USUŃ transakcję(!)', - 'rule_action_set_category' => 'Ustaw kategorię na ":action_value"', - 'rule_action_clear_category' => 'Wyczyść kategorię', - 'rule_action_set_budget' => 'Ustaw budżet na ":action_value"', - 'rule_action_clear_budget' => 'Wyczyść budżet', - 'rule_action_add_tag' => 'Dodaj tag ":action_value"', - 'rule_action_remove_tag' => 'Usuń tag ":action_value"', - 'rule_action_remove_all_tags' => 'Usuń wszystkie tagi', - 'rule_action_set_description' => 'Ustaw opis na ":action_value"', - 'rule_action_append_description' => 'Dołącz do opisu wartość ":action_value"', - 'rule_action_prepend_description' => 'Poprzedź opis wartością ":action_value"', - 'rule_action_set_category_choice' => 'Ustaw kategorię na ..', - 'rule_action_clear_category_choice' => 'Wyczyść wszystkie kategorie', - 'rule_action_set_budget_choice' => 'Ustaw budżet na ..', - 'rule_action_clear_budget_choice' => 'Wyczyść wszystkie budżety', - 'rule_action_add_tag_choice' => 'Dodaj tag ..', - 'rule_action_remove_tag_choice' => 'Usuń tag ..', - 'rule_action_remove_all_tags_choice' => 'Usuń wszystkie tagi', - 'rule_action_set_description_choice' => 'Ustaw opis na ..', - 'rule_action_update_piggy_choice' => 'Dodaj / usuń kwotę transakcji w skarbonce ..', - 'rule_action_update_piggy' => 'Dodaj / usuń kwotę transakcji w skarbonce ":action_value"', - 'rule_action_append_description_choice' => 'Dołącz do opisu ..', - 'rule_action_prepend_description_choice' => 'Poprzedź opis ..', - 'rule_action_set_source_account_choice' => 'Ustaw konto źródłowe na ..', - 'rule_action_set_source_account' => 'Ustaw konto źródłowe na :action_value', - 'rule_action_set_destination_account_choice' => 'Ustaw konto docelowe na ..', - 'rule_action_set_destination_account' => 'Ustaw konto docelowe na :action_value', - 'rule_action_append_notes_choice' => 'Dołącz do notatek ..', - 'rule_action_append_notes' => 'Dołącz do notatek wartość ":action_value"', - 'rule_action_prepend_notes_choice' => 'Poprzedź notatki ..', - 'rule_action_prepend_notes' => 'Poprzedź notatki wartością ":action_value"', - 'rule_action_clear_notes_choice' => 'Usuń wszystkie notatki', - 'rule_action_clear_notes' => 'Usuń wszystkie notatki', - 'rule_action_set_notes_choice' => 'Ustaw notatki na ..', - 'rule_action_link_to_bill_choice' => 'Powiąż z rachunkiem ..', - 'rule_action_link_to_bill' => 'Powiąż z rachunkiem ":action_value"', - 'rule_action_switch_accounts_choice' => 'Zamień konta źródłowe i docelowe (tylko przelewy!)', - 'rule_action_switch_accounts' => 'Zamień konto źródłowe i docelowe', - 'rule_action_set_notes' => 'Ustaw notatki na ":action_value"', - 'rule_action_convert_deposit_choice' => 'Konwertuj transakcję na wpłatę', - 'rule_action_convert_deposit' => 'Konwertuj transakcję na wpłatę od ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Konwertuj transakcję na wypłatę', - 'rule_action_convert_withdrawal' => 'Konwertuj transakcję na wypłatę do ":action_value"', - 'rule_action_convert_transfer_choice' => 'Konwertuj transakcję na transfer', - 'rule_action_convert_transfer' => 'Konwertuj transakcję na transfer z ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Dołącz opis do notatek transakcji', - 'rule_action_append_notes_to_descr_choice' => 'Dołącz notatki transakcji do opisu', - 'rule_action_move_descr_to_notes_choice' => 'Zastąp bieżące notatki transakcji opisem', - 'rule_action_move_notes_to_descr_choice' => 'Zastąp bieżący opis notatkami transakcji', - 'rule_action_append_descr_to_notes' => 'Dołącz opis do notatek', - 'rule_action_append_notes_to_descr' => 'Dołącz notatki do opisu', - 'rule_action_move_descr_to_notes' => 'Zastąp notatki opisem', - 'rule_action_move_notes_to_descr' => 'Zastąp opis notatkami', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Ustaw konto docelowe na konto gotówkowe', - 'rule_action_set_source_to_cash_choice' => 'Ustaw konto źródłowe na konto gotówkowe', - 'rulegroup_for_bills_title' => 'Grupa reguł dla rachunków', - 'rulegroup_for_bills_description' => 'Specjalna grupa reguł dla wszystkich reguł dotyczących rachunków.', - 'rule_for_bill_title' => 'Automatycznie wygenerowana reguła dla rachunku ":name"', - 'rule_for_bill_description' => 'Ta reguła została wygenerowana automatycznie by dopasować się do rachunku ":name".', - 'create_rule_for_bill' => 'Utwórz nową regułę dla rachunku ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Reguła dla rachunku ":name"', - 'new_rule_for_bill_description' => 'Ta reguła oznacza transakcje jako powiązane z rachunkiem ":name".', + 'rule_action_delete_transaction_choice' => 'USUŃ transakcję(!)', + 'rule_action_delete_transaction' => 'USUŃ transakcję(!)', + 'rule_action_set_category' => 'Ustaw kategorię na ":action_value"', + 'rule_action_clear_category' => 'Wyczyść kategorię', + 'rule_action_set_budget' => 'Ustaw budżet na ":action_value"', + 'rule_action_clear_budget' => 'Wyczyść budżet', + 'rule_action_add_tag' => 'Dodaj tag ":action_value"', + 'rule_action_remove_tag' => 'Usuń tag ":action_value"', + 'rule_action_remove_all_tags' => 'Usuń wszystkie tagi', + 'rule_action_set_description' => 'Ustaw opis na ":action_value"', + 'rule_action_append_description' => 'Dołącz do opisu wartość ":action_value"', + 'rule_action_prepend_description' => 'Poprzedź opis wartością ":action_value"', + 'rule_action_set_category_choice' => 'Ustaw kategorię na ..', + 'rule_action_clear_category_choice' => 'Wyczyść wszystkie kategorie', + 'rule_action_set_budget_choice' => 'Ustaw budżet na ..', + 'rule_action_clear_budget_choice' => 'Wyczyść wszystkie budżety', + 'rule_action_add_tag_choice' => 'Dodaj tag ..', + 'rule_action_remove_tag_choice' => 'Usuń tag ..', + 'rule_action_remove_all_tags_choice' => 'Usuń wszystkie tagi', + 'rule_action_set_description_choice' => 'Ustaw opis na ..', + 'rule_action_update_piggy_choice' => 'Dodaj / usuń kwotę transakcji w skarbonce ..', + 'rule_action_update_piggy' => 'Dodaj / usuń kwotę transakcji w skarbonce ":action_value"', + 'rule_action_append_description_choice' => 'Dołącz do opisu ..', + 'rule_action_prepend_description_choice' => 'Poprzedź opis ..', + 'rule_action_set_source_account_choice' => 'Ustaw konto źródłowe na ..', + 'rule_action_set_source_account' => 'Ustaw konto źródłowe na :action_value', + 'rule_action_set_destination_account_choice' => 'Ustaw konto docelowe na ..', + 'rule_action_set_destination_account' => 'Ustaw konto docelowe na :action_value', + 'rule_action_append_notes_choice' => 'Dołącz do notatek ..', + 'rule_action_append_notes' => 'Dołącz do notatek wartość ":action_value"', + 'rule_action_prepend_notes_choice' => 'Poprzedź notatki ..', + 'rule_action_prepend_notes' => 'Poprzedź notatki wartością ":action_value"', + 'rule_action_clear_notes_choice' => 'Usuń wszystkie notatki', + 'rule_action_clear_notes' => 'Usuń wszystkie notatki', + 'rule_action_set_notes_choice' => 'Ustaw notatki na ..', + 'rule_action_link_to_bill_choice' => 'Powiąż z rachunkiem ..', + 'rule_action_link_to_bill' => 'Powiąż z rachunkiem ":action_value"', + 'rule_action_switch_accounts_choice' => 'Zamień konta źródłowe i docelowe (tylko przelewy!)', + 'rule_action_switch_accounts' => 'Zamień konto źródłowe i docelowe', + 'rule_action_set_notes' => 'Ustaw notatki na ":action_value"', + 'rule_action_convert_deposit_choice' => 'Konwertuj transakcję na wpłatę', + 'rule_action_convert_deposit' => 'Konwertuj transakcję na wpłatę od ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Konwertuj transakcję na wypłatę', + 'rule_action_convert_withdrawal' => 'Konwertuj transakcję na wypłatę do ":action_value"', + 'rule_action_convert_transfer_choice' => 'Konwertuj transakcję na transfer', + 'rule_action_convert_transfer' => 'Konwertuj transakcję na transfer z ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Dołącz opis do notatek transakcji', + 'rule_action_append_notes_to_descr_choice' => 'Dołącz notatki transakcji do opisu', + 'rule_action_move_descr_to_notes_choice' => 'Zastąp bieżące notatki transakcji opisem', + 'rule_action_move_notes_to_descr_choice' => 'Zastąp bieżący opis notatkami transakcji', + 'rule_action_append_descr_to_notes' => 'Dołącz opis do notatek', + 'rule_action_append_notes_to_descr' => 'Dołącz notatki do opisu', + 'rule_action_move_descr_to_notes' => 'Zastąp notatki opisem', + 'rule_action_move_notes_to_descr' => 'Zastąp opis notatkami', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Ustaw konto docelowe na konto gotówkowe', + 'rule_action_set_source_to_cash_choice' => 'Ustaw konto źródłowe na konto gotówkowe', + 'rulegroup_for_bills_title' => 'Grupa reguł dla rachunków', + 'rulegroup_for_bills_description' => 'Specjalna grupa reguł dla wszystkich reguł dotyczących rachunków.', + 'rule_for_bill_title' => 'Automatycznie wygenerowana reguła dla rachunku ":name"', + 'rule_for_bill_description' => 'Ta reguła została wygenerowana automatycznie by dopasować się do rachunku ":name".', + 'create_rule_for_bill' => 'Utwórz nową regułę dla rachunku ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Reguła dla rachunku ":name"', + 'new_rule_for_bill_description' => 'Ta reguła oznacza transakcje jako powiązane z rachunkiem ":name".', - 'new_rule_for_journal_title' => 'Reguła oparta na transakcji ":description"', - 'new_rule_for_journal_description' => 'Ta reguła jest oparta na transakcji ":description". Będzie zgodna z transakcjami, które są dokładnie takie same.', + 'new_rule_for_journal_title' => 'Reguła oparta na transakcji ":description"', + 'new_rule_for_journal_description' => 'Ta reguła jest oparta na transakcji ":description". Będzie zgodna z transakcjami, które są dokładnie takie same.', // tags - 'store_new_tag' => 'Zachowaj nowy tag', - 'update_tag' => 'Zmodyfikuj tag', - 'no_location_set' => 'Nie ustawiono lokalizacji.', - 'meta_data' => 'Metadane', - 'location' => 'Lokalizacja', - 'location_first_split' => 'Lokalizacja dla tej transakcji może być ustawiona w pierwszym podziale tej transakcji.', - 'without_date' => 'Bez daty', - 'result' => 'Wynik', - 'sums_apply_to_range' => 'Wszystkie sumy mają zastosowanie do wybranego zakresu', - 'mapbox_api_key' => 'Aby użyć mapy, pobierz klucz API z Mapbox. Otwórz plik .env i wprowadź ten kod po MAPBOX_API_KEY=.', - 'press_object_location' => 'Kliknij prawym przyciskiem myszy lub naciśnij i przytrzymaj aby ustawić lokalizację obiektu.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Wyczyść lokalizację', - 'delete_all_selected_tags' => 'Usuń wszystkie zaznaczone tagi', - 'select_tags_to_delete' => 'Nie zapomnij wybrać tagów.', - 'deleted_x_tags' => 'Usunięto :count tag.|Usunięto :count tagów.', - 'create_rule_from_transaction' => 'Utwórz regułę na podstawie transakcji', - 'create_recurring_from_transaction' => 'Utwórz cykliczną transakcję na podstawie transakcji', + 'store_new_tag' => 'Zachowaj nowy tag', + 'update_tag' => 'Zmodyfikuj tag', + 'no_location_set' => 'Nie ustawiono lokalizacji.', + 'meta_data' => 'Metadane', + 'location' => 'Lokalizacja', + 'location_first_split' => 'Lokalizacja dla tej transakcji może być ustawiona w pierwszym podziale tej transakcji.', + 'without_date' => 'Bez daty', + 'result' => 'Wynik', + 'sums_apply_to_range' => 'Wszystkie sumy mają zastosowanie do wybranego zakresu', + 'mapbox_api_key' => 'Aby użyć mapy, pobierz klucz API z Mapbox. Otwórz plik .env i wprowadź ten kod po MAPBOX_API_KEY=.', + 'press_object_location' => 'Kliknij prawym przyciskiem myszy lub naciśnij i przytrzymaj aby ustawić lokalizację obiektu.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Wyczyść lokalizację', + 'delete_all_selected_tags' => 'Usuń wszystkie zaznaczone tagi', + 'select_tags_to_delete' => 'Nie zapomnij wybrać tagów.', + 'deleted_x_tags' => 'Usunięto :count tag.|Usunięto :count tagów.', + 'create_rule_from_transaction' => 'Utwórz regułę na podstawie transakcji', + 'create_recurring_from_transaction' => 'Utwórz cykliczną transakcję na podstawie transakcji', // preferences - 'dark_mode_option_browser' => 'Pozwól Twojej przeglądarce decydować', - 'dark_mode_option_light' => 'Zawsze jasny', - 'dark_mode_option_dark' => 'Zawsze ciemny', - 'equal_to_language' => '(równe językowi)', - 'dark_mode_preference' => 'Tryb ciemny', - 'dark_mode_preference_help' => 'Powiedz Firefly III, kiedy użyć trybu ciemnego.', - 'pref_home_screen_accounts' => 'Konta na stronie domowej', - 'pref_home_screen_accounts_help' => 'Które konta powinny być wyświetlane na stronie głównej?', - 'pref_view_range' => 'Zakres widoku', - 'pref_view_range_help' => 'Niektóre wykresy są automatycznie grupowane w okresy. Twoje budżety będą również pogrupowane w okresy. Jaki okres wolisz?', - 'pref_1D' => 'Dzień', - 'pref_1W' => 'Tydzień', - 'pref_1M' => 'Miesiąc', - 'pref_3M' => 'Trzy miesiące (kwartał)', - 'pref_6M' => 'Sześć miesięcy', - 'pref_1Y' => 'Rok', - 'pref_last365' => 'Ostatni rok', - 'pref_last90' => 'Ostatnie 90 dni', - 'pref_last30' => 'Ostatnie 30 dni', - 'pref_last7' => 'Ostatnie 7 dni', - 'pref_YTD' => 'Rok do daty', - 'pref_QTD' => 'Kwartał do daty', - 'pref_MTD' => 'Miesiąc do daty', - 'pref_languages' => 'Języki', - 'pref_locale' => 'Ustawienia regionalne', - 'pref_languages_help' => 'Firefly III obsługuje kilka języków. Który wolisz?', - 'pref_locale_help' => 'Firefly III pozwala na ustawienie innych ustawień lokalnych, takich jak formatowanie walut, liczb i dat. Wpisy na tej liście mogą nie być obsługiwane przez Twój system. Firefly III nie ma poprawnych ustawień daty dla każdego miejsca; skontaktuj się ze mną, abym mógł to ulepszyć.', - 'pref_locale_no_demo' => 'Ta funkcja nie zadziała dla użytkownika demonstracyjnego.', - 'pref_custom_fiscal_year' => 'Ustawienia roku podatkowego', - 'pref_custom_fiscal_year_label' => 'Włączone', - 'pref_custom_fiscal_year_help' => 'W krajach, w których rok podatkowy nie zaczyna się 1 stycznia i nie kończy 31 grudnia, możesz włączyć tą opcję oraz podać początek / koniec roku podatkowego', - 'pref_fiscal_year_start_label' => 'Początek roku podatkowego', - 'pref_two_factor_auth' => 'Weryfikacja dwuetapowa', - 'pref_two_factor_auth_help' => 'Po włączeniu weryfikacji dwuetapowej (znanej również jako uwierzytelnianie dwuskładnikowe) dodajesz dodatkową warstwę zabezpieczeń do swojego konta. Logujesz się czymś, co znasz (hasło) i czymś co masz (kod weryfikacyjny). Kody weryfikacyjne generowane są przez aplikację w telefonie, na przykład Authy lub Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Włącz weryfikację dwuetapową', - 'pref_two_factor_auth_disabled' => 'Kod weryfikacji dwuetapowej został usunięty i wyłączony', - 'pref_two_factor_auth_remove_it' => 'Nie zapomnij usunąć konta z aplikacji uwierzytelniajcej!', - 'pref_two_factor_auth_code' => 'Zweryfikuj kod', - 'pref_two_factor_auth_code_help' => 'Zeskanuj kod QR za pomocą aplikacji w telefonie, takiej jak Authy lub Google Authenticator i wprowadź wygenerowany kod.', - 'pref_two_factor_auth_reset_code' => 'Zresetuj kod weryfikacyjny', - 'pref_two_factor_auth_disable_2fa' => 'Wyłącz weryfikację dwuetapową', - '2fa_use_secret_instead' => 'Jeżeli nie możesz zeskanować kodu QR użyj sekretu: :secret.', - '2fa_backup_codes' => 'Zachowaj te kody na wypadek zgubienia urządzenia.', - '2fa_already_enabled' => 'Uwierzytelnianie dwuskładnikowe jest już aktywne.', - 'wrong_mfa_code' => 'Ten kod uwierzytelniania nie jest prawidłowy.', - 'pref_save_settings' => 'Zapisz ustawienia', - 'saved_preferences' => 'Preferencje zostały zapisane!', - 'preferences_general' => 'Ogólne', - 'preferences_frontpage' => 'Ekran główny', - 'preferences_security' => 'Bezpieczeństwo', - 'preferences_layout' => 'Układ', - 'preferences_notifications' => 'Powiadomienia', - 'pref_home_show_deposits' => 'Pokaż przychody na stronie domowej', - 'pref_home_show_deposits_info' => 'Ekran główny pokazuje już konta wydatków. Czy chcesz wyświetlać również konta przychodów?', - 'pref_home_do_show_deposits' => 'Tak, pokaż je', - 'successful_count' => 'z których :count zakończone pomyślnie', - 'list_page_size_title' => 'Rozmiar strony', - 'list_page_size_help' => 'Każda lista rzeczy (konta, transakcje itp.) pokazuje co najwyżej tyle na stronę.', - 'list_page_size_label' => 'Rozmiar strony', - 'between_dates' => '(:start i :end)', - 'pref_optional_fields_transaction' => 'Opcjonalne pola dla transakcji', - 'pref_optional_fields_transaction_help' => 'Domyślnie nie wszystkie pola są aktywne podczas tworzenia nowej transakcji (aby uniknąć bałaganu). Poniżej możesz włączyć te pola, jeśli uważasz, że mogą one być przydatne dla Ciebie. Oczywiście każde pole, które jest wyłączone, ale już wypełnione, będzie widoczne niezależnie od ustawienia.', - 'optional_tj_date_fields' => 'Pola dat', - 'optional_tj_other_fields' => 'Inne pola', - 'optional_tj_attachment_fields' => 'Pola załączników', - 'pref_optional_tj_interest_date' => 'Data odsetek', - 'pref_optional_tj_book_date' => 'Data księgowania', - 'pref_optional_tj_process_date' => 'Data przetworzenia', - 'pref_optional_tj_due_date' => 'Termin realizacji', - 'pref_optional_tj_payment_date' => 'Data płatności', - 'pref_optional_tj_invoice_date' => 'Data faktury', - 'pref_optional_tj_internal_reference' => 'Wewnętrzny numer', - 'pref_optional_tj_notes' => 'Notatki', - 'pref_optional_tj_attachments' => 'Załączniki', - 'pref_optional_tj_external_url' => 'Zewnętrzny adres URL', - 'pref_optional_tj_location' => 'Lokalizacja', - 'pref_optional_tj_links' => 'Powiązane transakcje', - 'optional_field_meta_dates' => 'Daty', - 'optional_field_meta_business' => 'Biznesowe', - 'optional_field_attachments' => 'Załączniki', - 'optional_field_meta_data' => 'Opcjonalne metadane', - 'external_url' => 'Zewnętrzny adres URL', - 'pref_notification_bill_reminder' => 'Przypomnienie o wygasających rachunkach', - 'pref_notification_new_access_token' => 'Powiadomienie o utworzeniu nowego tokenu dostępu API', - 'pref_notification_transaction_creation' => 'Powiadomienie o automatycznym utworzeniu transakcji', - 'pref_notification_user_login' => 'Powiadomienie o zalogowaniu się z nowej lokalizacji', - 'pref_notification_rule_action_failures' => 'Powiadom o niewykonaniu akcji reguły (tylko Slack lub Discord)', - 'pref_notifications' => 'Powiadomienia', - 'pref_notifications_help' => 'Wskaż, czy są to powiadomienia, które chcesz otrzymywać. Niektóre powiadomienia mogą zawierać wrażliwe informacje finansowe.', - 'slack_webhook_url' => 'Adres URL webhooka Slack', - 'slack_webhook_url_help' => 'Jeśli chcesz, aby Firefly III powiadamiał Cię używając Slacka, wprowadź tutaj adres URL webhooka. W przeciwnym razie pozostaw pole puste. Jeśli jesteś administratorem, musisz również ustawić ten adres URL w panelu administracji.', - 'slack_url_label' => 'Adres URL "przychodzącego webhooka" dla Slacka', + 'dark_mode_option_browser' => 'Pozwól Twojej przeglądarce decydować', + 'dark_mode_option_light' => 'Zawsze jasny', + 'dark_mode_option_dark' => 'Zawsze ciemny', + 'equal_to_language' => '(równe językowi)', + 'dark_mode_preference' => 'Tryb ciemny', + 'dark_mode_preference_help' => 'Powiedz Firefly III, kiedy użyć trybu ciemnego.', + 'pref_home_screen_accounts' => 'Konta na stronie domowej', + 'pref_home_screen_accounts_help' => 'Które konta powinny być wyświetlane na stronie głównej?', + 'pref_view_range' => 'Zakres widoku', + 'pref_view_range_help' => 'Niektóre wykresy są automatycznie grupowane w okresy. Twoje budżety będą również pogrupowane w okresy. Jaki okres wolisz?', + 'pref_1D' => 'Dzień', + 'pref_1W' => 'Tydzień', + 'pref_1M' => 'Miesiąc', + 'pref_3M' => 'Trzy miesiące (kwartał)', + 'pref_6M' => 'Sześć miesięcy', + 'pref_1Y' => 'Rok', + 'pref_last365' => 'Ostatni rok', + 'pref_last90' => 'Ostatnie 90 dni', + 'pref_last30' => 'Ostatnie 30 dni', + 'pref_last7' => 'Ostatnie 7 dni', + 'pref_YTD' => 'Rok do daty', + 'pref_QTD' => 'Kwartał do daty', + 'pref_MTD' => 'Miesiąc do daty', + 'pref_languages' => 'Języki', + 'pref_locale' => 'Ustawienia regionalne', + 'pref_languages_help' => 'Firefly III obsługuje kilka języków. Który wolisz?', + 'pref_locale_help' => 'Firefly III pozwala na ustawienie innych ustawień lokalnych, takich jak formatowanie walut, liczb i dat. Wpisy na tej liście mogą nie być obsługiwane przez Twój system. Firefly III nie ma poprawnych ustawień daty dla każdego miejsca; skontaktuj się ze mną, abym mógł to ulepszyć.', + 'pref_locale_no_demo' => 'Ta funkcja nie zadziała dla użytkownika demonstracyjnego.', + 'pref_custom_fiscal_year' => 'Ustawienia roku podatkowego', + 'pref_custom_fiscal_year_label' => 'Włączone', + 'pref_custom_fiscal_year_help' => 'W krajach, w których rok podatkowy nie zaczyna się 1 stycznia i nie kończy 31 grudnia, możesz włączyć tą opcję oraz podać początek / koniec roku podatkowego', + 'pref_fiscal_year_start_label' => 'Początek roku podatkowego', + 'pref_two_factor_auth' => 'Weryfikacja dwuetapowa', + 'pref_two_factor_auth_help' => 'Po włączeniu weryfikacji dwuetapowej (znanej również jako uwierzytelnianie dwuskładnikowe) dodajesz dodatkową warstwę zabezpieczeń do swojego konta. Logujesz się czymś, co znasz (hasło) i czymś co masz (kod weryfikacyjny). Kody weryfikacyjne generowane są przez aplikację w telefonie, na przykład Authy lub Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Włącz weryfikację dwuetapową', + 'pref_two_factor_auth_disabled' => 'Kod weryfikacji dwuetapowej został usunięty i wyłączony', + 'pref_two_factor_auth_remove_it' => 'Nie zapomnij usunąć konta z aplikacji uwierzytelniajcej!', + 'pref_two_factor_auth_code' => 'Zweryfikuj kod', + 'pref_two_factor_auth_code_help' => 'Zeskanuj kod QR za pomocą aplikacji w telefonie, takiej jak Authy lub Google Authenticator i wprowadź wygenerowany kod.', + 'pref_two_factor_auth_reset_code' => 'Zresetuj kod weryfikacyjny', + 'pref_two_factor_auth_disable_2fa' => 'Wyłącz weryfikację dwuetapową', + '2fa_use_secret_instead' => 'Jeżeli nie możesz zeskanować kodu QR użyj sekretu: :secret.', + '2fa_backup_codes' => 'Zachowaj te kody na wypadek zgubienia urządzenia.', + '2fa_already_enabled' => 'Uwierzytelnianie dwuskładnikowe jest już aktywne.', + 'wrong_mfa_code' => 'Ten kod uwierzytelniania nie jest prawidłowy.', + 'pref_save_settings' => 'Zapisz ustawienia', + 'saved_preferences' => 'Preferencje zostały zapisane!', + 'preferences_general' => 'Ogólne', + 'preferences_frontpage' => 'Ekran główny', + 'preferences_security' => 'Bezpieczeństwo', + 'preferences_layout' => 'Układ', + 'preferences_notifications' => 'Powiadomienia', + 'pref_home_show_deposits' => 'Pokaż przychody na stronie domowej', + 'pref_home_show_deposits_info' => 'Ekran główny pokazuje już konta wydatków. Czy chcesz wyświetlać również konta przychodów?', + 'pref_home_do_show_deposits' => 'Tak, pokaż je', + 'successful_count' => 'z których :count zakończone pomyślnie', + 'list_page_size_title' => 'Rozmiar strony', + 'list_page_size_help' => 'Każda lista rzeczy (konta, transakcje itp.) pokazuje co najwyżej tyle na stronę.', + 'list_page_size_label' => 'Rozmiar strony', + 'between_dates' => '(:start i :end)', + 'pref_optional_fields_transaction' => 'Opcjonalne pola dla transakcji', + 'pref_optional_fields_transaction_help' => 'Domyślnie nie wszystkie pola są aktywne podczas tworzenia nowej transakcji (aby uniknąć bałaganu). Poniżej możesz włączyć te pola, jeśli uważasz, że mogą one być przydatne dla Ciebie. Oczywiście każde pole, które jest wyłączone, ale już wypełnione, będzie widoczne niezależnie od ustawienia.', + 'optional_tj_date_fields' => 'Pola dat', + 'optional_tj_other_fields' => 'Inne pola', + 'optional_tj_attachment_fields' => 'Pola załączników', + 'pref_optional_tj_interest_date' => 'Data odsetek', + 'pref_optional_tj_book_date' => 'Data księgowania', + 'pref_optional_tj_process_date' => 'Data przetworzenia', + 'pref_optional_tj_due_date' => 'Termin realizacji', + 'pref_optional_tj_payment_date' => 'Data płatności', + 'pref_optional_tj_invoice_date' => 'Data faktury', + 'pref_optional_tj_internal_reference' => 'Wewnętrzny numer', + 'pref_optional_tj_notes' => 'Notatki', + 'pref_optional_tj_attachments' => 'Załączniki', + 'pref_optional_tj_external_url' => 'Zewnętrzny adres URL', + 'pref_optional_tj_location' => 'Lokalizacja', + 'pref_optional_tj_links' => 'Powiązane transakcje', + 'optional_field_meta_dates' => 'Daty', + 'optional_field_meta_business' => 'Biznesowe', + 'optional_field_attachments' => 'Załączniki', + 'optional_field_meta_data' => 'Opcjonalne metadane', + 'external_url' => 'Zewnętrzny adres URL', + 'pref_notification_bill_reminder' => 'Przypomnienie o wygasających rachunkach', + 'pref_notification_new_access_token' => 'Powiadomienie o utworzeniu nowego tokenu dostępu API', + 'pref_notification_transaction_creation' => 'Powiadomienie o automatycznym utworzeniu transakcji', + 'pref_notification_user_login' => 'Powiadomienie o zalogowaniu się z nowej lokalizacji', + 'pref_notification_rule_action_failures' => 'Powiadom o niewykonaniu akcji reguły (tylko Slack lub Discord)', + 'pref_notifications' => 'Powiadomienia', + 'pref_notifications_help' => 'Wskaż, czy są to powiadomienia, które chcesz otrzymywać. Niektóre powiadomienia mogą zawierać wrażliwe informacje finansowe.', + 'slack_webhook_url' => 'Adres URL webhooka Slack', + 'slack_webhook_url_help' => 'Jeśli chcesz, aby Firefly III powiadamiał Cię używając Slacka, wprowadź tutaj adres URL webhooka. W przeciwnym razie pozostaw pole puste. Jeśli jesteś administratorem, musisz również ustawić ten adres URL w panelu administracji.', + 'slack_url_label' => 'Adres URL "przychodzącego webhooka" dla Slacka', // Financial administrations - 'administration_index' => 'Zarządzanie finansami', - 'administrations_index_menu' => 'Zarządzanie finansami', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Zarządzanie finansami', + 'administrations_index_menu' => 'Zarządzanie finansami', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Wyczyść dane z Firefly III', - 'purge_data_expl' => '"Wyczyszczenie" oznacza "usunięcie tego, co zostało już usunięte". W normalnych warunkach Firefly III nie usuwa nic na stałe. Po prostu je ukrywa. Przycisk poniżej usuwa wszystkie "usunięte" rekordy na ZAWSZE.', - 'delete_stuff_header' => 'Usuń i wyczyść dane', - 'purge_all_data' => 'Wyczyść wszystkie usunięte wpisy', - 'purge_data' => 'Wyczyść dane', - 'purged_all_records' => 'Wszystkie usunięte rekordy zostały wyczyszczone.', - 'delete_data_title' => 'Usuń dane z Firefly III', - 'permanent_delete_stuff' => 'Możesz usuwać rzeczy z Firefly III. Użycie poniższych przycisków oznacza, że Twoje wpisy zostaną usunięte z widoku i ukryte. Nie ma przycisku cofnięcia, ale wpisy mogą pozostać w bazie danych, skąd możesz je odzyskać, jeśli to konieczne.', - 'other_sessions_logged_out' => 'Wszystkie twoje inne sesje zostały wylogowane.', - 'delete_unused_accounts' => 'Usunięcie nieużywanych kont spowoduje wyczyszczenie list auto-uzupełniania.', - 'delete_all_unused_accounts' => 'Usuń nieużywane konta', - 'deleted_all_unused_accounts' => 'Wszystkie nieużywane konta zostały usunięte', - 'delete_all_budgets' => 'Usuń WSZYSTKIE budżety', - 'delete_all_categories' => 'Usuń WSZYSTKIE kategorie', - 'delete_all_tags' => 'Usuń WSZYSTKIE tagi', - 'delete_all_bills' => 'Usuń WSZYSTKIE rachunki', - 'delete_all_piggy_banks' => 'Usuń WSZYSTKIE skarbonki', - 'delete_all_rules' => 'Usuń WSZYSTKIE reguły', - 'delete_all_recurring' => 'Usuń WSZYSTKIE transakcje cykliczne', - 'delete_all_object_groups' => 'Usuń WSZYSTKIE grupy obiektów', - 'delete_all_accounts' => 'Usuń WSZYSTKIE konta', - 'delete_all_asset_accounts' => 'Usuń WSZYSTKIE konta aktywów', - 'delete_all_expense_accounts' => 'Usuń WSZYSTKIE konta wydatków', - 'delete_all_revenue_accounts' => 'Usuń WSZYSTKIE konta przychodów', - 'delete_all_liabilities' => 'Usuń WSZYSTKIE swoje zobowiązania', - 'delete_all_transactions' => 'Usuń WSZYSTKIE transakcje', - 'delete_all_withdrawals' => 'Usuń WSZYSTKIE wydatki', - 'delete_all_deposits' => 'Usuń WSZYSTKIE wpłaty', - 'delete_all_transfers' => 'Usuń WSZYSTKIE przelewy', - 'also_delete_transactions' => 'Usunięcie kont spowoduje również usunięcie WSZYSTKICH powiązanych wydatków, wpłat i transferów!', - 'deleted_all_budgets' => 'Usunięto wszystkie budżety', - 'deleted_all_categories' => 'Usunięto wszystkie kategorie', - 'deleted_all_tags' => 'Usunięto wszystkie tagi', - 'deleted_all_bills' => 'Wszystkie rachunki zostały usunięte', - 'deleted_all_piggy_banks' => 'Wszystkie skarbonki zostały usunięte', - 'deleted_all_rules' => 'Wszystkie reguły i grupy reguł zostały usunięte', - 'deleted_all_object_groups' => 'Wszystkie grupy zostały usunięte', - 'deleted_all_accounts' => 'Wszystkie konta zostały usunięte', - 'deleted_all_asset_accounts' => 'Wszystkie konta aktywów zostały usunięte', - 'deleted_all_expense_accounts' => 'Wszystkie konta wydatków zostały usunięte', - 'deleted_all_revenue_accounts' => 'Wszystkie konta przychodów zostały usunięte', - 'deleted_all_liabilities' => 'Wszystkie zobowiązania zostały usunięte', - 'deleted_all_transactions' => 'Wszystkie transakcje zostały usunięte', - 'deleted_all_withdrawals' => 'Wszystkie wydatki zostały usunięte', - 'deleted_all_deposits' => 'Wszystkie wpłaty zostały usunięte', - 'deleted_all_transfers' => 'Wszystkie przelewy zostały usunięte', - 'deleted_all_recurring' => 'Wszystkie cykliczne transakcje zostały usunięte', - 'change_your_password' => 'Zmień swoje hasło', - 'delete_account' => 'Usuń konto', - 'current_password' => 'Bieżące hasło', - 'new_password' => 'Nowe Hasło', - 'new_password_again' => 'Nowe hasło (ponownie)', - 'delete_your_account' => 'Usuń swoje konto', - 'delete_your_account_help' => 'Usunięcie twojego konta usunie również wszystkie konta, transakcje, wszystko co mogłeś mieć zapisane w Firefly III. Po prostu ZNIKNIE.', - 'delete_your_account_password' => 'Wprowadź hasło aby kontynuować.', - 'password' => 'Hasło', - 'are_you_sure' => 'Jesteś pewny? Nie możesz tego cofnąć.', - 'delete_account_button' => 'USUŃ swoje konto', - 'invalid_current_password' => 'Nieprawidłowe bieżące hasło!', - 'password_changed' => 'Hasło zostało zmienione!', - 'should_change' => 'Chodzi o to, aby zmienić swoje hasło.', - 'invalid_password' => 'Nieprawidłowe hasło!', - 'what_is_pw_security' => 'Co to jest "Sprawdź bezpieczeństwo hasła"?', - 'secure_pw_title' => 'Jak wybrać bezpieczne hasło', - 'forgot_password_response' => 'Dziękujemy. Jeśli istnieje konto z tym adresem e-mail, instrukcje znajdziesz w swojej skrzynce odbiorczej.', - 'secure_pw_history' => 'Nie ma tygodnia w którym nie czytalibyśmy w wiadomościach o stronie, która straciła hasła swoich użytkowników. Hakerzy i złodzieje używają tych haseł, aby wykraść twoje prywatne informacje. Te informacje są cenne.', - 'secure_pw_ff' => 'Czy używasz tego samego hasła w całym Internecie? Jeśli jedna strona straci Twoje hasło, hakerzy będą mieli dostęp do wszystkich Twoich danych. Firefly III polega na Twoim wyborze silnego i unikatowego hasła w celu ochrony Twojej dokumentacji finansowej.', - 'secure_pw_check_box' => 'Aby Ci pomóc, Firefly III może sprawdzić, czy hasło, którego chcesz użyć, zostało w przeszłości skradzione. Jeśli okaże się to prawdą, Firefly III radzi NIE używać tego hasła.', - 'secure_pw_working_title' => 'Jak to działa?', - 'secure_pw_working' => 'Zaznaczając to pole, Firefly III wyśle pierwsze pięć znaków skrótu SHA1 Twojego hasła do strony internetowej Troy Hunt, aby sprawdzić, czy znajduje się ono na liście haseł, które wyciekły. To powstrzyma Cię przed używaniem niebezpiecznych haseł, co jest zalecane w najnowszej specjalnej publikacji Narodowy Instytut Standaryzacji i Technologii (NIST) na ten temat.', - 'secure_pw_should' => 'Czy powinienem zaznaczyć to pole?', - 'secure_pw_long_password' => 'Tak. Zawsze sprawdź, czy hasło jest bezpieczne.', - 'command_line_token' => 'Token wiersza poleceń', - 'explain_command_line_token' => 'Potrzebujesz tego tokenu aby wykonywać operacje (takie jak eksportowanie danych) za pomocą wiersza poleceń. Bez niego takie wrażliwe polecenia nie będą działać. Nie udostępniaj nikomu swojego tokenu. Nikt Cię o niego nie zapyta, nawet ja. Jeżeli obawiasz się, że go straciłeś lub jesteś paranoikiem, wygeneruj nowy token używając przycisku.', - 'regenerate_command_line_token' => 'Wygeneruj nowy token wiersza poleceń', - 'token_regenerated' => 'Wygenerowano nowy token wiersza poleceń', - 'change_your_email' => 'Zmień swój adres e-mail', - 'email_verification' => 'Wiadomość e-mail zostanie wysłana na stary ORAZ nowy adres e-mail. Ze względów bezpieczeństwa, nie będziesz mógł się zalogować, dopóki nie zweryfikujesz nowego adresu e-mail. Jeśli nie masz pewności, czy twoja instalacja Firefly III umożliwia wysyłanie wiadomości e-mail, nie korzystaj z tej funkcji. Jeśli jesteś administratorem, możesz przetestować to w panelu administracyjnym.', - 'email_changed_logout' => 'Dopóki nie zweryfikujesz swojego adresu e-mail, nie możesz się zalogować.', - 'login_with_new_email' => 'Teraz możesz logować się nowym adresem e-mail.', - 'login_with_old_email' => 'Teraz ponownie możesz logować się starym adresem e-mail.', - 'login_provider_local_only' => 'Ta akcja nie jest dostępna gdy uwierzytelniasz się poprzez ":login_provider".', - 'external_user_mgt_disabled' => 'Ta akcja nie jest dostępna, gdy Firefly III nie jest odpowiedzialny za zarządzanie użytkownikiem lub obsługę uwierzytelniania.', - 'external_auth_disabled' => 'Ta akcja nie jest dostępna, gdy Firefly III nie jest odpowiedzialny za obsługę uwierzytelniania.', - 'delete_local_info_only' => 'Ponieważ Firefly III nie jest odpowiedzialny za zarządzanie użytkownikami lub obsługę uwierzytelniania, ta funkcja usunie tylko lokalne informacje Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Klienci OAuth', - 'profile_oauth_no_clients' => 'Nie utworzyłeś żadnych klientów OAuth.', - 'profile_oauth_clients_external_auth' => 'Jeśli używasz zewnętrznego dostawcy uwierzytelniania, takiego jak Authelia, klienci OAuth nie będą działać. Możesz używać tylko osobistych tokenów dostępu.', - 'profile_oauth_clients_header' => 'Klienci', - 'profile_oauth_client_id' => 'ID klienta', - 'profile_oauth_client_name' => 'Nazwa', - 'profile_oauth_client_secret' => 'Sekretny klucz', - 'profile_oauth_create_new_client' => 'Utwórz nowego klienta', - 'profile_oauth_create_client' => 'Utwórz klienta', - 'profile_oauth_edit_client' => 'Edytuj klienta', - 'profile_oauth_name_help' => 'Coś, co Twoi użytkownicy będą rozpoznawać i ufać.', - 'profile_oauth_redirect_url' => 'Przekierowanie URL', - 'profile_oauth_redirect_url_help' => 'Adres URL wywołania zwrotnego autoryzacji aplikacji.', - 'profile_authorized_apps' => 'Autoryzowane aplikacje', - 'profile_authorized_clients' => 'Autoryzowani klienci', - 'profile_scopes' => 'Zakresy', - 'profile_revoke' => 'Unieważnij', - 'profile_oauth_client_secret_title' => 'Sekret klienta', - 'profile_oauth_client_secret_expl' => 'Oto twój nowy sekret klienta. Jest to jedyny raz, gdy zostanie wyświetlony, więc nie zgub go! Możesz teraz użyć tego sekretu, aby wykonać zapytania API.', - 'profile_personal_access_tokens' => 'Osobiste tokeny dostępu', - 'profile_personal_access_token' => 'Osobisty token dostępu', - 'profile_oauth_confidential' => 'Poufne', - 'profile_oauth_confidential_help' => 'Wymagaj od klienta uwierzytelnienia za pomocą sekretu. Poufni klienci mogą przechowywać poświadczenia w bezpieczny sposób bez narażania ich na dostęp przez nieuprawnione strony. Publiczne aplikacje, takie jak natywne aplikacje desktopowe lub JavaScript SPA, nie są w stanie bezpiecznie trzymać sekretów.', - 'profile_personal_access_token_explanation' => 'Oto twój nowy osobisty token dostępu. Jest to jedyny raz, gdy zostanie wyświetlony, więc nie zgub go! Możesz teraz użyć tego tokenu, aby wykonać zapytania API.', - 'profile_no_personal_access_token' => 'Nie utworzyłeś żadnych osobistych tokenów.', - 'profile_create_new_token' => 'Utwórz nowy token', - 'profile_create_token' => 'Utwórz token', - 'profile_create' => 'Utwórz', - 'profile_save_changes' => 'Zapisz zmiany', - 'profile_whoops' => 'Uuuups!', - 'profile_something_wrong' => 'Coś poszło nie tak!', - 'profile_try_again' => 'Coś poszło nie tak. Spróbuj ponownie.', - 'amounts' => 'Kwoty', - 'multi_account_warning_unknown' => 'W zależności od rodzaju transakcji, którą tworzysz, konto źródłowe i/lub docelowe kolejnych podziałów może zostać ustawione na konto zdefiniowane w pierwszym podziale transakcji.', - 'multi_account_warning_withdrawal' => 'Pamiętaj, że konto źródłowe kolejnych podziałów zostanie ustawione na konto zdefiniowane w pierwszym podziale wypłaty.', - 'multi_account_warning_deposit' => 'Pamiętaj, że konto docelowe kolejnych podziałów zostanie ustawione na konto zdefiniowane w pierwszym podziale wpłaty.', - 'multi_account_warning_transfer' => 'Pamiętaj, że konta źródłowe i docelowe kolejnych podziałów zostaną ustawione na konto zdefiniowane w pierwszym podziale transferu.', + 'purge_data_title' => 'Wyczyść dane z Firefly III', + 'purge_data_expl' => '"Wyczyszczenie" oznacza "usunięcie tego, co zostało już usunięte". W normalnych warunkach Firefly III nie usuwa nic na stałe. Po prostu je ukrywa. Przycisk poniżej usuwa wszystkie "usunięte" rekordy na ZAWSZE.', + 'delete_stuff_header' => 'Usuń i wyczyść dane', + 'purge_all_data' => 'Wyczyść wszystkie usunięte wpisy', + 'purge_data' => 'Wyczyść dane', + 'purged_all_records' => 'Wszystkie usunięte rekordy zostały wyczyszczone.', + 'delete_data_title' => 'Usuń dane z Firefly III', + 'permanent_delete_stuff' => 'Możesz usuwać rzeczy z Firefly III. Użycie poniższych przycisków oznacza, że Twoje wpisy zostaną usunięte z widoku i ukryte. Nie ma przycisku cofnięcia, ale wpisy mogą pozostać w bazie danych, skąd możesz je odzyskać, jeśli to konieczne.', + 'other_sessions_logged_out' => 'Wszystkie twoje inne sesje zostały wylogowane.', + 'delete_unused_accounts' => 'Usunięcie nieużywanych kont spowoduje wyczyszczenie list auto-uzupełniania.', + 'delete_all_unused_accounts' => 'Usuń nieużywane konta', + 'deleted_all_unused_accounts' => 'Wszystkie nieużywane konta zostały usunięte', + 'delete_all_budgets' => 'Usuń WSZYSTKIE budżety', + 'delete_all_categories' => 'Usuń WSZYSTKIE kategorie', + 'delete_all_tags' => 'Usuń WSZYSTKIE tagi', + 'delete_all_bills' => 'Usuń WSZYSTKIE rachunki', + 'delete_all_piggy_banks' => 'Usuń WSZYSTKIE skarbonki', + 'delete_all_rules' => 'Usuń WSZYSTKIE reguły', + 'delete_all_recurring' => 'Usuń WSZYSTKIE transakcje cykliczne', + 'delete_all_object_groups' => 'Usuń WSZYSTKIE grupy obiektów', + 'delete_all_accounts' => 'Usuń WSZYSTKIE konta', + 'delete_all_asset_accounts' => 'Usuń WSZYSTKIE konta aktywów', + 'delete_all_expense_accounts' => 'Usuń WSZYSTKIE konta wydatków', + 'delete_all_revenue_accounts' => 'Usuń WSZYSTKIE konta przychodów', + 'delete_all_liabilities' => 'Usuń WSZYSTKIE swoje zobowiązania', + 'delete_all_transactions' => 'Usuń WSZYSTKIE transakcje', + 'delete_all_withdrawals' => 'Usuń WSZYSTKIE wydatki', + 'delete_all_deposits' => 'Usuń WSZYSTKIE wpłaty', + 'delete_all_transfers' => 'Usuń WSZYSTKIE przelewy', + 'also_delete_transactions' => 'Usunięcie kont spowoduje również usunięcie WSZYSTKICH powiązanych wydatków, wpłat i transferów!', + 'deleted_all_budgets' => 'Usunięto wszystkie budżety', + 'deleted_all_categories' => 'Usunięto wszystkie kategorie', + 'deleted_all_tags' => 'Usunięto wszystkie tagi', + 'deleted_all_bills' => 'Wszystkie rachunki zostały usunięte', + 'deleted_all_piggy_banks' => 'Wszystkie skarbonki zostały usunięte', + 'deleted_all_rules' => 'Wszystkie reguły i grupy reguł zostały usunięte', + 'deleted_all_object_groups' => 'Wszystkie grupy zostały usunięte', + 'deleted_all_accounts' => 'Wszystkie konta zostały usunięte', + 'deleted_all_asset_accounts' => 'Wszystkie konta aktywów zostały usunięte', + 'deleted_all_expense_accounts' => 'Wszystkie konta wydatków zostały usunięte', + 'deleted_all_revenue_accounts' => 'Wszystkie konta przychodów zostały usunięte', + 'deleted_all_liabilities' => 'Wszystkie zobowiązania zostały usunięte', + 'deleted_all_transactions' => 'Wszystkie transakcje zostały usunięte', + 'deleted_all_withdrawals' => 'Wszystkie wydatki zostały usunięte', + 'deleted_all_deposits' => 'Wszystkie wpłaty zostały usunięte', + 'deleted_all_transfers' => 'Wszystkie przelewy zostały usunięte', + 'deleted_all_recurring' => 'Wszystkie cykliczne transakcje zostały usunięte', + 'change_your_password' => 'Zmień swoje hasło', + 'delete_account' => 'Usuń konto', + 'current_password' => 'Bieżące hasło', + 'new_password' => 'Nowe Hasło', + 'new_password_again' => 'Nowe hasło (ponownie)', + 'delete_your_account' => 'Usuń swoje konto', + 'delete_your_account_help' => 'Usunięcie twojego konta usunie również wszystkie konta, transakcje, wszystko co mogłeś mieć zapisane w Firefly III. Po prostu ZNIKNIE.', + 'delete_your_account_password' => 'Wprowadź hasło aby kontynuować.', + 'password' => 'Hasło', + 'are_you_sure' => 'Jesteś pewny? Nie możesz tego cofnąć.', + 'delete_account_button' => 'USUŃ swoje konto', + 'invalid_current_password' => 'Nieprawidłowe bieżące hasło!', + 'password_changed' => 'Hasło zostało zmienione!', + 'should_change' => 'Chodzi o to, aby zmienić swoje hasło.', + 'invalid_password' => 'Nieprawidłowe hasło!', + 'what_is_pw_security' => 'Co to jest "Sprawdź bezpieczeństwo hasła"?', + 'secure_pw_title' => 'Jak wybrać bezpieczne hasło', + 'forgot_password_response' => 'Dziękujemy. Jeśli istnieje konto z tym adresem e-mail, instrukcje znajdziesz w swojej skrzynce odbiorczej.', + 'secure_pw_history' => 'Nie ma tygodnia w którym nie czytalibyśmy w wiadomościach o stronie, która straciła hasła swoich użytkowników. Hakerzy i złodzieje używają tych haseł, aby wykraść twoje prywatne informacje. Te informacje są cenne.', + 'secure_pw_ff' => 'Czy używasz tego samego hasła w całym Internecie? Jeśli jedna strona straci Twoje hasło, hakerzy będą mieli dostęp do wszystkich Twoich danych. Firefly III polega na Twoim wyborze silnego i unikatowego hasła w celu ochrony Twojej dokumentacji finansowej.', + 'secure_pw_check_box' => 'Aby Ci pomóc, Firefly III może sprawdzić, czy hasło, którego chcesz użyć, zostało w przeszłości skradzione. Jeśli okaże się to prawdą, Firefly III radzi NIE używać tego hasła.', + 'secure_pw_working_title' => 'Jak to działa?', + 'secure_pw_working' => 'Zaznaczając to pole, Firefly III wyśle pierwsze pięć znaków skrótu SHA1 Twojego hasła do strony internetowej Troy Hunt, aby sprawdzić, czy znajduje się ono na liście haseł, które wyciekły. To powstrzyma Cię przed używaniem niebezpiecznych haseł, co jest zalecane w najnowszej specjalnej publikacji Narodowy Instytut Standaryzacji i Technologii (NIST) na ten temat.', + 'secure_pw_should' => 'Czy powinienem zaznaczyć to pole?', + 'secure_pw_long_password' => 'Tak. Zawsze sprawdź, czy hasło jest bezpieczne.', + 'command_line_token' => 'Token wiersza poleceń', + 'explain_command_line_token' => 'Potrzebujesz tego tokenu aby wykonywać operacje (takie jak eksportowanie danych) za pomocą wiersza poleceń. Bez niego takie wrażliwe polecenia nie będą działać. Nie udostępniaj nikomu swojego tokenu. Nikt Cię o niego nie zapyta, nawet ja. Jeżeli obawiasz się, że go straciłeś lub jesteś paranoikiem, wygeneruj nowy token używając przycisku.', + 'regenerate_command_line_token' => 'Wygeneruj nowy token wiersza poleceń', + 'token_regenerated' => 'Wygenerowano nowy token wiersza poleceń', + 'change_your_email' => 'Zmień swój adres e-mail', + 'email_verification' => 'Wiadomość e-mail zostanie wysłana na stary ORAZ nowy adres e-mail. Ze względów bezpieczeństwa, nie będziesz mógł się zalogować, dopóki nie zweryfikujesz nowego adresu e-mail. Jeśli nie masz pewności, czy twoja instalacja Firefly III umożliwia wysyłanie wiadomości e-mail, nie korzystaj z tej funkcji. Jeśli jesteś administratorem, możesz przetestować to w panelu administracyjnym.', + 'email_changed_logout' => 'Dopóki nie zweryfikujesz swojego adresu e-mail, nie możesz się zalogować.', + 'login_with_new_email' => 'Teraz możesz logować się nowym adresem e-mail.', + 'login_with_old_email' => 'Teraz ponownie możesz logować się starym adresem e-mail.', + 'login_provider_local_only' => 'Ta akcja nie jest dostępna gdy uwierzytelniasz się poprzez ":login_provider".', + 'external_user_mgt_disabled' => 'Ta akcja nie jest dostępna, gdy Firefly III nie jest odpowiedzialny za zarządzanie użytkownikiem lub obsługę uwierzytelniania.', + 'external_auth_disabled' => 'Ta akcja nie jest dostępna, gdy Firefly III nie jest odpowiedzialny za obsługę uwierzytelniania.', + 'delete_local_info_only' => 'Ponieważ Firefly III nie jest odpowiedzialny za zarządzanie użytkownikami lub obsługę uwierzytelniania, ta funkcja usunie tylko lokalne informacje Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Klienci OAuth', + 'profile_oauth_no_clients' => 'Nie utworzyłeś żadnych klientów OAuth.', + 'profile_oauth_clients_external_auth' => 'Jeśli używasz zewnętrznego dostawcy uwierzytelniania, takiego jak Authelia, klienci OAuth nie będą działać. Możesz używać tylko osobistych tokenów dostępu.', + 'profile_oauth_clients_header' => 'Klienci', + 'profile_oauth_client_id' => 'ID klienta', + 'profile_oauth_client_name' => 'Nazwa', + 'profile_oauth_client_secret' => 'Sekretny klucz', + 'profile_oauth_create_new_client' => 'Utwórz nowego klienta', + 'profile_oauth_create_client' => 'Utwórz klienta', + 'profile_oauth_edit_client' => 'Edytuj klienta', + 'profile_oauth_name_help' => 'Coś, co Twoi użytkownicy będą rozpoznawać i ufać.', + 'profile_oauth_redirect_url' => 'Przekierowanie URL', + 'profile_oauth_redirect_url_help' => 'Adres URL wywołania zwrotnego autoryzacji aplikacji.', + 'profile_authorized_apps' => 'Autoryzowane aplikacje', + 'profile_authorized_clients' => 'Autoryzowani klienci', + 'profile_scopes' => 'Zakresy', + 'profile_revoke' => 'Unieważnij', + 'profile_oauth_client_secret_title' => 'Sekret klienta', + 'profile_oauth_client_secret_expl' => 'Oto twój nowy sekret klienta. Jest to jedyny raz, gdy zostanie wyświetlony, więc nie zgub go! Możesz teraz użyć tego sekretu, aby wykonać zapytania API.', + 'profile_personal_access_tokens' => 'Osobiste tokeny dostępu', + 'profile_personal_access_token' => 'Osobisty token dostępu', + 'profile_oauth_confidential' => 'Poufne', + 'profile_oauth_confidential_help' => 'Wymagaj od klienta uwierzytelnienia za pomocą sekretu. Poufni klienci mogą przechowywać poświadczenia w bezpieczny sposób bez narażania ich na dostęp przez nieuprawnione strony. Publiczne aplikacje, takie jak natywne aplikacje desktopowe lub JavaScript SPA, nie są w stanie bezpiecznie trzymać sekretów.', + 'profile_personal_access_token_explanation' => 'Oto twój nowy osobisty token dostępu. Jest to jedyny raz, gdy zostanie wyświetlony, więc nie zgub go! Możesz teraz użyć tego tokenu, aby wykonać zapytania API.', + 'profile_no_personal_access_token' => 'Nie utworzyłeś żadnych osobistych tokenów.', + 'profile_create_new_token' => 'Utwórz nowy token', + 'profile_create_token' => 'Utwórz token', + 'profile_create' => 'Utwórz', + 'profile_save_changes' => 'Zapisz zmiany', + 'profile_whoops' => 'Uuuups!', + 'profile_something_wrong' => 'Coś poszło nie tak!', + 'profile_try_again' => 'Coś poszło nie tak. Spróbuj ponownie.', + 'amounts' => 'Kwoty', + 'multi_account_warning_unknown' => 'W zależności od rodzaju transakcji, którą tworzysz, konto źródłowe i/lub docelowe kolejnych podziałów może zostać ustawione na konto zdefiniowane w pierwszym podziale transakcji.', + 'multi_account_warning_withdrawal' => 'Pamiętaj, że konto źródłowe kolejnych podziałów zostanie ustawione na konto zdefiniowane w pierwszym podziale wypłaty.', + 'multi_account_warning_deposit' => 'Pamiętaj, że konto docelowe kolejnych podziałów zostanie ustawione na konto zdefiniowane w pierwszym podziale wpłaty.', + 'multi_account_warning_transfer' => 'Pamiętaj, że konta źródłowe i docelowe kolejnych podziałów zostaną ustawione na konto zdefiniowane w pierwszym podziale transferu.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Eksportuj dane z Firefly III', - 'export_data_menu' => 'Eksportuj dane', - 'export_data_bc' => 'Eksportuj dane z Firefly III', - 'export_data_main_title' => 'Eksportuj dane z Firefly III', - 'export_data_expl' => 'Ten odnośnik pozwala wyeksportować wszystkie transakcje i metadane z Firefly III. Więcej informacji o procesie znajdziesz w pomocy (ikonka (?) w prawym górnym rogu).', - 'export_data_all_transactions' => 'Eksportuj wszystkie transakcje', - 'export_data_advanced_expl' => 'Jeśli potrzebujesz bardziej zaawansowanego lub specyficznego rodzaju eksportu, przeczytaj pomoc, jak użyć polecenia konsoli php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Eksportuj dane z Firefly III', + 'export_data_menu' => 'Eksportuj dane', + 'export_data_bc' => 'Eksportuj dane z Firefly III', + 'export_data_main_title' => 'Eksportuj dane z Firefly III', + 'export_data_expl' => 'Ten odnośnik pozwala wyeksportować wszystkie transakcje i metadane z Firefly III. Więcej informacji o procesie znajdziesz w pomocy (ikonka (?) w prawym górnym rogu).', + 'export_data_all_transactions' => 'Eksportuj wszystkie transakcje', + 'export_data_advanced_expl' => 'Jeśli potrzebujesz bardziej zaawansowanego lub specyficznego rodzaju eksportu, przeczytaj pomoc, jak użyć polecenia konsoli php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Jeden załącznik |:count załączników', - 'attachments' => 'Załączniki', - 'edit_attachment' => 'Modyfikuj załącznik ":name"', - 'update_attachment' => 'Aktualizuj załącznik', - 'delete_attachment' => 'Usuń załącznik ":name"', - 'attachment_deleted' => 'Usunięto załącznik ":name"', - 'liabilities_deleted' => 'Usunięto zobowiązanie ":name"', - 'attachment_updated' => 'Zmodyfikowano załącznik ":name"', - 'upload_max_file_size' => 'Maksymalny rozmiar pliku to: :size', - 'list_all_attachments' => 'Lista wszystkich załączników', + 'nr_of_attachments' => 'Jeden załącznik |:count załączników', + 'attachments' => 'Załączniki', + 'edit_attachment' => 'Modyfikuj załącznik ":name"', + 'update_attachment' => 'Aktualizuj załącznik', + 'delete_attachment' => 'Usuń załącznik ":name"', + 'attachment_deleted' => 'Usunięto załącznik ":name"', + 'liabilities_deleted' => 'Usunięto zobowiązanie ":name"', + 'attachment_updated' => 'Zmodyfikowano załącznik ":name"', + 'upload_max_file_size' => 'Maksymalny rozmiar pliku to: :size', + 'list_all_attachments' => 'Lista wszystkich załączników', // transaction index - 'is_reconciled_fields_dropped' => 'Ponieważ ta transakcja jest uzgodniona, nie będziesz w stanie zaktualizować ani kont, ani kwot.', - 'title_expenses' => 'Wydatki', - 'title_withdrawal' => 'Wydatki', - 'title_revenue' => 'Przychód / dochód', - 'title_deposit' => 'Przychód / dochód', - 'title_transfer' => 'Transfery', - 'title_transfers' => 'Transfery', - 'submission_options' => 'Opcje zapisu', - 'apply_rules_checkbox' => 'Zastosuj reguły', - 'fire_webhooks_checkbox' => 'Uruchom webhooki', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Ponieważ ta transakcja jest uzgodniona, nie będziesz w stanie zaktualizować ani kont, ani kwot.', + 'title_expenses' => 'Wydatki', + 'title_withdrawal' => 'Wydatki', + 'title_revenue' => 'Przychód / dochód', + 'title_deposit' => 'Przychód / dochód', + 'title_transfer' => 'Transfery', + 'title_transfers' => 'Transfery', + 'submission_options' => 'Opcje zapisu', + 'apply_rules_checkbox' => 'Zastosuj reguły', + 'fire_webhooks_checkbox' => 'Uruchom webhooki', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Ta transakcja jest już wypłatą', - 'convert_is_already_type_Deposit' => 'Ta transakcja jest już wpłatą', - 'convert_is_already_type_Transfer' => 'Ta transakcja jest już transferem', - 'convert_to_Withdrawal' => 'Konwertuj ":description" na wypłatę', - 'convert_to_Deposit' => 'Konwertuj ":description" na wpłatę', - 'convert_to_Transfer' => 'Konwertuj ":description" na transfer', - 'convert_options_WithdrawalDeposit' => 'Konwertuj wypłatę na wpłatę', - 'convert_options_WithdrawalTransfer' => 'Konwertuj wypłatę na transfer', - 'convert_options_DepositTransfer' => 'Konwertuj wpłatę na transfer', - 'convert_options_DepositWithdrawal' => 'Konwertuj wpłatę na wypłatę', - 'convert_options_TransferWithdrawal' => 'Konwertuj transfer na wypłatę', - 'convert_options_TransferDeposit' => 'Konwertuj transfer na wpłatę', - 'convert_Withdrawal_to_deposit' => 'Konwertuj tę wypłatę na wpłatę', - 'convert_Withdrawal_to_transfer' => 'Konwertuj tę wypłatę na transfer', - 'convert_Deposit_to_withdrawal' => 'Konwertuj tę wpłatę na wypłatę', - 'convert_Deposit_to_transfer' => 'Konwertuj tę wpłatę na transfer', - 'convert_Transfer_to_deposit' => 'Konwertuj ten transfer na wpłatę', - 'convert_Transfer_to_withdrawal' => 'Konwertuj ten transfer na wypłatę', - 'convert_please_set_revenue_source' => 'Proszę wybierz konto przychodów, z którego będą przychodzić pieniądze.', - 'convert_please_set_asset_destination' => 'Proszę wybierz konto aktywów, do którego będą wychodzić pieniądze.', - 'convert_please_set_expense_destination' => 'Proszę wybierz konto wydatków, do którego będą wychodzić pieniądze.', - 'convert_please_set_asset_source' => 'Proszę wybierz konto aktywów, z którego będą przychodzić pieniądze.', - 'convert_expl_w_d' => 'Podczas konwersji z wypłaty na wpłatę pieniądze zostaną wpłacone na wyświetlane konto docelowe, a nie wycofane z niego.|Podczas konwersji z wypłaty na wpłatę pieniądze zostaną wpłacone na wyświetlane konta docelowe, a nie wycofane z nich.', - 'convert_expl_w_t' => 'Podczas konwersji wypłaty na przelew, środki zostaną przeniesione z rachunku źródłowego na inny rachunek aktywów lub zobowiązań zamiast być wydane na oryginalnym koncie wydatków.|Podczas konwersji wypłaty na przelew, środki zostaną przeniesione z rachunków źródłowych na inne rachunki aktywów lub zobowiązań zamiast być wydane na oryginalnych kontach wydatków.', - 'convert_expl_d_w' => 'Podczas konwersji z wpłaty na wypłatę pieniądze zostaną wypłacone z wyświetlanego konta źródłowego, a nie wpłacone na nie.|Podczas konwersji z wpłaty na wypłatę pieniądze zostaną wypłacone z wyświetlanych kont źródłowych, a nie wpłacone na nie.', - 'convert_expl_d_t' => 'Kiedy zamienisz wpłatę na przelew, pieniądze zostaną wpłacone na wskazany rachunek docelowy z dowolnego konta aktywów lub zobowiązań.|Kiedy zamienisz wpłatę na przelew, pieniądze zostaną wpłacone na wskazane konta docelowe z dowolnego konta aktywów lub pasywów.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'Aby zakończyć konwersję, proszę ustawić nowe konto źródłowe.|Aby zakończyć konwersję, ustaw nowe konta źródłowe.', - 'convert_select_destinations' => 'Aby zakończyć konwersję, wybierz nowe konto docelowe poniżej.|Aby zakończyć konwersję, wybierz nowe konta docelowe poniżej.', - 'converted_to_Withdrawal' => 'Transakcja została przekonwertowana do wypłaty', - 'converted_to_Deposit' => 'Transakcja została przekonwertowana do wpłaty', - 'converted_to_Transfer' => 'Transakcja została przekonwertowana do transferu', - 'invalid_convert_selection' => 'Wybrane konto jest już używane w tej transakcji lub nie istnieje.', - 'source_or_dest_invalid' => 'Nie można znaleźć poprawnych szczegółów transakcji. Konwersja nie jest możliwa.', - 'convert_to_withdrawal' => 'Konwertuj na wypłatę', - 'convert_to_deposit' => 'Konwertuj na wpłatę', - 'convert_to_transfer' => 'Konwertuj na transfer', + 'convert_is_already_type_Withdrawal' => 'Ta transakcja jest już wypłatą', + 'convert_is_already_type_Deposit' => 'Ta transakcja jest już wpłatą', + 'convert_is_already_type_Transfer' => 'Ta transakcja jest już transferem', + 'convert_to_Withdrawal' => 'Konwertuj ":description" na wypłatę', + 'convert_to_Deposit' => 'Konwertuj ":description" na wpłatę', + 'convert_to_Transfer' => 'Konwertuj ":description" na transfer', + 'convert_options_WithdrawalDeposit' => 'Konwertuj wypłatę na wpłatę', + 'convert_options_WithdrawalTransfer' => 'Konwertuj wypłatę na transfer', + 'convert_options_DepositTransfer' => 'Konwertuj wpłatę na transfer', + 'convert_options_DepositWithdrawal' => 'Konwertuj wpłatę na wypłatę', + 'convert_options_TransferWithdrawal' => 'Konwertuj transfer na wypłatę', + 'convert_options_TransferDeposit' => 'Konwertuj transfer na wpłatę', + 'convert_Withdrawal_to_deposit' => 'Konwertuj tę wypłatę na wpłatę', + 'convert_Withdrawal_to_transfer' => 'Konwertuj tę wypłatę na transfer', + 'convert_Deposit_to_withdrawal' => 'Konwertuj tę wpłatę na wypłatę', + 'convert_Deposit_to_transfer' => 'Konwertuj tę wpłatę na transfer', + 'convert_Transfer_to_deposit' => 'Konwertuj ten transfer na wpłatę', + 'convert_Transfer_to_withdrawal' => 'Konwertuj ten transfer na wypłatę', + 'convert_please_set_revenue_source' => 'Proszę wybierz konto przychodów, z którego będą przychodzić pieniądze.', + 'convert_please_set_asset_destination' => 'Proszę wybierz konto aktywów, do którego będą wychodzić pieniądze.', + 'convert_please_set_expense_destination' => 'Proszę wybierz konto wydatków, do którego będą wychodzić pieniądze.', + 'convert_please_set_asset_source' => 'Proszę wybierz konto aktywów, z którego będą przychodzić pieniądze.', + 'convert_expl_w_d' => 'Podczas konwersji z wypłaty na wpłatę pieniądze zostaną wpłacone na wyświetlane konto docelowe, a nie wycofane z niego.|Podczas konwersji z wypłaty na wpłatę pieniądze zostaną wpłacone na wyświetlane konta docelowe, a nie wycofane z nich.', + 'convert_expl_w_t' => 'Podczas konwersji wypłaty na przelew, środki zostaną przeniesione z rachunku źródłowego na inny rachunek aktywów lub zobowiązań zamiast być wydane na oryginalnym koncie wydatków.|Podczas konwersji wypłaty na przelew, środki zostaną przeniesione z rachunków źródłowych na inne rachunki aktywów lub zobowiązań zamiast być wydane na oryginalnych kontach wydatków.', + 'convert_expl_d_w' => 'Podczas konwersji z wpłaty na wypłatę pieniądze zostaną wypłacone z wyświetlanego konta źródłowego, a nie wpłacone na nie.|Podczas konwersji z wpłaty na wypłatę pieniądze zostaną wypłacone z wyświetlanych kont źródłowych, a nie wpłacone na nie.', + 'convert_expl_d_t' => 'Kiedy zamienisz wpłatę na przelew, pieniądze zostaną wpłacone na wskazany rachunek docelowy z dowolnego konta aktywów lub zobowiązań.|Kiedy zamienisz wpłatę na przelew, pieniądze zostaną wpłacone na wskazane konta docelowe z dowolnego konta aktywów lub pasywów.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'Aby zakończyć konwersję, proszę ustawić nowe konto źródłowe.|Aby zakończyć konwersję, ustaw nowe konta źródłowe.', + 'convert_select_destinations' => 'Aby zakończyć konwersję, wybierz nowe konto docelowe poniżej.|Aby zakończyć konwersję, wybierz nowe konta docelowe poniżej.', + 'converted_to_Withdrawal' => 'Transakcja została przekonwertowana do wypłaty', + 'converted_to_Deposit' => 'Transakcja została przekonwertowana do wpłaty', + 'converted_to_Transfer' => 'Transakcja została przekonwertowana do transferu', + 'invalid_convert_selection' => 'Wybrane konto jest już używane w tej transakcji lub nie istnieje.', + 'source_or_dest_invalid' => 'Nie można znaleźć poprawnych szczegółów transakcji. Konwersja nie jest możliwa.', + 'convert_to_withdrawal' => 'Konwertuj na wypłatę', + 'convert_to_deposit' => 'Konwertuj na wpłatę', + 'convert_to_transfer' => 'Konwertuj na transfer', // create new stuff: - 'create_new_withdrawal' => 'Utwórz nową wypłatę', - 'create_new_deposit' => 'Utwórz nową wpłatę', - 'create_new_transfer' => 'Utwórz nowy transfer', - 'create_new_asset' => 'Utwórz nowe konto aktywów', - 'create_new_liabilities' => 'Utwórz nowe zobowiązanie', - 'create_new_expense' => 'Utwórz nowe konto wydatków', - 'create_new_revenue' => 'Utwórz nowe konto przychodów', - 'create_new_piggy_bank' => 'Utwórz nową skarbonkę', - 'create_new_bill' => 'Utwórz nowy rachunek', - 'create_new_subscription' => 'Utwórz nową subskrypcję', - 'create_new_rule' => 'Utwórz nową regułę', + 'create_new_withdrawal' => 'Utwórz nową wypłatę', + 'create_new_deposit' => 'Utwórz nową wpłatę', + 'create_new_transfer' => 'Utwórz nowy transfer', + 'create_new_asset' => 'Utwórz nowe konto aktywów', + 'create_new_liabilities' => 'Utwórz nowe zobowiązanie', + 'create_new_expense' => 'Utwórz nowe konto wydatków', + 'create_new_revenue' => 'Utwórz nowe konto przychodów', + 'create_new_piggy_bank' => 'Utwórz nową skarbonkę', + 'create_new_bill' => 'Utwórz nowy rachunek', + 'create_new_subscription' => 'Utwórz nową subskrypcję', + 'create_new_rule' => 'Utwórz nową regułę', // currencies: - 'create_currency' => 'Utwórz nową walutę', - 'store_currency' => 'Zapisz nową walutę', - 'update_currency' => 'Modyfikuj walutę', - 'new_default_currency' => '":name" jest teraz domyślną walutą.', - 'default_currency_failed' => 'Nie można ustawić ":name" jako domyślnej waluty. Proszę sprawdź dziennik zdarzeń.', - 'cannot_delete_currency' => 'Nie można usunąć waluty :name, ponieważ jest ona nadal używana.', - 'cannot_delete_fallback_currency' => ':name jest walutą rezerwową systemu i nie można jej usunąć.', - 'cannot_disable_currency_journals' => 'Nie można wyłączyć :name ponieważ istnieją powiązane transakcje.', - 'cannot_disable_currency_last_left' => 'Nie można wyłączyć :name, ponieważ jest to ostatnia włączona waluta.', - 'cannot_disable_currency_account_meta' => 'Nie można wyłączyć :name ponieważ jest użyte na kontach aktywów.', - 'cannot_disable_currency_bills' => 'Nie można wyłączyć :name ponieważ jest użyte w rachunkach.', - 'cannot_disable_currency_recurring' => 'Nie można wyłączyć :name ponieważ jest użyte w transakcjach cyklicznych.', - 'cannot_disable_currency_available_budgets' => 'Nie można wyłączyć :name ponieważ jest użyte w dostępnych budżetach.', - 'cannot_disable_currency_budget_limits' => 'Nie można wyłączyć :name ponieważ jest użyte w budżetach.', - 'cannot_disable_currency_current_default' => 'Nie można wyłączyć :name ponieważ jest to bieżąca waluta domyślna.', - 'cannot_disable_currency_system_fallback' => 'Nie można wyłączyć :name ponieważ jest to waluta domyślna systemu.', - 'disable_EUR_side_effects' => 'Euro jest awaryjną walutą w systemie. Deaktywacja może mieć nieprzewidziane skutki i może spowodować wygaśnięcie gwarancji.', - 'deleted_currency' => 'Waluta :name została usunięta', - 'created_currency' => 'Waluta :name została utworzona', - 'could_not_store_currency' => 'Nie można zapisać nowej waluty.', - 'updated_currency' => 'Waluta :name została zmodyfikowana', - 'ask_site_owner' => 'Poproś :owner aby dodał, usunął lub zmodyfikował waluty.', - 'currencies_intro' => 'Firefly III obsługuje różne waluty, które można ustawić i włączyć tutaj.', - 'make_default_currency' => 'Ustaw jako domyślną', - 'default_currency' => 'domyślna', - 'currency_is_disabled' => 'Nieaktywna', - 'enable_currency' => 'Aktywuj', - 'disable_currency' => 'Deaktywuj', - 'currencies_default_disabled' => 'Większość z tych walut jest domyślnie wyłączona. Aby móc z nich korzystać, należy je wcześniej aktywować.', - 'currency_is_now_enabled' => 'Waluta ":name" została aktywowana', - 'could_not_enable_currency' => 'Nie można włączyć waluty ":name". Sprawdź dziennik zdarzeń.', - 'currency_is_now_disabled' => 'Waluta ":name" została deaktywowana', - 'could_not_disable_currency' => 'Nie można wyłączyć waluty ":name". Być może jest w użyciu?', + 'create_currency' => 'Utwórz nową walutę', + 'store_currency' => 'Zapisz nową walutę', + 'update_currency' => 'Modyfikuj walutę', + 'new_default_currency' => '":name" jest teraz domyślną walutą.', + 'default_currency_failed' => 'Nie można ustawić ":name" jako domyślnej waluty. Proszę sprawdź dziennik zdarzeń.', + 'cannot_delete_currency' => 'Nie można usunąć waluty :name, ponieważ jest ona nadal używana.', + 'cannot_delete_fallback_currency' => ':name jest walutą rezerwową systemu i nie można jej usunąć.', + 'cannot_disable_currency_journals' => 'Nie można wyłączyć :name ponieważ istnieją powiązane transakcje.', + 'cannot_disable_currency_last_left' => 'Nie można wyłączyć :name, ponieważ jest to ostatnia włączona waluta.', + 'cannot_disable_currency_account_meta' => 'Nie można wyłączyć :name ponieważ jest użyte na kontach aktywów.', + 'cannot_disable_currency_bills' => 'Nie można wyłączyć :name ponieważ jest użyte w rachunkach.', + 'cannot_disable_currency_recurring' => 'Nie można wyłączyć :name ponieważ jest użyte w transakcjach cyklicznych.', + 'cannot_disable_currency_available_budgets' => 'Nie można wyłączyć :name ponieważ jest użyte w dostępnych budżetach.', + 'cannot_disable_currency_budget_limits' => 'Nie można wyłączyć :name ponieważ jest użyte w budżetach.', + 'cannot_disable_currency_current_default' => 'Nie można wyłączyć :name ponieważ jest to bieżąca waluta domyślna.', + 'cannot_disable_currency_system_fallback' => 'Nie można wyłączyć :name ponieważ jest to waluta domyślna systemu.', + 'disable_EUR_side_effects' => 'Euro jest awaryjną walutą w systemie. Deaktywacja może mieć nieprzewidziane skutki i może spowodować wygaśnięcie gwarancji.', + 'deleted_currency' => 'Waluta :name została usunięta', + 'created_currency' => 'Waluta :name została utworzona', + 'could_not_store_currency' => 'Nie można zapisać nowej waluty.', + 'updated_currency' => 'Waluta :name została zmodyfikowana', + 'ask_site_owner' => 'Poproś :owner aby dodał, usunął lub zmodyfikował waluty.', + 'currencies_intro' => 'Firefly III obsługuje różne waluty, które można ustawić i włączyć tutaj.', + 'make_default_currency' => 'Ustaw jako domyślną', + 'default_currency' => 'domyślna', + 'currency_is_disabled' => 'Nieaktywna', + 'enable_currency' => 'Aktywuj', + 'disable_currency' => 'Deaktywuj', + 'currencies_default_disabled' => 'Większość z tych walut jest domyślnie wyłączona. Aby móc z nich korzystać, należy je wcześniej aktywować.', + 'currency_is_now_enabled' => 'Waluta ":name" została aktywowana', + 'could_not_enable_currency' => 'Nie można włączyć waluty ":name". Sprawdź dziennik zdarzeń.', + 'currency_is_now_disabled' => 'Waluta ":name" została deaktywowana', + 'could_not_disable_currency' => 'Nie można wyłączyć waluty ":name". Być może jest w użyciu?', // forms: - 'mandatoryFields' => 'Pola wymagane', - 'optionalFields' => 'Pola opcjonalne', - 'options' => 'Opcje', + 'mandatoryFields' => 'Pola wymagane', + 'optionalFields' => 'Pola opcjonalne', + 'options' => 'Opcje', // budgets: - 'daily_budgets' => 'Budżety dzienne', - 'weekly_budgets' => 'Budżety tygodniowe', - 'monthly_budgets' => 'Budżety miesięczne', - 'quarterly_budgets' => 'Budżety kwartalne', - 'half_year_budgets' => 'Budżety półroczne', - 'yearly_budgets' => 'Budżety roczne', - 'other_budgets' => 'Budżety niestandardowe', - 'budget_limit_not_in_range' => 'Ta kwota dotyczy okresu od :start do :end:', - 'total_available_budget' => 'Dostępny budżet (pomiędzy :start i :end)', - 'total_available_budget_in_currency' => 'Dostępny budżet w :currency', - 'see_below' => 'zobacz poniżej', - 'create_new_budget' => 'Utwórz nowy budżet', - 'store_new_budget' => 'Zapisz nowy budżet', - 'stored_new_budget' => 'Zapisano nowy budżet ":name"', - 'available_between' => 'Dostępne od :start i :end', - 'transactionsWithoutBudget' => 'Wydatki bez budżetu', - 'transactions_no_budget' => 'Wydatki bez budżetu między :start i :end', - 'spent_between' => 'Wydano między :start i :end', - 'spent_between_left' => 'Wydano :spent pomiędzy :start i :end, pozostało :left.', - 'set_available_amount' => 'Ustaw dostępną kwotę', - 'update_available_amount' => 'Aktualizuj dostępną kwotę', - 'ab_basic_modal_explain' => 'Użyj tego formularza aby wskazać, ile jesteś w stanie zabudżetować (w sumie, w :currency) we skazanym okresie.', - 'createBudget' => 'Nowy budżet', - 'invalid_currency' => 'To jest niewłaściwa waluta', - 'invalid_amount' => 'Proszę podać kwotę', - 'set_ab' => 'Dostępna kwota budżetu została ustalona', - 'updated_ab' => 'Dostępna kwota budżetu została zaktualizowana', - 'deleted_ab' => 'Dostępna kwota budżetu została usunięta', - 'deleted_bl' => 'Zabudżetowana kwota została usunięta', - 'alt_currency_ab_create' => 'Ustaw dostępny budżet w innej walucie', - 'bl_create_btn' => 'Ustaw budżet w innej walucie', - 'inactiveBudgets' => 'Nieaktywne budżety', - 'without_budget_between' => 'Transakcje bez budżetu między :start i :end', - 'delete_budget' => 'Usuń budżet ":name"', - 'deleted_budget' => 'Usunięto budżet ":name"', - 'edit_budget' => 'Modyfikuj budżet ":name"', - 'updated_budget' => 'Zmodyfikowano budżet ":name"', - 'update_amount' => 'Aktualizuj kwotę', - 'update_budget' => 'Aktualizuj budżet', - 'update_budget_amount_range' => 'Zaktualizuj (spodziewaną) dostępną kwotę między :start a :end', - 'set_budget_limit_title' => 'Ustaw zabudżetową kwotę dla budżetu :budget pomiędzy :start i :end', - 'set_budget_limit' => 'Ustaw zabudżetowaną kwotę', - 'budget_period_navigator' => 'Nawigator okresowy', - 'info_on_available_amount' => 'Co mam do dyspozycji?', - 'available_amount_indication' => 'Skorzystaj z tych kwot, aby uzyskać wskazówkę ile może wynosić Twój całkowity budżet.', - 'suggested' => 'Sugerowane', - 'average_between' => 'Średnia pomiędzy :start a :end', - 'transferred_in' => 'Przesłane (do)', - 'transferred_away' => 'Przesłane (od)', - 'auto_budget_none' => 'Brak automatycznego budżetu', - 'auto_budget_reset' => 'Ustaw stałą kwotę w każdym okresie', - 'auto_budget_rollover' => 'Dodaj kwotę w każdym okresie', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Dziennie', - 'auto_budget_period_weekly' => 'Tygodniowo', - 'auto_budget_period_monthly' => 'Miesięcznie', - 'auto_budget_period_quarterly' => 'Kwartalnie', - 'auto_budget_period_half_year' => 'Co pół roku', - 'auto_budget_period_yearly' => 'Rocznie', - 'auto_budget_help' => 'Możesz przeczytać więcej o tej funkcji w pomocy. Kliknij ikonę (?) u góry prawej strony.', - 'auto_budget_reset_icon' => 'Ten budżet będzie okresowo ustalany', - 'auto_budget_rollover_icon' => 'Kwota budżetu będzie okresowo rosła', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Usuń zabudżetowaną kwotę w :currency', + 'daily_budgets' => 'Budżety dzienne', + 'weekly_budgets' => 'Budżety tygodniowe', + 'monthly_budgets' => 'Budżety miesięczne', + 'quarterly_budgets' => 'Budżety kwartalne', + 'half_year_budgets' => 'Budżety półroczne', + 'yearly_budgets' => 'Budżety roczne', + 'other_budgets' => 'Budżety niestandardowe', + 'budget_limit_not_in_range' => 'Ta kwota dotyczy okresu od :start do :end:', + 'total_available_budget' => 'Dostępny budżet (pomiędzy :start i :end)', + 'total_available_budget_in_currency' => 'Dostępny budżet w :currency', + 'see_below' => 'zobacz poniżej', + 'create_new_budget' => 'Utwórz nowy budżet', + 'store_new_budget' => 'Zapisz nowy budżet', + 'stored_new_budget' => 'Zapisano nowy budżet ":name"', + 'available_between' => 'Dostępne od :start i :end', + 'transactionsWithoutBudget' => 'Wydatki bez budżetu', + 'transactions_no_budget' => 'Wydatki bez budżetu między :start i :end', + 'spent_between' => 'Wydano między :start i :end', + 'spent_between_left' => 'Wydano :spent pomiędzy :start i :end, pozostało :left.', + 'set_available_amount' => 'Ustaw dostępną kwotę', + 'update_available_amount' => 'Aktualizuj dostępną kwotę', + 'ab_basic_modal_explain' => 'Użyj tego formularza aby wskazać, ile jesteś w stanie zabudżetować (w sumie, w :currency) we skazanym okresie.', + 'createBudget' => 'Nowy budżet', + 'invalid_currency' => 'To jest niewłaściwa waluta', + 'invalid_amount' => 'Proszę podać kwotę', + 'set_ab' => 'Dostępna kwota budżetu została ustalona', + 'updated_ab' => 'Dostępna kwota budżetu została zaktualizowana', + 'deleted_ab' => 'Dostępna kwota budżetu została usunięta', + 'deleted_bl' => 'Zabudżetowana kwota została usunięta', + 'alt_currency_ab_create' => 'Ustaw dostępny budżet w innej walucie', + 'bl_create_btn' => 'Ustaw budżet w innej walucie', + 'inactiveBudgets' => 'Nieaktywne budżety', + 'without_budget_between' => 'Transakcje bez budżetu między :start i :end', + 'delete_budget' => 'Usuń budżet ":name"', + 'deleted_budget' => 'Usunięto budżet ":name"', + 'edit_budget' => 'Modyfikuj budżet ":name"', + 'updated_budget' => 'Zmodyfikowano budżet ":name"', + 'update_amount' => 'Aktualizuj kwotę', + 'update_budget' => 'Aktualizuj budżet', + 'update_budget_amount_range' => 'Zaktualizuj (spodziewaną) dostępną kwotę między :start a :end', + 'set_budget_limit_title' => 'Ustaw zabudżetową kwotę dla budżetu :budget pomiędzy :start i :end', + 'set_budget_limit' => 'Ustaw zabudżetowaną kwotę', + 'budget_period_navigator' => 'Nawigator okresowy', + 'info_on_available_amount' => 'Co mam do dyspozycji?', + 'available_amount_indication' => 'Skorzystaj z tych kwot, aby uzyskać wskazówkę ile może wynosić Twój całkowity budżet.', + 'suggested' => 'Sugerowane', + 'average_between' => 'Średnia pomiędzy :start a :end', + 'transferred_in' => 'Przesłane (do)', + 'transferred_away' => 'Przesłane (od)', + 'auto_budget_none' => 'Brak automatycznego budżetu', + 'auto_budget_reset' => 'Ustaw stałą kwotę w każdym okresie', + 'auto_budget_rollover' => 'Dodaj kwotę w każdym okresie', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Dziennie', + 'auto_budget_period_weekly' => 'Tygodniowo', + 'auto_budget_period_monthly' => 'Miesięcznie', + 'auto_budget_period_quarterly' => 'Kwartalnie', + 'auto_budget_period_half_year' => 'Co pół roku', + 'auto_budget_period_yearly' => 'Rocznie', + 'auto_budget_help' => 'Możesz przeczytać więcej o tej funkcji w pomocy. Kliknij ikonę (?) u góry prawej strony.', + 'auto_budget_reset_icon' => 'Ten budżet będzie okresowo ustalany', + 'auto_budget_rollover_icon' => 'Kwota budżetu będzie okresowo rosła', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Usuń zabudżetowaną kwotę w :currency', // bills: - 'subscription' => 'Subskrypcja', - 'not_expected_period' => 'Nie oczekiwany w tym okresie', - 'subscriptions_in_group' => 'Subskrypcje w grupie "%{title}"', - 'subscr_expected_x_times' => 'Oczekuje zapłaty %{amount} %{times} razy w tym okresie', - 'not_or_not_yet' => 'Nie (jeszcze)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Rachunek pasuje do transakcji między :low a :high.', - 'running_again_loss' => 'Transakcje poprzednio powiązane z tym rachunkiem mogą stracić to powiązanie, jeżeli nie będą spełniały założeń reguł(y).', - 'bill_related_rules' => 'Reguły powiązane z tym rachunkiem', - 'repeats' => 'Powtarza się', - 'bill_end_date_help' => 'Pole opcjonalne. Oczekuje się, że rachunek zakończy się tego dnia.', - 'bill_extension_date_help' => 'Pole opcjonalne. Rachunek musi być przedłużony (lub anulowany) w dniu lub przed tą datą.', - 'bill_end_index_line' => 'Ten rachunek kończy się :date', - 'bill_extension_index_line' => 'Ten rachunek musi zostać przedłużony lub anulowany :date', - 'connected_journals' => 'Powiązane transakcje', - 'auto_match_on' => 'Automatycznie dopasowane przez Firefly III', - 'auto_match_off' => 'Niedopasowane automatycznie przez Firefly III', - 'next_expected_match' => 'Następne oczekiwane dopasowanie', - 'delete_bill' => 'Usuń rachunek ":name"', - 'deleted_bill' => 'Usunięto rachunek ":name"', - 'edit_bill' => 'Modyfikuj rachunek ":name"', - 'more' => 'Więcej', - 'rescan_old' => 'Uruchom ponownie reguły na wszystkich transakcjach', - 'update_bill' => 'Aktualizuj rachunek', - 'updated_bill' => 'Zaktualizowano rachunek ":name"', - 'store_new_bill' => 'Zapisz nowy rachunek', - 'stored_new_bill' => 'Zapisano nowy rachunek ":name"', - 'cannot_scan_inactive_bill' => 'Nieaktywne rachunki nie mogą być zeskanowane.', - 'rescanned_bill' => 'Przeskanowano wszystko i połączono :count transakcję z rachunkiem.|Przeskanowano wszystko i połączono :count transakcji z rachunkiem.', - 'average_bill_amount_year' => 'Średnia kwota rachunku (:year)', - 'average_bill_amount_overall' => 'Średnia kwota rachunku (ogólnie)', - 'bill_is_active' => 'Rachunek jest aktywny', - 'bill_expected_between' => 'Oczekiwano między :start a :end', - 'bill_will_automatch' => 'Rachunek będzie automatycznie powiązany z pasującymi transakcjami', - 'skips_over' => 'pomija', - 'bill_store_error' => 'Wystąpił nieoczekiwany błąd podczas zapisywania nowego rachunku. Sprawdź pliki dziennika', - 'list_inactive_rule' => 'nieaktywna reguła', - 'bill_edit_rules' => 'Firefly III spróbuje edytować regułę związaną z tym rachunkiem. Jeśli jednak reguła była edytowana przez Ciebie, Firefly III nic nie zmieni. Firefly III spróbuje edytować reguły :count również związane z tym rachunkiem. Jeśli jednak reguły były edytowane przez Ciebie, Firefly III nic nie zmieni.', - 'bill_expected_date' => 'Oczekiwane :date', - 'bill_expected_date_js' => 'Oczekiwane {date}', - 'expected_amount' => '(Oczekiwana) kwota', - 'bill_paid_on' => 'Zapłacone {date}', - 'bill_repeats_weekly' => 'Powtarza się co tydzień', - 'bill_repeats_monthly' => 'Powtarza się co miesiąc', - 'bill_repeats_quarterly' => 'Powtarza się co kwartał', - 'bill_repeats_half-year' => 'Powtarza się co pół roku', - 'bill_repeats_yearly' => 'Powtarza się co rok', - 'bill_repeats_weekly_other' => 'Powtarza się co drugi tydzień', - 'bill_repeats_monthly_other' => 'Powtarza się co drugi miesiąc', - 'bill_repeats_quarterly_other' => 'Powtarza się co drugi kwartał', - 'bill_repeats_half-year_other' => 'Powtarza się co rok', - 'bill_repeats_yearly_other' => 'Powtarza się co drugi rok', - 'bill_repeats_weekly_skip' => 'Powtarza się co {skip} tygodni', - 'bill_repeats_monthly_skip' => 'Powtarza się co {skip} miesięcy', - 'bill_repeats_quarterly_skip' => 'Powtarza się co {skip} kwartałów', - 'bill_repeats_half-year_skip' => 'Powtarza się co {skip} połów roku', - 'bill_repeats_yearly_skip' => 'Powtarza się co {skip} lat', - 'subscriptions' => 'Subskrypcje', - 'go_to_subscriptions' => 'Przejdź do swoich subskrypcji', - 'forever' => 'Bez daty zakończenia', - 'extension_date_is' => 'Data przedłużenia to {date}', + 'subscription' => 'Subskrypcja', + 'not_expected_period' => 'Nie oczekiwany w tym okresie', + 'subscriptions_in_group' => 'Subskrypcje w grupie "%{title}"', + 'subscr_expected_x_times' => 'Oczekuje zapłaty %{amount} %{times} razy w tym okresie', + 'not_or_not_yet' => 'Nie (jeszcze)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Rachunek pasuje do transakcji między :low a :high.', + 'running_again_loss' => 'Transakcje poprzednio powiązane z tym rachunkiem mogą stracić to powiązanie, jeżeli nie będą spełniały założeń reguł(y).', + 'bill_related_rules' => 'Reguły powiązane z tym rachunkiem', + 'repeats' => 'Powtarza się', + 'bill_end_date_help' => 'Pole opcjonalne. Oczekuje się, że rachunek zakończy się tego dnia.', + 'bill_extension_date_help' => 'Pole opcjonalne. Rachunek musi być przedłużony (lub anulowany) w dniu lub przed tą datą.', + 'bill_end_index_line' => 'Ten rachunek kończy się :date', + 'bill_extension_index_line' => 'Ten rachunek musi zostać przedłużony lub anulowany :date', + 'connected_journals' => 'Powiązane transakcje', + 'auto_match_on' => 'Automatycznie dopasowane przez Firefly III', + 'auto_match_off' => 'Niedopasowane automatycznie przez Firefly III', + 'next_expected_match' => 'Następne oczekiwane dopasowanie', + 'delete_bill' => 'Usuń rachunek ":name"', + 'deleted_bill' => 'Usunięto rachunek ":name"', + 'edit_bill' => 'Modyfikuj rachunek ":name"', + 'more' => 'Więcej', + 'rescan_old' => 'Uruchom ponownie reguły na wszystkich transakcjach', + 'update_bill' => 'Aktualizuj rachunek', + 'updated_bill' => 'Zaktualizowano rachunek ":name"', + 'store_new_bill' => 'Zapisz nowy rachunek', + 'stored_new_bill' => 'Zapisano nowy rachunek ":name"', + 'cannot_scan_inactive_bill' => 'Nieaktywne rachunki nie mogą być zeskanowane.', + 'rescanned_bill' => 'Przeskanowano wszystko i połączono :count transakcję z rachunkiem.|Przeskanowano wszystko i połączono :count transakcji z rachunkiem.', + 'average_bill_amount_year' => 'Średnia kwota rachunku (:year)', + 'average_bill_amount_overall' => 'Średnia kwota rachunku (ogólnie)', + 'bill_is_active' => 'Rachunek jest aktywny', + 'bill_expected_between' => 'Oczekiwano między :start a :end', + 'bill_will_automatch' => 'Rachunek będzie automatycznie powiązany z pasującymi transakcjami', + 'skips_over' => 'pomija', + 'bill_store_error' => 'Wystąpił nieoczekiwany błąd podczas zapisywania nowego rachunku. Sprawdź pliki dziennika', + 'list_inactive_rule' => 'nieaktywna reguła', + 'bill_edit_rules' => 'Firefly III spróbuje edytować regułę związaną z tym rachunkiem. Jeśli jednak reguła była edytowana przez Ciebie, Firefly III nic nie zmieni. Firefly III spróbuje edytować reguły :count również związane z tym rachunkiem. Jeśli jednak reguły były edytowane przez Ciebie, Firefly III nic nie zmieni.', + 'bill_expected_date' => 'Oczekiwane :date', + 'bill_expected_date_js' => 'Oczekiwane {date}', + 'expected_amount' => '(Oczekiwana) kwota', + 'bill_paid_on' => 'Zapłacone {date}', + 'bill_repeats_weekly' => 'Powtarza się co tydzień', + 'bill_repeats_monthly' => 'Powtarza się co miesiąc', + 'bill_repeats_quarterly' => 'Powtarza się co kwartał', + 'bill_repeats_half-year' => 'Powtarza się co pół roku', + 'bill_repeats_yearly' => 'Powtarza się co rok', + 'bill_repeats_weekly_other' => 'Powtarza się co drugi tydzień', + 'bill_repeats_monthly_other' => 'Powtarza się co drugi miesiąc', + 'bill_repeats_quarterly_other' => 'Powtarza się co drugi kwartał', + 'bill_repeats_half-year_other' => 'Powtarza się co rok', + 'bill_repeats_yearly_other' => 'Powtarza się co drugi rok', + 'bill_repeats_weekly_skip' => 'Powtarza się co {skip} tygodni', + 'bill_repeats_monthly_skip' => 'Powtarza się co {skip} miesięcy', + 'bill_repeats_quarterly_skip' => 'Powtarza się co {skip} kwartałów', + 'bill_repeats_half-year_skip' => 'Powtarza się co {skip} połów roku', + 'bill_repeats_yearly_skip' => 'Powtarza się co {skip} lat', + 'subscriptions' => 'Subskrypcje', + 'go_to_subscriptions' => 'Przejdź do swoich subskrypcji', + 'forever' => 'Bez daty zakończenia', + 'extension_date_is' => 'Data przedłużenia to {date}', // accounts: - 'i_am_owed_amount' => 'Należy mi się kwota', - 'i_owe_amount' => 'Jestem winien kwotę', - 'inactive_account_link' => 'Masz :count nieaktywne (zarchiwizowane) konto, które możesz zobaczyć na tej stronie.|Masz :count nieaktywnych (zarchiwizowanych) kont, które możesz zobaczyć na tej stronie.', - 'all_accounts_inactive' => 'To są twoje nieaktywne konta.', - 'active_account_link' => 'Ten link wraca do Twoich aktywnych kont.', - 'account_missing_transaction' => 'Konto #:id (":name") nie możne być wyświetlone bezpośrednio, ale Firefly Iii nie ma informacji przekierowania.', - 'cc_monthly_payment_date_help' => 'Wybierz dowolny rok i miesiąc, są i tak ignorowane. Ważny jest tylko dzień miesiąca.', - 'details_for_asset' => 'Szczegóły konta aktywów ":name"', - 'details_for_expense' => 'Szczegóły konta wydatków ":name"', - 'details_for_revenue' => 'Szczegóły konta przychodów ":name"', - 'details_for_cash' => 'Szczegóły konta gotówkowego ":name"', - 'store_new_asset_account' => 'Zapisz nowe konto aktywów', - 'store_new_expense_account' => 'Zapisz nowe konto wydatków', - 'store_new_revenue_account' => 'Zapisz nowe konto przychodów', - 'edit_asset_account' => 'Modyfikuj konto aktywów ":name"', - 'edit_expense_account' => 'Modyfikuj konto wydatków ":name"', - 'edit_revenue_account' => 'Modyfikuj konto przychodów ":name"', - 'delete_asset_account' => 'Usuń konto aktywów ":name"', - 'delete_expense_account' => 'Usuń konto wydatków ":name"', - 'delete_revenue_account' => 'Usuń konto przychodów ":name"', - 'delete_liabilities_account' => 'Usuń zobowiązanie ":name"', - 'asset_deleted' => 'Pomyślnie usunięto konto aktywów ":name"', - 'account_deleted' => 'Pomyślnie usunięto konto ":name"', - 'expense_deleted' => 'Pomyślnie usunięto konto wydatków ":name"', - 'revenue_deleted' => 'Pomyślnie usunięto konto przychodów ":name"', - 'update_asset_account' => 'Aktualizuj konto aktywów', - 'update_undefined_account' => 'Zaktualizuj konto', - 'update_liabilities_account' => 'Modyfikuj zobowiązanie', - 'update_expense_account' => 'Aktualizuj konto wydatków', - 'update_revenue_account' => 'Aktualizuj konto przychodów', - 'make_new_asset_account' => 'Utwórz nowe konto aktywów', - 'make_new_expense_account' => 'Utwórz nowe konto wydatków', - 'make_new_revenue_account' => 'Utwórz nowe konto przychodów', - 'make_new_liabilities_account' => 'Utwórz nowe zobowiązanie', - 'asset_accounts' => 'Konta aktywów', - 'undefined_accounts' => 'Konta', - 'asset_accounts_inactive' => 'Konta aktywów (nieaktywne)', - 'expense_account' => 'Konto wydatków', - 'expense_accounts' => 'Konta wydatków', - 'expense_accounts_inactive' => 'Konto wydatków (nieaktywne)', - 'revenue_account' => 'Konto przychodów', - 'revenue_accounts' => 'Konta przychodów', - 'revenue_accounts_inactive' => 'Konta przychodów (nieaktywne)', - 'cash_accounts' => 'Konta gotówkowe', - 'Cash account' => 'Konto gotówkowe', - 'liabilities_accounts' => 'Zobowiązania', - 'liabilities_accounts_inactive' => 'Zobowiązania (nieaktywne)', - 'reconcile_account' => 'Uzgodnij konto ":account"', - 'overview_of_reconcile_modal' => 'Przegląd rozrachunku', - 'delete_reconciliation' => 'Usuń uzgodnienie', - 'update_reconciliation' => 'Zaktualizuj uzgodnienie', - 'amount_cannot_be_zero' => 'Kwota nie może wynosić zero', - 'end_of_reconcile_period' => 'Koniec okresu uzgodnienia: :period', - 'start_of_reconcile_period' => 'Początek okresu uzgodnienia: :period', - 'start_balance' => 'Saldo początkowe', - 'end_balance' => 'Saldo końcowe', - 'update_balance_dates_instruction' => 'Dopasuj powyższe kwoty oraz daty do wyciągu bankowego i naciśnij "Rozpocznij uzgadnianie"', - 'select_transactions_instruction' => 'Wybierz transakcje które pojawiają się na wyciągu bankowym.', - 'select_range_and_balance' => 'Najpierw sprawdź zakres dat i salda. Następnie naciśnij "Rozpocznij uzgadnianie"', - 'date_change_instruction' => 'Jeśli teraz zmienisz zakres dat, jakikolwiek postęp zostanie utracony.', - 'update_selection' => 'Zaktualizuj wybór', - 'store_reconcile' => 'Zapisz uzgodnienia', - 'reconciliation_transaction' => 'Transakcja uzgadniania', - 'Reconciliation' => 'Rozrachunek', - 'reconciliation' => 'Rozrachunek', - 'reconcile_options' => 'Opcje uzgadniania', - 'reconcile_range' => 'Zakres rozrachunku', - 'start_reconcile' => 'Rozpocznij uzgadnianie', - 'cash_account_type' => 'Gotówka', - 'cash' => 'gotówka', - 'cant_find_redirect_account' => 'Firefly III próbował Cię przekierować, ale się nie udało. Przepraszamy za to. Wróć do strony głównej.', - 'account_type' => 'Typ konta', - 'save_transactions_by_moving' => 'Zapisz tą transakcję przenosząc ją na inne konto:|Zapisz te transakcje przenosząc je na inne konto:', - 'save_transactions_by_moving_js' => 'Brak transakcji|Zapisz tę transakcję, przenosząc ją na inne konto.|Zapisz te transakcje przenosząc je na inne konto.', - 'stored_new_account' => 'Nowe konto ":name" zostało zapisane!', - 'stored_new_account_js' => 'Nowe konto "{name}" zapisane!', - 'updated_account' => 'Zaktualizowano konto ":name"', - 'updated_account_js' => 'Zaktualizowano konto "{title}".', - 'credit_card_options' => 'Opcje karty kredytowej', - 'no_transactions_account' => 'Brak transakcji (w tym okresie) na koncie aktywów ":name".', - 'no_transactions_period' => 'Nie ma żadnych transakcji (w tym okresie).', - 'no_data_for_chart' => 'Nie ma wystarczająco dużo informacji (póki co), aby wygenerować ten wykres.', - 'select_at_least_one_account' => 'Wybierz proszę co najmniej jedno konto aktywów', - 'select_at_least_one_category' => 'Wybierz proszę co najmniej jedną kategorię', - 'select_at_least_one_budget' => 'Wybierz proszę co najmniej jeden budżet', - 'select_at_least_one_tag' => 'Wybierz proszę co najmniej jeden tag', - 'select_at_least_one_expense' => 'Wybierz proszę co najmniej jedną kombinację kont wydatków/przychodów. Jeżeli nie masz żadnych (lista jest pusta) ten raport jest niedostępny.', - 'account_default_currency' => 'To będzie domyślna waluta powiązana z tym kontem.', - 'reconcile_has_more' => 'Twoja księga główna Firefly III ma więcej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', - 'reconcile_has_less' => 'Twoja księga główna Firefly III ma mniej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', - 'reconcile_is_equal' => 'Twoja księga główna Firefly III i wyciągi bankowe są zgodne. Nie ma nic do zrobienia. Naciśnij "Potwierdź uzgodnienie" aby potwierdzić twój wybór.', - 'create_pos_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę dodając :amount do tego konta aktywów.', - 'create_neg_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę usuwając :amount z tego konta aktywów.', - 'reconcile_do_nothing' => 'Oznacz wybrane transakcje jako uzgodnione, ale nic nie poprawiaj.', - 'reconcile_go_back' => 'Możesz zawsze zmodyfikować lub usunąć korektę później.', - 'must_be_asset_account' => 'Możesz uzgodnić tylko konta aktywów', - 'reconciliation_stored' => 'Uzgodnienie zapisane', - 'reconciliation_error' => 'Z powodu błędu transakcje zostały oznaczone jako uzgodnione, ale korekta nie została zapisana: :error.', - 'reconciliation_transaction_title' => 'Rozrachunek (od :from do :to)', - 'sum_of_reconciliation' => 'Suma rozrachunku', - 'reconcile_this_account' => 'Uzgodnij to konto', - 'reconcile' => 'Uzgodnij', - 'show' => 'Pokaż', - 'confirm_reconciliation' => 'Potwierdź rozrachunek', - 'submitted_start_balance' => 'Przesłane saldo początkowe', - 'selected_transactions' => 'Wybrane transakcje (:count)', - 'already_cleared_transactions' => 'Transakcje uzgodnione wcześniej (:count)', - 'submitted_end_balance' => 'Przesłane saldo końcowe', - 'initial_balance_description' => 'Saldo początkowe dla ":account"', - 'liability_credit_description' => 'Zobowiązania udzielone dla ":account"', - 'interest_calc_' => 'nieznany', - 'interest_calc_daily' => 'Co dzień', - 'interest_calc_monthly' => 'Co miesiąc', - 'interest_calc_yearly' => 'Co rok', - 'interest_calc_weekly' => 'Tygodniowo', - 'interest_calc_half-year' => 'Co pół roku', - 'interest_calc_quarterly' => 'Kwartalnie', - 'initial_balance_account' => 'Początkowe saldo konta :account', - 'list_options' => 'Opcje listy', + 'i_am_owed_amount' => 'Należy mi się kwota', + 'i_owe_amount' => 'Jestem winien kwotę', + 'inactive_account_link' => 'Masz :count nieaktywne (zarchiwizowane) konto, które możesz zobaczyć na tej stronie.|Masz :count nieaktywnych (zarchiwizowanych) kont, które możesz zobaczyć na tej stronie.', + 'all_accounts_inactive' => 'To są twoje nieaktywne konta.', + 'active_account_link' => 'Ten link wraca do Twoich aktywnych kont.', + 'account_missing_transaction' => 'Konto #:id (":name") nie możne być wyświetlone bezpośrednio, ale Firefly Iii nie ma informacji przekierowania.', + 'cc_monthly_payment_date_help' => 'Wybierz dowolny rok i miesiąc, są i tak ignorowane. Ważny jest tylko dzień miesiąca.', + 'details_for_asset' => 'Szczegóły konta aktywów ":name"', + 'details_for_expense' => 'Szczegóły konta wydatków ":name"', + 'details_for_revenue' => 'Szczegóły konta przychodów ":name"', + 'details_for_cash' => 'Szczegóły konta gotówkowego ":name"', + 'store_new_asset_account' => 'Zapisz nowe konto aktywów', + 'store_new_expense_account' => 'Zapisz nowe konto wydatków', + 'store_new_revenue_account' => 'Zapisz nowe konto przychodów', + 'edit_asset_account' => 'Modyfikuj konto aktywów ":name"', + 'edit_expense_account' => 'Modyfikuj konto wydatków ":name"', + 'edit_revenue_account' => 'Modyfikuj konto przychodów ":name"', + 'delete_asset_account' => 'Usuń konto aktywów ":name"', + 'delete_expense_account' => 'Usuń konto wydatków ":name"', + 'delete_revenue_account' => 'Usuń konto przychodów ":name"', + 'delete_liabilities_account' => 'Usuń zobowiązanie ":name"', + 'asset_deleted' => 'Pomyślnie usunięto konto aktywów ":name"', + 'account_deleted' => 'Pomyślnie usunięto konto ":name"', + 'expense_deleted' => 'Pomyślnie usunięto konto wydatków ":name"', + 'revenue_deleted' => 'Pomyślnie usunięto konto przychodów ":name"', + 'update_asset_account' => 'Aktualizuj konto aktywów', + 'update_undefined_account' => 'Zaktualizuj konto', + 'update_liabilities_account' => 'Modyfikuj zobowiązanie', + 'update_expense_account' => 'Aktualizuj konto wydatków', + 'update_revenue_account' => 'Aktualizuj konto przychodów', + 'make_new_asset_account' => 'Utwórz nowe konto aktywów', + 'make_new_expense_account' => 'Utwórz nowe konto wydatków', + 'make_new_revenue_account' => 'Utwórz nowe konto przychodów', + 'make_new_liabilities_account' => 'Utwórz nowe zobowiązanie', + 'asset_accounts' => 'Konta aktywów', + 'undefined_accounts' => 'Konta', + 'asset_accounts_inactive' => 'Konta aktywów (nieaktywne)', + 'expense_account' => 'Konto wydatków', + 'expense_accounts' => 'Konta wydatków', + 'expense_accounts_inactive' => 'Konto wydatków (nieaktywne)', + 'revenue_account' => 'Konto przychodów', + 'revenue_accounts' => 'Konta przychodów', + 'revenue_accounts_inactive' => 'Konta przychodów (nieaktywne)', + 'cash_accounts' => 'Konta gotówkowe', + 'Cash account' => 'Konto gotówkowe', + 'liabilities_accounts' => 'Zobowiązania', + 'liabilities_accounts_inactive' => 'Zobowiązania (nieaktywne)', + 'reconcile_account' => 'Uzgodnij konto ":account"', + 'overview_of_reconcile_modal' => 'Przegląd rozrachunku', + 'delete_reconciliation' => 'Usuń uzgodnienie', + 'update_reconciliation' => 'Zaktualizuj uzgodnienie', + 'amount_cannot_be_zero' => 'Kwota nie może wynosić zero', + 'end_of_reconcile_period' => 'Koniec okresu uzgodnienia: :period', + 'start_of_reconcile_period' => 'Początek okresu uzgodnienia: :period', + 'start_balance' => 'Saldo początkowe', + 'end_balance' => 'Saldo końcowe', + 'update_balance_dates_instruction' => 'Dopasuj powyższe kwoty oraz daty do wyciągu bankowego i naciśnij "Rozpocznij uzgadnianie"', + 'select_transactions_instruction' => 'Wybierz transakcje które pojawiają się na wyciągu bankowym.', + 'select_range_and_balance' => 'Najpierw sprawdź zakres dat i salda. Następnie naciśnij "Rozpocznij uzgadnianie"', + 'date_change_instruction' => 'Jeśli teraz zmienisz zakres dat, jakikolwiek postęp zostanie utracony.', + 'update_selection' => 'Zaktualizuj wybór', + 'store_reconcile' => 'Zapisz uzgodnienia', + 'reconciliation_transaction' => 'Transakcja uzgadniania', + 'Reconciliation' => 'Rozrachunek', + 'reconciliation' => 'Rozrachunek', + 'reconcile_options' => 'Opcje uzgadniania', + 'reconcile_range' => 'Zakres rozrachunku', + 'start_reconcile' => 'Rozpocznij uzgadnianie', + 'cash_account_type' => 'Gotówka', + 'cash' => 'gotówka', + 'cant_find_redirect_account' => 'Firefly III próbował Cię przekierować, ale się nie udało. Przepraszamy za to. Wróć do strony głównej.', + 'account_type' => 'Typ konta', + 'save_transactions_by_moving' => 'Zapisz tą transakcję przenosząc ją na inne konto:|Zapisz te transakcje przenosząc je na inne konto:', + 'save_transactions_by_moving_js' => 'Brak transakcji|Zapisz tę transakcję, przenosząc ją na inne konto.|Zapisz te transakcje przenosząc je na inne konto.', + 'stored_new_account' => 'Nowe konto ":name" zostało zapisane!', + 'stored_new_account_js' => 'Nowe konto "{name}" zapisane!', + 'updated_account' => 'Zaktualizowano konto ":name"', + 'updated_account_js' => 'Zaktualizowano konto "{title}".', + 'credit_card_options' => 'Opcje karty kredytowej', + 'no_transactions_account' => 'Brak transakcji (w tym okresie) na koncie aktywów ":name".', + 'no_transactions_period' => 'Nie ma żadnych transakcji (w tym okresie).', + 'no_data_for_chart' => 'Nie ma wystarczająco dużo informacji (póki co), aby wygenerować ten wykres.', + 'select_at_least_one_account' => 'Wybierz proszę co najmniej jedno konto aktywów', + 'select_at_least_one_category' => 'Wybierz proszę co najmniej jedną kategorię', + 'select_at_least_one_budget' => 'Wybierz proszę co najmniej jeden budżet', + 'select_at_least_one_tag' => 'Wybierz proszę co najmniej jeden tag', + 'select_at_least_one_expense' => 'Wybierz proszę co najmniej jedną kombinację kont wydatków/przychodów. Jeżeli nie masz żadnych (lista jest pusta) ten raport jest niedostępny.', + 'account_default_currency' => 'To będzie domyślna waluta powiązana z tym kontem.', + 'reconcile_has_more' => 'Twoja księga główna Firefly III ma więcej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', + 'reconcile_has_less' => 'Twoja księga główna Firefly III ma mniej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', + 'reconcile_is_equal' => 'Twoja księga główna Firefly III i wyciągi bankowe są zgodne. Nie ma nic do zrobienia. Naciśnij "Potwierdź uzgodnienie" aby potwierdzić twój wybór.', + 'create_pos_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę dodając :amount do tego konta aktywów.', + 'create_neg_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę usuwając :amount z tego konta aktywów.', + 'reconcile_do_nothing' => 'Oznacz wybrane transakcje jako uzgodnione, ale nic nie poprawiaj.', + 'reconcile_go_back' => 'Możesz zawsze zmodyfikować lub usunąć korektę później.', + 'must_be_asset_account' => 'Możesz uzgodnić tylko konta aktywów', + 'reconciliation_stored' => 'Uzgodnienie zapisane', + 'reconciliation_error' => 'Z powodu błędu transakcje zostały oznaczone jako uzgodnione, ale korekta nie została zapisana: :error.', + 'reconciliation_transaction_title' => 'Rozrachunek (od :from do :to)', + 'sum_of_reconciliation' => 'Suma rozrachunku', + 'reconcile_this_account' => 'Uzgodnij to konto', + 'reconcile' => 'Uzgodnij', + 'show' => 'Pokaż', + 'confirm_reconciliation' => 'Potwierdź rozrachunek', + 'submitted_start_balance' => 'Przesłane saldo początkowe', + 'selected_transactions' => 'Wybrane transakcje (:count)', + 'already_cleared_transactions' => 'Transakcje uzgodnione wcześniej (:count)', + 'submitted_end_balance' => 'Przesłane saldo końcowe', + 'initial_balance_description' => 'Saldo początkowe dla ":account"', + 'liability_credit_description' => 'Zobowiązania udzielone dla ":account"', + 'interest_calc_' => 'nieznany', + 'interest_calc_daily' => 'Co dzień', + 'interest_calc_monthly' => 'Co miesiąc', + 'interest_calc_yearly' => 'Co rok', + 'interest_calc_weekly' => 'Tygodniowo', + 'interest_calc_half-year' => 'Co pół roku', + 'interest_calc_quarterly' => 'Kwartalnie', + 'initial_balance_account' => 'Początkowe saldo konta :account', + 'list_options' => 'Opcje listy', // categories: - 'new_category' => 'Nowa kategoria', - 'create_new_category' => 'Utwórz nową kategorię', - 'without_category' => 'Bez kategorii', - 'update_category' => 'Aktualizuj kategorię', - 'updated_category' => 'Zmodyfikowano kategorię ":name"', - 'categories' => 'Kategorie', - 'edit_category' => 'Edytuj kategorię ":name"', - 'no_category' => '(bez kategorii)', - 'unknown_category_plain' => 'Brak kategorii', - 'category' => 'Kategoria', - 'delete_category' => 'Usuń kategorię ":name"', - 'deleted_category' => 'Usunięto kategorię ":name"', - 'store_category' => 'Zapisz nową kategorię', - 'stored_category' => 'Zapisano nową kategorię ":name"', - 'without_category_between' => 'Bez kategorii między :start i :end', + 'new_category' => 'Nowa kategoria', + 'create_new_category' => 'Utwórz nową kategorię', + 'without_category' => 'Bez kategorii', + 'update_category' => 'Aktualizuj kategorię', + 'updated_category' => 'Zmodyfikowano kategorię ":name"', + 'categories' => 'Kategorie', + 'edit_category' => 'Edytuj kategorię ":name"', + 'no_category' => '(bez kategorii)', + 'unknown_category_plain' => 'Brak kategorii', + 'category' => 'Kategoria', + 'delete_category' => 'Usuń kategorię ":name"', + 'deleted_category' => 'Usunięto kategorię ":name"', + 'store_category' => 'Zapisz nową kategorię', + 'stored_category' => 'Zapisano nową kategorię ":name"', + 'without_category_between' => 'Bez kategorii między :start i :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Poczekaj na załadowanie formularza', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Cofnij uzgodnienie', - 'update_withdrawal' => 'Modyfikuj wypłatę', - 'update_deposit' => 'Modyfikuj wpłatę', - 'update_transaction' => 'Zaktualizuj transakcję', - 'update_transfer' => 'Modyfikuj transfer', - 'updated_withdrawal' => 'Zaktualizowano wypłatę ":description"', - 'updated_deposit' => 'Zaktualizowano wpłatę ":description"', - 'updated_transfer' => 'Zaktualizowano transfer ":description"', - 'no_changes_withdrawal' => 'Wydatek ":description" nie został zmieniony.', - 'no_changes_deposit' => 'Wpłata ":description" nie została zmieniona.', - 'no_changes_transfer' => 'Przelew ":description" nie został zmieniony.', - 'delete_withdrawal' => 'Usunięto wypłatę ":description"', - 'delete_deposit' => 'Usuń wpłatę ":description"', - 'delete_transfer' => 'Usuń transfer ":description"', - 'deleted_withdrawal' => 'Pomyślnie usunięto wypłatę ":description"', - 'deleted_deposit' => 'Pomyślnie usunięto depozyt ":description"', - 'deleted_transfer' => 'Pomyślnie usunięto transfer ":description"', - 'deleted_reconciliation' => 'Pomyślnie usunięto transakcję uzgadniania ":description"', - 'stored_journal' => 'Pomyślnie utworzono nową transakcję ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Pomyślnie utworzono nową transakcję', - 'updated_journal_no_descr' => 'Pomyślnie zaktualizowano Twoją transakcję', - 'select_transactions' => 'Wybierz transakcje', - 'rule_group_select_transactions' => 'Zastosuj ":title" do transakcji', - 'rule_select_transactions' => 'Zastosuj ":title" do transakcji', - 'stop_selection' => 'Przestań wybierać transakcje', - 'reconcile_selected' => 'Uzgodnij', - 'mass_delete_journals' => 'Usuń wiele transakcji', - 'mass_edit_journals' => 'Modyfikuj wiele transakcji', - 'mass_bulk_journals' => 'Hurtowa edycja wielu transakcji', - 'mass_bulk_journals_explain' => 'Ten formularz pozwala na zmianę właściwości transakcji wymienionych poniżej w jednej ogólnej aktualizacji. Wszystkie transakcje w tabeli zostaną zaktualizowane, gdy zmienisz parametry widoczne tutaj.', - 'part_of_split' => 'Ta transakcja jest częścią podzielonej transakcji. Jeżeli nie zaznaczono wszystkich części, transakcja może zostać zmieniona tylko w połowie.', - 'bulk_set_new_values' => 'Użyj pól poniżej, aby ustawić nowe wartości. Jeżeli zostawisz je puste, zostaną wyczyszczone dla wszystkich transakcji. Pamiętaj także, że budżet zostanie ustawiony tylko dla wypłat.', - 'no_bulk_category' => 'Nie aktualizuj kategorii', - 'no_bulk_budget' => 'Nie aktualizuj budżetu', - 'no_bulk_tags' => 'Nie aktualizuj tagów', - 'replace_with_these_tags' => 'Zastąp tagami', - 'append_these_tags' => 'Dodaj te tagi', - 'mass_edit' => 'Edytuj wybrane pojedynczo', - 'bulk_edit' => 'Edytuj wybrane zbiorczo', - 'mass_delete' => 'Usuń zaznaczone', - 'cannot_edit_other_fields' => 'Nie możesz masowo modyfikować innych pól niż te tutaj, ponieważ nie ma miejsca, aby je pokazać. Proszę użyć ikony edycji i edytować je jedno po drugim, jeśli chcesz edytować te pola.', - 'cannot_change_amount_reconciled' => 'Nie możesz zmienić wartości uzgodnionych transakcji.', - 'no_budget' => '(brak budżetu)', - 'no_bill' => '(brak rachunku)', - 'account_per_budget' => 'Konto wg. budżetu', - 'account_per_category' => 'Konto wg. kategorii', - 'create_new_object' => 'Utwórz', - 'empty' => '(pusty)', - 'all_other_budgets' => '(wszystkie inne budżety)', - 'all_other_accounts' => '(wszystkie inne konta)', - 'expense_per_source_account' => 'Wydatki według konta źródłowego', - 'expense_per_destination_account' => 'Wydatki według konta docelowego', - 'income_per_destination_account' => 'Przychody według konta docelowego', - 'spent_in_specific_category' => 'Wydatki w kategorii ":category"', - 'earned_in_specific_category' => 'Przychody w kategorii ":category"', - 'spent_in_specific_tag' => 'Wydatki w tagu ":tag"', - 'earned_in_specific_tag' => 'Przychody w tagu ":tag"', - 'income_per_source_account' => 'Przychody według konta źródłowego', - 'average_spending_per_destination' => 'Średnie wydatki według konta docelowego', - 'average_spending_per_source' => 'Średnie wydatki według konta źródłowego', - 'average_earning_per_source' => 'Średnie przychody według konta źródłowego', - 'average_earning_per_destination' => 'Średnie przychody według konta docelowego', - 'account_per_tag' => 'Konto wg. tagu', - 'tag_report_expenses_listed_once' => 'Wydatki i dochody nigdy nie są wyświetlane dwukrotnie. Jeśli transakcja ma wiele tagów, może się pojawić pod jednym z jej tagów. Może się wydawać, że na tej liście brakuje danych, ale kwoty powinny poprawne.', - 'double_report_expenses_charted_once' => 'Wydatki i dochody nigdy nie są wyświetlane dwukrotnie. Jeśli transakcja ma wiele tagów, może się pojawić pod jednym z jej tagów. Może się wydawać, że na tym wykresie brakuje danych, ale kwoty powinny poprawne.', - 'tag_report_chart_single_tag' => 'Ten wykres dotyczy pojedynczego taga. Jeśli transakcja ma wiele tagów, to co tu widzisz może być pokazane na wykresach innych tagów.', - 'tag' => 'Tag', - 'no_budget_squared' => '(brak budżetu)', - 'perm-delete-many' => 'Usunięcie wielu elementów w jednym podejściu może być bardzo poważne. Zachowaj ostrożność. Możesz usunąć część podzielonej transakcji z tej strony, więc zachowaj ostrożność.', - 'mass_deleted_transactions_success' => 'Usunięto :count transakcję.|Usunięto :count transakcji.', - 'mass_edited_transactions_success' => 'Zaktualizowano :count transakcję.|Zaktualizowano :count transakcji.', - 'opt_group_' => '(brak typu konta)', - 'opt_group_no_account_type' => '(brak typu konta)', - 'opt_group_defaultAsset' => 'Domyślne konta aktywów', - 'opt_group_savingAsset' => 'Konta oszczędnościowe', - 'opt_group_sharedAsset' => 'Współdzielone konta aktywów', - 'opt_group_ccAsset' => 'Karty kredytowe', - 'opt_group_cashWalletAsset' => 'Portfele gotówkowe', - 'opt_group_expense_account' => 'Konta wydatków', - 'opt_group_revenue_account' => 'Konta przychodów', - 'opt_group_l_Loan' => 'Zobowiązanie: Pożyczka', - 'opt_group_cash_account' => 'Konto gotówkowe', - 'opt_group_l_Debt' => 'Zobowiązanie: Dług', - 'opt_group_l_Mortgage' => 'Zobowiązanie: Hipoteka', - 'opt_group_l_Credit card' => 'Zobowiązanie: Karta kredytowa', - 'notes' => 'Notatki', - 'unknown_journal_error' => 'Nie można zapisać transakcji. Sprawdź pliki dziennika.', - 'attachment_not_found' => 'Nie udało się znaleźć tego załącznika.', - 'journal_link_bill' => 'Ta transakcja jest powiązana z rachunkiem :name. Aby usunąć to powiązanie odznacz pole wyboru. Użyj reguł aby połączyć ją z innym rachunkiem.', - 'transaction_stored_link' => 'Transakcja #{ID} ("{title}") została zapisana.', - 'transaction_new_stored_link' => 'Transakcja #{ID} została zapisana.', - 'transaction_updated_link' => 'Transakcja #{ID} ("{title}") została zaktualizowana.', - 'transaction_updated_no_changes' => 'Transakcja #{ID} ("{title}") nie została zmieniona.', - 'first_split_decides' => 'Pierwszy podział określa wartość tego pola', - 'first_split_overrules_source' => 'Pierwszy podział może nadpisać konto źródłowe', - 'first_split_overrules_destination' => 'Pierwszy podział może nadpisać konto docelowe', - 'spent_x_of_y' => 'Wydano {amount} z {total}', + 'wait_loading_transaction' => 'Poczekaj na załadowanie formularza', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Cofnij uzgodnienie', + 'update_withdrawal' => 'Modyfikuj wypłatę', + 'update_deposit' => 'Modyfikuj wpłatę', + 'update_transaction' => 'Zaktualizuj transakcję', + 'update_transfer' => 'Modyfikuj transfer', + 'updated_withdrawal' => 'Zaktualizowano wypłatę ":description"', + 'updated_deposit' => 'Zaktualizowano wpłatę ":description"', + 'updated_transfer' => 'Zaktualizowano transfer ":description"', + 'no_changes_withdrawal' => 'Wydatek ":description" nie został zmieniony.', + 'no_changes_deposit' => 'Wpłata ":description" nie została zmieniona.', + 'no_changes_transfer' => 'Przelew ":description" nie został zmieniony.', + 'delete_withdrawal' => 'Usunięto wypłatę ":description"', + 'delete_deposit' => 'Usuń wpłatę ":description"', + 'delete_transfer' => 'Usuń transfer ":description"', + 'deleted_withdrawal' => 'Pomyślnie usunięto wypłatę ":description"', + 'deleted_deposit' => 'Pomyślnie usunięto depozyt ":description"', + 'deleted_transfer' => 'Pomyślnie usunięto transfer ":description"', + 'deleted_reconciliation' => 'Pomyślnie usunięto transakcję uzgadniania ":description"', + 'stored_journal' => 'Pomyślnie utworzono nową transakcję ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Pomyślnie utworzono nową transakcję', + 'updated_journal_no_descr' => 'Pomyślnie zaktualizowano Twoją transakcję', + 'select_transactions' => 'Wybierz transakcje', + 'rule_group_select_transactions' => 'Zastosuj ":title" do transakcji', + 'rule_select_transactions' => 'Zastosuj ":title" do transakcji', + 'stop_selection' => 'Przestań wybierać transakcje', + 'reconcile_selected' => 'Uzgodnij', + 'mass_delete_journals' => 'Usuń wiele transakcji', + 'mass_edit_journals' => 'Modyfikuj wiele transakcji', + 'mass_bulk_journals' => 'Hurtowa edycja wielu transakcji', + 'mass_bulk_journals_explain' => 'Ten formularz pozwala na zmianę właściwości transakcji wymienionych poniżej w jednej ogólnej aktualizacji. Wszystkie transakcje w tabeli zostaną zaktualizowane, gdy zmienisz parametry widoczne tutaj.', + 'part_of_split' => 'Ta transakcja jest częścią podzielonej transakcji. Jeżeli nie zaznaczono wszystkich części, transakcja może zostać zmieniona tylko w połowie.', + 'bulk_set_new_values' => 'Użyj pól poniżej, aby ustawić nowe wartości. Jeżeli zostawisz je puste, zostaną wyczyszczone dla wszystkich transakcji. Pamiętaj także, że budżet zostanie ustawiony tylko dla wypłat.', + 'no_bulk_category' => 'Nie aktualizuj kategorii', + 'no_bulk_budget' => 'Nie aktualizuj budżetu', + 'no_bulk_tags' => 'Nie aktualizuj tagów', + 'replace_with_these_tags' => 'Zastąp tagami', + 'append_these_tags' => 'Dodaj te tagi', + 'mass_edit' => 'Edytuj wybrane pojedynczo', + 'bulk_edit' => 'Edytuj wybrane zbiorczo', + 'mass_delete' => 'Usuń zaznaczone', + 'cannot_edit_other_fields' => 'Nie możesz masowo modyfikować innych pól niż te tutaj, ponieważ nie ma miejsca, aby je pokazać. Proszę użyć ikony edycji i edytować je jedno po drugim, jeśli chcesz edytować te pola.', + 'cannot_change_amount_reconciled' => 'Nie możesz zmienić wartości uzgodnionych transakcji.', + 'no_budget' => '(brak budżetu)', + 'no_bill' => '(brak rachunku)', + 'account_per_budget' => 'Konto wg. budżetu', + 'account_per_category' => 'Konto wg. kategorii', + 'create_new_object' => 'Utwórz', + 'empty' => '(pusty)', + 'all_other_budgets' => '(wszystkie inne budżety)', + 'all_other_accounts' => '(wszystkie inne konta)', + 'expense_per_source_account' => 'Wydatki według konta źródłowego', + 'expense_per_destination_account' => 'Wydatki według konta docelowego', + 'income_per_destination_account' => 'Przychody według konta docelowego', + 'spent_in_specific_category' => 'Wydatki w kategorii ":category"', + 'earned_in_specific_category' => 'Przychody w kategorii ":category"', + 'spent_in_specific_tag' => 'Wydatki w tagu ":tag"', + 'earned_in_specific_tag' => 'Przychody w tagu ":tag"', + 'income_per_source_account' => 'Przychody według konta źródłowego', + 'average_spending_per_destination' => 'Średnie wydatki według konta docelowego', + 'average_spending_per_source' => 'Średnie wydatki według konta źródłowego', + 'average_earning_per_source' => 'Średnie przychody według konta źródłowego', + 'average_earning_per_destination' => 'Średnie przychody według konta docelowego', + 'account_per_tag' => 'Konto wg. tagu', + 'tag_report_expenses_listed_once' => 'Wydatki i dochody nigdy nie są wyświetlane dwukrotnie. Jeśli transakcja ma wiele tagów, może się pojawić pod jednym z jej tagów. Może się wydawać, że na tej liście brakuje danych, ale kwoty powinny poprawne.', + 'double_report_expenses_charted_once' => 'Wydatki i dochody nigdy nie są wyświetlane dwukrotnie. Jeśli transakcja ma wiele tagów, może się pojawić pod jednym z jej tagów. Może się wydawać, że na tym wykresie brakuje danych, ale kwoty powinny poprawne.', + 'tag_report_chart_single_tag' => 'Ten wykres dotyczy pojedynczego taga. Jeśli transakcja ma wiele tagów, to co tu widzisz może być pokazane na wykresach innych tagów.', + 'tag' => 'Tag', + 'no_budget_squared' => '(brak budżetu)', + 'perm-delete-many' => 'Usunięcie wielu elementów w jednym podejściu może być bardzo poważne. Zachowaj ostrożność. Możesz usunąć część podzielonej transakcji z tej strony, więc zachowaj ostrożność.', + 'mass_deleted_transactions_success' => 'Usunięto :count transakcję.|Usunięto :count transakcji.', + 'mass_edited_transactions_success' => 'Zaktualizowano :count transakcję.|Zaktualizowano :count transakcji.', + 'opt_group_' => '(brak typu konta)', + 'opt_group_no_account_type' => '(brak typu konta)', + 'opt_group_defaultAsset' => 'Domyślne konta aktywów', + 'opt_group_savingAsset' => 'Konta oszczędnościowe', + 'opt_group_sharedAsset' => 'Współdzielone konta aktywów', + 'opt_group_ccAsset' => 'Karty kredytowe', + 'opt_group_cashWalletAsset' => 'Portfele gotówkowe', + 'opt_group_expense_account' => 'Konta wydatków', + 'opt_group_revenue_account' => 'Konta przychodów', + 'opt_group_l_Loan' => 'Zobowiązanie: Pożyczka', + 'opt_group_cash_account' => 'Konto gotówkowe', + 'opt_group_l_Debt' => 'Zobowiązanie: Dług', + 'opt_group_l_Mortgage' => 'Zobowiązanie: Hipoteka', + 'opt_group_l_Credit card' => 'Zobowiązanie: Karta kredytowa', + 'notes' => 'Notatki', + 'unknown_journal_error' => 'Nie można zapisać transakcji. Sprawdź pliki dziennika.', + 'attachment_not_found' => 'Nie udało się znaleźć tego załącznika.', + 'journal_link_bill' => 'Ta transakcja jest powiązana z rachunkiem :name. Aby usunąć to powiązanie odznacz pole wyboru. Użyj reguł aby połączyć ją z innym rachunkiem.', + 'transaction_stored_link' => 'Transakcja #{ID} ("{title}") została zapisana.', + 'transaction_new_stored_link' => 'Transakcja #{ID} została zapisana.', + 'transaction_updated_link' => 'Transakcja #{ID} ("{title}") została zaktualizowana.', + 'transaction_updated_no_changes' => 'Transakcja #{ID} ("{title}") nie została zmieniona.', + 'first_split_decides' => 'Pierwszy podział określa wartość tego pola', + 'first_split_overrules_source' => 'Pierwszy podział może nadpisać konto źródłowe', + 'first_split_overrules_destination' => 'Pierwszy podział może nadpisać konto docelowe', + 'spent_x_of_y' => 'Wydano {amount} z {total}', // new user: - 'welcome' => 'Witaj w Firefly III!', - 'submit' => 'Prześlij', - 'submission' => 'Zapisz', - 'submit_yes_really' => 'Zatwierdź (wiem co robię)', - 'getting_started' => 'Pierwsze kroki', - 'to_get_started' => 'Dobrze, że udało ci się zainstalować Firefly III. Aby rozpocząć korzystanie z tego narzędzia, wprowadź nazwę swojego banku i saldo głównego rachunku bieżącego. Nie martw się, jeśli masz wiele kont. Możesz dodać je później. Po prostu Firefly III potrzebuje czegoś na początek.', - 'savings_balance_text' => 'Firefly III automatycznie utworzy dla ciebie konto oszczędnościowe. Domyślnie na twoim koncie oszczędnościowym nie ma pieniędzy, ale jeśli chcesz, Firefly III może je tam przechowywać.', - 'finish_up_new_user' => 'To wszystko! Możesz kontynuować, naciskając Zatwierdź. Zostaniesz przeniesiony do strony głównej Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Twoje nowe konta zostały zapisane.', - 'set_preferred_language' => 'Jeśli wolisz używać Firefly III w innym języku, wskaż to tutaj.', - 'language' => 'Język', - 'new_savings_account' => 'Konto oszczędnościowe :bank_name', - 'cash_wallet' => 'Portfel gotówkowy', - 'currency_not_present' => 'Jeśli waluty, której zwykle używasz, nie ma na liście, nie martw się. Możesz tworzyć swoje własne waluty w Opcje > Waluty.', + 'welcome' => 'Witaj w Firefly III!', + 'submit' => 'Prześlij', + 'submission' => 'Zapisz', + 'submit_yes_really' => 'Zatwierdź (wiem co robię)', + 'getting_started' => 'Pierwsze kroki', + 'to_get_started' => 'Dobrze, że udało ci się zainstalować Firefly III. Aby rozpocząć korzystanie z tego narzędzia, wprowadź nazwę swojego banku i saldo głównego rachunku bieżącego. Nie martw się, jeśli masz wiele kont. Możesz dodać je później. Po prostu Firefly III potrzebuje czegoś na początek.', + 'savings_balance_text' => 'Firefly III automatycznie utworzy dla ciebie konto oszczędnościowe. Domyślnie na twoim koncie oszczędnościowym nie ma pieniędzy, ale jeśli chcesz, Firefly III może je tam przechowywać.', + 'finish_up_new_user' => 'To wszystko! Możesz kontynuować, naciskając Zatwierdź. Zostaniesz przeniesiony do strony głównej Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Twoje nowe konta zostały zapisane.', + 'set_preferred_language' => 'Jeśli wolisz używać Firefly III w innym języku, wskaż to tutaj.', + 'language' => 'Język', + 'new_savings_account' => 'Konto oszczędnościowe :bank_name', + 'cash_wallet' => 'Portfel gotówkowy', + 'currency_not_present' => 'Jeśli waluty, której zwykle używasz, nie ma na liście, nie martw się. Możesz tworzyć swoje własne waluty w Opcje > Waluty.', // home page: - 'transaction_table_description' => 'Tabela zawierająca Twoje transakcje', - 'opposing_account' => 'Konto przeciwstawne', - 'yourAccounts' => 'Twoje konta', - 'your_accounts' => 'Przegląd Twoich kont', - 'category_overview' => 'Przegląd kategorii', - 'expense_overview' => 'Przegląd kont wydatków', - 'revenue_overview' => 'Przegląd kont przychodów', - 'budgetsAndSpending' => 'Budżety i wydatki', - 'budgets_and_spending' => 'Budżety i wydatki', - 'go_to_budget' => 'Idź do budżetu "{budget}"', - 'go_to_deposits' => 'Przejdź do wpłat', - 'go_to_expenses' => 'Przejdź do wydatków', - 'savings' => 'Oszczędności', - 'newWithdrawal' => 'Nowy wydatek', - 'newDeposit' => 'Nowa wpłata', - 'newTransfer' => 'Nowy transfer', - 'bills_to_pay' => 'Rachunki do zapłacenia', - 'per_day' => 'Dziennie', - 'left_to_spend_per_day' => 'Kwota możliwa do wydania codziennie', - 'bills_paid' => 'Zapłacone rachunki', - 'custom_period' => 'Okres niestandardowy', - 'reset_to_current' => 'Przywróć do bieżącego okresu', - 'select_period' => 'Wybierz okres', + 'transaction_table_description' => 'Tabela zawierająca Twoje transakcje', + 'opposing_account' => 'Konto przeciwstawne', + 'yourAccounts' => 'Twoje konta', + 'your_accounts' => 'Przegląd Twoich kont', + 'category_overview' => 'Przegląd kategorii', + 'expense_overview' => 'Przegląd kont wydatków', + 'revenue_overview' => 'Przegląd kont przychodów', + 'budgetsAndSpending' => 'Budżety i wydatki', + 'budgets_and_spending' => 'Budżety i wydatki', + 'go_to_budget' => 'Idź do budżetu "{budget}"', + 'go_to_deposits' => 'Przejdź do wpłat', + 'go_to_expenses' => 'Przejdź do wydatków', + 'savings' => 'Oszczędności', + 'newWithdrawal' => 'Nowy wydatek', + 'newDeposit' => 'Nowa wpłata', + 'newTransfer' => 'Nowy transfer', + 'bills_to_pay' => 'Rachunki do zapłacenia', + 'per_day' => 'Dziennie', + 'left_to_spend_per_day' => 'Kwota możliwa do wydania codziennie', + 'bills_paid' => 'Zapłacone rachunki', + 'custom_period' => 'Okres niestandardowy', + 'reset_to_current' => 'Przywróć do bieżącego okresu', + 'select_period' => 'Wybierz okres', // menu and titles, should be recycled as often as possible: - 'currency' => 'Waluta', - 'preferences' => 'Preferencje', - 'logout' => 'Wyloguj', - 'logout_other_sessions' => 'Wyloguj z pozostałych sesji', - 'toggleNavigation' => 'Przełącz nawigację', - 'searchPlaceholder' => 'Szukaj...', - 'version' => 'Wersja', - 'dashboard' => 'Kokpit', - 'income_and_expense' => 'Przychody i wydatki', - 'all_money' => 'Wszystkie Twoje pieniądze', - 'unknown_source_plain' => 'Nieznane konto źródłowe', - 'unknown_dest_plain' => 'Nieznane konto docelowe', - 'unknown_any_plain' => 'Nieznane konto', - 'unknown_budget_plain' => 'Brak budżetu', - 'available_budget' => 'Dostępne budżety ({currency})', - 'currencies' => 'Waluty', - 'activity' => 'Aktywność', - 'usage' => 'Użycie', - 'accounts' => 'Konta', - 'Asset account' => 'Konto aktywów', - 'Default account' => 'Konto aktywów', - 'Expense account' => 'Konto wydatków', - 'Revenue account' => 'Konto przychodów', - 'Initial balance account' => 'Początkowe saldo konta', - 'account_type_Asset account' => 'Konto aktywów', - 'account_type_Expense account' => 'Konto wydatków', - 'account_type_Revenue account' => 'Konto przychodów', - 'account_type_Debt' => 'Dług', - 'account_type_Loan' => 'Pożyczka', - 'account_type_Mortgage' => 'Hipoteka', - 'account_type_debt' => 'Dług', - 'account_type_loan' => 'Pożyczka', - 'account_type_mortgage' => 'Hipoteka', - 'account_type_Credit card' => 'Karta kredytowa', - 'credit_card_type_monthlyFull' => 'Pełna płatność co miesiąc', - 'liability_direction_credit' => 'Zadłużenie wobec mnie', - 'liability_direction_debit' => 'Zadłużenie wobec kogoś innego', - 'liability_direction_credit_short' => 'Dług wobec Ciebie', - 'liability_direction_debit_short' => 'Jesteś dłużny', - 'liability_direction__short' => 'Nieznane', - 'liability_direction_null_short' => 'Nieznane', - 'Liability credit' => 'Kredyt na zobowiązania', - 'budgets' => 'Budżety', - 'tags' => 'Tagi', - 'reports' => 'Raporty', - 'transactions' => 'Transakcje', - 'expenses' => 'Wydatki', - 'income' => 'Przychody / dochody', - 'transfers' => 'Transfery', - 'moneyManagement' => 'Zarządzanie pieniędzmi', - 'money_management' => 'Zarządzanie pieniędzmi', - 'tools' => 'Narzędzia', - 'piggyBanks' => 'Skarbonki', - 'piggy_banks' => 'Skarbonki', - 'amount_x_of_y' => '{current} z {total}', - 'bills' => 'Rachunki', - 'withdrawal' => 'Wypłata', - 'opening_balance' => 'Saldo początkowe', - 'deposit' => 'Wpłata', - 'account' => 'Konto', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Wypłata', - 'Deposit' => 'Wpłata', - 'Transfer' => 'Transfer', - 'bill' => 'Rachunek', - 'yes' => 'Tak', - 'no' => 'Nie', - 'amount' => 'Kwota', - 'overview' => 'Przegląd', - 'saveOnAccount' => 'Oszczędzaj na koncie', - 'unknown' => 'Nieznane', - 'monthly' => 'Miesięcznie', - 'profile' => 'Profil', - 'errors' => 'Błędy', - 'debt_start_date' => 'Początkowa data długu', - 'debt_start_amount' => 'Początkowa kwota długu', - 'debt_start_amount_help' => 'Najlepiej ustawić tę wartość na wartość ujemną. Aby uzyskać więcej informacji, przeczytaj strony pomocy (ikona (?) w prawym górnym rogu).', - 'interest_period_help' => 'To pole jest czysto kosmetyczne i nie zostanie obliczone automatycznie. Jak się okazuje, banki są bardzo podstępne, więc Firefly III nigdy nie oblicza tego prawidłowo.', - 'store_new_liabilities_account' => 'Zapisz nowe zobowiązanie', - 'edit_liabilities_account' => 'Modyfikuj zobowiązanie ":name"', - 'financial_control' => 'Kontrola finansowa', - 'accounting' => 'Księgowość', - 'automation' => 'Automatyzacja', - 'others' => 'Pozostałe', - 'classification' => 'Klasyfikacja', - 'store_transaction' => 'Zapisz transakcję', + 'currency' => 'Waluta', + 'preferences' => 'Preferencje', + 'logout' => 'Wyloguj', + 'logout_other_sessions' => 'Wyloguj z pozostałych sesji', + 'toggleNavigation' => 'Przełącz nawigację', + 'searchPlaceholder' => 'Szukaj...', + 'version' => 'Wersja', + 'dashboard' => 'Kokpit', + 'income_and_expense' => 'Przychody i wydatki', + 'all_money' => 'Wszystkie Twoje pieniądze', + 'unknown_source_plain' => 'Nieznane konto źródłowe', + 'unknown_dest_plain' => 'Nieznane konto docelowe', + 'unknown_any_plain' => 'Nieznane konto', + 'unknown_budget_plain' => 'Brak budżetu', + 'available_budget' => 'Dostępne budżety ({currency})', + 'currencies' => 'Waluty', + 'activity' => 'Aktywność', + 'usage' => 'Użycie', + 'accounts' => 'Konta', + 'Asset account' => 'Konto aktywów', + 'Default account' => 'Konto aktywów', + 'Expense account' => 'Konto wydatków', + 'Revenue account' => 'Konto przychodów', + 'Initial balance account' => 'Początkowe saldo konta', + 'account_type_Asset account' => 'Konto aktywów', + 'account_type_Expense account' => 'Konto wydatków', + 'account_type_Revenue account' => 'Konto przychodów', + 'account_type_Debt' => 'Dług', + 'account_type_Loan' => 'Pożyczka', + 'account_type_Mortgage' => 'Hipoteka', + 'account_type_debt' => 'Dług', + 'account_type_loan' => 'Pożyczka', + 'account_type_mortgage' => 'Hipoteka', + 'account_type_Credit card' => 'Karta kredytowa', + 'credit_card_type_monthlyFull' => 'Pełna płatność co miesiąc', + 'liability_direction_credit' => 'Zadłużenie wobec mnie', + 'liability_direction_debit' => 'Zadłużenie wobec kogoś innego', + 'liability_direction_credit_short' => 'Dług wobec Ciebie', + 'liability_direction_debit_short' => 'Jesteś dłużny', + 'liability_direction__short' => 'Nieznane', + 'liability_direction_null_short' => 'Nieznane', + 'Liability credit' => 'Kredyt na zobowiązania', + 'budgets' => 'Budżety', + 'tags' => 'Tagi', + 'reports' => 'Raporty', + 'transactions' => 'Transakcje', + 'expenses' => 'Wydatki', + 'income' => 'Przychody / dochody', + 'transfers' => 'Transfery', + 'moneyManagement' => 'Zarządzanie pieniędzmi', + 'money_management' => 'Zarządzanie pieniędzmi', + 'tools' => 'Narzędzia', + 'piggyBanks' => 'Skarbonki', + 'piggy_banks' => 'Skarbonki', + 'amount_x_of_y' => '{current} z {total}', + 'bills' => 'Rachunki', + 'withdrawal' => 'Wypłata', + 'opening_balance' => 'Saldo początkowe', + 'deposit' => 'Wpłata', + 'account' => 'Konto', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Wypłata', + 'Deposit' => 'Wpłata', + 'Transfer' => 'Transfer', + 'bill' => 'Rachunek', + 'yes' => 'Tak', + 'no' => 'Nie', + 'amount' => 'Kwota', + 'overview' => 'Przegląd', + 'saveOnAccount' => 'Oszczędzaj na koncie', + 'unknown' => 'Nieznane', + 'monthly' => 'Miesięcznie', + 'profile' => 'Profil', + 'errors' => 'Błędy', + 'debt_start_date' => 'Początkowa data długu', + 'debt_start_amount' => 'Początkowa kwota długu', + 'debt_start_amount_help' => 'Najlepiej ustawić tę wartość na wartość ujemną. Aby uzyskać więcej informacji, przeczytaj strony pomocy (ikona (?) w prawym górnym rogu).', + 'interest_period_help' => 'To pole jest czysto kosmetyczne i nie zostanie obliczone automatycznie. Jak się okazuje, banki są bardzo podstępne, więc Firefly III nigdy nie oblicza tego prawidłowo.', + 'store_new_liabilities_account' => 'Zapisz nowe zobowiązanie', + 'edit_liabilities_account' => 'Modyfikuj zobowiązanie ":name"', + 'financial_control' => 'Kontrola finansowa', + 'accounting' => 'Księgowość', + 'automation' => 'Automatyzacja', + 'others' => 'Pozostałe', + 'classification' => 'Klasyfikacja', + 'store_transaction' => 'Zapisz transakcję', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Domyślny raport finansowy między :start i :end', - 'report_audit' => 'Przegląd historii transakcji między :start i :end', - 'report_category' => 'Raport kategorii między :start a :end', - 'report_double' => 'Raport dotyczący wydatków/przychodów między :start a :end', - 'report_budget' => 'Raport budżetów między :start a :end', - 'report_tag' => 'Raport tagów między :start a :end', - 'quick_link_reports' => 'Szybkie linki', - 'quick_link_examples' => 'To tylko przykładowe linki, od których możesz zacząć. Sprawdź strony pomocy pod przyciskiem (?) aby uzyskać informacje o wszystkich raportach i magicznych słowach, których możesz użyć.', - 'quick_link_default_report' => 'Domyślny raport finansowy', - 'quick_link_audit_report' => 'Przegląd historii transakcji', - 'report_this_month_quick' => 'Bieżący miesiąc, wszystkie konta', - 'report_last_month_quick' => 'Ostatni miesiąc, wszystkie konta', - 'report_this_year_quick' => 'Bieżący rok, wszystkie konta', - 'report_this_fiscal_year_quick' => 'Bieżący rok podatkowy, wszystkie konta', - 'report_all_time_quick' => 'Cały czas, wszystkie konta', - 'reports_can_bookmark' => 'Pamiętaj, że raporty można dodać do zakładek.', - 'incomeVsExpenses' => 'Dochody a wydatki', - 'accountBalances' => 'Salda kont', - 'balanceStart' => 'Saldo na początku okresu', - 'balanceEnd' => 'Saldo na końcu okresu', - 'splitByAccount' => 'Podziel według konta', - 'coveredWithTags' => 'Objęte tagami', - 'leftInBudget' => 'Pozostało w budżecie', - 'left_in_debt' => 'Do zapłaty', - 'sumOfSums' => 'Suma sum', - 'noCategory' => '(bez kategorii)', - 'notCharged' => 'Brak opłaty (jeszcze)', - 'inactive' => 'Nieaktywne', - 'active' => 'Aktywne', - 'difference' => 'Różnica', - 'money_flowing_in' => 'Przychodzące', - 'money_flowing_out' => 'Wychodzące', - 'topX' => 'czołówka :number', - 'show_full_list' => 'Pokaż całą listę', - 'show_only_top' => 'Pokazuj tylko czołową :number', - 'report_type' => 'Typ raportu', - 'report_type_default' => 'Domyślny raport finansowy', - 'report_type_audit' => 'Przegląd historii transakcji (audyt)', - 'report_type_category' => 'Raport kategorii', - 'report_type_budget' => 'Raport budżetów', - 'report_type_tag' => 'Raport tagów', - 'report_type_double' => 'Raport dotyczący konta wydatków/przychodów', - 'more_info_help' => 'Więcej informacji na temat typów raportów można znaleźć na stronach pomocy. Naciśnij ikonę (?) w prawym górnym rogu.', - 'report_included_accounts' => 'Uwzględnione konta', - 'report_date_range' => 'Zakres dat', - 'report_preset_ranges' => 'Predefiniowane zakresy', - 'shared' => 'Udostępnione', - 'fiscal_year' => 'Rok podatkowy', - 'income_entry' => 'Dochód z konta ":name" między: :start a :end', - 'expense_entry' => 'Wydatki na konto ":name" między :start a :end', - 'category_entry' => 'Wydatki w kategorii ":name" między :start i :end', - 'budget_spent_amount' => 'Wydatki w budżecie ":budget" między :start i :end', - 'balance_amount' => 'Wydatki w budżecie ":budget" zapłacone z konta ":account" między :start a :end', - 'no_audit_activity' => 'Nie zarejestrowano żadnej aktywności na koncie :account_name między :start a :end.', - 'audit_end_balance' => 'Saldo konta :account_name na koniec :end wynosiło: :balance', - 'reports_extra_options' => 'Dodatkowe opcje', - 'report_has_no_extra_options' => 'Ten raport nie ma dodatkowych opcji', - 'reports_submit' => 'Zobacz raport', - 'end_after_start_date' => 'Data zakończenia raportu musi być po dacie rozpoczęcia.', - 'select_category' => 'Wybierz kategorię(e)', - 'select_budget' => 'Wybierz budżet(y).', - 'select_tag' => 'Wybierz tag(i).', - 'income_per_category' => 'Dochody wg kategorii', - 'expense_per_category' => 'Wydatki wg kategorii', - 'expense_per_budget' => 'Wydatki wg budżetu', - 'income_per_account' => 'Dochody wg konta', - 'expense_per_account' => 'Wydatki wg konta', - 'expense_per_tag' => 'Wydatki wg tagu', - 'income_per_tag' => 'Dochody wg tagu', - 'include_expense_not_in_budget' => 'Uwzględnij wydatki spoza wybranych budżetów', - 'include_expense_not_in_account' => 'Uwzględnij wydatki spoza wybranych kont', - 'include_expense_not_in_category' => 'Uwzględnij wydatki spoza wybranych kategorii', - 'include_income_not_in_category' => 'Uwzględnij przychody spoza wybranych kategorii', - 'include_income_not_in_account' => 'Uwzględnij przychody spoza wybranych kont', - 'include_income_not_in_tags' => 'Uwzględnij przychody spoza wybranych tagów', - 'include_expense_not_in_tags' => 'Uwzględnij wydatki spoza wybranych tagów', - 'everything_else' => 'Wszystko inne', - 'income_and_expenses' => 'Dochody i wydatki', - 'spent_average' => 'Wydano (średnia)', - 'income_average' => 'Dochód (średnia)', - 'transaction_count' => 'Liczba transakcji', - 'average_spending_per_account' => 'Średnie wydatki per konto', - 'average_income_per_account' => 'Średni dochód per konto', - 'total' => 'Łącznie', - 'description' => 'Opis', - 'sum_of_period' => 'Suma dla tego okresu', - 'average_in_period' => 'Średnia dla tego okresu', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Domyślne konto aktywów', - 'account_role_sharedAsset' => 'Współdzielone konto aktywów', - 'account_role_savingAsset' => 'Konto oszczędnościowe', - 'account_role_ccAsset' => 'Karta kredytowa', - 'account_role_cashWalletAsset' => 'Portfel gotówkowy', - 'budget_chart_click' => 'Kliknij na nazwę budżetu w tabeli powyżej, aby zobaczyć wykres.', - 'category_chart_click' => 'Kliknij na nazwę kategorii w tabeli powyżej, aby zobaczyć wykres.', - 'in_out_accounts' => 'Zarobione oraz wydane wg kombinacji', - 'in_out_accounts_per_asset' => 'Przychody i wydatki (na konto aktywów)', - 'in_out_per_category' => 'Zarobione oraz wydane wg kategorii', - 'out_per_budget' => 'Wydane wg budżetu', - 'select_expense_revenue' => 'Wybierz konto wydatków/przychodów', - 'multi_currency_report_sum' => 'Ponieważ ta lista zawiera konta z wieloma walutami, sumy, które widzisz, mogą nie mieć sensu. Raport zawsze używa domyślnej waluty.', - 'sum_in_default_currency' => 'Suma zawsze będzie w domyślnej walucie.', - 'net_filtered_prefs' => 'Ten wykres nigdy nie będzie zawierał kont, które nie mają zaznaczonej opcji "Uwzględnij w wartości netto".', + 'report_default' => 'Domyślny raport finansowy między :start i :end', + 'report_audit' => 'Przegląd historii transakcji między :start i :end', + 'report_category' => 'Raport kategorii między :start a :end', + 'report_double' => 'Raport dotyczący wydatków/przychodów między :start a :end', + 'report_budget' => 'Raport budżetów między :start a :end', + 'report_tag' => 'Raport tagów między :start a :end', + 'quick_link_reports' => 'Szybkie linki', + 'quick_link_examples' => 'To tylko przykładowe linki, od których możesz zacząć. Sprawdź strony pomocy pod przyciskiem (?) aby uzyskać informacje o wszystkich raportach i magicznych słowach, których możesz użyć.', + 'quick_link_default_report' => 'Domyślny raport finansowy', + 'quick_link_audit_report' => 'Przegląd historii transakcji', + 'report_this_month_quick' => 'Bieżący miesiąc, wszystkie konta', + 'report_last_month_quick' => 'Ostatni miesiąc, wszystkie konta', + 'report_this_year_quick' => 'Bieżący rok, wszystkie konta', + 'report_this_fiscal_year_quick' => 'Bieżący rok podatkowy, wszystkie konta', + 'report_all_time_quick' => 'Cały czas, wszystkie konta', + 'reports_can_bookmark' => 'Pamiętaj, że raporty można dodać do zakładek.', + 'incomeVsExpenses' => 'Dochody a wydatki', + 'accountBalances' => 'Salda kont', + 'balanceStart' => 'Saldo na początku okresu', + 'balanceEnd' => 'Saldo na końcu okresu', + 'splitByAccount' => 'Podziel według konta', + 'coveredWithTags' => 'Objęte tagami', + 'leftInBudget' => 'Pozostało w budżecie', + 'left_in_debt' => 'Do zapłaty', + 'sumOfSums' => 'Suma sum', + 'noCategory' => '(bez kategorii)', + 'notCharged' => 'Brak opłaty (jeszcze)', + 'inactive' => 'Nieaktywne', + 'active' => 'Aktywne', + 'difference' => 'Różnica', + 'money_flowing_in' => 'Przychodzące', + 'money_flowing_out' => 'Wychodzące', + 'topX' => 'czołówka :number', + 'show_full_list' => 'Pokaż całą listę', + 'show_only_top' => 'Pokazuj tylko czołową :number', + 'report_type' => 'Typ raportu', + 'report_type_default' => 'Domyślny raport finansowy', + 'report_type_audit' => 'Przegląd historii transakcji (audyt)', + 'report_type_category' => 'Raport kategorii', + 'report_type_budget' => 'Raport budżetów', + 'report_type_tag' => 'Raport tagów', + 'report_type_double' => 'Raport dotyczący konta wydatków/przychodów', + 'more_info_help' => 'Więcej informacji na temat typów raportów można znaleźć na stronach pomocy. Naciśnij ikonę (?) w prawym górnym rogu.', + 'report_included_accounts' => 'Uwzględnione konta', + 'report_date_range' => 'Zakres dat', + 'report_preset_ranges' => 'Predefiniowane zakresy', + 'shared' => 'Udostępnione', + 'fiscal_year' => 'Rok podatkowy', + 'income_entry' => 'Dochód z konta ":name" między: :start a :end', + 'expense_entry' => 'Wydatki na konto ":name" między :start a :end', + 'category_entry' => 'Wydatki w kategorii ":name" między :start i :end', + 'budget_spent_amount' => 'Wydatki w budżecie ":budget" między :start i :end', + 'balance_amount' => 'Wydatki w budżecie ":budget" zapłacone z konta ":account" między :start a :end', + 'no_audit_activity' => 'Nie zarejestrowano żadnej aktywności na koncie :account_name między :start a :end.', + 'audit_end_balance' => 'Saldo konta :account_name na koniec :end wynosiło: :balance', + 'reports_extra_options' => 'Dodatkowe opcje', + 'report_has_no_extra_options' => 'Ten raport nie ma dodatkowych opcji', + 'reports_submit' => 'Zobacz raport', + 'end_after_start_date' => 'Data zakończenia raportu musi być po dacie rozpoczęcia.', + 'select_category' => 'Wybierz kategorię(e)', + 'select_budget' => 'Wybierz budżet(y).', + 'select_tag' => 'Wybierz tag(i).', + 'income_per_category' => 'Dochody wg kategorii', + 'expense_per_category' => 'Wydatki wg kategorii', + 'expense_per_budget' => 'Wydatki wg budżetu', + 'income_per_account' => 'Dochody wg konta', + 'expense_per_account' => 'Wydatki wg konta', + 'expense_per_tag' => 'Wydatki wg tagu', + 'income_per_tag' => 'Dochody wg tagu', + 'include_expense_not_in_budget' => 'Uwzględnij wydatki spoza wybranych budżetów', + 'include_expense_not_in_account' => 'Uwzględnij wydatki spoza wybranych kont', + 'include_expense_not_in_category' => 'Uwzględnij wydatki spoza wybranych kategorii', + 'include_income_not_in_category' => 'Uwzględnij przychody spoza wybranych kategorii', + 'include_income_not_in_account' => 'Uwzględnij przychody spoza wybranych kont', + 'include_income_not_in_tags' => 'Uwzględnij przychody spoza wybranych tagów', + 'include_expense_not_in_tags' => 'Uwzględnij wydatki spoza wybranych tagów', + 'everything_else' => 'Wszystko inne', + 'income_and_expenses' => 'Dochody i wydatki', + 'spent_average' => 'Wydano (średnia)', + 'income_average' => 'Dochód (średnia)', + 'transaction_count' => 'Liczba transakcji', + 'average_spending_per_account' => 'Średnie wydatki per konto', + 'average_income_per_account' => 'Średni dochód per konto', + 'total' => 'Łącznie', + 'description' => 'Opis', + 'sum_of_period' => 'Suma dla tego okresu', + 'average_in_period' => 'Średnia dla tego okresu', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Domyślne konto aktywów', + 'account_role_sharedAsset' => 'Współdzielone konto aktywów', + 'account_role_savingAsset' => 'Konto oszczędnościowe', + 'account_role_ccAsset' => 'Karta kredytowa', + 'account_role_cashWalletAsset' => 'Portfel gotówkowy', + 'budget_chart_click' => 'Kliknij na nazwę budżetu w tabeli powyżej, aby zobaczyć wykres.', + 'category_chart_click' => 'Kliknij na nazwę kategorii w tabeli powyżej, aby zobaczyć wykres.', + 'in_out_accounts' => 'Zarobione oraz wydane wg kombinacji', + 'in_out_accounts_per_asset' => 'Przychody i wydatki (na konto aktywów)', + 'in_out_per_category' => 'Zarobione oraz wydane wg kategorii', + 'out_per_budget' => 'Wydane wg budżetu', + 'select_expense_revenue' => 'Wybierz konto wydatków/przychodów', + 'multi_currency_report_sum' => 'Ponieważ ta lista zawiera konta z wieloma walutami, sumy, które widzisz, mogą nie mieć sensu. Raport zawsze używa domyślnej waluty.', + 'sum_in_default_currency' => 'Suma zawsze będzie w domyślnej walucie.', + 'net_filtered_prefs' => 'Ten wykres nigdy nie będzie zawierał kont, które nie mają zaznaczonej opcji "Uwzględnij w wartości netto".', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Wykres', - 'month' => 'Miesiąc', - 'budget' => 'Budżet', - 'spent' => 'Wydano', - 'spent_capped' => 'Wydano (ograniczone)', - 'spent_in_budget' => 'Wydano w budżecie', - 'left_to_spend' => 'Pozostało do wydania', - 'earned' => 'Zarobiono', - 'overspent' => 'Przepłacono', - 'left' => 'Pozostało', - 'max-amount' => 'Maksymalna kwota', - 'min-amount' => 'Minimalna kwota', - 'journal-amount' => 'Faktyczna kwota', - 'name' => 'Nazwa', - 'date' => 'Data', - 'date_and_time' => 'Data i czas', - 'time' => 'Czas', - 'paid' => 'Zapłacone', - 'unpaid' => 'Niezapłacone', - 'day' => 'Dzień', - 'budgeted' => 'Zabudżetowano', - 'period' => 'Okres', - 'balance' => 'Saldo', - 'in_out_period' => 'Przychodzące + wychodzące w tym okresie', - 'sum' => 'Suma', - 'summary' => 'Podsumowanie', - 'average' => 'Średno', - 'balanceFor' => 'Saldo dla :name', - 'no_tags' => '(brak tagów)', - 'nothing_found' => '(nic nie znaleziono)', + 'chart' => 'Wykres', + 'month' => 'Miesiąc', + 'budget' => 'Budżet', + 'spent' => 'Wydano', + 'spent_capped' => 'Wydano (ograniczone)', + 'spent_in_budget' => 'Wydano w budżecie', + 'left_to_spend' => 'Pozostało do wydania', + 'earned' => 'Zarobiono', + 'overspent' => 'Przepłacono', + 'left' => 'Pozostało', + 'max-amount' => 'Maksymalna kwota', + 'min-amount' => 'Minimalna kwota', + 'journal-amount' => 'Faktyczna kwota', + 'name' => 'Nazwa', + 'date' => 'Data', + 'date_and_time' => 'Data i czas', + 'time' => 'Czas', + 'paid' => 'Zapłacone', + 'unpaid' => 'Niezapłacone', + 'day' => 'Dzień', + 'budgeted' => 'Zabudżetowano', + 'period' => 'Okres', + 'balance' => 'Saldo', + 'in_out_period' => 'Przychodzące + wychodzące w tym okresie', + 'sum' => 'Suma', + 'summary' => 'Podsumowanie', + 'average' => 'Średno', + 'balanceFor' => 'Saldo dla :name', + 'no_tags' => '(brak tagów)', + 'nothing_found' => '(nic nie znaleziono)', // piggy banks: - 'event_history' => 'Historia zdarzeń', - 'add_money_to_piggy' => 'Dodaj pieniądze do skarbonki ":name"', - 'piggy_bank' => 'Skarbonka', - 'new_piggy_bank' => 'Nowa skarbonka', - 'store_piggy_bank' => 'Zapisz nową skarbonkę', - 'stored_piggy_bank' => 'Zapisz nową skarbonkę ":name"', - 'account_status' => 'Status konta', - 'left_for_piggy_banks' => 'Dostępne dla skarbonek', - 'sum_of_piggy_banks' => 'Suma skarbonek', - 'saved_so_far' => 'Zaoszczędzono do tej pory', - 'left_to_save' => 'Pozostało do zaoszczędzenia', - 'suggested_amount' => 'Sugerowana miesięczna kwota do odłożenia', - 'add_money_to_piggy_title' => 'Dodaj pieniądze do skarbonki ":name"', - 'remove_money_from_piggy_title' => 'Usuń pieniądze ze skarbonki ":name"', - 'add' => 'Dodaj', - 'no_money_for_piggy' => 'Nie masz pieniędzy, które mógłbyś umieścić w tej skarbonce.', - 'suggested_savings_per_month' => 'Sugerowane miesięcznie', + 'event_history' => 'Historia zdarzeń', + 'add_money_to_piggy' => 'Dodaj pieniądze do skarbonki ":name"', + 'piggy_bank' => 'Skarbonka', + 'new_piggy_bank' => 'Nowa skarbonka', + 'store_piggy_bank' => 'Zapisz nową skarbonkę', + 'stored_piggy_bank' => 'Zapisz nową skarbonkę ":name"', + 'account_status' => 'Status konta', + 'left_for_piggy_banks' => 'Dostępne dla skarbonek', + 'sum_of_piggy_banks' => 'Suma skarbonek', + 'saved_so_far' => 'Zaoszczędzono do tej pory', + 'left_to_save' => 'Pozostało do zaoszczędzenia', + 'suggested_amount' => 'Sugerowana miesięczna kwota do odłożenia', + 'add_money_to_piggy_title' => 'Dodaj pieniądze do skarbonki ":name"', + 'remove_money_from_piggy_title' => 'Usuń pieniądze ze skarbonki ":name"', + 'add' => 'Dodaj', + 'no_money_for_piggy' => 'Nie masz pieniędzy, które mógłbyś umieścić w tej skarbonce.', + 'suggested_savings_per_month' => 'Sugerowane miesięcznie', - 'remove' => 'Usuń', - 'max_amount_add' => 'Maksymalną kwotą, którą możesz dodać jest', - 'max_amount_remove' => 'Maksymalną kwotą, którą możesz usunąć jest', - 'update_piggy_button' => 'Aktualizuj skarbonkę', - 'update_piggy_title' => 'Aktualizuj skarbonkę ":name"', - 'updated_piggy_bank' => 'Zaktualizowano skarbonkę ":name"', - 'details' => 'Szczegóły', - 'events' => 'Zdarzenia', - 'target_amount' => 'Kwota docelowa', - 'start_date' => 'Data rozpoczęcia', - 'no_start_date' => 'Brak daty rozpoczęcia', - 'target_date' => 'Data docelowa', - 'no_target_date' => 'Brak daty docelowej', - 'table' => 'Tabela', - 'delete_piggy_bank' => 'Usuń skarbonkę ":name"', - 'cannot_add_amount_piggy' => 'Nie można dodać :amount do ":name".', - 'cannot_remove_from_piggy' => 'Nie można usunąć :amount z ":name".', - 'deleted_piggy_bank' => 'Usunięto skarbonkę ":name"', - 'added_amount_to_piggy' => 'Dodano :amount do ":name"', - 'removed_amount_from_piggy' => 'Usunięto :amount z ":name"', - 'piggy_events' => 'Powiązane skarbonki', + 'remove' => 'Usuń', + 'max_amount_add' => 'Maksymalną kwotą, którą możesz dodać jest', + 'max_amount_remove' => 'Maksymalną kwotą, którą możesz usunąć jest', + 'update_piggy_button' => 'Aktualizuj skarbonkę', + 'update_piggy_title' => 'Aktualizuj skarbonkę ":name"', + 'updated_piggy_bank' => 'Zaktualizowano skarbonkę ":name"', + 'details' => 'Szczegóły', + 'events' => 'Zdarzenia', + 'target_amount' => 'Kwota docelowa', + 'start_date' => 'Data rozpoczęcia', + 'no_start_date' => 'Brak daty rozpoczęcia', + 'target_date' => 'Data docelowa', + 'no_target_date' => 'Brak daty docelowej', + 'table' => 'Tabela', + 'delete_piggy_bank' => 'Usuń skarbonkę ":name"', + 'cannot_add_amount_piggy' => 'Nie można dodać :amount do ":name".', + 'cannot_remove_from_piggy' => 'Nie można usunąć :amount z ":name".', + 'deleted_piggy_bank' => 'Usunięto skarbonkę ":name"', + 'added_amount_to_piggy' => 'Dodano :amount do ":name"', + 'removed_amount_from_piggy' => 'Usunięto :amount z ":name"', + 'piggy_events' => 'Powiązane skarbonki', // tags - 'delete_tag' => 'Usuń tag ":tag"', - 'deleted_tag' => 'Usunięto tag ":tag"', - 'new_tag' => 'Utwórz nowy tag', - 'edit_tag' => 'Modyfikuj tag ":tag"', - 'updated_tag' => 'Zaktualizowano tag ":tag"', - 'created_tag' => 'Tag ":tag" został utworzony!', + 'delete_tag' => 'Usuń tag ":tag"', + 'deleted_tag' => 'Usunięto tag ":tag"', + 'new_tag' => 'Utwórz nowy tag', + 'edit_tag' => 'Modyfikuj tag ":tag"', + 'updated_tag' => 'Zaktualizowano tag ":tag"', + 'created_tag' => 'Tag ":tag" został utworzony!', - 'transaction_journal_information' => 'Informacje o transakcji', - 'transaction_journal_amount' => 'Informacje o kwocie', - 'transaction_journal_meta' => 'Meta informacje', - 'transaction_journal_more' => 'Więcej informacji', - 'basic_journal_information' => 'Podstawowe informacje o transakcji', - 'transaction_journal_extra' => 'Dodatkowe informacje', - 'att_part_of_journal' => 'Zapisano jako ":journal"', - 'total_amount' => 'Łączna kwota', - 'number_of_decimals' => 'Ilość miejsc dziesiętnych', + 'transaction_journal_information' => 'Informacje o transakcji', + 'transaction_journal_amount' => 'Informacje o kwocie', + 'transaction_journal_meta' => 'Meta informacje', + 'transaction_journal_more' => 'Więcej informacji', + 'basic_journal_information' => 'Podstawowe informacje o transakcji', + 'transaction_journal_extra' => 'Dodatkowe informacje', + 'att_part_of_journal' => 'Zapisano jako ":journal"', + 'total_amount' => 'Łączna kwota', + 'number_of_decimals' => 'Ilość miejsc dziesiętnych', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Zaproszenie do ":address" zostało już wykorzystane.', - 'invite_is_deleted' => 'Zaproszenie do ":address" zostało usunięte.', - 'invite_new_user_title' => 'Zaproś nowego użytkownika', - 'invite_new_user_text' => 'Jako administrator możesz zaprosić innych użytkowników, aby zarejestrowali się w twojej instancji Firefly III. Będą mogli zarejestrować swoje konto, korzystając z bezpośredniego odnośnika, który możesz im udostępnić. Zaproszony użytkownik i jego odnośnik pojawią się w tabeli poniżej. Możesz udostępnić odnośnik użytkownikowi.', - 'invited_user_mail' => 'Adres email', - 'invite_user' => 'Zaproś użytkownika', - 'user_is_invited' => 'Adres email ":address" został zaproszony do Firefly III', - 'administration' => 'Administracja', - 'system_settings' => 'Ustawienia systemowe', - 'code_already_used' => 'Kod zaproszenia został już użyty', - 'user_administration' => 'Administracja użytkownikami', - 'list_all_users' => 'Wszyscy użytkownicy', - 'all_users' => 'Wszyscy użytkownicy', - 'instance_configuration' => 'Konfiguracja', - 'firefly_instance_configuration' => 'Opcje konfiguracji dla Firefly III', - 'setting_single_user_mode' => 'Tryb pojedynczego użytkownika', - 'setting_single_user_mode_explain' => 'Domyślnie, Firefly III pozwala na jednego (1) użytkownika: Ciebie. Jest to środek bezpieczeństwa uniemożliwiający innym używanie Twojej instalacji, chyba że im pozwolisz. Kolejne rejestracje są zablokowane. Jeżeli odznaczysz to pole, inne osoby będą mogły używać Twojej instalacji Firefly III (zakładając, że jest ona dostępna w Internecie).', - 'store_configuration' => 'Zapisz konfigurację', - 'single_user_administration' => 'Administracja użytkownika dla :email', - 'edit_user' => 'Modyfikuj użytkownika :email', - 'hidden_fields_preferences' => 'Możesz włączyć więcej opcji transakcji w swoich ustawieniach.', - 'user_data_information' => 'Dane użytkownika', - 'user_information' => 'Informacja o użytkowniku', - 'total_size' => 'łączny rozmiar', - 'budget_or_budgets' => ':count budżet|:count budżetów', - 'budgets_with_limits' => ':count budżet z ustaloną kwotą|:count budżetów z ustaloną kwotą', - 'nr_of_rules_in_total_groups' => ':count_rules reguła(y) w :count_groups grupa(ch) reguł', - 'tag_or_tags' => ':count tag|:count tagów', - 'configuration_updated' => 'Konfiguracja została zaktualizowana', - 'setting_is_demo_site' => 'Strona demonstracyjna', - 'setting_is_demo_site_explain' => 'Jeśli zaznaczysz to pole, ta instalacja będzie zachowywać się jak witryna demonstracyjna, co może mieć dziwne efekty uboczne.', - 'block_code_bounced' => 'Odrzucony e-mail potwierdzający', - 'block_code_expired' => 'Demonstracyjne konto wygasło', - 'no_block_code' => 'Brak powody blokady lub użytkownik niezablokowany', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Użytkownik nie potwierdził jeszcze nowego adresu e-mail', - 'admin_update_email' => 'W przeciwieństwie do strony "Profil", użytkownik NIE zostanie powiadomiony o zmianie adresu e-mail!', - 'update_user' => 'Modyfikuj użytkownika', - 'updated_user' => 'Dane użytkownika zostały zmienione.', - 'delete_user' => 'Usuń użytkownika :email', - 'user_deleted' => 'Użytkownik został usunięty', - 'send_test_email' => 'Wyślij testową wiadomość e-mail', - 'send_test_email_text' => 'Aby sprawdzić, czy Twoja instalacja umożliwia wysyłanie wiadomości e-mail lub na Slacku, naciśnij ten przycisk. Nie zobaczysz tutaj błędu (jeśli jest), pliki dziennika będą odzwierciedlać wszelkie błędy. Możesz nacisnąć ten przycisk tyle razy, ile chcesz. Nie ma kontroli spamu. Wiadomość zostanie wysłana do :email i powinna wkrótce nadejść.', - 'send_message' => 'Wyślij wiadomość', - 'send_test_triggered' => 'Test został uruchomiony. Sprawdź swoją skrzynkę odbiorczą i pliki dziennika.', - 'give_admin_careful' => 'Użytkownicy, którzy dostaną prawa administratora, mogą zabrać twoje. Zachowaj ostrożność.', - 'admin_maintanance_title' => 'Konserwacja', - 'admin_maintanance_expl' => 'Kilka pięknych przycisków do konserwacji Firefly III', - 'admin_maintenance_clear_cache' => 'Wyczyść pamięć podręczną', - 'admin_notifications' => 'Powiadomienia administratora', - 'admin_notifications_expl' => 'Następujące powiadomienia mogą być włączone lub wyłączone przez administratora. Jeśli chcesz również otrzymywać te wiadomości przez Slack ustaw adres URL dla "przychodzącego webhooka".', - 'admin_notification_check_user_new_reg' => 'Użytkownik otrzymuje wiadomość powitalną po rejestracji', - 'admin_notification_check_admin_new_reg' => 'Administrator(zy) otrzyma(ją) nowe powiadomienie o rejestracji użytkownika', - 'admin_notification_check_new_version' => 'Dostępna jest nowa wersja', - 'admin_notification_check_invite_created' => 'Użytkownik został zaproszony do Firefly III', - 'admin_notification_check_invite_redeemed' => 'Zaproszenie użytkownika zostało użyte', - 'all_invited_users' => 'Wszyscy zaproszeni użytkownicy', - 'save_notification_settings' => 'Zapisz ustawienia', - 'notification_settings_saved' => 'Ustawienia powiadomień zostały zapisane', + 'invite_is_already_redeemed' => 'Zaproszenie do ":address" zostało już wykorzystane.', + 'invite_is_deleted' => 'Zaproszenie do ":address" zostało usunięte.', + 'invite_new_user_title' => 'Zaproś nowego użytkownika', + 'invite_new_user_text' => 'Jako administrator możesz zaprosić innych użytkowników, aby zarejestrowali się w twojej instancji Firefly III. Będą mogli zarejestrować swoje konto, korzystając z bezpośredniego odnośnika, który możesz im udostępnić. Zaproszony użytkownik i jego odnośnik pojawią się w tabeli poniżej. Możesz udostępnić odnośnik użytkownikowi.', + 'invited_user_mail' => 'Adres email', + 'invite_user' => 'Zaproś użytkownika', + 'user_is_invited' => 'Adres email ":address" został zaproszony do Firefly III', + 'administration' => 'Administracja', + 'system_settings' => 'Ustawienia systemowe', + 'code_already_used' => 'Kod zaproszenia został już użyty', + 'user_administration' => 'Administracja użytkownikami', + 'list_all_users' => 'Wszyscy użytkownicy', + 'all_users' => 'Wszyscy użytkownicy', + 'instance_configuration' => 'Konfiguracja', + 'firefly_instance_configuration' => 'Opcje konfiguracji dla Firefly III', + 'setting_single_user_mode' => 'Tryb pojedynczego użytkownika', + 'setting_single_user_mode_explain' => 'Domyślnie, Firefly III pozwala na jednego (1) użytkownika: Ciebie. Jest to środek bezpieczeństwa uniemożliwiający innym używanie Twojej instalacji, chyba że im pozwolisz. Kolejne rejestracje są zablokowane. Jeżeli odznaczysz to pole, inne osoby będą mogły używać Twojej instalacji Firefly III (zakładając, że jest ona dostępna w Internecie).', + 'store_configuration' => 'Zapisz konfigurację', + 'single_user_administration' => 'Administracja użytkownika dla :email', + 'edit_user' => 'Modyfikuj użytkownika :email', + 'hidden_fields_preferences' => 'Możesz włączyć więcej opcji transakcji w swoich ustawieniach.', + 'user_data_information' => 'Dane użytkownika', + 'user_information' => 'Informacja o użytkowniku', + 'total_size' => 'łączny rozmiar', + 'budget_or_budgets' => ':count budżet|:count budżetów', + 'budgets_with_limits' => ':count budżet z ustaloną kwotą|:count budżetów z ustaloną kwotą', + 'nr_of_rules_in_total_groups' => ':count_rules reguła(y) w :count_groups grupa(ch) reguł', + 'tag_or_tags' => ':count tag|:count tagów', + 'configuration_updated' => 'Konfiguracja została zaktualizowana', + 'setting_is_demo_site' => 'Strona demonstracyjna', + 'setting_is_demo_site_explain' => 'Jeśli zaznaczysz to pole, ta instalacja będzie zachowywać się jak witryna demonstracyjna, co może mieć dziwne efekty uboczne.', + 'block_code_bounced' => 'Odrzucony e-mail potwierdzający', + 'block_code_expired' => 'Demonstracyjne konto wygasło', + 'no_block_code' => 'Brak powody blokady lub użytkownik niezablokowany', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Użytkownik nie potwierdził jeszcze nowego adresu e-mail', + 'admin_update_email' => 'W przeciwieństwie do strony "Profil", użytkownik NIE zostanie powiadomiony o zmianie adresu e-mail!', + 'update_user' => 'Modyfikuj użytkownika', + 'updated_user' => 'Dane użytkownika zostały zmienione.', + 'delete_user' => 'Usuń użytkownika :email', + 'user_deleted' => 'Użytkownik został usunięty', + 'send_test_email' => 'Wyślij testową wiadomość e-mail', + 'send_test_email_text' => 'Aby sprawdzić, czy Twoja instalacja umożliwia wysyłanie wiadomości e-mail lub na Slacku, naciśnij ten przycisk. Nie zobaczysz tutaj błędu (jeśli jest), pliki dziennika będą odzwierciedlać wszelkie błędy. Możesz nacisnąć ten przycisk tyle razy, ile chcesz. Nie ma kontroli spamu. Wiadomość zostanie wysłana do :email i powinna wkrótce nadejść.', + 'send_message' => 'Wyślij wiadomość', + 'send_test_triggered' => 'Test został uruchomiony. Sprawdź swoją skrzynkę odbiorczą i pliki dziennika.', + 'give_admin_careful' => 'Użytkownicy, którzy dostaną prawa administratora, mogą zabrać twoje. Zachowaj ostrożność.', + 'admin_maintanance_title' => 'Konserwacja', + 'admin_maintanance_expl' => 'Kilka pięknych przycisków do konserwacji Firefly III', + 'admin_maintenance_clear_cache' => 'Wyczyść pamięć podręczną', + 'admin_notifications' => 'Powiadomienia administratora', + 'admin_notifications_expl' => 'Następujące powiadomienia mogą być włączone lub wyłączone przez administratora. Jeśli chcesz również otrzymywać te wiadomości przez Slack ustaw adres URL dla "przychodzącego webhooka".', + 'admin_notification_check_user_new_reg' => 'Użytkownik otrzymuje wiadomość powitalną po rejestracji', + 'admin_notification_check_admin_new_reg' => 'Administrator(zy) otrzyma(ją) nowe powiadomienie o rejestracji użytkownika', + 'admin_notification_check_new_version' => 'Dostępna jest nowa wersja', + 'admin_notification_check_invite_created' => 'Użytkownik został zaproszony do Firefly III', + 'admin_notification_check_invite_redeemed' => 'Zaproszenie użytkownika zostało użyte', + 'all_invited_users' => 'Wszyscy zaproszeni użytkownicy', + 'save_notification_settings' => 'Zapisz ustawienia', + 'notification_settings_saved' => 'Ustawienia powiadomień zostały zapisane', - 'split_transaction_title' => 'Opis podzielonej transakcji', - 'split_transaction_title_help' => 'Jeśli tworzysz podzieloną transakcję, musi ona posiadać globalny opis dla wszystkich podziałów w transakcji.', - 'split_title_help' => 'Podzielone transakcje muszą posiadać globalny opis.', - 'you_create_transfer' => 'Tworzysz przelew.', - 'you_create_withdrawal' => 'Tworzysz wydatek.', - 'you_create_deposit' => 'Tworzysz wpłatę.', + 'split_transaction_title' => 'Opis podzielonej transakcji', + 'split_transaction_title_help' => 'Jeśli tworzysz podzieloną transakcję, musi ona posiadać globalny opis dla wszystkich podziałów w transakcji.', + 'split_title_help' => 'Podzielone transakcje muszą posiadać globalny opis.', + 'you_create_transfer' => 'Tworzysz przelew.', + 'you_create_withdrawal' => 'Tworzysz wydatek.', + 'you_create_deposit' => 'Tworzysz wpłatę.', // links - 'journal_link_configuration' => 'Konfiguracja łączy między transakcjami', - 'create_new_link_type' => 'Utwórz nowy typ łącza', - 'store_new_link_type' => 'Zapisz nowy typ łącza', - 'update_link_type' => 'Modyfikuj typ łącza', - 'edit_link_type' => 'Modyfikuj typ łącza ":name"', - 'updated_link_type' => 'Zaktualizowano typ łącza ":name"', - 'delete_link_type' => 'Usuń typ łącza ":name"', - 'deleted_link_type' => 'Usunięto typ łącza ":name"', - 'stored_new_link_type' => 'Zapisz nowy typ łącza ":name"', - 'cannot_edit_link_type' => 'Nie można zaktualizować typu łącza ":name"', - 'link_type_help_name' => 'Np. "Duplikaty"', - 'link_type_help_inward' => 'Np. "duplikuje"', - 'link_type_help_outward' => 'Np. "jest zduplikowana przez"', - 'save_connections_by_moving' => 'Zapisz powiązania miedzy tymi transakcjami, przenosząc je do innego typu łącza:', - 'do_not_save_connection' => '(nie zapisuj powiązań)', - 'link_transaction' => 'Powiąż transakcje', - 'link_to_other_transaction' => 'Powiąż aktualną transakcję z inną transakcją', - 'select_transaction_to_link' => 'Wybierz transakcję, aby powiązać tę transakcję. Powiązania są obecnie nieużywane w Firefly III (oprócz pokazywania), ale zamierzam to zmienić w przyszłości. Użyj pola wyszukiwania, aby wybrać transakcję według tytułu lub ID. Jeśli chcesz dodać niestandardowe typy powiązań, sprawdź sekcję administracyjną.', - 'this_transaction' => 'Ta transakcja', - 'transaction' => 'Transakcja', - 'comments' => 'Komentarze', - 'link_notes' => 'Notatki które chcesz zapisać wraz z powiązaniem.', - 'invalid_link_selection' => 'Nie można powiązać tych transakcji', - 'selected_transaction' => 'Wybrana transakcja', - 'journals_linked' => 'Transakcje zostały powiązane.', - 'journals_error_linked' => 'Wybrane transakcje są już powiązane.', - 'journals_link_to_self' => 'Nie możesz powiązać transakcji z samej ze sobą', - 'journal_links' => 'Powiązane transakcje', - 'this_withdrawal' => 'Ta wypłata', - 'this_deposit' => 'Ta wpłata', - 'this_transfer' => 'Ten transfer', - 'overview_for_link' => 'Przegląd dla typu łącza ":name"', - 'source_transaction' => 'Transakcja źródłowa', - 'link_description' => 'Opis łącza', - 'destination_transaction' => 'Transakcja docelowa', - 'delete_journal_link' => 'Usuń powiązanie między :source a :destination', - 'deleted_link' => 'Usunięto powiązanie', + 'journal_link_configuration' => 'Konfiguracja łączy między transakcjami', + 'create_new_link_type' => 'Utwórz nowy typ łącza', + 'store_new_link_type' => 'Zapisz nowy typ łącza', + 'update_link_type' => 'Modyfikuj typ łącza', + 'edit_link_type' => 'Modyfikuj typ łącza ":name"', + 'updated_link_type' => 'Zaktualizowano typ łącza ":name"', + 'delete_link_type' => 'Usuń typ łącza ":name"', + 'deleted_link_type' => 'Usunięto typ łącza ":name"', + 'stored_new_link_type' => 'Zapisz nowy typ łącza ":name"', + 'cannot_edit_link_type' => 'Nie można zaktualizować typu łącza ":name"', + 'link_type_help_name' => 'Np. "Duplikaty"', + 'link_type_help_inward' => 'Np. "duplikuje"', + 'link_type_help_outward' => 'Np. "jest zduplikowana przez"', + 'save_connections_by_moving' => 'Zapisz powiązania miedzy tymi transakcjami, przenosząc je do innego typu łącza:', + 'do_not_save_connection' => '(nie zapisuj powiązań)', + 'link_transaction' => 'Powiąż transakcje', + 'link_to_other_transaction' => 'Powiąż aktualną transakcję z inną transakcją', + 'select_transaction_to_link' => 'Wybierz transakcję, aby powiązać tę transakcję. Powiązania są obecnie nieużywane w Firefly III (oprócz pokazywania), ale zamierzam to zmienić w przyszłości. Użyj pola wyszukiwania, aby wybrać transakcję według tytułu lub ID. Jeśli chcesz dodać niestandardowe typy powiązań, sprawdź sekcję administracyjną.', + 'this_transaction' => 'Ta transakcja', + 'transaction' => 'Transakcja', + 'comments' => 'Komentarze', + 'link_notes' => 'Notatki które chcesz zapisać wraz z powiązaniem.', + 'invalid_link_selection' => 'Nie można powiązać tych transakcji', + 'selected_transaction' => 'Wybrana transakcja', + 'journals_linked' => 'Transakcje zostały powiązane.', + 'journals_error_linked' => 'Wybrane transakcje są już powiązane.', + 'journals_link_to_self' => 'Nie możesz powiązać transakcji z samej ze sobą', + 'journal_links' => 'Powiązane transakcje', + 'this_withdrawal' => 'Ta wypłata', + 'this_deposit' => 'Ta wpłata', + 'this_transfer' => 'Ten transfer', + 'overview_for_link' => 'Przegląd dla typu łącza ":name"', + 'source_transaction' => 'Transakcja źródłowa', + 'link_description' => 'Opis łącza', + 'destination_transaction' => 'Transakcja docelowa', + 'delete_journal_link' => 'Usuń powiązanie między :source a :destination', + 'deleted_link' => 'Usunięto powiązanie', // link translations: - 'Paid_name' => 'Płatność', - 'Refund_name' => 'Zwrot', - 'Reimbursement_name' => 'Refundacja (zwrot kosztów)', - 'Related_name' => 'Powiązanie', - 'relates to_inward' => 'odnosi się do', - 'is (partially) refunded by_inward' => 'jest (częściowo) zwracane przez', - 'is (partially) paid for by_inward' => 'jest (częściowo) opłacane przez', - 'is (partially) reimbursed by_inward' => 'jest (częściowo) refundowany przez', - 'inward_transaction' => 'Transakcja wewnętrzna', - 'outward_transaction' => 'Transakcja zewnętrzna', - 'relates to_outward' => 'odnosi się do', - '(partially) refunds_outward' => '(częściowo) refundowany', - '(partially) pays for_outward' => '(częściowo) płaci za', - '(partially) reimburses_outward' => '(częściowo) refundowany', - 'is (partially) refunded by' => 'jest (częściowo) zwracane przez', - 'is (partially) paid for by' => 'jest (częściowo) opłacane przez', - 'is (partially) reimbursed by' => 'jest (częściowo) refundowany przez', - 'relates to' => 'odnosi się do', - '(partially) refunds' => '(częściowo) zwraca', - '(partially) pays for' => '(częściowo) płaci za', - '(partially) reimburses' => '(częściowo) refunduje', + 'Paid_name' => 'Płatność', + 'Refund_name' => 'Zwrot', + 'Reimbursement_name' => 'Refundacja (zwrot kosztów)', + 'Related_name' => 'Powiązanie', + 'relates to_inward' => 'odnosi się do', + 'is (partially) refunded by_inward' => 'jest (częściowo) zwracane przez', + 'is (partially) paid for by_inward' => 'jest (częściowo) opłacane przez', + 'is (partially) reimbursed by_inward' => 'jest (częściowo) refundowany przez', + 'inward_transaction' => 'Transakcja wewnętrzna', + 'outward_transaction' => 'Transakcja zewnętrzna', + 'relates to_outward' => 'odnosi się do', + '(partially) refunds_outward' => '(częściowo) refundowany', + '(partially) pays for_outward' => '(częściowo) płaci za', + '(partially) reimburses_outward' => '(częściowo) refundowany', + 'is (partially) refunded by' => 'jest (częściowo) zwracane przez', + 'is (partially) paid for by' => 'jest (częściowo) opłacane przez', + 'is (partially) reimbursed by' => 'jest (częściowo) refundowany przez', + 'relates to' => 'odnosi się do', + '(partially) refunds' => '(częściowo) zwraca', + '(partially) pays for' => '(częściowo) płaci za', + '(partially) reimburses' => '(częściowo) refunduje', // split a transaction: - 'splits' => 'Podziały', - 'add_another_split' => 'Dodaj kolejny podział', - 'cannot_edit_opening_balance' => 'Nie możesz edytować salda otwarcia konta.', - 'no_edit_multiple_left' => 'Nie wybrałeś żadnych poprawnych transakcji do edycji.', - 'breadcrumb_convert_group' => 'Konwertuj tę transakcję', - 'convert_invalid_source' => 'Informacje źródłowe są nieprawidłowe dla transakcji #%d.', - 'convert_invalid_destination' => 'Informacje docelowe są nieprawidłowe dla transakcji #%d.', - 'create_another' => 'Po zapisaniu wróć tutaj, aby utworzyć kolejny.', - 'after_update_create_another' => 'Po aktualizacji wróć tutaj, aby kontynuować edycję.', - 'store_as_new' => 'Zapisz jako nową zamiast aktualizować.', - 'reset_after' => 'Wyczyść formularz po zapisaniu', - 'errors_submission' => 'Coś poszło nie tak w czasie zapisu. Proszę, sprawdź błędy poniżej.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Rozwiń podział', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Zwiń podział', + 'splits' => 'Podziały', + 'add_another_split' => 'Dodaj kolejny podział', + 'cannot_edit_opening_balance' => 'Nie możesz edytować salda otwarcia konta.', + 'no_edit_multiple_left' => 'Nie wybrałeś żadnych poprawnych transakcji do edycji.', + 'breadcrumb_convert_group' => 'Konwertuj tę transakcję', + 'convert_invalid_source' => 'Informacje źródłowe są nieprawidłowe dla transakcji #%d.', + 'convert_invalid_destination' => 'Informacje docelowe są nieprawidłowe dla transakcji #%d.', + 'create_another' => 'Po zapisaniu wróć tutaj, aby utworzyć kolejny.', + 'after_update_create_another' => 'Po aktualizacji wróć tutaj, aby kontynuować edycję.', + 'store_as_new' => 'Zapisz jako nową zamiast aktualizować.', + 'reset_after' => 'Wyczyść formularz po zapisaniu', + 'errors_submission' => 'Coś poszło nie tak w czasie zapisu. Proszę, sprawdź błędy poniżej.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Rozwiń podział', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Zwiń podział', // object groups - 'default_group_title_name' => '(bez grupy)', - 'default_group_title_name_plain' => 'bez grupy', + 'default_group_title_name' => '(bez grupy)', + 'default_group_title_name_plain' => 'bez grupy', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Stwórzmy konto aktywów!', - 'no_accounts_intro_asset' => 'Nie masz jeszcze konta nie aktywów. Konta aktywów są twoimi głównymi kontami: konto czekowe, konto oszczędnościowe, wspólne konto lub nawet karta kredytowa.', - 'no_accounts_imperative_asset' => 'Aby rozpocząć korzystanie z Firefly III należy utworzyć co najmniej jedno konto aktywów. Zróbmy je więc teraz:', - 'no_accounts_create_asset' => 'Utwórz konto aktywów', - 'no_accounts_title_expense' => 'Stwórzmy konto wydatków!', - 'no_accounts_intro_expense' => 'Nie masz jeszcze żadnych kont wydatków. Konta wydatków to miejsca, w których wydajesz pieniądze, takie jak sklepy i supermarkety.', - 'no_accounts_imperative_expense' => 'Konta wydatków są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', - 'no_accounts_create_expense' => 'Utwórz konto wydatków', - 'no_accounts_title_revenue' => 'Stwórzmy konto przychodów!', - 'no_accounts_intro_revenue' => 'Nie masz jeszcze żadnych kont przychodów. Konta przychodów to miejsca, z których dostajesz pieniądze, takie jak pracodawca.', - 'no_accounts_imperative_revenue' => 'Konta przychodów są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', - 'no_accounts_create_revenue' => 'Utwórz konto przychodów', - 'no_accounts_title_liabilities' => 'Stwórzmy zobowiązanie!', - 'no_accounts_intro_liabilities' => 'Nie masz jeszcze żadnych zobowiązań. Zobowiązania to konta które rejestrują Twoje kredyty (np. studenckie) i inne długi.', - 'no_accounts_imperative_liabilities' => 'Nie musisz korzystać z tej funkcji, ale może być przydatna, jeśli chcesz śledzić te rzeczy.', - 'no_accounts_create_liabilities' => 'Utwórz zobowiązanie', - 'no_budgets_title_default' => 'Stwórzmy budżet', - 'no_rules_title_default' => 'Stwórzmy regułę', - 'no_budgets_intro_default' => 'Nie masz jeszcze żadnych budżetów. Budżety są wykorzystywane do organizowania twoich wydatków w logiczne grupy, które możesz obserwować, aby ograniczyć swoje wydatki.', - 'no_rules_intro_default' => 'Nie masz jeszcze żadnych reguł. Automatyzacja reguł jest dosyć potężna i może pomóc Ci w obsłudze transakcji.', - 'no_rules_imperative_default' => 'Reguły mogą być bardzo przydatne podczas zarządzania transakcjami. Utwórzmy jedną teraz:', - 'no_budgets_imperative_default' => 'Budżety są podstawowymi narzędziami zarządzania finansami. Stwórzmy jeden teraz:', - 'no_budgets_create_default' => 'Stwórz budżet', - 'no_rules_create_default' => 'Utwórz regułę', - 'no_categories_title_default' => 'Stwórzmy kategorię!', - 'no_categories_intro_default' => 'Nie masz jeszcze żadnych kategorii. Kategorie służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie z wyznaczoną kategorią.', - 'no_categories_imperative_default' => 'Kategorie są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedną teraz:', - 'no_categories_create_default' => 'Stwórz kategorię', - 'no_tags_title_default' => 'Stwórzmy tag!', - 'no_tags_intro_default' => 'Nie masz jeszcze tagów. Tagi służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie konkretnymi słowami kluczowymi.', - 'no_tags_imperative_default' => 'Tagi są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie. Stwórzmy jeden teraz:', - 'no_tags_create_default' => 'Utwórz tag', - 'no_transactions_title_withdrawal' => 'Stwórzmy wydatek!', - 'no_transactions_intro_withdrawal' => 'Jeszcze nie masz wydatków. Powinieneś utworzyć wydatki aby rozpocząć zarządzanie swoimi finansami.', - 'no_transactions_imperative_withdrawal' => 'Wydałeś trochę pieniędzy? Zatem powinieneś je zapisać:', - 'no_transactions_create_withdrawal' => 'Utwórz wydatek', - 'no_transactions_title_deposit' => 'Stwórzmy przychód!', - 'no_transactions_intro_deposit' => 'Jeszcze nie masz przychodów. Powinieneś utworzyć przychody aby rozpocząć zarządzanie swoimi finansami.', - 'no_transactions_imperative_deposit' => 'Otrzymałeś trochę pieniędzy? Zatem powinieneś je zapisać:', - 'no_transactions_create_deposit' => 'Stwórz depozyt', - 'no_transactions_title_transfers' => 'Stwórzmy transfer!', - 'no_transactions_intro_transfers' => 'Nie masz jeszcze żadnych transferów. Przenosząc pieniądze między kontami aktywów, rejestruje się je jako transfer.', - 'no_transactions_imperative_transfers' => 'Czy przenosiłeś trochę pieniędzy? Zatem powinieneś to zapisać:', - 'no_transactions_create_transfers' => 'Utwórz transfer', - 'no_piggies_title_default' => 'Stwórzmy skarbonkę!', - 'no_piggies_intro_default' => 'Nie posiadasz jeszcze żadnych skarbonek. Możesz stworzyć skarbonki aby dzielić swoje oszczędności i śledzić na co oszczędzasz.', - 'no_piggies_imperative_default' => 'Oszczędzasz pieniądze na coś? Utwórz skarbonkę i śledź:', - 'no_piggies_create_default' => 'Utwórz nową skarbonkę', - 'no_bills_title_default' => 'Stwórzmy rachunek!', - 'no_bills_intro_default' => 'Nie masz jeszcze żadnych rachunków. Można tworzyć rachunki, aby śledzić regularne wydatki, takie jak czynsz czy ubezpieczenie.', - 'no_bills_imperative_default' => 'Czy masz takie regularne rachunki? Utwórz rachunek i śledź swoje płatności:', - 'no_bills_create_default' => 'Utwórz rachunek', + 'no_accounts_title_asset' => 'Stwórzmy konto aktywów!', + 'no_accounts_intro_asset' => 'Nie masz jeszcze konta nie aktywów. Konta aktywów są twoimi głównymi kontami: konto czekowe, konto oszczędnościowe, wspólne konto lub nawet karta kredytowa.', + 'no_accounts_imperative_asset' => 'Aby rozpocząć korzystanie z Firefly III należy utworzyć co najmniej jedno konto aktywów. Zróbmy je więc teraz:', + 'no_accounts_create_asset' => 'Utwórz konto aktywów', + 'no_accounts_title_expense' => 'Stwórzmy konto wydatków!', + 'no_accounts_intro_expense' => 'Nie masz jeszcze żadnych kont wydatków. Konta wydatków to miejsca, w których wydajesz pieniądze, takie jak sklepy i supermarkety.', + 'no_accounts_imperative_expense' => 'Konta wydatków są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', + 'no_accounts_create_expense' => 'Utwórz konto wydatków', + 'no_accounts_title_revenue' => 'Stwórzmy konto przychodów!', + 'no_accounts_intro_revenue' => 'Nie masz jeszcze żadnych kont przychodów. Konta przychodów to miejsca, z których dostajesz pieniądze, takie jak pracodawca.', + 'no_accounts_imperative_revenue' => 'Konta przychodów są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', + 'no_accounts_create_revenue' => 'Utwórz konto przychodów', + 'no_accounts_title_liabilities' => 'Stwórzmy zobowiązanie!', + 'no_accounts_intro_liabilities' => 'Nie masz jeszcze żadnych zobowiązań. Zobowiązania to konta które rejestrują Twoje kredyty (np. studenckie) i inne długi.', + 'no_accounts_imperative_liabilities' => 'Nie musisz korzystać z tej funkcji, ale może być przydatna, jeśli chcesz śledzić te rzeczy.', + 'no_accounts_create_liabilities' => 'Utwórz zobowiązanie', + 'no_budgets_title_default' => 'Stwórzmy budżet', + 'no_rules_title_default' => 'Stwórzmy regułę', + 'no_budgets_intro_default' => 'Nie masz jeszcze żadnych budżetów. Budżety są wykorzystywane do organizowania twoich wydatków w logiczne grupy, które możesz obserwować, aby ograniczyć swoje wydatki.', + 'no_rules_intro_default' => 'Nie masz jeszcze żadnych reguł. Automatyzacja reguł jest dosyć potężna i może pomóc Ci w obsłudze transakcji.', + 'no_rules_imperative_default' => 'Reguły mogą być bardzo przydatne podczas zarządzania transakcjami. Utwórzmy jedną teraz:', + 'no_budgets_imperative_default' => 'Budżety są podstawowymi narzędziami zarządzania finansami. Stwórzmy jeden teraz:', + 'no_budgets_create_default' => 'Stwórz budżet', + 'no_rules_create_default' => 'Utwórz regułę', + 'no_categories_title_default' => 'Stwórzmy kategorię!', + 'no_categories_intro_default' => 'Nie masz jeszcze żadnych kategorii. Kategorie służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie z wyznaczoną kategorią.', + 'no_categories_imperative_default' => 'Kategorie są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedną teraz:', + 'no_categories_create_default' => 'Stwórz kategorię', + 'no_tags_title_default' => 'Stwórzmy tag!', + 'no_tags_intro_default' => 'Nie masz jeszcze tagów. Tagi służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie konkretnymi słowami kluczowymi.', + 'no_tags_imperative_default' => 'Tagi są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie. Stwórzmy jeden teraz:', + 'no_tags_create_default' => 'Utwórz tag', + 'no_transactions_title_withdrawal' => 'Stwórzmy wydatek!', + 'no_transactions_intro_withdrawal' => 'Jeszcze nie masz wydatków. Powinieneś utworzyć wydatki aby rozpocząć zarządzanie swoimi finansami.', + 'no_transactions_imperative_withdrawal' => 'Wydałeś trochę pieniędzy? Zatem powinieneś je zapisać:', + 'no_transactions_create_withdrawal' => 'Utwórz wydatek', + 'no_transactions_title_deposit' => 'Stwórzmy przychód!', + 'no_transactions_intro_deposit' => 'Jeszcze nie masz przychodów. Powinieneś utworzyć przychody aby rozpocząć zarządzanie swoimi finansami.', + 'no_transactions_imperative_deposit' => 'Otrzymałeś trochę pieniędzy? Zatem powinieneś je zapisać:', + 'no_transactions_create_deposit' => 'Stwórz depozyt', + 'no_transactions_title_transfers' => 'Stwórzmy transfer!', + 'no_transactions_intro_transfers' => 'Nie masz jeszcze żadnych transferów. Przenosząc pieniądze między kontami aktywów, rejestruje się je jako transfer.', + 'no_transactions_imperative_transfers' => 'Czy przenosiłeś trochę pieniędzy? Zatem powinieneś to zapisać:', + 'no_transactions_create_transfers' => 'Utwórz transfer', + 'no_piggies_title_default' => 'Stwórzmy skarbonkę!', + 'no_piggies_intro_default' => 'Nie posiadasz jeszcze żadnych skarbonek. Możesz stworzyć skarbonki aby dzielić swoje oszczędności i śledzić na co oszczędzasz.', + 'no_piggies_imperative_default' => 'Oszczędzasz pieniądze na coś? Utwórz skarbonkę i śledź:', + 'no_piggies_create_default' => 'Utwórz nową skarbonkę', + 'no_bills_title_default' => 'Stwórzmy rachunek!', + 'no_bills_intro_default' => 'Nie masz jeszcze żadnych rachunków. Można tworzyć rachunki, aby śledzić regularne wydatki, takie jak czynsz czy ubezpieczenie.', + 'no_bills_imperative_default' => 'Czy masz takie regularne rachunki? Utwórz rachunek i śledź swoje płatności:', + 'no_bills_create_default' => 'Utwórz rachunek', // recurring transactions - 'create_right_now' => 'Utwórz teraz', - 'no_new_transaction_in_recurrence' => 'Nie utworzono żadnej nowej transakcji. Być może została ona już uruchomiona na tę datę?', - 'recurrences' => 'Cykliczne transakcje', - 'repeat_until_in_past' => 'Ta cykliczna transakcja przestała powtarzać się w dniu :date.', - 'recurring_calendar_view' => 'Kalendarz', - 'no_recurring_title_default' => 'Utwórzmy cykliczną transakcję!', - 'no_recurring_intro_default' => 'Nie masz jeszcze żadnych cyklicznych transakcji. Możesz ich użyć, aby Firefly III automatycznie tworzył transakcje za Ciebie.', - 'no_recurring_imperative_default' => 'To dość zaawansowana funkcja, ale może być niezwykle przydatna. Zanim rozpoczniesz zapoznaj się z dokumentacją (ikona (?) w prawym górnym rogu).', - 'no_recurring_create_default' => 'Utwórz cykliczną transakcję', - 'make_new_recurring' => 'Utwórz cykliczną transakcję', - 'recurring_daily' => 'Codziennie', - 'recurring_weekly' => 'Co tydzień w :weekday', - 'recurring_weekly_skip' => 'Co każdy :skip tydzień w :weekday', - 'recurring_monthly' => 'Co miesiąc w :dayOfMonth dzień', - 'recurring_monthly_skip' => 'Co każdy :skip miesiąc :dayOfMonth dnia miesiąca', - 'recurring_ndom' => 'Co miesiąc w każdy :dayOfMonth. :weekday', - 'recurring_yearly' => 'Co rok w dniu :date', - 'overview_for_recurrence' => 'Przegląd cyklicznej transakcji ":title"', - 'warning_duplicates_repetitions' => 'W rzadkich przypadkach daty pojawiają się dwa razy na tej liście. Może się to zdarzyć, gdy zdarzy się wiele powtórzeń. Firefly III zawsze generuje jedną transakcję dziennie.', - 'created_transactions' => 'Powiązane transakcje', - 'expected_withdrawals' => 'Oczekiwane wypłaty', - 'expected_deposits' => 'Oczekiwane wpłaty', - 'expected_transfers' => 'Oczekiwane transfery', - 'created_withdrawals' => 'Utworzone wypłaty', - 'created_deposits' => 'Utworzone wpłaty', - 'created_transfers' => 'Utworzone transfery', - 'recurring_info' => 'Cykliczna transakcja :count / :total', - 'created_from_recurrence' => 'Utworzona przez cykliczną transakcję ":title" (#:id)', - 'recurring_never_cron' => 'Wygląda na to, że zadanie cron, które jest niezbędne do obsługi powtarzających się transakcji, nigdy nie zostało uruchomione. Jest to normalne po zainstalowaniu Firefly III, ale powinno to być jak najszybciej skonfigurowane. Sprawdź strony pomocy za pomocą ikony (?) w prawym górnym rogu strony.', - 'recurring_cron_long_ago' => 'Wygląda na to, że minęło ponad 36 godzin, od kiedy zadanie cron do obsługi cyklicznych transakcji zostało uruchomione po raz ostatni. Czy jesteś pewien, że zostało poprawnie skonfigurowane? Sprawdź strony pomocy za pomocą ikony (?) w prawym górnym rogu strony.', + 'create_right_now' => 'Utwórz teraz', + 'no_new_transaction_in_recurrence' => 'Nie utworzono żadnej nowej transakcji. Być może została ona już uruchomiona na tę datę?', + 'recurrences' => 'Cykliczne transakcje', + 'repeat_until_in_past' => 'Ta cykliczna transakcja przestała powtarzać się w dniu :date.', + 'recurring_calendar_view' => 'Kalendarz', + 'no_recurring_title_default' => 'Utwórzmy cykliczną transakcję!', + 'no_recurring_intro_default' => 'Nie masz jeszcze żadnych cyklicznych transakcji. Możesz ich użyć, aby Firefly III automatycznie tworzył transakcje za Ciebie.', + 'no_recurring_imperative_default' => 'To dość zaawansowana funkcja, ale może być niezwykle przydatna. Zanim rozpoczniesz zapoznaj się z dokumentacją (ikona (?) w prawym górnym rogu).', + 'no_recurring_create_default' => 'Utwórz cykliczną transakcję', + 'make_new_recurring' => 'Utwórz cykliczną transakcję', + 'recurring_daily' => 'Codziennie', + 'recurring_weekly' => 'Co tydzień w :weekday', + 'recurring_weekly_skip' => 'Co każdy :skip tydzień w :weekday', + 'recurring_monthly' => 'Co miesiąc w :dayOfMonth dzień', + 'recurring_monthly_skip' => 'Co każdy :skip miesiąc :dayOfMonth dnia miesiąca', + 'recurring_ndom' => 'Co miesiąc w każdy :dayOfMonth. :weekday', + 'recurring_yearly' => 'Co rok w dniu :date', + 'overview_for_recurrence' => 'Przegląd cyklicznej transakcji ":title"', + 'warning_duplicates_repetitions' => 'W rzadkich przypadkach daty pojawiają się dwa razy na tej liście. Może się to zdarzyć, gdy zdarzy się wiele powtórzeń. Firefly III zawsze generuje jedną transakcję dziennie.', + 'created_transactions' => 'Powiązane transakcje', + 'expected_withdrawals' => 'Oczekiwane wypłaty', + 'expected_deposits' => 'Oczekiwane wpłaty', + 'expected_transfers' => 'Oczekiwane transfery', + 'created_withdrawals' => 'Utworzone wypłaty', + 'created_deposits' => 'Utworzone wpłaty', + 'created_transfers' => 'Utworzone transfery', + 'recurring_info' => 'Cykliczna transakcja :count / :total', + 'created_from_recurrence' => 'Utworzona przez cykliczną transakcję ":title" (#:id)', + 'recurring_never_cron' => 'Wygląda na to, że zadanie cron, które jest niezbędne do obsługi powtarzających się transakcji, nigdy nie zostało uruchomione. Jest to normalne po zainstalowaniu Firefly III, ale powinno to być jak najszybciej skonfigurowane. Sprawdź strony pomocy za pomocą ikony (?) w prawym górnym rogu strony.', + 'recurring_cron_long_ago' => 'Wygląda na to, że minęło ponad 36 godzin, od kiedy zadanie cron do obsługi cyklicznych transakcji zostało uruchomione po raz ostatni. Czy jesteś pewien, że zostało poprawnie skonfigurowane? Sprawdź strony pomocy za pomocą ikony (?) w prawym górnym rogu strony.', - 'create_new_recurrence' => 'Utwórz nową cykliczną transakcję', - 'help_first_date' => 'Wskaż pierwsze oczekiwane wystąpienie. Musi być w przyszłości.', - 'help_first_date_no_past' => 'Wskaż pierwsze oczekiwane wystąpienie. Firefly III nie będzie tworzyć transakcji w przeszłości.', - 'no_currency' => '(brak waluty)', - 'mandatory_for_recurring' => 'Obowiązkowe informacje o powtarzalności', - 'mandatory_for_transaction' => 'Obowiązkowe informacje o transakcji', - 'optional_for_recurring' => 'Opcjonalne informacje o powtarzalności', - 'optional_for_transaction' => 'Opcjonalne informacje o transakcji', - 'change_date_other_options' => 'Zmień "datę początkową" aby zobaczyć więcej opcji.', - 'mandatory_fields_for_tranaction' => 'Te wartości znajdą się w tworzonych transakcjach', - 'click_for_calendar' => 'Kliknij tutaj, aby wyświetlić kalendarz pokazujący, kiedy transakcja będzie się powtarzać.', - 'repeat_forever' => 'Powtarzaj bez końca', - 'repeat_until_date' => 'Powtarzaj aż do dnia', - 'repeat_times' => 'Powtarzaj określoną liczbę razy', - 'recurring_skips_one' => 'Co drugi', - 'recurring_skips_more' => 'Pomiń :count wystąpień', - 'store_new_recurrence' => 'Zapisz cykliczną transakcję', - 'stored_new_recurrence' => 'Cykliczna transakcja ":title" zapisana pomyślnie.', - 'edit_recurrence' => 'Modyfikuj cykliczną transakcję ":title"', - 'recurring_repeats_until' => 'Powtarza się aż do :date', - 'recurring_repeats_forever' => 'Powtarza się bez końca', - 'recurring_repeats_x_times' => 'Powtarza się :count raz|Powtarza się :count razy', - 'update_recurrence' => 'Aktualizuj cykliczną transakcję', - 'updated_recurrence' => 'Zaktualizowano cykliczną transakcję ":title"', - 'recurrence_is_inactive' => 'Ta cykliczna transakcja jest nieaktywna i nie będzie generowała nowych transakcji.', - 'delete_recurring' => 'Usuń cykliczną transakcję ":title"', - 'new_recurring_transaction' => 'Nowa cykliczna transakcja', - 'help_weekend' => 'Co powinno zrobić Firefly III, jeśli cykliczna transakcja wypadnie w sobotę lub niedzielę?', - 'do_nothing' => 'Po prostu utwórz transakcję', - 'skip_transaction' => 'Pomiń wystąpienie', - 'jump_to_friday' => 'Utwórz transakcję w poprzedni piątek', - 'jump_to_monday' => 'Utwórz transakcję w następny poniedziałek', - 'will_jump_friday' => 'Zostanie utworzona w piątki zamiast w weekendy.', - 'will_jump_monday' => 'Zostanie utworzona w poniedziałki zamiast w weekendy.', - 'except_weekends' => 'Pomiń weekendy', - 'recurrence_deleted' => 'Cykliczna transakcja ":title" została usunięta', + 'create_new_recurrence' => 'Utwórz nową cykliczną transakcję', + 'help_first_date' => 'Wskaż pierwsze oczekiwane wystąpienie. Musi być w przyszłości.', + 'help_first_date_no_past' => 'Wskaż pierwsze oczekiwane wystąpienie. Firefly III nie będzie tworzyć transakcji w przeszłości.', + 'no_currency' => '(brak waluty)', + 'mandatory_for_recurring' => 'Obowiązkowe informacje o powtarzalności', + 'mandatory_for_transaction' => 'Obowiązkowe informacje o transakcji', + 'optional_for_recurring' => 'Opcjonalne informacje o powtarzalności', + 'optional_for_transaction' => 'Opcjonalne informacje o transakcji', + 'change_date_other_options' => 'Zmień "datę początkową" aby zobaczyć więcej opcji.', + 'mandatory_fields_for_tranaction' => 'Te wartości znajdą się w tworzonych transakcjach', + 'click_for_calendar' => 'Kliknij tutaj, aby wyświetlić kalendarz pokazujący, kiedy transakcja będzie się powtarzać.', + 'repeat_forever' => 'Powtarzaj bez końca', + 'repeat_until_date' => 'Powtarzaj aż do dnia', + 'repeat_times' => 'Powtarzaj określoną liczbę razy', + 'recurring_skips_one' => 'Co drugi', + 'recurring_skips_more' => 'Pomiń :count wystąpień', + 'store_new_recurrence' => 'Zapisz cykliczną transakcję', + 'stored_new_recurrence' => 'Cykliczna transakcja ":title" zapisana pomyślnie.', + 'edit_recurrence' => 'Modyfikuj cykliczną transakcję ":title"', + 'recurring_repeats_until' => 'Powtarza się aż do :date', + 'recurring_repeats_forever' => 'Powtarza się bez końca', + 'recurring_repeats_x_times' => 'Powtarza się :count raz|Powtarza się :count razy', + 'update_recurrence' => 'Aktualizuj cykliczną transakcję', + 'updated_recurrence' => 'Zaktualizowano cykliczną transakcję ":title"', + 'recurrence_is_inactive' => 'Ta cykliczna transakcja jest nieaktywna i nie będzie generowała nowych transakcji.', + 'delete_recurring' => 'Usuń cykliczną transakcję ":title"', + 'new_recurring_transaction' => 'Nowa cykliczna transakcja', + 'help_weekend' => 'Co powinno zrobić Firefly III, jeśli cykliczna transakcja wypadnie w sobotę lub niedzielę?', + 'do_nothing' => 'Po prostu utwórz transakcję', + 'skip_transaction' => 'Pomiń wystąpienie', + 'jump_to_friday' => 'Utwórz transakcję w poprzedni piątek', + 'jump_to_monday' => 'Utwórz transakcję w następny poniedziałek', + 'will_jump_friday' => 'Zostanie utworzona w piątki zamiast w weekendy.', + 'will_jump_monday' => 'Zostanie utworzona w poniedziałki zamiast w weekendy.', + 'except_weekends' => 'Pomiń weekendy', + 'recurrence_deleted' => 'Cykliczna transakcja ":title" została usunięta', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Wydano (:currency)', - 'box_earned_in_currency' => 'Zarobiono (:currency)', - 'box_budgeted_in_currency' => 'Zabudżetowano (:currency)', - 'box_bill_paid_in_currency' => 'Zapłacone rachunki (:currency)', - 'box_bill_unpaid_in_currency' => 'Niezapłacone rachunki (:currency)', - 'box_left_to_spend_in_currency' => 'Możliwe do wydania (:currency)', - 'box_net_worth_in_currency' => 'Wartość netto (:currency)', - 'box_spend_per_day' => 'Możliwe do wydania codziennie: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Wydano (:currency)', + 'box_earned_in_currency' => 'Zarobiono (:currency)', + 'box_budgeted_in_currency' => 'Zabudżetowano (:currency)', + 'box_bill_paid_in_currency' => 'Zapłacone rachunki (:currency)', + 'box_bill_unpaid_in_currency' => 'Niezapłacone rachunki (:currency)', + 'box_left_to_spend_in_currency' => 'Możliwe do wydania (:currency)', + 'box_net_worth_in_currency' => 'Wartość netto (:currency)', + 'box_spend_per_day' => 'Możliwe do wydania codziennie: :amount', // debug page - 'debug_page' => 'Strona debugowania', - 'debug_submit_instructions' => 'Jeśli masz problemy możesz użyć informacji w tym polu jako informacji debugowania. Skopiuj i wklej do nowego lub istniejącego problemu z GitHub. Wygeneruje to piękną tabelę, która może być wykorzystana do szybkiego rozpoznania twojego problemu.', - 'debug_pretty_table' => 'Jeśli skopiujesz/wkleisz poniższe pole do problemu na GitHub, zostanie wygenerowana tabela. Proszę nie używaj cudzysłowów.', - 'debug_additional_data' => 'Możesz również udostępnić zawartość poniższego pola. Możesz również skopiować i wkleić to do nowego lub istniejącego problemu GitHub. Jednakże zawartość tego pola może zawierać informacje prywatne, takie jak nazwy konta, szczegóły transakcji lub adresy e-mail.', + 'debug_page' => 'Strona debugowania', + 'debug_submit_instructions' => 'Jeśli masz problemy możesz użyć informacji w tym polu jako informacji debugowania. Skopiuj i wklej do nowego lub istniejącego problemu z GitHub. Wygeneruje to piękną tabelę, która może być wykorzystana do szybkiego rozpoznania twojego problemu.', + 'debug_pretty_table' => 'Jeśli skopiujesz/wkleisz poniższe pole do problemu na GitHub, zostanie wygenerowana tabela. Proszę nie używaj cudzysłowów.', + 'debug_additional_data' => 'Możesz również udostępnić zawartość poniższego pola. Możesz również skopiować i wkleić to do nowego lub istniejącego problemu GitHub. Jednakże zawartość tego pola może zawierać informacje prywatne, takie jak nazwy konta, szczegóły transakcji lub adresy e-mail.', // object groups - 'object_groups_menu_bar' => 'Grupy', - 'object_groups_page_title' => 'Grupy', - 'object_groups_breadcrumb' => 'Grupy', - 'object_groups_index' => 'Przegląd', - 'object_groups' => 'Grupy', - 'object_groups_empty_explain' => 'Niektóre rzeczy w Firefly III można podzielić na grupy. Na przykład skarbonki zawierają pole "Grupa" w ekranach edycji i tworzenia. Gdy ustawisz to pole, możesz edytować nazwy i kolejność grup na tej stronie. Aby uzyskać więcej informacji, sprawdź strony pomocy w prawym górnym rogu, pod ikoną (?).', - 'object_group_title' => 'Tytuł', - 'edit_object_group' => 'Modyfikuj grupę ":title"', - 'delete_object_group' => 'Usuń grupę ":title"', - 'update_object_group' => 'Aktualizuj grupę', - 'updated_object_group' => 'Pomyślnie zaktualizowano grupę ":title"', - 'deleted_object_group' => 'Pomyślnie usunięto grupę ":title"', - 'object_group' => 'Grupa', + 'object_groups_menu_bar' => 'Grupy', + 'object_groups_page_title' => 'Grupy', + 'object_groups_breadcrumb' => 'Grupy', + 'object_groups_index' => 'Przegląd', + 'object_groups' => 'Grupy', + 'object_groups_empty_explain' => 'Niektóre rzeczy w Firefly III można podzielić na grupy. Na przykład skarbonki zawierają pole "Grupa" w ekranach edycji i tworzenia. Gdy ustawisz to pole, możesz edytować nazwy i kolejność grup na tej stronie. Aby uzyskać więcej informacji, sprawdź strony pomocy w prawym górnym rogu, pod ikoną (?).', + 'object_group_title' => 'Tytuł', + 'edit_object_group' => 'Modyfikuj grupę ":title"', + 'delete_object_group' => 'Usuń grupę ":title"', + 'update_object_group' => 'Aktualizuj grupę', + 'updated_object_group' => 'Pomyślnie zaktualizowano grupę ":title"', + 'deleted_object_group' => 'Pomyślnie usunięto grupę ":title"', + 'object_group' => 'Grupa', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Wpisy dziennika audytu', - 'ale_action_log_add' => 'Dodano :amount do skarbonki ":name"', - 'ale_action_log_remove' => 'Usunięto :amount ze skarbonki ":name"', - 'ale_action_clear_budget' => 'Usunięto z budżetu', - 'ale_action_update_group_title' => 'Zaktualizowano tytuł grupy transakcji', - 'ale_action_update_date' => 'Zaktualizowano datę transakcji', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Usunięto z kategorii', - 'ale_action_clear_notes' => 'Usunięto notatki', - 'ale_action_clear_tag' => 'Wyczyszczono tag', - 'ale_action_clear_all_tags' => 'Wyczyszczono wszystkie tagi', - 'ale_action_set_bill' => 'Powiązano z rachunkiem', - 'ale_action_switch_accounts' => 'Zmieniono konto źródłowe i docelowe', - 'ale_action_set_budget' => 'Ustawiono budżet', - 'ale_action_set_category' => 'Ustawiono kategorię', - 'ale_action_set_source' => 'Ustawiono konto źródłowe', - 'ale_action_set_destination' => 'Ustawiono konto docelowe', - 'ale_action_update_transaction_type' => 'Zmieniono typ transakcji', - 'ale_action_update_notes' => 'Zmieniono notatki', - 'ale_action_update_description' => 'Zmieniono opis', - 'ale_action_add_to_piggy' => 'Skarbonka', - 'ale_action_remove_from_piggy' => 'Skarbonka', - 'ale_action_add_tag' => 'Dodano tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Wpisy dziennika audytu', + 'ale_action_log_add' => 'Dodano :amount do skarbonki ":name"', + 'ale_action_log_remove' => 'Usunięto :amount ze skarbonki ":name"', + 'ale_action_clear_budget' => 'Usunięto z budżetu', + 'ale_action_update_group_title' => 'Zaktualizowano tytuł grupy transakcji', + 'ale_action_update_date' => 'Zaktualizowano datę transakcji', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Usunięto z kategorii', + 'ale_action_clear_notes' => 'Usunięto notatki', + 'ale_action_clear_tag' => 'Wyczyszczono tag', + 'ale_action_clear_all_tags' => 'Wyczyszczono wszystkie tagi', + 'ale_action_set_bill' => 'Powiązano z rachunkiem', + 'ale_action_switch_accounts' => 'Zmieniono konto źródłowe i docelowe', + 'ale_action_set_budget' => 'Ustawiono budżet', + 'ale_action_set_category' => 'Ustawiono kategorię', + 'ale_action_set_source' => 'Ustawiono konto źródłowe', + 'ale_action_set_destination' => 'Ustawiono konto docelowe', + 'ale_action_update_transaction_type' => 'Zmieniono typ transakcji', + 'ale_action_update_notes' => 'Zmieniono notatki', + 'ale_action_update_description' => 'Zmieniono opis', + 'ale_action_add_to_piggy' => 'Skarbonka', + 'ale_action_remove_from_piggy' => 'Skarbonka', + 'ale_action_add_tag' => 'Dodano tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Włącz przeliczenie walut', - 'disable_auto_convert' => 'Wyłącz przeliczanie walut', + 'enable_auto_convert' => 'Włącz przeliczenie walut', + 'disable_auto_convert' => 'Wyłącz przeliczanie walut', ]; /* diff --git a/resources/lang/pl_PL/validation.php b/resources/lang/pl_PL/validation.php index d70bb3fa1d..2142312943 100644 --- a/resources/lang/pl_PL/validation.php +++ b/resources/lang/pl_PL/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Nie masz odpowiednich praw dostępu dla tej administracji.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/pt_BR/firefly.php b/resources/lang/pt_BR/firefly.php index 6f2ef7c77e..c4b77ce7de 100644 --- a/resources/lang/pt_BR/firefly.php +++ b/resources/lang/pt_BR/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Fechar', - 'actions' => 'Ações', - 'edit' => 'Editar', - 'delete' => 'Apagar', - 'split' => 'Dividir', - 'single_split' => 'Divisão', - 'clone' => 'Clonar', - 'clone_and_edit' => 'Clonar e editar', - 'confirm_action' => 'Confirmar ação', - 'last_seven_days' => 'Últimos sete dias', - 'last_thirty_days' => 'Últimos 30 dias', - 'last_180_days' => 'Últimos 180 dias', - 'month_to_date' => 'Começo do mês até hoje', - 'year_to_date' => 'Começo do ano até hoje', - 'YTD' => 'Acumulado no ano', - 'welcome_back' => 'O que está acontecendo?', - 'everything' => 'Tudo', - 'today' => 'hoje', - 'customRange' => 'Intervalo personalizado', - 'date_range' => 'Intervalo de datas', - 'apply' => 'Aplicar', - 'select_date' => 'Selecione a data..', - 'cancel' => 'Cancelar', - 'from' => 'De', - 'to' => 'Até', - 'structure' => 'Estrutura', - 'help_translating' => 'Este texto de ajuda ainda não está disponível no seu idioma. Que tal ajudar a traduzí-lo?', - 'showEverything' => 'Mostrar tudo', - 'never' => 'Nunca', - 'no_results_for_empty_search' => 'Sua pesquisa estava vazia, então nada foi encontrado.', - 'removed_amount' => 'Removido :amount', - 'added_amount' => 'Adicionado :amount', - 'asset_account_role_help' => 'Quaisquer opções extras resultantes da sua escolha podem ser definidas depois.', - 'Opening balance' => 'Saldo inicial', - 'create_new_stuff' => 'Criar coisas novas', - 'new_withdrawal' => 'Nova saída', - 'create_new_transaction' => 'Criar nova transação', - 'sidebar_frontpage_create' => 'Criar', - 'new_transaction' => 'Nova transação', - 'no_rules_for_bill' => 'Esta fatura não tem regras associadas a ela.', - 'go_to_asset_accounts' => 'Veja suas contas de ativos', - 'go_to_budgets' => 'Vá para seus orçamentos', - 'go_to_withdrawals' => 'Vá para seus saques', - 'clones_journal_x' => 'Esta transação é um clone de ":description" (#:id)', - 'go_to_categories' => 'Vá para suas categorias', - 'go_to_bills' => 'Vá para suas faturas', - 'go_to_expense_accounts' => 'Veja suas despesas', - 'go_to_revenue_accounts' => 'Veja suas receitas', - 'go_to_piggies' => 'Vá para seus cofrinhos', - 'new_deposit' => 'Nova entrada', - 'new_transfer' => 'Nova transferência', - 'new_transfers' => 'Nova transferência', - 'new_asset_account' => 'Nova conta de ativo', - 'new_expense_account' => 'Nova conta de despesa', - 'new_revenue_account' => 'Nova conta de receita', - 'new_liabilities_account' => 'Novo passivo', - 'new_budget' => 'Novo orçamento', - 'new_bill' => 'Nova conta', - 'block_account_logout' => 'Você foi desconectado. Contas bloqueadas não podem usar este site. Você se registrou com um email válido?', - 'flash_success' => 'Sucesso!', - 'flash_info' => 'Mensagem', - 'flash_warning' => 'Atenção!', - 'flash_error' => 'Erro!', - 'flash_danger' => 'Perigo!', - 'flash_info_multiple' => 'Há uma mensagem|Existem :count mensagens', - 'flash_error_multiple' => 'Houve um erro|Houve :count erros', - 'net_worth' => 'Patrimônio líquido', - 'help_for_this_page' => 'Ajuda para esta página', - 'help_for_this_page_body' => 'Você pode encontrar mais informações sobre esta página na documentação.', - 'two_factor_welcome' => 'Olá!', - 'two_factor_enter_code' => 'Para continuar, por favor, digite seu código de autenticação em duas etapas. Seu aplicativo pode gerá-lo para você.', - 'two_factor_code_here' => 'Insira o código aqui', - 'two_factor_title' => 'Autenticação em duas etapas', - 'authenticate' => 'Autenticar', - 'two_factor_forgot_title' => 'Autenticação em duas etapas perdida', - 'two_factor_forgot' => 'Esqueci minha autenticação em duas etapas.', - 'two_factor_lost_header' => 'Perdeu sua autenticação em duas etapas?', - 'two_factor_lost_intro' => 'Se você perdeu seus códigos de backup também, você tem azar. Isso não é algo que você pode corrigir a partir da interface da web. Você tem duas escolhas.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Caso contrário, entre em contato com o proprietário do site, :site_owner, e peça que redefina sua autenticação de duas etapas.', - 'mfa_backup_code' => 'Você usou um código de backup para acessar o Firefly III. Não pode ser usado novamente, então cruze-o na sua lista.', - 'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup', - 'pref_two_factor_backup_code_count' => 'Você tem :count código de backup válido.|Você tem :count códigos de backup válidos.', - '2fa_i_have_them' => 'Eu os armazenei!', - 'warning_much_data' => ':days dias de dados podem demorar um pouco para carregar.', - 'registered' => 'Você se registrou com sucesso!', - 'Default asset account' => 'Conta de ativo padrão', - 'no_budget_pointer' => 'Parece que você ainda não tem orçamentos. Você deve criar alguns na página de orçamentos. Orçamentos podem ajudá-lo a manter o controle das despesas.', - 'no_bill_pointer' => 'Parece que você ainda não tem faturas. Você deve criar algumas em faturas. Faturas podem ajudar você a manter o controle de despesas.', - 'Savings account' => 'Conta poupança', - 'Credit card' => 'Cartão de crédito', - 'source_accounts' => 'Conta de origem|Contas de origem', - 'destination_accounts' => 'Conta de destino|Contas de destino', - 'user_id_is' => 'Seu id de usuário é :user', - 'field_supports_markdown' => 'Este campo suporta Markdown.', - 'need_more_help' => 'Se você precisa de mais ajuda usando o Firefly III, por favor abra um ticket no Github.', - 'reenable_intro_text' => 'Você também pode reabilitar o guia de introdução.', - 'intro_boxes_after_refresh' => 'As caixas de introdução reaparecerão quando você atualizar a página.', - 'show_all_no_filter' => 'Mostre todas as transações sem agrupá-las por data.', - 'expenses_by_category' => 'Despesa por categoria', - 'expenses_by_budget' => 'Despesas pelo orçamento', - 'income_by_category' => 'Receitas por categoria', - 'expenses_by_asset_account' => 'Despesas por conta de ativos', - 'expenses_by_expense_account' => 'Despesas por conta de despesa', - 'cannot_redirect_to_account' => 'Firefly III não pode redirecioná-lo para a página correta. Minhas desculpas.', - 'sum_of_expenses' => 'Soma das despesas', - 'sum_of_income' => 'Soma da renda', - 'liabilities' => 'Passivos', - 'spent_in_specific_budget' => 'Gasto no orçamento ":budget"', - 'spent_in_specific_double' => 'Gasto na conta ":account"', - 'earned_in_specific_double' => 'Ganho na conta ":account"', - 'source_account' => 'Conta origem', - 'source_account_reconciliation' => 'Você não pode editar a conta de origem de uma transação de reconciliação.', - 'destination_account' => 'Conta destino', - 'destination_account_reconciliation' => 'Você não pode editar a conta destino de uma transação de reconciliação.', - 'sum_of_expenses_in_budget' => 'Gasto total no orçamento ":budget"', - 'left_in_budget_limit' => 'Restante para gastar de acordo com o orçamento', - 'current_period' => 'Período atual', - 'show_the_current_period_and_overview' => 'Mostrar o período atual e visão geral', - 'pref_languages_locale' => 'Para que um idioma diferente do inglês funcione corretamente, seu sistema operacional deve estar configurado com as informações locais corretas. Se estas não estiverem presentes, os dados de moeda, as datas e os montantes podem ser formatados incorretamente.', - 'budget_in_period' => 'Todas as transações para orçamento ":name" entre :start e :end na moeda :currency', - 'chart_budget_in_period' => 'Gráfico para todas as transações do orçamento ":name" entre :start e :end em :currency', - 'chart_budget_in_period_only_currency' => 'O valor que você orçou foi em :currency, então este gráfico mostrará apenas transações em :currency.', - 'chart_account_in_period' => 'Gráfico para todas as transações para a conta ":name" (:balance) entre :start e :end', - 'chart_category_in_period' => 'Gráfico para todas as transações para a categoria ":name" entre :start e :end', - 'chart_category_all' => 'Gráfico para todas as transações para a categoria ":name"', - 'clone_withdrawal' => 'Clonar esta saída', - 'clone_deposit' => 'Clonar esta entrada', - 'clone_transfer' => 'Clonar esta transferência', - 'multi_select_no_selection' => 'Nenhum selecionado', - 'multi_select_select_all' => 'Selecionar tudo', - 'multi_select_n_selected' => 'selecionado', - 'multi_select_all_selected' => 'Todos selecionados', - 'multi_select_filter_placeholder' => 'Encontrar..', - 'intro_next_label' => 'Próximo', - 'intro_prev_label' => 'Anterior', - 'intro_skip_label' => 'Pular', - 'intro_done_label' => 'Concluído', - 'between_dates_breadcrumb' => 'Entre :start e :end', - 'all_journals_without_budget' => 'Todas as transações sem um orçamento', - 'journals_without_budget' => 'Transações sem um orçamento', - 'all_journals_without_category' => 'Todas as transações sem uma categoria', - 'journals_without_category' => 'Transações sem uma categoria', - 'all_journals_for_account' => 'Todas as transações para conta :name', - 'chart_all_journals_for_account' => 'Gráfico de todas as transações para conta :name', - 'journals_in_period_for_account' => 'Todas as transações para conta :name entre :start e :end', - 'journals_in_period_for_account_js' => 'Todas as transações para conta {title} entre {start} e {end}', - 'transferred' => 'Transferido', - 'all_withdrawal' => 'Todas as despesas', - 'all_transactions' => 'Todas as transações', - 'title_withdrawal_between' => 'Todas as despesas entre :start e :end', - 'all_deposit' => 'Todas as receitas', - 'title_deposit_between' => 'Todas as receitas entre :start e :end', - 'all_transfers' => 'Todas as transferências', - 'title_transfers_between' => 'Todas as transferências entre :start e :end', - 'all_transfer' => 'Todas as transferências', - 'all_journals_for_tag' => 'Todas as transações para tag ":tag"', - 'title_transfer_between' => 'Todas as transferências entre :start e :end', - 'all_journals_for_category' => 'Todas as transações para categoria :name', - 'all_journals_for_budget' => 'Todas as transações para orçamento :name', - 'chart_all_journals_for_budget' => 'Gráfico de todas as transações para orçamento :name', - 'journals_in_period_for_category' => 'Todas as transações para a categoria :name entre :start e :end', - 'journals_in_period_for_tag' => 'Todas as transações para tag :tag entre :start e :end', - 'not_available_demo_user' => 'O recurso que você tenta acessar não está disponível para usuários da demo.', - 'exchange_rate_instructions' => 'A conta ativa "@name" aceita apenas transações em @native_currency. Se você deseja usar @foreign_currency em vez disso, verifique se a quantidade em @native_currency também é conhecida:', - 'transfer_exchange_rate_instructions' => 'A conta ativa de origem "@source_name" aceita apenas transações em @source_currency. A conta ativa de destino "@dest_name" aceita apenas transações em @dest_currency. Você deve fornecer o valor transferido corretamente em ambas as moedas.', - 'transaction_data' => 'Dados de transação', - 'invalid_server_configuration' => 'Configuração do servidor inválida', - 'invalid_locale_settings' => 'O Firefly III não é capaz de formatar valores monetários porque seu servidor não tem os pacotes necessários. Veja as instruções de como resolver isso.', - 'quickswitch' => 'Mudança rápida', - 'sign_in_to_start' => 'Faça login para iniciar sua sessão', - 'sign_in' => 'Entrar', - 'register_new_account' => 'Cadastrar uma nova conta', - 'forgot_my_password' => 'Esqueci minha senha', - 'problems_with_input' => 'Houve alguns problemas com a sua entrada.', - 'reset_password' => 'Redefinir sua senha', - 'button_reset_password' => 'Redefinir senha', - 'reset_button' => 'Redefinir', - 'want_to_login' => 'Eu quero fazer o login', - 'login_page_title' => 'Login no Firefly III', - 'register_page_title' => 'Registrar no Firefly III', - 'forgot_pw_page_title' => 'Esqueceu sua senha do Firefly III', - 'reset_pw_page_title' => 'Redefinir sua senha para Firefly III', - 'cannot_reset_demo_user' => 'Você não pode redefinir a senha do usuário demo.', - 'no_att_demo_user' => 'O usuário de demonstração não pode enviar anexos.', - 'button_register' => 'Registrar', - 'authorization' => 'Autorização', - 'active_bills_only' => 'apenas faturas ativas', - 'active_bills_only_total' => 'todas as faturas ativas', - 'active_exp_bills_only' => 'somente faturas ativas e esperadas', - 'active_exp_bills_only_total' => 'todas as faturas ativas e esperadas', - 'per_period_sum_1D' => 'Custos diários esperados', - 'per_period_sum_1W' => 'Custos semanais esperados', - 'per_period_sum_1M' => 'Custos mensais esperados', - 'per_period_sum_3M' => 'Custos trimestrais esperados', - 'per_period_sum_6M' => 'Custos semestrais esperados', - 'per_period_sum_1Y' => 'Custos anuais esperados', - 'average_per_bill' => 'média por fatura', - 'expected_total' => 'total esperado', - 'reconciliation_account_name' => 'Reconciliação :name (:currency)', - 'saved' => 'Salvo', - 'advanced_options' => 'Opções avançadas', - 'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada elaborado aqui, mas confira as outras!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Fechar', + 'actions' => 'Ações', + 'edit' => 'Editar', + 'delete' => 'Apagar', + 'split' => 'Dividir', + 'single_split' => 'Divisão', + 'clone' => 'Clonar', + 'clone_and_edit' => 'Clonar e editar', + 'confirm_action' => 'Confirmar ação', + 'last_seven_days' => 'Últimos sete dias', + 'last_thirty_days' => 'Últimos 30 dias', + 'last_180_days' => 'Últimos 180 dias', + 'month_to_date' => 'Começo do mês até hoje', + 'year_to_date' => 'Começo do ano até hoje', + 'YTD' => 'Acumulado no ano', + 'welcome_back' => 'O que está acontecendo?', + 'everything' => 'Tudo', + 'today' => 'hoje', + 'customRange' => 'Intervalo personalizado', + 'date_range' => 'Intervalo de datas', + 'apply' => 'Aplicar', + 'select_date' => 'Selecione a data..', + 'cancel' => 'Cancelar', + 'from' => 'De', + 'to' => 'Até', + 'structure' => 'Estrutura', + 'help_translating' => 'Este texto de ajuda ainda não está disponível no seu idioma. Que tal ajudar a traduzí-lo?', + 'showEverything' => 'Mostrar tudo', + 'never' => 'Nunca', + 'no_results_for_empty_search' => 'Sua pesquisa estava vazia, então nada foi encontrado.', + 'removed_amount' => 'Removido :amount', + 'added_amount' => 'Adicionado :amount', + 'asset_account_role_help' => 'Quaisquer opções extras resultantes da sua escolha podem ser definidas depois.', + 'Opening balance' => 'Saldo inicial', + 'create_new_stuff' => 'Criar coisas novas', + 'new_withdrawal' => 'Nova saída', + 'create_new_transaction' => 'Criar nova transação', + 'sidebar_frontpage_create' => 'Criar', + 'new_transaction' => 'Nova transação', + 'no_rules_for_bill' => 'Esta fatura não tem regras associadas a ela.', + 'go_to_asset_accounts' => 'Veja suas contas de ativos', + 'go_to_budgets' => 'Vá para seus orçamentos', + 'go_to_withdrawals' => 'Vá para seus saques', + 'clones_journal_x' => 'Esta transação é um clone de ":description" (#:id)', + 'go_to_categories' => 'Vá para suas categorias', + 'go_to_bills' => 'Vá para suas faturas', + 'go_to_expense_accounts' => 'Veja suas despesas', + 'go_to_revenue_accounts' => 'Veja suas receitas', + 'go_to_piggies' => 'Vá para seus cofrinhos', + 'new_deposit' => 'Nova entrada', + 'new_transfer' => 'Nova transferência', + 'new_transfers' => 'Nova transferência', + 'new_asset_account' => 'Nova conta de ativo', + 'new_expense_account' => 'Nova conta de despesa', + 'new_revenue_account' => 'Nova conta de receita', + 'new_liabilities_account' => 'Novo passivo', + 'new_budget' => 'Novo orçamento', + 'new_bill' => 'Nova conta', + 'block_account_logout' => 'Você foi desconectado. Contas bloqueadas não podem usar este site. Você se registrou com um email válido?', + 'flash_success' => 'Sucesso!', + 'flash_info' => 'Mensagem', + 'flash_warning' => 'Atenção!', + 'flash_error' => 'Erro!', + 'flash_danger' => 'Perigo!', + 'flash_info_multiple' => 'Há uma mensagem|Existem :count mensagens', + 'flash_error_multiple' => 'Houve um erro|Houve :count erros', + 'net_worth' => 'Patrimônio líquido', + 'help_for_this_page' => 'Ajuda para esta página', + 'help_for_this_page_body' => 'Você pode encontrar mais informações sobre esta página na documentação.', + 'two_factor_welcome' => 'Olá!', + 'two_factor_enter_code' => 'Para continuar, por favor, digite seu código de autenticação em duas etapas. Seu aplicativo pode gerá-lo para você.', + 'two_factor_code_here' => 'Insira o código aqui', + 'two_factor_title' => 'Autenticação em duas etapas', + 'authenticate' => 'Autenticar', + 'two_factor_forgot_title' => 'Autenticação em duas etapas perdida', + 'two_factor_forgot' => 'Esqueci minha autenticação em duas etapas.', + 'two_factor_lost_header' => 'Perdeu sua autenticação em duas etapas?', + 'two_factor_lost_intro' => 'Se você perdeu seus códigos de backup também, você tem azar. Isso não é algo que você pode corrigir a partir da interface da web. Você tem duas escolhas.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Caso contrário, entre em contato com o proprietário do site, :site_owner, e peça que redefina sua autenticação de duas etapas.', + 'mfa_backup_code' => 'Você usou um código de backup para acessar o Firefly III. Não pode ser usado novamente, então cruze-o na sua lista.', + 'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup', + 'pref_two_factor_backup_code_count' => 'Você tem :count código de backup válido.|Você tem :count códigos de backup válidos.', + '2fa_i_have_them' => 'Eu os armazenei!', + 'warning_much_data' => ':days dias de dados podem demorar um pouco para carregar.', + 'registered' => 'Você se registrou com sucesso!', + 'Default asset account' => 'Conta de ativo padrão', + 'no_budget_pointer' => 'Parece que você ainda não tem orçamentos. Você deve criar alguns na página de orçamentos. Orçamentos podem ajudá-lo a manter o controle das despesas.', + 'no_bill_pointer' => 'Parece que você ainda não tem faturas. Você deve criar algumas em faturas. Faturas podem ajudar você a manter o controle de despesas.', + 'Savings account' => 'Conta poupança', + 'Credit card' => 'Cartão de crédito', + 'source_accounts' => 'Conta de origem|Contas de origem', + 'destination_accounts' => 'Conta de destino|Contas de destino', + 'user_id_is' => 'Seu id de usuário é :user', + 'field_supports_markdown' => 'Este campo suporta Markdown.', + 'need_more_help' => 'Se você precisa de mais ajuda usando o Firefly III, por favor abra um ticket no Github.', + 'reenable_intro_text' => 'Você também pode reabilitar o guia de introdução.', + 'intro_boxes_after_refresh' => 'As caixas de introdução reaparecerão quando você atualizar a página.', + 'show_all_no_filter' => 'Mostre todas as transações sem agrupá-las por data.', + 'expenses_by_category' => 'Despesa por categoria', + 'expenses_by_budget' => 'Despesas pelo orçamento', + 'income_by_category' => 'Receitas por categoria', + 'expenses_by_asset_account' => 'Despesas por conta de ativos', + 'expenses_by_expense_account' => 'Despesas por conta de despesa', + 'cannot_redirect_to_account' => 'Firefly III não pode redirecioná-lo para a página correta. Minhas desculpas.', + 'sum_of_expenses' => 'Soma das despesas', + 'sum_of_income' => 'Soma da renda', + 'liabilities' => 'Passivos', + 'spent_in_specific_budget' => 'Gasto no orçamento ":budget"', + 'spent_in_specific_double' => 'Gasto na conta ":account"', + 'earned_in_specific_double' => 'Ganho na conta ":account"', + 'source_account' => 'Conta origem', + 'source_account_reconciliation' => 'Você não pode editar a conta de origem de uma transação de reconciliação.', + 'destination_account' => 'Conta destino', + 'destination_account_reconciliation' => 'Você não pode editar a conta destino de uma transação de reconciliação.', + 'sum_of_expenses_in_budget' => 'Gasto total no orçamento ":budget"', + 'left_in_budget_limit' => 'Restante para gastar de acordo com o orçamento', + 'current_period' => 'Período atual', + 'show_the_current_period_and_overview' => 'Mostrar o período atual e visão geral', + 'pref_languages_locale' => 'Para que um idioma diferente do inglês funcione corretamente, seu sistema operacional deve estar configurado com as informações locais corretas. Se estas não estiverem presentes, os dados de moeda, as datas e os montantes podem ser formatados incorretamente.', + 'budget_in_period' => 'Todas as transações para orçamento ":name" entre :start e :end na moeda :currency', + 'chart_budget_in_period' => 'Gráfico para todas as transações do orçamento ":name" entre :start e :end em :currency', + 'chart_budget_in_period_only_currency' => 'O valor que você orçou foi em :currency, então este gráfico mostrará apenas transações em :currency.', + 'chart_account_in_period' => 'Gráfico para todas as transações para a conta ":name" (:balance) entre :start e :end', + 'chart_category_in_period' => 'Gráfico para todas as transações para a categoria ":name" entre :start e :end', + 'chart_category_all' => 'Gráfico para todas as transações para a categoria ":name"', + 'clone_withdrawal' => 'Clonar esta saída', + 'clone_deposit' => 'Clonar esta entrada', + 'clone_transfer' => 'Clonar esta transferência', + 'multi_select_no_selection' => 'Nenhum selecionado', + 'multi_select_select_all' => 'Selecionar tudo', + 'multi_select_n_selected' => 'selecionado', + 'multi_select_all_selected' => 'Todos selecionados', + 'multi_select_filter_placeholder' => 'Encontrar..', + 'intro_next_label' => 'Próximo', + 'intro_prev_label' => 'Anterior', + 'intro_skip_label' => 'Pular', + 'intro_done_label' => 'Concluído', + 'between_dates_breadcrumb' => 'Entre :start e :end', + 'all_journals_without_budget' => 'Todas as transações sem um orçamento', + 'journals_without_budget' => 'Transações sem um orçamento', + 'all_journals_without_category' => 'Todas as transações sem uma categoria', + 'journals_without_category' => 'Transações sem uma categoria', + 'all_journals_for_account' => 'Todas as transações para conta :name', + 'chart_all_journals_for_account' => 'Gráfico de todas as transações para conta :name', + 'journals_in_period_for_account' => 'Todas as transações para conta :name entre :start e :end', + 'journals_in_period_for_account_js' => 'Todas as transações para conta {title} entre {start} e {end}', + 'transferred' => 'Transferido', + 'all_withdrawal' => 'Todas as despesas', + 'all_transactions' => 'Todas as transações', + 'title_withdrawal_between' => 'Todas as despesas entre :start e :end', + 'all_deposit' => 'Todas as receitas', + 'title_deposit_between' => 'Todas as receitas entre :start e :end', + 'all_transfers' => 'Todas as transferências', + 'title_transfers_between' => 'Todas as transferências entre :start e :end', + 'all_transfer' => 'Todas as transferências', + 'all_journals_for_tag' => 'Todas as transações para tag ":tag"', + 'title_transfer_between' => 'Todas as transferências entre :start e :end', + 'all_journals_for_category' => 'Todas as transações para categoria :name', + 'all_journals_for_budget' => 'Todas as transações para orçamento :name', + 'chart_all_journals_for_budget' => 'Gráfico de todas as transações para orçamento :name', + 'journals_in_period_for_category' => 'Todas as transações para a categoria :name entre :start e :end', + 'journals_in_period_for_tag' => 'Todas as transações para tag :tag entre :start e :end', + 'not_available_demo_user' => 'O recurso que você tenta acessar não está disponível para usuários da demo.', + 'exchange_rate_instructions' => 'A conta ativa "@name" aceita apenas transações em @native_currency. Se você deseja usar @foreign_currency em vez disso, verifique se a quantidade em @native_currency também é conhecida:', + 'transfer_exchange_rate_instructions' => 'A conta ativa de origem "@source_name" aceita apenas transações em @source_currency. A conta ativa de destino "@dest_name" aceita apenas transações em @dest_currency. Você deve fornecer o valor transferido corretamente em ambas as moedas.', + 'transaction_data' => 'Dados de transação', + 'invalid_server_configuration' => 'Configuração do servidor inválida', + 'invalid_locale_settings' => 'O Firefly III não é capaz de formatar valores monetários porque seu servidor não tem os pacotes necessários. Veja as instruções de como resolver isso.', + 'quickswitch' => 'Mudança rápida', + 'sign_in_to_start' => 'Faça login para iniciar sua sessão', + 'sign_in' => 'Entrar', + 'register_new_account' => 'Cadastrar uma nova conta', + 'forgot_my_password' => 'Esqueci minha senha', + 'problems_with_input' => 'Houve alguns problemas com a sua entrada.', + 'reset_password' => 'Redefinir sua senha', + 'button_reset_password' => 'Redefinir senha', + 'reset_button' => 'Redefinir', + 'want_to_login' => 'Eu quero fazer o login', + 'login_page_title' => 'Login no Firefly III', + 'register_page_title' => 'Registrar no Firefly III', + 'forgot_pw_page_title' => 'Esqueceu sua senha do Firefly III', + 'reset_pw_page_title' => 'Redefinir sua senha para Firefly III', + 'cannot_reset_demo_user' => 'Você não pode redefinir a senha do usuário demo.', + 'no_att_demo_user' => 'O usuário de demonstração não pode enviar anexos.', + 'button_register' => 'Registrar', + 'authorization' => 'Autorização', + 'active_bills_only' => 'apenas faturas ativas', + 'active_bills_only_total' => 'todas as faturas ativas', + 'active_exp_bills_only' => 'somente faturas ativas e esperadas', + 'active_exp_bills_only_total' => 'todas as faturas ativas e esperadas', + 'per_period_sum_1D' => 'Custos diários esperados', + 'per_period_sum_1W' => 'Custos semanais esperados', + 'per_period_sum_1M' => 'Custos mensais esperados', + 'per_period_sum_3M' => 'Custos trimestrais esperados', + 'per_period_sum_6M' => 'Custos semestrais esperados', + 'per_period_sum_1Y' => 'Custos anuais esperados', + 'average_per_bill' => 'média por fatura', + 'expected_total' => 'total esperado', + 'reconciliation_account_name' => 'Reconciliação :name (:currency)', + 'saved' => 'Salvo', + 'advanced_options' => 'Opções avançadas', + 'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada elaborado aqui, mas confira as outras!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'desabilitado', - 'no_webhook_messages' => 'Não há mensagens de webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Após criação da transação', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Após atualização da transação', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Após exclusão da transação', - 'webhook_response_TRANSACTIONS' => 'Detalhes da transação', - 'webhook_response_ACCOUNTS' => 'Detalhes da conta', - 'webhook_response_none_NONE' => 'Sem detalhes', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspecionar', - 'create_new_webhook' => 'Criar novo webhook', - 'webhooks_create_breadcrumb' => 'Criar novo webhook', - 'webhook_trigger_form_help' => 'Indica em que evento o webhook será acionado', - 'webhook_response_form_help' => 'Indica o que o webhook deve enviar para a URL.', - 'webhook_delivery_form_help' => 'Em que formato o webhook deverá entregar os dados.', - 'webhook_active_form_help' => 'O webhook deverá estar ativo ou não será chamado.', - 'stored_new_webhook' => 'Novo webhook armazenado: ":title"', - 'delete_webhook' => 'Excluir webhook', - 'deleted_webhook' => 'Webhook ":title" excluído', - 'edit_webhook' => 'Editar webhook ":title"', - 'updated_webhook' => 'Webhook ":title" atualizado', - 'edit_webhook_js' => 'Editar webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'O webhook foi acionado na transação indicada. Por favor, aguarde os resultados aparecerem.', - 'webhook_messages' => 'Mensagem do webhook', - 'view_message' => 'Ver mensagem', - 'view_attempts' => 'Ver tentativas que falharam', - 'message_content_title' => 'Conteúdo da mensagem do webhook', - 'message_content_help' => 'Este é o conteúdo da mensagem enviada (ou a tentativa) usando este webhook.', - 'attempt_content_title' => 'Tentativas do webhook', - 'attempt_content_help' => 'Estas são todas as tentativas mal sucedidas do webhook enviar mensagem para a URL configurada. Depois de algum tempo, Firefly III parará de tentar.', - 'no_attempts' => 'Não há tentativas mal sucedidas. Esta é uma coisa boa!', - 'webhook_attempt_at' => 'Tentativa em {moment}', - 'logs' => 'Registros', - 'response' => 'Resposta', - 'visit_webhook_url' => 'Acesse a URL do webhook', - 'reset_webhook_secret' => 'Redefinir chave do webhook', - 'webhook_stored_link' => 'Webhooh #{ID} ("{title}") foi salva.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") foi atualizado.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'desabilitado', + 'no_webhook_messages' => 'Não há mensagens de webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Após criação da transação', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Após atualização da transação', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Após exclusão da transação', + 'webhook_response_TRANSACTIONS' => 'Detalhes da transação', + 'webhook_response_ACCOUNTS' => 'Detalhes da conta', + 'webhook_response_none_NONE' => 'Sem detalhes', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspecionar', + 'create_new_webhook' => 'Criar novo webhook', + 'webhooks_create_breadcrumb' => 'Criar novo webhook', + 'webhook_trigger_form_help' => 'Indica em que evento o webhook será acionado', + 'webhook_response_form_help' => 'Indica o que o webhook deve enviar para a URL.', + 'webhook_delivery_form_help' => 'Em que formato o webhook deverá entregar os dados.', + 'webhook_active_form_help' => 'O webhook deverá estar ativo ou não será chamado.', + 'stored_new_webhook' => 'Novo webhook armazenado: ":title"', + 'delete_webhook' => 'Excluir webhook', + 'deleted_webhook' => 'Webhook ":title" excluído', + 'edit_webhook' => 'Editar webhook ":title"', + 'updated_webhook' => 'Webhook ":title" atualizado', + 'edit_webhook_js' => 'Editar webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'O webhook foi acionado na transação indicada. Por favor, aguarde os resultados aparecerem.', + 'webhook_messages' => 'Mensagem do webhook', + 'view_message' => 'Ver mensagem', + 'view_attempts' => 'Ver tentativas que falharam', + 'message_content_title' => 'Conteúdo da mensagem do webhook', + 'message_content_help' => 'Este é o conteúdo da mensagem enviada (ou a tentativa) usando este webhook.', + 'attempt_content_title' => 'Tentativas do webhook', + 'attempt_content_help' => 'Estas são todas as tentativas mal sucedidas do webhook enviar mensagem para a URL configurada. Depois de algum tempo, Firefly III parará de tentar.', + 'no_attempts' => 'Não há tentativas mal sucedidas. Esta é uma coisa boa!', + 'webhook_attempt_at' => 'Tentativa em {moment}', + 'logs' => 'Registros', + 'response' => 'Resposta', + 'visit_webhook_url' => 'Acesse a URL do webhook', + 'reset_webhook_secret' => 'Redefinir chave do webhook', + 'webhook_stored_link' => 'Webhooh #{ID} ("{title}") foi salva.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") foi atualizado.', // API access - 'authorization_request' => 'Firefly III v:version Pedido de autorização', - 'authorization_request_intro' => 'O aplicativo ":client" está solicitando permissão para acessar sua administração financeira. Você deseja autorizar o acesso a estes registros a :client?', - 'authorization_request_site' => 'Você será redirecionado para :url que então será capaz de acessar seus dados do Firefly III.', - 'authorization_request_invalid' => 'Este pedido de acesso é inválido. Por favor, nunca mais acesse este link novamente.', - 'scopes_will_be_able' => 'Esta aplicação será capaz de:', - 'button_authorize' => 'Autorizar', - 'none_in_select_list' => '(nenhum)', - 'no_piggy_bank' => '(nenhum cofrinho)', - 'name_in_currency' => ':name em :currency', - 'paid_in_currency' => 'Pago em :currency', - 'unpaid_in_currency' => 'Não pago em :currency', - 'is_alpha_warning' => 'Você está executando uma versão ALPHA. Cuidado com bugs e problemas.', - 'is_beta_warning' => 'Você está executando uma versão BETA. Cuidado com bugs e problemas.', - 'all_destination_accounts' => 'Contas de destino', - 'all_source_accounts' => 'Contas de origem', - 'back_to_index' => 'Voltar ao índice', - 'cant_logout_guard' => 'Firefly III não pode te deslogar.', - 'internal_reference' => 'Referência interna', + 'authorization_request' => 'Firefly III v:version Pedido de autorização', + 'authorization_request_intro' => 'O aplicativo ":client" está solicitando permissão para acessar sua administração financeira. Você deseja autorizar o acesso a estes registros a :client?', + 'authorization_request_site' => 'Você será redirecionado para :url que então será capaz de acessar seus dados do Firefly III.', + 'authorization_request_invalid' => 'Este pedido de acesso é inválido. Por favor, nunca mais acesse este link novamente.', + 'scopes_will_be_able' => 'Esta aplicação será capaz de:', + 'button_authorize' => 'Autorizar', + 'none_in_select_list' => '(nenhum)', + 'no_piggy_bank' => '(nenhum cofrinho)', + 'name_in_currency' => ':name em :currency', + 'paid_in_currency' => 'Pago em :currency', + 'unpaid_in_currency' => 'Não pago em :currency', + 'is_alpha_warning' => 'Você está executando uma versão ALPHA. Cuidado com bugs e problemas.', + 'is_beta_warning' => 'Você está executando uma versão BETA. Cuidado com bugs e problemas.', + 'all_destination_accounts' => 'Contas de destino', + 'all_source_accounts' => 'Contas de origem', + 'back_to_index' => 'Voltar ao índice', + 'cant_logout_guard' => 'Firefly III não pode te deslogar.', + 'internal_reference' => 'Referência interna', // check for updates: - 'update_check_title' => 'Verificar Atualizações', - 'admin_update_check_title' => 'Verificar atualização automaticamente', - 'admin_update_check_explain' => 'O Firefly lll pode checar por atualizações automaticamente. Quando você ativa essa configuração, o servidor de atualização do Firefly lll será contatado para ver se uma nova versão está disponível. Quando estiver, você receberá uma notificação. Você pode testar essa notificação utilizando o botão à direita. Por favor, indique abaixo se você quer que o Firefly lll verifique por atualizações.', - 'check_for_updates_permission' => 'O Firefly III pode verificar atualizações, mas precisa da sua permissão para fazê-lo. Acesse a administração para indicar se você gostaria que esse recurso fosse ativado.', - 'updates_ask_me_later' => 'Pergunte-me depois', - 'updates_do_not_check' => 'Não verifique se há atualizações', - 'updates_enable_check' => 'Habilitar a verificação de atualizações', - 'admin_update_check_now_title' => 'Verifique se há atualizações agora', - 'admin_update_check_now_explain' => 'Se você pressionar o botão, o Firefly III verá se sua versão atual é a mais recente.', - 'check_for_updates_button' => 'Verifique agora!', - 'update_new_version_alert' => 'Uma nova versão do Firefly lll está disponível. Você está utilizando a versão :your_version, e a nova é a :new_version, que foi lançada no dia :date.', - 'update_version_beta' => 'Esta versão é uma versão BETA. Você pode encontrar problemas.', - 'update_version_alpha' => 'Esta versão é uma versão ALPHA. Você pode encontrar problemas.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Você está utilizando a versão :version, que é a última disponível.', - 'update_newer_version_alert' => 'Você está utilizando a versão :your_version, que é mais nova do que a mais recente :new_version.', - 'update_check_error' => 'Ocorreu um erro durante a verificação de atualizações: :error', - 'unknown_error' => 'Erro desconhecido. Desculpe por isso.', - 'disabled_but_check' => 'Você desativou a verificação de atualizações. Então, não se esqueça de verificar se há atualizações de vez em quando. Obrigado!', - 'admin_update_channel_title' => 'Atualizar canal', - 'admin_update_channel_explain' => 'O Firefly lll tem três "canais" de atualizações que determinam o quão à frente da curva você está em termos de funções, melhorias e bugs. Utilize o canal "beta" se você é aventureiro, e o "alpha" se você gosta de viver a vida perigosamente.', - 'update_channel_stable' => 'Estável. Tudo deve funcionar como esperado.', - 'update_channel_beta' => 'Beta. Novas funções, mas as coisas podem estar quebradas.', - 'update_channel_alpha' => 'Alfa. Nós tentamos várias coisas e usamos o que funcionar.', + 'update_check_title' => 'Verificar Atualizações', + 'admin_update_check_title' => 'Verificar atualização automaticamente', + 'admin_update_check_explain' => 'O Firefly lll pode checar por atualizações automaticamente. Quando você ativa essa configuração, o servidor de atualização do Firefly lll será contatado para ver se uma nova versão está disponível. Quando estiver, você receberá uma notificação. Você pode testar essa notificação utilizando o botão à direita. Por favor, indique abaixo se você quer que o Firefly lll verifique por atualizações.', + 'check_for_updates_permission' => 'O Firefly III pode verificar atualizações, mas precisa da sua permissão para fazê-lo. Acesse a administração para indicar se você gostaria que esse recurso fosse ativado.', + 'updates_ask_me_later' => 'Pergunte-me depois', + 'updates_do_not_check' => 'Não verifique se há atualizações', + 'updates_enable_check' => 'Habilitar a verificação de atualizações', + 'admin_update_check_now_title' => 'Verifique se há atualizações agora', + 'admin_update_check_now_explain' => 'Se você pressionar o botão, o Firefly III verá se sua versão atual é a mais recente.', + 'check_for_updates_button' => 'Verifique agora!', + 'update_new_version_alert' => 'Uma nova versão do Firefly lll está disponível. Você está utilizando a versão :your_version, e a nova é a :new_version, que foi lançada no dia :date.', + 'update_version_beta' => 'Esta versão é uma versão BETA. Você pode encontrar problemas.', + 'update_version_alpha' => 'Esta versão é uma versão ALPHA. Você pode encontrar problemas.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Você está utilizando a versão :version, que é a última disponível.', + 'update_newer_version_alert' => 'Você está utilizando a versão :your_version, que é mais nova do que a mais recente :new_version.', + 'update_check_error' => 'Ocorreu um erro durante a verificação de atualizações: :error', + 'unknown_error' => 'Erro desconhecido. Desculpe por isso.', + 'disabled_but_check' => 'Você desativou a verificação de atualizações. Então, não se esqueça de verificar se há atualizações de vez em quando. Obrigado!', + 'admin_update_channel_title' => 'Atualizar canal', + 'admin_update_channel_explain' => 'O Firefly lll tem três "canais" de atualizações que determinam o quão à frente da curva você está em termos de funções, melhorias e bugs. Utilize o canal "beta" se você é aventureiro, e o "alpha" se você gosta de viver a vida perigosamente.', + 'update_channel_stable' => 'Estável. Tudo deve funcionar como esperado.', + 'update_channel_beta' => 'Beta. Novas funções, mas as coisas podem estar quebradas.', + 'update_channel_alpha' => 'Alfa. Nós tentamos várias coisas e usamos o que funcionar.', // search - 'search' => 'Pesquisa', - 'search_query' => 'Pedido', - 'search_found_transactions' => 'Firefly III encontrou :count transação em :time segundos.|Firefly III encontrou :count transações em :time segundos.', - 'search_found_more_transactions' => 'Firefly III encontrou mais de :count transações em :time segundos.', - 'search_for_query' => 'Firefly III está procurando transações com todas estas palavras neles: :query', - 'invalid_operators_list' => 'Estes parâmetros de busca não são válidos e foram ignorados.', + 'search' => 'Pesquisa', + 'search_query' => 'Pedido', + 'search_found_transactions' => 'Firefly III encontrou :count transação em :time segundos.|Firefly III encontrou :count transações em :time segundos.', + 'search_found_more_transactions' => 'Firefly III encontrou mais de :count transações em :time segundos.', + 'search_for_query' => 'Firefly III está procurando transações com todas estas palavras neles: :query', + 'invalid_operators_list' => 'Estes parâmetros de busca não são válidos e foram ignorados.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'A data da transação é ":value"', - 'search_modifier_not_date_on' => 'A data da transação não é ":value"', - 'search_modifier_reconciled' => 'Transação está reconciliada', - 'search_modifier_not_reconciled' => 'Transação não está reconciliada', - 'search_modifier_id' => 'O ID da transação é ":value"', - 'search_modifier_not_id' => 'O ID da transação não é ":value"', - 'search_modifier_date_before' => 'Data da transação é anterior ou em ":value"', - 'search_modifier_date_after' => 'Data da transação é posterior ou em ":value"', - 'search_modifier_external_id_is' => 'O ID externo é ":value"', - 'search_modifier_not_external_id_is' => 'ID Externo não é ":value"', - 'search_modifier_no_external_url' => 'A transação não tem URL externa', - 'search_modifier_no_external_id' => 'A transação não tem ID externo', - 'search_modifier_not_any_external_url' => 'A transação não tem URL externa', - 'search_modifier_not_any_external_id' => 'A transação não tem ID externo', - 'search_modifier_any_external_url' => 'A transação deve ter uma URL externa (qualquer)', - 'search_modifier_any_external_id' => 'A transação deve ter um (qualquer) ID externo', - 'search_modifier_not_no_external_url' => 'A transação deve ter uma URL externa (qualquer)', - 'search_modifier_not_no_external_id' => 'A transação deve ter um (qualquer) ID externo', - 'search_modifier_internal_reference_is' => 'A referência interna é ":value"', - 'search_modifier_not_internal_reference_is' => 'Referência interna não é ":value"', - 'search_modifier_description_starts' => 'Descrição começa com ":value"', - 'search_modifier_not_description_starts' => 'Descrição não começa com ":value"', - 'search_modifier_description_ends' => 'Descrição termina em ":value"', - 'search_modifier_not_description_ends' => 'Descrição não termina com ":value"', - 'search_modifier_description_contains' => 'Descrição contém ":value"', - 'search_modifier_not_description_contains' => 'Descrição não contém ":value"', - 'search_modifier_description_is' => 'Descrição é exatamente ":value"', - 'search_modifier_not_description_is' => 'Descrição não é exatamente ":value"', - 'search_modifier_currency_is' => 'A moeda da transação (estrangeira) é ":value"', - 'search_modifier_not_currency_is' => 'A moeda (estrangeira) da transação não é ":value"', - 'search_modifier_foreign_currency_is' => 'A moeda estrangeira da transação é ":value"', - 'search_modifier_not_foreign_currency_is' => 'A moeda estrangeira da transação não é ":value"', - 'search_modifier_has_attachments' => 'A transação deve ter um anexo', - 'search_modifier_has_no_category' => 'A transação não deve ter nenhuma categoria', - 'search_modifier_not_has_no_category' => 'A transação deve ter (qualquer) categoria', - 'search_modifier_not_has_any_category' => 'A transação não deve ter nenhuma categoria', - 'search_modifier_has_any_category' => 'A transação deve ter uma categoria (qualquer)', - 'search_modifier_has_no_budget' => 'A transação não deve ter orçamento', - 'search_modifier_not_has_any_budget' => 'A transação não deve ter orçamento', - 'search_modifier_has_any_budget' => 'A transação deve ter um orçamento (qualquer)', - 'search_modifier_not_has_no_budget' => 'A transação deve ter (qualquer) orçamento', - 'search_modifier_has_no_bill' => 'A transação não pode ter nenhuma fatura', - 'search_modifier_not_has_no_bill' => 'A transação deve ter (qualquer) fatura', - 'search_modifier_has_any_bill' => 'A transação deve ter uma fatura (qualquer)', - 'search_modifier_not_has_any_bill' => 'A transação não pode ter uma fatura', - 'search_modifier_has_no_tag' => 'A transação não deve ter tags', - 'search_modifier_not_has_any_tag' => 'A transação não deve ter tags', - 'search_modifier_not_has_no_tag' => 'A transação deve ter uma tag (qualquer)', - 'search_modifier_has_any_tag' => 'A transação deve ter uma tag (qualquer)', - 'search_modifier_notes_contains' => 'As notas de transação contém ":value"', - 'search_modifier_not_notes_contains' => 'As anotações da transação não contém ":value"', - 'search_modifier_notes_starts' => 'As notas de transação começam com ":value"', - 'search_modifier_not_notes_starts' => 'As anotações da transação não começam com ":value"', - 'search_modifier_notes_ends' => 'As notas de transação terminam com ":value"', - 'search_modifier_not_notes_ends' => 'As anotações da transação não terminam com ":value"', - 'search_modifier_notes_is' => 'As notas de transação são iguais a ":value"', - 'search_modifier_not_notes_is' => 'As anotações da transação não são iguais a ":value"', - 'search_modifier_no_notes' => 'A transação não tem notas', - 'search_modifier_not_no_notes' => 'A transação deve ter anotações', - 'search_modifier_any_notes' => 'A transação deve ter notas', - 'search_modifier_not_any_notes' => 'A transação não tem anotações', - 'search_modifier_amount_is' => 'Valor é exatamente :value', - 'search_modifier_not_amount_is' => 'O valor não é :value', - 'search_modifier_amount_less' => 'Valor é menor ou igual a :value', - 'search_modifier_not_amount_more' => 'O valor é menor ou igual a :value', - 'search_modifier_amount_more' => 'Valor é maior ou igual a :value', - 'search_modifier_not_amount_less' => 'O valor é maior ou igual a :value', - 'search_modifier_source_account_is' => 'O nome da conta de origem é igual a ":value"', - 'search_modifier_not_source_account_is' => 'O nome da conta de origem não é igual a ":value"', - 'search_modifier_source_account_contains' => 'O nome da conta de origem contém ":value"', - 'search_modifier_not_source_account_contains' => 'O nome da conta de origem não contém ":value"', - 'search_modifier_source_account_starts' => 'Nome da conta de origem começa com ":value"', - 'search_modifier_not_source_account_starts' => 'O nome da conta de origem não começa com ":value"', - 'search_modifier_source_account_ends' => 'O nome da conta de origem termina com ":value"', - 'search_modifier_not_source_account_ends' => 'O nome da conta de origem não termina com ":value"', - 'search_modifier_source_account_id' => 'ID da conta de origem é :value', - 'search_modifier_not_source_account_id' => 'ID da conta de origem não é :value', - 'search_modifier_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":value"', - 'search_modifier_not_source_account_nr_is' => 'Número da conta de origem (IBAN) não é ":value"', - 'search_modifier_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Número da conta de origem (IBAN) não contém ":value"', - 'search_modifier_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Número da conta de origem (IBAN) não começa com ":value"', - 'search_modifier_source_account_nr_ends' => 'Número da conta de origem (IBAN) termina com ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Número da conta de origem (IBAN) não termina com ":value"', - 'search_modifier_destination_account_is' => 'O nome da conta de destino é igual a ":value"', - 'search_modifier_not_destination_account_is' => 'O nome da conta de destino não é ":value"', - 'search_modifier_destination_account_contains' => 'Nome da conta de destino contém ":value"', - 'search_modifier_not_destination_account_contains' => 'Nome da conta de destino não contém ":value"', - 'search_modifier_destination_account_starts' => 'O nome da conta de destino começa com ":value"', - 'search_modifier_not_destination_account_starts' => 'Nome da conta de destino não começa com ":value"', - 'search_modifier_destination_account_ends' => 'Nome da conta de destino termina com ":value"', - 'search_modifier_not_destination_account_ends' => 'Nome da conta de destino não termina com ":value"', - 'search_modifier_destination_account_id' => 'ID da conta de destino é :value', - 'search_modifier_not_destination_account_id' => 'ID da conta de destino não é :value', - 'search_modifier_destination_is_cash' => 'A conta de destino é conta "(dinheiro)"', - 'search_modifier_not_destination_is_cash' => 'A conta de destino não é a conta "(dinheiro)"', - 'search_modifier_source_is_cash' => 'A conta de origem é a conta "(dinheiro)"', - 'search_modifier_not_source_is_cash' => 'A conta de origem não é a conta "(dinheiro)"', - 'search_modifier_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', - 'search_modifier_destination_account_nr_contains' => 'Número da conta de destino (IBAN) contém ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Número da conta de destino (IBAN) não contém ":value"', - 'search_modifier_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Número da conta de destino (IBAN) não começa com ":value"', - 'search_modifier_destination_account_nr_ends' => 'Número da conta de destino (IBAN) termina com ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Número da conta de destino (IBAN) não termina com ":value"', - 'search_modifier_account_id' => 'ID(s) da conta de origem ou destino é/são: :value', - 'search_modifier_not_account_id' => 'ID(s) da conta de origem ou destino não é/são: :value', - 'search_modifier_category_is' => 'A categoria é ":value"', - 'search_modifier_not_category_is' => 'A categoria não é ":value"', - 'search_modifier_budget_is' => 'O orçamento é ":value"', - 'search_modifier_not_budget_is' => 'Orçamento não é ":value"', - 'search_modifier_bill_is' => 'Fatura é ":value"', - 'search_modifier_not_bill_is' => 'Fatura não é ":value"', - 'search_modifier_transaction_type' => 'O tipo da transação é ":value"', - 'search_modifier_not_transaction_type' => 'Tipo de transação não é ":value"', - 'search_modifier_tag_is' => 'A tag é ":value"', - 'search_modifier_tag_contains' => 'Tag contém ":value"', - 'search_modifier_not_tag_contains' => 'Tag não contém ":value"', - 'search_modifier_tag_ends' => 'Tag termina com ":value"', - 'search_modifier_tag_starts' => 'Tag começa com ":value"', - 'search_modifier_not_tag_is' => 'Nenhuma tag é ":value"', - 'search_modifier_date_on_year' => 'Transação é no ano de ":value"', - 'search_modifier_not_date_on_year' => 'Transação não está no ano ":value"', - 'search_modifier_date_on_month' => 'Transação é no mês de ":value"', - 'search_modifier_not_date_on_month' => 'Transação não está em mês ":value"', - 'search_modifier_date_on_day' => 'Transação é no dia do mês de ":value"', - 'search_modifier_not_date_on_day' => 'Transação não está no dia do mês ":value"', - 'search_modifier_date_before_year' => 'Transação é antes ou no ano de ":value"', - 'search_modifier_date_before_month' => 'Transação é antes ou no mês de ":value"', - 'search_modifier_date_before_day' => 'A transação é antes ou no dia do mês ":value"', - 'search_modifier_date_after_year' => 'Transação está no ano ou após ":value"', - 'search_modifier_date_after_month' => 'Transação está no mês ou após ":value"', - 'search_modifier_date_after_day' => 'Transação é depois ou no dia do mês de ":value"', + 'search_modifier_date_on' => 'A data da transação é ":value"', + 'search_modifier_not_date_on' => 'A data da transação não é ":value"', + 'search_modifier_reconciled' => 'Transação está reconciliada', + 'search_modifier_not_reconciled' => 'Transação não está reconciliada', + 'search_modifier_id' => 'O ID da transação é ":value"', + 'search_modifier_not_id' => 'O ID da transação não é ":value"', + 'search_modifier_date_before' => 'Data da transação é anterior ou em ":value"', + 'search_modifier_date_after' => 'Data da transação é posterior ou em ":value"', + 'search_modifier_external_id_is' => 'O ID externo é ":value"', + 'search_modifier_not_external_id_is' => 'ID Externo não é ":value"', + 'search_modifier_no_external_url' => 'A transação não tem URL externa', + 'search_modifier_no_external_id' => 'A transação não tem ID externo', + 'search_modifier_not_any_external_url' => 'A transação não tem URL externa', + 'search_modifier_not_any_external_id' => 'A transação não tem ID externo', + 'search_modifier_any_external_url' => 'A transação deve ter uma URL externa (qualquer)', + 'search_modifier_any_external_id' => 'A transação deve ter um (qualquer) ID externo', + 'search_modifier_not_no_external_url' => 'A transação deve ter uma URL externa (qualquer)', + 'search_modifier_not_no_external_id' => 'A transação deve ter um (qualquer) ID externo', + 'search_modifier_internal_reference_is' => 'A referência interna é ":value"', + 'search_modifier_not_internal_reference_is' => 'Referência interna não é ":value"', + 'search_modifier_description_starts' => 'Descrição começa com ":value"', + 'search_modifier_not_description_starts' => 'Descrição não começa com ":value"', + 'search_modifier_description_ends' => 'Descrição termina em ":value"', + 'search_modifier_not_description_ends' => 'Descrição não termina com ":value"', + 'search_modifier_description_contains' => 'Descrição contém ":value"', + 'search_modifier_not_description_contains' => 'Descrição não contém ":value"', + 'search_modifier_description_is' => 'Descrição é exatamente ":value"', + 'search_modifier_not_description_is' => 'Descrição não é exatamente ":value"', + 'search_modifier_currency_is' => 'A moeda da transação (estrangeira) é ":value"', + 'search_modifier_not_currency_is' => 'A moeda (estrangeira) da transação não é ":value"', + 'search_modifier_foreign_currency_is' => 'A moeda estrangeira da transação é ":value"', + 'search_modifier_not_foreign_currency_is' => 'A moeda estrangeira da transação não é ":value"', + 'search_modifier_has_attachments' => 'A transação deve ter um anexo', + 'search_modifier_has_no_category' => 'A transação não deve ter nenhuma categoria', + 'search_modifier_not_has_no_category' => 'A transação deve ter (qualquer) categoria', + 'search_modifier_not_has_any_category' => 'A transação não deve ter nenhuma categoria', + 'search_modifier_has_any_category' => 'A transação deve ter uma categoria (qualquer)', + 'search_modifier_has_no_budget' => 'A transação não deve ter orçamento', + 'search_modifier_not_has_any_budget' => 'A transação não deve ter orçamento', + 'search_modifier_has_any_budget' => 'A transação deve ter um orçamento (qualquer)', + 'search_modifier_not_has_no_budget' => 'A transação deve ter (qualquer) orçamento', + 'search_modifier_has_no_bill' => 'A transação não pode ter nenhuma fatura', + 'search_modifier_not_has_no_bill' => 'A transação deve ter (qualquer) fatura', + 'search_modifier_has_any_bill' => 'A transação deve ter uma fatura (qualquer)', + 'search_modifier_not_has_any_bill' => 'A transação não pode ter uma fatura', + 'search_modifier_has_no_tag' => 'A transação não deve ter tags', + 'search_modifier_not_has_any_tag' => 'A transação não deve ter tags', + 'search_modifier_not_has_no_tag' => 'A transação deve ter uma tag (qualquer)', + 'search_modifier_has_any_tag' => 'A transação deve ter uma tag (qualquer)', + 'search_modifier_notes_contains' => 'As notas de transação contém ":value"', + 'search_modifier_not_notes_contains' => 'As anotações da transação não contém ":value"', + 'search_modifier_notes_starts' => 'As notas de transação começam com ":value"', + 'search_modifier_not_notes_starts' => 'As anotações da transação não começam com ":value"', + 'search_modifier_notes_ends' => 'As notas de transação terminam com ":value"', + 'search_modifier_not_notes_ends' => 'As anotações da transação não terminam com ":value"', + 'search_modifier_notes_is' => 'As notas de transação são iguais a ":value"', + 'search_modifier_not_notes_is' => 'As anotações da transação não são iguais a ":value"', + 'search_modifier_no_notes' => 'A transação não tem notas', + 'search_modifier_not_no_notes' => 'A transação deve ter anotações', + 'search_modifier_any_notes' => 'A transação deve ter notas', + 'search_modifier_not_any_notes' => 'A transação não tem anotações', + 'search_modifier_amount_is' => 'Valor é exatamente :value', + 'search_modifier_not_amount_is' => 'O valor não é :value', + 'search_modifier_amount_less' => 'Valor é menor ou igual a :value', + 'search_modifier_not_amount_more' => 'O valor é menor ou igual a :value', + 'search_modifier_amount_more' => 'Valor é maior ou igual a :value', + 'search_modifier_not_amount_less' => 'O valor é maior ou igual a :value', + 'search_modifier_source_account_is' => 'O nome da conta de origem é igual a ":value"', + 'search_modifier_not_source_account_is' => 'O nome da conta de origem não é igual a ":value"', + 'search_modifier_source_account_contains' => 'O nome da conta de origem contém ":value"', + 'search_modifier_not_source_account_contains' => 'O nome da conta de origem não contém ":value"', + 'search_modifier_source_account_starts' => 'Nome da conta de origem começa com ":value"', + 'search_modifier_not_source_account_starts' => 'O nome da conta de origem não começa com ":value"', + 'search_modifier_source_account_ends' => 'O nome da conta de origem termina com ":value"', + 'search_modifier_not_source_account_ends' => 'O nome da conta de origem não termina com ":value"', + 'search_modifier_source_account_id' => 'ID da conta de origem é :value', + 'search_modifier_not_source_account_id' => 'ID da conta de origem não é :value', + 'search_modifier_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":value"', + 'search_modifier_not_source_account_nr_is' => 'Número da conta de origem (IBAN) não é ":value"', + 'search_modifier_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Número da conta de origem (IBAN) não contém ":value"', + 'search_modifier_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Número da conta de origem (IBAN) não começa com ":value"', + 'search_modifier_source_account_nr_ends' => 'Número da conta de origem (IBAN) termina com ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Número da conta de origem (IBAN) não termina com ":value"', + 'search_modifier_destination_account_is' => 'O nome da conta de destino é igual a ":value"', + 'search_modifier_not_destination_account_is' => 'O nome da conta de destino não é ":value"', + 'search_modifier_destination_account_contains' => 'Nome da conta de destino contém ":value"', + 'search_modifier_not_destination_account_contains' => 'Nome da conta de destino não contém ":value"', + 'search_modifier_destination_account_starts' => 'O nome da conta de destino começa com ":value"', + 'search_modifier_not_destination_account_starts' => 'Nome da conta de destino não começa com ":value"', + 'search_modifier_destination_account_ends' => 'Nome da conta de destino termina com ":value"', + 'search_modifier_not_destination_account_ends' => 'Nome da conta de destino não termina com ":value"', + 'search_modifier_destination_account_id' => 'ID da conta de destino é :value', + 'search_modifier_not_destination_account_id' => 'ID da conta de destino não é :value', + 'search_modifier_destination_is_cash' => 'A conta de destino é conta "(dinheiro)"', + 'search_modifier_not_destination_is_cash' => 'A conta de destino não é a conta "(dinheiro)"', + 'search_modifier_source_is_cash' => 'A conta de origem é a conta "(dinheiro)"', + 'search_modifier_not_source_is_cash' => 'A conta de origem não é a conta "(dinheiro)"', + 'search_modifier_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', + 'search_modifier_destination_account_nr_contains' => 'Número da conta de destino (IBAN) contém ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Número da conta de destino (IBAN) não contém ":value"', + 'search_modifier_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Número da conta de destino (IBAN) não começa com ":value"', + 'search_modifier_destination_account_nr_ends' => 'Número da conta de destino (IBAN) termina com ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Número da conta de destino (IBAN) não termina com ":value"', + 'search_modifier_account_id' => 'ID(s) da conta de origem ou destino é/são: :value', + 'search_modifier_not_account_id' => 'ID(s) da conta de origem ou destino não é/são: :value', + 'search_modifier_category_is' => 'A categoria é ":value"', + 'search_modifier_not_category_is' => 'A categoria não é ":value"', + 'search_modifier_budget_is' => 'O orçamento é ":value"', + 'search_modifier_not_budget_is' => 'Orçamento não é ":value"', + 'search_modifier_bill_is' => 'Fatura é ":value"', + 'search_modifier_not_bill_is' => 'Fatura não é ":value"', + 'search_modifier_transaction_type' => 'O tipo da transação é ":value"', + 'search_modifier_not_transaction_type' => 'Tipo de transação não é ":value"', + 'search_modifier_tag_is' => 'A tag é ":value"', + 'search_modifier_tag_contains' => 'Tag contém ":value"', + 'search_modifier_not_tag_contains' => 'Tag não contém ":value"', + 'search_modifier_tag_ends' => 'Tag termina com ":value"', + 'search_modifier_tag_starts' => 'Tag começa com ":value"', + 'search_modifier_not_tag_is' => 'Nenhuma tag é ":value"', + 'search_modifier_date_on_year' => 'Transação é no ano de ":value"', + 'search_modifier_not_date_on_year' => 'Transação não está no ano ":value"', + 'search_modifier_date_on_month' => 'Transação é no mês de ":value"', + 'search_modifier_not_date_on_month' => 'Transação não está em mês ":value"', + 'search_modifier_date_on_day' => 'Transação é no dia do mês de ":value"', + 'search_modifier_not_date_on_day' => 'Transação não está no dia do mês ":value"', + 'search_modifier_date_before_year' => 'Transação é antes ou no ano de ":value"', + 'search_modifier_date_before_month' => 'Transação é antes ou no mês de ":value"', + 'search_modifier_date_before_day' => 'A transação é antes ou no dia do mês ":value"', + 'search_modifier_date_after_year' => 'Transação está no ano ou após ":value"', + 'search_modifier_date_after_month' => 'Transação está no mês ou após ":value"', + 'search_modifier_date_after_day' => 'Transação é depois ou no dia do mês de ":value"', // new - 'search_modifier_tag_is_not' => 'Nenhuma tag é ":value"', - 'search_modifier_not_tag_is_not' => 'A tag é ":value"', - 'search_modifier_account_is' => 'Ou a conta é ":value"', - 'search_modifier_not_account_is' => 'Nenhuma conta é ":value"', - 'search_modifier_account_contains' => 'Ou a conta contém ":value"', - 'search_modifier_not_account_contains' => 'Nenhuma conta contém ":value"', - 'search_modifier_account_ends' => 'Ou a conta termina com ":value"', - 'search_modifier_not_account_ends' => 'Nenhuma conta termina com ":value"', - 'search_modifier_account_starts' => 'Ou a conta começa com ":value"', - 'search_modifier_not_account_starts' => 'Nenhuma conta começa com ":value"', - 'search_modifier_account_nr_is' => 'Ou número da conta / IBAN é ":value"', - 'search_modifier_not_account_nr_is' => 'Nenhum número de conta / IBAN é ":value"', - 'search_modifier_account_nr_contains' => 'Ou número da conta / IBAN contém ":value"', - 'search_modifier_not_account_nr_contains' => 'Nenhum número de conta / IBAN contém ":value"', - 'search_modifier_account_nr_ends' => 'Ou número de conta / IBAN termina com ":value"', - 'search_modifier_not_account_nr_ends' => 'Nenhum número de conta / IBAN termina com ":value"', - 'search_modifier_account_nr_starts' => 'Ou número da conta / IBAN começa com ":value"', - 'search_modifier_not_account_nr_starts' => 'Nenhum número de conta / IBAN começa com ":value"', - 'search_modifier_category_contains' => 'Categoria contém ":value"', - 'search_modifier_not_category_contains' => 'Categoria não contém ":value"', - 'search_modifier_category_ends' => 'Categoria termina em ":value"', - 'search_modifier_not_category_ends' => 'Categoria não termina em ":value"', - 'search_modifier_category_starts' => 'Categoria começa com ":value"', - 'search_modifier_not_category_starts' => 'Categoria não começa com ":value"', - 'search_modifier_budget_contains' => 'Orçamento contém ":value"', - 'search_modifier_not_budget_contains' => 'Orçamento não contém ":value"', - 'search_modifier_budget_ends' => 'Orçamento termina com ":value"', - 'search_modifier_not_budget_ends' => 'Orçamento não termina em ":value"', - 'search_modifier_budget_starts' => 'Orçamento começa com ":value"', - 'search_modifier_not_budget_starts' => 'Orçamento não começa com ":value"', - 'search_modifier_bill_contains' => 'Fatura contém ":value"', - 'search_modifier_not_bill_contains' => 'Fatura não contém ":value"', - 'search_modifier_bill_ends' => 'Fatura termina com ":value"', - 'search_modifier_not_bill_ends' => 'Fatura não termina em ":value"', - 'search_modifier_bill_starts' => 'Fatura começa com ":value"', - 'search_modifier_not_bill_starts' => 'Fatura não começa com ":value"', - 'search_modifier_external_id_contains' => 'ID Externo contém ":value"', - 'search_modifier_not_external_id_contains' => 'ID Externo não contém ":value"', - 'search_modifier_external_id_ends' => 'ID Externo termina com ":value"', - 'search_modifier_not_external_id_ends' => 'ID Externo não termina com ":value"', - 'search_modifier_external_id_starts' => 'ID Externo começa com ":value"', - 'search_modifier_not_external_id_starts' => 'ID Externo não inicia com ":value"', - 'search_modifier_internal_reference_contains' => 'Referência interna contém ":value"', - 'search_modifier_not_internal_reference_contains' => 'Referência interna não contém ":value"', - 'search_modifier_internal_reference_ends' => 'Referência interna termina com ":value"', - 'search_modifier_internal_reference_starts' => 'Referência interna começa com ":value"', - 'search_modifier_not_internal_reference_ends' => 'Referência interna não termina com ":value"', - 'search_modifier_not_internal_reference_starts' => 'Referência interna não inicia com ":value"', - 'search_modifier_external_url_is' => 'URL externa é ":value"', - 'search_modifier_not_external_url_is' => 'URL externa não é ":value"', - 'search_modifier_external_url_contains' => 'URL externa contém ":value"', - 'search_modifier_not_external_url_contains' => 'URL externa não contém ":value"', - 'search_modifier_external_url_ends' => 'URL externa termina com ":value"', - 'search_modifier_not_external_url_ends' => 'URL externa não termina com ":value"', - 'search_modifier_external_url_starts' => 'URL externa começa com ":value"', - 'search_modifier_not_external_url_starts' => 'URL externa não inicia com ":value"', - 'search_modifier_has_no_attachments' => 'A transação não tem anexos', - 'search_modifier_not_has_no_attachments' => 'A transação tem anexos', - 'search_modifier_not_has_attachments' => 'A transação não tem anexos', - 'search_modifier_account_is_cash' => 'Qualquer outra conta é a conta em "(dinheiro)".', - 'search_modifier_not_account_is_cash' => 'Nenhuma das contas é a conta em "(dinheiro)".', - 'search_modifier_journal_id' => 'O ID do registro é ":value"', - 'search_modifier_not_journal_id' => 'O ID do diário não é ":value"', - 'search_modifier_recurrence_id' => 'O ID da transação recorrente é ":value"', - 'search_modifier_not_recurrence_id' => 'O ID de transação recorrente não é ":value"', - 'search_modifier_foreign_amount_is' => 'A quantidade em moeda estrangeira é ":value"', - 'search_modifier_not_foreign_amount_is' => 'A quantidade em moeda estrangeira não é ":value"', - 'search_modifier_foreign_amount_less' => 'A quantidade em moeda estrangeira é menor que ":value"', - 'search_modifier_not_foreign_amount_more' => 'A quantidade em moeda estrangeira é menor que ":value"', - 'search_modifier_not_foreign_amount_less' => 'A quantidade em moeda estrangeira é maior que ":value"', - 'search_modifier_foreign_amount_more' => 'A quantidade em moeda estrangeira é maior que ":value"', - 'search_modifier_exists' => 'Transação existe (qualquer transação)', - 'search_modifier_not_exists' => 'Transação não existe (sem transação)', + 'search_modifier_tag_is_not' => 'Nenhuma tag é ":value"', + 'search_modifier_not_tag_is_not' => 'A tag é ":value"', + 'search_modifier_account_is' => 'Ou a conta é ":value"', + 'search_modifier_not_account_is' => 'Nenhuma conta é ":value"', + 'search_modifier_account_contains' => 'Ou a conta contém ":value"', + 'search_modifier_not_account_contains' => 'Nenhuma conta contém ":value"', + 'search_modifier_account_ends' => 'Ou a conta termina com ":value"', + 'search_modifier_not_account_ends' => 'Nenhuma conta termina com ":value"', + 'search_modifier_account_starts' => 'Ou a conta começa com ":value"', + 'search_modifier_not_account_starts' => 'Nenhuma conta começa com ":value"', + 'search_modifier_account_nr_is' => 'Ou número da conta / IBAN é ":value"', + 'search_modifier_not_account_nr_is' => 'Nenhum número de conta / IBAN é ":value"', + 'search_modifier_account_nr_contains' => 'Ou número da conta / IBAN contém ":value"', + 'search_modifier_not_account_nr_contains' => 'Nenhum número de conta / IBAN contém ":value"', + 'search_modifier_account_nr_ends' => 'Ou número de conta / IBAN termina com ":value"', + 'search_modifier_not_account_nr_ends' => 'Nenhum número de conta / IBAN termina com ":value"', + 'search_modifier_account_nr_starts' => 'Ou número da conta / IBAN começa com ":value"', + 'search_modifier_not_account_nr_starts' => 'Nenhum número de conta / IBAN começa com ":value"', + 'search_modifier_category_contains' => 'Categoria contém ":value"', + 'search_modifier_not_category_contains' => 'Categoria não contém ":value"', + 'search_modifier_category_ends' => 'Categoria termina em ":value"', + 'search_modifier_not_category_ends' => 'Categoria não termina em ":value"', + 'search_modifier_category_starts' => 'Categoria começa com ":value"', + 'search_modifier_not_category_starts' => 'Categoria não começa com ":value"', + 'search_modifier_budget_contains' => 'Orçamento contém ":value"', + 'search_modifier_not_budget_contains' => 'Orçamento não contém ":value"', + 'search_modifier_budget_ends' => 'Orçamento termina com ":value"', + 'search_modifier_not_budget_ends' => 'Orçamento não termina em ":value"', + 'search_modifier_budget_starts' => 'Orçamento começa com ":value"', + 'search_modifier_not_budget_starts' => 'Orçamento não começa com ":value"', + 'search_modifier_bill_contains' => 'Fatura contém ":value"', + 'search_modifier_not_bill_contains' => 'Fatura não contém ":value"', + 'search_modifier_bill_ends' => 'Fatura termina com ":value"', + 'search_modifier_not_bill_ends' => 'Fatura não termina em ":value"', + 'search_modifier_bill_starts' => 'Fatura começa com ":value"', + 'search_modifier_not_bill_starts' => 'Fatura não começa com ":value"', + 'search_modifier_external_id_contains' => 'ID Externo contém ":value"', + 'search_modifier_not_external_id_contains' => 'ID Externo não contém ":value"', + 'search_modifier_external_id_ends' => 'ID Externo termina com ":value"', + 'search_modifier_not_external_id_ends' => 'ID Externo não termina com ":value"', + 'search_modifier_external_id_starts' => 'ID Externo começa com ":value"', + 'search_modifier_not_external_id_starts' => 'ID Externo não inicia com ":value"', + 'search_modifier_internal_reference_contains' => 'Referência interna contém ":value"', + 'search_modifier_not_internal_reference_contains' => 'Referência interna não contém ":value"', + 'search_modifier_internal_reference_ends' => 'Referência interna termina com ":value"', + 'search_modifier_internal_reference_starts' => 'Referência interna começa com ":value"', + 'search_modifier_not_internal_reference_ends' => 'Referência interna não termina com ":value"', + 'search_modifier_not_internal_reference_starts' => 'Referência interna não inicia com ":value"', + 'search_modifier_external_url_is' => 'URL externa é ":value"', + 'search_modifier_not_external_url_is' => 'URL externa não é ":value"', + 'search_modifier_external_url_contains' => 'URL externa contém ":value"', + 'search_modifier_not_external_url_contains' => 'URL externa não contém ":value"', + 'search_modifier_external_url_ends' => 'URL externa termina com ":value"', + 'search_modifier_not_external_url_ends' => 'URL externa não termina com ":value"', + 'search_modifier_external_url_starts' => 'URL externa começa com ":value"', + 'search_modifier_not_external_url_starts' => 'URL externa não inicia com ":value"', + 'search_modifier_has_no_attachments' => 'A transação não tem anexos', + 'search_modifier_not_has_no_attachments' => 'A transação tem anexos', + 'search_modifier_not_has_attachments' => 'A transação não tem anexos', + 'search_modifier_account_is_cash' => 'Qualquer outra conta é a conta em "(dinheiro)".', + 'search_modifier_not_account_is_cash' => 'Nenhuma das contas é a conta em "(dinheiro)".', + 'search_modifier_journal_id' => 'O ID do registro é ":value"', + 'search_modifier_not_journal_id' => 'O ID do diário não é ":value"', + 'search_modifier_recurrence_id' => 'O ID da transação recorrente é ":value"', + 'search_modifier_not_recurrence_id' => 'O ID de transação recorrente não é ":value"', + 'search_modifier_foreign_amount_is' => 'A quantidade em moeda estrangeira é ":value"', + 'search_modifier_not_foreign_amount_is' => 'A quantidade em moeda estrangeira não é ":value"', + 'search_modifier_foreign_amount_less' => 'A quantidade em moeda estrangeira é menor que ":value"', + 'search_modifier_not_foreign_amount_more' => 'A quantidade em moeda estrangeira é menor que ":value"', + 'search_modifier_not_foreign_amount_less' => 'A quantidade em moeda estrangeira é maior que ":value"', + 'search_modifier_foreign_amount_more' => 'A quantidade em moeda estrangeira é maior que ":value"', + 'search_modifier_exists' => 'Transação existe (qualquer transação)', + 'search_modifier_not_exists' => 'Transação não existe (sem transação)', // date fields - 'search_modifier_interest_date_on' => 'Data de juros da transação é ":value"', - 'search_modifier_not_interest_date_on' => 'Data de juros da transação não é ":value"', - 'search_modifier_interest_date_on_year' => 'Data de juros da transação está no ano de ":value"', - 'search_modifier_not_interest_date_on_year' => 'Data de juros da transação não está no ano ":value"', - 'search_modifier_interest_date_on_month' => 'Data de juros da transação é no mês de ":value"', - 'search_modifier_not_interest_date_on_month' => 'Data de juros da transação não está no mês ":value"', - 'search_modifier_interest_date_on_day' => 'Data de juros da transação é no dia do mês de ":value"', - 'search_modifier_not_interest_date_on_day' => 'Data de juros da transação não é no dia do mês ":value"', - 'search_modifier_interest_date_before_year' => 'Data de juros da transação é antes ou no ano de ":value"', - 'search_modifier_interest_date_before_month' => 'Data de juros da transação é antes ou no mês de ":value"', - 'search_modifier_interest_date_before_day' => 'Data de juros da transação é antes ou no dia do mês de ":value"', - 'search_modifier_interest_date_after_year' => 'Data de juros da transação é após ou no ano de ":value"', - 'search_modifier_interest_date_after_month' => 'Data de juros da transação é posterior ou no mês de ":value"', - 'search_modifier_interest_date_after_day' => 'Data de juros da transação é após ou no dia do mês de ":value"', - 'search_modifier_book_date_on_year' => 'Data de lançamento está no ano de ":value"', - 'search_modifier_book_date_on_month' => 'Data de lançamento é no mês de ":value"', - 'search_modifier_book_date_on_day' => 'Data de lançamento é no dia do mês de ":value"', - 'search_modifier_not_book_date_on_year' => 'Data de lançamento não é no ano ":value"', - 'search_modifier_not_book_date_on_month' => 'Data de lançamento não é no mês ":value"', - 'search_modifier_not_book_date_on_day' => 'Data de lançamento não é no dia do mês ":value"', - 'search_modifier_book_date_before_year' => 'Data de lançamento é antes ou no ano de ":value"', - 'search_modifier_book_date_before_month' => 'Data de lançamento é antes ou no mês de ":value"', - 'search_modifier_book_date_before_day' => 'Data de lançamento é antes ou no dia do mês de ":value"', - 'search_modifier_book_date_after_year' => 'Data de lançamento é posterior ou no ano de ":value"', - 'search_modifier_book_date_after_month' => 'Data de lançamento é posterior ou no mês de ":value"', - 'search_modifier_book_date_after_day' => 'Data de registro da transação é posterior ou no dia do mês de ":value"', - 'search_modifier_process_date_on_year' => 'Data de processamento da transação está no ano de ":value"', - 'search_modifier_process_date_on_month' => 'Data de processamento da transação está no mês de ":value"', - 'search_modifier_process_date_on_day' => 'Data de processamento da transação está no dia do mês de ":value"', - 'search_modifier_not_process_date_on_year' => 'Data do processasmento da transação não é no ano ":value"', - 'search_modifier_not_process_date_on_month' => 'Data do processasmento da transação é no mês ":value"', - 'search_modifier_not_process_date_on_day' => 'Data do processasmento da transação não é no dia do mês ":value"', - 'search_modifier_process_date_before_year' => 'Data de processamento da transação é antes ou no ano de ":value"', - 'search_modifier_process_date_before_month' => 'Data de processamento da transação é antes ou no mês de ":value"', - 'search_modifier_process_date_before_day' => 'Data de processamento da transação é antes ou no dia do mês de ":value"', - 'search_modifier_process_date_after_year' => 'Data de processamento da transação é posterior ou no ano de ":value"', - 'search_modifier_process_date_after_month' => 'Data de processamento da transação é posterior ou no mês de ":value"', - 'search_modifier_process_date_after_day' => 'Data de processamento da transação é posterior ou no dia do mês de ":value"', - 'search_modifier_due_date_on_year' => 'Data de vencimento da transação é no ano de ":value"', - 'search_modifier_due_date_on_month' => 'Data de vencimento da transação é no mês de ":value"', - 'search_modifier_due_date_on_day' => 'Data de vencimento da transação é no dia do mês de ":value"', - 'search_modifier_not_due_date_on_year' => 'Data de vencimento da transação não é no ano ":value"', - 'search_modifier_not_due_date_on_month' => 'Data de vencimento da transação não é no mês ":value"', - 'search_modifier_not_due_date_on_day' => 'Data de vencimento da transação não é no dia do mês ":value"', - 'search_modifier_due_date_before_year' => 'Data de vencimento da transação é antes ou no ano de ":value"', - 'search_modifier_due_date_before_month' => 'Data de vencimento da transação é antes ou no mês de ":value"', - 'search_modifier_due_date_before_day' => 'Data de vencimento da transação é antes ou no dia do mês de ":value"', - 'search_modifier_due_date_after_year' => 'Data de vencimento da transação é posterior ou no ano de ":value"', - 'search_modifier_due_date_after_month' => 'Data de vencimento da transação é posterior ou no mês de ":value"', - 'search_modifier_due_date_after_day' => 'Data de vencimento da transação é posterior ou no dia do mês de ":value"', - 'search_modifier_payment_date_on_year' => 'Data de pagamento da transação é no ano de ":value"', - 'search_modifier_payment_date_on_month' => 'Data de pagamento da transação é no dia do mês de ":value"', - 'search_modifier_payment_date_on_day' => 'Data de pagamento da transação é no dia do mês de ":value"', - 'search_modifier_not_payment_date_on_year' => 'Data de pagamento da transação não é no ano ":value"', - 'search_modifier_not_payment_date_on_month' => 'Data de pagamento da transação não está no mês ":value"', - 'search_modifier_not_payment_date_on_day' => 'Data de pagamento da transação não é no dia do mês ":value"', - 'search_modifier_payment_date_before_year' => 'Data de pagamento da transação é antes ou no ano de ":value"', - 'search_modifier_payment_date_before_month' => 'Data de pagamento da transação é antes ou no mês de ":value"', - 'search_modifier_payment_date_before_day' => 'Data de pagamento da transação é antes ou no dia do mês de ":value"', - 'search_modifier_payment_date_after_year' => 'Data de pagamento da transação é posterior ou no ano de ":value"', - 'search_modifier_payment_date_after_month' => 'Data de pagamento da transação é posterior ou no mês de ":value"', - 'search_modifier_payment_date_after_day' => 'Data de pagamento da transação é posterior ou no dia do mês de ":value"', - 'search_modifier_invoice_date_on_year' => 'Data de fatura da transação está no ano de ":value"', - 'search_modifier_invoice_date_on_month' => 'Data de fatura da transação está no mês de ":value"', - 'search_modifier_invoice_date_on_day' => 'Data de fatura da transação é no dia do mês de ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Data de fatura da transação não é no ano ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Data de fatura da transação não é no mês ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Data de fatura da transação não é no dia do mês ":value"', - 'search_modifier_invoice_date_before_year' => 'Data de fatura da transação é antes ou no ano de ":value"', - 'search_modifier_invoice_date_before_month' => 'Data da fatura da transação é antes ou em no mês de ":value"', - 'search_modifier_invoice_date_before_day' => 'Data de fatura da transação é antes ou no dia do mês de ":value"', - 'search_modifier_invoice_date_after_year' => 'Data de fatura da transação é posterior ou no ano de ":value"', - 'search_modifier_invoice_date_after_month' => 'Data de fatura da transação é antes ou no ano de ":value"', - 'search_modifier_invoice_date_after_day' => 'Data de pagamento da transação é antes ou no dia do mês de ":value"', + 'search_modifier_interest_date_on' => 'Data de juros da transação é ":value"', + 'search_modifier_not_interest_date_on' => 'Data de juros da transação não é ":value"', + 'search_modifier_interest_date_on_year' => 'Data de juros da transação está no ano de ":value"', + 'search_modifier_not_interest_date_on_year' => 'Data de juros da transação não está no ano ":value"', + 'search_modifier_interest_date_on_month' => 'Data de juros da transação é no mês de ":value"', + 'search_modifier_not_interest_date_on_month' => 'Data de juros da transação não está no mês ":value"', + 'search_modifier_interest_date_on_day' => 'Data de juros da transação é no dia do mês de ":value"', + 'search_modifier_not_interest_date_on_day' => 'Data de juros da transação não é no dia do mês ":value"', + 'search_modifier_interest_date_before_year' => 'Data de juros da transação é antes ou no ano de ":value"', + 'search_modifier_interest_date_before_month' => 'Data de juros da transação é antes ou no mês de ":value"', + 'search_modifier_interest_date_before_day' => 'Data de juros da transação é antes ou no dia do mês de ":value"', + 'search_modifier_interest_date_after_year' => 'Data de juros da transação é após ou no ano de ":value"', + 'search_modifier_interest_date_after_month' => 'Data de juros da transação é posterior ou no mês de ":value"', + 'search_modifier_interest_date_after_day' => 'Data de juros da transação é após ou no dia do mês de ":value"', + 'search_modifier_book_date_on_year' => 'Data de lançamento está no ano de ":value"', + 'search_modifier_book_date_on_month' => 'Data de lançamento é no mês de ":value"', + 'search_modifier_book_date_on_day' => 'Data de lançamento é no dia do mês de ":value"', + 'search_modifier_not_book_date_on_year' => 'Data de lançamento não é no ano ":value"', + 'search_modifier_not_book_date_on_month' => 'Data de lançamento não é no mês ":value"', + 'search_modifier_not_book_date_on_day' => 'Data de lançamento não é no dia do mês ":value"', + 'search_modifier_book_date_before_year' => 'Data de lançamento é antes ou no ano de ":value"', + 'search_modifier_book_date_before_month' => 'Data de lançamento é antes ou no mês de ":value"', + 'search_modifier_book_date_before_day' => 'Data de lançamento é antes ou no dia do mês de ":value"', + 'search_modifier_book_date_after_year' => 'Data de lançamento é posterior ou no ano de ":value"', + 'search_modifier_book_date_after_month' => 'Data de lançamento é posterior ou no mês de ":value"', + 'search_modifier_book_date_after_day' => 'Data de registro da transação é posterior ou no dia do mês de ":value"', + 'search_modifier_process_date_on_year' => 'Data de processamento da transação está no ano de ":value"', + 'search_modifier_process_date_on_month' => 'Data de processamento da transação está no mês de ":value"', + 'search_modifier_process_date_on_day' => 'Data de processamento da transação está no dia do mês de ":value"', + 'search_modifier_not_process_date_on_year' => 'Data do processasmento da transação não é no ano ":value"', + 'search_modifier_not_process_date_on_month' => 'Data do processasmento da transação é no mês ":value"', + 'search_modifier_not_process_date_on_day' => 'Data do processasmento da transação não é no dia do mês ":value"', + 'search_modifier_process_date_before_year' => 'Data de processamento da transação é antes ou no ano de ":value"', + 'search_modifier_process_date_before_month' => 'Data de processamento da transação é antes ou no mês de ":value"', + 'search_modifier_process_date_before_day' => 'Data de processamento da transação é antes ou no dia do mês de ":value"', + 'search_modifier_process_date_after_year' => 'Data de processamento da transação é posterior ou no ano de ":value"', + 'search_modifier_process_date_after_month' => 'Data de processamento da transação é posterior ou no mês de ":value"', + 'search_modifier_process_date_after_day' => 'Data de processamento da transação é posterior ou no dia do mês de ":value"', + 'search_modifier_due_date_on_year' => 'Data de vencimento da transação é no ano de ":value"', + 'search_modifier_due_date_on_month' => 'Data de vencimento da transação é no mês de ":value"', + 'search_modifier_due_date_on_day' => 'Data de vencimento da transação é no dia do mês de ":value"', + 'search_modifier_not_due_date_on_year' => 'Data de vencimento da transação não é no ano ":value"', + 'search_modifier_not_due_date_on_month' => 'Data de vencimento da transação não é no mês ":value"', + 'search_modifier_not_due_date_on_day' => 'Data de vencimento da transação não é no dia do mês ":value"', + 'search_modifier_due_date_before_year' => 'Data de vencimento da transação é antes ou no ano de ":value"', + 'search_modifier_due_date_before_month' => 'Data de vencimento da transação é antes ou no mês de ":value"', + 'search_modifier_due_date_before_day' => 'Data de vencimento da transação é antes ou no dia do mês de ":value"', + 'search_modifier_due_date_after_year' => 'Data de vencimento da transação é posterior ou no ano de ":value"', + 'search_modifier_due_date_after_month' => 'Data de vencimento da transação é posterior ou no mês de ":value"', + 'search_modifier_due_date_after_day' => 'Data de vencimento da transação é posterior ou no dia do mês de ":value"', + 'search_modifier_payment_date_on_year' => 'Data de pagamento da transação é no ano de ":value"', + 'search_modifier_payment_date_on_month' => 'Data de pagamento da transação é no dia do mês de ":value"', + 'search_modifier_payment_date_on_day' => 'Data de pagamento da transação é no dia do mês de ":value"', + 'search_modifier_not_payment_date_on_year' => 'Data de pagamento da transação não é no ano ":value"', + 'search_modifier_not_payment_date_on_month' => 'Data de pagamento da transação não está no mês ":value"', + 'search_modifier_not_payment_date_on_day' => 'Data de pagamento da transação não é no dia do mês ":value"', + 'search_modifier_payment_date_before_year' => 'Data de pagamento da transação é antes ou no ano de ":value"', + 'search_modifier_payment_date_before_month' => 'Data de pagamento da transação é antes ou no mês de ":value"', + 'search_modifier_payment_date_before_day' => 'Data de pagamento da transação é antes ou no dia do mês de ":value"', + 'search_modifier_payment_date_after_year' => 'Data de pagamento da transação é posterior ou no ano de ":value"', + 'search_modifier_payment_date_after_month' => 'Data de pagamento da transação é posterior ou no mês de ":value"', + 'search_modifier_payment_date_after_day' => 'Data de pagamento da transação é posterior ou no dia do mês de ":value"', + 'search_modifier_invoice_date_on_year' => 'Data de fatura da transação está no ano de ":value"', + 'search_modifier_invoice_date_on_month' => 'Data de fatura da transação está no mês de ":value"', + 'search_modifier_invoice_date_on_day' => 'Data de fatura da transação é no dia do mês de ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Data de fatura da transação não é no ano ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Data de fatura da transação não é no mês ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Data de fatura da transação não é no dia do mês ":value"', + 'search_modifier_invoice_date_before_year' => 'Data de fatura da transação é antes ou no ano de ":value"', + 'search_modifier_invoice_date_before_month' => 'Data da fatura da transação é antes ou em no mês de ":value"', + 'search_modifier_invoice_date_before_day' => 'Data de fatura da transação é antes ou no dia do mês de ":value"', + 'search_modifier_invoice_date_after_year' => 'Data de fatura da transação é posterior ou no ano de ":value"', + 'search_modifier_invoice_date_after_month' => 'Data de fatura da transação é antes ou no ano de ":value"', + 'search_modifier_invoice_date_after_day' => 'Data de pagamento da transação é antes ou no dia do mês de ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'A transação foi atualizada pela última vez no ano de ":value"', - 'search_modifier_updated_at_on_month' => 'A transação foi atualizada pela última vez no mês de ":value"', - 'search_modifier_updated_at_on_day' => 'A transação foi atualizada pela última vez no dia do mês de ":value"', - 'search_modifier_not_updated_at_on_year' => 'A transação não foi atualizada pela última vez no ano ":value"', - 'search_modifier_not_updated_at_on_month' => 'A transação não foi atualizada pela última vez no mês de ":value"', - 'search_modifier_not_updated_at_on_day' => 'A transação não foi atualizada pela última vez no dia do mês ":value"', - 'search_modifier_updated_at_before_year' => 'A transação foi atualizada pela última vez no ano, ou antes de ":value"', - 'search_modifier_updated_at_before_month' => 'A transação foi atualizada pela última vez no mês ou antes de ":value"', - 'search_modifier_updated_at_before_day' => 'A transação foi atualizada pela última vez no dia do mês ou antes de ":value"', - 'search_modifier_updated_at_after_year' => 'A transação foi atualizada pela última vez no ano, ou depois de ":value"', - 'search_modifier_updated_at_after_month' => 'A transação foi atualizada pela última vez no mês ou depois de ":value"', - 'search_modifier_updated_at_after_day' => 'A transação foi atualizada pela última vez no dia do mês ou depois de ":value"', - 'search_modifier_created_at_on_year' => 'A transação foi criada no ano de ":value"', - 'search_modifier_created_at_on_month' => 'A transação foi criada no mês de ":value"', - 'search_modifier_created_at_on_day' => 'A transação foi criada no dia do mês de ":value"', - 'search_modifier_not_created_at_on_year' => 'A transação não foi criada no ano ":value"', - 'search_modifier_not_created_at_on_month' => 'A transação não foi criada no mês de ":value"', - 'search_modifier_not_created_at_on_day' => 'A transação não foi criada no dia do mês ":value"', - 'search_modifier_created_at_before_year' => 'A transação foi criada em ou antes do ano de ":value"', - 'search_modifier_created_at_before_month' => 'A transação foi criada em ou antes do mês de ":value"', - 'search_modifier_created_at_before_day' => 'A transação foi criada em ou antes do dia do mês de ":value"', - 'search_modifier_created_at_after_year' => 'A transação foi criada em ou após o ano de ":value"', - 'search_modifier_created_at_after_month' => 'A transação foi criada em ou após o mês de ":value"', - 'search_modifier_created_at_after_day' => 'A transação foi criada em ou após o dia do mês de ":value"', - 'search_modifier_interest_date_before' => 'Data de juros da transação é em ou antes de ":value"', - 'search_modifier_interest_date_after' => 'Data de juros da transação é em ou posterior a ":value"', - 'search_modifier_book_date_on' => 'Data de lançamento é em ":value"', - 'search_modifier_not_book_date_on' => 'Data de lançamento não está em ":value"', - 'search_modifier_book_date_before' => 'Data de lançamento é em ou antes de ":value"', - 'search_modifier_book_date_after' => 'Data de lançamento é em ou após ":value"', - 'search_modifier_process_date_on' => 'Data de processamento da transação é em ":value"', - 'search_modifier_not_process_date_on' => 'Data do processasmento da transação é no mês ":value"', - 'search_modifier_process_date_before' => 'Data de processamento da transação é em ou antes de ":value"', - 'search_modifier_process_date_after' => 'Data de processamento da transação é em ou após ":value"', - 'search_modifier_due_date_on' => 'Data de vencimento da transação é em ":value"', - 'search_modifier_not_due_date_on' => 'Data de vencimento da transação não está em ":value"', - 'search_modifier_due_date_before' => 'Data de vencimento da transação é em ou antes de ":value"', - 'search_modifier_due_date_after' => 'Data de vencimento da transação é em ou após ":value"', - 'search_modifier_payment_date_on' => 'Data de pagamento da transação é em ":value"', - 'search_modifier_not_payment_date_on' => 'Data de pagamento da transação não está em ":value"', - 'search_modifier_payment_date_before' => 'Data de pagamento da transação é em ou antes de ":value"', - 'search_modifier_payment_date_after' => 'Data de pagamento da transação é em ou após ":value"', - 'search_modifier_invoice_date_on' => 'Data de fatura de transação é em ":value"', - 'search_modifier_not_invoice_date_on' => 'Data de fatura de transação não está em ":value"', - 'search_modifier_invoice_date_before' => 'Data da fatura de transação é em ou antes de ":value"', - 'search_modifier_invoice_date_after' => 'Data da fatura de transação é em ou após ":value"', - 'search_modifier_created_at_on' => 'A transação foi criada em ":value"', - 'search_modifier_not_created_at_on' => 'Transação não foi criada em ":value"', - 'search_modifier_created_at_before' => 'A transação foi criada em ou antes de ":value"', - 'search_modifier_created_at_after' => 'A transação foi criada em ou após ":value"', - 'search_modifier_updated_at_on' => 'Transação foi atualizada em ":value"', - 'search_modifier_not_updated_at_on' => 'Transação não foi atualizada em ":value"', - 'search_modifier_updated_at_before' => 'A transação foi atualizada em ou antes de ":value"', - 'search_modifier_updated_at_after' => 'A transação foi atualizada em ou após ":value"', + 'search_modifier_updated_at_on_year' => 'A transação foi atualizada pela última vez no ano de ":value"', + 'search_modifier_updated_at_on_month' => 'A transação foi atualizada pela última vez no mês de ":value"', + 'search_modifier_updated_at_on_day' => 'A transação foi atualizada pela última vez no dia do mês de ":value"', + 'search_modifier_not_updated_at_on_year' => 'A transação não foi atualizada pela última vez no ano ":value"', + 'search_modifier_not_updated_at_on_month' => 'A transação não foi atualizada pela última vez no mês de ":value"', + 'search_modifier_not_updated_at_on_day' => 'A transação não foi atualizada pela última vez no dia do mês ":value"', + 'search_modifier_updated_at_before_year' => 'A transação foi atualizada pela última vez no ano, ou antes de ":value"', + 'search_modifier_updated_at_before_month' => 'A transação foi atualizada pela última vez no mês ou antes de ":value"', + 'search_modifier_updated_at_before_day' => 'A transação foi atualizada pela última vez no dia do mês ou antes de ":value"', + 'search_modifier_updated_at_after_year' => 'A transação foi atualizada pela última vez no ano, ou depois de ":value"', + 'search_modifier_updated_at_after_month' => 'A transação foi atualizada pela última vez no mês ou depois de ":value"', + 'search_modifier_updated_at_after_day' => 'A transação foi atualizada pela última vez no dia do mês ou depois de ":value"', + 'search_modifier_created_at_on_year' => 'A transação foi criada no ano de ":value"', + 'search_modifier_created_at_on_month' => 'A transação foi criada no mês de ":value"', + 'search_modifier_created_at_on_day' => 'A transação foi criada no dia do mês de ":value"', + 'search_modifier_not_created_at_on_year' => 'A transação não foi criada no ano ":value"', + 'search_modifier_not_created_at_on_month' => 'A transação não foi criada no mês de ":value"', + 'search_modifier_not_created_at_on_day' => 'A transação não foi criada no dia do mês ":value"', + 'search_modifier_created_at_before_year' => 'A transação foi criada em ou antes do ano de ":value"', + 'search_modifier_created_at_before_month' => 'A transação foi criada em ou antes do mês de ":value"', + 'search_modifier_created_at_before_day' => 'A transação foi criada em ou antes do dia do mês de ":value"', + 'search_modifier_created_at_after_year' => 'A transação foi criada em ou após o ano de ":value"', + 'search_modifier_created_at_after_month' => 'A transação foi criada em ou após o mês de ":value"', + 'search_modifier_created_at_after_day' => 'A transação foi criada em ou após o dia do mês de ":value"', + 'search_modifier_interest_date_before' => 'Data de juros da transação é em ou antes de ":value"', + 'search_modifier_interest_date_after' => 'Data de juros da transação é em ou posterior a ":value"', + 'search_modifier_book_date_on' => 'Data de lançamento é em ":value"', + 'search_modifier_not_book_date_on' => 'Data de lançamento não está em ":value"', + 'search_modifier_book_date_before' => 'Data de lançamento é em ou antes de ":value"', + 'search_modifier_book_date_after' => 'Data de lançamento é em ou após ":value"', + 'search_modifier_process_date_on' => 'Data de processamento da transação é em ":value"', + 'search_modifier_not_process_date_on' => 'Data do processasmento da transação é no mês ":value"', + 'search_modifier_process_date_before' => 'Data de processamento da transação é em ou antes de ":value"', + 'search_modifier_process_date_after' => 'Data de processamento da transação é em ou após ":value"', + 'search_modifier_due_date_on' => 'Data de vencimento da transação é em ":value"', + 'search_modifier_not_due_date_on' => 'Data de vencimento da transação não está em ":value"', + 'search_modifier_due_date_before' => 'Data de vencimento da transação é em ou antes de ":value"', + 'search_modifier_due_date_after' => 'Data de vencimento da transação é em ou após ":value"', + 'search_modifier_payment_date_on' => 'Data de pagamento da transação é em ":value"', + 'search_modifier_not_payment_date_on' => 'Data de pagamento da transação não está em ":value"', + 'search_modifier_payment_date_before' => 'Data de pagamento da transação é em ou antes de ":value"', + 'search_modifier_payment_date_after' => 'Data de pagamento da transação é em ou após ":value"', + 'search_modifier_invoice_date_on' => 'Data de fatura de transação é em ":value"', + 'search_modifier_not_invoice_date_on' => 'Data de fatura de transação não está em ":value"', + 'search_modifier_invoice_date_before' => 'Data da fatura de transação é em ou antes de ":value"', + 'search_modifier_invoice_date_after' => 'Data da fatura de transação é em ou após ":value"', + 'search_modifier_created_at_on' => 'A transação foi criada em ":value"', + 'search_modifier_not_created_at_on' => 'Transação não foi criada em ":value"', + 'search_modifier_created_at_before' => 'A transação foi criada em ou antes de ":value"', + 'search_modifier_created_at_after' => 'A transação foi criada em ou após ":value"', + 'search_modifier_updated_at_on' => 'Transação foi atualizada em ":value"', + 'search_modifier_not_updated_at_on' => 'Transação não foi atualizada em ":value"', + 'search_modifier_updated_at_before' => 'A transação foi atualizada em ou antes de ":value"', + 'search_modifier_updated_at_after' => 'A transação foi atualizada em ou após ":value"', - 'search_modifier_attachment_name_is' => 'Qualquer nome de anexo é ":value"', - 'search_modifier_attachment_name_contains' => 'Qualquer nome do anexo contém ":value"', - 'search_modifier_attachment_name_starts' => 'Qualquer nome de anexo começa com ":value"', - 'search_modifier_attachment_name_ends' => 'Qualquer nome de anexo termina com ":value"', - 'search_modifier_attachment_notes_are' => 'Qualquer nota de anexo é ":value"', - 'search_modifier_attachment_notes_contains' => 'Qualquer nota de anexo contém ":value"', - 'search_modifier_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":value"', - 'search_modifier_attachment_notes_ends' => 'Qualquer nota de anexo que termina com ":value"', - 'search_modifier_not_attachment_name_is' => 'Qualquer nome de anexo não é ":value"', - 'search_modifier_not_attachment_name_contains' => 'Qualquer nome de anexo não contém ":value"', - 'search_modifier_not_attachment_name_starts' => 'Qualquer nome de anexo não começa com ":value"', - 'search_modifier_not_attachment_name_ends' => 'Qualquer nome de anexo não termina com ":value"', - 'search_modifier_not_attachment_notes_are' => 'Qualquer nota de anexo que não seja ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Qualquer nota de anexo não contém ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Qualquer nota de anexo que não termina com ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT é ":value"', - 'update_rule_from_query' => 'Atualizar regra ":rule" da pesquisa', - 'create_rule_from_query' => 'Criar nova regra a partir da pesquisa', - 'rule_from_search_words' => 'O mecanismo de regra tem dificuldade para tratar ":string". A regra sugerida que se encaixa na sua pesquisa pode retornar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.', + 'search_modifier_attachment_name_is' => 'Qualquer nome de anexo é ":value"', + 'search_modifier_attachment_name_contains' => 'Qualquer nome do anexo contém ":value"', + 'search_modifier_attachment_name_starts' => 'Qualquer nome de anexo começa com ":value"', + 'search_modifier_attachment_name_ends' => 'Qualquer nome de anexo termina com ":value"', + 'search_modifier_attachment_notes_are' => 'Qualquer nota de anexo é ":value"', + 'search_modifier_attachment_notes_contains' => 'Qualquer nota de anexo contém ":value"', + 'search_modifier_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":value"', + 'search_modifier_attachment_notes_ends' => 'Qualquer nota de anexo que termina com ":value"', + 'search_modifier_not_attachment_name_is' => 'Qualquer nome de anexo não é ":value"', + 'search_modifier_not_attachment_name_contains' => 'Qualquer nome de anexo não contém ":value"', + 'search_modifier_not_attachment_name_starts' => 'Qualquer nome de anexo não começa com ":value"', + 'search_modifier_not_attachment_name_ends' => 'Qualquer nome de anexo não termina com ":value"', + 'search_modifier_not_attachment_notes_are' => 'Qualquer nota de anexo que não seja ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Qualquer nota de anexo não contém ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Qualquer nota de anexo que não termina com ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT é ":value"', + 'update_rule_from_query' => 'Atualizar regra ":rule" da pesquisa', + 'create_rule_from_query' => 'Criar nova regra a partir da pesquisa', + 'rule_from_search_words' => 'O mecanismo de regra tem dificuldade para tratar ":string". A regra sugerida que se encaixa na sua pesquisa pode retornar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Os seguintes modificadores são aplicados também à busca:', - 'general_search_error' => 'Um erro ocorreu durante a pesquisa. Por favor, cheque os arquivos de log para mais informações.', - 'search_box' => 'Pesquisar', - 'search_box_intro' => 'Bem-vindo à função de pesquisa do Firefly III. Digite sua consulta de pesquisa na caixa. Certifique-se de verificar o arquivo de ajuda porque a pesquisa é bastante avançada.', - 'search_error' => 'Erro durante a busca', - 'search_searching' => 'Procurando ...', - 'search_results' => 'Resultados da pesquisa', + 'modifiers_applies_are' => 'Os seguintes modificadores são aplicados também à busca:', + 'general_search_error' => 'Um erro ocorreu durante a pesquisa. Por favor, cheque os arquivos de log para mais informações.', + 'search_box' => 'Pesquisar', + 'search_box_intro' => 'Bem-vindo à função de pesquisa do Firefly III. Digite sua consulta de pesquisa na caixa. Certifique-se de verificar o arquivo de ajuda porque a pesquisa é bastante avançada.', + 'search_error' => 'Erro durante a busca', + 'search_searching' => 'Procurando ...', + 'search_results' => 'Resultados da pesquisa', // repeat frequencies: - 'repeat_freq_yearly' => 'anual', - 'repeat_freq_half-year' => 'cada semestre', - 'repeat_freq_quarterly' => 'trimestral', - 'repeat_freq_monthly' => 'mensal', - 'repeat_freq_weekly' => 'semanal', - 'repeat_freq_daily' => 'diariamente', - 'daily' => 'diariamente', - 'weekly' => 'semanal', - 'quarterly' => 'trimestral', - 'half-year' => 'semestralmente', - 'yearly' => 'anual', + 'repeat_freq_yearly' => 'anual', + 'repeat_freq_half-year' => 'cada semestre', + 'repeat_freq_quarterly' => 'trimestral', + 'repeat_freq_monthly' => 'mensal', + 'repeat_freq_weekly' => 'semanal', + 'repeat_freq_daily' => 'diariamente', + 'daily' => 'diariamente', + 'weekly' => 'semanal', + 'quarterly' => 'trimestral', + 'half-year' => 'semestralmente', + 'yearly' => 'anual', // rules - 'is_not_rule_trigger' => 'Não é', - 'cannot_fire_inactive_rules' => 'Você não pode executar regras inativas.', - 'show_triggers' => 'Exibir gatilhos', - 'show_actions' => 'Exibir ações', - 'rules' => 'Regras', - 'rule_name' => 'Nome da regra', - 'rule_triggers' => 'Regra dispara quando', - 'rule_actions' => 'Regra irá', - 'new_rule' => 'Nova regra', - 'new_rule_group' => 'Novo grupo de regras', - 'rule_priority_up' => 'Dar mais prioridade à regra', - 'rule_priority_down' => 'Dar à regra menos prioridade', - 'make_new_rule_group' => 'Fazer o novo grupo de regras', - 'store_new_rule_group' => 'Gravar novo grupo de regras', - 'created_new_rule_group' => 'Novo grupo de regras ":title" armazenado!', - 'updated_rule_group' => 'Grupo de regras atualizado com sucesso ":title".', - 'edit_rule_group' => 'Editar grupo de regras ":title"', - 'duplicate_rule' => 'Duplicar regra ":title"', - 'rule_copy_of' => 'Cópia de ":title"', - 'duplicated_rule' => 'Regra duplicada ":title" em ":newTitle"', - 'delete_rule_group' => 'Excluir grupo de regra ":title"', - 'deleted_rule_group' => 'Grupo de regra ":title" excluído', - 'update_rule_group' => 'Atualizar um grupo de regra', - 'no_rules_in_group' => 'Não existem regras neste grupo', - 'move_rule_group_up' => 'Subir o grupo de regras', - 'move_rule_group_down' => 'Descer grupo de regras', - 'save_rules_by_moving' => 'Salve essa regra movendo-a para outro grupo de regras:|Salve essas regras movendo-as para outro grupo de regras:', - 'make_new_rule' => 'Faça uma nova regra no grupo de regras ":title"', - 'make_new_rule_no_group' => 'Criar uma nova regra', - 'instructions_rule_from_bill' => 'Para conectar transações com sua nova fatura ":name", Firefly III pode criar uma regra que automaticamente será verificada a cada transação que você criar. Verifique os detalhes abaixo e salve a regra para que o Firefly III possa conectar automaticamente as transações a sua nova fatura.', - 'instructions_rule_from_journal' => 'Crie uma regra com base em uma de suas transações. Complete ou envie o formulário abaixo.', - 'rule_is_strict' => 'regra estrita', - 'rule_is_not_strict' => 'regra não estrita', - 'rule_help_stop_processing' => 'Quando você marcar essa caixa, regras posteriores deste grupo não serão executadas.', - 'rule_help_strict' => 'Nas regras estritas TODOS os gatilhos devem ser acionados para que a ação ou ações sejam executadas. Nas regras não-estritas, QUALQUER gatilho será suficiente para que a ação ou ações sejam executadas.', - 'rule_help_active' => 'Regras inativas nunca serão disparadas.', - 'stored_new_rule' => 'Armazenado a nova regra com o título ":title"', - 'deleted_rule' => 'Regra ":title" excluída', - 'store_new_rule' => 'Armazenar nova regra', - 'updated_rule' => 'Regra atualizada com o título ":title"', - 'default_rule_group_name' => 'Regras padrão', - 'default_rule_group_description' => 'Todas as suas regras, não estão em um grupo específico.', - 'trigger' => 'Disparo', - 'trigger_value' => 'Disparo no valor', - 'stop_processing_other_triggers' => 'Parar o processamento de outros gatilhos', - 'add_rule_trigger' => 'Adicionar novo disparador', - 'action' => 'Ação', - 'action_value' => 'Valor da ação', - 'stop_executing_other_actions' => 'Parar de executar outras ações', - 'add_rule_action' => 'Adicionar nova ação', - 'edit_rule' => 'Editar regra ":title"', - 'delete_rule' => 'Excluir a regra ":title"', - 'update_rule' => 'Atualizar Regra', - 'test_rule_triggers' => 'Veja transações correspondentes', - 'warning_no_matching_transactions' => 'Nenhuma transação correspondente foi encontrada.', - 'warning_no_valid_triggers' => 'Sem gatilhos válidos fornecidos.', - 'apply_rule_selection' => 'Aplicar a regra ":title" para uma seleção de suas transações', - 'apply_rule_selection_intro' => 'As regras como ":title" normalmente são aplicadas apenas a transações novas ou atualizadas, mas você pode informar o Firefly III para executá-lo em uma seleção de suas transações existentes. Isso pode ser útil quando você atualizou uma regra e você precisa que as alterações sejam aplicadas a todas as suas outras transações.', - 'include_transactions_from_accounts' => 'Incluir as transações destas contas', - 'include' => 'Incluir?', - 'applied_rule_selection' => '{0} Nenhuma transação em sua seleção foi alterada pela regra ":title".|[1] Uma transação em sua seleção foi alterada pela regra ":title".|[2,*] :count transações em sua seleção foram alteradas pela regra ":title".', - 'execute' => 'Executar', - 'apply_rule_group_selection' => 'Aplicar grupo de regras ":title" para uma seleção de suas transações', - 'apply_rule_group_selection_intro' => 'Os grupos de regras como ":title" normalmente são aplicados apenas a transações novas ou atualizadas, mas você pode informar ao Firefly III para executar todas as regras neste grupo em uma seleção de suas transações existentes. Isso pode ser útil quando você atualizou um grupo de regras e você precisa que as alterações sejam aplicadas a todas as suas outras transações.', - 'applied_rule_group_selection' => 'Grupo de regras ":title" tem sido aplicada para sua seleção.', + 'is_not_rule_trigger' => 'Não é', + 'cannot_fire_inactive_rules' => 'Você não pode executar regras inativas.', + 'show_triggers' => 'Exibir gatilhos', + 'show_actions' => 'Exibir ações', + 'rules' => 'Regras', + 'rule_name' => 'Nome da regra', + 'rule_triggers' => 'Regra dispara quando', + 'rule_actions' => 'Regra irá', + 'new_rule' => 'Nova regra', + 'new_rule_group' => 'Novo grupo de regras', + 'rule_priority_up' => 'Dar mais prioridade à regra', + 'rule_priority_down' => 'Dar à regra menos prioridade', + 'make_new_rule_group' => 'Fazer o novo grupo de regras', + 'store_new_rule_group' => 'Gravar novo grupo de regras', + 'created_new_rule_group' => 'Novo grupo de regras ":title" armazenado!', + 'updated_rule_group' => 'Grupo de regras atualizado com sucesso ":title".', + 'edit_rule_group' => 'Editar grupo de regras ":title"', + 'duplicate_rule' => 'Duplicar regra ":title"', + 'rule_copy_of' => 'Cópia de ":title"', + 'duplicated_rule' => 'Regra duplicada ":title" em ":newTitle"', + 'delete_rule_group' => 'Excluir grupo de regra ":title"', + 'deleted_rule_group' => 'Grupo de regra ":title" excluído', + 'update_rule_group' => 'Atualizar um grupo de regra', + 'no_rules_in_group' => 'Não existem regras neste grupo', + 'move_rule_group_up' => 'Subir o grupo de regras', + 'move_rule_group_down' => 'Descer grupo de regras', + 'save_rules_by_moving' => 'Salve essa regra movendo-a para outro grupo de regras:|Salve essas regras movendo-as para outro grupo de regras:', + 'make_new_rule' => 'Faça uma nova regra no grupo de regras ":title"', + 'make_new_rule_no_group' => 'Criar uma nova regra', + 'instructions_rule_from_bill' => 'Para conectar transações com sua nova fatura ":name", Firefly III pode criar uma regra que automaticamente será verificada a cada transação que você criar. Verifique os detalhes abaixo e salve a regra para que o Firefly III possa conectar automaticamente as transações a sua nova fatura.', + 'instructions_rule_from_journal' => 'Crie uma regra com base em uma de suas transações. Complete ou envie o formulário abaixo.', + 'rule_is_strict' => 'regra estrita', + 'rule_is_not_strict' => 'regra não estrita', + 'rule_help_stop_processing' => 'Quando você marcar essa caixa, regras posteriores deste grupo não serão executadas.', + 'rule_help_strict' => 'Nas regras estritas TODOS os gatilhos devem ser acionados para que a ação ou ações sejam executadas. Nas regras não-estritas, QUALQUER gatilho será suficiente para que a ação ou ações sejam executadas.', + 'rule_help_active' => 'Regras inativas nunca serão disparadas.', + 'stored_new_rule' => 'Armazenado a nova regra com o título ":title"', + 'deleted_rule' => 'Regra ":title" excluída', + 'store_new_rule' => 'Armazenar nova regra', + 'updated_rule' => 'Regra atualizada com o título ":title"', + 'default_rule_group_name' => 'Regras padrão', + 'default_rule_group_description' => 'Todas as suas regras, não estão em um grupo específico.', + 'trigger' => 'Disparo', + 'trigger_value' => 'Disparo no valor', + 'stop_processing_other_triggers' => 'Parar o processamento de outros gatilhos', + 'add_rule_trigger' => 'Adicionar novo disparador', + 'action' => 'Ação', + 'action_value' => 'Valor da ação', + 'stop_executing_other_actions' => 'Parar de executar outras ações', + 'add_rule_action' => 'Adicionar nova ação', + 'edit_rule' => 'Editar regra ":title"', + 'delete_rule' => 'Excluir a regra ":title"', + 'update_rule' => 'Atualizar Regra', + 'test_rule_triggers' => 'Veja transações correspondentes', + 'warning_no_matching_transactions' => 'Nenhuma transação correspondente foi encontrada.', + 'warning_no_valid_triggers' => 'Sem gatilhos válidos fornecidos.', + 'apply_rule_selection' => 'Aplicar a regra ":title" para uma seleção de suas transações', + 'apply_rule_selection_intro' => 'As regras como ":title" normalmente são aplicadas apenas a transações novas ou atualizadas, mas você pode informar o Firefly III para executá-lo em uma seleção de suas transações existentes. Isso pode ser útil quando você atualizou uma regra e você precisa que as alterações sejam aplicadas a todas as suas outras transações.', + 'include_transactions_from_accounts' => 'Incluir as transações destas contas', + 'include' => 'Incluir?', + 'applied_rule_selection' => '{0} Nenhuma transação em sua seleção foi alterada pela regra ":title".|[1] Uma transação em sua seleção foi alterada pela regra ":title".|[2,*] :count transações em sua seleção foram alteradas pela regra ":title".', + 'execute' => 'Executar', + 'apply_rule_group_selection' => 'Aplicar grupo de regras ":title" para uma seleção de suas transações', + 'apply_rule_group_selection_intro' => 'Os grupos de regras como ":title" normalmente são aplicados apenas a transações novas ou atualizadas, mas você pode informar ao Firefly III para executar todas as regras neste grupo em uma seleção de suas transações existentes. Isso pode ser útil quando você atualizou um grupo de regras e você precisa que as alterações sejam aplicadas a todas as suas outras transações.', + 'applied_rule_group_selection' => 'Grupo de regras ":title" tem sido aplicada para sua seleção.', // actions and triggers - 'rule_trigger_store_journal' => 'Quando uma transação é criada', - 'rule_trigger_update_journal' => 'Quando uma transação é atualizada', - 'rule_trigger_user_action' => 'Ação do usuário é ":trigger_value"', + 'rule_trigger_store_journal' => 'Quando uma transação é criada', + 'rule_trigger_update_journal' => 'Quando uma transação é atualizada', + 'rule_trigger_user_action' => 'Ação do usuário é ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Nome da conta de origem começa com..', - 'rule_trigger_source_account_starts' => 'Nome da conta de origem começa com ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'O nome da conta de origem termina com..', - 'rule_trigger_source_account_ends' => 'O nome da conta de origem termina com ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Nome da conta de origem é..', - 'rule_trigger_source_account_is' => 'Nome da conta de origem é ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Nome da conta de origem contém..', - 'rule_trigger_source_account_contains' => 'Nome da conta de origem contém ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Ou ID da conta é exatamente..', - 'rule_trigger_account_id' => 'Ou o ID da conta é exatamente :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID da conta de origem é igual a..', - 'rule_trigger_source_account_id' => 'ID da conta de origem é igual a :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID da conta de destino é igual a..', - 'rule_trigger_destination_account_id' => 'ID da conta de destino é igual a :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Ou a conta é dinheiro', - 'rule_trigger_account_is_cash' => 'Ou a conta é dinheiro', - 'rule_trigger_source_is_cash_choice' => 'Conta de origem é (dinheiro)', - 'rule_trigger_source_is_cash' => 'Conta de origem é (dinheiro)', - 'rule_trigger_destination_is_cash_choice' => 'Conta de destino é (dinheiro)', - 'rule_trigger_destination_is_cash' => 'Conta de destino é (dinheiro)', - 'rule_trigger_source_account_nr_starts_choice' => 'Número da conta de origem (IBAN) começa com..', - 'rule_trigger_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Número da conta de origem (IBAN) termina com..', - 'rule_trigger_source_account_nr_ends' => 'Número da conta de origem (IBAN) termina com ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Número da conta de origem (IBAN) é..', - 'rule_trigger_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Número da conta de origem (IBAN) contém..', - 'rule_trigger_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Nome da conta de destino começa com..', - 'rule_trigger_destination_account_starts' => 'Nome da conta de destino começa com ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Nome da conta de destino termina com..', - 'rule_trigger_destination_account_ends' => 'Nome da conta de destino termina com ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Nome da conta de destino é..', - 'rule_trigger_destination_account_is' => 'Nome da conta de destino é ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Nome da conta de destino contém..', - 'rule_trigger_destination_account_contains' => 'Nome da conta de destino contém ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Número da conta de destino (IBAN) começa com..', - 'rule_trigger_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Número da conta de destino (IBAN) termina com..', - 'rule_trigger_destination_account_nr_ends' => 'Número da conta de destino (IBAN) termina com ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Número da conta de destino (IBAN) é..', - 'rule_trigger_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Número da conta de destino (IBAN) contém..', - 'rule_trigger_destination_account_nr_contains' => 'Número da conta de destino (IBAN) contém ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transação é do tipo..', - 'rule_trigger_transaction_type' => 'Transação é do tipo ":trigger_value"', - 'rule_trigger_category_is_choice' => 'A categoria é..', - 'rule_trigger_category_is' => 'A categoria é ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Valor é menor ou igual a ..', - 'rule_trigger_amount_less' => 'Valor é menor ou igual a :trigger_value', - 'rule_trigger_amount_is_choice' => 'Quantia é..', - 'rule_trigger_amount_is' => 'Quantia é :trigger_value', - 'rule_trigger_amount_more_choice' => 'Valor é maior ou igual a..', - 'rule_trigger_amount_more' => 'Valor é maior ou igual a :trigger_value', - 'rule_trigger_description_starts_choice' => 'Descrição começa com..', - 'rule_trigger_description_starts' => 'Descrição começa com ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Descrição termina com..', - 'rule_trigger_description_ends' => 'Descrição termina com ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Descrição contém..', - 'rule_trigger_description_contains' => 'Descrição contém ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Descrição é..', - 'rule_trigger_description_is' => 'Descrição é ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Data da transação é..', - 'rule_trigger_date_on' => 'Data de transação é ":trigger_value"', - 'rule_trigger_date_before_choice' => 'A data da transação é anterior a...', - 'rule_trigger_date_before' => 'A data da transação é anterior a ":trigger_value"', - 'rule_trigger_date_after_choice' => 'A data da transação é posterior a...', - 'rule_trigger_date_after' => 'A data da transação é posterior a ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transação foi feita em..', - 'rule_trigger_created_at_on' => 'A transação foi feita em ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transação foi editada pela última vez em..', - 'rule_trigger_updated_at_on' => 'Transação foi editada pela última vez em ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'O orçamento é..', - 'rule_trigger_budget_is' => 'O orçamento é ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Qualquer tag é..', - 'rule_trigger_tag_is' => 'Qualquer tag é ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'A moeda da transação é..', - 'rule_trigger_currency_is' => 'A moeda da transação é ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'A moeda estrangeira da transação é...', - 'rule_trigger_foreign_currency_is' => 'A moeda estrangeira da transação é ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Tem pelo menos essa quantidade de anexos', - 'rule_trigger_has_attachments' => 'Tem pelo menos :trigger_value anexo(s)', - 'rule_trigger_has_no_category_choice' => 'Não tem categoria', - 'rule_trigger_has_no_category' => 'A transação não tem categoria', - 'rule_trigger_has_any_category_choice' => 'Tem uma categoria (qualquer)', - 'rule_trigger_has_any_category' => 'A transação tem uma categoria (qualquer)', - 'rule_trigger_has_no_budget_choice' => 'Não tem orçamento', - 'rule_trigger_has_no_budget' => 'A transação não possui orçamento', - 'rule_trigger_has_any_budget_choice' => 'Tem um orçamento (qualquer)', - 'rule_trigger_has_any_budget' => 'Transação tem um orçamento (qualquer)', - 'rule_trigger_has_no_bill_choice' => 'Não tem nenhuma fatura', - 'rule_trigger_has_no_bill' => 'A transação não tem nenhuma fatura', - 'rule_trigger_has_any_bill_choice' => 'Tem uma fatura (qualquer)', - 'rule_trigger_has_any_bill' => 'A transação tem uma fatura (qualquer)', - 'rule_trigger_has_no_tag_choice' => 'Não tem tag(s)', - 'rule_trigger_has_no_tag' => 'A transação não tem tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Tem uma ou mais tags (qualquer)', - 'rule_trigger_has_any_tag' => 'A transação tem uma ou mais tags (qualquer)', - 'rule_trigger_any_notes_choice' => 'Tem notas (qualquer)', - 'rule_trigger_any_notes' => 'A transação tem notas (qualquer)', - 'rule_trigger_no_notes_choice' => 'Não tem notas', - 'rule_trigger_no_notes' => 'A transação não tem notas', - 'rule_trigger_notes_is_choice' => 'As notas são..', - 'rule_trigger_notes_is' => 'As notas são ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'As notas contêm..', - 'rule_trigger_notes_contains' => 'As notas contêm ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'As notas começam com..', - 'rule_trigger_notes_starts' => 'As notas começam com ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'As notas terminam com..', - 'rule_trigger_notes_ends' => 'Notas terminam com ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Fatura é..', - 'rule_trigger_bill_is' => 'Fatura é ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'ID externo é..', - 'rule_trigger_external_id_is' => 'ID externo é ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Referência interna é..', - 'rule_trigger_internal_reference_is' => 'Referência interna é ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID do livro de transação é..', - 'rule_trigger_journal_id' => 'ID do livro de transação é ":trigger_value"', - 'rule_trigger_any_external_url' => 'A transação tem uma URL externa (qualquer)', - 'rule_trigger_any_external_url_choice' => 'A transação tem uma URL externa (qualquer)', - 'rule_trigger_any_external_id' => 'A transação tem um ID externo (qualquer)', - 'rule_trigger_any_external_id_choice' => 'A transação tem um ID externo (qualquer)', - 'rule_trigger_no_external_url_choice' => 'A transação não tem uma URL externa', - 'rule_trigger_no_external_url' => 'A transação não tem URL externa', - 'rule_trigger_no_external_id_choice' => 'A transação não tem um ID externo', - 'rule_trigger_no_external_id' => 'A transação não tem um ID externo', - 'rule_trigger_id_choice' => 'O identificador da transação é..', - 'rule_trigger_id' => 'O identificador da transação é ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT é..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT é ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Nome da conta de origem começa com..', + 'rule_trigger_source_account_starts' => 'Nome da conta de origem começa com ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'O nome da conta de origem termina com..', + 'rule_trigger_source_account_ends' => 'O nome da conta de origem termina com ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Nome da conta de origem é..', + 'rule_trigger_source_account_is' => 'Nome da conta de origem é ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Nome da conta de origem contém..', + 'rule_trigger_source_account_contains' => 'Nome da conta de origem contém ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Ou ID da conta é exatamente..', + 'rule_trigger_account_id' => 'Ou o ID da conta é exatamente :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID da conta de origem é igual a..', + 'rule_trigger_source_account_id' => 'ID da conta de origem é igual a :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID da conta de destino é igual a..', + 'rule_trigger_destination_account_id' => 'ID da conta de destino é igual a :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Ou a conta é dinheiro', + 'rule_trigger_account_is_cash' => 'Ou a conta é dinheiro', + 'rule_trigger_source_is_cash_choice' => 'Conta de origem é (dinheiro)', + 'rule_trigger_source_is_cash' => 'Conta de origem é (dinheiro)', + 'rule_trigger_destination_is_cash_choice' => 'Conta de destino é (dinheiro)', + 'rule_trigger_destination_is_cash' => 'Conta de destino é (dinheiro)', + 'rule_trigger_source_account_nr_starts_choice' => 'Número da conta de origem (IBAN) começa com..', + 'rule_trigger_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Número da conta de origem (IBAN) termina com..', + 'rule_trigger_source_account_nr_ends' => 'Número da conta de origem (IBAN) termina com ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Número da conta de origem (IBAN) é..', + 'rule_trigger_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Número da conta de origem (IBAN) contém..', + 'rule_trigger_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Nome da conta de destino começa com..', + 'rule_trigger_destination_account_starts' => 'Nome da conta de destino começa com ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Nome da conta de destino termina com..', + 'rule_trigger_destination_account_ends' => 'Nome da conta de destino termina com ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Nome da conta de destino é..', + 'rule_trigger_destination_account_is' => 'Nome da conta de destino é ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Nome da conta de destino contém..', + 'rule_trigger_destination_account_contains' => 'Nome da conta de destino contém ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Número da conta de destino (IBAN) começa com..', + 'rule_trigger_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Número da conta de destino (IBAN) termina com..', + 'rule_trigger_destination_account_nr_ends' => 'Número da conta de destino (IBAN) termina com ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Número da conta de destino (IBAN) é..', + 'rule_trigger_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Número da conta de destino (IBAN) contém..', + 'rule_trigger_destination_account_nr_contains' => 'Número da conta de destino (IBAN) contém ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transação é do tipo..', + 'rule_trigger_transaction_type' => 'Transação é do tipo ":trigger_value"', + 'rule_trigger_category_is_choice' => 'A categoria é..', + 'rule_trigger_category_is' => 'A categoria é ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Valor é menor ou igual a ..', + 'rule_trigger_amount_less' => 'Valor é menor ou igual a :trigger_value', + 'rule_trigger_amount_is_choice' => 'Quantia é..', + 'rule_trigger_amount_is' => 'Quantia é :trigger_value', + 'rule_trigger_amount_more_choice' => 'Valor é maior ou igual a..', + 'rule_trigger_amount_more' => 'Valor é maior ou igual a :trigger_value', + 'rule_trigger_description_starts_choice' => 'Descrição começa com..', + 'rule_trigger_description_starts' => 'Descrição começa com ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Descrição termina com..', + 'rule_trigger_description_ends' => 'Descrição termina com ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Descrição contém..', + 'rule_trigger_description_contains' => 'Descrição contém ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Descrição é..', + 'rule_trigger_description_is' => 'Descrição é ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Data da transação é..', + 'rule_trigger_date_on' => 'Data de transação é ":trigger_value"', + 'rule_trigger_date_before_choice' => 'A data da transação é anterior a...', + 'rule_trigger_date_before' => 'A data da transação é anterior a ":trigger_value"', + 'rule_trigger_date_after_choice' => 'A data da transação é posterior a...', + 'rule_trigger_date_after' => 'A data da transação é posterior a ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transação foi feita em..', + 'rule_trigger_created_at_on' => 'A transação foi feita em ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transação foi editada pela última vez em..', + 'rule_trigger_updated_at_on' => 'Transação foi editada pela última vez em ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'O orçamento é..', + 'rule_trigger_budget_is' => 'O orçamento é ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Qualquer tag é..', + 'rule_trigger_tag_is' => 'Qualquer tag é ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'A moeda da transação é..', + 'rule_trigger_currency_is' => 'A moeda da transação é ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'A moeda estrangeira da transação é...', + 'rule_trigger_foreign_currency_is' => 'A moeda estrangeira da transação é ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Tem pelo menos essa quantidade de anexos', + 'rule_trigger_has_attachments' => 'Tem pelo menos :trigger_value anexo(s)', + 'rule_trigger_has_no_category_choice' => 'Não tem categoria', + 'rule_trigger_has_no_category' => 'A transação não tem categoria', + 'rule_trigger_has_any_category_choice' => 'Tem uma categoria (qualquer)', + 'rule_trigger_has_any_category' => 'A transação tem uma categoria (qualquer)', + 'rule_trigger_has_no_budget_choice' => 'Não tem orçamento', + 'rule_trigger_has_no_budget' => 'A transação não possui orçamento', + 'rule_trigger_has_any_budget_choice' => 'Tem um orçamento (qualquer)', + 'rule_trigger_has_any_budget' => 'Transação tem um orçamento (qualquer)', + 'rule_trigger_has_no_bill_choice' => 'Não tem nenhuma fatura', + 'rule_trigger_has_no_bill' => 'A transação não tem nenhuma fatura', + 'rule_trigger_has_any_bill_choice' => 'Tem uma fatura (qualquer)', + 'rule_trigger_has_any_bill' => 'A transação tem uma fatura (qualquer)', + 'rule_trigger_has_no_tag_choice' => 'Não tem tag(s)', + 'rule_trigger_has_no_tag' => 'A transação não tem tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Tem uma ou mais tags (qualquer)', + 'rule_trigger_has_any_tag' => 'A transação tem uma ou mais tags (qualquer)', + 'rule_trigger_any_notes_choice' => 'Tem notas (qualquer)', + 'rule_trigger_any_notes' => 'A transação tem notas (qualquer)', + 'rule_trigger_no_notes_choice' => 'Não tem notas', + 'rule_trigger_no_notes' => 'A transação não tem notas', + 'rule_trigger_notes_is_choice' => 'As notas são..', + 'rule_trigger_notes_is' => 'As notas são ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'As notas contêm..', + 'rule_trigger_notes_contains' => 'As notas contêm ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'As notas começam com..', + 'rule_trigger_notes_starts' => 'As notas começam com ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'As notas terminam com..', + 'rule_trigger_notes_ends' => 'Notas terminam com ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Fatura é..', + 'rule_trigger_bill_is' => 'Fatura é ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'ID externo é..', + 'rule_trigger_external_id_is' => 'ID externo é ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Referência interna é..', + 'rule_trigger_internal_reference_is' => 'Referência interna é ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID do livro de transação é..', + 'rule_trigger_journal_id' => 'ID do livro de transação é ":trigger_value"', + 'rule_trigger_any_external_url' => 'A transação tem uma URL externa (qualquer)', + 'rule_trigger_any_external_url_choice' => 'A transação tem uma URL externa (qualquer)', + 'rule_trigger_any_external_id' => 'A transação tem um ID externo (qualquer)', + 'rule_trigger_any_external_id_choice' => 'A transação tem um ID externo (qualquer)', + 'rule_trigger_no_external_url_choice' => 'A transação não tem uma URL externa', + 'rule_trigger_no_external_url' => 'A transação não tem URL externa', + 'rule_trigger_no_external_id_choice' => 'A transação não tem um ID externo', + 'rule_trigger_no_external_id' => 'A transação não tem um ID externo', + 'rule_trigger_id_choice' => 'O identificador da transação é..', + 'rule_trigger_id' => 'O identificador da transação é ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT é..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT é ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Ação do usuário é ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Nenhuma tag é..', - 'rule_trigger_tag_is_not' => 'Nenhuma tag é ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Ou a conta é exatamente..', - 'rule_trigger_account_is' => 'Ou a conta é exatamente ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Ou a conta contém..', - 'rule_trigger_account_contains' => 'Ou a conta contém ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Ou a conta termina com..', - 'rule_trigger_account_ends' => 'Ou a conta termina com ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Ou a conta começa com..', - 'rule_trigger_account_starts' => 'Ou a conta começa com ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Ou número da conta / IBAN é..', - 'rule_trigger_account_nr_is' => 'Ou número da conta / IBAN é ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Ou número da conta / IBAN contém..', - 'rule_trigger_account_nr_contains' => 'Ou número da conta / IBAN contém ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Ou número da conta / IBAN termina com..', - 'rule_trigger_account_nr_ends' => 'Ou número da conta / IBAN termina com ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Ou número da conta / IBAN começa com..', - 'rule_trigger_account_nr_starts' => 'Ou número da conta / IBAN começa com ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'A categoria contém..', - 'rule_trigger_category_contains' => 'Categoria contém ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Categoria termina com..', - 'rule_trigger_category_ends' => 'Categoria termina com ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Categoria começa com..', - 'rule_trigger_category_starts' => 'Categoria começa com ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'O orçamento contém..', - 'rule_trigger_budget_contains' => 'O orçamento contém ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'O orçamento termina com..', - 'rule_trigger_budget_ends' => 'Orçamento termina com ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'O orçamento começa com..', - 'rule_trigger_budget_starts' => 'Orçamento começa com ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'A fatura contém..', - 'rule_trigger_bill_contains' => 'Fatura contém ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Fatura termina com..', - 'rule_trigger_bill_ends' => 'Fatura termina com ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Fatura começa com..', - 'rule_trigger_bill_starts' => 'Fatura começa com ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'ID Externo contém..', - 'rule_trigger_external_id_contains' => 'ID Externo contém ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'ID externo termina com..', - 'rule_trigger_external_id_ends' => 'ID Externo termina com ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'ID externo começa com..', - 'rule_trigger_external_id_starts' => 'ID Externo começa com ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Referência interna contém..', - 'rule_trigger_internal_reference_contains' => 'Referência interna contém ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Referência interna termina com..', - 'rule_trigger_internal_reference_ends' => 'Referência interna termina com ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Referência interna começa com..', - 'rule_trigger_internal_reference_starts' => 'Referência interna começa com ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'URL externa é..', - 'rule_trigger_external_url_is' => 'URL externa é ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'URL externa contém..', - 'rule_trigger_external_url_contains' => 'URL externa contém ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'URL externa termina com..', - 'rule_trigger_external_url_ends' => 'URL externa termina com ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'URL externa começa com..', - 'rule_trigger_external_url_starts' => 'URL externa começa com ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Não há anexos', - 'rule_trigger_has_no_attachments' => 'A transação não tem anexos', - 'rule_trigger_recurrence_id_choice' => 'O ID da transação recorrente é..', - 'rule_trigger_recurrence_id' => 'ID da transação recorrente é ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Data de juros é em..', - 'rule_trigger_interest_date_on' => 'Data de juros é em ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Data de juros é anterior a..', - 'rule_trigger_interest_date_before' => 'Data de juros é antes de ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Data de juros é após..', - 'rule_trigger_interest_date_after' => 'Data de juros é após ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Data de lançamento é em..', - 'rule_trigger_book_date_on' => 'Data de lançamento é em ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Data de lançamento é antes de..', - 'rule_trigger_book_date_before' => 'Data de lançamento é antes de ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Data de lançamento é após..', - 'rule_trigger_book_date_after' => 'Data de lançamento é após ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Data de processamento é em..', - 'rule_trigger_process_date_on' => 'Data de processamento é ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Data de processamento é antes de..', - 'rule_trigger_process_date_before' => 'Data de processamento é antes de ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Data de processamento é após..', - 'rule_trigger_process_date_after' => 'Data de processamento é após ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Data de vencimento é em..', - 'rule_trigger_due_date_on' => 'Data de vencimento é em ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'A data de vencimento é antes de..', - 'rule_trigger_due_date_before' => 'Data de vencimento é antes de ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Data de vencimento é após..', - 'rule_trigger_due_date_after' => 'Data de vencimento é após ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Data de pagamento é em..', - 'rule_trigger_payment_date_on' => 'Data do pagamento é em ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Data de pagamento é anterior a..', - 'rule_trigger_payment_date_before' => 'Data do pagamento é antes de ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Data de pagamento é depois de..', - 'rule_trigger_payment_date_after' => 'Data do pagamento é após ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Data da fatura é em..', - 'rule_trigger_invoice_date_on' => 'A data da fatura é em ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Data da fatura é antes de..', - 'rule_trigger_invoice_date_before' => 'Data da fatura é antes de ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Data da fatura é depois de..', - 'rule_trigger_invoice_date_after' => 'Data da fatura é depois de ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'A transação foi criada antes de..', - 'rule_trigger_created_at_before' => 'A transação foi criada antes de ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'A transação foi criada depois de..', - 'rule_trigger_created_at_after' => 'A transação foi criada após ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'A transação foi atualizada pela última vez..', - 'rule_trigger_updated_at_before' => 'A transação foi atualizada pela última vez antes de ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'A transação foi atualizada pela última vez depois de..', - 'rule_trigger_updated_at_after' => 'A transação foi atualizada pela última vez após ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Quantidade em moeda estrangeira é exatamente..', - 'rule_trigger_foreign_amount_is' => 'Quantidade em moeda estrangeira é exatamente ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Quantidade em moeda estrangeira é menor que..', - 'rule_trigger_foreign_amount_less' => 'Quantia em moeda estrangeira é inferior a ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Quantidade em moeda estrangeira é maior que..', - 'rule_trigger_foreign_amount_more' => 'Quantia em moeda estrangeira é maior que ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Qualquer nome do anexo é..', - 'rule_trigger_attachment_name_is' => 'Qualquer nome de anexo é ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Qualquer nome do anexo contém..', - 'rule_trigger_attachment_name_contains' => 'Qualquer nome do anexo contém ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Qualquer nome do anexo começa com..', - 'rule_trigger_attachment_name_starts' => 'Qualquer nome de anexo começa com ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Qualquer nome de anexo termina com..', - 'rule_trigger_attachment_name_ends' => 'Qualquer nome de anexo termina com ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Qualquer nota de anexo é..', - 'rule_trigger_attachment_notes_are' => 'Qualquer nota de anexo é ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Qualquer nota de anexo contém..', - 'rule_trigger_attachment_notes_contains' => 'Qualquer nota de anexo contém ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Qualquer nota de anexo começa com..', - 'rule_trigger_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Qualquer nota de anexo termina com..', - 'rule_trigger_attachment_notes_ends' => 'Qualquer nota de anexo termina com ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transação reconciliada', - 'rule_trigger_reconciled' => 'Transação reconciliada', - 'rule_trigger_exists_choice' => 'Qualquer transação corresponde(!)', - 'rule_trigger_exists' => 'Qualquer transação corresponde', + 'rule_trigger_user_action_choice' => 'Ação do usuário é ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Nenhuma tag é..', + 'rule_trigger_tag_is_not' => 'Nenhuma tag é ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Ou a conta é exatamente..', + 'rule_trigger_account_is' => 'Ou a conta é exatamente ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Ou a conta contém..', + 'rule_trigger_account_contains' => 'Ou a conta contém ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Ou a conta termina com..', + 'rule_trigger_account_ends' => 'Ou a conta termina com ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Ou a conta começa com..', + 'rule_trigger_account_starts' => 'Ou a conta começa com ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Ou número da conta / IBAN é..', + 'rule_trigger_account_nr_is' => 'Ou número da conta / IBAN é ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Ou número da conta / IBAN contém..', + 'rule_trigger_account_nr_contains' => 'Ou número da conta / IBAN contém ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Ou número da conta / IBAN termina com..', + 'rule_trigger_account_nr_ends' => 'Ou número da conta / IBAN termina com ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Ou número da conta / IBAN começa com..', + 'rule_trigger_account_nr_starts' => 'Ou número da conta / IBAN começa com ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'A categoria contém..', + 'rule_trigger_category_contains' => 'Categoria contém ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Categoria termina com..', + 'rule_trigger_category_ends' => 'Categoria termina com ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Categoria começa com..', + 'rule_trigger_category_starts' => 'Categoria começa com ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'O orçamento contém..', + 'rule_trigger_budget_contains' => 'O orçamento contém ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'O orçamento termina com..', + 'rule_trigger_budget_ends' => 'Orçamento termina com ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'O orçamento começa com..', + 'rule_trigger_budget_starts' => 'Orçamento começa com ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'A fatura contém..', + 'rule_trigger_bill_contains' => 'Fatura contém ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Fatura termina com..', + 'rule_trigger_bill_ends' => 'Fatura termina com ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Fatura começa com..', + 'rule_trigger_bill_starts' => 'Fatura começa com ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'ID Externo contém..', + 'rule_trigger_external_id_contains' => 'ID Externo contém ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'ID externo termina com..', + 'rule_trigger_external_id_ends' => 'ID Externo termina com ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'ID externo começa com..', + 'rule_trigger_external_id_starts' => 'ID Externo começa com ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Referência interna contém..', + 'rule_trigger_internal_reference_contains' => 'Referência interna contém ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Referência interna termina com..', + 'rule_trigger_internal_reference_ends' => 'Referência interna termina com ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Referência interna começa com..', + 'rule_trigger_internal_reference_starts' => 'Referência interna começa com ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'URL externa é..', + 'rule_trigger_external_url_is' => 'URL externa é ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'URL externa contém..', + 'rule_trigger_external_url_contains' => 'URL externa contém ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'URL externa termina com..', + 'rule_trigger_external_url_ends' => 'URL externa termina com ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'URL externa começa com..', + 'rule_trigger_external_url_starts' => 'URL externa começa com ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Não há anexos', + 'rule_trigger_has_no_attachments' => 'A transação não tem anexos', + 'rule_trigger_recurrence_id_choice' => 'O ID da transação recorrente é..', + 'rule_trigger_recurrence_id' => 'ID da transação recorrente é ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Data de juros é em..', + 'rule_trigger_interest_date_on' => 'Data de juros é em ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Data de juros é anterior a..', + 'rule_trigger_interest_date_before' => 'Data de juros é antes de ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Data de juros é após..', + 'rule_trigger_interest_date_after' => 'Data de juros é após ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Data de lançamento é em..', + 'rule_trigger_book_date_on' => 'Data de lançamento é em ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Data de lançamento é antes de..', + 'rule_trigger_book_date_before' => 'Data de lançamento é antes de ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Data de lançamento é após..', + 'rule_trigger_book_date_after' => 'Data de lançamento é após ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Data de processamento é em..', + 'rule_trigger_process_date_on' => 'Data de processamento é ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Data de processamento é antes de..', + 'rule_trigger_process_date_before' => 'Data de processamento é antes de ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Data de processamento é após..', + 'rule_trigger_process_date_after' => 'Data de processamento é após ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Data de vencimento é em..', + 'rule_trigger_due_date_on' => 'Data de vencimento é em ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'A data de vencimento é antes de..', + 'rule_trigger_due_date_before' => 'Data de vencimento é antes de ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Data de vencimento é após..', + 'rule_trigger_due_date_after' => 'Data de vencimento é após ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Data de pagamento é em..', + 'rule_trigger_payment_date_on' => 'Data do pagamento é em ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Data de pagamento é anterior a..', + 'rule_trigger_payment_date_before' => 'Data do pagamento é antes de ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Data de pagamento é depois de..', + 'rule_trigger_payment_date_after' => 'Data do pagamento é após ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Data da fatura é em..', + 'rule_trigger_invoice_date_on' => 'A data da fatura é em ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Data da fatura é antes de..', + 'rule_trigger_invoice_date_before' => 'Data da fatura é antes de ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Data da fatura é depois de..', + 'rule_trigger_invoice_date_after' => 'Data da fatura é depois de ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'A transação foi criada antes de..', + 'rule_trigger_created_at_before' => 'A transação foi criada antes de ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'A transação foi criada depois de..', + 'rule_trigger_created_at_after' => 'A transação foi criada após ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'A transação foi atualizada pela última vez..', + 'rule_trigger_updated_at_before' => 'A transação foi atualizada pela última vez antes de ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'A transação foi atualizada pela última vez depois de..', + 'rule_trigger_updated_at_after' => 'A transação foi atualizada pela última vez após ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Quantidade em moeda estrangeira é exatamente..', + 'rule_trigger_foreign_amount_is' => 'Quantidade em moeda estrangeira é exatamente ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Quantidade em moeda estrangeira é menor que..', + 'rule_trigger_foreign_amount_less' => 'Quantia em moeda estrangeira é inferior a ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Quantidade em moeda estrangeira é maior que..', + 'rule_trigger_foreign_amount_more' => 'Quantia em moeda estrangeira é maior que ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Qualquer nome do anexo é..', + 'rule_trigger_attachment_name_is' => 'Qualquer nome de anexo é ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Qualquer nome do anexo contém..', + 'rule_trigger_attachment_name_contains' => 'Qualquer nome do anexo contém ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Qualquer nome do anexo começa com..', + 'rule_trigger_attachment_name_starts' => 'Qualquer nome de anexo começa com ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Qualquer nome de anexo termina com..', + 'rule_trigger_attachment_name_ends' => 'Qualquer nome de anexo termina com ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Qualquer nota de anexo é..', + 'rule_trigger_attachment_notes_are' => 'Qualquer nota de anexo é ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Qualquer nota de anexo contém..', + 'rule_trigger_attachment_notes_contains' => 'Qualquer nota de anexo contém ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Qualquer nota de anexo começa com..', + 'rule_trigger_attachment_notes_starts' => 'Qualquer nota de anexo começa com ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Qualquer nota de anexo termina com..', + 'rule_trigger_attachment_notes_ends' => 'Qualquer nota de anexo termina com ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transação reconciliada', + 'rule_trigger_reconciled' => 'Transação reconciliada', + 'rule_trigger_exists_choice' => 'Qualquer transação corresponde(!)', + 'rule_trigger_exists' => 'Qualquer transação corresponde', // more values for new types: - 'rule_trigger_not_account_id' => 'ID da conta não é ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'ID da conta de origem não é ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'ID da conta de destino não é ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Tipo de transação não é ":trigger_value"', - 'rule_trigger_not_tag_is' => 'A tag não é ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'A tag é ":trigger_value"', - 'rule_trigger_not_description_is' => 'Descrição não é ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Descrição não contém', - 'rule_trigger_not_description_ends' => 'Descrição não termina com ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Descrição não começa com ":trigger_value"', - 'rule_trigger_not_notes_is' => 'As notas não são ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'As notas não contêm ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'As notas não terminam em ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'As notas não começam com ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Conta de origem não é ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Conta de origem não contém ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Conta de origem não termina em ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Conta de origem não começa com ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Número da conta de origem / IBAN não é ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Número da conta de origem / IBAN não contém ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Número da conta de origem / IBAN não termina em ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Número da conta de origem / IBAN não começa com ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Conta de destino não é ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Conta de destino não contém ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Conta de destino não termina em ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Conta de destino não começa com ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Número da conta de destino / IBAN não é ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Número da conta de destino / IBAN não contém ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Número da conta de destino / IBAN não termina em ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Número da conta de destino / IBAN não começa com ":trigger_value"', - 'rule_trigger_not_account_is' => 'Nenhuma conta é ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Nenhuma conta contém ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Nenhuma conta termina em ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Nenhuma conta começa com ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Nenhum número de conta / IBAN é ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Nenhum número de conta / IBAN contém ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Nenhum número de conta / IBAN termina em ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Nenhum número de conta / IBAN começa com ":trigger_value"', - 'rule_trigger_not_category_is' => 'Categoria não é ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Categoria não contém ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Categoria não termina em ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Categoria não começa com ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Orçamento não é ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Orçamento não contém ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Orçamento não termina em ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Orçamento não começa com ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Fatura não é ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Fatura não contém ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Fatura não termina em ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Fatura não termina com ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'ID Externo não é ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'ID Externo não contém ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'ID Externo não termina em ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'ID Externo não inicia com ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Referência interna não é ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Referência interna não contém ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Referência interna não termina em ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Referência interna não começa com ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'URL externa não é ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'URL externa não contém ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'URL externa não termina em ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'URL externa não inicia com ":trigger_value"', - 'rule_trigger_not_currency_is' => 'A moeda não é ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'A moeda estrangeira não é ":trigger_value"', - 'rule_trigger_not_id' => 'O identificador da transação não é ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Identificador do livro de transação não é ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Identificador recorrente não é ":trigger_value"', - 'rule_trigger_not_date_on' => 'A data não está em ":trigger_value"', - 'rule_trigger_not_date_before' => 'A data não está antes de ":trigger_value"', - 'rule_trigger_not_date_after' => 'A data não está após ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Data de juros não é em ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Data de juros não é anterior a ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Data de juros não é posterior a ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Data de lançamento não é em ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Data de lançamento não é antes de ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Data de lançamento não é após ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Data de processamento não é em ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Data de processamento não é antes de ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Data de processamento não é após ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Data de vencimento não é em ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Data de vencimento não é antes de ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Data de vencimento não é após ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Data do pagamento não é em ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Data do pagamento não é antes de ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Data do pagamento não é após ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Data da fatura não é em ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Data da fatura não é antes de ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Data da fatura não é depois de ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'A transação não foi criada em ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'A transação não foi criada antes de ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'A transação não foi criada depois de ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'A transação não foi atualizada em ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'A transação não foi atualizada antes de ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'A transação não foi atualizada depois de ":trigger_value"', - 'rule_trigger_not_amount_is' => 'O valor da transação não é ":trigger_value"', - 'rule_trigger_not_amount_less' => 'O valor da transação é maior que ":trigger_value"', - 'rule_trigger_not_amount_more' => 'O valor da transação é menor que ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'O valor da transação estrangeira não é ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'O valor da transação estrangeira é maior que ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'O valor da transação estrangeira é menor que ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Nenhum anexo é nomeado ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Nenhum nome do anexo contém ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Nenhum nome de anexo começa com ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Nenhum nome do anexo termina em ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Nenhuma nota de anexo é ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Nenhuma nota de anexo contém ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Nenhuma nota de anexo começa com ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Nenhuma nota de anexo termina em ":trigger_value" "', - 'rule_trigger_not_reconciled' => 'Transação não está reconciliada', - 'rule_trigger_not_exists' => 'Transação não existe', - 'rule_trigger_not_has_attachments' => 'A transação não tem anexos', - 'rule_trigger_not_has_any_category' => 'A transação não tem categoria', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'A transação não tem nenhuma fatura', - 'rule_trigger_not_has_any_tag' => 'A transação não tem tags', - 'rule_trigger_not_any_notes' => 'A transação não tem notas', - 'rule_trigger_not_any_external_url' => 'A transação não tem URL externa', - 'rule_trigger_not_has_no_attachments' => 'Transação tem anexo (qualquer)', - 'rule_trigger_not_has_no_category' => 'A transação tem uma categoria (qualquer)', - 'rule_trigger_not_has_no_budget' => 'A transação tem um orçamento (qualquer)', - 'rule_trigger_not_has_no_bill' => 'A transação tem uma fatura (qualquer)', - 'rule_trigger_not_has_no_tag' => 'A transação tem uma tag (qualquer)', - 'rule_trigger_not_no_notes' => 'A transação tem qualquer nota', - 'rule_trigger_not_no_external_url' => 'A transação tem uma URL externa', - 'rule_trigger_not_source_is_cash' => 'Conta de origem não é uma conta em dinheiro', - 'rule_trigger_not_destination_is_cash' => 'Conta de destino não é uma conta em dinheiro', - 'rule_trigger_not_account_is_cash' => 'Nenhuma conta é uma conta em dinheiro', + 'rule_trigger_not_account_id' => 'ID da conta não é ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'ID da conta de origem não é ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'ID da conta de destino não é ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Tipo de transação não é ":trigger_value"', + 'rule_trigger_not_tag_is' => 'A tag não é ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'A tag é ":trigger_value"', + 'rule_trigger_not_description_is' => 'Descrição não é ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Descrição não contém', + 'rule_trigger_not_description_ends' => 'Descrição não termina com ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Descrição não começa com ":trigger_value"', + 'rule_trigger_not_notes_is' => 'As notas não são ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'As notas não contêm ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'As notas não terminam em ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'As notas não começam com ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Conta de origem não é ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Conta de origem não contém ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Conta de origem não termina em ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Conta de origem não começa com ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Número da conta de origem / IBAN não é ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Número da conta de origem / IBAN não contém ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Número da conta de origem / IBAN não termina em ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Número da conta de origem / IBAN não começa com ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Conta de destino não é ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Conta de destino não contém ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Conta de destino não termina em ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Conta de destino não começa com ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Número da conta de destino / IBAN não é ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Número da conta de destino / IBAN não contém ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Número da conta de destino / IBAN não termina em ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Número da conta de destino / IBAN não começa com ":trigger_value"', + 'rule_trigger_not_account_is' => 'Nenhuma conta é ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Nenhuma conta contém ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Nenhuma conta termina em ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Nenhuma conta começa com ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Nenhum número de conta / IBAN é ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Nenhum número de conta / IBAN contém ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Nenhum número de conta / IBAN termina em ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Nenhum número de conta / IBAN começa com ":trigger_value"', + 'rule_trigger_not_category_is' => 'Categoria não é ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Categoria não contém ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Categoria não termina em ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Categoria não começa com ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Orçamento não é ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Orçamento não contém ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Orçamento não termina em ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Orçamento não começa com ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Fatura não é ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Fatura não contém ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Fatura não termina em ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Fatura não termina com ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'ID Externo não é ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'ID Externo não contém ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'ID Externo não termina em ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'ID Externo não inicia com ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Referência interna não é ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Referência interna não contém ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Referência interna não termina em ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Referência interna não começa com ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'URL externa não é ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'URL externa não contém ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'URL externa não termina em ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'URL externa não inicia com ":trigger_value"', + 'rule_trigger_not_currency_is' => 'A moeda não é ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'A moeda estrangeira não é ":trigger_value"', + 'rule_trigger_not_id' => 'O identificador da transação não é ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Identificador do livro de transação não é ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Identificador recorrente não é ":trigger_value"', + 'rule_trigger_not_date_on' => 'A data não está em ":trigger_value"', + 'rule_trigger_not_date_before' => 'A data não está antes de ":trigger_value"', + 'rule_trigger_not_date_after' => 'A data não está após ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Data de juros não é em ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Data de juros não é anterior a ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Data de juros não é posterior a ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Data de lançamento não é em ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Data de lançamento não é antes de ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Data de lançamento não é após ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Data de processamento não é em ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Data de processamento não é antes de ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Data de processamento não é após ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Data de vencimento não é em ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Data de vencimento não é antes de ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Data de vencimento não é após ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Data do pagamento não é em ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Data do pagamento não é antes de ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Data do pagamento não é após ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Data da fatura não é em ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Data da fatura não é antes de ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Data da fatura não é depois de ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'A transação não foi criada em ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'A transação não foi criada antes de ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'A transação não foi criada depois de ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'A transação não foi atualizada em ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'A transação não foi atualizada antes de ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'A transação não foi atualizada depois de ":trigger_value"', + 'rule_trigger_not_amount_is' => 'O valor da transação não é ":trigger_value"', + 'rule_trigger_not_amount_less' => 'O valor da transação é maior que ":trigger_value"', + 'rule_trigger_not_amount_more' => 'O valor da transação é menor que ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'O valor da transação estrangeira não é ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'O valor da transação estrangeira é maior que ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'O valor da transação estrangeira é menor que ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Nenhum anexo é nomeado ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Nenhum nome do anexo contém ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Nenhum nome de anexo começa com ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Nenhum nome do anexo termina em ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Nenhuma nota de anexo é ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Nenhuma nota de anexo contém ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Nenhuma nota de anexo começa com ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Nenhuma nota de anexo termina em ":trigger_value" "', + 'rule_trigger_not_reconciled' => 'Transação não está reconciliada', + 'rule_trigger_not_exists' => 'Transação não existe', + 'rule_trigger_not_has_attachments' => 'A transação não tem anexos', + 'rule_trigger_not_has_any_category' => 'A transação não tem categoria', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'A transação não tem nenhuma fatura', + 'rule_trigger_not_has_any_tag' => 'A transação não tem tags', + 'rule_trigger_not_any_notes' => 'A transação não tem notas', + 'rule_trigger_not_any_external_url' => 'A transação não tem URL externa', + 'rule_trigger_not_has_no_attachments' => 'Transação tem anexo (qualquer)', + 'rule_trigger_not_has_no_category' => 'A transação tem uma categoria (qualquer)', + 'rule_trigger_not_has_no_budget' => 'A transação tem um orçamento (qualquer)', + 'rule_trigger_not_has_no_bill' => 'A transação tem uma fatura (qualquer)', + 'rule_trigger_not_has_no_tag' => 'A transação tem uma tag (qualquer)', + 'rule_trigger_not_no_notes' => 'A transação tem qualquer nota', + 'rule_trigger_not_no_external_url' => 'A transação tem uma URL externa', + 'rule_trigger_not_source_is_cash' => 'Conta de origem não é uma conta em dinheiro', + 'rule_trigger_not_destination_is_cash' => 'Conta de destino não é uma conta em dinheiro', + 'rule_trigger_not_account_is_cash' => 'Nenhuma conta é uma conta em dinheiro', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'EXCLUIR transação(!)', - 'rule_action_delete_transaction' => 'EXCLUIR transação(!)', - 'rule_action_set_category' => 'Definir categoria para ":action_value"', - 'rule_action_clear_category' => 'Limpar categoria', - 'rule_action_set_budget' => 'Definir orçamento para ":action_value"', - 'rule_action_clear_budget' => 'Limpar orçamento', - 'rule_action_add_tag' => 'Adicionar tag ":action_value"', - 'rule_action_remove_tag' => 'Remover tag ":action_value"', - 'rule_action_remove_all_tags' => 'Remover todas as tags', - 'rule_action_set_description' => 'Definir descrição para ":action_value"', - 'rule_action_append_description' => 'Acrescentar a descrição com ":action_value"', - 'rule_action_prepend_description' => 'Preceder a descrição com ":action_value"', - 'rule_action_set_category_choice' => 'Definir a categoria para ..', - 'rule_action_clear_category_choice' => 'Limpar qualquer categoria', - 'rule_action_set_budget_choice' => 'Definir orçamento para ..', - 'rule_action_clear_budget_choice' => 'Limpar qualquer orçamento', - 'rule_action_add_tag_choice' => 'Adicionar tag ..', - 'rule_action_remove_tag_choice' => 'Remover tag ..', - 'rule_action_remove_all_tags_choice' => 'Remover todas as tags', - 'rule_action_set_description_choice' => 'Definir descrição para ..', - 'rule_action_update_piggy_choice' => 'Adicionar / remover o valor da transação no cofrinho ..', - 'rule_action_update_piggy' => 'Adicionar / remover o valor da transação no cofrinho ":action_value"', - 'rule_action_append_description_choice' => 'Adicionar descrição com ..', - 'rule_action_prepend_description_choice' => 'Adicionar (ao começo) descrição com ..', - 'rule_action_set_source_account_choice' => 'Definir a conta de origem para ..', - 'rule_action_set_source_account' => 'Definir a conta de origem para :action_value', - 'rule_action_set_destination_account_choice' => 'Definir a conta de destino para ..', - 'rule_action_set_destination_account' => 'Definir a conta de destino :action_value', - 'rule_action_append_notes_choice' => 'Adicionar notas com ..', - 'rule_action_append_notes' => 'Anexar notas com ":action_value"', - 'rule_action_prepend_notes_choice' => 'Adicionar (ao começo) notas com ..', - 'rule_action_prepend_notes' => 'Preceder notas com ":action_value"', - 'rule_action_clear_notes_choice' => 'Remover quaisquer notas', - 'rule_action_clear_notes' => 'Remover quaisquer notas', - 'rule_action_set_notes_choice' => 'Defina notas para..', - 'rule_action_link_to_bill_choice' => 'Vincular a uma fatura ..', - 'rule_action_link_to_bill' => 'Vincular à fatura ":action_value"', - 'rule_action_switch_accounts_choice' => 'Mudar conta de origem e destino (apenas transferências!)', - 'rule_action_switch_accounts' => 'Alternar origem e destino', - 'rule_action_set_notes' => 'Defina notas para ":action_value"', - 'rule_action_convert_deposit_choice' => 'Converter esta transferência em entrada', - 'rule_action_convert_deposit' => 'Converter a transação em uma entrada de ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Converter esta transação para uma saída', - 'rule_action_convert_withdrawal' => 'Converter a transação em uma saída de ":action_value"', - 'rule_action_convert_transfer_choice' => 'Converter esta transação para transferência', - 'rule_action_convert_transfer' => 'Converter a transação em uma transferência de ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Adicionar a descrição às notas da transação', - 'rule_action_append_notes_to_descr_choice' => 'Adicionar as notas da trasação à descrição', - 'rule_action_move_descr_to_notes_choice' => 'Substituir as notas de transação atual com a descrição', - 'rule_action_move_notes_to_descr_choice' => 'Substituir a descrição atual com notas da transação', - 'rule_action_append_descr_to_notes' => 'Adicionar descrição às notas', - 'rule_action_append_notes_to_descr' => 'Adicionar notas à descrição', - 'rule_action_move_descr_to_notes' => 'Substituir notas por descrição', - 'rule_action_move_notes_to_descr' => 'Substituir descrição por notas', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Definir a conta destino para (dinheiro)', - 'rule_action_set_source_to_cash_choice' => 'Definir a conta de ativo para (dinheiro)', - 'rulegroup_for_bills_title' => 'Grupo de regras para faturas', - 'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem faturas.', - 'rule_for_bill_title' => 'Regra gerada automaticamente para a fatura ":name"', - 'rule_for_bill_description' => 'Esta regra é gerada automaticamente para tentar corresponder à fatura ":name".', - 'create_rule_for_bill' => 'Criar uma nova regra para a fatura ":name"', - 'create_rule_for_bill_txt' => 'Você acabou de criar uma nova fatura chamada ":name". Parabéns! O Firefly III pode combinar automagicamente novas despesas com essa fatura. Por exemplo, sempre que você pagar seu aluguel, a fatura "aluguel" será vinculada a essa despesa. Dessa forma, o Firefly III pode mostrar com precisão quais faturas estão vencidas e quais não estão. Para isso, uma nova regra deve ser criada. O Firefly III preencheu algumas informações por você. Por favor, verifique se está tudo certo. Se estiverem corretas, o Firefly III irá vincular as despesas a essas faturas automaticamente. Por favor, confira os gatilhos e adicione outros, se estiverem errados.', - 'new_rule_for_bill_title' => 'Regra para a fatura ":name"', - 'new_rule_for_bill_description' => 'Esta regra marca as transações para a fatura ":name".', + 'rule_action_delete_transaction_choice' => 'EXCLUIR transação(!)', + 'rule_action_delete_transaction' => 'EXCLUIR transação(!)', + 'rule_action_set_category' => 'Definir categoria para ":action_value"', + 'rule_action_clear_category' => 'Limpar categoria', + 'rule_action_set_budget' => 'Definir orçamento para ":action_value"', + 'rule_action_clear_budget' => 'Limpar orçamento', + 'rule_action_add_tag' => 'Adicionar tag ":action_value"', + 'rule_action_remove_tag' => 'Remover tag ":action_value"', + 'rule_action_remove_all_tags' => 'Remover todas as tags', + 'rule_action_set_description' => 'Definir descrição para ":action_value"', + 'rule_action_append_description' => 'Acrescentar a descrição com ":action_value"', + 'rule_action_prepend_description' => 'Preceder a descrição com ":action_value"', + 'rule_action_set_category_choice' => 'Definir a categoria para ..', + 'rule_action_clear_category_choice' => 'Limpar qualquer categoria', + 'rule_action_set_budget_choice' => 'Definir orçamento para ..', + 'rule_action_clear_budget_choice' => 'Limpar qualquer orçamento', + 'rule_action_add_tag_choice' => 'Adicionar tag ..', + 'rule_action_remove_tag_choice' => 'Remover tag ..', + 'rule_action_remove_all_tags_choice' => 'Remover todas as tags', + 'rule_action_set_description_choice' => 'Definir descrição para ..', + 'rule_action_update_piggy_choice' => 'Adicionar / remover o valor da transação no cofrinho ..', + 'rule_action_update_piggy' => 'Adicionar / remover o valor da transação no cofrinho ":action_value"', + 'rule_action_append_description_choice' => 'Adicionar descrição com ..', + 'rule_action_prepend_description_choice' => 'Adicionar (ao começo) descrição com ..', + 'rule_action_set_source_account_choice' => 'Definir a conta de origem para ..', + 'rule_action_set_source_account' => 'Definir a conta de origem para :action_value', + 'rule_action_set_destination_account_choice' => 'Definir a conta de destino para ..', + 'rule_action_set_destination_account' => 'Definir a conta de destino :action_value', + 'rule_action_append_notes_choice' => 'Adicionar notas com ..', + 'rule_action_append_notes' => 'Anexar notas com ":action_value"', + 'rule_action_prepend_notes_choice' => 'Adicionar (ao começo) notas com ..', + 'rule_action_prepend_notes' => 'Preceder notas com ":action_value"', + 'rule_action_clear_notes_choice' => 'Remover quaisquer notas', + 'rule_action_clear_notes' => 'Remover quaisquer notas', + 'rule_action_set_notes_choice' => 'Defina notas para..', + 'rule_action_link_to_bill_choice' => 'Vincular a uma fatura ..', + 'rule_action_link_to_bill' => 'Vincular à fatura ":action_value"', + 'rule_action_switch_accounts_choice' => 'Mudar conta de origem e destino (apenas transferências!)', + 'rule_action_switch_accounts' => 'Alternar origem e destino', + 'rule_action_set_notes' => 'Defina notas para ":action_value"', + 'rule_action_convert_deposit_choice' => 'Converter esta transferência em entrada', + 'rule_action_convert_deposit' => 'Converter a transação em uma entrada de ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Converter esta transação para uma saída', + 'rule_action_convert_withdrawal' => 'Converter a transação em uma saída de ":action_value"', + 'rule_action_convert_transfer_choice' => 'Converter esta transação para transferência', + 'rule_action_convert_transfer' => 'Converter a transação em uma transferência de ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Adicionar a descrição às notas da transação', + 'rule_action_append_notes_to_descr_choice' => 'Adicionar as notas da trasação à descrição', + 'rule_action_move_descr_to_notes_choice' => 'Substituir as notas de transação atual com a descrição', + 'rule_action_move_notes_to_descr_choice' => 'Substituir a descrição atual com notas da transação', + 'rule_action_append_descr_to_notes' => 'Adicionar descrição às notas', + 'rule_action_append_notes_to_descr' => 'Adicionar notas à descrição', + 'rule_action_move_descr_to_notes' => 'Substituir notas por descrição', + 'rule_action_move_notes_to_descr' => 'Substituir descrição por notas', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Definir a conta destino para (dinheiro)', + 'rule_action_set_source_to_cash_choice' => 'Definir a conta de ativo para (dinheiro)', + 'rulegroup_for_bills_title' => 'Grupo de regras para faturas', + 'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem faturas.', + 'rule_for_bill_title' => 'Regra gerada automaticamente para a fatura ":name"', + 'rule_for_bill_description' => 'Esta regra é gerada automaticamente para tentar corresponder à fatura ":name".', + 'create_rule_for_bill' => 'Criar uma nova regra para a fatura ":name"', + 'create_rule_for_bill_txt' => 'Você acabou de criar uma nova fatura chamada ":name". Parabéns! O Firefly III pode combinar automagicamente novas despesas com essa fatura. Por exemplo, sempre que você pagar seu aluguel, a fatura "aluguel" será vinculada a essa despesa. Dessa forma, o Firefly III pode mostrar com precisão quais faturas estão vencidas e quais não estão. Para isso, uma nova regra deve ser criada. O Firefly III preencheu algumas informações por você. Por favor, verifique se está tudo certo. Se estiverem corretas, o Firefly III irá vincular as despesas a essas faturas automaticamente. Por favor, confira os gatilhos e adicione outros, se estiverem errados.', + 'new_rule_for_bill_title' => 'Regra para a fatura ":name"', + 'new_rule_for_bill_description' => 'Esta regra marca as transações para a fatura ":name".', - 'new_rule_for_journal_title' => 'Regra baseada na transação ":description"', - 'new_rule_for_journal_description' => 'Esta regra é baseada na transação ":description". Irá corresponder a transações que são exatamente iguais.', + 'new_rule_for_journal_title' => 'Regra baseada na transação ":description"', + 'new_rule_for_journal_description' => 'Esta regra é baseada na transação ":description". Irá corresponder a transações que são exatamente iguais.', // tags - 'store_new_tag' => 'Armazenar nova tag', - 'update_tag' => 'Atualizar tag', - 'no_location_set' => 'Nenhuma localização.', - 'meta_data' => 'Meta dados', - 'location' => 'Localização', - 'location_first_split' => 'O local para essa transação pode ser definido na primeira divisão dessa transação.', - 'without_date' => 'Sem data', - 'result' => 'Resultado', - 'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado', - 'mapbox_api_key' => 'Para usar o mapa, obtenha uma chave API do Mapbox. Abra seu arquivo .env e insira este código MAPBOX_API_KEY=.', - 'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir a localização do objeto.', - 'click_tap_location' => 'Clique ou toque no mapa para adicionar um local', - 'clear_location' => 'Limpar localização', - 'delete_all_selected_tags' => 'Excluir todas as tags selecionadas', - 'select_tags_to_delete' => 'Não se esqueça de selecionar algumas tags.', - 'deleted_x_tags' => ':count tag foi excluída.|:count tags foram excluídas.', - 'create_rule_from_transaction' => 'Criar regra baseada na transação', - 'create_recurring_from_transaction' => 'Criar transação recorrente baseada na transação', + 'store_new_tag' => 'Armazenar nova tag', + 'update_tag' => 'Atualizar tag', + 'no_location_set' => 'Nenhuma localização.', + 'meta_data' => 'Meta dados', + 'location' => 'Localização', + 'location_first_split' => 'O local para essa transação pode ser definido na primeira divisão dessa transação.', + 'without_date' => 'Sem data', + 'result' => 'Resultado', + 'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado', + 'mapbox_api_key' => 'Para usar o mapa, obtenha uma chave API do Mapbox. Abra seu arquivo .env e insira este código MAPBOX_API_KEY=.', + 'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir a localização do objeto.', + 'click_tap_location' => 'Clique ou toque no mapa para adicionar um local', + 'clear_location' => 'Limpar localização', + 'delete_all_selected_tags' => 'Excluir todas as tags selecionadas', + 'select_tags_to_delete' => 'Não se esqueça de selecionar algumas tags.', + 'deleted_x_tags' => ':count tag foi excluída.|:count tags foram excluídas.', + 'create_rule_from_transaction' => 'Criar regra baseada na transação', + 'create_recurring_from_transaction' => 'Criar transação recorrente baseada na transação', // preferences - 'dark_mode_option_browser' => 'Deixe seu navegador decidir', - 'dark_mode_option_light' => 'Sempre claro', - 'dark_mode_option_dark' => 'Sempre escuro', - 'equal_to_language' => '(igual ao idioma)', - 'dark_mode_preference' => 'Modo escuro', - 'dark_mode_preference_help' => 'Avise ao Firefly III quando usar o modo escuro.', - 'pref_home_screen_accounts' => 'Conta da tela inicial', - 'pref_home_screen_accounts_help' => 'Quais contas devem ser exibidas na tela inicial?', - 'pref_view_range' => 'Ver intervalo', - 'pref_view_range_help' => 'Algumas tabelas estão automaticamente agrupadas em períodos. Seus orçamentos também serão agrupados em períodos. Qual período você prefere?', - 'pref_1D' => 'Um dia', - 'pref_1W' => 'Uma semana', - 'pref_1M' => 'Um mês', - 'pref_3M' => 'Trimestral', - 'pref_6M' => 'Semestral', - 'pref_1Y' => 'Um ano', - 'pref_last365' => 'Ano passado', - 'pref_last90' => 'Últimos 90 dias', - 'pref_last30' => 'Últimos 30 dias', - 'pref_last7' => 'Últimos 7 dias', - 'pref_YTD' => 'Começo do ano até hoje', - 'pref_QTD' => 'Começo do trimestre até hoje', - 'pref_MTD' => 'Começo do mês até hoje', - 'pref_languages' => 'Idiomas', - 'pref_locale' => 'Configurações regionais', - 'pref_languages_help' => 'Firefly III suporta muitos idiomas. Qual você prefere?', - 'pref_locale_help' => 'Firefly III permite que você defina outras configurações locais, por exemplo, como moedas, números e datas são formatadas. Os itens nesta lista podem não ser suportadas pelo seu sistema. Firefly III não tem as corretas configurações de data para cada local; entre em contato para melhorias.', - 'pref_locale_no_demo' => 'Este recurso não funcionará para o usuário de demonstração.', - 'pref_custom_fiscal_year' => 'Configurações de ano fiscal', - 'pref_custom_fiscal_year_label' => 'Habilitado', - 'pref_custom_fiscal_year_help' => 'Nos países que usam um exercício diferente de 1 de Janeiro a 31 de Dezembro, você pode ativar isto e especificar início / fim do ano fiscal', - 'pref_fiscal_year_start_label' => 'Data de início de ano fiscal', - 'pref_two_factor_auth' => 'Verificação em duas etapas', - 'pref_two_factor_auth_help' => 'Quando você habilita verificação em 2 etapas (também conhecido como Two Factor Authentication), você adiciona uma camada extra de segurança para sua conta. Você entra com alguma coisa que você sabe (sua senha) e algo que você tem (um código de verificação). Os códigos de verificação são gerados por um aplicativo em seu telefone, como Authy ou Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Habilitar a verificação de 2 etapas', - 'pref_two_factor_auth_disabled' => 'código de verificação em 2 etapas removido e desativado', - 'pref_two_factor_auth_remove_it' => 'Não se esqueça de remover a conta de seu aplicativo de autenticação!', - 'pref_two_factor_auth_code' => 'Verificar código', - 'pref_two_factor_auth_code_help' => 'Scaneie o código QR com um aplicativo em seu telefone como Authy ou Google Authenticator e insira o código gerado.', - 'pref_two_factor_auth_reset_code' => 'Redefinir o código de verificação', - 'pref_two_factor_auth_disable_2fa' => 'Desativar verificação em duas etapas', - '2fa_use_secret_instead' => 'Se você não pode escanear o QR code, sinta-se à vontade para usar o código secreto :secret.', - '2fa_backup_codes' => 'Armazene esses códigos de reserva para acesso, caso você perca seu dispositivo.', - '2fa_already_enabled' => 'A verificação em duas etapas já está habilitada.', - 'wrong_mfa_code' => 'Esse código MFA não é válido.', - 'pref_save_settings' => 'Salvar definições', - 'saved_preferences' => 'Preferências salvas!', - 'preferences_general' => 'Geral', - 'preferences_frontpage' => 'Tela inicial', - 'preferences_security' => 'Segurança', - 'preferences_layout' => 'Interface', - 'preferences_notifications' => 'Notificações', - 'pref_home_show_deposits' => 'Depósitos de mostrar na tela inicial', - 'pref_home_show_deposits_info' => 'A tela inicial já mostra suas contas de despesas. Deveria também mostrar suas receitas?', - 'pref_home_do_show_deposits' => 'Sim, mostrar-lhes', - 'successful_count' => 'dos quais :count bem sucedida', - 'list_page_size_title' => 'Tamanho da página', - 'list_page_size_help' => 'Qualquer lista de coisas (contas, transações, etc.) mostra, no máximo, este tanto por página.', - 'list_page_size_label' => 'Tamanho da página', - 'between_dates' => '(:start e :end)', - 'pref_optional_fields_transaction' => 'Campos opcionais para transações', - 'pref_optional_fields_transaction_help' => 'Por padrão, nem todos os campos estão ativados ao criar uma nova transação (por causa da desordem). Abaixo, você pode habilitar esses campos se você acha que eles podem ser úteis para você. Claro, qualquer campo desabilitado, mas já preenchido, será visível, independentemente da configuração.', - 'optional_tj_date_fields' => 'Campos de data', - 'optional_tj_other_fields' => 'Outros campos', - 'optional_tj_attachment_fields' => 'Campos de anexo', - 'pref_optional_tj_interest_date' => 'Data de juros', - 'pref_optional_tj_book_date' => 'Data de lançamento', - 'pref_optional_tj_process_date' => 'Data de processamento', - 'pref_optional_tj_due_date' => 'Data de vencimento', - 'pref_optional_tj_payment_date' => 'Data de pagamento', - 'pref_optional_tj_invoice_date' => 'Data da Fatura', - 'pref_optional_tj_internal_reference' => 'Referência interna', - 'pref_optional_tj_notes' => 'Notas', - 'pref_optional_tj_attachments' => 'Anexos', - 'pref_optional_tj_external_url' => 'URL externa', - 'pref_optional_tj_location' => 'Localização', - 'pref_optional_tj_links' => 'Links da transação', - 'optional_field_meta_dates' => 'Datas', - 'optional_field_meta_business' => 'Negócios', - 'optional_field_attachments' => 'Anexos', - 'optional_field_meta_data' => 'Meta dados opcionais', - 'external_url' => 'URL externa', - 'pref_notification_bill_reminder' => 'Lembrete sobre expiração de faturas', - 'pref_notification_new_access_token' => 'Alerta quando um novo token de acesso à API é criado', - 'pref_notification_transaction_creation' => 'Alerta quando uma transação é criada automaticamente', - 'pref_notification_user_login' => 'Alertar quando você logar de uma nova localidade', - 'pref_notification_rule_action_failures' => 'Alertar quando as ações de regras falharem ao executar (somente Slack ou Discord)', - 'pref_notifications' => 'Notificações', - 'pref_notifications_help' => 'Indique se estas são notificações que você gostaria de receber. Algumas notificações podem conter informações financeiras sensíveis.', - 'slack_webhook_url' => 'URL de Webhook do Slack', - 'slack_webhook_url_help' => 'Se você quiser que o Firefly III envie notificações usando o Slack, digite a URL do webhook aqui. Caso contrário, deixe o campo em branco. Se você é um administrador, você precisa definir esta URL também na administração.', - 'slack_url_label' => 'URL do webhook de entrada do Slack', + 'dark_mode_option_browser' => 'Deixe seu navegador decidir', + 'dark_mode_option_light' => 'Sempre claro', + 'dark_mode_option_dark' => 'Sempre escuro', + 'equal_to_language' => '(igual ao idioma)', + 'dark_mode_preference' => 'Modo escuro', + 'dark_mode_preference_help' => 'Avise ao Firefly III quando usar o modo escuro.', + 'pref_home_screen_accounts' => 'Conta da tela inicial', + 'pref_home_screen_accounts_help' => 'Quais contas devem ser exibidas na tela inicial?', + 'pref_view_range' => 'Ver intervalo', + 'pref_view_range_help' => 'Algumas tabelas estão automaticamente agrupadas em períodos. Seus orçamentos também serão agrupados em períodos. Qual período você prefere?', + 'pref_1D' => 'Um dia', + 'pref_1W' => 'Uma semana', + 'pref_1M' => 'Um mês', + 'pref_3M' => 'Trimestral', + 'pref_6M' => 'Semestral', + 'pref_1Y' => 'Um ano', + 'pref_last365' => 'Ano passado', + 'pref_last90' => 'Últimos 90 dias', + 'pref_last30' => 'Últimos 30 dias', + 'pref_last7' => 'Últimos 7 dias', + 'pref_YTD' => 'Começo do ano até hoje', + 'pref_QTD' => 'Começo do trimestre até hoje', + 'pref_MTD' => 'Começo do mês até hoje', + 'pref_languages' => 'Idiomas', + 'pref_locale' => 'Configurações regionais', + 'pref_languages_help' => 'Firefly III suporta muitos idiomas. Qual você prefere?', + 'pref_locale_help' => 'Firefly III permite que você defina outras configurações locais, por exemplo, como moedas, números e datas são formatadas. Os itens nesta lista podem não ser suportadas pelo seu sistema. Firefly III não tem as corretas configurações de data para cada local; entre em contato para melhorias.', + 'pref_locale_no_demo' => 'Este recurso não funcionará para o usuário de demonstração.', + 'pref_custom_fiscal_year' => 'Configurações de ano fiscal', + 'pref_custom_fiscal_year_label' => 'Habilitado', + 'pref_custom_fiscal_year_help' => 'Nos países que usam um exercício diferente de 1 de Janeiro a 31 de Dezembro, você pode ativar isto e especificar início / fim do ano fiscal', + 'pref_fiscal_year_start_label' => 'Data de início de ano fiscal', + 'pref_two_factor_auth' => 'Verificação em duas etapas', + 'pref_two_factor_auth_help' => 'Quando você habilita verificação em 2 etapas (também conhecido como Two Factor Authentication), você adiciona uma camada extra de segurança para sua conta. Você entra com alguma coisa que você sabe (sua senha) e algo que você tem (um código de verificação). Os códigos de verificação são gerados por um aplicativo em seu telefone, como Authy ou Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Habilitar a verificação de 2 etapas', + 'pref_two_factor_auth_disabled' => 'código de verificação em 2 etapas removido e desativado', + 'pref_two_factor_auth_remove_it' => 'Não se esqueça de remover a conta de seu aplicativo de autenticação!', + 'pref_two_factor_auth_code' => 'Verificar código', + 'pref_two_factor_auth_code_help' => 'Scaneie o código QR com um aplicativo em seu telefone como Authy ou Google Authenticator e insira o código gerado.', + 'pref_two_factor_auth_reset_code' => 'Redefinir o código de verificação', + 'pref_two_factor_auth_disable_2fa' => 'Desativar verificação em duas etapas', + '2fa_use_secret_instead' => 'Se você não pode escanear o QR code, sinta-se à vontade para usar o código secreto :secret.', + '2fa_backup_codes' => 'Armazene esses códigos de reserva para acesso, caso você perca seu dispositivo.', + '2fa_already_enabled' => 'A verificação em duas etapas já está habilitada.', + 'wrong_mfa_code' => 'Esse código MFA não é válido.', + 'pref_save_settings' => 'Salvar definições', + 'saved_preferences' => 'Preferências salvas!', + 'preferences_general' => 'Geral', + 'preferences_frontpage' => 'Tela inicial', + 'preferences_security' => 'Segurança', + 'preferences_layout' => 'Interface', + 'preferences_notifications' => 'Notificações', + 'pref_home_show_deposits' => 'Depósitos de mostrar na tela inicial', + 'pref_home_show_deposits_info' => 'A tela inicial já mostra suas contas de despesas. Deveria também mostrar suas receitas?', + 'pref_home_do_show_deposits' => 'Sim, mostrar-lhes', + 'successful_count' => 'dos quais :count bem sucedida', + 'list_page_size_title' => 'Tamanho da página', + 'list_page_size_help' => 'Qualquer lista de coisas (contas, transações, etc.) mostra, no máximo, este tanto por página.', + 'list_page_size_label' => 'Tamanho da página', + 'between_dates' => '(:start e :end)', + 'pref_optional_fields_transaction' => 'Campos opcionais para transações', + 'pref_optional_fields_transaction_help' => 'Por padrão, nem todos os campos estão ativados ao criar uma nova transação (por causa da desordem). Abaixo, você pode habilitar esses campos se você acha que eles podem ser úteis para você. Claro, qualquer campo desabilitado, mas já preenchido, será visível, independentemente da configuração.', + 'optional_tj_date_fields' => 'Campos de data', + 'optional_tj_other_fields' => 'Outros campos', + 'optional_tj_attachment_fields' => 'Campos de anexo', + 'pref_optional_tj_interest_date' => 'Data de juros', + 'pref_optional_tj_book_date' => 'Data de lançamento', + 'pref_optional_tj_process_date' => 'Data de processamento', + 'pref_optional_tj_due_date' => 'Data de vencimento', + 'pref_optional_tj_payment_date' => 'Data de pagamento', + 'pref_optional_tj_invoice_date' => 'Data da Fatura', + 'pref_optional_tj_internal_reference' => 'Referência interna', + 'pref_optional_tj_notes' => 'Notas', + 'pref_optional_tj_attachments' => 'Anexos', + 'pref_optional_tj_external_url' => 'URL externa', + 'pref_optional_tj_location' => 'Localização', + 'pref_optional_tj_links' => 'Links da transação', + 'optional_field_meta_dates' => 'Datas', + 'optional_field_meta_business' => 'Negócios', + 'optional_field_attachments' => 'Anexos', + 'optional_field_meta_data' => 'Meta dados opcionais', + 'external_url' => 'URL externa', + 'pref_notification_bill_reminder' => 'Lembrete sobre expiração de faturas', + 'pref_notification_new_access_token' => 'Alerta quando um novo token de acesso à API é criado', + 'pref_notification_transaction_creation' => 'Alerta quando uma transação é criada automaticamente', + 'pref_notification_user_login' => 'Alertar quando você logar de uma nova localidade', + 'pref_notification_rule_action_failures' => 'Alertar quando as ações de regras falharem ao executar (somente Slack ou Discord)', + 'pref_notifications' => 'Notificações', + 'pref_notifications_help' => 'Indique se estas são notificações que você gostaria de receber. Algumas notificações podem conter informações financeiras sensíveis.', + 'slack_webhook_url' => 'URL de Webhook do Slack', + 'slack_webhook_url_help' => 'Se você quiser que o Firefly III envie notificações usando o Slack, digite a URL do webhook aqui. Caso contrário, deixe o campo em branco. Se você é um administrador, você precisa definir esta URL também na administração.', + 'slack_url_label' => 'URL do webhook de entrada do Slack', // Financial administrations - 'administration_index' => 'Administração financeira', - 'administrations_index_menu' => 'Administração(ões) financeira(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administração financeira', + 'administrations_index_menu' => 'Administração(ões) financeira(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Expurgar dados do Firefly III', - 'purge_data_expl' => '"Expurgar" significa "apagar o que já está excluído". Em circunstâncias normais, o Firefly III não exclui nada permanentemente. Ela apenas o esconde. O botão abaixo exclui todos estes registros "excluídos" anteriores PARA SEMPRE.', - 'delete_stuff_header' => 'Apagar e expurgar dados', - 'purge_all_data' => 'Expurgar registros excluídos', - 'purge_data' => 'Expurgar dados', - 'purged_all_records' => 'Todos os registros apagados foram expurgados.', - 'delete_data_title' => 'Excluir dados do Firefly III', - 'permanent_delete_stuff' => 'Você pode excluir coisas do Firefly III. Usar os botões abaixo significa que seus itens serão removidos da visualização e ocultados. Não há botão de desfazer para isso, mas os itens podem permanecer no banco de dados onde você pode salvá-los se necessário.', - 'other_sessions_logged_out' => 'Todas as suas outras sessões foram desconectadas.', - 'delete_unused_accounts' => 'Excluir contas não utilizadas limpará suas listas de preenchimento automático.', - 'delete_all_unused_accounts' => 'Apagar contas não utilizadas', - 'deleted_all_unused_accounts' => 'Todas as contas não utilizadas foram excluídas', - 'delete_all_budgets' => 'Excluir TODOS os seus orçamentos', - 'delete_all_categories' => 'Excluir TODAS as suas categorias', - 'delete_all_tags' => 'Excluir TODAS as suas tags', - 'delete_all_bills' => 'Excluir TODAS as suas faturas', - 'delete_all_piggy_banks' => 'Excluir TODOS os seus cofrinhos', - 'delete_all_rules' => 'Excluir TODAS as suas regras', - 'delete_all_recurring' => 'Excluir TODAS as suas transações recorrentes', - 'delete_all_object_groups' => 'Excluir TODOS os seus grupos de objetos', - 'delete_all_accounts' => 'Excluir TODAS as suas contas', - 'delete_all_asset_accounts' => 'Excluir TODAS as suas contas de ativos', - 'delete_all_expense_accounts' => 'Excluir TODAS as suas contas de despesas', - 'delete_all_revenue_accounts' => 'Excluir TODAS as suas contas de receita', - 'delete_all_liabilities' => 'Excluir TODOS os seus passivos', - 'delete_all_transactions' => 'Excluir TODAS as suas transações', - 'delete_all_withdrawals' => 'Excluir TODAS as suas despesas', - 'delete_all_deposits' => 'Excluir TODAS as suas entradas', - 'delete_all_transfers' => 'Excluir TODAS as suas transferências', - 'also_delete_transactions' => 'A exclusão de contas também excluirá TODAS as saídas, entradas e transferências associadas!', - 'deleted_all_budgets' => 'Todos os orçamentos foram excluídos', - 'deleted_all_categories' => 'Todas as categorias foram excluídas', - 'deleted_all_tags' => 'Todas as tags foram excluídas', - 'deleted_all_bills' => 'Todas as faturas foram excluídas', - 'deleted_all_piggy_banks' => 'Todos os cofrinhos foram excluídos', - 'deleted_all_rules' => 'Todas as regras e grupos de regras foram excluídos', - 'deleted_all_object_groups' => 'Todos os grupos foram excluídos', - 'deleted_all_accounts' => 'Todas as contas foram excluídas', - 'deleted_all_asset_accounts' => 'Todas as contas de ativos foram excluídas', - 'deleted_all_expense_accounts' => 'Todas as contas de despesas foram excluídas', - 'deleted_all_revenue_accounts' => 'Todas as contas de receita foram excluídas', - 'deleted_all_liabilities' => 'Todos os passivos foram excluídos', - 'deleted_all_transactions' => 'Todas as transações foram excluídas', - 'deleted_all_withdrawals' => 'Todas as saídas foram excluídas', - 'deleted_all_deposits' => 'Todas as entradas foram excluídas', - 'deleted_all_transfers' => 'Todas as transferências foram excluídas', - 'deleted_all_recurring' => 'Todas as transações recorrentes foram excluídas', - 'change_your_password' => 'Alterar sua senha', - 'delete_account' => 'Apagar conta', - 'current_password' => 'Senha atual', - 'new_password' => 'Nova senha', - 'new_password_again' => 'Nova senha (novamente)', - 'delete_your_account' => 'Apagar sua conta', - 'delete_your_account_help' => 'Excluindo sua conta também vai apagar quaisquer contas, transações, qualquer coisa que você pode ter salvo no Firefly III. Tudo será perdido.', - 'delete_your_account_password' => 'Coloque sua senha para continuar.', - 'password' => 'Senha', - 'are_you_sure' => 'Você tem certeza? Você não poderá desfazer isso.', - 'delete_account_button' => 'Apagar sua conta', - 'invalid_current_password' => 'Senha atual inválida!', - 'password_changed' => 'Senha alterada!', - 'should_change' => 'A idéia é alterar sua senha.', - 'invalid_password' => 'Senha inválida!', - 'what_is_pw_security' => 'O que é "verificar a segurança da senha"?', - 'secure_pw_title' => 'Como escolher uma senha segura', - 'forgot_password_response' => 'Caso exista uma conta com este endereço de e-mail, você encontrará instruções em sua caixa de entrada.', - 'secure_pw_history' => 'Não é toda semana que você lê notícias sobre site que perde as senhas de seus usuários. Hackers e ladrões usam essas senhas para tentar roubar suas informações privadas. Esta informação é valiosa.', - 'secure_pw_ff' => 'Você usa a mesma senha em toda a internet? Se um site perder sua senha, os hackers terão acesso a todos os seus dados. O Firefly III depende de você para escolher uma senha forte e única para proteger seus registros financeiros.', - 'secure_pw_check_box' => 'Para ajudá-lo o Firefly III pode verificar se a senha que você deseja usar foi roubada anteriormente. Se for esse o caso, o Firefly III aconselha a você NÃO utilizar essa senha.', - 'secure_pw_working_title' => 'Como isso funciona?', - 'secure_pw_working' => 'Ao marcar a caixa de seleção, o Firefly III enviará os cinco primeiros caracteres do hash SHA1 de sua senha ao site Troy Hunt, para verificar se ela está na lista. Isso impede que você use senhas inseguras, como recomendado na última publicação NIST Special sobre esse assunto.', - 'secure_pw_should' => 'Devo verificar a caixa?', - 'secure_pw_long_password' => 'Sim. Sempre verificar se sua senha é segura.', - 'command_line_token' => 'Token de linha de comando', - 'explain_command_line_token' => 'Você precisa desse token para executar ações na linha de comando, como exportação de dados. Sem ele, esse comando sensível não irá funcionar. Não compartilhe seu token de linha de comando. Ninguém irá te perguntar sobre esse token, nem mesmo eu. se você tiver medo de perder ele, ou quando estiver paranoico, crie um novo token usando o botão.', - 'regenerate_command_line_token' => 'Regenerar token de linha de comando', - 'token_regenerated' => 'Foi gerado um novo token de linha de comando', - 'change_your_email' => 'Altere seu endereço de email', - 'email_verification' => 'Uma mensagem de e-mail será enviada para o seu endereço de e-mail antigo E novo. Por razões de segurança, você não será capaz de fazer login até você confirmar seu novo endereço de e-mail. Se você não tem certeza se sua instalação do Firefly III é capaz de enviar e-mail, por favor não use esse recurso. Se você é um administrador, você pode testar isso na Administração.', - 'email_changed_logout' => 'Até que você verifique seu endereço de e-mail, não pode iniciar sessão.', - 'login_with_new_email' => 'Agora você pode fazer login com seu novo endereço de e-mail.', - 'login_with_old_email' => 'Agora você pode fazer login novamente com o seu endereço de e-mail antigo.', - 'login_provider_local_only' => 'Esta ação não está disponível durante a autenticação por meio de ":login_provider".', - 'external_user_mgt_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pelo gerenciamento de usuários ou manipulação de autenticação.', - 'external_auth_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela autenticação.', - 'delete_local_info_only' => 'Como o Firefly III não é responsável pelo gerenciamento de usuários ou pela manipulação de autenticação, esta função excluirá apenas informações locais do Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clientes OAuth', - 'profile_oauth_no_clients' => 'Você não criou nenhum cliente OAuth.', - 'profile_oauth_clients_external_auth' => 'Se você estiver usando um provedor de autenticação externo, como Authelia, clientes OAuth (como apps) não funcionarão. Você só poderá usar Tokens de Acesso Pessoal.', - 'profile_oauth_clients_header' => 'Clientes', - 'profile_oauth_client_id' => 'ID do Cliente', - 'profile_oauth_client_name' => 'Nome', - 'profile_oauth_client_secret' => 'Segredo', - 'profile_oauth_create_new_client' => 'Criar um novo cliente', - 'profile_oauth_create_client' => 'Criar um cliente', - 'profile_oauth_edit_client' => 'Editar cliente', - 'profile_oauth_name_help' => 'Alguma coisa que seus usuários vão reconhecer e identificar.', - 'profile_oauth_redirect_url' => 'URL de redirecionamento', - 'profile_oauth_redirect_url_help' => 'A URL de retorno da sua solicitação de autorização.', - 'profile_authorized_apps' => 'Aplicativos autorizados', - 'profile_authorized_clients' => 'Clientes autorizados', - 'profile_scopes' => 'Escopos', - 'profile_revoke' => 'Revogar', - 'profile_oauth_client_secret_title' => 'Segredo do cliente', - 'profile_oauth_client_secret_expl' => 'Aqui está o seu novo segredo de cliente. Esta é a única vez que ela será mostrada, então não o perca! Agora você pode usar este segredo para fazer requisições de API.', - 'profile_personal_access_tokens' => 'Tokens de acesso pessoal', - 'profile_personal_access_token' => 'Token de acesso pessoal', - 'profile_oauth_confidential' => 'Confidencial', - 'profile_oauth_confidential_help' => 'Exige que o cliente se autentique com um segredo. Clientes confidenciais podem manter credenciais de forma segura sem expô-las à partes não autorizadas. Aplicações públicas, como aplicações de área de trabalho nativas ou JavaScript SPA, são incapazes de manter segredos com segurança.', - 'profile_personal_access_token_explanation' => 'Aqui está seu novo token de acesso pessoal. Esta é a única vez que ela será mostrada então não perca! Agora você pode usar esse token para fazer solicitações de API.', - 'profile_no_personal_access_token' => 'Você não criou nenhum token de acesso pessoal.', - 'profile_create_new_token' => 'Criar novo token', - 'profile_create_token' => 'Criar token', - 'profile_create' => 'Criar', - 'profile_save_changes' => 'Salvar alterações', - 'profile_whoops' => 'Ops!', - 'profile_something_wrong' => 'Alguma coisa deu errado!', - 'profile_try_again' => 'Algo deu errado. Por favor tente novamente.', - 'amounts' => 'Quantias', - 'multi_account_warning_unknown' => 'Dependendo do tipo de transação que você criar, a conta de origem e/ou de destino das divisões subsequentes pode ser sobrescrita pelo que estiver definido na primeira divisão da transação.', - 'multi_account_warning_withdrawal' => 'Tenha em mente que a conta de origem das divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão da saída.', - 'multi_account_warning_deposit' => 'Tenha em mente que a conta de destino das divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão da entrada.', - 'multi_account_warning_transfer' => 'Tenha em mente que a conta de origem + de destino das divisões subsequentes serão sobrescritas pelo que for definido na primeira divisão da transferência.', + 'purge_data_title' => 'Expurgar dados do Firefly III', + 'purge_data_expl' => '"Expurgar" significa "apagar o que já está excluído". Em circunstâncias normais, o Firefly III não exclui nada permanentemente. Ela apenas o esconde. O botão abaixo exclui todos estes registros "excluídos" anteriores PARA SEMPRE.', + 'delete_stuff_header' => 'Apagar e expurgar dados', + 'purge_all_data' => 'Expurgar registros excluídos', + 'purge_data' => 'Expurgar dados', + 'purged_all_records' => 'Todos os registros apagados foram expurgados.', + 'delete_data_title' => 'Excluir dados do Firefly III', + 'permanent_delete_stuff' => 'Você pode excluir coisas do Firefly III. Usar os botões abaixo significa que seus itens serão removidos da visualização e ocultados. Não há botão de desfazer para isso, mas os itens podem permanecer no banco de dados onde você pode salvá-los se necessário.', + 'other_sessions_logged_out' => 'Todas as suas outras sessões foram desconectadas.', + 'delete_unused_accounts' => 'Excluir contas não utilizadas limpará suas listas de preenchimento automático.', + 'delete_all_unused_accounts' => 'Apagar contas não utilizadas', + 'deleted_all_unused_accounts' => 'Todas as contas não utilizadas foram excluídas', + 'delete_all_budgets' => 'Excluir TODOS os seus orçamentos', + 'delete_all_categories' => 'Excluir TODAS as suas categorias', + 'delete_all_tags' => 'Excluir TODAS as suas tags', + 'delete_all_bills' => 'Excluir TODAS as suas faturas', + 'delete_all_piggy_banks' => 'Excluir TODOS os seus cofrinhos', + 'delete_all_rules' => 'Excluir TODAS as suas regras', + 'delete_all_recurring' => 'Excluir TODAS as suas transações recorrentes', + 'delete_all_object_groups' => 'Excluir TODOS os seus grupos de objetos', + 'delete_all_accounts' => 'Excluir TODAS as suas contas', + 'delete_all_asset_accounts' => 'Excluir TODAS as suas contas de ativos', + 'delete_all_expense_accounts' => 'Excluir TODAS as suas contas de despesas', + 'delete_all_revenue_accounts' => 'Excluir TODAS as suas contas de receita', + 'delete_all_liabilities' => 'Excluir TODOS os seus passivos', + 'delete_all_transactions' => 'Excluir TODAS as suas transações', + 'delete_all_withdrawals' => 'Excluir TODAS as suas despesas', + 'delete_all_deposits' => 'Excluir TODAS as suas entradas', + 'delete_all_transfers' => 'Excluir TODAS as suas transferências', + 'also_delete_transactions' => 'A exclusão de contas também excluirá TODAS as saídas, entradas e transferências associadas!', + 'deleted_all_budgets' => 'Todos os orçamentos foram excluídos', + 'deleted_all_categories' => 'Todas as categorias foram excluídas', + 'deleted_all_tags' => 'Todas as tags foram excluídas', + 'deleted_all_bills' => 'Todas as faturas foram excluídas', + 'deleted_all_piggy_banks' => 'Todos os cofrinhos foram excluídos', + 'deleted_all_rules' => 'Todas as regras e grupos de regras foram excluídos', + 'deleted_all_object_groups' => 'Todos os grupos foram excluídos', + 'deleted_all_accounts' => 'Todas as contas foram excluídas', + 'deleted_all_asset_accounts' => 'Todas as contas de ativos foram excluídas', + 'deleted_all_expense_accounts' => 'Todas as contas de despesas foram excluídas', + 'deleted_all_revenue_accounts' => 'Todas as contas de receita foram excluídas', + 'deleted_all_liabilities' => 'Todos os passivos foram excluídos', + 'deleted_all_transactions' => 'Todas as transações foram excluídas', + 'deleted_all_withdrawals' => 'Todas as saídas foram excluídas', + 'deleted_all_deposits' => 'Todas as entradas foram excluídas', + 'deleted_all_transfers' => 'Todas as transferências foram excluídas', + 'deleted_all_recurring' => 'Todas as transações recorrentes foram excluídas', + 'change_your_password' => 'Alterar sua senha', + 'delete_account' => 'Apagar conta', + 'current_password' => 'Senha atual', + 'new_password' => 'Nova senha', + 'new_password_again' => 'Nova senha (novamente)', + 'delete_your_account' => 'Apagar sua conta', + 'delete_your_account_help' => 'Excluindo sua conta também vai apagar quaisquer contas, transações, qualquer coisa que você pode ter salvo no Firefly III. Tudo será perdido.', + 'delete_your_account_password' => 'Coloque sua senha para continuar.', + 'password' => 'Senha', + 'are_you_sure' => 'Você tem certeza? Você não poderá desfazer isso.', + 'delete_account_button' => 'Apagar sua conta', + 'invalid_current_password' => 'Senha atual inválida!', + 'password_changed' => 'Senha alterada!', + 'should_change' => 'A idéia é alterar sua senha.', + 'invalid_password' => 'Senha inválida!', + 'what_is_pw_security' => 'O que é "verificar a segurança da senha"?', + 'secure_pw_title' => 'Como escolher uma senha segura', + 'forgot_password_response' => 'Caso exista uma conta com este endereço de e-mail, você encontrará instruções em sua caixa de entrada.', + 'secure_pw_history' => 'Não é toda semana que você lê notícias sobre site que perde as senhas de seus usuários. Hackers e ladrões usam essas senhas para tentar roubar suas informações privadas. Esta informação é valiosa.', + 'secure_pw_ff' => 'Você usa a mesma senha em toda a internet? Se um site perder sua senha, os hackers terão acesso a todos os seus dados. O Firefly III depende de você para escolher uma senha forte e única para proteger seus registros financeiros.', + 'secure_pw_check_box' => 'Para ajudá-lo o Firefly III pode verificar se a senha que você deseja usar foi roubada anteriormente. Se for esse o caso, o Firefly III aconselha a você NÃO utilizar essa senha.', + 'secure_pw_working_title' => 'Como isso funciona?', + 'secure_pw_working' => 'Ao marcar a caixa de seleção, o Firefly III enviará os cinco primeiros caracteres do hash SHA1 de sua senha ao site Troy Hunt, para verificar se ela está na lista. Isso impede que você use senhas inseguras, como recomendado na última publicação NIST Special sobre esse assunto.', + 'secure_pw_should' => 'Devo verificar a caixa?', + 'secure_pw_long_password' => 'Sim. Sempre verificar se sua senha é segura.', + 'command_line_token' => 'Token de linha de comando', + 'explain_command_line_token' => 'Você precisa desse token para executar ações na linha de comando, como exportação de dados. Sem ele, esse comando sensível não irá funcionar. Não compartilhe seu token de linha de comando. Ninguém irá te perguntar sobre esse token, nem mesmo eu. se você tiver medo de perder ele, ou quando estiver paranoico, crie um novo token usando o botão.', + 'regenerate_command_line_token' => 'Regenerar token de linha de comando', + 'token_regenerated' => 'Foi gerado um novo token de linha de comando', + 'change_your_email' => 'Altere seu endereço de email', + 'email_verification' => 'Uma mensagem de e-mail será enviada para o seu endereço de e-mail antigo E novo. Por razões de segurança, você não será capaz de fazer login até você confirmar seu novo endereço de e-mail. Se você não tem certeza se sua instalação do Firefly III é capaz de enviar e-mail, por favor não use esse recurso. Se você é um administrador, você pode testar isso na Administração.', + 'email_changed_logout' => 'Até que você verifique seu endereço de e-mail, não pode iniciar sessão.', + 'login_with_new_email' => 'Agora você pode fazer login com seu novo endereço de e-mail.', + 'login_with_old_email' => 'Agora você pode fazer login novamente com o seu endereço de e-mail antigo.', + 'login_provider_local_only' => 'Esta ação não está disponível durante a autenticação por meio de ":login_provider".', + 'external_user_mgt_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pelo gerenciamento de usuários ou manipulação de autenticação.', + 'external_auth_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela autenticação.', + 'delete_local_info_only' => 'Como o Firefly III não é responsável pelo gerenciamento de usuários ou pela manipulação de autenticação, esta função excluirá apenas informações locais do Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clientes OAuth', + 'profile_oauth_no_clients' => 'Você não criou nenhum cliente OAuth.', + 'profile_oauth_clients_external_auth' => 'Se você estiver usando um provedor de autenticação externo, como Authelia, clientes OAuth (como apps) não funcionarão. Você só poderá usar Tokens de Acesso Pessoal.', + 'profile_oauth_clients_header' => 'Clientes', + 'profile_oauth_client_id' => 'ID do Cliente', + 'profile_oauth_client_name' => 'Nome', + 'profile_oauth_client_secret' => 'Segredo', + 'profile_oauth_create_new_client' => 'Criar um novo cliente', + 'profile_oauth_create_client' => 'Criar um cliente', + 'profile_oauth_edit_client' => 'Editar cliente', + 'profile_oauth_name_help' => 'Alguma coisa que seus usuários vão reconhecer e identificar.', + 'profile_oauth_redirect_url' => 'URL de redirecionamento', + 'profile_oauth_redirect_url_help' => 'A URL de retorno da sua solicitação de autorização.', + 'profile_authorized_apps' => 'Aplicativos autorizados', + 'profile_authorized_clients' => 'Clientes autorizados', + 'profile_scopes' => 'Escopos', + 'profile_revoke' => 'Revogar', + 'profile_oauth_client_secret_title' => 'Segredo do cliente', + 'profile_oauth_client_secret_expl' => 'Aqui está o seu novo segredo de cliente. Esta é a única vez que ela será mostrada, então não o perca! Agora você pode usar este segredo para fazer requisições de API.', + 'profile_personal_access_tokens' => 'Tokens de acesso pessoal', + 'profile_personal_access_token' => 'Token de acesso pessoal', + 'profile_oauth_confidential' => 'Confidencial', + 'profile_oauth_confidential_help' => 'Exige que o cliente se autentique com um segredo. Clientes confidenciais podem manter credenciais de forma segura sem expô-las à partes não autorizadas. Aplicações públicas, como aplicações de área de trabalho nativas ou JavaScript SPA, são incapazes de manter segredos com segurança.', + 'profile_personal_access_token_explanation' => 'Aqui está seu novo token de acesso pessoal. Esta é a única vez que ela será mostrada então não perca! Agora você pode usar esse token para fazer solicitações de API.', + 'profile_no_personal_access_token' => 'Você não criou nenhum token de acesso pessoal.', + 'profile_create_new_token' => 'Criar novo token', + 'profile_create_token' => 'Criar token', + 'profile_create' => 'Criar', + 'profile_save_changes' => 'Salvar alterações', + 'profile_whoops' => 'Ops!', + 'profile_something_wrong' => 'Alguma coisa deu errado!', + 'profile_try_again' => 'Algo deu errado. Por favor tente novamente.', + 'amounts' => 'Quantias', + 'multi_account_warning_unknown' => 'Dependendo do tipo de transação que você criar, a conta de origem e/ou de destino das divisões subsequentes pode ser sobrescrita pelo que estiver definido na primeira divisão da transação.', + 'multi_account_warning_withdrawal' => 'Tenha em mente que a conta de origem das divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão da saída.', + 'multi_account_warning_deposit' => 'Tenha em mente que a conta de destino das divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão da entrada.', + 'multi_account_warning_transfer' => 'Tenha em mente que a conta de origem + de destino das divisões subsequentes serão sobrescritas pelo que for definido na primeira divisão da transferência.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportar dados do Firefly III', - 'export_data_menu' => 'Exportar dados', - 'export_data_bc' => 'Exportar dados do Firefly III', - 'export_data_main_title' => 'Exportar dados do Firefly III', - 'export_data_expl' => 'Este botão permite que você exporte todas as transações e os metadados do Firefly lll. Por favor, consulte a ajuda (ícone no topo direito (?)) para mais informações sobre o processo.', - 'export_data_all_transactions' => 'Exportar todas as transações', - 'export_data_advanced_expl' => 'Se você precisa de um tipo mais avançado ou específico de exportação, leia a ajuda sobre como utilizar o console de comandos php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportar dados do Firefly III', + 'export_data_menu' => 'Exportar dados', + 'export_data_bc' => 'Exportar dados do Firefly III', + 'export_data_main_title' => 'Exportar dados do Firefly III', + 'export_data_expl' => 'Este botão permite que você exporte todas as transações e os metadados do Firefly lll. Por favor, consulte a ajuda (ícone no topo direito (?)) para mais informações sobre o processo.', + 'export_data_all_transactions' => 'Exportar todas as transações', + 'export_data_advanced_expl' => 'Se você precisa de um tipo mais avançado ou específico de exportação, leia a ajuda sobre como utilizar o console de comandos php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Um anexo|:count anexos', - 'attachments' => 'Anexos', - 'edit_attachment' => 'Editar anexo ":name"', - 'update_attachment' => 'Atualizar anexo', - 'delete_attachment' => 'Apagar anexo ":name"', - 'attachment_deleted' => 'Anexo apagado ":name"', - 'liabilities_deleted' => 'Passivo ":name" excluído', - 'attachment_updated' => 'Anexo atualizado ":name"', - 'upload_max_file_size' => 'Tamanho máximo do arquivo: :size', - 'list_all_attachments' => 'Lista de todos os anexos', + 'nr_of_attachments' => 'Um anexo|:count anexos', + 'attachments' => 'Anexos', + 'edit_attachment' => 'Editar anexo ":name"', + 'update_attachment' => 'Atualizar anexo', + 'delete_attachment' => 'Apagar anexo ":name"', + 'attachment_deleted' => 'Anexo apagado ":name"', + 'liabilities_deleted' => 'Passivo ":name" excluído', + 'attachment_updated' => 'Anexo atualizado ":name"', + 'upload_max_file_size' => 'Tamanho máximo do arquivo: :size', + 'list_all_attachments' => 'Lista de todos os anexos', // transaction index - 'is_reconciled_fields_dropped' => 'Como a transação está reconciliada, você não pode atualizar as contas, nem o(s) valor(es).', - 'title_expenses' => 'Despesas', - 'title_withdrawal' => 'Despesas', - 'title_revenue' => 'Receitas / Renda', - 'title_deposit' => 'Receita / Renda', - 'title_transfer' => 'Transferências', - 'title_transfers' => 'Transferências', - 'submission_options' => 'Opções de envio', - 'apply_rules_checkbox' => 'Aplicar regras', - 'fire_webhooks_checkbox' => 'Acionar webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Como a transação está reconciliada, você não pode atualizar as contas, nem o(s) valor(es).', + 'title_expenses' => 'Despesas', + 'title_withdrawal' => 'Despesas', + 'title_revenue' => 'Receitas / Renda', + 'title_deposit' => 'Receita / Renda', + 'title_transfer' => 'Transferências', + 'title_transfers' => 'Transferências', + 'submission_options' => 'Opções de envio', + 'apply_rules_checkbox' => 'Aplicar regras', + 'fire_webhooks_checkbox' => 'Acionar webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Esta transação já é uma saída', - 'convert_is_already_type_Deposit' => 'Esta transação já é uma entrada', - 'convert_is_already_type_Transfer' => 'Esta transação é já uma transferência', - 'convert_to_Withdrawal' => 'Converter ":description" para uma saída', - 'convert_to_Deposit' => 'Converter ":description" para uma entrada', - 'convert_to_Transfer' => 'Converter ":description" para uma transferência', - 'convert_options_WithdrawalDeposit' => 'Converter uma saída em uma entrada', - 'convert_options_WithdrawalTransfer' => 'Converter uma saída para uma transferência', - 'convert_options_DepositTransfer' => 'Converter uma entrada em uma transferência', - 'convert_options_DepositWithdrawal' => 'Converter uma entrada em uma saída', - 'convert_options_TransferWithdrawal' => 'Converter uma transferência em uma saída', - 'convert_options_TransferDeposit' => 'Converter uma transferência em uma entrada', - 'convert_Withdrawal_to_deposit' => 'Converter esta saída de uma entrada', - 'convert_Withdrawal_to_transfer' => 'Converter esta saída para uma transferência', - 'convert_Deposit_to_withdrawal' => 'Converter esta entrada para uma saída', - 'convert_Deposit_to_transfer' => 'Converter esta entrada para uma transferência', - 'convert_Transfer_to_deposit' => 'Converter esta transferência para uma entrada', - 'convert_Transfer_to_withdrawal' => 'Converter esta transferência em uma saída', - 'convert_please_set_revenue_source' => 'Por favor, escolha a conta de receitas de onde virá o dinheiro.', - 'convert_please_set_asset_destination' => 'Por favor, escolha a conta de ativo para onde vai o dinheiro.', - 'convert_please_set_expense_destination' => 'Por favor, escolha a conta de despesas para onde o dinheiro vai.', - 'convert_please_set_asset_source' => 'Por favor, escolha a conta de ativo, de onde virá o dinheiro.', - 'convert_expl_w_d' => 'Ao converter uma saída para uma entrada, o dinheiro será depositado na conta de destino exibida, em vez de ser retirado dela.|Ao converter uma saída para uma entrada, o dinheiro será depositado nas contas de destino exibidas, em vez de ser retirado delas.', - 'convert_expl_w_t' => 'Ao converter uma saída em uma transferência, o dinheiro será transferido para fora da conta de origem para outra conta de ativo ou conta de responsabilidade em vez de ser gasto na conta de despesa original.|Ao converter uma saída em uma transferência, o dinheiro será transferido das contas de origem para outras contas de ativo ou contas de responsabilidade em vez de ser gasto nas contas de despesas originais.', - 'convert_expl_d_w' => 'Ao converter uma entrada para uma saída, o dinheiro será retirado da conta de destino exibida, em vez de ser depositado nela.|Ao converter uma entrada para uma entrada, o dinheiro será retirado das contas de destino exibidas, em vez de ser depositados nelas.', - 'convert_expl_d_t' => 'Quando você converte uma entrada em uma transferência, o dinheiro será depositado na conta de destino listada de sua conta de ativo ou de responsabilidade.|Quando você converter uma entrada em uma transferência, o dinheiro será depositado nas contas de destino listadas de qualquer um dos seus ativos ou contas de responsabilidade.', - 'convert_expl_t_w' => 'Quando você converter uma transferência em uma saída, o dinheiro será gasto na conta de destino que você definir aqui, em vez de ser transferido.|Quando você converter uma transferência em uma saída, o dinheiro será gasto nas contas de destino que você definir aqui, em vez de ser transferido.', - 'convert_expl_t_d' => 'Quando você converte uma transferência ema uma entrada, o dinheiro será depositado na conta de destino que você vê aqui, em vez de ser transferido para ele.|Quando você converte uma transferência em uma entrada, o dinheiro será depositado nas contas de destino que você vê aqui, em vez de ser transferido para elas.', - 'convert_select_sources' => 'Para completar a conversão, defina a nova conta de origem abaixo.|Para completar a conversão, por favor, defina as novas contas de origem abaixo.', - 'convert_select_destinations' => 'Para completar a conversão, por favor, selecione a nova conta de destino abaixo.|Para completar a conversão, selecione as novas contas de destino abaixo.', - 'converted_to_Withdrawal' => 'A transação foi convertida em uma saída', - 'converted_to_Deposit' => 'A transação foi convertida em entrada', - 'converted_to_Transfer' => 'A transação foi convertida em uma transferência', - 'invalid_convert_selection' => 'A conta que você selecionou já é usada nesta transação ou não existe.', - 'source_or_dest_invalid' => 'Os detalhes corretos da transação não foram encontrados. A conversão não é possível.', - 'convert_to_withdrawal' => 'Converter para saída', - 'convert_to_deposit' => 'Converter para entrada', - 'convert_to_transfer' => 'Converter para transferência', + 'convert_is_already_type_Withdrawal' => 'Esta transação já é uma saída', + 'convert_is_already_type_Deposit' => 'Esta transação já é uma entrada', + 'convert_is_already_type_Transfer' => 'Esta transação é já uma transferência', + 'convert_to_Withdrawal' => 'Converter ":description" para uma saída', + 'convert_to_Deposit' => 'Converter ":description" para uma entrada', + 'convert_to_Transfer' => 'Converter ":description" para uma transferência', + 'convert_options_WithdrawalDeposit' => 'Converter uma saída em uma entrada', + 'convert_options_WithdrawalTransfer' => 'Converter uma saída para uma transferência', + 'convert_options_DepositTransfer' => 'Converter uma entrada em uma transferência', + 'convert_options_DepositWithdrawal' => 'Converter uma entrada em uma saída', + 'convert_options_TransferWithdrawal' => 'Converter uma transferência em uma saída', + 'convert_options_TransferDeposit' => 'Converter uma transferência em uma entrada', + 'convert_Withdrawal_to_deposit' => 'Converter esta saída de uma entrada', + 'convert_Withdrawal_to_transfer' => 'Converter esta saída para uma transferência', + 'convert_Deposit_to_withdrawal' => 'Converter esta entrada para uma saída', + 'convert_Deposit_to_transfer' => 'Converter esta entrada para uma transferência', + 'convert_Transfer_to_deposit' => 'Converter esta transferência para uma entrada', + 'convert_Transfer_to_withdrawal' => 'Converter esta transferência em uma saída', + 'convert_please_set_revenue_source' => 'Por favor, escolha a conta de receitas de onde virá o dinheiro.', + 'convert_please_set_asset_destination' => 'Por favor, escolha a conta de ativo para onde vai o dinheiro.', + 'convert_please_set_expense_destination' => 'Por favor, escolha a conta de despesas para onde o dinheiro vai.', + 'convert_please_set_asset_source' => 'Por favor, escolha a conta de ativo, de onde virá o dinheiro.', + 'convert_expl_w_d' => 'Ao converter uma saída para uma entrada, o dinheiro será depositado na conta de destino exibida, em vez de ser retirado dela.|Ao converter uma saída para uma entrada, o dinheiro será depositado nas contas de destino exibidas, em vez de ser retirado delas.', + 'convert_expl_w_t' => 'Ao converter uma saída em uma transferência, o dinheiro será transferido para fora da conta de origem para outra conta de ativo ou conta de responsabilidade em vez de ser gasto na conta de despesa original.|Ao converter uma saída em uma transferência, o dinheiro será transferido das contas de origem para outras contas de ativo ou contas de responsabilidade em vez de ser gasto nas contas de despesas originais.', + 'convert_expl_d_w' => 'Ao converter uma entrada para uma saída, o dinheiro será retirado da conta de destino exibida, em vez de ser depositado nela.|Ao converter uma entrada para uma entrada, o dinheiro será retirado das contas de destino exibidas, em vez de ser depositados nelas.', + 'convert_expl_d_t' => 'Quando você converte uma entrada em uma transferência, o dinheiro será depositado na conta de destino listada de sua conta de ativo ou de responsabilidade.|Quando você converter uma entrada em uma transferência, o dinheiro será depositado nas contas de destino listadas de qualquer um dos seus ativos ou contas de responsabilidade.', + 'convert_expl_t_w' => 'Quando você converter uma transferência em uma saída, o dinheiro será gasto na conta de destino que você definir aqui, em vez de ser transferido.|Quando você converter uma transferência em uma saída, o dinheiro será gasto nas contas de destino que você definir aqui, em vez de ser transferido.', + 'convert_expl_t_d' => 'Quando você converte uma transferência ema uma entrada, o dinheiro será depositado na conta de destino que você vê aqui, em vez de ser transferido para ele.|Quando você converte uma transferência em uma entrada, o dinheiro será depositado nas contas de destino que você vê aqui, em vez de ser transferido para elas.', + 'convert_select_sources' => 'Para completar a conversão, defina a nova conta de origem abaixo.|Para completar a conversão, por favor, defina as novas contas de origem abaixo.', + 'convert_select_destinations' => 'Para completar a conversão, por favor, selecione a nova conta de destino abaixo.|Para completar a conversão, selecione as novas contas de destino abaixo.', + 'converted_to_Withdrawal' => 'A transação foi convertida em uma saída', + 'converted_to_Deposit' => 'A transação foi convertida em entrada', + 'converted_to_Transfer' => 'A transação foi convertida em uma transferência', + 'invalid_convert_selection' => 'A conta que você selecionou já é usada nesta transação ou não existe.', + 'source_or_dest_invalid' => 'Os detalhes corretos da transação não foram encontrados. A conversão não é possível.', + 'convert_to_withdrawal' => 'Converter para saída', + 'convert_to_deposit' => 'Converter para entrada', + 'convert_to_transfer' => 'Converter para transferência', // create new stuff: - 'create_new_withdrawal' => 'Criar nova saída', - 'create_new_deposit' => 'Criar uma nova entrada', - 'create_new_transfer' => 'Criar nova transferência', - 'create_new_asset' => 'Criar nova conta de ativo', - 'create_new_liabilities' => 'Criar novo passivo', - 'create_new_expense' => 'Criar nova conta de despesa', - 'create_new_revenue' => 'Criar nova conta de receita', - 'create_new_piggy_bank' => 'Criar novo cofrinho', - 'create_new_bill' => 'Criar nova conta', - 'create_new_subscription' => 'Criar nova assinatura', - 'create_new_rule' => 'Criar nova regra', + 'create_new_withdrawal' => 'Criar nova saída', + 'create_new_deposit' => 'Criar uma nova entrada', + 'create_new_transfer' => 'Criar nova transferência', + 'create_new_asset' => 'Criar nova conta de ativo', + 'create_new_liabilities' => 'Criar novo passivo', + 'create_new_expense' => 'Criar nova conta de despesa', + 'create_new_revenue' => 'Criar nova conta de receita', + 'create_new_piggy_bank' => 'Criar novo cofrinho', + 'create_new_bill' => 'Criar nova conta', + 'create_new_subscription' => 'Criar nova assinatura', + 'create_new_rule' => 'Criar nova regra', // currencies: - 'create_currency' => 'Criar uma nova moeda', - 'store_currency' => 'Armazenar nova moeda', - 'update_currency' => 'Atualizar moeda', - 'new_default_currency' => '":name" é agora a moeda padrão.', - 'default_currency_failed' => 'Não foi possível tornar ":name" a moeda padrão. Por favor, verifique os logs.', - 'cannot_delete_currency' => 'Não é possível excluir :name porque ainda está em uso.', - 'cannot_delete_fallback_currency' => ':name é a moeda padrão do sistema e não pode ser excluída.', - 'cannot_disable_currency_journals' => 'Não é possível desativar :name porque as transações ainda estão a usando.', - 'cannot_disable_currency_last_left' => ':name não pode ser desabilitada pois essa é a única moeda ativa.', - 'cannot_disable_currency_account_meta' => ':name não pode ser desabilitada pois é utilizada nas contas de ativos.', - 'cannot_disable_currency_bills' => ':name não pode ser desabilitada pois é utilizada nas faturas.', - 'cannot_disable_currency_recurring' => ':name não pode ser desabilitada pois é utilizada nas transações recorrentes.', - 'cannot_disable_currency_available_budgets' => ':name não pode ser desabilitada pois é utilizada em orçamentos existentes.', - 'cannot_disable_currency_budget_limits' => ':name não pode ser desabilitada pois é utilizada em limites dos orçamentos.', - 'cannot_disable_currency_current_default' => ':name não pode ser desabilitada pois é moeda atualmente utilizada.', - 'cannot_disable_currency_system_fallback' => ':name não pode ser desabilitada pois é moeda padrão do sistema.', - 'disable_EUR_side_effects' => 'O Euro é a moeda de recurso de emergência do sistema. Desativar pode ter efeitos colaterais indesejados e pode violar sua garantia.', - 'deleted_currency' => 'Moeda :name excluída', - 'created_currency' => 'Moeda :name criada', - 'could_not_store_currency' => 'Não foi possível guardar a nova moeda.', - 'updated_currency' => 'Moeda :name atualizada', - 'ask_site_owner' => 'Por favor, peça para :owner para adicionar, remover ou editar moedas.', - 'currencies_intro' => 'Firefly III oferece suporte a várias moedas que você pode definir e ativar aqui.', - 'make_default_currency' => 'Tornar padrão', - 'default_currency' => 'padrão', - 'currency_is_disabled' => 'Desabilitado', - 'enable_currency' => 'Habilitar', - 'disable_currency' => 'Desabilitar', - 'currencies_default_disabled' => 'A maioria das moedas é desabilitada por padrão. Para usá-las, você deve primeiro habilitá-las.', - 'currency_is_now_enabled' => 'Moeda ":name" foi ativada', - 'could_not_enable_currency' => 'Não foi possível habilitar a moeda ":name". Por favor, revise os logs.', - 'currency_is_now_disabled' => 'Moeda ":name" foi desativada', - 'could_not_disable_currency' => 'Não foi possível desabilitar a moeda ":name". Será que ainda está em uso?', + 'create_currency' => 'Criar uma nova moeda', + 'store_currency' => 'Armazenar nova moeda', + 'update_currency' => 'Atualizar moeda', + 'new_default_currency' => '":name" é agora a moeda padrão.', + 'default_currency_failed' => 'Não foi possível tornar ":name" a moeda padrão. Por favor, verifique os logs.', + 'cannot_delete_currency' => 'Não é possível excluir :name porque ainda está em uso.', + 'cannot_delete_fallback_currency' => ':name é a moeda padrão do sistema e não pode ser excluída.', + 'cannot_disable_currency_journals' => 'Não é possível desativar :name porque as transações ainda estão a usando.', + 'cannot_disable_currency_last_left' => ':name não pode ser desabilitada pois essa é a única moeda ativa.', + 'cannot_disable_currency_account_meta' => ':name não pode ser desabilitada pois é utilizada nas contas de ativos.', + 'cannot_disable_currency_bills' => ':name não pode ser desabilitada pois é utilizada nas faturas.', + 'cannot_disable_currency_recurring' => ':name não pode ser desabilitada pois é utilizada nas transações recorrentes.', + 'cannot_disable_currency_available_budgets' => ':name não pode ser desabilitada pois é utilizada em orçamentos existentes.', + 'cannot_disable_currency_budget_limits' => ':name não pode ser desabilitada pois é utilizada em limites dos orçamentos.', + 'cannot_disable_currency_current_default' => ':name não pode ser desabilitada pois é moeda atualmente utilizada.', + 'cannot_disable_currency_system_fallback' => ':name não pode ser desabilitada pois é moeda padrão do sistema.', + 'disable_EUR_side_effects' => 'O Euro é a moeda de recurso de emergência do sistema. Desativar pode ter efeitos colaterais indesejados e pode violar sua garantia.', + 'deleted_currency' => 'Moeda :name excluída', + 'created_currency' => 'Moeda :name criada', + 'could_not_store_currency' => 'Não foi possível guardar a nova moeda.', + 'updated_currency' => 'Moeda :name atualizada', + 'ask_site_owner' => 'Por favor, peça para :owner para adicionar, remover ou editar moedas.', + 'currencies_intro' => 'Firefly III oferece suporte a várias moedas que você pode definir e ativar aqui.', + 'make_default_currency' => 'Tornar padrão', + 'default_currency' => 'padrão', + 'currency_is_disabled' => 'Desabilitado', + 'enable_currency' => 'Habilitar', + 'disable_currency' => 'Desabilitar', + 'currencies_default_disabled' => 'A maioria das moedas é desabilitada por padrão. Para usá-las, você deve primeiro habilitá-las.', + 'currency_is_now_enabled' => 'Moeda ":name" foi ativada', + 'could_not_enable_currency' => 'Não foi possível habilitar a moeda ":name". Por favor, revise os logs.', + 'currency_is_now_disabled' => 'Moeda ":name" foi desativada', + 'could_not_disable_currency' => 'Não foi possível desabilitar a moeda ":name". Será que ainda está em uso?', // forms: - 'mandatoryFields' => 'Campos obrigatórios', - 'optionalFields' => 'Campos opcionais', - 'options' => 'Opções', + 'mandatoryFields' => 'Campos obrigatórios', + 'optionalFields' => 'Campos opcionais', + 'options' => 'Opções', // budgets: - 'daily_budgets' => 'Orçamentos diários', - 'weekly_budgets' => 'Orçamentos semanais', - 'monthly_budgets' => 'Orçamentos mensais', - 'quarterly_budgets' => 'Orçamentos trimestrais', - 'half_year_budgets' => 'Orçamentos semestrais', - 'yearly_budgets' => 'Orçamentos anuais', - 'other_budgets' => 'Orçamentos de períodos personalizados', - 'budget_limit_not_in_range' => 'Esta quantia aplica-se de :start a :end:', - 'total_available_budget' => 'Total de orçamentos disponíveis (entre :start e :end)', - 'total_available_budget_in_currency' => 'Orçamentos disponíveis em :currency', - 'see_below' => 'veja abaixo', - 'create_new_budget' => 'Criar um novo orçamento', - 'store_new_budget' => 'Armazenar novo orçamento', - 'stored_new_budget' => 'Novo orçamento armazenado ":name"', - 'available_between' => 'Disponível entre :start e :end', - 'transactionsWithoutBudget' => 'Despesas sem orçamentos', - 'transactions_no_budget' => 'Despesas sem orçamento entre :start e :end', - 'spent_between' => 'Gasto entre :start e :end', - 'spent_between_left' => 'Gasto :spent entre :start e :end, restando :left.', - 'set_available_amount' => 'Definir o valor disponível', - 'update_available_amount' => 'Atualizar o valor disponível', - 'ab_basic_modal_explain' => 'Use este formulário para indicar quanto você espera gastar (no total, em :currency) no período indicado.', - 'createBudget' => 'Novo orçamento', - 'invalid_currency' => 'Esta é uma moeda inválida', - 'invalid_amount' => 'Por favor, insira uma quantidade', - 'set_ab' => 'O valor do orçamento disponível foi definido', - 'updated_ab' => 'O montante do orçamento disponível foi atualizado', - 'deleted_ab' => 'O montante do orçamento disponível foi excluído', - 'deleted_bl' => 'O valor orçado foi removido', - 'alt_currency_ab_create' => 'Definir o orçamento disponível em outra moeda', - 'bl_create_btn' => 'Definir o orçamento em outra moeda', - 'inactiveBudgets' => 'Orçamentos inativos', - 'without_budget_between' => 'Transações sem um orçamento entre :start e :end', - 'delete_budget' => 'Excluir orçamento ":name"', - 'deleted_budget' => 'Orçamento ":name" excluído', - 'edit_budget' => 'Editar orçamento ":name"', - 'updated_budget' => 'Orçamento atualizado ":name"', - 'update_amount' => 'Atualizar quantia', - 'update_budget' => 'Atualizar Orçamento', - 'update_budget_amount_range' => 'Atualizar quantia disponível (esperada) entre :start e :end', - 'set_budget_limit_title' => 'Definir valor para o orçamento :budget entre :start e :end', - 'set_budget_limit' => 'Definir valor orçado', - 'budget_period_navigator' => 'Navegador do período', - 'info_on_available_amount' => 'O que tenho disponível?', - 'available_amount_indication' => 'Use esses montantes para obter uma indicação do que seu orçamento total poderia ser.', - 'suggested' => 'Sugerido', - 'average_between' => 'Média entre :start e :end', - 'transferred_in' => 'Transferido (para)', - 'transferred_away' => 'Transferido (fora)', - 'auto_budget_none' => 'Sem orçamento automático', - 'auto_budget_reset' => 'Definir um valor fixo a cada período', - 'auto_budget_rollover' => 'Adicionar valor a cada período', - 'auto_budget_adjusted' => 'Adicionar um valor a cada período e corrigir para gastos excessivos', - 'auto_budget_period_daily' => 'Diariamente', - 'auto_budget_period_weekly' => 'Semanalmente', - 'auto_budget_period_monthly' => 'Mensalmente', - 'auto_budget_period_quarterly' => 'Trimestralmente', - 'auto_budget_period_half_year' => 'A cada semestre', - 'auto_budget_period_yearly' => 'Anualmente', - 'auto_budget_help' => 'Você pode ler mais sobre esta função na seção ajuda. Clique no ícone superior direito (?).', - 'auto_budget_reset_icon' => 'Este orçamento será definido periodicamente', - 'auto_budget_rollover_icon' => 'O valor orçado aumentará periodicamente', - 'auto_budget_adjusted_icon' => 'O valor do orçamento aumentará periodicamente e corrigirá para gastos excessivos', - 'remove_budgeted_amount' => 'Remover montante orçado em :currency', + 'daily_budgets' => 'Orçamentos diários', + 'weekly_budgets' => 'Orçamentos semanais', + 'monthly_budgets' => 'Orçamentos mensais', + 'quarterly_budgets' => 'Orçamentos trimestrais', + 'half_year_budgets' => 'Orçamentos semestrais', + 'yearly_budgets' => 'Orçamentos anuais', + 'other_budgets' => 'Orçamentos de períodos personalizados', + 'budget_limit_not_in_range' => 'Esta quantia aplica-se de :start a :end:', + 'total_available_budget' => 'Total de orçamentos disponíveis (entre :start e :end)', + 'total_available_budget_in_currency' => 'Orçamentos disponíveis em :currency', + 'see_below' => 'veja abaixo', + 'create_new_budget' => 'Criar um novo orçamento', + 'store_new_budget' => 'Armazenar novo orçamento', + 'stored_new_budget' => 'Novo orçamento armazenado ":name"', + 'available_between' => 'Disponível entre :start e :end', + 'transactionsWithoutBudget' => 'Despesas sem orçamentos', + 'transactions_no_budget' => 'Despesas sem orçamento entre :start e :end', + 'spent_between' => 'Gasto entre :start e :end', + 'spent_between_left' => 'Gasto :spent entre :start e :end, restando :left.', + 'set_available_amount' => 'Definir o valor disponível', + 'update_available_amount' => 'Atualizar o valor disponível', + 'ab_basic_modal_explain' => 'Use este formulário para indicar quanto você espera gastar (no total, em :currency) no período indicado.', + 'createBudget' => 'Novo orçamento', + 'invalid_currency' => 'Esta é uma moeda inválida', + 'invalid_amount' => 'Por favor, insira uma quantidade', + 'set_ab' => 'O valor do orçamento disponível foi definido', + 'updated_ab' => 'O montante do orçamento disponível foi atualizado', + 'deleted_ab' => 'O montante do orçamento disponível foi excluído', + 'deleted_bl' => 'O valor orçado foi removido', + 'alt_currency_ab_create' => 'Definir o orçamento disponível em outra moeda', + 'bl_create_btn' => 'Definir o orçamento em outra moeda', + 'inactiveBudgets' => 'Orçamentos inativos', + 'without_budget_between' => 'Transações sem um orçamento entre :start e :end', + 'delete_budget' => 'Excluir orçamento ":name"', + 'deleted_budget' => 'Orçamento ":name" excluído', + 'edit_budget' => 'Editar orçamento ":name"', + 'updated_budget' => 'Orçamento atualizado ":name"', + 'update_amount' => 'Atualizar quantia', + 'update_budget' => 'Atualizar Orçamento', + 'update_budget_amount_range' => 'Atualizar quantia disponível (esperada) entre :start e :end', + 'set_budget_limit_title' => 'Definir valor para o orçamento :budget entre :start e :end', + 'set_budget_limit' => 'Definir valor orçado', + 'budget_period_navigator' => 'Navegador do período', + 'info_on_available_amount' => 'O que tenho disponível?', + 'available_amount_indication' => 'Use esses montantes para obter uma indicação do que seu orçamento total poderia ser.', + 'suggested' => 'Sugerido', + 'average_between' => 'Média entre :start e :end', + 'transferred_in' => 'Transferido (para)', + 'transferred_away' => 'Transferido (fora)', + 'auto_budget_none' => 'Sem orçamento automático', + 'auto_budget_reset' => 'Definir um valor fixo a cada período', + 'auto_budget_rollover' => 'Adicionar valor a cada período', + 'auto_budget_adjusted' => 'Adicionar um valor a cada período e corrigir para gastos excessivos', + 'auto_budget_period_daily' => 'Diariamente', + 'auto_budget_period_weekly' => 'Semanalmente', + 'auto_budget_period_monthly' => 'Mensalmente', + 'auto_budget_period_quarterly' => 'Trimestralmente', + 'auto_budget_period_half_year' => 'A cada semestre', + 'auto_budget_period_yearly' => 'Anualmente', + 'auto_budget_help' => 'Você pode ler mais sobre esta função na seção ajuda. Clique no ícone superior direito (?).', + 'auto_budget_reset_icon' => 'Este orçamento será definido periodicamente', + 'auto_budget_rollover_icon' => 'O valor orçado aumentará periodicamente', + 'auto_budget_adjusted_icon' => 'O valor do orçamento aumentará periodicamente e corrigirá para gastos excessivos', + 'remove_budgeted_amount' => 'Remover montante orçado em :currency', // bills: - 'subscription' => 'Assinatura', - 'not_expected_period' => 'Não esperado este período', - 'subscriptions_in_group' => 'Assinaturas no grupo "%{title}"', - 'subscr_expected_x_times' => 'Espera-se pagar %{amount} %{times} vezes neste período', - 'not_or_not_yet' => 'Não (ainda)', - 'visit_bill' => 'Visite a fatura ":name" no Firefly III', - 'match_between_amounts' => 'Fatura corresponde a transações entre :low e :high.', - 'running_again_loss' => 'Transações previamente vinculadas a esta fatura podem perder sua conexão, se elas (não mais) corresponderem à(s) regra(s).', - 'bill_related_rules' => 'Regras relacionadas a essa fatura', - 'repeats' => 'Repetições', - 'bill_end_date_help' => 'Campo opcional. Espera-se que a fatura termine nesta data.', - 'bill_extension_date_help' => 'Campo opcional. A fatura deve ser renovada (ou cancelada) nesta ou antes desta data.', - 'bill_end_index_line' => 'Esta fatura termina em :date', - 'bill_extension_index_line' => 'Esta fatura deve ser renovada ou cancelada em :date', - 'connected_journals' => 'Transações conectadas', - 'auto_match_on' => 'Automaticamente correspondente com Firefly III', - 'auto_match_off' => 'Não corresponde automaticamente com Firefly III', - 'next_expected_match' => 'Próximo correspondente esperado', - 'delete_bill' => 'Apagar conta ":name"', - 'deleted_bill' => 'Fatura ":name" apagada', - 'edit_bill' => 'Editar conta ":name"', - 'more' => 'Mais', - 'rescan_old' => 'Executar regras novamente, em todas as transações', - 'update_bill' => 'Atualizar conta', - 'updated_bill' => 'Conta atualizada ":name"', - 'store_new_bill' => 'Armazenar nova conta', - 'stored_new_bill' => 'Nova conta armazenada ":name"', - 'cannot_scan_inactive_bill' => 'Faturas inativas não podem ser verificadas.', - 'rescanned_bill' => 'Verificamos tudo e vinculamos :count transação para a fatura.|Verificamos tudo e vinculamos :count transações para a fatura.', - 'average_bill_amount_year' => 'Média de fatura (:year)', - 'average_bill_amount_overall' => 'Valor médio de conta (geral)', - 'bill_is_active' => 'Fatura está ativa', - 'bill_expected_between' => 'Esperado entre :start e :end', - 'bill_will_automatch' => 'A fatura será automaticamente vinculada a transações correspondentes', - 'skips_over' => 'ignorar', - 'bill_store_error' => 'Um erro inesperado ocorreu ao armazenar sua nova fatura. Por favor, verifique os arquivos de log', - 'list_inactive_rule' => 'regra inativa', - 'bill_edit_rules' => 'O Firefly III tentará editar a regra relacionada a esta fatura também. Se você editou essa regra, o Firefly III não vai mudar nada. |Firefly III tentará editar :count regras relacionadas a esta fatura também. Se você editou essas regras, no entanto, o Firefly III não vai mudar nada.', - 'bill_expected_date' => 'Esperado :date', - 'bill_expected_date_js' => 'Esperado {date}', - 'expected_amount' => 'Valor (esperado)', - 'bill_paid_on' => 'Pago em {date}', - 'bill_repeats_weekly' => 'Repete semanalmente', - 'bill_repeats_monthly' => 'Repete mensalmente', - 'bill_repeats_quarterly' => 'Repete trimestralmente', - 'bill_repeats_half-year' => 'Repete a cada semestre', - 'bill_repeats_yearly' => 'Repete anualmente', - 'bill_repeats_weekly_other' => 'Repete quinzenalmente', - 'bill_repeats_monthly_other' => 'Repete bimestralmente', - 'bill_repeats_quarterly_other' => 'Repete a cada dois trimestres', - 'bill_repeats_half-year_other' => 'Repete anualmente', - 'bill_repeats_yearly_other' => 'Repete a cada dois anos', - 'bill_repeats_weekly_skip' => 'Repete a cada {skip} semanas', - 'bill_repeats_monthly_skip' => 'Repete a cada {skip} meses', - 'bill_repeats_quarterly_skip' => 'Repete a cada {skip} trimestres', - 'bill_repeats_half-year_skip' => 'Repete a cada {skip} semestres', - 'bill_repeats_yearly_skip' => 'Repete a cada {skip} anos', - 'subscriptions' => 'Assinaturas', - 'go_to_subscriptions' => 'Vá para suas assinaturas', - 'forever' => 'Para sempre', - 'extension_date_is' => 'Data da extensão é {date}', + 'subscription' => 'Assinatura', + 'not_expected_period' => 'Não esperado este período', + 'subscriptions_in_group' => 'Assinaturas no grupo "%{title}"', + 'subscr_expected_x_times' => 'Espera-se pagar %{amount} %{times} vezes neste período', + 'not_or_not_yet' => 'Não (ainda)', + 'visit_bill' => 'Visite a fatura ":name" no Firefly III', + 'match_between_amounts' => 'Fatura corresponde a transações entre :low e :high.', + 'running_again_loss' => 'Transações previamente vinculadas a esta fatura podem perder sua conexão, se elas (não mais) corresponderem à(s) regra(s).', + 'bill_related_rules' => 'Regras relacionadas a essa fatura', + 'repeats' => 'Repetições', + 'bill_end_date_help' => 'Campo opcional. Espera-se que a fatura termine nesta data.', + 'bill_extension_date_help' => 'Campo opcional. A fatura deve ser renovada (ou cancelada) nesta ou antes desta data.', + 'bill_end_index_line' => 'Esta fatura termina em :date', + 'bill_extension_index_line' => 'Esta fatura deve ser renovada ou cancelada em :date', + 'connected_journals' => 'Transações conectadas', + 'auto_match_on' => 'Automaticamente correspondente com Firefly III', + 'auto_match_off' => 'Não corresponde automaticamente com Firefly III', + 'next_expected_match' => 'Próximo correspondente esperado', + 'delete_bill' => 'Apagar conta ":name"', + 'deleted_bill' => 'Fatura ":name" apagada', + 'edit_bill' => 'Editar conta ":name"', + 'more' => 'Mais', + 'rescan_old' => 'Executar regras novamente, em todas as transações', + 'update_bill' => 'Atualizar conta', + 'updated_bill' => 'Conta atualizada ":name"', + 'store_new_bill' => 'Armazenar nova conta', + 'stored_new_bill' => 'Nova conta armazenada ":name"', + 'cannot_scan_inactive_bill' => 'Faturas inativas não podem ser verificadas.', + 'rescanned_bill' => 'Verificamos tudo e vinculamos :count transação para a fatura.|Verificamos tudo e vinculamos :count transações para a fatura.', + 'average_bill_amount_year' => 'Média de fatura (:year)', + 'average_bill_amount_overall' => 'Valor médio de conta (geral)', + 'bill_is_active' => 'Fatura está ativa', + 'bill_expected_between' => 'Esperado entre :start e :end', + 'bill_will_automatch' => 'A fatura será automaticamente vinculada a transações correspondentes', + 'skips_over' => 'ignorar', + 'bill_store_error' => 'Um erro inesperado ocorreu ao armazenar sua nova fatura. Por favor, verifique os arquivos de log', + 'list_inactive_rule' => 'regra inativa', + 'bill_edit_rules' => 'O Firefly III tentará editar a regra relacionada a esta fatura também. Se você editou essa regra, o Firefly III não vai mudar nada. |Firefly III tentará editar :count regras relacionadas a esta fatura também. Se você editou essas regras, no entanto, o Firefly III não vai mudar nada.', + 'bill_expected_date' => 'Esperado :date', + 'bill_expected_date_js' => 'Esperado {date}', + 'expected_amount' => 'Valor (esperado)', + 'bill_paid_on' => 'Pago em {date}', + 'bill_repeats_weekly' => 'Repete semanalmente', + 'bill_repeats_monthly' => 'Repete mensalmente', + 'bill_repeats_quarterly' => 'Repete trimestralmente', + 'bill_repeats_half-year' => 'Repete a cada semestre', + 'bill_repeats_yearly' => 'Repete anualmente', + 'bill_repeats_weekly_other' => 'Repete quinzenalmente', + 'bill_repeats_monthly_other' => 'Repete bimestralmente', + 'bill_repeats_quarterly_other' => 'Repete a cada dois trimestres', + 'bill_repeats_half-year_other' => 'Repete anualmente', + 'bill_repeats_yearly_other' => 'Repete a cada dois anos', + 'bill_repeats_weekly_skip' => 'Repete a cada {skip} semanas', + 'bill_repeats_monthly_skip' => 'Repete a cada {skip} meses', + 'bill_repeats_quarterly_skip' => 'Repete a cada {skip} trimestres', + 'bill_repeats_half-year_skip' => 'Repete a cada {skip} semestres', + 'bill_repeats_yearly_skip' => 'Repete a cada {skip} anos', + 'subscriptions' => 'Assinaturas', + 'go_to_subscriptions' => 'Vá para suas assinaturas', + 'forever' => 'Para sempre', + 'extension_date_is' => 'Data da extensão é {date}', // accounts: - 'i_am_owed_amount' => 'Eu tenho uma dívida a receber', - 'i_owe_amount' => 'Valor do passivo', - 'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que você pode ver nesta página separada.|Você tem :count contas inativas (arquivadas), que você pode ver nesta página separada.', - 'all_accounts_inactive' => 'Estas são as suas contas inativas.', - 'active_account_link' => 'Este link volta para suas contas ativas.', - 'account_missing_transaction' => 'Conta #:id (":name") não pode ser visualizada diretamente, mas o Firefly está sem informação de redirecionamento.', - 'cc_monthly_payment_date_help' => 'Selecione qualquer ano e mês, eles serão ignorados. Apenas o dia do mês é relevante.', - 'details_for_asset' => 'Detalhes para a conta de ativo ":name"', - 'details_for_expense' => 'Detalhes para a conta de despesas ":name"', - 'details_for_revenue' => 'Detalhes para a conta de receitas ":name"', - 'details_for_cash' => 'Detalhes para a conta de dinheiro ":name"', - 'store_new_asset_account' => 'Armazenar nova conta de ativo', - 'store_new_expense_account' => 'Armazenar nova conta de despesa', - 'store_new_revenue_account' => 'Armazenar nova conta de receita', - 'edit_asset_account' => 'Editar conta de ativo ":name"', - 'edit_expense_account' => 'Editar conta de despesa ":name"', - 'edit_revenue_account' => 'Editar conta de receitas ":name"', - 'delete_asset_account' => 'Excluir conta de ativo ":name"', - 'delete_expense_account' => 'Excluir conta de despesas ":name"', - 'delete_revenue_account' => 'Excluir conta de receitas ":name"', - 'delete_liabilities_account' => 'Apagar passivo ":name"', - 'asset_deleted' => 'Conta de ativo ":name" excluída com sucesso', - 'account_deleted' => 'Conta ":name" deletada com sucesso', - 'expense_deleted' => 'Conta de despesa ":name" excluída com sucesso', - 'revenue_deleted' => 'Conta de receitas ":name" excluída com sucesso', - 'update_asset_account' => 'Atualizar de conta de ativo', - 'update_undefined_account' => 'Atualizar conta', - 'update_liabilities_account' => 'Atualizar passivo', - 'update_expense_account' => 'Atualizar conta de despesas', - 'update_revenue_account' => 'Atualizar conta de receita', - 'make_new_asset_account' => 'Criar uma nova conta de ativo', - 'make_new_expense_account' => 'Criar uma nova conta de despesa', - 'make_new_revenue_account' => 'Criar uma nova conta de receita', - 'make_new_liabilities_account' => 'Criar um novo passivo', - 'asset_accounts' => 'Contas de ativo', - 'undefined_accounts' => 'Contas', - 'asset_accounts_inactive' => 'Contas de ativos (inativas)', - 'expense_account' => 'Conta de despesas', - 'expense_accounts' => 'Contas de despesas', - 'expense_accounts_inactive' => 'Contas de despesas (inativas)', - 'revenue_account' => 'Conta de Receitas', - 'revenue_accounts' => 'Contas de receitas', - 'revenue_accounts_inactive' => 'Contas de receita (inativas)', - 'cash_accounts' => 'Contas Correntes', - 'Cash account' => 'Conta Corrente', - 'liabilities_accounts' => 'Passivos', - 'liabilities_accounts_inactive' => 'Passivos (inativos)', - 'reconcile_account' => 'Reconciliar conta ":account"', - 'overview_of_reconcile_modal' => 'Visão geral da reconciliação', - 'delete_reconciliation' => 'Eliminar reconciliação', - 'update_reconciliation' => 'Atualizar a reconciliação', - 'amount_cannot_be_zero' => 'O valor não pode ser zero', - 'end_of_reconcile_period' => 'Período de fim de reconciliação: :period', - 'start_of_reconcile_period' => 'Início do período de reconciliação: :period', - 'start_balance' => 'Saldo Inicial', - 'end_balance' => 'Saldo Final', - 'update_balance_dates_instruction' => 'Corresponda os valores e datas acima do seu extracto bancário e pressione "Começar reconciliar"', - 'select_transactions_instruction' => 'Selecione as transações que aparecem no extrato bancário.', - 'select_range_and_balance' => 'Primeiro, verifique o intervalo de datas e os saldos. Em seguida, pressione "Iniciar reconciliação"', - 'date_change_instruction' => 'Se você alterar o intervalo de datas agora, qualquer progresso será perdido.', - 'update_selection' => 'Atualizar seleção', - 'store_reconcile' => 'Armazenar reconciliação', - 'reconciliation_transaction' => 'Transação de reconciliação', - 'Reconciliation' => 'Reconciliação', - 'reconciliation' => 'Reconciliação', - 'reconcile_options' => 'Opções de reconciliação', - 'reconcile_range' => 'Intervalo de reconciliação', - 'start_reconcile' => 'Comece a reconciliar', - 'cash_account_type' => 'Dinheiro', - 'cash' => 'dinheiro', - 'cant_find_redirect_account' => 'Firefly III tentou te redirecionar mas não conseguiu. Desculpe por isso. De volta ao índice.', - 'account_type' => 'Tipo de conta', - 'save_transactions_by_moving' => 'Salve esta transação movendo-a para outra conta:|Salve essas transações movendo-as para outra conta:', - 'save_transactions_by_moving_js' => 'Nenhuma transação.|Salve esta transação movendo-a para outra conta.|Salve essas transações movendo-as para outra conta.', - 'stored_new_account' => 'Nova conta ":name" armazenado!', - 'stored_new_account_js' => 'Nova conta "{name}" armazenada!', - 'updated_account' => 'Conta ":name" atualizada', - 'updated_account_js' => 'Conta atualizada "{title}".', - 'credit_card_options' => 'Opções de cartão de crédito', - 'no_transactions_account' => 'Não há transações (neste período) para a conta ativa ":name".', - 'no_transactions_period' => 'Não há transações (neste período).', - 'no_data_for_chart' => 'Não há informações suficientes (ainda) para gerar este gráfico.', - 'select_at_least_one_account' => 'Por favor, selecione pelo menos uma conta de ativo', - 'select_at_least_one_category' => 'Por favor selecione, pelo menos, uma categoria', - 'select_at_least_one_budget' => 'Por favor, selecione pelo menos um orçamento', - 'select_at_least_one_tag' => 'Por favor, selecione pelo menos uma tag', - 'select_at_least_one_expense' => 'Por favor, selecione pelo menos uma combinação de contas de despesas/receitas. Se você não tem nenhuma (a lista está vazia) este relatório não está disponível.', - 'account_default_currency' => 'Esta será a moeda padrão associada a esta conta.', - 'reconcile_has_more' => 'Seu registro do Firefly III tem mais dinheiro nele do que o seu banco afirma que você deveria ter. Existem várias opções. Escolha o que fazer. Em seguida, pressione "Confirmar reconciliação".', - 'reconcile_has_less' => 'Seu registro do Firefly III tem menos dinheiro nele do que o seu banco afirma que você deveria ter. Existem várias opções. Escolha o que fazer. Em seguida, pressione "Confirmar reconciliação".', - 'reconcile_is_equal' => 'Seu registro do Firefly III e seus registros bancários combinam. Não há nada a se fazer. Pressione "Confirmar reconciliação" para confirmar sua entrada.', - 'create_pos_reconcile_transaction' => 'Desmarque as transações selecionadas e, em seguida, crie uma correção adicionando :amount para esta conta ativa.', - 'create_neg_reconcile_transaction' => 'Desmarque as transações selecionadas e, em seguida, crie uma correção removendo :amount para esta conta ativa.', - 'reconcile_do_nothing' => 'Desmarcar as transações selecionadas, mas não corrigir.', - 'reconcile_go_back' => 'Você sempre pode editar ou excluir uma correção mais tarde.', - 'must_be_asset_account' => 'Você só pode conciliar contas de ativos', - 'reconciliation_stored' => 'Reconciliação armazenada', - 'reconciliation_error' => 'Devido a um erro, as transações foram marcadas como conciliadas, mas a correcção não foi armazenada: :error.', - 'reconciliation_transaction_title' => 'Reconciliação (:from a :to)', - 'sum_of_reconciliation' => 'Total reconciliado', - 'reconcile_this_account' => 'Concilie esta conta', - 'reconcile' => 'Reconciliar', - 'show' => 'Exibir', - 'confirm_reconciliation' => 'Confirmar reconciliação', - 'submitted_start_balance' => 'Saldo inicial enviado', - 'selected_transactions' => 'Transações selecionadas (:count)', - 'already_cleared_transactions' => 'Transações já removidas (:count)', - 'submitted_end_balance' => 'Saldo final enviado', - 'initial_balance_description' => 'Saldo inicial para ":account"', - 'liability_credit_description' => 'Passivo de crédito para ":account"', - 'interest_calc_' => 'desconhecido', - 'interest_calc_daily' => 'Por dia', - 'interest_calc_monthly' => 'Por mês', - 'interest_calc_yearly' => 'Por ano', - 'interest_calc_weekly' => 'Por semana', - 'interest_calc_half-year' => 'Por semestre', - 'interest_calc_quarterly' => 'Por trimestre', - 'initial_balance_account' => 'Saldo inicial da conta :account', - 'list_options' => 'Opções de lista', + 'i_am_owed_amount' => 'Eu tenho uma dívida a receber', + 'i_owe_amount' => 'Valor do passivo', + 'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que você pode ver nesta página separada.|Você tem :count contas inativas (arquivadas), que você pode ver nesta página separada.', + 'all_accounts_inactive' => 'Estas são as suas contas inativas.', + 'active_account_link' => 'Este link volta para suas contas ativas.', + 'account_missing_transaction' => 'Conta #:id (":name") não pode ser visualizada diretamente, mas o Firefly está sem informação de redirecionamento.', + 'cc_monthly_payment_date_help' => 'Selecione qualquer ano e mês, eles serão ignorados. Apenas o dia do mês é relevante.', + 'details_for_asset' => 'Detalhes para a conta de ativo ":name"', + 'details_for_expense' => 'Detalhes para a conta de despesas ":name"', + 'details_for_revenue' => 'Detalhes para a conta de receitas ":name"', + 'details_for_cash' => 'Detalhes para a conta de dinheiro ":name"', + 'store_new_asset_account' => 'Armazenar nova conta de ativo', + 'store_new_expense_account' => 'Armazenar nova conta de despesa', + 'store_new_revenue_account' => 'Armazenar nova conta de receita', + 'edit_asset_account' => 'Editar conta de ativo ":name"', + 'edit_expense_account' => 'Editar conta de despesa ":name"', + 'edit_revenue_account' => 'Editar conta de receitas ":name"', + 'delete_asset_account' => 'Excluir conta de ativo ":name"', + 'delete_expense_account' => 'Excluir conta de despesas ":name"', + 'delete_revenue_account' => 'Excluir conta de receitas ":name"', + 'delete_liabilities_account' => 'Apagar passivo ":name"', + 'asset_deleted' => 'Conta de ativo ":name" excluída com sucesso', + 'account_deleted' => 'Conta ":name" deletada com sucesso', + 'expense_deleted' => 'Conta de despesa ":name" excluída com sucesso', + 'revenue_deleted' => 'Conta de receitas ":name" excluída com sucesso', + 'update_asset_account' => 'Atualizar de conta de ativo', + 'update_undefined_account' => 'Atualizar conta', + 'update_liabilities_account' => 'Atualizar passivo', + 'update_expense_account' => 'Atualizar conta de despesas', + 'update_revenue_account' => 'Atualizar conta de receita', + 'make_new_asset_account' => 'Criar uma nova conta de ativo', + 'make_new_expense_account' => 'Criar uma nova conta de despesa', + 'make_new_revenue_account' => 'Criar uma nova conta de receita', + 'make_new_liabilities_account' => 'Criar um novo passivo', + 'asset_accounts' => 'Contas de ativo', + 'undefined_accounts' => 'Contas', + 'asset_accounts_inactive' => 'Contas de ativos (inativas)', + 'expense_account' => 'Conta de despesas', + 'expense_accounts' => 'Contas de despesas', + 'expense_accounts_inactive' => 'Contas de despesas (inativas)', + 'revenue_account' => 'Conta de Receitas', + 'revenue_accounts' => 'Contas de receitas', + 'revenue_accounts_inactive' => 'Contas de receita (inativas)', + 'cash_accounts' => 'Contas Correntes', + 'Cash account' => 'Conta Corrente', + 'liabilities_accounts' => 'Passivos', + 'liabilities_accounts_inactive' => 'Passivos (inativos)', + 'reconcile_account' => 'Reconciliar conta ":account"', + 'overview_of_reconcile_modal' => 'Visão geral da reconciliação', + 'delete_reconciliation' => 'Eliminar reconciliação', + 'update_reconciliation' => 'Atualizar a reconciliação', + 'amount_cannot_be_zero' => 'O valor não pode ser zero', + 'end_of_reconcile_period' => 'Período de fim de reconciliação: :period', + 'start_of_reconcile_period' => 'Início do período de reconciliação: :period', + 'start_balance' => 'Saldo Inicial', + 'end_balance' => 'Saldo Final', + 'update_balance_dates_instruction' => 'Corresponda os valores e datas acima do seu extracto bancário e pressione "Começar reconciliar"', + 'select_transactions_instruction' => 'Selecione as transações que aparecem no extrato bancário.', + 'select_range_and_balance' => 'Primeiro, verifique o intervalo de datas e os saldos. Em seguida, pressione "Iniciar reconciliação"', + 'date_change_instruction' => 'Se você alterar o intervalo de datas agora, qualquer progresso será perdido.', + 'update_selection' => 'Atualizar seleção', + 'store_reconcile' => 'Armazenar reconciliação', + 'reconciliation_transaction' => 'Transação de reconciliação', + 'Reconciliation' => 'Reconciliação', + 'reconciliation' => 'Reconciliação', + 'reconcile_options' => 'Opções de reconciliação', + 'reconcile_range' => 'Intervalo de reconciliação', + 'start_reconcile' => 'Comece a reconciliar', + 'cash_account_type' => 'Dinheiro', + 'cash' => 'dinheiro', + 'cant_find_redirect_account' => 'Firefly III tentou te redirecionar mas não conseguiu. Desculpe por isso. De volta ao índice.', + 'account_type' => 'Tipo de conta', + 'save_transactions_by_moving' => 'Salve esta transação movendo-a para outra conta:|Salve essas transações movendo-as para outra conta:', + 'save_transactions_by_moving_js' => 'Nenhuma transação.|Salve esta transação movendo-a para outra conta.|Salve essas transações movendo-as para outra conta.', + 'stored_new_account' => 'Nova conta ":name" armazenado!', + 'stored_new_account_js' => 'Nova conta "{name}" armazenada!', + 'updated_account' => 'Conta ":name" atualizada', + 'updated_account_js' => 'Conta atualizada "{title}".', + 'credit_card_options' => 'Opções de cartão de crédito', + 'no_transactions_account' => 'Não há transações (neste período) para a conta ativa ":name".', + 'no_transactions_period' => 'Não há transações (neste período).', + 'no_data_for_chart' => 'Não há informações suficientes (ainda) para gerar este gráfico.', + 'select_at_least_one_account' => 'Por favor, selecione pelo menos uma conta de ativo', + 'select_at_least_one_category' => 'Por favor selecione, pelo menos, uma categoria', + 'select_at_least_one_budget' => 'Por favor, selecione pelo menos um orçamento', + 'select_at_least_one_tag' => 'Por favor, selecione pelo menos uma tag', + 'select_at_least_one_expense' => 'Por favor, selecione pelo menos uma combinação de contas de despesas/receitas. Se você não tem nenhuma (a lista está vazia) este relatório não está disponível.', + 'account_default_currency' => 'Esta será a moeda padrão associada a esta conta.', + 'reconcile_has_more' => 'Seu registro do Firefly III tem mais dinheiro nele do que o seu banco afirma que você deveria ter. Existem várias opções. Escolha o que fazer. Em seguida, pressione "Confirmar reconciliação".', + 'reconcile_has_less' => 'Seu registro do Firefly III tem menos dinheiro nele do que o seu banco afirma que você deveria ter. Existem várias opções. Escolha o que fazer. Em seguida, pressione "Confirmar reconciliação".', + 'reconcile_is_equal' => 'Seu registro do Firefly III e seus registros bancários combinam. Não há nada a se fazer. Pressione "Confirmar reconciliação" para confirmar sua entrada.', + 'create_pos_reconcile_transaction' => 'Desmarque as transações selecionadas e, em seguida, crie uma correção adicionando :amount para esta conta ativa.', + 'create_neg_reconcile_transaction' => 'Desmarque as transações selecionadas e, em seguida, crie uma correção removendo :amount para esta conta ativa.', + 'reconcile_do_nothing' => 'Desmarcar as transações selecionadas, mas não corrigir.', + 'reconcile_go_back' => 'Você sempre pode editar ou excluir uma correção mais tarde.', + 'must_be_asset_account' => 'Você só pode conciliar contas de ativos', + 'reconciliation_stored' => 'Reconciliação armazenada', + 'reconciliation_error' => 'Devido a um erro, as transações foram marcadas como conciliadas, mas a correcção não foi armazenada: :error.', + 'reconciliation_transaction_title' => 'Reconciliação (:from a :to)', + 'sum_of_reconciliation' => 'Total reconciliado', + 'reconcile_this_account' => 'Concilie esta conta', + 'reconcile' => 'Reconciliar', + 'show' => 'Exibir', + 'confirm_reconciliation' => 'Confirmar reconciliação', + 'submitted_start_balance' => 'Saldo inicial enviado', + 'selected_transactions' => 'Transações selecionadas (:count)', + 'already_cleared_transactions' => 'Transações já removidas (:count)', + 'submitted_end_balance' => 'Saldo final enviado', + 'initial_balance_description' => 'Saldo inicial para ":account"', + 'liability_credit_description' => 'Passivo de crédito para ":account"', + 'interest_calc_' => 'desconhecido', + 'interest_calc_daily' => 'Por dia', + 'interest_calc_monthly' => 'Por mês', + 'interest_calc_yearly' => 'Por ano', + 'interest_calc_weekly' => 'Por semana', + 'interest_calc_half-year' => 'Por semestre', + 'interest_calc_quarterly' => 'Por trimestre', + 'initial_balance_account' => 'Saldo inicial da conta :account', + 'list_options' => 'Opções de lista', // categories: - 'new_category' => 'Nova categoria', - 'create_new_category' => 'Criar uma nova categoria', - 'without_category' => 'Sem uma categoria', - 'update_category' => 'Atualizar Categoria', - 'updated_category' => 'Atualizado categoria ":name"', - 'categories' => 'Categorias', - 'edit_category' => 'Editar categoria ":name"', - 'no_category' => '(sem categoria)', - 'unknown_category_plain' => 'Sem categoria', - 'category' => 'Categoria', - 'delete_category' => 'Excluir categoria ":name"', - 'deleted_category' => 'Categoria ":name" excluída', - 'store_category' => 'Armazenar nova categoria', - 'stored_category' => 'Armazenada nova categoria ":name"', - 'without_category_between' => 'Sem categoria entre :start e :end', + 'new_category' => 'Nova categoria', + 'create_new_category' => 'Criar uma nova categoria', + 'without_category' => 'Sem uma categoria', + 'update_category' => 'Atualizar Categoria', + 'updated_category' => 'Atualizado categoria ":name"', + 'categories' => 'Categorias', + 'edit_category' => 'Editar categoria ":name"', + 'no_category' => '(sem categoria)', + 'unknown_category_plain' => 'Sem categoria', + 'category' => 'Categoria', + 'delete_category' => 'Excluir categoria ":name"', + 'deleted_category' => 'Categoria ":name" excluída', + 'store_category' => 'Armazenar nova categoria', + 'stored_category' => 'Armazenada nova categoria ":name"', + 'without_category_between' => 'Sem categoria entre :start e :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Por favor, aguarde o formulário carregar', - 'wait_loading_data' => 'Por favor, aguarde suas informações serem carregadas...', - 'wait_attachments' => 'Por favor, aguarde pelo upload dos anexos.', - 'errors_upload' => 'O upload falhou. Por favor, verifique o console do seu navegador para o erro.', - 'amount_foreign_if' => 'Valor em moeda estrangeira, se houver', - 'amount_destination_account' => 'Valor na moeda da conta destino', - 'edit_transaction_title' => 'Editar transação ":description"', - 'unreconcile' => 'Desfazer reconciliação', - 'update_withdrawal' => 'Atualizar saída', - 'update_deposit' => 'Atualizar entrada', - 'update_transaction' => 'Atualizar transação', - 'update_transfer' => 'Atualizar transferência', - 'updated_withdrawal' => 'Saída atualizada ":description"', - 'updated_deposit' => 'Entrada atualizada ":description"', - 'updated_transfer' => 'Transferência atualizada ":description"', - 'no_changes_withdrawal' => 'A retirada ":description" não foi alterada.', - 'no_changes_deposit' => 'O depósito ":description" não foi alterado.', - 'no_changes_transfer' => 'A transferência ":description" não foi alterada.', - 'delete_withdrawal' => 'Excluir a saída ":description"', - 'delete_deposit' => 'Apagar entrada ":description"', - 'delete_transfer' => 'Apagar transferência ":description"', - 'deleted_withdrawal' => 'Saída":description" excluída com sucesso', - 'deleted_deposit' => 'Entrada":description" excluída com sucesso', - 'deleted_transfer' => 'Transferência ":description" excluída com sucesso', - 'deleted_reconciliation' => 'Transação de reconciliação ":description" excluída com sucesso', - 'stored_journal' => 'Transação ":description" incluída com sucesso', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Transação criada com sucesso', - 'updated_journal_no_descr' => 'Transação atualizada com sucesso', - 'select_transactions' => 'Selecione as transações', - 'rule_group_select_transactions' => 'Aplicar ":title" às transações', - 'rule_select_transactions' => 'Aplicar ":title" às transações', - 'stop_selection' => 'Parar de selecionar transações', - 'reconcile_selected' => 'Reconciliar', - 'mass_delete_journals' => 'Excluir transações em massa', - 'mass_edit_journals' => 'Editar transações em massa', - 'mass_bulk_journals' => 'Editar transações em massa', - 'mass_bulk_journals_explain' => 'Este formulário permite alterar as propriedades das transações listadas abaixo em uma atualização abrangente. Todas as transações na tabela serão atualizadas quando você alterar os parâmetros que você vê aqui.', - 'part_of_split' => 'Esta transação faz parte de uma transação dividida. Se você não selecionou todas as divisões, poderá acabar mudando apenas metade da transação.', - 'bulk_set_new_values' => 'Use as entradas abaixo para definir novos valores. Se você deixá-los vazios, eles serão feitos vazios para todos. Além disso, note que apenas as saídas receberão um orçamento.', - 'no_bulk_category' => 'Não atualize a categoria', - 'no_bulk_budget' => 'Não atualize o orçamento', - 'no_bulk_tags' => 'Não atualize a(s) tag(s)', - 'replace_with_these_tags' => 'Substituir com estas tags', - 'append_these_tags' => 'Adicionar estas tags', - 'mass_edit' => 'Editar selecionados individualmente', - 'bulk_edit' => 'Editar selecionados em massa', - 'mass_delete' => 'Excluir selecionados', - 'cannot_edit_other_fields' => 'Você não pode editar em massa outros campos além desses aqui, porque não há espaço para mostrá-los. Por favor, siga o link para editá-los um por um, se você precisar editar esses campos.', - 'cannot_change_amount_reconciled' => 'Você não pode alterar o valor das transações reconciliadas.', - 'no_budget' => '(sem orçamento)', - 'no_bill' => '(sem fatura)', - 'account_per_budget' => 'Conta por orçamento', - 'account_per_category' => 'Conta por categoria', - 'create_new_object' => 'Criar', - 'empty' => '(vazio)', - 'all_other_budgets' => '(todos os outros orçamentos)', - 'all_other_accounts' => '(todas as outras contas)', - 'expense_per_source_account' => 'Despesas por conta origem', - 'expense_per_destination_account' => 'Despesas por conta destino', - 'income_per_destination_account' => 'Receita por conta destino', - 'spent_in_specific_category' => 'Gasto na categoria ":category"', - 'earned_in_specific_category' => 'Ganhos na categoria ":category"', - 'spent_in_specific_tag' => 'Gasto na tag ":tag"', - 'earned_in_specific_tag' => 'Ganho na tag ":tag"', - 'income_per_source_account' => 'Receita por conta origem', - 'average_spending_per_destination' => 'Média de despesas por conta destino', - 'average_spending_per_source' => 'Gasto médio por conta origem', - 'average_earning_per_source' => 'Média de ganhos por conta origem', - 'average_earning_per_destination' => 'Ganhos médios por conta destino', - 'account_per_tag' => 'Conta por tag', - 'tag_report_expenses_listed_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas tags, pode apenas aparecer em uma de suas tags. Esta lista pode parecer estar faltando dados, mas os valores estão corretos.', - 'double_report_expenses_charted_once' => 'Despesas e receitas nunca são exibidos duas vezes. Se uma transação tiver múltiplas tags, pode apenas aparecer em uma de suas tags. Este gráfico pode parecer que está faltando dados, mas os valores estão corretos.', - 'tag_report_chart_single_tag' => 'Este gráfico se aplica a uma única tag. Se uma transação tem múltiplas tags, o que você vê aqui pode aparecer nos gráficos de outras tags também.', - 'tag' => 'Tag', - 'no_budget_squared' => '(sem orçamento)', - 'perm-delete-many' => 'Excluir muitos itens de uma só vez pode ser muito perturbador. Por favor, seja cauteloso. Você pode excluir parte de uma transação dividida desta página, então tome cuidado.', - 'mass_deleted_transactions_success' => ':count transação excluída.|:count transações excluídas.', - 'mass_edited_transactions_success' => 'Atualizado :count transação.|Atualizado :count transações.', - 'opt_group_' => '(nenhum tipo de conta)', - 'opt_group_no_account_type' => '(sem o tipo de conta)', - 'opt_group_defaultAsset' => 'Contas padrão', - 'opt_group_savingAsset' => 'Contas de poupança', - 'opt_group_sharedAsset' => 'Contas de ativos compartilhadas', - 'opt_group_ccAsset' => 'Cartões de crédito', - 'opt_group_cashWalletAsset' => 'Carteiras de dinheiro', - 'opt_group_expense_account' => 'Contas de despesas', - 'opt_group_revenue_account' => 'Contas de receitas', - 'opt_group_l_Loan' => 'Passivo: empréstimo', - 'opt_group_cash_account' => 'Conta em dinheiro', - 'opt_group_l_Debt' => 'Passivo: dívida', - 'opt_group_l_Mortgage' => 'Passivo: hipoteca', - 'opt_group_l_Credit card' => 'Passivo: cartão de crédito', - 'notes' => 'Notas', - 'unknown_journal_error' => 'A transação não pôde ser armazenada. Por favor, verifique os arquivos de log.', - 'attachment_not_found' => 'O anexo não foi encontrado.', - 'journal_link_bill' => 'Esta transação está vinculada à fatura :name. Para remover a conexão, desmarque a caixa de seleção. Use as regras para conectá-la a outra fatura.', - 'transaction_stored_link' => 'Transação #{ID} ("{title}") foi salva.', - 'transaction_new_stored_link' => 'Transação #{ID} foi salva.', - 'transaction_updated_link' => 'A Transação #{ID} ("{title}") foi atualizada.', - 'transaction_updated_no_changes' => 'A Transação #{ID} ("{title}") não recebeu nenhuma alteração.', - 'first_split_decides' => 'A primeira divisão determina o valor deste campo', - 'first_split_overrules_source' => 'A primeira divisão pode anular a conta de origem', - 'first_split_overrules_destination' => 'A primeira divisão pode anular a conta de destino', - 'spent_x_of_y' => 'Gasto {amount} de {total}', + 'wait_loading_transaction' => 'Por favor, aguarde o formulário carregar', + 'wait_loading_data' => 'Por favor, aguarde suas informações serem carregadas...', + 'wait_attachments' => 'Por favor, aguarde pelo upload dos anexos.', + 'errors_upload' => 'O upload falhou. Por favor, verifique o console do seu navegador para o erro.', + 'amount_foreign_if' => 'Valor em moeda estrangeira, se houver', + 'amount_destination_account' => 'Valor na moeda da conta destino', + 'edit_transaction_title' => 'Editar transação ":description"', + 'unreconcile' => 'Desfazer reconciliação', + 'update_withdrawal' => 'Atualizar saída', + 'update_deposit' => 'Atualizar entrada', + 'update_transaction' => 'Atualizar transação', + 'update_transfer' => 'Atualizar transferência', + 'updated_withdrawal' => 'Saída atualizada ":description"', + 'updated_deposit' => 'Entrada atualizada ":description"', + 'updated_transfer' => 'Transferência atualizada ":description"', + 'no_changes_withdrawal' => 'A retirada ":description" não foi alterada.', + 'no_changes_deposit' => 'O depósito ":description" não foi alterado.', + 'no_changes_transfer' => 'A transferência ":description" não foi alterada.', + 'delete_withdrawal' => 'Excluir a saída ":description"', + 'delete_deposit' => 'Apagar entrada ":description"', + 'delete_transfer' => 'Apagar transferência ":description"', + 'deleted_withdrawal' => 'Saída":description" excluída com sucesso', + 'deleted_deposit' => 'Entrada":description" excluída com sucesso', + 'deleted_transfer' => 'Transferência ":description" excluída com sucesso', + 'deleted_reconciliation' => 'Transação de reconciliação ":description" excluída com sucesso', + 'stored_journal' => 'Transação ":description" incluída com sucesso', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Transação criada com sucesso', + 'updated_journal_no_descr' => 'Transação atualizada com sucesso', + 'select_transactions' => 'Selecione as transações', + 'rule_group_select_transactions' => 'Aplicar ":title" às transações', + 'rule_select_transactions' => 'Aplicar ":title" às transações', + 'stop_selection' => 'Parar de selecionar transações', + 'reconcile_selected' => 'Reconciliar', + 'mass_delete_journals' => 'Excluir transações em massa', + 'mass_edit_journals' => 'Editar transações em massa', + 'mass_bulk_journals' => 'Editar transações em massa', + 'mass_bulk_journals_explain' => 'Este formulário permite alterar as propriedades das transações listadas abaixo em uma atualização abrangente. Todas as transações na tabela serão atualizadas quando você alterar os parâmetros que você vê aqui.', + 'part_of_split' => 'Esta transação faz parte de uma transação dividida. Se você não selecionou todas as divisões, poderá acabar mudando apenas metade da transação.', + 'bulk_set_new_values' => 'Use as entradas abaixo para definir novos valores. Se você deixá-los vazios, eles serão feitos vazios para todos. Além disso, note que apenas as saídas receberão um orçamento.', + 'no_bulk_category' => 'Não atualize a categoria', + 'no_bulk_budget' => 'Não atualize o orçamento', + 'no_bulk_tags' => 'Não atualize a(s) tag(s)', + 'replace_with_these_tags' => 'Substituir com estas tags', + 'append_these_tags' => 'Adicionar estas tags', + 'mass_edit' => 'Editar selecionados individualmente', + 'bulk_edit' => 'Editar selecionados em massa', + 'mass_delete' => 'Excluir selecionados', + 'cannot_edit_other_fields' => 'Você não pode editar em massa outros campos além desses aqui, porque não há espaço para mostrá-los. Por favor, siga o link para editá-los um por um, se você precisar editar esses campos.', + 'cannot_change_amount_reconciled' => 'Você não pode alterar o valor das transações reconciliadas.', + 'no_budget' => '(sem orçamento)', + 'no_bill' => '(sem fatura)', + 'account_per_budget' => 'Conta por orçamento', + 'account_per_category' => 'Conta por categoria', + 'create_new_object' => 'Criar', + 'empty' => '(vazio)', + 'all_other_budgets' => '(todos os outros orçamentos)', + 'all_other_accounts' => '(todas as outras contas)', + 'expense_per_source_account' => 'Despesas por conta origem', + 'expense_per_destination_account' => 'Despesas por conta destino', + 'income_per_destination_account' => 'Receita por conta destino', + 'spent_in_specific_category' => 'Gasto na categoria ":category"', + 'earned_in_specific_category' => 'Ganhos na categoria ":category"', + 'spent_in_specific_tag' => 'Gasto na tag ":tag"', + 'earned_in_specific_tag' => 'Ganho na tag ":tag"', + 'income_per_source_account' => 'Receita por conta origem', + 'average_spending_per_destination' => 'Média de despesas por conta destino', + 'average_spending_per_source' => 'Gasto médio por conta origem', + 'average_earning_per_source' => 'Média de ganhos por conta origem', + 'average_earning_per_destination' => 'Ganhos médios por conta destino', + 'account_per_tag' => 'Conta por tag', + 'tag_report_expenses_listed_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas tags, pode apenas aparecer em uma de suas tags. Esta lista pode parecer estar faltando dados, mas os valores estão corretos.', + 'double_report_expenses_charted_once' => 'Despesas e receitas nunca são exibidos duas vezes. Se uma transação tiver múltiplas tags, pode apenas aparecer em uma de suas tags. Este gráfico pode parecer que está faltando dados, mas os valores estão corretos.', + 'tag_report_chart_single_tag' => 'Este gráfico se aplica a uma única tag. Se uma transação tem múltiplas tags, o que você vê aqui pode aparecer nos gráficos de outras tags também.', + 'tag' => 'Tag', + 'no_budget_squared' => '(sem orçamento)', + 'perm-delete-many' => 'Excluir muitos itens de uma só vez pode ser muito perturbador. Por favor, seja cauteloso. Você pode excluir parte de uma transação dividida desta página, então tome cuidado.', + 'mass_deleted_transactions_success' => ':count transação excluída.|:count transações excluídas.', + 'mass_edited_transactions_success' => 'Atualizado :count transação.|Atualizado :count transações.', + 'opt_group_' => '(nenhum tipo de conta)', + 'opt_group_no_account_type' => '(sem o tipo de conta)', + 'opt_group_defaultAsset' => 'Contas padrão', + 'opt_group_savingAsset' => 'Contas de poupança', + 'opt_group_sharedAsset' => 'Contas de ativos compartilhadas', + 'opt_group_ccAsset' => 'Cartões de crédito', + 'opt_group_cashWalletAsset' => 'Carteiras de dinheiro', + 'opt_group_expense_account' => 'Contas de despesas', + 'opt_group_revenue_account' => 'Contas de receitas', + 'opt_group_l_Loan' => 'Passivo: empréstimo', + 'opt_group_cash_account' => 'Conta em dinheiro', + 'opt_group_l_Debt' => 'Passivo: dívida', + 'opt_group_l_Mortgage' => 'Passivo: hipoteca', + 'opt_group_l_Credit card' => 'Passivo: cartão de crédito', + 'notes' => 'Notas', + 'unknown_journal_error' => 'A transação não pôde ser armazenada. Por favor, verifique os arquivos de log.', + 'attachment_not_found' => 'O anexo não foi encontrado.', + 'journal_link_bill' => 'Esta transação está vinculada à fatura :name. Para remover a conexão, desmarque a caixa de seleção. Use as regras para conectá-la a outra fatura.', + 'transaction_stored_link' => 'Transação #{ID} ("{title}") foi salva.', + 'transaction_new_stored_link' => 'Transação #{ID} foi salva.', + 'transaction_updated_link' => 'A Transação #{ID} ("{title}") foi atualizada.', + 'transaction_updated_no_changes' => 'A Transação #{ID} ("{title}") não recebeu nenhuma alteração.', + 'first_split_decides' => 'A primeira divisão determina o valor deste campo', + 'first_split_overrules_source' => 'A primeira divisão pode anular a conta de origem', + 'first_split_overrules_destination' => 'A primeira divisão pode anular a conta de destino', + 'spent_x_of_y' => 'Gasto {amount} de {total}', // new user: - 'welcome' => 'Bem Vindo ao Firefly III!', - 'submit' => 'Enviar', - 'submission' => 'Envio', - 'submit_yes_really' => 'Enviar (eu sei o que estou fazendo)', - 'getting_started' => 'Iniciar', - 'to_get_started' => 'É bom ver que você instalou o Firefly III com sucesso. Para começar com esta ferramenta, insira o nome do banco e o saldo da sua principal conta corrente. Não se preocupe ainda se você tiver várias contas. Você pode adicionar aqueles mais tarde. É só que o Firefly III precisa de algo para começar.', - 'savings_balance_text' => 'O Firefly III criará automaticamente uma conta de poupança para você. Por padrão, não haverá dinheiro na sua conta de poupança, mas se você contar o saldo ao Firefly III, ele será armazenado como tal.', - 'finish_up_new_user' => 'É isso aí! Você pode continuar pressionando Enviar. Você será levado ao índice de Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Suas novas contas foram armazenadas.', - 'set_preferred_language' => 'Se você prefere utilizar o Firefly III em outro idioma, informe aqui.', - 'language' => 'Idioma', - 'new_savings_account' => 'Conta de poupança :bank_name', - 'cash_wallet' => 'Carteira de dinheiro', - 'currency_not_present' => 'Não se preocupe se a moeda que você usa normalmente não está listada. Você pode criar suas próprias moedas em "Opções > Moedas".', + 'welcome' => 'Bem Vindo ao Firefly III!', + 'submit' => 'Enviar', + 'submission' => 'Envio', + 'submit_yes_really' => 'Enviar (eu sei o que estou fazendo)', + 'getting_started' => 'Iniciar', + 'to_get_started' => 'É bom ver que você instalou o Firefly III com sucesso. Para começar com esta ferramenta, insira o nome do banco e o saldo da sua principal conta corrente. Não se preocupe ainda se você tiver várias contas. Você pode adicionar aqueles mais tarde. É só que o Firefly III precisa de algo para começar.', + 'savings_balance_text' => 'O Firefly III criará automaticamente uma conta de poupança para você. Por padrão, não haverá dinheiro na sua conta de poupança, mas se você contar o saldo ao Firefly III, ele será armazenado como tal.', + 'finish_up_new_user' => 'É isso aí! Você pode continuar pressionando Enviar. Você será levado ao índice de Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Suas novas contas foram armazenadas.', + 'set_preferred_language' => 'Se você prefere utilizar o Firefly III em outro idioma, informe aqui.', + 'language' => 'Idioma', + 'new_savings_account' => 'Conta de poupança :bank_name', + 'cash_wallet' => 'Carteira de dinheiro', + 'currency_not_present' => 'Não se preocupe se a moeda que você usa normalmente não está listada. Você pode criar suas próprias moedas em "Opções > Moedas".', // home page: - 'transaction_table_description' => 'Uma tabela contendo suas transações', - 'opposing_account' => 'Conta oposta', - 'yourAccounts' => 'Suas contas', - 'your_accounts' => 'Visão geral da sua conta', - 'category_overview' => 'Visão geral da categoria', - 'expense_overview' => 'Visão geral da conta de despesa', - 'revenue_overview' => 'Visão geral da conta de receita', - 'budgetsAndSpending' => 'Orçamentos e despesas', - 'budgets_and_spending' => 'Orçamentos e despesas', - 'go_to_budget' => 'Ir para o orçamento "{budget}"', - 'go_to_deposits' => 'Ir para as entradas', - 'go_to_expenses' => 'Ir para despesas', - 'savings' => 'Poupanças', - 'newWithdrawal' => 'Nova despesa', - 'newDeposit' => 'Nova entrada', - 'newTransfer' => 'Nova transferência', - 'bills_to_pay' => 'Faturas a pagar', - 'per_day' => 'Por dia', - 'left_to_spend_per_day' => 'Restante para gastar por dia', - 'bills_paid' => 'Faturas pagas', - 'custom_period' => 'Período personalizado', - 'reset_to_current' => 'Redefinir para o período atual', - 'select_period' => 'Selecione um período', + 'transaction_table_description' => 'Uma tabela contendo suas transações', + 'opposing_account' => 'Conta oposta', + 'yourAccounts' => 'Suas contas', + 'your_accounts' => 'Visão geral da sua conta', + 'category_overview' => 'Visão geral da categoria', + 'expense_overview' => 'Visão geral da conta de despesa', + 'revenue_overview' => 'Visão geral da conta de receita', + 'budgetsAndSpending' => 'Orçamentos e despesas', + 'budgets_and_spending' => 'Orçamentos e despesas', + 'go_to_budget' => 'Ir para o orçamento "{budget}"', + 'go_to_deposits' => 'Ir para as entradas', + 'go_to_expenses' => 'Ir para despesas', + 'savings' => 'Poupanças', + 'newWithdrawal' => 'Nova despesa', + 'newDeposit' => 'Nova entrada', + 'newTransfer' => 'Nova transferência', + 'bills_to_pay' => 'Faturas a pagar', + 'per_day' => 'Por dia', + 'left_to_spend_per_day' => 'Restante para gastar por dia', + 'bills_paid' => 'Faturas pagas', + 'custom_period' => 'Período personalizado', + 'reset_to_current' => 'Redefinir para o período atual', + 'select_period' => 'Selecione um período', // menu and titles, should be recycled as often as possible: - 'currency' => 'Moeda', - 'preferences' => 'Preferências', - 'logout' => 'Desconectar', - 'logout_other_sessions' => 'Sair de todas as outras sessões', - 'toggleNavigation' => 'Alternar navegação', - 'searchPlaceholder' => 'Pesquisar...', - 'version' => 'Versão', - 'dashboard' => 'Painel de Controle', - 'income_and_expense' => 'Receitas e despesas', - 'all_money' => 'Todo o seu dinheiro', - 'unknown_source_plain' => 'Conta de origem desconhecida', - 'unknown_dest_plain' => 'Conta de destino desconhecida', - 'unknown_any_plain' => 'Conta desconhecida', - 'unknown_budget_plain' => 'Nenhum orçamento', - 'available_budget' => 'Orçamento disponível ({currency})', - 'currencies' => 'Moedas', - 'activity' => 'Atividade', - 'usage' => 'Utilização', - 'accounts' => 'Contas', - 'Asset account' => 'Conta de ativo', - 'Default account' => 'Conta de ativo', - 'Expense account' => 'Conta de Despesa', - 'Revenue account' => 'Conta de Receita', - 'Initial balance account' => 'Saldo inicial da conta', - 'account_type_Asset account' => 'Conta de ativos', - 'account_type_Expense account' => 'Conta de despesas', - 'account_type_Revenue account' => 'Conta de receitas', - 'account_type_Debt' => 'Dívida', - 'account_type_Loan' => 'Empréstimo', - 'account_type_Mortgage' => 'Hipoteca', - 'account_type_debt' => 'Débito', - 'account_type_loan' => 'Empréstimo', - 'account_type_mortgage' => 'Hipoteca', - 'account_type_Credit card' => 'Cartão de crédito', - 'credit_card_type_monthlyFull' => 'Pagamento completo todo mês', - 'liability_direction_credit' => 'Eu tenho uma dívida a receber', - 'liability_direction_debit' => 'Eu tenho uma dívida a pagar', - 'liability_direction_credit_short' => 'Devo receber essa dívida', - 'liability_direction_debit_short' => 'Devo essa dívida', - 'liability_direction__short' => 'Desconhecida', - 'liability_direction_null_short' => 'Desconhecida', - 'Liability credit' => 'Crédito de passivo', - 'budgets' => 'Orçamentos', - 'tags' => 'Tags', - 'reports' => 'Relatórios', - 'transactions' => 'Transações', - 'expenses' => 'Despesas', - 'income' => 'Receita / Renda', - 'transfers' => 'Transferências', - 'moneyManagement' => 'Gerenciamento de Dinheiro', - 'money_management' => 'Gestão Monetária', - 'tools' => 'Ferramentas', - 'piggyBanks' => 'Cofrinhos', - 'piggy_banks' => 'Cofrinhos', - 'amount_x_of_y' => '{current} de {total}', - 'bills' => 'Faturas', - 'withdrawal' => 'Retirada', - 'opening_balance' => 'Saldo inicial', - 'deposit' => 'Depósito', - 'account' => 'Conta', - 'transfer' => 'Transferência', - 'Withdrawal' => 'Retirada', - 'Deposit' => 'Depósito', - 'Transfer' => 'Transferência', - 'bill' => 'Fatura', - 'yes' => 'Sim', - 'no' => 'Não', - 'amount' => 'Valor', - 'overview' => 'Visão Geral', - 'saveOnAccount' => 'Salvar na conta', - 'unknown' => 'Desconhecido', - 'monthly' => 'Mensal', - 'profile' => 'Perfil', - 'errors' => 'Erros', - 'debt_start_date' => 'Data de início da dívida', - 'debt_start_amount' => 'Montante inicial da dívida', - 'debt_start_amount_help' => 'É sempre melhor definir este valor para um valor negativo. Leia as páginas de ajuda (ícone no topo direito (?)) para mais informações.', - 'interest_period_help' => 'Esse campo é puramente estético e não será calculado para você. Como os bancos são muito sorrateiros, o Firefly lll nunca acertou esse cálculo.', - 'store_new_liabilities_account' => 'Guardar novo passivo', - 'edit_liabilities_account' => 'Editar passivo ":name"', - 'financial_control' => 'Controle financeiro', - 'accounting' => 'Contabilidade', - 'automation' => 'Automação', - 'others' => 'Outros', - 'classification' => 'Classificação', - 'store_transaction' => 'Salvar transação', + 'currency' => 'Moeda', + 'preferences' => 'Preferências', + 'logout' => 'Desconectar', + 'logout_other_sessions' => 'Sair de todas as outras sessões', + 'toggleNavigation' => 'Alternar navegação', + 'searchPlaceholder' => 'Pesquisar...', + 'version' => 'Versão', + 'dashboard' => 'Painel de Controle', + 'income_and_expense' => 'Receitas e despesas', + 'all_money' => 'Todo o seu dinheiro', + 'unknown_source_plain' => 'Conta de origem desconhecida', + 'unknown_dest_plain' => 'Conta de destino desconhecida', + 'unknown_any_plain' => 'Conta desconhecida', + 'unknown_budget_plain' => 'Nenhum orçamento', + 'available_budget' => 'Orçamento disponível ({currency})', + 'currencies' => 'Moedas', + 'activity' => 'Atividade', + 'usage' => 'Utilização', + 'accounts' => 'Contas', + 'Asset account' => 'Conta de ativo', + 'Default account' => 'Conta de ativo', + 'Expense account' => 'Conta de Despesa', + 'Revenue account' => 'Conta de Receita', + 'Initial balance account' => 'Saldo inicial da conta', + 'account_type_Asset account' => 'Conta de ativos', + 'account_type_Expense account' => 'Conta de despesas', + 'account_type_Revenue account' => 'Conta de receitas', + 'account_type_Debt' => 'Dívida', + 'account_type_Loan' => 'Empréstimo', + 'account_type_Mortgage' => 'Hipoteca', + 'account_type_debt' => 'Débito', + 'account_type_loan' => 'Empréstimo', + 'account_type_mortgage' => 'Hipoteca', + 'account_type_Credit card' => 'Cartão de crédito', + 'credit_card_type_monthlyFull' => 'Pagamento completo todo mês', + 'liability_direction_credit' => 'Eu tenho uma dívida a receber', + 'liability_direction_debit' => 'Eu tenho uma dívida a pagar', + 'liability_direction_credit_short' => 'Devo receber essa dívida', + 'liability_direction_debit_short' => 'Devo essa dívida', + 'liability_direction__short' => 'Desconhecida', + 'liability_direction_null_short' => 'Desconhecida', + 'Liability credit' => 'Crédito de passivo', + 'budgets' => 'Orçamentos', + 'tags' => 'Tags', + 'reports' => 'Relatórios', + 'transactions' => 'Transações', + 'expenses' => 'Despesas', + 'income' => 'Receita / Renda', + 'transfers' => 'Transferências', + 'moneyManagement' => 'Gerenciamento de Dinheiro', + 'money_management' => 'Gestão Monetária', + 'tools' => 'Ferramentas', + 'piggyBanks' => 'Cofrinhos', + 'piggy_banks' => 'Cofrinhos', + 'amount_x_of_y' => '{current} de {total}', + 'bills' => 'Faturas', + 'withdrawal' => 'Retirada', + 'opening_balance' => 'Saldo inicial', + 'deposit' => 'Depósito', + 'account' => 'Conta', + 'transfer' => 'Transferência', + 'Withdrawal' => 'Retirada', + 'Deposit' => 'Depósito', + 'Transfer' => 'Transferência', + 'bill' => 'Fatura', + 'yes' => 'Sim', + 'no' => 'Não', + 'amount' => 'Valor', + 'overview' => 'Visão Geral', + 'saveOnAccount' => 'Salvar na conta', + 'unknown' => 'Desconhecido', + 'monthly' => 'Mensal', + 'profile' => 'Perfil', + 'errors' => 'Erros', + 'debt_start_date' => 'Data de início da dívida', + 'debt_start_amount' => 'Montante inicial da dívida', + 'debt_start_amount_help' => 'É sempre melhor definir este valor para um valor negativo. Leia as páginas de ajuda (ícone no topo direito (?)) para mais informações.', + 'interest_period_help' => 'Esse campo é puramente estético e não será calculado para você. Como os bancos são muito sorrateiros, o Firefly lll nunca acertou esse cálculo.', + 'store_new_liabilities_account' => 'Guardar novo passivo', + 'edit_liabilities_account' => 'Editar passivo ":name"', + 'financial_control' => 'Controle financeiro', + 'accounting' => 'Contabilidade', + 'automation' => 'Automação', + 'others' => 'Outros', + 'classification' => 'Classificação', + 'store_transaction' => 'Salvar transação', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Relatório financeiro padrão entre :start e :end', - 'report_audit' => 'Visão geral do histórico de transação entre :start e :end', - 'report_category' => 'Relatório de categoria entre :start e :end', - 'report_double' => 'Relatório de despesas/receitas entre :start e :end', - 'report_budget' => 'Relatório de orçamento entre :start e :end', - 'report_tag' => 'Relatório de tag entre :start e :end', - 'quick_link_reports' => 'Links rápidos', - 'quick_link_examples' => 'Estes são apenas alguns links de exemplo para você começar. Confira as páginas de ajuda com o botão (?) para obter informações sobre todos os relatórios e as palavras mágicas que você pode usar.', - 'quick_link_default_report' => 'Relatório financeiro padrão', - 'quick_link_audit_report' => 'Visão geral do histórico de transação', - 'report_this_month_quick' => 'Mês atual, todas as contas', - 'report_last_month_quick' => 'Mês passado, todas as contas', - 'report_this_year_quick' => 'Ano atual, todas as contas', - 'report_this_fiscal_year_quick' => 'Ano fiscal atual, todas as contas', - 'report_all_time_quick' => 'Todos os tempos, todas as contas', - 'reports_can_bookmark' => 'Lembre-se que relatórios podem ser favoritados.', - 'incomeVsExpenses' => 'Renda vs. Despesas', - 'accountBalances' => 'Saldos de Contas', - 'balanceStart' => 'Saldo no início do período', - 'balanceEnd' => 'Saldo no final do período', - 'splitByAccount' => 'Dividir por conta', - 'coveredWithTags' => 'Coberto com tags', - 'leftInBudget' => 'Deixou no orçamento', - 'left_in_debt' => 'Valor do passivo', - 'sumOfSums' => 'Soma dos montantes', - 'noCategory' => '(sem categoria)', - 'notCharged' => 'Não cobrado (ainda)', - 'inactive' => 'Inativo', - 'active' => 'Ativo', - 'difference' => 'Diferença', - 'money_flowing_in' => 'Entrada', - 'money_flowing_out' => 'Saída', - 'topX' => 'topo :number', - 'show_full_list' => 'Mostrar a lista inteira', - 'show_only_top' => 'Mostrar apenas os topo :number', - 'report_type' => 'Tipo de relatório', - 'report_type_default' => 'Relatório financeiro padrão', - 'report_type_audit' => 'Visão geral do histórico de transação (auditoria)', - 'report_type_category' => 'Relatório por Categorias', - 'report_type_budget' => 'Relatório de orçamento', - 'report_type_tag' => 'Relatório de tag', - 'report_type_double' => 'Relatório de despesas/receitas', - 'more_info_help' => 'Mais informações sobre esses tipos de relatórios podem ser encontradas nas páginas de ajuda. Pressione o ícone (?) no canto superior direito.', - 'report_included_accounts' => 'Contas incluídas', - 'report_date_range' => 'Período', - 'report_preset_ranges' => 'Intervalos pré-definidos', - 'shared' => 'Compartilhado', - 'fiscal_year' => 'Ano fiscal', - 'income_entry' => 'Rendimento da conta ":name" entre :start e :end', - 'expense_entry' => 'Despesas da conta ":name" entre :start e :end', - 'category_entry' => 'Despesas e receitas na categoria ":name" entre :start e :end', - 'budget_spent_amount' => 'Despesas no orçamento ":name" entre :start e :end', - 'balance_amount' => 'Despesas no orçamento ":budget" pagas por conta":account" entre :start e :end', - 'no_audit_activity' => 'Nenhuma atividade foi registrada na conta :account_name entre :start e :end.', - 'audit_end_balance' => 'Saldo da conta :account_name no final de :end foi :balance', - 'reports_extra_options' => 'Opções adicionais', - 'report_has_no_extra_options' => 'Este relatório não tem mais opções', - 'reports_submit' => 'Visualizar relatório', - 'end_after_start_date' => 'Data de término do relatório deve ser depois da data de início.', - 'select_category' => 'Selecionar categoria(s)', - 'select_budget' => 'Selecionar orçamento(s).', - 'select_tag' => 'Selecionar tag(s).', - 'income_per_category' => 'Receitas por categoria', - 'expense_per_category' => 'Despesa por categoria', - 'expense_per_budget' => 'Despesa por orçamento', - 'income_per_account' => 'Rendimento por conta', - 'expense_per_account' => 'Por conta de despesas', - 'expense_per_tag' => 'Despesa por tag', - 'income_per_tag' => 'Rendimento por tag', - 'include_expense_not_in_budget' => 'Despesas não incluídas no(s) orçamento(s) selecionado(s)', - 'include_expense_not_in_account' => 'Despesas não incluídas na(s) contas(s) selecionada(s)', - 'include_expense_not_in_category' => 'Despesas não incluídas na(s) categoria(s) selecionada(s)', - 'include_income_not_in_category' => 'Rendimento não incluído na(s) categoria(s) selecionada(s)', - 'include_income_not_in_account' => 'Rendimento não incluído na(s) conta(s) selecionada(s)', - 'include_income_not_in_tags' => 'Rendimento não incluído na(s) tag(s) selecionada(s)', - 'include_expense_not_in_tags' => 'Despesas não incluídas na(s) tag(s) selecionada(s)', - 'everything_else' => 'Todo o resto', - 'income_and_expenses' => 'Receitas e despesas', - 'spent_average' => 'Gastos (média)', - 'income_average' => 'Renda (média)', - 'transaction_count' => 'Contagem de transações', - 'average_spending_per_account' => 'Média de gastos por conta', - 'average_income_per_account' => 'Rendimento médio por conta', - 'total' => 'Total', - 'description' => 'Descrição', - 'sum_of_period' => 'Soma de período', - 'average_in_period' => 'Média do período', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Conta padrão', - 'account_role_sharedAsset' => 'Contas de ativos compartilhadas', - 'account_role_savingAsset' => 'Conta poupança', - 'account_role_ccAsset' => 'Cartão de crédito', - 'account_role_cashWalletAsset' => 'Carteira de dinheiro', - 'budget_chart_click' => 'Clique no nome do orçamento na tabela acima para ver um gráfico.', - 'category_chart_click' => 'Clique no nome da categoria na tabela acima para ver um gráfico.', - 'in_out_accounts' => 'Ganhou e gastou por combinação', - 'in_out_accounts_per_asset' => 'Ganhos e gastos (por conta de ativo)', - 'in_out_per_category' => 'Ganhou e gastou por categoria', - 'out_per_budget' => 'Gasto por orçamento', - 'select_expense_revenue' => 'Selecione conta de despesa/receita', - 'multi_currency_report_sum' => 'Esta lista têm contas com várias moedas, portanto a(s) soma(s) que você vê talvez não faça(m) sentido. O relatório sempre usará sua moeda padrão.', - 'sum_in_default_currency' => 'A soma será sempre em sua moeda padrão.', - 'net_filtered_prefs' => 'Esse gráfico nunca irá incluir contas que têm a opção "incluir no patrimônio líquido" desmarcada.', + 'report_default' => 'Relatório financeiro padrão entre :start e :end', + 'report_audit' => 'Visão geral do histórico de transação entre :start e :end', + 'report_category' => 'Relatório de categoria entre :start e :end', + 'report_double' => 'Relatório de despesas/receitas entre :start e :end', + 'report_budget' => 'Relatório de orçamento entre :start e :end', + 'report_tag' => 'Relatório de tag entre :start e :end', + 'quick_link_reports' => 'Links rápidos', + 'quick_link_examples' => 'Estes são apenas alguns links de exemplo para você começar. Confira as páginas de ajuda com o botão (?) para obter informações sobre todos os relatórios e as palavras mágicas que você pode usar.', + 'quick_link_default_report' => 'Relatório financeiro padrão', + 'quick_link_audit_report' => 'Visão geral do histórico de transação', + 'report_this_month_quick' => 'Mês atual, todas as contas', + 'report_last_month_quick' => 'Mês passado, todas as contas', + 'report_this_year_quick' => 'Ano atual, todas as contas', + 'report_this_fiscal_year_quick' => 'Ano fiscal atual, todas as contas', + 'report_all_time_quick' => 'Todos os tempos, todas as contas', + 'reports_can_bookmark' => 'Lembre-se que relatórios podem ser favoritados.', + 'incomeVsExpenses' => 'Renda vs. Despesas', + 'accountBalances' => 'Saldos de Contas', + 'balanceStart' => 'Saldo no início do período', + 'balanceEnd' => 'Saldo no final do período', + 'splitByAccount' => 'Dividir por conta', + 'coveredWithTags' => 'Coberto com tags', + 'leftInBudget' => 'Deixou no orçamento', + 'left_in_debt' => 'Valor do passivo', + 'sumOfSums' => 'Soma dos montantes', + 'noCategory' => '(sem categoria)', + 'notCharged' => 'Não cobrado (ainda)', + 'inactive' => 'Inativo', + 'active' => 'Ativo', + 'difference' => 'Diferença', + 'money_flowing_in' => 'Entrada', + 'money_flowing_out' => 'Saída', + 'topX' => 'topo :number', + 'show_full_list' => 'Mostrar a lista inteira', + 'show_only_top' => 'Mostrar apenas os topo :number', + 'report_type' => 'Tipo de relatório', + 'report_type_default' => 'Relatório financeiro padrão', + 'report_type_audit' => 'Visão geral do histórico de transação (auditoria)', + 'report_type_category' => 'Relatório por Categorias', + 'report_type_budget' => 'Relatório de orçamento', + 'report_type_tag' => 'Relatório de tag', + 'report_type_double' => 'Relatório de despesas/receitas', + 'more_info_help' => 'Mais informações sobre esses tipos de relatórios podem ser encontradas nas páginas de ajuda. Pressione o ícone (?) no canto superior direito.', + 'report_included_accounts' => 'Contas incluídas', + 'report_date_range' => 'Período', + 'report_preset_ranges' => 'Intervalos pré-definidos', + 'shared' => 'Compartilhado', + 'fiscal_year' => 'Ano fiscal', + 'income_entry' => 'Rendimento da conta ":name" entre :start e :end', + 'expense_entry' => 'Despesas da conta ":name" entre :start e :end', + 'category_entry' => 'Despesas e receitas na categoria ":name" entre :start e :end', + 'budget_spent_amount' => 'Despesas no orçamento ":name" entre :start e :end', + 'balance_amount' => 'Despesas no orçamento ":budget" pagas por conta":account" entre :start e :end', + 'no_audit_activity' => 'Nenhuma atividade foi registrada na conta :account_name entre :start e :end.', + 'audit_end_balance' => 'Saldo da conta :account_name no final de :end foi :balance', + 'reports_extra_options' => 'Opções adicionais', + 'report_has_no_extra_options' => 'Este relatório não tem mais opções', + 'reports_submit' => 'Visualizar relatório', + 'end_after_start_date' => 'Data de término do relatório deve ser depois da data de início.', + 'select_category' => 'Selecionar categoria(s)', + 'select_budget' => 'Selecionar orçamento(s).', + 'select_tag' => 'Selecionar tag(s).', + 'income_per_category' => 'Receitas por categoria', + 'expense_per_category' => 'Despesa por categoria', + 'expense_per_budget' => 'Despesa por orçamento', + 'income_per_account' => 'Rendimento por conta', + 'expense_per_account' => 'Por conta de despesas', + 'expense_per_tag' => 'Despesa por tag', + 'income_per_tag' => 'Rendimento por tag', + 'include_expense_not_in_budget' => 'Despesas não incluídas no(s) orçamento(s) selecionado(s)', + 'include_expense_not_in_account' => 'Despesas não incluídas na(s) contas(s) selecionada(s)', + 'include_expense_not_in_category' => 'Despesas não incluídas na(s) categoria(s) selecionada(s)', + 'include_income_not_in_category' => 'Rendimento não incluído na(s) categoria(s) selecionada(s)', + 'include_income_not_in_account' => 'Rendimento não incluído na(s) conta(s) selecionada(s)', + 'include_income_not_in_tags' => 'Rendimento não incluído na(s) tag(s) selecionada(s)', + 'include_expense_not_in_tags' => 'Despesas não incluídas na(s) tag(s) selecionada(s)', + 'everything_else' => 'Todo o resto', + 'income_and_expenses' => 'Receitas e despesas', + 'spent_average' => 'Gastos (média)', + 'income_average' => 'Renda (média)', + 'transaction_count' => 'Contagem de transações', + 'average_spending_per_account' => 'Média de gastos por conta', + 'average_income_per_account' => 'Rendimento médio por conta', + 'total' => 'Total', + 'description' => 'Descrição', + 'sum_of_period' => 'Soma de período', + 'average_in_period' => 'Média do período', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Conta padrão', + 'account_role_sharedAsset' => 'Contas de ativos compartilhadas', + 'account_role_savingAsset' => 'Conta poupança', + 'account_role_ccAsset' => 'Cartão de crédito', + 'account_role_cashWalletAsset' => 'Carteira de dinheiro', + 'budget_chart_click' => 'Clique no nome do orçamento na tabela acima para ver um gráfico.', + 'category_chart_click' => 'Clique no nome da categoria na tabela acima para ver um gráfico.', + 'in_out_accounts' => 'Ganhou e gastou por combinação', + 'in_out_accounts_per_asset' => 'Ganhos e gastos (por conta de ativo)', + 'in_out_per_category' => 'Ganhou e gastou por categoria', + 'out_per_budget' => 'Gasto por orçamento', + 'select_expense_revenue' => 'Selecione conta de despesa/receita', + 'multi_currency_report_sum' => 'Esta lista têm contas com várias moedas, portanto a(s) soma(s) que você vê talvez não faça(m) sentido. O relatório sempre usará sua moeda padrão.', + 'sum_in_default_currency' => 'A soma será sempre em sua moeda padrão.', + 'net_filtered_prefs' => 'Esse gráfico nunca irá incluir contas que têm a opção "incluir no patrimônio líquido" desmarcada.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Gráfico', - 'month' => 'Mês', - 'budget' => 'Orçamento', - 'spent' => 'Gasto', - 'spent_capped' => 'Despesa (limitada)', - 'spent_in_budget' => 'Gasto no orçamento', - 'left_to_spend' => 'Restante para gastar', - 'earned' => 'Ganho', - 'overspent' => 'Gasto excedido', - 'left' => 'Restante', - 'max-amount' => 'Valor Máximo', - 'min-amount' => 'Valor mínimo', - 'journal-amount' => 'Valor atual da fatura', - 'name' => 'Nome', - 'date' => 'Data', - 'date_and_time' => 'Data e hora', - 'time' => 'Horário', - 'paid' => 'Pago', - 'unpaid' => 'Não pago', - 'day' => 'Dia', - 'budgeted' => 'Orçado', - 'period' => 'Período', - 'balance' => 'Saldo', - 'in_out_period' => 'Entrada + Saída deste período', - 'sum' => 'Soma', - 'summary' => 'Resumo', - 'average' => 'Média', - 'balanceFor' => 'Saldo para ":name"', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nada encontrado)', + 'chart' => 'Gráfico', + 'month' => 'Mês', + 'budget' => 'Orçamento', + 'spent' => 'Gasto', + 'spent_capped' => 'Despesa (limitada)', + 'spent_in_budget' => 'Gasto no orçamento', + 'left_to_spend' => 'Restante para gastar', + 'earned' => 'Ganho', + 'overspent' => 'Gasto excedido', + 'left' => 'Restante', + 'max-amount' => 'Valor Máximo', + 'min-amount' => 'Valor mínimo', + 'journal-amount' => 'Valor atual da fatura', + 'name' => 'Nome', + 'date' => 'Data', + 'date_and_time' => 'Data e hora', + 'time' => 'Horário', + 'paid' => 'Pago', + 'unpaid' => 'Não pago', + 'day' => 'Dia', + 'budgeted' => 'Orçado', + 'period' => 'Período', + 'balance' => 'Saldo', + 'in_out_period' => 'Entrada + Saída deste período', + 'sum' => 'Soma', + 'summary' => 'Resumo', + 'average' => 'Média', + 'balanceFor' => 'Saldo para ":name"', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nada encontrado)', // piggy banks: - 'event_history' => 'Histórico do evento', - 'add_money_to_piggy' => 'Adicionar dinheiro ao cofrinho ":name"', - 'piggy_bank' => 'Cofrinho', - 'new_piggy_bank' => 'Novo cofrinho', - 'store_piggy_bank' => 'Armazenar novo cofrinho', - 'stored_piggy_bank' => 'Armazenar novo cofrinho ":name"', - 'account_status' => 'Status da Conta', - 'left_for_piggy_banks' => 'Restante para cofrinhos', - 'sum_of_piggy_banks' => 'Soma dos cofrinhos', - 'saved_so_far' => 'Poupado até agora', - 'left_to_save' => 'Restante para poupar', - 'suggested_amount' => 'Quantia mensal sugerida para poupar', - 'add_money_to_piggy_title' => 'Adicionar dinheiro ao cofrinho ":name"', - 'remove_money_from_piggy_title' => 'Retire o dinheiro do cofrinho ":name"', - 'add' => 'Adicionar', - 'no_money_for_piggy' => 'Você não tem dinheiro para colocar nesse cofrinho.', - 'suggested_savings_per_month' => 'Sugerido por mês', + 'event_history' => 'Histórico do evento', + 'add_money_to_piggy' => 'Adicionar dinheiro ao cofrinho ":name"', + 'piggy_bank' => 'Cofrinho', + 'new_piggy_bank' => 'Novo cofrinho', + 'store_piggy_bank' => 'Armazenar novo cofrinho', + 'stored_piggy_bank' => 'Armazenar novo cofrinho ":name"', + 'account_status' => 'Status da Conta', + 'left_for_piggy_banks' => 'Restante para cofrinhos', + 'sum_of_piggy_banks' => 'Soma dos cofrinhos', + 'saved_so_far' => 'Poupado até agora', + 'left_to_save' => 'Restante para poupar', + 'suggested_amount' => 'Quantia mensal sugerida para poupar', + 'add_money_to_piggy_title' => 'Adicionar dinheiro ao cofrinho ":name"', + 'remove_money_from_piggy_title' => 'Retire o dinheiro do cofrinho ":name"', + 'add' => 'Adicionar', + 'no_money_for_piggy' => 'Você não tem dinheiro para colocar nesse cofrinho.', + 'suggested_savings_per_month' => 'Sugerido por mês', - 'remove' => 'Remover', - 'max_amount_add' => 'É a quantidade máxima que você pode adicionar é', - 'max_amount_remove' => 'É a quantidade máxima que você pode remover é', - 'update_piggy_button' => 'Atualizar cofrinho', - 'update_piggy_title' => 'Atualizar cofrinho ":name"', - 'updated_piggy_bank' => 'Cofrinho ":name" atualizado', - 'details' => 'Detalhes', - 'events' => 'Eventos', - 'target_amount' => 'Valor alvo', - 'start_date' => 'Data de Início', - 'no_start_date' => 'Sem data de início', - 'target_date' => 'Data Alvo', - 'no_target_date' => 'Nenhum data', - 'table' => 'Tabela', - 'delete_piggy_bank' => 'Apagar cofrinho ":name"', - 'cannot_add_amount_piggy' => 'Não foi possível adicionar :amount a ":name".', - 'cannot_remove_from_piggy' => 'Não foi possível remover :amount de ":name".', - 'deleted_piggy_bank' => 'Cofrinho ":name" excluído', - 'added_amount_to_piggy' => 'Adicionado :amount em ":name"', - 'removed_amount_from_piggy' => 'Removido :amount de ":name"', - 'piggy_events' => 'Relacionado ao cofrinho', + 'remove' => 'Remover', + 'max_amount_add' => 'É a quantidade máxima que você pode adicionar é', + 'max_amount_remove' => 'É a quantidade máxima que você pode remover é', + 'update_piggy_button' => 'Atualizar cofrinho', + 'update_piggy_title' => 'Atualizar cofrinho ":name"', + 'updated_piggy_bank' => 'Cofrinho ":name" atualizado', + 'details' => 'Detalhes', + 'events' => 'Eventos', + 'target_amount' => 'Valor alvo', + 'start_date' => 'Data de Início', + 'no_start_date' => 'Sem data de início', + 'target_date' => 'Data Alvo', + 'no_target_date' => 'Nenhum data', + 'table' => 'Tabela', + 'delete_piggy_bank' => 'Apagar cofrinho ":name"', + 'cannot_add_amount_piggy' => 'Não foi possível adicionar :amount a ":name".', + 'cannot_remove_from_piggy' => 'Não foi possível remover :amount de ":name".', + 'deleted_piggy_bank' => 'Cofrinho ":name" excluído', + 'added_amount_to_piggy' => 'Adicionado :amount em ":name"', + 'removed_amount_from_piggy' => 'Removido :amount de ":name"', + 'piggy_events' => 'Relacionado ao cofrinho', // tags - 'delete_tag' => 'Apagar tag ":tag"', - 'deleted_tag' => 'Tag ":tag" excluída', - 'new_tag' => 'Fazer nova tag', - 'edit_tag' => 'Editar tag ":tag"', - 'updated_tag' => 'Tag atualizada ":tag"', - 'created_tag' => 'Tag ":tag" foi criada!', + 'delete_tag' => 'Apagar tag ":tag"', + 'deleted_tag' => 'Tag ":tag" excluída', + 'new_tag' => 'Fazer nova tag', + 'edit_tag' => 'Editar tag ":tag"', + 'updated_tag' => 'Tag atualizada ":tag"', + 'created_tag' => 'Tag ":tag" foi criada!', - 'transaction_journal_information' => 'Informação da transação', - 'transaction_journal_amount' => 'Informação da quantidade', - 'transaction_journal_meta' => 'Meta-informação', - 'transaction_journal_more' => 'Mais informações', - 'basic_journal_information' => 'Informações básicas de transação', - 'transaction_journal_extra' => 'Informação extra', - 'att_part_of_journal' => 'Armazendo sob ":journal"', - 'total_amount' => 'Valor total', - 'number_of_decimals' => 'Número de casas decimais', + 'transaction_journal_information' => 'Informação da transação', + 'transaction_journal_amount' => 'Informação da quantidade', + 'transaction_journal_meta' => 'Meta-informação', + 'transaction_journal_more' => 'Mais informações', + 'basic_journal_information' => 'Informações básicas de transação', + 'transaction_journal_extra' => 'Informação extra', + 'att_part_of_journal' => 'Armazendo sob ":journal"', + 'total_amount' => 'Valor total', + 'number_of_decimals' => 'Número de casas decimais', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'O convite para ":address" já foi resgatado.', - 'invite_is_deleted' => 'O convite para ":address" foi removido.', - 'invite_new_user_title' => 'Convidar novo usuário', - 'invite_new_user_text' => 'Como administrador, você pode convidar usuários para se registrarem na administração do Firefly III. Usando o link direto que você pode compartilhar, eles serão capazes de registrar uma conta. O usuário convidado e seu link de convite aparecerão na tabela abaixo. Você é livre para compartilhar com eles o link do convite.', - 'invited_user_mail' => 'E-mail', - 'invite_user' => 'Convidar usuário', - 'user_is_invited' => 'O e-mail ":address" foi convidado para Firefly III', - 'administration' => 'Administração', - 'system_settings' => 'Configurações do sistema', - 'code_already_used' => 'O código de convite foi utilizado', - 'user_administration' => 'Administração de usuários', - 'list_all_users' => 'Todos os usuários', - 'all_users' => 'Todos os usuários', - 'instance_configuration' => 'Configuração', - 'firefly_instance_configuration' => 'Opções de configuração para Firefly III', - 'setting_single_user_mode' => 'Modo de usuário único', - 'setting_single_user_mode_explain' => 'Por padrão, o Firefly III aceita apenas um (1) usuário registrado: você. Esta é uma medida de segurança para impedir que outros usem sua instância a menos que você os permita. Os registros futuros estão bloqueados. Quando você desmarca esta opção, outros podem usar sua instância se puderem acessá-la (quando ela está conectada à Internet).', - 'store_configuration' => 'Salvar configuração', - 'single_user_administration' => 'Administração de usuários para :email', - 'edit_user' => 'Editar usuário :email', - 'hidden_fields_preferences' => 'Você pode habilitar mais opções de transação em suas preferências.', - 'user_data_information' => 'Dados de usuário', - 'user_information' => 'Informações do usuário', - 'total_size' => 'tamanho total', - 'budget_or_budgets' => ':count orçamento|:count orçamentos', - 'budgets_with_limits' => ':count orçamento com valor configurado|:count orçamentos com valor configurado', - 'nr_of_rules_in_total_groups' => ':count_rules regra (s) em :count_groups grupo(s) de regras', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'A configuração foi atualizada', - 'setting_is_demo_site' => 'Site demo', - 'setting_is_demo_site_explain' => 'Se você marcar esta caixa, esta instância vai se comportar como se fosse o site de demonstração, o que pode ter efeitos colaterais estranhos.', - 'block_code_bounced' => 'Mensagem(s) de email devolvidas', - 'block_code_expired' => 'Conta de demonstração expirada', - 'no_block_code' => 'Nenhuma razão para o bloqueio ou o usuário não está bloqueado', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'O usuário ainda não confirmou o novo endereço de e-mail', - 'admin_update_email' => 'Ao contrário da página de perfil, o usuário NÃO será notificado de que seu endereço de e-mail mudou!', - 'update_user' => 'Atualizar usuário', - 'updated_user' => 'Os dados do usuário foram alterados.', - 'delete_user' => 'Excluir usuário :email', - 'user_deleted' => 'O usuário foi apagado', - 'send_test_email' => 'Enviar e-mail de teste', - 'send_test_email_text' => 'Para verificar se a sua instalação é capaz de enviar e-mail ou postar mensagens no Slack, pressione este botão. Você não verá um erro aqui (se houver), os arquivos de log refletirão quaisquer erros. Você pode pressionar este botão quantas vezes quiser. Não há controle de spam. A mensagem será enviada para :email e deve chegar em breve.', - 'send_message' => 'Enviar mensagem', - 'send_test_triggered' => 'O teste foi desencadeado. Verifique a sua caixa de entrada e os arquivos de log.', - 'give_admin_careful' => 'Os usuários que obtiverem direitos de administrador podem retirar os seus. Tenha cuidado.', - 'admin_maintanance_title' => 'Manutenção', - 'admin_maintanance_expl' => 'Alguns botões úteis para a manutenção do Firefly III', - 'admin_maintenance_clear_cache' => 'Limpar o cache', - 'admin_notifications' => 'Notificações do Administrador', - 'admin_notifications_expl' => 'As seguintes notificações podem ser ativadas ou desativadas pelo administrador. Se você quiser ter essas mensagens no Slack, defina a URL de "webhook de entrada".', - 'admin_notification_check_user_new_reg' => 'Usuário recebe mensagem de boas-vindas pós-registro', - 'admin_notification_check_admin_new_reg' => 'Administrador(es) recebem uma notificação de registro de novo usuário', - 'admin_notification_check_new_version' => 'Uma nova versão está disponível', - 'admin_notification_check_invite_created' => 'Um usuário foi convidado para Firefly III', - 'admin_notification_check_invite_redeemed' => 'Um convite de usuário foi resgatado', - 'all_invited_users' => 'Todos os usuários convidados', - 'save_notification_settings' => 'Salvar configurações', - 'notification_settings_saved' => 'As configurações de notificação foram salvas', + 'invite_is_already_redeemed' => 'O convite para ":address" já foi resgatado.', + 'invite_is_deleted' => 'O convite para ":address" foi removido.', + 'invite_new_user_title' => 'Convidar novo usuário', + 'invite_new_user_text' => 'Como administrador, você pode convidar usuários para se registrarem na administração do Firefly III. Usando o link direto que você pode compartilhar, eles serão capazes de registrar uma conta. O usuário convidado e seu link de convite aparecerão na tabela abaixo. Você é livre para compartilhar com eles o link do convite.', + 'invited_user_mail' => 'E-mail', + 'invite_user' => 'Convidar usuário', + 'user_is_invited' => 'O e-mail ":address" foi convidado para Firefly III', + 'administration' => 'Administração', + 'system_settings' => 'Configurações do sistema', + 'code_already_used' => 'O código de convite foi utilizado', + 'user_administration' => 'Administração de usuários', + 'list_all_users' => 'Todos os usuários', + 'all_users' => 'Todos os usuários', + 'instance_configuration' => 'Configuração', + 'firefly_instance_configuration' => 'Opções de configuração para Firefly III', + 'setting_single_user_mode' => 'Modo de usuário único', + 'setting_single_user_mode_explain' => 'Por padrão, o Firefly III aceita apenas um (1) usuário registrado: você. Esta é uma medida de segurança para impedir que outros usem sua instância a menos que você os permita. Os registros futuros estão bloqueados. Quando você desmarca esta opção, outros podem usar sua instância se puderem acessá-la (quando ela está conectada à Internet).', + 'store_configuration' => 'Salvar configuração', + 'single_user_administration' => 'Administração de usuários para :email', + 'edit_user' => 'Editar usuário :email', + 'hidden_fields_preferences' => 'Você pode habilitar mais opções de transação em suas preferências.', + 'user_data_information' => 'Dados de usuário', + 'user_information' => 'Informações do usuário', + 'total_size' => 'tamanho total', + 'budget_or_budgets' => ':count orçamento|:count orçamentos', + 'budgets_with_limits' => ':count orçamento com valor configurado|:count orçamentos com valor configurado', + 'nr_of_rules_in_total_groups' => ':count_rules regra (s) em :count_groups grupo(s) de regras', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'A configuração foi atualizada', + 'setting_is_demo_site' => 'Site demo', + 'setting_is_demo_site_explain' => 'Se você marcar esta caixa, esta instância vai se comportar como se fosse o site de demonstração, o que pode ter efeitos colaterais estranhos.', + 'block_code_bounced' => 'Mensagem(s) de email devolvidas', + 'block_code_expired' => 'Conta de demonstração expirada', + 'no_block_code' => 'Nenhuma razão para o bloqueio ou o usuário não está bloqueado', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'O usuário ainda não confirmou o novo endereço de e-mail', + 'admin_update_email' => 'Ao contrário da página de perfil, o usuário NÃO será notificado de que seu endereço de e-mail mudou!', + 'update_user' => 'Atualizar usuário', + 'updated_user' => 'Os dados do usuário foram alterados.', + 'delete_user' => 'Excluir usuário :email', + 'user_deleted' => 'O usuário foi apagado', + 'send_test_email' => 'Enviar e-mail de teste', + 'send_test_email_text' => 'Para verificar se a sua instalação é capaz de enviar e-mail ou postar mensagens no Slack, pressione este botão. Você não verá um erro aqui (se houver), os arquivos de log refletirão quaisquer erros. Você pode pressionar este botão quantas vezes quiser. Não há controle de spam. A mensagem será enviada para :email e deve chegar em breve.', + 'send_message' => 'Enviar mensagem', + 'send_test_triggered' => 'O teste foi desencadeado. Verifique a sua caixa de entrada e os arquivos de log.', + 'give_admin_careful' => 'Os usuários que obtiverem direitos de administrador podem retirar os seus. Tenha cuidado.', + 'admin_maintanance_title' => 'Manutenção', + 'admin_maintanance_expl' => 'Alguns botões úteis para a manutenção do Firefly III', + 'admin_maintenance_clear_cache' => 'Limpar o cache', + 'admin_notifications' => 'Notificações do Administrador', + 'admin_notifications_expl' => 'As seguintes notificações podem ser ativadas ou desativadas pelo administrador. Se você quiser ter essas mensagens no Slack, defina a URL de "webhook de entrada".', + 'admin_notification_check_user_new_reg' => 'Usuário recebe mensagem de boas-vindas pós-registro', + 'admin_notification_check_admin_new_reg' => 'Administrador(es) recebem uma notificação de registro de novo usuário', + 'admin_notification_check_new_version' => 'Uma nova versão está disponível', + 'admin_notification_check_invite_created' => 'Um usuário foi convidado para Firefly III', + 'admin_notification_check_invite_redeemed' => 'Um convite de usuário foi resgatado', + 'all_invited_users' => 'Todos os usuários convidados', + 'save_notification_settings' => 'Salvar configurações', + 'notification_settings_saved' => 'As configurações de notificação foram salvas', - 'split_transaction_title' => 'Descrição da transação dividida', - 'split_transaction_title_help' => 'Se você criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', - 'split_title_help' => 'Se você criar uma transação dividida, é necessário haver uma descrição global para todas as partes da transação.', - 'you_create_transfer' => 'Você está criando uma transferência.', - 'you_create_withdrawal' => 'Você está criando uma saída.', - 'you_create_deposit' => 'Você está criando uma entrada.', + 'split_transaction_title' => 'Descrição da transação dividida', + 'split_transaction_title_help' => 'Se você criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', + 'split_title_help' => 'Se você criar uma transação dividida, é necessário haver uma descrição global para todas as partes da transação.', + 'you_create_transfer' => 'Você está criando uma transferência.', + 'you_create_withdrawal' => 'Você está criando uma saída.', + 'you_create_deposit' => 'Você está criando uma entrada.', // links - 'journal_link_configuration' => 'Configuração de vínculos de transações', - 'create_new_link_type' => 'Crie um novo tipo de vínculo', - 'store_new_link_type' => 'Armazene novo tipo de vínculo', - 'update_link_type' => 'Atualize o tipo de vínculo', - 'edit_link_type' => 'Editar tipo de vínculo ":name"', - 'updated_link_type' => 'Tipo de vínculo ":name" atualizado', - 'delete_link_type' => 'Excluir tipo de vínculo ":name"', - 'deleted_link_type' => 'Tipo de vínculo ":name" excluído', - 'stored_new_link_type' => 'Armazene novo tipo de vínculo ":name"', - 'cannot_edit_link_type' => 'Não é possível editar o tipo de vínculo ":name"', - 'link_type_help_name' => 'Ou seja. "Duplicatas"', - 'link_type_help_inward' => 'Ou seja. "duplicatas"', - 'link_type_help_outward' => 'Ou seja. "é duplicado por"', - 'save_connections_by_moving' => 'Salve o vínculo entre essas transações movendo-as para outro tipo de vínculo:', - 'do_not_save_connection' => '(não salve a conexão)', - 'link_transaction' => 'Vincular transação', - 'link_to_other_transaction' => 'Vincule esta transação a outra transação', - 'select_transaction_to_link' => 'Selecione uma transação para vincular com esta transação. Atualmente, os vínculos não são usados no Firefly III (além de serem exibidos), mas planejo mudar isso no futuro. Use a caixa de pesquisa para selecionar uma transação por título ou por ID. Se você quiser adicionar tipos de vínculo personalizados, confira a seção de administração.', - 'this_transaction' => 'Esta transação', - 'transaction' => 'Transação', - 'comments' => 'Comentários', - 'link_notes' => 'Quaisquer notas que você deseja armazenar com o link.', - 'invalid_link_selection' => 'Não é possível vincular essas transações', - 'selected_transaction' => 'Transação selecionada', - 'journals_linked' => 'As transações estão vinculadas.', - 'journals_error_linked' => 'Essas transações já estão vinculadas.', - 'journals_link_to_self' => 'Você não pode vincular uma transação a ela mesma', - 'journal_links' => 'Transações vinculadas', - 'this_withdrawal' => 'Esta saída', - 'this_deposit' => 'Esta entrada', - 'this_transfer' => 'Esta transferência', - 'overview_for_link' => 'Visão geral para o tipo de vínculo ":name"', - 'source_transaction' => 'Transação de origem', - 'link_description' => 'Descrição do vínculo', - 'destination_transaction' => 'Transação de destino', - 'delete_journal_link' => 'Excluir o vínculo entre :source e :destination', - 'deleted_link' => 'Vínculo excluído', + 'journal_link_configuration' => 'Configuração de vínculos de transações', + 'create_new_link_type' => 'Crie um novo tipo de vínculo', + 'store_new_link_type' => 'Armazene novo tipo de vínculo', + 'update_link_type' => 'Atualize o tipo de vínculo', + 'edit_link_type' => 'Editar tipo de vínculo ":name"', + 'updated_link_type' => 'Tipo de vínculo ":name" atualizado', + 'delete_link_type' => 'Excluir tipo de vínculo ":name"', + 'deleted_link_type' => 'Tipo de vínculo ":name" excluído', + 'stored_new_link_type' => 'Armazene novo tipo de vínculo ":name"', + 'cannot_edit_link_type' => 'Não é possível editar o tipo de vínculo ":name"', + 'link_type_help_name' => 'Ou seja. "Duplicatas"', + 'link_type_help_inward' => 'Ou seja. "duplicatas"', + 'link_type_help_outward' => 'Ou seja. "é duplicado por"', + 'save_connections_by_moving' => 'Salve o vínculo entre essas transações movendo-as para outro tipo de vínculo:', + 'do_not_save_connection' => '(não salve a conexão)', + 'link_transaction' => 'Vincular transação', + 'link_to_other_transaction' => 'Vincule esta transação a outra transação', + 'select_transaction_to_link' => 'Selecione uma transação para vincular com esta transação. Atualmente, os vínculos não são usados no Firefly III (além de serem exibidos), mas planejo mudar isso no futuro. Use a caixa de pesquisa para selecionar uma transação por título ou por ID. Se você quiser adicionar tipos de vínculo personalizados, confira a seção de administração.', + 'this_transaction' => 'Esta transação', + 'transaction' => 'Transação', + 'comments' => 'Comentários', + 'link_notes' => 'Quaisquer notas que você deseja armazenar com o link.', + 'invalid_link_selection' => 'Não é possível vincular essas transações', + 'selected_transaction' => 'Transação selecionada', + 'journals_linked' => 'As transações estão vinculadas.', + 'journals_error_linked' => 'Essas transações já estão vinculadas.', + 'journals_link_to_self' => 'Você não pode vincular uma transação a ela mesma', + 'journal_links' => 'Transações vinculadas', + 'this_withdrawal' => 'Esta saída', + 'this_deposit' => 'Esta entrada', + 'this_transfer' => 'Esta transferência', + 'overview_for_link' => 'Visão geral para o tipo de vínculo ":name"', + 'source_transaction' => 'Transação de origem', + 'link_description' => 'Descrição do vínculo', + 'destination_transaction' => 'Transação de destino', + 'delete_journal_link' => 'Excluir o vínculo entre :source e :destination', + 'deleted_link' => 'Vínculo excluído', // link translations: - 'Paid_name' => 'Pago', - 'Refund_name' => 'Devolução', - 'Reimbursement_name' => 'Reembolso', - 'Related_name' => 'Relacionado', - 'relates to_inward' => 'relacionado a', - 'is (partially) refunded by_inward' => 'é (parcialmente) devolvido por', - 'is (partially) paid for by_inward' => 'é (parcialmente) pago por', - 'is (partially) reimbursed by_inward' => 'é (parcialmente) reembolsado por', - 'inward_transaction' => 'Transação interna', - 'outward_transaction' => 'Transação externa', - 'relates to_outward' => 'relacionado a', - '(partially) refunds_outward' => 'devolve (parcialmente)', - '(partially) pays for_outward' => 'paga (parcialmente) por', - '(partially) reimburses_outward' => 'reembolsa (parcialmente)', - 'is (partially) refunded by' => 'foi (parcialmente) devolvido por', - 'is (partially) paid for by' => 'foi (parcialmente) pago por', - 'is (partially) reimbursed by' => 'foi (parcialmente) reembolsado por', - 'relates to' => 'relacionado a', - '(partially) refunds' => '(parcialmente) devolve', - '(partially) pays for' => 'paga (parcialmente)', - '(partially) reimburses' => '(parcialmente) reembolsa', + 'Paid_name' => 'Pago', + 'Refund_name' => 'Devolução', + 'Reimbursement_name' => 'Reembolso', + 'Related_name' => 'Relacionado', + 'relates to_inward' => 'relacionado a', + 'is (partially) refunded by_inward' => 'é (parcialmente) devolvido por', + 'is (partially) paid for by_inward' => 'é (parcialmente) pago por', + 'is (partially) reimbursed by_inward' => 'é (parcialmente) reembolsado por', + 'inward_transaction' => 'Transação interna', + 'outward_transaction' => 'Transação externa', + 'relates to_outward' => 'relacionado a', + '(partially) refunds_outward' => 'devolve (parcialmente)', + '(partially) pays for_outward' => 'paga (parcialmente) por', + '(partially) reimburses_outward' => 'reembolsa (parcialmente)', + 'is (partially) refunded by' => 'foi (parcialmente) devolvido por', + 'is (partially) paid for by' => 'foi (parcialmente) pago por', + 'is (partially) reimbursed by' => 'foi (parcialmente) reembolsado por', + 'relates to' => 'relacionado a', + '(partially) refunds' => '(parcialmente) devolve', + '(partially) pays for' => 'paga (parcialmente)', + '(partially) reimburses' => '(parcialmente) reembolsa', // split a transaction: - 'splits' => 'Divisões', - 'add_another_split' => 'Adicionar outra divisão', - 'cannot_edit_opening_balance' => 'Não é possível editar o saldo de abertura de uma conta.', - 'no_edit_multiple_left' => 'Você não selecionou nenhuma transação válida para editar.', - 'breadcrumb_convert_group' => 'Converter transação', - 'convert_invalid_source' => 'As informações de origem são inválidas para transações #%d.', - 'convert_invalid_destination' => 'As informações de destino são inválidas para transações #%d.', - 'create_another' => 'Depois de armazenar, retorne aqui para criar outro.', - 'after_update_create_another' => 'Depois de atualizar, retorne aqui para continuar editando.', - 'store_as_new' => 'Armazene como uma nova transação em vez de atualizar.', - 'reset_after' => 'Limpar o formulário após o envio', - 'errors_submission' => 'Algo deu errado com seu envio. Por favor, verifique os erros abaixo.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Exibir divisão', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Esconder divisão', + 'splits' => 'Divisões', + 'add_another_split' => 'Adicionar outra divisão', + 'cannot_edit_opening_balance' => 'Não é possível editar o saldo de abertura de uma conta.', + 'no_edit_multiple_left' => 'Você não selecionou nenhuma transação válida para editar.', + 'breadcrumb_convert_group' => 'Converter transação', + 'convert_invalid_source' => 'As informações de origem são inválidas para transações #%d.', + 'convert_invalid_destination' => 'As informações de destino são inválidas para transações #%d.', + 'create_another' => 'Depois de armazenar, retorne aqui para criar outro.', + 'after_update_create_another' => 'Depois de atualizar, retorne aqui para continuar editando.', + 'store_as_new' => 'Armazene como uma nova transação em vez de atualizar.', + 'reset_after' => 'Limpar o formulário após o envio', + 'errors_submission' => 'Algo deu errado com seu envio. Por favor, verifique os erros abaixo.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Exibir divisão', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Esconder divisão', // object groups - 'default_group_title_name' => '(não agrupado)', - 'default_group_title_name_plain' => 'sem grupo', + 'default_group_title_name' => '(não agrupado)', + 'default_group_title_name_plain' => 'sem grupo', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Vamos criar uma conta de ativos!', - 'no_accounts_intro_asset' => 'Ainda não possui contas de ativos. As contas de ativos são suas principais contas: sua conta corrente, conta poupança, conta compartilhada ou mesmo seu cartão de crédito.', - 'no_accounts_imperative_asset' => 'Para começar a usar o Firefly III, você deve criar pelo menos uma conta de ativos. Vamos fazer agora:', - 'no_accounts_create_asset' => 'Criar uma conta de ativo', - 'no_accounts_title_expense' => 'Vamos criar uma conta de despesas!', - 'no_accounts_intro_expense' => 'Você ainda não possui contas de despesas. As contas de despesas são os lugares onde você gasta dinheiro, como lojas e supermercados.', - 'no_accounts_imperative_expense' => 'As contas de despesas são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente, se desejar. Vamos criar uma agora:', - 'no_accounts_create_expense' => 'Criar uma conta de despesas', - 'no_accounts_title_revenue' => 'Vamos criar uma conta de receita!', - 'no_accounts_intro_revenue' => 'Você ainda não possui contas de receita. As contas de receita são os locais onde você recebe dinheiro, como o seu empregador.', - 'no_accounts_imperative_revenue' => 'As contas de receita são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente, se desejar. Vamos criar um agora:', - 'no_accounts_create_revenue' => 'Criar uma conta de receita', - 'no_accounts_title_liabilities' => 'Vamos criar um passivo!', - 'no_accounts_intro_liabilities' => 'Você ainda não tem nenhum passivo. Essas contas registram seus empréstimos e outras dívidas.', - 'no_accounts_imperative_liabilities' => 'Você não precisa usar esse recurso, mas pode ser útil se você quer controlar esse tipo de coisas.', - 'no_accounts_create_liabilities' => 'Criar um passivo', - 'no_budgets_title_default' => 'Vamos criar um orçamento', - 'no_rules_title_default' => 'Vamos criar uma regra', - 'no_budgets_intro_default' => 'Você ainda não tem nenhum orçamento. Eles são utilizados para organizar suas despesas em grupos lógicos, que você pode aplicar para limitar suas despesas.', - 'no_rules_intro_default' => 'Você ainda não tem regras. As regras são poderosas automações que podem gerenciar transações para você.', - 'no_rules_imperative_default' => 'As regras podem ser muito úteis quando você está gerenciando transações. Vamos criar uma agora:', - 'no_budgets_imperative_default' => 'Os orçamentos são as ferramentas básicas de gestão financeira. Vamos criar um agora:', - 'no_budgets_create_default' => 'Criar orçamento', - 'no_rules_create_default' => 'Criar uma regra', - 'no_categories_title_default' => 'Vamos criar uma categoria!', - 'no_categories_intro_default' => 'Você ainda não possui categorias. As categorias são usadas para ajustar suas transações e rotulá-las com a categoria designada.', - 'no_categories_imperative_default' => 'As categorias são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente. Vamos criar uma agora:', - 'no_categories_create_default' => 'Criar uma categoria', - 'no_tags_title_default' => 'Vamos criar uma tag!', - 'no_tags_intro_default' => 'Ainda não possui tags. As tags são usadas para ajustar suas transações e rotulá-las com palavras-chave específicas.', - 'no_tags_imperative_default' => 'As tags são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente. Vamos criar uma agora:', - 'no_tags_create_default' => 'Criar uma tag', - 'no_transactions_title_withdrawal' => 'Vamos criar uma despesa!', - 'no_transactions_intro_withdrawal' => 'Ainda não tem despesas. Você deve criar despesas para começar a gerenciar suas finanças.', - 'no_transactions_imperative_withdrawal' => 'Você gastou algum dinheiro? Então você deve anotá-lo:', - 'no_transactions_create_withdrawal' => 'Crie uma despesa', - 'no_transactions_title_deposit' => 'Vamos criar alguma renda!', - 'no_transactions_intro_deposit' => 'Você não tem nenhuma renda registrada ainda. Você deve criar entradas de renda para começar a gerenciar suas finanças.', - 'no_transactions_imperative_deposit' => 'Você recebeu algum dinheiro? Então você deve anotá-lo:', - 'no_transactions_create_deposit' => 'Criar uma entrada', - 'no_transactions_title_transfers' => 'Vamos criar uma transferência!', - 'no_transactions_intro_transfers' => 'Você ainda não tem transferências. Quando você move dinheiro entre contas ativas, ele é registrado como uma transferência.', - 'no_transactions_imperative_transfers' => 'Você moveu algum dinheiro? Então você deve anotá-lo:', - 'no_transactions_create_transfers' => 'Criar uma transferência', - 'no_piggies_title_default' => 'Vamos criar um cofrinho!', - 'no_piggies_intro_default' => 'Você ainda não tem cofrinhos. Você pode criar cofrinhos para dividir suas economias e acompanhar para o que você está economizando.', - 'no_piggies_imperative_default' => 'Você tem coisas para as quais você está economizando? Crie um cofrinho e acompanhe:', - 'no_piggies_create_default' => 'Criar um novo cofrinho', - 'no_bills_title_default' => 'Vamos criar uma fatura!', - 'no_bills_intro_default' => 'Você ainda não possui faturas. Você pode criar faturas para acompanhar as despesas regulares, como sua renda ou seguro.', - 'no_bills_imperative_default' => 'Você tem esse tipo de fatura regularmente? Crie uma fatura e acompanhe seus pagamentos:', - 'no_bills_create_default' => 'Criar uma fatura', + 'no_accounts_title_asset' => 'Vamos criar uma conta de ativos!', + 'no_accounts_intro_asset' => 'Ainda não possui contas de ativos. As contas de ativos são suas principais contas: sua conta corrente, conta poupança, conta compartilhada ou mesmo seu cartão de crédito.', + 'no_accounts_imperative_asset' => 'Para começar a usar o Firefly III, você deve criar pelo menos uma conta de ativos. Vamos fazer agora:', + 'no_accounts_create_asset' => 'Criar uma conta de ativo', + 'no_accounts_title_expense' => 'Vamos criar uma conta de despesas!', + 'no_accounts_intro_expense' => 'Você ainda não possui contas de despesas. As contas de despesas são os lugares onde você gasta dinheiro, como lojas e supermercados.', + 'no_accounts_imperative_expense' => 'As contas de despesas são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente, se desejar. Vamos criar uma agora:', + 'no_accounts_create_expense' => 'Criar uma conta de despesas', + 'no_accounts_title_revenue' => 'Vamos criar uma conta de receita!', + 'no_accounts_intro_revenue' => 'Você ainda não possui contas de receita. As contas de receita são os locais onde você recebe dinheiro, como o seu empregador.', + 'no_accounts_imperative_revenue' => 'As contas de receita são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente, se desejar. Vamos criar um agora:', + 'no_accounts_create_revenue' => 'Criar uma conta de receita', + 'no_accounts_title_liabilities' => 'Vamos criar um passivo!', + 'no_accounts_intro_liabilities' => 'Você ainda não tem nenhum passivo. Essas contas registram seus empréstimos e outras dívidas.', + 'no_accounts_imperative_liabilities' => 'Você não precisa usar esse recurso, mas pode ser útil se você quer controlar esse tipo de coisas.', + 'no_accounts_create_liabilities' => 'Criar um passivo', + 'no_budgets_title_default' => 'Vamos criar um orçamento', + 'no_rules_title_default' => 'Vamos criar uma regra', + 'no_budgets_intro_default' => 'Você ainda não tem nenhum orçamento. Eles são utilizados para organizar suas despesas em grupos lógicos, que você pode aplicar para limitar suas despesas.', + 'no_rules_intro_default' => 'Você ainda não tem regras. As regras são poderosas automações que podem gerenciar transações para você.', + 'no_rules_imperative_default' => 'As regras podem ser muito úteis quando você está gerenciando transações. Vamos criar uma agora:', + 'no_budgets_imperative_default' => 'Os orçamentos são as ferramentas básicas de gestão financeira. Vamos criar um agora:', + 'no_budgets_create_default' => 'Criar orçamento', + 'no_rules_create_default' => 'Criar uma regra', + 'no_categories_title_default' => 'Vamos criar uma categoria!', + 'no_categories_intro_default' => 'Você ainda não possui categorias. As categorias são usadas para ajustar suas transações e rotulá-las com a categoria designada.', + 'no_categories_imperative_default' => 'As categorias são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente. Vamos criar uma agora:', + 'no_categories_create_default' => 'Criar uma categoria', + 'no_tags_title_default' => 'Vamos criar uma tag!', + 'no_tags_intro_default' => 'Ainda não possui tags. As tags são usadas para ajustar suas transações e rotulá-las com palavras-chave específicas.', + 'no_tags_imperative_default' => 'As tags são criadas automaticamente quando você cria transações, mas você também pode criar uma manualmente. Vamos criar uma agora:', + 'no_tags_create_default' => 'Criar uma tag', + 'no_transactions_title_withdrawal' => 'Vamos criar uma despesa!', + 'no_transactions_intro_withdrawal' => 'Ainda não tem despesas. Você deve criar despesas para começar a gerenciar suas finanças.', + 'no_transactions_imperative_withdrawal' => 'Você gastou algum dinheiro? Então você deve anotá-lo:', + 'no_transactions_create_withdrawal' => 'Crie uma despesa', + 'no_transactions_title_deposit' => 'Vamos criar alguma renda!', + 'no_transactions_intro_deposit' => 'Você não tem nenhuma renda registrada ainda. Você deve criar entradas de renda para começar a gerenciar suas finanças.', + 'no_transactions_imperative_deposit' => 'Você recebeu algum dinheiro? Então você deve anotá-lo:', + 'no_transactions_create_deposit' => 'Criar uma entrada', + 'no_transactions_title_transfers' => 'Vamos criar uma transferência!', + 'no_transactions_intro_transfers' => 'Você ainda não tem transferências. Quando você move dinheiro entre contas ativas, ele é registrado como uma transferência.', + 'no_transactions_imperative_transfers' => 'Você moveu algum dinheiro? Então você deve anotá-lo:', + 'no_transactions_create_transfers' => 'Criar uma transferência', + 'no_piggies_title_default' => 'Vamos criar um cofrinho!', + 'no_piggies_intro_default' => 'Você ainda não tem cofrinhos. Você pode criar cofrinhos para dividir suas economias e acompanhar para o que você está economizando.', + 'no_piggies_imperative_default' => 'Você tem coisas para as quais você está economizando? Crie um cofrinho e acompanhe:', + 'no_piggies_create_default' => 'Criar um novo cofrinho', + 'no_bills_title_default' => 'Vamos criar uma fatura!', + 'no_bills_intro_default' => 'Você ainda não possui faturas. Você pode criar faturas para acompanhar as despesas regulares, como sua renda ou seguro.', + 'no_bills_imperative_default' => 'Você tem esse tipo de fatura regularmente? Crie uma fatura e acompanhe seus pagamentos:', + 'no_bills_create_default' => 'Criar uma fatura', // recurring transactions - 'create_right_now' => 'Criar agora mesmo', - 'no_new_transaction_in_recurrence' => 'Nenhuma transação nova foi criada. Talvez já tenha sido disparada nesta data?', - 'recurrences' => 'Transações recorrentes', - 'repeat_until_in_past' => 'Esta transação recorrente parou de repetir em :date.', - 'recurring_calendar_view' => 'Calendário', - 'no_recurring_title_default' => 'Vamos criar uma transação recorrente!', - 'no_recurring_intro_default' => 'Você ainda não tem nenhuma transação recorrente. Você pode usá-las para que o Firefly III crie transações para você automaticamente.', - 'no_recurring_imperative_default' => 'Essa é uma função bastante avançada, mas pode ser muito útil. Leia a documentação (ícone (?) no canto superior direito) antes de continuar.', - 'no_recurring_create_default' => 'Criar transação recorrente', - 'make_new_recurring' => 'Criar transação recorrente', - 'recurring_daily' => 'Todos os dias', - 'recurring_weekly' => ':weekday toda semana', - 'recurring_weekly_skip' => 'A cada :skipª semana em :weekday', - 'recurring_monthly' => 'Todos os meses no dia :dayOfMonth', - 'recurring_monthly_skip' => 'A cada mês :skipº no dia :dayOfMonth', - 'recurring_ndom' => 'Todos os meses na(o) :dayOfMonth ª/º :weekday', - 'recurring_yearly' => 'Todos os anos em :date', - 'overview_for_recurrence' => 'Visão geral da transação recorrente ":title"', - 'warning_duplicates_repetitions' => 'Em raras ocasiões, as datas aparecem duas vezes na lista. Isso pode acontecer quando várias repetições colidem. Firefly III sempre irá gerar uma transação por dia.', - 'created_transactions' => 'Transações relacionadas', - 'expected_withdrawals' => 'Saídas previstas', - 'expected_deposits' => 'Entradas esperadas', - 'expected_transfers' => 'Transferências previstas', - 'created_withdrawals' => 'Saídas criadas', - 'created_deposits' => 'Entradas criadas', - 'created_transfers' => 'Transferências criadas', - 'recurring_info' => 'Transação recorrente :count / :total', - 'created_from_recurrence' => 'Criado a partir da transação recorrente ":title" (#:id)', - 'recurring_never_cron' => 'Parece que o cron job necessário para dar suporte a transações recorrentes nunca foi executado. Isso é normal quando você acabou de instalar o Firefly III, mas deve ser configurado o quanto antes. Por favor, veja as páginas de ajuda usando o ícone (?) no canto superior direito da página.', - 'recurring_cron_long_ago' => 'Faz mais de 36 horas que o cron job que dá suporte a transações recorrentes foi acionado pela última vez. Tem certeza de que foi configurado corretamente? Por favor, veja as páginas de ajuda usando o ícone (?) no canto superior direito da página.', + 'create_right_now' => 'Criar agora mesmo', + 'no_new_transaction_in_recurrence' => 'Nenhuma transação nova foi criada. Talvez já tenha sido disparada nesta data?', + 'recurrences' => 'Transações recorrentes', + 'repeat_until_in_past' => 'Esta transação recorrente parou de repetir em :date.', + 'recurring_calendar_view' => 'Calendário', + 'no_recurring_title_default' => 'Vamos criar uma transação recorrente!', + 'no_recurring_intro_default' => 'Você ainda não tem nenhuma transação recorrente. Você pode usá-las para que o Firefly III crie transações para você automaticamente.', + 'no_recurring_imperative_default' => 'Essa é uma função bastante avançada, mas pode ser muito útil. Leia a documentação (ícone (?) no canto superior direito) antes de continuar.', + 'no_recurring_create_default' => 'Criar transação recorrente', + 'make_new_recurring' => 'Criar transação recorrente', + 'recurring_daily' => 'Todos os dias', + 'recurring_weekly' => ':weekday toda semana', + 'recurring_weekly_skip' => 'A cada :skipª semana em :weekday', + 'recurring_monthly' => 'Todos os meses no dia :dayOfMonth', + 'recurring_monthly_skip' => 'A cada mês :skipº no dia :dayOfMonth', + 'recurring_ndom' => 'Todos os meses na(o) :dayOfMonth ª/º :weekday', + 'recurring_yearly' => 'Todos os anos em :date', + 'overview_for_recurrence' => 'Visão geral da transação recorrente ":title"', + 'warning_duplicates_repetitions' => 'Em raras ocasiões, as datas aparecem duas vezes na lista. Isso pode acontecer quando várias repetições colidem. Firefly III sempre irá gerar uma transação por dia.', + 'created_transactions' => 'Transações relacionadas', + 'expected_withdrawals' => 'Saídas previstas', + 'expected_deposits' => 'Entradas esperadas', + 'expected_transfers' => 'Transferências previstas', + 'created_withdrawals' => 'Saídas criadas', + 'created_deposits' => 'Entradas criadas', + 'created_transfers' => 'Transferências criadas', + 'recurring_info' => 'Transação recorrente :count / :total', + 'created_from_recurrence' => 'Criado a partir da transação recorrente ":title" (#:id)', + 'recurring_never_cron' => 'Parece que o cron job necessário para dar suporte a transações recorrentes nunca foi executado. Isso é normal quando você acabou de instalar o Firefly III, mas deve ser configurado o quanto antes. Por favor, veja as páginas de ajuda usando o ícone (?) no canto superior direito da página.', + 'recurring_cron_long_ago' => 'Faz mais de 36 horas que o cron job que dá suporte a transações recorrentes foi acionado pela última vez. Tem certeza de que foi configurado corretamente? Por favor, veja as páginas de ajuda usando o ícone (?) no canto superior direito da página.', - 'create_new_recurrence' => 'Criar nova transação recorrente', - 'help_first_date' => 'Indique a primeira recorrência esperada. Isso deve ser no futuro.', - 'help_first_date_no_past' => 'Indique a primeira recorrência esperada. Firefly III não irá criar transações no passado.', - 'no_currency' => '(sem moeda)', - 'mandatory_for_recurring' => 'Informações obrigatórias de recorrência', - 'mandatory_for_transaction' => 'Informações obrigatórias de transação', - 'optional_for_recurring' => 'Informações opcionais de recorrência', - 'optional_for_transaction' => 'Informações opcionais de transação', - 'change_date_other_options' => 'Mude a "primeira data" para ver mais opções.', - 'mandatory_fields_for_tranaction' => 'Os valores aqui estarão na(s) transação(ões) criada(s)', - 'click_for_calendar' => 'Clique aqui para ver um calendário que mostra quando a transação se repetiria.', - 'repeat_forever' => 'Repetir para sempre', - 'repeat_until_date' => 'Repetir até uma data', - 'repeat_times' => 'Repetir uma quantidade de vezes', - 'recurring_skips_one' => 'Intercalado', - 'recurring_skips_more' => 'Pular :count ocorrências', - 'store_new_recurrence' => 'Salvar transação recorrente', - 'stored_new_recurrence' => 'Transação recorrente ":title" armazenada com sucesso.', - 'edit_recurrence' => 'Editar transação recorrente ":title"', - 'recurring_repeats_until' => 'Repetir até :date', - 'recurring_repeats_forever' => 'Repetir sempre', - 'recurring_repeats_x_times' => 'Repetir :count vez|Repetir :count vezes', - 'update_recurrence' => 'Atualizar transação recorrente', - 'updated_recurrence' => 'Atualizar transação recorrente ":title"', - 'recurrence_is_inactive' => 'Esta transação recorrente não está ativa e não gerará novas transações.', - 'delete_recurring' => 'Apagar transação recorrente ":title"', - 'new_recurring_transaction' => 'Nova transação recorrente', - 'help_weekend' => 'O que o Firefly III deve fazer quando a transação recorrente cai em um sábado ou domingo?', - 'do_nothing' => 'Apenas criar a transação', - 'skip_transaction' => 'Pular a ocorrência', - 'jump_to_friday' => 'Criar a transação na sexta-feira anterior', - 'jump_to_monday' => 'Criar a transação na segunda-feira seguinte', - 'will_jump_friday' => 'Será criada na sexta-feira em vez de nos finais de semana.', - 'will_jump_monday' => 'Será criada na segunda-feira em vez de nos finais de semana.', - 'except_weekends' => 'Exceto nos fins de semana', - 'recurrence_deleted' => 'Transação recorrente ":title" excluída', + 'create_new_recurrence' => 'Criar nova transação recorrente', + 'help_first_date' => 'Indique a primeira recorrência esperada. Isso deve ser no futuro.', + 'help_first_date_no_past' => 'Indique a primeira recorrência esperada. Firefly III não irá criar transações no passado.', + 'no_currency' => '(sem moeda)', + 'mandatory_for_recurring' => 'Informações obrigatórias de recorrência', + 'mandatory_for_transaction' => 'Informações obrigatórias de transação', + 'optional_for_recurring' => 'Informações opcionais de recorrência', + 'optional_for_transaction' => 'Informações opcionais de transação', + 'change_date_other_options' => 'Mude a "primeira data" para ver mais opções.', + 'mandatory_fields_for_tranaction' => 'Os valores aqui estarão na(s) transação(ões) criada(s)', + 'click_for_calendar' => 'Clique aqui para ver um calendário que mostra quando a transação se repetiria.', + 'repeat_forever' => 'Repetir para sempre', + 'repeat_until_date' => 'Repetir até uma data', + 'repeat_times' => 'Repetir uma quantidade de vezes', + 'recurring_skips_one' => 'Intercalado', + 'recurring_skips_more' => 'Pular :count ocorrências', + 'store_new_recurrence' => 'Salvar transação recorrente', + 'stored_new_recurrence' => 'Transação recorrente ":title" armazenada com sucesso.', + 'edit_recurrence' => 'Editar transação recorrente ":title"', + 'recurring_repeats_until' => 'Repetir até :date', + 'recurring_repeats_forever' => 'Repetir sempre', + 'recurring_repeats_x_times' => 'Repetir :count vez|Repetir :count vezes', + 'update_recurrence' => 'Atualizar transação recorrente', + 'updated_recurrence' => 'Atualizar transação recorrente ":title"', + 'recurrence_is_inactive' => 'Esta transação recorrente não está ativa e não gerará novas transações.', + 'delete_recurring' => 'Apagar transação recorrente ":title"', + 'new_recurring_transaction' => 'Nova transação recorrente', + 'help_weekend' => 'O que o Firefly III deve fazer quando a transação recorrente cai em um sábado ou domingo?', + 'do_nothing' => 'Apenas criar a transação', + 'skip_transaction' => 'Pular a ocorrência', + 'jump_to_friday' => 'Criar a transação na sexta-feira anterior', + 'jump_to_monday' => 'Criar a transação na segunda-feira seguinte', + 'will_jump_friday' => 'Será criada na sexta-feira em vez de nos finais de semana.', + 'will_jump_monday' => 'Será criada na segunda-feira em vez de nos finais de semana.', + 'except_weekends' => 'Exceto nos fins de semana', + 'recurrence_deleted' => 'Transação recorrente ":title" excluída', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Gasto (:currency)', - 'box_earned_in_currency' => 'Ganho (:currency)', - 'box_budgeted_in_currency' => 'Orçado (:currency)', - 'box_bill_paid_in_currency' => 'Faturas pagas (:currency)', - 'box_bill_unpaid_in_currency' => 'Faturas não pagas (:currency)', - 'box_left_to_spend_in_currency' => 'Restante para gastar (:currency)', - 'box_net_worth_in_currency' => 'Patrimônio líquido (:currency)', - 'box_spend_per_day' => 'Restante para gastar por dia: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Gasto (:currency)', + 'box_earned_in_currency' => 'Ganho (:currency)', + 'box_budgeted_in_currency' => 'Orçado (:currency)', + 'box_bill_paid_in_currency' => 'Faturas pagas (:currency)', + 'box_bill_unpaid_in_currency' => 'Faturas não pagas (:currency)', + 'box_left_to_spend_in_currency' => 'Restante para gastar (:currency)', + 'box_net_worth_in_currency' => 'Patrimônio líquido (:currency)', + 'box_spend_per_day' => 'Restante para gastar por dia: :amount', // debug page - 'debug_page' => 'Página de depuração', - 'debug_submit_instructions' => 'Se você estiver com problemas, você pode usar as informações nesta caixa como informações de depuração. Por favor, copie e cole em um issue existente ou nova GitHub. Gerará uma linda tabela que pode ser usada para diagnosticar rapidamente seu problema.', - 'debug_pretty_table' => 'Se você copiar/colar a caixa abaixo em uma issue no GitHub, ela irá gerar uma tabela. Por favor, não coloque este texto entre acentos agudos ou aspas.', - 'debug_additional_data' => 'Você também pode compartilhar o conteúdo da caixa abaixo. Você também pode copiar e colar isso em uma issue nova ou existente do GitHub. No entanto, o conteúdo desta caixa pode conter informações privadas, como nomes de conta, detalhes da transação ou endereços de e-mail.', + 'debug_page' => 'Página de depuração', + 'debug_submit_instructions' => 'Se você estiver com problemas, você pode usar as informações nesta caixa como informações de depuração. Por favor, copie e cole em um issue existente ou nova GitHub. Gerará uma linda tabela que pode ser usada para diagnosticar rapidamente seu problema.', + 'debug_pretty_table' => 'Se você copiar/colar a caixa abaixo em uma issue no GitHub, ela irá gerar uma tabela. Por favor, não coloque este texto entre acentos agudos ou aspas.', + 'debug_additional_data' => 'Você também pode compartilhar o conteúdo da caixa abaixo. Você também pode copiar e colar isso em uma issue nova ou existente do GitHub. No entanto, o conteúdo desta caixa pode conter informações privadas, como nomes de conta, detalhes da transação ou endereços de e-mail.', // object groups - 'object_groups_menu_bar' => 'Grupos', - 'object_groups_page_title' => 'Grupos', - 'object_groups_breadcrumb' => 'Grupos', - 'object_groups_index' => 'Visão geral', - 'object_groups' => 'Grupos', - 'object_groups_empty_explain' => 'Algumas coisas no Firefly III podem ser divididas em grupos. Cofrinhos, por exemplo, apresentam um campo "Grupo" nas telas de edição e criação. Quando definir este campo, você pode editar os nomes e a ordem dos grupos nesta página. Para obter mais informações, confira as páginas de ajuda no canto superior direito, abaixo do ícone (?).', - 'object_group_title' => 'Título', - 'edit_object_group' => 'Editar grupo ":title"', - 'delete_object_group' => 'Excluir grupo ":title"', - 'update_object_group' => 'Atualizar grupo', - 'updated_object_group' => 'O grupo ":title" foi atualizado com sucesso', - 'deleted_object_group' => 'O grupo ":title" foi deletado com sucesso', - 'object_group' => 'Grupo', + 'object_groups_menu_bar' => 'Grupos', + 'object_groups_page_title' => 'Grupos', + 'object_groups_breadcrumb' => 'Grupos', + 'object_groups_index' => 'Visão geral', + 'object_groups' => 'Grupos', + 'object_groups_empty_explain' => 'Algumas coisas no Firefly III podem ser divididas em grupos. Cofrinhos, por exemplo, apresentam um campo "Grupo" nas telas de edição e criação. Quando definir este campo, você pode editar os nomes e a ordem dos grupos nesta página. Para obter mais informações, confira as páginas de ajuda no canto superior direito, abaixo do ícone (?).', + 'object_group_title' => 'Título', + 'edit_object_group' => 'Editar grupo ":title"', + 'delete_object_group' => 'Excluir grupo ":title"', + 'update_object_group' => 'Atualizar grupo', + 'updated_object_group' => 'O grupo ":title" foi atualizado com sucesso', + 'deleted_object_group' => 'O grupo ":title" foi deletado com sucesso', + 'object_group' => 'Grupo', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Entradas do log de auditoria', - 'ale_action_log_add' => 'Adicionado :amount ao cofrinho ":name"', - 'ale_action_log_remove' => 'Retirado :amount do cofrinho ":name"', - 'ale_action_clear_budget' => 'Removido do orçamento', - 'ale_action_update_group_title' => 'Título do grupo de transações atualizado', - 'ale_action_update_date' => 'Data de transação atualizada', - 'ale_action_update_order' => 'Ordem de transação atualizada', - 'ale_action_clear_category' => 'Removido da categoria', - 'ale_action_clear_notes' => 'Anotações removidas', - 'ale_action_clear_tag' => 'Tags apagadas', - 'ale_action_clear_all_tags' => 'Todas as tags foram apagadas', - 'ale_action_set_bill' => 'Vinculado à fatura', - 'ale_action_switch_accounts' => 'Conta de origem e destino alternados', - 'ale_action_set_budget' => 'Definir orçamento', - 'ale_action_set_category' => 'Definir categoria', - 'ale_action_set_source' => 'Definir conta de origem', - 'ale_action_set_destination' => 'Definir conta de destino', - 'ale_action_update_transaction_type' => 'Tipo de transação alterado', - 'ale_action_update_notes' => 'Anotações alteradas', - 'ale_action_update_description' => 'Descrição alterada', - 'ale_action_add_to_piggy' => 'Cofrinho', - 'ale_action_remove_from_piggy' => 'Cofrinho', - 'ale_action_add_tag' => 'Tag adicionada', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Entradas do log de auditoria', + 'ale_action_log_add' => 'Adicionado :amount ao cofrinho ":name"', + 'ale_action_log_remove' => 'Retirado :amount do cofrinho ":name"', + 'ale_action_clear_budget' => 'Removido do orçamento', + 'ale_action_update_group_title' => 'Título do grupo de transações atualizado', + 'ale_action_update_date' => 'Data de transação atualizada', + 'ale_action_update_order' => 'Ordem de transação atualizada', + 'ale_action_clear_category' => 'Removido da categoria', + 'ale_action_clear_notes' => 'Anotações removidas', + 'ale_action_clear_tag' => 'Tags apagadas', + 'ale_action_clear_all_tags' => 'Todas as tags foram apagadas', + 'ale_action_set_bill' => 'Vinculado à fatura', + 'ale_action_switch_accounts' => 'Conta de origem e destino alternados', + 'ale_action_set_budget' => 'Definir orçamento', + 'ale_action_set_category' => 'Definir categoria', + 'ale_action_set_source' => 'Definir conta de origem', + 'ale_action_set_destination' => 'Definir conta de destino', + 'ale_action_update_transaction_type' => 'Tipo de transação alterado', + 'ale_action_update_notes' => 'Anotações alteradas', + 'ale_action_update_description' => 'Descrição alterada', + 'ale_action_add_to_piggy' => 'Cofrinho', + 'ale_action_remove_from_piggy' => 'Cofrinho', + 'ale_action_add_tag' => 'Tag adicionada', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Habilitar conversão de moeda', - 'disable_auto_convert' => 'Desativar conversão de moeda', + 'enable_auto_convert' => 'Habilitar conversão de moeda', + 'disable_auto_convert' => 'Desativar conversão de moeda', ]; /* diff --git a/resources/lang/pt_BR/validation.php b/resources/lang/pt_BR/validation.php index f09b645ca5..1c00c24b94 100644 --- a/resources/lang/pt_BR/validation.php +++ b/resources/lang/pt_BR/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Você não direitos de acesso suficientes para esta administração.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/pt_PT/firefly.php b/resources/lang/pt_PT/firefly.php index 26e9172681..1387c957af 100644 --- a/resources/lang/pt_PT/firefly.php +++ b/resources/lang/pt_PT/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Fechar', - 'actions' => 'Ações', - 'edit' => 'Editar', - 'delete' => 'Eliminar', - 'split' => 'Dividir', - 'single_split' => 'Divisão', - 'clone' => 'Duplicar', - 'clone_and_edit' => 'Clonar e editar', - 'confirm_action' => 'Confirmar ação', - 'last_seven_days' => 'Últimos sete dias', - 'last_thirty_days' => 'Últimos trinta dias', - 'last_180_days' => 'Últimos 180 dias', - 'month_to_date' => 'Mês corrente', - 'year_to_date' => 'Ano corrente', - 'YTD' => 'Ano corrente', - 'welcome_back' => 'Painel de controlo', - 'everything' => 'Tudo', - 'today' => 'hoje', - 'customRange' => 'Intervalo personalizado', - 'date_range' => 'Intervalo de datas', - 'apply' => 'Aplicar', - 'select_date' => 'Selecionar data..', - 'cancel' => 'Cancelar', - 'from' => 'De', - 'to' => 'Até', - 'structure' => 'Estrutura', - 'help_translating' => 'Este texto de ajuda ainda não esta disponível na tua língua. Queres ajudar a traduzir?', - 'showEverything' => 'Mostrar tudo', - 'never' => 'Nunca', - 'no_results_for_empty_search' => 'A sua pesquisa estava vazia, nada foi encontrado.', - 'removed_amount' => 'Removido :amount', - 'added_amount' => 'Adicionado :amount', - 'asset_account_role_help' => 'Quaisquer opções extras resultantes da sua escolha podem ser definidas mais tarde.', - 'Opening balance' => 'Saldo inicial', - 'create_new_stuff' => 'Criar novo', - 'new_withdrawal' => 'Novo levantamento', - 'create_new_transaction' => 'Criar uma nova transação', - 'sidebar_frontpage_create' => 'Criar', - 'new_transaction' => 'Nova transação', - 'no_rules_for_bill' => 'Este encargo não tem regras associadas.', - 'go_to_asset_accounts' => 'Ver as contas de ativos', - 'go_to_budgets' => 'Ir para os seus orçamentos', - 'go_to_withdrawals' => 'Ir para os seus levantamentos', - 'clones_journal_x' => 'Esta transação é uma cópia de ":description" (#:id)', - 'go_to_categories' => 'Ir para categorias', - 'go_to_bills' => 'Ir para os seus encargos', - 'go_to_expense_accounts' => 'Ver as contas de despesa', - 'go_to_revenue_accounts' => 'Ver as contas de receitas', - 'go_to_piggies' => 'Ir para mealheiros', - 'new_deposit' => 'Novo depósito', - 'new_transfer' => 'Nova transferência', - 'new_transfers' => 'Nova transferência', - 'new_asset_account' => 'Nova conta de ativos', - 'new_expense_account' => 'Nova conta de gastos', - 'new_revenue_account' => 'Nova conta de receitas', - 'new_liabilities_account' => 'Novo passivo', - 'new_budget' => 'Novo orçamento', - 'new_bill' => 'Novo encargo', - 'block_account_logout' => 'A sua sessão foi terminada. Contas bloqueadas não podem utilizar este site. Já se registou com um email válido?', - 'flash_success' => 'Sucesso!', - 'flash_info' => 'Mensagem', - 'flash_warning' => 'Aviso!', - 'flash_error' => 'Erro!', - 'flash_danger' => 'Perigo!', - 'flash_info_multiple' => 'Tem uma mensagem|Tem :count mensagens', - 'flash_error_multiple' => 'Há um erro|Há :count erros', - 'net_worth' => 'Posição global', - 'help_for_this_page' => 'Ajuda para esta página', - 'help_for_this_page_body' => 'Pode encontrar mais informações sobre esta página na documentação.', - 'two_factor_welcome' => 'Olá!', - 'two_factor_enter_code' => 'Para continuar, por favor introduza o código da sua autenticação de 2 passos. A sua aplicação pode gerá-lo para si.', - 'two_factor_code_here' => 'Introduza o código aqui', - 'two_factor_title' => 'Autenticação de 2 passos', - 'authenticate' => 'Autenticar', - 'two_factor_forgot_title' => 'Perda da autenticação 2 passos', - 'two_factor_forgot' => 'Esqueci-me da minha cena de 2 passos.', - 'two_factor_lost_header' => 'Perdeu a sua autenticação de 2 passos?', - 'two_factor_lost_intro' => 'Se também perdeu os códigos de backup, está com azar. Não é algo que se possa resolver pela interface web. Têm duas alternativas.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Caso contrario, envie um email ao dono da plataforma, :site_owner e peça-lhe para reiniciar a sua autenticação de 2 passos.', - 'mfa_backup_code' => 'Utilizou um código de backup para aceder ao Firefly III. Esse código não pode ser utilizado novamente, é melhor riscá-lo da sua lista.', - 'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup', - 'pref_two_factor_backup_code_count' => 'Tem :count código de backup válido.|Tem :count códigos de backup válidos.', - '2fa_i_have_them' => 'Guardei-os!', - 'warning_much_data' => ':days dias de dados podem demorar a carregar.', - 'registered' => 'Registou-se com sucesso!', - 'Default asset account' => 'Conta de ativos principal', - 'no_budget_pointer' => 'Parece que ainda não tem orçamentos. Pode criá-los na página de orçamentos. Os orçamentos podem ajudá-lo a controlar as despesas.', - 'no_bill_pointer' => 'Parece que ainda não tem encargos. Pode criá-los na página de encargos. Os Encargos podem ajudá-lo a controlar as despesas.', - 'Savings account' => 'Conta poupança', - 'Credit card' => 'Cartão de crédito', - 'source_accounts' => 'Conta de origem|Contas de origem', - 'destination_accounts' => 'Conta de destino|Contas de destino', - 'user_id_is' => 'O seu id de utilizador: :user', - 'field_supports_markdown' => 'Este campo suporta Markdown.', - 'need_more_help' => 'Se precisar de mais ajuda para usar o Firefly III, por favor abra um ticket no Github.', - 'reenable_intro_text' => 'Também pode reativar o guia de introdução.', - 'intro_boxes_after_refresh' => 'Os tutoriais de introdução vão aparecer quando atualizar a página.', - 'show_all_no_filter' => 'Mostrar todas as transações sem as agrupar por data.', - 'expenses_by_category' => 'Despesas por categoria', - 'expenses_by_budget' => 'Despesas por orçamento', - 'income_by_category' => 'Receitas por categoria', - 'expenses_by_asset_account' => 'Despesas por conta de ativos', - 'expenses_by_expense_account' => 'Despesas por conta de despesas', - 'cannot_redirect_to_account' => 'O Firefly III não consegue redirecioná-lo para a página correta. Lamentamos.', - 'sum_of_expenses' => 'Soma das despesas', - 'sum_of_income' => 'Soma das receitas', - 'liabilities' => 'Passivos', - 'spent_in_specific_budget' => 'Gasto no orçamento ":budget"', - 'spent_in_specific_double' => 'Gasto na conta ":account"', - 'earned_in_specific_double' => 'Ganho na conta ":account"', - 'source_account' => 'Conta de origem', - 'source_account_reconciliation' => 'Não pode editar a conta de origem de uma transação de reconciliação.', - 'destination_account' => 'Conta de destino', - 'destination_account_reconciliation' => 'Não pode editar a conta de destino de uma transação de reconciliação.', - 'sum_of_expenses_in_budget' => 'Total gasto no orçamento ":budget"', - 'left_in_budget_limit' => 'Restante para gastar com base no orçamentado', - 'current_period' => 'Período atual', - 'show_the_current_period_and_overview' => 'Mostrar o período atual e a visão geral', - 'pref_languages_locale' => 'Para que um idioma diferente do inglês funcione corretamente, o sistema operativo deve utilizar as definições locais corretas. Se eles não estiverem presentes, dados de moeda, datas e valores podem estar formatados incorretamente.', - 'budget_in_period' => 'Todas as transações para o orçamento ":name" entre :start e :end em :currency', - 'chart_budget_in_period' => 'Gráfico para todas as transações do orçamento ":name" entre :start e :end em :currency', - 'chart_budget_in_period_only_currency' => 'O valor orçamentado foi em :currency, por isso o gráfico apenas irá mostrar transações em :currency.', - 'chart_account_in_period' => 'Gráfico para todas as transações da conta ":name" (:balance) entre :start e :end', - 'chart_category_in_period' => 'Gráfico para todas as transações da categoria ":name" entre :start e :end', - 'chart_category_all' => 'Gráfico para todas as transações da categoria ":name"', - 'clone_withdrawal' => 'Clonar este levantamento', - 'clone_deposit' => 'Clonar este depósito', - 'clone_transfer' => 'Clonar esta transferência', - 'multi_select_no_selection' => 'Nenhum selecionado', - 'multi_select_select_all' => 'Selecionar todos', - 'multi_select_n_selected' => 'selecionados', - 'multi_select_all_selected' => 'Todos selecionados', - 'multi_select_filter_placeholder' => 'Procurar..', - 'intro_next_label' => 'Próximo', - 'intro_prev_label' => 'Anterior', - 'intro_skip_label' => 'Ignorar', - 'intro_done_label' => 'Feito', - 'between_dates_breadcrumb' => 'Entre :start e :end', - 'all_journals_without_budget' => 'Todas as transações sem orçamento', - 'journals_without_budget' => 'Transações sem orçamento', - 'all_journals_without_category' => 'Todas as transações sem categoria', - 'journals_without_category' => 'Transações sem categoria', - 'all_journals_for_account' => 'Todas as transações para a conta :name', - 'chart_all_journals_for_account' => 'Gráfico de todas as transações para a conta :name', - 'journals_in_period_for_account' => 'Todas as transações da conta :name entre :start e :end', - 'journals_in_period_for_account_js' => 'Todas as transações para a conta {title} entre {start} e {end}', - 'transferred' => 'Transferido', - 'all_withdrawal' => 'Todas as despesas', - 'all_transactions' => 'Todas as transações', - 'title_withdrawal_between' => 'Todas as despesas entre :start e :end', - 'all_deposit' => 'Todas as receitas', - 'title_deposit_between' => 'Todas as receitas entre :start e :end', - 'all_transfers' => 'Todas as transferências', - 'title_transfers_between' => 'Todas as transferências entre :start e :end', - 'all_transfer' => 'Todas as transferências', - 'all_journals_for_tag' => 'Todas as transações para a etiqueta ":tag"', - 'title_transfer_between' => 'Todas as transferências entre :start e :end', - 'all_journals_for_category' => 'Todas as transações para a categoria :name', - 'all_journals_for_budget' => 'Todas as transações para o orçamento :name', - 'chart_all_journals_for_budget' => 'Gráfico de todas as transações para o orçamento :name', - 'journals_in_period_for_category' => 'Todas as transações da categoria :name entre :start e :end', - 'journals_in_period_for_tag' => 'Todas as transações da etiqueta :tag entre :start e :end', - 'not_available_demo_user' => 'A funcionalidade que tentou aceder não está disponível para utilizadores demo.', - 'exchange_rate_instructions' => 'A conta de ativos "@name" apenas aceita transações em @native_currency. Se preferir usar @foreign_currency, tem de inserir o valor em @native_currency também:', - 'transfer_exchange_rate_instructions' => 'A conta de ativos de origem "@source_name" apenas aceita transações em @source_currency. A conta de ativos de destino "@dest_name" apenas aceita transações em @dest_currency. Tem de fornecer o valor transferido corretamente em ambas as moedas.', - 'transaction_data' => 'Dados da transação', - 'invalid_server_configuration' => 'Configuração de servidor inválida', - 'invalid_locale_settings' => 'O Firefly III não consegue formatar quantias monetárias porque o seu servidor não tem os pacotes requeridos. Há instruções para fazer isto.', - 'quickswitch' => 'Troca rápida', - 'sign_in_to_start' => 'Registe-se para iniciar sessão', - 'sign_in' => 'Iniciar sessão', - 'register_new_account' => 'Registar nova conta', - 'forgot_my_password' => 'Esqueci-me da palavra-passe', - 'problems_with_input' => 'Existem alguns problemas com o valor introduzido.', - 'reset_password' => 'Redefinir a palavra-passe', - 'button_reset_password' => 'Redefinir a palavra-passe', - 'reset_button' => 'Redefinir', - 'want_to_login' => 'Quero iniciar sessão', - 'login_page_title' => 'Iniciar sessão no Firefly III', - 'register_page_title' => 'Registar no Firefly III', - 'forgot_pw_page_title' => 'Esqueceu a palavra-passe do Firefly III', - 'reset_pw_page_title' => 'Reiniciar a palavra-passe do Firefly III', - 'cannot_reset_demo_user' => 'Não pode reiniciar a palavra-passe do utilizador de demonstração.', - 'no_att_demo_user' => 'O utilizador demo não pode enviar anexos.', - 'button_register' => 'Registar', - 'authorization' => 'Autorização', - 'active_bills_only' => 'apenas encargos ativos', - 'active_bills_only_total' => 'todos os encargos ativos', - 'active_exp_bills_only' => 'apenas encargos ativos e esperados', - 'active_exp_bills_only_total' => 'apenas os encargos ativos previstos', - 'per_period_sum_1D' => 'Previsão de custos diários', - 'per_period_sum_1W' => 'Previsão de custos semanais', - 'per_period_sum_1M' => 'Previsão de custos mensais', - 'per_period_sum_3M' => 'Custos trimestrais esperados', - 'per_period_sum_6M' => 'Previsão de custos semestrais', - 'per_period_sum_1Y' => 'Previsão de custos anuais', - 'average_per_bill' => 'média por encargo', - 'expected_total' => 'total esperado', - 'reconciliation_account_name' => ':name reconciliação (:currency)', - 'saved' => 'Guardado', - 'advanced_options' => 'Opções avançadas', - 'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada sofisticado aqui, mas veja as outras!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Fechar', + 'actions' => 'Ações', + 'edit' => 'Editar', + 'delete' => 'Eliminar', + 'split' => 'Dividir', + 'single_split' => 'Divisão', + 'clone' => 'Duplicar', + 'clone_and_edit' => 'Clonar e editar', + 'confirm_action' => 'Confirmar ação', + 'last_seven_days' => 'Últimos sete dias', + 'last_thirty_days' => 'Últimos trinta dias', + 'last_180_days' => 'Últimos 180 dias', + 'month_to_date' => 'Mês corrente', + 'year_to_date' => 'Ano corrente', + 'YTD' => 'Ano corrente', + 'welcome_back' => 'Painel de controlo', + 'everything' => 'Tudo', + 'today' => 'hoje', + 'customRange' => 'Intervalo personalizado', + 'date_range' => 'Intervalo de datas', + 'apply' => 'Aplicar', + 'select_date' => 'Selecionar data..', + 'cancel' => 'Cancelar', + 'from' => 'De', + 'to' => 'Até', + 'structure' => 'Estrutura', + 'help_translating' => 'Este texto de ajuda ainda não esta disponível na tua língua. Queres ajudar a traduzir?', + 'showEverything' => 'Mostrar tudo', + 'never' => 'Nunca', + 'no_results_for_empty_search' => 'A sua pesquisa estava vazia, nada foi encontrado.', + 'removed_amount' => 'Removido :amount', + 'added_amount' => 'Adicionado :amount', + 'asset_account_role_help' => 'Quaisquer opções extras resultantes da sua escolha podem ser definidas mais tarde.', + 'Opening balance' => 'Saldo inicial', + 'create_new_stuff' => 'Criar novo', + 'new_withdrawal' => 'Novo levantamento', + 'create_new_transaction' => 'Criar uma nova transação', + 'sidebar_frontpage_create' => 'Criar', + 'new_transaction' => 'Nova transação', + 'no_rules_for_bill' => 'Este encargo não tem regras associadas.', + 'go_to_asset_accounts' => 'Ver as contas de ativos', + 'go_to_budgets' => 'Ir para os seus orçamentos', + 'go_to_withdrawals' => 'Ir para os seus levantamentos', + 'clones_journal_x' => 'Esta transação é uma cópia de ":description" (#:id)', + 'go_to_categories' => 'Ir para categorias', + 'go_to_bills' => 'Ir para os seus encargos', + 'go_to_expense_accounts' => 'Ver as contas de despesa', + 'go_to_revenue_accounts' => 'Ver as contas de receitas', + 'go_to_piggies' => 'Ir para mealheiros', + 'new_deposit' => 'Novo depósito', + 'new_transfer' => 'Nova transferência', + 'new_transfers' => 'Nova transferência', + 'new_asset_account' => 'Nova conta de ativos', + 'new_expense_account' => 'Nova conta de gastos', + 'new_revenue_account' => 'Nova conta de receitas', + 'new_liabilities_account' => 'Novo passivo', + 'new_budget' => 'Novo orçamento', + 'new_bill' => 'Novo encargo', + 'block_account_logout' => 'A sua sessão foi terminada. Contas bloqueadas não podem utilizar este site. Já se registou com um email válido?', + 'flash_success' => 'Sucesso!', + 'flash_info' => 'Mensagem', + 'flash_warning' => 'Aviso!', + 'flash_error' => 'Erro!', + 'flash_danger' => 'Perigo!', + 'flash_info_multiple' => 'Tem uma mensagem|Tem :count mensagens', + 'flash_error_multiple' => 'Há um erro|Há :count erros', + 'net_worth' => 'Posição global', + 'help_for_this_page' => 'Ajuda para esta página', + 'help_for_this_page_body' => 'Pode encontrar mais informações sobre esta página na documentação.', + 'two_factor_welcome' => 'Olá!', + 'two_factor_enter_code' => 'Para continuar, por favor introduza o código da sua autenticação de 2 passos. A sua aplicação pode gerá-lo para si.', + 'two_factor_code_here' => 'Introduza o código aqui', + 'two_factor_title' => 'Autenticação de 2 passos', + 'authenticate' => 'Autenticar', + 'two_factor_forgot_title' => 'Perda da autenticação 2 passos', + 'two_factor_forgot' => 'Esqueci-me da minha cena de 2 passos.', + 'two_factor_lost_header' => 'Perdeu a sua autenticação de 2 passos?', + 'two_factor_lost_intro' => 'Se também perdeu os códigos de backup, está com azar. Não é algo que se possa resolver pela interface web. Têm duas alternativas.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Caso contrario, envie um email ao dono da plataforma, :site_owner e peça-lhe para reiniciar a sua autenticação de 2 passos.', + 'mfa_backup_code' => 'Utilizou um código de backup para aceder ao Firefly III. Esse código não pode ser utilizado novamente, é melhor riscá-lo da sua lista.', + 'pref_two_factor_new_backup_codes' => 'Obter novos códigos de backup', + 'pref_two_factor_backup_code_count' => 'Tem :count código de backup válido.|Tem :count códigos de backup válidos.', + '2fa_i_have_them' => 'Guardei-os!', + 'warning_much_data' => ':days dias de dados podem demorar a carregar.', + 'registered' => 'Registou-se com sucesso!', + 'Default asset account' => 'Conta de ativos principal', + 'no_budget_pointer' => 'Parece que ainda não tem orçamentos. Pode criá-los na página de orçamentos. Os orçamentos podem ajudá-lo a controlar as despesas.', + 'no_bill_pointer' => 'Parece que ainda não tem encargos. Pode criá-los na página de encargos. Os Encargos podem ajudá-lo a controlar as despesas.', + 'Savings account' => 'Conta poupança', + 'Credit card' => 'Cartão de crédito', + 'source_accounts' => 'Conta de origem|Contas de origem', + 'destination_accounts' => 'Conta de destino|Contas de destino', + 'user_id_is' => 'O seu id de utilizador: :user', + 'field_supports_markdown' => 'Este campo suporta Markdown.', + 'need_more_help' => 'Se precisar de mais ajuda para usar o Firefly III, por favor abra um ticket no Github.', + 'reenable_intro_text' => 'Também pode reativar o guia de introdução.', + 'intro_boxes_after_refresh' => 'Os tutoriais de introdução vão aparecer quando atualizar a página.', + 'show_all_no_filter' => 'Mostrar todas as transações sem as agrupar por data.', + 'expenses_by_category' => 'Despesas por categoria', + 'expenses_by_budget' => 'Despesas por orçamento', + 'income_by_category' => 'Receitas por categoria', + 'expenses_by_asset_account' => 'Despesas por conta de ativos', + 'expenses_by_expense_account' => 'Despesas por conta de despesas', + 'cannot_redirect_to_account' => 'O Firefly III não consegue redirecioná-lo para a página correta. Lamentamos.', + 'sum_of_expenses' => 'Soma das despesas', + 'sum_of_income' => 'Soma das receitas', + 'liabilities' => 'Passivos', + 'spent_in_specific_budget' => 'Gasto no orçamento ":budget"', + 'spent_in_specific_double' => 'Gasto na conta ":account"', + 'earned_in_specific_double' => 'Ganho na conta ":account"', + 'source_account' => 'Conta de origem', + 'source_account_reconciliation' => 'Não pode editar a conta de origem de uma transação de reconciliação.', + 'destination_account' => 'Conta de destino', + 'destination_account_reconciliation' => 'Não pode editar a conta de destino de uma transação de reconciliação.', + 'sum_of_expenses_in_budget' => 'Total gasto no orçamento ":budget"', + 'left_in_budget_limit' => 'Restante para gastar com base no orçamentado', + 'current_period' => 'Período atual', + 'show_the_current_period_and_overview' => 'Mostrar o período atual e a visão geral', + 'pref_languages_locale' => 'Para que um idioma diferente do inglês funcione corretamente, o sistema operativo deve utilizar as definições locais corretas. Se eles não estiverem presentes, dados de moeda, datas e valores podem estar formatados incorretamente.', + 'budget_in_period' => 'Todas as transações para o orçamento ":name" entre :start e :end em :currency', + 'chart_budget_in_period' => 'Gráfico para todas as transações do orçamento ":name" entre :start e :end em :currency', + 'chart_budget_in_period_only_currency' => 'O valor orçamentado foi em :currency, por isso o gráfico apenas irá mostrar transações em :currency.', + 'chart_account_in_period' => 'Gráfico para todas as transações da conta ":name" (:balance) entre :start e :end', + 'chart_category_in_period' => 'Gráfico para todas as transações da categoria ":name" entre :start e :end', + 'chart_category_all' => 'Gráfico para todas as transações da categoria ":name"', + 'clone_withdrawal' => 'Clonar este levantamento', + 'clone_deposit' => 'Clonar este depósito', + 'clone_transfer' => 'Clonar esta transferência', + 'multi_select_no_selection' => 'Nenhum selecionado', + 'multi_select_select_all' => 'Selecionar todos', + 'multi_select_n_selected' => 'selecionados', + 'multi_select_all_selected' => 'Todos selecionados', + 'multi_select_filter_placeholder' => 'Procurar..', + 'intro_next_label' => 'Próximo', + 'intro_prev_label' => 'Anterior', + 'intro_skip_label' => 'Ignorar', + 'intro_done_label' => 'Feito', + 'between_dates_breadcrumb' => 'Entre :start e :end', + 'all_journals_without_budget' => 'Todas as transações sem orçamento', + 'journals_without_budget' => 'Transações sem orçamento', + 'all_journals_without_category' => 'Todas as transações sem categoria', + 'journals_without_category' => 'Transações sem categoria', + 'all_journals_for_account' => 'Todas as transações para a conta :name', + 'chart_all_journals_for_account' => 'Gráfico de todas as transações para a conta :name', + 'journals_in_period_for_account' => 'Todas as transações da conta :name entre :start e :end', + 'journals_in_period_for_account_js' => 'Todas as transações para a conta {title} entre {start} e {end}', + 'transferred' => 'Transferido', + 'all_withdrawal' => 'Todas as despesas', + 'all_transactions' => 'Todas as transações', + 'title_withdrawal_between' => 'Todas as despesas entre :start e :end', + 'all_deposit' => 'Todas as receitas', + 'title_deposit_between' => 'Todas as receitas entre :start e :end', + 'all_transfers' => 'Todas as transferências', + 'title_transfers_between' => 'Todas as transferências entre :start e :end', + 'all_transfer' => 'Todas as transferências', + 'all_journals_for_tag' => 'Todas as transações para a etiqueta ":tag"', + 'title_transfer_between' => 'Todas as transferências entre :start e :end', + 'all_journals_for_category' => 'Todas as transações para a categoria :name', + 'all_journals_for_budget' => 'Todas as transações para o orçamento :name', + 'chart_all_journals_for_budget' => 'Gráfico de todas as transações para o orçamento :name', + 'journals_in_period_for_category' => 'Todas as transações da categoria :name entre :start e :end', + 'journals_in_period_for_tag' => 'Todas as transações da etiqueta :tag entre :start e :end', + 'not_available_demo_user' => 'A funcionalidade que tentou aceder não está disponível para utilizadores demo.', + 'exchange_rate_instructions' => 'A conta de ativos "@name" apenas aceita transações em @native_currency. Se preferir usar @foreign_currency, tem de inserir o valor em @native_currency também:', + 'transfer_exchange_rate_instructions' => 'A conta de ativos de origem "@source_name" apenas aceita transações em @source_currency. A conta de ativos de destino "@dest_name" apenas aceita transações em @dest_currency. Tem de fornecer o valor transferido corretamente em ambas as moedas.', + 'transaction_data' => 'Dados da transação', + 'invalid_server_configuration' => 'Configuração de servidor inválida', + 'invalid_locale_settings' => 'O Firefly III não consegue formatar quantias monetárias porque o seu servidor não tem os pacotes requeridos. Há instruções para fazer isto.', + 'quickswitch' => 'Troca rápida', + 'sign_in_to_start' => 'Registe-se para iniciar sessão', + 'sign_in' => 'Iniciar sessão', + 'register_new_account' => 'Registar nova conta', + 'forgot_my_password' => 'Esqueci-me da palavra-passe', + 'problems_with_input' => 'Existem alguns problemas com o valor introduzido.', + 'reset_password' => 'Redefinir a palavra-passe', + 'button_reset_password' => 'Redefinir a palavra-passe', + 'reset_button' => 'Redefinir', + 'want_to_login' => 'Quero iniciar sessão', + 'login_page_title' => 'Iniciar sessão no Firefly III', + 'register_page_title' => 'Registar no Firefly III', + 'forgot_pw_page_title' => 'Esqueceu a palavra-passe do Firefly III', + 'reset_pw_page_title' => 'Reiniciar a palavra-passe do Firefly III', + 'cannot_reset_demo_user' => 'Não pode reiniciar a palavra-passe do utilizador de demonstração.', + 'no_att_demo_user' => 'O utilizador demo não pode enviar anexos.', + 'button_register' => 'Registar', + 'authorization' => 'Autorização', + 'active_bills_only' => 'apenas encargos ativos', + 'active_bills_only_total' => 'todos os encargos ativos', + 'active_exp_bills_only' => 'apenas encargos ativos e esperados', + 'active_exp_bills_only_total' => 'apenas os encargos ativos previstos', + 'per_period_sum_1D' => 'Previsão de custos diários', + 'per_period_sum_1W' => 'Previsão de custos semanais', + 'per_period_sum_1M' => 'Previsão de custos mensais', + 'per_period_sum_3M' => 'Custos trimestrais esperados', + 'per_period_sum_6M' => 'Previsão de custos semestrais', + 'per_period_sum_1Y' => 'Previsão de custos anuais', + 'average_per_bill' => 'média por encargo', + 'expected_total' => 'total esperado', + 'reconciliation_account_name' => ':name reconciliação (:currency)', + 'saved' => 'Guardado', + 'advanced_options' => 'Opções avançadas', + 'advanced_options_explain' => 'Algumas páginas no Firefly III têm opções avançadas escondidas atrás deste botão. Esta página não tem nada sofisticado aqui, mas veja as outras!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'desabilitado', - 'no_webhook_messages' => 'Não existem mensagens novas', - 'webhook_trigger_STORE_TRANSACTION' => 'Após criar transação', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Após atualizar transação', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Após eliminar transação', - 'webhook_response_TRANSACTIONS' => 'Detalhes da transação', - 'webhook_response_ACCOUNTS' => 'Detalhes da conta', - 'webhook_response_none_NONE' => 'Sem dados', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspecionar', - 'create_new_webhook' => 'Criar um novo webhook', - 'webhooks_create_breadcrumb' => 'Criar um novo webhook', - 'webhook_trigger_form_help' => 'Indicar em que evento o webhook será a acionado', - 'webhook_response_form_help' => 'Indicar o que o webhook deve submeter para o URL.', - 'webhook_delivery_form_help' => 'Em que formato deve o webhook entregar os dados.', - 'webhook_active_form_help' => 'O webhook deve ser ativado ou não será acionado.', - 'stored_new_webhook' => 'Webhook ":title" guardado', - 'delete_webhook' => 'Eliminar webhook', - 'deleted_webhook' => 'Apagar webhook ":title"', - 'edit_webhook' => 'Editar webhook ":title"', - 'updated_webhook' => 'Atualizado o webhook ":title"', - 'edit_webhook_js' => 'Editar webhook ":title"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'O webhook foi acionado na transação indicada. Por favor, aguarde que os resultados surjam.', - 'webhook_messages' => 'Mensagem do webhook', - 'view_message' => 'Ver mensagem', - 'view_attempts' => 'Ver tentativas falhadas', - 'message_content_title' => 'Conteúdo da mensagem do webhook', - 'message_content_help' => 'Este é o conteúdo da mensagem que foi enviada (ou se tentou enviar) usando este webhook.', - 'attempt_content_title' => 'Tentativas de webhook', - 'attempt_content_help' => 'Estas são todas as tentativas falhadas de envio desta mensagem webhook para o URL configurado. Após algum tempo, o Firefly vai deixar de tentar.', - 'no_attempts' => 'Não há tentativas falhadas. Isso é bom!', - 'webhook_attempt_at' => 'Tentativa em {moment}', - 'logs' => 'Logs', - 'response' => 'Respostas', - 'visit_webhook_url' => 'Ir para URL do webhook', - 'reset_webhook_secret' => 'Redefinir segredo webhook', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") foi guardado.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") foi guardado.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'desabilitado', + 'no_webhook_messages' => 'Não existem mensagens novas', + 'webhook_trigger_STORE_TRANSACTION' => 'Após criar transação', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Após atualizar transação', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Após eliminar transação', + 'webhook_response_TRANSACTIONS' => 'Detalhes da transação', + 'webhook_response_ACCOUNTS' => 'Detalhes da conta', + 'webhook_response_none_NONE' => 'Sem dados', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspecionar', + 'create_new_webhook' => 'Criar um novo webhook', + 'webhooks_create_breadcrumb' => 'Criar um novo webhook', + 'webhook_trigger_form_help' => 'Indicar em que evento o webhook será a acionado', + 'webhook_response_form_help' => 'Indicar o que o webhook deve submeter para o URL.', + 'webhook_delivery_form_help' => 'Em que formato deve o webhook entregar os dados.', + 'webhook_active_form_help' => 'O webhook deve ser ativado ou não será acionado.', + 'stored_new_webhook' => 'Webhook ":title" guardado', + 'delete_webhook' => 'Eliminar webhook', + 'deleted_webhook' => 'Apagar webhook ":title"', + 'edit_webhook' => 'Editar webhook ":title"', + 'updated_webhook' => 'Atualizado o webhook ":title"', + 'edit_webhook_js' => 'Editar webhook ":title"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'O webhook foi acionado na transação indicada. Por favor, aguarde que os resultados surjam.', + 'webhook_messages' => 'Mensagem do webhook', + 'view_message' => 'Ver mensagem', + 'view_attempts' => 'Ver tentativas falhadas', + 'message_content_title' => 'Conteúdo da mensagem do webhook', + 'message_content_help' => 'Este é o conteúdo da mensagem que foi enviada (ou se tentou enviar) usando este webhook.', + 'attempt_content_title' => 'Tentativas de webhook', + 'attempt_content_help' => 'Estas são todas as tentativas falhadas de envio desta mensagem webhook para o URL configurado. Após algum tempo, o Firefly vai deixar de tentar.', + 'no_attempts' => 'Não há tentativas falhadas. Isso é bom!', + 'webhook_attempt_at' => 'Tentativa em {moment}', + 'logs' => 'Logs', + 'response' => 'Respostas', + 'visit_webhook_url' => 'Ir para URL do webhook', + 'reset_webhook_secret' => 'Redefinir segredo webhook', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") foi guardado.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") foi guardado.', // API access - 'authorization_request' => 'Firefly III v:version Solicitar Autorização', - 'authorization_request_intro' => 'A aplicação ":client" está a pedir acesso à sua administração financeira. Gostaria de autorizar :client a aceder a esses registos?', - 'authorization_request_site' => 'Será redirecionado para :url o qual será capaz de aceder aos seus dados do Firefly III.', - 'authorization_request_invalid' => 'Este pedido de acesso é inválido. Por favor, não siga este link novamente.', - 'scopes_will_be_able' => 'Esta aplicação será capaz de:', - 'button_authorize' => 'Autorizar', - 'none_in_select_list' => '(nenhum)', - 'no_piggy_bank' => '(nenhum mealheiro)', - 'name_in_currency' => ':name em :currency', - 'paid_in_currency' => 'Pago em :currency', - 'unpaid_in_currency' => 'Por pagar em :currency', - 'is_alpha_warning' => 'Está a executar uma versão ALPHA. Cuidado com bugs e problemas.', - 'is_beta_warning' => 'Está a executar uma versão BETA. Cuidado com bugs e problemas.', - 'all_destination_accounts' => 'Contas de destino', - 'all_source_accounts' => 'Contas de origem', - 'back_to_index' => 'Voltar para o índice', - 'cant_logout_guard' => 'O Firefly III não consegue terminar a sua sessão.', - 'internal_reference' => 'Referência interna', + 'authorization_request' => 'Firefly III v:version Solicitar Autorização', + 'authorization_request_intro' => 'A aplicação ":client" está a pedir acesso à sua administração financeira. Gostaria de autorizar :client a aceder a esses registos?', + 'authorization_request_site' => 'Será redirecionado para :url o qual será capaz de aceder aos seus dados do Firefly III.', + 'authorization_request_invalid' => 'Este pedido de acesso é inválido. Por favor, não siga este link novamente.', + 'scopes_will_be_able' => 'Esta aplicação será capaz de:', + 'button_authorize' => 'Autorizar', + 'none_in_select_list' => '(nenhum)', + 'no_piggy_bank' => '(nenhum mealheiro)', + 'name_in_currency' => ':name em :currency', + 'paid_in_currency' => 'Pago em :currency', + 'unpaid_in_currency' => 'Por pagar em :currency', + 'is_alpha_warning' => 'Está a executar uma versão ALPHA. Cuidado com bugs e problemas.', + 'is_beta_warning' => 'Está a executar uma versão BETA. Cuidado com bugs e problemas.', + 'all_destination_accounts' => 'Contas de destino', + 'all_source_accounts' => 'Contas de origem', + 'back_to_index' => 'Voltar para o índice', + 'cant_logout_guard' => 'O Firefly III não consegue terminar a sua sessão.', + 'internal_reference' => 'Referência interna', // check for updates: - 'update_check_title' => 'Procurar atualizações', - 'admin_update_check_title' => 'Procurar atualizações automaticamente', - 'admin_update_check_explain' => 'Firefly III pode verificar actualizações automaticamente. Ao activar esta opção, ele entrará em contacto com o servidor de atualização do Firefly III para ver se uma nova versão está disponível. Quando estiver, receberá uma notificação. Pode testar esta notificação utilizando o botão à direita. Indique abaixo se quer que o Firefly III verifique se há atualizações.', - 'check_for_updates_permission' => 'O Firefly III pode procurar por atualizações, mas necessita da sua permissão para isso. Por favor, dirija-se a administração para indicar se gostaria de ter esta funcionalidade ativa.', - 'updates_ask_me_later' => 'Perguntar-me mais tarde', - 'updates_do_not_check' => 'Não procurar por atualizações', - 'updates_enable_check' => 'Ativar a procura por atualizações', - 'admin_update_check_now_title' => 'Procurar por atualizações agora', - 'admin_update_check_now_explain' => 'Se premir o botão, o Firefly III verificará se a versão atual é a mais recente.', - 'check_for_updates_button' => 'Verificar agora!', - 'update_new_version_alert' => 'Está disponível uma versão nova do Firefly III. Está a usar a versão :your_version, a versão mais recente é :new_version que foi lançada em :date.', - 'update_version_beta' => 'Esta versão é BETA. Pode ter problemas.', - 'update_version_alpha' => 'Esta versão é ALPHA. Pode ter problemas.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Está a executar :version, que é a última versão disponível.', - 'update_newer_version_alert' => 'Está a executar :your_version, que é mais recente que a última versão, :new_version.', - 'update_check_error' => 'Ocorreu um erro durante a verificação de atualizações: :error', - 'unknown_error' => 'Erro desconhecido. Pedimos desculpa.', - 'disabled_but_check' => 'Desativou a verificação de atualizações. Mas, não se esqueça de verificar se há atualizações de vez em quando. Obrigado!', - 'admin_update_channel_title' => 'Atualizar canal', - 'admin_update_channel_explain' => 'O Firefly III tem três "canais" de atualizações que determinam o quão há frente você está em termos de funcionalidades, melhorias e erros. Utilize o canal "beta" se gostar de aventuras e o "alpha" se gostar de viver a vida ao limite.', - 'update_channel_stable' => 'Estável. Deve estar a funcionar como esperado.', - 'update_channel_beta' => 'Beta. Novas funcionalidades, mas as algumas coisas podem ter problemas.', - 'update_channel_alpha' => 'Alfa. Fazemos o que vier, e o que ficar fica.', + 'update_check_title' => 'Procurar atualizações', + 'admin_update_check_title' => 'Procurar atualizações automaticamente', + 'admin_update_check_explain' => 'Firefly III pode verificar actualizações automaticamente. Ao activar esta opção, ele entrará em contacto com o servidor de atualização do Firefly III para ver se uma nova versão está disponível. Quando estiver, receberá uma notificação. Pode testar esta notificação utilizando o botão à direita. Indique abaixo se quer que o Firefly III verifique se há atualizações.', + 'check_for_updates_permission' => 'O Firefly III pode procurar por atualizações, mas necessita da sua permissão para isso. Por favor, dirija-se a administração para indicar se gostaria de ter esta funcionalidade ativa.', + 'updates_ask_me_later' => 'Perguntar-me mais tarde', + 'updates_do_not_check' => 'Não procurar por atualizações', + 'updates_enable_check' => 'Ativar a procura por atualizações', + 'admin_update_check_now_title' => 'Procurar por atualizações agora', + 'admin_update_check_now_explain' => 'Se premir o botão, o Firefly III verificará se a versão atual é a mais recente.', + 'check_for_updates_button' => 'Verificar agora!', + 'update_new_version_alert' => 'Está disponível uma versão nova do Firefly III. Está a usar a versão :your_version, a versão mais recente é :new_version que foi lançada em :date.', + 'update_version_beta' => 'Esta versão é BETA. Pode ter problemas.', + 'update_version_alpha' => 'Esta versão é ALPHA. Pode ter problemas.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Está a executar :version, que é a última versão disponível.', + 'update_newer_version_alert' => 'Está a executar :your_version, que é mais recente que a última versão, :new_version.', + 'update_check_error' => 'Ocorreu um erro durante a verificação de atualizações: :error', + 'unknown_error' => 'Erro desconhecido. Pedimos desculpa.', + 'disabled_but_check' => 'Desativou a verificação de atualizações. Mas, não se esqueça de verificar se há atualizações de vez em quando. Obrigado!', + 'admin_update_channel_title' => 'Atualizar canal', + 'admin_update_channel_explain' => 'O Firefly III tem três "canais" de atualizações que determinam o quão há frente você está em termos de funcionalidades, melhorias e erros. Utilize o canal "beta" se gostar de aventuras e o "alpha" se gostar de viver a vida ao limite.', + 'update_channel_stable' => 'Estável. Deve estar a funcionar como esperado.', + 'update_channel_beta' => 'Beta. Novas funcionalidades, mas as algumas coisas podem ter problemas.', + 'update_channel_alpha' => 'Alfa. Fazemos o que vier, e o que ficar fica.', // search - 'search' => 'Procurar', - 'search_query' => 'Pesquisa', - 'search_found_transactions' => 'Firefly III encontrou :count transacção em :time segundos.|Firefly III encontrou :count transacções em :time segundos.', - 'search_found_more_transactions' => 'Firefly III encontrou mais de :count transacções em :time segundos.', - 'search_for_query' => 'O Firefly III está à procura de transacções com as palavras: :query', - 'invalid_operators_list' => 'Estes parâmetros de pesquisa não são válidos e foram ignorados.', + 'search' => 'Procurar', + 'search_query' => 'Pesquisa', + 'search_found_transactions' => 'Firefly III encontrou :count transacção em :time segundos.|Firefly III encontrou :count transacções em :time segundos.', + 'search_found_more_transactions' => 'Firefly III encontrou mais de :count transacções em :time segundos.', + 'search_for_query' => 'O Firefly III está à procura de transacções com as palavras: :query', + 'invalid_operators_list' => 'Estes parâmetros de pesquisa não são válidos e foram ignorados.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'A data da transação é ":value"', - 'search_modifier_not_date_on' => 'A data da transação não é ":value"', - 'search_modifier_reconciled' => 'Transação reconciliada', - 'search_modifier_not_reconciled' => 'A transação não está reconciliada', - 'search_modifier_id' => 'O ID da transação é ":value"', - 'search_modifier_not_id' => 'O ID da transação não é ":value"', - 'search_modifier_date_before' => 'A data da transação é anterior ou igual a ":value"', - 'search_modifier_date_after' => 'A data da transação é posterior ou igual a ":value"', - 'search_modifier_external_id_is' => 'ID externo é ":value"', - 'search_modifier_not_external_id_is' => 'O ID externo não é ":value"', - 'search_modifier_no_external_url' => 'A transação não tem nenhum URL externo', - 'search_modifier_no_external_id' => 'A transação não tem nenhum ID externo', - 'search_modifier_not_any_external_url' => 'A transação não tem nenhum URL externo', - 'search_modifier_not_any_external_id' => 'A transação não tem nenhum ID externo', - 'search_modifier_any_external_url' => 'A transação deve ter (pelo menos) um URL externo', - 'search_modifier_any_external_id' => 'A transação deve ter (pelo menos) um URL externo', - 'search_modifier_not_no_external_url' => 'A transação deve ter (pelo menos) um URL externo', - 'search_modifier_not_no_external_id' => 'A transação deve ter (pelo menos) um URL externo', - 'search_modifier_internal_reference_is' => 'A referência interna é ":value"', - 'search_modifier_not_internal_reference_is' => 'A referência interna não é ":value"', - 'search_modifier_description_starts' => 'A descrição começa com ":value"', - 'search_modifier_not_description_starts' => 'A descrição não começa com ":value"', - 'search_modifier_description_ends' => 'A descrição termina em ":value"', - 'search_modifier_not_description_ends' => 'A descrição não termina em ":value"', - 'search_modifier_description_contains' => 'A descrição contém ":value"', - 'search_modifier_not_description_contains' => 'A descrição não contém ":value"', - 'search_modifier_description_is' => 'A descrição é exatamente ":value"', - 'search_modifier_not_description_is' => 'Descrição não é exatamente ":value"', - 'search_modifier_currency_is' => 'A moeda (estrangeira) da transação é ":value"', - 'search_modifier_not_currency_is' => 'A moeda (estrangeira) da transação não é ":value"', - 'search_modifier_foreign_currency_is' => 'A moeda estrangeira da transação é ":value"', - 'search_modifier_not_foreign_currency_is' => 'A transação em moeda estrangeira não é ":value"', - 'search_modifier_has_attachments' => 'A transação tem de ter um anexo', - 'search_modifier_has_no_category' => 'A transação não pode ter qualquer categoria', - 'search_modifier_not_has_no_category' => 'A transação deve ter (pelo menos) uma categoria', - 'search_modifier_not_has_any_category' => 'A transação não pode ter qualquer categoria', - 'search_modifier_has_any_category' => 'A transação deve ter (pelo menos) uma categoria', - 'search_modifier_has_no_budget' => 'A transação não pode ter qualquer orçamento', - 'search_modifier_not_has_any_budget' => 'A transação não pode ter qualquer orçamento', - 'search_modifier_has_any_budget' => 'A transação deve ter (pelo menos) um orçamento', - 'search_modifier_not_has_no_budget' => 'A transação deve ter (pelo menos) um orçamento', - 'search_modifier_has_no_bill' => 'A transação não pode conter um encargo', - 'search_modifier_not_has_no_bill' => 'A transação deve ter (pelo menos) um encargo', - 'search_modifier_has_any_bill' => 'A transação tem de ter (algum) encargo', - 'search_modifier_not_has_any_bill' => 'A transação não pode conter um encargo', - 'search_modifier_has_no_tag' => 'A transação não pode ter etiquetas', - 'search_modifier_not_has_any_tag' => 'A transação não pode ter etiquetas', - 'search_modifier_not_has_no_tag' => 'A transação deve ter (pelo menos) uma etiqueta', - 'search_modifier_has_any_tag' => 'A transação deve ter (pelo menos) uma etiqueta', - 'search_modifier_notes_contains' => 'As notas de transação contêm ":value"', - 'search_modifier_not_notes_contains' => 'As notas de transação não contêm ":value"', - 'search_modifier_notes_starts' => 'As notas da transação começam com ":value"', - 'search_modifier_not_notes_starts' => 'As notas da transação não começam com ":value"', - 'search_modifier_notes_ends' => 'As notas da transação acabam com ":value"', - 'search_modifier_not_notes_ends' => 'As notas da transação não terminam em ":value"', - 'search_modifier_notes_is' => 'As notas da transacção são exactamente ":value"', - 'search_modifier_not_notes_is' => 'As notas da transação não são exatamente ":value"', - 'search_modifier_no_notes' => 'A transacção não pode tem notas', - 'search_modifier_not_no_notes' => 'A transação deve ter notas', - 'search_modifier_any_notes' => 'A transacção tem que ter notas', - 'search_modifier_not_any_notes' => 'A transação não tem notas', - 'search_modifier_amount_is' => 'O valor é exactamente :value', - 'search_modifier_not_amount_is' => 'O valor não é :value', - 'search_modifier_amount_less' => 'Valor é menor ou igual a :value', - 'search_modifier_not_amount_more' => 'O valor é menor ou igual a :value', - 'search_modifier_amount_more' => 'Valor é maior ou igual a :value', - 'search_modifier_not_amount_less' => 'O valor é maior ou igual a :value', - 'search_modifier_source_account_is' => 'O nome da conta de origem é exatamente ":value"', - 'search_modifier_not_source_account_is' => 'A conta de origem não é ":value"', - 'search_modifier_source_account_contains' => 'O nome da conta de origem contém ":value"', - 'search_modifier_not_source_account_contains' => 'A conta de origem não contém ":value"', - 'search_modifier_source_account_starts' => 'Nome da conta de origem começa com ":value"', - 'search_modifier_not_source_account_starts' => 'O nome da conta de origem não começa com ":value"', - 'search_modifier_source_account_ends' => 'O nome da conta de origem acaba com ":value"', - 'search_modifier_not_source_account_ends' => 'O nome da conta de origem não termina em ":value"', - 'search_modifier_source_account_id' => 'ID da conta de origem é :value', - 'search_modifier_not_source_account_id' => 'O ID da conta de origem não é :value', - 'search_modifier_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":value"', - 'search_modifier_not_source_account_nr_is' => 'O número (IBAN) da conta de origem não é ":value"', - 'search_modifier_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":value"', - 'search_modifier_not_source_account_nr_contains' => 'O número (IBAN) da conta de origem não contém ":value"', - 'search_modifier_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":value"', - 'search_modifier_not_source_account_nr_starts' => 'O número (IBAN) da conta de origem não começa com ":value"', - 'search_modifier_source_account_nr_ends' => 'O número (IBAN) da conta de origem termina em ":value"', - 'search_modifier_not_source_account_nr_ends' => 'O número (IBAN) da conta de origem não termina em ":value"', - 'search_modifier_destination_account_is' => 'O nome da conta de destino é exatamente ":value"', - 'search_modifier_not_destination_account_is' => 'O nome da conta de destino não é ":value"', - 'search_modifier_destination_account_contains' => 'Nome da conta de destino contém ":value"', - 'search_modifier_not_destination_account_contains' => 'O nome da conta de destino não contém ":value"', - 'search_modifier_destination_account_starts' => 'O nome da conta de destino começa com ":value"', - 'search_modifier_not_destination_account_starts' => 'O nome da conta de destino não começa com ":value"', - 'search_modifier_destination_account_ends' => 'O nome da conta de destino termina em ":value"', - 'search_modifier_not_destination_account_ends' => 'O nome da conta de destino não termina em ":value"', - 'search_modifier_destination_account_id' => 'ID da conta de destino é :value', - 'search_modifier_not_destination_account_id' => 'O ID da conta de destino não é :value', - 'search_modifier_destination_is_cash' => 'A conta de destino é a conta "(caixa)"', - 'search_modifier_not_destination_is_cash' => 'A conta de destino não é a conta "(caixa)"', - 'search_modifier_source_is_cash' => 'A conta de origem é a conta "(caixa)"', - 'search_modifier_not_source_is_cash' => 'A conta de origem não é a conta "(caixa)"', - 'search_modifier_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', - 'search_modifier_not_destination_account_nr_is' => 'O número (IBAN) da conta de destino é ":value"', - 'search_modifier_destination_account_nr_contains' => 'O número da conta de destino (IBAN) contém ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'O número (IBAN) da conta de destino não contém ":value"', - 'search_modifier_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'O número (IBAN) da conta de destino não começa com ":value"', - 'search_modifier_destination_account_nr_ends' => 'Número da conta de destino (IBAN) acaba com ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'O número (IBAN) da conta de destino não termina com ":value"', - 'search_modifier_account_id' => 'O ID da conta de origem ou destino é/são: :value', - 'search_modifier_not_account_id' => 'Os ID\'s das contas de origem ou destino não são: :value', - 'search_modifier_category_is' => 'A categoria é ":value"', - 'search_modifier_not_category_is' => 'A categoria não é ":value"', - 'search_modifier_budget_is' => 'O orçamento é ":value"', - 'search_modifier_not_budget_is' => 'O orçamento não é ":value"', - 'search_modifier_bill_is' => 'O encargo é ":value"', - 'search_modifier_not_bill_is' => 'O encargo não é ":value"', - 'search_modifier_transaction_type' => 'Tipo de transacção é ":value"', - 'search_modifier_not_transaction_type' => 'O tipo de transação não é ":value"', - 'search_modifier_tag_is' => 'A etiqueta é ":value"', - 'search_modifier_tag_contains' => 'A etiqueta contem ":value"', - 'search_modifier_not_tag_contains' => 'A etiqueta não contêm ":value"', - 'search_modifier_tag_ends' => 'A etiqueta acaba com ":value"', - 'search_modifier_tag_starts' => 'A etiqueta começa com ":value"', - 'search_modifier_not_tag_is' => 'Nenhuma etiqueta é ":value"', - 'search_modifier_date_on_year' => 'A transação é do ano ":value"', - 'search_modifier_not_date_on_year' => 'A transação não é no ano ":value"', - 'search_modifier_date_on_month' => 'A transação é do mês ":value"', - 'search_modifier_not_date_on_month' => 'A transação não é no mês ":value"', - 'search_modifier_date_on_day' => 'A transação é no dia do mês ":value"', - 'search_modifier_not_date_on_day' => 'A transação não é no dia do mês ":value"', - 'search_modifier_date_before_year' => 'A transação é antes ou no ano ":value"', - 'search_modifier_date_before_month' => 'A transação é antes ou no mês ":value"', - 'search_modifier_date_before_day' => 'A transação é antes ou no dia do mês ":value"', - 'search_modifier_date_after_year' => 'A transação é no ou depois do ano ":value"', - 'search_modifier_date_after_month' => 'A transação é no ou depois do mês ":value"', - 'search_modifier_date_after_day' => 'A transação é depois ou no dia do mês ":value"', + 'search_modifier_date_on' => 'A data da transação é ":value"', + 'search_modifier_not_date_on' => 'A data da transação não é ":value"', + 'search_modifier_reconciled' => 'Transação reconciliada', + 'search_modifier_not_reconciled' => 'A transação não está reconciliada', + 'search_modifier_id' => 'O ID da transação é ":value"', + 'search_modifier_not_id' => 'O ID da transação não é ":value"', + 'search_modifier_date_before' => 'A data da transação é anterior ou igual a ":value"', + 'search_modifier_date_after' => 'A data da transação é posterior ou igual a ":value"', + 'search_modifier_external_id_is' => 'ID externo é ":value"', + 'search_modifier_not_external_id_is' => 'O ID externo não é ":value"', + 'search_modifier_no_external_url' => 'A transação não tem nenhum URL externo', + 'search_modifier_no_external_id' => 'A transação não tem nenhum ID externo', + 'search_modifier_not_any_external_url' => 'A transação não tem nenhum URL externo', + 'search_modifier_not_any_external_id' => 'A transação não tem nenhum ID externo', + 'search_modifier_any_external_url' => 'A transação deve ter (pelo menos) um URL externo', + 'search_modifier_any_external_id' => 'A transação deve ter (pelo menos) um URL externo', + 'search_modifier_not_no_external_url' => 'A transação deve ter (pelo menos) um URL externo', + 'search_modifier_not_no_external_id' => 'A transação deve ter (pelo menos) um URL externo', + 'search_modifier_internal_reference_is' => 'A referência interna é ":value"', + 'search_modifier_not_internal_reference_is' => 'A referência interna não é ":value"', + 'search_modifier_description_starts' => 'A descrição começa com ":value"', + 'search_modifier_not_description_starts' => 'A descrição não começa com ":value"', + 'search_modifier_description_ends' => 'A descrição termina em ":value"', + 'search_modifier_not_description_ends' => 'A descrição não termina em ":value"', + 'search_modifier_description_contains' => 'A descrição contém ":value"', + 'search_modifier_not_description_contains' => 'A descrição não contém ":value"', + 'search_modifier_description_is' => 'A descrição é exatamente ":value"', + 'search_modifier_not_description_is' => 'Descrição não é exatamente ":value"', + 'search_modifier_currency_is' => 'A moeda (estrangeira) da transação é ":value"', + 'search_modifier_not_currency_is' => 'A moeda (estrangeira) da transação não é ":value"', + 'search_modifier_foreign_currency_is' => 'A moeda estrangeira da transação é ":value"', + 'search_modifier_not_foreign_currency_is' => 'A transação em moeda estrangeira não é ":value"', + 'search_modifier_has_attachments' => 'A transação tem de ter um anexo', + 'search_modifier_has_no_category' => 'A transação não pode ter qualquer categoria', + 'search_modifier_not_has_no_category' => 'A transação deve ter (pelo menos) uma categoria', + 'search_modifier_not_has_any_category' => 'A transação não pode ter qualquer categoria', + 'search_modifier_has_any_category' => 'A transação deve ter (pelo menos) uma categoria', + 'search_modifier_has_no_budget' => 'A transação não pode ter qualquer orçamento', + 'search_modifier_not_has_any_budget' => 'A transação não pode ter qualquer orçamento', + 'search_modifier_has_any_budget' => 'A transação deve ter (pelo menos) um orçamento', + 'search_modifier_not_has_no_budget' => 'A transação deve ter (pelo menos) um orçamento', + 'search_modifier_has_no_bill' => 'A transação não pode conter um encargo', + 'search_modifier_not_has_no_bill' => 'A transação deve ter (pelo menos) um encargo', + 'search_modifier_has_any_bill' => 'A transação tem de ter (algum) encargo', + 'search_modifier_not_has_any_bill' => 'A transação não pode conter um encargo', + 'search_modifier_has_no_tag' => 'A transação não pode ter etiquetas', + 'search_modifier_not_has_any_tag' => 'A transação não pode ter etiquetas', + 'search_modifier_not_has_no_tag' => 'A transação deve ter (pelo menos) uma etiqueta', + 'search_modifier_has_any_tag' => 'A transação deve ter (pelo menos) uma etiqueta', + 'search_modifier_notes_contains' => 'As notas de transação contêm ":value"', + 'search_modifier_not_notes_contains' => 'As notas de transação não contêm ":value"', + 'search_modifier_notes_starts' => 'As notas da transação começam com ":value"', + 'search_modifier_not_notes_starts' => 'As notas da transação não começam com ":value"', + 'search_modifier_notes_ends' => 'As notas da transação acabam com ":value"', + 'search_modifier_not_notes_ends' => 'As notas da transação não terminam em ":value"', + 'search_modifier_notes_is' => 'As notas da transacção são exactamente ":value"', + 'search_modifier_not_notes_is' => 'As notas da transação não são exatamente ":value"', + 'search_modifier_no_notes' => 'A transacção não pode tem notas', + 'search_modifier_not_no_notes' => 'A transação deve ter notas', + 'search_modifier_any_notes' => 'A transacção tem que ter notas', + 'search_modifier_not_any_notes' => 'A transação não tem notas', + 'search_modifier_amount_is' => 'O valor é exactamente :value', + 'search_modifier_not_amount_is' => 'O valor não é :value', + 'search_modifier_amount_less' => 'Valor é menor ou igual a :value', + 'search_modifier_not_amount_more' => 'O valor é menor ou igual a :value', + 'search_modifier_amount_more' => 'Valor é maior ou igual a :value', + 'search_modifier_not_amount_less' => 'O valor é maior ou igual a :value', + 'search_modifier_source_account_is' => 'O nome da conta de origem é exatamente ":value"', + 'search_modifier_not_source_account_is' => 'A conta de origem não é ":value"', + 'search_modifier_source_account_contains' => 'O nome da conta de origem contém ":value"', + 'search_modifier_not_source_account_contains' => 'A conta de origem não contém ":value"', + 'search_modifier_source_account_starts' => 'Nome da conta de origem começa com ":value"', + 'search_modifier_not_source_account_starts' => 'O nome da conta de origem não começa com ":value"', + 'search_modifier_source_account_ends' => 'O nome da conta de origem acaba com ":value"', + 'search_modifier_not_source_account_ends' => 'O nome da conta de origem não termina em ":value"', + 'search_modifier_source_account_id' => 'ID da conta de origem é :value', + 'search_modifier_not_source_account_id' => 'O ID da conta de origem não é :value', + 'search_modifier_source_account_nr_is' => 'Número da conta de origem (IBAN) é ":value"', + 'search_modifier_not_source_account_nr_is' => 'O número (IBAN) da conta de origem não é ":value"', + 'search_modifier_source_account_nr_contains' => 'Número da conta de origem (IBAN) contém ":value"', + 'search_modifier_not_source_account_nr_contains' => 'O número (IBAN) da conta de origem não contém ":value"', + 'search_modifier_source_account_nr_starts' => 'Número da conta de origem (IBAN) começa com ":value"', + 'search_modifier_not_source_account_nr_starts' => 'O número (IBAN) da conta de origem não começa com ":value"', + 'search_modifier_source_account_nr_ends' => 'O número (IBAN) da conta de origem termina em ":value"', + 'search_modifier_not_source_account_nr_ends' => 'O número (IBAN) da conta de origem não termina em ":value"', + 'search_modifier_destination_account_is' => 'O nome da conta de destino é exatamente ":value"', + 'search_modifier_not_destination_account_is' => 'O nome da conta de destino não é ":value"', + 'search_modifier_destination_account_contains' => 'Nome da conta de destino contém ":value"', + 'search_modifier_not_destination_account_contains' => 'O nome da conta de destino não contém ":value"', + 'search_modifier_destination_account_starts' => 'O nome da conta de destino começa com ":value"', + 'search_modifier_not_destination_account_starts' => 'O nome da conta de destino não começa com ":value"', + 'search_modifier_destination_account_ends' => 'O nome da conta de destino termina em ":value"', + 'search_modifier_not_destination_account_ends' => 'O nome da conta de destino não termina em ":value"', + 'search_modifier_destination_account_id' => 'ID da conta de destino é :value', + 'search_modifier_not_destination_account_id' => 'O ID da conta de destino não é :value', + 'search_modifier_destination_is_cash' => 'A conta de destino é a conta "(caixa)"', + 'search_modifier_not_destination_is_cash' => 'A conta de destino não é a conta "(caixa)"', + 'search_modifier_source_is_cash' => 'A conta de origem é a conta "(caixa)"', + 'search_modifier_not_source_is_cash' => 'A conta de origem não é a conta "(caixa)"', + 'search_modifier_destination_account_nr_is' => 'Número da conta de destino (IBAN) é ":value"', + 'search_modifier_not_destination_account_nr_is' => 'O número (IBAN) da conta de destino é ":value"', + 'search_modifier_destination_account_nr_contains' => 'O número da conta de destino (IBAN) contém ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'O número (IBAN) da conta de destino não contém ":value"', + 'search_modifier_destination_account_nr_starts' => 'Número da conta de destino (IBAN) começa com ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'O número (IBAN) da conta de destino não começa com ":value"', + 'search_modifier_destination_account_nr_ends' => 'Número da conta de destino (IBAN) acaba com ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'O número (IBAN) da conta de destino não termina com ":value"', + 'search_modifier_account_id' => 'O ID da conta de origem ou destino é/são: :value', + 'search_modifier_not_account_id' => 'Os ID\'s das contas de origem ou destino não são: :value', + 'search_modifier_category_is' => 'A categoria é ":value"', + 'search_modifier_not_category_is' => 'A categoria não é ":value"', + 'search_modifier_budget_is' => 'O orçamento é ":value"', + 'search_modifier_not_budget_is' => 'O orçamento não é ":value"', + 'search_modifier_bill_is' => 'O encargo é ":value"', + 'search_modifier_not_bill_is' => 'O encargo não é ":value"', + 'search_modifier_transaction_type' => 'Tipo de transacção é ":value"', + 'search_modifier_not_transaction_type' => 'O tipo de transação não é ":value"', + 'search_modifier_tag_is' => 'A etiqueta é ":value"', + 'search_modifier_tag_contains' => 'A etiqueta contem ":value"', + 'search_modifier_not_tag_contains' => 'A etiqueta não contêm ":value"', + 'search_modifier_tag_ends' => 'A etiqueta acaba com ":value"', + 'search_modifier_tag_starts' => 'A etiqueta começa com ":value"', + 'search_modifier_not_tag_is' => 'Nenhuma etiqueta é ":value"', + 'search_modifier_date_on_year' => 'A transação é do ano ":value"', + 'search_modifier_not_date_on_year' => 'A transação não é no ano ":value"', + 'search_modifier_date_on_month' => 'A transação é do mês ":value"', + 'search_modifier_not_date_on_month' => 'A transação não é no mês ":value"', + 'search_modifier_date_on_day' => 'A transação é no dia do mês ":value"', + 'search_modifier_not_date_on_day' => 'A transação não é no dia do mês ":value"', + 'search_modifier_date_before_year' => 'A transação é antes ou no ano ":value"', + 'search_modifier_date_before_month' => 'A transação é antes ou no mês ":value"', + 'search_modifier_date_before_day' => 'A transação é antes ou no dia do mês ":value"', + 'search_modifier_date_after_year' => 'A transação é no ou depois do ano ":value"', + 'search_modifier_date_after_month' => 'A transação é no ou depois do mês ":value"', + 'search_modifier_date_after_day' => 'A transação é depois ou no dia do mês ":value"', // new - 'search_modifier_tag_is_not' => 'Nenhuma etiqueta é ":value"', - 'search_modifier_not_tag_is_not' => 'A etiqueta é ":value"', - 'search_modifier_account_is' => 'Qualquer das contas é ":value"', - 'search_modifier_not_account_is' => 'Nenhuma das contas é ":value"', - 'search_modifier_account_contains' => 'Qualquer das contas contêm ":value"', - 'search_modifier_not_account_contains' => 'Nenhuma das contas contém ":value"', - 'search_modifier_account_ends' => 'Qualquer das contas acaba com ":value"', - 'search_modifier_not_account_ends' => 'Nenhuma das contas termina com ":value"', - 'search_modifier_account_starts' => 'Qualquer das contas começa com ":value"', - 'search_modifier_not_account_starts' => 'Nenhuma das contas começa com ":value"', - 'search_modifier_account_nr_is' => 'Qualquer um dos números de conta/IBAN é ":value"', - 'search_modifier_not_account_nr_is' => 'Nenhum número / IBAN de conta é ":value"', - 'search_modifier_account_nr_contains' => 'Qualquer um dos números de conta/IBAN contêm ":value"', - 'search_modifier_not_account_nr_contains' => 'Nenhum número / IBAN de conta contém ":value"', - 'search_modifier_account_nr_ends' => 'Qualquer um dos números de conta/IBAN acaba em ":value"', - 'search_modifier_not_account_nr_ends' => 'Nenhum número / IBAN de conta termina com ":value"', - 'search_modifier_account_nr_starts' => 'Qualquer um dos números de conta/IBAN começa com ":value"', - 'search_modifier_not_account_nr_starts' => 'Nenhum número / IBAN de conta começa com ":value"', - 'search_modifier_category_contains' => 'A categoria contém ":value"', - 'search_modifier_not_category_contains' => 'A categoria não contém ":value"', - 'search_modifier_category_ends' => 'A categoria termina em ":value"', - 'search_modifier_not_category_ends' => 'A categoria não termina em ":value"', - 'search_modifier_category_starts' => 'A categoria começa com ":value"', - 'search_modifier_not_category_starts' => 'A categoria não começa com ":value"', - 'search_modifier_budget_contains' => 'O orçamento contém ":value"', - 'search_modifier_not_budget_contains' => 'O orçamento não contém ":value"', - 'search_modifier_budget_ends' => 'O orçamento acaba com ":value"', - 'search_modifier_not_budget_ends' => 'O orçamento não termina em ":value"', - 'search_modifier_budget_starts' => 'O orçamento começa com ":value"', - 'search_modifier_not_budget_starts' => 'O orçamento não começa com ":value"', - 'search_modifier_bill_contains' => 'O encargo contêm ":value"', - 'search_modifier_not_bill_contains' => 'O encargo não contém ":value"', - 'search_modifier_bill_ends' => 'O encargo termina com ":value"', - 'search_modifier_not_bill_ends' => 'O encargo não termina em ":value"', - 'search_modifier_bill_starts' => 'O encargo começa com ":value"', - 'search_modifier_not_bill_starts' => 'O encargo não começa com ":value"', - 'search_modifier_external_id_contains' => 'O ID Externo contém ":value"', - 'search_modifier_not_external_id_contains' => 'O ID Externo não contém ":value"', - 'search_modifier_external_id_ends' => 'O ID Externo termina com ":value"', - 'search_modifier_not_external_id_ends' => 'O ID externo não termina em ":value"', - 'search_modifier_external_id_starts' => 'O ID Externo começa em ":value"', - 'search_modifier_not_external_id_starts' => 'O ID externo não começa em ":value"', - 'search_modifier_internal_reference_contains' => 'A referência interna contêm ":value"', - 'search_modifier_not_internal_reference_contains' => 'A referência interna não contém :value', - 'search_modifier_internal_reference_ends' => 'A referência interna termina em ":value"', - 'search_modifier_internal_reference_starts' => 'A referência interna começa com ":value"', - 'search_modifier_not_internal_reference_ends' => 'A referência interna não termina em :value', - 'search_modifier_not_internal_reference_starts' => 'A referência interna não começa com :value', - 'search_modifier_external_url_is' => 'O URL externo é ":value"', - 'search_modifier_not_external_url_is' => 'O URL externo não é :value', - 'search_modifier_external_url_contains' => 'O URL externo contém ":value"', - 'search_modifier_not_external_url_contains' => 'O URL externo não contém :value', - 'search_modifier_external_url_ends' => 'O URL externo termina em ":value"', - 'search_modifier_not_external_url_ends' => 'O URL externo não termina em :value', - 'search_modifier_external_url_starts' => 'O URL externo começa com ":value"', - 'search_modifier_not_external_url_starts' => 'O URL externo não começa com :value', - 'search_modifier_has_no_attachments' => 'A transacção não tem anexos', - 'search_modifier_not_has_no_attachments' => 'A transação tem anexos', - 'search_modifier_not_has_attachments' => 'A transação não tem anexos', - 'search_modifier_account_is_cash' => 'Qualquer conta é a conta "(caixa)".', - 'search_modifier_not_account_is_cash' => 'Nenhuma das contas é a conta "(caixa)".', - 'search_modifier_journal_id' => 'O ID do diário é ":value"', - 'search_modifier_not_journal_id' => 'O ID do diário não é ":value"', - 'search_modifier_recurrence_id' => 'O ID de transação recorrente é ":value"', - 'search_modifier_not_recurrence_id' => 'O ID de transação recorrente não é ":value"', - 'search_modifier_foreign_amount_is' => 'O montante em estrangeira é ":value"', - 'search_modifier_not_foreign_amount_is' => 'O montante em moeda estrangeira não é :value', - 'search_modifier_foreign_amount_less' => 'O montante em moeda estrangeira é inferior a :value', - 'search_modifier_not_foreign_amount_more' => 'O montante em moeda estrangeira é inferior a :value', - 'search_modifier_not_foreign_amount_less' => 'O montante em moeda estrangeira é superior a :value', - 'search_modifier_foreign_amount_more' => 'O montante em moeda estrangeira é superior a :value', - 'search_modifier_exists' => 'A transação existe (qualquer transação)', - 'search_modifier_not_exists' => 'A transação não existe (nenhuma transação)', + 'search_modifier_tag_is_not' => 'Nenhuma etiqueta é ":value"', + 'search_modifier_not_tag_is_not' => 'A etiqueta é ":value"', + 'search_modifier_account_is' => 'Qualquer das contas é ":value"', + 'search_modifier_not_account_is' => 'Nenhuma das contas é ":value"', + 'search_modifier_account_contains' => 'Qualquer das contas contêm ":value"', + 'search_modifier_not_account_contains' => 'Nenhuma das contas contém ":value"', + 'search_modifier_account_ends' => 'Qualquer das contas acaba com ":value"', + 'search_modifier_not_account_ends' => 'Nenhuma das contas termina com ":value"', + 'search_modifier_account_starts' => 'Qualquer das contas começa com ":value"', + 'search_modifier_not_account_starts' => 'Nenhuma das contas começa com ":value"', + 'search_modifier_account_nr_is' => 'Qualquer um dos números de conta/IBAN é ":value"', + 'search_modifier_not_account_nr_is' => 'Nenhum número / IBAN de conta é ":value"', + 'search_modifier_account_nr_contains' => 'Qualquer um dos números de conta/IBAN contêm ":value"', + 'search_modifier_not_account_nr_contains' => 'Nenhum número / IBAN de conta contém ":value"', + 'search_modifier_account_nr_ends' => 'Qualquer um dos números de conta/IBAN acaba em ":value"', + 'search_modifier_not_account_nr_ends' => 'Nenhum número / IBAN de conta termina com ":value"', + 'search_modifier_account_nr_starts' => 'Qualquer um dos números de conta/IBAN começa com ":value"', + 'search_modifier_not_account_nr_starts' => 'Nenhum número / IBAN de conta começa com ":value"', + 'search_modifier_category_contains' => 'A categoria contém ":value"', + 'search_modifier_not_category_contains' => 'A categoria não contém ":value"', + 'search_modifier_category_ends' => 'A categoria termina em ":value"', + 'search_modifier_not_category_ends' => 'A categoria não termina em ":value"', + 'search_modifier_category_starts' => 'A categoria começa com ":value"', + 'search_modifier_not_category_starts' => 'A categoria não começa com ":value"', + 'search_modifier_budget_contains' => 'O orçamento contém ":value"', + 'search_modifier_not_budget_contains' => 'O orçamento não contém ":value"', + 'search_modifier_budget_ends' => 'O orçamento acaba com ":value"', + 'search_modifier_not_budget_ends' => 'O orçamento não termina em ":value"', + 'search_modifier_budget_starts' => 'O orçamento começa com ":value"', + 'search_modifier_not_budget_starts' => 'O orçamento não começa com ":value"', + 'search_modifier_bill_contains' => 'O encargo contêm ":value"', + 'search_modifier_not_bill_contains' => 'O encargo não contém ":value"', + 'search_modifier_bill_ends' => 'O encargo termina com ":value"', + 'search_modifier_not_bill_ends' => 'O encargo não termina em ":value"', + 'search_modifier_bill_starts' => 'O encargo começa com ":value"', + 'search_modifier_not_bill_starts' => 'O encargo não começa com ":value"', + 'search_modifier_external_id_contains' => 'O ID Externo contém ":value"', + 'search_modifier_not_external_id_contains' => 'O ID Externo não contém ":value"', + 'search_modifier_external_id_ends' => 'O ID Externo termina com ":value"', + 'search_modifier_not_external_id_ends' => 'O ID externo não termina em ":value"', + 'search_modifier_external_id_starts' => 'O ID Externo começa em ":value"', + 'search_modifier_not_external_id_starts' => 'O ID externo não começa em ":value"', + 'search_modifier_internal_reference_contains' => 'A referência interna contêm ":value"', + 'search_modifier_not_internal_reference_contains' => 'A referência interna não contém :value', + 'search_modifier_internal_reference_ends' => 'A referência interna termina em ":value"', + 'search_modifier_internal_reference_starts' => 'A referência interna começa com ":value"', + 'search_modifier_not_internal_reference_ends' => 'A referência interna não termina em :value', + 'search_modifier_not_internal_reference_starts' => 'A referência interna não começa com :value', + 'search_modifier_external_url_is' => 'O URL externo é ":value"', + 'search_modifier_not_external_url_is' => 'O URL externo não é :value', + 'search_modifier_external_url_contains' => 'O URL externo contém ":value"', + 'search_modifier_not_external_url_contains' => 'O URL externo não contém :value', + 'search_modifier_external_url_ends' => 'O URL externo termina em ":value"', + 'search_modifier_not_external_url_ends' => 'O URL externo não termina em :value', + 'search_modifier_external_url_starts' => 'O URL externo começa com ":value"', + 'search_modifier_not_external_url_starts' => 'O URL externo não começa com :value', + 'search_modifier_has_no_attachments' => 'A transacção não tem anexos', + 'search_modifier_not_has_no_attachments' => 'A transação tem anexos', + 'search_modifier_not_has_attachments' => 'A transação não tem anexos', + 'search_modifier_account_is_cash' => 'Qualquer conta é a conta "(caixa)".', + 'search_modifier_not_account_is_cash' => 'Nenhuma das contas é a conta "(caixa)".', + 'search_modifier_journal_id' => 'O ID do diário é ":value"', + 'search_modifier_not_journal_id' => 'O ID do diário não é ":value"', + 'search_modifier_recurrence_id' => 'O ID de transação recorrente é ":value"', + 'search_modifier_not_recurrence_id' => 'O ID de transação recorrente não é ":value"', + 'search_modifier_foreign_amount_is' => 'O montante em estrangeira é ":value"', + 'search_modifier_not_foreign_amount_is' => 'O montante em moeda estrangeira não é :value', + 'search_modifier_foreign_amount_less' => 'O montante em moeda estrangeira é inferior a :value', + 'search_modifier_not_foreign_amount_more' => 'O montante em moeda estrangeira é inferior a :value', + 'search_modifier_not_foreign_amount_less' => 'O montante em moeda estrangeira é superior a :value', + 'search_modifier_foreign_amount_more' => 'O montante em moeda estrangeira é superior a :value', + 'search_modifier_exists' => 'A transação existe (qualquer transação)', + 'search_modifier_not_exists' => 'A transação não existe (nenhuma transação)', // date fields - 'search_modifier_interest_date_on' => 'A transação vence juros em :value', - 'search_modifier_not_interest_date_on' => 'A transação não vence juros em :value', - 'search_modifier_interest_date_on_year' => 'A data de juros da transação é no ano :value', - 'search_modifier_not_interest_date_on_year' => 'A data de juros da transação não é no ano :value', - 'search_modifier_interest_date_on_month' => 'A data de juros da transação é no mês :value', - 'search_modifier_not_interest_date_on_month' => 'A data de juros da transação não é no mês :value', - 'search_modifier_interest_date_on_day' => 'A data de juros da transação é no dia do mês :value', - 'search_modifier_not_interest_date_on_day' => 'A data de juros da transação não é no dia do mês :value', - 'search_modifier_interest_date_before_year' => 'A data de juros da transação é anterior ou no ano :value', - 'search_modifier_interest_date_before_month' => 'A data de juros da transação é anterior ou no mês de :value', - 'search_modifier_interest_date_before_day' => 'A data de juros da transação é anterior ou no dia do mês :value', - 'search_modifier_interest_date_after_year' => 'A data de juros da transação é posterior ou no ano :value', - 'search_modifier_interest_date_after_month' => 'A data de juros da transação é no mês ":value" ou posterior', - 'search_modifier_interest_date_after_day' => 'A data de juros da transação é no dia do mês ":value" ou posterior', - 'search_modifier_book_date_on_year' => 'A data da transação é no ano ":value"', - 'search_modifier_book_date_on_month' => 'A data da transação é no mês ":value"', - 'search_modifier_book_date_on_day' => 'A data da transação é no dia do mês ":value"', - 'search_modifier_not_book_date_on_year' => 'A data da transação não é no ano ":value"', - 'search_modifier_not_book_date_on_month' => 'A data da transação não é no mês ":value"', - 'search_modifier_not_book_date_on_day' => 'A data da transação não é no dia do mês ":value"', - 'search_modifier_book_date_before_year' => 'A data da transação é no ano ":value" ou anterior', - 'search_modifier_book_date_before_month' => 'A data da transação é no mês ":value" ou anterior', - 'search_modifier_book_date_before_day' => 'A data da transação é no dia do mês ":value" ou anterior', - 'search_modifier_book_date_after_year' => 'A data da transação é no ano ":value" ou posterior', - 'search_modifier_book_date_after_month' => 'A data da transação é no mês ":value" ou posterior', - 'search_modifier_book_date_after_day' => 'A data da transação é no dia do mês ":value" ou posterior', - 'search_modifier_process_date_on_year' => 'A data de processamento da transação é no ano ":value"', - 'search_modifier_process_date_on_month' => 'A data de processamento da transação é no mês ":value"', - 'search_modifier_process_date_on_day' => 'A data de processamento da transação é no dia do mês ":value"', - 'search_modifier_not_process_date_on_year' => 'A data de processamento da transação não é no ano ":value"', - 'search_modifier_not_process_date_on_month' => 'A data de processamento da transação não é no mês ":value"', - 'search_modifier_not_process_date_on_day' => 'A data de processamento da transação não é no dia do ":value"', - 'search_modifier_process_date_before_year' => 'A data de processamento da transação é no ano ":value" ou anterior', - 'search_modifier_process_date_before_month' => 'A data de processamento da transação é no mês ":value" ou anterior', - 'search_modifier_process_date_before_day' => 'A data de processamento da transação é no dia do mês ":value" ou anterior', - 'search_modifier_process_date_after_year' => 'A data de processamento da transação é no ano ":value" ou posterior', - 'search_modifier_process_date_after_month' => 'A data de processamento da transação é no mês ":value" ou posterior', - 'search_modifier_process_date_after_day' => 'A data de processamento da transação é no dia do mês ":value" ou posterior', - 'search_modifier_due_date_on_year' => 'A data de vencimento da transação é no ano ":value"', - 'search_modifier_due_date_on_month' => 'A data de vencimento da transação é no mês ":value"', - 'search_modifier_due_date_on_day' => 'A data de vencimento da transação é no dia do mês ":value"', - 'search_modifier_not_due_date_on_year' => 'A data de vencimento da transação não é no ano ":value"', - 'search_modifier_not_due_date_on_month' => 'A data de vencimento da transação não é no mês ":value"', - 'search_modifier_not_due_date_on_day' => 'A data de vencimento da transação não é no dia do ":value"', - 'search_modifier_due_date_before_year' => 'A data de vencimento da transação é no ano ":value" ou anterior', - 'search_modifier_due_date_before_month' => 'A data de vencimento da transação é no mês ":value" ou anterior', - 'search_modifier_due_date_before_day' => 'A data de vencimento da transação é no dia do mês ":value" ou anterior', - 'search_modifier_due_date_after_year' => 'A data de vencimento da transação é no ano ":value" ou posterior', - 'search_modifier_due_date_after_month' => 'A data de vencimento da transação é no mês ":value" ou posterior', - 'search_modifier_due_date_after_day' => 'A data de vencimento da transação é no dia do mês ":value" ou posterior', - 'search_modifier_payment_date_on_year' => 'A data de pagamento da transação é no ano ":value"', - 'search_modifier_payment_date_on_month' => 'A data de pagamento da transação é no mês ":value"', - 'search_modifier_payment_date_on_day' => 'A data de pagamento da transação é no dia do mês ":value"', - 'search_modifier_not_payment_date_on_year' => 'A data de pagamento da transação não é no ano ":value"', - 'search_modifier_not_payment_date_on_month' => 'A data de pagamento da transação não é no mês ":value"', - 'search_modifier_not_payment_date_on_day' => 'A data de pagamento da transação não é no dia do mês ":value"', - 'search_modifier_payment_date_before_year' => 'A data de pagamento da transação é no ano ":value" ou anterior', - 'search_modifier_payment_date_before_month' => 'A data de pagamento da transação é no mês ":value" ou anterior', - 'search_modifier_payment_date_before_day' => 'A data de pagamento da transação é no dia do mês ":value" ou anterior', - 'search_modifier_payment_date_after_year' => 'A data de pagamento da transação é no ano ":value" ou posterior', - 'search_modifier_payment_date_after_month' => 'A data de pagamento da transação é no mês ":value" ou posterior', - 'search_modifier_payment_date_after_day' => 'A data de pagamento da transação é no dia do mês ":value" ou posterior', - 'search_modifier_invoice_date_on_year' => 'A data da fatura da transação é no ano ":value"', - 'search_modifier_invoice_date_on_month' => 'A data da fatura da transação é no mês ":value"', - 'search_modifier_invoice_date_on_day' => 'A data da fatura da transação é no dia do mês ":value"', - 'search_modifier_not_invoice_date_on_year' => 'A data da fatura da transação não é no ano ":value"', - 'search_modifier_not_invoice_date_on_month' => 'A data da fatura da transação não é no mês ":value"', - 'search_modifier_not_invoice_date_on_day' => 'A data da fatura da transação não é no dia do mês ":value"', - 'search_modifier_invoice_date_before_year' => 'A data da fatura da transação não é anterior ou no ano ":value"', - 'search_modifier_invoice_date_before_month' => 'A data da fatura da transação não é anterior ou no mês ":value"', - 'search_modifier_invoice_date_before_day' => 'A data da fatura da transação não é anterior ou no dia do mês ":value"', - 'search_modifier_invoice_date_after_year' => 'A data da fatura da transação não é posterior ou no ano ":value"', - 'search_modifier_invoice_date_after_month' => 'A data da fatura da transação não é posterior ou no mês ":value"', - 'search_modifier_invoice_date_after_day' => 'A data da fatura da transação não é posterior ou no dia do mês ":value"', + 'search_modifier_interest_date_on' => 'A transação vence juros em :value', + 'search_modifier_not_interest_date_on' => 'A transação não vence juros em :value', + 'search_modifier_interest_date_on_year' => 'A data de juros da transação é no ano :value', + 'search_modifier_not_interest_date_on_year' => 'A data de juros da transação não é no ano :value', + 'search_modifier_interest_date_on_month' => 'A data de juros da transação é no mês :value', + 'search_modifier_not_interest_date_on_month' => 'A data de juros da transação não é no mês :value', + 'search_modifier_interest_date_on_day' => 'A data de juros da transação é no dia do mês :value', + 'search_modifier_not_interest_date_on_day' => 'A data de juros da transação não é no dia do mês :value', + 'search_modifier_interest_date_before_year' => 'A data de juros da transação é anterior ou no ano :value', + 'search_modifier_interest_date_before_month' => 'A data de juros da transação é anterior ou no mês de :value', + 'search_modifier_interest_date_before_day' => 'A data de juros da transação é anterior ou no dia do mês :value', + 'search_modifier_interest_date_after_year' => 'A data de juros da transação é posterior ou no ano :value', + 'search_modifier_interest_date_after_month' => 'A data de juros da transação é no mês ":value" ou posterior', + 'search_modifier_interest_date_after_day' => 'A data de juros da transação é no dia do mês ":value" ou posterior', + 'search_modifier_book_date_on_year' => 'A data da transação é no ano ":value"', + 'search_modifier_book_date_on_month' => 'A data da transação é no mês ":value"', + 'search_modifier_book_date_on_day' => 'A data da transação é no dia do mês ":value"', + 'search_modifier_not_book_date_on_year' => 'A data da transação não é no ano ":value"', + 'search_modifier_not_book_date_on_month' => 'A data da transação não é no mês ":value"', + 'search_modifier_not_book_date_on_day' => 'A data da transação não é no dia do mês ":value"', + 'search_modifier_book_date_before_year' => 'A data da transação é no ano ":value" ou anterior', + 'search_modifier_book_date_before_month' => 'A data da transação é no mês ":value" ou anterior', + 'search_modifier_book_date_before_day' => 'A data da transação é no dia do mês ":value" ou anterior', + 'search_modifier_book_date_after_year' => 'A data da transação é no ano ":value" ou posterior', + 'search_modifier_book_date_after_month' => 'A data da transação é no mês ":value" ou posterior', + 'search_modifier_book_date_after_day' => 'A data da transação é no dia do mês ":value" ou posterior', + 'search_modifier_process_date_on_year' => 'A data de processamento da transação é no ano ":value"', + 'search_modifier_process_date_on_month' => 'A data de processamento da transação é no mês ":value"', + 'search_modifier_process_date_on_day' => 'A data de processamento da transação é no dia do mês ":value"', + 'search_modifier_not_process_date_on_year' => 'A data de processamento da transação não é no ano ":value"', + 'search_modifier_not_process_date_on_month' => 'A data de processamento da transação não é no mês ":value"', + 'search_modifier_not_process_date_on_day' => 'A data de processamento da transação não é no dia do ":value"', + 'search_modifier_process_date_before_year' => 'A data de processamento da transação é no ano ":value" ou anterior', + 'search_modifier_process_date_before_month' => 'A data de processamento da transação é no mês ":value" ou anterior', + 'search_modifier_process_date_before_day' => 'A data de processamento da transação é no dia do mês ":value" ou anterior', + 'search_modifier_process_date_after_year' => 'A data de processamento da transação é no ano ":value" ou posterior', + 'search_modifier_process_date_after_month' => 'A data de processamento da transação é no mês ":value" ou posterior', + 'search_modifier_process_date_after_day' => 'A data de processamento da transação é no dia do mês ":value" ou posterior', + 'search_modifier_due_date_on_year' => 'A data de vencimento da transação é no ano ":value"', + 'search_modifier_due_date_on_month' => 'A data de vencimento da transação é no mês ":value"', + 'search_modifier_due_date_on_day' => 'A data de vencimento da transação é no dia do mês ":value"', + 'search_modifier_not_due_date_on_year' => 'A data de vencimento da transação não é no ano ":value"', + 'search_modifier_not_due_date_on_month' => 'A data de vencimento da transação não é no mês ":value"', + 'search_modifier_not_due_date_on_day' => 'A data de vencimento da transação não é no dia do ":value"', + 'search_modifier_due_date_before_year' => 'A data de vencimento da transação é no ano ":value" ou anterior', + 'search_modifier_due_date_before_month' => 'A data de vencimento da transação é no mês ":value" ou anterior', + 'search_modifier_due_date_before_day' => 'A data de vencimento da transação é no dia do mês ":value" ou anterior', + 'search_modifier_due_date_after_year' => 'A data de vencimento da transação é no ano ":value" ou posterior', + 'search_modifier_due_date_after_month' => 'A data de vencimento da transação é no mês ":value" ou posterior', + 'search_modifier_due_date_after_day' => 'A data de vencimento da transação é no dia do mês ":value" ou posterior', + 'search_modifier_payment_date_on_year' => 'A data de pagamento da transação é no ano ":value"', + 'search_modifier_payment_date_on_month' => 'A data de pagamento da transação é no mês ":value"', + 'search_modifier_payment_date_on_day' => 'A data de pagamento da transação é no dia do mês ":value"', + 'search_modifier_not_payment_date_on_year' => 'A data de pagamento da transação não é no ano ":value"', + 'search_modifier_not_payment_date_on_month' => 'A data de pagamento da transação não é no mês ":value"', + 'search_modifier_not_payment_date_on_day' => 'A data de pagamento da transação não é no dia do mês ":value"', + 'search_modifier_payment_date_before_year' => 'A data de pagamento da transação é no ano ":value" ou anterior', + 'search_modifier_payment_date_before_month' => 'A data de pagamento da transação é no mês ":value" ou anterior', + 'search_modifier_payment_date_before_day' => 'A data de pagamento da transação é no dia do mês ":value" ou anterior', + 'search_modifier_payment_date_after_year' => 'A data de pagamento da transação é no ano ":value" ou posterior', + 'search_modifier_payment_date_after_month' => 'A data de pagamento da transação é no mês ":value" ou posterior', + 'search_modifier_payment_date_after_day' => 'A data de pagamento da transação é no dia do mês ":value" ou posterior', + 'search_modifier_invoice_date_on_year' => 'A data da fatura da transação é no ano ":value"', + 'search_modifier_invoice_date_on_month' => 'A data da fatura da transação é no mês ":value"', + 'search_modifier_invoice_date_on_day' => 'A data da fatura da transação é no dia do mês ":value"', + 'search_modifier_not_invoice_date_on_year' => 'A data da fatura da transação não é no ano ":value"', + 'search_modifier_not_invoice_date_on_month' => 'A data da fatura da transação não é no mês ":value"', + 'search_modifier_not_invoice_date_on_day' => 'A data da fatura da transação não é no dia do mês ":value"', + 'search_modifier_invoice_date_before_year' => 'A data da fatura da transação não é anterior ou no ano ":value"', + 'search_modifier_invoice_date_before_month' => 'A data da fatura da transação não é anterior ou no mês ":value"', + 'search_modifier_invoice_date_before_day' => 'A data da fatura da transação não é anterior ou no dia do mês ":value"', + 'search_modifier_invoice_date_after_year' => 'A data da fatura da transação não é posterior ou no ano ":value"', + 'search_modifier_invoice_date_after_month' => 'A data da fatura da transação não é posterior ou no mês ":value"', + 'search_modifier_invoice_date_after_day' => 'A data da fatura da transação não é posterior ou no dia do mês ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'A transação foi atualizada pela última vez no ano ":value"', - 'search_modifier_updated_at_on_month' => 'A transação foi atualizada pela última vez no mês ":value"', - 'search_modifier_updated_at_on_day' => 'A transação foi atualizada pela última vez no dia do mês ":value"', - 'search_modifier_not_updated_at_on_year' => 'A transação não foi atualizada pela última vez no ano ":value"', - 'search_modifier_not_updated_at_on_month' => 'A transação não foi atualizada pela última vez no mês ":value"', - 'search_modifier_not_updated_at_on_day' => 'A transação não foi atualizada pela última vez no dia do mês ":value"', - 'search_modifier_updated_at_before_year' => 'A transação foi atualizada pela última vez antes de ou no ano ":value"', - 'search_modifier_updated_at_before_month' => 'A transação foi atualizada pela última vez antes de ou no mês ":value"', - 'search_modifier_updated_at_before_day' => 'A transação foi atualizada pela última vez antes de ou no dia do mês ":value"', - 'search_modifier_updated_at_after_year' => 'A transação foi atualizada pela última vez no ano ":value" ou posterior', - 'search_modifier_updated_at_after_month' => 'A transação foi atualizada pela última vez no mês ":value" ou posterior', - 'search_modifier_updated_at_after_day' => 'A transação foi atualizada pela última vez no dia do mês ":value" ou posterior', - 'search_modifier_created_at_on_year' => 'A transação foi criada no ano ":value"', - 'search_modifier_created_at_on_month' => 'A transação foi criada no mês ":value"', - 'search_modifier_created_at_on_day' => 'A transação foi criada no dia do mês ":value"', - 'search_modifier_not_created_at_on_year' => 'A transação não foi criada no ano ":value"', - 'search_modifier_not_created_at_on_month' => 'A transação não foi criada no mês ":value"', - 'search_modifier_not_created_at_on_day' => 'A transação não foi criada no dia do mês ":value"', - 'search_modifier_created_at_before_year' => 'A transação foi criada no ano ":value" ou anterior', - 'search_modifier_created_at_before_month' => 'A transação foi criada no mês ":value" ou anterior', - 'search_modifier_created_at_before_day' => 'A transação foi criada no dia do mês ":value" ou anterior', - 'search_modifier_created_at_after_year' => 'A transação foi criada no ano ":value" ou posterior', - 'search_modifier_created_at_after_month' => 'A transação foi criada no mês ":value" ou posterior', - 'search_modifier_created_at_after_day' => 'A transação foi criada no dia do mês ":value" ou posterior', - 'search_modifier_interest_date_before' => 'A data de juros da transação é no dia ":value" ou anterior', - 'search_modifier_interest_date_after' => 'A data de juros da transação é no dia ":value" ou posterior', - 'search_modifier_book_date_on' => 'A data da transação é ":value"', - 'search_modifier_not_book_date_on' => 'A data da transação não é ":value"', - 'search_modifier_book_date_before' => 'A data da transação é o dia ":value" ou anterior', - 'search_modifier_book_date_after' => 'A data da transação é o dia ":value" ou posterior', - 'search_modifier_process_date_on' => 'A data de processamento da transação é ":value"', - 'search_modifier_not_process_date_on' => 'A data de processamento da transação não é ":value"', - 'search_modifier_process_date_before' => 'A data de processamento da transação é ":value" ou anterior', - 'search_modifier_process_date_after' => 'A data de processamento da transação é ":value" ou posterior', - 'search_modifier_due_date_on' => 'A data de vencimento da transação é ":value"', - 'search_modifier_not_due_date_on' => 'A data de vencimento da transação não é ":value"', - 'search_modifier_due_date_before' => 'A data de vencimento da transação é ":value" ou anterior', - 'search_modifier_due_date_after' => 'A data de vencimento da transação é ":value" ou posterior', - 'search_modifier_payment_date_on' => 'A data de pagamento da transação é ":value"', - 'search_modifier_not_payment_date_on' => 'A data de pagamento da transação não é ":value"', - 'search_modifier_payment_date_before' => 'A data de pagamento da transação é no dia ":value" ou anterior', - 'search_modifier_payment_date_after' => 'A data de pagamento da transação é no dia ":value" ou posterior', - 'search_modifier_invoice_date_on' => 'A data da fatura da transação é ":value"', - 'search_modifier_not_invoice_date_on' => 'A data da fatura da transação não é ":value"', - 'search_modifier_invoice_date_before' => 'A data da fatura da transação é no dia ":value" ou anterior', - 'search_modifier_invoice_date_after' => 'A data da fatura da transação é no dia ":value" ou posterior', - 'search_modifier_created_at_on' => 'A transação foi criada em ":value"', - 'search_modifier_not_created_at_on' => 'A transação não foi criada em ":value"', - 'search_modifier_created_at_before' => 'A transação foi criada no dia ":value" ou anterior', - 'search_modifier_created_at_after' => 'A transação foi criada no dia ":value" ou posterior', - 'search_modifier_updated_at_on' => 'A transação foi atualizada em ":value"', - 'search_modifier_not_updated_at_on' => 'A transação não foi atualizada em ":value"', - 'search_modifier_updated_at_before' => 'A transação foi atualizada no dia ":value" ou anterior', - 'search_modifier_updated_at_after' => 'A transação foi atualizada no dia ":value" ou posterior', + 'search_modifier_updated_at_on_year' => 'A transação foi atualizada pela última vez no ano ":value"', + 'search_modifier_updated_at_on_month' => 'A transação foi atualizada pela última vez no mês ":value"', + 'search_modifier_updated_at_on_day' => 'A transação foi atualizada pela última vez no dia do mês ":value"', + 'search_modifier_not_updated_at_on_year' => 'A transação não foi atualizada pela última vez no ano ":value"', + 'search_modifier_not_updated_at_on_month' => 'A transação não foi atualizada pela última vez no mês ":value"', + 'search_modifier_not_updated_at_on_day' => 'A transação não foi atualizada pela última vez no dia do mês ":value"', + 'search_modifier_updated_at_before_year' => 'A transação foi atualizada pela última vez antes de ou no ano ":value"', + 'search_modifier_updated_at_before_month' => 'A transação foi atualizada pela última vez antes de ou no mês ":value"', + 'search_modifier_updated_at_before_day' => 'A transação foi atualizada pela última vez antes de ou no dia do mês ":value"', + 'search_modifier_updated_at_after_year' => 'A transação foi atualizada pela última vez no ano ":value" ou posterior', + 'search_modifier_updated_at_after_month' => 'A transação foi atualizada pela última vez no mês ":value" ou posterior', + 'search_modifier_updated_at_after_day' => 'A transação foi atualizada pela última vez no dia do mês ":value" ou posterior', + 'search_modifier_created_at_on_year' => 'A transação foi criada no ano ":value"', + 'search_modifier_created_at_on_month' => 'A transação foi criada no mês ":value"', + 'search_modifier_created_at_on_day' => 'A transação foi criada no dia do mês ":value"', + 'search_modifier_not_created_at_on_year' => 'A transação não foi criada no ano ":value"', + 'search_modifier_not_created_at_on_month' => 'A transação não foi criada no mês ":value"', + 'search_modifier_not_created_at_on_day' => 'A transação não foi criada no dia do mês ":value"', + 'search_modifier_created_at_before_year' => 'A transação foi criada no ano ":value" ou anterior', + 'search_modifier_created_at_before_month' => 'A transação foi criada no mês ":value" ou anterior', + 'search_modifier_created_at_before_day' => 'A transação foi criada no dia do mês ":value" ou anterior', + 'search_modifier_created_at_after_year' => 'A transação foi criada no ano ":value" ou posterior', + 'search_modifier_created_at_after_month' => 'A transação foi criada no mês ":value" ou posterior', + 'search_modifier_created_at_after_day' => 'A transação foi criada no dia do mês ":value" ou posterior', + 'search_modifier_interest_date_before' => 'A data de juros da transação é no dia ":value" ou anterior', + 'search_modifier_interest_date_after' => 'A data de juros da transação é no dia ":value" ou posterior', + 'search_modifier_book_date_on' => 'A data da transação é ":value"', + 'search_modifier_not_book_date_on' => 'A data da transação não é ":value"', + 'search_modifier_book_date_before' => 'A data da transação é o dia ":value" ou anterior', + 'search_modifier_book_date_after' => 'A data da transação é o dia ":value" ou posterior', + 'search_modifier_process_date_on' => 'A data de processamento da transação é ":value"', + 'search_modifier_not_process_date_on' => 'A data de processamento da transação não é ":value"', + 'search_modifier_process_date_before' => 'A data de processamento da transação é ":value" ou anterior', + 'search_modifier_process_date_after' => 'A data de processamento da transação é ":value" ou posterior', + 'search_modifier_due_date_on' => 'A data de vencimento da transação é ":value"', + 'search_modifier_not_due_date_on' => 'A data de vencimento da transação não é ":value"', + 'search_modifier_due_date_before' => 'A data de vencimento da transação é ":value" ou anterior', + 'search_modifier_due_date_after' => 'A data de vencimento da transação é ":value" ou posterior', + 'search_modifier_payment_date_on' => 'A data de pagamento da transação é ":value"', + 'search_modifier_not_payment_date_on' => 'A data de pagamento da transação não é ":value"', + 'search_modifier_payment_date_before' => 'A data de pagamento da transação é no dia ":value" ou anterior', + 'search_modifier_payment_date_after' => 'A data de pagamento da transação é no dia ":value" ou posterior', + 'search_modifier_invoice_date_on' => 'A data da fatura da transação é ":value"', + 'search_modifier_not_invoice_date_on' => 'A data da fatura da transação não é ":value"', + 'search_modifier_invoice_date_before' => 'A data da fatura da transação é no dia ":value" ou anterior', + 'search_modifier_invoice_date_after' => 'A data da fatura da transação é no dia ":value" ou posterior', + 'search_modifier_created_at_on' => 'A transação foi criada em ":value"', + 'search_modifier_not_created_at_on' => 'A transação não foi criada em ":value"', + 'search_modifier_created_at_before' => 'A transação foi criada no dia ":value" ou anterior', + 'search_modifier_created_at_after' => 'A transação foi criada no dia ":value" ou posterior', + 'search_modifier_updated_at_on' => 'A transação foi atualizada em ":value"', + 'search_modifier_not_updated_at_on' => 'A transação não foi atualizada em ":value"', + 'search_modifier_updated_at_before' => 'A transação foi atualizada no dia ":value" ou anterior', + 'search_modifier_updated_at_after' => 'A transação foi atualizada no dia ":value" ou posterior', - 'search_modifier_attachment_name_is' => 'Qualquer nome de anexo é ":value"', - 'search_modifier_attachment_name_contains' => 'Qualquer nome de anexo contém ":value"', - 'search_modifier_attachment_name_starts' => 'Qualquer nome de anexo começa com ":value"', - 'search_modifier_attachment_name_ends' => 'Qualquer nome de anexo termina com ":value"', - 'search_modifier_attachment_notes_are' => 'Quaisquer notas de anexo são ":value"', - 'search_modifier_attachment_notes_contains' => 'Quaisquer notas de anexo contêm ":value"', - 'search_modifier_attachment_notes_starts' => 'Quaisquer notas de anexo começam com ":value"', - 'search_modifier_attachment_notes_ends' => 'Quaisquer notas de anexo terminam com ":value"', - 'search_modifier_not_attachment_name_is' => 'Qualquer nome de anexo não é ":value"', - 'search_modifier_not_attachment_name_contains' => 'Qualquer nome de anexo não contém ":value"', - 'search_modifier_not_attachment_name_starts' => 'Qualquer nome de anexo não começa com ":value"', - 'search_modifier_not_attachment_name_ends' => 'Qualquer nome de anexo não termina com ":value"', - 'search_modifier_not_attachment_notes_are' => 'Quaisquer notas de anexo não são ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Quaisquer notas de anexo não contêm ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Quaisquer notas de anexo não começam com ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Quaisquer notas de anexo não terminam com ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA TC é ":value"', - 'update_rule_from_query' => 'Atualizar regra ":rule" da pesquisa', - 'create_rule_from_query' => 'Criar nova regra a partir da pesquisa', - 'rule_from_search_words' => 'O mecanismo de regras tem dificuldade com ":string". A regra sugerida que se encaixa na pesquisa pode mostrar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.', + 'search_modifier_attachment_name_is' => 'Qualquer nome de anexo é ":value"', + 'search_modifier_attachment_name_contains' => 'Qualquer nome de anexo contém ":value"', + 'search_modifier_attachment_name_starts' => 'Qualquer nome de anexo começa com ":value"', + 'search_modifier_attachment_name_ends' => 'Qualquer nome de anexo termina com ":value"', + 'search_modifier_attachment_notes_are' => 'Quaisquer notas de anexo são ":value"', + 'search_modifier_attachment_notes_contains' => 'Quaisquer notas de anexo contêm ":value"', + 'search_modifier_attachment_notes_starts' => 'Quaisquer notas de anexo começam com ":value"', + 'search_modifier_attachment_notes_ends' => 'Quaisquer notas de anexo terminam com ":value"', + 'search_modifier_not_attachment_name_is' => 'Qualquer nome de anexo não é ":value"', + 'search_modifier_not_attachment_name_contains' => 'Qualquer nome de anexo não contém ":value"', + 'search_modifier_not_attachment_name_starts' => 'Qualquer nome de anexo não começa com ":value"', + 'search_modifier_not_attachment_name_ends' => 'Qualquer nome de anexo não termina com ":value"', + 'search_modifier_not_attachment_notes_are' => 'Quaisquer notas de anexo não são ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Quaisquer notas de anexo não contêm ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Quaisquer notas de anexo não começam com ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Quaisquer notas de anexo não terminam com ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA TC é ":value"', + 'update_rule_from_query' => 'Atualizar regra ":rule" da pesquisa', + 'create_rule_from_query' => 'Criar nova regra a partir da pesquisa', + 'rule_from_search_words' => 'O mecanismo de regras tem dificuldade com ":string". A regra sugerida que se encaixa na pesquisa pode mostrar resultados diferentes. Por favor, verifique os gatilhos das regras cuidadosamente.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Os seguintes modificadores também são aplicados à pesquisa:', - 'general_search_error' => 'Ocorreu um erro ao procurar. Por favor, verifique os arquivos de log para mais informações.', - 'search_box' => 'Procurar', - 'search_box_intro' => 'Bem-vindo à função de pesquisa do Firefly III. Introduza os termos de pesquisa na caixa. Certifique-se que consulta o nosso ficheiro de ajuda por a pesquisa ser bastante avançada.', - 'search_error' => 'Erro durante a pesquisa', - 'search_searching' => 'A pesquisar ...', - 'search_results' => 'Resultados da pesquisa', + 'modifiers_applies_are' => 'Os seguintes modificadores também são aplicados à pesquisa:', + 'general_search_error' => 'Ocorreu um erro ao procurar. Por favor, verifique os arquivos de log para mais informações.', + 'search_box' => 'Procurar', + 'search_box_intro' => 'Bem-vindo à função de pesquisa do Firefly III. Introduza os termos de pesquisa na caixa. Certifique-se que consulta o nosso ficheiro de ajuda por a pesquisa ser bastante avançada.', + 'search_error' => 'Erro durante a pesquisa', + 'search_searching' => 'A pesquisar ...', + 'search_results' => 'Resultados da pesquisa', // repeat frequencies: - 'repeat_freq_yearly' => 'anualmente', - 'repeat_freq_half-year' => 'a cada meio ano', - 'repeat_freq_quarterly' => 'trimestral', - 'repeat_freq_monthly' => 'mensalmente', - 'repeat_freq_weekly' => 'semanalmente', - 'repeat_freq_daily' => 'diariamente', - 'daily' => 'diariamente', - 'weekly' => 'semanalmente', - 'quarterly' => 'trimestral', - 'half-year' => 'a cada meio ano', - 'yearly' => 'anual', + 'repeat_freq_yearly' => 'anualmente', + 'repeat_freq_half-year' => 'a cada meio ano', + 'repeat_freq_quarterly' => 'trimestral', + 'repeat_freq_monthly' => 'mensalmente', + 'repeat_freq_weekly' => 'semanalmente', + 'repeat_freq_daily' => 'diariamente', + 'daily' => 'diariamente', + 'weekly' => 'semanalmente', + 'quarterly' => 'trimestral', + 'half-year' => 'a cada meio ano', + 'yearly' => 'anual', // rules - 'is_not_rule_trigger' => 'Não', - 'cannot_fire_inactive_rules' => 'Não pode executar regras inativas.', - 'show_triggers' => 'Mostrar gatilhos', - 'show_actions' => 'Mostrar ações', - 'rules' => 'Regras', - 'rule_name' => 'Nome da regra', - 'rule_triggers' => 'Regra dispara quando', - 'rule_actions' => 'Regra vai', - 'new_rule' => 'Nova regra', - 'new_rule_group' => 'Novo grupo de regras', - 'rule_priority_up' => 'Dar mais prioridade a regra', - 'rule_priority_down' => 'Dar menos prioridade a regra', - 'make_new_rule_group' => 'Criar novo grupo de regras', - 'store_new_rule_group' => 'Gravar novo grupo de regras', - 'created_new_rule_group' => 'Novo grupo de regras ":title" gravado!', - 'updated_rule_group' => 'Grupo de regras atualizado com sucesso ":title".', - 'edit_rule_group' => 'Editar grupo de regras ":title"', - 'duplicate_rule' => 'Duplicar regra ":title"', - 'rule_copy_of' => 'Cópia de ":title"', - 'duplicated_rule' => 'Duplicada regra ":title" para ":newTitle"', - 'delete_rule_group' => 'Apagar grupo de regras ":title"', - 'deleted_rule_group' => 'Grupo de regras ":title" apagado', - 'update_rule_group' => 'Atualizar grupo de regras', - 'no_rules_in_group' => 'Não há regras neste grupo', - 'move_rule_group_up' => 'Mover para cima o grupo de regras', - 'move_rule_group_down' => 'Mover para baixo o grupo de regras', - 'save_rules_by_moving' => 'Guardar esta regra movendo-a para outro grupo de regras:|Guardar estas regras movendo-as para outro grupo de regras:', - 'make_new_rule' => 'Adicione uma nova regra ao grupo de regras ":title"', - 'make_new_rule_no_group' => 'Criar uma nova regra', - 'instructions_rule_from_bill' => 'Para combinar transações com o seu novo encargo ":name", o Firefly III pode criar uma regra que verifica automaticamente todas as transações que guardar. Por favor, verifique os detalhes abaixo e guarde a regra para que o Firefly III combine automaticamente as transações com o seu novo encargo.', - 'instructions_rule_from_journal' => 'Crie uma regra com base numa das suas transacções. Complete ou envie o formulário abaixo.', - 'rule_is_strict' => 'regra restrita', - 'rule_is_not_strict' => 'regra não restrita', - 'rule_help_stop_processing' => 'Quando selecionar esta caixa, as regras posteriores neste grupo não serão executadas.', - 'rule_help_strict' => 'Nas regras estritas TODOS os disparos devem ser executados para a(s) ação(ões) ocorrerem. Nas regras não estritas QUALQUER disparo é suficiente para executar uma ação.', - 'rule_help_active' => 'Regras inativas nunca dispararão.', - 'stored_new_rule' => 'Guardada nova regra com o título ":title"', - 'deleted_rule' => 'Apagada regra com o título ":title"', - 'store_new_rule' => 'Gravar nova regra', - 'updated_rule' => 'Atualizada a regra com o título ":title"', - 'default_rule_group_name' => 'Regras predefinidas', - 'default_rule_group_description' => 'Todas as regras que não estão num grupo específico.', - 'trigger' => 'Gatilho', - 'trigger_value' => 'Disparar no valor', - 'stop_processing_other_triggers' => 'Parar os outros gatilhos', - 'add_rule_trigger' => 'Adicionar novo gatilho', - 'action' => 'Ação', - 'action_value' => 'Valor da ação', - 'stop_executing_other_actions' => 'Parar de executar outras ações', - 'add_rule_action' => 'Adicionar nova ação', - 'edit_rule' => 'Editar regra ":title"', - 'delete_rule' => 'Apagar regra ":title"', - 'update_rule' => 'Atualizar regra', - 'test_rule_triggers' => 'Ver transacções correspondentes', - 'warning_no_matching_transactions' => 'Nenhuma transacção correspondente foi encontrada.', - 'warning_no_valid_triggers' => 'Nenhum gatilho válido encontrado.', - 'apply_rule_selection' => 'Aplicar a regra ":title" a uma selecção de transacções', - 'apply_rule_selection_intro' => 'Regras como ":title" são normalmente aplicadas a transações novas ou atualizadas, no entanto pode dizer ao Firefly III para executar as mesmas em transações selecionadas. Isto pode ser útil quando tiver atualizado uma regra e necessite de aplicar as alterações a todas as transações que devem ser afetas.', - 'include_transactions_from_accounts' => 'Incluir transações destas contas', - 'include' => 'Incluir?', - 'applied_rule_selection' => '{0} Nenhuma transação na sua seleção foi alterada pela regra ":title".[1] Uma transação na sua seleção foi alterada pela regra ":title".├[2,*] :count transações na sua seleção foram alteradas pela regra ":title".', - 'execute' => 'Executar', - 'apply_rule_group_selection' => 'Aplicar grupo de regras ":title" a uma seleção de transações', - 'apply_rule_group_selection_intro' => 'Grupos de regras como ":title" são normalmente aplicados a transações novas ou atualizadas, no entanto pode dizer ao Firefly III para executar todas as regras deste grupo a uma seleção de transações existentes. Isto pode ser útil quando tiver atualizado um grupo de regras e necessite de aplicar as alterações a todas as outras transações.', - 'applied_rule_group_selection' => 'O grupo de regras ":title" foi aplicado à sua seleção.', + 'is_not_rule_trigger' => 'Não', + 'cannot_fire_inactive_rules' => 'Não pode executar regras inativas.', + 'show_triggers' => 'Mostrar gatilhos', + 'show_actions' => 'Mostrar ações', + 'rules' => 'Regras', + 'rule_name' => 'Nome da regra', + 'rule_triggers' => 'Regra dispara quando', + 'rule_actions' => 'Regra vai', + 'new_rule' => 'Nova regra', + 'new_rule_group' => 'Novo grupo de regras', + 'rule_priority_up' => 'Dar mais prioridade a regra', + 'rule_priority_down' => 'Dar menos prioridade a regra', + 'make_new_rule_group' => 'Criar novo grupo de regras', + 'store_new_rule_group' => 'Gravar novo grupo de regras', + 'created_new_rule_group' => 'Novo grupo de regras ":title" gravado!', + 'updated_rule_group' => 'Grupo de regras atualizado com sucesso ":title".', + 'edit_rule_group' => 'Editar grupo de regras ":title"', + 'duplicate_rule' => 'Duplicar regra ":title"', + 'rule_copy_of' => 'Cópia de ":title"', + 'duplicated_rule' => 'Duplicada regra ":title" para ":newTitle"', + 'delete_rule_group' => 'Apagar grupo de regras ":title"', + 'deleted_rule_group' => 'Grupo de regras ":title" apagado', + 'update_rule_group' => 'Atualizar grupo de regras', + 'no_rules_in_group' => 'Não há regras neste grupo', + 'move_rule_group_up' => 'Mover para cima o grupo de regras', + 'move_rule_group_down' => 'Mover para baixo o grupo de regras', + 'save_rules_by_moving' => 'Guardar esta regra movendo-a para outro grupo de regras:|Guardar estas regras movendo-as para outro grupo de regras:', + 'make_new_rule' => 'Adicione uma nova regra ao grupo de regras ":title"', + 'make_new_rule_no_group' => 'Criar uma nova regra', + 'instructions_rule_from_bill' => 'Para combinar transações com o seu novo encargo ":name", o Firefly III pode criar uma regra que verifica automaticamente todas as transações que guardar. Por favor, verifique os detalhes abaixo e guarde a regra para que o Firefly III combine automaticamente as transações com o seu novo encargo.', + 'instructions_rule_from_journal' => 'Crie uma regra com base numa das suas transacções. Complete ou envie o formulário abaixo.', + 'rule_is_strict' => 'regra restrita', + 'rule_is_not_strict' => 'regra não restrita', + 'rule_help_stop_processing' => 'Quando selecionar esta caixa, as regras posteriores neste grupo não serão executadas.', + 'rule_help_strict' => 'Nas regras estritas TODOS os disparos devem ser executados para a(s) ação(ões) ocorrerem. Nas regras não estritas QUALQUER disparo é suficiente para executar uma ação.', + 'rule_help_active' => 'Regras inativas nunca dispararão.', + 'stored_new_rule' => 'Guardada nova regra com o título ":title"', + 'deleted_rule' => 'Apagada regra com o título ":title"', + 'store_new_rule' => 'Gravar nova regra', + 'updated_rule' => 'Atualizada a regra com o título ":title"', + 'default_rule_group_name' => 'Regras predefinidas', + 'default_rule_group_description' => 'Todas as regras que não estão num grupo específico.', + 'trigger' => 'Gatilho', + 'trigger_value' => 'Disparar no valor', + 'stop_processing_other_triggers' => 'Parar os outros gatilhos', + 'add_rule_trigger' => 'Adicionar novo gatilho', + 'action' => 'Ação', + 'action_value' => 'Valor da ação', + 'stop_executing_other_actions' => 'Parar de executar outras ações', + 'add_rule_action' => 'Adicionar nova ação', + 'edit_rule' => 'Editar regra ":title"', + 'delete_rule' => 'Apagar regra ":title"', + 'update_rule' => 'Atualizar regra', + 'test_rule_triggers' => 'Ver transacções correspondentes', + 'warning_no_matching_transactions' => 'Nenhuma transacção correspondente foi encontrada.', + 'warning_no_valid_triggers' => 'Nenhum gatilho válido encontrado.', + 'apply_rule_selection' => 'Aplicar a regra ":title" a uma selecção de transacções', + 'apply_rule_selection_intro' => 'Regras como ":title" são normalmente aplicadas a transações novas ou atualizadas, no entanto pode dizer ao Firefly III para executar as mesmas em transações selecionadas. Isto pode ser útil quando tiver atualizado uma regra e necessite de aplicar as alterações a todas as transações que devem ser afetas.', + 'include_transactions_from_accounts' => 'Incluir transações destas contas', + 'include' => 'Incluir?', + 'applied_rule_selection' => '{0} Nenhuma transação na sua seleção foi alterada pela regra ":title".[1] Uma transação na sua seleção foi alterada pela regra ":title".├[2,*] :count transações na sua seleção foram alteradas pela regra ":title".', + 'execute' => 'Executar', + 'apply_rule_group_selection' => 'Aplicar grupo de regras ":title" a uma seleção de transações', + 'apply_rule_group_selection_intro' => 'Grupos de regras como ":title" são normalmente aplicados a transações novas ou atualizadas, no entanto pode dizer ao Firefly III para executar todas as regras deste grupo a uma seleção de transações existentes. Isto pode ser útil quando tiver atualizado um grupo de regras e necessite de aplicar as alterações a todas as outras transações.', + 'applied_rule_group_selection' => 'O grupo de regras ":title" foi aplicado à sua seleção.', // actions and triggers - 'rule_trigger_store_journal' => 'Quando uma transação é criada', - 'rule_trigger_update_journal' => 'Quando uma transação é atualizada', - 'rule_trigger_user_action' => 'A ação de utilizador é ":trigger_value"', + 'rule_trigger_store_journal' => 'Quando uma transação é criada', + 'rule_trigger_update_journal' => 'Quando uma transação é atualizada', + 'rule_trigger_user_action' => 'A ação de utilizador é ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'O nome da conta de origem começa com..', - 'rule_trigger_source_account_starts' => 'O nome da conta de origem começa com ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'O nome da conta de origem acaba com..', - 'rule_trigger_source_account_ends' => 'O nome da conta de origem acaba com ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'O nome da conta de origem é..', - 'rule_trigger_source_account_is' => 'O nome da conta de origem é ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Nome da conta de origem contém..', - 'rule_trigger_source_account_contains' => 'Nome da conta de origem contém ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Qualquer ID de conta é exatamente..', - 'rule_trigger_account_id' => 'Qualquer ID de conta é exatamente :trigger_value', - 'rule_trigger_source_account_id_choice' => 'O ID da conta de origem é exatamente..', - 'rule_trigger_source_account_id' => 'O ID da conta de origem é exactamente :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'O ID da conta de destino é exatamente..', - 'rule_trigger_destination_account_id' => 'O ID da conta de destino é exactamente :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Qualquer uma das contas é de caixa', - 'rule_trigger_account_is_cash' => 'Qualquer uma das contas é de caixa', - 'rule_trigger_source_is_cash_choice' => 'A conta de origem é uma conta (caixa)', - 'rule_trigger_source_is_cash' => 'A conta de origem é uma conta (caixa)', - 'rule_trigger_destination_is_cash_choice' => 'A conta de destino é uma conta (caixa)', - 'rule_trigger_destination_is_cash' => 'A conta de destino é uma conta (caixa)', - 'rule_trigger_source_account_nr_starts_choice' => 'Número / IBAN da conta de origem começa com..', - 'rule_trigger_source_account_nr_starts' => 'Número / IBAN da conta de origem começa com ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Número / IBAN da conta de origem acaba com..', - 'rule_trigger_source_account_nr_ends' => 'Número / IBAN da conta de origem acaba com ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Número / IBAN da conta de origem é..', - 'rule_trigger_source_account_nr_is' => 'O número / IBAN da conta de origem é ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'O número / IBAN da conta de origem contém..', - 'rule_trigger_source_account_nr_contains' => 'Número / IBAN da conta de origem contém ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Nome da conta de destino começa com..', - 'rule_trigger_destination_account_starts' => 'O nome da conta de destino começa com ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'O nome da conta de destino acaba com..', - 'rule_trigger_destination_account_ends' => 'O nome da conta de destino acaba com ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'O nome da conta de destino é..', - 'rule_trigger_destination_account_is' => 'O nome da conta de destino é ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'O nome da conta de destino contém..', - 'rule_trigger_destination_account_contains' => 'O nome da conta de destino contém ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'O número / IBAN da conta de destino começa com..', - 'rule_trigger_destination_account_nr_starts' => 'O número / IBAN da conta de destino começa com ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'O número / IBAN da conta de destino acaba com..', - 'rule_trigger_destination_account_nr_ends' => 'O número / IBAN da conta de destino acaba com ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'O número / IBAN da conta de destino é..', - 'rule_trigger_destination_account_nr_is' => 'O número / IBAN da conta de destino é ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'O número / IBAN da conta de destino contém..', - 'rule_trigger_destination_account_nr_contains' => 'O número da conta de destino/IBAN contém ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'A transação é do tipo..', - 'rule_trigger_transaction_type' => 'Transação é do tipo ":trigger_value"', - 'rule_trigger_category_is_choice' => 'A categoria é..', - 'rule_trigger_category_is' => 'A categoria é ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Quantidade é menor ou igual a ..', - 'rule_trigger_amount_less' => 'Quantidade é menor ou igual a :trigger_value', - 'rule_trigger_amount_is_choice' => 'O montante é..', - 'rule_trigger_amount_is' => 'O montante é :trigger_value', - 'rule_trigger_amount_more_choice' => 'Quantidade é maior ou igual a..', - 'rule_trigger_amount_more' => 'Quantidade é maior ou igual a :trigger_value', - 'rule_trigger_description_starts_choice' => 'A descrição começa com..', - 'rule_trigger_description_starts' => 'A descrição começa com ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'A descrição termina com..', - 'rule_trigger_description_ends' => 'A descrição acaba com ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'A descrição contém..', - 'rule_trigger_description_contains' => 'A descrição contém ":trigger_value"', - 'rule_trigger_description_is_choice' => 'A descrição é..', - 'rule_trigger_description_is' => 'A descrição é ":trigger_value"', - 'rule_trigger_date_on_choice' => 'A data da transação é..', - 'rule_trigger_date_on' => 'A data da transação é ":trigger_value"', - 'rule_trigger_date_before_choice' => 'A data da transação é anterior..', - 'rule_trigger_date_before' => 'A data da transação é anterior a ":trigger_value"', - 'rule_trigger_date_after_choice' => 'A data da transação é após..', - 'rule_trigger_date_after' => 'A data da transação é após ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'A transação foi realizada em..', - 'rule_trigger_created_at_on' => 'A transação foi realizada em ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'A transação foi editada pela última vez em..', - 'rule_trigger_updated_at_on' => 'A transação foi editada pela última vez em ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'O orçamento é..', - 'rule_trigger_budget_is' => 'O orçamento é ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Uma etiqueta é..', - 'rule_trigger_tag_is' => 'Qualquer etiqueta é ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'A moeda da transação é..', - 'rule_trigger_currency_is' => 'A moeda da transação é ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'A moeda estrangeira da transação é..', - 'rule_trigger_foreign_currency_is' => 'A moeda estrangeira da transação é ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Tem, pelo menos, esta quantidade de anexos', - 'rule_trigger_has_attachments' => 'Tem pelo menos :trigger_value anexo(s)', - 'rule_trigger_has_no_category_choice' => 'Não tem categoria', - 'rule_trigger_has_no_category' => 'A transação não tem categoria', - 'rule_trigger_has_any_category_choice' => 'Tem (pelo menos) uma categoria', - 'rule_trigger_has_any_category' => 'A transação tem (pelo menos) uma categoria', - 'rule_trigger_has_no_budget_choice' => 'Não tem orçamento', - 'rule_trigger_has_no_budget' => 'A transacção não tem orçamento', - 'rule_trigger_has_any_budget_choice' => 'Tem (pelo menos) um orçamento', - 'rule_trigger_has_any_budget' => 'A transação tem (pelo menos) um orçamento', - 'rule_trigger_has_no_bill_choice' => 'Não tem encargo', - 'rule_trigger_has_no_bill' => 'A transação não tem encargos', - 'rule_trigger_has_any_bill_choice' => 'Tem (pelo menos) um encargo', - 'rule_trigger_has_any_bill' => 'A transação tem (pelo menos) um encargo', - 'rule_trigger_has_no_tag_choice' => 'Não tem etiquetas', - 'rule_trigger_has_no_tag' => 'A transação não tem etiqueta(s)', - 'rule_trigger_has_any_tag_choice' => 'Tem uma ou mais etiquetas (quaisquer)', - 'rule_trigger_has_any_tag' => 'A transação tem uma ou mais etiquetas (quaisquer)', - 'rule_trigger_any_notes_choice' => 'Tem notas (quaisquer)', - 'rule_trigger_any_notes' => 'A transação tem (pelo menos) uma nota', - 'rule_trigger_no_notes_choice' => 'Não tem notas', - 'rule_trigger_no_notes' => 'A transação não tem notas', - 'rule_trigger_notes_is_choice' => 'As notas são..', - 'rule_trigger_notes_is' => 'As notas são ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'As notas contêm..', - 'rule_trigger_notes_contains' => 'As notas contêm ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'As notas comecam com..', - 'rule_trigger_notes_starts' => 'As notas começam com ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'As notas terminam com..', - 'rule_trigger_notes_ends' => 'Notas acabam com ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'O encargo é..', - 'rule_trigger_bill_is' => 'O encargo é ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'O ID Externo é..', - 'rule_trigger_external_id_is' => 'O ID externo é ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'A referência interna é..', - 'rule_trigger_internal_reference_is' => 'A referência interna é ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'O ID do diário de transações é..', - 'rule_trigger_journal_id' => 'O ID do diário de transações é ":trigger_value"', - 'rule_trigger_any_external_url' => 'A transação tem um (qualquer) URL externo', - 'rule_trigger_any_external_url_choice' => 'A transação tem um (qualquer) URL externo', - 'rule_trigger_any_external_id' => 'A transação tem um (qualquer) ID externo', - 'rule_trigger_any_external_id_choice' => 'A transação tem um (qualquer) ID externo', - 'rule_trigger_no_external_url_choice' => 'A transação não tem nenhum URL externo', - 'rule_trigger_no_external_url' => 'A transação não tem nenhum URL externo', - 'rule_trigger_no_external_id_choice' => 'A transação não tem ID externo', - 'rule_trigger_no_external_id' => 'A transação não tem ID externo', - 'rule_trigger_id_choice' => 'ID da transação é..', - 'rule_trigger_id' => 'O ID da transação é ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT é..', - 'rule_trigger_sepa_ct_is' => 'SEPA TC é ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'O nome da conta de origem começa com..', + 'rule_trigger_source_account_starts' => 'O nome da conta de origem começa com ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'O nome da conta de origem acaba com..', + 'rule_trigger_source_account_ends' => 'O nome da conta de origem acaba com ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'O nome da conta de origem é..', + 'rule_trigger_source_account_is' => 'O nome da conta de origem é ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Nome da conta de origem contém..', + 'rule_trigger_source_account_contains' => 'Nome da conta de origem contém ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Qualquer ID de conta é exatamente..', + 'rule_trigger_account_id' => 'Qualquer ID de conta é exatamente :trigger_value', + 'rule_trigger_source_account_id_choice' => 'O ID da conta de origem é exatamente..', + 'rule_trigger_source_account_id' => 'O ID da conta de origem é exactamente :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'O ID da conta de destino é exatamente..', + 'rule_trigger_destination_account_id' => 'O ID da conta de destino é exactamente :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Qualquer uma das contas é de caixa', + 'rule_trigger_account_is_cash' => 'Qualquer uma das contas é de caixa', + 'rule_trigger_source_is_cash_choice' => 'A conta de origem é uma conta (caixa)', + 'rule_trigger_source_is_cash' => 'A conta de origem é uma conta (caixa)', + 'rule_trigger_destination_is_cash_choice' => 'A conta de destino é uma conta (caixa)', + 'rule_trigger_destination_is_cash' => 'A conta de destino é uma conta (caixa)', + 'rule_trigger_source_account_nr_starts_choice' => 'Número / IBAN da conta de origem começa com..', + 'rule_trigger_source_account_nr_starts' => 'Número / IBAN da conta de origem começa com ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Número / IBAN da conta de origem acaba com..', + 'rule_trigger_source_account_nr_ends' => 'Número / IBAN da conta de origem acaba com ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Número / IBAN da conta de origem é..', + 'rule_trigger_source_account_nr_is' => 'O número / IBAN da conta de origem é ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'O número / IBAN da conta de origem contém..', + 'rule_trigger_source_account_nr_contains' => 'Número / IBAN da conta de origem contém ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Nome da conta de destino começa com..', + 'rule_trigger_destination_account_starts' => 'O nome da conta de destino começa com ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'O nome da conta de destino acaba com..', + 'rule_trigger_destination_account_ends' => 'O nome da conta de destino acaba com ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'O nome da conta de destino é..', + 'rule_trigger_destination_account_is' => 'O nome da conta de destino é ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'O nome da conta de destino contém..', + 'rule_trigger_destination_account_contains' => 'O nome da conta de destino contém ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'O número / IBAN da conta de destino começa com..', + 'rule_trigger_destination_account_nr_starts' => 'O número / IBAN da conta de destino começa com ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'O número / IBAN da conta de destino acaba com..', + 'rule_trigger_destination_account_nr_ends' => 'O número / IBAN da conta de destino acaba com ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'O número / IBAN da conta de destino é..', + 'rule_trigger_destination_account_nr_is' => 'O número / IBAN da conta de destino é ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'O número / IBAN da conta de destino contém..', + 'rule_trigger_destination_account_nr_contains' => 'O número da conta de destino/IBAN contém ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'A transação é do tipo..', + 'rule_trigger_transaction_type' => 'Transação é do tipo ":trigger_value"', + 'rule_trigger_category_is_choice' => 'A categoria é..', + 'rule_trigger_category_is' => 'A categoria é ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Quantidade é menor ou igual a ..', + 'rule_trigger_amount_less' => 'Quantidade é menor ou igual a :trigger_value', + 'rule_trigger_amount_is_choice' => 'O montante é..', + 'rule_trigger_amount_is' => 'O montante é :trigger_value', + 'rule_trigger_amount_more_choice' => 'Quantidade é maior ou igual a..', + 'rule_trigger_amount_more' => 'Quantidade é maior ou igual a :trigger_value', + 'rule_trigger_description_starts_choice' => 'A descrição começa com..', + 'rule_trigger_description_starts' => 'A descrição começa com ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'A descrição termina com..', + 'rule_trigger_description_ends' => 'A descrição acaba com ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'A descrição contém..', + 'rule_trigger_description_contains' => 'A descrição contém ":trigger_value"', + 'rule_trigger_description_is_choice' => 'A descrição é..', + 'rule_trigger_description_is' => 'A descrição é ":trigger_value"', + 'rule_trigger_date_on_choice' => 'A data da transação é..', + 'rule_trigger_date_on' => 'A data da transação é ":trigger_value"', + 'rule_trigger_date_before_choice' => 'A data da transação é anterior..', + 'rule_trigger_date_before' => 'A data da transação é anterior a ":trigger_value"', + 'rule_trigger_date_after_choice' => 'A data da transação é após..', + 'rule_trigger_date_after' => 'A data da transação é após ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'A transação foi realizada em..', + 'rule_trigger_created_at_on' => 'A transação foi realizada em ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'A transação foi editada pela última vez em..', + 'rule_trigger_updated_at_on' => 'A transação foi editada pela última vez em ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'O orçamento é..', + 'rule_trigger_budget_is' => 'O orçamento é ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Uma etiqueta é..', + 'rule_trigger_tag_is' => 'Qualquer etiqueta é ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'A moeda da transação é..', + 'rule_trigger_currency_is' => 'A moeda da transação é ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'A moeda estrangeira da transação é..', + 'rule_trigger_foreign_currency_is' => 'A moeda estrangeira da transação é ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Tem, pelo menos, esta quantidade de anexos', + 'rule_trigger_has_attachments' => 'Tem pelo menos :trigger_value anexo(s)', + 'rule_trigger_has_no_category_choice' => 'Não tem categoria', + 'rule_trigger_has_no_category' => 'A transação não tem categoria', + 'rule_trigger_has_any_category_choice' => 'Tem (pelo menos) uma categoria', + 'rule_trigger_has_any_category' => 'A transação tem (pelo menos) uma categoria', + 'rule_trigger_has_no_budget_choice' => 'Não tem orçamento', + 'rule_trigger_has_no_budget' => 'A transacção não tem orçamento', + 'rule_trigger_has_any_budget_choice' => 'Tem (pelo menos) um orçamento', + 'rule_trigger_has_any_budget' => 'A transação tem (pelo menos) um orçamento', + 'rule_trigger_has_no_bill_choice' => 'Não tem encargo', + 'rule_trigger_has_no_bill' => 'A transação não tem encargos', + 'rule_trigger_has_any_bill_choice' => 'Tem (pelo menos) um encargo', + 'rule_trigger_has_any_bill' => 'A transação tem (pelo menos) um encargo', + 'rule_trigger_has_no_tag_choice' => 'Não tem etiquetas', + 'rule_trigger_has_no_tag' => 'A transação não tem etiqueta(s)', + 'rule_trigger_has_any_tag_choice' => 'Tem uma ou mais etiquetas (quaisquer)', + 'rule_trigger_has_any_tag' => 'A transação tem uma ou mais etiquetas (quaisquer)', + 'rule_trigger_any_notes_choice' => 'Tem notas (quaisquer)', + 'rule_trigger_any_notes' => 'A transação tem (pelo menos) uma nota', + 'rule_trigger_no_notes_choice' => 'Não tem notas', + 'rule_trigger_no_notes' => 'A transação não tem notas', + 'rule_trigger_notes_is_choice' => 'As notas são..', + 'rule_trigger_notes_is' => 'As notas são ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'As notas contêm..', + 'rule_trigger_notes_contains' => 'As notas contêm ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'As notas comecam com..', + 'rule_trigger_notes_starts' => 'As notas começam com ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'As notas terminam com..', + 'rule_trigger_notes_ends' => 'Notas acabam com ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'O encargo é..', + 'rule_trigger_bill_is' => 'O encargo é ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'O ID Externo é..', + 'rule_trigger_external_id_is' => 'O ID externo é ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'A referência interna é..', + 'rule_trigger_internal_reference_is' => 'A referência interna é ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'O ID do diário de transações é..', + 'rule_trigger_journal_id' => 'O ID do diário de transações é ":trigger_value"', + 'rule_trigger_any_external_url' => 'A transação tem um (qualquer) URL externo', + 'rule_trigger_any_external_url_choice' => 'A transação tem um (qualquer) URL externo', + 'rule_trigger_any_external_id' => 'A transação tem um (qualquer) ID externo', + 'rule_trigger_any_external_id_choice' => 'A transação tem um (qualquer) ID externo', + 'rule_trigger_no_external_url_choice' => 'A transação não tem nenhum URL externo', + 'rule_trigger_no_external_url' => 'A transação não tem nenhum URL externo', + 'rule_trigger_no_external_id_choice' => 'A transação não tem ID externo', + 'rule_trigger_no_external_id' => 'A transação não tem ID externo', + 'rule_trigger_id_choice' => 'ID da transação é..', + 'rule_trigger_id' => 'O ID da transação é ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT é..', + 'rule_trigger_sepa_ct_is' => 'SEPA TC é ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'A ação de utilizador é ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Nenhuma etiqueta é..', - 'rule_trigger_tag_is_not' => 'Nenhuma etiqueta é ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Qualquer uma das contas é exatamente..', - 'rule_trigger_account_is' => 'Qualquer uma das contas é exatamente ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Qualquer uma das contas contém..', - 'rule_trigger_account_contains' => 'Qualquer uma das contas contém ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Qualquer uma das contas termina com..', - 'rule_trigger_account_ends' => 'Qualquer uma das contas termina com ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Qualquer uma das contas começa com..', - 'rule_trigger_account_starts' => 'Qualquer uma das contas começa com ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Qualquer um dos números de conta / IBAN é..', - 'rule_trigger_account_nr_is' => 'Qualquer um dos números de conta / IBAN ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Qualquer um dos números de conta / IBAN contém..', - 'rule_trigger_account_nr_contains' => 'Qualquer um dos números de conta / IBAN contém ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Qualquer um dos números de conta / IBAN termina com..', - 'rule_trigger_account_nr_ends' => 'Qualquer um dos números de conta / IBAN termina com ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Qualquer um dos números de conta / IBAN começa com..', - 'rule_trigger_account_nr_starts' => 'Qualquer um dos números de conta / IBAN começa com ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'A categoria contém..', - 'rule_trigger_category_contains' => 'A categoria contém ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'A categoria termina com..', - 'rule_trigger_category_ends' => 'A categoria termina com ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'A categoria começa com..', - 'rule_trigger_category_starts' => 'A categoria começa com ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'O orçamento contém..', - 'rule_trigger_budget_contains' => 'O orçamento contém ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'O orçamento termina com..', - 'rule_trigger_budget_ends' => 'O orçamento termina com ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'O orçamento começa com..', - 'rule_trigger_budget_starts' => 'O orçamento começa com ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'O encargo contém..', - 'rule_trigger_bill_contains' => 'O encargo contém ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'O encargo termina com..', - 'rule_trigger_bill_ends' => 'O encargo termina com ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'O encargo começa com..', - 'rule_trigger_bill_starts' => 'O encargo começa com ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'O ID externo contém..', - 'rule_trigger_external_id_contains' => 'O ID externo contém ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'O ID externo termina com..', - 'rule_trigger_external_id_ends' => 'O ID externo termina com ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'O ID externo começa com..', - 'rule_trigger_external_id_starts' => 'O ID externo começa com ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'A referência interna contém..', - 'rule_trigger_internal_reference_contains' => 'A referência interna contém ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'A referência interna termina com..', - 'rule_trigger_internal_reference_ends' => 'A referência interna termina com ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'A referência interna começa com..', - 'rule_trigger_internal_reference_starts' => 'A referência interna começa com ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'O URL externo é..', - 'rule_trigger_external_url_is' => 'O URL externo é ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'O URL externo contém..', - 'rule_trigger_external_url_contains' => 'O URL externo contém ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'O URL externo termina com..', - 'rule_trigger_external_url_ends' => 'O URL externo termina com ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'O URL externo começa com..', - 'rule_trigger_external_url_starts' => 'O URL externo começa com ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Não tem anexos', - 'rule_trigger_has_no_attachments' => 'A transação não tem anexos', - 'rule_trigger_recurrence_id_choice' => 'O ID de transação recorrente é..', - 'rule_trigger_recurrence_id' => 'O ID de transação recorrente é ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'A data de juros é..', - 'rule_trigger_interest_date_on' => 'A data de juros é ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'A data de juros é antes de..', - 'rule_trigger_interest_date_before' => 'A data de juros é antes de ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'A data de juros é após..', - 'rule_trigger_interest_date_after' => 'A data de juros é após ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'A data de agendamento é..', - 'rule_trigger_book_date_on' => 'A data de agendamento é ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'A data de agendamento é anterior a..', - 'rule_trigger_book_date_before' => 'A data de agendamento é anterior a ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'A data de agendamento é posterior a..', - 'rule_trigger_book_date_after' => 'A data de agendamento é posterior a ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'A data de processamento é..', - 'rule_trigger_process_date_on' => 'A data de processamento é ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'A data de processamento é anterior a..', - 'rule_trigger_process_date_before' => 'A data de processamento é anterior a ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'A data de processamento é posterior a..', - 'rule_trigger_process_date_after' => 'A data de processamento é posterior a ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'A data de vencimento é..', - 'rule_trigger_due_date_on' => 'A data de vencimento é ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'A data de vencimento é anterior a..', - 'rule_trigger_due_date_before' => 'A data de vencimento é anterior a ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'A data de vencimento é posterior a..', - 'rule_trigger_due_date_after' => 'A data de vencimento é posterior a ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'A data de pagamento é..', - 'rule_trigger_payment_date_on' => 'A data de pagamento é ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'A data de pagamento é antes de..', - 'rule_trigger_payment_date_before' => 'A data de pagamento é antes de ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'A data de pagamento é posterior a..', - 'rule_trigger_payment_date_after' => 'A data de pagamento é posterior a ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'A data da fatura é..', - 'rule_trigger_invoice_date_on' => 'A data da fatura é ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'A data da fatura é anterior a..', - 'rule_trigger_invoice_date_before' => 'A data da fatura é anterior a ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'A data da fatura é posterior a..', - 'rule_trigger_invoice_date_after' => 'A data da fatura é posterior a ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'A transação foi criada antes de..', - 'rule_trigger_created_at_before' => 'A transação foi criada antes de ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'A transação foi criada depois de..', - 'rule_trigger_created_at_after' => 'A transação foi criada depois de ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'A última atualização da transação foi em..', - 'rule_trigger_updated_at_before' => 'A última atualização da transação foi em ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'A última atualização da transação foi depois de..', - 'rule_trigger_updated_at_after' => 'A última atualização da transação foi depois de ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'O montante em moeda estrangeira é exatamente..', - 'rule_trigger_foreign_amount_is' => 'O montante em moeda estrangeira é exatamente ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'O montante em moeda estrangeira é inferior a..', - 'rule_trigger_foreign_amount_less' => 'O montante em moeda estrangeira é inferior a ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'O montante em moeda estrangeira é superior a..', - 'rule_trigger_foreign_amount_more' => 'O montante em moeda estrangeira é superior a ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'O nome de qualquer anexo é..', - 'rule_trigger_attachment_name_is' => 'O nome de qualquer anexo é ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'O nome de qualquer anexo contém..', - 'rule_trigger_attachment_name_contains' => 'O nome de qualquer anexo contém ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'O nome de qualquer anexo começa com..', - 'rule_trigger_attachment_name_starts' => 'O nome de qualquer anexo começa com ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'O nome de qualquer anexo termina com..', - 'rule_trigger_attachment_name_ends' => 'O nome de qualquer anexo termina com ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Quaisquer notas de anexo são..', - 'rule_trigger_attachment_notes_are' => 'Quaisquer notas de anexo são ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Quaisquer notas de anexo contêm..', - 'rule_trigger_attachment_notes_contains' => 'Quaisquer notas de anexo contêm ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Quaisquer notas de anexo começam com..', - 'rule_trigger_attachment_notes_starts' => 'Quaisquer notas de anexo começam com ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Quaisquer notas de anexo terminam com..', - 'rule_trigger_attachment_notes_ends' => 'Quaisquer notas de anexo terminam com ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'A transação está reconciliada', - 'rule_trigger_reconciled' => 'A transação está reconciliada', - 'rule_trigger_exists_choice' => 'Qualquer transação corresponde(!)', - 'rule_trigger_exists' => 'Qualquer transação corresponde', + 'rule_trigger_user_action_choice' => 'A ação de utilizador é ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Nenhuma etiqueta é..', + 'rule_trigger_tag_is_not' => 'Nenhuma etiqueta é ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Qualquer uma das contas é exatamente..', + 'rule_trigger_account_is' => 'Qualquer uma das contas é exatamente ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Qualquer uma das contas contém..', + 'rule_trigger_account_contains' => 'Qualquer uma das contas contém ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Qualquer uma das contas termina com..', + 'rule_trigger_account_ends' => 'Qualquer uma das contas termina com ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Qualquer uma das contas começa com..', + 'rule_trigger_account_starts' => 'Qualquer uma das contas começa com ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Qualquer um dos números de conta / IBAN é..', + 'rule_trigger_account_nr_is' => 'Qualquer um dos números de conta / IBAN ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Qualquer um dos números de conta / IBAN contém..', + 'rule_trigger_account_nr_contains' => 'Qualquer um dos números de conta / IBAN contém ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Qualquer um dos números de conta / IBAN termina com..', + 'rule_trigger_account_nr_ends' => 'Qualquer um dos números de conta / IBAN termina com ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Qualquer um dos números de conta / IBAN começa com..', + 'rule_trigger_account_nr_starts' => 'Qualquer um dos números de conta / IBAN começa com ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'A categoria contém..', + 'rule_trigger_category_contains' => 'A categoria contém ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'A categoria termina com..', + 'rule_trigger_category_ends' => 'A categoria termina com ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'A categoria começa com..', + 'rule_trigger_category_starts' => 'A categoria começa com ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'O orçamento contém..', + 'rule_trigger_budget_contains' => 'O orçamento contém ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'O orçamento termina com..', + 'rule_trigger_budget_ends' => 'O orçamento termina com ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'O orçamento começa com..', + 'rule_trigger_budget_starts' => 'O orçamento começa com ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'O encargo contém..', + 'rule_trigger_bill_contains' => 'O encargo contém ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'O encargo termina com..', + 'rule_trigger_bill_ends' => 'O encargo termina com ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'O encargo começa com..', + 'rule_trigger_bill_starts' => 'O encargo começa com ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'O ID externo contém..', + 'rule_trigger_external_id_contains' => 'O ID externo contém ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'O ID externo termina com..', + 'rule_trigger_external_id_ends' => 'O ID externo termina com ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'O ID externo começa com..', + 'rule_trigger_external_id_starts' => 'O ID externo começa com ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'A referência interna contém..', + 'rule_trigger_internal_reference_contains' => 'A referência interna contém ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'A referência interna termina com..', + 'rule_trigger_internal_reference_ends' => 'A referência interna termina com ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'A referência interna começa com..', + 'rule_trigger_internal_reference_starts' => 'A referência interna começa com ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'O URL externo é..', + 'rule_trigger_external_url_is' => 'O URL externo é ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'O URL externo contém..', + 'rule_trigger_external_url_contains' => 'O URL externo contém ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'O URL externo termina com..', + 'rule_trigger_external_url_ends' => 'O URL externo termina com ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'O URL externo começa com..', + 'rule_trigger_external_url_starts' => 'O URL externo começa com ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Não tem anexos', + 'rule_trigger_has_no_attachments' => 'A transação não tem anexos', + 'rule_trigger_recurrence_id_choice' => 'O ID de transação recorrente é..', + 'rule_trigger_recurrence_id' => 'O ID de transação recorrente é ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'A data de juros é..', + 'rule_trigger_interest_date_on' => 'A data de juros é ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'A data de juros é antes de..', + 'rule_trigger_interest_date_before' => 'A data de juros é antes de ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'A data de juros é após..', + 'rule_trigger_interest_date_after' => 'A data de juros é após ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'A data de agendamento é..', + 'rule_trigger_book_date_on' => 'A data de agendamento é ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'A data de agendamento é anterior a..', + 'rule_trigger_book_date_before' => 'A data de agendamento é anterior a ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'A data de agendamento é posterior a..', + 'rule_trigger_book_date_after' => 'A data de agendamento é posterior a ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'A data de processamento é..', + 'rule_trigger_process_date_on' => 'A data de processamento é ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'A data de processamento é anterior a..', + 'rule_trigger_process_date_before' => 'A data de processamento é anterior a ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'A data de processamento é posterior a..', + 'rule_trigger_process_date_after' => 'A data de processamento é posterior a ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'A data de vencimento é..', + 'rule_trigger_due_date_on' => 'A data de vencimento é ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'A data de vencimento é anterior a..', + 'rule_trigger_due_date_before' => 'A data de vencimento é anterior a ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'A data de vencimento é posterior a..', + 'rule_trigger_due_date_after' => 'A data de vencimento é posterior a ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'A data de pagamento é..', + 'rule_trigger_payment_date_on' => 'A data de pagamento é ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'A data de pagamento é antes de..', + 'rule_trigger_payment_date_before' => 'A data de pagamento é antes de ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'A data de pagamento é posterior a..', + 'rule_trigger_payment_date_after' => 'A data de pagamento é posterior a ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'A data da fatura é..', + 'rule_trigger_invoice_date_on' => 'A data da fatura é ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'A data da fatura é anterior a..', + 'rule_trigger_invoice_date_before' => 'A data da fatura é anterior a ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'A data da fatura é posterior a..', + 'rule_trigger_invoice_date_after' => 'A data da fatura é posterior a ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'A transação foi criada antes de..', + 'rule_trigger_created_at_before' => 'A transação foi criada antes de ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'A transação foi criada depois de..', + 'rule_trigger_created_at_after' => 'A transação foi criada depois de ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'A última atualização da transação foi em..', + 'rule_trigger_updated_at_before' => 'A última atualização da transação foi em ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'A última atualização da transação foi depois de..', + 'rule_trigger_updated_at_after' => 'A última atualização da transação foi depois de ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'O montante em moeda estrangeira é exatamente..', + 'rule_trigger_foreign_amount_is' => 'O montante em moeda estrangeira é exatamente ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'O montante em moeda estrangeira é inferior a..', + 'rule_trigger_foreign_amount_less' => 'O montante em moeda estrangeira é inferior a ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'O montante em moeda estrangeira é superior a..', + 'rule_trigger_foreign_amount_more' => 'O montante em moeda estrangeira é superior a ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'O nome de qualquer anexo é..', + 'rule_trigger_attachment_name_is' => 'O nome de qualquer anexo é ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'O nome de qualquer anexo contém..', + 'rule_trigger_attachment_name_contains' => 'O nome de qualquer anexo contém ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'O nome de qualquer anexo começa com..', + 'rule_trigger_attachment_name_starts' => 'O nome de qualquer anexo começa com ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'O nome de qualquer anexo termina com..', + 'rule_trigger_attachment_name_ends' => 'O nome de qualquer anexo termina com ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Quaisquer notas de anexo são..', + 'rule_trigger_attachment_notes_are' => 'Quaisquer notas de anexo são ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Quaisquer notas de anexo contêm..', + 'rule_trigger_attachment_notes_contains' => 'Quaisquer notas de anexo contêm ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Quaisquer notas de anexo começam com..', + 'rule_trigger_attachment_notes_starts' => 'Quaisquer notas de anexo começam com ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Quaisquer notas de anexo terminam com..', + 'rule_trigger_attachment_notes_ends' => 'Quaisquer notas de anexo terminam com ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'A transação está reconciliada', + 'rule_trigger_reconciled' => 'A transação está reconciliada', + 'rule_trigger_exists_choice' => 'Qualquer transação corresponde(!)', + 'rule_trigger_exists' => 'Qualquer transação corresponde', // more values for new types: - 'rule_trigger_not_account_id' => 'O ID da conta não é ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'O ID da conta de origem não é ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'O ID da conta de destino não é ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'O tipo de transação não é ":trigger_value"', - 'rule_trigger_not_tag_is' => 'A etiqueta não é ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'A etiqueta é ":trigger_value"', - 'rule_trigger_not_description_is' => 'A descrição não é ":trigger_value"', - 'rule_trigger_not_description_contains' => 'A descrição não contém', - 'rule_trigger_not_description_ends' => 'A descrição não termina com ":trigger_value"', - 'rule_trigger_not_description_starts' => 'A descrição não começa com ":trigger_value"', - 'rule_trigger_not_notes_is' => 'As notas não são ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'As notas não contêm ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'As notas não terminam em ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'As notas não começam com ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'A conta de origem não é ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'A conta de origem não contém ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'A conta de origem não termina em ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'A conta de origem não começa com ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'O número / IBAN da conta de origem não é ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'O número / IBAN da conta de origem não contém ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'O número / IBAN da conta de origem não termina em ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'O número / IBAN da conta de origem não começa com ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'A conta de destino não é ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'A conta de destino não contém ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'A conta de destino não termina em ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'A conta de destino não começa com ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'O número / IBAN da conta de destino não é ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'O número / IBAN da conta de destino não contém ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'O número / IBAN da conta de destino não termina em ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'O número / IBAN da conta de destino não começa com ":trigger_value"', - 'rule_trigger_not_account_is' => 'Nenhuma das contas é ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Nenhuma das contas contém ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Nenhuma das contas termina em ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Nenhuma das contas começa com ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Nenhum dos números de conta / IBAN é ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Nenhum dos números de conta / IBAN contém ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Nenhum dos números de conta / IBAN termina em ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Nenhum dos números de conta / IBAN começa com ":trigger_value"', - 'rule_trigger_not_category_is' => 'A categoria não é ":trigger_value"', - 'rule_trigger_not_category_contains' => 'A categoria não contém ":trigger_value"', - 'rule_trigger_not_category_ends' => 'A categoria não termina em ":trigger_value"', - 'rule_trigger_not_category_starts' => 'A categoria não começa com ":trigger_value"', - 'rule_trigger_not_budget_is' => 'O orçamento não é ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'O orçamento não contém ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'O orçamento não termina em ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'O orçamento não começa com ":trigger_value"', - 'rule_trigger_not_bill_is' => 'O encargo não é ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'O encargo não contém ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'O encargo não termina em ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'O encargo não termina com ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'O ID externo não é ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'O ID externo não contém ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'O ID externo não termina em ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'O ID externo não começa com ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'A referência interna não é ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'A referência interna não contém ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'A referência interna não termina em ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'A referência interna não começa com ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'O URL externo não é ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'O URL externo não contém ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'O URL externo não termina em ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'O URL externo não começa com ":trigger_value"', - 'rule_trigger_not_currency_is' => 'A moeda não é ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'A moeda estrangeira não é ":trigger_value"', - 'rule_trigger_not_id' => 'O ID da transação não é ":trigger_value"', - 'rule_trigger_not_journal_id' => 'O ID do diário de transações não é ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'O ID da recorrência não é ":trigger_value"', - 'rule_trigger_not_date_on' => 'A data não é ":trigger_value"', - 'rule_trigger_not_date_before' => 'A data é anterior a ":trigger_value"', - 'rule_trigger_not_date_after' => 'A data não é posterior a ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'A data de juros não é ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'A data de juros não é anterior a ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'A data de juros não é posterior a ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'A data de registo não é ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'A data de registo não é anterior a ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'A data de registo não é posterior a ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'A data de processamento não é ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'A data de processamento não é anterior a ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'A data de processamento não é posterior a ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'A data de vencimento não é ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'A data de vencimento não é anterior a ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'A data de vencimento não é posterior a ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'A data de pagamento não é ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'A data de pagamento não é anterior a ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'A data de pagamento não é posterior a ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'A data da fatura não é ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'A data da fatura não é anterior a ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'A data da fatura não é posterior a ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'A transação não foi criada em ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'A transação não foi criada antes de ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'A transação não foi criada depois de ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'A transação não foi alterada em ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'A transação não foi alterada antes de ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'A transação não foi alterada depois de ":trigger_value"', - 'rule_trigger_not_amount_is' => 'O montante da transação não é ":trigger_value"', - 'rule_trigger_not_amount_less' => 'O montante da transação é superior a ":trigger_value"', - 'rule_trigger_not_amount_more' => 'O montante da transação é inferior a ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'O montante em moeda estrangeira da transação não é ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'O montante em moeda estrangeira da transação é superior a ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'O montante em moeda estrangeira da transação é inferior a ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Nenhum anexo tem o nome: ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Nenhum anexo tem um nome contendo ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Nenhum anexo tem um nome começado por ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Nenhum anexo tem um nome terminado em ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Nenhuma nota de anexo é ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Nenhuma nota de anexo contém ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Nenhuma nota de anexo começa com ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Nenhuma nota de anexo termina em ":trigger_value"', - 'rule_trigger_not_reconciled' => 'A transação não está reconciliada', - 'rule_trigger_not_exists' => 'A transação não existe', - 'rule_trigger_not_has_attachments' => 'A transação não tem anexos', - 'rule_trigger_not_has_any_category' => 'A transação não tem categoria', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'A transação não tem encargos', - 'rule_trigger_not_has_any_tag' => 'A transação não tem etiquetas', - 'rule_trigger_not_any_notes' => 'A transação não tem notas', - 'rule_trigger_not_any_external_url' => 'A transação não tem URL externo', - 'rule_trigger_not_has_no_attachments' => 'A transação tem (pelo menos) um anexo', - 'rule_trigger_not_has_no_category' => 'A transação tem (pelo menos) uma categoria', - 'rule_trigger_not_has_no_budget' => 'A transação tem (pelo menos) um orçamento', - 'rule_trigger_not_has_no_bill' => 'A transação tem (pelo menos) um encargo', - 'rule_trigger_not_has_no_tag' => 'A transação tem (pelo menos) uma etiqueta', - 'rule_trigger_not_no_notes' => 'A transação tem pelo menos uma nota', - 'rule_trigger_not_no_external_url' => 'A transação tem um URL externo', - 'rule_trigger_not_source_is_cash' => 'A conta de origem não é uma conta de caixa', - 'rule_trigger_not_destination_is_cash' => 'A conta de destino não é uma conta de caixa', - 'rule_trigger_not_account_is_cash' => 'Nenhuma das contas é uma conta de caixa', + 'rule_trigger_not_account_id' => 'O ID da conta não é ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'O ID da conta de origem não é ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'O ID da conta de destino não é ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'O tipo de transação não é ":trigger_value"', + 'rule_trigger_not_tag_is' => 'A etiqueta não é ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'A etiqueta é ":trigger_value"', + 'rule_trigger_not_description_is' => 'A descrição não é ":trigger_value"', + 'rule_trigger_not_description_contains' => 'A descrição não contém', + 'rule_trigger_not_description_ends' => 'A descrição não termina com ":trigger_value"', + 'rule_trigger_not_description_starts' => 'A descrição não começa com ":trigger_value"', + 'rule_trigger_not_notes_is' => 'As notas não são ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'As notas não contêm ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'As notas não terminam em ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'As notas não começam com ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'A conta de origem não é ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'A conta de origem não contém ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'A conta de origem não termina em ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'A conta de origem não começa com ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'O número / IBAN da conta de origem não é ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'O número / IBAN da conta de origem não contém ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'O número / IBAN da conta de origem não termina em ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'O número / IBAN da conta de origem não começa com ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'A conta de destino não é ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'A conta de destino não contém ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'A conta de destino não termina em ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'A conta de destino não começa com ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'O número / IBAN da conta de destino não é ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'O número / IBAN da conta de destino não contém ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'O número / IBAN da conta de destino não termina em ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'O número / IBAN da conta de destino não começa com ":trigger_value"', + 'rule_trigger_not_account_is' => 'Nenhuma das contas é ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Nenhuma das contas contém ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Nenhuma das contas termina em ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Nenhuma das contas começa com ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Nenhum dos números de conta / IBAN é ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Nenhum dos números de conta / IBAN contém ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Nenhum dos números de conta / IBAN termina em ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Nenhum dos números de conta / IBAN começa com ":trigger_value"', + 'rule_trigger_not_category_is' => 'A categoria não é ":trigger_value"', + 'rule_trigger_not_category_contains' => 'A categoria não contém ":trigger_value"', + 'rule_trigger_not_category_ends' => 'A categoria não termina em ":trigger_value"', + 'rule_trigger_not_category_starts' => 'A categoria não começa com ":trigger_value"', + 'rule_trigger_not_budget_is' => 'O orçamento não é ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'O orçamento não contém ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'O orçamento não termina em ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'O orçamento não começa com ":trigger_value"', + 'rule_trigger_not_bill_is' => 'O encargo não é ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'O encargo não contém ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'O encargo não termina em ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'O encargo não termina com ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'O ID externo não é ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'O ID externo não contém ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'O ID externo não termina em ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'O ID externo não começa com ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'A referência interna não é ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'A referência interna não contém ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'A referência interna não termina em ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'A referência interna não começa com ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'O URL externo não é ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'O URL externo não contém ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'O URL externo não termina em ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'O URL externo não começa com ":trigger_value"', + 'rule_trigger_not_currency_is' => 'A moeda não é ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'A moeda estrangeira não é ":trigger_value"', + 'rule_trigger_not_id' => 'O ID da transação não é ":trigger_value"', + 'rule_trigger_not_journal_id' => 'O ID do diário de transações não é ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'O ID da recorrência não é ":trigger_value"', + 'rule_trigger_not_date_on' => 'A data não é ":trigger_value"', + 'rule_trigger_not_date_before' => 'A data é anterior a ":trigger_value"', + 'rule_trigger_not_date_after' => 'A data não é posterior a ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'A data de juros não é ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'A data de juros não é anterior a ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'A data de juros não é posterior a ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'A data de registo não é ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'A data de registo não é anterior a ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'A data de registo não é posterior a ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'A data de processamento não é ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'A data de processamento não é anterior a ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'A data de processamento não é posterior a ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'A data de vencimento não é ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'A data de vencimento não é anterior a ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'A data de vencimento não é posterior a ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'A data de pagamento não é ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'A data de pagamento não é anterior a ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'A data de pagamento não é posterior a ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'A data da fatura não é ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'A data da fatura não é anterior a ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'A data da fatura não é posterior a ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'A transação não foi criada em ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'A transação não foi criada antes de ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'A transação não foi criada depois de ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'A transação não foi alterada em ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'A transação não foi alterada antes de ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'A transação não foi alterada depois de ":trigger_value"', + 'rule_trigger_not_amount_is' => 'O montante da transação não é ":trigger_value"', + 'rule_trigger_not_amount_less' => 'O montante da transação é superior a ":trigger_value"', + 'rule_trigger_not_amount_more' => 'O montante da transação é inferior a ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'O montante em moeda estrangeira da transação não é ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'O montante em moeda estrangeira da transação é superior a ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'O montante em moeda estrangeira da transação é inferior a ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Nenhum anexo tem o nome: ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Nenhum anexo tem um nome contendo ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Nenhum anexo tem um nome começado por ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Nenhum anexo tem um nome terminado em ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Nenhuma nota de anexo é ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Nenhuma nota de anexo contém ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Nenhuma nota de anexo começa com ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Nenhuma nota de anexo termina em ":trigger_value"', + 'rule_trigger_not_reconciled' => 'A transação não está reconciliada', + 'rule_trigger_not_exists' => 'A transação não existe', + 'rule_trigger_not_has_attachments' => 'A transação não tem anexos', + 'rule_trigger_not_has_any_category' => 'A transação não tem categoria', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'A transação não tem encargos', + 'rule_trigger_not_has_any_tag' => 'A transação não tem etiquetas', + 'rule_trigger_not_any_notes' => 'A transação não tem notas', + 'rule_trigger_not_any_external_url' => 'A transação não tem URL externo', + 'rule_trigger_not_has_no_attachments' => 'A transação tem (pelo menos) um anexo', + 'rule_trigger_not_has_no_category' => 'A transação tem (pelo menos) uma categoria', + 'rule_trigger_not_has_no_budget' => 'A transação tem (pelo menos) um orçamento', + 'rule_trigger_not_has_no_bill' => 'A transação tem (pelo menos) um encargo', + 'rule_trigger_not_has_no_tag' => 'A transação tem (pelo menos) uma etiqueta', + 'rule_trigger_not_no_notes' => 'A transação tem pelo menos uma nota', + 'rule_trigger_not_no_external_url' => 'A transação tem um URL externo', + 'rule_trigger_not_source_is_cash' => 'A conta de origem não é uma conta de caixa', + 'rule_trigger_not_destination_is_cash' => 'A conta de destino não é uma conta de caixa', + 'rule_trigger_not_account_is_cash' => 'Nenhuma das contas é uma conta de caixa', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'APAGAR transação(!)', - 'rule_action_delete_transaction' => 'APAGAR transação(!)', - 'rule_action_set_category' => 'Definir categoria para ":action_value"', - 'rule_action_clear_category' => 'Limpar categoria', - 'rule_action_set_budget' => 'Definir o orçamento para ":action_value"', - 'rule_action_clear_budget' => 'Limpar orçamento', - 'rule_action_add_tag' => 'Adicionar etiqueta ":action_value"', - 'rule_action_remove_tag' => 'Remover etiqueta ":action_value"', - 'rule_action_remove_all_tags' => 'Remover todas as etiquetas', - 'rule_action_set_description' => 'Definir descrição para ":action_value"', - 'rule_action_append_description' => 'Acrescentar à descrição com ":action_value"', - 'rule_action_prepend_description' => 'Preceder a descrição com ":action_value"', - 'rule_action_set_category_choice' => 'Atribuir a categoria..', - 'rule_action_clear_category_choice' => 'Limpar qualquer categoria', - 'rule_action_set_budget_choice' => 'Atribuir o orçamento..', - 'rule_action_clear_budget_choice' => 'Limpar qualquer orçamento', - 'rule_action_add_tag_choice' => 'Adicionar etiqueta..', - 'rule_action_remove_tag_choice' => 'Remover etiqueta..', - 'rule_action_remove_all_tags_choice' => 'Remover todas as etiquetas', - 'rule_action_set_description_choice' => 'Atribuir a descrição..', - 'rule_action_update_piggy_choice' => 'Adicionar / remover montante da transação ao mealheiro..', - 'rule_action_update_piggy' => 'Adicionar / remover montante da transação no mealheiro ":action_value"', - 'rule_action_append_description_choice' => 'Acrescentar ao final da descrição..', - 'rule_action_prepend_description_choice' => 'Acrescentar ao início da descrição..', - 'rule_action_set_source_account_choice' => 'Atribuir a conta de origem..', - 'rule_action_set_source_account' => 'Definir conta de origem para :action_value', - 'rule_action_set_destination_account_choice' => 'Atribuir a conta de destino..', - 'rule_action_set_destination_account' => 'Definir a conta de destino para :action_value', - 'rule_action_append_notes_choice' => 'Acrescentar ao final das notas..', - 'rule_action_append_notes' => 'Anexar notas com ":action_value"', - 'rule_action_prepend_notes_choice' => 'Preceder notas com..', - 'rule_action_prepend_notes' => 'Preceder notas com ":action_value"', - 'rule_action_clear_notes_choice' => 'Remover todas as notas', - 'rule_action_clear_notes' => 'Remover todas as notas', - 'rule_action_set_notes_choice' => 'Atribuir as notas..', - 'rule_action_link_to_bill_choice' => 'Ligar a encargo..', - 'rule_action_link_to_bill' => 'Ligar a um encargo ":action_value"', - 'rule_action_switch_accounts_choice' => 'Trocar a conta de origem e de destino (apenas para transferências!)', - 'rule_action_switch_accounts' => 'Trocar origem e destino', - 'rule_action_set_notes' => 'Defina notas para ":action_value"', - 'rule_action_convert_deposit_choice' => 'Converter a transação num depósito', - 'rule_action_convert_deposit' => 'Converter a transação para um depósito a partir de ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Converter a transação num levantamento', - 'rule_action_convert_withdrawal' => 'Converter a transação num levantamento de ":action_value"', - 'rule_action_convert_transfer_choice' => 'Converter a transação numa transferência', - 'rule_action_convert_transfer' => 'Converter a transação para uma transferência com ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Acrescentar a descrição às notas da transação', - 'rule_action_append_notes_to_descr_choice' => 'Acrescentar as notas da transação à descrição', - 'rule_action_move_descr_to_notes_choice' => 'Substituir as atuais notas da transação pela descrição', - 'rule_action_move_notes_to_descr_choice' => 'Substituir a atual descrição pelas notas da transação', - 'rule_action_append_descr_to_notes' => 'Acrescentar descrição às notas', - 'rule_action_append_notes_to_descr' => 'Acrescentar notas à descrição', - 'rule_action_move_descr_to_notes' => 'Substituir notas por descrição', - 'rule_action_move_notes_to_descr' => 'Substituir descrição por notas', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Definir a conta de destino para (cash)', - 'rule_action_set_source_to_cash_choice' => 'Definir a conta de origem para (cash)', - 'rulegroup_for_bills_title' => 'Grupo de regras para encargos', - 'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem encargos.', - 'rule_for_bill_title' => 'Regra gerada automaticamente para o encargo ":name"', - 'rule_for_bill_description' => 'Esta regra é gerada automaticamente para tentar corresponder ao encargo ":name".', - 'create_rule_for_bill' => 'Criar uma regra para o encargo ":name"', - 'create_rule_for_bill_txt' => 'Acabou de criar um encargo de nome ":name", parabéns! O Firefly III pode, automagicamente, fazer corresponder novos levantamentos a este encargo. Por exemplo, sempre que pagar a sua renda, o encargo "renda" será ligado a essa despesa. Desta forma, o Firefly III pode, de forma precisa, mostrar-lhe que encargos estão vencidos e quais não estão. Para poder fazê-lo, deve criar uma regra. O Firefly III preencheu por si alguns campos com informação predefinida. Por favor, certifique-se que estão certos. Se os valores estiverem corretos, o Firefly III irá, automaticamente, ligar o levantamento certo ao encargo certo. Por favor, verifique a exatidão dos gatilhos e ajuste o que for necessário se estiverem errados.', - 'new_rule_for_bill_title' => 'Regra para o encargo ":name"', - 'new_rule_for_bill_description' => 'Esta regra marca as transações para o encargo ":name".', + 'rule_action_delete_transaction_choice' => 'APAGAR transação(!)', + 'rule_action_delete_transaction' => 'APAGAR transação(!)', + 'rule_action_set_category' => 'Definir categoria para ":action_value"', + 'rule_action_clear_category' => 'Limpar categoria', + 'rule_action_set_budget' => 'Definir o orçamento para ":action_value"', + 'rule_action_clear_budget' => 'Limpar orçamento', + 'rule_action_add_tag' => 'Adicionar etiqueta ":action_value"', + 'rule_action_remove_tag' => 'Remover etiqueta ":action_value"', + 'rule_action_remove_all_tags' => 'Remover todas as etiquetas', + 'rule_action_set_description' => 'Definir descrição para ":action_value"', + 'rule_action_append_description' => 'Acrescentar à descrição com ":action_value"', + 'rule_action_prepend_description' => 'Preceder a descrição com ":action_value"', + 'rule_action_set_category_choice' => 'Atribuir a categoria..', + 'rule_action_clear_category_choice' => 'Limpar qualquer categoria', + 'rule_action_set_budget_choice' => 'Atribuir o orçamento..', + 'rule_action_clear_budget_choice' => 'Limpar qualquer orçamento', + 'rule_action_add_tag_choice' => 'Adicionar etiqueta..', + 'rule_action_remove_tag_choice' => 'Remover etiqueta..', + 'rule_action_remove_all_tags_choice' => 'Remover todas as etiquetas', + 'rule_action_set_description_choice' => 'Atribuir a descrição..', + 'rule_action_update_piggy_choice' => 'Adicionar / remover montante da transação ao mealheiro..', + 'rule_action_update_piggy' => 'Adicionar / remover montante da transação no mealheiro ":action_value"', + 'rule_action_append_description_choice' => 'Acrescentar ao final da descrição..', + 'rule_action_prepend_description_choice' => 'Acrescentar ao início da descrição..', + 'rule_action_set_source_account_choice' => 'Atribuir a conta de origem..', + 'rule_action_set_source_account' => 'Definir conta de origem para :action_value', + 'rule_action_set_destination_account_choice' => 'Atribuir a conta de destino..', + 'rule_action_set_destination_account' => 'Definir a conta de destino para :action_value', + 'rule_action_append_notes_choice' => 'Acrescentar ao final das notas..', + 'rule_action_append_notes' => 'Anexar notas com ":action_value"', + 'rule_action_prepend_notes_choice' => 'Preceder notas com..', + 'rule_action_prepend_notes' => 'Preceder notas com ":action_value"', + 'rule_action_clear_notes_choice' => 'Remover todas as notas', + 'rule_action_clear_notes' => 'Remover todas as notas', + 'rule_action_set_notes_choice' => 'Atribuir as notas..', + 'rule_action_link_to_bill_choice' => 'Ligar a encargo..', + 'rule_action_link_to_bill' => 'Ligar a um encargo ":action_value"', + 'rule_action_switch_accounts_choice' => 'Trocar a conta de origem e de destino (apenas para transferências!)', + 'rule_action_switch_accounts' => 'Trocar origem e destino', + 'rule_action_set_notes' => 'Defina notas para ":action_value"', + 'rule_action_convert_deposit_choice' => 'Converter a transação num depósito', + 'rule_action_convert_deposit' => 'Converter a transação para um depósito a partir de ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Converter a transação num levantamento', + 'rule_action_convert_withdrawal' => 'Converter a transação num levantamento de ":action_value"', + 'rule_action_convert_transfer_choice' => 'Converter a transação numa transferência', + 'rule_action_convert_transfer' => 'Converter a transação para uma transferência com ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Acrescentar a descrição às notas da transação', + 'rule_action_append_notes_to_descr_choice' => 'Acrescentar as notas da transação à descrição', + 'rule_action_move_descr_to_notes_choice' => 'Substituir as atuais notas da transação pela descrição', + 'rule_action_move_notes_to_descr_choice' => 'Substituir a atual descrição pelas notas da transação', + 'rule_action_append_descr_to_notes' => 'Acrescentar descrição às notas', + 'rule_action_append_notes_to_descr' => 'Acrescentar notas à descrição', + 'rule_action_move_descr_to_notes' => 'Substituir notas por descrição', + 'rule_action_move_notes_to_descr' => 'Substituir descrição por notas', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Definir a conta de destino para (cash)', + 'rule_action_set_source_to_cash_choice' => 'Definir a conta de origem para (cash)', + 'rulegroup_for_bills_title' => 'Grupo de regras para encargos', + 'rulegroup_for_bills_description' => 'Um grupo especial de regras para todas as regras que envolvem encargos.', + 'rule_for_bill_title' => 'Regra gerada automaticamente para o encargo ":name"', + 'rule_for_bill_description' => 'Esta regra é gerada automaticamente para tentar corresponder ao encargo ":name".', + 'create_rule_for_bill' => 'Criar uma regra para o encargo ":name"', + 'create_rule_for_bill_txt' => 'Acabou de criar um encargo de nome ":name", parabéns! O Firefly III pode, automagicamente, fazer corresponder novos levantamentos a este encargo. Por exemplo, sempre que pagar a sua renda, o encargo "renda" será ligado a essa despesa. Desta forma, o Firefly III pode, de forma precisa, mostrar-lhe que encargos estão vencidos e quais não estão. Para poder fazê-lo, deve criar uma regra. O Firefly III preencheu por si alguns campos com informação predefinida. Por favor, certifique-se que estão certos. Se os valores estiverem corretos, o Firefly III irá, automaticamente, ligar o levantamento certo ao encargo certo. Por favor, verifique a exatidão dos gatilhos e ajuste o que for necessário se estiverem errados.', + 'new_rule_for_bill_title' => 'Regra para o encargo ":name"', + 'new_rule_for_bill_description' => 'Esta regra marca as transações para o encargo ":name".', - 'new_rule_for_journal_title' => 'Regra baseada na transação ":description"', - 'new_rule_for_journal_description' => 'A regra é baseada na transação ":description". Ou seja, a regra vai ser aplicada a todas as transações iguais.', + 'new_rule_for_journal_title' => 'Regra baseada na transação ":description"', + 'new_rule_for_journal_description' => 'A regra é baseada na transação ":description". Ou seja, a regra vai ser aplicada a todas as transações iguais.', // tags - 'store_new_tag' => 'Gravar nova etiqueta', - 'update_tag' => 'Atualizar etiqueta', - 'no_location_set' => 'Sem localização definida.', - 'meta_data' => 'Meta dados', - 'location' => 'Localização', - 'location_first_split' => 'O local desta transação pode ser definido na primeira divisão desta transação.', - 'without_date' => 'Sem data', - 'result' => 'Resultado', - 'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado', - 'mapbox_api_key' => 'Para usar o mapa, arranje uma chave de API do Mapbox. Abra o seu ficheiro .env e adicione essa chave a seguir a MAPBOX_API_KEY=.', - 'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir o local do objeto.', - 'click_tap_location' => 'Carregue ou clique no mapa para adicionar uma localização', - 'clear_location' => 'Limpar localização', - 'delete_all_selected_tags' => 'Excluir todas as etiquetas selecionadas', - 'select_tags_to_delete' => 'Não se esqueça de selecionar algumas etiquetas.', - 'deleted_x_tags' => 'Apagada :count etiqueta.|Apagadas :count etiquetas.', - 'create_rule_from_transaction' => 'Criar regra com base na transação', - 'create_recurring_from_transaction' => 'Criar transação recorrente com base na transação', + 'store_new_tag' => 'Gravar nova etiqueta', + 'update_tag' => 'Atualizar etiqueta', + 'no_location_set' => 'Sem localização definida.', + 'meta_data' => 'Meta dados', + 'location' => 'Localização', + 'location_first_split' => 'O local desta transação pode ser definido na primeira divisão desta transação.', + 'without_date' => 'Sem data', + 'result' => 'Resultado', + 'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado', + 'mapbox_api_key' => 'Para usar o mapa, arranje uma chave de API do Mapbox. Abra o seu ficheiro .env e adicione essa chave a seguir a MAPBOX_API_KEY=.', + 'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir o local do objeto.', + 'click_tap_location' => 'Carregue ou clique no mapa para adicionar uma localização', + 'clear_location' => 'Limpar localização', + 'delete_all_selected_tags' => 'Excluir todas as etiquetas selecionadas', + 'select_tags_to_delete' => 'Não se esqueça de selecionar algumas etiquetas.', + 'deleted_x_tags' => 'Apagada :count etiqueta.|Apagadas :count etiquetas.', + 'create_rule_from_transaction' => 'Criar regra com base na transação', + 'create_recurring_from_transaction' => 'Criar transação recorrente com base na transação', // preferences - 'dark_mode_option_browser' => 'Deixe o seu navegador decidir', - 'dark_mode_option_light' => 'Sempre claro', - 'dark_mode_option_dark' => 'Sempre escuro', - 'equal_to_language' => '(igual ao idioma)', - 'dark_mode_preference' => 'Modo escuro', - 'dark_mode_preference_help' => 'Diga ao Firefly III quando usar o modo escuro.', - 'pref_home_screen_accounts' => 'Contas do ecrã inicial', - 'pref_home_screen_accounts_help' => 'Que contas devem ser mostradas na página principal?', - 'pref_view_range' => 'Ver intervalo', - 'pref_view_range_help' => 'Alguns gráficos são automaticamente agrupados por períodos. Os seus orçamentos serão também agrupados em períodos. Que período prefere?', - 'pref_1D' => 'Um dia', - 'pref_1W' => 'Uma semana', - 'pref_1M' => 'Um mês', - 'pref_3M' => 'Três meses (trimestre)', - 'pref_6M' => 'Seis meses', - 'pref_1Y' => 'Um ano', - 'pref_last365' => 'No ano passado', - 'pref_last90' => 'Últimos 90 dias', - 'pref_last30' => 'Últimos 30 dias', - 'pref_last7' => 'Últimos 7 dias', - 'pref_YTD' => 'Ano corrente', - 'pref_QTD' => 'Trimestre corrente', - 'pref_MTD' => 'Mês corrente', - 'pref_languages' => 'Idiomas', - 'pref_locale' => 'Definições regionais', - 'pref_languages_help' => 'O Firefly III suporta vários idiomas. Qual prefere?', - 'pref_locale_help' => 'O Firefly III permite definir configurações regionais, tais como o formato das moedas, números ou datas. Os elementos nesta lista podem não ser suportados pelo seu sistema. O Firefly III não têm as definições de datas corretas para todos as regiões; contacte-me para melhorias.', - 'pref_locale_no_demo' => 'Esta funcionalidade não funciona para o utilizador de demonstração.', - 'pref_custom_fiscal_year' => 'Definições do ano fiscal', - 'pref_custom_fiscal_year_label' => 'Ativado', - 'pref_custom_fiscal_year_help' => 'Para países que usam ano fiscal diferente de 1 de janeiro a 31 de dezembro, pode alterar estas datas para começarem em acabarem nos dias de início e fim corretos', - 'pref_fiscal_year_start_label' => 'Data de início do ano fiscal', - 'pref_two_factor_auth' => 'Verificação de 2 passos', - 'pref_two_factor_auth_help' => 'Quando ativa a autenticação em 2 passos (também conhecida por autenticação de 2 fatores), adiciona uma camada extra de segurança à sua conta. Pode iniciar sessão com algo que você conhece (a sua palavra-passe) e com algo que tem (um código de verificação). Os códigos de verificação são gerados por uma aplicação no seu telemóvel tais como, a Authy ou o Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Ativar verificação de 2 passos', - 'pref_two_factor_auth_disabled' => 'Código de verificação de 2 passos removido e desativado', - 'pref_two_factor_auth_remove_it' => 'Não se esqueça de remover a conta da sua aplicação de autenticação!', - 'pref_two_factor_auth_code' => 'Código de verificação', - 'pref_two_factor_auth_code_help' => 'Leia o código QR com uma aplicação como a Authy ou o Google Authenticator e depois introduza o código gerado.', - 'pref_two_factor_auth_reset_code' => 'Repor código de verificação', - 'pref_two_factor_auth_disable_2fa' => 'Desativar 2FA', - '2fa_use_secret_instead' => 'Se não conseguir ler o código QR, sinta-se livre de utilizar um segredo em alternativa: :secret.', - '2fa_backup_codes' => 'Guarde estes códigos de backup para acesso, caso perca o seu dispositivo.', - '2fa_already_enabled' => 'A verificação de 2 passos já está ativada.', - 'wrong_mfa_code' => 'Esse código MFA não é válido.', - 'pref_save_settings' => 'Guardar definições', - 'saved_preferences' => 'Preferências guardadas!', - 'preferences_general' => 'Geral', - 'preferences_frontpage' => 'Ecrã inicial', - 'preferences_security' => 'Segurança', - 'preferences_layout' => 'Disposição', - 'preferences_notifications' => 'Notificações', - 'pref_home_show_deposits' => 'Mostrar depósitos no ecrã inicial', - 'pref_home_show_deposits_info' => 'O ecrã inicial já mostra as contas de despesas. Deveria também mostrar as receitas?', - 'pref_home_do_show_deposits' => 'Sim, mostrar', - 'successful_count' => 'dos quais :count bem sucedido(s)', - 'list_page_size_title' => 'Tamanho da página', - 'list_page_size_help' => 'Qualquer lista de coisas (contas, transações, etc.) mostra, no máximo, este número por página.', - 'list_page_size_label' => 'Tamanho da página', - 'between_dates' => '(:start e :end)', - 'pref_optional_fields_transaction' => 'Campos opcionais para transacções', - 'pref_optional_fields_transaction_help' => 'Por defeito, nem todos os campos estão habilitados ao criar uma nova transacção (para não atrapalhar). Abaixo, pode habilitar os campos se achar que eles podem lhe úteis. Claro, qualquer campo que estiver desabilitado, mas já preenchido, será visível independente da configuração.', - 'optional_tj_date_fields' => 'Campos de data', - 'optional_tj_other_fields' => 'Outros campos', - 'optional_tj_attachment_fields' => 'Campos de anexo', - 'pref_optional_tj_interest_date' => 'Data de juros', - 'pref_optional_tj_book_date' => 'Data do agendamento', - 'pref_optional_tj_process_date' => 'Data de processamento', - 'pref_optional_tj_due_date' => 'Data de vencimento', - 'pref_optional_tj_payment_date' => 'Data de pagamento', - 'pref_optional_tj_invoice_date' => 'Data da fatura', - 'pref_optional_tj_internal_reference' => 'Referência interna', - 'pref_optional_tj_notes' => 'Notas', - 'pref_optional_tj_attachments' => 'Anexos', - 'pref_optional_tj_external_url' => 'URL externo', - 'pref_optional_tj_location' => 'Localização', - 'pref_optional_tj_links' => 'Links transacionais', - 'optional_field_meta_dates' => 'Datas', - 'optional_field_meta_business' => 'Empresariais', - 'optional_field_attachments' => 'Anexos', - 'optional_field_meta_data' => 'Meta data opcional', - 'external_url' => 'URL Externo', - 'pref_notification_bill_reminder' => 'Lembrete sobre encargos a expirar', - 'pref_notification_new_access_token' => 'Alerta quando é criado um token da API', - 'pref_notification_transaction_creation' => 'Alerta quando é criada uma transação de forma automática', - 'pref_notification_user_login' => 'Alerta quando inicia sessão a partir de uma nova localização', - 'pref_notification_rule_action_failures' => 'Alertar quando uma regra não consegue executar (apenas Slack ou Discord)', - 'pref_notifications' => 'Notificações', - 'pref_notifications_help' => 'Diga se não quiser receber algumas destas notificações. Algumas notificações podem conter informação financeira sensível.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Se quiser que o Firefly III o notifique via Slack, introduza o URL do webhook aqui. Caso contrário, deixe o campo em branco. Se for um administrador, também tem de definir este URL na administração.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Deixe o seu navegador decidir', + 'dark_mode_option_light' => 'Sempre claro', + 'dark_mode_option_dark' => 'Sempre escuro', + 'equal_to_language' => '(igual ao idioma)', + 'dark_mode_preference' => 'Modo escuro', + 'dark_mode_preference_help' => 'Diga ao Firefly III quando usar o modo escuro.', + 'pref_home_screen_accounts' => 'Contas do ecrã inicial', + 'pref_home_screen_accounts_help' => 'Que contas devem ser mostradas na página principal?', + 'pref_view_range' => 'Ver intervalo', + 'pref_view_range_help' => 'Alguns gráficos são automaticamente agrupados por períodos. Os seus orçamentos serão também agrupados em períodos. Que período prefere?', + 'pref_1D' => 'Um dia', + 'pref_1W' => 'Uma semana', + 'pref_1M' => 'Um mês', + 'pref_3M' => 'Três meses (trimestre)', + 'pref_6M' => 'Seis meses', + 'pref_1Y' => 'Um ano', + 'pref_last365' => 'No ano passado', + 'pref_last90' => 'Últimos 90 dias', + 'pref_last30' => 'Últimos 30 dias', + 'pref_last7' => 'Últimos 7 dias', + 'pref_YTD' => 'Ano corrente', + 'pref_QTD' => 'Trimestre corrente', + 'pref_MTD' => 'Mês corrente', + 'pref_languages' => 'Idiomas', + 'pref_locale' => 'Definições regionais', + 'pref_languages_help' => 'O Firefly III suporta vários idiomas. Qual prefere?', + 'pref_locale_help' => 'O Firefly III permite definir configurações regionais, tais como o formato das moedas, números ou datas. Os elementos nesta lista podem não ser suportados pelo seu sistema. O Firefly III não têm as definições de datas corretas para todos as regiões; contacte-me para melhorias.', + 'pref_locale_no_demo' => 'Esta funcionalidade não funciona para o utilizador de demonstração.', + 'pref_custom_fiscal_year' => 'Definições do ano fiscal', + 'pref_custom_fiscal_year_label' => 'Ativado', + 'pref_custom_fiscal_year_help' => 'Para países que usam ano fiscal diferente de 1 de janeiro a 31 de dezembro, pode alterar estas datas para começarem em acabarem nos dias de início e fim corretos', + 'pref_fiscal_year_start_label' => 'Data de início do ano fiscal', + 'pref_two_factor_auth' => 'Verificação de 2 passos', + 'pref_two_factor_auth_help' => 'Quando ativa a autenticação em 2 passos (também conhecida por autenticação de 2 fatores), adiciona uma camada extra de segurança à sua conta. Pode iniciar sessão com algo que você conhece (a sua palavra-passe) e com algo que tem (um código de verificação). Os códigos de verificação são gerados por uma aplicação no seu telemóvel tais como, a Authy ou o Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Ativar verificação de 2 passos', + 'pref_two_factor_auth_disabled' => 'Código de verificação de 2 passos removido e desativado', + 'pref_two_factor_auth_remove_it' => 'Não se esqueça de remover a conta da sua aplicação de autenticação!', + 'pref_two_factor_auth_code' => 'Código de verificação', + 'pref_two_factor_auth_code_help' => 'Leia o código QR com uma aplicação como a Authy ou o Google Authenticator e depois introduza o código gerado.', + 'pref_two_factor_auth_reset_code' => 'Repor código de verificação', + 'pref_two_factor_auth_disable_2fa' => 'Desativar 2FA', + '2fa_use_secret_instead' => 'Se não conseguir ler o código QR, sinta-se livre de utilizar um segredo em alternativa: :secret.', + '2fa_backup_codes' => 'Guarde estes códigos de backup para acesso, caso perca o seu dispositivo.', + '2fa_already_enabled' => 'A verificação de 2 passos já está ativada.', + 'wrong_mfa_code' => 'Esse código MFA não é válido.', + 'pref_save_settings' => 'Guardar definições', + 'saved_preferences' => 'Preferências guardadas!', + 'preferences_general' => 'Geral', + 'preferences_frontpage' => 'Ecrã inicial', + 'preferences_security' => 'Segurança', + 'preferences_layout' => 'Disposição', + 'preferences_notifications' => 'Notificações', + 'pref_home_show_deposits' => 'Mostrar depósitos no ecrã inicial', + 'pref_home_show_deposits_info' => 'O ecrã inicial já mostra as contas de despesas. Deveria também mostrar as receitas?', + 'pref_home_do_show_deposits' => 'Sim, mostrar', + 'successful_count' => 'dos quais :count bem sucedido(s)', + 'list_page_size_title' => 'Tamanho da página', + 'list_page_size_help' => 'Qualquer lista de coisas (contas, transações, etc.) mostra, no máximo, este número por página.', + 'list_page_size_label' => 'Tamanho da página', + 'between_dates' => '(:start e :end)', + 'pref_optional_fields_transaction' => 'Campos opcionais para transacções', + 'pref_optional_fields_transaction_help' => 'Por defeito, nem todos os campos estão habilitados ao criar uma nova transacção (para não atrapalhar). Abaixo, pode habilitar os campos se achar que eles podem lhe úteis. Claro, qualquer campo que estiver desabilitado, mas já preenchido, será visível independente da configuração.', + 'optional_tj_date_fields' => 'Campos de data', + 'optional_tj_other_fields' => 'Outros campos', + 'optional_tj_attachment_fields' => 'Campos de anexo', + 'pref_optional_tj_interest_date' => 'Data de juros', + 'pref_optional_tj_book_date' => 'Data do agendamento', + 'pref_optional_tj_process_date' => 'Data de processamento', + 'pref_optional_tj_due_date' => 'Data de vencimento', + 'pref_optional_tj_payment_date' => 'Data de pagamento', + 'pref_optional_tj_invoice_date' => 'Data da fatura', + 'pref_optional_tj_internal_reference' => 'Referência interna', + 'pref_optional_tj_notes' => 'Notas', + 'pref_optional_tj_attachments' => 'Anexos', + 'pref_optional_tj_external_url' => 'URL externo', + 'pref_optional_tj_location' => 'Localização', + 'pref_optional_tj_links' => 'Links transacionais', + 'optional_field_meta_dates' => 'Datas', + 'optional_field_meta_business' => 'Empresariais', + 'optional_field_attachments' => 'Anexos', + 'optional_field_meta_data' => 'Meta data opcional', + 'external_url' => 'URL Externo', + 'pref_notification_bill_reminder' => 'Lembrete sobre encargos a expirar', + 'pref_notification_new_access_token' => 'Alerta quando é criado um token da API', + 'pref_notification_transaction_creation' => 'Alerta quando é criada uma transação de forma automática', + 'pref_notification_user_login' => 'Alerta quando inicia sessão a partir de uma nova localização', + 'pref_notification_rule_action_failures' => 'Alertar quando uma regra não consegue executar (apenas Slack ou Discord)', + 'pref_notifications' => 'Notificações', + 'pref_notifications_help' => 'Diga se não quiser receber algumas destas notificações. Algumas notificações podem conter informação financeira sensível.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Se quiser que o Firefly III o notifique via Slack, introduza o URL do webhook aqui. Caso contrário, deixe o campo em branco. Se for um administrador, também tem de definir este URL na administração.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Administração financeira', - 'administrations_index_menu' => 'Administração financeira', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administração financeira', + 'administrations_index_menu' => 'Administração financeira', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purgue dados do Firefly III', - 'purge_data_expl' => '"Purgar" significa "apagar o que já foi apagado". Em circunstâncias normais, o Firefly III não apaga nada de forma definitiva. Apenas esconde. O botão abaixo apaga todos esses registos anteriormente "apagados" PARA SEMPRE.', - 'delete_stuff_header' => 'Apagar e purgar dados', - 'purge_all_data' => 'Purgar todos os registos apagados', - 'purge_data' => 'Purgar dados', - 'purged_all_records' => 'Todos os registos apagados foram purgados.', - 'delete_data_title' => 'Apagar dados do Firefly III', - 'permanent_delete_stuff' => 'Pode apagar coisas do Firefly III. Usando os botões abaixo fará com que os seus itens sejam removidos da visualização e escondidos. Não há botão de anular para isto, mas os itens permanecem na base de dados e poderá recuperá-los se necessário.', - 'other_sessions_logged_out' => 'Todas as outras sessões foram desconectadas.', - 'delete_unused_accounts' => 'Apagar contas não utilizadas irá limpar as suas listas de preenchimento automático.', - 'delete_all_unused_accounts' => 'Apagar contas não utilizadas', - 'deleted_all_unused_accounts' => 'Todas as contas não usadas foram apagadas', - 'delete_all_budgets' => 'Apagar TODOS os orçamentos', - 'delete_all_categories' => 'Apagar TODAS as categorias', - 'delete_all_tags' => 'Apagar TODAS as etiquetas', - 'delete_all_bills' => 'Apagar TODAS as faturas', - 'delete_all_piggy_banks' => 'Apagar todos os mealheiros', - 'delete_all_rules' => 'Apagar TODAS as regras', - 'delete_all_recurring' => 'Apagar TODAS as transacções recorrentes', - 'delete_all_object_groups' => 'Apagar TODOS os grupos de objectos', - 'delete_all_accounts' => 'Apagar TODAS as contas', - 'delete_all_asset_accounts' => 'Apagar TODAS as contas de activos', - 'delete_all_expense_accounts' => 'Apagar TODAS as contas de despesas', - 'delete_all_revenue_accounts' => 'Apagar TODOS as contas de receita', - 'delete_all_liabilities' => 'Apagar TODOS os passivos', - 'delete_all_transactions' => 'Apagar TODAS as suas transacções', - 'delete_all_withdrawals' => 'Apagar TODOS os levantamentos', - 'delete_all_deposits' => 'Apagar TODOS os depósitos', - 'delete_all_transfers' => 'Apagar TODOS as transferências', - 'also_delete_transactions' => 'Apagar a conta também apaga TODOS os levantamentos, depósitos e transferências associadas!', - 'deleted_all_budgets' => 'Todos os orçamentos foram apagados', - 'deleted_all_categories' => 'Todas as categorias foram apagadas', - 'deleted_all_tags' => 'Todas as etiquetas foram apagadas', - 'deleted_all_bills' => 'Todos os encargos foram apagados', - 'deleted_all_piggy_banks' => 'Todos os mealheiros foram apagados', - 'deleted_all_rules' => 'Todas as regras e grupos de regras foram apagadas', - 'deleted_all_object_groups' => 'Todos os grupos foram apagados', - 'deleted_all_accounts' => 'Todas as contas foram apagadas', - 'deleted_all_asset_accounts' => 'Todas as contas de ativos foram apagadas', - 'deleted_all_expense_accounts' => 'Todas as contas de despesas foram apagadas', - 'deleted_all_revenue_accounts' => 'Todas as contas de receita foram apagadas', - 'deleted_all_liabilities' => 'Todos os passivos foram apagados', - 'deleted_all_transactions' => 'Todas as transacções foram apagadas', - 'deleted_all_withdrawals' => 'Todas os levantamentos foram apagados', - 'deleted_all_deposits' => 'Todos os depósitos foram apagados', - 'deleted_all_transfers' => 'Todas as transferências foram apagadas', - 'deleted_all_recurring' => 'Todas as transacções recorrentes foram apagadas', - 'change_your_password' => 'Altere a sua palavra-passe', - 'delete_account' => 'Apagar conta de utilizador', - 'current_password' => 'Palavra-passe atual', - 'new_password' => 'Nova palavra-passe', - 'new_password_again' => 'Nova palavra-passe (novamente)', - 'delete_your_account' => 'Apagar a conta', - 'delete_your_account_help' => 'Apagar a sua conta Firefly III apaga também todas as contas, transações, tudo o que está guardado no Firefly III. Isso será perdido.', - 'delete_your_account_password' => 'Introduza a sua palavra-passe para continuar.', - 'password' => 'Palavra-passe', - 'are_you_sure' => 'Tem a certeza? Não pode anular esta ação.', - 'delete_account_button' => 'APAGAR a sua conta', - 'invalid_current_password' => 'Palavra-passe atual inválida!', - 'password_changed' => 'Palavra-passe alterada!', - 'should_change' => 'A ideia é alterar palavra-passe.', - 'invalid_password' => 'Palavra-passe inválida!', - 'what_is_pw_security' => 'O que é "verificar segurança da palavra-passe"?', - 'secure_pw_title' => 'Como escolher uma palavra-passe segura', - 'forgot_password_response' => 'Obrigado. Se existir uma conta com este endereço de email, encontrará as instruções na sua caixa de entrada.', - 'secure_pw_history' => 'Não há semana em que não se leia nas notícias sobre sites perderem as palavras-passe dos utilizadores. Hackers e ladrões usam essas palavras-passe para tentar roubar a sua informação pessoal. Essa informação é valiosa.', - 'secure_pw_ff' => 'Utiliza a mesma palavra-passe para tudo na Internet? Se um site perder a sua palavra-passe, os hackers ganham acesso a todos os seus dados. O Firefly III depende de uma palavra-passe forte e única para poder proteger toda a sua informação financeira.', - 'secure_pw_check_box' => 'Para ajudá-lo o Firefly III pode verificar se a palavra-passe que pretende usar já foi roubada no passado. Se for esse o caso, o Firefly III recomenda que não a utilize.', - 'secure_pw_working_title' => 'Como funciona?', - 'secure_pw_working' => 'Ao marcar a caixa, o Firefly III enviará os cinco primeiros carateres do hash SHA1 da sua palavra-passe para o website Troy Hunt para confirmar se está na lista. Assim consegue impedi-lo de usar palavras-passe inseguras, como é recomendado na última publicação NIST Special sobre o assunto.', - 'secure_pw_should' => 'Devo marcar a caixa?', - 'secure_pw_long_password' => 'Sim. Verifique sempre se a sua palavra-passe é segura.', - 'command_line_token' => 'Token de linha de comando', - 'explain_command_line_token' => 'É necessário um token para executar opções de linha de comando, tais como exportar dados. Sem isso, os comandos inseridos não funcionarão. Não partilhe o seu token da linha de comandos com ninguém. Nunca ninguém, nem mesmo eu, alguma vez lhe pediremos esse token. Se sentir que o perdeu, ou se sentir paranoico, pode substituir o mesmo usando o botão.', - 'regenerate_command_line_token' => 'Recriar token de linha de comando', - 'token_regenerated' => 'Um novo token de linha de comando foi criado', - 'change_your_email' => 'Alterar o seu email', - 'email_verification' => 'Será enviada uma mensagem de email para os seus endereços de email ANTIGO E NOVO. Por razões de segurança, não será capaz de iniciar sessão até confirmar o seu novo endereço de email. Se não tem a certeza se a sua instalação do Firefly III é capaz de enviar emails, por favor não utilize esta funcionalidade. Se é um administrador, pode testá-la na Administração.', - 'email_changed_logout' => 'Até verificar o seu endereço de e-mail, não poderá iniciar sessão.', - 'login_with_new_email' => 'Agora já pode iniciar sessão com o seu novo endereço de e-mail.', - 'login_with_old_email' => 'Já pode iniciar sessão com o seu endereço de email antigo.', - 'login_provider_local_only' => 'Esta ação não está disponível ao autenticar através de ":login_provider".', - 'external_user_mgt_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela gestão de utilizadores ou autenticação.', - 'external_auth_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela autenticação.', - 'delete_local_info_only' => 'Como o Firefly III não é responsável pela gestão de utilizadores ou autenticação, esta função apenas apaga informações locais do Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clientes OAuth', - 'profile_oauth_no_clients' => 'Não criou nenhum cliente OAuth.', - 'profile_oauth_clients_external_auth' => 'Se estivar a usar um provedor de autenticação externo, como o Authelia, os clientes OAuth não funcionarão. Só pode usar Tokens de Acesso Pessoal.', - 'profile_oauth_clients_header' => 'Clientes', - 'profile_oauth_client_id' => 'ID do Cliente', - 'profile_oauth_client_name' => 'Nome', - 'profile_oauth_client_secret' => 'Segredo', - 'profile_oauth_create_new_client' => 'Criar Novo Cliente', - 'profile_oauth_create_client' => 'Criar Cliente', - 'profile_oauth_edit_client' => 'Editar Cliente', - 'profile_oauth_name_help' => 'Algo que os utilizadores reconheçam e confiem.', - 'profile_oauth_redirect_url' => 'URL de redirecionamento', - 'profile_oauth_redirect_url_help' => 'URL de callback de autorização da aplicação.', - 'profile_authorized_apps' => 'Aplicações autorizadas', - 'profile_authorized_clients' => 'Clientes autorizados', - 'profile_scopes' => 'Contextos', - 'profile_revoke' => 'Revogar', - 'profile_oauth_client_secret_title' => 'Segredo do cliente', - 'profile_oauth_client_secret_expl' => 'Aqui está o seu segredo de cliente. Apenas estará visível uma vez, portanto não o perca! Pode agora utilizar este segredo para fazer pedidos à API.', - 'profile_personal_access_tokens' => 'Tokens de acesso pessoal', - 'profile_personal_access_token' => 'Token de acesso pessoal', - 'profile_oauth_confidential' => 'Confidencial', - 'profile_oauth_confidential_help' => 'Exigir que o cliente se autentique com um segredo. Clientes confidenciais podem manter credenciais de forma segura sem as expor a terceiros não autorizados. Aplicações públicas, tais como aplicações desktop nativas ou JavaScript SPA, são incapazes de garantir a segurança dos segredos.', - 'profile_personal_access_token_explanation' => 'Aqui está o seu novo token de acesso pessoal. Esta é a única vez que será mostrado, portanto, não o perca! Pode usá-lo para fazer pedidos à API.', - 'profile_no_personal_access_token' => 'Ainda não criou tokens de acesso pessoal.', - 'profile_create_new_token' => 'Criar novo token', - 'profile_create_token' => 'Criar token', - 'profile_create' => 'Criar', - 'profile_save_changes' => 'Guardar alterações', - 'profile_whoops' => 'Oops!', - 'profile_something_wrong' => 'Algo correu mal!', - 'profile_try_again' => 'Algo correu mal. Por favor, tente novamente.', - 'amounts' => 'Montantes', - 'multi_account_warning_unknown' => 'Dependendo do tipo de transação que criar, a conta de origem e/ou destino de subsequentes divisões pode ser sobrescrita pelo que estiver definido na primeira divisão da transação.', - 'multi_account_warning_withdrawal' => 'Tenha presente que a conta de origem de divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão do levantamento.', - 'multi_account_warning_deposit' => 'Tenha presente que a conta de destino de divisões subsequentes será sobrescrita pelo que estiver definida na primeira divisão do depósito.', - 'multi_account_warning_transfer' => 'Tenha presenta que a conta de origem + destino de divisões subsequentes serão sobrescritas pelo que estiver definido na primeira divisão da transferência.', + 'purge_data_title' => 'Purgue dados do Firefly III', + 'purge_data_expl' => '"Purgar" significa "apagar o que já foi apagado". Em circunstâncias normais, o Firefly III não apaga nada de forma definitiva. Apenas esconde. O botão abaixo apaga todos esses registos anteriormente "apagados" PARA SEMPRE.', + 'delete_stuff_header' => 'Apagar e purgar dados', + 'purge_all_data' => 'Purgar todos os registos apagados', + 'purge_data' => 'Purgar dados', + 'purged_all_records' => 'Todos os registos apagados foram purgados.', + 'delete_data_title' => 'Apagar dados do Firefly III', + 'permanent_delete_stuff' => 'Pode apagar coisas do Firefly III. Usando os botões abaixo fará com que os seus itens sejam removidos da visualização e escondidos. Não há botão de anular para isto, mas os itens permanecem na base de dados e poderá recuperá-los se necessário.', + 'other_sessions_logged_out' => 'Todas as outras sessões foram desconectadas.', + 'delete_unused_accounts' => 'Apagar contas não utilizadas irá limpar as suas listas de preenchimento automático.', + 'delete_all_unused_accounts' => 'Apagar contas não utilizadas', + 'deleted_all_unused_accounts' => 'Todas as contas não usadas foram apagadas', + 'delete_all_budgets' => 'Apagar TODOS os orçamentos', + 'delete_all_categories' => 'Apagar TODAS as categorias', + 'delete_all_tags' => 'Apagar TODAS as etiquetas', + 'delete_all_bills' => 'Apagar TODAS as faturas', + 'delete_all_piggy_banks' => 'Apagar todos os mealheiros', + 'delete_all_rules' => 'Apagar TODAS as regras', + 'delete_all_recurring' => 'Apagar TODAS as transacções recorrentes', + 'delete_all_object_groups' => 'Apagar TODOS os grupos de objectos', + 'delete_all_accounts' => 'Apagar TODAS as contas', + 'delete_all_asset_accounts' => 'Apagar TODAS as contas de activos', + 'delete_all_expense_accounts' => 'Apagar TODAS as contas de despesas', + 'delete_all_revenue_accounts' => 'Apagar TODOS as contas de receita', + 'delete_all_liabilities' => 'Apagar TODOS os passivos', + 'delete_all_transactions' => 'Apagar TODAS as suas transacções', + 'delete_all_withdrawals' => 'Apagar TODOS os levantamentos', + 'delete_all_deposits' => 'Apagar TODOS os depósitos', + 'delete_all_transfers' => 'Apagar TODOS as transferências', + 'also_delete_transactions' => 'Apagar a conta também apaga TODOS os levantamentos, depósitos e transferências associadas!', + 'deleted_all_budgets' => 'Todos os orçamentos foram apagados', + 'deleted_all_categories' => 'Todas as categorias foram apagadas', + 'deleted_all_tags' => 'Todas as etiquetas foram apagadas', + 'deleted_all_bills' => 'Todos os encargos foram apagados', + 'deleted_all_piggy_banks' => 'Todos os mealheiros foram apagados', + 'deleted_all_rules' => 'Todas as regras e grupos de regras foram apagadas', + 'deleted_all_object_groups' => 'Todos os grupos foram apagados', + 'deleted_all_accounts' => 'Todas as contas foram apagadas', + 'deleted_all_asset_accounts' => 'Todas as contas de ativos foram apagadas', + 'deleted_all_expense_accounts' => 'Todas as contas de despesas foram apagadas', + 'deleted_all_revenue_accounts' => 'Todas as contas de receita foram apagadas', + 'deleted_all_liabilities' => 'Todos os passivos foram apagados', + 'deleted_all_transactions' => 'Todas as transacções foram apagadas', + 'deleted_all_withdrawals' => 'Todas os levantamentos foram apagados', + 'deleted_all_deposits' => 'Todos os depósitos foram apagados', + 'deleted_all_transfers' => 'Todas as transferências foram apagadas', + 'deleted_all_recurring' => 'Todas as transacções recorrentes foram apagadas', + 'change_your_password' => 'Altere a sua palavra-passe', + 'delete_account' => 'Apagar conta de utilizador', + 'current_password' => 'Palavra-passe atual', + 'new_password' => 'Nova palavra-passe', + 'new_password_again' => 'Nova palavra-passe (novamente)', + 'delete_your_account' => 'Apagar a conta', + 'delete_your_account_help' => 'Apagar a sua conta Firefly III apaga também todas as contas, transações, tudo o que está guardado no Firefly III. Isso será perdido.', + 'delete_your_account_password' => 'Introduza a sua palavra-passe para continuar.', + 'password' => 'Palavra-passe', + 'are_you_sure' => 'Tem a certeza? Não pode anular esta ação.', + 'delete_account_button' => 'APAGAR a sua conta', + 'invalid_current_password' => 'Palavra-passe atual inválida!', + 'password_changed' => 'Palavra-passe alterada!', + 'should_change' => 'A ideia é alterar palavra-passe.', + 'invalid_password' => 'Palavra-passe inválida!', + 'what_is_pw_security' => 'O que é "verificar segurança da palavra-passe"?', + 'secure_pw_title' => 'Como escolher uma palavra-passe segura', + 'forgot_password_response' => 'Obrigado. Se existir uma conta com este endereço de email, encontrará as instruções na sua caixa de entrada.', + 'secure_pw_history' => 'Não há semana em que não se leia nas notícias sobre sites perderem as palavras-passe dos utilizadores. Hackers e ladrões usam essas palavras-passe para tentar roubar a sua informação pessoal. Essa informação é valiosa.', + 'secure_pw_ff' => 'Utiliza a mesma palavra-passe para tudo na Internet? Se um site perder a sua palavra-passe, os hackers ganham acesso a todos os seus dados. O Firefly III depende de uma palavra-passe forte e única para poder proteger toda a sua informação financeira.', + 'secure_pw_check_box' => 'Para ajudá-lo o Firefly III pode verificar se a palavra-passe que pretende usar já foi roubada no passado. Se for esse o caso, o Firefly III recomenda que não a utilize.', + 'secure_pw_working_title' => 'Como funciona?', + 'secure_pw_working' => 'Ao marcar a caixa, o Firefly III enviará os cinco primeiros carateres do hash SHA1 da sua palavra-passe para o website Troy Hunt para confirmar se está na lista. Assim consegue impedi-lo de usar palavras-passe inseguras, como é recomendado na última publicação NIST Special sobre o assunto.', + 'secure_pw_should' => 'Devo marcar a caixa?', + 'secure_pw_long_password' => 'Sim. Verifique sempre se a sua palavra-passe é segura.', + 'command_line_token' => 'Token de linha de comando', + 'explain_command_line_token' => 'É necessário um token para executar opções de linha de comando, tais como exportar dados. Sem isso, os comandos inseridos não funcionarão. Não partilhe o seu token da linha de comandos com ninguém. Nunca ninguém, nem mesmo eu, alguma vez lhe pediremos esse token. Se sentir que o perdeu, ou se sentir paranoico, pode substituir o mesmo usando o botão.', + 'regenerate_command_line_token' => 'Recriar token de linha de comando', + 'token_regenerated' => 'Um novo token de linha de comando foi criado', + 'change_your_email' => 'Alterar o seu email', + 'email_verification' => 'Será enviada uma mensagem de email para os seus endereços de email ANTIGO E NOVO. Por razões de segurança, não será capaz de iniciar sessão até confirmar o seu novo endereço de email. Se não tem a certeza se a sua instalação do Firefly III é capaz de enviar emails, por favor não utilize esta funcionalidade. Se é um administrador, pode testá-la na Administração.', + 'email_changed_logout' => 'Até verificar o seu endereço de e-mail, não poderá iniciar sessão.', + 'login_with_new_email' => 'Agora já pode iniciar sessão com o seu novo endereço de e-mail.', + 'login_with_old_email' => 'Já pode iniciar sessão com o seu endereço de email antigo.', + 'login_provider_local_only' => 'Esta ação não está disponível ao autenticar através de ":login_provider".', + 'external_user_mgt_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela gestão de utilizadores ou autenticação.', + 'external_auth_disabled' => 'Esta ação não está disponível quando o Firefly III não é responsável pela autenticação.', + 'delete_local_info_only' => 'Como o Firefly III não é responsável pela gestão de utilizadores ou autenticação, esta função apenas apaga informações locais do Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clientes OAuth', + 'profile_oauth_no_clients' => 'Não criou nenhum cliente OAuth.', + 'profile_oauth_clients_external_auth' => 'Se estivar a usar um provedor de autenticação externo, como o Authelia, os clientes OAuth não funcionarão. Só pode usar Tokens de Acesso Pessoal.', + 'profile_oauth_clients_header' => 'Clientes', + 'profile_oauth_client_id' => 'ID do Cliente', + 'profile_oauth_client_name' => 'Nome', + 'profile_oauth_client_secret' => 'Segredo', + 'profile_oauth_create_new_client' => 'Criar Novo Cliente', + 'profile_oauth_create_client' => 'Criar Cliente', + 'profile_oauth_edit_client' => 'Editar Cliente', + 'profile_oauth_name_help' => 'Algo que os utilizadores reconheçam e confiem.', + 'profile_oauth_redirect_url' => 'URL de redirecionamento', + 'profile_oauth_redirect_url_help' => 'URL de callback de autorização da aplicação.', + 'profile_authorized_apps' => 'Aplicações autorizadas', + 'profile_authorized_clients' => 'Clientes autorizados', + 'profile_scopes' => 'Contextos', + 'profile_revoke' => 'Revogar', + 'profile_oauth_client_secret_title' => 'Segredo do cliente', + 'profile_oauth_client_secret_expl' => 'Aqui está o seu segredo de cliente. Apenas estará visível uma vez, portanto não o perca! Pode agora utilizar este segredo para fazer pedidos à API.', + 'profile_personal_access_tokens' => 'Tokens de acesso pessoal', + 'profile_personal_access_token' => 'Token de acesso pessoal', + 'profile_oauth_confidential' => 'Confidencial', + 'profile_oauth_confidential_help' => 'Exigir que o cliente se autentique com um segredo. Clientes confidenciais podem manter credenciais de forma segura sem as expor a terceiros não autorizados. Aplicações públicas, tais como aplicações desktop nativas ou JavaScript SPA, são incapazes de garantir a segurança dos segredos.', + 'profile_personal_access_token_explanation' => 'Aqui está o seu novo token de acesso pessoal. Esta é a única vez que será mostrado, portanto, não o perca! Pode usá-lo para fazer pedidos à API.', + 'profile_no_personal_access_token' => 'Ainda não criou tokens de acesso pessoal.', + 'profile_create_new_token' => 'Criar novo token', + 'profile_create_token' => 'Criar token', + 'profile_create' => 'Criar', + 'profile_save_changes' => 'Guardar alterações', + 'profile_whoops' => 'Oops!', + 'profile_something_wrong' => 'Algo correu mal!', + 'profile_try_again' => 'Algo correu mal. Por favor, tente novamente.', + 'amounts' => 'Montantes', + 'multi_account_warning_unknown' => 'Dependendo do tipo de transação que criar, a conta de origem e/ou destino de subsequentes divisões pode ser sobrescrita pelo que estiver definido na primeira divisão da transação.', + 'multi_account_warning_withdrawal' => 'Tenha presente que a conta de origem de divisões subsequentes será sobrescrita pelo que estiver definido na primeira divisão do levantamento.', + 'multi_account_warning_deposit' => 'Tenha presente que a conta de destino de divisões subsequentes será sobrescrita pelo que estiver definida na primeira divisão do depósito.', + 'multi_account_warning_transfer' => 'Tenha presenta que a conta de origem + destino de divisões subsequentes serão sobrescritas pelo que estiver definido na primeira divisão da transferência.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportar dados do Firefly III', - 'export_data_menu' => 'Exportar dados', - 'export_data_bc' => 'Exportar dados do Firefly III', - 'export_data_main_title' => 'Exportar dados do Firefly III', - 'export_data_expl' => 'Esta hiperligação permite-lhe exportar todas as transações e os meta dados do Firefly III. Por favor, consulte a ajuda (canto superior direito ícone-(?)) para obter mais informações sobre o processo.', - 'export_data_all_transactions' => 'Exportar todas as transações', - 'export_data_advanced_expl' => 'Se precisar de um tipo mais específico ou avançado de exportação, leia a ajuda sobre como usar o comando da consola php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportar dados do Firefly III', + 'export_data_menu' => 'Exportar dados', + 'export_data_bc' => 'Exportar dados do Firefly III', + 'export_data_main_title' => 'Exportar dados do Firefly III', + 'export_data_expl' => 'Esta hiperligação permite-lhe exportar todas as transações e os meta dados do Firefly III. Por favor, consulte a ajuda (canto superior direito ícone-(?)) para obter mais informações sobre o processo.', + 'export_data_all_transactions' => 'Exportar todas as transações', + 'export_data_advanced_expl' => 'Se precisar de um tipo mais específico ou avançado de exportação, leia a ajuda sobre como usar o comando da consola php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Um anexo|:count anexos', - 'attachments' => 'Anexos', - 'edit_attachment' => 'Alterar anexo ":name"', - 'update_attachment' => 'Atualizar anexo', - 'delete_attachment' => 'Apagar anexo ":name"', - 'attachment_deleted' => 'Anexo apagado ":name"', - 'liabilities_deleted' => 'Passivo apagado ":name"', - 'attachment_updated' => 'Anexo alterado ":name"', - 'upload_max_file_size' => 'Tamanho maximo do ficheiro: :size', - 'list_all_attachments' => 'Lista de todos os anexos', + 'nr_of_attachments' => 'Um anexo|:count anexos', + 'attachments' => 'Anexos', + 'edit_attachment' => 'Alterar anexo ":name"', + 'update_attachment' => 'Atualizar anexo', + 'delete_attachment' => 'Apagar anexo ":name"', + 'attachment_deleted' => 'Anexo apagado ":name"', + 'liabilities_deleted' => 'Passivo apagado ":name"', + 'attachment_updated' => 'Anexo alterado ":name"', + 'upload_max_file_size' => 'Tamanho maximo do ficheiro: :size', + 'list_all_attachments' => 'Lista de todos os anexos', // transaction index - 'is_reconciled_fields_dropped' => 'Como esta transação está reconciliada, não pode atualizar as contas, nem os montantes.', - 'title_expenses' => 'Despesas', - 'title_withdrawal' => 'Despesas', - 'title_revenue' => 'Receita / rendimento', - 'title_deposit' => 'Receita / rendimento', - 'title_transfer' => 'Transferências', - 'title_transfers' => 'Transferências', - 'submission_options' => 'Opções de submissão', - 'apply_rules_checkbox' => 'Aplicar regras', - 'fire_webhooks_checkbox' => 'Ativar webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Como esta transação está reconciliada, não pode atualizar as contas, nem os montantes.', + 'title_expenses' => 'Despesas', + 'title_withdrawal' => 'Despesas', + 'title_revenue' => 'Receita / rendimento', + 'title_deposit' => 'Receita / rendimento', + 'title_transfer' => 'Transferências', + 'title_transfers' => 'Transferências', + 'submission_options' => 'Opções de submissão', + 'apply_rules_checkbox' => 'Aplicar regras', + 'fire_webhooks_checkbox' => 'Ativar webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Esta transação já e um levantamento', - 'convert_is_already_type_Deposit' => 'Esta transação já e um depósito', - 'convert_is_already_type_Transfer' => 'Esta transação já é uma transferência', - 'convert_to_Withdrawal' => 'Converter ":description" num levantamento', - 'convert_to_Deposit' => 'Converter ":description" num depósito', - 'convert_to_Transfer' => 'Converter ":description" numa transferência', - 'convert_options_WithdrawalDeposit' => 'Converter um levantamento num depósito', - 'convert_options_WithdrawalTransfer' => 'Converter um levantamento numa transferência', - 'convert_options_DepositTransfer' => 'Converter um depósito numa transferência', - 'convert_options_DepositWithdrawal' => 'Converter um depósito num levantamento', - 'convert_options_TransferWithdrawal' => 'Converter uma transferência num levantamento', - 'convert_options_TransferDeposit' => 'Converter uma transferência num depósito', - 'convert_Withdrawal_to_deposit' => 'Converter este levantamento num depósito', - 'convert_Withdrawal_to_transfer' => 'Converter este levantamento numa transferência', - 'convert_Deposit_to_withdrawal' => 'Converter este depósito num levantamento', - 'convert_Deposit_to_transfer' => 'Converter este depósito numa transferência', - 'convert_Transfer_to_deposit' => 'Converter esta transferência num depósito', - 'convert_Transfer_to_withdrawal' => 'Converter esta transferência num levantamento', - 'convert_please_set_revenue_source' => 'Por favor, selecione a conta de receitas de onde sairá o dinheiro.', - 'convert_please_set_asset_destination' => 'Por favor, escolha a conta de ativos para a qual irá o dinheiro.', - 'convert_please_set_expense_destination' => 'Por favor, escolha a conta de despesas para a qual irá o dinheiro.', - 'convert_please_set_asset_source' => 'Por favor, escolha a conta de ativos de onde sairá o dinheiro.', - 'convert_expl_w_d' => 'Ao converter um levantamento num depósito, o dinheiro será depositado na conta de destino exibida, em vez de ser retirado. Ao converter um levantamento num depósito, o dinheiro será depositado nas contas de destino exibidas, em vez de ser retirado.', - 'convert_expl_w_t' => 'Ao converter um levantamento numa transferência, o dinheiro será transferido para fora da conta de origem para outra conta de ativos ou passivos em vez de ser gasto na conta de despesa original.|Ao converter um levantamento numa transferência, o dinheiro será transferido das contas de origem para outras contas de activos ou passivos em vez de ser gasto nas contas de despesas originais.', - 'convert_expl_d_w' => 'Quando converter um depósito num levantamento, o dinheiro será retirado da conta de origem exibida, em vez de ser depositado na mesma.|Quando converter um depósito num levantamento, o dinheiro será retirado das contas de origem exibidas, em vez de ser depositado nas mesmas.', - 'convert_expl_d_t' => 'Quando converter um depósito numa transferência, o dinheiro será depositado na conta de destino listada, de qualquer uma das suas conta de ativos ou passivos.|Quando converter um depósito numa transferência, o dinheiro será depositado nas contas de destino listadas de qualquer uma das suas contas de ativos ou passivos.', - 'convert_expl_t_w' => 'Quando converter uma transferência num levantamento, o dinheiro será gasto na conta de destino que definiu aqui, em vez de ser transferido para fora.|Quando converter uma transferência num levantamento, o dinheiro será gasto nas contas de destino que definiu aqui, em vez de ser transferido para fora.', - 'convert_expl_t_d' => 'Ao converter uma transferência num depósito, o dinheiro será depositado na conta de destino que vê aqui, em vez de ser transferido para lá.| Ao converter uma transferência em depósito, o dinheiro será depositado nas contas de destino que vê aqui, em vez de ser transferido para elas.', - 'convert_select_sources' => 'Para completar a conversão, por favor defina a nova conta de origem abaixo.|Para completar a conversão, por favor defina as novas contas de origem abaixo.', - 'convert_select_destinations' => 'Para completar a conversão, por favor selecione a nova conta de destino abaixo.|Para completar a conversão, por favor selecione as novas contas de destino abaixo.', - 'converted_to_Withdrawal' => 'A transação foi convertida num levantamento', - 'converted_to_Deposit' => 'A transação foi convertida num depósito', - 'converted_to_Transfer' => 'A transação foi convertida numa transferência', - 'invalid_convert_selection' => 'A conta que selecionou já está em uso nas transações ou não existe.', - 'source_or_dest_invalid' => 'Não foi possível encontrar os detalhes corretos da transação. A conversão não é possível.', - 'convert_to_withdrawal' => 'Converter para levantamento', - 'convert_to_deposit' => 'Converter para depósito', - 'convert_to_transfer' => 'Converter para uma transferência', + 'convert_is_already_type_Withdrawal' => 'Esta transação já e um levantamento', + 'convert_is_already_type_Deposit' => 'Esta transação já e um depósito', + 'convert_is_already_type_Transfer' => 'Esta transação já é uma transferência', + 'convert_to_Withdrawal' => 'Converter ":description" num levantamento', + 'convert_to_Deposit' => 'Converter ":description" num depósito', + 'convert_to_Transfer' => 'Converter ":description" numa transferência', + 'convert_options_WithdrawalDeposit' => 'Converter um levantamento num depósito', + 'convert_options_WithdrawalTransfer' => 'Converter um levantamento numa transferência', + 'convert_options_DepositTransfer' => 'Converter um depósito numa transferência', + 'convert_options_DepositWithdrawal' => 'Converter um depósito num levantamento', + 'convert_options_TransferWithdrawal' => 'Converter uma transferência num levantamento', + 'convert_options_TransferDeposit' => 'Converter uma transferência num depósito', + 'convert_Withdrawal_to_deposit' => 'Converter este levantamento num depósito', + 'convert_Withdrawal_to_transfer' => 'Converter este levantamento numa transferência', + 'convert_Deposit_to_withdrawal' => 'Converter este depósito num levantamento', + 'convert_Deposit_to_transfer' => 'Converter este depósito numa transferência', + 'convert_Transfer_to_deposit' => 'Converter esta transferência num depósito', + 'convert_Transfer_to_withdrawal' => 'Converter esta transferência num levantamento', + 'convert_please_set_revenue_source' => 'Por favor, selecione a conta de receitas de onde sairá o dinheiro.', + 'convert_please_set_asset_destination' => 'Por favor, escolha a conta de ativos para a qual irá o dinheiro.', + 'convert_please_set_expense_destination' => 'Por favor, escolha a conta de despesas para a qual irá o dinheiro.', + 'convert_please_set_asset_source' => 'Por favor, escolha a conta de ativos de onde sairá o dinheiro.', + 'convert_expl_w_d' => 'Ao converter um levantamento num depósito, o dinheiro será depositado na conta de destino exibida, em vez de ser retirado. Ao converter um levantamento num depósito, o dinheiro será depositado nas contas de destino exibidas, em vez de ser retirado.', + 'convert_expl_w_t' => 'Ao converter um levantamento numa transferência, o dinheiro será transferido para fora da conta de origem para outra conta de ativos ou passivos em vez de ser gasto na conta de despesa original.|Ao converter um levantamento numa transferência, o dinheiro será transferido das contas de origem para outras contas de activos ou passivos em vez de ser gasto nas contas de despesas originais.', + 'convert_expl_d_w' => 'Quando converter um depósito num levantamento, o dinheiro será retirado da conta de origem exibida, em vez de ser depositado na mesma.|Quando converter um depósito num levantamento, o dinheiro será retirado das contas de origem exibidas, em vez de ser depositado nas mesmas.', + 'convert_expl_d_t' => 'Quando converter um depósito numa transferência, o dinheiro será depositado na conta de destino listada, de qualquer uma das suas conta de ativos ou passivos.|Quando converter um depósito numa transferência, o dinheiro será depositado nas contas de destino listadas de qualquer uma das suas contas de ativos ou passivos.', + 'convert_expl_t_w' => 'Quando converter uma transferência num levantamento, o dinheiro será gasto na conta de destino que definiu aqui, em vez de ser transferido para fora.|Quando converter uma transferência num levantamento, o dinheiro será gasto nas contas de destino que definiu aqui, em vez de ser transferido para fora.', + 'convert_expl_t_d' => 'Ao converter uma transferência num depósito, o dinheiro será depositado na conta de destino que vê aqui, em vez de ser transferido para lá.| Ao converter uma transferência em depósito, o dinheiro será depositado nas contas de destino que vê aqui, em vez de ser transferido para elas.', + 'convert_select_sources' => 'Para completar a conversão, por favor defina a nova conta de origem abaixo.|Para completar a conversão, por favor defina as novas contas de origem abaixo.', + 'convert_select_destinations' => 'Para completar a conversão, por favor selecione a nova conta de destino abaixo.|Para completar a conversão, por favor selecione as novas contas de destino abaixo.', + 'converted_to_Withdrawal' => 'A transação foi convertida num levantamento', + 'converted_to_Deposit' => 'A transação foi convertida num depósito', + 'converted_to_Transfer' => 'A transação foi convertida numa transferência', + 'invalid_convert_selection' => 'A conta que selecionou já está em uso nas transações ou não existe.', + 'source_or_dest_invalid' => 'Não foi possível encontrar os detalhes corretos da transação. A conversão não é possível.', + 'convert_to_withdrawal' => 'Converter para levantamento', + 'convert_to_deposit' => 'Converter para depósito', + 'convert_to_transfer' => 'Converter para uma transferência', // create new stuff: - 'create_new_withdrawal' => 'Criar novo levantamento', - 'create_new_deposit' => 'Criar novo depósito', - 'create_new_transfer' => 'Criar nova transferência', - 'create_new_asset' => 'Criar nova conta de activos', - 'create_new_liabilities' => 'Criar novo passivo', - 'create_new_expense' => 'Criar nova conta de despesas', - 'create_new_revenue' => 'Criar nova conta de receitas', - 'create_new_piggy_bank' => 'Criar mealheiro', - 'create_new_bill' => 'Criar novo encargo', - 'create_new_subscription' => 'Criar uma nova subscrição', - 'create_new_rule' => 'Criar regra nova', + 'create_new_withdrawal' => 'Criar novo levantamento', + 'create_new_deposit' => 'Criar novo depósito', + 'create_new_transfer' => 'Criar nova transferência', + 'create_new_asset' => 'Criar nova conta de activos', + 'create_new_liabilities' => 'Criar novo passivo', + 'create_new_expense' => 'Criar nova conta de despesas', + 'create_new_revenue' => 'Criar nova conta de receitas', + 'create_new_piggy_bank' => 'Criar mealheiro', + 'create_new_bill' => 'Criar novo encargo', + 'create_new_subscription' => 'Criar uma nova subscrição', + 'create_new_rule' => 'Criar regra nova', // currencies: - 'create_currency' => 'Criar uma nova moeda', - 'store_currency' => 'Guardar nova moeda', - 'update_currency' => 'Atualizar moeda', - 'new_default_currency' => '":name" passou a ser a moeda padrão.', - 'default_currency_failed' => 'Não foi possível fazer ":name" a moeda padrão. Por favor, verifique os logs de erro.', - 'cannot_delete_currency' => 'Não é possível apagar :name porque ainda está em uso.', - 'cannot_delete_fallback_currency' => ':name é a moeda de reserva do sistema e não pode ser apagada.', - 'cannot_disable_currency_journals' => 'Não é possível desativar :name porque ainda há transações a usa-la.', - 'cannot_disable_currency_last_left' => 'Não é possível desativar :name porque é a única moeda ativada.', - 'cannot_disable_currency_account_meta' => 'Não é possível desactivar :name porque ele é utilizado em contas de activos.', - 'cannot_disable_currency_bills' => 'Não é possível desativar :name porque está a ser utilizado em faturas.', - 'cannot_disable_currency_recurring' => 'Não é possível desativar :name porque é utilizado em transações recorrentes.', - 'cannot_disable_currency_available_budgets' => 'Não é possível desativar :name porque é utilizado nos orçamentos disponíveis.', - 'cannot_disable_currency_budget_limits' => 'Não é possível desativar :name porque está a ser usado nos limites de orçamento.', - 'cannot_disable_currency_current_default' => 'Não é possível desactivar :name porque é a moeda padrão atual.', - 'cannot_disable_currency_system_fallback' => 'Não é possível desactivar :name porque é a moeda padrão do sistema.', - 'disable_EUR_side_effects' => 'O Euro é a moeda de reserva no caso de emergência no sistema. Desativa-la pode trazer efeitos secundários não desejáveis e pode anular a sua garantia.', - 'deleted_currency' => 'Moeda :name apagada', - 'created_currency' => 'Moeda :name criada', - 'could_not_store_currency' => 'Não foi possível guardar a nova moeda.', - 'updated_currency' => 'Moeda :name atualizada', - 'ask_site_owner' => 'Por favor, peça ao :owner para adicionar, remover ou editar moedas.', - 'currencies_intro' => 'O Firefly III suporta várias moedas que pode definir e ativar aqui.', - 'make_default_currency' => 'Tornar predefinido', - 'default_currency' => 'padrão', - 'currency_is_disabled' => 'Desativado', - 'enable_currency' => 'Ativar', - 'disable_currency' => 'Desativar', - 'currencies_default_disabled' => 'A maioria destas moedas está desativada por defeito. Para poder usá-las, tem de as ativar primeiro.', - 'currency_is_now_enabled' => 'A moeda ":name" foi ativada', - 'could_not_enable_currency' => 'Não foi possível habilitar a moeda ":name". Por favor, verifique os logs.', - 'currency_is_now_disabled' => 'A moeda ":name" foi desativada', - 'could_not_disable_currency' => 'Não foi possível desativar a moeda ":name". Talvez ainda esteja em uso?', + 'create_currency' => 'Criar uma nova moeda', + 'store_currency' => 'Guardar nova moeda', + 'update_currency' => 'Atualizar moeda', + 'new_default_currency' => '":name" passou a ser a moeda padrão.', + 'default_currency_failed' => 'Não foi possível fazer ":name" a moeda padrão. Por favor, verifique os logs de erro.', + 'cannot_delete_currency' => 'Não é possível apagar :name porque ainda está em uso.', + 'cannot_delete_fallback_currency' => ':name é a moeda de reserva do sistema e não pode ser apagada.', + 'cannot_disable_currency_journals' => 'Não é possível desativar :name porque ainda há transações a usa-la.', + 'cannot_disable_currency_last_left' => 'Não é possível desativar :name porque é a única moeda ativada.', + 'cannot_disable_currency_account_meta' => 'Não é possível desactivar :name porque ele é utilizado em contas de activos.', + 'cannot_disable_currency_bills' => 'Não é possível desativar :name porque está a ser utilizado em faturas.', + 'cannot_disable_currency_recurring' => 'Não é possível desativar :name porque é utilizado em transações recorrentes.', + 'cannot_disable_currency_available_budgets' => 'Não é possível desativar :name porque é utilizado nos orçamentos disponíveis.', + 'cannot_disable_currency_budget_limits' => 'Não é possível desativar :name porque está a ser usado nos limites de orçamento.', + 'cannot_disable_currency_current_default' => 'Não é possível desactivar :name porque é a moeda padrão atual.', + 'cannot_disable_currency_system_fallback' => 'Não é possível desactivar :name porque é a moeda padrão do sistema.', + 'disable_EUR_side_effects' => 'O Euro é a moeda de reserva no caso de emergência no sistema. Desativa-la pode trazer efeitos secundários não desejáveis e pode anular a sua garantia.', + 'deleted_currency' => 'Moeda :name apagada', + 'created_currency' => 'Moeda :name criada', + 'could_not_store_currency' => 'Não foi possível guardar a nova moeda.', + 'updated_currency' => 'Moeda :name atualizada', + 'ask_site_owner' => 'Por favor, peça ao :owner para adicionar, remover ou editar moedas.', + 'currencies_intro' => 'O Firefly III suporta várias moedas que pode definir e ativar aqui.', + 'make_default_currency' => 'Tornar predefinido', + 'default_currency' => 'padrão', + 'currency_is_disabled' => 'Desativado', + 'enable_currency' => 'Ativar', + 'disable_currency' => 'Desativar', + 'currencies_default_disabled' => 'A maioria destas moedas está desativada por defeito. Para poder usá-las, tem de as ativar primeiro.', + 'currency_is_now_enabled' => 'A moeda ":name" foi ativada', + 'could_not_enable_currency' => 'Não foi possível habilitar a moeda ":name". Por favor, verifique os logs.', + 'currency_is_now_disabled' => 'A moeda ":name" foi desativada', + 'could_not_disable_currency' => 'Não foi possível desativar a moeda ":name". Talvez ainda esteja em uso?', // forms: - 'mandatoryFields' => 'Campos obrigatórios', - 'optionalFields' => 'Campos opcionais', - 'options' => 'Opções', + 'mandatoryFields' => 'Campos obrigatórios', + 'optionalFields' => 'Campos opcionais', + 'options' => 'Opções', // budgets: - 'daily_budgets' => 'Orçamentos diários', - 'weekly_budgets' => 'Orçamentos semanais', - 'monthly_budgets' => 'Orçamentos mensais', - 'quarterly_budgets' => 'Orçamentos trimestrais', - 'half_year_budgets' => 'Orçamentos semestrais', - 'yearly_budgets' => 'Orçamentos anuais', - 'other_budgets' => 'Orçamentos de período personalizado', - 'budget_limit_not_in_range' => 'Esta montante aplica-se de :start a :end:', - 'total_available_budget' => 'Orçamento total disponível (entre :start e :end)', - 'total_available_budget_in_currency' => 'Orçamento total disponível em :currency', - 'see_below' => 'ver abaixo', - 'create_new_budget' => 'Criar um novo orçamento', - 'store_new_budget' => 'Guardar novo orçamento', - 'stored_new_budget' => 'Novo orçamento ":name" guardado', - 'available_between' => 'Disponível entre :start e :end', - 'transactionsWithoutBudget' => 'Despesas sem orçamento', - 'transactions_no_budget' => 'Despesas sem orçamento entre :start e :end', - 'spent_between' => 'Já gasto entre :start e :end', - 'spent_between_left' => 'Gastou :spent entre :start e :end, sobrando :left.', - 'set_available_amount' => 'Definir montante disponível', - 'update_available_amount' => 'Atualizar montante disponível', - 'ab_basic_modal_explain' => 'Use este formulário para indicar quanto espera conseguir orçamentar (no total, em :currency) no período indicado.', - 'createBudget' => 'Novo orçamento', - 'invalid_currency' => 'Esta é uma moeda inválida', - 'invalid_amount' => 'Por favor, insira um montante', - 'set_ab' => 'O montante do orçamento disponível foi definido', - 'updated_ab' => 'O montante do orçamento disponível foi atualizado', - 'deleted_ab' => 'O montante do orçamento disponível foi apagado', - 'deleted_bl' => 'O montante orçamentado foi retirado', - 'alt_currency_ab_create' => 'Definir o orçamento disponível noutra moeda', - 'bl_create_btn' => 'Definir orçamento noutra moeda', - 'inactiveBudgets' => 'Orçamentos inativos', - 'without_budget_between' => 'Transações sem orçamento entre :start e :end', - 'delete_budget' => 'Apagar orçamento ":name"', - 'deleted_budget' => 'Orçamento ":name" apagado', - 'edit_budget' => 'Editar orçamento ":name"', - 'updated_budget' => 'Orçamento ":name" apagado', - 'update_amount' => 'Atualizar montante', - 'update_budget' => 'Atualizar orçamento', - 'update_budget_amount_range' => 'Atualizar o valor (esperado) disponível entre :start e :end', - 'set_budget_limit_title' => 'Definir montante orçado para o orçamento :budget entre :start e :end', - 'set_budget_limit' => 'Definir montante orçamentado', - 'budget_period_navigator' => 'Navegador de período', - 'info_on_available_amount' => 'O que tenho disponível?', - 'available_amount_indication' => 'Utilize estes valores para obter uma indicação do que seu orçamento total poderia ser.', - 'suggested' => 'Sugerido', - 'average_between' => 'Media entre :start e :end', - 'transferred_in' => 'Transferido (para)', - 'transferred_away' => 'Transferido (de)', - 'auto_budget_none' => 'Sem orçamento automático', - 'auto_budget_reset' => 'Defina um valor fixo em cada período', - 'auto_budget_rollover' => 'Adicionar um montante a cada período', - 'auto_budget_adjusted' => 'Adicionar um montante todos os períodos e corrigir para gastos excessivos', - 'auto_budget_period_daily' => 'Diariamente', - 'auto_budget_period_weekly' => 'Semanalmente', - 'auto_budget_period_monthly' => 'Mensalmente', - 'auto_budget_period_quarterly' => 'Trimestralmente', - 'auto_budget_period_half_year' => 'Semestralmente', - 'auto_budget_period_yearly' => 'Anualmente', - 'auto_budget_help' => 'Pode saber mais sobre esta funcionalidade na ajuda. Carregue no ícone(?) no canto superior direito.', - 'auto_budget_reset_icon' => 'Este orçamento será definido periodicamente', - 'auto_budget_rollover_icon' => 'O montante do orçamento irá aumentar periodicamente', - 'auto_budget_adjusted_icon' => 'O montante orçamentado aumentará periodicamente e será corrigido por gastos excessivos', - 'remove_budgeted_amount' => 'Remover montante orçamentado em :currency', + 'daily_budgets' => 'Orçamentos diários', + 'weekly_budgets' => 'Orçamentos semanais', + 'monthly_budgets' => 'Orçamentos mensais', + 'quarterly_budgets' => 'Orçamentos trimestrais', + 'half_year_budgets' => 'Orçamentos semestrais', + 'yearly_budgets' => 'Orçamentos anuais', + 'other_budgets' => 'Orçamentos de período personalizado', + 'budget_limit_not_in_range' => 'Esta montante aplica-se de :start a :end:', + 'total_available_budget' => 'Orçamento total disponível (entre :start e :end)', + 'total_available_budget_in_currency' => 'Orçamento total disponível em :currency', + 'see_below' => 'ver abaixo', + 'create_new_budget' => 'Criar um novo orçamento', + 'store_new_budget' => 'Guardar novo orçamento', + 'stored_new_budget' => 'Novo orçamento ":name" guardado', + 'available_between' => 'Disponível entre :start e :end', + 'transactionsWithoutBudget' => 'Despesas sem orçamento', + 'transactions_no_budget' => 'Despesas sem orçamento entre :start e :end', + 'spent_between' => 'Já gasto entre :start e :end', + 'spent_between_left' => 'Gastou :spent entre :start e :end, sobrando :left.', + 'set_available_amount' => 'Definir montante disponível', + 'update_available_amount' => 'Atualizar montante disponível', + 'ab_basic_modal_explain' => 'Use este formulário para indicar quanto espera conseguir orçamentar (no total, em :currency) no período indicado.', + 'createBudget' => 'Novo orçamento', + 'invalid_currency' => 'Esta é uma moeda inválida', + 'invalid_amount' => 'Por favor, insira um montante', + 'set_ab' => 'O montante do orçamento disponível foi definido', + 'updated_ab' => 'O montante do orçamento disponível foi atualizado', + 'deleted_ab' => 'O montante do orçamento disponível foi apagado', + 'deleted_bl' => 'O montante orçamentado foi retirado', + 'alt_currency_ab_create' => 'Definir o orçamento disponível noutra moeda', + 'bl_create_btn' => 'Definir orçamento noutra moeda', + 'inactiveBudgets' => 'Orçamentos inativos', + 'without_budget_between' => 'Transações sem orçamento entre :start e :end', + 'delete_budget' => 'Apagar orçamento ":name"', + 'deleted_budget' => 'Orçamento ":name" apagado', + 'edit_budget' => 'Editar orçamento ":name"', + 'updated_budget' => 'Orçamento ":name" apagado', + 'update_amount' => 'Atualizar montante', + 'update_budget' => 'Atualizar orçamento', + 'update_budget_amount_range' => 'Atualizar o valor (esperado) disponível entre :start e :end', + 'set_budget_limit_title' => 'Definir montante orçado para o orçamento :budget entre :start e :end', + 'set_budget_limit' => 'Definir montante orçamentado', + 'budget_period_navigator' => 'Navegador de período', + 'info_on_available_amount' => 'O que tenho disponível?', + 'available_amount_indication' => 'Utilize estes valores para obter uma indicação do que seu orçamento total poderia ser.', + 'suggested' => 'Sugerido', + 'average_between' => 'Media entre :start e :end', + 'transferred_in' => 'Transferido (para)', + 'transferred_away' => 'Transferido (de)', + 'auto_budget_none' => 'Sem orçamento automático', + 'auto_budget_reset' => 'Defina um valor fixo em cada período', + 'auto_budget_rollover' => 'Adicionar um montante a cada período', + 'auto_budget_adjusted' => 'Adicionar um montante todos os períodos e corrigir para gastos excessivos', + 'auto_budget_period_daily' => 'Diariamente', + 'auto_budget_period_weekly' => 'Semanalmente', + 'auto_budget_period_monthly' => 'Mensalmente', + 'auto_budget_period_quarterly' => 'Trimestralmente', + 'auto_budget_period_half_year' => 'Semestralmente', + 'auto_budget_period_yearly' => 'Anualmente', + 'auto_budget_help' => 'Pode saber mais sobre esta funcionalidade na ajuda. Carregue no ícone(?) no canto superior direito.', + 'auto_budget_reset_icon' => 'Este orçamento será definido periodicamente', + 'auto_budget_rollover_icon' => 'O montante do orçamento irá aumentar periodicamente', + 'auto_budget_adjusted_icon' => 'O montante orçamentado aumentará periodicamente e será corrigido por gastos excessivos', + 'remove_budgeted_amount' => 'Remover montante orçamentado em :currency', // bills: - 'subscription' => 'Subscrição', - 'not_expected_period' => 'Este período não foi previsto', - 'subscriptions_in_group' => 'Subscrição no grupo "%{title}"', - 'subscr_expected_x_times' => 'Espere pagar %{amount} %{times} neste período', - 'not_or_not_yet' => 'Não (ainda)', - 'visit_bill' => 'Visite o encargo ":name" no Firefly III', - 'match_between_amounts' => 'O encargo corresponde à transação entre :low e :high.', - 'running_again_loss' => 'As transações ligadas anteriormente a este encargo poderão perder a ligação, se (já não) coincidirem com a(s) regra(s).', - 'bill_related_rules' => 'Regras relacionadas com este encargo', - 'repeats' => 'Repete', - 'bill_end_date_help' => 'Campo opcional. Está previsto que o encargo cesse nesta data.', - 'bill_extension_date_help' => 'Campo opcional. O encargo deve ser prorrogado (ou cancelado) até esta data.', - 'bill_end_index_line' => 'Este encargo termina em :date', - 'bill_extension_index_line' => 'Este encargo deve ser prorrogado ou cancelado em :date', - 'connected_journals' => 'Transações ligadas entre si', - 'auto_match_on' => 'Correspondido automaticamente pelo Firefly III', - 'auto_match_off' => 'Não correspondido automaticamente pelo Firefly III', - 'next_expected_match' => 'Próxima correspondência esperada', - 'delete_bill' => 'Apagar encargo ":name"', - 'deleted_bill' => 'Encargo ":name" apagado', - 'edit_bill' => 'Editar encargo ":name"', - 'more' => 'Mais', - 'rescan_old' => 'Executar regras novamente, em todas as transações', - 'update_bill' => 'Atualizar encargo', - 'updated_bill' => 'Encargo ":name" atualizado', - 'store_new_bill' => 'Guardar novo encargo', - 'stored_new_bill' => 'Novo encargo ":name" guardado', - 'cannot_scan_inactive_bill' => 'Encargos inativos não podem ser verificados.', - 'rescanned_bill' => 'Foi tudo verificado novamente tendo sido ligada :count transação ao encargo.|Foi tudo verificado novamente tendo sido ligadas :count transações ao encargo.', - 'average_bill_amount_year' => 'Valor médio do encargo (:year)', - 'average_bill_amount_overall' => 'Valor médio do encargo (geral)', - 'bill_is_active' => 'O encargo está ativo', - 'bill_expected_between' => 'Previsto entre :start e :end', - 'bill_will_automatch' => 'O encargo será automaticamente ligado a transações compatíveis', - 'skips_over' => 'passar à frente', - 'bill_store_error' => 'Ocorreu um erro inesperado ao guardar o novo encargo. Por favor, verifique os ficheiros de log', - 'list_inactive_rule' => 'regra inativa', - 'bill_edit_rules' => 'O Firefly III tentará editar também a regra relacionada com este encargo. Se editou pessoalmente esta regra, o Firefly III não irá mudar nada.|O Firefly III tentará editar também as :count regras relacionadas com este encargo. No entanto, se editou pessoalmente estas regras, o Firefly III não irá mudar nada.', - 'bill_expected_date' => 'Esperado :date', - 'bill_expected_date_js' => 'Esperado {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Pago a {date}', - 'bill_repeats_weekly' => 'Repete-se semanalmente', - 'bill_repeats_monthly' => 'Repete mensalmente', - 'bill_repeats_quarterly' => 'Repete trimestralmente', - 'bill_repeats_half-year' => 'Repete-se a cada meio ano', - 'bill_repeats_yearly' => 'Repete-se anualmente', - 'bill_repeats_weekly_other' => 'Repete-se a cada semana', - 'bill_repeats_monthly_other' => 'Repete-se a cada outro mês', - 'bill_repeats_quarterly_other' => 'Repete-se a cada trimestre', - 'bill_repeats_half-year_other' => 'Repete-se anualmente', - 'bill_repeats_yearly_other' => 'Repete-se a cada ano', - 'bill_repeats_weekly_skip' => 'Repete-se a cada {skip} semanas', - 'bill_repeats_monthly_skip' => 'Repete-se a cada {skip} meses', - 'bill_repeats_quarterly_skip' => 'Repete a cada {skip} trimestres', - 'bill_repeats_half-year_skip' => 'Repete-se a cada {skip} meio ano', - 'bill_repeats_yearly_skip' => 'Repete-se a cada {skip} anos', - 'subscriptions' => 'Subscrições', - 'go_to_subscriptions' => 'Ir para as suas subscrições', - 'forever' => 'Para sempre', - 'extension_date_is' => 'A data de extensão é {date}', + 'subscription' => 'Subscrição', + 'not_expected_period' => 'Este período não foi previsto', + 'subscriptions_in_group' => 'Subscrição no grupo "%{title}"', + 'subscr_expected_x_times' => 'Espere pagar %{amount} %{times} neste período', + 'not_or_not_yet' => 'Não (ainda)', + 'visit_bill' => 'Visite o encargo ":name" no Firefly III', + 'match_between_amounts' => 'O encargo corresponde à transação entre :low e :high.', + 'running_again_loss' => 'As transações ligadas anteriormente a este encargo poderão perder a ligação, se (já não) coincidirem com a(s) regra(s).', + 'bill_related_rules' => 'Regras relacionadas com este encargo', + 'repeats' => 'Repete', + 'bill_end_date_help' => 'Campo opcional. Está previsto que o encargo cesse nesta data.', + 'bill_extension_date_help' => 'Campo opcional. O encargo deve ser prorrogado (ou cancelado) até esta data.', + 'bill_end_index_line' => 'Este encargo termina em :date', + 'bill_extension_index_line' => 'Este encargo deve ser prorrogado ou cancelado em :date', + 'connected_journals' => 'Transações ligadas entre si', + 'auto_match_on' => 'Correspondido automaticamente pelo Firefly III', + 'auto_match_off' => 'Não correspondido automaticamente pelo Firefly III', + 'next_expected_match' => 'Próxima correspondência esperada', + 'delete_bill' => 'Apagar encargo ":name"', + 'deleted_bill' => 'Encargo ":name" apagado', + 'edit_bill' => 'Editar encargo ":name"', + 'more' => 'Mais', + 'rescan_old' => 'Executar regras novamente, em todas as transações', + 'update_bill' => 'Atualizar encargo', + 'updated_bill' => 'Encargo ":name" atualizado', + 'store_new_bill' => 'Guardar novo encargo', + 'stored_new_bill' => 'Novo encargo ":name" guardado', + 'cannot_scan_inactive_bill' => 'Encargos inativos não podem ser verificados.', + 'rescanned_bill' => 'Foi tudo verificado novamente tendo sido ligada :count transação ao encargo.|Foi tudo verificado novamente tendo sido ligadas :count transações ao encargo.', + 'average_bill_amount_year' => 'Valor médio do encargo (:year)', + 'average_bill_amount_overall' => 'Valor médio do encargo (geral)', + 'bill_is_active' => 'O encargo está ativo', + 'bill_expected_between' => 'Previsto entre :start e :end', + 'bill_will_automatch' => 'O encargo será automaticamente ligado a transações compatíveis', + 'skips_over' => 'passar à frente', + 'bill_store_error' => 'Ocorreu um erro inesperado ao guardar o novo encargo. Por favor, verifique os ficheiros de log', + 'list_inactive_rule' => 'regra inativa', + 'bill_edit_rules' => 'O Firefly III tentará editar também a regra relacionada com este encargo. Se editou pessoalmente esta regra, o Firefly III não irá mudar nada.|O Firefly III tentará editar também as :count regras relacionadas com este encargo. No entanto, se editou pessoalmente estas regras, o Firefly III não irá mudar nada.', + 'bill_expected_date' => 'Esperado :date', + 'bill_expected_date_js' => 'Esperado {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Pago a {date}', + 'bill_repeats_weekly' => 'Repete-se semanalmente', + 'bill_repeats_monthly' => 'Repete mensalmente', + 'bill_repeats_quarterly' => 'Repete trimestralmente', + 'bill_repeats_half-year' => 'Repete-se a cada meio ano', + 'bill_repeats_yearly' => 'Repete-se anualmente', + 'bill_repeats_weekly_other' => 'Repete-se a cada semana', + 'bill_repeats_monthly_other' => 'Repete-se a cada outro mês', + 'bill_repeats_quarterly_other' => 'Repete-se a cada trimestre', + 'bill_repeats_half-year_other' => 'Repete-se anualmente', + 'bill_repeats_yearly_other' => 'Repete-se a cada ano', + 'bill_repeats_weekly_skip' => 'Repete-se a cada {skip} semanas', + 'bill_repeats_monthly_skip' => 'Repete-se a cada {skip} meses', + 'bill_repeats_quarterly_skip' => 'Repete a cada {skip} trimestres', + 'bill_repeats_half-year_skip' => 'Repete-se a cada {skip} meio ano', + 'bill_repeats_yearly_skip' => 'Repete-se a cada {skip} anos', + 'subscriptions' => 'Subscrições', + 'go_to_subscriptions' => 'Ir para as suas subscrições', + 'forever' => 'Para sempre', + 'extension_date_is' => 'A data de extensão é {date}', // accounts: - 'i_am_owed_amount' => 'Devem-me um montante', - 'i_owe_amount' => 'Eu devo um montante', - 'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que pode visualizar nesta página separada.| Você tem :count contas inativas (arquivadas), que pode visualizar nesta página separada.', - 'all_accounts_inactive' => 'Estas são as suas contas inactivas.', - 'active_account_link' => 'Este link volta para suas contas activas.', - 'account_missing_transaction' => 'A conta #:id (":name") não pode ser visualizada diretamente, no entanto, o Firefly está sem informação de redirecionamento.', - 'cc_monthly_payment_date_help' => 'Selecione qualquer ano e mês, será ignorado de qualquer forma. Apenas o dia do mês é relevante.', - 'details_for_asset' => 'Detalhes para a conta de ativos ":name"', - 'details_for_expense' => 'Detalhes para a conta de despesas ":name"', - 'details_for_revenue' => 'Detalhes para a conta de receitas ":name"', - 'details_for_cash' => 'Detalhes de conta caixa ":name"', - 'store_new_asset_account' => 'Guardar nova conta de ativos', - 'store_new_expense_account' => 'Guardar nova conta de despesas', - 'store_new_revenue_account' => 'Guardar nova conta de receitas', - 'edit_asset_account' => 'Editar conta de ativos ":name"', - 'edit_expense_account' => 'Editar conta de despesas ":name"', - 'edit_revenue_account' => 'Editar conta de receitas ":name"', - 'delete_asset_account' => 'Apagar conta de ativos ":name"', - 'delete_expense_account' => 'Apagar conta de despesas ":name"', - 'delete_revenue_account' => 'Apagar conta de receitas ":name"', - 'delete_liabilities_account' => 'Apagar passivo ":name"', - 'asset_deleted' => 'Conta de ativos ":name" apagada com sucesso', - 'account_deleted' => 'Conta ":name" eliminada com sucesso', - 'expense_deleted' => 'Conta de despesas ":name" apagada com sucesso', - 'revenue_deleted' => 'Conta de receitas ":name" apagada com sucesso', - 'update_asset_account' => 'Atualizar conta de ativos', - 'update_undefined_account' => 'Atualizar conta', - 'update_liabilities_account' => 'Atualizar conta de passivos', - 'update_expense_account' => 'Atualizar conta de despesas', - 'update_revenue_account' => 'Atualizar conta de receitas', - 'make_new_asset_account' => 'Criar conta de ativos', - 'make_new_expense_account' => 'Criar conta de despesas', - 'make_new_revenue_account' => 'Criar conta de receitas', - 'make_new_liabilities_account' => 'Criar nova conta de passivos', - 'asset_accounts' => 'Conta de ativos', - 'undefined_accounts' => 'Contas', - 'asset_accounts_inactive' => 'Contas de ativos (inativas)', - 'expense_account' => 'Conta de despesas', - 'expense_accounts' => 'Conta de despesas', - 'expense_accounts_inactive' => 'Contas de despesas (desativadas)', - 'revenue_account' => 'Conta de receitas', - 'revenue_accounts' => 'Conta de receitas', - 'revenue_accounts_inactive' => 'Contas de receita (desativadas)', - 'cash_accounts' => 'Contas de caixa', - 'Cash account' => 'Conta de caixa', - 'liabilities_accounts' => 'Conta de passivos', - 'liabilities_accounts_inactive' => 'Contas de passivos (inativas)', - 'reconcile_account' => 'Reconciliar conta ":account"', - 'overview_of_reconcile_modal' => 'Visão geral da reconciliação', - 'delete_reconciliation' => 'Apagar reconciliação', - 'update_reconciliation' => 'Atualizar reconciliação', - 'amount_cannot_be_zero' => 'O valor não pode ser zero', - 'end_of_reconcile_period' => 'Fim do período de reconciliação: :period', - 'start_of_reconcile_period' => 'Início do período de reconciliação: :period', - 'start_balance' => 'Saldo inicial', - 'end_balance' => 'Saldo final', - 'update_balance_dates_instruction' => 'Corresponda os valores e datas acima ao seu extrato bancário e pressione "Começar reconciliação"', - 'select_transactions_instruction' => 'Selecione as transações que aparecem no seu extrato bancário.', - 'select_range_and_balance' => 'Primeiro verifique a data e os saldos. Em seguida, pressione "Iniciar reconciliação"', - 'date_change_instruction' => 'Se alterar o intervalo de datas agora, todo o progresso será perdido.', - 'update_selection' => 'Atualizar seleção', - 'store_reconcile' => 'Guardar reconciliação', - 'reconciliation_transaction' => 'Transacção de reconciliação', - 'Reconciliation' => 'Reconciliação', - 'reconciliation' => 'Reconciliação', - 'reconcile_options' => 'Opções de reconciliação', - 'reconcile_range' => 'Intervalo de reconciliação', - 'start_reconcile' => 'Começar a reconciliar', - 'cash_account_type' => 'Dinheiro', - 'cash' => 'dinheiro', - 'cant_find_redirect_account' => 'Firefly III tentou redirecciona-lo mas não conseguiu. Pedimos desculpa. De volta ao inicio.', - 'account_type' => 'Tipo de conta', - 'save_transactions_by_moving' => 'Guarde esta transacção movendo-a para outra conta:|Guarde estas transacções movendo-as para outra conta:', - 'save_transactions_by_moving_js' => 'Nenhuma transação| Guarde esta transação movendo-a para outra conta| Guarde estas transações movendo-as para outra conta.', - 'stored_new_account' => 'Nova conta ":name" gravada!', - 'stored_new_account_js' => 'Nova conta "{name}" armazenada!', - 'updated_account' => 'Conta ":name" alterada', - 'updated_account_js' => 'Conta atualizada "{title}".', - 'credit_card_options' => 'Opções do cartão de crédito', - 'no_transactions_account' => 'Não existem transações (neste período) para a conta de ativos ":name".', - 'no_transactions_period' => 'Não há transações (neste período).', - 'no_data_for_chart' => 'Não existe informação suficiente (ainda) para gerar este gráfico.', - 'select_at_least_one_account' => 'Por favor, selecione, pelo menos, uma conta de ativos', - 'select_at_least_one_category' => 'Por favor, selecione pelo menos uma categoria', - 'select_at_least_one_budget' => 'Por favor, selecione, pelo menos, um orçamento', - 'select_at_least_one_tag' => 'Por favor, selecione, pelo menos, uma etiqueta', - 'select_at_least_one_expense' => 'Por favor, selecione pelo menos uma combinação de contas de despesas/receita. Se não tiver nenhuma (a lista está vazia), este relatório não fica disponível.', - 'account_default_currency' => 'Esta vai ser a moeda predefinida associada a esta conta.', - 'reconcile_has_more' => 'O seu diário Firefly III tem mais dinheiro do que aquele que o seu banco afirma ter. Existem várias opções. Por favor, escolha o que quer fazer. Depois, pressione "Confirmar reconciliação".', - 'reconcile_has_less' => 'O seu diário Firefly III tem menos dinheiro do que aquele que o seu banco afirma ter. Existem várias opções. Por favor, escolha o que quer fazer. Depois, pressione "Confirmar reconciliação".', - 'reconcile_is_equal' => 'O seu diário Firefly III e o seu extrato bancário estão iguais. Não existe nada para fazer. Por favor, carregue em "Confirmar reconciliação" para confirmar.', - 'create_pos_reconcile_transaction' => 'Desmarque as transações selecionadas e crie uma correção adicionando :amount a esta conta de ativos.', - 'create_neg_reconcile_transaction' => 'Desmarque as transações selecionadas e crie uma correção removendo :amount desta conta de ativos.', - 'reconcile_do_nothing' => 'Limpar as transações selecionadas, mas não corrigir.', - 'reconcile_go_back' => 'Pode sempre editar ou eliminar uma correção mais tarde.', - 'must_be_asset_account' => 'Só pode reconciliar contas de ativos', - 'reconciliation_stored' => 'Reconciliação guardada', - 'reconciliation_error' => 'Devido a um erro as transações foram marcadas como reconciliadas, mas a correção não foi guardada: :error.', - 'reconciliation_transaction_title' => 'Reconciliação (:from a :to)', - 'sum_of_reconciliation' => 'Soma da reconciliação', - 'reconcile_this_account' => 'Reconciliar esta conta', - 'reconcile' => 'Reconciliar', - 'show' => 'Mostrar', - 'confirm_reconciliation' => 'Confirmar reconciliação', - 'submitted_start_balance' => 'Saldo inicial enviado', - 'selected_transactions' => 'Transações selecionadas (:count)', - 'already_cleared_transactions' => 'Transações já removidas (:count)', - 'submitted_end_balance' => 'Saldo final enviado', - 'initial_balance_description' => 'Saldo inicial para ":account"', - 'liability_credit_description' => 'Crédito de passivo para ":account"', - 'interest_calc_' => 'desconhecido', - 'interest_calc_daily' => 'Por dia', - 'interest_calc_monthly' => 'Por mês', - 'interest_calc_yearly' => 'Por ano', - 'interest_calc_weekly' => 'Por semana', - 'interest_calc_half-year' => 'Por semestre', - 'interest_calc_quarterly' => 'Por trimestre', - 'initial_balance_account' => 'Saldo inicial da conta :account', - 'list_options' => 'Listar opções', + 'i_am_owed_amount' => 'Devem-me um montante', + 'i_owe_amount' => 'Eu devo um montante', + 'inactive_account_link' => 'Você tem :count conta inativa (arquivada), que pode visualizar nesta página separada.| Você tem :count contas inativas (arquivadas), que pode visualizar nesta página separada.', + 'all_accounts_inactive' => 'Estas são as suas contas inactivas.', + 'active_account_link' => 'Este link volta para suas contas activas.', + 'account_missing_transaction' => 'A conta #:id (":name") não pode ser visualizada diretamente, no entanto, o Firefly está sem informação de redirecionamento.', + 'cc_monthly_payment_date_help' => 'Selecione qualquer ano e mês, será ignorado de qualquer forma. Apenas o dia do mês é relevante.', + 'details_for_asset' => 'Detalhes para a conta de ativos ":name"', + 'details_for_expense' => 'Detalhes para a conta de despesas ":name"', + 'details_for_revenue' => 'Detalhes para a conta de receitas ":name"', + 'details_for_cash' => 'Detalhes de conta caixa ":name"', + 'store_new_asset_account' => 'Guardar nova conta de ativos', + 'store_new_expense_account' => 'Guardar nova conta de despesas', + 'store_new_revenue_account' => 'Guardar nova conta de receitas', + 'edit_asset_account' => 'Editar conta de ativos ":name"', + 'edit_expense_account' => 'Editar conta de despesas ":name"', + 'edit_revenue_account' => 'Editar conta de receitas ":name"', + 'delete_asset_account' => 'Apagar conta de ativos ":name"', + 'delete_expense_account' => 'Apagar conta de despesas ":name"', + 'delete_revenue_account' => 'Apagar conta de receitas ":name"', + 'delete_liabilities_account' => 'Apagar passivo ":name"', + 'asset_deleted' => 'Conta de ativos ":name" apagada com sucesso', + 'account_deleted' => 'Conta ":name" eliminada com sucesso', + 'expense_deleted' => 'Conta de despesas ":name" apagada com sucesso', + 'revenue_deleted' => 'Conta de receitas ":name" apagada com sucesso', + 'update_asset_account' => 'Atualizar conta de ativos', + 'update_undefined_account' => 'Atualizar conta', + 'update_liabilities_account' => 'Atualizar conta de passivos', + 'update_expense_account' => 'Atualizar conta de despesas', + 'update_revenue_account' => 'Atualizar conta de receitas', + 'make_new_asset_account' => 'Criar conta de ativos', + 'make_new_expense_account' => 'Criar conta de despesas', + 'make_new_revenue_account' => 'Criar conta de receitas', + 'make_new_liabilities_account' => 'Criar nova conta de passivos', + 'asset_accounts' => 'Conta de ativos', + 'undefined_accounts' => 'Contas', + 'asset_accounts_inactive' => 'Contas de ativos (inativas)', + 'expense_account' => 'Conta de despesas', + 'expense_accounts' => 'Conta de despesas', + 'expense_accounts_inactive' => 'Contas de despesas (desativadas)', + 'revenue_account' => 'Conta de receitas', + 'revenue_accounts' => 'Conta de receitas', + 'revenue_accounts_inactive' => 'Contas de receita (desativadas)', + 'cash_accounts' => 'Contas de caixa', + 'Cash account' => 'Conta de caixa', + 'liabilities_accounts' => 'Conta de passivos', + 'liabilities_accounts_inactive' => 'Contas de passivos (inativas)', + 'reconcile_account' => 'Reconciliar conta ":account"', + 'overview_of_reconcile_modal' => 'Visão geral da reconciliação', + 'delete_reconciliation' => 'Apagar reconciliação', + 'update_reconciliation' => 'Atualizar reconciliação', + 'amount_cannot_be_zero' => 'O valor não pode ser zero', + 'end_of_reconcile_period' => 'Fim do período de reconciliação: :period', + 'start_of_reconcile_period' => 'Início do período de reconciliação: :period', + 'start_balance' => 'Saldo inicial', + 'end_balance' => 'Saldo final', + 'update_balance_dates_instruction' => 'Corresponda os valores e datas acima ao seu extrato bancário e pressione "Começar reconciliação"', + 'select_transactions_instruction' => 'Selecione as transações que aparecem no seu extrato bancário.', + 'select_range_and_balance' => 'Primeiro verifique a data e os saldos. Em seguida, pressione "Iniciar reconciliação"', + 'date_change_instruction' => 'Se alterar o intervalo de datas agora, todo o progresso será perdido.', + 'update_selection' => 'Atualizar seleção', + 'store_reconcile' => 'Guardar reconciliação', + 'reconciliation_transaction' => 'Transacção de reconciliação', + 'Reconciliation' => 'Reconciliação', + 'reconciliation' => 'Reconciliação', + 'reconcile_options' => 'Opções de reconciliação', + 'reconcile_range' => 'Intervalo de reconciliação', + 'start_reconcile' => 'Começar a reconciliar', + 'cash_account_type' => 'Dinheiro', + 'cash' => 'dinheiro', + 'cant_find_redirect_account' => 'Firefly III tentou redirecciona-lo mas não conseguiu. Pedimos desculpa. De volta ao inicio.', + 'account_type' => 'Tipo de conta', + 'save_transactions_by_moving' => 'Guarde esta transacção movendo-a para outra conta:|Guarde estas transacções movendo-as para outra conta:', + 'save_transactions_by_moving_js' => 'Nenhuma transação| Guarde esta transação movendo-a para outra conta| Guarde estas transações movendo-as para outra conta.', + 'stored_new_account' => 'Nova conta ":name" gravada!', + 'stored_new_account_js' => 'Nova conta "{name}" armazenada!', + 'updated_account' => 'Conta ":name" alterada', + 'updated_account_js' => 'Conta atualizada "{title}".', + 'credit_card_options' => 'Opções do cartão de crédito', + 'no_transactions_account' => 'Não existem transações (neste período) para a conta de ativos ":name".', + 'no_transactions_period' => 'Não há transações (neste período).', + 'no_data_for_chart' => 'Não existe informação suficiente (ainda) para gerar este gráfico.', + 'select_at_least_one_account' => 'Por favor, selecione, pelo menos, uma conta de ativos', + 'select_at_least_one_category' => 'Por favor, selecione pelo menos uma categoria', + 'select_at_least_one_budget' => 'Por favor, selecione, pelo menos, um orçamento', + 'select_at_least_one_tag' => 'Por favor, selecione, pelo menos, uma etiqueta', + 'select_at_least_one_expense' => 'Por favor, selecione pelo menos uma combinação de contas de despesas/receita. Se não tiver nenhuma (a lista está vazia), este relatório não fica disponível.', + 'account_default_currency' => 'Esta vai ser a moeda predefinida associada a esta conta.', + 'reconcile_has_more' => 'O seu diário Firefly III tem mais dinheiro do que aquele que o seu banco afirma ter. Existem várias opções. Por favor, escolha o que quer fazer. Depois, pressione "Confirmar reconciliação".', + 'reconcile_has_less' => 'O seu diário Firefly III tem menos dinheiro do que aquele que o seu banco afirma ter. Existem várias opções. Por favor, escolha o que quer fazer. Depois, pressione "Confirmar reconciliação".', + 'reconcile_is_equal' => 'O seu diário Firefly III e o seu extrato bancário estão iguais. Não existe nada para fazer. Por favor, carregue em "Confirmar reconciliação" para confirmar.', + 'create_pos_reconcile_transaction' => 'Desmarque as transações selecionadas e crie uma correção adicionando :amount a esta conta de ativos.', + 'create_neg_reconcile_transaction' => 'Desmarque as transações selecionadas e crie uma correção removendo :amount desta conta de ativos.', + 'reconcile_do_nothing' => 'Limpar as transações selecionadas, mas não corrigir.', + 'reconcile_go_back' => 'Pode sempre editar ou eliminar uma correção mais tarde.', + 'must_be_asset_account' => 'Só pode reconciliar contas de ativos', + 'reconciliation_stored' => 'Reconciliação guardada', + 'reconciliation_error' => 'Devido a um erro as transações foram marcadas como reconciliadas, mas a correção não foi guardada: :error.', + 'reconciliation_transaction_title' => 'Reconciliação (:from a :to)', + 'sum_of_reconciliation' => 'Soma da reconciliação', + 'reconcile_this_account' => 'Reconciliar esta conta', + 'reconcile' => 'Reconciliar', + 'show' => 'Mostrar', + 'confirm_reconciliation' => 'Confirmar reconciliação', + 'submitted_start_balance' => 'Saldo inicial enviado', + 'selected_transactions' => 'Transações selecionadas (:count)', + 'already_cleared_transactions' => 'Transações já removidas (:count)', + 'submitted_end_balance' => 'Saldo final enviado', + 'initial_balance_description' => 'Saldo inicial para ":account"', + 'liability_credit_description' => 'Crédito de passivo para ":account"', + 'interest_calc_' => 'desconhecido', + 'interest_calc_daily' => 'Por dia', + 'interest_calc_monthly' => 'Por mês', + 'interest_calc_yearly' => 'Por ano', + 'interest_calc_weekly' => 'Por semana', + 'interest_calc_half-year' => 'Por semestre', + 'interest_calc_quarterly' => 'Por trimestre', + 'initial_balance_account' => 'Saldo inicial da conta :account', + 'list_options' => 'Listar opções', // categories: - 'new_category' => 'Nova categoria', - 'create_new_category' => 'Criar nova categoria', - 'without_category' => 'Sem uma categoria', - 'update_category' => 'Atualizar categoria', - 'updated_category' => 'Categoria ":name" atualizada', - 'categories' => 'Categorias', - 'edit_category' => 'Editar categoria ":name"', - 'no_category' => '(sem categoria)', - 'unknown_category_plain' => 'Sem categoria', - 'category' => 'Categoria', - 'delete_category' => 'Apagar categoria ":name"', - 'deleted_category' => 'Categoria ":name" apagada', - 'store_category' => 'Gravar categoria', - 'stored_category' => 'Categoria ":name" gravada', - 'without_category_between' => 'Sem categoria entre :start e :end', + 'new_category' => 'Nova categoria', + 'create_new_category' => 'Criar nova categoria', + 'without_category' => 'Sem uma categoria', + 'update_category' => 'Atualizar categoria', + 'updated_category' => 'Categoria ":name" atualizada', + 'categories' => 'Categorias', + 'edit_category' => 'Editar categoria ":name"', + 'no_category' => '(sem categoria)', + 'unknown_category_plain' => 'Sem categoria', + 'category' => 'Categoria', + 'delete_category' => 'Apagar categoria ":name"', + 'deleted_category' => 'Categoria ":name" apagada', + 'store_category' => 'Gravar categoria', + 'stored_category' => 'Categoria ":name" gravada', + 'without_category_between' => 'Sem categoria entre :start e :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Por favor, aguarde o formulário carregar', - 'wait_loading_data' => 'Por favor, aguarde enquanto carregamos a sua informação...', - 'wait_attachments' => 'Por favor, aguarde os anexos serem carregados.', - 'errors_upload' => 'O upload falhou. Por favor, verifique o console do seu navegador para ver o erro.', - 'amount_foreign_if' => 'Valor em moeda estrangeira, se houver', - 'amount_destination_account' => 'Valor na moeda da conta de destino', - 'edit_transaction_title' => 'Editar transação ":description"', - 'unreconcile' => 'Desfazer reconciliação', - 'update_withdrawal' => 'Atualizar levantamento', - 'update_deposit' => 'Atualizar depósito', - 'update_transaction' => 'Atualizar transação', - 'update_transfer' => 'Atualizar transferência', - 'updated_withdrawal' => 'Atualizar levantamento ":description"', - 'updated_deposit' => 'Atualizar depósito ":description"', - 'updated_transfer' => 'Atualizar transferência ":description"', - 'no_changes_withdrawal' => 'O levantamento ":description" não foi alterado.', - 'no_changes_deposit' => 'O depósito ":description" não foi alterado.', - 'no_changes_transfer' => 'A transferência ":description" não foi alterada.', - 'delete_withdrawal' => 'Apagar levantamento ":description"', - 'delete_deposit' => 'Apagar depósito ":description"', - 'delete_transfer' => 'Apagar transferência ":description"', - 'deleted_withdrawal' => 'Apagado o levantamento ":description" com sucesso', - 'deleted_deposit' => 'Apagado o depósito ":description" com sucesso', - 'deleted_transfer' => 'Transferência ":description" apagada com sucesso', - 'deleted_reconciliation' => 'Transação de reconciliação ":description" apagada com sucesso', - 'stored_journal' => 'Inserida a transação ":description" com sucesso', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Nova transação criada com sucesso', - 'updated_journal_no_descr' => 'Transação atualizada com sucesso', - 'select_transactions' => 'Selecionar transações', - 'rule_group_select_transactions' => 'Aplicar ":title" às transações', - 'rule_select_transactions' => 'Aplicar ":title" às transações', - 'stop_selection' => 'Pare de selecionar transações', - 'reconcile_selected' => 'Reconciliar', - 'mass_delete_journals' => 'Apagar um número de transações', - 'mass_edit_journals' => 'Editar um número de transações', - 'mass_bulk_journals' => 'Editar em bloco um número de transações', - 'mass_bulk_journals_explain' => 'Este formulário permite alterar as propriedades das transações listadas abaixo numa atualização abrangente. Todas as transações na tabela serão atualizadas quando alterar os parâmetros que estão aqui.', - 'part_of_split' => 'Esta transação faz parte de uma transação dividida. Se não selecionar todas as partições, pode acabar por mudar apenas uma parte da transação.', - 'bulk_set_new_values' => 'Use as entradas abaixo para definir novos valores. Se deixar em branco, serão definidas em branco para todos. Além disso, note que só serão dados orçamentos a levantamentos.', - 'no_bulk_category' => 'Não atualizar categoria', - 'no_bulk_budget' => 'Não atualizar orçamento', - 'no_bulk_tags' => 'Não atualizar etiqueta(s)', - 'replace_with_these_tags' => 'Substituir com estas etiquetas', - 'append_these_tags' => 'Adicionar estas etiquetas', - 'mass_edit' => 'Editar selecionados individualmente', - 'bulk_edit' => 'Editar selecionados em bloco', - 'mass_delete' => 'Apagar selecionados', - 'cannot_edit_other_fields' => 'Não pode editar em bloco outros campos para além destes, porque não existe espaço para mostrá-los. Por favor, siga o link para editá-los um-a-um, se tiver necessidade disso.', - 'cannot_change_amount_reconciled' => 'Não pode alterar o montante de transações reconciliadas.', - 'no_budget' => '(sem orçamento)', - 'no_bill' => '(sem encargo)', - 'account_per_budget' => 'Conta por orçamento', - 'account_per_category' => 'Conta por categoria', - 'create_new_object' => 'Criar', - 'empty' => '(vazio)', - 'all_other_budgets' => '(todos os outros orçamentos)', - 'all_other_accounts' => '(todas as outras contas)', - 'expense_per_source_account' => 'Despesas por conta de origem', - 'expense_per_destination_account' => 'Despesas por conta de destino', - 'income_per_destination_account' => 'Rendimento por conta de destino', - 'spent_in_specific_category' => 'Gasto na categoria ":category"', - 'earned_in_specific_category' => 'Ganhos na categoria ":category"', - 'spent_in_specific_tag' => 'Gasto na etiqueta ":tag"', - 'earned_in_specific_tag' => 'Ganhos na etiqueta ":tag"', - 'income_per_source_account' => 'Rendimento por conta de origem', - 'average_spending_per_destination' => 'Média das despesas por conta de destino', - 'average_spending_per_source' => 'Média das despesas por conta de origem', - 'average_earning_per_source' => 'Média dos ganhos por conta de origem', - 'average_earning_per_destination' => 'Média de ganhos por conta de destino', - 'account_per_tag' => 'Conta por etiqueta', - 'tag_report_expenses_listed_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas etiquetas, apenas aparece se estiver debaixo de uma etiqueta selecionada. Esta lista pode parecer que têm dados em falta, no entanto os montantes estarão corretos.', - 'double_report_expenses_charted_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas etiquetas, apenas aparece se estiver debaixo de uma etiqueta selecionada. Este gráfico pode parecer que têm dados em falta, no entanto os montantes estarão corretos.', - 'tag_report_chart_single_tag' => 'Este gráfico está aplicado a uma única etiqueta. Se a transação tiver múltiplas etiquetas, o que você vê aqui pode ser refletido noutros gráficos de outras etiquetas.', - 'tag' => 'Etiqueta', - 'no_budget_squared' => '(sem orçamento)', - 'perm-delete-many' => 'Apagar tantos itens de uma vez pode ter efeitos desastrosos. Por favor tenha cuidado. Pode sempre apagar partes de uma transação dividida a partir desta página, por tanto tenha cuidado.', - 'mass_deleted_transactions_success' => 'Apagada :count transação.|Apagadas :count transações.', - 'mass_edited_transactions_success' => 'Atualizada :count transação.|Atualizadas :count transações.', - 'opt_group_' => '(sem tipo de conta)', - 'opt_group_no_account_type' => '(sem tipo de conta)', - 'opt_group_defaultAsset' => 'Conta de activos padrão', - 'opt_group_savingAsset' => 'Contas poupança', - 'opt_group_sharedAsset' => 'Contas de activos partilhados', - 'opt_group_ccAsset' => 'Cartões de crédito', - 'opt_group_cashWalletAsset' => 'Carteiras de dinheiro', - 'opt_group_expense_account' => 'Contas de despesas', - 'opt_group_revenue_account' => 'Contas de receitas', - 'opt_group_l_Loan' => 'Passivo: Empréstimo', - 'opt_group_cash_account' => 'Conta de caixa', - 'opt_group_l_Debt' => 'Passivo: dívida', - 'opt_group_l_Mortgage' => 'Passivo: hipoteca', - 'opt_group_l_Credit card' => 'Passivo: cartão de crédito', - 'notes' => 'Notas', - 'unknown_journal_error' => 'Não foi possível guardar a transação. Por favor, verifique os ficheiros de log.', - 'attachment_not_found' => 'Este anexo não foi encontrado.', - 'journal_link_bill' => 'Esta transação está ligada ao encargo :name. Para remover a ligação, desmarque a caixa de seleção. Utilize as regras para ligá-la a outro encargo.', - 'transaction_stored_link' => 'A transação #{ID} ("{title}") foi guardada.', - 'transaction_new_stored_link' => 'A transação#{ID} foi guardada.', - 'transaction_updated_link' => 'A transação #{ID} ("{title}") foi atualizada.', - 'transaction_updated_no_changes' => 'A transação #{ID} ("{title}") não recebeu nenhuma alteração.', - 'first_split_decides' => 'A primeira divisão determina o valor deste campo', - 'first_split_overrules_source' => 'A primeira divisão pode substituir a conta de origem', - 'first_split_overrules_destination' => 'A primeira divisão pode substituir a conta de destino', - 'spent_x_of_y' => 'Gasto {amount} de {total}', + 'wait_loading_transaction' => 'Por favor, aguarde o formulário carregar', + 'wait_loading_data' => 'Por favor, aguarde enquanto carregamos a sua informação...', + 'wait_attachments' => 'Por favor, aguarde os anexos serem carregados.', + 'errors_upload' => 'O upload falhou. Por favor, verifique o console do seu navegador para ver o erro.', + 'amount_foreign_if' => 'Valor em moeda estrangeira, se houver', + 'amount_destination_account' => 'Valor na moeda da conta de destino', + 'edit_transaction_title' => 'Editar transação ":description"', + 'unreconcile' => 'Desfazer reconciliação', + 'update_withdrawal' => 'Atualizar levantamento', + 'update_deposit' => 'Atualizar depósito', + 'update_transaction' => 'Atualizar transação', + 'update_transfer' => 'Atualizar transferência', + 'updated_withdrawal' => 'Atualizar levantamento ":description"', + 'updated_deposit' => 'Atualizar depósito ":description"', + 'updated_transfer' => 'Atualizar transferência ":description"', + 'no_changes_withdrawal' => 'O levantamento ":description" não foi alterado.', + 'no_changes_deposit' => 'O depósito ":description" não foi alterado.', + 'no_changes_transfer' => 'A transferência ":description" não foi alterada.', + 'delete_withdrawal' => 'Apagar levantamento ":description"', + 'delete_deposit' => 'Apagar depósito ":description"', + 'delete_transfer' => 'Apagar transferência ":description"', + 'deleted_withdrawal' => 'Apagado o levantamento ":description" com sucesso', + 'deleted_deposit' => 'Apagado o depósito ":description" com sucesso', + 'deleted_transfer' => 'Transferência ":description" apagada com sucesso', + 'deleted_reconciliation' => 'Transação de reconciliação ":description" apagada com sucesso', + 'stored_journal' => 'Inserida a transação ":description" com sucesso', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Nova transação criada com sucesso', + 'updated_journal_no_descr' => 'Transação atualizada com sucesso', + 'select_transactions' => 'Selecionar transações', + 'rule_group_select_transactions' => 'Aplicar ":title" às transações', + 'rule_select_transactions' => 'Aplicar ":title" às transações', + 'stop_selection' => 'Pare de selecionar transações', + 'reconcile_selected' => 'Reconciliar', + 'mass_delete_journals' => 'Apagar um número de transações', + 'mass_edit_journals' => 'Editar um número de transações', + 'mass_bulk_journals' => 'Editar em bloco um número de transações', + 'mass_bulk_journals_explain' => 'Este formulário permite alterar as propriedades das transações listadas abaixo numa atualização abrangente. Todas as transações na tabela serão atualizadas quando alterar os parâmetros que estão aqui.', + 'part_of_split' => 'Esta transação faz parte de uma transação dividida. Se não selecionar todas as partições, pode acabar por mudar apenas uma parte da transação.', + 'bulk_set_new_values' => 'Use as entradas abaixo para definir novos valores. Se deixar em branco, serão definidas em branco para todos. Além disso, note que só serão dados orçamentos a levantamentos.', + 'no_bulk_category' => 'Não atualizar categoria', + 'no_bulk_budget' => 'Não atualizar orçamento', + 'no_bulk_tags' => 'Não atualizar etiqueta(s)', + 'replace_with_these_tags' => 'Substituir com estas etiquetas', + 'append_these_tags' => 'Adicionar estas etiquetas', + 'mass_edit' => 'Editar selecionados individualmente', + 'bulk_edit' => 'Editar selecionados em bloco', + 'mass_delete' => 'Apagar selecionados', + 'cannot_edit_other_fields' => 'Não pode editar em bloco outros campos para além destes, porque não existe espaço para mostrá-los. Por favor, siga o link para editá-los um-a-um, se tiver necessidade disso.', + 'cannot_change_amount_reconciled' => 'Não pode alterar o montante de transações reconciliadas.', + 'no_budget' => '(sem orçamento)', + 'no_bill' => '(sem encargo)', + 'account_per_budget' => 'Conta por orçamento', + 'account_per_category' => 'Conta por categoria', + 'create_new_object' => 'Criar', + 'empty' => '(vazio)', + 'all_other_budgets' => '(todos os outros orçamentos)', + 'all_other_accounts' => '(todas as outras contas)', + 'expense_per_source_account' => 'Despesas por conta de origem', + 'expense_per_destination_account' => 'Despesas por conta de destino', + 'income_per_destination_account' => 'Rendimento por conta de destino', + 'spent_in_specific_category' => 'Gasto na categoria ":category"', + 'earned_in_specific_category' => 'Ganhos na categoria ":category"', + 'spent_in_specific_tag' => 'Gasto na etiqueta ":tag"', + 'earned_in_specific_tag' => 'Ganhos na etiqueta ":tag"', + 'income_per_source_account' => 'Rendimento por conta de origem', + 'average_spending_per_destination' => 'Média das despesas por conta de destino', + 'average_spending_per_source' => 'Média das despesas por conta de origem', + 'average_earning_per_source' => 'Média dos ganhos por conta de origem', + 'average_earning_per_destination' => 'Média de ganhos por conta de destino', + 'account_per_tag' => 'Conta por etiqueta', + 'tag_report_expenses_listed_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas etiquetas, apenas aparece se estiver debaixo de uma etiqueta selecionada. Esta lista pode parecer que têm dados em falta, no entanto os montantes estarão corretos.', + 'double_report_expenses_charted_once' => 'Despesas e receitas nunca são listadas duas vezes. Se uma transação tiver múltiplas etiquetas, apenas aparece se estiver debaixo de uma etiqueta selecionada. Este gráfico pode parecer que têm dados em falta, no entanto os montantes estarão corretos.', + 'tag_report_chart_single_tag' => 'Este gráfico está aplicado a uma única etiqueta. Se a transação tiver múltiplas etiquetas, o que você vê aqui pode ser refletido noutros gráficos de outras etiquetas.', + 'tag' => 'Etiqueta', + 'no_budget_squared' => '(sem orçamento)', + 'perm-delete-many' => 'Apagar tantos itens de uma vez pode ter efeitos desastrosos. Por favor tenha cuidado. Pode sempre apagar partes de uma transação dividida a partir desta página, por tanto tenha cuidado.', + 'mass_deleted_transactions_success' => 'Apagada :count transação.|Apagadas :count transações.', + 'mass_edited_transactions_success' => 'Atualizada :count transação.|Atualizadas :count transações.', + 'opt_group_' => '(sem tipo de conta)', + 'opt_group_no_account_type' => '(sem tipo de conta)', + 'opt_group_defaultAsset' => 'Conta de activos padrão', + 'opt_group_savingAsset' => 'Contas poupança', + 'opt_group_sharedAsset' => 'Contas de activos partilhados', + 'opt_group_ccAsset' => 'Cartões de crédito', + 'opt_group_cashWalletAsset' => 'Carteiras de dinheiro', + 'opt_group_expense_account' => 'Contas de despesas', + 'opt_group_revenue_account' => 'Contas de receitas', + 'opt_group_l_Loan' => 'Passivo: Empréstimo', + 'opt_group_cash_account' => 'Conta de caixa', + 'opt_group_l_Debt' => 'Passivo: dívida', + 'opt_group_l_Mortgage' => 'Passivo: hipoteca', + 'opt_group_l_Credit card' => 'Passivo: cartão de crédito', + 'notes' => 'Notas', + 'unknown_journal_error' => 'Não foi possível guardar a transação. Por favor, verifique os ficheiros de log.', + 'attachment_not_found' => 'Este anexo não foi encontrado.', + 'journal_link_bill' => 'Esta transação está ligada ao encargo :name. Para remover a ligação, desmarque a caixa de seleção. Utilize as regras para ligá-la a outro encargo.', + 'transaction_stored_link' => 'A transação #{ID} ("{title}") foi guardada.', + 'transaction_new_stored_link' => 'A transação#{ID} foi guardada.', + 'transaction_updated_link' => 'A transação #{ID} ("{title}") foi atualizada.', + 'transaction_updated_no_changes' => 'A transação #{ID} ("{title}") não recebeu nenhuma alteração.', + 'first_split_decides' => 'A primeira divisão determina o valor deste campo', + 'first_split_overrules_source' => 'A primeira divisão pode substituir a conta de origem', + 'first_split_overrules_destination' => 'A primeira divisão pode substituir a conta de destino', + 'spent_x_of_y' => 'Gasto {amount} de {total}', // new user: - 'welcome' => 'Bem-vindo ao Firefly III!', - 'submit' => 'Guardar', - 'submission' => 'Submissão', - 'submit_yes_really' => 'Submeter (sei o que faço)', - 'getting_started' => 'Primeiros passos', - 'to_get_started' => 'É bom ver que instalou o Firefly III com sucesso. Para começar a utilizar esta ferramenta, por favor insira o nome do seu banco bem como o montante presente na sua conta corrente principal. Não se preocupe por agora se tiver múltiplas contas. Pode sempre adicioná-las depois. É que o Firefly III necessita de alguma coisa para começar.', - 'savings_balance_text' => 'O Firefly III criará automaticamente uma conta de poupança. Por defeito, não haverá dinheiro na sua conta poupança, mas se indicar ao Firefly III o saldo ele será armazenado como tal.', - 'finish_up_new_user' => 'É isso mesmo! Pode continuar a pressionar Enviar. Vai voltar ao índice do Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! As novas contas foram guardadas.', - 'set_preferred_language' => 'Se prefere utilizar o Firefly III noutro idioma, por favor indique-o aqui.', - 'language' => 'Idioma', - 'new_savings_account' => 'Conta de poupança :bank_name', - 'cash_wallet' => 'Carteira de dinheiro', - 'currency_not_present' => 'Não se preocupe se a moeda que utiliza normalmente não está listada. Pode criar as suas próprias moedas em Opções > Moedas.', + 'welcome' => 'Bem-vindo ao Firefly III!', + 'submit' => 'Guardar', + 'submission' => 'Submissão', + 'submit_yes_really' => 'Submeter (sei o que faço)', + 'getting_started' => 'Primeiros passos', + 'to_get_started' => 'É bom ver que instalou o Firefly III com sucesso. Para começar a utilizar esta ferramenta, por favor insira o nome do seu banco bem como o montante presente na sua conta corrente principal. Não se preocupe por agora se tiver múltiplas contas. Pode sempre adicioná-las depois. É que o Firefly III necessita de alguma coisa para começar.', + 'savings_balance_text' => 'O Firefly III criará automaticamente uma conta de poupança. Por defeito, não haverá dinheiro na sua conta poupança, mas se indicar ao Firefly III o saldo ele será armazenado como tal.', + 'finish_up_new_user' => 'É isso mesmo! Pode continuar a pressionar Enviar. Vai voltar ao índice do Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! As novas contas foram guardadas.', + 'set_preferred_language' => 'Se prefere utilizar o Firefly III noutro idioma, por favor indique-o aqui.', + 'language' => 'Idioma', + 'new_savings_account' => 'Conta de poupança :bank_name', + 'cash_wallet' => 'Carteira de dinheiro', + 'currency_not_present' => 'Não se preocupe se a moeda que utiliza normalmente não está listada. Pode criar as suas próprias moedas em Opções > Moedas.', // home page: - 'transaction_table_description' => 'Uma tabela com as suas transações', - 'opposing_account' => 'Conta de contrapartida', - 'yourAccounts' => 'As suas contas', - 'your_accounts' => 'Resumo da sua conta', - 'category_overview' => 'Resumo da categoria', - 'expense_overview' => 'Resumo da conta de despesas', - 'revenue_overview' => 'Resumo da conta de receitas', - 'budgetsAndSpending' => 'Orçamentos e gastos', - 'budgets_and_spending' => 'Orçamentos e gastos', - 'go_to_budget' => 'Vá para o orçamento "{budget}"', - 'go_to_deposits' => 'Ir para depósitos', - 'go_to_expenses' => 'Ir para despesas', - 'savings' => 'Poupanças', - 'newWithdrawal' => 'Nova despesa', - 'newDeposit' => 'Novo depósito', - 'newTransfer' => 'Nova transferência', - 'bills_to_pay' => 'Encargos a pagar', - 'per_day' => 'Por dia', - 'left_to_spend_per_day' => 'Restante para gastar por dia', - 'bills_paid' => 'Encargos pagos', - 'custom_period' => 'Período personalizado', - 'reset_to_current' => 'Reiniciar o período personalizado', - 'select_period' => 'Selecionar um período', + 'transaction_table_description' => 'Uma tabela com as suas transações', + 'opposing_account' => 'Conta de contrapartida', + 'yourAccounts' => 'As suas contas', + 'your_accounts' => 'Resumo da sua conta', + 'category_overview' => 'Resumo da categoria', + 'expense_overview' => 'Resumo da conta de despesas', + 'revenue_overview' => 'Resumo da conta de receitas', + 'budgetsAndSpending' => 'Orçamentos e gastos', + 'budgets_and_spending' => 'Orçamentos e gastos', + 'go_to_budget' => 'Vá para o orçamento "{budget}"', + 'go_to_deposits' => 'Ir para depósitos', + 'go_to_expenses' => 'Ir para despesas', + 'savings' => 'Poupanças', + 'newWithdrawal' => 'Nova despesa', + 'newDeposit' => 'Novo depósito', + 'newTransfer' => 'Nova transferência', + 'bills_to_pay' => 'Encargos a pagar', + 'per_day' => 'Por dia', + 'left_to_spend_per_day' => 'Restante para gastar por dia', + 'bills_paid' => 'Encargos pagos', + 'custom_period' => 'Período personalizado', + 'reset_to_current' => 'Reiniciar o período personalizado', + 'select_period' => 'Selecionar um período', // menu and titles, should be recycled as often as possible: - 'currency' => 'Moeda', - 'preferences' => 'Preferências', - 'logout' => 'Terminar Sessão', - 'logout_other_sessions' => 'Terminar todas as outras sessões', - 'toggleNavigation' => 'Mostrar/esconder navegação', - 'searchPlaceholder' => 'Pesquisar...', - 'version' => 'Versão', - 'dashboard' => 'Painel de controlo', - 'income_and_expense' => 'Receitas e despesas', - 'all_money' => 'Todo o seu dinheiro', - 'unknown_source_plain' => 'Conta de origem desconhecida', - 'unknown_dest_plain' => 'Conta de destino desconhecida', - 'unknown_any_plain' => 'Conta desconhecida', - 'unknown_budget_plain' => 'Sem orçamento', - 'available_budget' => 'Orçamento disponível ({currency})', - 'currencies' => 'Moedas', - 'activity' => 'Atividade', - 'usage' => 'Uso', - 'accounts' => 'Contas', - 'Asset account' => 'Conta de ativos', - 'Default account' => 'Conta de ativos', - 'Expense account' => 'Conta de despesas', - 'Revenue account' => 'Conta de receitas', - 'Initial balance account' => 'Conta de saldo inicial', - 'account_type_Asset account' => 'Conta de ativos', - 'account_type_Expense account' => 'Conta de gastos / passivos', - 'account_type_Revenue account' => 'Conta de receitas', - 'account_type_Debt' => 'Dívida', - 'account_type_Loan' => 'Empréstimo', - 'account_type_Mortgage' => 'Hipoteca', - 'account_type_debt' => 'Dívida', - 'account_type_loan' => 'Empréstimo', - 'account_type_mortgage' => 'Hipoteca', - 'account_type_Credit card' => 'Cartão de crédito', - 'credit_card_type_monthlyFull' => 'Pagamento total a cada mês', - 'liability_direction_credit' => 'Esta dívida é-me devida', - 'liability_direction_debit' => 'Devo esta dívida a outra pessoa', - 'liability_direction_credit_short' => 'Devem-me esta dívida', - 'liability_direction_debit_short' => 'Devo esta dívida', - 'liability_direction__short' => 'Desconhecido', - 'liability_direction_null_short' => 'Desconhecido', - 'Liability credit' => 'Crédito de passivo', - 'budgets' => 'Orçamentos', - 'tags' => 'Etiquetas', - 'reports' => 'Relatórios', - 'transactions' => 'Transações', - 'expenses' => 'Despesas', - 'income' => 'Receita / rendimento', - 'transfers' => 'Transferências', - 'moneyManagement' => 'Gestão de dinheiro', - 'money_management' => 'Gestão de dinheiro', - 'tools' => 'Ferramentas', - 'piggyBanks' => 'Mealheiros', - 'piggy_banks' => 'Mealheiros', - 'amount_x_of_y' => '{current} de {total}', - 'bills' => 'Encargos', - 'withdrawal' => 'Levantamento', - 'opening_balance' => 'Saldo de abertura', - 'deposit' => 'Depósito', - 'account' => 'Conta', - 'transfer' => 'Transferência', - 'Withdrawal' => 'Levantamento', - 'Deposit' => 'Depósito', - 'Transfer' => 'Transferência', - 'bill' => 'Encargo', - 'yes' => 'Sim', - 'no' => 'Não', - 'amount' => 'Montante', - 'overview' => 'Visão geral', - 'saveOnAccount' => 'Poupar na conta', - 'unknown' => 'Desconhecido', - 'monthly' => 'Mensalmente', - 'profile' => 'Perfil', - 'errors' => 'Erros', - 'debt_start_date' => 'Data inicial da dívida', - 'debt_start_amount' => 'Montante inicial da dívida', - 'debt_start_amount_help' => 'É sempre melhor definir esse valor como um valor negativo. Leia as páginas de ajuda (canto superior direito (?)) para obter mais informações.', - 'interest_period_help' => 'Este campo é puramente cosmético e não será calculado por si. Acontece que os bancos são muito matreiros e por isso o Firefly III nunca acerta.', - 'store_new_liabilities_account' => 'Guardar novo passivo', - 'edit_liabilities_account' => 'Editar passivo ":name"', - 'financial_control' => 'Controlo financeiro', - 'accounting' => 'Contabilidade', - 'automation' => 'Automatização', - 'others' => 'Outros', - 'classification' => 'Classificação', - 'store_transaction' => 'Guardar transação', + 'currency' => 'Moeda', + 'preferences' => 'Preferências', + 'logout' => 'Terminar Sessão', + 'logout_other_sessions' => 'Terminar todas as outras sessões', + 'toggleNavigation' => 'Mostrar/esconder navegação', + 'searchPlaceholder' => 'Pesquisar...', + 'version' => 'Versão', + 'dashboard' => 'Painel de controlo', + 'income_and_expense' => 'Receitas e despesas', + 'all_money' => 'Todo o seu dinheiro', + 'unknown_source_plain' => 'Conta de origem desconhecida', + 'unknown_dest_plain' => 'Conta de destino desconhecida', + 'unknown_any_plain' => 'Conta desconhecida', + 'unknown_budget_plain' => 'Sem orçamento', + 'available_budget' => 'Orçamento disponível ({currency})', + 'currencies' => 'Moedas', + 'activity' => 'Atividade', + 'usage' => 'Uso', + 'accounts' => 'Contas', + 'Asset account' => 'Conta de ativos', + 'Default account' => 'Conta de ativos', + 'Expense account' => 'Conta de despesas', + 'Revenue account' => 'Conta de receitas', + 'Initial balance account' => 'Conta de saldo inicial', + 'account_type_Asset account' => 'Conta de ativos', + 'account_type_Expense account' => 'Conta de gastos / passivos', + 'account_type_Revenue account' => 'Conta de receitas', + 'account_type_Debt' => 'Dívida', + 'account_type_Loan' => 'Empréstimo', + 'account_type_Mortgage' => 'Hipoteca', + 'account_type_debt' => 'Dívida', + 'account_type_loan' => 'Empréstimo', + 'account_type_mortgage' => 'Hipoteca', + 'account_type_Credit card' => 'Cartão de crédito', + 'credit_card_type_monthlyFull' => 'Pagamento total a cada mês', + 'liability_direction_credit' => 'Esta dívida é-me devida', + 'liability_direction_debit' => 'Devo esta dívida a outra pessoa', + 'liability_direction_credit_short' => 'Devem-me esta dívida', + 'liability_direction_debit_short' => 'Devo esta dívida', + 'liability_direction__short' => 'Desconhecido', + 'liability_direction_null_short' => 'Desconhecido', + 'Liability credit' => 'Crédito de passivo', + 'budgets' => 'Orçamentos', + 'tags' => 'Etiquetas', + 'reports' => 'Relatórios', + 'transactions' => 'Transações', + 'expenses' => 'Despesas', + 'income' => 'Receita / rendimento', + 'transfers' => 'Transferências', + 'moneyManagement' => 'Gestão de dinheiro', + 'money_management' => 'Gestão de dinheiro', + 'tools' => 'Ferramentas', + 'piggyBanks' => 'Mealheiros', + 'piggy_banks' => 'Mealheiros', + 'amount_x_of_y' => '{current} de {total}', + 'bills' => 'Encargos', + 'withdrawal' => 'Levantamento', + 'opening_balance' => 'Saldo de abertura', + 'deposit' => 'Depósito', + 'account' => 'Conta', + 'transfer' => 'Transferência', + 'Withdrawal' => 'Levantamento', + 'Deposit' => 'Depósito', + 'Transfer' => 'Transferência', + 'bill' => 'Encargo', + 'yes' => 'Sim', + 'no' => 'Não', + 'amount' => 'Montante', + 'overview' => 'Visão geral', + 'saveOnAccount' => 'Poupar na conta', + 'unknown' => 'Desconhecido', + 'monthly' => 'Mensalmente', + 'profile' => 'Perfil', + 'errors' => 'Erros', + 'debt_start_date' => 'Data inicial da dívida', + 'debt_start_amount' => 'Montante inicial da dívida', + 'debt_start_amount_help' => 'É sempre melhor definir esse valor como um valor negativo. Leia as páginas de ajuda (canto superior direito (?)) para obter mais informações.', + 'interest_period_help' => 'Este campo é puramente cosmético e não será calculado por si. Acontece que os bancos são muito matreiros e por isso o Firefly III nunca acerta.', + 'store_new_liabilities_account' => 'Guardar novo passivo', + 'edit_liabilities_account' => 'Editar passivo ":name"', + 'financial_control' => 'Controlo financeiro', + 'accounting' => 'Contabilidade', + 'automation' => 'Automatização', + 'others' => 'Outros', + 'classification' => 'Classificação', + 'store_transaction' => 'Guardar transação', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Relatório financeiro predefinido entre :start e :end', - 'report_audit' => 'Visão geral do histórico de transações entre :start e :end', - 'report_category' => 'Relatório da categoria entre :start e :end', - 'report_double' => 'Relatório de despesas/receitas entre :start e :end', - 'report_budget' => 'Relatório de orçamento entre :start e :end', - 'report_tag' => 'Relatório de etiqueta entre :start e :end', - 'quick_link_reports' => 'Links rápidos', - 'quick_link_examples' => 'Estes são apenas alguns links de exemplo para o ajudar a começar. Veja as páginas de ajuda presentes no botão-(?) para mais informação sobre todos os relatórios e as palavras mágicas que pode usar.', - 'quick_link_default_report' => 'Relatório financeiro predefinido', - 'quick_link_audit_report' => 'Visão geral do histórico de transações', - 'report_this_month_quick' => 'Mês corrente, todas as contas', - 'report_last_month_quick' => 'Mês passado, todas as contas', - 'report_this_year_quick' => 'Ano atual, todas as contas', - 'report_this_fiscal_year_quick' => 'Ano fiscal atual, todas as contas', - 'report_all_time_quick' => 'Todas as contas, de sempre', - 'reports_can_bookmark' => 'Lembre-se de que os relatórios podem ser guardados.', - 'incomeVsExpenses' => 'Receitas vs Despesas', - 'accountBalances' => 'Saldos das contas', - 'balanceStart' => 'Saldo no início do período', - 'balanceEnd' => 'Saldo no final do período', - 'splitByAccount' => 'Dividir por conta', - 'coveredWithTags' => 'Com etiquetas', - 'leftInBudget' => 'Restante no orçamento', - 'left_in_debt' => 'Montante em dívida', - 'sumOfSums' => 'Soma das somas', - 'noCategory' => '(sem categoria)', - 'notCharged' => 'Não cobrado (ainda)', - 'inactive' => 'Inativo', - 'active' => 'Ativo', - 'difference' => 'Diferença', - 'money_flowing_in' => 'Dentro', - 'money_flowing_out' => 'Fora', - 'topX' => 'superior :number', - 'show_full_list' => 'Mostrar a lista inteira', - 'show_only_top' => 'Mostrar apenas topo :number', - 'report_type' => 'Tipo de relatório', - 'report_type_default' => 'Relatório financeiro padrão', - 'report_type_audit' => 'Visão geral do histórico de transacções (auditoria)', - 'report_type_category' => 'Relatório por categoria', - 'report_type_budget' => 'Relatório por orçamento', - 'report_type_tag' => 'Relatório por etiqueta', - 'report_type_double' => 'Relatório de despesas/receitas', - 'more_info_help' => 'Mais informação sobre este tipo de relatórios pode ser encontrada nas páginas de ajuda. Por favor carregue no ícone (?) no canto superior direito.', - 'report_included_accounts' => 'Contas incluídas', - 'report_date_range' => 'Intervalo de datas', - 'report_preset_ranges' => 'Intervalos pré-definidos', - 'shared' => 'Partilhado', - 'fiscal_year' => 'Ano fiscal', - 'income_entry' => 'Rendimento da conta ":name" entre :start e :end', - 'expense_entry' => 'Despesas na conta ":name" entre :start e :end', - 'category_entry' => 'Despesas e receitas na categoria ":name" entre :start e :end', - 'budget_spent_amount' => 'Despesas no orçamento ":budget" entre :start e :end', - 'balance_amount' => 'Despesas no orçamento ":budget" pagas com a conta ":account" entre :start e :end', - 'no_audit_activity' => 'Sem atividade registada na conta :account_name entre :start e :end.', - 'audit_end_balance' => 'O saldo da conta :account_name no final de :end era :balance', - 'reports_extra_options' => 'Opções adicionais', - 'report_has_no_extra_options' => 'Este relatório não tem opções adicionais', - 'reports_submit' => 'Ver relatório', - 'end_after_start_date' => 'A data de fim do relatório deve ser superior à da data de início.', - 'select_category' => 'Selecionar categoria(s)', - 'select_budget' => 'Selecionar orçamento(s).', - 'select_tag' => 'Selecionar etiqueta(s).', - 'income_per_category' => 'Receita por categoria', - 'expense_per_category' => 'Despesa por categoria', - 'expense_per_budget' => 'Despesa por orçamento', - 'income_per_account' => 'Receita por conta', - 'expense_per_account' => 'Despesa por conta', - 'expense_per_tag' => 'Despesa por etiqueta', - 'income_per_tag' => 'Receita por etiqueta', - 'include_expense_not_in_budget' => 'Despesas incluídas fora do(s) orçamento(s) selecionado(s)', - 'include_expense_not_in_account' => 'Despesas incluídas fora da(s) conta(s) selecionada(s)', - 'include_expense_not_in_category' => 'Despesas incluídas fora da(s) categoria(s) selecionada(s)', - 'include_income_not_in_category' => 'Rendimento incluído fora da(s) categoria(s) selecionada(s)', - 'include_income_not_in_account' => 'Rendimento incluído fora da(s) conta(s) selecionada(s)', - 'include_income_not_in_tags' => 'Rendimento incluído fora da(s) etiqueta(s) selecionada(s)', - 'include_expense_not_in_tags' => 'Despesas incluídas fora da(s) etiqueta(s) selecionada(s)', - 'everything_else' => 'Tudo o restante', - 'income_and_expenses' => 'Receitas e despesas', - 'spent_average' => 'Gasto (média)', - 'income_average' => 'Rendimento (média)', - 'transaction_count' => 'Número de transações', - 'average_spending_per_account' => 'Média de gastos por conta', - 'average_income_per_account' => 'Rendimento médio por conta', - 'total' => 'Total', - 'description' => 'Descrição', - 'sum_of_period' => 'Soma do período', - 'average_in_period' => 'Média no período', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Conta de ativos predefinida', - 'account_role_sharedAsset' => 'Conta de ativos partilhados', - 'account_role_savingAsset' => 'Conta poupança', - 'account_role_ccAsset' => 'Cartão de crédito', - 'account_role_cashWalletAsset' => 'Carteira de dinheiro', - 'budget_chart_click' => 'Por favor, carregue no nome de um orçamento na tabela acima para visualizar um gráfico.', - 'category_chart_click' => 'Por favor, carregue no nome duma categoria na tabela acima para visualizar um gráfico.', - 'in_out_accounts' => 'Ganhos e gastos por combinação', - 'in_out_accounts_per_asset' => 'Recebido e gasto (por conta de ativos)', - 'in_out_per_category' => 'Ganhos e gastos por categoria', - 'out_per_budget' => 'Gasto por orçamento', - 'select_expense_revenue' => 'Seleccione conta de despesa/receita', - 'multi_currency_report_sum' => 'Como esta lista contém contas com várias moedas diferentes, a(s) soma(s) que vê pode não fazer sentido. O relatório vai utilizar sempre a moeda padrão.', - 'sum_in_default_currency' => 'A soma estará sempre na moeda padrão.', - 'net_filtered_prefs' => 'Esse gráfico nunca incluirá contas que tenham a opção "incluir no património líquido" desmarcada.', + 'report_default' => 'Relatório financeiro predefinido entre :start e :end', + 'report_audit' => 'Visão geral do histórico de transações entre :start e :end', + 'report_category' => 'Relatório da categoria entre :start e :end', + 'report_double' => 'Relatório de despesas/receitas entre :start e :end', + 'report_budget' => 'Relatório de orçamento entre :start e :end', + 'report_tag' => 'Relatório de etiqueta entre :start e :end', + 'quick_link_reports' => 'Links rápidos', + 'quick_link_examples' => 'Estes são apenas alguns links de exemplo para o ajudar a começar. Veja as páginas de ajuda presentes no botão-(?) para mais informação sobre todos os relatórios e as palavras mágicas que pode usar.', + 'quick_link_default_report' => 'Relatório financeiro predefinido', + 'quick_link_audit_report' => 'Visão geral do histórico de transações', + 'report_this_month_quick' => 'Mês corrente, todas as contas', + 'report_last_month_quick' => 'Mês passado, todas as contas', + 'report_this_year_quick' => 'Ano atual, todas as contas', + 'report_this_fiscal_year_quick' => 'Ano fiscal atual, todas as contas', + 'report_all_time_quick' => 'Todas as contas, de sempre', + 'reports_can_bookmark' => 'Lembre-se de que os relatórios podem ser guardados.', + 'incomeVsExpenses' => 'Receitas vs Despesas', + 'accountBalances' => 'Saldos das contas', + 'balanceStart' => 'Saldo no início do período', + 'balanceEnd' => 'Saldo no final do período', + 'splitByAccount' => 'Dividir por conta', + 'coveredWithTags' => 'Com etiquetas', + 'leftInBudget' => 'Restante no orçamento', + 'left_in_debt' => 'Montante em dívida', + 'sumOfSums' => 'Soma das somas', + 'noCategory' => '(sem categoria)', + 'notCharged' => 'Não cobrado (ainda)', + 'inactive' => 'Inativo', + 'active' => 'Ativo', + 'difference' => 'Diferença', + 'money_flowing_in' => 'Dentro', + 'money_flowing_out' => 'Fora', + 'topX' => 'superior :number', + 'show_full_list' => 'Mostrar a lista inteira', + 'show_only_top' => 'Mostrar apenas topo :number', + 'report_type' => 'Tipo de relatório', + 'report_type_default' => 'Relatório financeiro padrão', + 'report_type_audit' => 'Visão geral do histórico de transacções (auditoria)', + 'report_type_category' => 'Relatório por categoria', + 'report_type_budget' => 'Relatório por orçamento', + 'report_type_tag' => 'Relatório por etiqueta', + 'report_type_double' => 'Relatório de despesas/receitas', + 'more_info_help' => 'Mais informação sobre este tipo de relatórios pode ser encontrada nas páginas de ajuda. Por favor carregue no ícone (?) no canto superior direito.', + 'report_included_accounts' => 'Contas incluídas', + 'report_date_range' => 'Intervalo de datas', + 'report_preset_ranges' => 'Intervalos pré-definidos', + 'shared' => 'Partilhado', + 'fiscal_year' => 'Ano fiscal', + 'income_entry' => 'Rendimento da conta ":name" entre :start e :end', + 'expense_entry' => 'Despesas na conta ":name" entre :start e :end', + 'category_entry' => 'Despesas e receitas na categoria ":name" entre :start e :end', + 'budget_spent_amount' => 'Despesas no orçamento ":budget" entre :start e :end', + 'balance_amount' => 'Despesas no orçamento ":budget" pagas com a conta ":account" entre :start e :end', + 'no_audit_activity' => 'Sem atividade registada na conta :account_name entre :start e :end.', + 'audit_end_balance' => 'O saldo da conta :account_name no final de :end era :balance', + 'reports_extra_options' => 'Opções adicionais', + 'report_has_no_extra_options' => 'Este relatório não tem opções adicionais', + 'reports_submit' => 'Ver relatório', + 'end_after_start_date' => 'A data de fim do relatório deve ser superior à da data de início.', + 'select_category' => 'Selecionar categoria(s)', + 'select_budget' => 'Selecionar orçamento(s).', + 'select_tag' => 'Selecionar etiqueta(s).', + 'income_per_category' => 'Receita por categoria', + 'expense_per_category' => 'Despesa por categoria', + 'expense_per_budget' => 'Despesa por orçamento', + 'income_per_account' => 'Receita por conta', + 'expense_per_account' => 'Despesa por conta', + 'expense_per_tag' => 'Despesa por etiqueta', + 'income_per_tag' => 'Receita por etiqueta', + 'include_expense_not_in_budget' => 'Despesas incluídas fora do(s) orçamento(s) selecionado(s)', + 'include_expense_not_in_account' => 'Despesas incluídas fora da(s) conta(s) selecionada(s)', + 'include_expense_not_in_category' => 'Despesas incluídas fora da(s) categoria(s) selecionada(s)', + 'include_income_not_in_category' => 'Rendimento incluído fora da(s) categoria(s) selecionada(s)', + 'include_income_not_in_account' => 'Rendimento incluído fora da(s) conta(s) selecionada(s)', + 'include_income_not_in_tags' => 'Rendimento incluído fora da(s) etiqueta(s) selecionada(s)', + 'include_expense_not_in_tags' => 'Despesas incluídas fora da(s) etiqueta(s) selecionada(s)', + 'everything_else' => 'Tudo o restante', + 'income_and_expenses' => 'Receitas e despesas', + 'spent_average' => 'Gasto (média)', + 'income_average' => 'Rendimento (média)', + 'transaction_count' => 'Número de transações', + 'average_spending_per_account' => 'Média de gastos por conta', + 'average_income_per_account' => 'Rendimento médio por conta', + 'total' => 'Total', + 'description' => 'Descrição', + 'sum_of_period' => 'Soma do período', + 'average_in_period' => 'Média no período', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Conta de ativos predefinida', + 'account_role_sharedAsset' => 'Conta de ativos partilhados', + 'account_role_savingAsset' => 'Conta poupança', + 'account_role_ccAsset' => 'Cartão de crédito', + 'account_role_cashWalletAsset' => 'Carteira de dinheiro', + 'budget_chart_click' => 'Por favor, carregue no nome de um orçamento na tabela acima para visualizar um gráfico.', + 'category_chart_click' => 'Por favor, carregue no nome duma categoria na tabela acima para visualizar um gráfico.', + 'in_out_accounts' => 'Ganhos e gastos por combinação', + 'in_out_accounts_per_asset' => 'Recebido e gasto (por conta de ativos)', + 'in_out_per_category' => 'Ganhos e gastos por categoria', + 'out_per_budget' => 'Gasto por orçamento', + 'select_expense_revenue' => 'Seleccione conta de despesa/receita', + 'multi_currency_report_sum' => 'Como esta lista contém contas com várias moedas diferentes, a(s) soma(s) que vê pode não fazer sentido. O relatório vai utilizar sempre a moeda padrão.', + 'sum_in_default_currency' => 'A soma estará sempre na moeda padrão.', + 'net_filtered_prefs' => 'Esse gráfico nunca incluirá contas que tenham a opção "incluir no património líquido" desmarcada.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Gráfico', - 'month' => 'Mes', - 'budget' => 'Orçamento', - 'spent' => 'Gasto', - 'spent_capped' => 'Gasto (limitado)', - 'spent_in_budget' => 'Gasto no orçamento', - 'left_to_spend' => 'Restante para gastar', - 'earned' => 'Ganho', - 'overspent' => 'Gasto excedido', - 'left' => 'Em falta', - 'max-amount' => 'Montante máximo', - 'min-amount' => 'Montante mínimo', - 'journal-amount' => 'Entrada atual no encargo', - 'name' => 'Nome', - 'date' => 'Data', - 'date_and_time' => 'Data e hora', - 'time' => 'Hora', - 'paid' => 'Pago', - 'unpaid' => 'Por pagar', - 'day' => 'Dia', - 'budgeted' => 'Orçamentado', - 'period' => 'Período', - 'balance' => 'Saldo', - 'in_out_period' => 'Dentro + fora este período', - 'sum' => 'Soma', - 'summary' => 'Resumo', - 'average' => 'Média', - 'balanceFor' => 'Saldo para :name', - 'no_tags' => '(sem etiquetas)', - 'nothing_found' => '(sem resultados)', + 'chart' => 'Gráfico', + 'month' => 'Mes', + 'budget' => 'Orçamento', + 'spent' => 'Gasto', + 'spent_capped' => 'Gasto (limitado)', + 'spent_in_budget' => 'Gasto no orçamento', + 'left_to_spend' => 'Restante para gastar', + 'earned' => 'Ganho', + 'overspent' => 'Gasto excedido', + 'left' => 'Em falta', + 'max-amount' => 'Montante máximo', + 'min-amount' => 'Montante mínimo', + 'journal-amount' => 'Entrada atual no encargo', + 'name' => 'Nome', + 'date' => 'Data', + 'date_and_time' => 'Data e hora', + 'time' => 'Hora', + 'paid' => 'Pago', + 'unpaid' => 'Por pagar', + 'day' => 'Dia', + 'budgeted' => 'Orçamentado', + 'period' => 'Período', + 'balance' => 'Saldo', + 'in_out_period' => 'Dentro + fora este período', + 'sum' => 'Soma', + 'summary' => 'Resumo', + 'average' => 'Média', + 'balanceFor' => 'Saldo para :name', + 'no_tags' => '(sem etiquetas)', + 'nothing_found' => '(sem resultados)', // piggy banks: - 'event_history' => 'Histórico de eventos', - 'add_money_to_piggy' => 'Adicionar dinheiro ao mealheiro ":name"', - 'piggy_bank' => 'Mealheiro', - 'new_piggy_bank' => 'Novo mealheiro', - 'store_piggy_bank' => 'Guardar novo mealheiro', - 'stored_piggy_bank' => 'Guardar novo mealheiro ":name"', - 'account_status' => 'Estado da conta', - 'left_for_piggy_banks' => 'Sobra para os mealheiros', - 'sum_of_piggy_banks' => 'Soma dos mealheiros', - 'saved_so_far' => 'Poupado até agora', - 'left_to_save' => 'Restante para poupar', - 'suggested_amount' => 'Valor de poupança mensal sugerido', - 'add_money_to_piggy_title' => 'Adicionar dinheiro ao mealheiro ":name"', - 'remove_money_from_piggy_title' => 'Remover dinheiro do mealheiro ":name"', - 'add' => 'Adicionar', - 'no_money_for_piggy' => 'Não tem dinheiro para colocar neste mealheiro.', - 'suggested_savings_per_month' => 'Sugerido por mês', + 'event_history' => 'Histórico de eventos', + 'add_money_to_piggy' => 'Adicionar dinheiro ao mealheiro ":name"', + 'piggy_bank' => 'Mealheiro', + 'new_piggy_bank' => 'Novo mealheiro', + 'store_piggy_bank' => 'Guardar novo mealheiro', + 'stored_piggy_bank' => 'Guardar novo mealheiro ":name"', + 'account_status' => 'Estado da conta', + 'left_for_piggy_banks' => 'Sobra para os mealheiros', + 'sum_of_piggy_banks' => 'Soma dos mealheiros', + 'saved_so_far' => 'Poupado até agora', + 'left_to_save' => 'Restante para poupar', + 'suggested_amount' => 'Valor de poupança mensal sugerido', + 'add_money_to_piggy_title' => 'Adicionar dinheiro ao mealheiro ":name"', + 'remove_money_from_piggy_title' => 'Remover dinheiro do mealheiro ":name"', + 'add' => 'Adicionar', + 'no_money_for_piggy' => 'Não tem dinheiro para colocar neste mealheiro.', + 'suggested_savings_per_month' => 'Sugerido por mês', - 'remove' => 'Remover', - 'max_amount_add' => 'O montante máximo que pode adicionar é', - 'max_amount_remove' => 'O montante máximo que pode remover é', - 'update_piggy_button' => 'Atualizar mealheiro', - 'update_piggy_title' => 'Atualizar o mealheiro ":name"', - 'updated_piggy_bank' => 'Mealheiro ":name" atualizado', - 'details' => 'Detalhes', - 'events' => 'Eventos', - 'target_amount' => 'Montante alvo', - 'start_date' => 'Data inicial', - 'no_start_date' => 'Sem data inicial', - 'target_date' => 'Data alvo', - 'no_target_date' => 'Sem data alvo', - 'table' => 'Tabela', - 'delete_piggy_bank' => 'Apagar o mealheiro ":name"', - 'cannot_add_amount_piggy' => 'Nao consigo adicionar :amount a ":name".', - 'cannot_remove_from_piggy' => 'Nao consigo remover :amount de ":name".', - 'deleted_piggy_bank' => 'Mealheiro ":name" apagado', - 'added_amount_to_piggy' => 'Adicionado :amount a ":name"', - 'removed_amount_from_piggy' => 'Removido :amount de ":name"', - 'piggy_events' => 'Mealheiros relacionados', + 'remove' => 'Remover', + 'max_amount_add' => 'O montante máximo que pode adicionar é', + 'max_amount_remove' => 'O montante máximo que pode remover é', + 'update_piggy_button' => 'Atualizar mealheiro', + 'update_piggy_title' => 'Atualizar o mealheiro ":name"', + 'updated_piggy_bank' => 'Mealheiro ":name" atualizado', + 'details' => 'Detalhes', + 'events' => 'Eventos', + 'target_amount' => 'Montante alvo', + 'start_date' => 'Data inicial', + 'no_start_date' => 'Sem data inicial', + 'target_date' => 'Data alvo', + 'no_target_date' => 'Sem data alvo', + 'table' => 'Tabela', + 'delete_piggy_bank' => 'Apagar o mealheiro ":name"', + 'cannot_add_amount_piggy' => 'Nao consigo adicionar :amount a ":name".', + 'cannot_remove_from_piggy' => 'Nao consigo remover :amount de ":name".', + 'deleted_piggy_bank' => 'Mealheiro ":name" apagado', + 'added_amount_to_piggy' => 'Adicionado :amount a ":name"', + 'removed_amount_from_piggy' => 'Removido :amount de ":name"', + 'piggy_events' => 'Mealheiros relacionados', // tags - 'delete_tag' => 'Apagar etiqueta ":tag"', - 'deleted_tag' => 'Etiqueta ":tag" apagada', - 'new_tag' => 'Nova etiqueta', - 'edit_tag' => 'Editar etiqueta ":tag"', - 'updated_tag' => 'Etiqueta ":tag" alterada', - 'created_tag' => 'Etiqueta ":tag" criada!', + 'delete_tag' => 'Apagar etiqueta ":tag"', + 'deleted_tag' => 'Etiqueta ":tag" apagada', + 'new_tag' => 'Nova etiqueta', + 'edit_tag' => 'Editar etiqueta ":tag"', + 'updated_tag' => 'Etiqueta ":tag" alterada', + 'created_tag' => 'Etiqueta ":tag" criada!', - 'transaction_journal_information' => 'Informação da transação', - 'transaction_journal_amount' => 'Informação da quantidade', - 'transaction_journal_meta' => 'Meta informação', - 'transaction_journal_more' => 'Mais informações', - 'basic_journal_information' => 'Informações básicas de transação', - 'transaction_journal_extra' => 'Informações extra', - 'att_part_of_journal' => 'Guardado em ":journal"', - 'total_amount' => 'Montante total', - 'number_of_decimals' => 'Número de casas decimais', + 'transaction_journal_information' => 'Informação da transação', + 'transaction_journal_amount' => 'Informação da quantidade', + 'transaction_journal_meta' => 'Meta informação', + 'transaction_journal_more' => 'Mais informações', + 'basic_journal_information' => 'Informações básicas de transação', + 'transaction_journal_extra' => 'Informações extra', + 'att_part_of_journal' => 'Guardado em ":journal"', + 'total_amount' => 'Montante total', + 'number_of_decimals' => 'Número de casas decimais', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'O convite enviado para ":address" já foi resgatado.', - 'invite_is_deleted' => 'O convite enviado para ":address" foi apagado.', - 'invite_new_user_title' => 'Convidar novo utilizador', - 'invite_new_user_text' => 'Como administrador, pode convidar utilizadores para se registarem na sua instância do Firefly III. Usando a ligação direta que partilhar com eles, eles serão capazes de registar uma conta. O utilizador convidado e a sua ligação de convite aparecerão na tabela abaixo. Tenha a liberdade de partilhar com eles a ligação do convite.', - 'invited_user_mail' => 'Endereço de email', - 'invite_user' => 'Convidar utilizador', - 'user_is_invited' => 'O endereço de email ":address" recebeu um convite para o Firefly III', - 'administration' => 'Administração', - 'system_settings' => 'Definições de sistema', - 'code_already_used' => 'O código de convite foi usado', - 'user_administration' => 'Gestão de utilizadores', - 'list_all_users' => 'Todos os utilizadores', - 'all_users' => 'Todos os utilizadores', - 'instance_configuration' => 'Configuração', - 'firefly_instance_configuration' => 'Opções de configuração para o Firefly III', - 'setting_single_user_mode' => 'Modo de utilizador único', - 'setting_single_user_mode_explain' => 'Por defeito, o Firefly III só aceita um (1) registo: o seu. Esta é uma medida de segurança, impedindo que outros utilizem a sua plataforma, a menos que permita. Os futuros registos estão bloqueados. Quando desmarcar esta caixa, outros podem utilizar a sua plataforma caso tenham acesso (quando ela estiver conectada à Internet).', - 'store_configuration' => 'Gravar configuração', - 'single_user_administration' => 'Administração de utilizadores para :email', - 'edit_user' => 'Editar utilizador :email', - 'hidden_fields_preferences' => 'Pode ativar mais opções de transações nas suas preferências.', - 'user_data_information' => 'Dados do utilizador', - 'user_information' => 'Informação do utilizador', - 'total_size' => 'tamanho total', - 'budget_or_budgets' => ':count orçamento|:count orçamentos', - 'budgets_with_limits' => ':count orçamento com montante definido|:count orçamentos com montante definido', - 'nr_of_rules_in_total_groups' => ':count_rules regra(s) em :count_groups grupo(s) de regras', - 'tag_or_tags' => ':count etiqueta|:count etiquetas', - 'configuration_updated' => 'A configuração foi atualizada', - 'setting_is_demo_site' => 'Site de demonstração', - 'setting_is_demo_site_explain' => 'Se marcar esta caixa, esta instalação vai funcionar como site de demonstração, o que pode ter efeitos colaterais estranhos.', - 'block_code_bounced' => 'Mensagem(s) de email devolvida(s)', - 'block_code_expired' => 'Conta de demonstração expirada', - 'no_block_code' => 'Sem razão para bloqueio ou utilizador não bloqueado', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'O utilizador ainda não confirmou o novo endereço de email', - 'admin_update_email' => 'Ao contrário da página de perfil, o utilizador NÃO vai ser notificado sobre a alteração do endereço de email!', - 'update_user' => 'Atualizar utilizador', - 'updated_user' => 'Os dados do utilizador foram alterados.', - 'delete_user' => 'Apagar utilizador ":email"', - 'user_deleted' => 'O utilizador foi apagado', - 'send_test_email' => 'Enviar e-mail de teste', - 'send_test_email_text' => 'Para confirmar se a sua instância é capaz de enviar emails ou publicar mensagens no Slack, pressione este botão. Não verá nenhum erro aqui (mesmo que exista), os ficheiros de registo (log) registarão os erros. Pode premir este botão todas as vezes que quiser. Não há controlo de spam. A mensagem será enviada para :email e deve chegar brevemente.', - 'send_message' => 'Enviar mensagem', - 'send_test_triggered' => 'O teste foi activado. Verifique a caixa de entrada e os arquivos de log.', - 'give_admin_careful' => 'Utilizadores que obtiverem direitos de administrador podem remover as suas permissões. Tenha cuidado.', - 'admin_maintanance_title' => 'Manutenção', - 'admin_maintanance_expl' => 'Alguns botões sofisticados para a manutenção do Firefly III', - 'admin_maintenance_clear_cache' => 'Limpar cache', - 'admin_notifications' => 'Notificações administrativas', - 'admin_notifications_expl' => 'As seguintes notificações podem ser ativadas ou desativadas pelo administrador. Se quiser receber essas mensagens através do Slack, defina a URL de "webhook de entrada".', - 'admin_notification_check_user_new_reg' => 'O utilizador recebe mensagem de boas-vindas pós-registo', - 'admin_notification_check_admin_new_reg' => 'O(s) administrador(es) recebe(m) uma notificação de registo de novo utilizador', - 'admin_notification_check_new_version' => 'Está disponível uma nova versão', - 'admin_notification_check_invite_created' => 'Um utilizador foi convidado para o Firefly III', - 'admin_notification_check_invite_redeemed' => 'Foi resgatado um convite de utilizador', - 'all_invited_users' => 'Todos os utilizadores convidados', - 'save_notification_settings' => 'Gravar definições', - 'notification_settings_saved' => 'As definições de notificação foram gravadas', + 'invite_is_already_redeemed' => 'O convite enviado para ":address" já foi resgatado.', + 'invite_is_deleted' => 'O convite enviado para ":address" foi apagado.', + 'invite_new_user_title' => 'Convidar novo utilizador', + 'invite_new_user_text' => 'Como administrador, pode convidar utilizadores para se registarem na sua instância do Firefly III. Usando a ligação direta que partilhar com eles, eles serão capazes de registar uma conta. O utilizador convidado e a sua ligação de convite aparecerão na tabela abaixo. Tenha a liberdade de partilhar com eles a ligação do convite.', + 'invited_user_mail' => 'Endereço de email', + 'invite_user' => 'Convidar utilizador', + 'user_is_invited' => 'O endereço de email ":address" recebeu um convite para o Firefly III', + 'administration' => 'Administração', + 'system_settings' => 'Definições de sistema', + 'code_already_used' => 'O código de convite foi usado', + 'user_administration' => 'Gestão de utilizadores', + 'list_all_users' => 'Todos os utilizadores', + 'all_users' => 'Todos os utilizadores', + 'instance_configuration' => 'Configuração', + 'firefly_instance_configuration' => 'Opções de configuração para o Firefly III', + 'setting_single_user_mode' => 'Modo de utilizador único', + 'setting_single_user_mode_explain' => 'Por defeito, o Firefly III só aceita um (1) registo: o seu. Esta é uma medida de segurança, impedindo que outros utilizem a sua plataforma, a menos que permita. Os futuros registos estão bloqueados. Quando desmarcar esta caixa, outros podem utilizar a sua plataforma caso tenham acesso (quando ela estiver conectada à Internet).', + 'store_configuration' => 'Gravar configuração', + 'single_user_administration' => 'Administração de utilizadores para :email', + 'edit_user' => 'Editar utilizador :email', + 'hidden_fields_preferences' => 'Pode ativar mais opções de transações nas suas preferências.', + 'user_data_information' => 'Dados do utilizador', + 'user_information' => 'Informação do utilizador', + 'total_size' => 'tamanho total', + 'budget_or_budgets' => ':count orçamento|:count orçamentos', + 'budgets_with_limits' => ':count orçamento com montante definido|:count orçamentos com montante definido', + 'nr_of_rules_in_total_groups' => ':count_rules regra(s) em :count_groups grupo(s) de regras', + 'tag_or_tags' => ':count etiqueta|:count etiquetas', + 'configuration_updated' => 'A configuração foi atualizada', + 'setting_is_demo_site' => 'Site de demonstração', + 'setting_is_demo_site_explain' => 'Se marcar esta caixa, esta instalação vai funcionar como site de demonstração, o que pode ter efeitos colaterais estranhos.', + 'block_code_bounced' => 'Mensagem(s) de email devolvida(s)', + 'block_code_expired' => 'Conta de demonstração expirada', + 'no_block_code' => 'Sem razão para bloqueio ou utilizador não bloqueado', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'O utilizador ainda não confirmou o novo endereço de email', + 'admin_update_email' => 'Ao contrário da página de perfil, o utilizador NÃO vai ser notificado sobre a alteração do endereço de email!', + 'update_user' => 'Atualizar utilizador', + 'updated_user' => 'Os dados do utilizador foram alterados.', + 'delete_user' => 'Apagar utilizador ":email"', + 'user_deleted' => 'O utilizador foi apagado', + 'send_test_email' => 'Enviar e-mail de teste', + 'send_test_email_text' => 'Para confirmar se a sua instância é capaz de enviar emails ou publicar mensagens no Slack, pressione este botão. Não verá nenhum erro aqui (mesmo que exista), os ficheiros de registo (log) registarão os erros. Pode premir este botão todas as vezes que quiser. Não há controlo de spam. A mensagem será enviada para :email e deve chegar brevemente.', + 'send_message' => 'Enviar mensagem', + 'send_test_triggered' => 'O teste foi activado. Verifique a caixa de entrada e os arquivos de log.', + 'give_admin_careful' => 'Utilizadores que obtiverem direitos de administrador podem remover as suas permissões. Tenha cuidado.', + 'admin_maintanance_title' => 'Manutenção', + 'admin_maintanance_expl' => 'Alguns botões sofisticados para a manutenção do Firefly III', + 'admin_maintenance_clear_cache' => 'Limpar cache', + 'admin_notifications' => 'Notificações administrativas', + 'admin_notifications_expl' => 'As seguintes notificações podem ser ativadas ou desativadas pelo administrador. Se quiser receber essas mensagens através do Slack, defina a URL de "webhook de entrada".', + 'admin_notification_check_user_new_reg' => 'O utilizador recebe mensagem de boas-vindas pós-registo', + 'admin_notification_check_admin_new_reg' => 'O(s) administrador(es) recebe(m) uma notificação de registo de novo utilizador', + 'admin_notification_check_new_version' => 'Está disponível uma nova versão', + 'admin_notification_check_invite_created' => 'Um utilizador foi convidado para o Firefly III', + 'admin_notification_check_invite_redeemed' => 'Foi resgatado um convite de utilizador', + 'all_invited_users' => 'Todos os utilizadores convidados', + 'save_notification_settings' => 'Gravar definições', + 'notification_settings_saved' => 'As definições de notificação foram gravadas', - 'split_transaction_title' => 'Descrição da transação dividida', - 'split_transaction_title_help' => 'Se criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', - 'split_title_help' => 'Se criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', - 'you_create_transfer' => 'Está a criar uma transferência.', - 'you_create_withdrawal' => 'Está a criar um levantamento.', - 'you_create_deposit' => 'Está a criar um depósito.', + 'split_transaction_title' => 'Descrição da transação dividida', + 'split_transaction_title_help' => 'Se criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', + 'split_title_help' => 'Se criar uma transação dividida, deve haver uma descrição global para todas as partes da transação.', + 'you_create_transfer' => 'Está a criar uma transferência.', + 'you_create_withdrawal' => 'Está a criar um levantamento.', + 'you_create_deposit' => 'Está a criar um depósito.', // links - 'journal_link_configuration' => 'Configuração de ligações de transação', - 'create_new_link_type' => 'Criar novo tipo de ligação', - 'store_new_link_type' => 'Guardar novo tipo de ligação', - 'update_link_type' => 'Atualizar tipo de ligação', - 'edit_link_type' => 'Editar tipo de ligação ":name"', - 'updated_link_type' => 'Tipo de ligação ":name" atualizado', - 'delete_link_type' => 'Apagar tipo de ligação ":name"', - 'deleted_link_type' => 'Tipo de ligação ":name" apagado', - 'stored_new_link_type' => 'Guarde novo tipo de ligação ":name"', - 'cannot_edit_link_type' => 'Não é possível editar o tipo de ligação ":name"', - 'link_type_help_name' => 'E.g. "Duplicados"', - 'link_type_help_inward' => 'E.g. "duplicados"', - 'link_type_help_outward' => 'E.g. "é duplicado por"', - 'save_connections_by_moving' => 'Grave a ligação entre estas transações ao mover as mesmas para outro tipo de ligação:', - 'do_not_save_connection' => '(não guardar a ligação)', - 'link_transaction' => 'Ligar transação', - 'link_to_other_transaction' => 'Ligue esta transação a outra transação', - 'select_transaction_to_link' => 'Selecione uma transação à qual ligar esta transação. Estas ligações estão por utilizar no Firefly III (apesar de serem mostradas), mas planeio fazer alterações no futuro. Utilize a caixa de pesquisa para selecionar uma transação pelo título ou pelo ID. Se desejar adicionar ligações feitas à medida, verifique a secção de administração.', - 'this_transaction' => 'Esta transação', - 'transaction' => 'Transação', - 'comments' => 'Comentários', - 'link_notes' => 'Quaisquer notas que deseje guardar com a ligação.', - 'invalid_link_selection' => 'Não é possível ligar estas transações', - 'selected_transaction' => 'Transação selecionada', - 'journals_linked' => 'As transações estão ligadas.', - 'journals_error_linked' => 'Estas transações já estão ligadas.', - 'journals_link_to_self' => 'Não pode ligar uma transação a ela mesma', - 'journal_links' => 'Ligações de transação', - 'this_withdrawal' => 'Este levantamento', - 'this_deposit' => 'Este depósito', - 'this_transfer' => 'Esta transferência', - 'overview_for_link' => 'Visão geral do tipo de ligação ":name"', - 'source_transaction' => 'Transação de origem', - 'link_description' => 'Descrição da ligação', - 'destination_transaction' => 'Transação de destino', - 'delete_journal_link' => 'Apagar a ligação entre :source e :destination', - 'deleted_link' => 'Link apagado', + 'journal_link_configuration' => 'Configuração de ligações de transação', + 'create_new_link_type' => 'Criar novo tipo de ligação', + 'store_new_link_type' => 'Guardar novo tipo de ligação', + 'update_link_type' => 'Atualizar tipo de ligação', + 'edit_link_type' => 'Editar tipo de ligação ":name"', + 'updated_link_type' => 'Tipo de ligação ":name" atualizado', + 'delete_link_type' => 'Apagar tipo de ligação ":name"', + 'deleted_link_type' => 'Tipo de ligação ":name" apagado', + 'stored_new_link_type' => 'Guarde novo tipo de ligação ":name"', + 'cannot_edit_link_type' => 'Não é possível editar o tipo de ligação ":name"', + 'link_type_help_name' => 'E.g. "Duplicados"', + 'link_type_help_inward' => 'E.g. "duplicados"', + 'link_type_help_outward' => 'E.g. "é duplicado por"', + 'save_connections_by_moving' => 'Grave a ligação entre estas transações ao mover as mesmas para outro tipo de ligação:', + 'do_not_save_connection' => '(não guardar a ligação)', + 'link_transaction' => 'Ligar transação', + 'link_to_other_transaction' => 'Ligue esta transação a outra transação', + 'select_transaction_to_link' => 'Selecione uma transação à qual ligar esta transação. Estas ligações estão por utilizar no Firefly III (apesar de serem mostradas), mas planeio fazer alterações no futuro. Utilize a caixa de pesquisa para selecionar uma transação pelo título ou pelo ID. Se desejar adicionar ligações feitas à medida, verifique a secção de administração.', + 'this_transaction' => 'Esta transação', + 'transaction' => 'Transação', + 'comments' => 'Comentários', + 'link_notes' => 'Quaisquer notas que deseje guardar com a ligação.', + 'invalid_link_selection' => 'Não é possível ligar estas transações', + 'selected_transaction' => 'Transação selecionada', + 'journals_linked' => 'As transações estão ligadas.', + 'journals_error_linked' => 'Estas transações já estão ligadas.', + 'journals_link_to_self' => 'Não pode ligar uma transação a ela mesma', + 'journal_links' => 'Ligações de transação', + 'this_withdrawal' => 'Este levantamento', + 'this_deposit' => 'Este depósito', + 'this_transfer' => 'Esta transferência', + 'overview_for_link' => 'Visão geral do tipo de ligação ":name"', + 'source_transaction' => 'Transação de origem', + 'link_description' => 'Descrição da ligação', + 'destination_transaction' => 'Transação de destino', + 'delete_journal_link' => 'Apagar a ligação entre :source e :destination', + 'deleted_link' => 'Link apagado', // link translations: - 'Paid_name' => 'Pago', - 'Refund_name' => 'Reembolso', - 'Reimbursement_name' => 'Reembolso', - 'Related_name' => 'Relacionado', - 'relates to_inward' => 'relacionado com', - 'is (partially) refunded by_inward' => 'e (parcialmente) reembolsado por', - 'is (partially) paid for by_inward' => 'e (parcialmente) pago por', - 'is (partially) reimbursed by_inward' => 'e (parcialmente) reembolsado por', - 'inward_transaction' => 'Transacção interna', - 'outward_transaction' => 'Transacção externa', - 'relates to_outward' => 'refere-se a', - '(partially) refunds_outward' => 'reembolsos (parcialmente)', - '(partially) pays for_outward' => 'paga por (parcialmente)', - '(partially) reimburses_outward' => 'reembolsa (parcialmente)', - 'is (partially) refunded by' => 'é (parcialmente) reembolsado por', - 'is (partially) paid for by' => 'é (parcialmente) pago por', - 'is (partially) reimbursed by' => 'é (parcialmente) reembolsado por', - 'relates to' => 'relacionado com', - '(partially) refunds' => 'reembolsos (parcialmente)', - '(partially) pays for' => 'pago por (parcialmente)', - '(partially) reimburses' => 'reembolsos (parcialmente)', + 'Paid_name' => 'Pago', + 'Refund_name' => 'Reembolso', + 'Reimbursement_name' => 'Reembolso', + 'Related_name' => 'Relacionado', + 'relates to_inward' => 'relacionado com', + 'is (partially) refunded by_inward' => 'e (parcialmente) reembolsado por', + 'is (partially) paid for by_inward' => 'e (parcialmente) pago por', + 'is (partially) reimbursed by_inward' => 'e (parcialmente) reembolsado por', + 'inward_transaction' => 'Transacção interna', + 'outward_transaction' => 'Transacção externa', + 'relates to_outward' => 'refere-se a', + '(partially) refunds_outward' => 'reembolsos (parcialmente)', + '(partially) pays for_outward' => 'paga por (parcialmente)', + '(partially) reimburses_outward' => 'reembolsa (parcialmente)', + 'is (partially) refunded by' => 'é (parcialmente) reembolsado por', + 'is (partially) paid for by' => 'é (parcialmente) pago por', + 'is (partially) reimbursed by' => 'é (parcialmente) reembolsado por', + 'relates to' => 'relacionado com', + '(partially) refunds' => 'reembolsos (parcialmente)', + '(partially) pays for' => 'pago por (parcialmente)', + '(partially) reimburses' => 'reembolsos (parcialmente)', // split a transaction: - 'splits' => 'Divisões', - 'add_another_split' => 'Adicionar outra divisão', - 'cannot_edit_opening_balance' => 'Não pode editar o saldo inicial de uma conta.', - 'no_edit_multiple_left' => 'Não selecionou nenhuma transação válida para editar.', - 'breadcrumb_convert_group' => 'Converter transação', - 'convert_invalid_source' => 'A informação de origem é inválida para a transação #%d.', - 'convert_invalid_destination' => 'A informação de destino é inválida para a transação #%d.', - 'create_another' => 'Depois de guardar, voltar aqui para criar outra.', - 'after_update_create_another' => 'Após atualizar, regresse aqui para continuar a editar.', - 'store_as_new' => 'Guarde como nova transação em vez de atualizar.', - 'reset_after' => 'Reiniciar o formulário após o envio', - 'errors_submission' => 'Algo correu mal com o envio dos dados. Por favor verifique e corrija os erros abaixo.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expandir divisão', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Ocultar divisão', + 'splits' => 'Divisões', + 'add_another_split' => 'Adicionar outra divisão', + 'cannot_edit_opening_balance' => 'Não pode editar o saldo inicial de uma conta.', + 'no_edit_multiple_left' => 'Não selecionou nenhuma transação válida para editar.', + 'breadcrumb_convert_group' => 'Converter transação', + 'convert_invalid_source' => 'A informação de origem é inválida para a transação #%d.', + 'convert_invalid_destination' => 'A informação de destino é inválida para a transação #%d.', + 'create_another' => 'Depois de guardar, voltar aqui para criar outra.', + 'after_update_create_another' => 'Após atualizar, regresse aqui para continuar a editar.', + 'store_as_new' => 'Guarde como nova transação em vez de atualizar.', + 'reset_after' => 'Reiniciar o formulário após o envio', + 'errors_submission' => 'Algo correu mal com o envio dos dados. Por favor verifique e corrija os erros abaixo.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expandir divisão', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Ocultar divisão', // object groups - 'default_group_title_name' => '(não agrupado)', - 'default_group_title_name_plain' => 'sem grupo', + 'default_group_title_name' => '(não agrupado)', + 'default_group_title_name_plain' => 'sem grupo', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Vamos criar uma conta de ativos!', - 'no_accounts_intro_asset' => 'Ainda não tem nenhuma conta de ativos. Contas de ativos são as suas contas principais: a conta à ordem, conta de poupança, conta partilhada ou até o seu cartão de crédito.', - 'no_accounts_imperative_asset' => 'Para começar a usar o Firefly III, tem de criar pelo menos uma conta de ativos. Vamos criá-la agora:', - 'no_accounts_create_asset' => 'Criar uma conta de ativos', - 'no_accounts_title_expense' => 'Vamos criar uma conta de despesas!', - 'no_accounts_intro_expense' => 'Ainda não tem contas de despesas. As contas de despesas servem para os lugares onde gasta dinheiro, como lojas e supermercados.', - 'no_accounts_imperative_expense' => 'As contas de despesas são criadas automaticamente quando cria transações, mas também pode criar uma manualmente, se quiser. Vamos criar uma agora:', - 'no_accounts_create_expense' => 'Criar uma conta de despesas', - 'no_accounts_title_revenue' => 'Vamos criar uma conta de receitas!', - 'no_accounts_intro_revenue' => 'Ainda não tem contas de receita. Contas de receita são os locais de onde recebe dinheiro, como, por exemplo, o seu trabalho.', - 'no_accounts_imperative_revenue' => 'As contas de receita são criadas automaticamente quando cria transações, mas também pode criar uma manualmente, se quiser. Vamos criar uma agora:', - 'no_accounts_create_revenue' => 'Criar uma conta de receitas', - 'no_accounts_title_liabilities' => 'Vamos criar um passivo!', - 'no_accounts_intro_liabilities' => 'Ainda não tem conta de passivos. Contas de passivos é onde se registam dívidas e empréstimos.', - 'no_accounts_imperative_liabilities' => 'Não precisa de utilizar esta funcionalidade, mas pode ser útil se quiser acompanhar estas coisas.', - 'no_accounts_create_liabilities' => 'Criar um passivo', - 'no_budgets_title_default' => 'Vamos criar um orçamento', - 'no_rules_title_default' => 'Vamos criar uma regra', - 'no_budgets_intro_default' => 'Ainda não tem orçamentos. Os orçamentos são usados para organizar as suas despesas em grupos lógicos, que pode usar como limiar para ajudar a limitar as suas despesas.', - 'no_rules_intro_default' => 'Ainda não tem regras. As regras são poderosas automações que podem gerir transações por si.', - 'no_rules_imperative_default' => 'As regras podem ser muito úteis quando gere transações. Vamos criar uma agora:', - 'no_budgets_imperative_default' => 'Os orçamentos são as ferramentas básicas da gestão financeira. Vamos criar um agora:', - 'no_budgets_create_default' => 'Criar um orçamento', - 'no_rules_create_default' => 'Criar uma regra', - 'no_categories_title_default' => 'Vamos criar uma categoria!', - 'no_categories_intro_default' => 'Ainda não tem categorias. As categorias são usadas para ajustar as transacções e rotulá-las para uma categoria especifica.', - 'no_categories_imperative_default' => 'As categorias são criadas automaticamente quando cria transacções, mas também pode criar uma manualmente. Vamos criar uma agora:', - 'no_categories_create_default' => 'Criar uma categoria', - 'no_tags_title_default' => 'Vamos criar uma etiqueta!', - 'no_tags_intro_default' => 'Ainda não tem etiquetas. As etiquetas são usadas para ajustar as transações e rotulá-las com palavras-chave específicas.', - 'no_tags_imperative_default' => 'As etiquetas são criadas automaticamente quando cria transações, mas também pode criá-las manualmente. Vamos criar uma agora:', - 'no_tags_create_default' => 'Criar uma etiqueta', - 'no_transactions_title_withdrawal' => 'Vamos criar uma despesa!', - 'no_transactions_intro_withdrawal' => 'Ainda não tem despesas. Deve criar despesas para começar a gerir as suas finanças.', - 'no_transactions_imperative_withdrawal' => 'Gastou algum dinheiro? Então deveria anotá-lo:', - 'no_transactions_create_withdrawal' => 'Criar despesa', - 'no_transactions_title_deposit' => 'Vamos criar uma receita!', - 'no_transactions_intro_deposit' => 'Ainda não tem rendimentos registados. Deve criar entradas de rendimentos para começar a gerir as suas finanças.', - 'no_transactions_imperative_deposit' => 'Recebeu dinheiro? Então é melhor anotá-lo:', - 'no_transactions_create_deposit' => 'Criar depósito', - 'no_transactions_title_transfers' => 'Vamos criar uma transferência!', - 'no_transactions_intro_transfers' => 'Ainda não tem transferências. Quando movimenta dinheiro entre contas de ativos, fica registado como uma transferência.', - 'no_transactions_imperative_transfers' => 'Movimentou algum dinheiro? Então deve anotá-lo:', - 'no_transactions_create_transfers' => 'Criar transferência', - 'no_piggies_title_default' => 'Vamos criar um mealheiro!', - 'no_piggies_intro_default' => 'Ainda não tem nenhum mealheiro. Pode criar mealheiros para dividir as suas poupanças e acompanhar o objetivo da poupança.', - 'no_piggies_imperative_default' => 'Tem alguma coisa para a qual está a poupar? Crie um mealheiro e acompanhe:', - 'no_piggies_create_default' => 'Criar um novo mealheiro', - 'no_bills_title_default' => 'Vamos criar um encargo!', - 'no_bills_intro_default' => 'Ainda não tem encargos. Pode criar encargos para acompanhar as despesas regulares, como a renda de casa ou seguro.', - 'no_bills_imperative_default' => 'Tem encargos regulares? Crie um encargo e acompanhe os pagamentos:', - 'no_bills_create_default' => 'Criar um encargo', + 'no_accounts_title_asset' => 'Vamos criar uma conta de ativos!', + 'no_accounts_intro_asset' => 'Ainda não tem nenhuma conta de ativos. Contas de ativos são as suas contas principais: a conta à ordem, conta de poupança, conta partilhada ou até o seu cartão de crédito.', + 'no_accounts_imperative_asset' => 'Para começar a usar o Firefly III, tem de criar pelo menos uma conta de ativos. Vamos criá-la agora:', + 'no_accounts_create_asset' => 'Criar uma conta de ativos', + 'no_accounts_title_expense' => 'Vamos criar uma conta de despesas!', + 'no_accounts_intro_expense' => 'Ainda não tem contas de despesas. As contas de despesas servem para os lugares onde gasta dinheiro, como lojas e supermercados.', + 'no_accounts_imperative_expense' => 'As contas de despesas são criadas automaticamente quando cria transações, mas também pode criar uma manualmente, se quiser. Vamos criar uma agora:', + 'no_accounts_create_expense' => 'Criar uma conta de despesas', + 'no_accounts_title_revenue' => 'Vamos criar uma conta de receitas!', + 'no_accounts_intro_revenue' => 'Ainda não tem contas de receita. Contas de receita são os locais de onde recebe dinheiro, como, por exemplo, o seu trabalho.', + 'no_accounts_imperative_revenue' => 'As contas de receita são criadas automaticamente quando cria transações, mas também pode criar uma manualmente, se quiser. Vamos criar uma agora:', + 'no_accounts_create_revenue' => 'Criar uma conta de receitas', + 'no_accounts_title_liabilities' => 'Vamos criar um passivo!', + 'no_accounts_intro_liabilities' => 'Ainda não tem conta de passivos. Contas de passivos é onde se registam dívidas e empréstimos.', + 'no_accounts_imperative_liabilities' => 'Não precisa de utilizar esta funcionalidade, mas pode ser útil se quiser acompanhar estas coisas.', + 'no_accounts_create_liabilities' => 'Criar um passivo', + 'no_budgets_title_default' => 'Vamos criar um orçamento', + 'no_rules_title_default' => 'Vamos criar uma regra', + 'no_budgets_intro_default' => 'Ainda não tem orçamentos. Os orçamentos são usados para organizar as suas despesas em grupos lógicos, que pode usar como limiar para ajudar a limitar as suas despesas.', + 'no_rules_intro_default' => 'Ainda não tem regras. As regras são poderosas automações que podem gerir transações por si.', + 'no_rules_imperative_default' => 'As regras podem ser muito úteis quando gere transações. Vamos criar uma agora:', + 'no_budgets_imperative_default' => 'Os orçamentos são as ferramentas básicas da gestão financeira. Vamos criar um agora:', + 'no_budgets_create_default' => 'Criar um orçamento', + 'no_rules_create_default' => 'Criar uma regra', + 'no_categories_title_default' => 'Vamos criar uma categoria!', + 'no_categories_intro_default' => 'Ainda não tem categorias. As categorias são usadas para ajustar as transacções e rotulá-las para uma categoria especifica.', + 'no_categories_imperative_default' => 'As categorias são criadas automaticamente quando cria transacções, mas também pode criar uma manualmente. Vamos criar uma agora:', + 'no_categories_create_default' => 'Criar uma categoria', + 'no_tags_title_default' => 'Vamos criar uma etiqueta!', + 'no_tags_intro_default' => 'Ainda não tem etiquetas. As etiquetas são usadas para ajustar as transações e rotulá-las com palavras-chave específicas.', + 'no_tags_imperative_default' => 'As etiquetas são criadas automaticamente quando cria transações, mas também pode criá-las manualmente. Vamos criar uma agora:', + 'no_tags_create_default' => 'Criar uma etiqueta', + 'no_transactions_title_withdrawal' => 'Vamos criar uma despesa!', + 'no_transactions_intro_withdrawal' => 'Ainda não tem despesas. Deve criar despesas para começar a gerir as suas finanças.', + 'no_transactions_imperative_withdrawal' => 'Gastou algum dinheiro? Então deveria anotá-lo:', + 'no_transactions_create_withdrawal' => 'Criar despesa', + 'no_transactions_title_deposit' => 'Vamos criar uma receita!', + 'no_transactions_intro_deposit' => 'Ainda não tem rendimentos registados. Deve criar entradas de rendimentos para começar a gerir as suas finanças.', + 'no_transactions_imperative_deposit' => 'Recebeu dinheiro? Então é melhor anotá-lo:', + 'no_transactions_create_deposit' => 'Criar depósito', + 'no_transactions_title_transfers' => 'Vamos criar uma transferência!', + 'no_transactions_intro_transfers' => 'Ainda não tem transferências. Quando movimenta dinheiro entre contas de ativos, fica registado como uma transferência.', + 'no_transactions_imperative_transfers' => 'Movimentou algum dinheiro? Então deve anotá-lo:', + 'no_transactions_create_transfers' => 'Criar transferência', + 'no_piggies_title_default' => 'Vamos criar um mealheiro!', + 'no_piggies_intro_default' => 'Ainda não tem nenhum mealheiro. Pode criar mealheiros para dividir as suas poupanças e acompanhar o objetivo da poupança.', + 'no_piggies_imperative_default' => 'Tem alguma coisa para a qual está a poupar? Crie um mealheiro e acompanhe:', + 'no_piggies_create_default' => 'Criar um novo mealheiro', + 'no_bills_title_default' => 'Vamos criar um encargo!', + 'no_bills_intro_default' => 'Ainda não tem encargos. Pode criar encargos para acompanhar as despesas regulares, como a renda de casa ou seguro.', + 'no_bills_imperative_default' => 'Tem encargos regulares? Crie um encargo e acompanhe os pagamentos:', + 'no_bills_create_default' => 'Criar um encargo', // recurring transactions - 'create_right_now' => 'Criar agora', - 'no_new_transaction_in_recurrence' => 'Não foi criada nenhuma transação nova. Talvez já tenha sido acionada nesta data?', - 'recurrences' => 'Transações recorrentes', - 'repeat_until_in_past' => 'Esta transação recorrente parou de ocorrer a :date.', - 'recurring_calendar_view' => 'Calendário', - 'no_recurring_title_default' => 'Vamos criar uma transação recorrente!', - 'no_recurring_intro_default' => 'Ainda não tem nenhuma transação recorrente. Pode usá-las para que o Firefly III crie transações automaticamente.', - 'no_recurring_imperative_default' => 'Esta é uma funcionalidade avançada, mas pode ser extremamente útil. Certifique-se de que lê a documentação (?)-ícone no canto superior direito) antes de continuar.', - 'no_recurring_create_default' => 'Criar uma transação recorrente', - 'make_new_recurring' => 'Criar transação recorrente', - 'recurring_daily' => 'Todos os dias', - 'recurring_weekly' => 'Semanalmente à(ao) :weekday', - 'recurring_weekly_skip' => 'A cada :skipª semana no :weekday dia', - 'recurring_monthly' => 'Todos os meses no dia :dayOfMonth', - 'recurring_monthly_skip' => 'A cada :skip meses no dia :dayOfMonth', - 'recurring_ndom' => 'Todos os meses no dia :dayOfMonth :weekday', - 'recurring_yearly' => 'Todos os anos em :date', - 'overview_for_recurrence' => 'Visão geral da transação recorrente ":title"', - 'warning_duplicates_repetitions' => 'Em raras ocasiões, as datas aparecem duas vezes nesta lista. Isso pode acontecer quando várias repetições colidem. O Firefly III irá gerar sempre uma transação por dia.', - 'created_transactions' => 'Transações relacionadas', - 'expected_withdrawals' => 'Levantamentos esperados', - 'expected_deposits' => 'Depósitos esperados', - 'expected_transfers' => 'Transferências esperadas', - 'created_withdrawals' => 'Levantamentos criados', - 'created_deposits' => 'Depósitos criados', - 'created_transfers' => 'Transferência criada', - 'recurring_info' => 'Transação recorrente :count / :total', - 'created_from_recurrence' => 'Criado a partir da transação recorrente ":title" (#:id)', - 'recurring_never_cron' => 'Aparentemente o cron job necessário para suportar transações recorrentes nunca foi executado. Isto é algo normal quando acaba de instalar o Firefly III, no entanto isto deve ser configurado o mais rápido possível. Por favor verifique as páginas de ajuda no ícone-(?) no canto superior direito da página.', - 'recurring_cron_long_ago' => 'Parece que a última vez que o cron job que trata das transações recorrentes correu foi há mais de 36 horas desde a ultima vez. Têm a certeza que está configurado corretamente? Por favor verifique as páginas de ajuda através do ícone-(?) no canto superior direito da página.', + 'create_right_now' => 'Criar agora', + 'no_new_transaction_in_recurrence' => 'Não foi criada nenhuma transação nova. Talvez já tenha sido acionada nesta data?', + 'recurrences' => 'Transações recorrentes', + 'repeat_until_in_past' => 'Esta transação recorrente parou de ocorrer a :date.', + 'recurring_calendar_view' => 'Calendário', + 'no_recurring_title_default' => 'Vamos criar uma transação recorrente!', + 'no_recurring_intro_default' => 'Ainda não tem nenhuma transação recorrente. Pode usá-las para que o Firefly III crie transações automaticamente.', + 'no_recurring_imperative_default' => 'Esta é uma funcionalidade avançada, mas pode ser extremamente útil. Certifique-se de que lê a documentação (?)-ícone no canto superior direito) antes de continuar.', + 'no_recurring_create_default' => 'Criar uma transação recorrente', + 'make_new_recurring' => 'Criar transação recorrente', + 'recurring_daily' => 'Todos os dias', + 'recurring_weekly' => 'Semanalmente à(ao) :weekday', + 'recurring_weekly_skip' => 'A cada :skipª semana no :weekday dia', + 'recurring_monthly' => 'Todos os meses no dia :dayOfMonth', + 'recurring_monthly_skip' => 'A cada :skip meses no dia :dayOfMonth', + 'recurring_ndom' => 'Todos os meses no dia :dayOfMonth :weekday', + 'recurring_yearly' => 'Todos os anos em :date', + 'overview_for_recurrence' => 'Visão geral da transação recorrente ":title"', + 'warning_duplicates_repetitions' => 'Em raras ocasiões, as datas aparecem duas vezes nesta lista. Isso pode acontecer quando várias repetições colidem. O Firefly III irá gerar sempre uma transação por dia.', + 'created_transactions' => 'Transações relacionadas', + 'expected_withdrawals' => 'Levantamentos esperados', + 'expected_deposits' => 'Depósitos esperados', + 'expected_transfers' => 'Transferências esperadas', + 'created_withdrawals' => 'Levantamentos criados', + 'created_deposits' => 'Depósitos criados', + 'created_transfers' => 'Transferência criada', + 'recurring_info' => 'Transação recorrente :count / :total', + 'created_from_recurrence' => 'Criado a partir da transação recorrente ":title" (#:id)', + 'recurring_never_cron' => 'Aparentemente o cron job necessário para suportar transações recorrentes nunca foi executado. Isto é algo normal quando acaba de instalar o Firefly III, no entanto isto deve ser configurado o mais rápido possível. Por favor verifique as páginas de ajuda no ícone-(?) no canto superior direito da página.', + 'recurring_cron_long_ago' => 'Parece que a última vez que o cron job que trata das transações recorrentes correu foi há mais de 36 horas desde a ultima vez. Têm a certeza que está configurado corretamente? Por favor verifique as páginas de ajuda através do ícone-(?) no canto superior direito da página.', - 'create_new_recurrence' => 'Criar nova transação recorrente', - 'help_first_date' => 'Indique a primeira recorrência esperada. Isto deve ser no futuro.', - 'help_first_date_no_past' => 'Indique a primeira recorrência esperada. O Firefly III não irá criar transações recorrentes no passado.', - 'no_currency' => '(sem moeda)', - 'mandatory_for_recurring' => 'Informações de recorrência obrigatórias', - 'mandatory_for_transaction' => 'Informações obrigatórias de transação', - 'optional_for_recurring' => 'Opcional informação recorrente', - 'optional_for_transaction' => 'Opcional informação de transação', - 'change_date_other_options' => 'Altere a "primeira data" para ver mais opções.', - 'mandatory_fields_for_tranaction' => 'Os valores aqui presentes vão acabar na(s) transação(ões) a serem criadas', - 'click_for_calendar' => 'Carregue aqui para ver um calendário que mostra quando a transação irá repetir.', - 'repeat_forever' => 'Repetir para sempre', - 'repeat_until_date' => 'Repetir até uma data', - 'repeat_times' => 'Repetir um número de vezes', - 'recurring_skips_one' => 'Alternado', - 'recurring_skips_more' => 'Saltar :count ocorrências', - 'store_new_recurrence' => 'Guardar transação recorrente', - 'stored_new_recurrence' => 'Transação recorrente ":title" guardada com sucesso.', - 'edit_recurrence' => 'Editar transação recorrente ":title"', - 'recurring_repeats_until' => 'Repete até :date', - 'recurring_repeats_forever' => 'Repetir para sempre', - 'recurring_repeats_x_times' => 'Repete :count vez|Repete :count vezes', - 'update_recurrence' => 'Atualizar transação recorrente', - 'updated_recurrence' => 'Atualizar transação recorrente ":title"', - 'recurrence_is_inactive' => 'Esta transação recorrente não está ativada e não serão geradas novas transações.', - 'delete_recurring' => 'Apagar transação recorrente ":title"', - 'new_recurring_transaction' => 'Nova transação recorrente', - 'help_weekend' => 'O que deve fazer o Firefly III quando uma transação recorrente ocorre num sábado ou domingo?', - 'do_nothing' => 'Crie só a transação', - 'skip_transaction' => 'Saltar a ocorrência', - 'jump_to_friday' => 'Criar antes uma transação na sexta-feira passada', - 'jump_to_monday' => 'Criar antes a transação na próxima segunda-feira', - 'will_jump_friday' => 'Será criada na sexta-feira em vez de nos fins de semana.', - 'will_jump_monday' => 'Será criada na segunda-feira em vez de nos fins de semana.', - 'except_weekends' => 'Exceto fins de semana', - 'recurrence_deleted' => 'Transação recorrente ":title" apagada', + 'create_new_recurrence' => 'Criar nova transação recorrente', + 'help_first_date' => 'Indique a primeira recorrência esperada. Isto deve ser no futuro.', + 'help_first_date_no_past' => 'Indique a primeira recorrência esperada. O Firefly III não irá criar transações recorrentes no passado.', + 'no_currency' => '(sem moeda)', + 'mandatory_for_recurring' => 'Informações de recorrência obrigatórias', + 'mandatory_for_transaction' => 'Informações obrigatórias de transação', + 'optional_for_recurring' => 'Opcional informação recorrente', + 'optional_for_transaction' => 'Opcional informação de transação', + 'change_date_other_options' => 'Altere a "primeira data" para ver mais opções.', + 'mandatory_fields_for_tranaction' => 'Os valores aqui presentes vão acabar na(s) transação(ões) a serem criadas', + 'click_for_calendar' => 'Carregue aqui para ver um calendário que mostra quando a transação irá repetir.', + 'repeat_forever' => 'Repetir para sempre', + 'repeat_until_date' => 'Repetir até uma data', + 'repeat_times' => 'Repetir um número de vezes', + 'recurring_skips_one' => 'Alternado', + 'recurring_skips_more' => 'Saltar :count ocorrências', + 'store_new_recurrence' => 'Guardar transação recorrente', + 'stored_new_recurrence' => 'Transação recorrente ":title" guardada com sucesso.', + 'edit_recurrence' => 'Editar transação recorrente ":title"', + 'recurring_repeats_until' => 'Repete até :date', + 'recurring_repeats_forever' => 'Repetir para sempre', + 'recurring_repeats_x_times' => 'Repete :count vez|Repete :count vezes', + 'update_recurrence' => 'Atualizar transação recorrente', + 'updated_recurrence' => 'Atualizar transação recorrente ":title"', + 'recurrence_is_inactive' => 'Esta transação recorrente não está ativada e não serão geradas novas transações.', + 'delete_recurring' => 'Apagar transação recorrente ":title"', + 'new_recurring_transaction' => 'Nova transação recorrente', + 'help_weekend' => 'O que deve fazer o Firefly III quando uma transação recorrente ocorre num sábado ou domingo?', + 'do_nothing' => 'Crie só a transação', + 'skip_transaction' => 'Saltar a ocorrência', + 'jump_to_friday' => 'Criar antes uma transação na sexta-feira passada', + 'jump_to_monday' => 'Criar antes a transação na próxima segunda-feira', + 'will_jump_friday' => 'Será criada na sexta-feira em vez de nos fins de semana.', + 'will_jump_monday' => 'Será criada na segunda-feira em vez de nos fins de semana.', + 'except_weekends' => 'Exceto fins de semana', + 'recurrence_deleted' => 'Transação recorrente ":title" apagada', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Saldo (:currency)', - 'box_spent_in_currency' => 'Gasto (:currency)', - 'box_earned_in_currency' => 'Ganho (:currency)', - 'box_budgeted_in_currency' => 'Orçamentado (:currency)', - 'box_bill_paid_in_currency' => 'Encargos pagos (:currency)', - 'box_bill_unpaid_in_currency' => 'Encargos por pagar (:currency)', - 'box_left_to_spend_in_currency' => 'Restante para gastar (:currency)', - 'box_net_worth_in_currency' => 'Valor líquido (:currency)', - 'box_spend_per_day' => 'Restante para gastar por dia: :amount', + 'box_balance_in_currency' => 'Saldo (:currency)', + 'box_spent_in_currency' => 'Gasto (:currency)', + 'box_earned_in_currency' => 'Ganho (:currency)', + 'box_budgeted_in_currency' => 'Orçamentado (:currency)', + 'box_bill_paid_in_currency' => 'Encargos pagos (:currency)', + 'box_bill_unpaid_in_currency' => 'Encargos por pagar (:currency)', + 'box_left_to_spend_in_currency' => 'Restante para gastar (:currency)', + 'box_net_worth_in_currency' => 'Valor líquido (:currency)', + 'box_spend_per_day' => 'Restante para gastar por dia: :amount', // debug page - 'debug_page' => 'Página de depuração', - 'debug_submit_instructions' => 'Se estiver com problemas, pode utilizar a informação desta caixa como informação de depuração. Por favor, copie e cole a mesma numa questão GitHub nova ou existente. Será gerada uma bonita tabela que pode ser usada como diagnóstico rápido do seu problema.', - 'debug_pretty_table' => 'Se copiar e colar o conteúdo da caixa abaixo numa questão do GitHub será gerada uma tabela. Por favor, não envolva o texto com acentos ou aspas.', - 'debug_additional_data' => 'Pode também partilhar o conteúdo da caixa abaixo. Pode copiar e colar a mesma numa questão GitHub novo ou existente. No entanto, o conteúdo da caixa abaixo pode conter informação privada como nomes de contas, detalhes de transações, ou endereços de email.', + 'debug_page' => 'Página de depuração', + 'debug_submit_instructions' => 'Se estiver com problemas, pode utilizar a informação desta caixa como informação de depuração. Por favor, copie e cole a mesma numa questão GitHub nova ou existente. Será gerada uma bonita tabela que pode ser usada como diagnóstico rápido do seu problema.', + 'debug_pretty_table' => 'Se copiar e colar o conteúdo da caixa abaixo numa questão do GitHub será gerada uma tabela. Por favor, não envolva o texto com acentos ou aspas.', + 'debug_additional_data' => 'Pode também partilhar o conteúdo da caixa abaixo. Pode copiar e colar a mesma numa questão GitHub novo ou existente. No entanto, o conteúdo da caixa abaixo pode conter informação privada como nomes de contas, detalhes de transações, ou endereços de email.', // object groups - 'object_groups_menu_bar' => 'Grupos', - 'object_groups_page_title' => 'Grupos', - 'object_groups_breadcrumb' => 'Grupos', - 'object_groups_index' => 'Visão geral', - 'object_groups' => 'Grupos', - 'object_groups_empty_explain' => 'Alguns elementos no Firefly III podem ser divididos em grupos. Os mealheiros, por exemplo, têm um campo "Grupo" nos ecrãs de criaçao e edição. Quando esse campo é definido, pode alterar os nomes e a ordem dos grupos nesta página. Para mais informação, veja a ajuda existente no canto superior direito, no botão com ícone-(?).', - 'object_group_title' => 'Título', - 'edit_object_group' => 'Editar grupo ":title"', - 'delete_object_group' => 'Apagar grupo ":title"', - 'update_object_group' => 'Atualizar grupo', - 'updated_object_group' => 'Grupo ":title" atualizado com sucesso', - 'deleted_object_group' => 'Grupo ":title" apagado com sucesso', - 'object_group' => 'Grupo', + 'object_groups_menu_bar' => 'Grupos', + 'object_groups_page_title' => 'Grupos', + 'object_groups_breadcrumb' => 'Grupos', + 'object_groups_index' => 'Visão geral', + 'object_groups' => 'Grupos', + 'object_groups_empty_explain' => 'Alguns elementos no Firefly III podem ser divididos em grupos. Os mealheiros, por exemplo, têm um campo "Grupo" nos ecrãs de criaçao e edição. Quando esse campo é definido, pode alterar os nomes e a ordem dos grupos nesta página. Para mais informação, veja a ajuda existente no canto superior direito, no botão com ícone-(?).', + 'object_group_title' => 'Título', + 'edit_object_group' => 'Editar grupo ":title"', + 'delete_object_group' => 'Apagar grupo ":title"', + 'update_object_group' => 'Atualizar grupo', + 'updated_object_group' => 'Grupo ":title" atualizado com sucesso', + 'deleted_object_group' => 'Grupo ":title" apagado com sucesso', + 'object_group' => 'Grupo', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Detalhes do registo (log) de auditoria', - 'ale_action_log_add' => 'Adicionado :amount ao mealheiro ":name"', - 'ale_action_log_remove' => 'Removido :amount do mealheiro ":name"', - 'ale_action_clear_budget' => 'Removido do orçamento', - 'ale_action_update_group_title' => 'Título atualizado do grupo de transações', - 'ale_action_update_date' => 'Data da transação atualizada', - 'ale_action_update_order' => 'Ordem de transação atualizada', - 'ale_action_clear_category' => 'Removido da categoria', - 'ale_action_clear_notes' => 'Notas removidas', - 'ale_action_clear_tag' => 'Etiqueta limpa', - 'ale_action_clear_all_tags' => 'Apagadas todas as etiquetas', - 'ale_action_set_bill' => 'Ligado a encargo', - 'ale_action_switch_accounts' => 'Conta de origem e destino alternados', - 'ale_action_set_budget' => 'Definir orçamento', - 'ale_action_set_category' => 'Definir categoria', - 'ale_action_set_source' => 'Definir conta de origem', - 'ale_action_set_destination' => 'Definir conta de destino', - 'ale_action_update_transaction_type' => 'Tipo de transação alterado', - 'ale_action_update_notes' => 'Notas alteradas', - 'ale_action_update_description' => 'Descrição alterada', - 'ale_action_add_to_piggy' => 'Mealheiro', - 'ale_action_remove_from_piggy' => 'Mealheiro', - 'ale_action_add_tag' => 'Etiqueta adicionada', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Detalhes do registo (log) de auditoria', + 'ale_action_log_add' => 'Adicionado :amount ao mealheiro ":name"', + 'ale_action_log_remove' => 'Removido :amount do mealheiro ":name"', + 'ale_action_clear_budget' => 'Removido do orçamento', + 'ale_action_update_group_title' => 'Título atualizado do grupo de transações', + 'ale_action_update_date' => 'Data da transação atualizada', + 'ale_action_update_order' => 'Ordem de transação atualizada', + 'ale_action_clear_category' => 'Removido da categoria', + 'ale_action_clear_notes' => 'Notas removidas', + 'ale_action_clear_tag' => 'Etiqueta limpa', + 'ale_action_clear_all_tags' => 'Apagadas todas as etiquetas', + 'ale_action_set_bill' => 'Ligado a encargo', + 'ale_action_switch_accounts' => 'Conta de origem e destino alternados', + 'ale_action_set_budget' => 'Definir orçamento', + 'ale_action_set_category' => 'Definir categoria', + 'ale_action_set_source' => 'Definir conta de origem', + 'ale_action_set_destination' => 'Definir conta de destino', + 'ale_action_update_transaction_type' => 'Tipo de transação alterado', + 'ale_action_update_notes' => 'Notas alteradas', + 'ale_action_update_description' => 'Descrição alterada', + 'ale_action_add_to_piggy' => 'Mealheiro', + 'ale_action_remove_from_piggy' => 'Mealheiro', + 'ale_action_add_tag' => 'Etiqueta adicionada', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Ativar a conversão de moeda', - 'disable_auto_convert' => 'Destaivar a conversão de moeda', + 'enable_auto_convert' => 'Ativar a conversão de moeda', + 'disable_auto_convert' => 'Destaivar a conversão de moeda', ]; /* diff --git a/resources/lang/pt_PT/validation.php b/resources/lang/pt_PT/validation.php index ab35bfdd94..74611af712 100644 --- a/resources/lang/pt_PT/validation.php +++ b/resources/lang/pt_PT/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Não tem as permissões de acesso necessárias para esta administração.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/ro_RO/firefly.php b/resources/lang/ro_RO/firefly.php index e14c5b3421..002c1a813a 100644 --- a/resources/lang/ro_RO/firefly.php +++ b/resources/lang/ro_RO/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Închide', - 'actions' => 'Acțiuni', - 'edit' => 'Editează', - 'delete' => 'Șterge', - 'split' => 'Împarte', - 'single_split' => 'Împarte', - 'clone' => 'Clonă', - 'clone_and_edit' => 'Clonează și editează', - 'confirm_action' => 'Confirmare acțiune', - 'last_seven_days' => 'Ultimele 7 zile', - 'last_thirty_days' => 'Ultimele 30 de zile', - 'last_180_days' => 'Ultimele 180 de zile', - 'month_to_date' => 'Luna aceasta', - 'year_to_date' => 'De la începutul anului', - 'YTD' => 'YTD', - 'welcome_back' => 'Ce se redă?', - 'everything' => 'Tot', - 'today' => 'Azi', - 'customRange' => 'Intervalul personalizat', - 'date_range' => 'Interval de date', - 'apply' => 'Aplică', - 'select_date' => 'Selectează data..', - 'cancel' => 'Anulare', - 'from' => 'De la', - 'to' => 'Către', - 'structure' => 'Structură', - 'help_translating' => 'Acest text de ajutor nu este încă disponibil în limba dvs.', - 'showEverything' => 'Afișați totul', - 'never' => 'Niciodată', - 'no_results_for_empty_search' => 'Căutarea dvs. a fost goală, deci nu a fost găsit nimic.', - 'removed_amount' => ':amount eliminată', - 'added_amount' => ':amount adaugată', - 'asset_account_role_help' => 'Opțiunile suplimentare rezultate din alegerea dvs. pot fi setate mai târziu.', - 'Opening balance' => 'Soldul de deschidere', - 'create_new_stuff' => 'Creați lucruri noi', - 'new_withdrawal' => 'Tranzacție nouă', - 'create_new_transaction' => 'Creați o tranzacție nouă', - 'sidebar_frontpage_create' => 'Crează', - 'new_transaction' => 'Tranzacţie nouă', - 'no_rules_for_bill' => 'Acestă factură nu are asociate reguli.', - 'go_to_asset_accounts' => 'Vizualizați conturile de active', - 'go_to_budgets' => 'Mergi la bugete', - 'go_to_withdrawals' => 'Mergi la retragerile tale', - 'clones_journal_x' => 'Această tranzacție este o clonă a ":description" (#:id)', - 'go_to_categories' => 'Mergi la categorii', - 'go_to_bills' => 'Mergi la facturi', - 'go_to_expense_accounts' => 'Vezi cheltuielile contabile', - 'go_to_revenue_accounts' => 'Vezi contul de venituris', - 'go_to_piggies' => 'Mergi la pușculiță', - 'new_deposit' => 'Depunere nouă', - 'new_transfer' => 'Transfer nou', - 'new_transfers' => 'Transferuri noi', - 'new_asset_account' => 'Cont nou de activ', - 'new_expense_account' => 'Cont nou de cheltuieli', - 'new_revenue_account' => 'Cont nou pentru venituri', - 'new_liabilities_account' => 'Provizion nou', - 'new_budget' => 'Buget nou', - 'new_bill' => 'Factură nouă', - 'block_account_logout' => 'Ai fost deconectat. Conturile blocate nu pot utiliza acest site. Ați înregistrat o adresă de e-mail validă?', - 'flash_success' => 'Succes!', - 'flash_info' => 'Mesaj', - 'flash_warning' => 'Avertizare!', - 'flash_error' => 'Eroare!', - 'flash_danger' => 'Pericol!', - 'flash_info_multiple' => 'Există un mesaj | Există :count mesaje', - 'flash_error_multiple' => 'Există o singură eroare | Există :count erori', - 'net_worth' => 'Valoarea netă', - 'help_for_this_page' => 'Ajutor pentru această pagină', - 'help_for_this_page_body' => 'Mai multe informații despre această pagină în documentația.', - 'two_factor_welcome' => 'Bună ziua!', - 'two_factor_enter_code' => 'Pentru a continua, introduceți codul dvs. de autentificare cu doi factori. Aplicația dvs. o poate genera pentru dvs.', - 'two_factor_code_here' => 'Introdu codul aici', - 'two_factor_title' => 'Autentificare cu doi factori', - 'authenticate' => 'Autentificare', - 'two_factor_forgot_title' => 'S-a pierdut autentificarea cu doi factori', - 'two_factor_forgot' => 'Am uitat autentificarea cu doi factori.', - 'two_factor_lost_header' => 'Ai uitat autentificarea cu doi factori?', - 'two_factor_lost_intro' => 'Dacă ați pierdut și codurile de rezervă, aveți ghinion. Nu este un lucru pe care îl puteți remedia din interfața web. Aveți două opțiuni.', - 'two_factor_lost_fix_self' => 'Dacă executați propria instanță, verificați jurnalele din storage / logs pentru instrucțiuni.', - 'two_factor_lost_fix_owner' => 'În caz contrar, trimiteți prin e-mail proprietarului site-ului : proprietarul site-ului și solicitați-i să reseteze autentificarea cu doi factori.', - 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', - 'pref_two_factor_new_backup_codes' => 'Obțineți noi coduri de rezervă', - 'pref_two_factor_backup_code_count' => 'Aveți :count cod valid pentru copia de rezervă. Aveți :count coduri de rezervă valide.', - '2fa_i_have_them' => 'Le-am depozitat!', - 'warning_much_data' => ':days zilele de date pot dura o perioadă până încărcare.', - 'registered' => 'Te-ai inregistrat cu succes!', - 'Default asset account' => 'Cont de active implicit', - 'no_budget_pointer' => 'Se pare că nu aveți încă bugete. Ar trebui să creați câteva pe pagina bugete. Bugetele vă pot ajuta să țineți evidența cheltuielilor.', - 'no_bill_pointer' => 'Se pare că nu aveți încă facturi. Ar trebui să creați unele pe pagina facturi. Facturile vă pot ajuta să țineți evidența cheltuielilor.', - 'Savings account' => 'Cont de economii', - 'Credit card' => 'Card de credit', - 'source_accounts' => 'Contul sursă | Conturi sursă', - 'destination_accounts' => 'Contul destinației | Conturile de destinație', - 'user_id_is' => 'ID-ul dvs. de utilizator este :user', - 'field_supports_markdown' => 'Acest câmp acceptă Markdown HTML.', - 'need_more_help' => 'Dacă aveți nevoie de ajutor suplimentar, deschideți un tichet pe Github.', - 'reenable_intro_text' => 'De asemenea, puteți să activați din nou ghidul de introducere .', - 'intro_boxes_after_refresh' => 'Cutiile de introducere vor apărea din nou atunci când actualizați pagina.', - 'show_all_no_filter' => 'Afișați toate tranzacțiile fără a le grupa după dată.', - 'expenses_by_category' => 'Cheltuieli pe categorii', - 'expenses_by_budget' => 'Cheltuieli pe buget', - 'income_by_category' => 'Venituri pe categorii', - 'expenses_by_asset_account' => 'Cheltuieli pe cont de activ', - 'expenses_by_expense_account' => 'Cheltuieli pe cont de cheltuieli', - 'cannot_redirect_to_account' => 'Nu vă putem redirecționa către pagina corectă. Scuze.', - 'sum_of_expenses' => 'Suma cheltuielilor', - 'sum_of_income' => 'Suma veniturilor', - 'liabilities' => 'Provizioane', - 'spent_in_specific_budget' => 'Cheltuit în bugetul ":budget"', - 'spent_in_specific_double' => 'Cheltuit în contul ":account"', - 'earned_in_specific_double' => 'Câștigat în contul ":account"', - 'source_account' => 'Contul sursă', - 'source_account_reconciliation' => 'Nu puteți edita contul sursă al unei tranzacții de reconciliere.', - 'destination_account' => 'Contul de destinație', - 'destination_account_reconciliation' => 'Nu puteți edita contul de destinație al unei tranzacții de reconciliere.', - 'sum_of_expenses_in_budget' => 'Cheltuielile totale în bugetul ":budget"', - 'left_in_budget_limit' => 'Rest de chetuit ăn funcție de buget', - 'current_period' => 'Perioada curentă', - 'show_the_current_period_and_overview' => 'Afișați perioada curentă și prezentarea generală', - 'pref_languages_locale' => 'Pentru ca o altă limbă decât limba engleză să funcționeze corect, sistemul dvs. de operare trebuie să fie dotat cu informațiile de localizare corecte. Dacă acestea nu sunt prezente, datele valutare, datele și sumele pot fi formatate greșit.', - 'budget_in_period' => 'Toate tranzacțiile pentru bugetul ":name" între :start și :end în :currency', - 'chart_budget_in_period' => 'Graficul cu toate tranzacțiile pentru bugetul ":name" între :start și :end în :currency', - 'chart_budget_in_period_only_currency' => 'Suma bugetată a fost în :currency, astfel încât acest grafic va afișa numai tranzacții în :currency.', - 'chart_account_in_period' => 'Graficul cu toate tranzacțiile pentru contul ":name" (:balance) între :start și :end', - 'chart_category_in_period' => 'Graficul cu toate tranzacțiile pentru categoria ":name" între :start și :end', - 'chart_category_all' => 'Graficul cu toate tranzacțiile pentru categoria ":name"', - 'clone_withdrawal' => 'Clonați această retragere', - 'clone_deposit' => 'Clonați această depozit', - 'clone_transfer' => 'Clonați această transfer', - 'multi_select_no_selection' => 'Nimic selectat', - 'multi_select_select_all' => 'Selectează tot', - 'multi_select_n_selected' => 'selectat', - 'multi_select_all_selected' => 'Toate selectate', - 'multi_select_filter_placeholder' => 'Gasește..', - 'intro_next_label' => 'Următor', - 'intro_prev_label' => 'Anterior', - 'intro_skip_label' => 'Treci peste', - 'intro_done_label' => 'Finalizat', - 'between_dates_breadcrumb' => 'între :start și :end', - 'all_journals_without_budget' => 'Toate tranzacțiile fără un buget', - 'journals_without_budget' => 'Tranzacții fără un buget', - 'all_journals_without_category' => 'Toate tranzacțiile fără o categorie', - 'journals_without_category' => 'Tranzacții fără o categorie', - 'all_journals_for_account' => 'Toate tranzacțiile pentru contul :name', - 'chart_all_journals_for_account' => 'Graficul tuturor tranzacțiilor pentru contul :name', - 'journals_in_period_for_account' => 'Toate tranzacțiile pentru contul :name între :start și :end', - 'journals_in_period_for_account_js' => 'Toate tranzacțiile pentru contul {title} între {start} și {end}', - 'transferred' => 'Transferat', - 'all_withdrawal' => 'Toate cheltuielile', - 'all_transactions' => 'Toate tranzacțiile', - 'title_withdrawal_between' => 'Toate cheltuielile între :start și :end', - 'all_deposit' => 'Toate veniturile', - 'title_deposit_between' => 'Toate veniturile între :start și :end', - 'all_transfers' => 'Toate transferurile', - 'title_transfers_between' => 'Toate transferurile între :start și :end', - 'all_transfer' => 'Toate transferurile', - 'all_journals_for_tag' => 'Toate tranzacțiile pentru eticheta ":tag"', - 'title_transfer_between' => 'Toate transferurile între :start și :end', - 'all_journals_for_category' => 'Toate tranzacțiile pentru categoria :name', - 'all_journals_for_budget' => 'Toate tranzacțiile pentru bugetul :name', - 'chart_all_journals_for_budget' => 'Graficul cu toate tranzacțiile pentru bugetul :name', - 'journals_in_period_for_category' => 'Toate tranzacțiile pentru categoria :name între :start și :end', - 'journals_in_period_for_tag' => 'Toate tranzacțiile pentru eticheta :tag între :start și :end', - 'not_available_demo_user' => 'Funcția pe care încercați să o accesați nu este disponibilă pentru demo.', - 'exchange_rate_instructions' => 'Contul de active "@name" acceptă numai tranzacțiile în @native_currency. Dacă doriți să utilizați în schimb @foreign_currency asigurați-vă că suma din @native_currency este cunoscută, de asemenea:', - 'transfer_exchange_rate_instructions' => 'Sursa contului de active "@source_name" acceptă numai tranzacțiile în @source_currency. Destinația contului de active "@dest_name" acceptă numai tranzacțiile în @dest_currency. Trebuie să furnizați corect suma transferată în ambele valute.', - 'transaction_data' => 'Datele tranzacției', - 'invalid_server_configuration' => 'Configurația serverului este nevalidă', - 'invalid_locale_settings' => 'Firefly III nu poate formata sumele deoarece serverului dumneavoastră îi lipsesc pachetele necesare. Există instrucțiuni cum să faci acest lucru.', - 'quickswitch' => 'Schimbare rapida', - 'sign_in_to_start' => 'Logați-vă pentru a începe sesiunea', - 'sign_in' => 'Logare', - 'register_new_account' => 'Înregistrați un nou cont', - 'forgot_my_password' => 'Am uitat parola', - 'problems_with_input' => 'Sunt probleme cu input-ul dvs.', - 'reset_password' => 'Reseteaza parola', - 'button_reset_password' => 'Reseteaza parola', - 'reset_button' => 'Reseteaza', - 'want_to_login' => 'Vreau sa mă loghez', - 'login_page_title' => 'Logare', - 'register_page_title' => 'Înregistrare', - 'forgot_pw_page_title' => 'Am uitat parola', - 'reset_pw_page_title' => 'Reseteaza parola', - 'cannot_reset_demo_user' => 'Nu puteți reseta parola utilizatorului demo.', - 'no_att_demo_user' => 'Utilizatorul demo nu poate încărca atașamente.', - 'button_register' => 'Înregistrare', - 'authorization' => 'Autorizare', - 'active_bills_only' => 'numai facturi active', - 'active_bills_only_total' => 'toate facturile active', - 'active_exp_bills_only' => 'numai facturi active și așteptate', - 'active_exp_bills_only_total' => 'numai facturi active și așteptate', - 'per_period_sum_1D' => 'Costurile zilnice preconizate', - 'per_period_sum_1W' => 'Costurile săptămânale preconizate', - 'per_period_sum_1M' => 'Costuri lunare estimate', - 'per_period_sum_3M' => 'Costuri trimestriale preconizate', - 'per_period_sum_6M' => 'Costuri semestriale preconizate', - 'per_period_sum_1Y' => 'Costuri anuale preconizate', - 'average_per_bill' => 'media pe factură', - 'expected_total' => 'total așteptat', - 'reconciliation_account_name' => ':name reconciliere (:currency)', - 'saved' => 'Salvat', - 'advanced_options' => 'Opțiuni avansate', - 'advanced_options_explain' => 'Unele pagini din Firefly III au opțiuni avansate ascunse în spatele acestui buton. Această pagină nu are nimic extravagant aici, dar verifică celelalte!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Închide', + 'actions' => 'Acțiuni', + 'edit' => 'Editează', + 'delete' => 'Șterge', + 'split' => 'Împarte', + 'single_split' => 'Împarte', + 'clone' => 'Clonă', + 'clone_and_edit' => 'Clonează și editează', + 'confirm_action' => 'Confirmare acțiune', + 'last_seven_days' => 'Ultimele 7 zile', + 'last_thirty_days' => 'Ultimele 30 de zile', + 'last_180_days' => 'Ultimele 180 de zile', + 'month_to_date' => 'Luna aceasta', + 'year_to_date' => 'De la începutul anului', + 'YTD' => 'YTD', + 'welcome_back' => 'Ce se redă?', + 'everything' => 'Tot', + 'today' => 'Azi', + 'customRange' => 'Intervalul personalizat', + 'date_range' => 'Interval de date', + 'apply' => 'Aplică', + 'select_date' => 'Selectează data..', + 'cancel' => 'Anulare', + 'from' => 'De la', + 'to' => 'Către', + 'structure' => 'Structură', + 'help_translating' => 'Acest text de ajutor nu este încă disponibil în limba dvs.', + 'showEverything' => 'Afișați totul', + 'never' => 'Niciodată', + 'no_results_for_empty_search' => 'Căutarea dvs. a fost goală, deci nu a fost găsit nimic.', + 'removed_amount' => ':amount eliminată', + 'added_amount' => ':amount adaugată', + 'asset_account_role_help' => 'Opțiunile suplimentare rezultate din alegerea dvs. pot fi setate mai târziu.', + 'Opening balance' => 'Soldul de deschidere', + 'create_new_stuff' => 'Creați lucruri noi', + 'new_withdrawal' => 'Tranzacție nouă', + 'create_new_transaction' => 'Creați o tranzacție nouă', + 'sidebar_frontpage_create' => 'Crează', + 'new_transaction' => 'Tranzacţie nouă', + 'no_rules_for_bill' => 'Acestă factură nu are asociate reguli.', + 'go_to_asset_accounts' => 'Vizualizați conturile de active', + 'go_to_budgets' => 'Mergi la bugete', + 'go_to_withdrawals' => 'Mergi la retragerile tale', + 'clones_journal_x' => 'Această tranzacție este o clonă a ":description" (#:id)', + 'go_to_categories' => 'Mergi la categorii', + 'go_to_bills' => 'Mergi la facturi', + 'go_to_expense_accounts' => 'Vezi cheltuielile contabile', + 'go_to_revenue_accounts' => 'Vezi contul de venituris', + 'go_to_piggies' => 'Mergi la pușculiță', + 'new_deposit' => 'Depunere nouă', + 'new_transfer' => 'Transfer nou', + 'new_transfers' => 'Transferuri noi', + 'new_asset_account' => 'Cont nou de activ', + 'new_expense_account' => 'Cont nou de cheltuieli', + 'new_revenue_account' => 'Cont nou pentru venituri', + 'new_liabilities_account' => 'Provizion nou', + 'new_budget' => 'Buget nou', + 'new_bill' => 'Factură nouă', + 'block_account_logout' => 'Ai fost deconectat. Conturile blocate nu pot utiliza acest site. Ați înregistrat o adresă de e-mail validă?', + 'flash_success' => 'Succes!', + 'flash_info' => 'Mesaj', + 'flash_warning' => 'Avertizare!', + 'flash_error' => 'Eroare!', + 'flash_danger' => 'Pericol!', + 'flash_info_multiple' => 'Există un mesaj | Există :count mesaje', + 'flash_error_multiple' => 'Există o singură eroare | Există :count erori', + 'net_worth' => 'Valoarea netă', + 'help_for_this_page' => 'Ajutor pentru această pagină', + 'help_for_this_page_body' => 'Mai multe informații despre această pagină în documentația.', + 'two_factor_welcome' => 'Bună ziua!', + 'two_factor_enter_code' => 'Pentru a continua, introduceți codul dvs. de autentificare cu doi factori. Aplicația dvs. o poate genera pentru dvs.', + 'two_factor_code_here' => 'Introdu codul aici', + 'two_factor_title' => 'Autentificare cu doi factori', + 'authenticate' => 'Autentificare', + 'two_factor_forgot_title' => 'S-a pierdut autentificarea cu doi factori', + 'two_factor_forgot' => 'Am uitat autentificarea cu doi factori.', + 'two_factor_lost_header' => 'Ai uitat autentificarea cu doi factori?', + 'two_factor_lost_intro' => 'Dacă ați pierdut și codurile de rezervă, aveți ghinion. Nu este un lucru pe care îl puteți remedia din interfața web. Aveți două opțiuni.', + 'two_factor_lost_fix_self' => 'Dacă executați propria instanță, verificați jurnalele din storage / logs pentru instrucțiuni.', + 'two_factor_lost_fix_owner' => 'În caz contrar, trimiteți prin e-mail proprietarului site-ului : proprietarul site-ului și solicitați-i să reseteze autentificarea cu doi factori.', + 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', + 'pref_two_factor_new_backup_codes' => 'Obțineți noi coduri de rezervă', + 'pref_two_factor_backup_code_count' => 'Aveți :count cod valid pentru copia de rezervă. Aveți :count coduri de rezervă valide.', + '2fa_i_have_them' => 'Le-am depozitat!', + 'warning_much_data' => ':days zilele de date pot dura o perioadă până încărcare.', + 'registered' => 'Te-ai inregistrat cu succes!', + 'Default asset account' => 'Cont de active implicit', + 'no_budget_pointer' => 'Se pare că nu aveți încă bugete. Ar trebui să creați câteva pe pagina bugete. Bugetele vă pot ajuta să țineți evidența cheltuielilor.', + 'no_bill_pointer' => 'Se pare că nu aveți încă facturi. Ar trebui să creați unele pe pagina facturi. Facturile vă pot ajuta să țineți evidența cheltuielilor.', + 'Savings account' => 'Cont de economii', + 'Credit card' => 'Card de credit', + 'source_accounts' => 'Contul sursă | Conturi sursă', + 'destination_accounts' => 'Contul destinației | Conturile de destinație', + 'user_id_is' => 'ID-ul dvs. de utilizator este :user', + 'field_supports_markdown' => 'Acest câmp acceptă Markdown HTML.', + 'need_more_help' => 'Dacă aveți nevoie de ajutor suplimentar, deschideți un tichet pe Github.', + 'reenable_intro_text' => 'De asemenea, puteți să activați din nou ghidul de introducere .', + 'intro_boxes_after_refresh' => 'Cutiile de introducere vor apărea din nou atunci când actualizați pagina.', + 'show_all_no_filter' => 'Afișați toate tranzacțiile fără a le grupa după dată.', + 'expenses_by_category' => 'Cheltuieli pe categorii', + 'expenses_by_budget' => 'Cheltuieli pe buget', + 'income_by_category' => 'Venituri pe categorii', + 'expenses_by_asset_account' => 'Cheltuieli pe cont de activ', + 'expenses_by_expense_account' => 'Cheltuieli pe cont de cheltuieli', + 'cannot_redirect_to_account' => 'Nu vă putem redirecționa către pagina corectă. Scuze.', + 'sum_of_expenses' => 'Suma cheltuielilor', + 'sum_of_income' => 'Suma veniturilor', + 'liabilities' => 'Provizioane', + 'spent_in_specific_budget' => 'Cheltuit în bugetul ":budget"', + 'spent_in_specific_double' => 'Cheltuit în contul ":account"', + 'earned_in_specific_double' => 'Câștigat în contul ":account"', + 'source_account' => 'Contul sursă', + 'source_account_reconciliation' => 'Nu puteți edita contul sursă al unei tranzacții de reconciliere.', + 'destination_account' => 'Contul de destinație', + 'destination_account_reconciliation' => 'Nu puteți edita contul de destinație al unei tranzacții de reconciliere.', + 'sum_of_expenses_in_budget' => 'Cheltuielile totale în bugetul ":budget"', + 'left_in_budget_limit' => 'Rest de chetuit ăn funcție de buget', + 'current_period' => 'Perioada curentă', + 'show_the_current_period_and_overview' => 'Afișați perioada curentă și prezentarea generală', + 'pref_languages_locale' => 'Pentru ca o altă limbă decât limba engleză să funcționeze corect, sistemul dvs. de operare trebuie să fie dotat cu informațiile de localizare corecte. Dacă acestea nu sunt prezente, datele valutare, datele și sumele pot fi formatate greșit.', + 'budget_in_period' => 'Toate tranzacțiile pentru bugetul ":name" între :start și :end în :currency', + 'chart_budget_in_period' => 'Graficul cu toate tranzacțiile pentru bugetul ":name" între :start și :end în :currency', + 'chart_budget_in_period_only_currency' => 'Suma bugetată a fost în :currency, astfel încât acest grafic va afișa numai tranzacții în :currency.', + 'chart_account_in_period' => 'Graficul cu toate tranzacțiile pentru contul ":name" (:balance) între :start și :end', + 'chart_category_in_period' => 'Graficul cu toate tranzacțiile pentru categoria ":name" între :start și :end', + 'chart_category_all' => 'Graficul cu toate tranzacțiile pentru categoria ":name"', + 'clone_withdrawal' => 'Clonați această retragere', + 'clone_deposit' => 'Clonați această depozit', + 'clone_transfer' => 'Clonați această transfer', + 'multi_select_no_selection' => 'Nimic selectat', + 'multi_select_select_all' => 'Selectează tot', + 'multi_select_n_selected' => 'selectat', + 'multi_select_all_selected' => 'Toate selectate', + 'multi_select_filter_placeholder' => 'Gasește..', + 'intro_next_label' => 'Următor', + 'intro_prev_label' => 'Anterior', + 'intro_skip_label' => 'Treci peste', + 'intro_done_label' => 'Finalizat', + 'between_dates_breadcrumb' => 'între :start și :end', + 'all_journals_without_budget' => 'Toate tranzacțiile fără un buget', + 'journals_without_budget' => 'Tranzacții fără un buget', + 'all_journals_without_category' => 'Toate tranzacțiile fără o categorie', + 'journals_without_category' => 'Tranzacții fără o categorie', + 'all_journals_for_account' => 'Toate tranzacțiile pentru contul :name', + 'chart_all_journals_for_account' => 'Graficul tuturor tranzacțiilor pentru contul :name', + 'journals_in_period_for_account' => 'Toate tranzacțiile pentru contul :name între :start și :end', + 'journals_in_period_for_account_js' => 'Toate tranzacțiile pentru contul {title} între {start} și {end}', + 'transferred' => 'Transferat', + 'all_withdrawal' => 'Toate cheltuielile', + 'all_transactions' => 'Toate tranzacțiile', + 'title_withdrawal_between' => 'Toate cheltuielile între :start și :end', + 'all_deposit' => 'Toate veniturile', + 'title_deposit_between' => 'Toate veniturile între :start și :end', + 'all_transfers' => 'Toate transferurile', + 'title_transfers_between' => 'Toate transferurile între :start și :end', + 'all_transfer' => 'Toate transferurile', + 'all_journals_for_tag' => 'Toate tranzacțiile pentru eticheta ":tag"', + 'title_transfer_between' => 'Toate transferurile între :start și :end', + 'all_journals_for_category' => 'Toate tranzacțiile pentru categoria :name', + 'all_journals_for_budget' => 'Toate tranzacțiile pentru bugetul :name', + 'chart_all_journals_for_budget' => 'Graficul cu toate tranzacțiile pentru bugetul :name', + 'journals_in_period_for_category' => 'Toate tranzacțiile pentru categoria :name între :start și :end', + 'journals_in_period_for_tag' => 'Toate tranzacțiile pentru eticheta :tag între :start și :end', + 'not_available_demo_user' => 'Funcția pe care încercați să o accesați nu este disponibilă pentru demo.', + 'exchange_rate_instructions' => 'Contul de active "@name" acceptă numai tranzacțiile în @native_currency. Dacă doriți să utilizați în schimb @foreign_currency asigurați-vă că suma din @native_currency este cunoscută, de asemenea:', + 'transfer_exchange_rate_instructions' => 'Sursa contului de active "@source_name" acceptă numai tranzacțiile în @source_currency. Destinația contului de active "@dest_name" acceptă numai tranzacțiile în @dest_currency. Trebuie să furnizați corect suma transferată în ambele valute.', + 'transaction_data' => 'Datele tranzacției', + 'invalid_server_configuration' => 'Configurația serverului este nevalidă', + 'invalid_locale_settings' => 'Firefly III nu poate formata sumele deoarece serverului dumneavoastră îi lipsesc pachetele necesare. Există instrucțiuni cum să faci acest lucru.', + 'quickswitch' => 'Schimbare rapida', + 'sign_in_to_start' => 'Logați-vă pentru a începe sesiunea', + 'sign_in' => 'Logare', + 'register_new_account' => 'Înregistrați un nou cont', + 'forgot_my_password' => 'Am uitat parola', + 'problems_with_input' => 'Sunt probleme cu input-ul dvs.', + 'reset_password' => 'Reseteaza parola', + 'button_reset_password' => 'Reseteaza parola', + 'reset_button' => 'Reseteaza', + 'want_to_login' => 'Vreau sa mă loghez', + 'login_page_title' => 'Logare', + 'register_page_title' => 'Înregistrare', + 'forgot_pw_page_title' => 'Am uitat parola', + 'reset_pw_page_title' => 'Reseteaza parola', + 'cannot_reset_demo_user' => 'Nu puteți reseta parola utilizatorului demo.', + 'no_att_demo_user' => 'Utilizatorul demo nu poate încărca atașamente.', + 'button_register' => 'Înregistrare', + 'authorization' => 'Autorizare', + 'active_bills_only' => 'numai facturi active', + 'active_bills_only_total' => 'toate facturile active', + 'active_exp_bills_only' => 'numai facturi active și așteptate', + 'active_exp_bills_only_total' => 'numai facturi active și așteptate', + 'per_period_sum_1D' => 'Costurile zilnice preconizate', + 'per_period_sum_1W' => 'Costurile săptămânale preconizate', + 'per_period_sum_1M' => 'Costuri lunare estimate', + 'per_period_sum_3M' => 'Costuri trimestriale preconizate', + 'per_period_sum_6M' => 'Costuri semestriale preconizate', + 'per_period_sum_1Y' => 'Costuri anuale preconizate', + 'average_per_bill' => 'media pe factură', + 'expected_total' => 'total așteptat', + 'reconciliation_account_name' => ':name reconciliere (:currency)', + 'saved' => 'Salvat', + 'advanced_options' => 'Opțiuni avansate', + 'advanced_options_explain' => 'Unele pagini din Firefly III au opțiuni avansate ascunse în spatele acestui buton. Această pagină nu are nimic extravagant aici, dar verifică celelalte!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhook-uri', - 'webhooks_breadcrumb' => 'Webhook-uri', - 'webhooks_menu_disabled' => 'dezactivat', - 'no_webhook_messages' => 'Nu există mesaje webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'După crearea tranzacției', - 'webhook_trigger_UPDATE_TRANSACTION' => 'După actualizarea tranzacției', - 'webhook_trigger_DESTROY_TRANSACTION' => 'După ștergerea tranzacției', - 'webhook_response_TRANSACTIONS' => 'Detaliile tranzacției', - 'webhook_response_ACCOUNTS' => 'Detalii cont', - 'webhook_response_none_NONE' => 'Fara detalii', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspectați', - 'create_new_webhook' => 'Creare webhook nou', - 'webhooks_create_breadcrumb' => 'Creare webhook nou', - 'webhook_trigger_form_help' => 'Indicați despre ce eveniment va declanșa webhook', - 'webhook_response_form_help' => 'Indicați ce trebuie să trimită webhook la URL.', - 'webhook_delivery_form_help' => 'Care format trebuie să furnizeze datele webhook.', - 'webhook_active_form_help' => 'Webhook-ul trebuie să fie activ sau nu va fi apelat.', - 'stored_new_webhook' => 'Webhook-ul nou a fost stocat ":title"', - 'delete_webhook' => 'Șterge webhook', - 'deleted_webhook' => 'Webhook șters ":title"', - 'edit_webhook' => 'Editare webhook ":title"', - 'updated_webhook' => 'Webhook actualizat ":title"', - 'edit_webhook_js' => 'Editare webhook"{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Webhook-ul a fost declanșat pe tranzacția indicată. Așteptați ca rezultatele să apară.', - 'webhook_messages' => 'Mesaj Webhook', - 'view_message' => 'Vizualizați mesajul', - 'view_attempts' => 'Vizualizare încercări eșuate', - 'message_content_title' => 'Conținutul mesajului Webhook', - 'message_content_help' => 'Acesta este conținutul mesajului care a fost trimis (sau a încercat) folosind acest webhook.', - 'attempt_content_title' => 'Încercări Webhook', - 'attempt_content_help' => 'Acestea sunt toate încercările nereușite ale acestui mesaj webhook de a remite la adresa URL configurată. După un anumit timp, Firefly III va înceta să mai încerce.', - 'no_attempts' => 'Nu există încercări nereușite. E un lucru bun!', - 'webhook_attempt_at' => 'Încercare la {moment}', - 'logs' => 'Jurnale', - 'response' => 'Răspuns', - 'visit_webhook_url' => 'Vizitaţi URL-ul webhook', - 'reset_webhook_secret' => 'Resetare secret webhook', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") a fost stocat.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") a fost actualizat.', + 'webhooks' => 'Webhook-uri', + 'webhooks_breadcrumb' => 'Webhook-uri', + 'webhooks_menu_disabled' => 'dezactivat', + 'no_webhook_messages' => 'Nu există mesaje webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'După crearea tranzacției', + 'webhook_trigger_UPDATE_TRANSACTION' => 'După actualizarea tranzacției', + 'webhook_trigger_DESTROY_TRANSACTION' => 'După ștergerea tranzacției', + 'webhook_response_TRANSACTIONS' => 'Detaliile tranzacției', + 'webhook_response_ACCOUNTS' => 'Detalii cont', + 'webhook_response_none_NONE' => 'Fara detalii', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspectați', + 'create_new_webhook' => 'Creare webhook nou', + 'webhooks_create_breadcrumb' => 'Creare webhook nou', + 'webhook_trigger_form_help' => 'Indicați despre ce eveniment va declanșa webhook', + 'webhook_response_form_help' => 'Indicați ce trebuie să trimită webhook la URL.', + 'webhook_delivery_form_help' => 'Care format trebuie să furnizeze datele webhook.', + 'webhook_active_form_help' => 'Webhook-ul trebuie să fie activ sau nu va fi apelat.', + 'stored_new_webhook' => 'Webhook-ul nou a fost stocat ":title"', + 'delete_webhook' => 'Șterge webhook', + 'deleted_webhook' => 'Webhook șters ":title"', + 'edit_webhook' => 'Editare webhook ":title"', + 'updated_webhook' => 'Webhook actualizat ":title"', + 'edit_webhook_js' => 'Editare webhook"{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Webhook-ul a fost declanșat pe tranzacția indicată. Așteptați ca rezultatele să apară.', + 'webhook_messages' => 'Mesaj Webhook', + 'view_message' => 'Vizualizați mesajul', + 'view_attempts' => 'Vizualizare încercări eșuate', + 'message_content_title' => 'Conținutul mesajului Webhook', + 'message_content_help' => 'Acesta este conținutul mesajului care a fost trimis (sau a încercat) folosind acest webhook.', + 'attempt_content_title' => 'Încercări Webhook', + 'attempt_content_help' => 'Acestea sunt toate încercările nereușite ale acestui mesaj webhook de a remite la adresa URL configurată. După un anumit timp, Firefly III va înceta să mai încerce.', + 'no_attempts' => 'Nu există încercări nereușite. E un lucru bun!', + 'webhook_attempt_at' => 'Încercare la {moment}', + 'logs' => 'Jurnale', + 'response' => 'Răspuns', + 'visit_webhook_url' => 'Vizitaţi URL-ul webhook', + 'reset_webhook_secret' => 'Resetare secret webhook', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") a fost stocat.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") a fost actualizat.', // API access - 'authorization_request' => 'v: Solicitare de autorizare', - 'authorization_request_intro' => 'Aplicația ":clientsolicită permisiunea de a accesa administrația financiară. Doriţi să autorizaţi :client pentru a accesa aceste înregistrări?', - 'authorization_request_site' => 'Veți fi redirecționat către :url care va putea accesa datele dvs. Firefly III.', - 'authorization_request_invalid' => 'Această cerere de acces nu este validă. Vă rugăm să nu mai urmați acest link din nou.', - 'scopes_will_be_able' => 'Această aplicație va fi capabilă să to:', - 'button_authorize' => 'Autorizează', - 'none_in_select_list' => '(nici unul)', - 'no_piggy_bank' => '(nicio pușculiță)', - 'name_in_currency' => ':name în :currency', - 'paid_in_currency' => 'Plătit în :currency', - 'unpaid_in_currency' => 'Neplătit în :currency', - 'is_alpha_warning' => 'Executaţi o versiune ALPHA. Fiţi atenţi la erori şi probleme.', - 'is_beta_warning' => 'Executaţi o versiune BETA. Fiţi atenţi la erori şi probleme.', - 'all_destination_accounts' => 'Conturi de destinație', - 'all_source_accounts' => 'Conturi sursă', - 'back_to_index' => 'Înapoi la index', - 'cant_logout_guard' => 'Firefly III nu vă poate deconecta.', - 'internal_reference' => 'Referință internă', + 'authorization_request' => 'v: Solicitare de autorizare', + 'authorization_request_intro' => 'Aplicația ":clientsolicită permisiunea de a accesa administrația financiară. Doriţi să autorizaţi :client pentru a accesa aceste înregistrări?', + 'authorization_request_site' => 'Veți fi redirecționat către :url care va putea accesa datele dvs. Firefly III.', + 'authorization_request_invalid' => 'Această cerere de acces nu este validă. Vă rugăm să nu mai urmați acest link din nou.', + 'scopes_will_be_able' => 'Această aplicație va fi capabilă să to:', + 'button_authorize' => 'Autorizează', + 'none_in_select_list' => '(nici unul)', + 'no_piggy_bank' => '(nicio pușculiță)', + 'name_in_currency' => ':name în :currency', + 'paid_in_currency' => 'Plătit în :currency', + 'unpaid_in_currency' => 'Neplătit în :currency', + 'is_alpha_warning' => 'Executaţi o versiune ALPHA. Fiţi atenţi la erori şi probleme.', + 'is_beta_warning' => 'Executaţi o versiune BETA. Fiţi atenţi la erori şi probleme.', + 'all_destination_accounts' => 'Conturi de destinație', + 'all_source_accounts' => 'Conturi sursă', + 'back_to_index' => 'Înapoi la index', + 'cant_logout_guard' => 'Firefly III nu vă poate deconecta.', + 'internal_reference' => 'Referință internă', // check for updates: - 'update_check_title' => 'Verifică actualizări', - 'admin_update_check_title' => 'Verificați automat actualizarea', - 'admin_update_check_explain' => 'Firefly III poate căuta actualizări automat. Când activați această setare, acesta va contacta serverul de actualizare Firefly III pentru a vedea dacă este disponibilă o nouă versiune de Firefly III. Când este, veți primi o notificare. Puteți testa această notificare folosind butonul din dreapta. Vă rugăm să indicați mai jos dacă doriți ca Firefly III să verifice actualizările.', - 'check_for_updates_permission' => 'Firefly III poate verifica actualizările, dar are nevoie de permisiunea dvs. pentru a face acest lucru. Accesați link-ul pentru a indica dacă doriți ca această funcție să fie activată.', - 'updates_ask_me_later' => 'Intreabă-mă mai târziu', - 'updates_do_not_check' => 'Nu verificați actualizările', - 'updates_enable_check' => 'Activați verificarea pentru actualizări', - 'admin_update_check_now_title' => 'Verificați actualizările acum', - 'admin_update_check_now_explain' => 'Dacă apăsați butonul, Firefly III va vedea dacă versiunea curentă este cea mai recentă.', - 'check_for_updates_button' => 'Verifică acum!', - 'update_new_version_alert' => 'O nouă versiune de Firefly III este disponibilă. Dvs. aveți :your_version, ultima versiune este :new_version lansată în data de :date.', - 'update_version_beta' => 'Această versiune este o versiune BETA. Este posibil să aveți probleme.', - 'update_version_alpha' => 'Această versiune este o versiune ALFA. Este posibil să aveți probleme.', - 'update_current_dev_older' => 'Executați versiunea de dezvoltare ":version", care este mai veche decât ultima versiune :new_version. Vă rugăm să actualizați!', - 'update_current_dev_newer' => 'Executați versiunea de dezvoltare ":version", care este mai nouă decât cea mai recentă versiune :new_version.', - 'update_current_version_alert' => 'Aveți versiunea :version, care este ultima disponibilă.', - 'update_newer_version_alert' => 'Aveți versiunea :your_version, care este mai nouă decât cea mai recentă versiune, :new_version.', - 'update_check_error' => 'A apărut o eroare la verificarea actualizărilor: :error', - 'unknown_error' => 'Eroare necunoscută. Ne pare rău pentru asta.', - 'disabled_but_check' => 'Ai dezactivat verificarea actualizării. Așa că nu uita să verifici singur actualizările din când în când. Mulțumim!', - 'admin_update_channel_title' => 'Actualizare canal', - 'admin_update_channel_explain' => 'Firefly III are trei "canale" de actualizare, care determină cât de avansați sunteți în termeni de caracteristici, îmbunătățiri și bug-uri. Folosiți canalul „beta” dacă sunteți aventuroși și „alfa” atunci când vă place să trăiți periculos viața.', - 'update_channel_stable' => 'Stabil. Totul ar trebui să funcționeze așa cum este de așteptat.', - 'update_channel_beta' => 'Beta. Caracteristici noi, dar lucrurile pot fi stricate.', - 'update_channel_alpha' => 'Alfa. Aruncăm chestii și folosiți orice.', + 'update_check_title' => 'Verifică actualizări', + 'admin_update_check_title' => 'Verificați automat actualizarea', + 'admin_update_check_explain' => 'Firefly III poate căuta actualizări automat. Când activați această setare, acesta va contacta serverul de actualizare Firefly III pentru a vedea dacă este disponibilă o nouă versiune de Firefly III. Când este, veți primi o notificare. Puteți testa această notificare folosind butonul din dreapta. Vă rugăm să indicați mai jos dacă doriți ca Firefly III să verifice actualizările.', + 'check_for_updates_permission' => 'Firefly III poate verifica actualizările, dar are nevoie de permisiunea dvs. pentru a face acest lucru. Accesați link-ul pentru a indica dacă doriți ca această funcție să fie activată.', + 'updates_ask_me_later' => 'Intreabă-mă mai târziu', + 'updates_do_not_check' => 'Nu verificați actualizările', + 'updates_enable_check' => 'Activați verificarea pentru actualizări', + 'admin_update_check_now_title' => 'Verificați actualizările acum', + 'admin_update_check_now_explain' => 'Dacă apăsați butonul, Firefly III va vedea dacă versiunea curentă este cea mai recentă.', + 'check_for_updates_button' => 'Verifică acum!', + 'update_new_version_alert' => 'O nouă versiune de Firefly III este disponibilă. Dvs. aveți :your_version, ultima versiune este :new_version lansată în data de :date.', + 'update_version_beta' => 'Această versiune este o versiune BETA. Este posibil să aveți probleme.', + 'update_version_alpha' => 'Această versiune este o versiune ALFA. Este posibil să aveți probleme.', + 'update_current_dev_older' => 'Executați versiunea de dezvoltare ":version", care este mai veche decât ultima versiune :new_version. Vă rugăm să actualizați!', + 'update_current_dev_newer' => 'Executați versiunea de dezvoltare ":version", care este mai nouă decât cea mai recentă versiune :new_version.', + 'update_current_version_alert' => 'Aveți versiunea :version, care este ultima disponibilă.', + 'update_newer_version_alert' => 'Aveți versiunea :your_version, care este mai nouă decât cea mai recentă versiune, :new_version.', + 'update_check_error' => 'A apărut o eroare la verificarea actualizărilor: :error', + 'unknown_error' => 'Eroare necunoscută. Ne pare rău pentru asta.', + 'disabled_but_check' => 'Ai dezactivat verificarea actualizării. Așa că nu uita să verifici singur actualizările din când în când. Mulțumim!', + 'admin_update_channel_title' => 'Actualizare canal', + 'admin_update_channel_explain' => 'Firefly III are trei "canale" de actualizare, care determină cât de avansați sunteți în termeni de caracteristici, îmbunătățiri și bug-uri. Folosiți canalul „beta” dacă sunteți aventuroși și „alfa” atunci când vă place să trăiți periculos viața.', + 'update_channel_stable' => 'Stabil. Totul ar trebui să funcționeze așa cum este de așteptat.', + 'update_channel_beta' => 'Beta. Caracteristici noi, dar lucrurile pot fi stricate.', + 'update_channel_alpha' => 'Alfa. Aruncăm chestii și folosiți orice.', // search - 'search' => 'Caută', - 'search_query' => 'Interogare', - 'search_found_transactions' => 'Firefly III a găsit :count tranzacție în :time secunde.| Firefly III a găsit :count tranzacții în :time secunde.', - 'search_found_more_transactions' => 'Firefly III a găsit mai mult de :count tranzacții în :time secunde.', - 'search_for_query' => 'Firefly III este în căutarea pentru tranzacţii cu toate aceste cuvinte în ele: :query', - 'invalid_operators_list' => 'Acești parametri de căutare nu sunt valabili și au fost ignorați.', + 'search' => 'Caută', + 'search_query' => 'Interogare', + 'search_found_transactions' => 'Firefly III a găsit :count tranzacție în :time secunde.| Firefly III a găsit :count tranzacții în :time secunde.', + 'search_found_more_transactions' => 'Firefly III a găsit mai mult de :count tranzacții în :time secunde.', + 'search_for_query' => 'Firefly III este în căutarea pentru tranzacţii cu toate aceste cuvinte în ele: :query', + 'invalid_operators_list' => 'Acești parametri de căutare nu sunt valabili și au fost ignorați.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Data tranzacției este ":value"', - 'search_modifier_not_date_on' => 'Data tranzacției nu este ":value"', - 'search_modifier_reconciled' => 'Tranzacția este reconciliată', - 'search_modifier_not_reconciled' => 'Tranzacția nu este reconciliată', - 'search_modifier_id' => 'ID-ul tranzacţiei este ":value"', - 'search_modifier_not_id' => 'ID-ul tranzacţiei nu este ":value"', - 'search_modifier_date_before' => 'Data tranzacției este înainte sau pe ":value"', - 'search_modifier_date_after' => 'Data tranzacției este după sau pe ":value"', - 'search_modifier_external_id_is' => 'ID extern este ":value"', - 'search_modifier_not_external_id_is' => 'ID extern nu este ":value"', - 'search_modifier_no_external_url' => 'Tranzacția nu are niciun URL extern', - 'search_modifier_no_external_id' => 'Tranzacția nu are un ID extern', - 'search_modifier_not_any_external_url' => 'Tranzacția nu are niciun URL extern', - 'search_modifier_not_any_external_id' => 'Tranzacția nu are un ID extern', - 'search_modifier_any_external_url' => 'Tranzacția trebuie să aibă un (orice) URL extern', - 'search_modifier_any_external_id' => 'Tranzacția trebuie să aibă un (orice) ID extern', - 'search_modifier_not_no_external_url' => 'Tranzacția trebuie să aibă un (orice) URL extern', - 'search_modifier_not_no_external_id' => 'Tranzacția trebuie să aibă un (orice) ID extern', - 'search_modifier_internal_reference_is' => 'Referința internă este ":value"', - 'search_modifier_not_internal_reference_is' => 'Referința internă nu este ":value"', - 'search_modifier_description_starts' => 'Descrierea începe cu ":value"', - 'search_modifier_not_description_starts' => 'Descrierea nu începe cu ":value"', - 'search_modifier_description_ends' => 'Descrierea se termină pe ":value"', - 'search_modifier_not_description_ends' => 'Descrierea nu se termină pe ":value"', - 'search_modifier_description_contains' => 'Descrierea conține ":value"', - 'search_modifier_not_description_contains' => 'Descrierea nu conține ":value"', - 'search_modifier_description_is' => 'Descrierea este exact ":value"', - 'search_modifier_not_description_is' => 'Descrierea nu este exact ":value"', - 'search_modifier_currency_is' => 'Moneda tranzacției (străină) este ":value"', - 'search_modifier_not_currency_is' => 'Moneda tranzacţiei (străină) nu este ":value"', - 'search_modifier_foreign_currency_is' => 'Moneda străină a tranzacției este ":value"', - 'search_modifier_not_foreign_currency_is' => 'Moneda străină nu este ":value"', - 'search_modifier_has_attachments' => 'Tranzacția trebuie să aibă un atașament', - 'search_modifier_has_no_category' => 'Tranzacția nu trebuie să aibă nicio categorie', - 'search_modifier_not_has_no_category' => 'Tranzacția trebuie să aibă o (orice) categorie', - 'search_modifier_not_has_any_category' => 'Tranzacția nu trebuie să aibă nicio categorie', - 'search_modifier_has_any_category' => 'Tranzacția trebuie să aibă o (orice) categorie', - 'search_modifier_has_no_budget' => 'Tranzacția nu trebuie să aibă un buget', - 'search_modifier_not_has_any_budget' => 'Tranzacția nu trebuie să aibă un buget', - 'search_modifier_has_any_budget' => 'Tranzacția trebuie să aibă un (orice) buget', - 'search_modifier_not_has_no_budget' => 'Tranzacția trebuie să aibă un (orice) buget', - 'search_modifier_has_no_bill' => 'Tranzacția nu trebuie să aibă factură', - 'search_modifier_not_has_no_bill' => 'Tranzacția trebuie să aibă o (orice) factură', - 'search_modifier_has_any_bill' => 'Tranzacția trebuie să aibă o (orice) factură', - 'search_modifier_not_has_any_bill' => 'Tranzacția nu trebuie să aibă factură', - 'search_modifier_has_no_tag' => 'Tranzacția nu trebuie să aibă etichete', - 'search_modifier_not_has_any_tag' => 'Tranzacția nu trebuie să aibă etichete', - 'search_modifier_not_has_no_tag' => 'Tranzacția trebuie să aibă o (orice) etichetă', - 'search_modifier_has_any_tag' => 'Tranzacția trebuie să aibă o (orice) etichetă', - 'search_modifier_notes_contains' => 'Notele de tranzacție conțin ":value"', - 'search_modifier_not_notes_contains' => 'Notele de tranzacție nu conțin ":value"', - 'search_modifier_notes_starts' => 'Notele de tranzacție încep cu ":value"', - 'search_modifier_not_notes_starts' => 'Notele de tranzacție nu încep cu ":value"', - 'search_modifier_notes_ends' => 'Notele de tranzacție se termină cu ":value"', - 'search_modifier_not_notes_ends' => 'Notele de tranzacție nu se termină cu ":value"', - 'search_modifier_notes_is' => 'Notele de tranzacție sunt exact ":value"', - 'search_modifier_not_notes_is' => 'Notele de tranzacție nu sunt exact ":value"', - 'search_modifier_no_notes' => 'Tranzacția nu are note', - 'search_modifier_not_no_notes' => 'Tranzacția trebuie să aibă note', - 'search_modifier_any_notes' => 'Tranzacția trebuie să aibă note', - 'search_modifier_not_any_notes' => 'Tranzacția nu are note', - 'search_modifier_amount_is' => 'Suma este exact :value', - 'search_modifier_not_amount_is' => 'Suma nu este :value', - 'search_modifier_amount_less' => 'Suma este mai mică sau egală cu :value', - 'search_modifier_not_amount_more' => 'Suma este mai mică sau egală cu :value', - 'search_modifier_amount_more' => 'Suma este mai mare sau egală cu :value', - 'search_modifier_not_amount_less' => 'Suma este mai mare sau egală cu :value', - 'search_modifier_source_account_is' => 'Numele contului sursă este exact ":value"', - 'search_modifier_not_source_account_is' => 'Numele contului sursă nu este ":value"', - 'search_modifier_source_account_contains' => 'Numele contului sursă conține ":value"', - 'search_modifier_not_source_account_contains' => 'Numele contului sursă nu conține ":value"', - 'search_modifier_source_account_starts' => 'Numele contului sursă începe cu ":value"', - 'search_modifier_not_source_account_starts' => 'Numele contului sursă nu începe cu ":value"', - 'search_modifier_source_account_ends' => 'Numele contului sursă se termină cu ":value"', - 'search_modifier_not_source_account_ends' => 'Numele contului sursă nu se termină cu ":value"', - 'search_modifier_source_account_id' => 'ID-ul contului sursă este :value', - 'search_modifier_not_source_account_id' => 'ID-ul contului sursă nu este :value', - 'search_modifier_source_account_nr_is' => 'Numărul contului sursă (IBAN) este ":value"', - 'search_modifier_not_source_account_nr_is' => 'Numărul contului sursă (IBAN) nu este ":value"', - 'search_modifier_source_account_nr_contains' => 'Numărul contului sursă (IBAN) conține ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Numărul contului sursă (IBAN) nu conține ":value"', - 'search_modifier_source_account_nr_starts' => 'Numărul contului sursă (IBAN) începe cu ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Numărul contului sursă (IBAN) nu începe cu ":value"', - 'search_modifier_source_account_nr_ends' => 'Numărul contului sursă (IBAN) se termină pe ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Numărul contului sursă (IBAN) nu se termină pe ":value"', - 'search_modifier_destination_account_is' => 'Numele contului destinației este exact ":value"', - 'search_modifier_not_destination_account_is' => 'Numele contului destinaţiei nu este ":value"', - 'search_modifier_destination_account_contains' => 'Numele contului destinației conține ":value"', - 'search_modifier_not_destination_account_contains' => 'Numele contului destinaţiei nu conţine ":value"', - 'search_modifier_destination_account_starts' => 'Numele contului destinației începe cu ":value"', - 'search_modifier_not_destination_account_starts' => 'Numele contului destinației nu începe cu ":value"', - 'search_modifier_destination_account_ends' => 'Numele contului destinaţiei se termină pe ":value"', - 'search_modifier_not_destination_account_ends' => 'Numele contului destinației nu se termină pe ":value"', - 'search_modifier_destination_account_id' => 'ID-ul contului destinației este :value', - 'search_modifier_not_destination_account_id' => 'ID-ul contului destinaţie nu este :value', - 'search_modifier_destination_is_cash' => 'Contul destinație este contul "(numerar)"', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Numărul contului destinației (IBAN) este ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Numărul contului destinației (IBAN) conține ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Numărul contului destinației (IBAN) începe cu ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Numărul contului destinației (IBAN) se termină cu ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'ID-ul contului sursă sau destinație este/sunt: :value', - 'search_modifier_not_account_id' => 'ID-ul contului sursă sau destinație este/nu: :value', - 'search_modifier_category_is' => 'Categoria este ":value"', - 'search_modifier_not_category_is' => 'Categoria nu este ":value"', - 'search_modifier_budget_is' => 'Bugetul este ":value"', - 'search_modifier_not_budget_is' => 'Bugetul nu este ":value"', - 'search_modifier_bill_is' => 'Factura este ":value"', - 'search_modifier_not_bill_is' => 'Factura nu este ":value"', - 'search_modifier_transaction_type' => 'Tipul tranzacției este ":value"', - 'search_modifier_not_transaction_type' => 'Tipul de tranzacție nu este ":value"', - 'search_modifier_tag_is' => 'Eticheta este ":value"', - 'search_modifier_tag_contains' => 'Eticheta conţine ":value"', - 'search_modifier_not_tag_contains' => 'Eticheta nu conține ":value"', - 'search_modifier_tag_ends' => 'Eticheta se termină cu ":value"', - 'search_modifier_tag_starts' => 'Eticheta începe cu ":value"', - 'search_modifier_not_tag_is' => 'Nicio etichetă nu este ":value"', - 'search_modifier_date_on_year' => 'Tranzacția este în anul ":value"', - 'search_modifier_not_date_on_year' => 'Tranzacția nu este în anul ":value"', - 'search_modifier_date_on_month' => 'Tranzacția este în luna ":value"', - 'search_modifier_not_date_on_month' => 'Tranzacția nu este în luna ":value"', - 'search_modifier_date_on_day' => 'Tranzacția este în ziua lunii ":value"', - 'search_modifier_not_date_on_day' => 'Tranzacția nu este în ziua lunii ":value"', - 'search_modifier_date_before_year' => 'Tranzacția este înainte sau în anul ":value"', - 'search_modifier_date_before_month' => 'Tranzacția este înainte sau în luna ":value"', - 'search_modifier_date_before_day' => 'Tranzacția este înainte sau în ziua din luna ":value"', - 'search_modifier_date_after_year' => 'Tranzacția este în sau după anul ":value"', - 'search_modifier_date_after_month' => 'Tranzacția este în sau după luna ":value"', - 'search_modifier_date_after_day' => 'Tranzacția este după sau în ziua lunii ":value"', + 'search_modifier_date_on' => 'Data tranzacției este ":value"', + 'search_modifier_not_date_on' => 'Data tranzacției nu este ":value"', + 'search_modifier_reconciled' => 'Tranzacția este reconciliată', + 'search_modifier_not_reconciled' => 'Tranzacția nu este reconciliată', + 'search_modifier_id' => 'ID-ul tranzacţiei este ":value"', + 'search_modifier_not_id' => 'ID-ul tranzacţiei nu este ":value"', + 'search_modifier_date_before' => 'Data tranzacției este înainte sau pe ":value"', + 'search_modifier_date_after' => 'Data tranzacției este după sau pe ":value"', + 'search_modifier_external_id_is' => 'ID extern este ":value"', + 'search_modifier_not_external_id_is' => 'ID extern nu este ":value"', + 'search_modifier_no_external_url' => 'Tranzacția nu are niciun URL extern', + 'search_modifier_no_external_id' => 'Tranzacția nu are un ID extern', + 'search_modifier_not_any_external_url' => 'Tranzacția nu are niciun URL extern', + 'search_modifier_not_any_external_id' => 'Tranzacția nu are un ID extern', + 'search_modifier_any_external_url' => 'Tranzacția trebuie să aibă un (orice) URL extern', + 'search_modifier_any_external_id' => 'Tranzacția trebuie să aibă un (orice) ID extern', + 'search_modifier_not_no_external_url' => 'Tranzacția trebuie să aibă un (orice) URL extern', + 'search_modifier_not_no_external_id' => 'Tranzacția trebuie să aibă un (orice) ID extern', + 'search_modifier_internal_reference_is' => 'Referința internă este ":value"', + 'search_modifier_not_internal_reference_is' => 'Referința internă nu este ":value"', + 'search_modifier_description_starts' => 'Descrierea începe cu ":value"', + 'search_modifier_not_description_starts' => 'Descrierea nu începe cu ":value"', + 'search_modifier_description_ends' => 'Descrierea se termină pe ":value"', + 'search_modifier_not_description_ends' => 'Descrierea nu se termină pe ":value"', + 'search_modifier_description_contains' => 'Descrierea conține ":value"', + 'search_modifier_not_description_contains' => 'Descrierea nu conține ":value"', + 'search_modifier_description_is' => 'Descrierea este exact ":value"', + 'search_modifier_not_description_is' => 'Descrierea nu este exact ":value"', + 'search_modifier_currency_is' => 'Moneda tranzacției (străină) este ":value"', + 'search_modifier_not_currency_is' => 'Moneda tranzacţiei (străină) nu este ":value"', + 'search_modifier_foreign_currency_is' => 'Moneda străină a tranzacției este ":value"', + 'search_modifier_not_foreign_currency_is' => 'Moneda străină nu este ":value"', + 'search_modifier_has_attachments' => 'Tranzacția trebuie să aibă un atașament', + 'search_modifier_has_no_category' => 'Tranzacția nu trebuie să aibă nicio categorie', + 'search_modifier_not_has_no_category' => 'Tranzacția trebuie să aibă o (orice) categorie', + 'search_modifier_not_has_any_category' => 'Tranzacția nu trebuie să aibă nicio categorie', + 'search_modifier_has_any_category' => 'Tranzacția trebuie să aibă o (orice) categorie', + 'search_modifier_has_no_budget' => 'Tranzacția nu trebuie să aibă un buget', + 'search_modifier_not_has_any_budget' => 'Tranzacția nu trebuie să aibă un buget', + 'search_modifier_has_any_budget' => 'Tranzacția trebuie să aibă un (orice) buget', + 'search_modifier_not_has_no_budget' => 'Tranzacția trebuie să aibă un (orice) buget', + 'search_modifier_has_no_bill' => 'Tranzacția nu trebuie să aibă factură', + 'search_modifier_not_has_no_bill' => 'Tranzacția trebuie să aibă o (orice) factură', + 'search_modifier_has_any_bill' => 'Tranzacția trebuie să aibă o (orice) factură', + 'search_modifier_not_has_any_bill' => 'Tranzacția nu trebuie să aibă factură', + 'search_modifier_has_no_tag' => 'Tranzacția nu trebuie să aibă etichete', + 'search_modifier_not_has_any_tag' => 'Tranzacția nu trebuie să aibă etichete', + 'search_modifier_not_has_no_tag' => 'Tranzacția trebuie să aibă o (orice) etichetă', + 'search_modifier_has_any_tag' => 'Tranzacția trebuie să aibă o (orice) etichetă', + 'search_modifier_notes_contains' => 'Notele de tranzacție conțin ":value"', + 'search_modifier_not_notes_contains' => 'Notele de tranzacție nu conțin ":value"', + 'search_modifier_notes_starts' => 'Notele de tranzacție încep cu ":value"', + 'search_modifier_not_notes_starts' => 'Notele de tranzacție nu încep cu ":value"', + 'search_modifier_notes_ends' => 'Notele de tranzacție se termină cu ":value"', + 'search_modifier_not_notes_ends' => 'Notele de tranzacție nu se termină cu ":value"', + 'search_modifier_notes_is' => 'Notele de tranzacție sunt exact ":value"', + 'search_modifier_not_notes_is' => 'Notele de tranzacție nu sunt exact ":value"', + 'search_modifier_no_notes' => 'Tranzacția nu are note', + 'search_modifier_not_no_notes' => 'Tranzacția trebuie să aibă note', + 'search_modifier_any_notes' => 'Tranzacția trebuie să aibă note', + 'search_modifier_not_any_notes' => 'Tranzacția nu are note', + 'search_modifier_amount_is' => 'Suma este exact :value', + 'search_modifier_not_amount_is' => 'Suma nu este :value', + 'search_modifier_amount_less' => 'Suma este mai mică sau egală cu :value', + 'search_modifier_not_amount_more' => 'Suma este mai mică sau egală cu :value', + 'search_modifier_amount_more' => 'Suma este mai mare sau egală cu :value', + 'search_modifier_not_amount_less' => 'Suma este mai mare sau egală cu :value', + 'search_modifier_source_account_is' => 'Numele contului sursă este exact ":value"', + 'search_modifier_not_source_account_is' => 'Numele contului sursă nu este ":value"', + 'search_modifier_source_account_contains' => 'Numele contului sursă conține ":value"', + 'search_modifier_not_source_account_contains' => 'Numele contului sursă nu conține ":value"', + 'search_modifier_source_account_starts' => 'Numele contului sursă începe cu ":value"', + 'search_modifier_not_source_account_starts' => 'Numele contului sursă nu începe cu ":value"', + 'search_modifier_source_account_ends' => 'Numele contului sursă se termină cu ":value"', + 'search_modifier_not_source_account_ends' => 'Numele contului sursă nu se termină cu ":value"', + 'search_modifier_source_account_id' => 'ID-ul contului sursă este :value', + 'search_modifier_not_source_account_id' => 'ID-ul contului sursă nu este :value', + 'search_modifier_source_account_nr_is' => 'Numărul contului sursă (IBAN) este ":value"', + 'search_modifier_not_source_account_nr_is' => 'Numărul contului sursă (IBAN) nu este ":value"', + 'search_modifier_source_account_nr_contains' => 'Numărul contului sursă (IBAN) conține ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Numărul contului sursă (IBAN) nu conține ":value"', + 'search_modifier_source_account_nr_starts' => 'Numărul contului sursă (IBAN) începe cu ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Numărul contului sursă (IBAN) nu începe cu ":value"', + 'search_modifier_source_account_nr_ends' => 'Numărul contului sursă (IBAN) se termină pe ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Numărul contului sursă (IBAN) nu se termină pe ":value"', + 'search_modifier_destination_account_is' => 'Numele contului destinației este exact ":value"', + 'search_modifier_not_destination_account_is' => 'Numele contului destinaţiei nu este ":value"', + 'search_modifier_destination_account_contains' => 'Numele contului destinației conține ":value"', + 'search_modifier_not_destination_account_contains' => 'Numele contului destinaţiei nu conţine ":value"', + 'search_modifier_destination_account_starts' => 'Numele contului destinației începe cu ":value"', + 'search_modifier_not_destination_account_starts' => 'Numele contului destinației nu începe cu ":value"', + 'search_modifier_destination_account_ends' => 'Numele contului destinaţiei se termină pe ":value"', + 'search_modifier_not_destination_account_ends' => 'Numele contului destinației nu se termină pe ":value"', + 'search_modifier_destination_account_id' => 'ID-ul contului destinației este :value', + 'search_modifier_not_destination_account_id' => 'ID-ul contului destinaţie nu este :value', + 'search_modifier_destination_is_cash' => 'Contul destinație este contul "(numerar)"', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Numărul contului destinației (IBAN) este ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Numărul contului destinației (IBAN) conține ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Numărul contului destinației (IBAN) începe cu ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Numărul contului destinației (IBAN) se termină cu ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'ID-ul contului sursă sau destinație este/sunt: :value', + 'search_modifier_not_account_id' => 'ID-ul contului sursă sau destinație este/nu: :value', + 'search_modifier_category_is' => 'Categoria este ":value"', + 'search_modifier_not_category_is' => 'Categoria nu este ":value"', + 'search_modifier_budget_is' => 'Bugetul este ":value"', + 'search_modifier_not_budget_is' => 'Bugetul nu este ":value"', + 'search_modifier_bill_is' => 'Factura este ":value"', + 'search_modifier_not_bill_is' => 'Factura nu este ":value"', + 'search_modifier_transaction_type' => 'Tipul tranzacției este ":value"', + 'search_modifier_not_transaction_type' => 'Tipul de tranzacție nu este ":value"', + 'search_modifier_tag_is' => 'Eticheta este ":value"', + 'search_modifier_tag_contains' => 'Eticheta conţine ":value"', + 'search_modifier_not_tag_contains' => 'Eticheta nu conține ":value"', + 'search_modifier_tag_ends' => 'Eticheta se termină cu ":value"', + 'search_modifier_tag_starts' => 'Eticheta începe cu ":value"', + 'search_modifier_not_tag_is' => 'Nicio etichetă nu este ":value"', + 'search_modifier_date_on_year' => 'Tranzacția este în anul ":value"', + 'search_modifier_not_date_on_year' => 'Tranzacția nu este în anul ":value"', + 'search_modifier_date_on_month' => 'Tranzacția este în luna ":value"', + 'search_modifier_not_date_on_month' => 'Tranzacția nu este în luna ":value"', + 'search_modifier_date_on_day' => 'Tranzacția este în ziua lunii ":value"', + 'search_modifier_not_date_on_day' => 'Tranzacția nu este în ziua lunii ":value"', + 'search_modifier_date_before_year' => 'Tranzacția este înainte sau în anul ":value"', + 'search_modifier_date_before_month' => 'Tranzacția este înainte sau în luna ":value"', + 'search_modifier_date_before_day' => 'Tranzacția este înainte sau în ziua din luna ":value"', + 'search_modifier_date_after_year' => 'Tranzacția este în sau după anul ":value"', + 'search_modifier_date_after_month' => 'Tranzacția este în sau după luna ":value"', + 'search_modifier_date_after_day' => 'Tranzacția este după sau în ziua lunii ":value"', // new - 'search_modifier_tag_is_not' => 'Nicio etichetă nu este ":value"', - 'search_modifier_not_tag_is_not' => 'Eticheta este ":value"', - 'search_modifier_account_is' => 'Oricare cont este ":value"', - 'search_modifier_not_account_is' => 'Niciun cont nu este ":value"', - 'search_modifier_account_contains' => 'Fiecare cont conține ":value"', - 'search_modifier_not_account_contains' => 'Nici unul dintre conturi nu conține ":value"', - 'search_modifier_account_ends' => 'Oricare cont se termină cu ":value"', - 'search_modifier_not_account_ends' => 'Nici unul dintre conturi nu se termină cu ":value"', - 'search_modifier_account_starts' => 'Oricare cont începe cu ":value"', - 'search_modifier_not_account_starts' => 'Nici un cont nu începe cu ":value"', - 'search_modifier_account_nr_is' => 'Fie numărul de cont/IBAN este ":value"', - 'search_modifier_not_account_nr_is' => 'Nici numărul de cont / IBAN nu este ":value"', - 'search_modifier_account_nr_contains' => 'Fie numărul de cont/IBAN conține ":value"', - 'search_modifier_not_account_nr_contains' => 'Nici numărul de cont / IBAN nu conține ":value"', - 'search_modifier_account_nr_ends' => 'Fie numărul de cont/IBAN se termină cu ":value"', - 'search_modifier_not_account_nr_ends' => 'Nici numărul de cont / IBAN nu se termină cu ":value"', - 'search_modifier_account_nr_starts' => 'Fie numărul de cont/IBAN începe cu ":value"', - 'search_modifier_not_account_nr_starts' => 'Nici numărul de cont / IBAN nu începe cu ":value"', - 'search_modifier_category_contains' => 'Categoria conține ":value"', - 'search_modifier_not_category_contains' => 'Categoria nu conține ":value"', - 'search_modifier_category_ends' => 'Categoria se termină pe ":value"', - 'search_modifier_not_category_ends' => 'Categoria nu se termină pe ":value"', - 'search_modifier_category_starts' => 'Categoria începe cu ":value"', - 'search_modifier_not_category_starts' => 'Categoria nu începe cu ":value"', - 'search_modifier_budget_contains' => 'Bugetul conține „:value”', - 'search_modifier_not_budget_contains' => 'Bugetul nu conține „:value”', - 'search_modifier_budget_ends' => 'Bugetul se termină cu ":value"', - 'search_modifier_not_budget_ends' => 'Bugetul nu se termină pe „:value”', - 'search_modifier_budget_starts' => 'Bugetul începe cu ":value"', - 'search_modifier_not_budget_starts' => 'Bugetul nu începe cu ":value"', - 'search_modifier_bill_contains' => 'Factura conține ":value"', - 'search_modifier_not_bill_contains' => 'Factura nu conține ":value"', - 'search_modifier_bill_ends' => 'Factura se termină cu ":value"', - 'search_modifier_not_bill_ends' => 'Factura nu se termină pe ":value"', - 'search_modifier_bill_starts' => 'Factura începe cu ":value"', - 'search_modifier_not_bill_starts' => 'Factura nu începe cu ":value"', - 'search_modifier_external_id_contains' => 'ID extern conține ":value"', - 'search_modifier_not_external_id_contains' => 'ID extern nu conține ":value"', - 'search_modifier_external_id_ends' => 'ID extern se termină cu ":value"', - 'search_modifier_not_external_id_ends' => 'ID extern nu se termină cu ":value"', - 'search_modifier_external_id_starts' => 'ID extern începe cu ":value"', - 'search_modifier_not_external_id_starts' => 'ID extern nu începe cu ":value"', - 'search_modifier_internal_reference_contains' => 'Referinţa internă conţine ":value"', - 'search_modifier_not_internal_reference_contains' => 'Referința internă nu conține ":value"', - 'search_modifier_internal_reference_ends' => 'Referința internă se termină cu ":value"', - 'search_modifier_internal_reference_starts' => 'Referința internă începe cu ":value"', - 'search_modifier_not_internal_reference_ends' => 'Referința internă nu se termină cu ":value"', - 'search_modifier_not_internal_reference_starts' => 'Referința internă nu începe cu ":value"', - 'search_modifier_external_url_is' => 'URL-ul extern este ":value"', - 'search_modifier_not_external_url_is' => 'URL-ul extern nu este ":value"', - 'search_modifier_external_url_contains' => 'URL-ul extern conține ":value"', - 'search_modifier_not_external_url_contains' => 'URL-ul extern nu conține ":value"', - 'search_modifier_external_url_ends' => 'URL-ul extern se termină cu ":value"', - 'search_modifier_not_external_url_ends' => 'URL-ul extern nu se termină cu ":value"', - 'search_modifier_external_url_starts' => 'URL-ul extern începe cu ":value"', - 'search_modifier_not_external_url_starts' => 'URL-ul extern nu începe cu ":value"', - 'search_modifier_has_no_attachments' => 'Tranzacția nu are atașamente', - 'search_modifier_not_has_no_attachments' => 'Tranzacția are atașamente', - 'search_modifier_not_has_attachments' => 'Tranzacția nu are atașamente', - 'search_modifier_account_is_cash' => 'Orice cont este cont de "(numerar)".', - 'search_modifier_not_account_is_cash' => 'Nici contul nu este cont de "(numerar)".', - 'search_modifier_journal_id' => 'ID-ul jurnalului este ":value"', - 'search_modifier_not_journal_id' => 'ID-ul jurnalului nu este ":value"', - 'search_modifier_recurrence_id' => 'ID-ul tranzacției recurente este ":value"', - 'search_modifier_not_recurrence_id' => 'ID-ul tranzacției recurente nu este ":value"', - 'search_modifier_foreign_amount_is' => 'Suma in moneda străină este ":value"', - 'search_modifier_not_foreign_amount_is' => 'Suma in moneda străină nu este ":value"', - 'search_modifier_foreign_amount_less' => 'Suma în valută este mai mică decât ":value"', - 'search_modifier_not_foreign_amount_more' => 'Suma în valută este mai mică decât ":value"', - 'search_modifier_not_foreign_amount_less' => 'Suma în valută este mai mare decât ":value"', - 'search_modifier_foreign_amount_more' => 'Suma în valută este mai mare decât ":value"', - 'search_modifier_exists' => 'Tranzacția există (orice tranzacție)', - 'search_modifier_not_exists' => 'Tranzacția nu există (fără tranzacție)', + 'search_modifier_tag_is_not' => 'Nicio etichetă nu este ":value"', + 'search_modifier_not_tag_is_not' => 'Eticheta este ":value"', + 'search_modifier_account_is' => 'Oricare cont este ":value"', + 'search_modifier_not_account_is' => 'Niciun cont nu este ":value"', + 'search_modifier_account_contains' => 'Fiecare cont conține ":value"', + 'search_modifier_not_account_contains' => 'Nici unul dintre conturi nu conține ":value"', + 'search_modifier_account_ends' => 'Oricare cont se termină cu ":value"', + 'search_modifier_not_account_ends' => 'Nici unul dintre conturi nu se termină cu ":value"', + 'search_modifier_account_starts' => 'Oricare cont începe cu ":value"', + 'search_modifier_not_account_starts' => 'Nici un cont nu începe cu ":value"', + 'search_modifier_account_nr_is' => 'Fie numărul de cont/IBAN este ":value"', + 'search_modifier_not_account_nr_is' => 'Nici numărul de cont / IBAN nu este ":value"', + 'search_modifier_account_nr_contains' => 'Fie numărul de cont/IBAN conține ":value"', + 'search_modifier_not_account_nr_contains' => 'Nici numărul de cont / IBAN nu conține ":value"', + 'search_modifier_account_nr_ends' => 'Fie numărul de cont/IBAN se termină cu ":value"', + 'search_modifier_not_account_nr_ends' => 'Nici numărul de cont / IBAN nu se termină cu ":value"', + 'search_modifier_account_nr_starts' => 'Fie numărul de cont/IBAN începe cu ":value"', + 'search_modifier_not_account_nr_starts' => 'Nici numărul de cont / IBAN nu începe cu ":value"', + 'search_modifier_category_contains' => 'Categoria conține ":value"', + 'search_modifier_not_category_contains' => 'Categoria nu conține ":value"', + 'search_modifier_category_ends' => 'Categoria se termină pe ":value"', + 'search_modifier_not_category_ends' => 'Categoria nu se termină pe ":value"', + 'search_modifier_category_starts' => 'Categoria începe cu ":value"', + 'search_modifier_not_category_starts' => 'Categoria nu începe cu ":value"', + 'search_modifier_budget_contains' => 'Bugetul conține „:value”', + 'search_modifier_not_budget_contains' => 'Bugetul nu conține „:value”', + 'search_modifier_budget_ends' => 'Bugetul se termină cu ":value"', + 'search_modifier_not_budget_ends' => 'Bugetul nu se termină pe „:value”', + 'search_modifier_budget_starts' => 'Bugetul începe cu ":value"', + 'search_modifier_not_budget_starts' => 'Bugetul nu începe cu ":value"', + 'search_modifier_bill_contains' => 'Factura conține ":value"', + 'search_modifier_not_bill_contains' => 'Factura nu conține ":value"', + 'search_modifier_bill_ends' => 'Factura se termină cu ":value"', + 'search_modifier_not_bill_ends' => 'Factura nu se termină pe ":value"', + 'search_modifier_bill_starts' => 'Factura începe cu ":value"', + 'search_modifier_not_bill_starts' => 'Factura nu începe cu ":value"', + 'search_modifier_external_id_contains' => 'ID extern conține ":value"', + 'search_modifier_not_external_id_contains' => 'ID extern nu conține ":value"', + 'search_modifier_external_id_ends' => 'ID extern se termină cu ":value"', + 'search_modifier_not_external_id_ends' => 'ID extern nu se termină cu ":value"', + 'search_modifier_external_id_starts' => 'ID extern începe cu ":value"', + 'search_modifier_not_external_id_starts' => 'ID extern nu începe cu ":value"', + 'search_modifier_internal_reference_contains' => 'Referinţa internă conţine ":value"', + 'search_modifier_not_internal_reference_contains' => 'Referința internă nu conține ":value"', + 'search_modifier_internal_reference_ends' => 'Referința internă se termină cu ":value"', + 'search_modifier_internal_reference_starts' => 'Referința internă începe cu ":value"', + 'search_modifier_not_internal_reference_ends' => 'Referința internă nu se termină cu ":value"', + 'search_modifier_not_internal_reference_starts' => 'Referința internă nu începe cu ":value"', + 'search_modifier_external_url_is' => 'URL-ul extern este ":value"', + 'search_modifier_not_external_url_is' => 'URL-ul extern nu este ":value"', + 'search_modifier_external_url_contains' => 'URL-ul extern conține ":value"', + 'search_modifier_not_external_url_contains' => 'URL-ul extern nu conține ":value"', + 'search_modifier_external_url_ends' => 'URL-ul extern se termină cu ":value"', + 'search_modifier_not_external_url_ends' => 'URL-ul extern nu se termină cu ":value"', + 'search_modifier_external_url_starts' => 'URL-ul extern începe cu ":value"', + 'search_modifier_not_external_url_starts' => 'URL-ul extern nu începe cu ":value"', + 'search_modifier_has_no_attachments' => 'Tranzacția nu are atașamente', + 'search_modifier_not_has_no_attachments' => 'Tranzacția are atașamente', + 'search_modifier_not_has_attachments' => 'Tranzacția nu are atașamente', + 'search_modifier_account_is_cash' => 'Orice cont este cont de "(numerar)".', + 'search_modifier_not_account_is_cash' => 'Nici contul nu este cont de "(numerar)".', + 'search_modifier_journal_id' => 'ID-ul jurnalului este ":value"', + 'search_modifier_not_journal_id' => 'ID-ul jurnalului nu este ":value"', + 'search_modifier_recurrence_id' => 'ID-ul tranzacției recurente este ":value"', + 'search_modifier_not_recurrence_id' => 'ID-ul tranzacției recurente nu este ":value"', + 'search_modifier_foreign_amount_is' => 'Suma in moneda străină este ":value"', + 'search_modifier_not_foreign_amount_is' => 'Suma in moneda străină nu este ":value"', + 'search_modifier_foreign_amount_less' => 'Suma în valută este mai mică decât ":value"', + 'search_modifier_not_foreign_amount_more' => 'Suma în valută este mai mică decât ":value"', + 'search_modifier_not_foreign_amount_less' => 'Suma în valută este mai mare decât ":value"', + 'search_modifier_foreign_amount_more' => 'Suma în valută este mai mare decât ":value"', + 'search_modifier_exists' => 'Tranzacția există (orice tranzacție)', + 'search_modifier_not_exists' => 'Tranzacția nu există (fără tranzacție)', // date fields - 'search_modifier_interest_date_on' => 'Data dobânzii tranzacţiei este ":value"', - 'search_modifier_not_interest_date_on' => 'Data dobânzii tranzacției nu este ":value"', - 'search_modifier_interest_date_on_year' => 'Data dobânzii tranzacției este în anul ":value"', - 'search_modifier_not_interest_date_on_year' => 'Data dobânzii tranzacției nu este în anul ":value"', - 'search_modifier_interest_date_on_month' => 'Data dobânzii tranzacției este în luna ":value"', - 'search_modifier_not_interest_date_on_month' => 'Data dobânzii tranzacției nu este în luna ":value"', - 'search_modifier_interest_date_on_day' => 'Data dobânzii tranzacției este în ziua lunii ":value"', - 'search_modifier_not_interest_date_on_day' => 'Data dobânzii tranzacției nu este în ziua lunii ":value"', - 'search_modifier_interest_date_before_year' => 'Data dobânzii tranzacției este înainte sau în anul ":value"', - 'search_modifier_interest_date_before_month' => 'Data dobânzii tranzacției este înainte sau în luna ":value"', - 'search_modifier_interest_date_before_day' => 'Data dobânzii tranzacției este înainte sau în ziua lunii ":value"', - 'search_modifier_interest_date_after_year' => 'Data dobânzii tranzacției este după sau în anul ":value"', - 'search_modifier_interest_date_after_month' => 'Data dobânzii tranzacției este după sau în luna ":value"', - 'search_modifier_interest_date_after_day' => 'Data dobânzii tranzacției este după sau în ziua lunii ":value"', - 'search_modifier_book_date_on_year' => 'Data tranzacției este în anul ":value"', - 'search_modifier_book_date_on_month' => 'Data tranzacţiei este în luna ":value"', - 'search_modifier_book_date_on_day' => 'Data registrului de tranzacţii este în ziua lunii ":value"', - 'search_modifier_not_book_date_on_year' => 'Data portofoliului de tranzacții nu este în anul ":value"', - 'search_modifier_not_book_date_on_month' => 'Data tranzacţiei nu este în luna ":value"', - 'search_modifier_not_book_date_on_day' => 'Data tranzacției nu este în ziua lunii ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Data tranzacţiei este în luna ":value"', - 'search_modifier_invoice_date_on_day' => 'Data facturării tranzacției este în ziua lunii ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Data facturării tranzacției nu este în anul ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Data facturării tranzacției nu este în luna ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Data facturării tranzacției nu este în ziua lunii ":value"', - 'search_modifier_invoice_date_before_year' => 'Data facturării tranzacției este înainte sau în anul ":value"', - 'search_modifier_invoice_date_before_month' => 'Data facturării tranzacției este înainte sau în luna ":value"', - 'search_modifier_invoice_date_before_day' => 'Data facturii este înainte sau în ziua lunii ":value"', - 'search_modifier_invoice_date_after_year' => 'Data facturării tranzacției este după sau în anul ":value"', - 'search_modifier_invoice_date_after_month' => 'Data facturării tranzacției este după sau în luna ":value"', - 'search_modifier_invoice_date_after_day' => 'Data facturării tranzacției este după sau în ziua lunii ":value"', + 'search_modifier_interest_date_on' => 'Data dobânzii tranzacţiei este ":value"', + 'search_modifier_not_interest_date_on' => 'Data dobânzii tranzacției nu este ":value"', + 'search_modifier_interest_date_on_year' => 'Data dobânzii tranzacției este în anul ":value"', + 'search_modifier_not_interest_date_on_year' => 'Data dobânzii tranzacției nu este în anul ":value"', + 'search_modifier_interest_date_on_month' => 'Data dobânzii tranzacției este în luna ":value"', + 'search_modifier_not_interest_date_on_month' => 'Data dobânzii tranzacției nu este în luna ":value"', + 'search_modifier_interest_date_on_day' => 'Data dobânzii tranzacției este în ziua lunii ":value"', + 'search_modifier_not_interest_date_on_day' => 'Data dobânzii tranzacției nu este în ziua lunii ":value"', + 'search_modifier_interest_date_before_year' => 'Data dobânzii tranzacției este înainte sau în anul ":value"', + 'search_modifier_interest_date_before_month' => 'Data dobânzii tranzacției este înainte sau în luna ":value"', + 'search_modifier_interest_date_before_day' => 'Data dobânzii tranzacției este înainte sau în ziua lunii ":value"', + 'search_modifier_interest_date_after_year' => 'Data dobânzii tranzacției este după sau în anul ":value"', + 'search_modifier_interest_date_after_month' => 'Data dobânzii tranzacției este după sau în luna ":value"', + 'search_modifier_interest_date_after_day' => 'Data dobânzii tranzacției este după sau în ziua lunii ":value"', + 'search_modifier_book_date_on_year' => 'Data tranzacției este în anul ":value"', + 'search_modifier_book_date_on_month' => 'Data tranzacţiei este în luna ":value"', + 'search_modifier_book_date_on_day' => 'Data registrului de tranzacţii este în ziua lunii ":value"', + 'search_modifier_not_book_date_on_year' => 'Data portofoliului de tranzacții nu este în anul ":value"', + 'search_modifier_not_book_date_on_month' => 'Data tranzacţiei nu este în luna ":value"', + 'search_modifier_not_book_date_on_day' => 'Data tranzacției nu este în ziua lunii ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Data tranzacţiei este în luna ":value"', + 'search_modifier_invoice_date_on_day' => 'Data facturării tranzacției este în ziua lunii ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Data facturării tranzacției nu este în anul ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Data facturării tranzacției nu este în luna ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Data facturării tranzacției nu este în ziua lunii ":value"', + 'search_modifier_invoice_date_before_year' => 'Data facturării tranzacției este înainte sau în anul ":value"', + 'search_modifier_invoice_date_before_month' => 'Data facturării tranzacției este înainte sau în luna ":value"', + 'search_modifier_invoice_date_before_day' => 'Data facturii este înainte sau în ziua lunii ":value"', + 'search_modifier_invoice_date_after_year' => 'Data facturării tranzacției este după sau în anul ":value"', + 'search_modifier_invoice_date_after_month' => 'Data facturării tranzacției este după sau în luna ":value"', + 'search_modifier_invoice_date_after_day' => 'Data facturării tranzacției este după sau în ziua lunii ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Tranzacția a fost actualizată ultima dată în anul ":value"', - 'search_modifier_updated_at_on_month' => 'Tranzacția a fost actualizată ultima dată în luna ":value"', - 'search_modifier_updated_at_on_day' => 'Tranzacția a fost actualizată ultima dată în ziua lunii ":value"', - 'search_modifier_not_updated_at_on_year' => 'Tranzacția nu a fost actualizată ultima dată în anul ":value"', - 'search_modifier_not_updated_at_on_month' => 'Tranzacția nu a fost actualizată ultima dată în luna ":value"', - 'search_modifier_not_updated_at_on_day' => 'Tranzacția nu a fost actualizată ultima dată în ziua lunii ":value"', - 'search_modifier_updated_at_before_year' => 'Tranzacția a fost actualizată ultima dată în sau înainte de anul ":value"', - 'search_modifier_updated_at_before_month' => 'Tranzacția a fost actualizată ultima dată în sau înainte de luna ":value"', - 'search_modifier_updated_at_before_day' => 'Tranzacția a fost actualizată ultima dată în sau înainte de ziua din luna ":value"', - 'search_modifier_updated_at_after_year' => 'Tranzacția a fost actualizată ultima dată în sau după anul ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Tranzacția a fost actualizată ultima dată în anul ":value"', + 'search_modifier_updated_at_on_month' => 'Tranzacția a fost actualizată ultima dată în luna ":value"', + 'search_modifier_updated_at_on_day' => 'Tranzacția a fost actualizată ultima dată în ziua lunii ":value"', + 'search_modifier_not_updated_at_on_year' => 'Tranzacția nu a fost actualizată ultima dată în anul ":value"', + 'search_modifier_not_updated_at_on_month' => 'Tranzacția nu a fost actualizată ultima dată în luna ":value"', + 'search_modifier_not_updated_at_on_day' => 'Tranzacția nu a fost actualizată ultima dată în ziua lunii ":value"', + 'search_modifier_updated_at_before_year' => 'Tranzacția a fost actualizată ultima dată în sau înainte de anul ":value"', + 'search_modifier_updated_at_before_month' => 'Tranzacția a fost actualizată ultima dată în sau înainte de luna ":value"', + 'search_modifier_updated_at_before_day' => 'Tranzacția a fost actualizată ultima dată în sau înainte de ziua din luna ":value"', + 'search_modifier_updated_at_after_year' => 'Tranzacția a fost actualizată ultima dată în sau după anul ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT este ":value"', - 'update_rule_from_query' => 'Actualizați regula ":rule" din interogarea de căutare', - 'create_rule_from_query' => 'Creați o nouă regulă din interogarea de căutare', - 'rule_from_search_words' => 'Motorul regulii are dificultăți în manipularea ":string". Regula sugerată care se potrivește interogării dvs. poate da rezultate diferite. Vă rugăm să verificați declanșatorii regulii cu atenție.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT este ":value"', + 'update_rule_from_query' => 'Actualizați regula ":rule" din interogarea de căutare', + 'create_rule_from_query' => 'Creați o nouă regulă din interogarea de căutare', + 'rule_from_search_words' => 'Motorul regulii are dificultăți în manipularea ":string". Regula sugerată care se potrivește interogării dvs. poate da rezultate diferite. Vă rugăm să verificați declanșatorii regulii cu atenție.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Următorii modificatorii sunt aplicați la căutare:', - 'general_search_error' => 'A apărut o eroare în timpul căutării. Verificați log-urile pentru mai multe informații.', - 'search_box' => 'Caută', - 'search_box_intro' => 'Bun venit la funcția de căutare. Introduceți interogarea dvs. în căsuță. Asigurați-vă că verificați fișierul de ajutor deoarece căutarea este destul de avansată.', - 'search_error' => 'Eroare la căutare', - 'search_searching' => 'Căutare ...', - 'search_results' => 'Rezultatele căutarii', + 'modifiers_applies_are' => 'Următorii modificatorii sunt aplicați la căutare:', + 'general_search_error' => 'A apărut o eroare în timpul căutării. Verificați log-urile pentru mai multe informații.', + 'search_box' => 'Caută', + 'search_box_intro' => 'Bun venit la funcția de căutare. Introduceți interogarea dvs. în căsuță. Asigurați-vă că verificați fișierul de ajutor deoarece căutarea este destul de avansată.', + 'search_error' => 'Eroare la căutare', + 'search_searching' => 'Căutare ...', + 'search_results' => 'Rezultatele căutarii', // repeat frequencies: - 'repeat_freq_yearly' => 'anual', - 'repeat_freq_half-year' => 'fiecare jumătate de an', - 'repeat_freq_quarterly' => 'trimestrial', - 'repeat_freq_monthly' => 'lunar', - 'repeat_freq_weekly' => 'săptămânal', - 'repeat_freq_daily' => 'zilnic', - 'daily' => 'zilnic', - 'weekly' => 'săptămânal', - 'quarterly' => 'trimestrial', - 'half-year' => 'fiecare jumătate de an', - 'yearly' => 'anual', + 'repeat_freq_yearly' => 'anual', + 'repeat_freq_half-year' => 'fiecare jumătate de an', + 'repeat_freq_quarterly' => 'trimestrial', + 'repeat_freq_monthly' => 'lunar', + 'repeat_freq_weekly' => 'săptămânal', + 'repeat_freq_daily' => 'zilnic', + 'daily' => 'zilnic', + 'weekly' => 'săptămânal', + 'quarterly' => 'trimestrial', + 'half-year' => 'fiecare jumătate de an', + 'yearly' => 'anual', // rules - 'is_not_rule_trigger' => 'Nu', - 'cannot_fire_inactive_rules' => 'Nu se pot executa reguli inactive.', - 'show_triggers' => 'Arată declanșatoare', - 'show_actions' => 'Afișare acțiuni', - 'rules' => 'Reguli', - 'rule_name' => 'Denumirea regulii', - 'rule_triggers' => 'Regulă se va declanșa când', - 'rule_actions' => 'Regulă va', - 'new_rule' => 'O nouă regulă', - 'new_rule_group' => 'Un nou grup de reguli', - 'rule_priority_up' => 'Acordați prioritate regulii', - 'rule_priority_down' => 'Acordați mai putină prioritate regulii', - 'make_new_rule_group' => 'Faceți un nou grup de reguli', - 'store_new_rule_group' => 'Păstrați un nou grup de reguli', - 'created_new_rule_group' => 'Grup nou de reguli ":title" stocat!', - 'updated_rule_group' => 'Grup de reguli actualizat cu succes ":title".', - 'edit_rule_group' => 'Editați grupul de reguli ":title"', - 'duplicate_rule' => 'Duplicați regula ":title"', - 'rule_copy_of' => 'Copie a ":title"', - 'duplicated_rule' => 'Regulă ":title" duplicată în ":newTitle"', - 'delete_rule_group' => 'Ștergeți grupul de reguli ":title"', - 'deleted_rule_group' => 'Grupul de reguli ":title" a fost șters', - 'update_rule_group' => 'Actualizați grupul de reguli', - 'no_rules_in_group' => 'Nu există reguli în acest grup', - 'move_rule_group_up' => 'Mutare grupul de reguli mai sus', - 'move_rule_group_down' => 'Mutare grupul de reguli mai jos', - 'save_rules_by_moving' => 'Salvați această regulă mutând-o la un alt grup de reguli: Salvați aceste reguli mutându-le în alt grup de reguli:', - 'make_new_rule' => 'Creați o nouă regulă în grupul de reguli ":title"', - 'make_new_rule_no_group' => 'Creați o nouă regulă', - 'instructions_rule_from_bill' => 'Pentru a potrivi tranzacția cu noua factură ":name", Firefly III poate crea o regulă care va fi verificată automat împotriva tranzacțiilor pe care le stocați. Verificați detaliile de mai jos și păstrați regula pentru ca Firefly III să potrivească automat tranzacțiile cu factura nouă.', - 'instructions_rule_from_journal' => 'Creați o regulă bazată pe una dintre tranzacțiile dvs. Completați sau trimiteți formularul de mai jos.', - 'rule_is_strict' => 'regulă strictă', - 'rule_is_not_strict' => 'regulă nestrictă', - 'rule_help_stop_processing' => 'Când bifați această casetă, regulile ulterioare din acest grup nu vor fi executate.', - 'rule_help_strict' => 'În regulile stricte, toți declanșatorii trebuie să declanșeze acțiunea (acțiunile) care trebuie executate. În reguli nestricte, orice declanșator este suficient pentru acțiunea (acțiunile) care trebuie executată.', - 'rule_help_active' => 'Regulile noi nu vor fi niciodată declanșate.', - 'stored_new_rule' => 'S-a salvat o nouă regulă cu titlu ":title"', - 'deleted_rule' => 'S-a șters o regulă cu titlul ":title"', - 'store_new_rule' => 'Salvati regulă nouă', - 'updated_rule' => 'S-a actualizat o regulă cu titlul ":title"', - 'default_rule_group_name' => 'Reguli standard', - 'default_rule_group_description' => 'Toate regulile - nu sunt într-un anumit grup.', - 'trigger' => 'Declanșator', - 'trigger_value' => 'Declanșare la valoarea', - 'stop_processing_other_triggers' => 'Opriți procesarea altor declanșatoare', - 'add_rule_trigger' => 'Adăugați un nou declanșator', - 'action' => 'Acțiune', - 'action_value' => 'Valoarea acțiunii', - 'stop_executing_other_actions' => 'Opriți executarea altor acțiuni', - 'add_rule_action' => 'Adăugați o acțiune nouă', - 'edit_rule' => 'Editați regula ":title"', - 'delete_rule' => 'Stergeți regula ":title"', - 'update_rule' => 'Actualizați regula', - 'test_rule_triggers' => 'Consultați tranzacțiile potrivite', - 'warning_no_matching_transactions' => 'Nicio tranzacție găsită.', - 'warning_no_valid_triggers' => 'Nu au fost furnizate declanșatoare valide.', - 'apply_rule_selection' => 'Aplicați regula ":title" la o selecție a tranzacțiilor dvs.', - 'apply_rule_selection_intro' => 'Reguli de genul ":title" se aplică, în mod normal, tranzacțiilor noi sau actualizate, dar puteți să-i spuneți aplicației să o ruleze pe o selecție a tranzacțiilor existente. Acest lucru poate fi util atunci când ați actualizat o regulă și aveți nevoie de modificările care vor fi aplicate tuturor celorlalte tranzacții.', - 'include_transactions_from_accounts' => 'Includeți tranzacții din aceste conturi', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} Nicio tranzacție în selecția dvs. nu a fost modificată prin regula ":title".[1] O tranzacție din selecția dvs. a fost modificată prin regula ":title". [2,*] :count tranzacții în selecție au fost modificate prin regula ":title".', - 'execute' => 'Execută', - 'apply_rule_group_selection' => 'Aplicați grupul de reguli ":title" la o selecție a tranzacțiilor dvs.', - 'apply_rule_group_selection_intro' => 'Grupul de reguli precum ":title" se aplică, în mod normal, tranzacțiilor noi sau actualizate, însă puteți spune aplicației că rulează toate regulile din acest grup cu privire la o selecție a tranzacțiilor existente. Acest lucru poate fi util atunci când ați actualizat un grup de reguli și aveți nevoie de modificările care vor fi aplicate tuturor celorlalte tranzacții.', - 'applied_rule_group_selection' => 'Grupul de reguli ":title" a fost aplicat selecției dvs..', + 'is_not_rule_trigger' => 'Nu', + 'cannot_fire_inactive_rules' => 'Nu se pot executa reguli inactive.', + 'show_triggers' => 'Arată declanșatoare', + 'show_actions' => 'Afișare acțiuni', + 'rules' => 'Reguli', + 'rule_name' => 'Denumirea regulii', + 'rule_triggers' => 'Regulă se va declanșa când', + 'rule_actions' => 'Regulă va', + 'new_rule' => 'O nouă regulă', + 'new_rule_group' => 'Un nou grup de reguli', + 'rule_priority_up' => 'Acordați prioritate regulii', + 'rule_priority_down' => 'Acordați mai putină prioritate regulii', + 'make_new_rule_group' => 'Faceți un nou grup de reguli', + 'store_new_rule_group' => 'Păstrați un nou grup de reguli', + 'created_new_rule_group' => 'Grup nou de reguli ":title" stocat!', + 'updated_rule_group' => 'Grup de reguli actualizat cu succes ":title".', + 'edit_rule_group' => 'Editați grupul de reguli ":title"', + 'duplicate_rule' => 'Duplicați regula ":title"', + 'rule_copy_of' => 'Copie a ":title"', + 'duplicated_rule' => 'Regulă ":title" duplicată în ":newTitle"', + 'delete_rule_group' => 'Ștergeți grupul de reguli ":title"', + 'deleted_rule_group' => 'Grupul de reguli ":title" a fost șters', + 'update_rule_group' => 'Actualizați grupul de reguli', + 'no_rules_in_group' => 'Nu există reguli în acest grup', + 'move_rule_group_up' => 'Mutare grupul de reguli mai sus', + 'move_rule_group_down' => 'Mutare grupul de reguli mai jos', + 'save_rules_by_moving' => 'Salvați această regulă mutând-o la un alt grup de reguli: Salvați aceste reguli mutându-le în alt grup de reguli:', + 'make_new_rule' => 'Creați o nouă regulă în grupul de reguli ":title"', + 'make_new_rule_no_group' => 'Creați o nouă regulă', + 'instructions_rule_from_bill' => 'Pentru a potrivi tranzacția cu noua factură ":name", Firefly III poate crea o regulă care va fi verificată automat împotriva tranzacțiilor pe care le stocați. Verificați detaliile de mai jos și păstrați regula pentru ca Firefly III să potrivească automat tranzacțiile cu factura nouă.', + 'instructions_rule_from_journal' => 'Creați o regulă bazată pe una dintre tranzacțiile dvs. Completați sau trimiteți formularul de mai jos.', + 'rule_is_strict' => 'regulă strictă', + 'rule_is_not_strict' => 'regulă nestrictă', + 'rule_help_stop_processing' => 'Când bifați această casetă, regulile ulterioare din acest grup nu vor fi executate.', + 'rule_help_strict' => 'În regulile stricte, toți declanșatorii trebuie să declanșeze acțiunea (acțiunile) care trebuie executate. În reguli nestricte, orice declanșator este suficient pentru acțiunea (acțiunile) care trebuie executată.', + 'rule_help_active' => 'Regulile noi nu vor fi niciodată declanșate.', + 'stored_new_rule' => 'S-a salvat o nouă regulă cu titlu ":title"', + 'deleted_rule' => 'S-a șters o regulă cu titlul ":title"', + 'store_new_rule' => 'Salvati regulă nouă', + 'updated_rule' => 'S-a actualizat o regulă cu titlul ":title"', + 'default_rule_group_name' => 'Reguli standard', + 'default_rule_group_description' => 'Toate regulile - nu sunt într-un anumit grup.', + 'trigger' => 'Declanșator', + 'trigger_value' => 'Declanșare la valoarea', + 'stop_processing_other_triggers' => 'Opriți procesarea altor declanșatoare', + 'add_rule_trigger' => 'Adăugați un nou declanșator', + 'action' => 'Acțiune', + 'action_value' => 'Valoarea acțiunii', + 'stop_executing_other_actions' => 'Opriți executarea altor acțiuni', + 'add_rule_action' => 'Adăugați o acțiune nouă', + 'edit_rule' => 'Editați regula ":title"', + 'delete_rule' => 'Stergeți regula ":title"', + 'update_rule' => 'Actualizați regula', + 'test_rule_triggers' => 'Consultați tranzacțiile potrivite', + 'warning_no_matching_transactions' => 'Nicio tranzacție găsită.', + 'warning_no_valid_triggers' => 'Nu au fost furnizate declanșatoare valide.', + 'apply_rule_selection' => 'Aplicați regula ":title" la o selecție a tranzacțiilor dvs.', + 'apply_rule_selection_intro' => 'Reguli de genul ":title" se aplică, în mod normal, tranzacțiilor noi sau actualizate, dar puteți să-i spuneți aplicației să o ruleze pe o selecție a tranzacțiilor existente. Acest lucru poate fi util atunci când ați actualizat o regulă și aveți nevoie de modificările care vor fi aplicate tuturor celorlalte tranzacții.', + 'include_transactions_from_accounts' => 'Includeți tranzacții din aceste conturi', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} Nicio tranzacție în selecția dvs. nu a fost modificată prin regula ":title".[1] O tranzacție din selecția dvs. a fost modificată prin regula ":title". [2,*] :count tranzacții în selecție au fost modificate prin regula ":title".', + 'execute' => 'Execută', + 'apply_rule_group_selection' => 'Aplicați grupul de reguli ":title" la o selecție a tranzacțiilor dvs.', + 'apply_rule_group_selection_intro' => 'Grupul de reguli precum ":title" se aplică, în mod normal, tranzacțiilor noi sau actualizate, însă puteți spune aplicației că rulează toate regulile din acest grup cu privire la o selecție a tranzacțiilor existente. Acest lucru poate fi util atunci când ați actualizat un grup de reguli și aveți nevoie de modificările care vor fi aplicate tuturor celorlalte tranzacții.', + 'applied_rule_group_selection' => 'Grupul de reguli ":title" a fost aplicat selecției dvs..', // actions and triggers - 'rule_trigger_store_journal' => 'Când este o tranzacție creată', - 'rule_trigger_update_journal' => 'Când este o tranzacție actualizată', - 'rule_trigger_user_action' => 'Acțiunea utilizatorului este ":trigger_value"', + 'rule_trigger_store_journal' => 'Când este o tranzacție creată', + 'rule_trigger_update_journal' => 'Când este o tranzacție actualizată', + 'rule_trigger_user_action' => 'Acțiunea utilizatorului este ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Numele contului sursă începe cu..', - 'rule_trigger_source_account_starts' => 'Numele contului sursă începe cu ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Numele contului sursă se termină cu..', - 'rule_trigger_source_account_ends' => 'Numele contului sursă se termină cu ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Numele contului sursă este..', - 'rule_trigger_source_account_is' => 'Numele contului sursă este ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Numele contului sursă conține..', - 'rule_trigger_source_account_contains' => 'Numele contului sursă conține ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Fie ID-ul contului este exact..', - 'rule_trigger_account_id' => 'Fie ID-ul contului este exact :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID-ul contului sursă este exact..', - 'rule_trigger_source_account_id' => 'ID-ul contului sursă este exact :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID-ul contului destinației este exact..', - 'rule_trigger_destination_account_id' => 'ID-ul contului destinației este exact :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Oricare cont este numerar', - 'rule_trigger_account_is_cash' => 'Oricare cont este numerar', - 'rule_trigger_source_is_cash_choice' => 'Contul sursă este (numerar)', - 'rule_trigger_source_is_cash' => 'Contul sursă este (numerar)', - 'rule_trigger_destination_is_cash_choice' => 'Contul destinației este (numerar)', - 'rule_trigger_destination_is_cash' => 'Contul destinației este (numerar)', - 'rule_trigger_source_account_nr_starts_choice' => 'Numărul contului sursă/IBAN începe cu..', - 'rule_trigger_source_account_nr_starts' => 'Numărul contului sursă/IBAN începe cu ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Numărul contului sursă/ IBAN se încheie cu..', - 'rule_trigger_source_account_nr_ends' => 'Numărul contului sursă/ IBAN se termină cu ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Numărul contului sursă/ IBAN este..', - 'rule_trigger_source_account_nr_is' => 'Numărul contului sursă/ IBAN este ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Numărul contului sursă/ IBAN conține..', - 'rule_trigger_source_account_nr_contains' => 'Numărul contului sursă/ IBAN conține ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Numele contului de destinație începe cu..', - 'rule_trigger_destination_account_starts' => 'Numele contului de destinație începe cu ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Numele contului de destinație se încheie cu..', - 'rule_trigger_destination_account_ends' => 'Numele contului de destinație se termină cu ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Numele contului destinație este..', - 'rule_trigger_destination_account_is' => 'Numele contului destinației este ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Numele contului destinației conține..', - 'rule_trigger_destination_account_contains' => 'Numele contului destinației conține ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Numărul contului destinației/IBAN începe cu..', - 'rule_trigger_destination_account_nr_starts' => 'Numărul contului destinației / IBAN începe cu ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Numărul contului de destinație/IBAN se încheie cu..', - 'rule_trigger_destination_account_nr_ends' => 'Numărul contului destinației / IBAN se termină cu ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Numărul contului destinației/IBAN este..', - 'rule_trigger_destination_account_nr_is' => 'Numărul contului destinației / IBAN este ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Numărul contului de destinație/IBAN conține..', - 'rule_trigger_destination_account_nr_contains' => 'Numărul contului destinației/IBAN conține ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Tranzacția este de tip..', - 'rule_trigger_transaction_type' => 'Tranzacția este de tip ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Categoria este..', - 'rule_trigger_category_is' => 'Categoria este ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Suma este mai mică sau egală cu ..', - 'rule_trigger_amount_less' => 'Suma este mai mică sau egală cu :trigger_value', - 'rule_trigger_amount_is_choice' => 'Suma este..', - 'rule_trigger_amount_is' => 'Suma este :trigger_value', - 'rule_trigger_amount_more_choice' => 'Suma este mai mare sau egală cu..', - 'rule_trigger_amount_more' => 'Suma este mai mare sau egală cu :trigger_value', - 'rule_trigger_description_starts_choice' => 'Descrierea începe cu..', - 'rule_trigger_description_starts' => 'Descrierea începe cu ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Descrierea se termină cu..', - 'rule_trigger_description_ends' => 'Descrierea se termină cu ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Descrierea conține..', - 'rule_trigger_description_contains' => 'Descrierea conține ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Descrierea este..', - 'rule_trigger_description_is' => 'Descrierea este ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Data tranzacției este..', - 'rule_trigger_date_on' => 'Data tranzacției este ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Data tranzacției este dinainte..', - 'rule_trigger_date_before' => 'Data tranzacției este înainte de ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Data tranzacției este după..', - 'rule_trigger_date_after' => 'Data tranzacției este după ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Tranzacția a fost făcută pe..', - 'rule_trigger_created_at_on' => 'Tranzacția a fost făcută pe ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Tranzacția a fost editată ultima dată pe..', - 'rule_trigger_updated_at_on' => 'Tranzacția a fost editată ultima dată pe ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Bugetul este..', - 'rule_trigger_budget_is' => 'Bugetul este ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Orice etichetă este..', - 'rule_trigger_tag_is' => 'Orice etichetă este ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Orice etichetă conține..', - 'rule_trigger_tag_contains' => 'Orice etichetă conține ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Orice etichetă se termină cu..', - 'rule_trigger_tag_ends' => 'Orice etichetă se termină cu ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Orice etichetă începe cu..', - 'rule_trigger_tag_starts' => 'Orice etichetă începe cu ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Moneda tranzacției este..', - 'rule_trigger_currency_is' => 'Moneda tranzacției este ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Tranzacția valutară este..', - 'rule_trigger_foreign_currency_is' => 'Moneda străină este ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Are cel puțin atâtea atașamente', - 'rule_trigger_has_attachments' => 'Are cel puțin :trigger_value atașament(e)', - 'rule_trigger_has_no_category_choice' => 'Nu are nici o categorie', - 'rule_trigger_has_no_category' => 'Tranzacția nu are nici o categorie', - 'rule_trigger_has_any_category_choice' => 'Are o (orice) categorie', - 'rule_trigger_has_any_category' => 'Tranzacția are o (orice) categorie', - 'rule_trigger_has_no_budget_choice' => 'Nu are niciun buget', - 'rule_trigger_has_no_budget' => 'Tranzacția nu are niciun buget', - 'rule_trigger_has_any_budget_choice' => 'Are un (orice) buget', - 'rule_trigger_has_any_budget' => 'Tranzacția are un (orice) buget', - 'rule_trigger_has_no_bill_choice' => 'Nu are factură', - 'rule_trigger_has_no_bill' => 'Tranzacția nu are factură', - 'rule_trigger_has_any_bill_choice' => 'Are o (orice) factură', - 'rule_trigger_has_any_bill' => 'Tranzacția are o (orice) factură', - 'rule_trigger_has_no_tag_choice' => 'Nu are etichetă (e)', - 'rule_trigger_has_no_tag' => 'Tranzacția nu are etichetă (e)', - 'rule_trigger_has_any_tag_choice' => 'Are una sau mai multe etichete', - 'rule_trigger_has_any_tag' => 'Tranzacția are una sau mai multe etichete', - 'rule_trigger_any_notes_choice' => 'Are (orice) notițe', - 'rule_trigger_any_notes' => 'Tranzacția are (orice) notițe', - 'rule_trigger_no_notes_choice' => 'Nu are notițe', - 'rule_trigger_no_notes' => 'Tranzacția nu are notițe', - 'rule_trigger_notes_is_choice' => 'Notele sunt..', - 'rule_trigger_notes_is' => 'Notele sunt ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notele conțin..', - 'rule_trigger_notes_contains' => 'Notele conţin ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notele încep cu..', - 'rule_trigger_notes_starts' => 'Notele încep cu ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notele se termină cu..', - 'rule_trigger_notes_ends' => 'Notele se termină cu ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Factura este..', - 'rule_trigger_bill_is' => 'Factura este ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'ID extern este..', - 'rule_trigger_external_id_is' => 'ID extern este ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Referința internă este..', - 'rule_trigger_internal_reference_is' => 'Referința internă este ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID-ul jurnalului de tranzacție este..', - 'rule_trigger_journal_id' => 'ID-ul jurnalului de tranzacții este ":trigger_value"', - 'rule_trigger_any_external_url' => 'Tranzacția are un (orice) URL extern', - 'rule_trigger_any_external_url_choice' => 'Tranzacția are un (orice) URL extern', - 'rule_trigger_any_external_id' => 'Tranzacția are un (orice) ID extern', - 'rule_trigger_any_external_id_choice' => 'Tranzacția are un (orice) ID extern', - 'rule_trigger_no_external_url_choice' => 'Tranzacția nu are niciun URL extern', - 'rule_trigger_no_external_url' => 'Tranzacția nu are niciun URL extern', - 'rule_trigger_no_external_id_choice' => 'Tranzacția nu are nici un ID extern', - 'rule_trigger_no_external_id' => 'Tranzacția nu are nici un ID extern', - 'rule_trigger_id_choice' => 'ID-ul tranzacției este..', - 'rule_trigger_id' => 'ID-ul tranzacţiei este ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT este..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT este ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Numele contului sursă începe cu..', + 'rule_trigger_source_account_starts' => 'Numele contului sursă începe cu ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Numele contului sursă se termină cu..', + 'rule_trigger_source_account_ends' => 'Numele contului sursă se termină cu ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Numele contului sursă este..', + 'rule_trigger_source_account_is' => 'Numele contului sursă este ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Numele contului sursă conține..', + 'rule_trigger_source_account_contains' => 'Numele contului sursă conține ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Fie ID-ul contului este exact..', + 'rule_trigger_account_id' => 'Fie ID-ul contului este exact :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID-ul contului sursă este exact..', + 'rule_trigger_source_account_id' => 'ID-ul contului sursă este exact :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID-ul contului destinației este exact..', + 'rule_trigger_destination_account_id' => 'ID-ul contului destinației este exact :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Oricare cont este numerar', + 'rule_trigger_account_is_cash' => 'Oricare cont este numerar', + 'rule_trigger_source_is_cash_choice' => 'Contul sursă este (numerar)', + 'rule_trigger_source_is_cash' => 'Contul sursă este (numerar)', + 'rule_trigger_destination_is_cash_choice' => 'Contul destinației este (numerar)', + 'rule_trigger_destination_is_cash' => 'Contul destinației este (numerar)', + 'rule_trigger_source_account_nr_starts_choice' => 'Numărul contului sursă/IBAN începe cu..', + 'rule_trigger_source_account_nr_starts' => 'Numărul contului sursă/IBAN începe cu ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Numărul contului sursă/ IBAN se încheie cu..', + 'rule_trigger_source_account_nr_ends' => 'Numărul contului sursă/ IBAN se termină cu ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Numărul contului sursă/ IBAN este..', + 'rule_trigger_source_account_nr_is' => 'Numărul contului sursă/ IBAN este ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Numărul contului sursă/ IBAN conține..', + 'rule_trigger_source_account_nr_contains' => 'Numărul contului sursă/ IBAN conține ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Numele contului de destinație începe cu..', + 'rule_trigger_destination_account_starts' => 'Numele contului de destinație începe cu ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Numele contului de destinație se încheie cu..', + 'rule_trigger_destination_account_ends' => 'Numele contului de destinație se termină cu ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Numele contului destinație este..', + 'rule_trigger_destination_account_is' => 'Numele contului destinației este ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Numele contului destinației conține..', + 'rule_trigger_destination_account_contains' => 'Numele contului destinației conține ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Numărul contului destinației/IBAN începe cu..', + 'rule_trigger_destination_account_nr_starts' => 'Numărul contului destinației / IBAN începe cu ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Numărul contului de destinație/IBAN se încheie cu..', + 'rule_trigger_destination_account_nr_ends' => 'Numărul contului destinației / IBAN se termină cu ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Numărul contului destinației/IBAN este..', + 'rule_trigger_destination_account_nr_is' => 'Numărul contului destinației / IBAN este ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Numărul contului de destinație/IBAN conține..', + 'rule_trigger_destination_account_nr_contains' => 'Numărul contului destinației/IBAN conține ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Tranzacția este de tip..', + 'rule_trigger_transaction_type' => 'Tranzacția este de tip ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Categoria este..', + 'rule_trigger_category_is' => 'Categoria este ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Suma este mai mică sau egală cu ..', + 'rule_trigger_amount_less' => 'Suma este mai mică sau egală cu :trigger_value', + 'rule_trigger_amount_is_choice' => 'Suma este..', + 'rule_trigger_amount_is' => 'Suma este :trigger_value', + 'rule_trigger_amount_more_choice' => 'Suma este mai mare sau egală cu..', + 'rule_trigger_amount_more' => 'Suma este mai mare sau egală cu :trigger_value', + 'rule_trigger_description_starts_choice' => 'Descrierea începe cu..', + 'rule_trigger_description_starts' => 'Descrierea începe cu ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Descrierea se termină cu..', + 'rule_trigger_description_ends' => 'Descrierea se termină cu ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Descrierea conține..', + 'rule_trigger_description_contains' => 'Descrierea conține ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Descrierea este..', + 'rule_trigger_description_is' => 'Descrierea este ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Data tranzacției este..', + 'rule_trigger_date_on' => 'Data tranzacției este ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Data tranzacției este dinainte..', + 'rule_trigger_date_before' => 'Data tranzacției este înainte de ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Data tranzacției este după..', + 'rule_trigger_date_after' => 'Data tranzacției este după ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Tranzacția a fost făcută pe..', + 'rule_trigger_created_at_on' => 'Tranzacția a fost făcută pe ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Tranzacția a fost editată ultima dată pe..', + 'rule_trigger_updated_at_on' => 'Tranzacția a fost editată ultima dată pe ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Bugetul este..', + 'rule_trigger_budget_is' => 'Bugetul este ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Orice etichetă este..', + 'rule_trigger_tag_is' => 'Orice etichetă este ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Orice etichetă conține..', + 'rule_trigger_tag_contains' => 'Orice etichetă conține ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Orice etichetă se termină cu..', + 'rule_trigger_tag_ends' => 'Orice etichetă se termină cu ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Orice etichetă începe cu..', + 'rule_trigger_tag_starts' => 'Orice etichetă începe cu ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Moneda tranzacției este..', + 'rule_trigger_currency_is' => 'Moneda tranzacției este ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Tranzacția valutară este..', + 'rule_trigger_foreign_currency_is' => 'Moneda străină este ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Are cel puțin atâtea atașamente', + 'rule_trigger_has_attachments' => 'Are cel puțin :trigger_value atașament(e)', + 'rule_trigger_has_no_category_choice' => 'Nu are nici o categorie', + 'rule_trigger_has_no_category' => 'Tranzacția nu are nici o categorie', + 'rule_trigger_has_any_category_choice' => 'Are o (orice) categorie', + 'rule_trigger_has_any_category' => 'Tranzacția are o (orice) categorie', + 'rule_trigger_has_no_budget_choice' => 'Nu are niciun buget', + 'rule_trigger_has_no_budget' => 'Tranzacția nu are niciun buget', + 'rule_trigger_has_any_budget_choice' => 'Are un (orice) buget', + 'rule_trigger_has_any_budget' => 'Tranzacția are un (orice) buget', + 'rule_trigger_has_no_bill_choice' => 'Nu are factură', + 'rule_trigger_has_no_bill' => 'Tranzacția nu are factură', + 'rule_trigger_has_any_bill_choice' => 'Are o (orice) factură', + 'rule_trigger_has_any_bill' => 'Tranzacția are o (orice) factură', + 'rule_trigger_has_no_tag_choice' => 'Nu are etichetă (e)', + 'rule_trigger_has_no_tag' => 'Tranzacția nu are etichetă (e)', + 'rule_trigger_has_any_tag_choice' => 'Are una sau mai multe etichete', + 'rule_trigger_has_any_tag' => 'Tranzacția are una sau mai multe etichete', + 'rule_trigger_any_notes_choice' => 'Are (orice) notițe', + 'rule_trigger_any_notes' => 'Tranzacția are (orice) notițe', + 'rule_trigger_no_notes_choice' => 'Nu are notițe', + 'rule_trigger_no_notes' => 'Tranzacția nu are notițe', + 'rule_trigger_notes_is_choice' => 'Notele sunt..', + 'rule_trigger_notes_is' => 'Notele sunt ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notele conțin..', + 'rule_trigger_notes_contains' => 'Notele conţin ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notele încep cu..', + 'rule_trigger_notes_starts' => 'Notele încep cu ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notele se termină cu..', + 'rule_trigger_notes_ends' => 'Notele se termină cu ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Factura este..', + 'rule_trigger_bill_is' => 'Factura este ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'ID extern este..', + 'rule_trigger_external_id_is' => 'ID extern este ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Referința internă este..', + 'rule_trigger_internal_reference_is' => 'Referința internă este ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID-ul jurnalului de tranzacție este..', + 'rule_trigger_journal_id' => 'ID-ul jurnalului de tranzacții este ":trigger_value"', + 'rule_trigger_any_external_url' => 'Tranzacția are un (orice) URL extern', + 'rule_trigger_any_external_url_choice' => 'Tranzacția are un (orice) URL extern', + 'rule_trigger_any_external_id' => 'Tranzacția are un (orice) ID extern', + 'rule_trigger_any_external_id_choice' => 'Tranzacția are un (orice) ID extern', + 'rule_trigger_no_external_url_choice' => 'Tranzacția nu are niciun URL extern', + 'rule_trigger_no_external_url' => 'Tranzacția nu are niciun URL extern', + 'rule_trigger_no_external_id_choice' => 'Tranzacția nu are nici un ID extern', + 'rule_trigger_no_external_id' => 'Tranzacția nu are nici un ID extern', + 'rule_trigger_id_choice' => 'ID-ul tranzacției este..', + 'rule_trigger_id' => 'ID-ul tranzacţiei este ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT este..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT este ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Acțiunea utilizatorului este ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Nicio etichetă este..', - 'rule_trigger_tag_is_not' => 'Nicio etichetă nu este ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Oricare cont este exact..', - 'rule_trigger_account_is' => 'Orice cont este exact ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Categoria conţine..', - 'rule_trigger_category_contains' => 'Categoria conține ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Categoria se termină cu..', - 'rule_trigger_category_ends' => 'Categoria se termină cu ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Categoria începe cu..', - 'rule_trigger_category_starts' => 'Categoria începe cu ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Bugetul conține..', - 'rule_trigger_budget_contains' => 'Bugetul conține „:trigger_value”', - 'rule_trigger_budget_ends_choice' => 'Bugetul se încheie cu..', - 'rule_trigger_budget_ends' => 'Bugetul se termină cu ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Bugetul începe cu..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Factura se termină cu ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Factura începe cu..', - 'rule_trigger_bill_starts' => 'Factura începe cu ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'ID extern conține..', - 'rule_trigger_external_id_contains' => 'ID extern conține ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'ID-ul extern se termină cu..', - 'rule_trigger_external_id_ends' => 'ID extern se termină cu ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'ID extern începe cu..', - 'rule_trigger_external_id_starts' => 'ID extern începe cu ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Referința internă conține..', - 'rule_trigger_internal_reference_contains' => 'Referinţa internă conţine ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Referința internă se încheie cu..', - 'rule_trigger_internal_reference_ends' => 'Referința internă se termină cu ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Referința internă începe cu..', - 'rule_trigger_internal_reference_starts' => 'Referința internă începe cu ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'URL-ul extern este..', - 'rule_trigger_external_url_is' => 'URL-ul extern este ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'URL-ul extern conţine..', - 'rule_trigger_external_url_contains' => 'URL-ul extern conține ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Adresa URL externă se termină cu..', - 'rule_trigger_external_url_ends' => 'URL-ul extern se termină cu ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'URL-ul extern începe cu..', - 'rule_trigger_external_url_starts' => 'URL-ul extern începe cu ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Data scadentă este pe..', - 'rule_trigger_due_date_on' => 'Data scadentă este pe ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Data scadentă este înainte..', - 'rule_trigger_due_date_before' => 'Data scadentă este înainte de ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Data scadentă este după..', - 'rule_trigger_due_date_after' => 'Data scadentă este după ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Data scadentă este pe..', - 'rule_trigger_payment_date_on' => 'Data plății este pe ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Data scadentă este înainte..', - 'rule_trigger_payment_date_before' => 'Data plății este înainte de ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Data scadentă este după..', - 'rule_trigger_payment_date_after' => 'Data scadentă este după ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Data facturii este pe..', - 'rule_trigger_invoice_date_on' => 'Data facturii este pe ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Data facturii este înainte..', - 'rule_trigger_invoice_date_before' => 'Data facturii este înainte de ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Data facturii este după..', - 'rule_trigger_invoice_date_after' => 'Data facturii este după ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Tranzacția a fost creată înainte..', - 'rule_trigger_created_at_before' => 'Tranzacția a fost creată înainte de ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Tranzacția a fost creată după..', - 'rule_trigger_created_at_after' => 'Tranzacția a fost creată după ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Tranzacția a fost actualizată ultima dată înainte de..', - 'rule_trigger_updated_at_before' => 'Tranzacția a fost actualizată ultima dată înainte de ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Tranzacția a fost actualizată ultima dată după..', - 'rule_trigger_updated_at_after' => 'Tranzacția a fost actualizată ultima dată după ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Suma în valuta este exact..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Orice note ale atașamentului sunt..', - 'rule_trigger_attachment_notes_are' => 'Orice note ale atașamentului sunt ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Orice notă a ataşamentului conţine..', - 'rule_trigger_attachment_notes_contains' => 'Orice note ale atașamentului conțin ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Notele atașate încep cu..', - 'rule_trigger_attachment_notes_starts' => 'Orice notițe atașate încep cu ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Notele atașate se termină cu..', - 'rule_trigger_attachment_notes_ends' => 'Orice notițe atașate se termina cu ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Tranzacția este reconciliată', - 'rule_trigger_reconciled' => 'Tranzacția este reconciliată', - 'rule_trigger_exists_choice' => 'Orice tranzacție se potrivește(!)', - 'rule_trigger_exists' => 'Orice tranzacție se potrivește', + 'rule_trigger_user_action_choice' => 'Acțiunea utilizatorului este ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Nicio etichetă este..', + 'rule_trigger_tag_is_not' => 'Nicio etichetă nu este ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Oricare cont este exact..', + 'rule_trigger_account_is' => 'Orice cont este exact ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Categoria conţine..', + 'rule_trigger_category_contains' => 'Categoria conține ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Categoria se termină cu..', + 'rule_trigger_category_ends' => 'Categoria se termină cu ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Categoria începe cu..', + 'rule_trigger_category_starts' => 'Categoria începe cu ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Bugetul conține..', + 'rule_trigger_budget_contains' => 'Bugetul conține „:trigger_value”', + 'rule_trigger_budget_ends_choice' => 'Bugetul se încheie cu..', + 'rule_trigger_budget_ends' => 'Bugetul se termină cu ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Bugetul începe cu..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Factura se termină cu ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Factura începe cu..', + 'rule_trigger_bill_starts' => 'Factura începe cu ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'ID extern conține..', + 'rule_trigger_external_id_contains' => 'ID extern conține ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'ID-ul extern se termină cu..', + 'rule_trigger_external_id_ends' => 'ID extern se termină cu ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'ID extern începe cu..', + 'rule_trigger_external_id_starts' => 'ID extern începe cu ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Referința internă conține..', + 'rule_trigger_internal_reference_contains' => 'Referinţa internă conţine ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Referința internă se încheie cu..', + 'rule_trigger_internal_reference_ends' => 'Referința internă se termină cu ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Referința internă începe cu..', + 'rule_trigger_internal_reference_starts' => 'Referința internă începe cu ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'URL-ul extern este..', + 'rule_trigger_external_url_is' => 'URL-ul extern este ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'URL-ul extern conţine..', + 'rule_trigger_external_url_contains' => 'URL-ul extern conține ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Adresa URL externă se termină cu..', + 'rule_trigger_external_url_ends' => 'URL-ul extern se termină cu ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'URL-ul extern începe cu..', + 'rule_trigger_external_url_starts' => 'URL-ul extern începe cu ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Data scadentă este pe..', + 'rule_trigger_due_date_on' => 'Data scadentă este pe ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Data scadentă este înainte..', + 'rule_trigger_due_date_before' => 'Data scadentă este înainte de ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Data scadentă este după..', + 'rule_trigger_due_date_after' => 'Data scadentă este după ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Data scadentă este pe..', + 'rule_trigger_payment_date_on' => 'Data plății este pe ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Data scadentă este înainte..', + 'rule_trigger_payment_date_before' => 'Data plății este înainte de ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Data scadentă este după..', + 'rule_trigger_payment_date_after' => 'Data scadentă este după ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Data facturii este pe..', + 'rule_trigger_invoice_date_on' => 'Data facturii este pe ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Data facturii este înainte..', + 'rule_trigger_invoice_date_before' => 'Data facturii este înainte de ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Data facturii este după..', + 'rule_trigger_invoice_date_after' => 'Data facturii este după ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Tranzacția a fost creată înainte..', + 'rule_trigger_created_at_before' => 'Tranzacția a fost creată înainte de ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Tranzacția a fost creată după..', + 'rule_trigger_created_at_after' => 'Tranzacția a fost creată după ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Tranzacția a fost actualizată ultima dată înainte de..', + 'rule_trigger_updated_at_before' => 'Tranzacția a fost actualizată ultima dată înainte de ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Tranzacția a fost actualizată ultima dată după..', + 'rule_trigger_updated_at_after' => 'Tranzacția a fost actualizată ultima dată după ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Suma în valuta este exact..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Orice note ale atașamentului sunt..', + 'rule_trigger_attachment_notes_are' => 'Orice note ale atașamentului sunt ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Orice notă a ataşamentului conţine..', + 'rule_trigger_attachment_notes_contains' => 'Orice note ale atașamentului conțin ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Notele atașate încep cu..', + 'rule_trigger_attachment_notes_starts' => 'Orice notițe atașate încep cu ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Notele atașate se termină cu..', + 'rule_trigger_attachment_notes_ends' => 'Orice notițe atașate se termina cu ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Tranzacția este reconciliată', + 'rule_trigger_reconciled' => 'Tranzacția este reconciliată', + 'rule_trigger_exists_choice' => 'Orice tranzacție se potrivește(!)', + 'rule_trigger_exists' => 'Orice tranzacție se potrivește', // more values for new types: - 'rule_trigger_not_account_id' => 'ID-ul contului nu este ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'ID-ul contului sursă nu este ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'ID-ul contului destinaţiei nu este ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Tipul de tranzacție nu este ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Eticheta nu este ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Eticheta este ":trigger_value"', - 'rule_trigger_not_description_is' => 'Descrierea nu este ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Descrierea nu conține', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Tranzacția nu este reconciliată', - 'rule_trigger_not_exists' => 'Tranzacția nu există', - 'rule_trigger_not_has_attachments' => 'Tranzacția nu are atașamente', - 'rule_trigger_not_has_any_category' => 'Tranzacția nu are nicio categorie', - 'rule_trigger_not_has_any_budget' => 'Tranzacția nu are buget', - 'rule_trigger_not_has_any_bill' => 'Tranzacția nu are factură', - 'rule_trigger_not_has_any_tag' => 'Tranzacția nu are tag-uri', - 'rule_trigger_not_any_notes' => 'Tranzacția nu are note', - 'rule_trigger_not_any_external_url' => 'Tranzacția nu are niciun URL extern', - 'rule_trigger_not_has_no_attachments' => 'Tranzacția are un (orice) atașament(e)', - 'rule_trigger_not_has_no_category' => 'Tranzacția are o (orice) categorie', - 'rule_trigger_not_has_no_budget' => 'Tranzacția are un (orice) buget', - 'rule_trigger_not_has_no_bill' => 'Tranzacția are o (orice) factură', - 'rule_trigger_not_has_no_tag' => 'Tranzacția are o (orice) etichetă', - 'rule_trigger_not_no_notes' => 'Tranzacția are orice notă', - 'rule_trigger_not_no_external_url' => 'Tranzacția are un URL extern', - 'rule_trigger_not_source_is_cash' => 'Contul sursă nu este un cont de numerar', - 'rule_trigger_not_destination_is_cash' => 'Contul de destinație nu este un cont de numerar', - 'rule_trigger_not_account_is_cash' => 'Nici un cont nu este un cont de numerar', + 'rule_trigger_not_account_id' => 'ID-ul contului nu este ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'ID-ul contului sursă nu este ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'ID-ul contului destinaţiei nu este ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Tipul de tranzacție nu este ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Eticheta nu este ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Eticheta este ":trigger_value"', + 'rule_trigger_not_description_is' => 'Descrierea nu este ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Descrierea nu conține', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Tranzacția nu este reconciliată', + 'rule_trigger_not_exists' => 'Tranzacția nu există', + 'rule_trigger_not_has_attachments' => 'Tranzacția nu are atașamente', + 'rule_trigger_not_has_any_category' => 'Tranzacția nu are nicio categorie', + 'rule_trigger_not_has_any_budget' => 'Tranzacția nu are buget', + 'rule_trigger_not_has_any_bill' => 'Tranzacția nu are factură', + 'rule_trigger_not_has_any_tag' => 'Tranzacția nu are tag-uri', + 'rule_trigger_not_any_notes' => 'Tranzacția nu are note', + 'rule_trigger_not_any_external_url' => 'Tranzacția nu are niciun URL extern', + 'rule_trigger_not_has_no_attachments' => 'Tranzacția are un (orice) atașament(e)', + 'rule_trigger_not_has_no_category' => 'Tranzacția are o (orice) categorie', + 'rule_trigger_not_has_no_budget' => 'Tranzacția are un (orice) buget', + 'rule_trigger_not_has_no_bill' => 'Tranzacția are o (orice) factură', + 'rule_trigger_not_has_no_tag' => 'Tranzacția are o (orice) etichetă', + 'rule_trigger_not_no_notes' => 'Tranzacția are orice notă', + 'rule_trigger_not_no_external_url' => 'Tranzacția are un URL extern', + 'rule_trigger_not_source_is_cash' => 'Contul sursă nu este un cont de numerar', + 'rule_trigger_not_destination_is_cash' => 'Contul de destinație nu este un cont de numerar', + 'rule_trigger_not_account_is_cash' => 'Nici un cont nu este un cont de numerar', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'Șterge tranzacția (!)', - 'rule_action_delete_transaction' => 'Șterge tranzacția (!)', - 'rule_action_set_category' => 'Setați categoria la ":action_value"', - 'rule_action_clear_category' => 'Șterge categorie', - 'rule_action_set_budget' => 'Setați bugetul la ":action_value"', - 'rule_action_clear_budget' => 'Ștergeți bugetul', - 'rule_action_add_tag' => 'Adaugă etichetă ":action_value"', - 'rule_action_remove_tag' => 'Eliminați eticheta ":action_value"', - 'rule_action_remove_all_tags' => 'Eliminați toate etichetele', - 'rule_action_set_description' => 'Setați descrierea la ":action_value"', - 'rule_action_append_description' => 'Adăugați descrierea cu ":action_value"', - 'rule_action_prepend_description' => 'Prefixați descrierea cu ":action_value"', - 'rule_action_set_category_choice' => 'Setați categoria la..', - 'rule_action_clear_category_choice' => 'Ștergeți any category', - 'rule_action_set_budget_choice' => 'Setați bugetul la..', - 'rule_action_clear_budget_choice' => 'Ștergeți any budget', - 'rule_action_add_tag_choice' => 'Adaugă etichetă..', - 'rule_action_remove_tag_choice' => 'Eliminați eticheta..', - 'rule_action_remove_all_tags_choice' => 'Eliminați toate etichetele', - 'rule_action_set_description_choice' => 'Setați descrierea la..', - 'rule_action_update_piggy_choice' => 'Adaugă / șterge suma tranzacției în pușculiță ..', - 'rule_action_update_piggy' => 'Adaugă/elimină suma tranzacției în pușculița ":action_value"', - 'rule_action_append_description_choice' => 'Adăugați descrierea cu ..', - 'rule_action_prepend_description_choice' => 'Prefixați descrierea cu ..', - 'rule_action_set_source_account_choice' => 'Setează contul sursă la ..', - 'rule_action_set_source_account' => 'Setați contul sursă la :action_value', - 'rule_action_set_destination_account_choice' => 'Setează contul de destinație la ..', - 'rule_action_set_destination_account' => 'Setați contul de destinație la :action_value', - 'rule_action_append_notes_choice' => 'Adăugați notițe cu ..', - 'rule_action_append_notes' => 'Adăugați notițe cu ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prefixați notițele cu ..', - 'rule_action_prepend_notes' => 'Prefixați notițele cu ":action_value"', - 'rule_action_clear_notes_choice' => 'Eliminați orice notiță', - 'rule_action_clear_notes' => 'Eliminați orice notiță', - 'rule_action_set_notes_choice' => 'Setează notele la ..', - 'rule_action_link_to_bill_choice' => 'Link către o factură..', - 'rule_action_link_to_bill' => 'Legați la factură ":action_value"', - 'rule_action_switch_accounts_choice' => 'Schimbă conturile sursă și de destinație (doar transferuri!)', - 'rule_action_switch_accounts' => 'Schimbă sursa și destinația', - 'rule_action_set_notes' => 'Setați notițele la ":action_value"', - 'rule_action_convert_deposit_choice' => 'Transformați tranzacția într-un depozit', - 'rule_action_convert_deposit' => 'Transformați tranzacția într-un depozit de la ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Transformați tranzacția într-o retragere', - 'rule_action_convert_withdrawal' => 'Transformați tranzacția într-o retragere la ":action_value"', - 'rule_action_convert_transfer_choice' => 'Transformați tranzacția într-un transfer', - 'rule_action_convert_transfer' => 'Transformați tranzacția într-un transfer cu ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Adaugă descrierea la notele tranzacției', - 'rule_action_append_notes_to_descr_choice' => 'Adaugă notele tranzacției la descriere', - 'rule_action_move_descr_to_notes_choice' => 'Înlocuiți notele curente ale tranzacției cu descrierea', - 'rule_action_move_notes_to_descr_choice' => 'Înlocuiți descrierea curentă cu notele de tranzacție', - 'rule_action_append_descr_to_notes' => 'Adaugă descriere la note', - 'rule_action_append_notes_to_descr' => 'Adaugă note la descriere', - 'rule_action_move_descr_to_notes' => 'Înlocuiți notițele cu descriere', - 'rule_action_move_notes_to_descr' => 'Înlocuiți descrierea cu note', - 'rule_action_set_amount_choice' => 'Setați suma la ..', - 'rule_action_set_amount' => 'Setaţi suma la ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Setează contul de destinație la (numerar)', - 'rule_action_set_source_to_cash_choice' => 'Setează contul sursă la (cash)', - 'rulegroup_for_bills_title' => 'Grup de reguli pentru facturi', - 'rulegroup_for_bills_description' => 'Un grup special de reguli pentru toate regulile care implică facturile.', - 'rule_for_bill_title' => 'Regulă generată automat pentru factura ":name"', - 'rule_for_bill_description' => 'Această regulă este generată automat pentru a încerca să se potrivească facturii ":name".', - 'create_rule_for_bill' => 'Creați o nouă regulă pentru factura ":name"', - 'create_rule_for_bill_txt' => 'Tocmai ai creat o nouă factură numită ":name", felicitări! Firefly III se poate potrivi automat noilor retrageri pe această factură. De exemplu, de fiecare dată când plătești chiria, factura "chirie" va fi asociată cheltuielilor. În acest fel, Firefly III vă poate arăta cu acuratețe care facturi sunt scadente și care nu sunt facturi. În acest scop, trebuie creată o nouă regulă. Firefly III a completat câteva valori implicite rezonabile pentru dvs. Asigurați-vă că acestea sunt corecte. Dacă aceste valori sunt corecte, Firefly III va lega automat retragerea corectă de factura corectă. Vă rugăm să verificați declanșatoarele pentru a vedea dacă sunt corecte, și să adăugați câteva în cazul în care sunt greșite.', - 'new_rule_for_bill_title' => 'Regula privind factura ":name"', - 'new_rule_for_bill_description' => 'Această regulă marchează tranzacțiile pentru factura ":name".', + 'rule_action_delete_transaction_choice' => 'Șterge tranzacția (!)', + 'rule_action_delete_transaction' => 'Șterge tranzacția (!)', + 'rule_action_set_category' => 'Setați categoria la ":action_value"', + 'rule_action_clear_category' => 'Șterge categorie', + 'rule_action_set_budget' => 'Setați bugetul la ":action_value"', + 'rule_action_clear_budget' => 'Ștergeți bugetul', + 'rule_action_add_tag' => 'Adaugă etichetă ":action_value"', + 'rule_action_remove_tag' => 'Eliminați eticheta ":action_value"', + 'rule_action_remove_all_tags' => 'Eliminați toate etichetele', + 'rule_action_set_description' => 'Setați descrierea la ":action_value"', + 'rule_action_append_description' => 'Adăugați descrierea cu ":action_value"', + 'rule_action_prepend_description' => 'Prefixați descrierea cu ":action_value"', + 'rule_action_set_category_choice' => 'Setați categoria la..', + 'rule_action_clear_category_choice' => 'Ștergeți any category', + 'rule_action_set_budget_choice' => 'Setați bugetul la..', + 'rule_action_clear_budget_choice' => 'Ștergeți any budget', + 'rule_action_add_tag_choice' => 'Adaugă etichetă..', + 'rule_action_remove_tag_choice' => 'Eliminați eticheta..', + 'rule_action_remove_all_tags_choice' => 'Eliminați toate etichetele', + 'rule_action_set_description_choice' => 'Setați descrierea la..', + 'rule_action_update_piggy_choice' => 'Adaugă / șterge suma tranzacției în pușculiță ..', + 'rule_action_update_piggy' => 'Adaugă/elimină suma tranzacției în pușculița ":action_value"', + 'rule_action_append_description_choice' => 'Adăugați descrierea cu ..', + 'rule_action_prepend_description_choice' => 'Prefixați descrierea cu ..', + 'rule_action_set_source_account_choice' => 'Setează contul sursă la ..', + 'rule_action_set_source_account' => 'Setați contul sursă la :action_value', + 'rule_action_set_destination_account_choice' => 'Setează contul de destinație la ..', + 'rule_action_set_destination_account' => 'Setați contul de destinație la :action_value', + 'rule_action_append_notes_choice' => 'Adăugați notițe cu ..', + 'rule_action_append_notes' => 'Adăugați notițe cu ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prefixați notițele cu ..', + 'rule_action_prepend_notes' => 'Prefixați notițele cu ":action_value"', + 'rule_action_clear_notes_choice' => 'Eliminați orice notiță', + 'rule_action_clear_notes' => 'Eliminați orice notiță', + 'rule_action_set_notes_choice' => 'Setează notele la ..', + 'rule_action_link_to_bill_choice' => 'Link către o factură..', + 'rule_action_link_to_bill' => 'Legați la factură ":action_value"', + 'rule_action_switch_accounts_choice' => 'Schimbă conturile sursă și de destinație (doar transferuri!)', + 'rule_action_switch_accounts' => 'Schimbă sursa și destinația', + 'rule_action_set_notes' => 'Setați notițele la ":action_value"', + 'rule_action_convert_deposit_choice' => 'Transformați tranzacția într-un depozit', + 'rule_action_convert_deposit' => 'Transformați tranzacția într-un depozit de la ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Transformați tranzacția într-o retragere', + 'rule_action_convert_withdrawal' => 'Transformați tranzacția într-o retragere la ":action_value"', + 'rule_action_convert_transfer_choice' => 'Transformați tranzacția într-un transfer', + 'rule_action_convert_transfer' => 'Transformați tranzacția într-un transfer cu ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Adaugă descrierea la notele tranzacției', + 'rule_action_append_notes_to_descr_choice' => 'Adaugă notele tranzacției la descriere', + 'rule_action_move_descr_to_notes_choice' => 'Înlocuiți notele curente ale tranzacției cu descrierea', + 'rule_action_move_notes_to_descr_choice' => 'Înlocuiți descrierea curentă cu notele de tranzacție', + 'rule_action_append_descr_to_notes' => 'Adaugă descriere la note', + 'rule_action_append_notes_to_descr' => 'Adaugă note la descriere', + 'rule_action_move_descr_to_notes' => 'Înlocuiți notițele cu descriere', + 'rule_action_move_notes_to_descr' => 'Înlocuiți descrierea cu note', + 'rule_action_set_amount_choice' => 'Setați suma la ..', + 'rule_action_set_amount' => 'Setaţi suma la ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Setează contul de destinație la (numerar)', + 'rule_action_set_source_to_cash_choice' => 'Setează contul sursă la (cash)', + 'rulegroup_for_bills_title' => 'Grup de reguli pentru facturi', + 'rulegroup_for_bills_description' => 'Un grup special de reguli pentru toate regulile care implică facturile.', + 'rule_for_bill_title' => 'Regulă generată automat pentru factura ":name"', + 'rule_for_bill_description' => 'Această regulă este generată automat pentru a încerca să se potrivească facturii ":name".', + 'create_rule_for_bill' => 'Creați o nouă regulă pentru factura ":name"', + 'create_rule_for_bill_txt' => 'Tocmai ai creat o nouă factură numită ":name", felicitări! Firefly III se poate potrivi automat noilor retrageri pe această factură. De exemplu, de fiecare dată când plătești chiria, factura "chirie" va fi asociată cheltuielilor. În acest fel, Firefly III vă poate arăta cu acuratețe care facturi sunt scadente și care nu sunt facturi. În acest scop, trebuie creată o nouă regulă. Firefly III a completat câteva valori implicite rezonabile pentru dvs. Asigurați-vă că acestea sunt corecte. Dacă aceste valori sunt corecte, Firefly III va lega automat retragerea corectă de factura corectă. Vă rugăm să verificați declanșatoarele pentru a vedea dacă sunt corecte, și să adăugați câteva în cazul în care sunt greșite.', + 'new_rule_for_bill_title' => 'Regula privind factura ":name"', + 'new_rule_for_bill_description' => 'Această regulă marchează tranzacțiile pentru factura ":name".', - 'new_rule_for_journal_title' => 'Regulă bazată pe tranzacția ":description"', - 'new_rule_for_journal_description' => 'Această regulă este bazată pe tranzacția ":description". Se va potrivi cu tranzacțiile care sunt exact la fel.', + 'new_rule_for_journal_title' => 'Regulă bazată pe tranzacția ":description"', + 'new_rule_for_journal_description' => 'Această regulă este bazată pe tranzacția ":description". Se va potrivi cu tranzacțiile care sunt exact la fel.', // tags - 'store_new_tag' => 'Salvați o nouă etichetă', - 'update_tag' => 'Actualizați eticheta', - 'no_location_set' => 'Nu a fost setată nicio locație.', - 'meta_data' => 'Date meta', - 'location' => 'Locație', - 'location_first_split' => 'Locația pentru această tranzacție poate fi setată pe prima împărțire a acestei tranzacții.', - 'without_date' => 'Fără data', - 'result' => 'Rezultat', - 'sums_apply_to_range' => 'Toate sumele se aplică gamei selectate', - 'mapbox_api_key' => 'Pentru a utiliza harta, obțineți o cheie API din Mapbox . Deschideți fișierul .env și introduceți acest cod după MAPBOX_API_KEY = .', - 'press_object_location' => 'Faceți clic dreapta sau apăsați lung pentru a seta locația obiectului.', - 'click_tap_location' => 'Faceți clic sau atingeți harta pentru a adăuga o locație', - 'clear_location' => 'Ștergeți locația', - 'delete_all_selected_tags' => 'Şterge toate etichetele selectate', - 'select_tags_to_delete' => 'Nu uitați să selectați unele etichete.', - 'deleted_x_tags' => 'S-a șters :count tag.| :count tags șterse.', - 'create_rule_from_transaction' => 'Creați o regulă bazată pe tranzacție', - 'create_recurring_from_transaction' => 'Creați o tranzacție recurentă bazată pe tranzacție', + 'store_new_tag' => 'Salvați o nouă etichetă', + 'update_tag' => 'Actualizați eticheta', + 'no_location_set' => 'Nu a fost setată nicio locație.', + 'meta_data' => 'Date meta', + 'location' => 'Locație', + 'location_first_split' => 'Locația pentru această tranzacție poate fi setată pe prima împărțire a acestei tranzacții.', + 'without_date' => 'Fără data', + 'result' => 'Rezultat', + 'sums_apply_to_range' => 'Toate sumele se aplică gamei selectate', + 'mapbox_api_key' => 'Pentru a utiliza harta, obțineți o cheie API din Mapbox . Deschideți fișierul .env și introduceți acest cod după MAPBOX_API_KEY = .', + 'press_object_location' => 'Faceți clic dreapta sau apăsați lung pentru a seta locația obiectului.', + 'click_tap_location' => 'Faceți clic sau atingeți harta pentru a adăuga o locație', + 'clear_location' => 'Ștergeți locația', + 'delete_all_selected_tags' => 'Şterge toate etichetele selectate', + 'select_tags_to_delete' => 'Nu uitați să selectați unele etichete.', + 'deleted_x_tags' => 'S-a șters :count tag.| :count tags șterse.', + 'create_rule_from_transaction' => 'Creați o regulă bazată pe tranzacție', + 'create_recurring_from_transaction' => 'Creați o tranzacție recurentă bazată pe tranzacție', // preferences - 'dark_mode_option_browser' => 'Lăsați browserul să decidă', - 'dark_mode_option_light' => 'Întotdeauna luminos', - 'dark_mode_option_dark' => 'Întotdeauna întunecat', - 'equal_to_language' => '(egal cu limba)', - 'dark_mode_preference' => 'Mod întunecat', - 'dark_mode_preference_help' => 'Spuneți Firefly III când să utilizeze modul întunecat.', - 'pref_home_screen_accounts' => 'Ecranul de start al conturilor', - 'pref_home_screen_accounts_help' => 'Ce conturi ar trebui afișate pe pagina de pornire?', - 'pref_view_range' => 'Vedeți intervalul', - 'pref_view_range_help' => 'Anumite grafice sunt grupate automat în perioade. Bugeturile dvs. vor fi, de asemenea, grupate în perioade. Ce perioadă ați prefera?', - 'pref_1D' => 'O zi', - 'pref_1W' => 'O saptamână', - 'pref_1M' => 'O lună', - 'pref_3M' => 'Trei luni (trimestru)', - 'pref_6M' => 'Șase luni', - 'pref_1Y' => 'Un an', - 'pref_last365' => 'Anul trecut', - 'pref_last90' => 'Ultimele 90 de zile', - 'pref_last30' => 'Ultimele 30 de zile', - 'pref_last7' => 'Ultimele 7 zile', - 'pref_YTD' => 'De la începutul anului', - 'pref_QTD' => 'Trimestru până în prezent', - 'pref_MTD' => 'Luna aceasta', - 'pref_languages' => 'Limbi', - 'pref_locale' => 'Setările locale', - 'pref_languages_help' => 'Firefly III acceptă mai multe limbi. Pe care o preferați?', - 'pref_locale_help' => 'Firefly III vă permite să setați alte setări locale, cum ar fi modul în care valutele, numerele și datele sunt formatate. Este posibil ca intrările din această listă să nu fie acceptate de sistemul dumneavoastră. Firefly III nu are setările de date corecte pentru fiecare local; contactați-mă pentru îmbunătățiri.', - 'pref_locale_no_demo' => 'Această funcție nu va funcționa pentru utilizatorul demo.', - 'pref_custom_fiscal_year' => 'Setări an fiscal', - 'pref_custom_fiscal_year_label' => 'Activat', - 'pref_custom_fiscal_year_help' => 'În țările care utilizează un exercițiu financiar, altul decât 1 ianuarie până la 31 decembrie, puteți să le activați și să specificați zilele de începere / sfârșit ale anului fiscal', - 'pref_fiscal_year_start_label' => 'Data de începere a anului fiscal', - 'pref_two_factor_auth' => 'Verificarea în doi pași', - 'pref_two_factor_auth_help' => 'Când activați verificarea în doi pași (cunoscută și ca autentificare cu doi factori), adăugați un nivel suplimentar de securitate în contul dvs. Conectați-vă cu ceva ce știți (parola dvs.) și ceva ce aveți (un cod de verificare). Codurile de verificare sunt generate de o aplicație de pe telefon, cum ar fi Authy sau Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Activați verificarea în doi pași', - 'pref_two_factor_auth_disabled' => 'Cod de verificare în doi pași eliminat și dezactivat', - 'pref_two_factor_auth_remove_it' => 'Nu uitați să eliminați contul din aplicația dvs. de autentificare!', - 'pref_two_factor_auth_code' => 'Verificați codul', - 'pref_two_factor_auth_code_help' => 'Scanați codul QR cu o aplicație de pe telefon, cum ar fi Authy sau Google Authenticator și introduceți codul generat.', - 'pref_two_factor_auth_reset_code' => 'Resetați codul de verificare', - 'pref_two_factor_auth_disable_2fa' => 'Dezactivați autentificarea cu doi factori', - '2fa_use_secret_instead' => 'Dacă nu puteți scana codul QR, nu ezitați să utilizați codul secret: :secret.', - '2fa_backup_codes' => 'Stocați aceste coduri de rezervă pentru acces în cazul în care pierdeți dispozitivul.', - '2fa_already_enabled' => 'Verificarea în 2 pași este deja activată.', - 'wrong_mfa_code' => 'Codul MFA nu este valid.', - 'pref_save_settings' => 'Salvează setările', - 'saved_preferences' => 'Preferințele sunt salvate!', - 'preferences_general' => 'Generale', - 'preferences_frontpage' => 'Ecranul de start', - 'preferences_security' => 'Securitate', - 'preferences_layout' => 'Schemă', - 'preferences_notifications' => 'Notificări', - 'pref_home_show_deposits' => 'Afișați depozitele pe ecranul de pornire', - 'pref_home_show_deposits_info' => 'Ecranul de pornire vă arată deja cont de cheltuieli. Ar trebui să afișeze și conturile dvs. de venit?', - 'pref_home_do_show_deposits' => 'Da, arată-le', - 'successful_count' => 'din care :count au reușit', - 'list_page_size_title' => 'Mărimea paginii', - 'list_page_size_help' => 'Orice listă de lucruri (conturi, tranzacții etc.) arată cel mult atât de multe pe pagină.', - 'list_page_size_label' => 'Mărimea paginii', - 'between_dates' => '(:start și :end)', - 'pref_optional_fields_transaction' => 'Câmpuri opționale pentru tranzacții', - 'pref_optional_fields_transaction_help' => 'În mod prestabilit, toate câmpurile nu sunt activate atunci când creați o nouă tranzacție (din cauza aglomerării). Mai jos, puteți activa aceste câmpuri dacă credeți că acestea ar putea fi utile pentru dvs. Desigur, orice câmp care este dezactivat, dar deja completat, va fi vizibil indiferent de setare.', - 'optional_tj_date_fields' => 'Câmpurile de date', - 'optional_tj_other_fields' => 'Alte câmpuri', - 'optional_tj_attachment_fields' => 'Câmpuri de atașament', - 'pref_optional_tj_interest_date' => 'Data de interes', - 'pref_optional_tj_book_date' => 'Data revervării', - 'pref_optional_tj_process_date' => 'Data procesării', - 'pref_optional_tj_due_date' => 'Data scadentă', - 'pref_optional_tj_payment_date' => 'Data plății', - 'pref_optional_tj_invoice_date' => 'Data facturii', - 'pref_optional_tj_internal_reference' => 'Referință internă', - 'pref_optional_tj_notes' => 'Notițe', - 'pref_optional_tj_attachments' => 'Ataşamente', - 'pref_optional_tj_external_url' => 'URL extern', - 'pref_optional_tj_location' => 'Locaţie', - 'pref_optional_tj_links' => 'Link-uri de tranzacție', - 'optional_field_meta_dates' => 'Date', - 'optional_field_meta_business' => 'Afaceri', - 'optional_field_attachments' => 'Ataşamente', - 'optional_field_meta_data' => 'Meta date opționale', - 'external_url' => 'URL extern', - 'pref_notification_bill_reminder' => 'Memento despre facturile expirate', - 'pref_notification_new_access_token' => 'Alertă atunci când un nou token de acces API este creat', - 'pref_notification_transaction_creation' => 'Alertă atunci când o tranzacție este creată automat', - 'pref_notification_user_login' => 'Alertă când te loghezi dintr-o locație nouă', - 'pref_notification_rule_action_failures' => 'Alertă atunci când acțiunile regulilor nu reușesc să se execute (doar Slack sau Discord)', - 'pref_notifications' => 'Notificări', - 'pref_notifications_help' => 'Indicați dacă acestea sunt notificări pe care doriți să le primiți. Unele notificări pot conține informații financiare sensibile.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Dacă doriți ca Firefly III să vă notifice folosind Slack, introduceți URL-ul webhook aici. Altfel lăsați câmpul gol. Dacă sunteți administrator, trebuie să setați acest URL și în administrare.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Lăsați browserul să decidă', + 'dark_mode_option_light' => 'Întotdeauna luminos', + 'dark_mode_option_dark' => 'Întotdeauna întunecat', + 'equal_to_language' => '(egal cu limba)', + 'dark_mode_preference' => 'Mod întunecat', + 'dark_mode_preference_help' => 'Spuneți Firefly III când să utilizeze modul întunecat.', + 'pref_home_screen_accounts' => 'Ecranul de start al conturilor', + 'pref_home_screen_accounts_help' => 'Ce conturi ar trebui afișate pe pagina de pornire?', + 'pref_view_range' => 'Vedeți intervalul', + 'pref_view_range_help' => 'Anumite grafice sunt grupate automat în perioade. Bugeturile dvs. vor fi, de asemenea, grupate în perioade. Ce perioadă ați prefera?', + 'pref_1D' => 'O zi', + 'pref_1W' => 'O saptamână', + 'pref_1M' => 'O lună', + 'pref_3M' => 'Trei luni (trimestru)', + 'pref_6M' => 'Șase luni', + 'pref_1Y' => 'Un an', + 'pref_last365' => 'Anul trecut', + 'pref_last90' => 'Ultimele 90 de zile', + 'pref_last30' => 'Ultimele 30 de zile', + 'pref_last7' => 'Ultimele 7 zile', + 'pref_YTD' => 'De la începutul anului', + 'pref_QTD' => 'Trimestru până în prezent', + 'pref_MTD' => 'Luna aceasta', + 'pref_languages' => 'Limbi', + 'pref_locale' => 'Setările locale', + 'pref_languages_help' => 'Firefly III acceptă mai multe limbi. Pe care o preferați?', + 'pref_locale_help' => 'Firefly III vă permite să setați alte setări locale, cum ar fi modul în care valutele, numerele și datele sunt formatate. Este posibil ca intrările din această listă să nu fie acceptate de sistemul dumneavoastră. Firefly III nu are setările de date corecte pentru fiecare local; contactați-mă pentru îmbunătățiri.', + 'pref_locale_no_demo' => 'Această funcție nu va funcționa pentru utilizatorul demo.', + 'pref_custom_fiscal_year' => 'Setări an fiscal', + 'pref_custom_fiscal_year_label' => 'Activat', + 'pref_custom_fiscal_year_help' => 'În țările care utilizează un exercițiu financiar, altul decât 1 ianuarie până la 31 decembrie, puteți să le activați și să specificați zilele de începere / sfârșit ale anului fiscal', + 'pref_fiscal_year_start_label' => 'Data de începere a anului fiscal', + 'pref_two_factor_auth' => 'Verificarea în doi pași', + 'pref_two_factor_auth_help' => 'Când activați verificarea în doi pași (cunoscută și ca autentificare cu doi factori), adăugați un nivel suplimentar de securitate în contul dvs. Conectați-vă cu ceva ce știți (parola dvs.) și ceva ce aveți (un cod de verificare). Codurile de verificare sunt generate de o aplicație de pe telefon, cum ar fi Authy sau Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Activați verificarea în doi pași', + 'pref_two_factor_auth_disabled' => 'Cod de verificare în doi pași eliminat și dezactivat', + 'pref_two_factor_auth_remove_it' => 'Nu uitați să eliminați contul din aplicația dvs. de autentificare!', + 'pref_two_factor_auth_code' => 'Verificați codul', + 'pref_two_factor_auth_code_help' => 'Scanați codul QR cu o aplicație de pe telefon, cum ar fi Authy sau Google Authenticator și introduceți codul generat.', + 'pref_two_factor_auth_reset_code' => 'Resetați codul de verificare', + 'pref_two_factor_auth_disable_2fa' => 'Dezactivați autentificarea cu doi factori', + '2fa_use_secret_instead' => 'Dacă nu puteți scana codul QR, nu ezitați să utilizați codul secret: :secret.', + '2fa_backup_codes' => 'Stocați aceste coduri de rezervă pentru acces în cazul în care pierdeți dispozitivul.', + '2fa_already_enabled' => 'Verificarea în 2 pași este deja activată.', + 'wrong_mfa_code' => 'Codul MFA nu este valid.', + 'pref_save_settings' => 'Salvează setările', + 'saved_preferences' => 'Preferințele sunt salvate!', + 'preferences_general' => 'Generale', + 'preferences_frontpage' => 'Ecranul de start', + 'preferences_security' => 'Securitate', + 'preferences_layout' => 'Schemă', + 'preferences_notifications' => 'Notificări', + 'pref_home_show_deposits' => 'Afișați depozitele pe ecranul de pornire', + 'pref_home_show_deposits_info' => 'Ecranul de pornire vă arată deja cont de cheltuieli. Ar trebui să afișeze și conturile dvs. de venit?', + 'pref_home_do_show_deposits' => 'Da, arată-le', + 'successful_count' => 'din care :count au reușit', + 'list_page_size_title' => 'Mărimea paginii', + 'list_page_size_help' => 'Orice listă de lucruri (conturi, tranzacții etc.) arată cel mult atât de multe pe pagină.', + 'list_page_size_label' => 'Mărimea paginii', + 'between_dates' => '(:start și :end)', + 'pref_optional_fields_transaction' => 'Câmpuri opționale pentru tranzacții', + 'pref_optional_fields_transaction_help' => 'În mod prestabilit, toate câmpurile nu sunt activate atunci când creați o nouă tranzacție (din cauza aglomerării). Mai jos, puteți activa aceste câmpuri dacă credeți că acestea ar putea fi utile pentru dvs. Desigur, orice câmp care este dezactivat, dar deja completat, va fi vizibil indiferent de setare.', + 'optional_tj_date_fields' => 'Câmpurile de date', + 'optional_tj_other_fields' => 'Alte câmpuri', + 'optional_tj_attachment_fields' => 'Câmpuri de atașament', + 'pref_optional_tj_interest_date' => 'Data de interes', + 'pref_optional_tj_book_date' => 'Data revervării', + 'pref_optional_tj_process_date' => 'Data procesării', + 'pref_optional_tj_due_date' => 'Data scadentă', + 'pref_optional_tj_payment_date' => 'Data plății', + 'pref_optional_tj_invoice_date' => 'Data facturii', + 'pref_optional_tj_internal_reference' => 'Referință internă', + 'pref_optional_tj_notes' => 'Notițe', + 'pref_optional_tj_attachments' => 'Ataşamente', + 'pref_optional_tj_external_url' => 'URL extern', + 'pref_optional_tj_location' => 'Locaţie', + 'pref_optional_tj_links' => 'Link-uri de tranzacție', + 'optional_field_meta_dates' => 'Date', + 'optional_field_meta_business' => 'Afaceri', + 'optional_field_attachments' => 'Ataşamente', + 'optional_field_meta_data' => 'Meta date opționale', + 'external_url' => 'URL extern', + 'pref_notification_bill_reminder' => 'Memento despre facturile expirate', + 'pref_notification_new_access_token' => 'Alertă atunci când un nou token de acces API este creat', + 'pref_notification_transaction_creation' => 'Alertă atunci când o tranzacție este creată automat', + 'pref_notification_user_login' => 'Alertă când te loghezi dintr-o locație nouă', + 'pref_notification_rule_action_failures' => 'Alertă atunci când acțiunile regulilor nu reușesc să se execute (doar Slack sau Discord)', + 'pref_notifications' => 'Notificări', + 'pref_notifications_help' => 'Indicați dacă acestea sunt notificări pe care doriți să le primiți. Unele notificări pot conține informații financiare sensibile.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Dacă doriți ca Firefly III să vă notifice folosind Slack, introduceți URL-ul webhook aici. Altfel lăsați câmpul gol. Dacă sunteți administrator, trebuie să setați acest URL și în administrare.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Administrația financiară', - 'administrations_index_menu' => 'Administrația financiară', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Administrația financiară', + 'administrations_index_menu' => 'Administrația financiară', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Curăță datele din Firefly III', - 'purge_data_expl' => '„Purging” înseamnă „ștergerea celui care este deja șters”. În circumstanțe normale, Firefly III nu șterge nimic permanent. Doar o ascunde. Butonul de mai jos șterge toate aceste înregistrări anterior "șterse" FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Şterge toate înregistrările şterse', - 'purge_data' => 'Şterge datele', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Toate celelalte sesiuni au fost deconectate.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Șterge conturile neutilizate', - 'deleted_all_unused_accounts' => 'Toate conturile neutilizate sunt șterse', - 'delete_all_budgets' => 'Șterge toate bugetele', - 'delete_all_categories' => 'Șterge toate categoriile', - 'delete_all_tags' => 'Șterge toate tag-urile', - 'delete_all_bills' => 'Ștergeți TOATE facturile dvs', - 'delete_all_piggy_banks' => 'Șterge TOATE pușculițele tale', - 'delete_all_rules' => 'Șterge TOATE regulile', - 'delete_all_recurring' => 'Șterge TOATE tranzacțiile dvs. recurente', - 'delete_all_object_groups' => 'Șterge TOATE grupurile de obiecte', - 'delete_all_accounts' => 'Șterge TOATE conturile tale', - 'delete_all_asset_accounts' => 'Șterge TOATE conturile de active', - 'delete_all_expense_accounts' => 'Ștergeți TOATE conturile de cheltuieli', - 'delete_all_revenue_accounts' => 'Șterge TOATE conturile de venituri', - 'delete_all_liabilities' => 'Șterge TOATE datoriile tale', - 'delete_all_transactions' => 'Ștergeți TOATE tranzacțiile dvs', - 'delete_all_withdrawals' => 'Șterge TOATE retragerile', - 'delete_all_deposits' => 'Șterge TOATE depozitele tale', - 'delete_all_transfers' => 'Șterge TOATE transferurile tale', - 'also_delete_transactions' => 'Ștergerea conturilor va șterge și toate retragerile asociate, depozitele și transferurile!', - 'deleted_all_budgets' => 'Toate bugetele au fost şterse', - 'deleted_all_categories' => 'Toate categoriile au fost şterse', - 'deleted_all_tags' => 'Toate tag-urile au fost şterse', - 'deleted_all_bills' => 'Toate facturile au fost șterse', - 'deleted_all_piggy_banks' => 'Toate pușculițele au fost șterse', - 'deleted_all_rules' => 'Toate regulile și grupurile de reguli au fost șterse', - 'deleted_all_object_groups' => 'Toate grupurile au fost șterse', - 'deleted_all_accounts' => 'Toate conturile au fost șterse', - 'deleted_all_asset_accounts' => 'Toate conturile de active au fost șterse', - 'deleted_all_expense_accounts' => 'Toate conturile de cheltuieli au fost șterse', - 'deleted_all_revenue_accounts' => 'Toate conturile de venituri au fost șterse', - 'deleted_all_liabilities' => 'Toate datoriile au fost șterse', - 'deleted_all_transactions' => 'Toate tranzacțiile au fost șterse', - 'deleted_all_withdrawals' => 'Toate retragerile au fost șterse', - 'deleted_all_deposits' => 'Toate depozitele au fost șterse', - 'deleted_all_transfers' => 'Toate transferurile au fost șterse', - 'deleted_all_recurring' => 'Toate tranzacțiile recurente au fost șterse', - 'change_your_password' => 'Schimbați-vă parola', - 'delete_account' => 'Șterge account', - 'current_password' => 'Parola actuală', - 'new_password' => 'Parola nouă', - 'new_password_again' => 'Parola nouă (din nou)', - 'delete_your_account' => 'Ștergeți contul dvs', - 'delete_your_account_help' => 'Ștergerea contului dvs. va șterge, de asemenea, orice cont, tranzacție, orice ați salvat în aplicație. Acestea vor dispărea.', - 'delete_your_account_password' => 'Introduceți parola pentru a continua.', - 'password' => 'Parola', - 'are_you_sure' => 'Esti sigur? Nu poți anula acest lucru.', - 'delete_account_button' => 'Ștergeți contul dvs', - 'invalid_current_password' => 'Parola curentă nevalidă!', - 'password_changed' => 'Parolă schimbată!', - 'should_change' => 'Ideea este să vă schimbați parola.', - 'invalid_password' => 'Parolă nevalidă!', - 'what_is_pw_security' => 'Ce este "verificarea securității parolei"?', - 'secure_pw_title' => 'Cum alegeți o parolă sigură', - 'forgot_password_response' => 'Vă mulţumim. Dacă există un cont cu această adresă de e-mail, veţi găsi instrucţiuni în căsuţa poştală.', - 'secure_pw_history' => 'Nu trece nici săptămână și citiți în știri despre un site care pierde parolele utilizatorilor săi. Hackerii și hoții utilizează aceste parole pentru a încerca să vă fure informațiile private. Aceste informații sunt valoroase.', - 'secure_pw_ff' => 'Utilizați aceeași parolă pe tot internetul? Dacă un site pierde parola, hackerii au acces la toate datele. Firefly III se bazează pe dvs. pentru a alege o parolă puternică și unică pentru a vă proteja înregistrările financiare.', - 'secure_pw_check_box' => 'Pentru a vă ajuta să faceți acest lucru Firefly III poate verifica dacă parola pe care doriți să o utilizați a fost furată în trecut. Dacă este cazul, Firefly III vă sfătuiește NU să utilizați parola respectivă.', - 'secure_pw_working_title' => 'Cum funcționează?', - 'secure_pw_working' => 'Dacă bifați caseta, Firefly III va trimite primele cinci caractere ale hash-ului SHA1 al parolei dvs. la site-ul Troy Hunt pentru a vedea dacă este în listă. Acest lucru vă va împiedica să utilizați parole nesigure, așa cum se recomandă în cele mai recente articole de specialitate pe NIST pe acest subiect.', - 'secure_pw_should' => 'Ar trebui să bifez caseta??', - 'secure_pw_long_password' => 'Da. Verificați întotdeauna că parola este sigură.', - 'command_line_token' => 'Token-ul liniei de comandă', - 'explain_command_line_token' => 'Aveți nevoie de acest token pentru a efectua opțiunile prin linie de comandă, cum ar fi exportul de date. Fără el, acea comandă sensibilă nu va funcționa. Nu distribui token-ul pentru linia de comandă. Nimeni nu vă va cere acest token, nici măcar eu. Dacă te temi că ai pierdut asta, sau când ești paranoic, regenerează acest token folosind butonul.', - 'regenerate_command_line_token' => 'Regenerați token-ul liniei de comandă', - 'token_regenerated' => 'A fost generat un nou token de linie de comandă', - 'change_your_email' => 'Schimbați adresa dvs. de e-mail', - 'email_verification' => 'Un mesaj de e-mail va fi trimis la vechea și noua adresă de e-mail. Din motive de securitate, nu vei putea să te autentifici până nu îți verifici noua adresă de e-mail. Dacă nu sunteți sigur că instalarea dvs. Firefly III este capabilă să trimită e-mail, vă rugăm să nu utilizați această funcție. Dacă sunteți un administrator, puteți testa acest lucru în Administrare.', - 'email_changed_logout' => 'Până când nu vă confirmați adresa de e-mail, nu vă puteți conecta.', - 'login_with_new_email' => 'Acum vă puteți conecta cu noua dvs. adresă de e-mail.', - 'login_with_old_email' => 'Acum puteți să vă conectați din nou cu vechea adresă de e-mail.', - 'login_provider_local_only' => 'Această acțiune nu este disponibilă când vă autentificați prin ":login_provider".', - 'external_user_mgt_disabled' => 'Această acțiune nu este disponibilă atunci când Firefly III nu este responsabil de gestionarea utilizatorului sau de manipularea autentificării.', - 'external_auth_disabled' => 'Această acțiune nu este disponibilă atunci când Firefly III nu este responsabil pentru manipularea autentificării.', - 'delete_local_info_only' => 'Deoarece Firefly III nu este responsabil de gestionarea utilizatorului sau de manipularea autentificării, această funcție va șterge doar informațiile locale Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Clienți OAuth', - 'profile_oauth_no_clients' => 'Nu ați creat niciun client OAuth.', - '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_header' => 'Clienți', - 'profile_oauth_client_id' => 'ID Client', - 'profile_oauth_client_name' => 'Nume', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Creare client nou', - 'profile_oauth_create_client' => 'Creare client', - 'profile_oauth_edit_client' => 'Editare client', - 'profile_oauth_name_help' => 'Ceva ce utilizatorii vor recunoaște și vor avea încredere.', - 'profile_oauth_redirect_url' => 'Redirectioneaza URL', - 'profile_oauth_redirect_url_help' => 'URL-ul de retroapelare al aplicației dvs.', - 'profile_authorized_apps' => 'Aplicațiile dvs autorizate', - 'profile_authorized_clients' => 'Clienți autorizați', - 'profile_scopes' => 'Domenii', - 'profile_revoke' => 'Revocați', - 'profile_oauth_client_secret_title' => 'Secret client', - 'profile_oauth_client_secret_expl' => 'Aici este noul tău cod secret de client. Este singura dată când va fi afișat așa că nu îl pierzi! Acum poți folosi acest cod pentru a face cereri API.', - 'profile_personal_access_tokens' => 'Token de acces personal', - 'profile_personal_access_token' => 'Token de acces personal', - 'profile_oauth_confidential' => 'Confidenţial', - 'profile_oauth_confidential_help' => 'Solicitați clientului să se autentifice cu un secret. Clienții confidențiali pot păstra acreditările într-un mod securizat fără a le expune unor părți neautorizate. Aplicațiile publice, cum ar fi aplicațiile native desktop sau JavaScript SPA, nu pot păstra secretele în siguranță.', - 'profile_personal_access_token_explanation' => 'Aici este noul dvs. token de acces personal. Este singura dată când va fi afișat așa că nu îl pierde! Acum poți folosi acest token pentru a face cereri API.', - 'profile_no_personal_access_token' => 'Nu aţi creat nici un token personal de acces.', - 'profile_create_new_token' => 'Crează un nou token', - 'profile_create_token' => 'Crează token', - 'profile_create' => 'Crează', - 'profile_save_changes' => 'Salvează modificările', - 'profile_whoops' => 'Hopaa!', - 'profile_something_wrong' => 'A apărut o eroare!', - 'profile_try_again' => 'A apărut o problemă. Încercați din nou.', - 'amounts' => 'Sume', - 'multi_account_warning_unknown' => 'În funcție de tipul de tranzacție pe care o creați, contul sursei și/sau destinației fracționărilor ulterioare poate fi depășit cu orice se definește în prima împărțire a tranzacției.', - 'multi_account_warning_withdrawal' => 'Reţineţi faptul că sursa scindărilor ulterioare va fi anulată de orice altceva definit în prima împărţire a retragerii.', - 'multi_account_warning_deposit' => 'Țineți cont de faptul că destinația scindărilor ulterioare va fi depășită cu orice se definește la prima împărțire a depozitului.', - 'multi_account_warning_transfer' => 'Reţineţi faptul că contul sursei + destinaţia fracţionărilor ulterioare va fi anulat de orice se defineşte în prima împărţire a transferului.', + 'purge_data_title' => 'Curăță datele din Firefly III', + 'purge_data_expl' => '„Purging” înseamnă „ștergerea celui care este deja șters”. În circumstanțe normale, Firefly III nu șterge nimic permanent. Doar o ascunde. Butonul de mai jos șterge toate aceste înregistrări anterior "șterse" FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Şterge toate înregistrările şterse', + 'purge_data' => 'Şterge datele', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Toate celelalte sesiuni au fost deconectate.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Șterge conturile neutilizate', + 'deleted_all_unused_accounts' => 'Toate conturile neutilizate sunt șterse', + 'delete_all_budgets' => 'Șterge toate bugetele', + 'delete_all_categories' => 'Șterge toate categoriile', + 'delete_all_tags' => 'Șterge toate tag-urile', + 'delete_all_bills' => 'Ștergeți TOATE facturile dvs', + 'delete_all_piggy_banks' => 'Șterge TOATE pușculițele tale', + 'delete_all_rules' => 'Șterge TOATE regulile', + 'delete_all_recurring' => 'Șterge TOATE tranzacțiile dvs. recurente', + 'delete_all_object_groups' => 'Șterge TOATE grupurile de obiecte', + 'delete_all_accounts' => 'Șterge TOATE conturile tale', + 'delete_all_asset_accounts' => 'Șterge TOATE conturile de active', + 'delete_all_expense_accounts' => 'Ștergeți TOATE conturile de cheltuieli', + 'delete_all_revenue_accounts' => 'Șterge TOATE conturile de venituri', + 'delete_all_liabilities' => 'Șterge TOATE datoriile tale', + 'delete_all_transactions' => 'Ștergeți TOATE tranzacțiile dvs', + 'delete_all_withdrawals' => 'Șterge TOATE retragerile', + 'delete_all_deposits' => 'Șterge TOATE depozitele tale', + 'delete_all_transfers' => 'Șterge TOATE transferurile tale', + 'also_delete_transactions' => 'Ștergerea conturilor va șterge și toate retragerile asociate, depozitele și transferurile!', + 'deleted_all_budgets' => 'Toate bugetele au fost şterse', + 'deleted_all_categories' => 'Toate categoriile au fost şterse', + 'deleted_all_tags' => 'Toate tag-urile au fost şterse', + 'deleted_all_bills' => 'Toate facturile au fost șterse', + 'deleted_all_piggy_banks' => 'Toate pușculițele au fost șterse', + 'deleted_all_rules' => 'Toate regulile și grupurile de reguli au fost șterse', + 'deleted_all_object_groups' => 'Toate grupurile au fost șterse', + 'deleted_all_accounts' => 'Toate conturile au fost șterse', + 'deleted_all_asset_accounts' => 'Toate conturile de active au fost șterse', + 'deleted_all_expense_accounts' => 'Toate conturile de cheltuieli au fost șterse', + 'deleted_all_revenue_accounts' => 'Toate conturile de venituri au fost șterse', + 'deleted_all_liabilities' => 'Toate datoriile au fost șterse', + 'deleted_all_transactions' => 'Toate tranzacțiile au fost șterse', + 'deleted_all_withdrawals' => 'Toate retragerile au fost șterse', + 'deleted_all_deposits' => 'Toate depozitele au fost șterse', + 'deleted_all_transfers' => 'Toate transferurile au fost șterse', + 'deleted_all_recurring' => 'Toate tranzacțiile recurente au fost șterse', + 'change_your_password' => 'Schimbați-vă parola', + 'delete_account' => 'Șterge account', + 'current_password' => 'Parola actuală', + 'new_password' => 'Parola nouă', + 'new_password_again' => 'Parola nouă (din nou)', + 'delete_your_account' => 'Ștergeți contul dvs', + 'delete_your_account_help' => 'Ștergerea contului dvs. va șterge, de asemenea, orice cont, tranzacție, orice ați salvat în aplicație. Acestea vor dispărea.', + 'delete_your_account_password' => 'Introduceți parola pentru a continua.', + 'password' => 'Parola', + 'are_you_sure' => 'Esti sigur? Nu poți anula acest lucru.', + 'delete_account_button' => 'Ștergeți contul dvs', + 'invalid_current_password' => 'Parola curentă nevalidă!', + 'password_changed' => 'Parolă schimbată!', + 'should_change' => 'Ideea este să vă schimbați parola.', + 'invalid_password' => 'Parolă nevalidă!', + 'what_is_pw_security' => 'Ce este "verificarea securității parolei"?', + 'secure_pw_title' => 'Cum alegeți o parolă sigură', + 'forgot_password_response' => 'Vă mulţumim. Dacă există un cont cu această adresă de e-mail, veţi găsi instrucţiuni în căsuţa poştală.', + 'secure_pw_history' => 'Nu trece nici săptămână și citiți în știri despre un site care pierde parolele utilizatorilor săi. Hackerii și hoții utilizează aceste parole pentru a încerca să vă fure informațiile private. Aceste informații sunt valoroase.', + 'secure_pw_ff' => 'Utilizați aceeași parolă pe tot internetul? Dacă un site pierde parola, hackerii au acces la toate datele. Firefly III se bazează pe dvs. pentru a alege o parolă puternică și unică pentru a vă proteja înregistrările financiare.', + 'secure_pw_check_box' => 'Pentru a vă ajuta să faceți acest lucru Firefly III poate verifica dacă parola pe care doriți să o utilizați a fost furată în trecut. Dacă este cazul, Firefly III vă sfătuiește NU să utilizați parola respectivă.', + 'secure_pw_working_title' => 'Cum funcționează?', + 'secure_pw_working' => 'Dacă bifați caseta, Firefly III va trimite primele cinci caractere ale hash-ului SHA1 al parolei dvs. la site-ul Troy Hunt pentru a vedea dacă este în listă. Acest lucru vă va împiedica să utilizați parole nesigure, așa cum se recomandă în cele mai recente articole de specialitate pe NIST pe acest subiect.', + 'secure_pw_should' => 'Ar trebui să bifez caseta??', + 'secure_pw_long_password' => 'Da. Verificați întotdeauna că parola este sigură.', + 'command_line_token' => 'Token-ul liniei de comandă', + 'explain_command_line_token' => 'Aveți nevoie de acest token pentru a efectua opțiunile prin linie de comandă, cum ar fi exportul de date. Fără el, acea comandă sensibilă nu va funcționa. Nu distribui token-ul pentru linia de comandă. Nimeni nu vă va cere acest token, nici măcar eu. Dacă te temi că ai pierdut asta, sau când ești paranoic, regenerează acest token folosind butonul.', + 'regenerate_command_line_token' => 'Regenerați token-ul liniei de comandă', + 'token_regenerated' => 'A fost generat un nou token de linie de comandă', + 'change_your_email' => 'Schimbați adresa dvs. de e-mail', + 'email_verification' => 'Un mesaj de e-mail va fi trimis la vechea și noua adresă de e-mail. Din motive de securitate, nu vei putea să te autentifici până nu îți verifici noua adresă de e-mail. Dacă nu sunteți sigur că instalarea dvs. Firefly III este capabilă să trimită e-mail, vă rugăm să nu utilizați această funcție. Dacă sunteți un administrator, puteți testa acest lucru în Administrare.', + 'email_changed_logout' => 'Până când nu vă confirmați adresa de e-mail, nu vă puteți conecta.', + 'login_with_new_email' => 'Acum vă puteți conecta cu noua dvs. adresă de e-mail.', + 'login_with_old_email' => 'Acum puteți să vă conectați din nou cu vechea adresă de e-mail.', + 'login_provider_local_only' => 'Această acțiune nu este disponibilă când vă autentificați prin ":login_provider".', + 'external_user_mgt_disabled' => 'Această acțiune nu este disponibilă atunci când Firefly III nu este responsabil de gestionarea utilizatorului sau de manipularea autentificării.', + 'external_auth_disabled' => 'Această acțiune nu este disponibilă atunci când Firefly III nu este responsabil pentru manipularea autentificării.', + 'delete_local_info_only' => 'Deoarece Firefly III nu este responsabil de gestionarea utilizatorului sau de manipularea autentificării, această funcție va șterge doar informațiile locale Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Clienți OAuth', + 'profile_oauth_no_clients' => 'Nu ați creat niciun client OAuth.', + '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_header' => 'Clienți', + 'profile_oauth_client_id' => 'ID Client', + 'profile_oauth_client_name' => 'Nume', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Creare client nou', + 'profile_oauth_create_client' => 'Creare client', + 'profile_oauth_edit_client' => 'Editare client', + 'profile_oauth_name_help' => 'Ceva ce utilizatorii vor recunoaște și vor avea încredere.', + 'profile_oauth_redirect_url' => 'Redirectioneaza URL', + 'profile_oauth_redirect_url_help' => 'URL-ul de retroapelare al aplicației dvs.', + 'profile_authorized_apps' => 'Aplicațiile dvs autorizate', + 'profile_authorized_clients' => 'Clienți autorizați', + 'profile_scopes' => 'Domenii', + 'profile_revoke' => 'Revocați', + 'profile_oauth_client_secret_title' => 'Secret client', + 'profile_oauth_client_secret_expl' => 'Aici este noul tău cod secret de client. Este singura dată când va fi afișat așa că nu îl pierzi! Acum poți folosi acest cod pentru a face cereri API.', + 'profile_personal_access_tokens' => 'Token de acces personal', + 'profile_personal_access_token' => 'Token de acces personal', + 'profile_oauth_confidential' => 'Confidenţial', + 'profile_oauth_confidential_help' => 'Solicitați clientului să se autentifice cu un secret. Clienții confidențiali pot păstra acreditările într-un mod securizat fără a le expune unor părți neautorizate. Aplicațiile publice, cum ar fi aplicațiile native desktop sau JavaScript SPA, nu pot păstra secretele în siguranță.', + 'profile_personal_access_token_explanation' => 'Aici este noul dvs. token de acces personal. Este singura dată când va fi afișat așa că nu îl pierde! Acum poți folosi acest token pentru a face cereri API.', + 'profile_no_personal_access_token' => 'Nu aţi creat nici un token personal de acces.', + 'profile_create_new_token' => 'Crează un nou token', + 'profile_create_token' => 'Crează token', + 'profile_create' => 'Crează', + 'profile_save_changes' => 'Salvează modificările', + 'profile_whoops' => 'Hopaa!', + 'profile_something_wrong' => 'A apărut o eroare!', + 'profile_try_again' => 'A apărut o problemă. Încercați din nou.', + 'amounts' => 'Sume', + 'multi_account_warning_unknown' => 'În funcție de tipul de tranzacție pe care o creați, contul sursei și/sau destinației fracționărilor ulterioare poate fi depășit cu orice se definește în prima împărțire a tranzacției.', + 'multi_account_warning_withdrawal' => 'Reţineţi faptul că sursa scindărilor ulterioare va fi anulată de orice altceva definit în prima împărţire a retragerii.', + 'multi_account_warning_deposit' => 'Țineți cont de faptul că destinația scindărilor ulterioare va fi depășită cu orice se definește la prima împărțire a depozitului.', + 'multi_account_warning_transfer' => 'Reţineţi faptul că contul sursei + destinaţia fracţionărilor ulterioare va fi anulat de orice se defineşte în prima împărţire a transferului.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportă date din Firefly III', - 'export_data_menu' => 'Exportă datele', - 'export_data_bc' => 'Exportă date din Firefly III', - 'export_data_main_title' => 'Exportă date din Firefly III', - 'export_data_expl' => 'Acest link vă permite să exportați toate tranzacțiile + datele meta de la Firefly III. Vă rugăm să consultați ajutorul (pictograma din dreapta sus (?)) pentru mai multe informații despre proces.', - 'export_data_all_transactions' => 'Exportă toate tranzacțiile', - 'export_data_advanced_expl' => 'Dacă aveți nevoie de un tip de export mai avansat sau specific, citiți despre modul de utilizare a comenzii în consolă php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportă date din Firefly III', + 'export_data_menu' => 'Exportă datele', + 'export_data_bc' => 'Exportă date din Firefly III', + 'export_data_main_title' => 'Exportă date din Firefly III', + 'export_data_expl' => 'Acest link vă permite să exportați toate tranzacțiile + datele meta de la Firefly III. Vă rugăm să consultați ajutorul (pictograma din dreapta sus (?)) pentru mai multe informații despre proces.', + 'export_data_all_transactions' => 'Exportă toate tranzacțiile', + 'export_data_advanced_expl' => 'Dacă aveți nevoie de un tip de export mai avansat sau specific, citiți despre modul de utilizare a comenzii în consolă php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Un atașament|:count atașamente', - 'attachments' => 'Atașamente', - 'edit_attachment' => 'Editați attachment ":name"', - 'update_attachment' => 'Actualizați atașament', - 'delete_attachment' => 'Șterge atașament ":name"', - 'attachment_deleted' => 'Atașament ":name" șters', - 'liabilities_deleted' => 'Provizionul ":name" a fost șters', - 'attachment_updated' => 'Atașament ":name" actualizat', - 'upload_max_file_size' => 'Dimensiunea maximă a fișierului: :size', - 'list_all_attachments' => 'Lista tuturor atașamentelor', + 'nr_of_attachments' => 'Un atașament|:count atașamente', + 'attachments' => 'Atașamente', + 'edit_attachment' => 'Editați attachment ":name"', + 'update_attachment' => 'Actualizați atașament', + 'delete_attachment' => 'Șterge atașament ":name"', + 'attachment_deleted' => 'Atașament ":name" șters', + 'liabilities_deleted' => 'Provizionul ":name" a fost șters', + 'attachment_updated' => 'Atașament ":name" actualizat', + 'upload_max_file_size' => 'Dimensiunea maximă a fișierului: :size', + 'list_all_attachments' => 'Lista tuturor atașamentelor', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Cheltuieli', - 'title_withdrawal' => 'Cheltuieli', - 'title_revenue' => 'Venituri', - 'title_deposit' => 'Venituri', - 'title_transfer' => 'Transferuri', - 'title_transfers' => 'Transferuri', - 'submission_options' => 'Opţiuni de depunere', - 'apply_rules_checkbox' => 'Aplică regulile', - 'fire_webhooks_checkbox' => 'Webhook-uri de incendiu', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Cheltuieli', + 'title_withdrawal' => 'Cheltuieli', + 'title_revenue' => 'Venituri', + 'title_deposit' => 'Venituri', + 'title_transfer' => 'Transferuri', + 'title_transfers' => 'Transferuri', + 'submission_options' => 'Opţiuni de depunere', + 'apply_rules_checkbox' => 'Aplică regulile', + 'fire_webhooks_checkbox' => 'Webhook-uri de incendiu', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Această tranzacție este deja o retragere', - 'convert_is_already_type_Deposit' => 'Această tranzacție este deja un depozit', - 'convert_is_already_type_Transfer' => 'Această tranzacție este deja un transfer', - 'convert_to_Withdrawal' => 'Convertește ":description" la o retragere', - 'convert_to_Deposit' => 'Convertește ":description" la un depozit', - 'convert_to_Transfer' => 'Convertește ":description" la un transfer', - 'convert_options_WithdrawalDeposit' => 'Convertește o retragere intr-un depozit', - 'convert_options_WithdrawalTransfer' => 'Convertește o retragere intr-un transfer', - 'convert_options_DepositTransfer' => 'Convertește un depozit intr-un transfer', - 'convert_options_DepositWithdrawal' => 'Convertește un depozit intr-o retragere', - 'convert_options_TransferWithdrawal' => 'Convertește un transfer intr-o retragere', - 'convert_options_TransferDeposit' => 'Convertește un transfer intr-un depozit', - 'convert_Withdrawal_to_deposit' => 'Convertește această retragere la un depozit', - 'convert_Withdrawal_to_transfer' => 'Convertește această retragere la un transfer', - 'convert_Deposit_to_withdrawal' => 'Convertește aceast depozit la o retragere', - 'convert_Deposit_to_transfer' => 'Convertește această depozit la un transfer', - 'convert_Transfer_to_deposit' => 'Convertește aceast transfer la un depozit', - 'convert_Transfer_to_withdrawal' => 'Convertește aceast transfer la o retragere', - 'convert_please_set_revenue_source' => 'Alegeți un cont de venituri din care vor proveni banii.', - 'convert_please_set_asset_destination' => 'Alegeți un cont de active unde vor merge banii.', - 'convert_please_set_expense_destination' => 'Alegeți un cont de cheltuieli unde vor merge banii.', - 'convert_please_set_asset_source' => 'Alegeți un cont de active unde vor veni banii.', - 'convert_expl_w_d' => 'La conversia de la o retragere la un depozit, banii vor fi depozitați în contul de destinație afișat, în loc să fie retrași din acesta. La conversia de la o retragere la un depozit, banii vor fi depozitați în conturile de destinație afișate, în loc să fie retrași din acestea.', - 'convert_expl_w_t' => 'Când convertești o retragere într-un transfer, banii vor fi transferați departe de contul sursă în alt cont de activ sau de pasiv în loc să fie cheltuiți pe contul de cheltuieli inițial. Când convertești o retragere într-un transfer, banii vor fi transferați departe de conturile sursă în alte conturi de active sau de pasiv în loc să fie cheltuiți pe conturile inițiale de cheltuieli.', - 'convert_expl_d_w' => 'Atunci când convertești un depozit într-o retragere, banii vor fi retrași din contul sursă afișat, în loc să fie depozitați în acesta. Atunci când convertești un depozit într-o retragere, banii vor fi retrași din conturile sursă afișate, în loc să fie depozitați în acestea.', - 'convert_expl_d_t' => 'Când convertești un depozit într-un transfer, banii vor fi depozitați în contul de destinație listat din orice cont de active sau pasive. Când convertești un depozit într-un transfer, banii vor fi depozitați în conturile de destinație listate din oricare dintre conturile de active sau de pasiv ale dumneavoastră.', - 'convert_expl_t_w' => 'Când convertești un transfer într-o retragere, banii vor fi cheltuiți pe contul de destinație pe care îl setezi aici, în loc să fie transferați înapoi. Când convertești un transfer într-o retragere, banii vor fi cheltuiți pe conturile de destinație pe care le setezi aici, în loc să fie transferați la distanță.', - 'convert_expl_t_d' => 'Când convertești un transfer într-un depozit, banii vor fi depozitați în contul de destinație pe care îl vedeți aici, în loc să fie transferați în acesta. Când convertești un transfer într-un depozit, banii vor fi depozitați în conturile de destinație pe care le vedeți aici, în loc să fie transferați în ele.', - 'convert_select_sources' => 'Pentru a finaliza conversia, vă rugăm să setați noul cont sursă mai jos. Pentru a finaliza conversia, vă rugăm să setați mai jos conturile sursă noi.', - 'convert_select_destinations' => 'Pentru a finaliza conversia, vă rugăm să selectaţi noul cont de destinaţie de mai jos. Pentru a finaliza conversia, selectaţi noul cont de destinaţie de mai jos.', - 'converted_to_Withdrawal' => 'Tranzacția a fost transformată în retragere', - 'converted_to_Deposit' => 'Tranzacția a fost transformată în depozit', - 'converted_to_Transfer' => 'Tranzacția a fost transformată în transfer', - 'invalid_convert_selection' => 'Contul pe care l-ați selectat este deja utilizat în această tranzacție sau nu există.', - 'source_or_dest_invalid' => 'Nu se pot găsi detaliile corecte ale tranzacției. Conversia nu este posibilă.', - 'convert_to_withdrawal' => 'Convertește la retragere', - 'convert_to_deposit' => 'Convertește la depozit', - 'convert_to_transfer' => 'Convertește la transfer', + 'convert_is_already_type_Withdrawal' => 'Această tranzacție este deja o retragere', + 'convert_is_already_type_Deposit' => 'Această tranzacție este deja un depozit', + 'convert_is_already_type_Transfer' => 'Această tranzacție este deja un transfer', + 'convert_to_Withdrawal' => 'Convertește ":description" la o retragere', + 'convert_to_Deposit' => 'Convertește ":description" la un depozit', + 'convert_to_Transfer' => 'Convertește ":description" la un transfer', + 'convert_options_WithdrawalDeposit' => 'Convertește o retragere intr-un depozit', + 'convert_options_WithdrawalTransfer' => 'Convertește o retragere intr-un transfer', + 'convert_options_DepositTransfer' => 'Convertește un depozit intr-un transfer', + 'convert_options_DepositWithdrawal' => 'Convertește un depozit intr-o retragere', + 'convert_options_TransferWithdrawal' => 'Convertește un transfer intr-o retragere', + 'convert_options_TransferDeposit' => 'Convertește un transfer intr-un depozit', + 'convert_Withdrawal_to_deposit' => 'Convertește această retragere la un depozit', + 'convert_Withdrawal_to_transfer' => 'Convertește această retragere la un transfer', + 'convert_Deposit_to_withdrawal' => 'Convertește aceast depozit la o retragere', + 'convert_Deposit_to_transfer' => 'Convertește această depozit la un transfer', + 'convert_Transfer_to_deposit' => 'Convertește aceast transfer la un depozit', + 'convert_Transfer_to_withdrawal' => 'Convertește aceast transfer la o retragere', + 'convert_please_set_revenue_source' => 'Alegeți un cont de venituri din care vor proveni banii.', + 'convert_please_set_asset_destination' => 'Alegeți un cont de active unde vor merge banii.', + 'convert_please_set_expense_destination' => 'Alegeți un cont de cheltuieli unde vor merge banii.', + 'convert_please_set_asset_source' => 'Alegeți un cont de active unde vor veni banii.', + 'convert_expl_w_d' => 'La conversia de la o retragere la un depozit, banii vor fi depozitați în contul de destinație afișat, în loc să fie retrași din acesta. La conversia de la o retragere la un depozit, banii vor fi depozitați în conturile de destinație afișate, în loc să fie retrași din acestea.', + 'convert_expl_w_t' => 'Când convertești o retragere într-un transfer, banii vor fi transferați departe de contul sursă în alt cont de activ sau de pasiv în loc să fie cheltuiți pe contul de cheltuieli inițial. Când convertești o retragere într-un transfer, banii vor fi transferați departe de conturile sursă în alte conturi de active sau de pasiv în loc să fie cheltuiți pe conturile inițiale de cheltuieli.', + 'convert_expl_d_w' => 'Atunci când convertești un depozit într-o retragere, banii vor fi retrași din contul sursă afișat, în loc să fie depozitați în acesta. Atunci când convertești un depozit într-o retragere, banii vor fi retrași din conturile sursă afișate, în loc să fie depozitați în acestea.', + 'convert_expl_d_t' => 'Când convertești un depozit într-un transfer, banii vor fi depozitați în contul de destinație listat din orice cont de active sau pasive. Când convertești un depozit într-un transfer, banii vor fi depozitați în conturile de destinație listate din oricare dintre conturile de active sau de pasiv ale dumneavoastră.', + 'convert_expl_t_w' => 'Când convertești un transfer într-o retragere, banii vor fi cheltuiți pe contul de destinație pe care îl setezi aici, în loc să fie transferați înapoi. Când convertești un transfer într-o retragere, banii vor fi cheltuiți pe conturile de destinație pe care le setezi aici, în loc să fie transferați la distanță.', + 'convert_expl_t_d' => 'Când convertești un transfer într-un depozit, banii vor fi depozitați în contul de destinație pe care îl vedeți aici, în loc să fie transferați în acesta. Când convertești un transfer într-un depozit, banii vor fi depozitați în conturile de destinație pe care le vedeți aici, în loc să fie transferați în ele.', + 'convert_select_sources' => 'Pentru a finaliza conversia, vă rugăm să setați noul cont sursă mai jos. Pentru a finaliza conversia, vă rugăm să setați mai jos conturile sursă noi.', + 'convert_select_destinations' => 'Pentru a finaliza conversia, vă rugăm să selectaţi noul cont de destinaţie de mai jos. Pentru a finaliza conversia, selectaţi noul cont de destinaţie de mai jos.', + 'converted_to_Withdrawal' => 'Tranzacția a fost transformată în retragere', + 'converted_to_Deposit' => 'Tranzacția a fost transformată în depozit', + 'converted_to_Transfer' => 'Tranzacția a fost transformată în transfer', + 'invalid_convert_selection' => 'Contul pe care l-ați selectat este deja utilizat în această tranzacție sau nu există.', + 'source_or_dest_invalid' => 'Nu se pot găsi detaliile corecte ale tranzacției. Conversia nu este posibilă.', + 'convert_to_withdrawal' => 'Convertește la retragere', + 'convert_to_deposit' => 'Convertește la depozit', + 'convert_to_transfer' => 'Convertește la transfer', // create new stuff: - 'create_new_withdrawal' => 'Creați o nouă retragere', - 'create_new_deposit' => 'Creați un nou depozit', - 'create_new_transfer' => 'Creați un nou transfer', - 'create_new_asset' => 'Creați un nou cont de active', - 'create_new_liabilities' => 'Creare provizion nou', - 'create_new_expense' => 'Creați un nou cont de cheltuieli', - 'create_new_revenue' => 'Creați un nou cont de venituri', - 'create_new_piggy_bank' => 'Creați o nouă pușculiță', - 'create_new_bill' => 'Creați o nouă factură', - 'create_new_subscription' => 'Creați un abonament nou', - 'create_new_rule' => 'Creați o regulă nouă', + 'create_new_withdrawal' => 'Creați o nouă retragere', + 'create_new_deposit' => 'Creați un nou depozit', + 'create_new_transfer' => 'Creați un nou transfer', + 'create_new_asset' => 'Creați un nou cont de active', + 'create_new_liabilities' => 'Creare provizion nou', + 'create_new_expense' => 'Creați un nou cont de cheltuieli', + 'create_new_revenue' => 'Creați un nou cont de venituri', + 'create_new_piggy_bank' => 'Creați o nouă pușculiță', + 'create_new_bill' => 'Creați o nouă factură', + 'create_new_subscription' => 'Creați un abonament nou', + 'create_new_rule' => 'Creați o regulă nouă', // currencies: - 'create_currency' => 'Creați o nouă monedă', - 'store_currency' => 'Salvați o nouă monedă', - 'update_currency' => 'Actualizați monedă', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Nu se poate șterge :nume deoarece este încă în uz.', - 'cannot_delete_fallback_currency' => ':name este moneda de rezervă a sistemului și nu poate fi ștearsă.', - 'cannot_disable_currency_journals' => 'Nu se poate dezactiva :name, deoarece tranzacțiile încă îl utilizează.', - 'cannot_disable_currency_last_left' => 'Nu se poate dezactiva :name, deoarece este ultima monedă activată.', - 'cannot_disable_currency_account_meta' => 'Nu se poate dezactiva :name deoarece este utilizat în conturile de active.', - 'cannot_disable_currency_bills' => 'Nu se poate dezactiva :name deoarece este folosit în facturi.', - 'cannot_disable_currency_recurring' => 'Nu se poate dezactiva :name deoareceeste utilizat în tranzacții recurente.', - 'cannot_disable_currency_available_budgets' => 'Nu se poate dezactiva :name deoarece este folosit în bugetele disponibile.', - 'cannot_disable_currency_budget_limits' => 'Nu se poate dezactiva :name deoarece este utilizat în limite bugetare.', - 'cannot_disable_currency_current_default' => 'Nu se poate dezactiva :name deoarece este moneda implicită curentă.', - 'cannot_disable_currency_system_fallback' => 'Nu se poate dezactiva :name deoarece este moneda implicită a sistemului.', - 'disable_EUR_side_effects' => 'Euro este moneda de recuperare de urgență a sistemului. Dezactivarea acestuia poate avea efecte secundare nedorite și vă poate anula garanția.', - 'deleted_currency' => 'Moneda :name stearsă', - 'created_currency' => 'Moneda :name creată', - 'could_not_store_currency' => 'Nu am putut stoca o nouă monedă.', - 'updated_currency' => 'Moneda :name actualizată', - 'ask_site_owner' => 'Vă rugăm să întrebați :owner să adăuge, elimine sau editeze valute.', - 'currencies_intro' => 'Firefly III acceptă diferite valute pe care le puteți seta și activa aici.', - 'make_default_currency' => 'Faceți implicit', - 'default_currency' => 'implicit', - 'currency_is_disabled' => 'Dezactivat', - 'enable_currency' => 'Activează', - 'disable_currency' => 'Dezactivează', - 'currencies_default_disabled' => 'Cele mai multe dintre aceste monede sunt dezactivate în mod prestabilit. Pentru a le folosi, trebuie să le activați mai întâi.', - 'currency_is_now_enabled' => 'Moneda ":name" a fost activată', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Moneda ":name" a fost dezactivată', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Creați o nouă monedă', + 'store_currency' => 'Salvați o nouă monedă', + 'update_currency' => 'Actualizați monedă', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Nu se poate șterge :nume deoarece este încă în uz.', + 'cannot_delete_fallback_currency' => ':name este moneda de rezervă a sistemului și nu poate fi ștearsă.', + 'cannot_disable_currency_journals' => 'Nu se poate dezactiva :name, deoarece tranzacțiile încă îl utilizează.', + 'cannot_disable_currency_last_left' => 'Nu se poate dezactiva :name, deoarece este ultima monedă activată.', + 'cannot_disable_currency_account_meta' => 'Nu se poate dezactiva :name deoarece este utilizat în conturile de active.', + 'cannot_disable_currency_bills' => 'Nu se poate dezactiva :name deoarece este folosit în facturi.', + 'cannot_disable_currency_recurring' => 'Nu se poate dezactiva :name deoareceeste utilizat în tranzacții recurente.', + 'cannot_disable_currency_available_budgets' => 'Nu se poate dezactiva :name deoarece este folosit în bugetele disponibile.', + 'cannot_disable_currency_budget_limits' => 'Nu se poate dezactiva :name deoarece este utilizat în limite bugetare.', + 'cannot_disable_currency_current_default' => 'Nu se poate dezactiva :name deoarece este moneda implicită curentă.', + 'cannot_disable_currency_system_fallback' => 'Nu se poate dezactiva :name deoarece este moneda implicită a sistemului.', + 'disable_EUR_side_effects' => 'Euro este moneda de recuperare de urgență a sistemului. Dezactivarea acestuia poate avea efecte secundare nedorite și vă poate anula garanția.', + 'deleted_currency' => 'Moneda :name stearsă', + 'created_currency' => 'Moneda :name creată', + 'could_not_store_currency' => 'Nu am putut stoca o nouă monedă.', + 'updated_currency' => 'Moneda :name actualizată', + 'ask_site_owner' => 'Vă rugăm să întrebați :owner să adăuge, elimine sau editeze valute.', + 'currencies_intro' => 'Firefly III acceptă diferite valute pe care le puteți seta și activa aici.', + 'make_default_currency' => 'Faceți implicit', + 'default_currency' => 'implicit', + 'currency_is_disabled' => 'Dezactivat', + 'enable_currency' => 'Activează', + 'disable_currency' => 'Dezactivează', + 'currencies_default_disabled' => 'Cele mai multe dintre aceste monede sunt dezactivate în mod prestabilit. Pentru a le folosi, trebuie să le activați mai întâi.', + 'currency_is_now_enabled' => 'Moneda ":name" a fost activată', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Moneda ":name" a fost dezactivată', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Câmpuri obligatorii', - 'optionalFields' => 'Câmpuri opționale', - 'options' => 'Opțiuni', + 'mandatoryFields' => 'Câmpuri obligatorii', + 'optionalFields' => 'Câmpuri opționale', + 'options' => 'Opțiuni', // budgets: - 'daily_budgets' => 'Bugete zilnice', - 'weekly_budgets' => 'Bugete săptămânale', - 'monthly_budgets' => 'Bugete lunare', - 'quarterly_budgets' => 'Bugete trimestriale', - 'half_year_budgets' => 'Bugete semestriale', - 'yearly_budgets' => 'Bugete anuale', - 'other_budgets' => 'Bugete personalizate temporale', - 'budget_limit_not_in_range' => 'Această sumă se aplică de la :start la :end:', - 'total_available_budget' => 'Buget total disponibil (între :start și :end)', - 'total_available_budget_in_currency' => 'Buget total disponibil în :currency', - 'see_below' => 'vezi mai jos', - 'create_new_budget' => 'Creați un nou budget', - 'store_new_budget' => 'Salvați un nou budget', - 'stored_new_budget' => 'Bugetul ":name" a fost salvat', - 'available_between' => 'Disponibil între :start și :end', - 'transactionsWithoutBudget' => 'Cheltuieli fără buget', - 'transactions_no_budget' => 'Cheltuieli fără buget între :start și :end', - 'spent_between' => 'Cheltuit între :start și :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Setați suma disponibilă', - 'update_available_amount' => 'Actualizați suma disponibilă', - 'ab_basic_modal_explain' => 'Utilizați acest formular pentru a indica cât de mult doriți să bugeți (în total, în :currency) în perioada indicată.', - 'createBudget' => 'Buget nou', - 'invalid_currency' => 'Aceasta este o monedă nevalidă', - 'invalid_amount' => 'Vă rugăm să introduceţi o sumă', - 'set_ab' => 'Suma disponibilă a bugetului a fost stabilită', - 'updated_ab' => 'Suma disponibilă a bugetului a fost actualizată', - 'deleted_ab' => 'Suma disponibilă a bugetului a fost ștearsă', - 'deleted_bl' => 'Suma disponibilă a bugetului a fost îndepărtat', - 'alt_currency_ab_create' => 'Setați bugetul disponibil într-o altă monedă', - 'bl_create_btn' => 'Setați bugetul într-o altă monedă', - 'inactiveBudgets' => 'Bugete inactive', - 'without_budget_between' => 'Tranzacții fără un buget între :start și :end', - 'delete_budget' => 'Șterge buget ":name"', - 'deleted_budget' => 'Buget ":name" șters', - 'edit_budget' => 'Editați buget ":name"', - 'updated_budget' => 'Buget ":name" actualizat', - 'update_amount' => 'Actualizați suma', - 'update_budget' => 'Actualizați bugetul', - 'update_budget_amount_range' => 'Actualizați suma disponibilă între :start și :end', - 'set_budget_limit_title' => 'Setați suma bugetată pentru bugetul :budget între :start și :end', - 'set_budget_limit' => 'Setați suma bugetată', - 'budget_period_navigator' => 'Navigator pe perioada', - 'info_on_available_amount' => 'Ce am disponibil?', - 'available_amount_indication' => 'Utilizați aceste sume pentru a obține o indicație cu privire la bugetul dvs. total.', - 'suggested' => 'Sugerat', - 'average_between' => 'Media între :start și :end', - 'transferred_in' => 'Transferat (în)', - 'transferred_away' => 'Transferat (departe)', - 'auto_budget_none' => 'Fără auto-buget', - 'auto_budget_reset' => 'Stabiliți o sumă fixă pentru fiecare perioadă', - 'auto_budget_rollover' => 'Adaugă o sumă în fiecare perioadă', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Zilnic', - 'auto_budget_period_weekly' => 'Săptămânal', - 'auto_budget_period_monthly' => 'Lunar', - 'auto_budget_period_quarterly' => 'Trimestrial', - 'auto_budget_period_half_year' => 'Fiecare jumătate de an', - 'auto_budget_period_yearly' => 'Anual', - 'auto_budget_help' => 'Poți citi mai multe despre această caracteristică din ajutor. Apasă pe icoana din dreapta sus (?).', - 'auto_budget_reset_icon' => 'Acest buget va fi stabilit periodic', - 'auto_budget_rollover_icon' => 'Suma bugetului va crește periodic', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Șterge suma înscrisă în :currency', + 'daily_budgets' => 'Bugete zilnice', + 'weekly_budgets' => 'Bugete săptămânale', + 'monthly_budgets' => 'Bugete lunare', + 'quarterly_budgets' => 'Bugete trimestriale', + 'half_year_budgets' => 'Bugete semestriale', + 'yearly_budgets' => 'Bugete anuale', + 'other_budgets' => 'Bugete personalizate temporale', + 'budget_limit_not_in_range' => 'Această sumă se aplică de la :start la :end:', + 'total_available_budget' => 'Buget total disponibil (între :start și :end)', + 'total_available_budget_in_currency' => 'Buget total disponibil în :currency', + 'see_below' => 'vezi mai jos', + 'create_new_budget' => 'Creați un nou budget', + 'store_new_budget' => 'Salvați un nou budget', + 'stored_new_budget' => 'Bugetul ":name" a fost salvat', + 'available_between' => 'Disponibil între :start și :end', + 'transactionsWithoutBudget' => 'Cheltuieli fără buget', + 'transactions_no_budget' => 'Cheltuieli fără buget între :start și :end', + 'spent_between' => 'Cheltuit între :start și :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Setați suma disponibilă', + 'update_available_amount' => 'Actualizați suma disponibilă', + 'ab_basic_modal_explain' => 'Utilizați acest formular pentru a indica cât de mult doriți să bugeți (în total, în :currency) în perioada indicată.', + 'createBudget' => 'Buget nou', + 'invalid_currency' => 'Aceasta este o monedă nevalidă', + 'invalid_amount' => 'Vă rugăm să introduceţi o sumă', + 'set_ab' => 'Suma disponibilă a bugetului a fost stabilită', + 'updated_ab' => 'Suma disponibilă a bugetului a fost actualizată', + 'deleted_ab' => 'Suma disponibilă a bugetului a fost ștearsă', + 'deleted_bl' => 'Suma disponibilă a bugetului a fost îndepărtat', + 'alt_currency_ab_create' => 'Setați bugetul disponibil într-o altă monedă', + 'bl_create_btn' => 'Setați bugetul într-o altă monedă', + 'inactiveBudgets' => 'Bugete inactive', + 'without_budget_between' => 'Tranzacții fără un buget între :start și :end', + 'delete_budget' => 'Șterge buget ":name"', + 'deleted_budget' => 'Buget ":name" șters', + 'edit_budget' => 'Editați buget ":name"', + 'updated_budget' => 'Buget ":name" actualizat', + 'update_amount' => 'Actualizați suma', + 'update_budget' => 'Actualizați bugetul', + 'update_budget_amount_range' => 'Actualizați suma disponibilă între :start și :end', + 'set_budget_limit_title' => 'Setați suma bugetată pentru bugetul :budget între :start și :end', + 'set_budget_limit' => 'Setați suma bugetată', + 'budget_period_navigator' => 'Navigator pe perioada', + 'info_on_available_amount' => 'Ce am disponibil?', + 'available_amount_indication' => 'Utilizați aceste sume pentru a obține o indicație cu privire la bugetul dvs. total.', + 'suggested' => 'Sugerat', + 'average_between' => 'Media între :start și :end', + 'transferred_in' => 'Transferat (în)', + 'transferred_away' => 'Transferat (departe)', + 'auto_budget_none' => 'Fără auto-buget', + 'auto_budget_reset' => 'Stabiliți o sumă fixă pentru fiecare perioadă', + 'auto_budget_rollover' => 'Adaugă o sumă în fiecare perioadă', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Zilnic', + 'auto_budget_period_weekly' => 'Săptămânal', + 'auto_budget_period_monthly' => 'Lunar', + 'auto_budget_period_quarterly' => 'Trimestrial', + 'auto_budget_period_half_year' => 'Fiecare jumătate de an', + 'auto_budget_period_yearly' => 'Anual', + 'auto_budget_help' => 'Poți citi mai multe despre această caracteristică din ajutor. Apasă pe icoana din dreapta sus (?).', + 'auto_budget_reset_icon' => 'Acest buget va fi stabilit periodic', + 'auto_budget_rollover_icon' => 'Suma bugetului va crește periodic', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Șterge suma înscrisă în :currency', // bills: - 'subscription' => 'Abonament', - 'not_expected_period' => 'Nu se aşteaptă această perioadă', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Nu (încă)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Factura se potrivește tranzacțiilor între :low și :high.', - 'running_again_loss' => 'Tranzacțiile legate anterior de această factură își pot pierde conexiunea, dacă acestea nu mai corespund cu regula (regulile).', - 'bill_related_rules' => 'Reguli legate de această factură', - 'repeats' => 'Repetă', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Tranzacții conectate', - 'auto_match_on' => 'Potrivire automată făcută de Firefly III', - 'auto_match_off' => 'Potrivirea nu este făcută automat de Firefly III', - 'next_expected_match' => 'Următoarea potrivire asteptată', - 'delete_bill' => 'Șterge factura ":name"', - 'deleted_bill' => 'Factura ":name" stearsă', - 'edit_bill' => 'Editați factura ":name"', - 'more' => 'Mai mult', - 'rescan_old' => 'Rulează din nou regulile pentru toate tranzacțiile', - 'update_bill' => 'Actualizați factura', - 'updated_bill' => 'Factura ":name" actualizată', - 'store_new_bill' => 'Salvați o nouă factură', - 'stored_new_bill' => 'Factura noua ":name" a fost salvată', - 'cannot_scan_inactive_bill' => 'Facturile inactive nu pot fi scanate.', - 'rescanned_bill' => 'Recanați totul și conectați :count tranzacție la factură. | Recanați totul și conectați :count tranzacții la factură.', - 'average_bill_amount_year' => 'Suma medie a facturilor (:year)', - 'average_bill_amount_overall' => 'Suma medie a facturilor (în ansamblu)', - 'bill_is_active' => 'Factura este activă', - 'bill_expected_between' => 'Așteptat între :start și :end', - 'bill_will_automatch' => 'Factura se va conecta automat la tranzacții ce se potrivesc', - 'skips_over' => 'sari peste', - 'bill_store_error' => 'A apărut o eroare neașteptată în timpul stocării facturii noi. Verificați log-urile', - 'list_inactive_rule' => 'regulă inactivă', - 'bill_edit_rules' => 'Firefly III va încerca să editeze și regula legată de această factură. Dacă ați editat chiar dvs. această regulă, Firefly III nu va schimba nimic. Firefly III va încerca să editeze și regulile :count legate de această factură. Totuși, dacă ați editat aceste reguli, Firefly III nu va schimba nimic.', - 'bill_expected_date' => 'Se așteaptă :date', - 'bill_expected_date_js' => 'Așteptat {date}', - 'expected_amount' => 'Sumă (așteptată)', - 'bill_paid_on' => 'Plătit pe {date}', - 'bill_repeats_weekly' => 'Se repetă săptămânal', - 'bill_repeats_monthly' => 'Se repetă lunar', - 'bill_repeats_quarterly' => 'Repetă trimestrial', - 'bill_repeats_half-year' => 'Se repetă la fiecare jumătate de an', - 'bill_repeats_yearly' => 'Se repetă anual', - 'bill_repeats_weekly_other' => 'Se repetă in fiecare săptămâna', - 'bill_repeats_monthly_other' => 'Se repetă la fiecare altă lună', - 'bill_repeats_quarterly_other' => 'Se repetă in fiecare trimestru', - 'bill_repeats_half-year_other' => 'Se repetă anual', - 'bill_repeats_yearly_other' => 'Se repetă la fiecare doi ani', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscripții', - 'go_to_subscriptions' => 'Mergi la abonamentele tale', - 'forever' => 'Întotdeauna', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Abonament', + 'not_expected_period' => 'Nu se aşteaptă această perioadă', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Nu (încă)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Factura se potrivește tranzacțiilor între :low și :high.', + 'running_again_loss' => 'Tranzacțiile legate anterior de această factură își pot pierde conexiunea, dacă acestea nu mai corespund cu regula (regulile).', + 'bill_related_rules' => 'Reguli legate de această factură', + 'repeats' => 'Repetă', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Tranzacții conectate', + 'auto_match_on' => 'Potrivire automată făcută de Firefly III', + 'auto_match_off' => 'Potrivirea nu este făcută automat de Firefly III', + 'next_expected_match' => 'Următoarea potrivire asteptată', + 'delete_bill' => 'Șterge factura ":name"', + 'deleted_bill' => 'Factura ":name" stearsă', + 'edit_bill' => 'Editați factura ":name"', + 'more' => 'Mai mult', + 'rescan_old' => 'Rulează din nou regulile pentru toate tranzacțiile', + 'update_bill' => 'Actualizați factura', + 'updated_bill' => 'Factura ":name" actualizată', + 'store_new_bill' => 'Salvați o nouă factură', + 'stored_new_bill' => 'Factura noua ":name" a fost salvată', + 'cannot_scan_inactive_bill' => 'Facturile inactive nu pot fi scanate.', + 'rescanned_bill' => 'Recanați totul și conectați :count tranzacție la factură. | Recanați totul și conectați :count tranzacții la factură.', + 'average_bill_amount_year' => 'Suma medie a facturilor (:year)', + 'average_bill_amount_overall' => 'Suma medie a facturilor (în ansamblu)', + 'bill_is_active' => 'Factura este activă', + 'bill_expected_between' => 'Așteptat între :start și :end', + 'bill_will_automatch' => 'Factura se va conecta automat la tranzacții ce se potrivesc', + 'skips_over' => 'sari peste', + 'bill_store_error' => 'A apărut o eroare neașteptată în timpul stocării facturii noi. Verificați log-urile', + 'list_inactive_rule' => 'regulă inactivă', + 'bill_edit_rules' => 'Firefly III va încerca să editeze și regula legată de această factură. Dacă ați editat chiar dvs. această regulă, Firefly III nu va schimba nimic. Firefly III va încerca să editeze și regulile :count legate de această factură. Totuși, dacă ați editat aceste reguli, Firefly III nu va schimba nimic.', + 'bill_expected_date' => 'Se așteaptă :date', + 'bill_expected_date_js' => 'Așteptat {date}', + 'expected_amount' => 'Sumă (așteptată)', + 'bill_paid_on' => 'Plătit pe {date}', + 'bill_repeats_weekly' => 'Se repetă săptămânal', + 'bill_repeats_monthly' => 'Se repetă lunar', + 'bill_repeats_quarterly' => 'Repetă trimestrial', + 'bill_repeats_half-year' => 'Se repetă la fiecare jumătate de an', + 'bill_repeats_yearly' => 'Se repetă anual', + 'bill_repeats_weekly_other' => 'Se repetă in fiecare săptămâna', + 'bill_repeats_monthly_other' => 'Se repetă la fiecare altă lună', + 'bill_repeats_quarterly_other' => 'Se repetă in fiecare trimestru', + 'bill_repeats_half-year_other' => 'Se repetă anual', + 'bill_repeats_yearly_other' => 'Se repetă la fiecare doi ani', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscripții', + 'go_to_subscriptions' => 'Mergi la abonamentele tale', + 'forever' => 'Întotdeauna', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'Suma datorata', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Aveți un cont :count inactiv (arhivat), pe care îl puteți vizualiza pe această pagină separată. Aveți :count inactive (arhivate), pe care le puteți vizualiza pe această pagină separată.', - 'all_accounts_inactive' => 'Acestea sunt conturile dvs. inactive.', - 'active_account_link' => 'Acest link revine la conturile dvs. active.', - 'account_missing_transaction' => 'Contul #:id (":name") nu pot fi vizualizate direct.', - 'cc_monthly_payment_date_help' => 'Selectați în orice an și în orice lună, acesta va fi ignorat oricum. Numai ziua lunii este relevantă.', - 'details_for_asset' => 'Detalii pentru contul de active ":name"', - 'details_for_expense' => 'Detalii pentru contul de cheltuieli ":name"', - 'details_for_revenue' => 'Detalii pentru contul de venituri ":name"', - 'details_for_cash' => 'Detalii pentru contul de numerar ":name"', - 'store_new_asset_account' => 'Salvați un nou cont de active', - 'store_new_expense_account' => 'Salvați un nou cont de cheltuieli', - 'store_new_revenue_account' => 'Salvați un nou cont de venituri', - 'edit_asset_account' => 'Editați contul de active ":name"', - 'edit_expense_account' => 'Editați contul de cheltuieli ":name"', - 'edit_revenue_account' => 'Editați contul de venituri ":name"', - 'delete_asset_account' => 'Șterge contul de active ":name"', - 'delete_expense_account' => 'Șterge contul de cheltuieli ":name"', - 'delete_revenue_account' => 'Șterge contul de venituri ":name"', - 'delete_liabilities_account' => 'Șterge provizionul ":name"', - 'asset_deleted' => 'Contul de active ":name" a fost șters cu succes', - 'account_deleted' => 'Cont ":name" șters cu succes', - 'expense_deleted' => 'Contul de cheltuieli ":name" a fost șters cu succes', - 'revenue_deleted' => 'Contul de venituri ":name" a fost șters cu succes', - 'update_asset_account' => 'Actualizați contul de active', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Actualizați provizionul', - 'update_expense_account' => 'Actualizați cont de cheltuieli', - 'update_revenue_account' => 'Actualizați cont de venituri', - 'make_new_asset_account' => 'Creați un nou cont de active', - 'make_new_expense_account' => 'Creați un nou cont de cheltuieli', - 'make_new_revenue_account' => 'Creați un nou cont de venituri', - 'make_new_liabilities_account' => 'Creați un nou provizion', - 'asset_accounts' => 'Conturile de active', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Conturi de active (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Conturi de cheltuieli', - 'expense_accounts_inactive' => 'Conturi de cheltuieli (inactive)', - 'revenue_account' => 'Cont de venituri', - 'revenue_accounts' => 'Conturi de venituri', - 'revenue_accounts_inactive' => 'Conturi de venituri (inactive)', - 'cash_accounts' => 'Conturi de numerar', - 'Cash account' => 'Cont de numerar', - 'liabilities_accounts' => 'Provizioane', - 'liabilities_accounts_inactive' => 'Pasive (inactive)', - 'reconcile_account' => 'Reconciliază/Potrivește contul ":account"', - 'overview_of_reconcile_modal' => 'Privire de ansamblu asupra reconcilierii', - 'delete_reconciliation' => 'Șterge reconcilierea', - 'update_reconciliation' => 'Actualizați reconcilierea', - 'amount_cannot_be_zero' => 'Suma nu poate fi zero', - 'end_of_reconcile_period' => 'Sfârșitul perioadei de reconciliere: :period', - 'start_of_reconcile_period' => 'Începutul perioadei de reconciliere: :period', - 'start_balance' => 'Sold de început', - 'end_balance' => 'Sold final', - 'update_balance_dates_instruction' => 'Potriviți sumele și datele de mai sus la extrasul de cont bancar și apăsați pe "Porniți reconcilierea"', - 'select_transactions_instruction' => 'Selectați tranzacțiile care apar în extrasul dvs. bancar.', - 'select_range_and_balance' => 'Mai întâi verificați intervalul de date și balanțele. Apoi apăsați "Porniți reconcilierea"', - 'date_change_instruction' => 'Dacă schimbați acum intervalul de date, orice progres va fi pierdut.', - 'update_selection' => 'Actualizați selectaia', - 'store_reconcile' => 'Salvați reconcilierea', - 'reconciliation_transaction' => 'Tranzacție de reconciliere', - 'Reconciliation' => 'Reconciliere', - 'reconciliation' => 'Reconciliere', - 'reconcile_options' => 'Optiuni reconciliere', - 'reconcile_range' => 'Domeniu de reconciliere', - 'start_reconcile' => 'Porniți reconcilierea', - 'cash_account_type' => 'Numerar', - 'cash' => 'numerar', - 'cant_find_redirect_account' => 'Firefly III a încercat să vă redirecționeze, dar nu a putut. Îmi pare rău pentru asta. Înapoi la index.', - 'account_type' => 'Tip cont', - 'save_transactions_by_moving' => 'Salvați această tranzacție mutând-o într-un alt cont: | Salvați aceste tranzacții prin mutarea lor într-un alt cont:', - 'save_transactions_by_moving_js' => 'Fără tranzacții* Salvați această tranzacție mutând-o în alt cont. | Salvați aceste tranzacții mutându-le într-un alt cont.', - 'stored_new_account' => 'Cont nou ":name" salvat!', - 'stored_new_account_js' => 'Cont nou "{name}" stocat!', - 'updated_account' => 'Contul ":name" actualizat', - 'updated_account_js' => 'Cont actualizat "{title}".', - 'credit_card_options' => 'Opțiuni pentru carduri de credit', - 'no_transactions_account' => 'Nu există tranzacții (în această perioadă) pentru contul de activ ":name".', - 'no_transactions_period' => 'Nu există nicio tranzacție (in această perioadă).', - 'no_data_for_chart' => 'Nu există suficiente informații (încă) pentru a genera acest grafic.', - 'select_at_least_one_account' => 'Selectați cel puțin un cont de active', - 'select_at_least_one_category' => 'Selectați cel puțin o categorie', - 'select_at_least_one_budget' => 'Selectați cel puțin un buget', - 'select_at_least_one_tag' => 'Selectați cel puțin o eticheta', - 'select_at_least_one_expense' => 'Selectați cel puțin o combinație cont de cheltuieli/venituri. Dacă nu ai încă nici una (lista este goală) acest raport nu este disponibil.', - 'account_default_currency' => 'Aceasta va fi moneda implicită asociată acestui cont.', - 'reconcile_has_more' => 'Registrul dvs are mai mulți bani în ea decât banca dvs. susține că ar trebui să aveți. Există mai multe opțiuni. Alegeți ce să faceți. Apoi, apăsați "Confirmați reconcilierea".', - 'reconcile_has_less' => 'Registrul dvs are mai puțini bani în ea decât banca dvs. susține că ar trebui să aveți. Există mai multe opțiuni. Alegeți ce să faceți. Apoi, apăsați "Confirmați reconcilierea".', - 'reconcile_is_equal' => 'Registrul si declarațiile dvs. de cont se potrivesc. Nu e nimic de facut. Te rog apasă "Confirmați reconcilierea" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Goliți tranzacțiile selectate și creați o corecție adăugând :amount la acest cont de active.', - 'create_neg_reconcile_transaction' => 'Goliți tranzacțiile selectate și creați o corecție ștergând :amount din acest cont de active.', - 'reconcile_do_nothing' => 'Goliți tranzacțiile selectate, dar nu corectați.', - 'reconcile_go_back' => 'Puteți modifica sau șterge întotdeauna o corecție mai târziu.', - 'must_be_asset_account' => 'Puteți reconcilia numai contul de active', - 'reconciliation_stored' => 'Reconciliere salvată', - 'reconciliation_error' => 'Din cauza unei erori tranzacțiile au fost marcate ca reconciliate, dar corectarea nu a fost stocată: :error.', - 'reconciliation_transaction_title' => 'Reconciliere (:from la :to)', - 'sum_of_reconciliation' => 'Suma împăcărilor', - 'reconcile_this_account' => 'Reconciliați acest cont', - 'reconcile' => 'Reconcilia', - 'show' => 'Afișează', - 'confirm_reconciliation' => 'Confirmați reconcilierea', - 'submitted_start_balance' => 'Balanța inițială afișată', - 'selected_transactions' => 'Tranzacții selectate (:count)', - 'already_cleared_transactions' => 'Au fost deja tranzacții eliminate (:count)', - 'submitted_end_balance' => 'Sold final afițat', - 'initial_balance_description' => 'Sold inițial pentru ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'necunoscut', - 'interest_calc_daily' => 'Pe zi', - 'interest_calc_monthly' => 'Pe lună', - 'interest_calc_yearly' => 'Pe an', - 'interest_calc_weekly' => 'Pe săptămână', - 'interest_calc_half-year' => 'Pe jumătate de an', - 'interest_calc_quarterly' => 'Pe trimestru', - 'initial_balance_account' => 'Bilanțul inițial al contului :account', - 'list_options' => 'Opțiuni listă', + 'i_am_owed_amount' => 'Suma datorata', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Aveți un cont :count inactiv (arhivat), pe care îl puteți vizualiza pe această pagină separată. Aveți :count inactive (arhivate), pe care le puteți vizualiza pe această pagină separată.', + 'all_accounts_inactive' => 'Acestea sunt conturile dvs. inactive.', + 'active_account_link' => 'Acest link revine la conturile dvs. active.', + 'account_missing_transaction' => 'Contul #:id (":name") nu pot fi vizualizate direct.', + 'cc_monthly_payment_date_help' => 'Selectați în orice an și în orice lună, acesta va fi ignorat oricum. Numai ziua lunii este relevantă.', + 'details_for_asset' => 'Detalii pentru contul de active ":name"', + 'details_for_expense' => 'Detalii pentru contul de cheltuieli ":name"', + 'details_for_revenue' => 'Detalii pentru contul de venituri ":name"', + 'details_for_cash' => 'Detalii pentru contul de numerar ":name"', + 'store_new_asset_account' => 'Salvați un nou cont de active', + 'store_new_expense_account' => 'Salvați un nou cont de cheltuieli', + 'store_new_revenue_account' => 'Salvați un nou cont de venituri', + 'edit_asset_account' => 'Editați contul de active ":name"', + 'edit_expense_account' => 'Editați contul de cheltuieli ":name"', + 'edit_revenue_account' => 'Editați contul de venituri ":name"', + 'delete_asset_account' => 'Șterge contul de active ":name"', + 'delete_expense_account' => 'Șterge contul de cheltuieli ":name"', + 'delete_revenue_account' => 'Șterge contul de venituri ":name"', + 'delete_liabilities_account' => 'Șterge provizionul ":name"', + 'asset_deleted' => 'Contul de active ":name" a fost șters cu succes', + 'account_deleted' => 'Cont ":name" șters cu succes', + 'expense_deleted' => 'Contul de cheltuieli ":name" a fost șters cu succes', + 'revenue_deleted' => 'Contul de venituri ":name" a fost șters cu succes', + 'update_asset_account' => 'Actualizați contul de active', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Actualizați provizionul', + 'update_expense_account' => 'Actualizați cont de cheltuieli', + 'update_revenue_account' => 'Actualizați cont de venituri', + 'make_new_asset_account' => 'Creați un nou cont de active', + 'make_new_expense_account' => 'Creați un nou cont de cheltuieli', + 'make_new_revenue_account' => 'Creați un nou cont de venituri', + 'make_new_liabilities_account' => 'Creați un nou provizion', + 'asset_accounts' => 'Conturile de active', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Conturi de active (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Conturi de cheltuieli', + 'expense_accounts_inactive' => 'Conturi de cheltuieli (inactive)', + 'revenue_account' => 'Cont de venituri', + 'revenue_accounts' => 'Conturi de venituri', + 'revenue_accounts_inactive' => 'Conturi de venituri (inactive)', + 'cash_accounts' => 'Conturi de numerar', + 'Cash account' => 'Cont de numerar', + 'liabilities_accounts' => 'Provizioane', + 'liabilities_accounts_inactive' => 'Pasive (inactive)', + 'reconcile_account' => 'Reconciliază/Potrivește contul ":account"', + 'overview_of_reconcile_modal' => 'Privire de ansamblu asupra reconcilierii', + 'delete_reconciliation' => 'Șterge reconcilierea', + 'update_reconciliation' => 'Actualizați reconcilierea', + 'amount_cannot_be_zero' => 'Suma nu poate fi zero', + 'end_of_reconcile_period' => 'Sfârșitul perioadei de reconciliere: :period', + 'start_of_reconcile_period' => 'Începutul perioadei de reconciliere: :period', + 'start_balance' => 'Sold de început', + 'end_balance' => 'Sold final', + 'update_balance_dates_instruction' => 'Potriviți sumele și datele de mai sus la extrasul de cont bancar și apăsați pe "Porniți reconcilierea"', + 'select_transactions_instruction' => 'Selectați tranzacțiile care apar în extrasul dvs. bancar.', + 'select_range_and_balance' => 'Mai întâi verificați intervalul de date și balanțele. Apoi apăsați "Porniți reconcilierea"', + 'date_change_instruction' => 'Dacă schimbați acum intervalul de date, orice progres va fi pierdut.', + 'update_selection' => 'Actualizați selectaia', + 'store_reconcile' => 'Salvați reconcilierea', + 'reconciliation_transaction' => 'Tranzacție de reconciliere', + 'Reconciliation' => 'Reconciliere', + 'reconciliation' => 'Reconciliere', + 'reconcile_options' => 'Optiuni reconciliere', + 'reconcile_range' => 'Domeniu de reconciliere', + 'start_reconcile' => 'Porniți reconcilierea', + 'cash_account_type' => 'Numerar', + 'cash' => 'numerar', + 'cant_find_redirect_account' => 'Firefly III a încercat să vă redirecționeze, dar nu a putut. Îmi pare rău pentru asta. Înapoi la index.', + 'account_type' => 'Tip cont', + 'save_transactions_by_moving' => 'Salvați această tranzacție mutând-o într-un alt cont: | Salvați aceste tranzacții prin mutarea lor într-un alt cont:', + 'save_transactions_by_moving_js' => 'Fără tranzacții* Salvați această tranzacție mutând-o în alt cont. | Salvați aceste tranzacții mutându-le într-un alt cont.', + 'stored_new_account' => 'Cont nou ":name" salvat!', + 'stored_new_account_js' => 'Cont nou "{name}" stocat!', + 'updated_account' => 'Contul ":name" actualizat', + 'updated_account_js' => 'Cont actualizat "{title}".', + 'credit_card_options' => 'Opțiuni pentru carduri de credit', + 'no_transactions_account' => 'Nu există tranzacții (în această perioadă) pentru contul de activ ":name".', + 'no_transactions_period' => 'Nu există nicio tranzacție (in această perioadă).', + 'no_data_for_chart' => 'Nu există suficiente informații (încă) pentru a genera acest grafic.', + 'select_at_least_one_account' => 'Selectați cel puțin un cont de active', + 'select_at_least_one_category' => 'Selectați cel puțin o categorie', + 'select_at_least_one_budget' => 'Selectați cel puțin un buget', + 'select_at_least_one_tag' => 'Selectați cel puțin o eticheta', + 'select_at_least_one_expense' => 'Selectați cel puțin o combinație cont de cheltuieli/venituri. Dacă nu ai încă nici una (lista este goală) acest raport nu este disponibil.', + 'account_default_currency' => 'Aceasta va fi moneda implicită asociată acestui cont.', + 'reconcile_has_more' => 'Registrul dvs are mai mulți bani în ea decât banca dvs. susține că ar trebui să aveți. Există mai multe opțiuni. Alegeți ce să faceți. Apoi, apăsați "Confirmați reconcilierea".', + 'reconcile_has_less' => 'Registrul dvs are mai puțini bani în ea decât banca dvs. susține că ar trebui să aveți. Există mai multe opțiuni. Alegeți ce să faceți. Apoi, apăsați "Confirmați reconcilierea".', + 'reconcile_is_equal' => 'Registrul si declarațiile dvs. de cont se potrivesc. Nu e nimic de facut. Te rog apasă "Confirmați reconcilierea" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Goliți tranzacțiile selectate și creați o corecție adăugând :amount la acest cont de active.', + 'create_neg_reconcile_transaction' => 'Goliți tranzacțiile selectate și creați o corecție ștergând :amount din acest cont de active.', + 'reconcile_do_nothing' => 'Goliți tranzacțiile selectate, dar nu corectați.', + 'reconcile_go_back' => 'Puteți modifica sau șterge întotdeauna o corecție mai târziu.', + 'must_be_asset_account' => 'Puteți reconcilia numai contul de active', + 'reconciliation_stored' => 'Reconciliere salvată', + 'reconciliation_error' => 'Din cauza unei erori tranzacțiile au fost marcate ca reconciliate, dar corectarea nu a fost stocată: :error.', + 'reconciliation_transaction_title' => 'Reconciliere (:from la :to)', + 'sum_of_reconciliation' => 'Suma împăcărilor', + 'reconcile_this_account' => 'Reconciliați acest cont', + 'reconcile' => 'Reconcilia', + 'show' => 'Afișează', + 'confirm_reconciliation' => 'Confirmați reconcilierea', + 'submitted_start_balance' => 'Balanța inițială afișată', + 'selected_transactions' => 'Tranzacții selectate (:count)', + 'already_cleared_transactions' => 'Au fost deja tranzacții eliminate (:count)', + 'submitted_end_balance' => 'Sold final afițat', + 'initial_balance_description' => 'Sold inițial pentru ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'necunoscut', + 'interest_calc_daily' => 'Pe zi', + 'interest_calc_monthly' => 'Pe lună', + 'interest_calc_yearly' => 'Pe an', + 'interest_calc_weekly' => 'Pe săptămână', + 'interest_calc_half-year' => 'Pe jumătate de an', + 'interest_calc_quarterly' => 'Pe trimestru', + 'initial_balance_account' => 'Bilanțul inițial al contului :account', + 'list_options' => 'Opțiuni listă', // categories: - 'new_category' => 'Categorie nouă', - 'create_new_category' => 'Creați o nouă categorie', - 'without_category' => 'Fară o categorie', - 'update_category' => 'Actualizați categoria', - 'updated_category' => 'Categorie ":name" actualizată', - 'categories' => 'Categorii', - 'edit_category' => 'Editați categoria ":name"', - 'no_category' => '(nici o categorie)', - 'unknown_category_plain' => 'Nici o categorie', - 'category' => 'Categorie', - 'delete_category' => 'Șterge categoria ":name"', - 'deleted_category' => 'Categorie ":name" ștearsă', - 'store_category' => 'Salvați o nouă categorie', - 'stored_category' => 'Categorie nouă ":name" salvată', - 'without_category_between' => 'Fără categorie între :start și :end', + 'new_category' => 'Categorie nouă', + 'create_new_category' => 'Creați o nouă categorie', + 'without_category' => 'Fară o categorie', + 'update_category' => 'Actualizați categoria', + 'updated_category' => 'Categorie ":name" actualizată', + 'categories' => 'Categorii', + 'edit_category' => 'Editați categoria ":name"', + 'no_category' => '(nici o categorie)', + 'unknown_category_plain' => 'Nici o categorie', + 'category' => 'Categorie', + 'delete_category' => 'Șterge categoria ":name"', + 'deleted_category' => 'Categorie ":name" ștearsă', + 'store_category' => 'Salvați o nouă categorie', + 'stored_category' => 'Categorie nouă ":name" salvată', + 'without_category_between' => 'Fără categorie între :start și :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Vă rugăm să aşteptaţi ca formularul să se încarce', - 'wait_loading_data' => 'Vă rugăm să așteptați ca informațiile dvs. să se încarce...', - 'wait_attachments' => 'Așteptați ca atașamentele să fie încărcate.', - 'errors_upload' => 'Incarcarea a esuat. Te rugam sa verifici consola browser-ului pentru eroare.', - 'amount_foreign_if' => 'Suma în valută, dacă este cazul', - 'amount_destination_account' => 'Suma în moneda contului de destinaţie', - 'edit_transaction_title' => 'Editare tranzacţie ":description"', - 'unreconcile' => 'Anulează reconcilierea', - 'update_withdrawal' => 'Actualizați retragere', - 'update_deposit' => 'Actualizați depozit', - 'update_transaction' => 'Actualizați tranzacția', - 'update_transfer' => 'Actualizați transfer', - 'updated_withdrawal' => 'Retragerea ":description" actualizată', - 'updated_deposit' => 'Depozitul ":description" actualizat', - 'updated_transfer' => 'Transferul ":description" actualizat', - 'no_changes_withdrawal' => 'Retragerea ":description" nu a fost modificată.', - 'no_changes_deposit' => 'Depozitul ":description" nu a fost modificat.', - 'no_changes_transfer' => 'Transferul ":description" nu a fost modificat.', - 'delete_withdrawal' => 'Șterge retragere ":description"', - 'delete_deposit' => 'Șterge depozit ":description"', - 'delete_transfer' => 'Șterge transfer ":description"', - 'deleted_withdrawal' => 'Retragerea ":description" ștearsă cu succes', - 'deleted_deposit' => 'Depozitul ":description" șters cu succes', - 'deleted_transfer' => 'Transferul ":description" șters cu succes', - 'deleted_reconciliation' => 'Tranzacție de reconciliere ":description" a fost ștearsă cu succes', - 'stored_journal' => 'A fost creată cu succes o tranzacție nouă ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Tranzacția s-a creat cu succes', - 'updated_journal_no_descr' => 'Tranzacția s-a actualizat cu succes', - 'select_transactions' => 'Selectați tranzacțiile', - 'rule_group_select_transactions' => 'Aplică ":title" la tranzacții', - 'rule_select_transactions' => 'Aplică ":title" la tranzacții', - 'stop_selection' => 'Opriți selectarea tranzacțiilor', - 'reconcile_selected' => 'Reconcilia', - 'mass_delete_journals' => 'Ștergeți un număr de tranzacții', - 'mass_edit_journals' => 'Editați un număr de tranzacții', - 'mass_bulk_journals' => 'Editarea în bloc un număr de tranzacții', - 'mass_bulk_journals_explain' => 'Acest formular vă permite să modificați proprietățile tranzacțiilor enumerate mai jos într-o actualizare completă. Toate tranzacțiile din tabel vor fi actualizate atunci când modificați parametrii pe care îi vedeți aici.', - 'part_of_split' => 'Această tranzacție face parte dintr-o tranzacție divizată. Dacă nu ați selectat toate divizările, puteți ajunge să schimbați doar jumătate din tranzacție.', - 'bulk_set_new_values' => 'Utilizați input-urile de mai jos pentru a seta noi valori. Dacă le lăsați goale, vor fi goale toate. De asemenea, rețineți că doar bugetele vor primi un buget.', - 'no_bulk_category' => 'Nu actualizați categoria', - 'no_bulk_budget' => 'Nu actualizați budgetul', - 'no_bulk_tags' => 'Nu actualizați etichetă(e) ', - 'replace_with_these_tags' => 'Înlocuiește cu aceste etichete', - 'append_these_tags' => 'Adaugă aceste etichete', - 'mass_edit' => 'Editează individual', - 'bulk_edit' => 'Editează cele selectate in masă (bulk)', - 'mass_delete' => 'Șterge elementele selectate', - 'cannot_edit_other_fields' => 'Nu poți edita alte câmpuri decât cele de aici, pentru că nu există loc pentru a le arăta. Urmați linkul și editați-l câte unul, dacă aveți nevoie să editați aceste câmpuri.', - 'cannot_change_amount_reconciled' => 'Nu puteți modifica suma tranzacțiilor reconciliate.', - 'no_budget' => '(nici un buget)', - 'no_bill' => '(fără factură)', - 'account_per_budget' => 'Cont pe buget', - 'account_per_category' => 'Cont pe categorie', - 'create_new_object' => 'Creează', - 'empty' => '(gol)', - 'all_other_budgets' => '(toate celelalte bugete)', - 'all_other_accounts' => '(toate celelalte conturi)', - 'expense_per_source_account' => 'Cheltuieli pe contul sursă', - 'expense_per_destination_account' => 'Cheltuieli pe contul de destinație', - 'income_per_destination_account' => 'Venit pe contul de destinație', - 'spent_in_specific_category' => 'Cheltuit în categoria ":category"', - 'earned_in_specific_category' => 'Câștigat în categoria ":category"', - 'spent_in_specific_tag' => 'Cheltuit in eticheta ":tag"', - 'earned_in_specific_tag' => 'Câștigat in eticheta ":tag"', - 'income_per_source_account' => 'Venit pe cont sursă', - 'average_spending_per_destination' => 'Cheltuieli medii pe contul de destinație', - 'average_spending_per_source' => 'Cheltuieli medii pe contul sursă', - 'average_earning_per_source' => 'Venitul mediu pe cont sursă', - 'average_earning_per_destination' => 'Venitul mediu pe cont de destinație', - 'account_per_tag' => 'Cont pe etichetă', - 'tag_report_expenses_listed_once' => 'Cheltuielile și veniturile nu sunt listate niciodată de două ori. Dacă o tranzacție are mai multe etichete, poate apărea doar sub una dintre etichetele sale. Această listă poate părea că lipsesc date, dar sumele vor fi corecte.', - 'double_report_expenses_charted_once' => 'Cheltuielile și veniturile nu sunt afișate niciodată de două ori. Dacă o tranzacție are mai multe etichete, poate apărea doar sub una dintre etichetele sale. Acest grafic poate părea că lipsesc date, dar sumele vor fi corecte.', - 'tag_report_chart_single_tag' => 'Acest grafic se aplică unei singure etichete. Dacă o tranzacție are mai multe etichete, ceea ce vedeți aici poate fi reflectat și în graficele altor etichete.', - 'tag' => 'Etichetă', - 'no_budget_squared' => '(nici un buget)', - 'perm-delete-many' => 'Ștergerea multor articole dintr-o dată poate fi foarte perturbatoare. Vă rugăm să fiți precaut. Puteți șterge o parte dintr-o tranzacție divizată din această pagină, așa că aveți grijă.', - 'mass_deleted_transactions_success' => 'S-a șters :count tranzacție. :count tranzacții.', - 'mass_edited_transactions_success' => 'Actualizat :count tranzacție. | Actualizat :count tranzacții.', - 'opt_group_' => '(niciun tip de cont)', - 'opt_group_no_account_type' => '(niciun tip de cont)', - 'opt_group_defaultAsset' => 'Ccont de active implicit', - 'opt_group_savingAsset' => 'Cont de economii', - 'opt_group_sharedAsset' => 'Cont de active partajat', - 'opt_group_ccAsset' => 'Carduri de credit', - 'opt_group_cashWalletAsset' => 'Cash - Numerar', - 'opt_group_expense_account' => 'Conturi de cheltuieli', - 'opt_group_revenue_account' => 'Conturi de venituri', - 'opt_group_l_Loan' => 'Provizion: Împrumut', - 'opt_group_cash_account' => 'Cont de numerar', - 'opt_group_l_Debt' => 'Provizion: Datorie', - 'opt_group_l_Mortgage' => 'Provizion: Credit ipotecar', - 'opt_group_l_Credit card' => 'Provizion: Card de credit', - 'notes' => 'Notițe', - 'unknown_journal_error' => 'Nu a putut fi stocată tranzacția. Te rog verifică log-urile.', - 'attachment_not_found' => 'Acest atașament nu a putut fi găsit.', - 'journal_link_bill' => 'Această tranzacție este legată de factura :nume . Pentru a elimina conexiunea, debifați caseta de selectare. Utilizați regulile pentru conectarea la o altă factură.', - 'transaction_stored_link' => 'Tranzacția #{ID} ("{title}") a fost stocată.', - 'transaction_new_stored_link' => 'Tranzacția #{ID} a fost stocată.', - 'transaction_updated_link' => 'Tranzacția #{ID} ("{title}") a fost actualizată.', - 'transaction_updated_no_changes' => 'Tranzacția #{ID} ("{title}") nu a primit nicio modificare.', - 'first_split_decides' => 'Prima împărțire determină valoarea acestui câmp', - 'first_split_overrules_source' => 'Prima împărțire poate suprascrie contul sursă', - 'first_split_overrules_destination' => 'Prima împărțire poate suprascrie contul de destinație', - 'spent_x_of_y' => 'Cheltuit {amount} din {total}', + 'wait_loading_transaction' => 'Vă rugăm să aşteptaţi ca formularul să se încarce', + 'wait_loading_data' => 'Vă rugăm să așteptați ca informațiile dvs. să se încarce...', + 'wait_attachments' => 'Așteptați ca atașamentele să fie încărcate.', + 'errors_upload' => 'Incarcarea a esuat. Te rugam sa verifici consola browser-ului pentru eroare.', + 'amount_foreign_if' => 'Suma în valută, dacă este cazul', + 'amount_destination_account' => 'Suma în moneda contului de destinaţie', + 'edit_transaction_title' => 'Editare tranzacţie ":description"', + 'unreconcile' => 'Anulează reconcilierea', + 'update_withdrawal' => 'Actualizați retragere', + 'update_deposit' => 'Actualizați depozit', + 'update_transaction' => 'Actualizați tranzacția', + 'update_transfer' => 'Actualizați transfer', + 'updated_withdrawal' => 'Retragerea ":description" actualizată', + 'updated_deposit' => 'Depozitul ":description" actualizat', + 'updated_transfer' => 'Transferul ":description" actualizat', + 'no_changes_withdrawal' => 'Retragerea ":description" nu a fost modificată.', + 'no_changes_deposit' => 'Depozitul ":description" nu a fost modificat.', + 'no_changes_transfer' => 'Transferul ":description" nu a fost modificat.', + 'delete_withdrawal' => 'Șterge retragere ":description"', + 'delete_deposit' => 'Șterge depozit ":description"', + 'delete_transfer' => 'Șterge transfer ":description"', + 'deleted_withdrawal' => 'Retragerea ":description" ștearsă cu succes', + 'deleted_deposit' => 'Depozitul ":description" șters cu succes', + 'deleted_transfer' => 'Transferul ":description" șters cu succes', + 'deleted_reconciliation' => 'Tranzacție de reconciliere ":description" a fost ștearsă cu succes', + 'stored_journal' => 'A fost creată cu succes o tranzacție nouă ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Tranzacția s-a creat cu succes', + 'updated_journal_no_descr' => 'Tranzacția s-a actualizat cu succes', + 'select_transactions' => 'Selectați tranzacțiile', + 'rule_group_select_transactions' => 'Aplică ":title" la tranzacții', + 'rule_select_transactions' => 'Aplică ":title" la tranzacții', + 'stop_selection' => 'Opriți selectarea tranzacțiilor', + 'reconcile_selected' => 'Reconcilia', + 'mass_delete_journals' => 'Ștergeți un număr de tranzacții', + 'mass_edit_journals' => 'Editați un număr de tranzacții', + 'mass_bulk_journals' => 'Editarea în bloc un număr de tranzacții', + 'mass_bulk_journals_explain' => 'Acest formular vă permite să modificați proprietățile tranzacțiilor enumerate mai jos într-o actualizare completă. Toate tranzacțiile din tabel vor fi actualizate atunci când modificați parametrii pe care îi vedeți aici.', + 'part_of_split' => 'Această tranzacție face parte dintr-o tranzacție divizată. Dacă nu ați selectat toate divizările, puteți ajunge să schimbați doar jumătate din tranzacție.', + 'bulk_set_new_values' => 'Utilizați input-urile de mai jos pentru a seta noi valori. Dacă le lăsați goale, vor fi goale toate. De asemenea, rețineți că doar bugetele vor primi un buget.', + 'no_bulk_category' => 'Nu actualizați categoria', + 'no_bulk_budget' => 'Nu actualizați budgetul', + 'no_bulk_tags' => 'Nu actualizați etichetă(e) ', + 'replace_with_these_tags' => 'Înlocuiește cu aceste etichete', + 'append_these_tags' => 'Adaugă aceste etichete', + 'mass_edit' => 'Editează individual', + 'bulk_edit' => 'Editează cele selectate in masă (bulk)', + 'mass_delete' => 'Șterge elementele selectate', + 'cannot_edit_other_fields' => 'Nu poți edita alte câmpuri decât cele de aici, pentru că nu există loc pentru a le arăta. Urmați linkul și editați-l câte unul, dacă aveți nevoie să editați aceste câmpuri.', + 'cannot_change_amount_reconciled' => 'Nu puteți modifica suma tranzacțiilor reconciliate.', + 'no_budget' => '(nici un buget)', + 'no_bill' => '(fără factură)', + 'account_per_budget' => 'Cont pe buget', + 'account_per_category' => 'Cont pe categorie', + 'create_new_object' => 'Creează', + 'empty' => '(gol)', + 'all_other_budgets' => '(toate celelalte bugete)', + 'all_other_accounts' => '(toate celelalte conturi)', + 'expense_per_source_account' => 'Cheltuieli pe contul sursă', + 'expense_per_destination_account' => 'Cheltuieli pe contul de destinație', + 'income_per_destination_account' => 'Venit pe contul de destinație', + 'spent_in_specific_category' => 'Cheltuit în categoria ":category"', + 'earned_in_specific_category' => 'Câștigat în categoria ":category"', + 'spent_in_specific_tag' => 'Cheltuit in eticheta ":tag"', + 'earned_in_specific_tag' => 'Câștigat in eticheta ":tag"', + 'income_per_source_account' => 'Venit pe cont sursă', + 'average_spending_per_destination' => 'Cheltuieli medii pe contul de destinație', + 'average_spending_per_source' => 'Cheltuieli medii pe contul sursă', + 'average_earning_per_source' => 'Venitul mediu pe cont sursă', + 'average_earning_per_destination' => 'Venitul mediu pe cont de destinație', + 'account_per_tag' => 'Cont pe etichetă', + 'tag_report_expenses_listed_once' => 'Cheltuielile și veniturile nu sunt listate niciodată de două ori. Dacă o tranzacție are mai multe etichete, poate apărea doar sub una dintre etichetele sale. Această listă poate părea că lipsesc date, dar sumele vor fi corecte.', + 'double_report_expenses_charted_once' => 'Cheltuielile și veniturile nu sunt afișate niciodată de două ori. Dacă o tranzacție are mai multe etichete, poate apărea doar sub una dintre etichetele sale. Acest grafic poate părea că lipsesc date, dar sumele vor fi corecte.', + 'tag_report_chart_single_tag' => 'Acest grafic se aplică unei singure etichete. Dacă o tranzacție are mai multe etichete, ceea ce vedeți aici poate fi reflectat și în graficele altor etichete.', + 'tag' => 'Etichetă', + 'no_budget_squared' => '(nici un buget)', + 'perm-delete-many' => 'Ștergerea multor articole dintr-o dată poate fi foarte perturbatoare. Vă rugăm să fiți precaut. Puteți șterge o parte dintr-o tranzacție divizată din această pagină, așa că aveți grijă.', + 'mass_deleted_transactions_success' => 'S-a șters :count tranzacție. :count tranzacții.', + 'mass_edited_transactions_success' => 'Actualizat :count tranzacție. | Actualizat :count tranzacții.', + 'opt_group_' => '(niciun tip de cont)', + 'opt_group_no_account_type' => '(niciun tip de cont)', + 'opt_group_defaultAsset' => 'Ccont de active implicit', + 'opt_group_savingAsset' => 'Cont de economii', + 'opt_group_sharedAsset' => 'Cont de active partajat', + 'opt_group_ccAsset' => 'Carduri de credit', + 'opt_group_cashWalletAsset' => 'Cash - Numerar', + 'opt_group_expense_account' => 'Conturi de cheltuieli', + 'opt_group_revenue_account' => 'Conturi de venituri', + 'opt_group_l_Loan' => 'Provizion: Împrumut', + 'opt_group_cash_account' => 'Cont de numerar', + 'opt_group_l_Debt' => 'Provizion: Datorie', + 'opt_group_l_Mortgage' => 'Provizion: Credit ipotecar', + 'opt_group_l_Credit card' => 'Provizion: Card de credit', + 'notes' => 'Notițe', + 'unknown_journal_error' => 'Nu a putut fi stocată tranzacția. Te rog verifică log-urile.', + 'attachment_not_found' => 'Acest atașament nu a putut fi găsit.', + 'journal_link_bill' => 'Această tranzacție este legată de factura :nume . Pentru a elimina conexiunea, debifați caseta de selectare. Utilizați regulile pentru conectarea la o altă factură.', + 'transaction_stored_link' => 'Tranzacția #{ID} ("{title}") a fost stocată.', + 'transaction_new_stored_link' => 'Tranzacția #{ID} a fost stocată.', + 'transaction_updated_link' => 'Tranzacția #{ID} ("{title}") a fost actualizată.', + 'transaction_updated_no_changes' => 'Tranzacția #{ID} ("{title}") nu a primit nicio modificare.', + 'first_split_decides' => 'Prima împărțire determină valoarea acestui câmp', + 'first_split_overrules_source' => 'Prima împărțire poate suprascrie contul sursă', + 'first_split_overrules_destination' => 'Prima împărțire poate suprascrie contul de destinație', + 'spent_x_of_y' => 'Cheltuit {amount} din {total}', // new user: - 'welcome' => 'Bine ați venit!', - 'submit' => 'Trimite', - 'submission' => 'Transmitere', - 'submit_yes_really' => 'Trimite (Știu ce fac)', - 'getting_started' => 'Introducere', - 'to_get_started' => 'Este bine să vedeți că ați instalat cu succes Firefly III. Pentru a începe cu acest instrument, introduceți numele băncii dvs. și soldul contului de control principal. Nu vă faceți griji încă dacă aveți mai multe conturi. Puteți să le adăugați mai târziu. Firefly III are nevoie de ceva de început.', - 'savings_balance_text' => 'Firefly III va crea automat un cont de economii pentru dvs. În mod implicit, în contul dvs. de economii nu vor mai fi bani, dar dacă scrii balanța, acesta va fi salvat.', - 'finish_up_new_user' => 'Asta e! Puteți continua apăsând pe Trimiteți . Veți fi duși la indexul Firefly III.', - 'stored_new_accounts_new_user' => 'Ura! Conturile dvs. noi au fost salvate.', - 'set_preferred_language' => 'Dacă preferați să utilizați Firefly III într-o altă limbă, vă rugăm să indicați aici.', - 'language' => 'Limbă', - 'new_savings_account' => ':bank_name cont de economii', - 'cash_wallet' => 'Portofel în numerar', - 'currency_not_present' => 'Dacă moneda pe care o utilizați în mod normal nu este listată, nu vă faceți griji. Puteți crea propriile valute în Opțiuni> Monede.', + 'welcome' => 'Bine ați venit!', + 'submit' => 'Trimite', + 'submission' => 'Transmitere', + 'submit_yes_really' => 'Trimite (Știu ce fac)', + 'getting_started' => 'Introducere', + 'to_get_started' => 'Este bine să vedeți că ați instalat cu succes Firefly III. Pentru a începe cu acest instrument, introduceți numele băncii dvs. și soldul contului de control principal. Nu vă faceți griji încă dacă aveți mai multe conturi. Puteți să le adăugați mai târziu. Firefly III are nevoie de ceva de început.', + 'savings_balance_text' => 'Firefly III va crea automat un cont de economii pentru dvs. În mod implicit, în contul dvs. de economii nu vor mai fi bani, dar dacă scrii balanța, acesta va fi salvat.', + 'finish_up_new_user' => 'Asta e! Puteți continua apăsând pe Trimiteți . Veți fi duși la indexul Firefly III.', + 'stored_new_accounts_new_user' => 'Ura! Conturile dvs. noi au fost salvate.', + 'set_preferred_language' => 'Dacă preferați să utilizați Firefly III într-o altă limbă, vă rugăm să indicați aici.', + 'language' => 'Limbă', + 'new_savings_account' => ':bank_name cont de economii', + 'cash_wallet' => 'Portofel în numerar', + 'currency_not_present' => 'Dacă moneda pe care o utilizați în mod normal nu este listată, nu vă faceți griji. Puteți crea propriile valute în Opțiuni> Monede.', // home page: - 'transaction_table_description' => 'Un tabel care conține tranzacțiile tale', - 'opposing_account' => 'Cont opus', - 'yourAccounts' => 'Conturile dvs.', - 'your_accounts' => 'Prezentarea generală a contului', - 'category_overview' => 'Categorie - prezentare generală', - 'expense_overview' => 'Prezentare generală cont cheltuială', - 'revenue_overview' => 'Prezentare generală cont venituri', - 'budgetsAndSpending' => 'Bugetele și cheltuielile', - 'budgets_and_spending' => 'Bugete și cheltuieli', - 'go_to_budget' => 'Mergi la buget "{budget}"', - 'go_to_deposits' => 'Du-te la depozite', - 'go_to_expenses' => 'Mergi la cheltuieli', - 'savings' => 'Economii', - 'newWithdrawal' => 'Cheltuieli noi', - 'newDeposit' => 'Depozit nou', - 'newTransfer' => 'Transfer nou', - 'bills_to_pay' => 'Facturile de plată', - 'per_day' => 'Pe zi', - 'left_to_spend_per_day' => 'Rămas de cheltui pe zi', - 'bills_paid' => 'Facturile plătite', - 'custom_period' => 'Perioadă personalizată', - 'reset_to_current' => 'Resetare la perioada curentă', - 'select_period' => 'Selectați o perioadă', + 'transaction_table_description' => 'Un tabel care conține tranzacțiile tale', + 'opposing_account' => 'Cont opus', + 'yourAccounts' => 'Conturile dvs.', + 'your_accounts' => 'Prezentarea generală a contului', + 'category_overview' => 'Categorie - prezentare generală', + 'expense_overview' => 'Prezentare generală cont cheltuială', + 'revenue_overview' => 'Prezentare generală cont venituri', + 'budgetsAndSpending' => 'Bugetele și cheltuielile', + 'budgets_and_spending' => 'Bugete și cheltuieli', + 'go_to_budget' => 'Mergi la buget "{budget}"', + 'go_to_deposits' => 'Du-te la depozite', + 'go_to_expenses' => 'Mergi la cheltuieli', + 'savings' => 'Economii', + 'newWithdrawal' => 'Cheltuieli noi', + 'newDeposit' => 'Depozit nou', + 'newTransfer' => 'Transfer nou', + 'bills_to_pay' => 'Facturile de plată', + 'per_day' => 'Pe zi', + 'left_to_spend_per_day' => 'Rămas de cheltui pe zi', + 'bills_paid' => 'Facturile plătite', + 'custom_period' => 'Perioadă personalizată', + 'reset_to_current' => 'Resetare la perioada curentă', + 'select_period' => 'Selectați o perioadă', // menu and titles, should be recycled as often as possible: - 'currency' => 'Monedă', - 'preferences' => 'Preferințe', - 'logout' => 'Ieșire', - 'logout_other_sessions' => 'Deconectează toate celelalte sesiuni', - 'toggleNavigation' => 'Navigare', - 'searchPlaceholder' => 'Cautare...', - 'version' => 'Versiunea', - 'dashboard' => 'Panou de control', - 'income_and_expense' => 'Venituri și cheltuieli', - 'all_money' => 'Toți banii tăi', - 'unknown_source_plain' => 'Cont sursă necunoscut', - 'unknown_dest_plain' => 'Cont de destinație necunoscut', - 'unknown_any_plain' => 'Cont necunoscut', - 'unknown_budget_plain' => 'Fără buget', - 'available_budget' => 'Buget disponibil ({currency})', - 'currencies' => 'Monede', - 'activity' => 'Activitate', - 'usage' => 'Utilizare', - 'accounts' => 'Conturi', - 'Asset account' => 'Cont de active', - 'Default account' => 'Cont activ principal', - 'Expense account' => 'Cont de cheltuieli', - 'Revenue account' => 'Contul de venituri', - 'Initial balance account' => 'Sold cont inițial', - 'account_type_Asset account' => 'Cont de activ', - 'account_type_Expense account' => 'Cont de cheltuieli', - 'account_type_Revenue account' => 'Cont de venituri', - 'account_type_Debt' => 'Datorie', - 'account_type_Loan' => 'Împrumut', - 'account_type_Mortgage' => 'Credit ipotecar', - 'account_type_debt' => 'Datorie', - 'account_type_loan' => 'Împrumut', - 'account_type_mortgage' => 'Credit ipotecar', - 'account_type_Credit card' => 'Card de credit', - 'credit_card_type_monthlyFull' => 'Plata integrală în fiecare lună', - 'liability_direction_credit' => 'Sunt datorat acestei datorii', - 'liability_direction_debit' => 'Datorăm această datorie altcuiva', - 'liability_direction_credit_short' => 'Îndatorat', - 'liability_direction_debit_short' => 'Creditor', - 'liability_direction__short' => 'Necunoscut', - 'liability_direction_null_short' => 'Necunoscut', - 'Liability credit' => 'Credit de răspundere', - 'budgets' => 'Buget', - 'tags' => 'Etichete', - 'reports' => 'Rapoarte', - 'transactions' => 'Tranzacții', - 'expenses' => 'Cheltuieli', - 'income' => 'Venituri', - 'transfers' => 'Transferuri', - 'moneyManagement' => 'Gestionarea banilor', - 'money_management' => 'Gestionarea banilor', - 'tools' => 'Instrumente', - 'piggyBanks' => 'Pușculiță', - 'piggy_banks' => 'Pușculiță', - 'amount_x_of_y' => '{current} din {total}', - 'bills' => 'Facturi', - 'withdrawal' => 'Retragere', - 'opening_balance' => 'Soldul de deschidere', - 'deposit' => 'Depozit', - 'account' => 'Cont', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Retragere', - 'Deposit' => 'Depozit', - 'Transfer' => 'Transfer', - 'bill' => 'Factură', - 'yes' => 'Da', - 'no' => 'Nu', - 'amount' => 'Sumă', - 'overview' => 'Imagine de ansamblu', - 'saveOnAccount' => 'Salvați în cont', - 'unknown' => 'Necunoscut', - 'monthly' => 'Lunar', - 'profile' => 'Profil', - 'errors' => 'Erori', - 'debt_start_date' => 'Data de începere a datoriilor', - 'debt_start_amount' => 'Valoarea inițială a datoriei', - 'debt_start_amount_help' => 'Este întotdeauna cel mai bine să setezi această valoare la o valoare negativă. Citește paginile de ajutor [iconița din dreapta sus (?)] pentru mai multe informații.', - 'interest_period_help' => 'Acest câmp este pur cosmetic și nu va fi calculat pentru tine. Se pare că băncile sunt foarte deranjante așa că Firefly III nu reușește niciodată.', - 'store_new_liabilities_account' => 'Salvați provizion nou', - 'edit_liabilities_account' => 'Editați provizion ":name"', - 'financial_control' => 'Controlul financiar', - 'accounting' => 'Contabilitate', - 'automation' => 'Automatizare', - 'others' => 'Altele', - 'classification' => 'Clasificare', - 'store_transaction' => 'Tranzacție magazin', + 'currency' => 'Monedă', + 'preferences' => 'Preferințe', + 'logout' => 'Ieșire', + 'logout_other_sessions' => 'Deconectează toate celelalte sesiuni', + 'toggleNavigation' => 'Navigare', + 'searchPlaceholder' => 'Cautare...', + 'version' => 'Versiunea', + 'dashboard' => 'Panou de control', + 'income_and_expense' => 'Venituri și cheltuieli', + 'all_money' => 'Toți banii tăi', + 'unknown_source_plain' => 'Cont sursă necunoscut', + 'unknown_dest_plain' => 'Cont de destinație necunoscut', + 'unknown_any_plain' => 'Cont necunoscut', + 'unknown_budget_plain' => 'Fără buget', + 'available_budget' => 'Buget disponibil ({currency})', + 'currencies' => 'Monede', + 'activity' => 'Activitate', + 'usage' => 'Utilizare', + 'accounts' => 'Conturi', + 'Asset account' => 'Cont de active', + 'Default account' => 'Cont activ principal', + 'Expense account' => 'Cont de cheltuieli', + 'Revenue account' => 'Contul de venituri', + 'Initial balance account' => 'Sold cont inițial', + 'account_type_Asset account' => 'Cont de activ', + 'account_type_Expense account' => 'Cont de cheltuieli', + 'account_type_Revenue account' => 'Cont de venituri', + 'account_type_Debt' => 'Datorie', + 'account_type_Loan' => 'Împrumut', + 'account_type_Mortgage' => 'Credit ipotecar', + 'account_type_debt' => 'Datorie', + 'account_type_loan' => 'Împrumut', + 'account_type_mortgage' => 'Credit ipotecar', + 'account_type_Credit card' => 'Card de credit', + 'credit_card_type_monthlyFull' => 'Plata integrală în fiecare lună', + 'liability_direction_credit' => 'Sunt datorat acestei datorii', + 'liability_direction_debit' => 'Datorăm această datorie altcuiva', + 'liability_direction_credit_short' => 'Îndatorat', + 'liability_direction_debit_short' => 'Creditor', + 'liability_direction__short' => 'Necunoscut', + 'liability_direction_null_short' => 'Necunoscut', + 'Liability credit' => 'Credit de răspundere', + 'budgets' => 'Buget', + 'tags' => 'Etichete', + 'reports' => 'Rapoarte', + 'transactions' => 'Tranzacții', + 'expenses' => 'Cheltuieli', + 'income' => 'Venituri', + 'transfers' => 'Transferuri', + 'moneyManagement' => 'Gestionarea banilor', + 'money_management' => 'Gestionarea banilor', + 'tools' => 'Instrumente', + 'piggyBanks' => 'Pușculiță', + 'piggy_banks' => 'Pușculiță', + 'amount_x_of_y' => '{current} din {total}', + 'bills' => 'Facturi', + 'withdrawal' => 'Retragere', + 'opening_balance' => 'Soldul de deschidere', + 'deposit' => 'Depozit', + 'account' => 'Cont', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Retragere', + 'Deposit' => 'Depozit', + 'Transfer' => 'Transfer', + 'bill' => 'Factură', + 'yes' => 'Da', + 'no' => 'Nu', + 'amount' => 'Sumă', + 'overview' => 'Imagine de ansamblu', + 'saveOnAccount' => 'Salvați în cont', + 'unknown' => 'Necunoscut', + 'monthly' => 'Lunar', + 'profile' => 'Profil', + 'errors' => 'Erori', + 'debt_start_date' => 'Data de începere a datoriilor', + 'debt_start_amount' => 'Valoarea inițială a datoriei', + 'debt_start_amount_help' => 'Este întotdeauna cel mai bine să setezi această valoare la o valoare negativă. Citește paginile de ajutor [iconița din dreapta sus (?)] pentru mai multe informații.', + 'interest_period_help' => 'Acest câmp este pur cosmetic și nu va fi calculat pentru tine. Se pare că băncile sunt foarte deranjante așa că Firefly III nu reușește niciodată.', + 'store_new_liabilities_account' => 'Salvați provizion nou', + 'edit_liabilities_account' => 'Editați provizion ":name"', + 'financial_control' => 'Controlul financiar', + 'accounting' => 'Contabilitate', + 'automation' => 'Automatizare', + 'others' => 'Altele', + 'classification' => 'Clasificare', + 'store_transaction' => 'Tranzacție magazin', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Raportul financiar prestabilit între :start și :end', - 'report_audit' => 'Afișarea istoricului tranzacțiilor între :start și :end', - 'report_category' => 'Raport privind categoria între :start și :end', - 'report_double' => 'Raport privind cheltuielile / veniturile între :start și :end', - 'report_budget' => 'Raport privind bugetul între :start și :end', - 'report_tag' => 'Raport privind etichetele între :start și :end', - 'quick_link_reports' => 'Link-uri rapide', - 'quick_link_examples' => 'Acestea sunt doar câteva exemple de linkuri pentru a începe. Consultați paginile de ajutor de la butonul (?) pentru informații despre toate rapoartele și cuvintele magice pe care le puteți utiliza.', - 'quick_link_default_report' => 'Raportul financiar prestabilit', - 'quick_link_audit_report' => 'Afișarea istoricului tranzacțiilor', - 'report_this_month_quick' => 'Luna curentă, toate conturile', - 'report_last_month_quick' => 'Luna curentă, toate conturile', - 'report_this_year_quick' => 'Anul curent, toate conturile', - 'report_this_fiscal_year_quick' => 'Anul fiscal curent, toate conturile', - 'report_all_time_quick' => 'Tot timpul, toate conturile', - 'reports_can_bookmark' => 'Rețineți că rapoartele pot fi marcate ca favorite.', - 'incomeVsExpenses' => 'Venituri vs. cheltuieli', - 'accountBalances' => 'Solduri de cont', - 'balanceStart' => 'Sold la începutul perioadei', - 'balanceEnd' => 'Sold la sfârșitul perioadei', - 'splitByAccount' => 'Împărțire după cont', - 'coveredWithTags' => 'Acoperite cu etichete', - 'leftInBudget' => 'Rămasă în bugetul', - 'left_in_debt' => 'Suma datorată', - 'sumOfSums' => 'Suma sumelor', - 'noCategory' => '(nici o categorie)', - 'notCharged' => 'Nu este taxat (încă)', - 'inactive' => 'Inactiv', - 'active' => 'Activ', - 'difference' => 'Diferență', - 'money_flowing_in' => 'În', - 'money_flowing_out' => 'Afară', - 'topX' => 'top :number', - 'show_full_list' => 'Afișați întreaga listă', - 'show_only_top' => 'Afișează numai topul :number', - 'report_type' => 'Tip de raport', - 'report_type_default' => 'Raportul financiar prestabilit', - 'report_type_audit' => 'Afișarea istoricului tranzacțiilor (audit)', - 'report_type_category' => 'Raport privind categoria', - 'report_type_budget' => 'Raport privind bugetul', - 'report_type_tag' => 'Raport privind etichetele', - 'report_type_double' => 'Raport privind contul de cheltuieli / venituri', - 'more_info_help' => 'Mai multe informații despre aceste tipuri de rapoarte pot fi găsite în paginile de ajutor. Apăsați pictograma (?) Din colțul din dreapta sus.', - 'report_included_accounts' => 'Conturi incluse', - 'report_date_range' => 'Interval de date', - 'report_preset_ranges' => 'Valori prestabilite', - 'shared' => 'Partajate', - 'fiscal_year' => 'An fiscal', - 'income_entry' => 'Venituri din cont ":name" între :start și :end', - 'expense_entry' => 'Cheltuieli în cont ":name" între :start și :end', - 'category_entry' => 'Cheltuieli și venituri în categoria ":name" între :start și :end', - 'budget_spent_amount' => 'Cheltuieli în bugetul ":budget" între :start și :end', - 'balance_amount' => 'Cheltuieli în bugetul ":budget" plătit din cont ":account" între :start și :end', - 'no_audit_activity' => 'Nu a fost înregistrată nici o activitate în contul :account_name între :start și :end.', - 'audit_end_balance' => 'Soldul contului :account_name la sfârșitul :end a fost: :balance', - 'reports_extra_options' => 'Opțiuni suplimentare', - 'report_has_no_extra_options' => 'Acest raport nu are opțiuni suplimentare', - 'reports_submit' => 'Vizualizează raportul', - 'end_after_start_date' => 'Data de încheiere a raportului trebuie să fie după data de începere.', - 'select_category' => 'Selectați categoria (categoriile)', - 'select_budget' => 'Selectați bugetul (bugetele).', - 'select_tag' => 'Selectați eticheta (-urile).', - 'income_per_category' => 'Venituri pe categorie', - 'expense_per_category' => 'Cheltuială pe categorie', - 'expense_per_budget' => 'Cheltuială pe buget', - 'income_per_account' => 'Venituri pe cont', - 'expense_per_account' => 'Cheltuială pe cont', - 'expense_per_tag' => 'Cheltuială pe eticheta', - 'income_per_tag' => 'Venituri pe eticheta', - 'include_expense_not_in_budget' => 'Cheltuielile incluse nu sunt în bugetul (bugetele) selectat (e)', - 'include_expense_not_in_account' => 'Cheltuielile incluse nu sunt în contul (conturile) selectat (e)', - 'include_expense_not_in_category' => 'Cheltuielile incluse nu sunt în categoria (categoriile) selectat (e)', - 'include_income_not_in_category' => 'Veniturile incluse nu sunt în categoria (categoriile) selectat (e)', - 'include_income_not_in_account' => 'Veniturile incluse nu sunt în contul (conturile) selectat (e)', - 'include_income_not_in_tags' => 'Veniturile incluse nu sunt în etichetă(e) selectat (e)', - 'include_expense_not_in_tags' => 'Cheltuielile incluse nu sunt în etichete', - 'everything_else' => 'Orice altceva', - 'income_and_expenses' => 'Venituri și cheltuieli', - 'spent_average' => 'Cheltuit (in medie)', - 'income_average' => 'Venituri (in medie)', - 'transaction_count' => 'Numărul de tranzacții', - 'average_spending_per_account' => 'Cheltuielile medii pe cont', - 'average_income_per_account' => 'Venitul mediu pe cont', - 'total' => 'Total', - 'description' => 'Descriere', - 'sum_of_period' => 'Suma perioadei', - 'average_in_period' => 'Media în perioada', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Contul implicit activ', - 'account_role_sharedAsset' => 'Contul de active partajat', - 'account_role_savingAsset' => 'Cont de economii', - 'account_role_ccAsset' => 'Card de credit', - 'account_role_cashWalletAsset' => 'Cash - Numerar', - 'budget_chart_click' => 'Faceți clic pe un nume de buget din tabelul de mai sus pentru a vedea o grafic.', - 'category_chart_click' => 'Clic pe numele unei categorii din tabelul de mai sus pentru a vedea un grafic.', - 'in_out_accounts' => 'Câștigat și cheltuit pe combinație', - 'in_out_accounts_per_asset' => 'Câștigat și cheltuit (pe cont de activ)', - 'in_out_per_category' => 'Câștigat și cheltuit pe categorie', - 'out_per_budget' => 'Cheltuit pe buget', - 'select_expense_revenue' => 'Selectați contul de cheltuieli / venituri', - 'multi_currency_report_sum' => 'Deoarece această listă conține conturi cu mai multe valute, suma (sumele) pe care o vedeți este posibil să nu aibă sens. Raportul va reveni întotdeauna la moneda dvs. prestabilită.', - 'sum_in_default_currency' => 'Suma va fi întotdeauna în moneda dvs. prestabilită.', - 'net_filtered_prefs' => 'Acest grafic nu va include niciodată conturi care nu au selectat opțiunea "Include în valoare netă".', + 'report_default' => 'Raportul financiar prestabilit între :start și :end', + 'report_audit' => 'Afișarea istoricului tranzacțiilor între :start și :end', + 'report_category' => 'Raport privind categoria între :start și :end', + 'report_double' => 'Raport privind cheltuielile / veniturile între :start și :end', + 'report_budget' => 'Raport privind bugetul între :start și :end', + 'report_tag' => 'Raport privind etichetele între :start și :end', + 'quick_link_reports' => 'Link-uri rapide', + 'quick_link_examples' => 'Acestea sunt doar câteva exemple de linkuri pentru a începe. Consultați paginile de ajutor de la butonul (?) pentru informații despre toate rapoartele și cuvintele magice pe care le puteți utiliza.', + 'quick_link_default_report' => 'Raportul financiar prestabilit', + 'quick_link_audit_report' => 'Afișarea istoricului tranzacțiilor', + 'report_this_month_quick' => 'Luna curentă, toate conturile', + 'report_last_month_quick' => 'Luna curentă, toate conturile', + 'report_this_year_quick' => 'Anul curent, toate conturile', + 'report_this_fiscal_year_quick' => 'Anul fiscal curent, toate conturile', + 'report_all_time_quick' => 'Tot timpul, toate conturile', + 'reports_can_bookmark' => 'Rețineți că rapoartele pot fi marcate ca favorite.', + 'incomeVsExpenses' => 'Venituri vs. cheltuieli', + 'accountBalances' => 'Solduri de cont', + 'balanceStart' => 'Sold la începutul perioadei', + 'balanceEnd' => 'Sold la sfârșitul perioadei', + 'splitByAccount' => 'Împărțire după cont', + 'coveredWithTags' => 'Acoperite cu etichete', + 'leftInBudget' => 'Rămasă în bugetul', + 'left_in_debt' => 'Suma datorată', + 'sumOfSums' => 'Suma sumelor', + 'noCategory' => '(nici o categorie)', + 'notCharged' => 'Nu este taxat (încă)', + 'inactive' => 'Inactiv', + 'active' => 'Activ', + 'difference' => 'Diferență', + 'money_flowing_in' => 'În', + 'money_flowing_out' => 'Afară', + 'topX' => 'top :number', + 'show_full_list' => 'Afișați întreaga listă', + 'show_only_top' => 'Afișează numai topul :number', + 'report_type' => 'Tip de raport', + 'report_type_default' => 'Raportul financiar prestabilit', + 'report_type_audit' => 'Afișarea istoricului tranzacțiilor (audit)', + 'report_type_category' => 'Raport privind categoria', + 'report_type_budget' => 'Raport privind bugetul', + 'report_type_tag' => 'Raport privind etichetele', + 'report_type_double' => 'Raport privind contul de cheltuieli / venituri', + 'more_info_help' => 'Mai multe informații despre aceste tipuri de rapoarte pot fi găsite în paginile de ajutor. Apăsați pictograma (?) Din colțul din dreapta sus.', + 'report_included_accounts' => 'Conturi incluse', + 'report_date_range' => 'Interval de date', + 'report_preset_ranges' => 'Valori prestabilite', + 'shared' => 'Partajate', + 'fiscal_year' => 'An fiscal', + 'income_entry' => 'Venituri din cont ":name" între :start și :end', + 'expense_entry' => 'Cheltuieli în cont ":name" între :start și :end', + 'category_entry' => 'Cheltuieli și venituri în categoria ":name" între :start și :end', + 'budget_spent_amount' => 'Cheltuieli în bugetul ":budget" între :start și :end', + 'balance_amount' => 'Cheltuieli în bugetul ":budget" plătit din cont ":account" între :start și :end', + 'no_audit_activity' => 'Nu a fost înregistrată nici o activitate în contul :account_name între :start și :end.', + 'audit_end_balance' => 'Soldul contului :account_name la sfârșitul :end a fost: :balance', + 'reports_extra_options' => 'Opțiuni suplimentare', + 'report_has_no_extra_options' => 'Acest raport nu are opțiuni suplimentare', + 'reports_submit' => 'Vizualizează raportul', + 'end_after_start_date' => 'Data de încheiere a raportului trebuie să fie după data de începere.', + 'select_category' => 'Selectați categoria (categoriile)', + 'select_budget' => 'Selectați bugetul (bugetele).', + 'select_tag' => 'Selectați eticheta (-urile).', + 'income_per_category' => 'Venituri pe categorie', + 'expense_per_category' => 'Cheltuială pe categorie', + 'expense_per_budget' => 'Cheltuială pe buget', + 'income_per_account' => 'Venituri pe cont', + 'expense_per_account' => 'Cheltuială pe cont', + 'expense_per_tag' => 'Cheltuială pe eticheta', + 'income_per_tag' => 'Venituri pe eticheta', + 'include_expense_not_in_budget' => 'Cheltuielile incluse nu sunt în bugetul (bugetele) selectat (e)', + 'include_expense_not_in_account' => 'Cheltuielile incluse nu sunt în contul (conturile) selectat (e)', + 'include_expense_not_in_category' => 'Cheltuielile incluse nu sunt în categoria (categoriile) selectat (e)', + 'include_income_not_in_category' => 'Veniturile incluse nu sunt în categoria (categoriile) selectat (e)', + 'include_income_not_in_account' => 'Veniturile incluse nu sunt în contul (conturile) selectat (e)', + 'include_income_not_in_tags' => 'Veniturile incluse nu sunt în etichetă(e) selectat (e)', + 'include_expense_not_in_tags' => 'Cheltuielile incluse nu sunt în etichete', + 'everything_else' => 'Orice altceva', + 'income_and_expenses' => 'Venituri și cheltuieli', + 'spent_average' => 'Cheltuit (in medie)', + 'income_average' => 'Venituri (in medie)', + 'transaction_count' => 'Numărul de tranzacții', + 'average_spending_per_account' => 'Cheltuielile medii pe cont', + 'average_income_per_account' => 'Venitul mediu pe cont', + 'total' => 'Total', + 'description' => 'Descriere', + 'sum_of_period' => 'Suma perioadei', + 'average_in_period' => 'Media în perioada', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Contul implicit activ', + 'account_role_sharedAsset' => 'Contul de active partajat', + 'account_role_savingAsset' => 'Cont de economii', + 'account_role_ccAsset' => 'Card de credit', + 'account_role_cashWalletAsset' => 'Cash - Numerar', + 'budget_chart_click' => 'Faceți clic pe un nume de buget din tabelul de mai sus pentru a vedea o grafic.', + 'category_chart_click' => 'Clic pe numele unei categorii din tabelul de mai sus pentru a vedea un grafic.', + 'in_out_accounts' => 'Câștigat și cheltuit pe combinație', + 'in_out_accounts_per_asset' => 'Câștigat și cheltuit (pe cont de activ)', + 'in_out_per_category' => 'Câștigat și cheltuit pe categorie', + 'out_per_budget' => 'Cheltuit pe buget', + 'select_expense_revenue' => 'Selectați contul de cheltuieli / venituri', + 'multi_currency_report_sum' => 'Deoarece această listă conține conturi cu mai multe valute, suma (sumele) pe care o vedeți este posibil să nu aibă sens. Raportul va reveni întotdeauna la moneda dvs. prestabilită.', + 'sum_in_default_currency' => 'Suma va fi întotdeauna în moneda dvs. prestabilită.', + 'net_filtered_prefs' => 'Acest grafic nu va include niciodată conturi care nu au selectat opțiunea "Include în valoare netă".', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Grafic', - 'month' => 'Lună', - 'budget' => 'Buget', - 'spent' => 'Cheltuit', - 'spent_capped' => 'Cheltuit (plafonat)', - 'spent_in_budget' => 'Cheltuit în budget', - 'left_to_spend' => 'Ramas de cheltuit', - 'earned' => 'Câștigat', - 'overspent' => 'Depășire de buget', - 'left' => 'Rămas', - 'max-amount' => 'Sumă maximă', - 'min-amount' => 'Valoare minimă', - 'journal-amount' => 'Intrare factură curentă', - 'name' => 'Nume', - 'date' => 'Dată', - 'date_and_time' => 'Data și ora', - 'time' => 'Timp', - 'paid' => 'Plătit', - 'unpaid' => 'Neplătit', - 'day' => 'Zi', - 'budgeted' => 'Bugetat', - 'period' => 'Perioada', - 'balance' => 'Balantă', - 'in_out_period' => 'În + afară această perioadă', - 'sum' => 'Sumă', - 'summary' => 'Rezumat', - 'average' => 'In medie', - 'balanceFor' => 'Balanta pentru :name', - 'no_tags' => '(fără etichete)', - 'nothing_found' => 'nu a fost găsit nimic', + 'chart' => 'Grafic', + 'month' => 'Lună', + 'budget' => 'Buget', + 'spent' => 'Cheltuit', + 'spent_capped' => 'Cheltuit (plafonat)', + 'spent_in_budget' => 'Cheltuit în budget', + 'left_to_spend' => 'Ramas de cheltuit', + 'earned' => 'Câștigat', + 'overspent' => 'Depășire de buget', + 'left' => 'Rămas', + 'max-amount' => 'Sumă maximă', + 'min-amount' => 'Valoare minimă', + 'journal-amount' => 'Intrare factură curentă', + 'name' => 'Nume', + 'date' => 'Dată', + 'date_and_time' => 'Data și ora', + 'time' => 'Timp', + 'paid' => 'Plătit', + 'unpaid' => 'Neplătit', + 'day' => 'Zi', + 'budgeted' => 'Bugetat', + 'period' => 'Perioada', + 'balance' => 'Balantă', + 'in_out_period' => 'În + afară această perioadă', + 'sum' => 'Sumă', + 'summary' => 'Rezumat', + 'average' => 'In medie', + 'balanceFor' => 'Balanta pentru :name', + 'no_tags' => '(fără etichete)', + 'nothing_found' => 'nu a fost găsit nimic', // piggy banks: - 'event_history' => 'Istoric evenimente', - 'add_money_to_piggy' => 'Adăugați bani la pușculiță ":name"', - 'piggy_bank' => 'Pușculiță', - 'new_piggy_bank' => 'Pușculiță nouă', - 'store_piggy_bank' => 'Salvați pușculița', - 'stored_piggy_bank' => 'Pușculița ":name" a fost salvată', - 'account_status' => 'Starea contului', - 'left_for_piggy_banks' => 'Rămas pentru pușculiță', - 'sum_of_piggy_banks' => 'Suma pușculiței', - 'saved_so_far' => 'Salvat până acum', - 'left_to_save' => 'Rămas de salvat', - 'suggested_amount' => 'Sumă lunară sugerată pentru salvare', - 'add_money_to_piggy_title' => 'Adăugați bani la pușculița ":name"', - 'remove_money_from_piggy_title' => 'Scoateți bani de la pușculița ":name"', - 'add' => 'Adaugă', - 'no_money_for_piggy' => 'Nu ai încă bani de pus în această pușculiță.', - 'suggested_savings_per_month' => 'Sugerat pe lună', + 'event_history' => 'Istoric evenimente', + 'add_money_to_piggy' => 'Adăugați bani la pușculiță ":name"', + 'piggy_bank' => 'Pușculiță', + 'new_piggy_bank' => 'Pușculiță nouă', + 'store_piggy_bank' => 'Salvați pușculița', + 'stored_piggy_bank' => 'Pușculița ":name" a fost salvată', + 'account_status' => 'Starea contului', + 'left_for_piggy_banks' => 'Rămas pentru pușculiță', + 'sum_of_piggy_banks' => 'Suma pușculiței', + 'saved_so_far' => 'Salvat până acum', + 'left_to_save' => 'Rămas de salvat', + 'suggested_amount' => 'Sumă lunară sugerată pentru salvare', + 'add_money_to_piggy_title' => 'Adăugați bani la pușculița ":name"', + 'remove_money_from_piggy_title' => 'Scoateți bani de la pușculița ":name"', + 'add' => 'Adaugă', + 'no_money_for_piggy' => 'Nu ai încă bani de pus în această pușculiță.', + 'suggested_savings_per_month' => 'Sugerat pe lună', - 'remove' => 'Elimină', - 'max_amount_add' => 'Suma maximă pe care o puteți adăuga este', - 'max_amount_remove' => 'Suma maximă pe care o puteți elimina este', - 'update_piggy_button' => 'Actualizați pușculiță', - 'update_piggy_title' => 'Actualizați pușculița ":name"', - 'updated_piggy_bank' => 'Pușculiță ":name" a fost actualizată', - 'details' => 'Detalii', - 'events' => 'Evenimente', - 'target_amount' => 'Sumă țintă', - 'start_date' => 'Data de început', - 'no_start_date' => 'Nu există o dată de începere', - 'target_date' => 'Data țintă', - 'no_target_date' => 'Nu există o dată vizată', - 'table' => 'Tabel', - 'delete_piggy_bank' => 'Șterge pușculița ":name"', - 'cannot_add_amount_piggy' => 'Nu s-a putut adăuga :amount la ":name".', - 'cannot_remove_from_piggy' => 'Nu s-a putut elimina :amount din ":name".', - 'deleted_piggy_bank' => 'Pușculița ":name" a fost ștearsă', - 'added_amount_to_piggy' => 'Adăugat :amount la ":name"', - 'removed_amount_from_piggy' => 'Eliminat :amount din ":name"', - 'piggy_events' => 'Pușculițe asociate', + 'remove' => 'Elimină', + 'max_amount_add' => 'Suma maximă pe care o puteți adăuga este', + 'max_amount_remove' => 'Suma maximă pe care o puteți elimina este', + 'update_piggy_button' => 'Actualizați pușculiță', + 'update_piggy_title' => 'Actualizați pușculița ":name"', + 'updated_piggy_bank' => 'Pușculiță ":name" a fost actualizată', + 'details' => 'Detalii', + 'events' => 'Evenimente', + 'target_amount' => 'Sumă țintă', + 'start_date' => 'Data de început', + 'no_start_date' => 'Nu există o dată de începere', + 'target_date' => 'Data țintă', + 'no_target_date' => 'Nu există o dată vizată', + 'table' => 'Tabel', + 'delete_piggy_bank' => 'Șterge pușculița ":name"', + 'cannot_add_amount_piggy' => 'Nu s-a putut adăuga :amount la ":name".', + 'cannot_remove_from_piggy' => 'Nu s-a putut elimina :amount din ":name".', + 'deleted_piggy_bank' => 'Pușculița ":name" a fost ștearsă', + 'added_amount_to_piggy' => 'Adăugat :amount la ":name"', + 'removed_amount_from_piggy' => 'Eliminat :amount din ":name"', + 'piggy_events' => 'Pușculițe asociate', // tags - 'delete_tag' => 'Șterge eticheta ":tag"', - 'deleted_tag' => 'Eticheta ":tag" a fost ștearsă', - 'new_tag' => 'Faceți o nouă eticheta', - 'edit_tag' => 'Editați eticheta ":tag"', - 'updated_tag' => 'Eticheta ":tag" a fost actualizat', - 'created_tag' => 'Eticheta ":tag" a fost creat!', + 'delete_tag' => 'Șterge eticheta ":tag"', + 'deleted_tag' => 'Eticheta ":tag" a fost ștearsă', + 'new_tag' => 'Faceți o nouă eticheta', + 'edit_tag' => 'Editați eticheta ":tag"', + 'updated_tag' => 'Eticheta ":tag" a fost actualizat', + 'created_tag' => 'Eticheta ":tag" a fost creat!', - 'transaction_journal_information' => 'Informații despre tranzacții', - 'transaction_journal_amount' => 'Informații sumă', - 'transaction_journal_meta' => 'Informații meta', - 'transaction_journal_more' => 'Mai multe informaţii', - 'basic_journal_information' => 'Informații de bază despre tranzacție', - 'transaction_journal_extra' => 'Informații suplimentare', - 'att_part_of_journal' => 'Salvat în ":journal"', - 'total_amount' => 'Valoare totală', - 'number_of_decimals' => 'Număr de zecimale', + 'transaction_journal_information' => 'Informații despre tranzacții', + 'transaction_journal_amount' => 'Informații sumă', + 'transaction_journal_meta' => 'Informații meta', + 'transaction_journal_more' => 'Mai multe informaţii', + 'basic_journal_information' => 'Informații de bază despre tranzacție', + 'transaction_journal_extra' => 'Informații suplimentare', + 'att_part_of_journal' => 'Salvat în ":journal"', + 'total_amount' => 'Valoare totală', + 'number_of_decimals' => 'Număr de zecimale', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Invitația către ":address" a fost deja revendicată.', - 'invite_is_deleted' => 'Invitația către ":address" a fost ștearsă.', - 'invite_new_user_title' => 'Invită utilizator nou', - 'invite_new_user_text' => 'Ca administrator, puteți invita utilizatori să se înregistreze în administrarea Firefly III. Folosind link-ul direct pe care îl puteți partaja cu ei, aceștia vor putea înregistra un cont. Utilizatorul invitat și link-ul lor de invitație vor apărea în tabelul de mai jos. Sunteți liber să partajați linkul de invitație cu ei.', - 'invited_user_mail' => 'Adresă de e-mail', - 'invite_user' => 'Invită utilizator', - 'user_is_invited' => 'Adresa de e-mail ":address" a fost invitată la Firefly III', - 'administration' => 'Administrare', - 'system_settings' => 'Setări de sistem', - 'code_already_used' => 'Codul de invitație a fost utilizat', - 'user_administration' => 'Administrarea utilizatorilor', - 'list_all_users' => 'Toți utilizatorii', - 'all_users' => 'Toți utilizatorii', - 'instance_configuration' => 'Configurare', - 'firefly_instance_configuration' => 'Opțiuni configurare', - 'setting_single_user_mode' => 'Mod de utilizator unic', - 'setting_single_user_mode_explain' => 'În mod implicit, Firefly III acceptă numai o înregistrare: dvs. Aceasta este o măsură de securitate, împiedicând pe alții să vă folosească instanța dacă nu le permiteți. Inregistrările viitoare sunt blocate. Când debifați această casetă, alții vă pot folosi și instanța, presupunând că pot ajunge la ea (când este conectată la internet).', - 'store_configuration' => 'Salvați configurarea', - 'single_user_administration' => 'Administrare utilizator pentru :email', - 'edit_user' => 'Editați user :email', - 'hidden_fields_preferences' => 'Puteți activa mai multe opțiuni de tranzacție în preferințele dvs.', - 'user_data_information' => 'Datele utilizatorului', - 'user_information' => 'Informații utilizator', - 'total_size' => 'marimea totală', - 'budget_or_budgets' => ':count buget |:count bugete', - 'budgets_with_limits' => ':count buget cu suma configurată | :count bugete cu suma configurată', - 'nr_of_rules_in_total_groups' => ':count_rules regulă(reguli) în :count_groups grup (uri) de reguli', - 'tag_or_tags' => ':count tag | :count tag-uri', - 'configuration_updated' => 'Configurația a fost actualizată', - 'setting_is_demo_site' => 'Site-ul demo', - 'setting_is_demo_site_explain' => 'Dacă bifați această casetă, această instalare se va comporta ca și cum ar fi site-ul demo, care poate avea efecte secundare ciudate.', - 'block_code_bounced' => 'Mesaje e-mail (uri) returnate', - 'block_code_expired' => 'Contul Demo a expirat', - 'no_block_code' => 'Nu există motive pentru blocarea sau blocarea utilizatorului', - 'demo_user_export' => 'Utilizatorul demo nu poate exporta date', - 'block_code_email_changed' => 'Utilizatorul nu a confirmat încă nicio adresă de e-mail nouă', - 'admin_update_email' => 'Contrar paginii de profil, utilizatorul NU va fi anunțat că adresa sa de email a fost modificată!', - 'update_user' => 'Actualizați user', - 'updated_user' => 'Datele utilizatorilor au fost modificate.', - 'delete_user' => 'Șterge user :email', - 'user_deleted' => 'Utilizatorul a fost șters', - 'send_test_email' => 'Trimiteți mesajul de e-mail test', - 'send_test_email_text' => 'Pentru a vedea dacă instalarea este capabilă să trimită e-mail sau să posteze mesaje Slack, apăsați acest buton. Nu veţi vedea o eroare aici (dacă există), fişierele jurnal vor reflecta erorile. Puteţi apăsa acest buton de câte ori doriţi. Nu există control spam. Mesajul va fi trimis la :email și trebuie să ajungă în scurt timp.', - 'send_message' => 'Trimite mesaj', - 'send_test_triggered' => 'Testul a fost declanșat. Verificați mesajele primite și log-urile.', - 'give_admin_careful' => 'Utilizatorii cărora li se acordă drepturi de administrator pot lua drepturile dvs. Fiți atenți.', - 'admin_maintanance_title' => 'Mentenanţă', - 'admin_maintanance_expl' => 'Ceva butoane grozave pentru mentenanța Firefly III', - 'admin_maintenance_clear_cache' => 'Golește memoria cache', - 'admin_notifications' => 'Notificări administrator', - 'admin_notifications_expl' => 'Următoarele notificări pot fi activate sau dezactivate de către administrator. Dacă doriţi să primiţi aceste mesaje şi peste Slack setaţi URL-ul "webhook".', - 'admin_notification_check_user_new_reg' => 'Utilizatorul primește un mesaj de bun venit post-înregistrare', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'Un utilizator este invitat în Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'Invitația către ":address" a fost deja revendicată.', + 'invite_is_deleted' => 'Invitația către ":address" a fost ștearsă.', + 'invite_new_user_title' => 'Invită utilizator nou', + 'invite_new_user_text' => 'Ca administrator, puteți invita utilizatori să se înregistreze în administrarea Firefly III. Folosind link-ul direct pe care îl puteți partaja cu ei, aceștia vor putea înregistra un cont. Utilizatorul invitat și link-ul lor de invitație vor apărea în tabelul de mai jos. Sunteți liber să partajați linkul de invitație cu ei.', + 'invited_user_mail' => 'Adresă de e-mail', + 'invite_user' => 'Invită utilizator', + 'user_is_invited' => 'Adresa de e-mail ":address" a fost invitată la Firefly III', + 'administration' => 'Administrare', + 'system_settings' => 'Setări de sistem', + 'code_already_used' => 'Codul de invitație a fost utilizat', + 'user_administration' => 'Administrarea utilizatorilor', + 'list_all_users' => 'Toți utilizatorii', + 'all_users' => 'Toți utilizatorii', + 'instance_configuration' => 'Configurare', + 'firefly_instance_configuration' => 'Opțiuni configurare', + 'setting_single_user_mode' => 'Mod de utilizator unic', + 'setting_single_user_mode_explain' => 'În mod implicit, Firefly III acceptă numai o înregistrare: dvs. Aceasta este o măsură de securitate, împiedicând pe alții să vă folosească instanța dacă nu le permiteți. Inregistrările viitoare sunt blocate. Când debifați această casetă, alții vă pot folosi și instanța, presupunând că pot ajunge la ea (când este conectată la internet).', + 'store_configuration' => 'Salvați configurarea', + 'single_user_administration' => 'Administrare utilizator pentru :email', + 'edit_user' => 'Editați user :email', + 'hidden_fields_preferences' => 'Puteți activa mai multe opțiuni de tranzacție în preferințele dvs.', + 'user_data_information' => 'Datele utilizatorului', + 'user_information' => 'Informații utilizator', + 'total_size' => 'marimea totală', + 'budget_or_budgets' => ':count buget |:count bugete', + 'budgets_with_limits' => ':count buget cu suma configurată | :count bugete cu suma configurată', + 'nr_of_rules_in_total_groups' => ':count_rules regulă(reguli) în :count_groups grup (uri) de reguli', + 'tag_or_tags' => ':count tag | :count tag-uri', + 'configuration_updated' => 'Configurația a fost actualizată', + 'setting_is_demo_site' => 'Site-ul demo', + 'setting_is_demo_site_explain' => 'Dacă bifați această casetă, această instalare se va comporta ca și cum ar fi site-ul demo, care poate avea efecte secundare ciudate.', + 'block_code_bounced' => 'Mesaje e-mail (uri) returnate', + 'block_code_expired' => 'Contul Demo a expirat', + 'no_block_code' => 'Nu există motive pentru blocarea sau blocarea utilizatorului', + 'demo_user_export' => 'Utilizatorul demo nu poate exporta date', + 'block_code_email_changed' => 'Utilizatorul nu a confirmat încă nicio adresă de e-mail nouă', + 'admin_update_email' => 'Contrar paginii de profil, utilizatorul NU va fi anunțat că adresa sa de email a fost modificată!', + 'update_user' => 'Actualizați user', + 'updated_user' => 'Datele utilizatorilor au fost modificate.', + 'delete_user' => 'Șterge user :email', + 'user_deleted' => 'Utilizatorul a fost șters', + 'send_test_email' => 'Trimiteți mesajul de e-mail test', + 'send_test_email_text' => 'Pentru a vedea dacă instalarea este capabilă să trimită e-mail sau să posteze mesaje Slack, apăsați acest buton. Nu veţi vedea o eroare aici (dacă există), fişierele jurnal vor reflecta erorile. Puteţi apăsa acest buton de câte ori doriţi. Nu există control spam. Mesajul va fi trimis la :email și trebuie să ajungă în scurt timp.', + 'send_message' => 'Trimite mesaj', + 'send_test_triggered' => 'Testul a fost declanșat. Verificați mesajele primite și log-urile.', + 'give_admin_careful' => 'Utilizatorii cărora li se acordă drepturi de administrator pot lua drepturile dvs. Fiți atenți.', + 'admin_maintanance_title' => 'Mentenanţă', + 'admin_maintanance_expl' => 'Ceva butoane grozave pentru mentenanța Firefly III', + 'admin_maintenance_clear_cache' => 'Golește memoria cache', + 'admin_notifications' => 'Notificări administrator', + 'admin_notifications_expl' => 'Următoarele notificări pot fi activate sau dezactivate de către administrator. Dacă doriţi să primiţi aceste mesaje şi peste Slack setaţi URL-ul "webhook".', + 'admin_notification_check_user_new_reg' => 'Utilizatorul primește un mesaj de bun venit post-înregistrare', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'Un utilizator este invitat în Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Descrierea tranzacției divizate', - 'split_transaction_title_help' => 'Dacă creați o tranzacție divizată, trebuie să existe o descriere globală pentru toate diviziunile tranzacției.', - 'split_title_help' => 'Dacă creați o tranzacție divizată, trebuie să existe o descriere globală pentru toate diviziunile tranzacției.', - 'you_create_transfer' => 'Creezi un transfer.', - 'you_create_withdrawal' => 'Creezi o retragere.', - 'you_create_deposit' => 'Creezi un depozit.', + 'split_transaction_title' => 'Descrierea tranzacției divizate', + 'split_transaction_title_help' => 'Dacă creați o tranzacție divizată, trebuie să existe o descriere globală pentru toate diviziunile tranzacției.', + 'split_title_help' => 'Dacă creați o tranzacție divizată, trebuie să existe o descriere globală pentru toate diviziunile tranzacției.', + 'you_create_transfer' => 'Creezi un transfer.', + 'you_create_withdrawal' => 'Creezi o retragere.', + 'you_create_deposit' => 'Creezi un depozit.', // links - 'journal_link_configuration' => 'Configurare link-uri de tranzacție', - 'create_new_link_type' => 'Creați un nou tip de legătură', - 'store_new_link_type' => 'Salvați un nou tip de legătură', - 'update_link_type' => 'Actualizați tip de legătură', - 'edit_link_type' => 'Editați tip de legătură ":name"', - 'updated_link_type' => 'Tip de legătură ":name" actualizat', - 'delete_link_type' => 'Șterge tip de legătură ":name"', - 'deleted_link_type' => 'Tip de legătură ":name" șters', - 'stored_new_link_type' => 'Salvați new tip de legătură ":name"', - 'cannot_edit_link_type' => 'Nu se poate edita tipul de legătură ":name"', - 'link_type_help_name' => 'Ex. "Dubluri"', - 'link_type_help_inward' => 'Ex. "dubluri"', - 'link_type_help_outward' => 'Ex. "este duplicat de către"', - 'save_connections_by_moving' => 'Salvați legătura dintre aceste tranzacții prin mutarea lor la un alt tip de legătură:', - 'do_not_save_connection' => '(nu salvați conexiunea)', - 'link_transaction' => 'Link tranzacție', - 'link_to_other_transaction' => 'Conectați această tranzacție la o altă tranzacție', - 'select_transaction_to_link' => 'Selectați o tranzacție pentru a conecta această tranzacție. Linkurile sunt în prezent neutilizate în Firefly III (în afară de a fi arătat), dar intenționez să schimb acest lucru în viitor. Utilizați caseta de căutare pentru a selecta o tranzacție fie după titlu, fie prin ID. Dacă doriți să adăugați tipuri de link personalizate, consultați secțiunea de administrare.', - 'this_transaction' => 'Această tranzacție', - 'transaction' => 'Tranzacţie', - 'comments' => 'Comentarii', - 'link_notes' => 'Orice notă pe care doriți să o păstrați cu linkul.', - 'invalid_link_selection' => 'Nu se poate lega aceste tranzacții', - 'selected_transaction' => 'Tranzacție selectată', - 'journals_linked' => 'Tranzacțiile sunt legate.', - 'journals_error_linked' => 'Aceste tranzacții sunt deja legate.', - 'journals_link_to_self' => 'Nu puteți conecta o tranzacție la sine', - 'journal_links' => 'Link-uri de tranzacții', - 'this_withdrawal' => 'Această retragere', - 'this_deposit' => 'Acest depozit', - 'this_transfer' => 'Acest transfer', - 'overview_for_link' => 'Prezentare generală pentru tipul de legătură ":name"', - 'source_transaction' => 'Tranzacție sursă', - 'link_description' => 'Descrierea legăturii', - 'destination_transaction' => 'Tranzacție de destinație', - 'delete_journal_link' => 'Șterge legătura dintre :source și :destination', - 'deleted_link' => 'Link șters', + 'journal_link_configuration' => 'Configurare link-uri de tranzacție', + 'create_new_link_type' => 'Creați un nou tip de legătură', + 'store_new_link_type' => 'Salvați un nou tip de legătură', + 'update_link_type' => 'Actualizați tip de legătură', + 'edit_link_type' => 'Editați tip de legătură ":name"', + 'updated_link_type' => 'Tip de legătură ":name" actualizat', + 'delete_link_type' => 'Șterge tip de legătură ":name"', + 'deleted_link_type' => 'Tip de legătură ":name" șters', + 'stored_new_link_type' => 'Salvați new tip de legătură ":name"', + 'cannot_edit_link_type' => 'Nu se poate edita tipul de legătură ":name"', + 'link_type_help_name' => 'Ex. "Dubluri"', + 'link_type_help_inward' => 'Ex. "dubluri"', + 'link_type_help_outward' => 'Ex. "este duplicat de către"', + 'save_connections_by_moving' => 'Salvați legătura dintre aceste tranzacții prin mutarea lor la un alt tip de legătură:', + 'do_not_save_connection' => '(nu salvați conexiunea)', + 'link_transaction' => 'Link tranzacție', + 'link_to_other_transaction' => 'Conectați această tranzacție la o altă tranzacție', + 'select_transaction_to_link' => 'Selectați o tranzacție pentru a conecta această tranzacție. Linkurile sunt în prezent neutilizate în Firefly III (în afară de a fi arătat), dar intenționez să schimb acest lucru în viitor. Utilizați caseta de căutare pentru a selecta o tranzacție fie după titlu, fie prin ID. Dacă doriți să adăugați tipuri de link personalizate, consultați secțiunea de administrare.', + 'this_transaction' => 'Această tranzacție', + 'transaction' => 'Tranzacţie', + 'comments' => 'Comentarii', + 'link_notes' => 'Orice notă pe care doriți să o păstrați cu linkul.', + 'invalid_link_selection' => 'Nu se poate lega aceste tranzacții', + 'selected_transaction' => 'Tranzacție selectată', + 'journals_linked' => 'Tranzacțiile sunt legate.', + 'journals_error_linked' => 'Aceste tranzacții sunt deja legate.', + 'journals_link_to_self' => 'Nu puteți conecta o tranzacție la sine', + 'journal_links' => 'Link-uri de tranzacții', + 'this_withdrawal' => 'Această retragere', + 'this_deposit' => 'Acest depozit', + 'this_transfer' => 'Acest transfer', + 'overview_for_link' => 'Prezentare generală pentru tipul de legătură ":name"', + 'source_transaction' => 'Tranzacție sursă', + 'link_description' => 'Descrierea legăturii', + 'destination_transaction' => 'Tranzacție de destinație', + 'delete_journal_link' => 'Șterge legătura dintre :source și :destination', + 'deleted_link' => 'Link șters', // link translations: - 'Paid_name' => 'Plătit', - 'Refund_name' => 'Restituire', - 'Reimbursement_name' => 'Rambursare', - 'Related_name' => 'Legate de', - 'relates to_inward' => 'se referă la', - 'is (partially) refunded by_inward' => 'este rambursat (parțial) de către', - 'is (partially) paid for by_inward' => 'este (parțial) plătit de către', - 'is (partially) reimbursed by_inward' => 'este (parțial) rambursat de către', - 'inward_transaction' => 'Tranzacție internă', - 'outward_transaction' => 'Tranzacție externă', - 'relates to_outward' => 'se referă la', - '(partially) refunds_outward' => '(parțial) restituiri', - '(partially) pays for_outward' => '(parțial) plătește pentru', - '(partially) reimburses_outward' => '(parțial) ramburseaza', - 'is (partially) refunded by' => 'este (parțial) rambursat de către', - 'is (partially) paid for by' => 'este (parțial) plătit de către', - 'is (partially) reimbursed by' => 'este (parțial) rambursat de către', - 'relates to' => 'asociat cu', - '(partially) refunds' => '(parțial) restituiri', - '(partially) pays for' => '(parțial) plătește pentru', - '(partially) reimburses' => '(parțial) ramburseaza', + 'Paid_name' => 'Plătit', + 'Refund_name' => 'Restituire', + 'Reimbursement_name' => 'Rambursare', + 'Related_name' => 'Legate de', + 'relates to_inward' => 'se referă la', + 'is (partially) refunded by_inward' => 'este rambursat (parțial) de către', + 'is (partially) paid for by_inward' => 'este (parțial) plătit de către', + 'is (partially) reimbursed by_inward' => 'este (parțial) rambursat de către', + 'inward_transaction' => 'Tranzacție internă', + 'outward_transaction' => 'Tranzacție externă', + 'relates to_outward' => 'se referă la', + '(partially) refunds_outward' => '(parțial) restituiri', + '(partially) pays for_outward' => '(parțial) plătește pentru', + '(partially) reimburses_outward' => '(parțial) ramburseaza', + 'is (partially) refunded by' => 'este (parțial) rambursat de către', + 'is (partially) paid for by' => 'este (parțial) plătit de către', + 'is (partially) reimbursed by' => 'este (parțial) rambursat de către', + 'relates to' => 'asociat cu', + '(partially) refunds' => '(parțial) restituiri', + '(partially) pays for' => '(parțial) plătește pentru', + '(partially) reimburses' => '(parțial) ramburseaza', // split a transaction: - 'splits' => 'Desparte', - 'add_another_split' => 'Adăugați o divizare', - 'cannot_edit_opening_balance' => 'Nu puteți edita soldul de deschidere al unui cont.', - 'no_edit_multiple_left' => 'Nu ați selectat niciun fel de tranzacții valide pentru a le edita.', - 'breadcrumb_convert_group' => 'Tranzacție convertită', - 'convert_invalid_source' => 'Informațiile sursă sunt nevalide pentru tranzacția #%d.', - 'convert_invalid_destination' => 'Informațiile de destinație sunt nevalide pentru tranzacția #%d.', - 'create_another' => 'După stocare, reveniți aici pentru a crea alta.', - 'after_update_create_another' => 'După actualizare, reveniți aici pentru a continua editarea.', - 'store_as_new' => 'Stocați ca o tranzacție nouă în loc să actualizați.', - 'reset_after' => 'Resetați formularul după trimitere', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Desparte', + 'add_another_split' => 'Adăugați o divizare', + 'cannot_edit_opening_balance' => 'Nu puteți edita soldul de deschidere al unui cont.', + 'no_edit_multiple_left' => 'Nu ați selectat niciun fel de tranzacții valide pentru a le edita.', + 'breadcrumb_convert_group' => 'Tranzacție convertită', + 'convert_invalid_source' => 'Informațiile sursă sunt nevalide pentru tranzacția #%d.', + 'convert_invalid_destination' => 'Informațiile de destinație sunt nevalide pentru tranzacția #%d.', + 'create_another' => 'După stocare, reveniți aici pentru a crea alta.', + 'after_update_create_another' => 'După actualizare, reveniți aici pentru a continua editarea.', + 'store_as_new' => 'Stocați ca o tranzacție nouă în loc să actualizați.', + 'reset_after' => 'Resetați formularul după trimitere', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(negrupat)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(negrupat)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Să cream un cont de active!', - 'no_accounts_intro_asset' => 'Nu ai încă nici un cont de active. Contul de active sunt conturile principale: contul dvs. de verificare, contul de economii, contul partajat sau chiar cardul dvs. de credit.', - 'no_accounts_imperative_asset' => 'Pentru a începe să utilizați Firefly III, trebuie să creați cel puțin un cont de active. Să o facem acum:', - 'no_accounts_create_asset' => 'Creați un cont de active', - 'no_accounts_title_expense' => 'Să cream un cont de cheltuieli!', - 'no_accounts_intro_expense' => 'Nu ai încă nici un cont de cheltuieli. Cont de cheltuieli sunt locurile unde cheltuiți bani, cum ar fi magazinele și supermarketurile.', - 'no_accounts_imperative_expense' => 'Cont de cheltuieli sunt create automat când creați tranzacții, dar puteți crea și una manuală, dacă doriți. Să creăm unul acum:', - 'no_accounts_create_expense' => 'Creați un cont de cheltuieli', - 'no_accounts_title_revenue' => 'Să cream un cont de venituri!', - 'no_accounts_intro_revenue' => 'Nu ai încă nici un cont de venituri.Conturile de venituri sunt locurile de unde primiți bani, cum ar fi angajatorul dvs.', - 'no_accounts_imperative_revenue' => 'Conturile de venituri sunt create automat când creați tranzacții, dar puteți crea și una manuală, dacă doriți. Să creăm unul acum:', - 'no_accounts_create_revenue' => 'Creați un cont de venituri', - 'no_accounts_title_liabilities' => 'Să cream un provizion!', - 'no_accounts_intro_liabilities' => 'Nu ai încă nici un provizion. Provizioanele sunt conturile care vă înregistrează cardurile de credit, împrumuturile și alte datorii.', - 'no_accounts_imperative_liabilities' => 'Nu trebuie să utilizați această funcție, dar poate fi utilă dacă doriți să urmăriți aceste lucruri.', - 'no_accounts_create_liabilities' => 'Creați un provizion', - 'no_budgets_title_default' => 'Să cream un provizion', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'Nu ai încă nici un buget. Bugetele sunt folosite pentru a vă organiza cheltuielile în grupuri logice, pe care le puteți supune unei limite de cheltuieli.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Bugetele sunt instrumentele de bază ale gestiunii financiare. Să creăm unul acum:', - 'no_budgets_create_default' => 'Creați un buget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Să cream o categorie!', - 'no_categories_intro_default' => 'Nu ai încă nici o categorie. Categoriile sunt utilizate pentru a regla tranzacțiile și a le eticheta cu categoria lor desemnată.', - 'no_categories_imperative_default' => 'Categoriile sunt create automat atunci când creați tranzacții, dar puteți crea și una manuală. Să creăm una acum:', - 'no_categories_create_default' => 'Creați o categorie', - 'no_tags_title_default' => 'Să cream o eticheta!', - 'no_tags_intro_default' => 'Nu ai încă nici o eticheta. Etichetele sunt utilizate pentru etichetarea tranzacțiilor cu cuvinte cheie specifice.', - 'no_tags_imperative_default' => 'Etichetele sunt create automat atunci când creați tranzacții, dar puteți crea și una manuală. Să creăm una acum:', - 'no_tags_create_default' => 'Creați o etichetă', - 'no_transactions_title_withdrawal' => 'Să cream o cheltuială!', - 'no_transactions_intro_withdrawal' => 'Nu ai încă nici o cheltuială. Trebuie să creați cheltuieli pentru a începe să vă gestionați finanțele.', - 'no_transactions_imperative_withdrawal' => 'Ai cheltuit niște bani? Atunci ar trebui să o scrieți:', - 'no_transactions_create_withdrawal' => 'Creați o cheltuială', - 'no_transactions_title_deposit' => 'Să creăm niște venituri!', - 'no_transactions_intro_deposit' => 'Nu ai încă nici un venit înregistrat. Ar trebui să creați intrări de venituri pentru a începe să vă gestionați finanțele.', - 'no_transactions_imperative_deposit' => 'Ai primit niște bani? Atunci ar trebui să o scrieți:', - 'no_transactions_create_deposit' => 'Creați un depozit', - 'no_transactions_title_transfers' => 'Să cream un transfer!', - 'no_transactions_intro_transfers' => 'Nu ai încă nici o transfer. Când transferați bani între contul de active, acesta este înregistrat ca transfer.', - 'no_transactions_imperative_transfers' => 'Ai mutat niște bani? Atunci ar trebui să o scrieți:', - 'no_transactions_create_transfers' => 'Creați un transfer', - 'no_piggies_title_default' => 'Să cream o pușculiță!', - 'no_piggies_intro_default' => 'Nu ai încă nici o pușculiță. Puteți crea pușculita pentru a vă împărți economiile și pentru a urmări ceea ce economisiți.', - 'no_piggies_imperative_default' => 'Aveți lucruri pentru care economisiți bani? Creați o pușculiță și urmăriți-o:', - 'no_piggies_create_default' => 'Creați o nouă pușculiță', - 'no_bills_title_default' => 'Să cream o factură!', - 'no_bills_intro_default' => 'Nu ai încă nici o factură. Puteți crea facturi pentru a urmări cheltuielile obișnuite, cum ar fi chiria sau asigurarea.', - 'no_bills_imperative_default' => 'Aveți astfel de facturi obișnuite? Creați o factură și țineți evidența plăților dvs.:', - 'no_bills_create_default' => 'Creați o factură', + 'no_accounts_title_asset' => 'Să cream un cont de active!', + 'no_accounts_intro_asset' => 'Nu ai încă nici un cont de active. Contul de active sunt conturile principale: contul dvs. de verificare, contul de economii, contul partajat sau chiar cardul dvs. de credit.', + 'no_accounts_imperative_asset' => 'Pentru a începe să utilizați Firefly III, trebuie să creați cel puțin un cont de active. Să o facem acum:', + 'no_accounts_create_asset' => 'Creați un cont de active', + 'no_accounts_title_expense' => 'Să cream un cont de cheltuieli!', + 'no_accounts_intro_expense' => 'Nu ai încă nici un cont de cheltuieli. Cont de cheltuieli sunt locurile unde cheltuiți bani, cum ar fi magazinele și supermarketurile.', + 'no_accounts_imperative_expense' => 'Cont de cheltuieli sunt create automat când creați tranzacții, dar puteți crea și una manuală, dacă doriți. Să creăm unul acum:', + 'no_accounts_create_expense' => 'Creați un cont de cheltuieli', + 'no_accounts_title_revenue' => 'Să cream un cont de venituri!', + 'no_accounts_intro_revenue' => 'Nu ai încă nici un cont de venituri.Conturile de venituri sunt locurile de unde primiți bani, cum ar fi angajatorul dvs.', + 'no_accounts_imperative_revenue' => 'Conturile de venituri sunt create automat când creați tranzacții, dar puteți crea și una manuală, dacă doriți. Să creăm unul acum:', + 'no_accounts_create_revenue' => 'Creați un cont de venituri', + 'no_accounts_title_liabilities' => 'Să cream un provizion!', + 'no_accounts_intro_liabilities' => 'Nu ai încă nici un provizion. Provizioanele sunt conturile care vă înregistrează cardurile de credit, împrumuturile și alte datorii.', + 'no_accounts_imperative_liabilities' => 'Nu trebuie să utilizați această funcție, dar poate fi utilă dacă doriți să urmăriți aceste lucruri.', + 'no_accounts_create_liabilities' => 'Creați un provizion', + 'no_budgets_title_default' => 'Să cream un provizion', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'Nu ai încă nici un buget. Bugetele sunt folosite pentru a vă organiza cheltuielile în grupuri logice, pe care le puteți supune unei limite de cheltuieli.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Bugetele sunt instrumentele de bază ale gestiunii financiare. Să creăm unul acum:', + 'no_budgets_create_default' => 'Creați un buget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Să cream o categorie!', + 'no_categories_intro_default' => 'Nu ai încă nici o categorie. Categoriile sunt utilizate pentru a regla tranzacțiile și a le eticheta cu categoria lor desemnată.', + 'no_categories_imperative_default' => 'Categoriile sunt create automat atunci când creați tranzacții, dar puteți crea și una manuală. Să creăm una acum:', + 'no_categories_create_default' => 'Creați o categorie', + 'no_tags_title_default' => 'Să cream o eticheta!', + 'no_tags_intro_default' => 'Nu ai încă nici o eticheta. Etichetele sunt utilizate pentru etichetarea tranzacțiilor cu cuvinte cheie specifice.', + 'no_tags_imperative_default' => 'Etichetele sunt create automat atunci când creați tranzacții, dar puteți crea și una manuală. Să creăm una acum:', + 'no_tags_create_default' => 'Creați o etichetă', + 'no_transactions_title_withdrawal' => 'Să cream o cheltuială!', + 'no_transactions_intro_withdrawal' => 'Nu ai încă nici o cheltuială. Trebuie să creați cheltuieli pentru a începe să vă gestionați finanțele.', + 'no_transactions_imperative_withdrawal' => 'Ai cheltuit niște bani? Atunci ar trebui să o scrieți:', + 'no_transactions_create_withdrawal' => 'Creați o cheltuială', + 'no_transactions_title_deposit' => 'Să creăm niște venituri!', + 'no_transactions_intro_deposit' => 'Nu ai încă nici un venit înregistrat. Ar trebui să creați intrări de venituri pentru a începe să vă gestionați finanțele.', + 'no_transactions_imperative_deposit' => 'Ai primit niște bani? Atunci ar trebui să o scrieți:', + 'no_transactions_create_deposit' => 'Creați un depozit', + 'no_transactions_title_transfers' => 'Să cream un transfer!', + 'no_transactions_intro_transfers' => 'Nu ai încă nici o transfer. Când transferați bani între contul de active, acesta este înregistrat ca transfer.', + 'no_transactions_imperative_transfers' => 'Ai mutat niște bani? Atunci ar trebui să o scrieți:', + 'no_transactions_create_transfers' => 'Creați un transfer', + 'no_piggies_title_default' => 'Să cream o pușculiță!', + 'no_piggies_intro_default' => 'Nu ai încă nici o pușculiță. Puteți crea pușculita pentru a vă împărți economiile și pentru a urmări ceea ce economisiți.', + 'no_piggies_imperative_default' => 'Aveți lucruri pentru care economisiți bani? Creați o pușculiță și urmăriți-o:', + 'no_piggies_create_default' => 'Creați o nouă pușculiță', + 'no_bills_title_default' => 'Să cream o factură!', + 'no_bills_intro_default' => 'Nu ai încă nici o factură. Puteți crea facturi pentru a urmări cheltuielile obișnuite, cum ar fi chiria sau asigurarea.', + 'no_bills_imperative_default' => 'Aveți astfel de facturi obișnuite? Creați o factură și țineți evidența plăților dvs.:', + 'no_bills_create_default' => 'Creați o factură', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Tranzacții recurente', - 'repeat_until_in_past' => 'Această tranzacție recurentă a încetat să se mai repete la :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Să cream o tranzacție recurentă!', - 'no_recurring_intro_default' => 'Nu ai încă nici o tranzacție recurentă. Puteți utiliza aceste pentru a face Firefly III să creeze automat tranzacții pentru dvs..', - 'no_recurring_imperative_default' => 'Aceasta este o caracteristică destul de avansată, dar poate fi extrem de utilă. Asigurați-vă că ați citit documentația (?) - pictograma din colțul din dreapta sus) înainte de a continua.', - 'no_recurring_create_default' => 'Creați o tranzacție recurentă', - 'make_new_recurring' => 'Creați o tranzacție recurentă', - 'recurring_daily' => 'Zilnic', - 'recurring_weekly' => 'În fiecare săptămână :weekday', - 'recurring_weekly_skip' => 'Fiecare :skip(st/nd/rd/th) săptămână în :weekday', - 'recurring_monthly' => 'În fiecare lună in ziua de :dayOfMonth(st/nd/rd/th)', - 'recurring_monthly_skip' => 'În fiecare :skip(st/nd/rd/th) lună in ziua de :dayOfMonth(st/nd/rd/th)', - 'recurring_ndom' => 'În fiecare lună pe :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'În fiecare an :date', - 'overview_for_recurrence' => 'Prezentare generală a tranzacției recurente ":title"', - 'warning_duplicates_repetitions' => 'În cazuri rare, datele apar de două ori în această listă. Acest lucru se poate întâmpla când mai multe repetări se ciocnesc. Firefly III va genera întotdeauna o tranzacție pe zi.', - 'created_transactions' => 'Operațiuni înrudite', - 'expected_withdrawals' => 'Retragerile preconizate', - 'expected_deposits' => 'Depozitele preconizate', - 'expected_transfers' => 'Transferurile preconizate', - 'created_withdrawals' => 'Retragerile create', - 'created_deposits' => 'Depozitele create', - 'created_transfers' => 'Transferurile create', - 'recurring_info' => 'Tranzacție recurentă :count / :total', - 'created_from_recurrence' => 'Creat din tranzacții recurente ":title" (#:id)', - 'recurring_never_cron' => 'Se pare că cron-job-ul necesar pentru a susține tranzacțiile recurente nu a avut loc niciodată. Acest lucru este, desigur, normal când ați instalat Firefly III, dar acest lucru ar trebui să fie ceva de instalat cât mai curând posibil. Consultați paginile de ajutor utilizând pictograma (?) - în colțul din dreapta sus al paginii.', - 'recurring_cron_long_ago' => 'Se pare că au trecut mai mult de 36 de ore de când cron-job-ul pentru susținerea tranzacțiilor recurente a fost utilizat. Sunteți sigur că a fost configurat corect? Consultați paginile de ajutor utilizând pictograma (?) - în colțul din dreapta sus al paginii.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Tranzacții recurente', + 'repeat_until_in_past' => 'Această tranzacție recurentă a încetat să se mai repete la :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Să cream o tranzacție recurentă!', + 'no_recurring_intro_default' => 'Nu ai încă nici o tranzacție recurentă. Puteți utiliza aceste pentru a face Firefly III să creeze automat tranzacții pentru dvs..', + 'no_recurring_imperative_default' => 'Aceasta este o caracteristică destul de avansată, dar poate fi extrem de utilă. Asigurați-vă că ați citit documentația (?) - pictograma din colțul din dreapta sus) înainte de a continua.', + 'no_recurring_create_default' => 'Creați o tranzacție recurentă', + 'make_new_recurring' => 'Creați o tranzacție recurentă', + 'recurring_daily' => 'Zilnic', + 'recurring_weekly' => 'În fiecare săptămână :weekday', + 'recurring_weekly_skip' => 'Fiecare :skip(st/nd/rd/th) săptămână în :weekday', + 'recurring_monthly' => 'În fiecare lună in ziua de :dayOfMonth(st/nd/rd/th)', + 'recurring_monthly_skip' => 'În fiecare :skip(st/nd/rd/th) lună in ziua de :dayOfMonth(st/nd/rd/th)', + 'recurring_ndom' => 'În fiecare lună pe :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'În fiecare an :date', + 'overview_for_recurrence' => 'Prezentare generală a tranzacției recurente ":title"', + 'warning_duplicates_repetitions' => 'În cazuri rare, datele apar de două ori în această listă. Acest lucru se poate întâmpla când mai multe repetări se ciocnesc. Firefly III va genera întotdeauna o tranzacție pe zi.', + 'created_transactions' => 'Operațiuni înrudite', + 'expected_withdrawals' => 'Retragerile preconizate', + 'expected_deposits' => 'Depozitele preconizate', + 'expected_transfers' => 'Transferurile preconizate', + 'created_withdrawals' => 'Retragerile create', + 'created_deposits' => 'Depozitele create', + 'created_transfers' => 'Transferurile create', + 'recurring_info' => 'Tranzacție recurentă :count / :total', + 'created_from_recurrence' => 'Creat din tranzacții recurente ":title" (#:id)', + 'recurring_never_cron' => 'Se pare că cron-job-ul necesar pentru a susține tranzacțiile recurente nu a avut loc niciodată. Acest lucru este, desigur, normal când ați instalat Firefly III, dar acest lucru ar trebui să fie ceva de instalat cât mai curând posibil. Consultați paginile de ajutor utilizând pictograma (?) - în colțul din dreapta sus al paginii.', + 'recurring_cron_long_ago' => 'Se pare că au trecut mai mult de 36 de ore de când cron-job-ul pentru susținerea tranzacțiilor recurente a fost utilizat. Sunteți sigur că a fost configurat corect? Consultați paginile de ajutor utilizând pictograma (?) - în colțul din dreapta sus al paginii.', - 'create_new_recurrence' => 'Creați o nouă tranzacție recurentă', - 'help_first_date' => 'Indicați prima recurență așteptată. Aceasta trebuie să fie în viitor.', - 'help_first_date_no_past' => 'Indicați prima recurență așteptată. Firefly III nu va crea tranzacții în trecut.', - 'no_currency' => '(nici o monedă)', - 'mandatory_for_recurring' => 'Informații obligatorii despre recurență', - 'mandatory_for_transaction' => 'Informații obligatorii despre tranzacții', - 'optional_for_recurring' => 'Informații opționale despre recurență', - 'optional_for_transaction' => 'Informații opționale despre tranzacții', - 'change_date_other_options' => 'Modificați "prima dată" pentru a vedea mai multe opțiuni.', - 'mandatory_fields_for_tranaction' => 'Valorile de aici vor rezulta în tranzacția (tranzacțiile) care se creează', - 'click_for_calendar' => 'Dați clic aici pentru un calendar care vă arată când tranzacția se va repeta.', - 'repeat_forever' => 'Repetați pentru totdeauna', - 'repeat_until_date' => 'Repetați până la data', - 'repeat_times' => 'Repetați de mai multe ori', - 'recurring_skips_one' => 'Toate celelalte', - 'recurring_skips_more' => 'Sari peste :count apariții', - 'store_new_recurrence' => 'Salvați tranzacție recurentă', - 'stored_new_recurrence' => 'tranzacție recurentă ":title" salvată cu succes.', - 'edit_recurrence' => 'Editați tranzacția recurentă ":title"', - 'recurring_repeats_until' => 'Se repetă până la :date', - 'recurring_repeats_forever' => 'Se repetă pentru totdeauna', - 'recurring_repeats_x_times' => 'Repetă :count time | Repetă de :count ori', - 'update_recurrence' => 'Actualizați tranzacția recurentă', - 'updated_recurrence' => 'Tranzacție recurentă ":title" a fost actualizată', - 'recurrence_is_inactive' => 'Această tranzacție recurentă nu este activă și nu va genera noi tranzacții.', - 'delete_recurring' => 'Șterge tranzacția recurentă ":title"', - 'new_recurring_transaction' => 'Tranzacție recurentă nouă', - 'help_weekend' => 'Ce ar trebui să facă Firefly III atunci când tranzacția recurentă cade într-o sâmbătă sau duminică?', - 'do_nothing' => 'Doar creați tranzacția', - 'skip_transaction' => 'Omiteți apariția', - 'jump_to_friday' => 'Creați tranzacția din vineri precedentă', - 'jump_to_monday' => 'Creați tranzacția de luni viitoare', - 'will_jump_friday' => 'Va fi creat vineri în loc de weekend.', - 'will_jump_monday' => 'Va fi creat luni, în loc de weekend.', - 'except_weekends' => 'Cu excepția weekend-urilor', - 'recurrence_deleted' => 'tranzacție recurentă ":title" ștearsă', + 'create_new_recurrence' => 'Creați o nouă tranzacție recurentă', + 'help_first_date' => 'Indicați prima recurență așteptată. Aceasta trebuie să fie în viitor.', + 'help_first_date_no_past' => 'Indicați prima recurență așteptată. Firefly III nu va crea tranzacții în trecut.', + 'no_currency' => '(nici o monedă)', + 'mandatory_for_recurring' => 'Informații obligatorii despre recurență', + 'mandatory_for_transaction' => 'Informații obligatorii despre tranzacții', + 'optional_for_recurring' => 'Informații opționale despre recurență', + 'optional_for_transaction' => 'Informații opționale despre tranzacții', + 'change_date_other_options' => 'Modificați "prima dată" pentru a vedea mai multe opțiuni.', + 'mandatory_fields_for_tranaction' => 'Valorile de aici vor rezulta în tranzacția (tranzacțiile) care se creează', + 'click_for_calendar' => 'Dați clic aici pentru un calendar care vă arată când tranzacția se va repeta.', + 'repeat_forever' => 'Repetați pentru totdeauna', + 'repeat_until_date' => 'Repetați până la data', + 'repeat_times' => 'Repetați de mai multe ori', + 'recurring_skips_one' => 'Toate celelalte', + 'recurring_skips_more' => 'Sari peste :count apariții', + 'store_new_recurrence' => 'Salvați tranzacție recurentă', + 'stored_new_recurrence' => 'tranzacție recurentă ":title" salvată cu succes.', + 'edit_recurrence' => 'Editați tranzacția recurentă ":title"', + 'recurring_repeats_until' => 'Se repetă până la :date', + 'recurring_repeats_forever' => 'Se repetă pentru totdeauna', + 'recurring_repeats_x_times' => 'Repetă :count time | Repetă de :count ori', + 'update_recurrence' => 'Actualizați tranzacția recurentă', + 'updated_recurrence' => 'Tranzacție recurentă ":title" a fost actualizată', + 'recurrence_is_inactive' => 'Această tranzacție recurentă nu este activă și nu va genera noi tranzacții.', + 'delete_recurring' => 'Șterge tranzacția recurentă ":title"', + 'new_recurring_transaction' => 'Tranzacție recurentă nouă', + 'help_weekend' => 'Ce ar trebui să facă Firefly III atunci când tranzacția recurentă cade într-o sâmbătă sau duminică?', + 'do_nothing' => 'Doar creați tranzacția', + 'skip_transaction' => 'Omiteți apariția', + 'jump_to_friday' => 'Creați tranzacția din vineri precedentă', + 'jump_to_monday' => 'Creați tranzacția de luni viitoare', + 'will_jump_friday' => 'Va fi creat vineri în loc de weekend.', + 'will_jump_monday' => 'Va fi creat luni, în loc de weekend.', + 'except_weekends' => 'Cu excepția weekend-urilor', + 'recurrence_deleted' => 'tranzacție recurentă ":title" ștearsă', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balanța (:currency)', - 'box_spent_in_currency' => 'Cheltuit (:currency)', - 'box_earned_in_currency' => 'Câștigat (:currency)', - 'box_budgeted_in_currency' => 'Bugetat (:currency)', - 'box_bill_paid_in_currency' => 'Facturi plătite (:currency)', - 'box_bill_unpaid_in_currency' => 'Facturi neplătite (:currency)', - 'box_left_to_spend_in_currency' => 'Rămas de cheltuit (:currency)', - 'box_net_worth_in_currency' => 'Valoarea netă (:currency)', - 'box_spend_per_day' => 'Rămas de cheltui pe zi: :amount', + 'box_balance_in_currency' => 'Balanța (:currency)', + 'box_spent_in_currency' => 'Cheltuit (:currency)', + 'box_earned_in_currency' => 'Câștigat (:currency)', + 'box_budgeted_in_currency' => 'Bugetat (:currency)', + 'box_bill_paid_in_currency' => 'Facturi plătite (:currency)', + 'box_bill_unpaid_in_currency' => 'Facturi neplătite (:currency)', + 'box_left_to_spend_in_currency' => 'Rămas de cheltuit (:currency)', + 'box_net_worth_in_currency' => 'Valoarea netă (:currency)', + 'box_spend_per_day' => 'Rămas de cheltui pe zi: :amount', // debug page - 'debug_page' => 'Pagina de depanare', - 'debug_submit_instructions' => 'Dacă întâmpini probleme, poți folosi informațiile din această casetă ca informație de depanare. Vă rugăm să copiați și lipiți într-o problemă nouă sau existentă GitHub. Va genera un tabel care poate fi folosit pentru a vă diagnostica rapid problema.', - 'debug_pretty_table' => 'Dacă copiați/lipiți căsuța de mai jos într-o problemă GitHub, aceasta va genera un tabel. Vă rugăm să nu înconjurați acest text cu backticks sau ghilimele.', - 'debug_additional_data' => 'De asemenea, poți distribui conținutul casetei de mai jos. Poți deasemenea să copiezi și să lipești asta într-un subiect GitHub nou sau existent. Cu toate acestea, conținutul acestei rubrici poate conține informații private, cum ar fi numele contului, detaliile tranzacției sau adresele de e-mail.', + 'debug_page' => 'Pagina de depanare', + 'debug_submit_instructions' => 'Dacă întâmpini probleme, poți folosi informațiile din această casetă ca informație de depanare. Vă rugăm să copiați și lipiți într-o problemă nouă sau existentă GitHub. Va genera un tabel care poate fi folosit pentru a vă diagnostica rapid problema.', + 'debug_pretty_table' => 'Dacă copiați/lipiți căsuța de mai jos într-o problemă GitHub, aceasta va genera un tabel. Vă rugăm să nu înconjurați acest text cu backticks sau ghilimele.', + 'debug_additional_data' => 'De asemenea, poți distribui conținutul casetei de mai jos. Poți deasemenea să copiezi și să lipești asta într-un subiect GitHub nou sau existent. Cu toate acestea, conținutul acestei rubrici poate conține informații private, cum ar fi numele contului, detaliile tranzacției sau adresele de e-mail.', // object groups - 'object_groups_menu_bar' => 'Grupuri', - 'object_groups_page_title' => 'Grupuri', - 'object_groups_breadcrumb' => 'Grupuri', - 'object_groups_index' => 'Prezentare generală', - 'object_groups' => 'Grupuri', - 'object_groups_empty_explain' => 'Unele lucruri din Firefly III pot fi împărțite în grupuri. Pușculițele, de exemplu, prezintă un câmp "Group" în editare și creează ecrane. Când setați acest câmp, puteți edita numele și ordinea grupurilor de pe această pagină. Pentru mai multe informații, vedeți paginile de ajutor din colțul din dreapta sus, sub pictograma (?).', - 'object_group_title' => 'Titlu', - 'edit_object_group' => 'Editați grupul ":title"', - 'delete_object_group' => 'Șterge grupul ":title"', - 'update_object_group' => 'Actualizați grupul', - 'updated_object_group' => 'Grup actualizat cu succes ":title"', - 'deleted_object_group' => 'Grup ":title" șters cu succes', - 'object_group' => 'Grup', + 'object_groups_menu_bar' => 'Grupuri', + 'object_groups_page_title' => 'Grupuri', + 'object_groups_breadcrumb' => 'Grupuri', + 'object_groups_index' => 'Prezentare generală', + 'object_groups' => 'Grupuri', + 'object_groups_empty_explain' => 'Unele lucruri din Firefly III pot fi împărțite în grupuri. Pușculițele, de exemplu, prezintă un câmp "Group" în editare și creează ecrane. Când setați acest câmp, puteți edita numele și ordinea grupurilor de pe această pagină. Pentru mai multe informații, vedeți paginile de ajutor din colțul din dreapta sus, sub pictograma (?).', + 'object_group_title' => 'Titlu', + 'edit_object_group' => 'Editați grupul ":title"', + 'delete_object_group' => 'Șterge grupul ":title"', + 'update_object_group' => 'Actualizați grupul', + 'updated_object_group' => 'Grup actualizat cu succes ":title"', + 'deleted_object_group' => 'Grup ":title" șters cu succes', + 'object_group' => 'Grup', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/ro_RO/validation.php b/resources/lang/ro_RO/validation.php index e2bf8478f8..36a56a0d0a 100644 --- a/resources/lang/ro_RO/validation.php +++ b/resources/lang/ro_RO/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Nu aveți drepturile de acces corecte pentru această administrare.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/ru_RU/firefly.php b/resources/lang/ru_RU/firefly.php index 208e1920c5..674d231ebd 100644 --- a/resources/lang/ru_RU/firefly.php +++ b/resources/lang/ru_RU/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Закрыть', - 'actions' => 'Действия', - 'edit' => 'Изменить', - 'delete' => 'Удалить', - 'split' => 'Разделить', - 'single_split' => 'Разделённая транзакция', - 'clone' => 'Клонировать', - 'clone_and_edit' => 'Клонировать и редактировать', - 'confirm_action' => 'Подтвердите действие', - 'last_seven_days' => 'Последние 7 дней', - 'last_thirty_days' => 'Последние 30 дней', - 'last_180_days' => 'Последние 180 дней', - 'month_to_date' => 'Месяц до даты', - 'year_to_date' => 'Лет до даты', - 'YTD' => 'YTD', - 'welcome_back' => 'Что происходит с моими финансами?', - 'everything' => 'Всё', - 'today' => 'сегодня', - 'customRange' => 'Другой интервал', - 'date_range' => 'Диапазон дат', - 'apply' => 'Применить', - 'select_date' => 'Выбрать дату...', - 'cancel' => 'Отмена', - 'from' => 'От', - 'to' => 'Куда', - 'structure' => 'Структура', - 'help_translating' => 'Этот текст справки пока не доступен на русском языке. Но вы можете помочь с переводом.', - 'showEverything' => 'Показать всё', - 'never' => 'Никогда', - 'no_results_for_empty_search' => 'Результатов не найдено.', - 'removed_amount' => 'Снято :amount', - 'added_amount' => 'Добавлено :amount', - 'asset_account_role_help' => 'Вы сможете произвести любые дополнительные настройки позже.', - 'Opening balance' => 'Баланс на момент открытия', - 'create_new_stuff' => 'Создать новый объект', - 'new_withdrawal' => 'Новый расход', - 'create_new_transaction' => 'Создать новую транзакцию', - 'sidebar_frontpage_create' => 'Создать', - 'new_transaction' => 'Новая транзакция', - 'no_rules_for_bill' => 'С этим счётом не связано ни одно правило.', - 'go_to_asset_accounts' => 'Просмотр ваших основных счетов', - 'go_to_budgets' => 'Перейти к вашим бюджетам', - 'go_to_withdrawals' => 'Перейти к вашим расходам', - 'clones_journal_x' => 'Эта транзакция является клоном ":description" (#:id)', - 'go_to_categories' => 'Перейти к вашим категориям', - 'go_to_bills' => 'Перейти к вашим счетам на оплату', - 'go_to_expense_accounts' => 'Перейти к вашим счетам расходов', - 'go_to_revenue_accounts' => 'Перейти к вашим счетам доходов', - 'go_to_piggies' => 'Перейти к вашим копилкам', - 'new_deposit' => 'Новый доход', - 'new_transfer' => 'Новый перевод', - 'new_transfers' => 'Новый перевод', - 'new_asset_account' => 'Новый счет активов', - 'new_expense_account' => 'Новый счёт расходов', - 'new_revenue_account' => 'Новый счёт доходов', - 'new_liabilities_account' => 'Новый долг', - 'new_budget' => 'Новый бюджет', - 'new_bill' => 'Новый счёт к оплате', - 'block_account_logout' => 'Вы вышли из системы. Заблокированные учётные записи не могут использовать этот сайт. Вы зарегистрировались с действующим адресом электронной почты?', - 'flash_success' => 'Успешно!', - 'flash_info' => 'Сообщение', - 'flash_warning' => 'Предупреждение!', - 'flash_error' => 'Ошибка!', - 'flash_danger' => 'Опасность!', - 'flash_info_multiple' => 'Есть одно сообщение|Есть :count сообщений', - 'flash_error_multiple' => 'Есть одна ошибка|Есть :count ошибок', - 'net_worth' => 'Мои сбережения', - 'help_for_this_page' => 'Справка по этой странице', - 'help_for_this_page_body' => 'Вы можете найти подробную информацию об этой странице в документации.', - 'two_factor_welcome' => 'Здравствуйте!', - 'two_factor_enter_code' => 'Чтобы продолжить, введите ваш код двухфакторной аутентификации. Ваше приложение может сгенерировать его для вас.', - 'two_factor_code_here' => 'Введите код здесь', - 'two_factor_title' => 'Двухфакторная аутентификация', - 'authenticate' => 'Аутентифицироваться', - 'two_factor_forgot_title' => 'Утерян код для двухфакторной аутентификации', - 'two_factor_forgot' => 'Я забыл свой ключ для двухфакторной авторизации.', - 'two_factor_lost_header' => 'Потеряли вашу двухфакторную аутентификацию?', - 'two_factor_lost_intro' => 'Если вы потеряли также и ваши резервные коды, вам не повезло. Эту проблему вы не сможете решить через веб-интерфейс. Теперь у вас есть два варианта.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Иначе, свяжитесь по email с владельцем сайта :site_owner и попросите сбросить вашу двухфакторную аутентификацию.', - 'mfa_backup_code' => 'Вы использовали резервный код для входа в Firefly III. Его нельзя использовать второй раз, поэтому вычеркните его из своего списка.', - 'pref_two_factor_new_backup_codes' => 'Получить новые коды резервирования', - 'pref_two_factor_backup_code_count' => 'У вас есть :count действующих резервных кодов.|У вас есть :count действующих резервных кодов.', - '2fa_i_have_them' => 'Я всё сохранил!', - 'warning_much_data' => 'Загрузка данных за :days дней может занять некоторое время.', - 'registered' => 'Вы зарегистрировались успешно!', - 'Default asset account' => 'Счёт по умолчанию', - 'no_budget_pointer' => 'Похоже, у вас пока нет бюджетов. Вы должны создать их на странице Бюджеты. Бюджеты могут помочь вам отслеживать расходы.', - 'no_bill_pointer' => 'Похоже, у вас пока нет счетов на оплату. Вы должны создать их на странице Счета на оплату. Счета на оплату могут помочь вам отслеживать расходы.', - 'Savings account' => 'Сберегательный счет', - 'Credit card' => 'Кредитная карта', - 'source_accounts' => 'Счёт-источник|Счета-источники', - 'destination_accounts' => 'Счёт назначения|Счета назначения', - 'user_id_is' => 'Ваш id пользователя :user', - 'field_supports_markdown' => 'Это поле поддерживает Markdown.', - 'need_more_help' => 'Если вам нужна дополнительная помощь по использованию Firefly III, пожалуйста, откройте issue на Github (желательно, на английском языке).', - 'reenable_intro_text' => 'Вы также можете повторно включить обучение для начинающих.', - 'intro_boxes_after_refresh' => 'Блоки с подсказками появятся, когда вы обновите страницу.', - 'show_all_no_filter' => 'Показать все транзакции без группировки по датам.', - 'expenses_by_category' => 'Расходы по категориям', - 'expenses_by_budget' => 'Расходы по бюджетам', - 'income_by_category' => 'Доход по категориям', - 'expenses_by_asset_account' => 'Расходы по основному счёту', - 'expenses_by_expense_account' => 'Расходы по счёту расходов', - 'cannot_redirect_to_account' => 'Firefly III не может перенаправить вас на правильную страницу. Приносим извинения.', - 'sum_of_expenses' => 'Сумма расходов', - 'sum_of_income' => 'Сумма дохода', - 'liabilities' => 'Долговые счета', - 'spent_in_specific_budget' => 'Расходы по бюджету ":budget"', - 'spent_in_specific_double' => 'Расходы по счёту ":account"', - 'earned_in_specific_double' => 'Доходы по счёту ":account"', - 'source_account' => 'Счёт-источник', - 'source_account_reconciliation' => 'Вы не можете редактировать счёт-источник для сверяемой транзакции.', - 'destination_account' => 'Счёт назначения', - 'destination_account_reconciliation' => 'Вы не можете редактировать счёт назначения для сверяемой транзакции.', - 'sum_of_expenses_in_budget' => 'Сумма расходов по бюджету ":budget"', - 'left_in_budget_limit' => 'Осталось потратить в соответствии с бюджетом', - 'current_period' => 'Текущий период', - 'show_the_current_period_and_overview' => 'Показать текущий период и обзор', - 'pref_languages_locale' => 'Для корректной работы с языками, отличными от английского, ваша операционная система должна отдавать корректную информацию о локали. Если это не так, валюты, даты и суммы могут отображаться некорректно.', - 'budget_in_period' => 'Все транзакции для бюджета ":name" между :start и :end в :currency', - 'chart_budget_in_period' => 'Диаграмма всех транзакций для бюджета ":name" между :start и :end в :currency', - 'chart_budget_in_period_only_currency' => 'Ваш бюджет использует валюту :currency, поэтому будут показаны только транзакции в :currency.', - 'chart_account_in_period' => 'Диаграмма всех транзакций для счёта ":name" (:balance) между :start и :end', - 'chart_category_in_period' => 'Диаграмма всех транзакций для категории ":name" между :start и :end', - 'chart_category_all' => 'Диаграмма всех транзакций для категории ":name"', - 'clone_withdrawal' => 'Клонировать этот расход', - 'clone_deposit' => 'Клонировать этот доход', - 'clone_transfer' => 'Клонировать этот трансфер', - 'multi_select_no_selection' => 'Ничего не выбрано', - 'multi_select_select_all' => 'Выбрать все', - 'multi_select_n_selected' => 'выбранные', - 'multi_select_all_selected' => 'Все выбранные', - 'multi_select_filter_placeholder' => 'Поиск..', - 'intro_next_label' => 'Далее', - 'intro_prev_label' => 'Назад', - 'intro_skip_label' => 'Пропустить', - 'intro_done_label' => 'Завершить', - 'between_dates_breadcrumb' => 'Между :start и :end', - 'all_journals_without_budget' => 'Все транзакции без бюджета', - 'journals_without_budget' => 'Транзакции без бюджета', - 'all_journals_without_category' => 'Все транзакции без категории', - 'journals_without_category' => 'Транзакции без категории', - 'all_journals_for_account' => 'Все транзакции для счёта :name', - 'chart_all_journals_for_account' => 'Диаграмма всех транзакций для счёта :name', - 'journals_in_period_for_account' => 'Все транзакции для счёта :name между :start и :end', - 'journals_in_period_for_account_js' => 'Все транзакции по счету {title} между {start} и {end}', - 'transferred' => 'Переведено', - 'all_withdrawal' => 'Все расходы', - 'all_transactions' => 'Все транзакции', - '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' => 'Все транзакции для категории :name между :start и :end', - 'journals_in_period_for_tag' => 'Все транзакции для метки :tag между :start и :end', - '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 не может форматировать денежные суммы, потому что на вашем сервере отсутствуют необходимые пакеты. Инструкция, как это сделать.', - 'quickswitch' => 'Быстрое переключение', - 'sign_in_to_start' => 'Войдите, чтобы начать сессию', - 'sign_in' => 'Войти', - 'register_new_account' => 'Зарегистрировать новый счёт', - 'forgot_my_password' => 'Я забыл пароль', - 'problems_with_input' => 'Есть кое-какие проблемы с введёнными вами данными.', - 'reset_password' => 'Восстановление пароля', - 'button_reset_password' => 'Сбросить пароль', - 'reset_button' => 'Сбросить', - 'want_to_login' => 'Я хочу войти', - 'login_page_title' => 'Вход в Firefly III', - 'register_page_title' => 'Регистрация в Firefly III', - 'forgot_pw_page_title' => 'Забыли свой пароль к Firefly III?', - 'reset_pw_page_title' => 'Сбросить свой пароль к Firefly III', - 'cannot_reset_demo_user' => 'Вы не можете сбросить пароль демонстрационной учётной записи.', - 'no_att_demo_user' => 'Демо-пользователь не может загружать вложения.', - 'button_register' => 'Регистрация', - 'authorization' => 'Авторизация', - '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' => 'Ожидаемые ежемесячные расходы', - 'per_period_sum_3M' => 'Ожидаемые ежеквартальные расходы', - 'per_period_sum_6M' => 'Ожидаемые расходы раз в полгода', - 'per_period_sum_1Y' => 'Ожидаемые ежегодные расходы', - 'average_per_bill' => 'в среднем на счёт', - 'expected_total' => 'ожидаемый итог', - 'reconciliation_account_name' => ':name сверка (:currency)', - 'saved' => 'Сохранено', - 'advanced_options' => 'Расширенные настройки', - 'advanced_options_explain' => 'На некоторых страницах Firefly III за этой кнопкой скрыты расширенные опции. На этой странице нет ничего фантастического, но проверьте на других страницах!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Закрыть', + 'actions' => 'Действия', + 'edit' => 'Изменить', + 'delete' => 'Удалить', + 'split' => 'Разделить', + 'single_split' => 'Разделённая транзакция', + 'clone' => 'Клонировать', + 'clone_and_edit' => 'Клонировать и редактировать', + 'confirm_action' => 'Подтвердите действие', + 'last_seven_days' => 'Последние 7 дней', + 'last_thirty_days' => 'Последние 30 дней', + 'last_180_days' => 'Последние 180 дней', + 'month_to_date' => 'Месяц до даты', + 'year_to_date' => 'Лет до даты', + 'YTD' => 'YTD', + 'welcome_back' => 'Что происходит с моими финансами?', + 'everything' => 'Всё', + 'today' => 'сегодня', + 'customRange' => 'Другой интервал', + 'date_range' => 'Диапазон дат', + 'apply' => 'Применить', + 'select_date' => 'Выбрать дату...', + 'cancel' => 'Отмена', + 'from' => 'От', + 'to' => 'Куда', + 'structure' => 'Структура', + 'help_translating' => 'Этот текст справки пока не доступен на русском языке. Но вы можете помочь с переводом.', + 'showEverything' => 'Показать всё', + 'never' => 'Никогда', + 'no_results_for_empty_search' => 'Результатов не найдено.', + 'removed_amount' => 'Снято :amount', + 'added_amount' => 'Добавлено :amount', + 'asset_account_role_help' => 'Вы сможете произвести любые дополнительные настройки позже.', + 'Opening balance' => 'Баланс на момент открытия', + 'create_new_stuff' => 'Создать новый объект', + 'new_withdrawal' => 'Новый расход', + 'create_new_transaction' => 'Создать новую транзакцию', + 'sidebar_frontpage_create' => 'Создать', + 'new_transaction' => 'Новая транзакция', + 'no_rules_for_bill' => 'С этим счётом не связано ни одно правило.', + 'go_to_asset_accounts' => 'Просмотр ваших основных счетов', + 'go_to_budgets' => 'Перейти к вашим бюджетам', + 'go_to_withdrawals' => 'Перейти к вашим расходам', + 'clones_journal_x' => 'Эта транзакция является клоном ":description" (#:id)', + 'go_to_categories' => 'Перейти к вашим категориям', + 'go_to_bills' => 'Перейти к вашим счетам на оплату', + 'go_to_expense_accounts' => 'Перейти к вашим счетам расходов', + 'go_to_revenue_accounts' => 'Перейти к вашим счетам доходов', + 'go_to_piggies' => 'Перейти к вашим копилкам', + 'new_deposit' => 'Новый доход', + 'new_transfer' => 'Новый перевод', + 'new_transfers' => 'Новый перевод', + 'new_asset_account' => 'Новый счет активов', + 'new_expense_account' => 'Новый счёт расходов', + 'new_revenue_account' => 'Новый счёт доходов', + 'new_liabilities_account' => 'Новый долг', + 'new_budget' => 'Новый бюджет', + 'new_bill' => 'Новый счёт к оплате', + 'block_account_logout' => 'Вы вышли из системы. Заблокированные учётные записи не могут использовать этот сайт. Вы зарегистрировались с действующим адресом электронной почты?', + 'flash_success' => 'Успешно!', + 'flash_info' => 'Сообщение', + 'flash_warning' => 'Предупреждение!', + 'flash_error' => 'Ошибка!', + 'flash_danger' => 'Опасность!', + 'flash_info_multiple' => 'Есть одно сообщение|Есть :count сообщений', + 'flash_error_multiple' => 'Есть одна ошибка|Есть :count ошибок', + 'net_worth' => 'Мои сбережения', + 'help_for_this_page' => 'Справка по этой странице', + 'help_for_this_page_body' => 'Вы можете найти подробную информацию об этой странице в документации.', + 'two_factor_welcome' => 'Здравствуйте!', + 'two_factor_enter_code' => 'Чтобы продолжить, введите ваш код двухфакторной аутентификации. Ваше приложение может сгенерировать его для вас.', + 'two_factor_code_here' => 'Введите код здесь', + 'two_factor_title' => 'Двухфакторная аутентификация', + 'authenticate' => 'Аутентифицироваться', + 'two_factor_forgot_title' => 'Утерян код для двухфакторной аутентификации', + 'two_factor_forgot' => 'Я забыл свой ключ для двухфакторной авторизации.', + 'two_factor_lost_header' => 'Потеряли вашу двухфакторную аутентификацию?', + 'two_factor_lost_intro' => 'Если вы потеряли также и ваши резервные коды, вам не повезло. Эту проблему вы не сможете решить через веб-интерфейс. Теперь у вас есть два варианта.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Иначе, свяжитесь по email с владельцем сайта :site_owner и попросите сбросить вашу двухфакторную аутентификацию.', + 'mfa_backup_code' => 'Вы использовали резервный код для входа в Firefly III. Его нельзя использовать второй раз, поэтому вычеркните его из своего списка.', + 'pref_two_factor_new_backup_codes' => 'Получить новые коды резервирования', + 'pref_two_factor_backup_code_count' => 'У вас есть :count действующих резервных кодов.|У вас есть :count действующих резервных кодов.', + '2fa_i_have_them' => 'Я всё сохранил!', + 'warning_much_data' => 'Загрузка данных за :days дней может занять некоторое время.', + 'registered' => 'Вы зарегистрировались успешно!', + 'Default asset account' => 'Счёт по умолчанию', + 'no_budget_pointer' => 'Похоже, у вас пока нет бюджетов. Вы должны создать их на странице Бюджеты. Бюджеты могут помочь вам отслеживать расходы.', + 'no_bill_pointer' => 'Похоже, у вас пока нет счетов на оплату. Вы должны создать их на странице Счета на оплату. Счета на оплату могут помочь вам отслеживать расходы.', + 'Savings account' => 'Сберегательный счет', + 'Credit card' => 'Кредитная карта', + 'source_accounts' => 'Счёт-источник|Счета-источники', + 'destination_accounts' => 'Счёт назначения|Счета назначения', + 'user_id_is' => 'Ваш id пользователя :user', + 'field_supports_markdown' => 'Это поле поддерживает Markdown.', + 'need_more_help' => 'Если вам нужна дополнительная помощь по использованию Firefly III, пожалуйста, откройте issue на Github (желательно, на английском языке).', + 'reenable_intro_text' => 'Вы также можете повторно включить обучение для начинающих.', + 'intro_boxes_after_refresh' => 'Блоки с подсказками появятся, когда вы обновите страницу.', + 'show_all_no_filter' => 'Показать все транзакции без группировки по датам.', + 'expenses_by_category' => 'Расходы по категориям', + 'expenses_by_budget' => 'Расходы по бюджетам', + 'income_by_category' => 'Доход по категориям', + 'expenses_by_asset_account' => 'Расходы по основному счёту', + 'expenses_by_expense_account' => 'Расходы по счёту расходов', + 'cannot_redirect_to_account' => 'Firefly III не может перенаправить вас на правильную страницу. Приносим извинения.', + 'sum_of_expenses' => 'Сумма расходов', + 'sum_of_income' => 'Сумма дохода', + 'liabilities' => 'Долговые счета', + 'spent_in_specific_budget' => 'Расходы по бюджету ":budget"', + 'spent_in_specific_double' => 'Расходы по счёту ":account"', + 'earned_in_specific_double' => 'Доходы по счёту ":account"', + 'source_account' => 'Счёт-источник', + 'source_account_reconciliation' => 'Вы не можете редактировать счёт-источник для сверяемой транзакции.', + 'destination_account' => 'Счёт назначения', + 'destination_account_reconciliation' => 'Вы не можете редактировать счёт назначения для сверяемой транзакции.', + 'sum_of_expenses_in_budget' => 'Сумма расходов по бюджету ":budget"', + 'left_in_budget_limit' => 'Осталось потратить в соответствии с бюджетом', + 'current_period' => 'Текущий период', + 'show_the_current_period_and_overview' => 'Показать текущий период и обзор', + 'pref_languages_locale' => 'Для корректной работы с языками, отличными от английского, ваша операционная система должна отдавать корректную информацию о локали. Если это не так, валюты, даты и суммы могут отображаться некорректно.', + 'budget_in_period' => 'Все транзакции для бюджета ":name" между :start и :end в :currency', + 'chart_budget_in_period' => 'Диаграмма всех транзакций для бюджета ":name" между :start и :end в :currency', + 'chart_budget_in_period_only_currency' => 'Ваш бюджет использует валюту :currency, поэтому будут показаны только транзакции в :currency.', + 'chart_account_in_period' => 'Диаграмма всех транзакций для счёта ":name" (:balance) между :start и :end', + 'chart_category_in_period' => 'Диаграмма всех транзакций для категории ":name" между :start и :end', + 'chart_category_all' => 'Диаграмма всех транзакций для категории ":name"', + 'clone_withdrawal' => 'Клонировать этот расход', + 'clone_deposit' => 'Клонировать этот доход', + 'clone_transfer' => 'Клонировать этот трансфер', + 'multi_select_no_selection' => 'Ничего не выбрано', + 'multi_select_select_all' => 'Выбрать все', + 'multi_select_n_selected' => 'выбранные', + 'multi_select_all_selected' => 'Все выбранные', + 'multi_select_filter_placeholder' => 'Поиск..', + 'intro_next_label' => 'Далее', + 'intro_prev_label' => 'Назад', + 'intro_skip_label' => 'Пропустить', + 'intro_done_label' => 'Завершить', + 'between_dates_breadcrumb' => 'Между :start и :end', + 'all_journals_without_budget' => 'Все транзакции без бюджета', + 'journals_without_budget' => 'Транзакции без бюджета', + 'all_journals_without_category' => 'Все транзакции без категории', + 'journals_without_category' => 'Транзакции без категории', + 'all_journals_for_account' => 'Все транзакции для счёта :name', + 'chart_all_journals_for_account' => 'Диаграмма всех транзакций для счёта :name', + 'journals_in_period_for_account' => 'Все транзакции для счёта :name между :start и :end', + 'journals_in_period_for_account_js' => 'Все транзакции по счету {title} между {start} и {end}', + 'transferred' => 'Переведено', + 'all_withdrawal' => 'Все расходы', + 'all_transactions' => 'Все транзакции', + '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' => 'Все транзакции для категории :name между :start и :end', + 'journals_in_period_for_tag' => 'Все транзакции для метки :tag между :start и :end', + '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 не может форматировать денежные суммы, потому что на вашем сервере отсутствуют необходимые пакеты. Инструкция, как это сделать.', + 'quickswitch' => 'Быстрое переключение', + 'sign_in_to_start' => 'Войдите, чтобы начать сессию', + 'sign_in' => 'Войти', + 'register_new_account' => 'Зарегистрировать новый счёт', + 'forgot_my_password' => 'Я забыл пароль', + 'problems_with_input' => 'Есть кое-какие проблемы с введёнными вами данными.', + 'reset_password' => 'Восстановление пароля', + 'button_reset_password' => 'Сбросить пароль', + 'reset_button' => 'Сбросить', + 'want_to_login' => 'Я хочу войти', + 'login_page_title' => 'Вход в Firefly III', + 'register_page_title' => 'Регистрация в Firefly III', + 'forgot_pw_page_title' => 'Забыли свой пароль к Firefly III?', + 'reset_pw_page_title' => 'Сбросить свой пароль к Firefly III', + 'cannot_reset_demo_user' => 'Вы не можете сбросить пароль демонстрационной учётной записи.', + 'no_att_demo_user' => 'Демо-пользователь не может загружать вложения.', + 'button_register' => 'Регистрация', + 'authorization' => 'Авторизация', + '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' => 'Ожидаемые ежемесячные расходы', + 'per_period_sum_3M' => 'Ожидаемые ежеквартальные расходы', + 'per_period_sum_6M' => 'Ожидаемые расходы раз в полгода', + 'per_period_sum_1Y' => 'Ожидаемые ежегодные расходы', + 'average_per_bill' => 'в среднем на счёт', + 'expected_total' => 'ожидаемый итог', + 'reconciliation_account_name' => ':name сверка (:currency)', + 'saved' => 'Сохранено', + 'advanced_options' => 'Расширенные настройки', + 'advanced_options_explain' => 'На некоторых страницах Firefly III за этой кнопкой скрыты расширенные опции. На этой странице нет ничего фантастического, но проверьте на других страницах!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Веб-хуки', - 'webhooks_breadcrumb' => 'Вебхуки', - 'webhooks_menu_disabled' => 'отключено', - 'no_webhook_messages' => 'Нет сообщений от вебхуков', - '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' => 'Проинспектировать', - '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' => 'Редактировать webhook ":title"', - 'updated_webhook' => 'Обновлен webhook ":title"', - 'edit_webhook_js' => 'Редактировать вебхук "{title}"', - 'show_webhook' => 'Вебхук ":title"', - 'webhook_was_triggered' => 'Веб-хук сработал на указанную транзакцию. Пожалуйста, дождитесь появления результатов.', - 'webhook_messages' => 'Сообщение вебхука', - 'view_message' => 'Просмотр сообщения', - 'view_attempts' => 'Просмотр неудачных попыток', - 'message_content_title' => 'Содержимое сообщения webhook', - 'message_content_help' => 'Это содержимое сообщения, которое было отправлено (или попробовало) с помощью этого веб-хука.', - 'attempt_content_title' => 'Попытки веб-хука', - 'attempt_content_help' => 'Это все неудачные попытки отправки этого веб-хук сообщения на указанный URL. Через некоторое время Firefly III прекратит попытки.', - 'no_attempts' => 'Нет неудачных попыток. Это хорошо!', - 'webhook_attempt_at' => 'Попытка в {moment}', - 'logs' => 'Логи', - 'response' => 'Ответ', - 'visit_webhook_url' => 'Посетить URL вебхука', - 'reset_webhook_secret' => 'Сбросить секрет webhook', - 'webhook_stored_link' => 'Веб-хук #{ID} ("{title}") сохранен.', - 'webhook_updated_link' => 'Веб-хук #{ID} ("{title}") обновлен.', + 'webhooks' => 'Веб-хуки', + 'webhooks_breadcrumb' => 'Вебхуки', + 'webhooks_menu_disabled' => 'отключено', + 'no_webhook_messages' => 'Нет сообщений от вебхуков', + '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' => 'Проинспектировать', + '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' => 'Редактировать webhook ":title"', + 'updated_webhook' => 'Обновлен webhook ":title"', + 'edit_webhook_js' => 'Редактировать вебхук "{title}"', + 'show_webhook' => 'Вебхук ":title"', + 'webhook_was_triggered' => 'Веб-хук сработал на указанную транзакцию. Пожалуйста, дождитесь появления результатов.', + 'webhook_messages' => 'Сообщение вебхука', + 'view_message' => 'Просмотр сообщения', + 'view_attempts' => 'Просмотр неудачных попыток', + 'message_content_title' => 'Содержимое сообщения webhook', + 'message_content_help' => 'Это содержимое сообщения, которое было отправлено (или попробовало) с помощью этого веб-хука.', + 'attempt_content_title' => 'Попытки веб-хука', + 'attempt_content_help' => 'Это все неудачные попытки отправки этого веб-хук сообщения на указанный URL. Через некоторое время Firefly III прекратит попытки.', + 'no_attempts' => 'Нет неудачных попыток. Это хорошо!', + 'webhook_attempt_at' => 'Попытка в {moment}', + 'logs' => 'Логи', + 'response' => 'Ответ', + 'visit_webhook_url' => 'Посетить URL вебхука', + 'reset_webhook_secret' => 'Сбросить секрет webhook', + 'webhook_stored_link' => 'Веб-хук #{ID} ("{title}") сохранен.', + 'webhook_updated_link' => 'Веб-хук #{ID} ("{title}") обновлен.', // API access - 'authorization_request' => 'Запрос авторизации Firefly III v:version', - 'authorization_request_intro' => 'Приложение ":client" запрашивает разрешение на доступ к вашему финансовому администрированию. Вы хотите разрешить :client доступ к этим записям?', - 'authorization_request_site' => 'Вы будете перенаправлены на :url, который будет иметь доступ к вашим данным Firefly III.', - 'authorization_request_invalid' => 'Этот запрос доступа недействителен. Пожалуйста, никогда не переходите по этой ссылке снова.', - 'scopes_will_be_able' => 'Это приложение будет иметь возможность:', - 'button_authorize' => 'Авторизация', - 'none_in_select_list' => '(нет)', - 'no_piggy_bank' => '(нет копилки)', - 'name_in_currency' => ':name в :currency', - 'paid_in_currency' => 'Оплачено в :currency', - 'unpaid_in_currency' => 'Неоплачено в :currency', - 'is_alpha_warning' => 'Вы используете АЛЬФА-версию. Будьте осторожны с ошибками и проблемами.', - 'is_beta_warning' => 'Вы используете БЕТА-версию. Будьте осторожны с ошибками и проблемами.', - 'all_destination_accounts' => 'Счета назначения', - 'all_source_accounts' => 'Счета-источники', - 'back_to_index' => 'Вернуться к содержанию', - 'cant_logout_guard' => 'Firefly III не может выйти из системы.', - 'internal_reference' => 'Внутренняя ссылка', + 'authorization_request' => 'Запрос авторизации Firefly III v:version', + 'authorization_request_intro' => 'Приложение ":client" запрашивает разрешение на доступ к вашему финансовому администрированию. Вы хотите разрешить :client доступ к этим записям?', + 'authorization_request_site' => 'Вы будете перенаправлены на :url, который будет иметь доступ к вашим данным Firefly III.', + 'authorization_request_invalid' => 'Этот запрос доступа недействителен. Пожалуйста, никогда не переходите по этой ссылке снова.', + 'scopes_will_be_able' => 'Это приложение будет иметь возможность:', + 'button_authorize' => 'Авторизация', + 'none_in_select_list' => '(нет)', + 'no_piggy_bank' => '(нет копилки)', + 'name_in_currency' => ':name в :currency', + 'paid_in_currency' => 'Оплачено в :currency', + 'unpaid_in_currency' => 'Неоплачено в :currency', + 'is_alpha_warning' => 'Вы используете АЛЬФА-версию. Будьте осторожны с ошибками и проблемами.', + 'is_beta_warning' => 'Вы используете БЕТА-версию. Будьте осторожны с ошибками и проблемами.', + 'all_destination_accounts' => 'Счета назначения', + 'all_source_accounts' => 'Счета-источники', + 'back_to_index' => 'Вернуться к содержанию', + 'cant_logout_guard' => 'Firefly III не может выйти из системы.', + 'internal_reference' => 'Внутренняя ссылка', // check for updates: - 'update_check_title' => 'Проверить обновления', - 'admin_update_check_title' => 'Автоматически проверять наличие обновлений', - 'admin_update_check_explain' => 'Firefly III может автоматически проверять наличие обновлений. После включения опции, он свяжется с сервером обновлений Firefly III, чтобы узнать, доступна ли новая версия Firefly III. Когда это произойдёт, вы получите уведомление. Вы можете проверить это уведомление, нажав кнопку справа. Пожалуйста, укажите ниже, если вы хотите, чтобы Firefly III проверял наличие обновлений.', - 'check_for_updates_permission' => 'Firefly III может проверять наличие обновлений, но для этого требуется ваше разрешение. Перейдите в администрирование, чтобы указать, хотите ли вы включить эту функцию.', - 'updates_ask_me_later' => 'Спросить меня позже', - 'updates_do_not_check' => 'Не проверять наличие обновлений', - 'updates_enable_check' => 'Включить проверку обновлений', - 'admin_update_check_now_title' => 'Проверить наличие обновлений', - 'admin_update_check_now_explain' => 'Если вы нажмете кнопку, Firefly III посмотрит, является ли ваша текущая версия последней.', - 'check_for_updates_button' => 'Проверить сейчас!', - 'update_new_version_alert' => 'Доступна новая версия Firefly III. Вы используете версию v:your_version, самая свежая версия - v:new_version (выпущена :date).', - 'update_version_beta' => 'Эта версия является БЕТА-версией. Вы можете столкнуться с проблемами.', - 'update_version_alpha' => 'Эта версия является АЛЬФА-версией. Вы можете столкнуться с проблемами.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Вы используете v:version, которая является последним доступным релизом.', - 'update_newer_version_alert' => 'Вы используете версию v:your_version, которая новее последнего релиза (v:new_version).', - 'update_check_error' => 'Произошла ошибка при проверке обновлений: :error', - 'unknown_error' => 'Неизвестная ошибка. Извините за это.', - 'disabled_but_check' => 'Вы отключили проверку обновлений. Так что не забывайте время от времени проверять наличие обновлений самостоятельно. Спасибо!', - 'admin_update_channel_title' => 'Канал обновлений', - 'admin_update_channel_explain' => 'Firefly III может использовать три "канала" обновлений, которые различаются наборами новых функций и ошибок. Используйте "бета"-канал, если вы любите приключения и "альфа", если вам нравится жить с чувством постоянной опасности.', - 'update_channel_stable' => 'Стабильный. Всё должно работать, как вы ожидаете.', - 'update_channel_beta' => 'Бета. Есть новые возможности, но что-нибудь может быть сломано.', - 'update_channel_alpha' => 'Альфа. Код таких версий может быть собран из соплей и палок.', + 'update_check_title' => 'Проверить обновления', + 'admin_update_check_title' => 'Автоматически проверять наличие обновлений', + 'admin_update_check_explain' => 'Firefly III может автоматически проверять наличие обновлений. После включения опции, он свяжется с сервером обновлений Firefly III, чтобы узнать, доступна ли новая версия Firefly III. Когда это произойдёт, вы получите уведомление. Вы можете проверить это уведомление, нажав кнопку справа. Пожалуйста, укажите ниже, если вы хотите, чтобы Firefly III проверял наличие обновлений.', + 'check_for_updates_permission' => 'Firefly III может проверять наличие обновлений, но для этого требуется ваше разрешение. Перейдите в администрирование, чтобы указать, хотите ли вы включить эту функцию.', + 'updates_ask_me_later' => 'Спросить меня позже', + 'updates_do_not_check' => 'Не проверять наличие обновлений', + 'updates_enable_check' => 'Включить проверку обновлений', + 'admin_update_check_now_title' => 'Проверить наличие обновлений', + 'admin_update_check_now_explain' => 'Если вы нажмете кнопку, Firefly III посмотрит, является ли ваша текущая версия последней.', + 'check_for_updates_button' => 'Проверить сейчас!', + 'update_new_version_alert' => 'Доступна новая версия Firefly III. Вы используете версию v:your_version, самая свежая версия - v:new_version (выпущена :date).', + 'update_version_beta' => 'Эта версия является БЕТА-версией. Вы можете столкнуться с проблемами.', + 'update_version_alpha' => 'Эта версия является АЛЬФА-версией. Вы можете столкнуться с проблемами.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Вы используете v:version, которая является последним доступным релизом.', + 'update_newer_version_alert' => 'Вы используете версию v:your_version, которая новее последнего релиза (v:new_version).', + 'update_check_error' => 'Произошла ошибка при проверке обновлений: :error', + 'unknown_error' => 'Неизвестная ошибка. Извините за это.', + 'disabled_but_check' => 'Вы отключили проверку обновлений. Так что не забывайте время от времени проверять наличие обновлений самостоятельно. Спасибо!', + 'admin_update_channel_title' => 'Канал обновлений', + 'admin_update_channel_explain' => 'Firefly III может использовать три "канала" обновлений, которые различаются наборами новых функций и ошибок. Используйте "бета"-канал, если вы любите приключения и "альфа", если вам нравится жить с чувством постоянной опасности.', + 'update_channel_stable' => 'Стабильный. Всё должно работать, как вы ожидаете.', + 'update_channel_beta' => 'Бета. Есть новые возможности, но что-нибудь может быть сломано.', + 'update_channel_alpha' => 'Альфа. Код таких версий может быть собран из соплей и палок.', // search - 'search' => 'Поиск', - 'search_query' => 'Запрос', - 'search_found_transactions' => 'Firefly III нашёл :count транзакции за :time секунд.|Firefly III нашёл :count транзакций за :time секунд.', - 'search_found_more_transactions' => 'Firefly III нашёл более :count транзакций за :time секунд.', - 'search_for_query' => 'Firefly III ищет транзакции со всеми этими словами: :query', - 'invalid_operators_list' => 'Эти параметры поиска некорректны и были проигнорированы.', + 'search' => 'Поиск', + 'search_query' => 'Запрос', + 'search_found_transactions' => 'Firefly III нашёл :count транзакции за :time секунд.|Firefly III нашёл :count транзакций за :time секунд.', + 'search_found_more_transactions' => 'Firefly III нашёл более :count транзакций за :time секунд.', + 'search_for_query' => 'Firefly III ищет транзакции со всеми этими словами: :query', + 'invalid_operators_list' => 'Эти параметры поиска некорректны и были проигнорированы.', // old @@ -351,368 +351,368 @@ return [ * */ - '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' => 'ID транзакции не является ":value"', - 'search_modifier_date_before' => 'Дата транзакции до или равна ":value"', - 'search_modifier_date_after' => 'Дата транзакции после или равна ":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' => 'У транзакции нет внешнего URL', - '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' => 'Транзакция должна иметь (любой) внешний идентификатор', - 'search_modifier_not_no_external_url' => 'Транзакция должна иметь (любой) внешний URL', - 'search_modifier_not_no_external_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' => 'Описание не содержит ":value"', - 'search_modifier_description_is' => 'Описание точно соответствует ":value"', - 'search_modifier_not_description_is' => 'Описание не является ":value"', - 'search_modifier_currency_is' => '(Иностранная) валюта транзакции - ":value"', - 'search_modifier_not_currency_is' => 'Валюта транзакции (иностранная) не ":value"', - 'search_modifier_foreign_currency_is' => 'Иностранная валюта транзакции - ":value"', - 'search_modifier_not_foreign_currency_is' => 'Иностранная валюта транзакции не ":value"', - 'search_modifier_has_attachments' => 'Транзакция должна иметь вложение', - 'search_modifier_has_no_category' => 'Транзакция не должна быть связана с категорией', - 'search_modifier_not_has_no_category' => 'Транзакция должна иметь (любую) категорию', - 'search_modifier_not_has_any_category' => 'Транзакция не должна иметь категорию', - 'search_modifier_has_any_category' => 'Транзакция должна быть связана с (любой) категорией', - 'search_modifier_has_no_budget' => 'Транзакция не должна быть связана с бюджетом', - 'search_modifier_not_has_any_budget' => 'Транзакция не должна иметь бюджет', - 'search_modifier_has_any_budget' => 'Транзакция должна быть связана с (любым) бюджетом', - 'search_modifier_not_has_no_budget' => 'Транзакция должна иметь (любой) бюджет', - 'search_modifier_has_no_bill' => 'Транзакция не должна иметь счёта', - 'search_modifier_not_has_no_bill' => 'Транзакция должна иметь (любой) счёт к оплате', - 'search_modifier_has_any_bill' => 'Транзакция должна иметь (любой) счет', - 'search_modifier_not_has_any_bill' => 'Транзакция не должна иметь счета', - 'search_modifier_has_no_tag' => 'У транзакции не должно быть меток', - 'search_modifier_not_has_any_tag' => 'У транзакции не должно быть меток', - 'search_modifier_not_has_no_tag' => 'Транзакция должна иметь (любую) метку', - 'search_modifier_has_any_tag' => 'Транзакция должна иметь (любую) метку', - 'search_modifier_notes_contains' => 'Заметка к транзакции содержит ":value"', - 'search_modifier_not_notes_contains' => 'Заметки к транзакции не содержат ":value"', - 'search_modifier_notes_starts' => 'Заметка к транзакции начинается с ":value"', - 'search_modifier_not_notes_starts' => 'Заметки к транзакции не начинаются с ":value"', - 'search_modifier_notes_ends' => 'Заметка к транзакции заканчивается на ":value"', - 'search_modifier_not_notes_ends' => 'Заметки к транзакции не заканчиваются на ":value"', - 'search_modifier_notes_is' => 'Заметка к транзакции в точности совпадает с ":value"', - 'search_modifier_not_notes_is' => 'Заметки к транзакции не совпадают с ":value"', - 'search_modifier_no_notes' => 'Транзакция не содержит заметок', - 'search_modifier_not_no_notes' => 'Транзакция должна иметь заметки', - 'search_modifier_any_notes' => 'Транзакция должна содержать заметки', - 'search_modifier_not_any_notes' => 'У транзакции нет заметок', - 'search_modifier_amount_is' => 'Сумма в точности равна :value', - 'search_modifier_not_amount_is' => 'Сумма не равна :value', - 'search_modifier_amount_less' => 'Сумма меньше или равна :value', - 'search_modifier_not_amount_more' => 'Сумма меньше или равна :value', - 'search_modifier_amount_more' => 'Сумма больше или равна :value', - 'search_modifier_not_amount_less' => 'Сумма больше или равна :value', - 'search_modifier_source_account_is' => 'Название счёта-источника точно соответствует ":value"', - 'search_modifier_not_source_account_is' => 'Название счёта-источника не ":value"', - 'search_modifier_source_account_contains' => 'Название счёта-источника содержит ":value"', - 'search_modifier_not_source_account_contains' => 'Название счёта-источника не содержит ":value"', - 'search_modifier_source_account_starts' => 'Название счёта-источника начинается с ":value"', - 'search_modifier_not_source_account_starts' => 'Название счёта-источника не начинается с ":value"', - 'search_modifier_source_account_ends' => 'Название счёта-источника заканчивается на ":value"', - 'search_modifier_not_source_account_ends' => 'Название счёта-источника не заканчивается на ":value"', - 'search_modifier_source_account_id' => 'ID счёта-источника = :value', - 'search_modifier_not_source_account_id' => 'Идентификатор исходного аккаунта не :value', - 'search_modifier_source_account_nr_is' => 'Номер счёта-источника (IBAN) - ":value"', - 'search_modifier_not_source_account_nr_is' => 'Номер счёта-источника (IBAN) не ":value"', - 'search_modifier_source_account_nr_contains' => 'Номер счёта-источника (IBAN) содержит ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Номер счёта-источника (IBAN) не содержит на ":value"', - 'search_modifier_source_account_nr_starts' => 'Номер счёта-источника (IBAN) начинается с ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Номер счёта-источника (IBAN) не начинается с ":value"', - 'search_modifier_source_account_nr_ends' => 'Номер счёта-источника (IBAN) заканчивается на ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Номер счёта-источника (IBAN) не заканчивается на ":value"', - 'search_modifier_destination_account_is' => 'Название счёта назначения точно соответствует ":value"', - 'search_modifier_not_destination_account_is' => 'Название счёта-назначения не ":value"', - 'search_modifier_destination_account_contains' => 'Название счёта назначения содержит ":value"', - 'search_modifier_not_destination_account_contains' => 'Название счёта-назначения не содержит ":value"', - 'search_modifier_destination_account_starts' => 'Название счёта назначения начинается с ":value"', - 'search_modifier_not_destination_account_starts' => 'Название счёта-назначения не начинается с ":value"', - 'search_modifier_destination_account_ends' => 'Название счёта-назначения заканчивается на ":value"', - 'search_modifier_not_destination_account_ends' => 'Название счёта-назначения не заканчивается на ":value"', - 'search_modifier_destination_account_id' => 'ID счёта назначения = :value', - 'search_modifier_not_destination_account_id' => 'ID счёта-назначения не ":value"', - 'search_modifier_destination_is_cash' => 'Целевой счет - это аккаунт "(наличные)"', - 'search_modifier_not_destination_is_cash' => 'Целевой счет - это аккаунт не "(наличные)"', - 'search_modifier_source_is_cash' => 'Исходный счет - это "(наличные)"', - 'search_modifier_not_source_is_cash' => 'Исходный счет не является "(наличные)"', - 'search_modifier_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"', - 'search_modifier_destination_account_nr_contains' => 'Номер счета назначения (IBAN) содержит ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Номер счёта-назначения (IBAN) не содержит ":value"', - 'search_modifier_destination_account_nr_starts' => 'Номер счета назначения (IBAN) начинается с ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Номер счёта-назначения (IBAN) не начинается с ":value"', - 'search_modifier_destination_account_nr_ends' => 'Номер счета назначения (IBAN) оканчивается на ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Номер счёта-назначения (IBAN) не заканчивается на ":value"', - 'search_modifier_account_id' => 'ID счета источника или назначения: :value', - 'search_modifier_not_account_id' => 'Идентификатор счёта источника или назначения не: :value', - 'search_modifier_category_is' => 'Категория - ":value"', - 'search_modifier_not_category_is' => 'Категория не равна ":value"', - 'search_modifier_budget_is' => 'Бюджет - ":value"', - 'search_modifier_not_budget_is' => 'Бюджет не ":value"', - 'search_modifier_bill_is' => 'Счёт на оплату ":value"', - 'search_modifier_not_bill_is' => 'Счет не ":value"', - 'search_modifier_transaction_type' => 'Тип транзакции - ":value"', - 'search_modifier_not_transaction_type' => 'Тип транзакции не ":value"', - 'search_modifier_tag_is' => 'Тег - ":value"', - 'search_modifier_tag_contains' => 'Метка содержит ":value"', - 'search_modifier_not_tag_contains' => 'Метка не содержит ":value"', - 'search_modifier_tag_ends' => 'Метка заканчивается на ":value"', - 'search_modifier_tag_starts' => 'Метка начинается с ":value"', - 'search_modifier_not_tag_is' => 'Нет тега ":value"', - 'search_modifier_date_on_year' => 'Транзакция в году ":value"', - 'search_modifier_not_date_on_year' => 'Транзакция не в году ":value"', - 'search_modifier_date_on_month' => 'Транзакция в месяце ":value"', - 'search_modifier_not_date_on_month' => 'Транзакция не в месяц ":value"', - 'search_modifier_date_on_day' => 'Транзакция в день месяца ":value"', - 'search_modifier_not_date_on_day' => 'Транзакция не в день месяца ":value"', - 'search_modifier_date_before_year' => 'Транзакция до или в год ":value"', - 'search_modifier_date_before_month' => 'Транзакция до или в месяц ":value"', - 'search_modifier_date_before_day' => 'Транзакция до или в день месяца ":value"', - 'search_modifier_date_after_year' => 'Транзакция в году ":value " или после', - 'search_modifier_date_after_month' => 'Транзакция в месяце ":value" или после', - 'search_modifier_date_after_day' => 'Транзакция после или в день месяца ":value"', + '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' => 'ID транзакции не является ":value"', + 'search_modifier_date_before' => 'Дата транзакции до или равна ":value"', + 'search_modifier_date_after' => 'Дата транзакции после или равна ":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' => 'У транзакции нет внешнего URL', + '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' => 'Транзакция должна иметь (любой) внешний идентификатор', + 'search_modifier_not_no_external_url' => 'Транзакция должна иметь (любой) внешний URL', + 'search_modifier_not_no_external_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' => 'Описание не содержит ":value"', + 'search_modifier_description_is' => 'Описание точно соответствует ":value"', + 'search_modifier_not_description_is' => 'Описание не является ":value"', + 'search_modifier_currency_is' => '(Иностранная) валюта транзакции - ":value"', + 'search_modifier_not_currency_is' => 'Валюта транзакции (иностранная) не ":value"', + 'search_modifier_foreign_currency_is' => 'Иностранная валюта транзакции - ":value"', + 'search_modifier_not_foreign_currency_is' => 'Иностранная валюта транзакции не ":value"', + 'search_modifier_has_attachments' => 'Транзакция должна иметь вложение', + 'search_modifier_has_no_category' => 'Транзакция не должна быть связана с категорией', + 'search_modifier_not_has_no_category' => 'Транзакция должна иметь (любую) категорию', + 'search_modifier_not_has_any_category' => 'Транзакция не должна иметь категорию', + 'search_modifier_has_any_category' => 'Транзакция должна быть связана с (любой) категорией', + 'search_modifier_has_no_budget' => 'Транзакция не должна быть связана с бюджетом', + 'search_modifier_not_has_any_budget' => 'Транзакция не должна иметь бюджет', + 'search_modifier_has_any_budget' => 'Транзакция должна быть связана с (любым) бюджетом', + 'search_modifier_not_has_no_budget' => 'Транзакция должна иметь (любой) бюджет', + 'search_modifier_has_no_bill' => 'Транзакция не должна иметь счёта', + 'search_modifier_not_has_no_bill' => 'Транзакция должна иметь (любой) счёт к оплате', + 'search_modifier_has_any_bill' => 'Транзакция должна иметь (любой) счет', + 'search_modifier_not_has_any_bill' => 'Транзакция не должна иметь счета', + 'search_modifier_has_no_tag' => 'У транзакции не должно быть меток', + 'search_modifier_not_has_any_tag' => 'У транзакции не должно быть меток', + 'search_modifier_not_has_no_tag' => 'Транзакция должна иметь (любую) метку', + 'search_modifier_has_any_tag' => 'Транзакция должна иметь (любую) метку', + 'search_modifier_notes_contains' => 'Заметка к транзакции содержит ":value"', + 'search_modifier_not_notes_contains' => 'Заметки к транзакции не содержат ":value"', + 'search_modifier_notes_starts' => 'Заметка к транзакции начинается с ":value"', + 'search_modifier_not_notes_starts' => 'Заметки к транзакции не начинаются с ":value"', + 'search_modifier_notes_ends' => 'Заметка к транзакции заканчивается на ":value"', + 'search_modifier_not_notes_ends' => 'Заметки к транзакции не заканчиваются на ":value"', + 'search_modifier_notes_is' => 'Заметка к транзакции в точности совпадает с ":value"', + 'search_modifier_not_notes_is' => 'Заметки к транзакции не совпадают с ":value"', + 'search_modifier_no_notes' => 'Транзакция не содержит заметок', + 'search_modifier_not_no_notes' => 'Транзакция должна иметь заметки', + 'search_modifier_any_notes' => 'Транзакция должна содержать заметки', + 'search_modifier_not_any_notes' => 'У транзакции нет заметок', + 'search_modifier_amount_is' => 'Сумма в точности равна :value', + 'search_modifier_not_amount_is' => 'Сумма не равна :value', + 'search_modifier_amount_less' => 'Сумма меньше или равна :value', + 'search_modifier_not_amount_more' => 'Сумма меньше или равна :value', + 'search_modifier_amount_more' => 'Сумма больше или равна :value', + 'search_modifier_not_amount_less' => 'Сумма больше или равна :value', + 'search_modifier_source_account_is' => 'Название счёта-источника точно соответствует ":value"', + 'search_modifier_not_source_account_is' => 'Название счёта-источника не ":value"', + 'search_modifier_source_account_contains' => 'Название счёта-источника содержит ":value"', + 'search_modifier_not_source_account_contains' => 'Название счёта-источника не содержит ":value"', + 'search_modifier_source_account_starts' => 'Название счёта-источника начинается с ":value"', + 'search_modifier_not_source_account_starts' => 'Название счёта-источника не начинается с ":value"', + 'search_modifier_source_account_ends' => 'Название счёта-источника заканчивается на ":value"', + 'search_modifier_not_source_account_ends' => 'Название счёта-источника не заканчивается на ":value"', + 'search_modifier_source_account_id' => 'ID счёта-источника = :value', + 'search_modifier_not_source_account_id' => 'Идентификатор исходного аккаунта не :value', + 'search_modifier_source_account_nr_is' => 'Номер счёта-источника (IBAN) - ":value"', + 'search_modifier_not_source_account_nr_is' => 'Номер счёта-источника (IBAN) не ":value"', + 'search_modifier_source_account_nr_contains' => 'Номер счёта-источника (IBAN) содержит ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Номер счёта-источника (IBAN) не содержит на ":value"', + 'search_modifier_source_account_nr_starts' => 'Номер счёта-источника (IBAN) начинается с ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Номер счёта-источника (IBAN) не начинается с ":value"', + 'search_modifier_source_account_nr_ends' => 'Номер счёта-источника (IBAN) заканчивается на ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Номер счёта-источника (IBAN) не заканчивается на ":value"', + 'search_modifier_destination_account_is' => 'Название счёта назначения точно соответствует ":value"', + 'search_modifier_not_destination_account_is' => 'Название счёта-назначения не ":value"', + 'search_modifier_destination_account_contains' => 'Название счёта назначения содержит ":value"', + 'search_modifier_not_destination_account_contains' => 'Название счёта-назначения не содержит ":value"', + 'search_modifier_destination_account_starts' => 'Название счёта назначения начинается с ":value"', + 'search_modifier_not_destination_account_starts' => 'Название счёта-назначения не начинается с ":value"', + 'search_modifier_destination_account_ends' => 'Название счёта-назначения заканчивается на ":value"', + 'search_modifier_not_destination_account_ends' => 'Название счёта-назначения не заканчивается на ":value"', + 'search_modifier_destination_account_id' => 'ID счёта назначения = :value', + 'search_modifier_not_destination_account_id' => 'ID счёта-назначения не ":value"', + 'search_modifier_destination_is_cash' => 'Целевой счет - это аккаунт "(наличные)"', + 'search_modifier_not_destination_is_cash' => 'Целевой счет - это аккаунт не "(наличные)"', + 'search_modifier_source_is_cash' => 'Исходный счет - это "(наличные)"', + 'search_modifier_not_source_is_cash' => 'Исходный счет не является "(наличные)"', + 'search_modifier_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Номер счета назначения (IBAN) - ":value"', + 'search_modifier_destination_account_nr_contains' => 'Номер счета назначения (IBAN) содержит ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Номер счёта-назначения (IBAN) не содержит ":value"', + 'search_modifier_destination_account_nr_starts' => 'Номер счета назначения (IBAN) начинается с ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Номер счёта-назначения (IBAN) не начинается с ":value"', + 'search_modifier_destination_account_nr_ends' => 'Номер счета назначения (IBAN) оканчивается на ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Номер счёта-назначения (IBAN) не заканчивается на ":value"', + 'search_modifier_account_id' => 'ID счета источника или назначения: :value', + 'search_modifier_not_account_id' => 'Идентификатор счёта источника или назначения не: :value', + 'search_modifier_category_is' => 'Категория - ":value"', + 'search_modifier_not_category_is' => 'Категория не равна ":value"', + 'search_modifier_budget_is' => 'Бюджет - ":value"', + 'search_modifier_not_budget_is' => 'Бюджет не ":value"', + 'search_modifier_bill_is' => 'Счёт на оплату ":value"', + 'search_modifier_not_bill_is' => 'Счет не ":value"', + 'search_modifier_transaction_type' => 'Тип транзакции - ":value"', + 'search_modifier_not_transaction_type' => 'Тип транзакции не ":value"', + 'search_modifier_tag_is' => 'Тег - ":value"', + 'search_modifier_tag_contains' => 'Метка содержит ":value"', + 'search_modifier_not_tag_contains' => 'Метка не содержит ":value"', + 'search_modifier_tag_ends' => 'Метка заканчивается на ":value"', + 'search_modifier_tag_starts' => 'Метка начинается с ":value"', + 'search_modifier_not_tag_is' => 'Нет тега ":value"', + 'search_modifier_date_on_year' => 'Транзакция в году ":value"', + 'search_modifier_not_date_on_year' => 'Транзакция не в году ":value"', + 'search_modifier_date_on_month' => 'Транзакция в месяце ":value"', + 'search_modifier_not_date_on_month' => 'Транзакция не в месяц ":value"', + 'search_modifier_date_on_day' => 'Транзакция в день месяца ":value"', + 'search_modifier_not_date_on_day' => 'Транзакция не в день месяца ":value"', + 'search_modifier_date_before_year' => 'Транзакция до или в год ":value"', + 'search_modifier_date_before_month' => 'Транзакция до или в месяц ":value"', + 'search_modifier_date_before_day' => 'Транзакция до или в день месяца ":value"', + 'search_modifier_date_after_year' => 'Транзакция в году ":value " или после', + 'search_modifier_date_after_month' => 'Транзакция в месяце ":value" или после', + 'search_modifier_date_after_day' => 'Транзакция после или в день месяца ":value"', // new - 'search_modifier_tag_is_not' => 'Нет тега ":value"', - 'search_modifier_not_tag_is_not' => 'Тег ":value"', - 'search_modifier_account_is' => 'Является ли счёт ":value"', - 'search_modifier_not_account_is' => 'Ни один аккаунт не является ":value"', - 'search_modifier_account_contains' => 'Содержит ли счёт ":value"', - 'search_modifier_not_account_contains' => 'Ни один аккаунт не содержит ":value"', - 'search_modifier_account_ends' => 'Либо счет заканчивается на ":value"', - 'search_modifier_not_account_ends' => 'Ни один из аккаунтов не заканчивается на ":value"', - 'search_modifier_account_starts' => 'Либо счет начинается с ":value"', - 'search_modifier_not_account_starts' => 'Ни один аккаунт не начинается с ":value"', - 'search_modifier_account_nr_is' => 'Номер счета / IBAN ":value"', - 'search_modifier_not_account_nr_is' => 'Номер счета / IBAN ":value"', - 'search_modifier_account_nr_contains' => 'Номер счета / IBAN содержит ":value"', - 'search_modifier_not_account_nr_contains' => 'Ни один номер счета / IBAN не содержит ":value"', - 'search_modifier_account_nr_ends' => 'Номер счета / IBAN заканчивается на ":value"', - 'search_modifier_not_account_nr_ends' => 'Ни один номер счета / IBAN не заканчивается на ":value"', - 'search_modifier_account_nr_starts' => 'Номер счета / IBAN начинается с ":value"', - 'search_modifier_not_account_nr_starts' => 'Ни один номер счета / IBAN не начинается с ":value"', - 'search_modifier_category_contains' => 'Категория содержит ":value"', - 'search_modifier_not_category_contains' => 'Категория не содержит ":value"', - 'search_modifier_category_ends' => 'Категория заканчивается на ":value"', - 'search_modifier_not_category_ends' => 'Категория не заканчивается ":value"', - 'search_modifier_category_starts' => 'Категория начинается с ":value"', - 'search_modifier_not_category_starts' => 'Категория не начинается с ":value"', - 'search_modifier_budget_contains' => 'Бюджет содержит ":value"', - 'search_modifier_not_budget_contains' => 'Бюджет не содержит ":value"', - 'search_modifier_budget_ends' => 'Бюджет заканчивается на ":value"', - 'search_modifier_not_budget_ends' => 'Бюджет не заканчивается ":value"', - 'search_modifier_budget_starts' => 'Бюджет начинается с ":value"', - 'search_modifier_not_budget_starts' => 'Бюджет не начинается с ":value"', - 'search_modifier_bill_contains' => 'Бюджет содержит ":value"', - 'search_modifier_not_bill_contains' => 'Счет не содержит ":value"', - 'search_modifier_bill_ends' => 'Счет заканчивается на ":value"', - 'search_modifier_not_bill_ends' => 'Счет не заканчивается ":value"', - 'search_modifier_bill_starts' => 'Счёт начинается с ":value"', - 'search_modifier_not_bill_starts' => 'Счет не начинается с ":value"', - 'search_modifier_external_id_contains' => 'Внешний ID содержит ":value"', - 'search_modifier_not_external_id_contains' => 'Внешний ID не содержит ":value"', - 'search_modifier_external_id_ends' => 'Внешний ID заканчивается на ":value"', - 'search_modifier_not_external_id_ends' => 'Внешний ID не заканчивается на ":value"', - 'search_modifier_external_id_starts' => 'Внешний ID начинается с ":value"', - 'search_modifier_not_external_id_starts' => 'Внешний ID не начинается с ":value"', - 'search_modifier_internal_reference_contains' => 'Внутренняя ссылка содержит ":value"', - 'search_modifier_not_internal_reference_contains' => 'Внутренняя ссылка не содержит ":value"', - 'search_modifier_internal_reference_ends' => 'Внутренняя ссылка заканчивается на ":value"', - 'search_modifier_internal_reference_starts' => 'Внутренняя ссылка начинается с ":value"', - 'search_modifier_not_internal_reference_ends' => 'Внутренняя ссылка не заканчивается на ":value"', - 'search_modifier_not_internal_reference_starts' => 'Внутренняя ссылка не начинается с ":value"', - 'search_modifier_external_url_is' => 'Внешний URL-адрес ":value"', - 'search_modifier_not_external_url_is' => 'Внешний URL не ":value"', - 'search_modifier_external_url_contains' => 'Внешний URL содержит ":value"', - 'search_modifier_not_external_url_contains' => 'Внешний URL не содержит ":value"', - 'search_modifier_external_url_ends' => 'Внешний URL заканчивается на ":value"', - 'search_modifier_not_external_url_ends' => 'Внешний URL не заканчивается на ":value"', - 'search_modifier_external_url_starts' => 'Внешний URL начинается с ":value"', - 'search_modifier_not_external_url_starts' => 'Внешний URL не начинается с ":value"', - 'search_modifier_has_no_attachments' => 'Транзакция не содержит вложений', - 'search_modifier_not_has_no_attachments' => 'Транзакция имеет вложения', - 'search_modifier_not_has_attachments' => 'Транзакции не содержит вложений', - 'search_modifier_account_is_cash' => 'Любой счет является «(наличными)».', - 'search_modifier_not_account_is_cash' => 'Ни один из этих счетов не является "(наличные)".', - 'search_modifier_journal_id' => 'ID журнала ":value"', - 'search_modifier_not_journal_id' => 'ID журнала не является ":value"', - 'search_modifier_recurrence_id' => 'ID повторяющейся транзакции является ":value"', - 'search_modifier_not_recurrence_id' => 'ID повторяющейся транзакции не является ":value"', - 'search_modifier_foreign_amount_is' => 'Сумма иностранного платежа: ":value"', - 'search_modifier_not_foreign_amount_is' => 'Сумма в иностранной валюте не ":value"', - 'search_modifier_foreign_amount_less' => 'Сумма в иностранной валюте меньше ":value"', - 'search_modifier_not_foreign_amount_more' => 'Сумма в иностранной валюте меньше ":value"', - 'search_modifier_not_foreign_amount_less' => 'Сумма в иностранной валюте больше ":value"', - 'search_modifier_foreign_amount_more' => 'Иначе сумма больше чем ":value"', - 'search_modifier_exists' => 'Транзакция существует (любая транзакция)', - 'search_modifier_not_exists' => 'Транзакция не существует (нет транзакции)', + 'search_modifier_tag_is_not' => 'Нет тега ":value"', + 'search_modifier_not_tag_is_not' => 'Тег ":value"', + 'search_modifier_account_is' => 'Является ли счёт ":value"', + 'search_modifier_not_account_is' => 'Ни один аккаунт не является ":value"', + 'search_modifier_account_contains' => 'Содержит ли счёт ":value"', + 'search_modifier_not_account_contains' => 'Ни один аккаунт не содержит ":value"', + 'search_modifier_account_ends' => 'Либо счет заканчивается на ":value"', + 'search_modifier_not_account_ends' => 'Ни один из аккаунтов не заканчивается на ":value"', + 'search_modifier_account_starts' => 'Либо счет начинается с ":value"', + 'search_modifier_not_account_starts' => 'Ни один аккаунт не начинается с ":value"', + 'search_modifier_account_nr_is' => 'Номер счета / IBAN ":value"', + 'search_modifier_not_account_nr_is' => 'Номер счета / IBAN ":value"', + 'search_modifier_account_nr_contains' => 'Номер счета / IBAN содержит ":value"', + 'search_modifier_not_account_nr_contains' => 'Ни один номер счета / IBAN не содержит ":value"', + 'search_modifier_account_nr_ends' => 'Номер счета / IBAN заканчивается на ":value"', + 'search_modifier_not_account_nr_ends' => 'Ни один номер счета / IBAN не заканчивается на ":value"', + 'search_modifier_account_nr_starts' => 'Номер счета / IBAN начинается с ":value"', + 'search_modifier_not_account_nr_starts' => 'Ни один номер счета / IBAN не начинается с ":value"', + 'search_modifier_category_contains' => 'Категория содержит ":value"', + 'search_modifier_not_category_contains' => 'Категория не содержит ":value"', + 'search_modifier_category_ends' => 'Категория заканчивается на ":value"', + 'search_modifier_not_category_ends' => 'Категория не заканчивается ":value"', + 'search_modifier_category_starts' => 'Категория начинается с ":value"', + 'search_modifier_not_category_starts' => 'Категория не начинается с ":value"', + 'search_modifier_budget_contains' => 'Бюджет содержит ":value"', + 'search_modifier_not_budget_contains' => 'Бюджет не содержит ":value"', + 'search_modifier_budget_ends' => 'Бюджет заканчивается на ":value"', + 'search_modifier_not_budget_ends' => 'Бюджет не заканчивается ":value"', + 'search_modifier_budget_starts' => 'Бюджет начинается с ":value"', + 'search_modifier_not_budget_starts' => 'Бюджет не начинается с ":value"', + 'search_modifier_bill_contains' => 'Бюджет содержит ":value"', + 'search_modifier_not_bill_contains' => 'Счет не содержит ":value"', + 'search_modifier_bill_ends' => 'Счет заканчивается на ":value"', + 'search_modifier_not_bill_ends' => 'Счет не заканчивается ":value"', + 'search_modifier_bill_starts' => 'Счёт начинается с ":value"', + 'search_modifier_not_bill_starts' => 'Счет не начинается с ":value"', + 'search_modifier_external_id_contains' => 'Внешний ID содержит ":value"', + 'search_modifier_not_external_id_contains' => 'Внешний ID не содержит ":value"', + 'search_modifier_external_id_ends' => 'Внешний ID заканчивается на ":value"', + 'search_modifier_not_external_id_ends' => 'Внешний ID не заканчивается на ":value"', + 'search_modifier_external_id_starts' => 'Внешний ID начинается с ":value"', + 'search_modifier_not_external_id_starts' => 'Внешний ID не начинается с ":value"', + 'search_modifier_internal_reference_contains' => 'Внутренняя ссылка содержит ":value"', + 'search_modifier_not_internal_reference_contains' => 'Внутренняя ссылка не содержит ":value"', + 'search_modifier_internal_reference_ends' => 'Внутренняя ссылка заканчивается на ":value"', + 'search_modifier_internal_reference_starts' => 'Внутренняя ссылка начинается с ":value"', + 'search_modifier_not_internal_reference_ends' => 'Внутренняя ссылка не заканчивается на ":value"', + 'search_modifier_not_internal_reference_starts' => 'Внутренняя ссылка не начинается с ":value"', + 'search_modifier_external_url_is' => 'Внешний URL-адрес ":value"', + 'search_modifier_not_external_url_is' => 'Внешний URL не ":value"', + 'search_modifier_external_url_contains' => 'Внешний URL содержит ":value"', + 'search_modifier_not_external_url_contains' => 'Внешний URL не содержит ":value"', + 'search_modifier_external_url_ends' => 'Внешний URL заканчивается на ":value"', + 'search_modifier_not_external_url_ends' => 'Внешний URL не заканчивается на ":value"', + 'search_modifier_external_url_starts' => 'Внешний URL начинается с ":value"', + 'search_modifier_not_external_url_starts' => 'Внешний URL не начинается с ":value"', + 'search_modifier_has_no_attachments' => 'Транзакция не содержит вложений', + 'search_modifier_not_has_no_attachments' => 'Транзакция имеет вложения', + 'search_modifier_not_has_attachments' => 'Транзакции не содержит вложений', + 'search_modifier_account_is_cash' => 'Любой счет является «(наличными)».', + 'search_modifier_not_account_is_cash' => 'Ни один из этих счетов не является "(наличные)".', + 'search_modifier_journal_id' => 'ID журнала ":value"', + 'search_modifier_not_journal_id' => 'ID журнала не является ":value"', + 'search_modifier_recurrence_id' => 'ID повторяющейся транзакции является ":value"', + 'search_modifier_not_recurrence_id' => 'ID повторяющейся транзакции не является ":value"', + 'search_modifier_foreign_amount_is' => 'Сумма иностранного платежа: ":value"', + 'search_modifier_not_foreign_amount_is' => 'Сумма в иностранной валюте не ":value"', + 'search_modifier_foreign_amount_less' => 'Сумма в иностранной валюте меньше ":value"', + 'search_modifier_not_foreign_amount_more' => 'Сумма в иностранной валюте меньше ":value"', + 'search_modifier_not_foreign_amount_less' => 'Сумма в иностранной валюте больше ":value"', + 'search_modifier_foreign_amount_more' => 'Иначе сумма больше чем ":value"', + 'search_modifier_exists' => 'Транзакция существует (любая транзакция)', + 'search_modifier_not_exists' => 'Транзакция не существует (нет транзакции)', // date fields - 'search_modifier_interest_date_on' => 'Дата начисления процентов по транзакции ":value"', - 'search_modifier_not_interest_date_on' => 'Дата начисления процентов по транзакции не ":value"', - 'search_modifier_interest_date_on_year' => 'Дата интересующей транзакции указана в году ":value"', - 'search_modifier_not_interest_date_on_year' => 'Дата интересующей сделке указана вне года ":value"', - 'search_modifier_interest_date_on_month' => 'Дата начисления процентов по сделке указана в месяце ":value"', - 'search_modifier_not_interest_date_on_month' => 'Дата интересующей сделке указана вне месяца ":value"', - 'search_modifier_interest_date_on_day' => 'Дата начисления процентов по сделке приходится на день месяца ":value"', - 'search_modifier_not_interest_date_on_day' => 'Дата выплаты процентов по транзакции не совпадает с днем месяца «:value»', - 'search_modifier_interest_date_before_year' => 'Дата выплаты процентов по сделке наступает в ":value" году или предшествует этому году', - 'search_modifier_interest_date_before_month' => 'Дата выплаты процентов по сделке наступает в ":value" месяце или до этого месяца', - 'search_modifier_interest_date_before_day' => 'Дата начисления процентов по сделке в день месяца ":value" или до него', - 'search_modifier_interest_date_after_year' => 'Дата транзакции через или в год ":value"', - 'search_modifier_interest_date_after_month' => 'Дата транзакции после или в ":value" месяце', - 'search_modifier_interest_date_after_day' => 'Дата транзакции после или в день месяца ":value"', - 'search_modifier_book_date_on_year' => 'Дата книги транзакций в году ":value"', - 'search_modifier_book_date_on_month' => 'Дата книги транзакций в месяце ":value"', - 'search_modifier_book_date_on_day' => 'Дата начисления процентов приходится на день месяца ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Дата выполнения сделки в ":value" году', - 'search_modifier_due_date_on_month' => 'Дата выполнения сделки в ":value" месяце', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Дата выполнения транзакции через или в ":value" году', - 'search_modifier_due_date_after_month' => 'Дата выполнения транзакции через или в ":value" месяце', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Дата оплаты транзакции в ":value" году', - 'search_modifier_payment_date_on_month' => 'Дата оплаты транзакции в ":value" месяце', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Дата начисления процентов по транзакции ":value"', + 'search_modifier_not_interest_date_on' => 'Дата начисления процентов по транзакции не ":value"', + 'search_modifier_interest_date_on_year' => 'Дата интересующей транзакции указана в году ":value"', + 'search_modifier_not_interest_date_on_year' => 'Дата интересующей сделке указана вне года ":value"', + 'search_modifier_interest_date_on_month' => 'Дата начисления процентов по сделке указана в месяце ":value"', + 'search_modifier_not_interest_date_on_month' => 'Дата интересующей сделке указана вне месяца ":value"', + 'search_modifier_interest_date_on_day' => 'Дата начисления процентов по сделке приходится на день месяца ":value"', + 'search_modifier_not_interest_date_on_day' => 'Дата выплаты процентов по транзакции не совпадает с днем месяца «:value»', + 'search_modifier_interest_date_before_year' => 'Дата выплаты процентов по сделке наступает в ":value" году или предшествует этому году', + 'search_modifier_interest_date_before_month' => 'Дата выплаты процентов по сделке наступает в ":value" месяце или до этого месяца', + 'search_modifier_interest_date_before_day' => 'Дата начисления процентов по сделке в день месяца ":value" или до него', + 'search_modifier_interest_date_after_year' => 'Дата транзакции через или в год ":value"', + 'search_modifier_interest_date_after_month' => 'Дата транзакции после или в ":value" месяце', + 'search_modifier_interest_date_after_day' => 'Дата транзакции после или в день месяца ":value"', + 'search_modifier_book_date_on_year' => 'Дата книги транзакций в году ":value"', + 'search_modifier_book_date_on_month' => 'Дата книги транзакций в месяце ":value"', + 'search_modifier_book_date_on_day' => 'Дата начисления процентов приходится на день месяца ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Дата выполнения сделки в ":value" году', + 'search_modifier_due_date_on_month' => 'Дата выполнения сделки в ":value" месяце', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Дата выполнения транзакции через или в ":value" году', + 'search_modifier_due_date_after_month' => 'Дата выполнения транзакции через или в ":value" месяце', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Дата оплаты транзакции в ":value" году', + 'search_modifier_payment_date_on_month' => 'Дата оплаты транзакции в ":value" месяце', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Последний раз транзакция обновлялась в ":value" году', - 'search_modifier_updated_at_on_month' => 'Последний раз транзакция обновлялась в ":value" месяце', - 'search_modifier_updated_at_on_day' => 'Последний раз транзакция обновлялась ":value" числа', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Последний раз транзакция обновлялась в ":value" году или ранее', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Сделка создана в ":value" году', - 'search_modifier_created_at_on_month' => 'Сделка создана в ":value" месяце', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Транзакция была создана в течение или до ":value" месяца', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Транзакция была создана в течение или до ":value" года', - 'search_modifier_created_at_after_month' => 'Транзакция была создана в течение ":value" месяца или после', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Сделка была создана ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Сделка была создана или до ":value"', - 'search_modifier_created_at_after' => 'Сделка была создана или после ":value"', - 'search_modifier_updated_at_on' => 'Сделка обновлена ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Сделка обновлена или до ":value"', - 'search_modifier_updated_at_after' => 'Сделка обновлена или после ":value"', + 'search_modifier_updated_at_on_year' => 'Последний раз транзакция обновлялась в ":value" году', + 'search_modifier_updated_at_on_month' => 'Последний раз транзакция обновлялась в ":value" месяце', + 'search_modifier_updated_at_on_day' => 'Последний раз транзакция обновлялась ":value" числа', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Последний раз транзакция обновлялась в ":value" году или ранее', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Сделка создана в ":value" году', + 'search_modifier_created_at_on_month' => 'Сделка создана в ":value" месяце', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Транзакция была создана в течение или до ":value" месяца', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Транзакция была создана в течение или до ":value" года', + 'search_modifier_created_at_after_month' => 'Транзакция была создана в течение ":value" месяца или после', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Сделка была создана ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Сделка была создана или до ":value"', + 'search_modifier_created_at_after' => 'Сделка была создана или после ":value"', + 'search_modifier_updated_at_on' => 'Сделка обновлена ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Сделка обновлена или до ":value"', + 'search_modifier_updated_at_after' => 'Сделка обновлена или после ":value"', - 'search_modifier_attachment_name_is' => 'Имя вложения: ":value"', - 'search_modifier_attachment_name_contains' => 'Имя вложений содержащее ":value"', - 'search_modifier_attachment_name_starts' => 'Имя вложений начинается с ":value"', - 'search_modifier_attachment_name_ends' => 'Имя вложений заканчивается на ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT ":value"', - 'update_rule_from_query' => 'Обновить правило ":rule" из поискового запроса', - 'create_rule_from_query' => 'Создать новое правило из поискового запроса', - 'rule_from_search_words' => 'Механизм правил не справился с обработкой ":string". Предлагаемое правило, удовлетворяющее вашему поисковому запросу, может дать различные результаты. Пожалуйста, тщательно проверьте условия правила.', + 'search_modifier_attachment_name_is' => 'Имя вложения: ":value"', + 'search_modifier_attachment_name_contains' => 'Имя вложений содержащее ":value"', + 'search_modifier_attachment_name_starts' => 'Имя вложений начинается с ":value"', + 'search_modifier_attachment_name_ends' => 'Имя вложений заканчивается на ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT ":value"', + 'update_rule_from_query' => 'Обновить правило ":rule" из поискового запроса', + 'create_rule_from_query' => 'Создать новое правило из поискового запроса', + 'rule_from_search_words' => 'Механизм правил не справился с обработкой ":string". Предлагаемое правило, удовлетворяющее вашему поисковому запросу, может дать различные результаты. Пожалуйста, тщательно проверьте условия правила.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'В поиске применяются следующие атрибуты:', - 'general_search_error' => 'При поиске произошла ошибка. Пожалуйста, проверьте log-файлы для получения дополнительной информации.', - 'search_box' => 'Поиск', - 'search_box_intro' => 'Добро пожаловать в функцию поиска Firefly III. Введите поисковый запрос в поле. Убедитесь, что вы ознакомились с инструкцией, потому что поиск достаточно продвинутый.', - 'search_error' => 'Ошибка при поиске', - 'search_searching' => 'Поиск...', - 'search_results' => 'Результаты поиска', + 'modifiers_applies_are' => 'В поиске применяются следующие атрибуты:', + 'general_search_error' => 'При поиске произошла ошибка. Пожалуйста, проверьте log-файлы для получения дополнительной информации.', + 'search_box' => 'Поиск', + 'search_box_intro' => 'Добро пожаловать в функцию поиска Firefly III. Введите поисковый запрос в поле. Убедитесь, что вы ознакомились с инструкцией, потому что поиск достаточно продвинутый.', + 'search_error' => 'Ошибка при поиске', + 'search_searching' => 'Поиск...', + 'search_results' => 'Результаты поиска', // repeat frequencies: - 'repeat_freq_yearly' => 'ежегодно', - 'repeat_freq_half-year' => 'раз в полгода', - 'repeat_freq_quarterly' => 'раз в квартал', - 'repeat_freq_monthly' => 'ежемесячно', - 'repeat_freq_weekly' => 'еженедельно', - 'repeat_freq_daily' => 'ежедневно', - 'daily' => 'ежедневно', - 'weekly' => 'еженедельно', - 'quarterly' => 'раз в квартал', - 'half-year' => 'раз в полгода', - 'yearly' => 'ежегодно', + 'repeat_freq_yearly' => 'ежегодно', + 'repeat_freq_half-year' => 'раз в полгода', + 'repeat_freq_quarterly' => 'раз в квартал', + 'repeat_freq_monthly' => 'ежемесячно', + 'repeat_freq_weekly' => 'еженедельно', + 'repeat_freq_daily' => 'ежедневно', + 'daily' => 'ежедневно', + 'weekly' => 'еженедельно', + 'quarterly' => 'раз в квартал', + 'half-year' => 'раз в полгода', + 'yearly' => 'ежегодно', // rules - 'is_not_rule_trigger' => 'НЕ', - 'cannot_fire_inactive_rules' => 'Вы не можете выполнять неактивные правила.', - 'show_triggers' => 'Показать триггеры', - 'show_actions' => 'Показать действия', - 'rules' => 'Правила', - 'rule_name' => 'Название правила', - 'rule_triggers' => 'Правило срабатывает, когда', - 'rule_actions' => 'Правило будет делать', - 'new_rule' => 'Новое правило', - 'new_rule_group' => 'Новая группа правил', - 'rule_priority_up' => 'Задать для правила более высокий приоритет', - 'rule_priority_down' => 'Задать для правила более низкий приоритет', - 'make_new_rule_group' => 'Создать новую группу правил', - 'store_new_rule_group' => 'Сохранить новую группу правил', - 'created_new_rule_group' => 'Новая группа правил ":title" сохранена!', - 'updated_rule_group' => 'Группа правил ":title" успешно обновлена.', - 'edit_rule_group' => 'Изменить группу правил ":title"', - 'duplicate_rule' => 'Дублировать правило ":title"', - 'rule_copy_of' => 'Копия ":title"', - 'duplicated_rule' => 'Дублированное правило ":title" в ":newTitle"', - 'delete_rule_group' => 'Удалить группу правил ":title"', - 'deleted_rule_group' => 'Группа правил ":title" удалена', - 'update_rule_group' => 'Обновление группы правил', - 'no_rules_in_group' => 'В этой группе нет правил', - 'move_rule_group_up' => 'Переместить группу правил вверх', - 'move_rule_group_down' => 'Переместить группу правил вниз', - 'save_rules_by_moving' => 'Сохраните это правило, переместив его в другую группу правил:|Сохраните эти правила, переместив их в другую группу правил:', - 'make_new_rule' => 'Создать новое правило в группе правил ":title"', - 'make_new_rule_no_group' => 'Создать новое правило', - 'instructions_rule_from_bill' => 'Для того чтобы сопоставить транзакции с вашим новым счётом на оплату ":name", Firefly III может создать правило, которое будет автоматически проверять все ваши транзакции. Пожалуйста, проверьте данные ниже и сохраните правило, для того чтобы Firefly III автоматически привязывал транзакции к вашему новому счёту на оплату.', - 'instructions_rule_from_journal' => 'Создайте правило, основанное на одной из ваших транзакций. Заполните или отправьте форму ниже.', - 'rule_is_strict' => 'строгое правило', - 'rule_is_not_strict' => 'нестрогое правило', - 'rule_help_stop_processing' => 'Когда вы установите этот флажок, более поздние правила в этой группе не будут выполняться.', - 'rule_help_strict' => 'В строгих правилах действие будет запущено, если ВСЕ триггеры выполнены. Для нестрогих правил достаточно срабатывания одного ЛЮБОГО триггера.', - 'rule_help_active' => 'Неактивные правила никогда не срабатывают.', - 'stored_new_rule' => 'Сохранено новое правило с названием ":title"', - 'deleted_rule' => 'Удалено правило с названием ":title"', - 'store_new_rule' => 'Сохранить новое правило', - 'updated_rule' => 'Обновлено правило с названием ":title"', - 'default_rule_group_name' => 'Правила по умолчанию', - 'default_rule_group_description' => 'Здесь размещаются правила, которые вы не поместили ни в одну из групп.', - 'trigger' => 'Условие', - 'trigger_value' => 'Значение условия', - 'stop_processing_other_triggers' => 'Прекратить обработку других условий', - 'add_rule_trigger' => 'Добавить новое условие', - 'action' => 'Действие', - 'action_value' => 'Значение действия', - 'stop_executing_other_actions' => 'Прекратить выполнение других действий', - 'add_rule_action' => 'Добавить новое действие', - 'edit_rule' => 'Изменить правило ":title"', - 'delete_rule' => 'Удалить правило ":title"', - 'update_rule' => 'Обновить правило', - 'test_rule_triggers' => 'Показать подходящие транзакции', - 'warning_no_matching_transactions' => 'Подходящих транзакций не найдено.', - 'warning_no_valid_triggers' => 'Отсутствуют правильные условия.', - 'apply_rule_selection' => 'Применить ":title" к выбранным вами транзакциям', - 'apply_rule_selection_intro' => 'Такие правила, как ":title", обычно применяются только к новым или обновлённым транзакциям, но Firefly III может применить его для выбранных вами существующих транзакций. Это может быть полезно, если вы обновили правило, и вам нужно изменить ранее созданные транзакции в соответствии с новыми условиями.', - 'include_transactions_from_accounts' => 'Включить транзакции с указанных счетов', - 'include' => 'Включить?', - 'applied_rule_selection' => '{0} В вашем выборе ни одна транзакция не была изменена правилом ":title".|[1] В вашем выборе одна транзакция была изменена правилом ":title".|[2,*] :count транзакции(-ий) в вашем выборе было изменено правилом ":title".', - 'execute' => 'Выполнить', - 'apply_rule_group_selection' => 'Применить группу правил":title" к выбранным вами транзакциям', - 'apply_rule_group_selection_intro' => 'Такие группы правил, как ":title", обычно применяются только к новым или обновлённым транзакциям, но Firefly III может применить все правила из этой группы для выбранных вами существующих транзакций. Это может быть полезно, если вы обновили одно или несколько правил в группе и вам нужно изменить ранее созданные транзакции в соответствии с новыми условиями.', - 'applied_rule_group_selection' => 'Группа правил ":title" была применена к выбранным вами транзакциям.', + 'is_not_rule_trigger' => 'НЕ', + 'cannot_fire_inactive_rules' => 'Вы не можете выполнять неактивные правила.', + 'show_triggers' => 'Показать триггеры', + 'show_actions' => 'Показать действия', + 'rules' => 'Правила', + 'rule_name' => 'Название правила', + 'rule_triggers' => 'Правило срабатывает, когда', + 'rule_actions' => 'Правило будет делать', + 'new_rule' => 'Новое правило', + 'new_rule_group' => 'Новая группа правил', + 'rule_priority_up' => 'Задать для правила более высокий приоритет', + 'rule_priority_down' => 'Задать для правила более низкий приоритет', + 'make_new_rule_group' => 'Создать новую группу правил', + 'store_new_rule_group' => 'Сохранить новую группу правил', + 'created_new_rule_group' => 'Новая группа правил ":title" сохранена!', + 'updated_rule_group' => 'Группа правил ":title" успешно обновлена.', + 'edit_rule_group' => 'Изменить группу правил ":title"', + 'duplicate_rule' => 'Дублировать правило ":title"', + 'rule_copy_of' => 'Копия ":title"', + 'duplicated_rule' => 'Дублированное правило ":title" в ":newTitle"', + 'delete_rule_group' => 'Удалить группу правил ":title"', + 'deleted_rule_group' => 'Группа правил ":title" удалена', + 'update_rule_group' => 'Обновление группы правил', + 'no_rules_in_group' => 'В этой группе нет правил', + 'move_rule_group_up' => 'Переместить группу правил вверх', + 'move_rule_group_down' => 'Переместить группу правил вниз', + 'save_rules_by_moving' => 'Сохраните это правило, переместив его в другую группу правил:|Сохраните эти правила, переместив их в другую группу правил:', + 'make_new_rule' => 'Создать новое правило в группе правил ":title"', + 'make_new_rule_no_group' => 'Создать новое правило', + 'instructions_rule_from_bill' => 'Для того чтобы сопоставить транзакции с вашим новым счётом на оплату ":name", Firefly III может создать правило, которое будет автоматически проверять все ваши транзакции. Пожалуйста, проверьте данные ниже и сохраните правило, для того чтобы Firefly III автоматически привязывал транзакции к вашему новому счёту на оплату.', + 'instructions_rule_from_journal' => 'Создайте правило, основанное на одной из ваших транзакций. Заполните или отправьте форму ниже.', + 'rule_is_strict' => 'строгое правило', + 'rule_is_not_strict' => 'нестрогое правило', + 'rule_help_stop_processing' => 'Когда вы установите этот флажок, более поздние правила в этой группе не будут выполняться.', + 'rule_help_strict' => 'В строгих правилах действие будет запущено, если ВСЕ триггеры выполнены. Для нестрогих правил достаточно срабатывания одного ЛЮБОГО триггера.', + 'rule_help_active' => 'Неактивные правила никогда не срабатывают.', + 'stored_new_rule' => 'Сохранено новое правило с названием ":title"', + 'deleted_rule' => 'Удалено правило с названием ":title"', + 'store_new_rule' => 'Сохранить новое правило', + 'updated_rule' => 'Обновлено правило с названием ":title"', + 'default_rule_group_name' => 'Правила по умолчанию', + 'default_rule_group_description' => 'Здесь размещаются правила, которые вы не поместили ни в одну из групп.', + 'trigger' => 'Условие', + 'trigger_value' => 'Значение условия', + 'stop_processing_other_triggers' => 'Прекратить обработку других условий', + 'add_rule_trigger' => 'Добавить новое условие', + 'action' => 'Действие', + 'action_value' => 'Значение действия', + 'stop_executing_other_actions' => 'Прекратить выполнение других действий', + 'add_rule_action' => 'Добавить новое действие', + 'edit_rule' => 'Изменить правило ":title"', + 'delete_rule' => 'Удалить правило ":title"', + 'update_rule' => 'Обновить правило', + 'test_rule_triggers' => 'Показать подходящие транзакции', + 'warning_no_matching_transactions' => 'Подходящих транзакций не найдено.', + 'warning_no_valid_triggers' => 'Отсутствуют правильные условия.', + 'apply_rule_selection' => 'Применить ":title" к выбранным вами транзакциям', + 'apply_rule_selection_intro' => 'Такие правила, как ":title", обычно применяются только к новым или обновлённым транзакциям, но Firefly III может применить его для выбранных вами существующих транзакций. Это может быть полезно, если вы обновили правило, и вам нужно изменить ранее созданные транзакции в соответствии с новыми условиями.', + 'include_transactions_from_accounts' => 'Включить транзакции с указанных счетов', + 'include' => 'Включить?', + 'applied_rule_selection' => '{0} В вашем выборе ни одна транзакция не была изменена правилом ":title".|[1] В вашем выборе одна транзакция была изменена правилом ":title".|[2,*] :count транзакции(-ий) в вашем выборе было изменено правилом ":title".', + 'execute' => 'Выполнить', + 'apply_rule_group_selection' => 'Применить группу правил":title" к выбранным вами транзакциям', + 'apply_rule_group_selection_intro' => 'Такие группы правил, как ":title", обычно применяются только к новым или обновлённым транзакциям, но Firefly III может применить все правила из этой группы для выбранных вами существующих транзакций. Это может быть полезно, если вы обновили одно или несколько правил в группе и вам нужно изменить ранее созданные транзакции в соответствии с новыми условиями.', + 'applied_rule_group_selection' => 'Группа правил ":title" была применена к выбранным вами транзакциям.', // actions and triggers - 'rule_trigger_store_journal' => 'Когда создается транзакция', - 'rule_trigger_update_journal' => 'Когда транзакция обновляется', - 'rule_trigger_user_action' => 'Действие пользователя = ":trigger_value"', + 'rule_trigger_store_journal' => 'Когда создается транзакция', + 'rule_trigger_update_journal' => 'Когда транзакция обновляется', + 'rule_trigger_user_action' => 'Действие пользователя = ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Название счёта-источника начинается с..', - 'rule_trigger_source_account_starts' => 'Название счёта-источника начинается с ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Название счёта-источника заканчивается на..', - 'rule_trigger_source_account_ends' => 'Название счёта-источника заканчивается на ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Название счёта-источника..', - 'rule_trigger_source_account_is' => 'Название счёта-источника ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Название счёта-источника содержит..', - 'rule_trigger_source_account_contains' => 'Название счёта-источника содержит ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Идентификатор счёта совпадает с..', - 'rule_trigger_account_id' => 'Идентификатор счёта совпадает с :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID счёта-источника совпадает с..', - 'rule_trigger_source_account_id' => 'ID счёта-источника совпадает с :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID счёта назначения совпадает с..', - 'rule_trigger_destination_account_id' => 'ID счёта назначения совпадает с :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Любой счет является наличными', - 'rule_trigger_account_is_cash' => 'Любой счет является наличными', - 'rule_trigger_source_is_cash_choice' => 'Счёт-источник - это (наличный) счёт', - 'rule_trigger_source_is_cash' => 'Счёт-источник - это (наличный) счёт', - 'rule_trigger_destination_is_cash_choice' => 'Счёт назначения - это (наличный) счёт', - 'rule_trigger_destination_is_cash' => 'Счёт назначения - это (наличный) счёт', - 'rule_trigger_source_account_nr_starts_choice' => 'Номер счёта-источника / IBAN начинается с..', - 'rule_trigger_source_account_nr_starts' => 'Номер счёта-источника / IBAN начинается с ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Номер счёта-источника / IBAN заканчивается на..', - 'rule_trigger_source_account_nr_ends' => 'Номер счёта-источника / IBAN заканчивается на ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Номер счёта-источника / IBAN..', - 'rule_trigger_source_account_nr_is' => 'Номер счёта-источника / IBAN - ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Номер счёта-источника / IBAN содержит..', - 'rule_trigger_source_account_nr_contains' => 'Номер счёта-источника / IBAN содержит ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Название счёта назначения начинается с..', - 'rule_trigger_destination_account_starts' => 'Название счёта назначения начинается с ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Название счёта назначения заканчивается на..', - 'rule_trigger_destination_account_ends' => 'Название счёта назначения заканчивается на ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Название счёта назначения..', - 'rule_trigger_destination_account_is' => 'Название счёта назначения ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Название счёта назначения содержит..', - 'rule_trigger_destination_account_contains' => 'Название счёта назначения содержит ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Номер счёта назначение / IBAN начинается с..', - 'rule_trigger_destination_account_nr_starts' => 'Номер счёта назначение / IBAN начинается с ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Номер счёта назначения / IBAN заканчивается на..', - 'rule_trigger_destination_account_nr_ends' => 'Номер счёта назначения / IBAN заканчивается ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Номер счёта назначение / IBAN..', - 'rule_trigger_destination_account_nr_is' => 'Номер счёта назначения / IBAN ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Номер счёта назначения / IBAN содержит..', - 'rule_trigger_destination_account_nr_contains' => 'Номер счёта назначения / IBAN содержит ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Тип транзакции = ', - 'rule_trigger_transaction_type' => 'Тип транзакции = ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Категория =', - 'rule_trigger_category_is' => 'Категория = ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Сумма меньше или равна ..', - 'rule_trigger_amount_less' => 'Сумма меньше или равна :trigger_value', - 'rule_trigger_amount_is_choice' => 'Сумма..', - 'rule_trigger_amount_is' => 'Сумма :trigger_value', - 'rule_trigger_amount_more_choice' => 'Сумма больше или равна..', - 'rule_trigger_amount_more' => 'Сумма больше или равна :trigger_value', - 'rule_trigger_description_starts_choice' => 'Описание начинается с...', - 'rule_trigger_description_starts' => 'Описание начинается с ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Описание заканчивается на...', - 'rule_trigger_description_ends' => 'Описание заканчивается на ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Описание содержит...', - 'rule_trigger_description_contains' => 'Описание содержит ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Описание =', - 'rule_trigger_description_is' => 'Описание = ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Дата транзакции..', - 'rule_trigger_date_on' => 'Дата транзакции: ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Дата транзакции до...', - 'rule_trigger_date_before' => 'Дата транзакции до ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Дата транзакции после..', - 'rule_trigger_date_after' => 'Дата транзакции после ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Транзакция совершена..', - 'rule_trigger_created_at_on' => 'Транзакция совершена ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Последнее изменение транзакции..', - 'rule_trigger_updated_at_on' => 'Последнее изменение транзакции ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Бюджет =', - 'rule_trigger_budget_is' => 'Бюджет = ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Любой тег..', - 'rule_trigger_tag_is' => 'Любой тег ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Валюта операции - ', - 'rule_trigger_currency_is' => 'Валюта транзакции = ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Валюта операции - ', - 'rule_trigger_foreign_currency_is' => 'Валюта транзакции = ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Содержит несколько вложений', - 'rule_trigger_has_attachments' => 'Содержит как минимум :trigger_value вложений', - 'rule_trigger_has_no_category_choice' => 'Нет связанной категории', - 'rule_trigger_has_no_category' => 'Транзакция не связана ни с одной категорией', - 'rule_trigger_has_any_category_choice' => 'Связана с (любой) категорией', - 'rule_trigger_has_any_category' => 'Транзакция связана с (любой) категорией', - 'rule_trigger_has_no_budget_choice' => 'Нет связанного бюджета', - 'rule_trigger_has_no_budget' => 'Транзакция не связана ни с одним бюджетом', - 'rule_trigger_has_any_budget_choice' => 'Связана с (любым) бюджетом', - 'rule_trigger_has_any_budget' => 'Транзакция связана с (любым) бюджетом', - 'rule_trigger_has_no_bill_choice' => 'Не содержит счетов', - 'rule_trigger_has_no_bill' => 'Транзакция не содержит счетов', - 'rule_trigger_has_any_bill_choice' => 'Содержит (любой) счёт', - 'rule_trigger_has_any_bill' => 'У транзакции есть (любой) счет на оплату', - 'rule_trigger_has_no_tag_choice' => 'Нет меток', - 'rule_trigger_has_no_tag' => 'У транзакции ни одной метки', - 'rule_trigger_has_any_tag_choice' => 'Есть одна или несколько (любых) меток', - 'rule_trigger_has_any_tag' => 'Транзакция имеет одну или более (любые) метки', - 'rule_trigger_any_notes_choice' => 'Содержит (любые) заметки', - 'rule_trigger_any_notes' => 'Транзакция содержит (любые) заметки', - 'rule_trigger_no_notes_choice' => 'Не содержит заметок', - 'rule_trigger_no_notes' => 'Транзакция не содержит заметок', - 'rule_trigger_notes_is_choice' => 'Примечания..', - 'rule_trigger_notes_is' => 'Примечания ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Заметки содержат..', - 'rule_trigger_notes_contains' => 'Заметки содержат ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Заметки начинаются с..', - 'rule_trigger_notes_starts' => 'Заметки начинаются с ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Заметки заканчиваются на..', - 'rule_trigger_notes_ends' => 'Заметки заканчиваются на ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Счёт на оплату = ..', - 'rule_trigger_bill_is' => 'Счёт на оплату ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Внешний ID..', - 'rule_trigger_external_id_is' => 'Внешний ID - ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Внутренняя ссылка..', - 'rule_trigger_internal_reference_is' => 'Внутренняя ссылка - ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID журнала транзакций..', - 'rule_trigger_journal_id' => 'ID журнала транзакций ":trigger_value"', - 'rule_trigger_any_external_url' => 'У транзакции есть (любой) внешний URL', - 'rule_trigger_any_external_url_choice' => 'У транзакции есть (любой) внешний URL', - 'rule_trigger_any_external_id' => 'У транзакции есть (любой) внешний идентификатор', - 'rule_trigger_any_external_id_choice' => 'У транзакции есть (любой) внешний идентификатор', - 'rule_trigger_no_external_url_choice' => 'У транзакции нет внешнего URL', - 'rule_trigger_no_external_url' => 'У транзакции нет внешнего URL', - 'rule_trigger_no_external_id_choice' => 'У транзакции нет внешнего идентификатора', - 'rule_trigger_no_external_id' => 'У транзакции нет внешнего идентификатора', - 'rule_trigger_id_choice' => 'ID транзакции..', - 'rule_trigger_id' => 'ID транзакции ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Название счёта-источника начинается с..', + 'rule_trigger_source_account_starts' => 'Название счёта-источника начинается с ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Название счёта-источника заканчивается на..', + 'rule_trigger_source_account_ends' => 'Название счёта-источника заканчивается на ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Название счёта-источника..', + 'rule_trigger_source_account_is' => 'Название счёта-источника ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Название счёта-источника содержит..', + 'rule_trigger_source_account_contains' => 'Название счёта-источника содержит ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Идентификатор счёта совпадает с..', + 'rule_trigger_account_id' => 'Идентификатор счёта совпадает с :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID счёта-источника совпадает с..', + 'rule_trigger_source_account_id' => 'ID счёта-источника совпадает с :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID счёта назначения совпадает с..', + 'rule_trigger_destination_account_id' => 'ID счёта назначения совпадает с :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Любой счет является наличными', + 'rule_trigger_account_is_cash' => 'Любой счет является наличными', + 'rule_trigger_source_is_cash_choice' => 'Счёт-источник - это (наличный) счёт', + 'rule_trigger_source_is_cash' => 'Счёт-источник - это (наличный) счёт', + 'rule_trigger_destination_is_cash_choice' => 'Счёт назначения - это (наличный) счёт', + 'rule_trigger_destination_is_cash' => 'Счёт назначения - это (наличный) счёт', + 'rule_trigger_source_account_nr_starts_choice' => 'Номер счёта-источника / IBAN начинается с..', + 'rule_trigger_source_account_nr_starts' => 'Номер счёта-источника / IBAN начинается с ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Номер счёта-источника / IBAN заканчивается на..', + 'rule_trigger_source_account_nr_ends' => 'Номер счёта-источника / IBAN заканчивается на ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Номер счёта-источника / IBAN..', + 'rule_trigger_source_account_nr_is' => 'Номер счёта-источника / IBAN - ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Номер счёта-источника / IBAN содержит..', + 'rule_trigger_source_account_nr_contains' => 'Номер счёта-источника / IBAN содержит ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Название счёта назначения начинается с..', + 'rule_trigger_destination_account_starts' => 'Название счёта назначения начинается с ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Название счёта назначения заканчивается на..', + 'rule_trigger_destination_account_ends' => 'Название счёта назначения заканчивается на ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Название счёта назначения..', + 'rule_trigger_destination_account_is' => 'Название счёта назначения ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Название счёта назначения содержит..', + 'rule_trigger_destination_account_contains' => 'Название счёта назначения содержит ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Номер счёта назначение / IBAN начинается с..', + 'rule_trigger_destination_account_nr_starts' => 'Номер счёта назначение / IBAN начинается с ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Номер счёта назначения / IBAN заканчивается на..', + 'rule_trigger_destination_account_nr_ends' => 'Номер счёта назначения / IBAN заканчивается ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Номер счёта назначение / IBAN..', + 'rule_trigger_destination_account_nr_is' => 'Номер счёта назначения / IBAN ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Номер счёта назначения / IBAN содержит..', + 'rule_trigger_destination_account_nr_contains' => 'Номер счёта назначения / IBAN содержит ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Тип транзакции = ', + 'rule_trigger_transaction_type' => 'Тип транзакции = ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Категория =', + 'rule_trigger_category_is' => 'Категория = ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Сумма меньше или равна ..', + 'rule_trigger_amount_less' => 'Сумма меньше или равна :trigger_value', + 'rule_trigger_amount_is_choice' => 'Сумма..', + 'rule_trigger_amount_is' => 'Сумма :trigger_value', + 'rule_trigger_amount_more_choice' => 'Сумма больше или равна..', + 'rule_trigger_amount_more' => 'Сумма больше или равна :trigger_value', + 'rule_trigger_description_starts_choice' => 'Описание начинается с...', + 'rule_trigger_description_starts' => 'Описание начинается с ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Описание заканчивается на...', + 'rule_trigger_description_ends' => 'Описание заканчивается на ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Описание содержит...', + 'rule_trigger_description_contains' => 'Описание содержит ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Описание =', + 'rule_trigger_description_is' => 'Описание = ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Дата транзакции..', + 'rule_trigger_date_on' => 'Дата транзакции: ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Дата транзакции до...', + 'rule_trigger_date_before' => 'Дата транзакции до ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Дата транзакции после..', + 'rule_trigger_date_after' => 'Дата транзакции после ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Транзакция совершена..', + 'rule_trigger_created_at_on' => 'Транзакция совершена ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Последнее изменение транзакции..', + 'rule_trigger_updated_at_on' => 'Последнее изменение транзакции ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Бюджет =', + 'rule_trigger_budget_is' => 'Бюджет = ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Любой тег..', + 'rule_trigger_tag_is' => 'Любой тег ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Валюта операции - ', + 'rule_trigger_currency_is' => 'Валюта транзакции = ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Валюта операции - ', + 'rule_trigger_foreign_currency_is' => 'Валюта транзакции = ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Содержит несколько вложений', + 'rule_trigger_has_attachments' => 'Содержит как минимум :trigger_value вложений', + 'rule_trigger_has_no_category_choice' => 'Нет связанной категории', + 'rule_trigger_has_no_category' => 'Транзакция не связана ни с одной категорией', + 'rule_trigger_has_any_category_choice' => 'Связана с (любой) категорией', + 'rule_trigger_has_any_category' => 'Транзакция связана с (любой) категорией', + 'rule_trigger_has_no_budget_choice' => 'Нет связанного бюджета', + 'rule_trigger_has_no_budget' => 'Транзакция не связана ни с одним бюджетом', + 'rule_trigger_has_any_budget_choice' => 'Связана с (любым) бюджетом', + 'rule_trigger_has_any_budget' => 'Транзакция связана с (любым) бюджетом', + 'rule_trigger_has_no_bill_choice' => 'Не содержит счетов', + 'rule_trigger_has_no_bill' => 'Транзакция не содержит счетов', + 'rule_trigger_has_any_bill_choice' => 'Содержит (любой) счёт', + 'rule_trigger_has_any_bill' => 'У транзакции есть (любой) счет на оплату', + 'rule_trigger_has_no_tag_choice' => 'Нет меток', + 'rule_trigger_has_no_tag' => 'У транзакции ни одной метки', + 'rule_trigger_has_any_tag_choice' => 'Есть одна или несколько (любых) меток', + 'rule_trigger_has_any_tag' => 'Транзакция имеет одну или более (любые) метки', + 'rule_trigger_any_notes_choice' => 'Содержит (любые) заметки', + 'rule_trigger_any_notes' => 'Транзакция содержит (любые) заметки', + 'rule_trigger_no_notes_choice' => 'Не содержит заметок', + 'rule_trigger_no_notes' => 'Транзакция не содержит заметок', + 'rule_trigger_notes_is_choice' => 'Примечания..', + 'rule_trigger_notes_is' => 'Примечания ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Заметки содержат..', + 'rule_trigger_notes_contains' => 'Заметки содержат ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Заметки начинаются с..', + 'rule_trigger_notes_starts' => 'Заметки начинаются с ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Заметки заканчиваются на..', + 'rule_trigger_notes_ends' => 'Заметки заканчиваются на ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Счёт на оплату = ..', + 'rule_trigger_bill_is' => 'Счёт на оплату ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Внешний ID..', + 'rule_trigger_external_id_is' => 'Внешний ID - ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Внутренняя ссылка..', + 'rule_trigger_internal_reference_is' => 'Внутренняя ссылка - ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID журнала транзакций..', + 'rule_trigger_journal_id' => 'ID журнала транзакций ":trigger_value"', + 'rule_trigger_any_external_url' => 'У транзакции есть (любой) внешний URL', + 'rule_trigger_any_external_url_choice' => 'У транзакции есть (любой) внешний URL', + 'rule_trigger_any_external_id' => 'У транзакции есть (любой) внешний идентификатор', + 'rule_trigger_any_external_id_choice' => 'У транзакции есть (любой) внешний идентификатор', + 'rule_trigger_no_external_url_choice' => 'У транзакции нет внешнего URL', + 'rule_trigger_no_external_url' => 'У транзакции нет внешнего URL', + 'rule_trigger_no_external_id_choice' => 'У транзакции нет внешнего идентификатора', + 'rule_trigger_no_external_id' => 'У транзакции нет внешнего идентификатора', + 'rule_trigger_id_choice' => 'ID транзакции..', + 'rule_trigger_id' => 'ID транзакции ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Действие пользователя = ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Нет тэга..', - 'rule_trigger_tag_is_not' => 'Нет тега ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Счет совпадает с..', - 'rule_trigger_account_is' => 'Счет совпадает с ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Любая учетная запись заканчивается содержит..', - 'rule_trigger_account_contains' => 'Любая учетная запись содержит ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Любая учетная запись заканчивается..', - 'rule_trigger_account_ends' => 'Любая учетная запись заканчивается на ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Любая учетная запись начинается с..', - 'rule_trigger_account_starts' => 'Любая учетная запись начинается с ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Номер счета / IBAN..', - 'rule_trigger_account_nr_is' => 'Номер счета / IBAN ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Номер счета / IBAN содержит..', - 'rule_trigger_account_nr_contains' => 'Номер счета / IBAN содержит ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Номер счета / IBAN заканчивается на..', - 'rule_trigger_account_nr_ends' => 'Номер счета / IBAN заканчивается на ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Номер счета / IBAN начинается с..', - 'rule_trigger_account_nr_starts' => 'Номер счета / IBAN начинается с ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Категория содержит..', - 'rule_trigger_category_contains' => 'Категория содержит ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Категория заканчивается на..', - 'rule_trigger_category_ends' => 'Категория заканчивается на ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Категория начинается на..', - 'rule_trigger_category_starts' => 'Категория начинается на ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Бюджет содержит..', - 'rule_trigger_budget_contains' => 'Бюджет содержит ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Бюджет заканчивается на..', - 'rule_trigger_budget_ends' => 'Бюджет заканчивается на ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Бюджет начинается с..', - 'rule_trigger_budget_starts' => 'Бюджет начинается с ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Счёт содержит..', - 'rule_trigger_bill_contains' => 'Счёт содержит ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Счет заканчивается на..', - 'rule_trigger_bill_ends' => 'Счет заканчивается на ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Счет начинается с..', - 'rule_trigger_bill_starts' => 'Счёт начинается с ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Внешний ID содержит..', - 'rule_trigger_external_id_contains' => 'Внешний ID содержит ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Внешний ID заканчивается на..', - 'rule_trigger_external_id_ends' => 'Внешний ID заканчивается на ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Внешний ID начинается с..', - 'rule_trigger_external_id_starts' => 'Внешний ID начинается на ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Внутренняя ссылка содержит..', - 'rule_trigger_internal_reference_contains' => 'Внутренняя ссылка содержит ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Внутренняя ссылка заканчивается на..', - 'rule_trigger_internal_reference_ends' => 'Внутренняя ссылка заканчивается на ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Внутренняя ссылка начинается с..', - 'rule_trigger_internal_reference_starts' => 'Внутренняя ссылка начинается с ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Внешний URL..', - 'rule_trigger_external_url_is' => 'Внешний URL ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Внешний URL-адрес содержит..', - 'rule_trigger_external_url_contains' => 'Внешний URL содержит ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Внешний URL-адрес заканчивается на..', - 'rule_trigger_external_url_ends' => 'Внешний URL заканчивается на ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Внешний URL-адрес начинается с..', - 'rule_trigger_external_url_starts' => 'Внешний URL начинается с ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Вложений нет', - 'rule_trigger_has_no_attachments' => 'У транзакции нет вложений', - 'rule_trigger_recurrence_id_choice' => 'Идентификатор повторяющейся транзакции..', - 'rule_trigger_recurrence_id' => 'Идентификатор повторяющейся транзакции ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Дата начисления процентов..', - 'rule_trigger_interest_date_on' => 'Дата начисления процентов ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Дата начисления процентов после..', - 'rule_trigger_interest_date_before' => 'Дата начисления процентов до ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Дата начисления процентов после..', - 'rule_trigger_interest_date_after' => 'Дата начисления процентов после ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Дата оплаты..', - 'rule_trigger_process_date_on' => 'Дата оплаты ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Дата оплаты до..', - 'rule_trigger_process_date_before' => 'Дата оплаты до ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Дата оплаты после..', - 'rule_trigger_process_date_after' => 'Дата счета после ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Дата выполнения..', - 'rule_trigger_due_date_on' => 'Дата выполнения ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Дата выполнения до..', - 'rule_trigger_due_date_before' => 'Дата выполнения до ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Дата выполнения после..', - 'rule_trigger_due_date_after' => 'Дата выполнения после ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Дата оплаты..', - 'rule_trigger_payment_date_on' => 'Дата оплаты ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Дата оплаты до..', - 'rule_trigger_payment_date_before' => 'Дата оплаты до ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Дата оплаты после..', - 'rule_trigger_payment_date_after' => 'Дата оплаты после ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Дата выставления счета..', - 'rule_trigger_invoice_date_on' => 'Дата выставления счета ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Дата выставления счета до..', - 'rule_trigger_invoice_date_before' => 'Дата счета до ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Дата выставления счёта после..', - 'rule_trigger_invoice_date_after' => 'Дата счета после ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Транзакция была создана ранее..', - 'rule_trigger_created_at_before' => 'Транзакция была создана до ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Транзакция была создана после..', - 'rule_trigger_created_at_after' => 'Транзакция была создана после ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Последний раз транзакция обновилась..', - 'rule_trigger_updated_at_before' => 'Последняя транзакция была обновлена до ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Последняя транзакция была обновлена после..', - 'rule_trigger_updated_at_after' => 'Последняя транзакция была обновлена после ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Имя любого вложения..', - 'rule_trigger_attachment_name_is' => 'Любое имя вложения: ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Имя любых вложений содержит..', - 'rule_trigger_attachment_name_contains' => 'Имя любых вложений содержит ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Имя любого вложения начинается с..', - 'rule_trigger_attachment_name_starts' => 'Имя любого вложения начинается с ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Имя любого вложений заканчивается на..', - 'rule_trigger_attachment_name_ends' => 'Имя любого вложений заканчивается на ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Имя любого вложения..', - 'rule_trigger_attachment_notes_are' => 'Любое имя вложения: ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Имя любых вложений содержит..', - 'rule_trigger_attachment_notes_contains' => 'Имя любых вложений содержит ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Имя любого вложения начинается с..', - 'rule_trigger_attachment_notes_starts' => 'Имя любого вложения начинается с ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Имя любого вложений заканчивается на..', - 'rule_trigger_attachment_notes_ends' => 'Имя любого вложений заканчивается на ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Транзакция сверена', - 'rule_trigger_reconciled' => 'Транзакция сверена', - 'rule_trigger_exists_choice' => 'Любые транзакции совпадают(!)', - 'rule_trigger_exists' => 'Любые транзакции совпадают', + 'rule_trigger_user_action_choice' => 'Действие пользователя = ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Нет тэга..', + 'rule_trigger_tag_is_not' => 'Нет тега ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Счет совпадает с..', + 'rule_trigger_account_is' => 'Счет совпадает с ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Любая учетная запись заканчивается содержит..', + 'rule_trigger_account_contains' => 'Любая учетная запись содержит ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Любая учетная запись заканчивается..', + 'rule_trigger_account_ends' => 'Любая учетная запись заканчивается на ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Любая учетная запись начинается с..', + 'rule_trigger_account_starts' => 'Любая учетная запись начинается с ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Номер счета / IBAN..', + 'rule_trigger_account_nr_is' => 'Номер счета / IBAN ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Номер счета / IBAN содержит..', + 'rule_trigger_account_nr_contains' => 'Номер счета / IBAN содержит ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Номер счета / IBAN заканчивается на..', + 'rule_trigger_account_nr_ends' => 'Номер счета / IBAN заканчивается на ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Номер счета / IBAN начинается с..', + 'rule_trigger_account_nr_starts' => 'Номер счета / IBAN начинается с ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Категория содержит..', + 'rule_trigger_category_contains' => 'Категория содержит ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Категория заканчивается на..', + 'rule_trigger_category_ends' => 'Категория заканчивается на ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Категория начинается на..', + 'rule_trigger_category_starts' => 'Категория начинается на ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Бюджет содержит..', + 'rule_trigger_budget_contains' => 'Бюджет содержит ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Бюджет заканчивается на..', + 'rule_trigger_budget_ends' => 'Бюджет заканчивается на ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Бюджет начинается с..', + 'rule_trigger_budget_starts' => 'Бюджет начинается с ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Счёт содержит..', + 'rule_trigger_bill_contains' => 'Счёт содержит ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Счет заканчивается на..', + 'rule_trigger_bill_ends' => 'Счет заканчивается на ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Счет начинается с..', + 'rule_trigger_bill_starts' => 'Счёт начинается с ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Внешний ID содержит..', + 'rule_trigger_external_id_contains' => 'Внешний ID содержит ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Внешний ID заканчивается на..', + 'rule_trigger_external_id_ends' => 'Внешний ID заканчивается на ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Внешний ID начинается с..', + 'rule_trigger_external_id_starts' => 'Внешний ID начинается на ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Внутренняя ссылка содержит..', + 'rule_trigger_internal_reference_contains' => 'Внутренняя ссылка содержит ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Внутренняя ссылка заканчивается на..', + 'rule_trigger_internal_reference_ends' => 'Внутренняя ссылка заканчивается на ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Внутренняя ссылка начинается с..', + 'rule_trigger_internal_reference_starts' => 'Внутренняя ссылка начинается с ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Внешний URL..', + 'rule_trigger_external_url_is' => 'Внешний URL ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Внешний URL-адрес содержит..', + 'rule_trigger_external_url_contains' => 'Внешний URL содержит ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Внешний URL-адрес заканчивается на..', + 'rule_trigger_external_url_ends' => 'Внешний URL заканчивается на ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Внешний URL-адрес начинается с..', + 'rule_trigger_external_url_starts' => 'Внешний URL начинается с ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Вложений нет', + 'rule_trigger_has_no_attachments' => 'У транзакции нет вложений', + 'rule_trigger_recurrence_id_choice' => 'Идентификатор повторяющейся транзакции..', + 'rule_trigger_recurrence_id' => 'Идентификатор повторяющейся транзакции ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Дата начисления процентов..', + 'rule_trigger_interest_date_on' => 'Дата начисления процентов ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Дата начисления процентов после..', + 'rule_trigger_interest_date_before' => 'Дата начисления процентов до ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Дата начисления процентов после..', + 'rule_trigger_interest_date_after' => 'Дата начисления процентов после ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Дата оплаты..', + 'rule_trigger_process_date_on' => 'Дата оплаты ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Дата оплаты до..', + 'rule_trigger_process_date_before' => 'Дата оплаты до ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Дата оплаты после..', + 'rule_trigger_process_date_after' => 'Дата счета после ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Дата выполнения..', + 'rule_trigger_due_date_on' => 'Дата выполнения ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Дата выполнения до..', + 'rule_trigger_due_date_before' => 'Дата выполнения до ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Дата выполнения после..', + 'rule_trigger_due_date_after' => 'Дата выполнения после ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Дата оплаты..', + 'rule_trigger_payment_date_on' => 'Дата оплаты ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Дата оплаты до..', + 'rule_trigger_payment_date_before' => 'Дата оплаты до ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Дата оплаты после..', + 'rule_trigger_payment_date_after' => 'Дата оплаты после ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Дата выставления счета..', + 'rule_trigger_invoice_date_on' => 'Дата выставления счета ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Дата выставления счета до..', + 'rule_trigger_invoice_date_before' => 'Дата счета до ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Дата выставления счёта после..', + 'rule_trigger_invoice_date_after' => 'Дата счета после ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Транзакция была создана ранее..', + 'rule_trigger_created_at_before' => 'Транзакция была создана до ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Транзакция была создана после..', + 'rule_trigger_created_at_after' => 'Транзакция была создана после ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Последний раз транзакция обновилась..', + 'rule_trigger_updated_at_before' => 'Последняя транзакция была обновлена до ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Последняя транзакция была обновлена после..', + 'rule_trigger_updated_at_after' => 'Последняя транзакция была обновлена после ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Имя любого вложения..', + 'rule_trigger_attachment_name_is' => 'Любое имя вложения: ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Имя любых вложений содержит..', + 'rule_trigger_attachment_name_contains' => 'Имя любых вложений содержит ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Имя любого вложения начинается с..', + 'rule_trigger_attachment_name_starts' => 'Имя любого вложения начинается с ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Имя любого вложений заканчивается на..', + 'rule_trigger_attachment_name_ends' => 'Имя любого вложений заканчивается на ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Имя любого вложения..', + 'rule_trigger_attachment_notes_are' => 'Любое имя вложения: ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Имя любых вложений содержит..', + 'rule_trigger_attachment_notes_contains' => 'Имя любых вложений содержит ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Имя любого вложения начинается с..', + 'rule_trigger_attachment_notes_starts' => 'Имя любого вложения начинается с ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Имя любого вложений заканчивается на..', + 'rule_trigger_attachment_notes_ends' => 'Имя любого вложений заканчивается на ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Транзакция сверена', + 'rule_trigger_reconciled' => 'Транзакция сверена', + 'rule_trigger_exists_choice' => 'Любые транзакции совпадают(!)', + 'rule_trigger_exists' => 'Любые транзакции совпадают', // more values for new types: - 'rule_trigger_not_account_id' => 'ID аккаунта не ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'ID счёта-источника не ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'ID счёта-назначения не ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Тип транзакции не ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Метка не ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Метка = ":trigger_value"', - 'rule_trigger_not_description_is' => 'Описание не ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Описание не содержит', - 'rule_trigger_not_description_ends' => 'Описание не заканчивается на ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Описание не начинается с ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Заметки не ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Заметки не содержат ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Заметки не заканчиваются на ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Заметки не начинаются с ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Счёт-источник не ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Счёт-источник не содержит ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Счёт-источник не заканчивается на ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Счёт-источник не начинается с ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Номер счёта-источника / IBAN не ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Категория не ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Категория не содержит ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Категория не заканчивается ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Категория не начинается с ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Бюджет не ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Бюджет не содержит ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Бюджет не заканчивается ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Бюджет не начинается с ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Валюта не ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'ID транзакции не является ":trigger_value"', - 'rule_trigger_not_journal_id' => 'ID журнала транзакций не является ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Дата не ":trigger_value"', - 'rule_trigger_not_date_before' => 'Дата не до ":trigger_value"', - 'rule_trigger_not_date_after' => 'Дата не после ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Дата выставления счета не ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Дата счета не до ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Дата счета не после ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Транзакция не создана в ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Транзакция не сверена', - 'rule_trigger_not_exists' => 'Транзакция не существует', - 'rule_trigger_not_has_attachments' => 'У транзакции нет вложений', - 'rule_trigger_not_has_any_category' => 'У транзакции нет категории', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'У транзакции нет счета на оплату', - 'rule_trigger_not_has_any_tag' => 'У транзакции нет тегов', - 'rule_trigger_not_any_notes' => 'У транзакции нет заметок', - 'rule_trigger_not_any_external_url' => 'У транзакции нет внешнего URL', - 'rule_trigger_not_has_no_attachments' => 'У транзакции есть (любое) вложение(я)', - 'rule_trigger_not_has_no_category' => 'У транзакции есть (любая) категория', - 'rule_trigger_not_has_no_budget' => 'У транзакции есть (любой) бюджет', - 'rule_trigger_not_has_no_bill' => 'У транзакции есть (любой) счет на оплату', - 'rule_trigger_not_has_no_tag' => 'У транзакции есть (любой) тег', - 'rule_trigger_not_no_notes' => 'У транзакции есть заметки', - 'rule_trigger_not_no_external_url' => 'У транзакции есть внешний URL', - 'rule_trigger_not_source_is_cash' => 'Счёт-источник не наличный счёт', - 'rule_trigger_not_destination_is_cash' => 'Счет назначения не наличный счёт', - 'rule_trigger_not_account_is_cash' => 'Ни один счет не является наличным', + 'rule_trigger_not_account_id' => 'ID аккаунта не ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'ID счёта-источника не ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'ID счёта-назначения не ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Тип транзакции не ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Метка не ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Метка = ":trigger_value"', + 'rule_trigger_not_description_is' => 'Описание не ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Описание не содержит', + 'rule_trigger_not_description_ends' => 'Описание не заканчивается на ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Описание не начинается с ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Заметки не ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Заметки не содержат ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Заметки не заканчиваются на ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Заметки не начинаются с ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Счёт-источник не ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Счёт-источник не содержит ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Счёт-источник не заканчивается на ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Счёт-источник не начинается с ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Номер счёта-источника / IBAN не ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Категория не ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Категория не содержит ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Категория не заканчивается ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Категория не начинается с ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Бюджет не ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Бюджет не содержит ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Бюджет не заканчивается ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Бюджет не начинается с ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Валюта не ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'ID транзакции не является ":trigger_value"', + 'rule_trigger_not_journal_id' => 'ID журнала транзакций не является ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Дата не ":trigger_value"', + 'rule_trigger_not_date_before' => 'Дата не до ":trigger_value"', + 'rule_trigger_not_date_after' => 'Дата не после ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Дата выставления счета не ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Дата счета не до ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Дата счета не после ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Транзакция не создана в ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Транзакция не сверена', + 'rule_trigger_not_exists' => 'Транзакция не существует', + 'rule_trigger_not_has_attachments' => 'У транзакции нет вложений', + 'rule_trigger_not_has_any_category' => 'У транзакции нет категории', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'У транзакции нет счета на оплату', + 'rule_trigger_not_has_any_tag' => 'У транзакции нет тегов', + 'rule_trigger_not_any_notes' => 'У транзакции нет заметок', + 'rule_trigger_not_any_external_url' => 'У транзакции нет внешнего URL', + 'rule_trigger_not_has_no_attachments' => 'У транзакции есть (любое) вложение(я)', + 'rule_trigger_not_has_no_category' => 'У транзакции есть (любая) категория', + 'rule_trigger_not_has_no_budget' => 'У транзакции есть (любой) бюджет', + 'rule_trigger_not_has_no_bill' => 'У транзакции есть (любой) счет на оплату', + 'rule_trigger_not_has_no_tag' => 'У транзакции есть (любой) тег', + 'rule_trigger_not_no_notes' => 'У транзакции есть заметки', + 'rule_trigger_not_no_external_url' => 'У транзакции есть внешний URL', + 'rule_trigger_not_source_is_cash' => 'Счёт-источник не наличный счёт', + 'rule_trigger_not_destination_is_cash' => 'Счет назначения не наличный счёт', + 'rule_trigger_not_account_is_cash' => 'Ни один счет не является наличным', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'УДАЛИТЬ транзакцию(!)', - 'rule_action_delete_transaction' => 'УДАЛИТЬ транзакцию(!)', - 'rule_action_set_category' => 'Назначить категорию ":action_value"', - 'rule_action_clear_category' => 'Очистить поле "Категория"', - 'rule_action_set_budget' => 'Назначить бюджет ":action_value"', - 'rule_action_clear_budget' => 'Очистить поле "Бюджет"', - 'rule_action_add_tag' => 'Добавить метку ":action_value"', - 'rule_action_remove_tag' => 'Удалить метку ":action_value"', - 'rule_action_remove_all_tags' => 'Удалить все метки', - 'rule_action_set_description' => 'Назначить описание ":action_value"', - 'rule_action_append_description' => 'Добавить в конце описание с ":action_value"', - 'rule_action_prepend_description' => 'Добавить в начале описание с ":action_value"', - 'rule_action_set_category_choice' => 'Установить категорию в ..', - 'rule_action_clear_category_choice' => 'Удалить любую категорию', - 'rule_action_set_budget_choice' => 'Установить бюджет в ..', - 'rule_action_clear_budget_choice' => 'Удалить любой бюджет', - 'rule_action_add_tag_choice' => 'Добавить метку ..', - 'rule_action_remove_tag_choice' => 'Удалить метку ..', - 'rule_action_remove_all_tags_choice' => 'Удалить все метки...', - 'rule_action_set_description_choice' => 'Задать описание ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - 'rule_action_append_description_choice' => 'Добавить описание с ..', - 'rule_action_prepend_description_choice' => 'Добавить в начале описания ..', - 'rule_action_set_source_account_choice' => 'Назначить счёт-источник ..', - 'rule_action_set_source_account' => 'Назначить счёт-источник :action_value', - 'rule_action_set_destination_account_choice' => 'Установить счет назначения на ..', - 'rule_action_set_destination_account' => 'Назначить целевой счёт :action_value', - 'rule_action_append_notes_choice' => 'Добавить в конце заметки ..', - 'rule_action_append_notes' => 'Добавить в конце заметки с ":action_value"', - 'rule_action_prepend_notes_choice' => 'Добавить в начале заметки ..', - 'rule_action_prepend_notes' => 'Добавить в начале заметки с ":action_value"', - 'rule_action_clear_notes_choice' => 'Удалить любые заметки', - 'rule_action_clear_notes' => 'Удалить любые заметки', - 'rule_action_set_notes_choice' => 'Добавить заметку ..', - 'rule_action_link_to_bill_choice' => 'Ссылка на счет ..', - 'rule_action_link_to_bill' => 'Ссылка на счёт к оплате ":action_value"', - 'rule_action_switch_accounts_choice' => 'Поменять счета источника и назначения (только для переводов!)', - 'rule_action_switch_accounts' => 'Поменять источник и назначение', - 'rule_action_set_notes' => 'Назначить примечания ":action_value"', - 'rule_action_convert_deposit_choice' => 'Преобразовать транзакцию в доход', - 'rule_action_convert_deposit' => 'Преобразовать транзакцию в доход с помощью ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Преобразовать транзакцию в расход', - 'rule_action_convert_withdrawal' => 'Преобразовать транзакцию в расход с помощью ":action_value"', - 'rule_action_convert_transfer_choice' => 'Преобразовать транзакцию в перевод', - 'rule_action_convert_transfer' => 'Преобразовать транзакцию в перевод с помощью ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Добавить описание к заметкам', - 'rule_action_append_notes_to_descr' => 'Добавить заметки к описанию', - 'rule_action_move_descr_to_notes' => 'Заменить заметки описанием', - 'rule_action_move_notes_to_descr' => 'Заменить описание заметками', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Установить счет назначения (кэш)', - 'rule_action_set_source_to_cash_choice' => 'Установить исходный счёт (кэш)', - 'rulegroup_for_bills_title' => 'Группа правил для счетов к оплате', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Создать новое правило для счёта к оплате ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Правило для счёта на оплату ":name"', - 'new_rule_for_bill_description' => 'Это правило помечает транзакции для счёта на оплату ":name".', + 'rule_action_delete_transaction_choice' => 'УДАЛИТЬ транзакцию(!)', + 'rule_action_delete_transaction' => 'УДАЛИТЬ транзакцию(!)', + 'rule_action_set_category' => 'Назначить категорию ":action_value"', + 'rule_action_clear_category' => 'Очистить поле "Категория"', + 'rule_action_set_budget' => 'Назначить бюджет ":action_value"', + 'rule_action_clear_budget' => 'Очистить поле "Бюджет"', + 'rule_action_add_tag' => 'Добавить метку ":action_value"', + 'rule_action_remove_tag' => 'Удалить метку ":action_value"', + 'rule_action_remove_all_tags' => 'Удалить все метки', + 'rule_action_set_description' => 'Назначить описание ":action_value"', + 'rule_action_append_description' => 'Добавить в конце описание с ":action_value"', + 'rule_action_prepend_description' => 'Добавить в начале описание с ":action_value"', + 'rule_action_set_category_choice' => 'Установить категорию в ..', + 'rule_action_clear_category_choice' => 'Удалить любую категорию', + 'rule_action_set_budget_choice' => 'Установить бюджет в ..', + 'rule_action_clear_budget_choice' => 'Удалить любой бюджет', + 'rule_action_add_tag_choice' => 'Добавить метку ..', + 'rule_action_remove_tag_choice' => 'Удалить метку ..', + 'rule_action_remove_all_tags_choice' => 'Удалить все метки...', + 'rule_action_set_description_choice' => 'Задать описание ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + 'rule_action_append_description_choice' => 'Добавить описание с ..', + 'rule_action_prepend_description_choice' => 'Добавить в начале описания ..', + 'rule_action_set_source_account_choice' => 'Назначить счёт-источник ..', + 'rule_action_set_source_account' => 'Назначить счёт-источник :action_value', + 'rule_action_set_destination_account_choice' => 'Установить счет назначения на ..', + 'rule_action_set_destination_account' => 'Назначить целевой счёт :action_value', + 'rule_action_append_notes_choice' => 'Добавить в конце заметки ..', + 'rule_action_append_notes' => 'Добавить в конце заметки с ":action_value"', + 'rule_action_prepend_notes_choice' => 'Добавить в начале заметки ..', + 'rule_action_prepend_notes' => 'Добавить в начале заметки с ":action_value"', + 'rule_action_clear_notes_choice' => 'Удалить любые заметки', + 'rule_action_clear_notes' => 'Удалить любые заметки', + 'rule_action_set_notes_choice' => 'Добавить заметку ..', + 'rule_action_link_to_bill_choice' => 'Ссылка на счет ..', + 'rule_action_link_to_bill' => 'Ссылка на счёт к оплате ":action_value"', + 'rule_action_switch_accounts_choice' => 'Поменять счета источника и назначения (только для переводов!)', + 'rule_action_switch_accounts' => 'Поменять источник и назначение', + 'rule_action_set_notes' => 'Назначить примечания ":action_value"', + 'rule_action_convert_deposit_choice' => 'Преобразовать транзакцию в доход', + 'rule_action_convert_deposit' => 'Преобразовать транзакцию в доход с помощью ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Преобразовать транзакцию в расход', + 'rule_action_convert_withdrawal' => 'Преобразовать транзакцию в расход с помощью ":action_value"', + 'rule_action_convert_transfer_choice' => 'Преобразовать транзакцию в перевод', + 'rule_action_convert_transfer' => 'Преобразовать транзакцию в перевод с помощью ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Добавить описание к заметкам', + 'rule_action_append_notes_to_descr' => 'Добавить заметки к описанию', + 'rule_action_move_descr_to_notes' => 'Заменить заметки описанием', + 'rule_action_move_notes_to_descr' => 'Заменить описание заметками', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Установить счет назначения (кэш)', + 'rule_action_set_source_to_cash_choice' => 'Установить исходный счёт (кэш)', + 'rulegroup_for_bills_title' => 'Группа правил для счетов к оплате', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Создать новое правило для счёта к оплате ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Правило для счёта на оплату ":name"', + 'new_rule_for_bill_description' => 'Это правило помечает транзакции для счёта на оплату ":name".', - 'new_rule_for_journal_title' => 'Правило основано на транзакции ":description"', - 'new_rule_for_journal_description' => 'Это правило основано на транзакции ":description". Под него будут подпадать транзакции, которые точно совпадают.', + 'new_rule_for_journal_title' => 'Правило основано на транзакции ":description"', + 'new_rule_for_journal_description' => 'Это правило основано на транзакции ":description". Под него будут подпадать транзакции, которые точно совпадают.', // tags - 'store_new_tag' => 'Сохранить новую метку', - 'update_tag' => 'Обновить метку', - 'no_location_set' => 'Местоположение не указано.', - 'meta_data' => 'Расширенные данные', - 'location' => 'Размещение', - 'location_first_split' => 'Расположение для этой транзакции может быть установлено на первой части этой транзакции.', - 'without_date' => 'Без даты', - 'result' => 'Результат', - 'sums_apply_to_range' => 'Все суммы относятся к выбранному диапазону', - 'mapbox_api_key' => 'Чтобы использовать карту, получите ключ API от сервиса Mapbox. Откройте файл .env и введите этот код в строке MAPBOX_API_KEY = .', - 'press_object_location' => 'Щёлкните правой кнопкой мыши или надолго нажмите на сенсорный экран, чтобы установить местоположение объекта.', - 'click_tap_location' => 'Нажмите на карту, чтобы добавить местоположение', - 'clear_location' => 'Очистить местоположение', - 'delete_all_selected_tags' => 'Удалить все выбранные метки', - 'select_tags_to_delete' => 'Не забудьте выбрать несколько меток.', - 'deleted_x_tags' => 'Удалена :count метка.|Удалено :count меток.', - 'create_rule_from_transaction' => 'Создать правило на основе транзакции', - 'create_recurring_from_transaction' => 'Создать повторяющуюся транзакцию, основанную на транзакции', + 'store_new_tag' => 'Сохранить новую метку', + 'update_tag' => 'Обновить метку', + 'no_location_set' => 'Местоположение не указано.', + 'meta_data' => 'Расширенные данные', + 'location' => 'Размещение', + 'location_first_split' => 'Расположение для этой транзакции может быть установлено на первой части этой транзакции.', + 'without_date' => 'Без даты', + 'result' => 'Результат', + 'sums_apply_to_range' => 'Все суммы относятся к выбранному диапазону', + 'mapbox_api_key' => 'Чтобы использовать карту, получите ключ API от сервиса Mapbox. Откройте файл .env и введите этот код в строке MAPBOX_API_KEY = .', + 'press_object_location' => 'Щёлкните правой кнопкой мыши или надолго нажмите на сенсорный экран, чтобы установить местоположение объекта.', + 'click_tap_location' => 'Нажмите на карту, чтобы добавить местоположение', + 'clear_location' => 'Очистить местоположение', + 'delete_all_selected_tags' => 'Удалить все выбранные метки', + 'select_tags_to_delete' => 'Не забудьте выбрать несколько меток.', + 'deleted_x_tags' => 'Удалена :count метка.|Удалено :count меток.', + 'create_rule_from_transaction' => 'Создать правило на основе транзакции', + 'create_recurring_from_transaction' => 'Создать повторяющуюся транзакцию, основанную на транзакции', // preferences - 'dark_mode_option_browser' => 'По усмотрению браузера', - 'dark_mode_option_light' => 'Всегда светлый', - 'dark_mode_option_dark' => 'Всегда тёмный', - 'equal_to_language' => '(в соответствии с языком)', - 'dark_mode_preference' => 'Тёмный режим', - 'dark_mode_preference_help' => 'Когда Firefly III должен использовать тёмный режим?', - 'pref_home_screen_accounts' => 'Счета, отображаемые в сводке', - 'pref_home_screen_accounts_help' => 'Какие счета нужно отображать в сводке на главной странице?', - 'pref_view_range' => 'Диапазон просмотра', - 'pref_view_range_help' => 'Некоторые графики автоматически сгруппированы по периодам. Ваш бюджет также будет сгруппирован по периодам. Какой период вы предпочитаете?', - 'pref_1D' => 'Один день', - 'pref_1W' => 'Одна неделя', - 'pref_1M' => 'Один месяц', - 'pref_3M' => 'Три месяца (квартал)', - 'pref_6M' => 'Шесть месяцев', - 'pref_1Y' => 'Один год', - 'pref_last365' => 'Последний год', - 'pref_last90' => 'Последние 90 дней', - 'pref_last30' => 'Последние 30 дней', - 'pref_last7' => 'Последние 7 дней', - 'pref_YTD' => 'За год до сегодня', - 'pref_QTD' => 'Квартал до сегодняшнего дня', - 'pref_MTD' => 'Месяц до сегодняшнего дня', - 'pref_languages' => 'Языки', - 'pref_locale' => 'Региональные настройки', - 'pref_languages_help' => 'Firefly III поддерживает несколько языков. Какой язык вы предпочитаете?', - 'pref_locale_help' => 'Firefly III позволяет устанавливать другие региональные настройки, например форматирование валют, чисел и дат. Записи в этом списке могут не поддерживаться вашей системой. Firefly III не имеет правильных настроек даты для каждой локали; свяжитесь со мной для улучшения.', - 'pref_locale_no_demo' => 'Эта функция не будет работать для демо-пользователя.', - 'pref_custom_fiscal_year' => 'Параметры финансового года', - 'pref_custom_fiscal_year_label' => 'Включить', - 'pref_custom_fiscal_year_help' => 'Для стран, в которых финансовый год начинается не 1 января, а заканчивается не 31 декабря, вы должны указать даты начала и окончания финансового года', - 'pref_fiscal_year_start_label' => 'Дата начала финансового года', - 'pref_two_factor_auth' => 'Двухэтапная аутентификация', - 'pref_two_factor_auth_help' => 'Когда вы включаете двухэтапную аутентификацию (также известную как двухфакторная аутентификация), вы добавляете дополнительный уровень безопасности в свою учётную запись. Вы входите в систему со своим паролем и ещё чем-то, что есть только у вас (код подтверждения). Коды подтверждения генерируются приложением на вашем телефоне, например, Authy или Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Включить двухэтапную аутентификацию', - 'pref_two_factor_auth_disabled' => 'Двухэтапную код подтверждения удалён и отключен', - 'pref_two_factor_auth_remove_it' => 'Не забудьте удалить учётную запись из своего приложения для аутентификации!', - 'pref_two_factor_auth_code' => 'Проверить код', - 'pref_two_factor_auth_code_help' => 'Отсканируйте QR-код с помощью приложения на телефоне, например Authy или Google Authenticator, и введите сгенерированный код.', - 'pref_two_factor_auth_reset_code' => 'Сбросить код верификации', - 'pref_two_factor_auth_disable_2fa' => 'Выключить 2FA', - '2fa_use_secret_instead' => 'Если вы не можете отсканировать QR-код, не стесняйтесь использовать вместо него секрет: :secret.', - '2fa_backup_codes' => 'Сохраните эти резервные коды для доступа в случае потери устройства.', - '2fa_already_enabled' => 'Двухфакторная верификация уже включена.', - 'wrong_mfa_code' => 'Этот код MFA недействителен.', - 'pref_save_settings' => 'Сохранить настройки', - 'saved_preferences' => 'Настройки сохранены!', - 'preferences_general' => 'Основные', - 'preferences_frontpage' => 'Сводка', - 'preferences_security' => 'Безопасность', - 'preferences_layout' => 'Отображение', - 'preferences_notifications' => 'Уведомления', - 'pref_home_show_deposits' => 'Показывать доходы на главной странице', - 'pref_home_show_deposits_info' => 'В сводке уже отображаются ваши счета расходов. Нужно ли показывать там также ваши счета доходов?', - 'pref_home_do_show_deposits' => 'Да, показать их', - 'successful_count' => 'из которых :count успешно', - 'list_page_size_title' => 'Размер страницы', - 'list_page_size_help' => 'Все списки в программе (счета, транзакции и т. п.) будут отображаться с указанным количеством на одну страницу.', - 'list_page_size_label' => 'Размер страницы', - 'between_dates' => '(:start и :end)', - 'pref_optional_fields_transaction' => 'Дополнительные поля для транзакций', - 'pref_optional_fields_transaction_help' => 'По умолчанию при создании новой транзакции включены не все поля (чтобы не создавать беспорядок). Но вы можете включить эти поля, если лично вам они могут быть полезны. Любое поле, которое в последствии будет отключено, будет по-прежнему отображаться, если оно уже заполнено (независимо от данный настроек).', - 'optional_tj_date_fields' => 'Поля с датами', - 'optional_tj_other_fields' => 'Прочие поля', - 'optional_tj_attachment_fields' => 'Поля вложений', - 'pref_optional_tj_interest_date' => 'Дата начисления процентов', - 'pref_optional_tj_book_date' => 'Дата внесения записи', - 'pref_optional_tj_process_date' => 'Дата обработки', - 'pref_optional_tj_due_date' => 'Срок оплаты', - 'pref_optional_tj_payment_date' => 'Дата платежа', - 'pref_optional_tj_invoice_date' => 'Дата выставления счёта', - 'pref_optional_tj_internal_reference' => 'Внутренняя ссылка', - 'pref_optional_tj_notes' => 'Заметки', - 'pref_optional_tj_attachments' => 'Вложения', - 'pref_optional_tj_external_url' => 'Внешний URL', - 'pref_optional_tj_location' => 'Расположение', - 'pref_optional_tj_links' => 'Связи транзакции', - 'optional_field_meta_dates' => 'Даты', - 'optional_field_meta_business' => 'Бизнес', - 'optional_field_attachments' => 'Вложения', - 'optional_field_meta_data' => 'Расширенные данные', - 'external_url' => 'Внешний URL-адрес', - 'pref_notification_bill_reminder' => 'Напоминания о неоплаченных счетах', - 'pref_notification_new_access_token' => 'Оповещения о создании нового токена для доступа к API', - 'pref_notification_transaction_creation' => 'Предупреждения об автоматически созданных транзакциях', - 'pref_notification_user_login' => 'Оповещение при входе в аккаунт из нового места', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Уведомления', - 'pref_notifications_help' => 'Укажите, какие из перечисленных уведомлений вы хотели бы получать. Некоторые уведомления могут содержать конфиденциальную финансовую информацию.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Если вы хотите, чтобы Firefly III уведомил вас об использовании Slack, введите URL-адрес webhook здесь. В противном случае оставьте поле пустым. Если вы являетесь администратором, вы также должны задать этот URL-адрес в администрировании.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'По усмотрению браузера', + 'dark_mode_option_light' => 'Всегда светлый', + 'dark_mode_option_dark' => 'Всегда тёмный', + 'equal_to_language' => '(в соответствии с языком)', + 'dark_mode_preference' => 'Тёмный режим', + 'dark_mode_preference_help' => 'Когда Firefly III должен использовать тёмный режим?', + 'pref_home_screen_accounts' => 'Счета, отображаемые в сводке', + 'pref_home_screen_accounts_help' => 'Какие счета нужно отображать в сводке на главной странице?', + 'pref_view_range' => 'Диапазон просмотра', + 'pref_view_range_help' => 'Некоторые графики автоматически сгруппированы по периодам. Ваш бюджет также будет сгруппирован по периодам. Какой период вы предпочитаете?', + 'pref_1D' => 'Один день', + 'pref_1W' => 'Одна неделя', + 'pref_1M' => 'Один месяц', + 'pref_3M' => 'Три месяца (квартал)', + 'pref_6M' => 'Шесть месяцев', + 'pref_1Y' => 'Один год', + 'pref_last365' => 'Последний год', + 'pref_last90' => 'Последние 90 дней', + 'pref_last30' => 'Последние 30 дней', + 'pref_last7' => 'Последние 7 дней', + 'pref_YTD' => 'За год до сегодня', + 'pref_QTD' => 'Квартал до сегодняшнего дня', + 'pref_MTD' => 'Месяц до сегодняшнего дня', + 'pref_languages' => 'Языки', + 'pref_locale' => 'Региональные настройки', + 'pref_languages_help' => 'Firefly III поддерживает несколько языков. Какой язык вы предпочитаете?', + 'pref_locale_help' => 'Firefly III позволяет устанавливать другие региональные настройки, например форматирование валют, чисел и дат. Записи в этом списке могут не поддерживаться вашей системой. Firefly III не имеет правильных настроек даты для каждой локали; свяжитесь со мной для улучшения.', + 'pref_locale_no_demo' => 'Эта функция не будет работать для демо-пользователя.', + 'pref_custom_fiscal_year' => 'Параметры финансового года', + 'pref_custom_fiscal_year_label' => 'Включить', + 'pref_custom_fiscal_year_help' => 'Для стран, в которых финансовый год начинается не 1 января, а заканчивается не 31 декабря, вы должны указать даты начала и окончания финансового года', + 'pref_fiscal_year_start_label' => 'Дата начала финансового года', + 'pref_two_factor_auth' => 'Двухэтапная аутентификация', + 'pref_two_factor_auth_help' => 'Когда вы включаете двухэтапную аутентификацию (также известную как двухфакторная аутентификация), вы добавляете дополнительный уровень безопасности в свою учётную запись. Вы входите в систему со своим паролем и ещё чем-то, что есть только у вас (код подтверждения). Коды подтверждения генерируются приложением на вашем телефоне, например, Authy или Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Включить двухэтапную аутентификацию', + 'pref_two_factor_auth_disabled' => 'Двухэтапную код подтверждения удалён и отключен', + 'pref_two_factor_auth_remove_it' => 'Не забудьте удалить учётную запись из своего приложения для аутентификации!', + 'pref_two_factor_auth_code' => 'Проверить код', + 'pref_two_factor_auth_code_help' => 'Отсканируйте QR-код с помощью приложения на телефоне, например Authy или Google Authenticator, и введите сгенерированный код.', + 'pref_two_factor_auth_reset_code' => 'Сбросить код верификации', + 'pref_two_factor_auth_disable_2fa' => 'Выключить 2FA', + '2fa_use_secret_instead' => 'Если вы не можете отсканировать QR-код, не стесняйтесь использовать вместо него секрет: :secret.', + '2fa_backup_codes' => 'Сохраните эти резервные коды для доступа в случае потери устройства.', + '2fa_already_enabled' => 'Двухфакторная верификация уже включена.', + 'wrong_mfa_code' => 'Этот код MFA недействителен.', + 'pref_save_settings' => 'Сохранить настройки', + 'saved_preferences' => 'Настройки сохранены!', + 'preferences_general' => 'Основные', + 'preferences_frontpage' => 'Сводка', + 'preferences_security' => 'Безопасность', + 'preferences_layout' => 'Отображение', + 'preferences_notifications' => 'Уведомления', + 'pref_home_show_deposits' => 'Показывать доходы на главной странице', + 'pref_home_show_deposits_info' => 'В сводке уже отображаются ваши счета расходов. Нужно ли показывать там также ваши счета доходов?', + 'pref_home_do_show_deposits' => 'Да, показать их', + 'successful_count' => 'из которых :count успешно', + 'list_page_size_title' => 'Размер страницы', + 'list_page_size_help' => 'Все списки в программе (счета, транзакции и т. п.) будут отображаться с указанным количеством на одну страницу.', + 'list_page_size_label' => 'Размер страницы', + 'between_dates' => '(:start и :end)', + 'pref_optional_fields_transaction' => 'Дополнительные поля для транзакций', + 'pref_optional_fields_transaction_help' => 'По умолчанию при создании новой транзакции включены не все поля (чтобы не создавать беспорядок). Но вы можете включить эти поля, если лично вам они могут быть полезны. Любое поле, которое в последствии будет отключено, будет по-прежнему отображаться, если оно уже заполнено (независимо от данный настроек).', + 'optional_tj_date_fields' => 'Поля с датами', + 'optional_tj_other_fields' => 'Прочие поля', + 'optional_tj_attachment_fields' => 'Поля вложений', + 'pref_optional_tj_interest_date' => 'Дата начисления процентов', + 'pref_optional_tj_book_date' => 'Дата внесения записи', + 'pref_optional_tj_process_date' => 'Дата обработки', + 'pref_optional_tj_due_date' => 'Срок оплаты', + 'pref_optional_tj_payment_date' => 'Дата платежа', + 'pref_optional_tj_invoice_date' => 'Дата выставления счёта', + 'pref_optional_tj_internal_reference' => 'Внутренняя ссылка', + 'pref_optional_tj_notes' => 'Заметки', + 'pref_optional_tj_attachments' => 'Вложения', + 'pref_optional_tj_external_url' => 'Внешний URL', + 'pref_optional_tj_location' => 'Расположение', + 'pref_optional_tj_links' => 'Связи транзакции', + 'optional_field_meta_dates' => 'Даты', + 'optional_field_meta_business' => 'Бизнес', + 'optional_field_attachments' => 'Вложения', + 'optional_field_meta_data' => 'Расширенные данные', + 'external_url' => 'Внешний URL-адрес', + 'pref_notification_bill_reminder' => 'Напоминания о неоплаченных счетах', + 'pref_notification_new_access_token' => 'Оповещения о создании нового токена для доступа к API', + 'pref_notification_transaction_creation' => 'Предупреждения об автоматически созданных транзакциях', + 'pref_notification_user_login' => 'Оповещение при входе в аккаунт из нового места', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Уведомления', + 'pref_notifications_help' => 'Укажите, какие из перечисленных уведомлений вы хотели бы получать. Некоторые уведомления могут содержать конфиденциальную финансовую информацию.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Если вы хотите, чтобы Firefly III уведомил вас об использовании Slack, введите URL-адрес webhook здесь. В противном случае оставьте поле пустым. Если вы являетесь администратором, вы также должны задать этот URL-адрес в администрировании.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Управление финансами', - 'administrations_index_menu' => 'Управление финансами', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Управление финансами', + 'administrations_index_menu' => 'Управление финансами', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Уничтожить данные из Firefly III', - 'purge_data_expl' => '"Уничтожение" - это полное "удаление того, что уже было удалено". Обычно Firefly III ничего не удаляет полностью. Он просто скрывает данные. Кнопка ниже удаляет все эти ранее "удалённые" записи НАВСЕГДА.', - 'delete_stuff_header' => 'Удалить и уничтожить данные', - 'purge_all_data' => 'Уничтожить все записи', - 'purge_data' => 'Уничтожить данные', - 'purged_all_records' => 'Все удалённые записи будут полностью уничтожены.', - 'delete_data_title' => 'Удалить данные из Firefly III', - 'permanent_delete_stuff' => 'Вы можете удалить данные из Firefly III. Использование кнопок ниже означает, что ваши данные больше не будут видны в Firefly. Вы не сможете отменить эту операцию из интерфейса Firefly, но записи могут остаться в базе данных, и вы сможете их восстановить при необходимости.', - 'other_sessions_logged_out' => 'Все прочие ваши сессии были прекращены.', - 'delete_unused_accounts' => 'Удаление неиспользуемых учетных записей очистит ваши автоматически заполненные списки.', - 'delete_all_unused_accounts' => 'Удалить неиспользуемые учётные записи', - 'deleted_all_unused_accounts' => 'Все неиспользуемые учетные записи удалены', - 'delete_all_budgets' => 'Удалить ВСЕ ваши бюджеты', - 'delete_all_categories' => 'Удалить ВСЕ ваши категории', - 'delete_all_tags' => 'Удалить ВСЕ ваши метки', - 'delete_all_bills' => 'Удалить ВСЕ ваши счета на оплату', - 'delete_all_piggy_banks' => 'Удалите ВСЕ ваши копилки', - 'delete_all_rules' => 'Удалить ВСЕ ваши правила', - 'delete_all_recurring' => 'Удалить ВСЕ ваши повторяющиеся транзакции', - 'delete_all_object_groups' => 'Удалить все ваши группы объектов', - 'delete_all_accounts' => 'Удалить ВСЕ ваши счета', - 'delete_all_asset_accounts' => 'Удалить ВСЕ ваши основные счета', - 'delete_all_expense_accounts' => 'Удалить ВСЕ счета расходов', - 'delete_all_revenue_accounts' => 'Удалить ВСЕ ваши счета доходов', - 'delete_all_liabilities' => 'Удалить ВСЕ ваши обязательства', - 'delete_all_transactions' => 'Удалить все ваши транзакции', - 'delete_all_withdrawals' => 'Удалить ВСЕ ваши расходы', - 'delete_all_deposits' => 'Удалить ВСЕ ваши доходы', - 'delete_all_transfers' => 'Удалить ВСЕ ваши переводы', - 'also_delete_transactions' => 'Удаление счетов приведёт к удалению ВСЕХ связанных расходов, доходов и переводов!', - 'deleted_all_budgets' => 'Все бюджеты были удалены', - 'deleted_all_categories' => 'Все категории были удалены', - 'deleted_all_tags' => 'Все метки были удалены', - 'deleted_all_bills' => 'Все счета на оплату были удалены', - 'deleted_all_piggy_banks' => 'Все копилки были удалены', - 'deleted_all_rules' => 'Все правила и группы правил были удалены', - 'deleted_all_object_groups' => 'Все группы были удалены', - 'deleted_all_accounts' => 'Все счета были удалены', - 'deleted_all_asset_accounts' => 'Все основные счета были удалены', - 'deleted_all_expense_accounts' => 'Все счета расходов были удалены', - 'deleted_all_revenue_accounts' => 'Все счета доходов были удалены', - 'deleted_all_liabilities' => 'Все обязательства были удалены', - 'deleted_all_transactions' => 'Все транзакции были удалены', - 'deleted_all_withdrawals' => 'Все расходы были удалены', - 'deleted_all_deposits' => 'Все доходы были удалены', - 'deleted_all_transfers' => 'Все переводы были удалены', - 'deleted_all_recurring' => 'Все повторяющиеся операции были удалены', - 'change_your_password' => 'Изменить ваш пароль', - 'delete_account' => 'Удалить профиль', - 'current_password' => 'Текущий пароль', - 'new_password' => 'Новый пароль', - 'new_password_again' => 'Новый пароль (ещё раз)', - 'delete_your_account' => 'Удалить ваш профиль', - 'delete_your_account_help' => 'При удалении вашего профиля также будут удалены все счета, транзакции. Не будет сохранено ничего, что вы хранили в Firefly III. Всё будет УТЕРЯНО!', - 'delete_your_account_password' => 'Для продолжения введите свой пароль.', - 'password' => 'Пароль', - 'are_you_sure' => 'Вы уверены? Эту операцию нельзя будет отменить.', - 'delete_account_button' => 'УДАЛИТЬ ваш профиль', - 'invalid_current_password' => 'Неправильный пароль!', - 'password_changed' => 'Пароль изменён!', - 'should_change' => 'Кажется, нужно изменить пароль.', - 'invalid_password' => 'Неверный пароль!', - 'what_is_pw_security' => 'Что такое «проверка безопасности паролей»?', - 'secure_pw_title' => 'Как выбрать безопасный пароль', - 'forgot_password_response' => 'Спасибо. Если существует учетная запись с этим адресом электронной почты, вы найдете инструкции в вашем почтовом ящике.', - 'secure_pw_history' => 'Каждую неделю вы читаете в новостях о сайтах, теряющих пароли своих пользователей. Хакеры и воры используют эти пароли, чтобы попытаться украсть вашу личную информацию. Эта информация является ценной.', - 'secure_pw_ff' => 'Вы используете один и тот же пароль по всему Интернету? Если один сайт потеряет ваш пароль, хакеры получат полный доступ ко всем вашим данным. Firefly III надеется, что вы выберите хороший и уникальный пароль для защиты своих финансовых данных.', - 'secure_pw_check_box' => 'Чтобы помочь вам, Firefly III может проверить, был ли использован пароль, который вы хотите использовать, где-то ещё. Если это так, Firefly III советует вам НЕ использовать такой пароль.', - 'secure_pw_working_title' => 'Как это работает?', - 'secure_pw_working' => 'Если вы установите данный флажок, Firefly III отправит первые 5 символов SHA1-хэша вашего пароля на сайт Troy Hunt, чтобы узнать, есть ли он в списке. Согласно рекомендациям по данному вопросу, опубликованным недавно в NIST Special Publication, такая проверка защитит вас от использования небезопасных паролей.', - 'secure_pw_should' => 'Должен ли я установить флажок?', - 'secure_pw_long_password' => 'Да. Всегда проверять безопасность моего пароля.', - 'command_line_token' => 'Токен командной строки', - 'explain_command_line_token' => 'Этот токен необходим для выполнения операций из командной строки (таких как экспорт данных). Без него эта чувствительная команда не будет работать. Не показывайте никому свой токен. Никто не попросит у вас эту информацию, даже я. Если вы боитесь, что потеряли этот токен, или у вас паранойя, вы можете сгенерировать новый токен с помощью этой кнопки.', - 'regenerate_command_line_token' => 'Сгенерировать новый токен командной строки', - 'token_regenerated' => 'Новый токен командной строки сгенерирован', - 'change_your_email' => 'Изменить ваш адрес электронной почты', - 'email_verification' => 'Письмо будет отправлено на ваши адреса электронной почты: старый и новый. В целях безопасности, вы не сможете войти в систему, пока не подтвердите новый адрес электронной почты. Если вы не уверены, что ваша установка Firefly III может отправлять электронную почту, не используйте эту функцию. Если вы являетесь администратором, вы можете проверить это на странице Администрирование.', - 'email_changed_logout' => 'Пока вы не подтвердите свой адрес электронной почты, вы не сможете войти в систему.', - 'login_with_new_email' => 'Теперь вы можете войти с новым адресом электронной почты.', - 'login_with_old_email' => 'Теперь вы можете снова войти со своим старым адресом электронной почты.', - 'login_provider_local_only' => 'Это действие недоступно при аутентификации через ":login_provider".', - 'external_user_mgt_disabled' => 'Это действие недоступно, если Firefly III не отвечает за управление пользователями или обработку аутентификации.', - 'external_auth_disabled' => 'Это действие недоступно, если Firefly III не отвечает за обработку аутентификации.', - 'delete_local_info_only' => 'Поскольку Firefly III не отвечает за управление пользователями или обработку аутентификации, эта функция будет удалять только локальную информацию Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Клиенты OAuth', - 'profile_oauth_no_clients' => 'У вас пока нет клиентов OAuth.', - 'profile_oauth_clients_external_auth' => 'Если вы используете внешний поставщик аутентификации, например Authelia, клиенты OAuth не будут работать. Вы можете использовать только персональные токены доступа.', - 'profile_oauth_clients_header' => 'Клиенты', - 'profile_oauth_client_id' => 'ID клиента', - 'profile_oauth_client_name' => 'Название', - 'profile_oauth_client_secret' => 'Секретный ключ', - 'profile_oauth_create_new_client' => 'Создать нового клиента', - 'profile_oauth_create_client' => 'Создать клиента', - 'profile_oauth_edit_client' => 'Изменить клиента', - 'profile_oauth_name_help' => 'Что-то, что ваши пользователи знают, и чему доверяют.', - 'profile_oauth_redirect_url' => 'URL редиректа', - 'profile_oauth_redirect_url_help' => 'URL обратного вызова для вашего приложения.', - 'profile_authorized_apps' => 'Авторизованные приложения', - 'profile_authorized_clients' => 'Авторизованные клиенты', - 'profile_scopes' => 'Разрешения', - 'profile_revoke' => 'Отключить', - 'profile_oauth_client_secret_title' => 'Ключ клиента', - 'profile_oauth_client_secret_expl' => 'Вот ваш новый ключ клиента. Он будет показан вам только сейчас, поэтому не потеряйте его! Теперь вы можете использовать этот ключ, чтобы делать запросы по API.', - 'profile_personal_access_tokens' => 'Персональные Access Tokens', - 'profile_personal_access_token' => 'Персональный Access Token', - 'profile_oauth_confidential' => 'Конфиденциальный', - 'profile_oauth_confidential_help' => 'Требовать, чтобы клиент аутентифицировался с секретным ключом. Конфиденциальные клиенты могут хранить учётные данные в надёжном виде, защищая их от несанкционированного доступа. Публичные приложения, такие как обычный рабочий стол или приложения JavaScript SPA, не могут надёжно хранить ваши ключи.', - 'profile_personal_access_token_explanation' => 'Вот ваш новый персональный токен доступа. Он будет показан вам только сейчас, поэтому не потеряйте его! Теперь вы можете использовать этот токен, чтобы делать запросы по API.', - 'profile_no_personal_access_token' => 'Вы не создали ни одного персонального токена доступа.', - 'profile_create_new_token' => 'Создать новый токен', - 'profile_create_token' => 'Создать токен', - 'profile_create' => 'Создать', - 'profile_save_changes' => 'Сохранить изменения', - 'profile_whoops' => 'Ууупс!', - 'profile_something_wrong' => 'Что-то пошло не так!', - 'profile_try_again' => 'Произошла ошибка. Пожалуйста, попробуйте снова.', - 'amounts' => 'Сумма', - 'multi_account_warning_unknown' => 'В зависимости от типа транзакции, которую вы создаёте, счёт-источник и/или счёт назначения следующих частей разделённой транзакции могут быть заменены теми, которые указаны для первой части транзакции.', - 'multi_account_warning_withdrawal' => 'Имейте в виду, что счёт-источник в других частях разделённой транзакции будет таким же, как в первой части расхода.', - 'multi_account_warning_deposit' => 'Имейте в виду, что счёт назначения в других частях разделённой транзакции будет таким же, как в первой части дохода.', - 'multi_account_warning_transfer' => 'Имейте в виду, что счёт-источник и счёт назначения в других частях разделённой транзакции будут такими же, как в первой части перевода.', + 'purge_data_title' => 'Уничтожить данные из Firefly III', + 'purge_data_expl' => '"Уничтожение" - это полное "удаление того, что уже было удалено". Обычно Firefly III ничего не удаляет полностью. Он просто скрывает данные. Кнопка ниже удаляет все эти ранее "удалённые" записи НАВСЕГДА.', + 'delete_stuff_header' => 'Удалить и уничтожить данные', + 'purge_all_data' => 'Уничтожить все записи', + 'purge_data' => 'Уничтожить данные', + 'purged_all_records' => 'Все удалённые записи будут полностью уничтожены.', + 'delete_data_title' => 'Удалить данные из Firefly III', + 'permanent_delete_stuff' => 'Вы можете удалить данные из Firefly III. Использование кнопок ниже означает, что ваши данные больше не будут видны в Firefly. Вы не сможете отменить эту операцию из интерфейса Firefly, но записи могут остаться в базе данных, и вы сможете их восстановить при необходимости.', + 'other_sessions_logged_out' => 'Все прочие ваши сессии были прекращены.', + 'delete_unused_accounts' => 'Удаление неиспользуемых учетных записей очистит ваши автоматически заполненные списки.', + 'delete_all_unused_accounts' => 'Удалить неиспользуемые учётные записи', + 'deleted_all_unused_accounts' => 'Все неиспользуемые учетные записи удалены', + 'delete_all_budgets' => 'Удалить ВСЕ ваши бюджеты', + 'delete_all_categories' => 'Удалить ВСЕ ваши категории', + 'delete_all_tags' => 'Удалить ВСЕ ваши метки', + 'delete_all_bills' => 'Удалить ВСЕ ваши счета на оплату', + 'delete_all_piggy_banks' => 'Удалите ВСЕ ваши копилки', + 'delete_all_rules' => 'Удалить ВСЕ ваши правила', + 'delete_all_recurring' => 'Удалить ВСЕ ваши повторяющиеся транзакции', + 'delete_all_object_groups' => 'Удалить все ваши группы объектов', + 'delete_all_accounts' => 'Удалить ВСЕ ваши счета', + 'delete_all_asset_accounts' => 'Удалить ВСЕ ваши основные счета', + 'delete_all_expense_accounts' => 'Удалить ВСЕ счета расходов', + 'delete_all_revenue_accounts' => 'Удалить ВСЕ ваши счета доходов', + 'delete_all_liabilities' => 'Удалить ВСЕ ваши обязательства', + 'delete_all_transactions' => 'Удалить все ваши транзакции', + 'delete_all_withdrawals' => 'Удалить ВСЕ ваши расходы', + 'delete_all_deposits' => 'Удалить ВСЕ ваши доходы', + 'delete_all_transfers' => 'Удалить ВСЕ ваши переводы', + 'also_delete_transactions' => 'Удаление счетов приведёт к удалению ВСЕХ связанных расходов, доходов и переводов!', + 'deleted_all_budgets' => 'Все бюджеты были удалены', + 'deleted_all_categories' => 'Все категории были удалены', + 'deleted_all_tags' => 'Все метки были удалены', + 'deleted_all_bills' => 'Все счета на оплату были удалены', + 'deleted_all_piggy_banks' => 'Все копилки были удалены', + 'deleted_all_rules' => 'Все правила и группы правил были удалены', + 'deleted_all_object_groups' => 'Все группы были удалены', + 'deleted_all_accounts' => 'Все счета были удалены', + 'deleted_all_asset_accounts' => 'Все основные счета были удалены', + 'deleted_all_expense_accounts' => 'Все счета расходов были удалены', + 'deleted_all_revenue_accounts' => 'Все счета доходов были удалены', + 'deleted_all_liabilities' => 'Все обязательства были удалены', + 'deleted_all_transactions' => 'Все транзакции были удалены', + 'deleted_all_withdrawals' => 'Все расходы были удалены', + 'deleted_all_deposits' => 'Все доходы были удалены', + 'deleted_all_transfers' => 'Все переводы были удалены', + 'deleted_all_recurring' => 'Все повторяющиеся операции были удалены', + 'change_your_password' => 'Изменить ваш пароль', + 'delete_account' => 'Удалить профиль', + 'current_password' => 'Текущий пароль', + 'new_password' => 'Новый пароль', + 'new_password_again' => 'Новый пароль (ещё раз)', + 'delete_your_account' => 'Удалить ваш профиль', + 'delete_your_account_help' => 'При удалении вашего профиля также будут удалены все счета, транзакции. Не будет сохранено ничего, что вы хранили в Firefly III. Всё будет УТЕРЯНО!', + 'delete_your_account_password' => 'Для продолжения введите свой пароль.', + 'password' => 'Пароль', + 'are_you_sure' => 'Вы уверены? Эту операцию нельзя будет отменить.', + 'delete_account_button' => 'УДАЛИТЬ ваш профиль', + 'invalid_current_password' => 'Неправильный пароль!', + 'password_changed' => 'Пароль изменён!', + 'should_change' => 'Кажется, нужно изменить пароль.', + 'invalid_password' => 'Неверный пароль!', + 'what_is_pw_security' => 'Что такое «проверка безопасности паролей»?', + 'secure_pw_title' => 'Как выбрать безопасный пароль', + 'forgot_password_response' => 'Спасибо. Если существует учетная запись с этим адресом электронной почты, вы найдете инструкции в вашем почтовом ящике.', + 'secure_pw_history' => 'Каждую неделю вы читаете в новостях о сайтах, теряющих пароли своих пользователей. Хакеры и воры используют эти пароли, чтобы попытаться украсть вашу личную информацию. Эта информация является ценной.', + 'secure_pw_ff' => 'Вы используете один и тот же пароль по всему Интернету? Если один сайт потеряет ваш пароль, хакеры получат полный доступ ко всем вашим данным. Firefly III надеется, что вы выберите хороший и уникальный пароль для защиты своих финансовых данных.', + 'secure_pw_check_box' => 'Чтобы помочь вам, Firefly III может проверить, был ли использован пароль, который вы хотите использовать, где-то ещё. Если это так, Firefly III советует вам НЕ использовать такой пароль.', + 'secure_pw_working_title' => 'Как это работает?', + 'secure_pw_working' => 'Если вы установите данный флажок, Firefly III отправит первые 5 символов SHA1-хэша вашего пароля на сайт Troy Hunt, чтобы узнать, есть ли он в списке. Согласно рекомендациям по данному вопросу, опубликованным недавно в NIST Special Publication, такая проверка защитит вас от использования небезопасных паролей.', + 'secure_pw_should' => 'Должен ли я установить флажок?', + 'secure_pw_long_password' => 'Да. Всегда проверять безопасность моего пароля.', + 'command_line_token' => 'Токен командной строки', + 'explain_command_line_token' => 'Этот токен необходим для выполнения операций из командной строки (таких как экспорт данных). Без него эта чувствительная команда не будет работать. Не показывайте никому свой токен. Никто не попросит у вас эту информацию, даже я. Если вы боитесь, что потеряли этот токен, или у вас паранойя, вы можете сгенерировать новый токен с помощью этой кнопки.', + 'regenerate_command_line_token' => 'Сгенерировать новый токен командной строки', + 'token_regenerated' => 'Новый токен командной строки сгенерирован', + 'change_your_email' => 'Изменить ваш адрес электронной почты', + 'email_verification' => 'Письмо будет отправлено на ваши адреса электронной почты: старый и новый. В целях безопасности, вы не сможете войти в систему, пока не подтвердите новый адрес электронной почты. Если вы не уверены, что ваша установка Firefly III может отправлять электронную почту, не используйте эту функцию. Если вы являетесь администратором, вы можете проверить это на странице Администрирование.', + 'email_changed_logout' => 'Пока вы не подтвердите свой адрес электронной почты, вы не сможете войти в систему.', + 'login_with_new_email' => 'Теперь вы можете войти с новым адресом электронной почты.', + 'login_with_old_email' => 'Теперь вы можете снова войти со своим старым адресом электронной почты.', + 'login_provider_local_only' => 'Это действие недоступно при аутентификации через ":login_provider".', + 'external_user_mgt_disabled' => 'Это действие недоступно, если Firefly III не отвечает за управление пользователями или обработку аутентификации.', + 'external_auth_disabled' => 'Это действие недоступно, если Firefly III не отвечает за обработку аутентификации.', + 'delete_local_info_only' => 'Поскольку Firefly III не отвечает за управление пользователями или обработку аутентификации, эта функция будет удалять только локальную информацию Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Клиенты OAuth', + 'profile_oauth_no_clients' => 'У вас пока нет клиентов OAuth.', + 'profile_oauth_clients_external_auth' => 'Если вы используете внешний поставщик аутентификации, например Authelia, клиенты OAuth не будут работать. Вы можете использовать только персональные токены доступа.', + 'profile_oauth_clients_header' => 'Клиенты', + 'profile_oauth_client_id' => 'ID клиента', + 'profile_oauth_client_name' => 'Название', + 'profile_oauth_client_secret' => 'Секретный ключ', + 'profile_oauth_create_new_client' => 'Создать нового клиента', + 'profile_oauth_create_client' => 'Создать клиента', + 'profile_oauth_edit_client' => 'Изменить клиента', + 'profile_oauth_name_help' => 'Что-то, что ваши пользователи знают, и чему доверяют.', + 'profile_oauth_redirect_url' => 'URL редиректа', + 'profile_oauth_redirect_url_help' => 'URL обратного вызова для вашего приложения.', + 'profile_authorized_apps' => 'Авторизованные приложения', + 'profile_authorized_clients' => 'Авторизованные клиенты', + 'profile_scopes' => 'Разрешения', + 'profile_revoke' => 'Отключить', + 'profile_oauth_client_secret_title' => 'Ключ клиента', + 'profile_oauth_client_secret_expl' => 'Вот ваш новый ключ клиента. Он будет показан вам только сейчас, поэтому не потеряйте его! Теперь вы можете использовать этот ключ, чтобы делать запросы по API.', + 'profile_personal_access_tokens' => 'Персональные Access Tokens', + 'profile_personal_access_token' => 'Персональный Access Token', + 'profile_oauth_confidential' => 'Конфиденциальный', + 'profile_oauth_confidential_help' => 'Требовать, чтобы клиент аутентифицировался с секретным ключом. Конфиденциальные клиенты могут хранить учётные данные в надёжном виде, защищая их от несанкционированного доступа. Публичные приложения, такие как обычный рабочий стол или приложения JavaScript SPA, не могут надёжно хранить ваши ключи.', + 'profile_personal_access_token_explanation' => 'Вот ваш новый персональный токен доступа. Он будет показан вам только сейчас, поэтому не потеряйте его! Теперь вы можете использовать этот токен, чтобы делать запросы по API.', + 'profile_no_personal_access_token' => 'Вы не создали ни одного персонального токена доступа.', + 'profile_create_new_token' => 'Создать новый токен', + 'profile_create_token' => 'Создать токен', + 'profile_create' => 'Создать', + 'profile_save_changes' => 'Сохранить изменения', + 'profile_whoops' => 'Ууупс!', + 'profile_something_wrong' => 'Что-то пошло не так!', + 'profile_try_again' => 'Произошла ошибка. Пожалуйста, попробуйте снова.', + 'amounts' => 'Сумма', + 'multi_account_warning_unknown' => 'В зависимости от типа транзакции, которую вы создаёте, счёт-источник и/или счёт назначения следующих частей разделённой транзакции могут быть заменены теми, которые указаны для первой части транзакции.', + 'multi_account_warning_withdrawal' => 'Имейте в виду, что счёт-источник в других частях разделённой транзакции будет таким же, как в первой части расхода.', + 'multi_account_warning_deposit' => 'Имейте в виду, что счёт назначения в других частях разделённой транзакции будет таким же, как в первой части дохода.', + 'multi_account_warning_transfer' => 'Имейте в виду, что счёт-источник и счёт назначения в других частях разделённой транзакции будут такими же, как в первой части перевода.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Экспорт данных из Firefly III', - 'export_data_menu' => 'Экспорт данных', - 'export_data_bc' => 'Экспорт данных из Firefly III', - 'export_data_main_title' => 'Экспорт данных из Firefly III', - 'export_data_expl' => 'Эта ссылка позволяет вам экспортировать все транзакции и мета-данные из Firefly III. Подробную информацию об экспорте вы можете получить в справке (см. значок (?) в правом верхнем углу).', - 'export_data_all_transactions' => 'Экспорт всех транзакций', - 'export_data_advanced_expl' => 'Если вам нужен более продвинутый или конкретный тип экспорта, прочтите справку о том, как использовать команду консоли php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Экспорт данных из Firefly III', + 'export_data_menu' => 'Экспорт данных', + 'export_data_bc' => 'Экспорт данных из Firefly III', + 'export_data_main_title' => 'Экспорт данных из Firefly III', + 'export_data_expl' => 'Эта ссылка позволяет вам экспортировать все транзакции и мета-данные из Firefly III. Подробную информацию об экспорте вы можете получить в справке (см. значок (?) в правом верхнем углу).', + 'export_data_all_transactions' => 'Экспорт всех транзакций', + 'export_data_advanced_expl' => 'Если вам нужен более продвинутый или конкретный тип экспорта, прочтите справку о том, как использовать команду консоли php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Одно вложение |:count вложений', - 'attachments' => 'Вложения', - 'edit_attachment' => 'Изменить вложение ":name"', - 'update_attachment' => 'Обновить вложение', - 'delete_attachment' => 'Удалить вложение ":name"', - 'attachment_deleted' => 'Вложение ":name" удалено', - 'liabilities_deleted' => 'Долговой счёт ":name" удалён', - 'attachment_updated' => 'Вложение ":name" обновлено', - 'upload_max_file_size' => 'Максимальный размер файла: :size', - 'list_all_attachments' => 'Список всех вложений', + 'nr_of_attachments' => 'Одно вложение |:count вложений', + 'attachments' => 'Вложения', + 'edit_attachment' => 'Изменить вложение ":name"', + 'update_attachment' => 'Обновить вложение', + 'delete_attachment' => 'Удалить вложение ":name"', + 'attachment_deleted' => 'Вложение ":name" удалено', + 'liabilities_deleted' => 'Долговой счёт ":name" удалён', + 'attachment_updated' => 'Вложение ":name" обновлено', + 'upload_max_file_size' => 'Максимальный размер файла: :size', + 'list_all_attachments' => 'Список всех вложений', // transaction index - 'is_reconciled_fields_dropped' => 'Поскольку эта транзакция сверена, вы не сможете обновить счета, ни сумму(ы).', - 'title_expenses' => 'Расходы', - 'title_withdrawal' => 'Расходы', - 'title_revenue' => 'Доход', - 'title_deposit' => 'Доход', - 'title_transfer' => 'Переводы', - 'title_transfers' => 'Переводы', - 'submission_options' => 'Опции отправки', - 'apply_rules_checkbox' => 'Применить правила', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Поскольку эта транзакция сверена, вы не сможете обновить счета, ни сумму(ы).', + 'title_expenses' => 'Расходы', + 'title_withdrawal' => 'Расходы', + 'title_revenue' => 'Доход', + 'title_deposit' => 'Доход', + 'title_transfer' => 'Переводы', + 'title_transfers' => 'Переводы', + 'submission_options' => 'Опции отправки', + 'apply_rules_checkbox' => 'Применить правила', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Эта транзакция уже является расходом', - 'convert_is_already_type_Deposit' => 'Эта транзакция уже является доходом', - 'convert_is_already_type_Transfer' => 'Эта транзакция уже является переводом', - 'convert_to_Withdrawal' => 'Преобразовать ":description" в расход', - 'convert_to_Deposit' => 'Преобразовать ":description" в доход', - 'convert_to_Transfer' => 'Преобразовать ":description" в перевод', - 'convert_options_WithdrawalDeposit' => 'Преобразовать расход в доход', - 'convert_options_WithdrawalTransfer' => 'Преобразовать расход в перевод', - 'convert_options_DepositTransfer' => 'Преобразовать доход в перевод', - 'convert_options_DepositWithdrawal' => 'Преобразовать доход в расход', - 'convert_options_TransferWithdrawal' => 'Преобразовать перевод в расход', - 'convert_options_TransferDeposit' => 'Преобразовать перевод в доход', - 'convert_Withdrawal_to_deposit' => 'Преобразовать этот расход в доход', - 'convert_Withdrawal_to_transfer' => 'Преобразовать этот расход в перевод', - 'convert_Deposit_to_withdrawal' => 'Преобразовать этот доход в расход', - 'convert_Deposit_to_transfer' => 'Преобразовать этот доход в перевод', - 'convert_Transfer_to_deposit' => 'Преобразовать этот перевод в доход', - 'convert_Transfer_to_withdrawal' => 'Преобразовать этот перевод в расход', - 'convert_please_set_revenue_source' => 'Пожалуйста, выберите счёт доходов, с которого поступят деньги.', - 'convert_please_set_asset_destination' => 'Пожалуйста, выберите основной счёт, на который будут переведены деньги.', - 'convert_please_set_expense_destination' => 'Пожалуйста, выберите счёт расходов, на который будут направлены деньги.', - 'convert_please_set_asset_source' => 'Пожалуйста, выберите основной счёт, с которого поступят деньги.', - 'convert_expl_w_d' => 'При преобразовании расхода в доход, средства будут внесены на указанный счёт, а не списаны с него.|При преобразовании расхода в доход, средства будут внесены на указанные счета, а не списаны с них.', - 'convert_expl_w_t' => 'При преобразовании расхода в перевод, средства будут переведены с исходного счёта на другой основной счёт или вклад, а не просто списаны с исходного счёта расходов.|При преобразовании расхода в перевод, средства будут переведены с исходных счётов на другие основные счета или вклады, а не просто списаны с исходных счетов расходов.', - 'convert_expl_d_w' => 'При преобразовании дохода в расход, средства будут списаны с указанного счёта-источника, а не внесены на него.|При преобразовании дохода в расход, средства будут списаны с указанных счетов-источников, а не внесены на них.', - 'convert_expl_d_t' => 'При преобразовании дохода в перевод, средства будут начислены на счёт назначения с любого из ваших активов или обязательств.|При преобразовании дохода в перевод, средства будут начислены на счета назначения с любого из ваших активов или обязательств.', - 'convert_expl_t_w' => 'При преобразовании перевода в расход, средства будут списаны с указанного вами счёта назначения, а не переведены на него.|При преобразовании перевода в расход, средства будут списаны с указанных вами счетов назначения, а не переведены на них.', - 'convert_expl_t_d' => 'При преобразовании перевода в доход, средства будут начислены на указанный счёт назначения, а не переведены на него.|При преобразовании перевода в доход, средства будут начислены на указанные счета назначения, а не переведены на них.', - 'convert_select_sources' => 'Для завершения преобразования, укажите новый счёт назначения.|Для завершения преобразования, укажите новые счета назначения.', - 'convert_select_destinations' => 'Для завершения преобразования, выберите новый счёт назначения.|Для завершения преобразования, выберите новые счета назначения.', - 'converted_to_Withdrawal' => 'Транзакция была преобразована в расход', - 'converted_to_Deposit' => 'Транзакция была преобразована в доход', - 'converted_to_Transfer' => 'Транзакция была преобразована в перевод', - 'invalid_convert_selection' => 'Выбранный вами счёт уже используется в этой транзакции или не существует.', - 'source_or_dest_invalid' => 'Не удается найти правильные сведения о транзакции. Преобразование невозможно.', - 'convert_to_withdrawal' => 'Преобразовать в расход', - 'convert_to_deposit' => 'Преобразовать в доход', - 'convert_to_transfer' => 'Преобразовать в перевод', + 'convert_is_already_type_Withdrawal' => 'Эта транзакция уже является расходом', + 'convert_is_already_type_Deposit' => 'Эта транзакция уже является доходом', + 'convert_is_already_type_Transfer' => 'Эта транзакция уже является переводом', + 'convert_to_Withdrawal' => 'Преобразовать ":description" в расход', + 'convert_to_Deposit' => 'Преобразовать ":description" в доход', + 'convert_to_Transfer' => 'Преобразовать ":description" в перевод', + 'convert_options_WithdrawalDeposit' => 'Преобразовать расход в доход', + 'convert_options_WithdrawalTransfer' => 'Преобразовать расход в перевод', + 'convert_options_DepositTransfer' => 'Преобразовать доход в перевод', + 'convert_options_DepositWithdrawal' => 'Преобразовать доход в расход', + 'convert_options_TransferWithdrawal' => 'Преобразовать перевод в расход', + 'convert_options_TransferDeposit' => 'Преобразовать перевод в доход', + 'convert_Withdrawal_to_deposit' => 'Преобразовать этот расход в доход', + 'convert_Withdrawal_to_transfer' => 'Преобразовать этот расход в перевод', + 'convert_Deposit_to_withdrawal' => 'Преобразовать этот доход в расход', + 'convert_Deposit_to_transfer' => 'Преобразовать этот доход в перевод', + 'convert_Transfer_to_deposit' => 'Преобразовать этот перевод в доход', + 'convert_Transfer_to_withdrawal' => 'Преобразовать этот перевод в расход', + 'convert_please_set_revenue_source' => 'Пожалуйста, выберите счёт доходов, с которого поступят деньги.', + 'convert_please_set_asset_destination' => 'Пожалуйста, выберите основной счёт, на который будут переведены деньги.', + 'convert_please_set_expense_destination' => 'Пожалуйста, выберите счёт расходов, на который будут направлены деньги.', + 'convert_please_set_asset_source' => 'Пожалуйста, выберите основной счёт, с которого поступят деньги.', + 'convert_expl_w_d' => 'При преобразовании расхода в доход, средства будут внесены на указанный счёт, а не списаны с него.|При преобразовании расхода в доход, средства будут внесены на указанные счета, а не списаны с них.', + 'convert_expl_w_t' => 'При преобразовании расхода в перевод, средства будут переведены с исходного счёта на другой основной счёт или вклад, а не просто списаны с исходного счёта расходов.|При преобразовании расхода в перевод, средства будут переведены с исходных счётов на другие основные счета или вклады, а не просто списаны с исходных счетов расходов.', + 'convert_expl_d_w' => 'При преобразовании дохода в расход, средства будут списаны с указанного счёта-источника, а не внесены на него.|При преобразовании дохода в расход, средства будут списаны с указанных счетов-источников, а не внесены на них.', + 'convert_expl_d_t' => 'При преобразовании дохода в перевод, средства будут начислены на счёт назначения с любого из ваших активов или обязательств.|При преобразовании дохода в перевод, средства будут начислены на счета назначения с любого из ваших активов или обязательств.', + 'convert_expl_t_w' => 'При преобразовании перевода в расход, средства будут списаны с указанного вами счёта назначения, а не переведены на него.|При преобразовании перевода в расход, средства будут списаны с указанных вами счетов назначения, а не переведены на них.', + 'convert_expl_t_d' => 'При преобразовании перевода в доход, средства будут начислены на указанный счёт назначения, а не переведены на него.|При преобразовании перевода в доход, средства будут начислены на указанные счета назначения, а не переведены на них.', + 'convert_select_sources' => 'Для завершения преобразования, укажите новый счёт назначения.|Для завершения преобразования, укажите новые счета назначения.', + 'convert_select_destinations' => 'Для завершения преобразования, выберите новый счёт назначения.|Для завершения преобразования, выберите новые счета назначения.', + 'converted_to_Withdrawal' => 'Транзакция была преобразована в расход', + 'converted_to_Deposit' => 'Транзакция была преобразована в доход', + 'converted_to_Transfer' => 'Транзакция была преобразована в перевод', + 'invalid_convert_selection' => 'Выбранный вами счёт уже используется в этой транзакции или не существует.', + 'source_or_dest_invalid' => 'Не удается найти правильные сведения о транзакции. Преобразование невозможно.', + 'convert_to_withdrawal' => 'Преобразовать в расход', + 'convert_to_deposit' => 'Преобразовать в доход', + 'convert_to_transfer' => 'Преобразовать в перевод', // create new stuff: - 'create_new_withdrawal' => 'Создать новый расход', - 'create_new_deposit' => 'Создать новый доход', - 'create_new_transfer' => 'Создать новый перевод', - 'create_new_asset' => 'Создать новый активный счёт', - 'create_new_liabilities' => 'Создать новый долговой счёт', - 'create_new_expense' => 'Создать новый счёт расхода', - 'create_new_revenue' => 'Создать новый счёт дохода', - 'create_new_piggy_bank' => 'Создать новую копилку', - 'create_new_bill' => 'Создать новый счёт к оплате', - 'create_new_subscription' => 'Создать новую подписку', - 'create_new_rule' => 'Создать новое правило', + 'create_new_withdrawal' => 'Создать новый расход', + 'create_new_deposit' => 'Создать новый доход', + 'create_new_transfer' => 'Создать новый перевод', + 'create_new_asset' => 'Создать новый активный счёт', + 'create_new_liabilities' => 'Создать новый долговой счёт', + 'create_new_expense' => 'Создать новый счёт расхода', + 'create_new_revenue' => 'Создать новый счёт дохода', + 'create_new_piggy_bank' => 'Создать новую копилку', + 'create_new_bill' => 'Создать новый счёт к оплате', + 'create_new_subscription' => 'Создать новую подписку', + 'create_new_rule' => 'Создать новое правило', // currencies: - 'create_currency' => 'Создать новую валюту', - 'store_currency' => 'Сохранить новую валюту', - 'update_currency' => 'Обновить валюту', - 'new_default_currency' => '":name" сейчас валюта по умолчанию.', - 'default_currency_failed' => 'Не удалось сделать ":name" валютой по умолчанию. Пожалуйста, проверьте журналы (логи).', - 'cannot_delete_currency' => 'Невозможно удалить валюту :name, поскольку она используется.', - 'cannot_delete_fallback_currency' => ':name - это системная резервная валюта, она не может быть удалена.', - 'cannot_disable_currency_journals' => 'Не удается отключить валюту :name, потому что она была использована в транзакциях.', - 'cannot_disable_currency_last_left' => 'Не удается отключить валюту :name, потому что это последняя активная валюта.', - 'cannot_disable_currency_account_meta' => 'Невозможно отключить валюту :name, поскольку она используется для одного из счетов.', - 'cannot_disable_currency_bills' => 'Невозможно отключить валюту :name, поскольку она используется в счёте на оплату.', - 'cannot_disable_currency_recurring' => 'Невозможно отключить валюту :name, поскольку она используется для повторяющейся транзакции.', - 'cannot_disable_currency_available_budgets' => 'Невозможно отключить валюту :name, поскольку она используется в бюджете.', - 'cannot_disable_currency_budget_limits' => 'Невозможно отключить валюту :name, поскольку она используется в лимите для бюджета.', - 'cannot_disable_currency_current_default' => 'Невозможно отключить валюту :name, поскольку это текущая валюта по умолчанию.', - 'cannot_disable_currency_system_fallback' => 'Невозможно отключить валюту :name, поскольку это системная валюта по умолчанию.', - 'disable_EUR_side_effects' => 'Евро является аварийной резервной валютой системы. Её отключение может иметь непредвиденные побочные эффекты и может привести к потере гарантии.', - 'deleted_currency' => 'Валюта :name удалена', - 'created_currency' => 'Валюта :name создана', - 'could_not_store_currency' => 'Невозможно сохранить новую валюту.', - 'updated_currency' => 'Валюта :name обновлена', - 'ask_site_owner' => 'Пожалуйста, обратитесь к :owner для добавления, удаления или изменения валюты.', - 'currencies_intro' => 'Firefly III может работать с несколькими валютами. Вы можете управлять ими здесь.', - 'make_default_currency' => 'Сделать основной', - 'default_currency' => 'основная', - 'currency_is_disabled' => 'Отключена', - 'enable_currency' => 'Включить', - 'disable_currency' => 'Отключить', - 'currencies_default_disabled' => 'Большинство этих валют по умолчанию отключены. Для использования, сначала включите их.', - 'currency_is_now_enabled' => 'Валюта ":name" была включена', - 'could_not_enable_currency' => 'Не удалось включить валюту ":name". Пожалуйста, просмотрите журналы.', - 'currency_is_now_disabled' => 'Валюта ":name" была отключена', - 'could_not_disable_currency' => 'Не удалось отключить валюту ":name". Возможно, она все еще используется?', + 'create_currency' => 'Создать новую валюту', + 'store_currency' => 'Сохранить новую валюту', + 'update_currency' => 'Обновить валюту', + 'new_default_currency' => '":name" сейчас валюта по умолчанию.', + 'default_currency_failed' => 'Не удалось сделать ":name" валютой по умолчанию. Пожалуйста, проверьте журналы (логи).', + 'cannot_delete_currency' => 'Невозможно удалить валюту :name, поскольку она используется.', + 'cannot_delete_fallback_currency' => ':name - это системная резервная валюта, она не может быть удалена.', + 'cannot_disable_currency_journals' => 'Не удается отключить валюту :name, потому что она была использована в транзакциях.', + 'cannot_disable_currency_last_left' => 'Не удается отключить валюту :name, потому что это последняя активная валюта.', + 'cannot_disable_currency_account_meta' => 'Невозможно отключить валюту :name, поскольку она используется для одного из счетов.', + 'cannot_disable_currency_bills' => 'Невозможно отключить валюту :name, поскольку она используется в счёте на оплату.', + 'cannot_disable_currency_recurring' => 'Невозможно отключить валюту :name, поскольку она используется для повторяющейся транзакции.', + 'cannot_disable_currency_available_budgets' => 'Невозможно отключить валюту :name, поскольку она используется в бюджете.', + 'cannot_disable_currency_budget_limits' => 'Невозможно отключить валюту :name, поскольку она используется в лимите для бюджета.', + 'cannot_disable_currency_current_default' => 'Невозможно отключить валюту :name, поскольку это текущая валюта по умолчанию.', + 'cannot_disable_currency_system_fallback' => 'Невозможно отключить валюту :name, поскольку это системная валюта по умолчанию.', + 'disable_EUR_side_effects' => 'Евро является аварийной резервной валютой системы. Её отключение может иметь непредвиденные побочные эффекты и может привести к потере гарантии.', + 'deleted_currency' => 'Валюта :name удалена', + 'created_currency' => 'Валюта :name создана', + 'could_not_store_currency' => 'Невозможно сохранить новую валюту.', + 'updated_currency' => 'Валюта :name обновлена', + 'ask_site_owner' => 'Пожалуйста, обратитесь к :owner для добавления, удаления или изменения валюты.', + 'currencies_intro' => 'Firefly III может работать с несколькими валютами. Вы можете управлять ими здесь.', + 'make_default_currency' => 'Сделать основной', + 'default_currency' => 'основная', + 'currency_is_disabled' => 'Отключена', + 'enable_currency' => 'Включить', + 'disable_currency' => 'Отключить', + 'currencies_default_disabled' => 'Большинство этих валют по умолчанию отключены. Для использования, сначала включите их.', + 'currency_is_now_enabled' => 'Валюта ":name" была включена', + 'could_not_enable_currency' => 'Не удалось включить валюту ":name". Пожалуйста, просмотрите журналы.', + 'currency_is_now_disabled' => 'Валюта ":name" была отключена', + 'could_not_disable_currency' => 'Не удалось отключить валюту ":name". Возможно, она все еще используется?', // forms: - 'mandatoryFields' => 'Обязательные поля', - 'optionalFields' => 'Дополнительные поля', - 'options' => 'Параметры', + 'mandatoryFields' => 'Обязательные поля', + 'optionalFields' => 'Дополнительные поля', + 'options' => 'Параметры', // budgets: - 'daily_budgets' => 'Бюджеты на день', - 'weekly_budgets' => 'Бюджеты на неделю', - 'monthly_budgets' => 'Бюджеты на месяц', - 'quarterly_budgets' => 'Бюджеты на квартал', - 'half_year_budgets' => 'Бюджеты на полгода', - 'yearly_budgets' => 'Годовые бюджеты', - 'other_budgets' => 'Бюджеты на произвольный отрезок времени', - 'budget_limit_not_in_range' => 'Эта сумма действует с :start по :end:', - 'total_available_budget' => 'Общий доступный бюджет (между :start и :end)', - 'total_available_budget_in_currency' => 'Всего доступно в бюджете (:currency)', - 'see_below' => 'см. ниже', - 'create_new_budget' => 'Создать новый бюджет', - 'store_new_budget' => 'Сохранить новый бюджет', - 'stored_new_budget' => 'Новый бюджет ":name" сохранён', - 'available_between' => 'Доступно между :start и :end', - 'transactionsWithoutBudget' => 'Расходы вне бюджета', - 'transactions_no_budget' => 'Расходы вне бюджета между :start и :end', - 'spent_between' => 'Уже потрачено между :start и :end', - 'spent_between_left' => 'Потрачено :spent между :start и :end, осталось :left.', - 'set_available_amount' => 'Установить доступную сумму', - 'update_available_amount' => 'Обновить доступную сумму', - 'ab_basic_modal_explain' => 'Используйте эту форму, чтобы указать какой бюджет вы планируете (всего, в :currency) на указанный период.', - 'createBudget' => 'Новый бюджет', - 'invalid_currency' => 'Это неверная валюта', - 'invalid_amount' => 'Пожалуйста, введите сумму', - 'set_ab' => 'Доступная сумма бюджета была установлена', - 'updated_ab' => 'Доступная сумма бюджета была обновлена', - 'deleted_ab' => 'Доступная сумма бюджета была удалена', - 'deleted_bl' => 'Запланированная в бюджете сумма была удалена', - 'alt_currency_ab_create' => 'Установите доступный бюджет в другой валюте', - 'bl_create_btn' => 'Установите бюджет в другой валюте', - 'inactiveBudgets' => 'Неактивные бюджеты', - 'without_budget_between' => 'Транзакции вне бюджета между :start и :end', - 'delete_budget' => 'Удалить бюджет ":name"', - 'deleted_budget' => 'Бюджет ":name" удалён', - 'edit_budget' => 'Редактировать бюджет ":name"', - 'updated_budget' => 'Бюджет ":name" обновлён', - 'update_amount' => 'Обновить сумму', - 'update_budget' => 'Обновить бюджет', - 'update_budget_amount_range' => 'Обновить (ожидаемые) доступные средства между :start и :end', - 'set_budget_limit_title' => 'Установите сумму для :budget между :start и :end', - 'set_budget_limit' => 'Установите сумму в бюджете', - 'budget_period_navigator' => 'Навигация по периодам', - 'info_on_available_amount' => 'Сколько средств у меня есть?', - 'available_amount_indication' => 'Используйте эти суммы, чтобы узнать, каким может быть ваш суммарный бюджет.', - 'suggested' => 'Рекомендуемые', - 'average_between' => 'В среднем между :start и :end', - 'transferred_in' => 'Переведено (в)', - 'transferred_away' => 'Переведено (из)', - 'auto_budget_none' => 'Без автобюджета', - 'auto_budget_reset' => 'Задать фиксированную сумму на каждый период', - 'auto_budget_rollover' => 'Добавить сумму на каждый период', - 'auto_budget_adjusted' => 'Добавьте сумму каждого периода и скорректируйте перерасход', - 'auto_budget_period_daily' => 'Ежедневно', - 'auto_budget_period_weekly' => 'Еженедельно', - 'auto_budget_period_monthly' => 'Ежемесячно', - 'auto_budget_period_quarterly' => 'Ежеквартально', - 'auto_budget_period_half_year' => 'Раз в полгода', - 'auto_budget_period_yearly' => 'Каждый год', - 'auto_budget_help' => 'Подробнее об этой функции можно прочитать в справке. Щёлкните по значку (?) в правом верхнем углу.', - 'auto_budget_reset_icon' => 'Этот бюджет будет устанавливаться периодически', - 'auto_budget_rollover_icon' => 'Доступная в бюджете сумма будет периодически увеличиваться', - 'auto_budget_adjusted_icon' => 'Сумма бюджета будет периодически увеличиваться и будет скорректирована в случае перерасхода', - 'remove_budgeted_amount' => 'Удалить запланированную в бюджете сумму в :currency', + 'daily_budgets' => 'Бюджеты на день', + 'weekly_budgets' => 'Бюджеты на неделю', + 'monthly_budgets' => 'Бюджеты на месяц', + 'quarterly_budgets' => 'Бюджеты на квартал', + 'half_year_budgets' => 'Бюджеты на полгода', + 'yearly_budgets' => 'Годовые бюджеты', + 'other_budgets' => 'Бюджеты на произвольный отрезок времени', + 'budget_limit_not_in_range' => 'Эта сумма действует с :start по :end:', + 'total_available_budget' => 'Общий доступный бюджет (между :start и :end)', + 'total_available_budget_in_currency' => 'Всего доступно в бюджете (:currency)', + 'see_below' => 'см. ниже', + 'create_new_budget' => 'Создать новый бюджет', + 'store_new_budget' => 'Сохранить новый бюджет', + 'stored_new_budget' => 'Новый бюджет ":name" сохранён', + 'available_between' => 'Доступно между :start и :end', + 'transactionsWithoutBudget' => 'Расходы вне бюджета', + 'transactions_no_budget' => 'Расходы вне бюджета между :start и :end', + 'spent_between' => 'Уже потрачено между :start и :end', + 'spent_between_left' => 'Потрачено :spent между :start и :end, осталось :left.', + 'set_available_amount' => 'Установить доступную сумму', + 'update_available_amount' => 'Обновить доступную сумму', + 'ab_basic_modal_explain' => 'Используйте эту форму, чтобы указать какой бюджет вы планируете (всего, в :currency) на указанный период.', + 'createBudget' => 'Новый бюджет', + 'invalid_currency' => 'Это неверная валюта', + 'invalid_amount' => 'Пожалуйста, введите сумму', + 'set_ab' => 'Доступная сумма бюджета была установлена', + 'updated_ab' => 'Доступная сумма бюджета была обновлена', + 'deleted_ab' => 'Доступная сумма бюджета была удалена', + 'deleted_bl' => 'Запланированная в бюджете сумма была удалена', + 'alt_currency_ab_create' => 'Установите доступный бюджет в другой валюте', + 'bl_create_btn' => 'Установите бюджет в другой валюте', + 'inactiveBudgets' => 'Неактивные бюджеты', + 'without_budget_between' => 'Транзакции вне бюджета между :start и :end', + 'delete_budget' => 'Удалить бюджет ":name"', + 'deleted_budget' => 'Бюджет ":name" удалён', + 'edit_budget' => 'Редактировать бюджет ":name"', + 'updated_budget' => 'Бюджет ":name" обновлён', + 'update_amount' => 'Обновить сумму', + 'update_budget' => 'Обновить бюджет', + 'update_budget_amount_range' => 'Обновить (ожидаемые) доступные средства между :start и :end', + 'set_budget_limit_title' => 'Установите сумму для :budget между :start и :end', + 'set_budget_limit' => 'Установите сумму в бюджете', + 'budget_period_navigator' => 'Навигация по периодам', + 'info_on_available_amount' => 'Сколько средств у меня есть?', + 'available_amount_indication' => 'Используйте эти суммы, чтобы узнать, каким может быть ваш суммарный бюджет.', + 'suggested' => 'Рекомендуемые', + 'average_between' => 'В среднем между :start и :end', + 'transferred_in' => 'Переведено (в)', + 'transferred_away' => 'Переведено (из)', + 'auto_budget_none' => 'Без автобюджета', + 'auto_budget_reset' => 'Задать фиксированную сумму на каждый период', + 'auto_budget_rollover' => 'Добавить сумму на каждый период', + 'auto_budget_adjusted' => 'Добавьте сумму каждого периода и скорректируйте перерасход', + 'auto_budget_period_daily' => 'Ежедневно', + 'auto_budget_period_weekly' => 'Еженедельно', + 'auto_budget_period_monthly' => 'Ежемесячно', + 'auto_budget_period_quarterly' => 'Ежеквартально', + 'auto_budget_period_half_year' => 'Раз в полгода', + 'auto_budget_period_yearly' => 'Каждый год', + 'auto_budget_help' => 'Подробнее об этой функции можно прочитать в справке. Щёлкните по значку (?) в правом верхнем углу.', + 'auto_budget_reset_icon' => 'Этот бюджет будет устанавливаться периодически', + 'auto_budget_rollover_icon' => 'Доступная в бюджете сумма будет периодически увеличиваться', + 'auto_budget_adjusted_icon' => 'Сумма бюджета будет периодически увеличиваться и будет скорректирована в случае перерасхода', + 'remove_budgeted_amount' => 'Удалить запланированную в бюджете сумму в :currency', // bills: - 'subscription' => 'Подписка', - 'not_expected_period' => 'Не ожидается в данном периоде', - 'subscriptions_in_group' => 'Подписки в группе "%{title}"', - 'subscr_expected_x_times' => 'Ожидается оплата %{amount} %{times} раз за этот период', - 'not_or_not_yet' => 'Нет (пока)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Сравнение транзакций по счетам к оплате между :low и :high.', - 'running_again_loss' => 'Транзакции, ранее привязанные к этому счёту на оплату, могут потерять связь, они (больше) не соответствуют правилу (правилам).', - 'bill_related_rules' => 'Правила, связанные с этим счётом на оплату', - 'repeats' => 'Повторы', - 'bill_end_date_help' => 'Необязательное поле. Счет должен быть завершен на эту дату.', - 'bill_extension_date_help' => 'Необязательное поле. Счет должен быть продлен (или отменен) на или до этой даты.', - 'bill_end_index_line' => 'Этот счет заканчивается :date', - 'bill_extension_index_line' => 'Этот счет должен быть продлен или отменен :date', - 'connected_journals' => 'Связанные транзакции', - 'auto_match_on' => 'Автоматически сверено Firefly III', - 'auto_match_off' => 'Не сверено автоматически Firefly III', - 'next_expected_match' => 'Следующая сверка ожидается', - 'delete_bill' => 'Удалить счёт к оплате ":name"', - 'deleted_bill' => 'Удаленный счёт к оплате ":name"', - 'edit_bill' => 'Отредактировать счёт к оплате ":name"', - 'more' => 'Больше', - 'rescan_old' => 'Выполнить правила снова, по всем транзакциям', - 'update_bill' => 'Обновить счёт на оплату', - 'updated_bill' => 'Счёт на оплату ":name" обновлён', - 'store_new_bill' => 'Сохранить новый счёт к оплате', - 'stored_new_bill' => 'Новый счёт к оплате ":name" сохранён', - 'cannot_scan_inactive_bill' => 'Неактивные счета не могут быть перепроверены.', - 'rescanned_bill' => 'Проверена :count транзакция, привязанная к этому счёту на оплату.|Проверены все :count транзакций, привязанных к этому счёту на оплату.', - 'average_bill_amount_year' => 'Средняя сумма счёта на оплату (:year)', - 'average_bill_amount_overall' => 'Средняя сумма счёта на оплату (за всё время)', - 'bill_is_active' => 'Счёт на оплату активен', - 'bill_expected_between' => 'Ожидается между :start и :end', - 'bill_will_automatch' => 'Счёт будет автоматически связан с подходящими транзакциями', - 'skips_over' => 'пропустить', - 'bill_store_error' => 'При создании вашего нового счёта на оплату произошла неожиданная ошибка. Пожалуйста, проверьте log-файлы', - 'list_inactive_rule' => 'неактивное правило', - 'bill_edit_rules' => 'Firefly III также попытается отредактировать правило, связанное с этим счётом на оплату. Однако, если вы сами отредактировали это правило, Firefly III ничего не изменит.|Firefly III также попытается отредактировать :count правил, связанных с этим счётом на оплату. Однако, если вы сами отредактировали эти правила, Firefly III ничего не изменит.', - 'bill_expected_date' => 'Истекает :date', - 'bill_expected_date_js' => 'Ожидаемая дата {date}', - 'expected_amount' => '(Ожидаемая) сумма', - 'bill_paid_on' => 'Оплачено {date}', - 'bill_repeats_weekly' => 'Повторяет еженедельно', - 'bill_repeats_monthly' => 'Повторять ежемесячно', - 'bill_repeats_quarterly' => 'Повторяет ежеквартально', - 'bill_repeats_half-year' => 'Повторяется раз в полгода', - 'bill_repeats_yearly' => 'Повторяется ежегодно', - 'bill_repeats_weekly_other' => 'Повторяется каждую неделю', - 'bill_repeats_monthly_other' => 'Повторяется каждый месяц', - 'bill_repeats_quarterly_other' => 'Повторяется каждый квартал', - 'bill_repeats_half-year_other' => 'Повторяется ежегодно', - 'bill_repeats_yearly_other' => 'Повторяется каждый год', - 'bill_repeats_weekly_skip' => 'Повторяется каждую {skip} неделю', - 'bill_repeats_monthly_skip' => 'Повторяется каждый {skip} месяц', - 'bill_repeats_quarterly_skip' => 'Повторяется каждый {skip} квартал', - 'bill_repeats_half-year_skip' => 'Повторяется каждые {skip} полгода', - 'bill_repeats_yearly_skip' => 'Повторяется каждые {skip} года', - 'subscriptions' => 'Подписки', - 'go_to_subscriptions' => 'Перейти к вашим подпискам', - 'forever' => 'Всегда', - 'extension_date_is' => 'Дата расширения {date}', + 'subscription' => 'Подписка', + 'not_expected_period' => 'Не ожидается в данном периоде', + 'subscriptions_in_group' => 'Подписки в группе "%{title}"', + 'subscr_expected_x_times' => 'Ожидается оплата %{amount} %{times} раз за этот период', + 'not_or_not_yet' => 'Нет (пока)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Сравнение транзакций по счетам к оплате между :low и :high.', + 'running_again_loss' => 'Транзакции, ранее привязанные к этому счёту на оплату, могут потерять связь, они (больше) не соответствуют правилу (правилам).', + 'bill_related_rules' => 'Правила, связанные с этим счётом на оплату', + 'repeats' => 'Повторы', + 'bill_end_date_help' => 'Необязательное поле. Счет должен быть завершен на эту дату.', + 'bill_extension_date_help' => 'Необязательное поле. Счет должен быть продлен (или отменен) на или до этой даты.', + 'bill_end_index_line' => 'Этот счет заканчивается :date', + 'bill_extension_index_line' => 'Этот счет должен быть продлен или отменен :date', + 'connected_journals' => 'Связанные транзакции', + 'auto_match_on' => 'Автоматически сверено Firefly III', + 'auto_match_off' => 'Не сверено автоматически Firefly III', + 'next_expected_match' => 'Следующая сверка ожидается', + 'delete_bill' => 'Удалить счёт к оплате ":name"', + 'deleted_bill' => 'Удаленный счёт к оплате ":name"', + 'edit_bill' => 'Отредактировать счёт к оплате ":name"', + 'more' => 'Больше', + 'rescan_old' => 'Выполнить правила снова, по всем транзакциям', + 'update_bill' => 'Обновить счёт на оплату', + 'updated_bill' => 'Счёт на оплату ":name" обновлён', + 'store_new_bill' => 'Сохранить новый счёт к оплате', + 'stored_new_bill' => 'Новый счёт к оплате ":name" сохранён', + 'cannot_scan_inactive_bill' => 'Неактивные счета не могут быть перепроверены.', + 'rescanned_bill' => 'Проверена :count транзакция, привязанная к этому счёту на оплату.|Проверены все :count транзакций, привязанных к этому счёту на оплату.', + 'average_bill_amount_year' => 'Средняя сумма счёта на оплату (:year)', + 'average_bill_amount_overall' => 'Средняя сумма счёта на оплату (за всё время)', + 'bill_is_active' => 'Счёт на оплату активен', + 'bill_expected_between' => 'Ожидается между :start и :end', + 'bill_will_automatch' => 'Счёт будет автоматически связан с подходящими транзакциями', + 'skips_over' => 'пропустить', + 'bill_store_error' => 'При создании вашего нового счёта на оплату произошла неожиданная ошибка. Пожалуйста, проверьте log-файлы', + 'list_inactive_rule' => 'неактивное правило', + 'bill_edit_rules' => 'Firefly III также попытается отредактировать правило, связанное с этим счётом на оплату. Однако, если вы сами отредактировали это правило, Firefly III ничего не изменит.|Firefly III также попытается отредактировать :count правил, связанных с этим счётом на оплату. Однако, если вы сами отредактировали эти правила, Firefly III ничего не изменит.', + 'bill_expected_date' => 'Истекает :date', + 'bill_expected_date_js' => 'Ожидаемая дата {date}', + 'expected_amount' => '(Ожидаемая) сумма', + 'bill_paid_on' => 'Оплачено {date}', + 'bill_repeats_weekly' => 'Повторяет еженедельно', + 'bill_repeats_monthly' => 'Повторять ежемесячно', + 'bill_repeats_quarterly' => 'Повторяет ежеквартально', + 'bill_repeats_half-year' => 'Повторяется раз в полгода', + 'bill_repeats_yearly' => 'Повторяется ежегодно', + 'bill_repeats_weekly_other' => 'Повторяется каждую неделю', + 'bill_repeats_monthly_other' => 'Повторяется каждый месяц', + 'bill_repeats_quarterly_other' => 'Повторяется каждый квартал', + 'bill_repeats_half-year_other' => 'Повторяется ежегодно', + 'bill_repeats_yearly_other' => 'Повторяется каждый год', + 'bill_repeats_weekly_skip' => 'Повторяется каждую {skip} неделю', + 'bill_repeats_monthly_skip' => 'Повторяется каждый {skip} месяц', + 'bill_repeats_quarterly_skip' => 'Повторяется каждый {skip} квартал', + 'bill_repeats_half-year_skip' => 'Повторяется каждые {skip} полгода', + 'bill_repeats_yearly_skip' => 'Повторяется каждые {skip} года', + 'subscriptions' => 'Подписки', + 'go_to_subscriptions' => 'Перейти к вашим подпискам', + 'forever' => 'Всегда', + 'extension_date_is' => 'Дата расширения {date}', // accounts: - 'i_am_owed_amount' => 'Мне должны сумму', - 'i_owe_amount' => 'Я должен сумму', - 'inactive_account_link' => 'У вас :count неактивный (архивный) счёт, который вы можете увидеть на этой отдельной странице.|У вас :count неактивных (архивных) счетов, которые вы можете увидеть на этой отдельной странице.', - 'all_accounts_inactive' => 'Это ваши неактивные счета.', - 'active_account_link' => 'Эта ссылка вернёт вас к вашим активным счетам.', - 'account_missing_transaction' => 'Счёт #:id (":name") невозможно просмотреть напрямую, и у Firefly нет информации для перенаправления.', - 'cc_monthly_payment_date_help' => 'Выберите любой год и любой месяц, он будет проигнорирован в любом случае. Только день месяца является актуальным.', - 'details_for_asset' => 'Детали по основному счёту ":name"', - 'details_for_expense' => 'Детали по счёту расходов ":name"', - 'details_for_revenue' => 'Детали по счёту доходов ":name"', - 'details_for_cash' => 'Детали по наличному счёту ":name"', - 'store_new_asset_account' => 'Сохранить новый основной счёт', - 'store_new_expense_account' => 'Сохранить новый счёт расхода', - 'store_new_revenue_account' => 'Сохранить новый счёт дохода', - 'edit_asset_account' => 'Изменить основной счёт ":name"', - 'edit_expense_account' => 'Изменить счёт расходов ":name"', - 'edit_revenue_account' => 'Изменить счёт доходов ":name"', - 'delete_asset_account' => 'Удалить основной счёт ":name"', - 'delete_expense_account' => 'Удалить счёт расходов ":name"', - 'delete_revenue_account' => 'Удалить счёт доходов ":name"', - 'delete_liabilities_account' => 'Удалить долговой счёт ":name"', - 'asset_deleted' => 'Основной счёт ":name" успешно удалён', - 'account_deleted' => 'Счёт ":name" успешно удалён', - 'expense_deleted' => 'Счёт расхода ":name" успешно удалён', - 'revenue_deleted' => 'Счёт дохода ":name" успешно удалён', - 'update_asset_account' => 'Обновить основной счёт', - 'update_undefined_account' => 'Обновить учётную запись', - 'update_liabilities_account' => 'Обновить долговой счёт', - 'update_expense_account' => 'Обновить счёт расхода', - 'update_revenue_account' => 'Обновить счёт дохода', - 'make_new_asset_account' => 'Создать новый основной счёт', - 'make_new_expense_account' => 'Создать новый счёт расхода', - 'make_new_revenue_account' => 'Создать новый счёт дохода', - 'make_new_liabilities_account' => 'Создать новый долговой счёт', - 'asset_accounts' => 'Основные счета', - 'undefined_accounts' => 'Учётные записи', - 'asset_accounts_inactive' => 'Основной счёт (неактивный)', - 'expense_account' => 'Счет расходов', - 'expense_accounts' => 'Счета расходов', - 'expense_accounts_inactive' => 'Счёт расходов (неактивный)', - 'revenue_account' => 'Счет доходов', - 'revenue_accounts' => 'Счета доходов', - 'revenue_accounts_inactive' => 'Счёт доходов (неактивный)', - 'cash_accounts' => 'Наличные деньги', - 'Cash account' => 'Наличные деньги', - 'liabilities_accounts' => 'Долги', - 'liabilities_accounts_inactive' => 'Долги (неактивные)', - 'reconcile_account' => 'Сверка счёта ":account"', - 'overview_of_reconcile_modal' => 'Обзор сверки', - 'delete_reconciliation' => 'Удалить сверку', - 'update_reconciliation' => 'Обновить сверку', - 'amount_cannot_be_zero' => 'Сумма не может быть равна нулю', - 'end_of_reconcile_period' => 'Конец периода сверки: :period', - 'start_of_reconcile_period' => 'Начало периода сверки: :period', - 'start_balance' => 'Начальный баланс', - 'end_balance' => 'Конечный баланс', - 'update_balance_dates_instruction' => 'Сверьте суммы и даты, указанные выше, со своей банковской выпиской и нажмите «Начать сверку»', - 'select_transactions_instruction' => 'Выберите транзакции, которые отражены в выписке с вашего банковского счёта.', - 'select_range_and_balance' => 'Сначала проверьте диапазон дат и балансы. Затем нажмите «Начать сверку»', - 'date_change_instruction' => 'Если вы измените диапазон дат сейчас, текущий прогресс будет потерян.', - 'update_selection' => 'Обновить выбранное', - 'store_reconcile' => 'Сохранить сверку', - 'reconciliation_transaction' => 'Сверка транзакции', - 'Reconciliation' => 'Сверка', - 'reconciliation' => 'Сверка', - 'reconcile_options' => 'Параметры сверки', - 'reconcile_range' => 'Диапазон сверки', - 'start_reconcile' => 'Начать сверку', - 'cash_account_type' => 'Наличные', - 'cash' => 'наличные', - 'cant_find_redirect_account' => 'Firefly III попытался перенаправить вас, но не смог. Извините. Вернуться на главную страницу.', - 'account_type' => 'Тип счёта', - 'save_transactions_by_moving' => 'Сохраните эту транзакцию, переместив её на другой счёт:|Сохраните эти транзакции, переместив их на другой счёт:', - 'save_transactions_by_moving_js' => 'Нет транзакций|Сохраните эту транзакцию, переместив ее на другой счет. |Сохраните эти транзакции, переместив их на другой счет.', - 'stored_new_account' => 'Новый счёт ":name" сохранён!', - 'stored_new_account_js' => 'Новыая учётная запись "{name}" сохранена!', - 'updated_account' => 'Обновить счёт ":name"', - 'updated_account_js' => 'Обновлена учетная запись "{title}".', - 'credit_card_options' => 'Параметры кредитной карты', - 'no_transactions_account' => 'Для основного счёта ":name" нет транзакций (в этом периоде).', - 'no_transactions_period' => 'Нет транзакций (в этот период).', - 'no_data_for_chart' => 'Недостаточно информации (пока) для построения этой диаграммы.', - 'select_at_least_one_account' => 'Выберите хотя бы один счёт', - 'select_at_least_one_category' => 'Пожалуйста, выберите по крайней мере одну категорию', - 'select_at_least_one_budget' => 'Пожалуйста, выберите по крайней мере один бюджет', - 'select_at_least_one_tag' => 'Пожалуйста, выберите по крайней мере одну метку', - 'select_at_least_one_expense' => 'Пожалуйста, выберите хотя бы одну комбинацию счетов расходов/доходов. Если их у вас нет (список пуст), данный отчёт недоступен.', - 'account_default_currency' => 'С этим счётом будет связана валюта по умолчанию.', - 'reconcile_has_more' => 'В вашей бухгалтерской книге Firefly III учтено больше денег, чем должно быть, согласно выписке из банка. Существует несколько вариантов. Пожалуйста, выберите, что делать, а затем нажмите «Подтвердить сверку».', - 'reconcile_has_less' => 'В вашей бухгалтерской книге Firefly III учтено меньше денег, чем должно быть, согласно выписке из банка. Существует несколько вариантов. Пожалуйста, выберите, что делать, а затем нажмите «Подтвердить сверку».', - 'reconcile_is_equal' => 'Ваша бухгалтерская книга Firefly III и ваши банковские выписки совпадают. Ничего делать не нужно. Пожалуйста, нажмите «Подтвердить сверку» для ввода данных.', - 'create_pos_reconcile_transaction' => 'Удалить выбранные транзакции и создать корректировку, добавляющую сумму :amount к этому основному счёту.', - 'create_neg_reconcile_transaction' => 'Удалить выбранные транзакции и создать корректировку, удаляющую сумму :amount с этого основного счёта.', - 'reconcile_do_nothing' => 'Удалить выбранные транзакции, но не производить корректировку.', - 'reconcile_go_back' => 'Вы сможете изменить или удалить корректировку позже.', - 'must_be_asset_account' => 'Вы можете производить сверку только для основных счётов', - 'reconciliation_stored' => 'Сверка сохранена', - 'reconciliation_error' => 'Из-за ошибки транзакции были помечены как сверенные, но коррекция не была сохранена: :error.', - 'reconciliation_transaction_title' => 'Сверка (с :from по :to)', - 'sum_of_reconciliation' => 'Сумма по сверке', - 'reconcile_this_account' => 'Произвести сверку данного счёта', - 'reconcile' => 'Сверить', - 'show' => 'Показать', - 'confirm_reconciliation' => 'Подтвердить сверку', - 'submitted_start_balance' => 'Подтверждённый начальный баланс', - 'selected_transactions' => 'Выбранный транзакции (:count)', - 'already_cleared_transactions' => 'Уже удалённые транзакции (:count)', - 'submitted_end_balance' => 'Подтверждённый конечный баланс', - 'initial_balance_description' => 'Начальный баланс для ":account"', - 'liability_credit_description' => 'Кредитное обязательство по ":account"', - 'interest_calc_' => 'неизвестно', - 'interest_calc_daily' => 'В день', - 'interest_calc_monthly' => 'В месяц', - 'interest_calc_yearly' => 'В год', - 'interest_calc_weekly' => 'За неделю', - 'interest_calc_half-year' => 'За полгода', - 'interest_calc_quarterly' => 'За квартал', - 'initial_balance_account' => 'Начальный баланс для счёта :account', - 'list_options' => 'Список настроек', + 'i_am_owed_amount' => 'Мне должны сумму', + 'i_owe_amount' => 'Я должен сумму', + 'inactive_account_link' => 'У вас :count неактивный (архивный) счёт, который вы можете увидеть на этой отдельной странице.|У вас :count неактивных (архивных) счетов, которые вы можете увидеть на этой отдельной странице.', + 'all_accounts_inactive' => 'Это ваши неактивные счета.', + 'active_account_link' => 'Эта ссылка вернёт вас к вашим активным счетам.', + 'account_missing_transaction' => 'Счёт #:id (":name") невозможно просмотреть напрямую, и у Firefly нет информации для перенаправления.', + 'cc_monthly_payment_date_help' => 'Выберите любой год и любой месяц, он будет проигнорирован в любом случае. Только день месяца является актуальным.', + 'details_for_asset' => 'Детали по основному счёту ":name"', + 'details_for_expense' => 'Детали по счёту расходов ":name"', + 'details_for_revenue' => 'Детали по счёту доходов ":name"', + 'details_for_cash' => 'Детали по наличному счёту ":name"', + 'store_new_asset_account' => 'Сохранить новый основной счёт', + 'store_new_expense_account' => 'Сохранить новый счёт расхода', + 'store_new_revenue_account' => 'Сохранить новый счёт дохода', + 'edit_asset_account' => 'Изменить основной счёт ":name"', + 'edit_expense_account' => 'Изменить счёт расходов ":name"', + 'edit_revenue_account' => 'Изменить счёт доходов ":name"', + 'delete_asset_account' => 'Удалить основной счёт ":name"', + 'delete_expense_account' => 'Удалить счёт расходов ":name"', + 'delete_revenue_account' => 'Удалить счёт доходов ":name"', + 'delete_liabilities_account' => 'Удалить долговой счёт ":name"', + 'asset_deleted' => 'Основной счёт ":name" успешно удалён', + 'account_deleted' => 'Счёт ":name" успешно удалён', + 'expense_deleted' => 'Счёт расхода ":name" успешно удалён', + 'revenue_deleted' => 'Счёт дохода ":name" успешно удалён', + 'update_asset_account' => 'Обновить основной счёт', + 'update_undefined_account' => 'Обновить учётную запись', + 'update_liabilities_account' => 'Обновить долговой счёт', + 'update_expense_account' => 'Обновить счёт расхода', + 'update_revenue_account' => 'Обновить счёт дохода', + 'make_new_asset_account' => 'Создать новый основной счёт', + 'make_new_expense_account' => 'Создать новый счёт расхода', + 'make_new_revenue_account' => 'Создать новый счёт дохода', + 'make_new_liabilities_account' => 'Создать новый долговой счёт', + 'asset_accounts' => 'Основные счета', + 'undefined_accounts' => 'Учётные записи', + 'asset_accounts_inactive' => 'Основной счёт (неактивный)', + 'expense_account' => 'Счет расходов', + 'expense_accounts' => 'Счета расходов', + 'expense_accounts_inactive' => 'Счёт расходов (неактивный)', + 'revenue_account' => 'Счет доходов', + 'revenue_accounts' => 'Счета доходов', + 'revenue_accounts_inactive' => 'Счёт доходов (неактивный)', + 'cash_accounts' => 'Наличные деньги', + 'Cash account' => 'Наличные деньги', + 'liabilities_accounts' => 'Долги', + 'liabilities_accounts_inactive' => 'Долги (неактивные)', + 'reconcile_account' => 'Сверка счёта ":account"', + 'overview_of_reconcile_modal' => 'Обзор сверки', + 'delete_reconciliation' => 'Удалить сверку', + 'update_reconciliation' => 'Обновить сверку', + 'amount_cannot_be_zero' => 'Сумма не может быть равна нулю', + 'end_of_reconcile_period' => 'Конец периода сверки: :period', + 'start_of_reconcile_period' => 'Начало периода сверки: :period', + 'start_balance' => 'Начальный баланс', + 'end_balance' => 'Конечный баланс', + 'update_balance_dates_instruction' => 'Сверьте суммы и даты, указанные выше, со своей банковской выпиской и нажмите «Начать сверку»', + 'select_transactions_instruction' => 'Выберите транзакции, которые отражены в выписке с вашего банковского счёта.', + 'select_range_and_balance' => 'Сначала проверьте диапазон дат и балансы. Затем нажмите «Начать сверку»', + 'date_change_instruction' => 'Если вы измените диапазон дат сейчас, текущий прогресс будет потерян.', + 'update_selection' => 'Обновить выбранное', + 'store_reconcile' => 'Сохранить сверку', + 'reconciliation_transaction' => 'Сверка транзакции', + 'Reconciliation' => 'Сверка', + 'reconciliation' => 'Сверка', + 'reconcile_options' => 'Параметры сверки', + 'reconcile_range' => 'Диапазон сверки', + 'start_reconcile' => 'Начать сверку', + 'cash_account_type' => 'Наличные', + 'cash' => 'наличные', + 'cant_find_redirect_account' => 'Firefly III попытался перенаправить вас, но не смог. Извините. Вернуться на главную страницу.', + 'account_type' => 'Тип счёта', + 'save_transactions_by_moving' => 'Сохраните эту транзакцию, переместив её на другой счёт:|Сохраните эти транзакции, переместив их на другой счёт:', + 'save_transactions_by_moving_js' => 'Нет транзакций|Сохраните эту транзакцию, переместив ее на другой счет. |Сохраните эти транзакции, переместив их на другой счет.', + 'stored_new_account' => 'Новый счёт ":name" сохранён!', + 'stored_new_account_js' => 'Новыая учётная запись "{name}" сохранена!', + 'updated_account' => 'Обновить счёт ":name"', + 'updated_account_js' => 'Обновлена учетная запись "{title}".', + 'credit_card_options' => 'Параметры кредитной карты', + 'no_transactions_account' => 'Для основного счёта ":name" нет транзакций (в этом периоде).', + 'no_transactions_period' => 'Нет транзакций (в этот период).', + 'no_data_for_chart' => 'Недостаточно информации (пока) для построения этой диаграммы.', + 'select_at_least_one_account' => 'Выберите хотя бы один счёт', + 'select_at_least_one_category' => 'Пожалуйста, выберите по крайней мере одну категорию', + 'select_at_least_one_budget' => 'Пожалуйста, выберите по крайней мере один бюджет', + 'select_at_least_one_tag' => 'Пожалуйста, выберите по крайней мере одну метку', + 'select_at_least_one_expense' => 'Пожалуйста, выберите хотя бы одну комбинацию счетов расходов/доходов. Если их у вас нет (список пуст), данный отчёт недоступен.', + 'account_default_currency' => 'С этим счётом будет связана валюта по умолчанию.', + 'reconcile_has_more' => 'В вашей бухгалтерской книге Firefly III учтено больше денег, чем должно быть, согласно выписке из банка. Существует несколько вариантов. Пожалуйста, выберите, что делать, а затем нажмите «Подтвердить сверку».', + 'reconcile_has_less' => 'В вашей бухгалтерской книге Firefly III учтено меньше денег, чем должно быть, согласно выписке из банка. Существует несколько вариантов. Пожалуйста, выберите, что делать, а затем нажмите «Подтвердить сверку».', + 'reconcile_is_equal' => 'Ваша бухгалтерская книга Firefly III и ваши банковские выписки совпадают. Ничего делать не нужно. Пожалуйста, нажмите «Подтвердить сверку» для ввода данных.', + 'create_pos_reconcile_transaction' => 'Удалить выбранные транзакции и создать корректировку, добавляющую сумму :amount к этому основному счёту.', + 'create_neg_reconcile_transaction' => 'Удалить выбранные транзакции и создать корректировку, удаляющую сумму :amount с этого основного счёта.', + 'reconcile_do_nothing' => 'Удалить выбранные транзакции, но не производить корректировку.', + 'reconcile_go_back' => 'Вы сможете изменить или удалить корректировку позже.', + 'must_be_asset_account' => 'Вы можете производить сверку только для основных счётов', + 'reconciliation_stored' => 'Сверка сохранена', + 'reconciliation_error' => 'Из-за ошибки транзакции были помечены как сверенные, но коррекция не была сохранена: :error.', + 'reconciliation_transaction_title' => 'Сверка (с :from по :to)', + 'sum_of_reconciliation' => 'Сумма по сверке', + 'reconcile_this_account' => 'Произвести сверку данного счёта', + 'reconcile' => 'Сверить', + 'show' => 'Показать', + 'confirm_reconciliation' => 'Подтвердить сверку', + 'submitted_start_balance' => 'Подтверждённый начальный баланс', + 'selected_transactions' => 'Выбранный транзакции (:count)', + 'already_cleared_transactions' => 'Уже удалённые транзакции (:count)', + 'submitted_end_balance' => 'Подтверждённый конечный баланс', + 'initial_balance_description' => 'Начальный баланс для ":account"', + 'liability_credit_description' => 'Кредитное обязательство по ":account"', + 'interest_calc_' => 'неизвестно', + 'interest_calc_daily' => 'В день', + 'interest_calc_monthly' => 'В месяц', + 'interest_calc_yearly' => 'В год', + 'interest_calc_weekly' => 'За неделю', + 'interest_calc_half-year' => 'За полгода', + 'interest_calc_quarterly' => 'За квартал', + 'initial_balance_account' => 'Начальный баланс для счёта :account', + 'list_options' => 'Список настроек', // categories: - 'new_category' => 'Новая категория', - 'create_new_category' => 'Создать новую категорию', - 'without_category' => 'Без категории', - 'update_category' => 'Обновить категорию', - 'updated_category' => 'Обновить категорию ":name"', - 'categories' => 'Категории', - 'edit_category' => 'Изменить категорию ":name"', - 'no_category' => '(без категории)', - 'unknown_category_plain' => 'Без категории', - 'category' => 'Категория', - 'delete_category' => 'Удалить категорию ":name"', - 'deleted_category' => 'Удалить категорию ":name"', - 'store_category' => 'Сохранить новую категорию', - 'stored_category' => 'Новая категория ":name" успешно сохранена!', - 'without_category_between' => 'Без категории между :start и :end', + 'new_category' => 'Новая категория', + 'create_new_category' => 'Создать новую категорию', + 'without_category' => 'Без категории', + 'update_category' => 'Обновить категорию', + 'updated_category' => 'Обновить категорию ":name"', + 'categories' => 'Категории', + 'edit_category' => 'Изменить категорию ":name"', + 'no_category' => '(без категории)', + 'unknown_category_plain' => 'Без категории', + 'category' => 'Категория', + 'delete_category' => 'Удалить категорию ":name"', + 'deleted_category' => 'Удалить категорию ":name"', + 'store_category' => 'Сохранить новую категорию', + 'stored_category' => 'Новая категория ":name" успешно сохранена!', + 'without_category_between' => 'Без категории между :start и :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Дождитесь загрузки формы', - 'wait_loading_data' => 'Пожалуйста, дождитесь загрузки вашей информации...', - 'wait_attachments' => 'Пожалуйста, дождитесь загрузки вложений.', - 'errors_upload' => 'Загрузка не удалась. Пожалуйста, проверьте консоль вашего браузера на наличие ошибки.', - 'amount_foreign_if' => 'Сумма в иностранной валюте, если таковая имеется', - 'amount_destination_account' => 'Сумма в валюте счета назначения', - 'edit_transaction_title' => 'Редактировать транзакцию ":description"', - 'unreconcile' => 'Отменить сверку', - 'update_withdrawal' => 'Обновить расход', - 'update_deposit' => 'Обновить доход', - 'update_transaction' => 'Обновить транзакцию', - 'update_transfer' => 'Обновить перевод', - 'updated_withdrawal' => 'Расход ":description" обновлён', - 'updated_deposit' => 'Доход ":description" обновлён', - 'updated_transfer' => 'Перевод ":description" обновлён', - 'no_changes_withdrawal' => 'Расход ":description" не был изменен.', - 'no_changes_deposit' => 'Доход ":description" не был изменен.', - 'no_changes_transfer' => 'Перевод ":description" не был изменен.', - 'delete_withdrawal' => 'Удалить расход ":description"', - 'delete_deposit' => 'Удалить доход ":description"', - 'delete_transfer' => 'Удалить перевод ":description"', - 'deleted_withdrawal' => 'Расход ":description" успешно удалён', - 'deleted_deposit' => 'Доход ":description" успешно удалён', - 'deleted_transfer' => 'Перевод ":description" успешно удалён', - 'deleted_reconciliation' => 'Сверенная транзакция ":description" успешно удалена', - 'stored_journal' => 'Новая транзакция ":description" успешно создана', - 'stored_journal_js' => 'Успешно создана новая транзакция "{{description}}"', - 'stored_journal_no_descr' => 'Ваша новая транзакция успешно создана', - 'updated_journal_no_descr' => 'Ваша транзакция успешно обновлена', - 'select_transactions' => 'Выбрать транзакции', - 'rule_group_select_transactions' => 'Применить ":title" к транзакциям', - 'rule_select_transactions' => 'Применить ":title" к транзакциям', - 'stop_selection' => 'Завершить выбор транзакций', - 'reconcile_selected' => 'Сверить', - 'mass_delete_journals' => 'Удалить несколько транзакций', - 'mass_edit_journals' => 'Изменить несколько транзакций', - 'mass_bulk_journals' => 'Массовое изменение нескольких транзакций', - 'mass_bulk_journals_explain' => 'Эта форма позволяет массово изменять свойства всех транзакций, перечисленных ниже. Все транзакции в таблице будут обновлены с учётом новых параметров, которые вы видите здесь.', - 'part_of_split' => 'Эта транзакция является частью разделённой транзакции. Если вы выбрали не все части, то можете изменить только половину транзакции.', - 'bulk_set_new_values' => 'Используйте эти поля для ввода новых значений. Если вы оставите их пустыми, они будут очищены у всех записей. Также обратите внимание, что бюджет будет сопоставлен только с расходами.', - 'no_bulk_category' => 'Не обновлять категорию', - 'no_bulk_budget' => 'Не обновлять бюджет', - 'no_bulk_tags' => 'Не обновлять метки', - 'replace_with_these_tags' => 'Заменить этими метками', - 'append_these_tags' => 'Добавить эти метки', - 'mass_edit' => 'Изменить выбранные по отдельности', - 'bulk_edit' => 'Изменить выбранную группу', - 'mass_delete' => 'Удалить выбранные', - 'cannot_edit_other_fields' => 'Вы не можете массово редактировать другие поля, кроме тех, которые видите здесь, поскольку для их отображения недостаточно места. Пожалуйста, перейдите по ссылке и отредактируйте их по одной, если вам нужно изменить такие поля.', - 'cannot_change_amount_reconciled' => 'Вы не можете изменить сумму по сверенным транзакциям.', - 'no_budget' => '(вне бюджета)', - 'no_bill' => '(нет счёта на оплату)', - 'account_per_budget' => 'Счёт в бюджете', - 'account_per_category' => 'Счёт по категории', - 'create_new_object' => 'Создать', - 'empty' => '(пусто)', - 'all_other_budgets' => '(все остальные бюджеты)', - 'all_other_accounts' => '(все остальные счета)', - 'expense_per_source_account' => 'Расходы по счёту-источнику', - 'expense_per_destination_account' => 'Расходы по счёту назначения', - 'income_per_destination_account' => 'Доходы по счёту назначения', - 'spent_in_specific_category' => 'Расходы по категории ":category"', - 'earned_in_specific_category' => 'Доходы по категории ":category"', - 'spent_in_specific_tag' => 'Расходы с меткой ":tag"', - 'earned_in_specific_tag' => 'Доходы с меткой ":tag"', - 'income_per_source_account' => 'Доход на счёт-источник', - 'average_spending_per_destination' => 'Средний расход по счёту-источнику', - 'average_spending_per_source' => 'Средний расход по счёту-источнику', - 'average_earning_per_source' => 'Средний доход по счёту-источнику', - 'average_earning_per_destination' => 'Средний доход по счёту назначения', - 'account_per_tag' => 'Счёт по метку', - 'tag_report_expenses_listed_once' => 'Расходы и доходы никогда не отображаются дважды. Если транзакция имеет несколько меток, она может отображаться только с одной из них. Может показаться, что диаграмма не отображает часть данных, но суммы будут правильной.', - 'double_report_expenses_charted_once' => 'Расходы и доходы никогда не отображаются дважды. Если транзакция имеет несколько меток, она может отображаться только с одной из них. Может показаться, что диаграмма не отображает часть данных, но суммы будут правильной.', - 'tag_report_chart_single_tag' => 'Эта диаграмма отображает данные для одной метки. Если транзакция имеет несколько меток, эти же самые данные могут быть отражены в диаграммах других меток.', - 'tag' => 'Метка', - 'no_budget_squared' => '(вне бюджета)', - 'perm-delete-many' => 'Удаление нескольких элементов за один раз может быть очень разрушительным. Пожалуйста, будьте осторожны. Например, вы можете удалить часть разделённой транзакции, видиму на этой странице.', - 'mass_deleted_transactions_success' => 'Удалена :count транзакция.|Удалено :count транзакций.', - 'mass_edited_transactions_success' => 'Обновлена :count транзакция.|Обновлено :count транзакций.', - 'opt_group_' => '(нет типа счёта)', - 'opt_group_no_account_type' => '(нет типа счёта)', - 'opt_group_defaultAsset' => 'Основные счета по умолчанию', - 'opt_group_savingAsset' => 'Сберегательные счета', - 'opt_group_sharedAsset' => 'Общие основные счета', - 'opt_group_ccAsset' => 'Кредитные карты', - 'opt_group_cashWalletAsset' => 'Кошельки с наличными', - 'opt_group_expense_account' => 'Счета расходов', - 'opt_group_revenue_account' => 'Счета доходов', - 'opt_group_l_Loan' => 'Долги (кредит)', - 'opt_group_cash_account' => 'Наличные деньги', - 'opt_group_l_Debt' => 'Долги (дебит)', - 'opt_group_l_Mortgage' => 'Долги (ипотека)', - 'opt_group_l_Credit card' => 'Долги (кредитная карта)', - 'notes' => 'Заметки', - 'unknown_journal_error' => 'Не удалось сохранить транзакцию. Пожалуйста, проверьте log-файлы.', - 'attachment_not_found' => 'Вложение не найдено.', - 'journal_link_bill' => 'Эта транзакция связана со счётом на оплату :name. Чтобы удалить эту связь, снимите галочку. Используйте правила для связи с другим счётом на оплату.', - 'transaction_stored_link' => 'Транзакция #{ID} ("{title}") сохранена.', - 'transaction_new_stored_link' => 'Транзакция #{ID} сохранена.', - 'transaction_updated_link' => 'Транзакция #{ID} ("{title}") обновлена.', - 'transaction_updated_no_changes' => 'Транзакция #{ID} ("{title}") не изменилась.', - 'first_split_decides' => 'В данном поле используется значение из первой части разделенной транзакции', - 'first_split_overrules_source' => 'Значение из первой части транзакции может изменить счет источника', - 'first_split_overrules_destination' => 'Значение из первой части транзакции может изменить счет назначения', - 'spent_x_of_y' => 'Потрачено {amount} из {total}', + 'wait_loading_transaction' => 'Дождитесь загрузки формы', + 'wait_loading_data' => 'Пожалуйста, дождитесь загрузки вашей информации...', + 'wait_attachments' => 'Пожалуйста, дождитесь загрузки вложений.', + 'errors_upload' => 'Загрузка не удалась. Пожалуйста, проверьте консоль вашего браузера на наличие ошибки.', + 'amount_foreign_if' => 'Сумма в иностранной валюте, если таковая имеется', + 'amount_destination_account' => 'Сумма в валюте счета назначения', + 'edit_transaction_title' => 'Редактировать транзакцию ":description"', + 'unreconcile' => 'Отменить сверку', + 'update_withdrawal' => 'Обновить расход', + 'update_deposit' => 'Обновить доход', + 'update_transaction' => 'Обновить транзакцию', + 'update_transfer' => 'Обновить перевод', + 'updated_withdrawal' => 'Расход ":description" обновлён', + 'updated_deposit' => 'Доход ":description" обновлён', + 'updated_transfer' => 'Перевод ":description" обновлён', + 'no_changes_withdrawal' => 'Расход ":description" не был изменен.', + 'no_changes_deposit' => 'Доход ":description" не был изменен.', + 'no_changes_transfer' => 'Перевод ":description" не был изменен.', + 'delete_withdrawal' => 'Удалить расход ":description"', + 'delete_deposit' => 'Удалить доход ":description"', + 'delete_transfer' => 'Удалить перевод ":description"', + 'deleted_withdrawal' => 'Расход ":description" успешно удалён', + 'deleted_deposit' => 'Доход ":description" успешно удалён', + 'deleted_transfer' => 'Перевод ":description" успешно удалён', + 'deleted_reconciliation' => 'Сверенная транзакция ":description" успешно удалена', + 'stored_journal' => 'Новая транзакция ":description" успешно создана', + 'stored_journal_js' => 'Успешно создана новая транзакция "{{description}}"', + 'stored_journal_no_descr' => 'Ваша новая транзакция успешно создана', + 'updated_journal_no_descr' => 'Ваша транзакция успешно обновлена', + 'select_transactions' => 'Выбрать транзакции', + 'rule_group_select_transactions' => 'Применить ":title" к транзакциям', + 'rule_select_transactions' => 'Применить ":title" к транзакциям', + 'stop_selection' => 'Завершить выбор транзакций', + 'reconcile_selected' => 'Сверить', + 'mass_delete_journals' => 'Удалить несколько транзакций', + 'mass_edit_journals' => 'Изменить несколько транзакций', + 'mass_bulk_journals' => 'Массовое изменение нескольких транзакций', + 'mass_bulk_journals_explain' => 'Эта форма позволяет массово изменять свойства всех транзакций, перечисленных ниже. Все транзакции в таблице будут обновлены с учётом новых параметров, которые вы видите здесь.', + 'part_of_split' => 'Эта транзакция является частью разделённой транзакции. Если вы выбрали не все части, то можете изменить только половину транзакции.', + 'bulk_set_new_values' => 'Используйте эти поля для ввода новых значений. Если вы оставите их пустыми, они будут очищены у всех записей. Также обратите внимание, что бюджет будет сопоставлен только с расходами.', + 'no_bulk_category' => 'Не обновлять категорию', + 'no_bulk_budget' => 'Не обновлять бюджет', + 'no_bulk_tags' => 'Не обновлять метки', + 'replace_with_these_tags' => 'Заменить этими метками', + 'append_these_tags' => 'Добавить эти метки', + 'mass_edit' => 'Изменить выбранные по отдельности', + 'bulk_edit' => 'Изменить выбранную группу', + 'mass_delete' => 'Удалить выбранные', + 'cannot_edit_other_fields' => 'Вы не можете массово редактировать другие поля, кроме тех, которые видите здесь, поскольку для их отображения недостаточно места. Пожалуйста, перейдите по ссылке и отредактируйте их по одной, если вам нужно изменить такие поля.', + 'cannot_change_amount_reconciled' => 'Вы не можете изменить сумму по сверенным транзакциям.', + 'no_budget' => '(вне бюджета)', + 'no_bill' => '(нет счёта на оплату)', + 'account_per_budget' => 'Счёт в бюджете', + 'account_per_category' => 'Счёт по категории', + 'create_new_object' => 'Создать', + 'empty' => '(пусто)', + 'all_other_budgets' => '(все остальные бюджеты)', + 'all_other_accounts' => '(все остальные счета)', + 'expense_per_source_account' => 'Расходы по счёту-источнику', + 'expense_per_destination_account' => 'Расходы по счёту назначения', + 'income_per_destination_account' => 'Доходы по счёту назначения', + 'spent_in_specific_category' => 'Расходы по категории ":category"', + 'earned_in_specific_category' => 'Доходы по категории ":category"', + 'spent_in_specific_tag' => 'Расходы с меткой ":tag"', + 'earned_in_specific_tag' => 'Доходы с меткой ":tag"', + 'income_per_source_account' => 'Доход на счёт-источник', + 'average_spending_per_destination' => 'Средний расход по счёту-источнику', + 'average_spending_per_source' => 'Средний расход по счёту-источнику', + 'average_earning_per_source' => 'Средний доход по счёту-источнику', + 'average_earning_per_destination' => 'Средний доход по счёту назначения', + 'account_per_tag' => 'Счёт по метку', + 'tag_report_expenses_listed_once' => 'Расходы и доходы никогда не отображаются дважды. Если транзакция имеет несколько меток, она может отображаться только с одной из них. Может показаться, что диаграмма не отображает часть данных, но суммы будут правильной.', + 'double_report_expenses_charted_once' => 'Расходы и доходы никогда не отображаются дважды. Если транзакция имеет несколько меток, она может отображаться только с одной из них. Может показаться, что диаграмма не отображает часть данных, но суммы будут правильной.', + 'tag_report_chart_single_tag' => 'Эта диаграмма отображает данные для одной метки. Если транзакция имеет несколько меток, эти же самые данные могут быть отражены в диаграммах других меток.', + 'tag' => 'Метка', + 'no_budget_squared' => '(вне бюджета)', + 'perm-delete-many' => 'Удаление нескольких элементов за один раз может быть очень разрушительным. Пожалуйста, будьте осторожны. Например, вы можете удалить часть разделённой транзакции, видиму на этой странице.', + 'mass_deleted_transactions_success' => 'Удалена :count транзакция.|Удалено :count транзакций.', + 'mass_edited_transactions_success' => 'Обновлена :count транзакция.|Обновлено :count транзакций.', + 'opt_group_' => '(нет типа счёта)', + 'opt_group_no_account_type' => '(нет типа счёта)', + 'opt_group_defaultAsset' => 'Основные счета по умолчанию', + 'opt_group_savingAsset' => 'Сберегательные счета', + 'opt_group_sharedAsset' => 'Общие основные счета', + 'opt_group_ccAsset' => 'Кредитные карты', + 'opt_group_cashWalletAsset' => 'Кошельки с наличными', + 'opt_group_expense_account' => 'Счета расходов', + 'opt_group_revenue_account' => 'Счета доходов', + 'opt_group_l_Loan' => 'Долги (кредит)', + 'opt_group_cash_account' => 'Наличные деньги', + 'opt_group_l_Debt' => 'Долги (дебит)', + 'opt_group_l_Mortgage' => 'Долги (ипотека)', + 'opt_group_l_Credit card' => 'Долги (кредитная карта)', + 'notes' => 'Заметки', + 'unknown_journal_error' => 'Не удалось сохранить транзакцию. Пожалуйста, проверьте log-файлы.', + 'attachment_not_found' => 'Вложение не найдено.', + 'journal_link_bill' => 'Эта транзакция связана со счётом на оплату :name. Чтобы удалить эту связь, снимите галочку. Используйте правила для связи с другим счётом на оплату.', + 'transaction_stored_link' => 'Транзакция #{ID} ("{title}") сохранена.', + 'transaction_new_stored_link' => 'Транзакция #{ID} сохранена.', + 'transaction_updated_link' => 'Транзакция #{ID} ("{title}") обновлена.', + 'transaction_updated_no_changes' => 'Транзакция #{ID} ("{title}") не изменилась.', + 'first_split_decides' => 'В данном поле используется значение из первой части разделенной транзакции', + 'first_split_overrules_source' => 'Значение из первой части транзакции может изменить счет источника', + 'first_split_overrules_destination' => 'Значение из первой части транзакции может изменить счет назначения', + 'spent_x_of_y' => 'Потрачено {amount} из {total}', // new user: - 'welcome' => 'Добро пожаловать в Firefly III!', - 'submit' => 'Подтвердить', - 'submission' => 'Отправить', - 'submit_yes_really' => 'Подтвердить (я знаю, что делаю)', - 'getting_started' => 'Начало работы', - 'to_get_started' => 'Приятно видеть, что вы успешно установили Firefly III. Чтобы начать работу, введите, пожалуйста, название своего банка и баланс вашего основного банковского счёта. Если вы планируете использовать несколько счетов, не волнуйтесь, вы сможете добавить их позже. Сейчас Firefly III просто нужны какие-нибудь первоначальные данные.', - 'savings_balance_text' => 'Firefly III автоматически создаст сберегательный счёт для вас. По умолчанию на вашем сберегательном счёте не будет денег, но если вы укажете начальный баланс, он будет сохранен.', - 'finish_up_new_user' => 'Это всё! Вы можете продолжить, нажав Подтвердить. Вы попадете на главную страницу Firefly III.', - 'stored_new_accounts_new_user' => 'Ура! Ваши новые учётные записи сохранены.', - 'set_preferred_language' => 'Если вы предпочитаете использовать Firefly III на другом языке, укажите здесь здесь.', - 'language' => 'Язык', - 'new_savings_account' => 'сберегательный счёт в :bank_name', - 'cash_wallet' => 'Кошелёк с наличными', - 'currency_not_present' => 'Если ваша основная валюта ещё не указана, не волнуйтесь. Вы можете создать собственные валюты в разделе Параметры > Валюты.', + 'welcome' => 'Добро пожаловать в Firefly III!', + 'submit' => 'Подтвердить', + 'submission' => 'Отправить', + 'submit_yes_really' => 'Подтвердить (я знаю, что делаю)', + 'getting_started' => 'Начало работы', + 'to_get_started' => 'Приятно видеть, что вы успешно установили Firefly III. Чтобы начать работу, введите, пожалуйста, название своего банка и баланс вашего основного банковского счёта. Если вы планируете использовать несколько счетов, не волнуйтесь, вы сможете добавить их позже. Сейчас Firefly III просто нужны какие-нибудь первоначальные данные.', + 'savings_balance_text' => 'Firefly III автоматически создаст сберегательный счёт для вас. По умолчанию на вашем сберегательном счёте не будет денег, но если вы укажете начальный баланс, он будет сохранен.', + 'finish_up_new_user' => 'Это всё! Вы можете продолжить, нажав Подтвердить. Вы попадете на главную страницу Firefly III.', + 'stored_new_accounts_new_user' => 'Ура! Ваши новые учётные записи сохранены.', + 'set_preferred_language' => 'Если вы предпочитаете использовать Firefly III на другом языке, укажите здесь здесь.', + 'language' => 'Язык', + 'new_savings_account' => 'сберегательный счёт в :bank_name', + 'cash_wallet' => 'Кошелёк с наличными', + 'currency_not_present' => 'Если ваша основная валюта ещё не указана, не волнуйтесь. Вы можете создать собственные валюты в разделе Параметры > Валюты.', // home page: - 'transaction_table_description' => 'Таблица, содержащая ваши транзакции', - 'opposing_account' => 'Противодействующий счёт', - 'yourAccounts' => 'Ваши счета', - 'your_accounts' => 'Обзор вашего счёта', - 'category_overview' => 'Обзор категории', - 'expense_overview' => 'Обзор счета расходов', - 'revenue_overview' => 'Обзор счёта доходов', - 'budgetsAndSpending' => 'Бюджеты и расходы', - 'budgets_and_spending' => 'Бюджеты и расходы', - 'go_to_budget' => 'Перейти к бюджету "{budget}"', - 'go_to_deposits' => 'Перейти ко вкладам', - 'go_to_expenses' => 'Перейти к расходам', - 'savings' => 'Экономия', - 'newWithdrawal' => 'Новый расход', - 'newDeposit' => 'Новый доход', - 'newTransfer' => 'Новый перевод', - 'bills_to_pay' => 'Счета к оплате', - 'per_day' => 'В день', - 'left_to_spend_per_day' => 'Можно тратить в день', - 'bills_paid' => 'Оплаченные счета', - 'custom_period' => 'Пользовательский период', - 'reset_to_current' => 'Сброс к текущему периоду', - 'select_period' => 'Выберите период', + 'transaction_table_description' => 'Таблица, содержащая ваши транзакции', + 'opposing_account' => 'Противодействующий счёт', + 'yourAccounts' => 'Ваши счета', + 'your_accounts' => 'Обзор вашего счёта', + 'category_overview' => 'Обзор категории', + 'expense_overview' => 'Обзор счета расходов', + 'revenue_overview' => 'Обзор счёта доходов', + 'budgetsAndSpending' => 'Бюджеты и расходы', + 'budgets_and_spending' => 'Бюджеты и расходы', + 'go_to_budget' => 'Перейти к бюджету "{budget}"', + 'go_to_deposits' => 'Перейти ко вкладам', + 'go_to_expenses' => 'Перейти к расходам', + 'savings' => 'Экономия', + 'newWithdrawal' => 'Новый расход', + 'newDeposit' => 'Новый доход', + 'newTransfer' => 'Новый перевод', + 'bills_to_pay' => 'Счета к оплате', + 'per_day' => 'В день', + 'left_to_spend_per_day' => 'Можно тратить в день', + 'bills_paid' => 'Оплаченные счета', + 'custom_period' => 'Пользовательский период', + 'reset_to_current' => 'Сброс к текущему периоду', + 'select_period' => 'Выберите период', // menu and titles, should be recycled as often as possible: - 'currency' => 'Валюта', - 'preferences' => 'Настройки', - 'logout' => 'Выход', - 'logout_other_sessions' => 'Завершить все другие сессии', - 'toggleNavigation' => 'Переключить навигацию', - 'searchPlaceholder' => 'Поиск...', - 'version' => 'Версия', - 'dashboard' => 'Сводка', - 'income_and_expense' => 'Доходы и расходы', - 'all_money' => 'Все ваши деньги', - 'unknown_source_plain' => 'Неизвестный счет источник', - 'unknown_dest_plain' => 'Неизвестный счет назначения', - 'unknown_any_plain' => 'Неизвестный счет', - 'unknown_budget_plain' => 'Без бюджета', - 'available_budget' => 'Доступный бюджет ({currency})', - 'currencies' => 'Валюты', - 'activity' => 'Активность', - 'usage' => 'Использование', - 'accounts' => 'Счета', - 'Asset account' => 'Активный счёт', - 'Default account' => 'Основной счёт', - 'Expense account' => 'Счета расходов', - 'Revenue account' => 'Счета доходов', - 'Initial balance account' => 'Начальный баланс для счёта', - 'account_type_Asset account' => 'Счет активов', - 'account_type_Expense account' => 'Счета расходов', - 'account_type_Revenue account' => 'Счет доходов', - 'account_type_Debt' => 'Дебит', - 'account_type_Loan' => 'Заём', - 'account_type_Mortgage' => 'Ипотека', - 'account_type_debt' => 'Долг', - 'account_type_loan' => 'Заём', - 'account_type_mortgage' => 'Ипотека', - 'account_type_Credit card' => 'Кредитная карта', - 'credit_card_type_monthlyFull' => 'Полная оплата каждый месяц', - 'liability_direction_credit' => 'Мне должны', - 'liability_direction_debit' => 'Я должен кому-то', - 'liability_direction_credit_short' => 'Мне должны', - 'liability_direction_debit_short' => 'Я должен', - 'liability_direction__short' => 'Неизвестно', - 'liability_direction_null_short' => 'Неизвестно', - 'Liability credit' => 'Кредитное обязательство', - 'budgets' => 'Бюджет', - 'tags' => 'Метки', - 'reports' => 'Отчёты', - 'transactions' => 'Транзакции', - 'expenses' => 'Расходы', - 'income' => 'Доходы', - 'transfers' => 'Переводы', - 'moneyManagement' => 'Управление финансами', - 'money_management' => 'Управление финансами', - 'tools' => 'Инструменты', - 'piggyBanks' => 'Копилки', - 'piggy_banks' => 'Копилки', - 'amount_x_of_y' => '{current} из {total}', - 'bills' => 'Счета к оплате', - 'withdrawal' => 'Расход', - 'opening_balance' => 'Начальный баланс', - 'deposit' => 'Доход', - 'account' => 'Счёт', - 'transfer' => 'Перевод', - 'Withdrawal' => 'Расход', - 'Deposit' => 'Доход', - 'Transfer' => 'Перевод', - 'bill' => 'Счёт к оплате', - 'yes' => 'Да', - 'no' => 'Нет', - 'amount' => 'Сумма', - 'overview' => 'Обзор', - 'saveOnAccount' => 'Сохранить на счёте', - 'unknown' => 'Неизвестно', - 'monthly' => 'Ежемесячно', - 'profile' => 'Профиль', - 'errors' => 'Ошибки', - 'debt_start_date' => 'Дата начала дебита', - 'debt_start_amount' => 'Начальная сумма дебита', - 'debt_start_amount_help' => 'Всегда лучше установить отрицательное значение. Для получения дополнительной информации прочтите страницу справки (значок (?) в правом верхнем углу).', - 'interest_period_help' => 'Это поле чисто косметическое и не будет рассчитано для вас. Как оказалось, банки очень хитры, так что Firefly III никогда не делает это правильно.', - 'store_new_liabilities_account' => 'Сохранить новое обязательство', - 'edit_liabilities_account' => 'Редактировать долговой счёт ":name"', - 'financial_control' => 'Финансовый контроль', - 'accounting' => 'Учёт финансов', - 'automation' => 'Автоматизация', - 'others' => 'Другие', - 'classification' => 'Классификация', - 'store_transaction' => 'Сохранить транзакцию', + 'currency' => 'Валюта', + 'preferences' => 'Настройки', + 'logout' => 'Выход', + 'logout_other_sessions' => 'Завершить все другие сессии', + 'toggleNavigation' => 'Переключить навигацию', + 'searchPlaceholder' => 'Поиск...', + 'version' => 'Версия', + 'dashboard' => 'Сводка', + 'income_and_expense' => 'Доходы и расходы', + 'all_money' => 'Все ваши деньги', + 'unknown_source_plain' => 'Неизвестный счет источник', + 'unknown_dest_plain' => 'Неизвестный счет назначения', + 'unknown_any_plain' => 'Неизвестный счет', + 'unknown_budget_plain' => 'Без бюджета', + 'available_budget' => 'Доступный бюджет ({currency})', + 'currencies' => 'Валюты', + 'activity' => 'Активность', + 'usage' => 'Использование', + 'accounts' => 'Счета', + 'Asset account' => 'Активный счёт', + 'Default account' => 'Основной счёт', + 'Expense account' => 'Счета расходов', + 'Revenue account' => 'Счета доходов', + 'Initial balance account' => 'Начальный баланс для счёта', + 'account_type_Asset account' => 'Счет активов', + 'account_type_Expense account' => 'Счета расходов', + 'account_type_Revenue account' => 'Счет доходов', + 'account_type_Debt' => 'Дебит', + 'account_type_Loan' => 'Заём', + 'account_type_Mortgage' => 'Ипотека', + 'account_type_debt' => 'Долг', + 'account_type_loan' => 'Заём', + 'account_type_mortgage' => 'Ипотека', + 'account_type_Credit card' => 'Кредитная карта', + 'credit_card_type_monthlyFull' => 'Полная оплата каждый месяц', + 'liability_direction_credit' => 'Мне должны', + 'liability_direction_debit' => 'Я должен кому-то', + 'liability_direction_credit_short' => 'Мне должны', + 'liability_direction_debit_short' => 'Я должен', + 'liability_direction__short' => 'Неизвестно', + 'liability_direction_null_short' => 'Неизвестно', + 'Liability credit' => 'Кредитное обязательство', + 'budgets' => 'Бюджет', + 'tags' => 'Метки', + 'reports' => 'Отчёты', + 'transactions' => 'Транзакции', + 'expenses' => 'Расходы', + 'income' => 'Доходы', + 'transfers' => 'Переводы', + 'moneyManagement' => 'Управление финансами', + 'money_management' => 'Управление финансами', + 'tools' => 'Инструменты', + 'piggyBanks' => 'Копилки', + 'piggy_banks' => 'Копилки', + 'amount_x_of_y' => '{current} из {total}', + 'bills' => 'Счета к оплате', + 'withdrawal' => 'Расход', + 'opening_balance' => 'Начальный баланс', + 'deposit' => 'Доход', + 'account' => 'Счёт', + 'transfer' => 'Перевод', + 'Withdrawal' => 'Расход', + 'Deposit' => 'Доход', + 'Transfer' => 'Перевод', + 'bill' => 'Счёт к оплате', + 'yes' => 'Да', + 'no' => 'Нет', + 'amount' => 'Сумма', + 'overview' => 'Обзор', + 'saveOnAccount' => 'Сохранить на счёте', + 'unknown' => 'Неизвестно', + 'monthly' => 'Ежемесячно', + 'profile' => 'Профиль', + 'errors' => 'Ошибки', + 'debt_start_date' => 'Дата начала дебита', + 'debt_start_amount' => 'Начальная сумма дебита', + 'debt_start_amount_help' => 'Всегда лучше установить отрицательное значение. Для получения дополнительной информации прочтите страницу справки (значок (?) в правом верхнем углу).', + 'interest_period_help' => 'Это поле чисто косметическое и не будет рассчитано для вас. Как оказалось, банки очень хитры, так что Firefly III никогда не делает это правильно.', + 'store_new_liabilities_account' => 'Сохранить новое обязательство', + 'edit_liabilities_account' => 'Редактировать долговой счёт ":name"', + 'financial_control' => 'Финансовый контроль', + 'accounting' => 'Учёт финансов', + 'automation' => 'Автоматизация', + 'others' => 'Другие', + 'classification' => 'Классификация', + 'store_transaction' => 'Сохранить транзакцию', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Стандартный финансовый отчёт за период с :start по :end', - 'report_audit' => 'Обзор транзакций за период с :start по :end', - 'report_category' => 'Отчёт по категории между :start и :end', - 'report_double' => 'Отчёт по счёту расходов/доходов между :start и :end', - 'report_budget' => 'Отчет по бюджету между :start и :end', - 'report_tag' => 'Отчет по метке между :start и :end', - 'quick_link_reports' => 'Быстрые ссылки', - 'quick_link_examples' => 'Это лишь несколько примеров ссылок, которые вы начали. Посмотрите страницу справки (кнопка "?") для получения информации о всех отчётах и волшебных словах, которые вы можете использовать.', - 'quick_link_default_report' => 'Стандартный финансовый отчёт', - 'quick_link_audit_report' => 'Обзор транзакций', - 'report_this_month_quick' => 'Текущий месяц, все счета', - 'report_last_month_quick' => 'Последний месяц, все счета', - 'report_this_year_quick' => 'Текущий год, все счета', - 'report_this_fiscal_year_quick' => 'Текущий финансовый год, всё счета', - 'report_all_time_quick' => 'Всё время, все счета', - 'reports_can_bookmark' => 'Помните, что отчеты можно добавить в закладки.', - 'incomeVsExpenses' => 'Сравнение расходов и доходов', - 'accountBalances' => 'Остатки на счетах', - 'balanceStart' => 'Остаток на начало периода', - 'balanceEnd' => 'Остаток на конец периода', - 'splitByAccount' => 'Разделить по разным счетам', - 'coveredWithTags' => 'Присвоены метки', - 'leftInBudget' => 'Осталось в бюджете', - 'left_in_debt' => 'Сумма долга', - 'sumOfSums' => 'Сумма сумм', - 'noCategory' => '(без категории)', - 'notCharged' => 'Не взимается (пока)', - 'inactive' => 'Неактивный', - 'active' => 'Активный', - 'difference' => 'Разница', - 'money_flowing_in' => 'В', - 'money_flowing_out' => 'Из', - 'topX' => 'макс. :number', - 'show_full_list' => 'Показать весь список', - 'show_only_top' => 'Показывать только первые :number', - 'report_type' => 'Тип отчета', - 'report_type_default' => 'Стандартный финансовый отчёт', - 'report_type_audit' => 'Обзор истории транзакций (аудит)', - 'report_type_category' => 'Отчёт по категории', - 'report_type_budget' => 'Отчёт по бюджету', - 'report_type_tag' => 'Отчёт по метке', - 'report_type_double' => 'Отчёт о расходах/доходах', - 'more_info_help' => 'Более подробную информацию об этих типах отчётов вы можете найти на странице справки. Нажмите значок (?) в правом верхнем углу.', - 'report_included_accounts' => 'Счета, включаемые в отчёт', - 'report_date_range' => 'Диапазон дат', - 'report_preset_ranges' => 'Предустановленные диапазоны', - 'shared' => 'Общие', - 'fiscal_year' => 'Фискальный год', - 'income_entry' => 'Поступления со счёта ":name" между :start и :end', - 'expense_entry' => 'Расходы на счёт ":name" между :start и :end', - 'category_entry' => 'Расходы и доходы по категории ":name" между :start и :end', - 'budget_spent_amount' => 'Расходы по статье бюджета ":budget" между :start и :end', - 'balance_amount' => 'Расходы по статmt бюджета ":budget", оплаченные со счёта ":account" между :start и :end', - 'no_audit_activity' => 'Для счёта :account_name не было зафиксировано никакой активности между :start и :end.', - 'audit_end_balance' => 'Баланс на счёте :account_name на конец :end составляет: :balance', - 'reports_extra_options' => 'Дополнительные опции', - 'report_has_no_extra_options' => 'У этого отчёта нет дополнительных опций', - 'reports_submit' => 'Просмотреть отчет', - 'end_after_start_date' => 'Конечная дата отчёта должна быть позже, чем начальная дата.', - 'select_category' => 'Выберите категории', - 'select_budget' => 'Выберите бюджет(ы).', - 'select_tag' => 'Выберите метки.', - 'income_per_category' => 'Доход по категориям', - 'expense_per_category' => 'Расход по категориям', - 'expense_per_budget' => 'Расход по бюджетам', - 'income_per_account' => 'Доход по счетам', - 'expense_per_account' => 'Расход по счетам', - 'expense_per_tag' => 'Расход по меткам', - 'income_per_tag' => 'Доход по меткам', - 'include_expense_not_in_budget' => 'Включены расходы, не входящие в выбранный бюджет', - 'include_expense_not_in_account' => 'Включены расходы, не относящиеся к выбранному счёту', - 'include_expense_not_in_category' => 'Включены расходы, не относящиеся к выбранной категории', - 'include_income_not_in_category' => 'Включены доходы, не относящиеся к выбранной категории', - 'include_income_not_in_account' => 'Включены доходы, не относящиеся к выбранному счёту', - 'include_income_not_in_tags' => 'Включены доходы, не отмеченные выбранной меткой', - 'include_expense_not_in_tags' => 'Включены расходы, не отмеченные выбранной меткой', - 'everything_else' => 'Всё остальное', - 'income_and_expenses' => 'Доходы и расходы', - 'spent_average' => 'Расход (средний)', - 'income_average' => 'Доход (средний)', - 'transaction_count' => 'Количество транзакций', - 'average_spending_per_account' => 'Средний расход по счёту', - 'average_income_per_account' => 'Средний доход на счету', - 'total' => 'Итого', - 'description' => 'Описание', - 'sum_of_period' => 'Сумма за период', - 'average_in_period' => 'В среднем за период', - 'no_account_role' => '(нет роли)', - 'account_role_defaultAsset' => 'Счёт по умолчанию', - 'account_role_sharedAsset' => 'Общий основной счёт', - 'account_role_savingAsset' => 'Сберегательный счет', - 'account_role_ccAsset' => 'Кредитная карта', - 'account_role_cashWalletAsset' => 'Наличные', - 'budget_chart_click' => 'Щёлкните по названию бюджета в таблице выше, чтобы увидеть диаграмму.', - 'category_chart_click' => 'Щёлкните по названию категории в таблице выше, чтобы увидеть диаграмму.', - 'in_out_accounts' => 'Доходы и траты в сумме', - 'in_out_accounts_per_asset' => 'Доходы и траты (по основному счету)', - 'in_out_per_category' => 'Доходы и траты по каждой из категорий', - 'out_per_budget' => 'Расходы по бюджету', - 'select_expense_revenue' => 'Выберите счёт расходов или доходов', - 'multi_currency_report_sum' => 'Поскольку этот список содержит счета с несколькими валютами, то сумма(ы), которую вы видите, может не иметь смысла. Отчёт всегда будет возвращаться к вашей валюте по умолчанию.', - 'sum_in_default_currency' => 'Сумма всегда будет в валюте по умолчанию.', - 'net_filtered_prefs' => 'Эта диаграмма никогда не будет включать счета, у которых выключена опция "Включать в мои сбережения".', + 'report_default' => 'Стандартный финансовый отчёт за период с :start по :end', + 'report_audit' => 'Обзор транзакций за период с :start по :end', + 'report_category' => 'Отчёт по категории между :start и :end', + 'report_double' => 'Отчёт по счёту расходов/доходов между :start и :end', + 'report_budget' => 'Отчет по бюджету между :start и :end', + 'report_tag' => 'Отчет по метке между :start и :end', + 'quick_link_reports' => 'Быстрые ссылки', + 'quick_link_examples' => 'Это лишь несколько примеров ссылок, которые вы начали. Посмотрите страницу справки (кнопка "?") для получения информации о всех отчётах и волшебных словах, которые вы можете использовать.', + 'quick_link_default_report' => 'Стандартный финансовый отчёт', + 'quick_link_audit_report' => 'Обзор транзакций', + 'report_this_month_quick' => 'Текущий месяц, все счета', + 'report_last_month_quick' => 'Последний месяц, все счета', + 'report_this_year_quick' => 'Текущий год, все счета', + 'report_this_fiscal_year_quick' => 'Текущий финансовый год, всё счета', + 'report_all_time_quick' => 'Всё время, все счета', + 'reports_can_bookmark' => 'Помните, что отчеты можно добавить в закладки.', + 'incomeVsExpenses' => 'Сравнение расходов и доходов', + 'accountBalances' => 'Остатки на счетах', + 'balanceStart' => 'Остаток на начало периода', + 'balanceEnd' => 'Остаток на конец периода', + 'splitByAccount' => 'Разделить по разным счетам', + 'coveredWithTags' => 'Присвоены метки', + 'leftInBudget' => 'Осталось в бюджете', + 'left_in_debt' => 'Сумма долга', + 'sumOfSums' => 'Сумма сумм', + 'noCategory' => '(без категории)', + 'notCharged' => 'Не взимается (пока)', + 'inactive' => 'Неактивный', + 'active' => 'Активный', + 'difference' => 'Разница', + 'money_flowing_in' => 'В', + 'money_flowing_out' => 'Из', + 'topX' => 'макс. :number', + 'show_full_list' => 'Показать весь список', + 'show_only_top' => 'Показывать только первые :number', + 'report_type' => 'Тип отчета', + 'report_type_default' => 'Стандартный финансовый отчёт', + 'report_type_audit' => 'Обзор истории транзакций (аудит)', + 'report_type_category' => 'Отчёт по категории', + 'report_type_budget' => 'Отчёт по бюджету', + 'report_type_tag' => 'Отчёт по метке', + 'report_type_double' => 'Отчёт о расходах/доходах', + 'more_info_help' => 'Более подробную информацию об этих типах отчётов вы можете найти на странице справки. Нажмите значок (?) в правом верхнем углу.', + 'report_included_accounts' => 'Счета, включаемые в отчёт', + 'report_date_range' => 'Диапазон дат', + 'report_preset_ranges' => 'Предустановленные диапазоны', + 'shared' => 'Общие', + 'fiscal_year' => 'Фискальный год', + 'income_entry' => 'Поступления со счёта ":name" между :start и :end', + 'expense_entry' => 'Расходы на счёт ":name" между :start и :end', + 'category_entry' => 'Расходы и доходы по категории ":name" между :start и :end', + 'budget_spent_amount' => 'Расходы по статье бюджета ":budget" между :start и :end', + 'balance_amount' => 'Расходы по статmt бюджета ":budget", оплаченные со счёта ":account" между :start и :end', + 'no_audit_activity' => 'Для счёта :account_name не было зафиксировано никакой активности между :start и :end.', + 'audit_end_balance' => 'Баланс на счёте :account_name на конец :end составляет: :balance', + 'reports_extra_options' => 'Дополнительные опции', + 'report_has_no_extra_options' => 'У этого отчёта нет дополнительных опций', + 'reports_submit' => 'Просмотреть отчет', + 'end_after_start_date' => 'Конечная дата отчёта должна быть позже, чем начальная дата.', + 'select_category' => 'Выберите категории', + 'select_budget' => 'Выберите бюджет(ы).', + 'select_tag' => 'Выберите метки.', + 'income_per_category' => 'Доход по категориям', + 'expense_per_category' => 'Расход по категориям', + 'expense_per_budget' => 'Расход по бюджетам', + 'income_per_account' => 'Доход по счетам', + 'expense_per_account' => 'Расход по счетам', + 'expense_per_tag' => 'Расход по меткам', + 'income_per_tag' => 'Доход по меткам', + 'include_expense_not_in_budget' => 'Включены расходы, не входящие в выбранный бюджет', + 'include_expense_not_in_account' => 'Включены расходы, не относящиеся к выбранному счёту', + 'include_expense_not_in_category' => 'Включены расходы, не относящиеся к выбранной категории', + 'include_income_not_in_category' => 'Включены доходы, не относящиеся к выбранной категории', + 'include_income_not_in_account' => 'Включены доходы, не относящиеся к выбранному счёту', + 'include_income_not_in_tags' => 'Включены доходы, не отмеченные выбранной меткой', + 'include_expense_not_in_tags' => 'Включены расходы, не отмеченные выбранной меткой', + 'everything_else' => 'Всё остальное', + 'income_and_expenses' => 'Доходы и расходы', + 'spent_average' => 'Расход (средний)', + 'income_average' => 'Доход (средний)', + 'transaction_count' => 'Количество транзакций', + 'average_spending_per_account' => 'Средний расход по счёту', + 'average_income_per_account' => 'Средний доход на счету', + 'total' => 'Итого', + 'description' => 'Описание', + 'sum_of_period' => 'Сумма за период', + 'average_in_period' => 'В среднем за период', + 'no_account_role' => '(нет роли)', + 'account_role_defaultAsset' => 'Счёт по умолчанию', + 'account_role_sharedAsset' => 'Общий основной счёт', + 'account_role_savingAsset' => 'Сберегательный счет', + 'account_role_ccAsset' => 'Кредитная карта', + 'account_role_cashWalletAsset' => 'Наличные', + 'budget_chart_click' => 'Щёлкните по названию бюджета в таблице выше, чтобы увидеть диаграмму.', + 'category_chart_click' => 'Щёлкните по названию категории в таблице выше, чтобы увидеть диаграмму.', + 'in_out_accounts' => 'Доходы и траты в сумме', + 'in_out_accounts_per_asset' => 'Доходы и траты (по основному счету)', + 'in_out_per_category' => 'Доходы и траты по каждой из категорий', + 'out_per_budget' => 'Расходы по бюджету', + 'select_expense_revenue' => 'Выберите счёт расходов или доходов', + 'multi_currency_report_sum' => 'Поскольку этот список содержит счета с несколькими валютами, то сумма(ы), которую вы видите, может не иметь смысла. Отчёт всегда будет возвращаться к вашей валюте по умолчанию.', + 'sum_in_default_currency' => 'Сумма всегда будет в валюте по умолчанию.', + 'net_filtered_prefs' => 'Эта диаграмма никогда не будет включать счета, у которых выключена опция "Включать в мои сбережения".', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Диаграмма', - 'month' => 'Месяц', - 'budget' => 'Бюджет', - 'spent' => 'Расход', - 'spent_capped' => 'Потрачено (не более)', - 'spent_in_budget' => 'Расходы по бюджету', - 'left_to_spend' => 'Осталось потратить', - 'earned' => 'Доходы', - 'overspent' => 'Перерасход', - 'left' => 'Осталось', - 'max-amount' => 'Максимальная сумма', - 'min-amount' => 'Минимальная сумма', - 'journal-amount' => 'Запись текущего счёта на оплату', - 'name' => 'Название', - 'date' => 'Дата', - 'date_and_time' => "Дата и\u{a0}время", - 'time' => 'Время', - 'paid' => 'Оплачено', - 'unpaid' => 'Не оплачено', - 'day' => 'День', - 'budgeted' => 'Запланировано в бюджете', - 'period' => 'Период', - 'balance' => 'Бaлaнc', - 'in_out_period' => 'Баланс в этом периоде', - 'sum' => 'Сумма', - 'summary' => 'Сводка', - 'average' => 'Среднее значение', - 'balanceFor' => 'Баланс для :name', - 'no_tags' => '(нет меток)', - 'nothing_found' => '(ничего не найдено)', + 'chart' => 'Диаграмма', + 'month' => 'Месяц', + 'budget' => 'Бюджет', + 'spent' => 'Расход', + 'spent_capped' => 'Потрачено (не более)', + 'spent_in_budget' => 'Расходы по бюджету', + 'left_to_spend' => 'Осталось потратить', + 'earned' => 'Доходы', + 'overspent' => 'Перерасход', + 'left' => 'Осталось', + 'max-amount' => 'Максимальная сумма', + 'min-amount' => 'Минимальная сумма', + 'journal-amount' => 'Запись текущего счёта на оплату', + 'name' => 'Название', + 'date' => 'Дата', + 'date_and_time' => "Дата и\u{a0}время", + 'time' => 'Время', + 'paid' => 'Оплачено', + 'unpaid' => 'Не оплачено', + 'day' => 'День', + 'budgeted' => 'Запланировано в бюджете', + 'period' => 'Период', + 'balance' => 'Бaлaнc', + 'in_out_period' => 'Баланс в этом периоде', + 'sum' => 'Сумма', + 'summary' => 'Сводка', + 'average' => 'Среднее значение', + 'balanceFor' => 'Баланс для :name', + 'no_tags' => '(нет меток)', + 'nothing_found' => '(ничего не найдено)', // piggy banks: - 'event_history' => 'История событий', - 'add_money_to_piggy' => 'Добавить деньги в копилку ":name"', - 'piggy_bank' => 'Копилка', - 'new_piggy_bank' => 'Новая копилка', - 'store_piggy_bank' => 'Сохранить новую копилку', - 'stored_piggy_bank' => 'Сохранить новую копилку ":name"', - 'account_status' => 'Состояние счета', - 'left_for_piggy_banks' => 'Остаток для всех копилок', - 'sum_of_piggy_banks' => 'Сумма по всем копилкам', - 'saved_so_far' => 'Сохранено на данный момент', - 'left_to_save' => 'Осталось накопить', - 'suggested_amount' => 'Рекомендуемая месячная сумма для перевода в копилку', - 'add_money_to_piggy_title' => 'Добавить деньги в копилку ":name"', - 'remove_money_from_piggy_title' => 'Удалить деньги из копилки ":name"', - 'add' => 'Добавить', - 'no_money_for_piggy' => 'У вас нет денег, чтобы положить в этот копилку.', - 'suggested_savings_per_month' => 'Рекомендуется на месяц', + 'event_history' => 'История событий', + 'add_money_to_piggy' => 'Добавить деньги в копилку ":name"', + 'piggy_bank' => 'Копилка', + 'new_piggy_bank' => 'Новая копилка', + 'store_piggy_bank' => 'Сохранить новую копилку', + 'stored_piggy_bank' => 'Сохранить новую копилку ":name"', + 'account_status' => 'Состояние счета', + 'left_for_piggy_banks' => 'Остаток для всех копилок', + 'sum_of_piggy_banks' => 'Сумма по всем копилкам', + 'saved_so_far' => 'Сохранено на данный момент', + 'left_to_save' => 'Осталось накопить', + 'suggested_amount' => 'Рекомендуемая месячная сумма для перевода в копилку', + 'add_money_to_piggy_title' => 'Добавить деньги в копилку ":name"', + 'remove_money_from_piggy_title' => 'Удалить деньги из копилки ":name"', + 'add' => 'Добавить', + 'no_money_for_piggy' => 'У вас нет денег, чтобы положить в этот копилку.', + 'suggested_savings_per_month' => 'Рекомендуется на месяц', - 'remove' => 'Удалить', - 'max_amount_add' => 'Максимальная сумма, которую вы можете добавить:', - 'max_amount_remove' => 'Максимальная сумма, которую вы можете удалить:', - 'update_piggy_button' => 'Обновить копилку', - 'update_piggy_title' => 'Обновить копилку ":name"', - 'updated_piggy_bank' => 'Копилка ":name" обновлена', - 'details' => 'Подробности', - 'events' => 'События', - 'target_amount' => 'Целевая сумма', - 'start_date' => 'Дата начала', - 'no_start_date' => 'Нет начальной даты', - 'target_date' => 'Конечная дата', - 'no_target_date' => 'Нет конечной даты', - 'table' => 'Таблица', - 'delete_piggy_bank' => 'Удалить копилку ":name"', - 'cannot_add_amount_piggy' => 'Невозможно добавить :amount в ":name".', - 'cannot_remove_from_piggy' => 'Невозможно удалить :amount из ":name".', - 'deleted_piggy_bank' => 'Копилка ":name" удалена', - 'added_amount_to_piggy' => 'Добавлено :amount в ":name"', - 'removed_amount_from_piggy' => 'Удалено :amount из ":name"', - 'piggy_events' => 'Связанные копилки', + 'remove' => 'Удалить', + 'max_amount_add' => 'Максимальная сумма, которую вы можете добавить:', + 'max_amount_remove' => 'Максимальная сумма, которую вы можете удалить:', + 'update_piggy_button' => 'Обновить копилку', + 'update_piggy_title' => 'Обновить копилку ":name"', + 'updated_piggy_bank' => 'Копилка ":name" обновлена', + 'details' => 'Подробности', + 'events' => 'События', + 'target_amount' => 'Целевая сумма', + 'start_date' => 'Дата начала', + 'no_start_date' => 'Нет начальной даты', + 'target_date' => 'Конечная дата', + 'no_target_date' => 'Нет конечной даты', + 'table' => 'Таблица', + 'delete_piggy_bank' => 'Удалить копилку ":name"', + 'cannot_add_amount_piggy' => 'Невозможно добавить :amount в ":name".', + 'cannot_remove_from_piggy' => 'Невозможно удалить :amount из ":name".', + 'deleted_piggy_bank' => 'Копилка ":name" удалена', + 'added_amount_to_piggy' => 'Добавлено :amount в ":name"', + 'removed_amount_from_piggy' => 'Удалено :amount из ":name"', + 'piggy_events' => 'Связанные копилки', // tags - 'delete_tag' => 'Удалить метку ":tag"', - 'deleted_tag' => 'Метка ":tag" удалена', - 'new_tag' => 'Создать новую метку', - 'edit_tag' => 'Изменить метку ":tag"', - 'updated_tag' => 'Метка ":tag" обновлена', - 'created_tag' => 'Метка ":tag" была создана!', + 'delete_tag' => 'Удалить метку ":tag"', + 'deleted_tag' => 'Метка ":tag" удалена', + 'new_tag' => 'Создать новую метку', + 'edit_tag' => 'Изменить метку ":tag"', + 'updated_tag' => 'Метка ":tag" обновлена', + 'created_tag' => 'Метка ":tag" была создана!', - 'transaction_journal_information' => 'Информация о транзакции', - 'transaction_journal_amount' => 'Информация о сумме', - 'transaction_journal_meta' => 'Дополнительная информация', - 'transaction_journal_more' => 'Дополнительная информация', - 'basic_journal_information' => 'Основная информация о транзакции', - 'transaction_journal_extra' => 'Дополнительные сведения', - 'att_part_of_journal' => 'Сохранено в ":journal"', - 'total_amount' => 'Итого', - 'number_of_decimals' => 'Количество знаков после запятой', + 'transaction_journal_information' => 'Информация о транзакции', + 'transaction_journal_amount' => 'Информация о сумме', + 'transaction_journal_meta' => 'Дополнительная информация', + 'transaction_journal_more' => 'Дополнительная информация', + 'basic_journal_information' => 'Основная информация о транзакции', + 'transaction_journal_extra' => 'Дополнительные сведения', + 'att_part_of_journal' => 'Сохранено в ":journal"', + 'total_amount' => 'Итого', + 'number_of_decimals' => 'Количество знаков после запятой', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Приглашение ":address" уже было активировано.', - 'invite_is_deleted' => 'Приглашение ":address" удалено.', - 'invite_new_user_title' => 'Пригласить нового пользователя', - 'invite_new_user_text' => 'Как администратор, вы можете пригласить пользователей зарегистрироваться в администрируемым вами Firefly III. С помощью прямой ссылки вы можете поделиться с ними, они смогут зарегистрировать аккаунт. Приглашенный пользователь и его пригласительная ссылка появятся в таблице ниже. Вы можете поделиться с ними ссылкой.', - 'invited_user_mail' => 'Адрес электронной почты', - 'invite_user' => 'Пригласить пользователя', - 'user_is_invited' => 'Адрес электронной почты ":address" был приглашен в Firefly III', - 'administration' => 'Администрирование', - 'system_settings' => 'Настройки системы', - 'code_already_used' => 'Код приглашения уже был использован', - 'user_administration' => 'Управление пользователями', - 'list_all_users' => 'Список пользователей', - 'all_users' => 'Все пользователи', - 'instance_configuration' => 'Конфигурация', - 'firefly_instance_configuration' => 'Базовая конфигурация Firefly III', - 'setting_single_user_mode' => 'Режим одного пользователя', - 'setting_single_user_mode_explain' => 'По умолчанию Firefly III работает только с одним пользователем (это вы). Это сделано с целью обеспечения безопасности, чтобы другие люди не могли использовать ваш Firefly без вашего разрешения. Регистрация других пользователей просто невозможна. Однако, если вы снимите этот флажок, другие смогут использовать ваш Firefly, при условии, что у них есть доступ к нему (например, он доступен через Интернет).', - 'store_configuration' => 'Сохранить конфигурацию', - 'single_user_administration' => 'Управление пользователем :email', - 'edit_user' => 'Редактирование пользователя :email', - 'hidden_fields_preferences' => 'Вы можете включить больше параметров транзакции в настройках.', - 'user_data_information' => 'Данные пользователя', - 'user_information' => 'Информация о пользователе', - 'total_size' => 'общий размер', - 'budget_or_budgets' => ':count бюджет|:count бюджетов', - 'budgets_with_limits' => ':count бюджет с заданной суммой|:count бюджетов с заданной суммой', - 'nr_of_rules_in_total_groups' => ':count_rules правил в :count_groups группах', - 'tag_or_tags' => ':count метка|:count меток', - 'configuration_updated' => 'Конфигурация обновлена', - 'setting_is_demo_site' => 'Демо-сайт', - 'setting_is_demo_site_explain' => 'Если вы установите этот флажок, эта копия FireFly будет вести себя как демонстрационный сайт, который может иметь странные побочные эффекты.', - 'block_code_bounced' => 'Отправка письма (писем) с аккаунта', - 'block_code_expired' => 'Срок демо-версии истёк', - 'no_block_code' => 'Нет причины для блокировки или пользователь не заблокирован', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Пользователь не подтвердил новый адрес электронной почты', - 'admin_update_email' => 'Внимание! Пользователь НЕ будет уведомлён о смене адреса электронной почты. Новый адрес он увидит только на странице профиля.', - 'update_user' => 'Обновить пользователя', - 'updated_user' => 'Данные пользователя были изменены.', - 'delete_user' => 'Удалить пользователя :email', - 'user_deleted' => 'Пользователь был удален', - 'send_test_email' => 'Отправить тестовое письмо на E-mail пользователя', - 'send_test_email_text' => 'Чтобы узнать, может ли ваша копия FireFly отправлять электронную почту, нажмите эту кнопку. Вы не увидите здесь ошибки (если они возникнут), все ошибки будут зафиксированы в лог-файле. Вы можете нажимать эту кнопку столько раз, сколько хотите. Спам не контролируется. Сообщение будет отправлено на адрес :email и вы сможете получить его в ближайшее время.', - 'send_message' => 'Отправить сообщение', - 'send_test_triggered' => 'Тест был выполнен. Проверьте ваш почтовый ящик и log-файлы.', - 'give_admin_careful' => 'Пользователи, которым даны права администратора, могут отнять такие права у вас. Будьте осторожны.', - 'admin_maintanance_title' => 'Обслуживание', - 'admin_maintanance_expl' => 'Некоторые хитрые кнопочки для обслуживания Firefly III', - 'admin_maintenance_clear_cache' => 'Очистить кэш', - 'admin_notifications' => 'Уведомления администратора', - 'admin_notifications_expl' => 'Следующие уведомления могут быть включены или отключены администратором. Если вы хотите получить эти сообщения через Slack также установите URL "входящий вебхук".', - 'admin_notification_check_user_new_reg' => 'Пользователь получает приветственное сообщение после регистрации', - 'admin_notification_check_admin_new_reg' => 'Администраторы(ы) получают уведомление о регистрации нового пользователя', - 'admin_notification_check_new_version' => 'Доступна новая версия', - 'admin_notification_check_invite_created' => 'Пользователь приглашен на Firefly III', - 'admin_notification_check_invite_redeemed' => 'Приглашение пользователя использовано', - 'all_invited_users' => 'Все приглашенные пользователи', - 'save_notification_settings' => 'Сохранить настройки', - 'notification_settings_saved' => 'Настройки уведомлений сохранены', + 'invite_is_already_redeemed' => 'Приглашение ":address" уже было активировано.', + 'invite_is_deleted' => 'Приглашение ":address" удалено.', + 'invite_new_user_title' => 'Пригласить нового пользователя', + 'invite_new_user_text' => 'Как администратор, вы можете пригласить пользователей зарегистрироваться в администрируемым вами Firefly III. С помощью прямой ссылки вы можете поделиться с ними, они смогут зарегистрировать аккаунт. Приглашенный пользователь и его пригласительная ссылка появятся в таблице ниже. Вы можете поделиться с ними ссылкой.', + 'invited_user_mail' => 'Адрес электронной почты', + 'invite_user' => 'Пригласить пользователя', + 'user_is_invited' => 'Адрес электронной почты ":address" был приглашен в Firefly III', + 'administration' => 'Администрирование', + 'system_settings' => 'Настройки системы', + 'code_already_used' => 'Код приглашения уже был использован', + 'user_administration' => 'Управление пользователями', + 'list_all_users' => 'Список пользователей', + 'all_users' => 'Все пользователи', + 'instance_configuration' => 'Конфигурация', + 'firefly_instance_configuration' => 'Базовая конфигурация Firefly III', + 'setting_single_user_mode' => 'Режим одного пользователя', + 'setting_single_user_mode_explain' => 'По умолчанию Firefly III работает только с одним пользователем (это вы). Это сделано с целью обеспечения безопасности, чтобы другие люди не могли использовать ваш Firefly без вашего разрешения. Регистрация других пользователей просто невозможна. Однако, если вы снимите этот флажок, другие смогут использовать ваш Firefly, при условии, что у них есть доступ к нему (например, он доступен через Интернет).', + 'store_configuration' => 'Сохранить конфигурацию', + 'single_user_administration' => 'Управление пользователем :email', + 'edit_user' => 'Редактирование пользователя :email', + 'hidden_fields_preferences' => 'Вы можете включить больше параметров транзакции в настройках.', + 'user_data_information' => 'Данные пользователя', + 'user_information' => 'Информация о пользователе', + 'total_size' => 'общий размер', + 'budget_or_budgets' => ':count бюджет|:count бюджетов', + 'budgets_with_limits' => ':count бюджет с заданной суммой|:count бюджетов с заданной суммой', + 'nr_of_rules_in_total_groups' => ':count_rules правил в :count_groups группах', + 'tag_or_tags' => ':count метка|:count меток', + 'configuration_updated' => 'Конфигурация обновлена', + 'setting_is_demo_site' => 'Демо-сайт', + 'setting_is_demo_site_explain' => 'Если вы установите этот флажок, эта копия FireFly будет вести себя как демонстрационный сайт, который может иметь странные побочные эффекты.', + 'block_code_bounced' => 'Отправка письма (писем) с аккаунта', + 'block_code_expired' => 'Срок демо-версии истёк', + 'no_block_code' => 'Нет причины для блокировки или пользователь не заблокирован', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Пользователь не подтвердил новый адрес электронной почты', + 'admin_update_email' => 'Внимание! Пользователь НЕ будет уведомлён о смене адреса электронной почты. Новый адрес он увидит только на странице профиля.', + 'update_user' => 'Обновить пользователя', + 'updated_user' => 'Данные пользователя были изменены.', + 'delete_user' => 'Удалить пользователя :email', + 'user_deleted' => 'Пользователь был удален', + 'send_test_email' => 'Отправить тестовое письмо на E-mail пользователя', + 'send_test_email_text' => 'Чтобы узнать, может ли ваша копия FireFly отправлять электронную почту, нажмите эту кнопку. Вы не увидите здесь ошибки (если они возникнут), все ошибки будут зафиксированы в лог-файле. Вы можете нажимать эту кнопку столько раз, сколько хотите. Спам не контролируется. Сообщение будет отправлено на адрес :email и вы сможете получить его в ближайшее время.', + 'send_message' => 'Отправить сообщение', + 'send_test_triggered' => 'Тест был выполнен. Проверьте ваш почтовый ящик и log-файлы.', + 'give_admin_careful' => 'Пользователи, которым даны права администратора, могут отнять такие права у вас. Будьте осторожны.', + 'admin_maintanance_title' => 'Обслуживание', + 'admin_maintanance_expl' => 'Некоторые хитрые кнопочки для обслуживания Firefly III', + 'admin_maintenance_clear_cache' => 'Очистить кэш', + 'admin_notifications' => 'Уведомления администратора', + 'admin_notifications_expl' => 'Следующие уведомления могут быть включены или отключены администратором. Если вы хотите получить эти сообщения через Slack также установите URL "входящий вебхук".', + 'admin_notification_check_user_new_reg' => 'Пользователь получает приветственное сообщение после регистрации', + 'admin_notification_check_admin_new_reg' => 'Администраторы(ы) получают уведомление о регистрации нового пользователя', + 'admin_notification_check_new_version' => 'Доступна новая версия', + 'admin_notification_check_invite_created' => 'Пользователь приглашен на Firefly III', + 'admin_notification_check_invite_redeemed' => 'Приглашение пользователя использовано', + 'all_invited_users' => 'Все приглашенные пользователи', + 'save_notification_settings' => 'Сохранить настройки', + 'notification_settings_saved' => 'Настройки уведомлений сохранены', - 'split_transaction_title' => 'Описание разделённой транзакции', - 'split_transaction_title_help' => 'Если вы создаёте разделённую транзакцию, то должны указать общее описание для всех её составляющих.', - 'split_title_help' => 'Если вы создаёте разделённую транзакцию, то должны указать общее описание дле всех её составляющих.', - 'you_create_transfer' => 'Вы создаёте перевод.', - 'you_create_withdrawal' => 'Вы создаёте расход.', - 'you_create_deposit' => 'Вы создаёте доход.', + 'split_transaction_title' => 'Описание разделённой транзакции', + 'split_transaction_title_help' => 'Если вы создаёте разделённую транзакцию, то должны указать общее описание для всех её составляющих.', + 'split_title_help' => 'Если вы создаёте разделённую транзакцию, то должны указать общее описание дле всех её составляющих.', + 'you_create_transfer' => 'Вы создаёте перевод.', + 'you_create_withdrawal' => 'Вы создаёте расход.', + 'you_create_deposit' => 'Вы создаёте доход.', // links - 'journal_link_configuration' => 'Настройка связей между транзакциями', - 'create_new_link_type' => 'Создать новый тип связи', - 'store_new_link_type' => 'Сохранить новый тип связи', - 'update_link_type' => 'Обновить тип связи', - 'edit_link_type' => 'Изменить тип ссылки ":name"', - 'updated_link_type' => 'Тип связи ":name" обновлён', - 'delete_link_type' => 'Удалить тип ссылки ":name"', - 'deleted_link_type' => 'Тип ссылки ":name" удалён', - 'stored_new_link_type' => 'Сохранить новый тип связи ":name"', - 'cannot_edit_link_type' => 'Невозможно изменить тип ссылки ":name"', - 'link_type_help_name' => 'Например, "Дубликаты"', - 'link_type_help_inward' => 'Например, "дубликаты"', - 'link_type_help_outward' => 'Например, "это дублирует..."', - 'save_connections_by_moving' => 'Сохраните связь между этими транзакциями, переместив их на другой тип ссылок:', - 'do_not_save_connection' => '(не сохранять соединение)', - 'link_transaction' => 'Связать транзакцию', - 'link_to_other_transaction' => 'Связать эту транзакцию с другой транзакцией', - 'select_transaction_to_link' => 'Выберите транзакцию, с которой хотите связать данную транзакцию. Пока такие ссылки не используются Firefly III (кроме того, что показано), но я планирую изменить это в будущем. Используйте поле поиска, чтобы выбрать транзакцию либо по названию, либо по ID. Если вы хотите добавить пользовательские типы ссылок, проверьте раздел администрирования.', - 'this_transaction' => 'Эта транзакция', - 'transaction' => 'Транзакция', - 'comments' => 'Комментарии', - 'link_notes' => 'Любые заметки, которые вы хотите сохранить с этой ссылкой.', - 'invalid_link_selection' => 'Невозможно связать эти транзакции', - 'selected_transaction' => 'Выбранная транзакция', - 'journals_linked' => 'Транзакции были связаны.', - 'journals_error_linked' => 'Эти транзакции уже связаны.', - 'journals_link_to_self' => 'Вы не можете связать транзакцию с самой собой', - 'journal_links' => 'Связи транзакции', - 'this_withdrawal' => 'Этот расход', - 'this_deposit' => 'Этот доход', - 'this_transfer' => 'Этот перевод', - 'overview_for_link' => 'Обзор для типа ссылки ":name"', - 'source_transaction' => 'Исходная транзакция', - 'link_description' => 'Описание связи', - 'destination_transaction' => 'Целевая транзакция', - 'delete_journal_link' => 'Удалить связи между :source и :destination', - 'deleted_link' => 'Связь удалена', + 'journal_link_configuration' => 'Настройка связей между транзакциями', + 'create_new_link_type' => 'Создать новый тип связи', + 'store_new_link_type' => 'Сохранить новый тип связи', + 'update_link_type' => 'Обновить тип связи', + 'edit_link_type' => 'Изменить тип ссылки ":name"', + 'updated_link_type' => 'Тип связи ":name" обновлён', + 'delete_link_type' => 'Удалить тип ссылки ":name"', + 'deleted_link_type' => 'Тип ссылки ":name" удалён', + 'stored_new_link_type' => 'Сохранить новый тип связи ":name"', + 'cannot_edit_link_type' => 'Невозможно изменить тип ссылки ":name"', + 'link_type_help_name' => 'Например, "Дубликаты"', + 'link_type_help_inward' => 'Например, "дубликаты"', + 'link_type_help_outward' => 'Например, "это дублирует..."', + 'save_connections_by_moving' => 'Сохраните связь между этими транзакциями, переместив их на другой тип ссылок:', + 'do_not_save_connection' => '(не сохранять соединение)', + 'link_transaction' => 'Связать транзакцию', + 'link_to_other_transaction' => 'Связать эту транзакцию с другой транзакцией', + 'select_transaction_to_link' => 'Выберите транзакцию, с которой хотите связать данную транзакцию. Пока такие ссылки не используются Firefly III (кроме того, что показано), но я планирую изменить это в будущем. Используйте поле поиска, чтобы выбрать транзакцию либо по названию, либо по ID. Если вы хотите добавить пользовательские типы ссылок, проверьте раздел администрирования.', + 'this_transaction' => 'Эта транзакция', + 'transaction' => 'Транзакция', + 'comments' => 'Комментарии', + 'link_notes' => 'Любые заметки, которые вы хотите сохранить с этой ссылкой.', + 'invalid_link_selection' => 'Невозможно связать эти транзакции', + 'selected_transaction' => 'Выбранная транзакция', + 'journals_linked' => 'Транзакции были связаны.', + 'journals_error_linked' => 'Эти транзакции уже связаны.', + 'journals_link_to_self' => 'Вы не можете связать транзакцию с самой собой', + 'journal_links' => 'Связи транзакции', + 'this_withdrawal' => 'Этот расход', + 'this_deposit' => 'Этот доход', + 'this_transfer' => 'Этот перевод', + 'overview_for_link' => 'Обзор для типа ссылки ":name"', + 'source_transaction' => 'Исходная транзакция', + 'link_description' => 'Описание связи', + 'destination_transaction' => 'Целевая транзакция', + 'delete_journal_link' => 'Удалить связи между :source и :destination', + 'deleted_link' => 'Связь удалена', // link translations: - 'Paid_name' => 'Оплачено', - 'Refund_name' => 'Возврат', - 'Reimbursement_name' => 'Возмещение', - 'Related_name' => 'Связанные', - 'relates to_inward' => 'связано с', - 'is (partially) refunded by_inward' => '(частично) возвращён', - 'is (partially) paid for by_inward' => '(частично) оплачен', - 'is (partially) reimbursed by_inward' => '(частично) возмещён', - 'inward_transaction' => 'Внутренняя транзакция', - 'outward_transaction' => 'Внешняя транзакция', - 'relates to_outward' => 'относится к', - '(partially) refunds_outward' => '(частично) возвращены', - '(partially) pays for_outward' => '(частично) оплачены', - '(partially) reimburses_outward' => '(частично) возмещены', - 'is (partially) refunded by' => '(частично) возвращён', - 'is (partially) paid for by' => '(частично) оплачен', - 'is (partially) reimbursed by' => '(частично) возмещён', - 'relates to' => 'связано с', - '(partially) refunds' => '(частично) возвращены', - '(partially) pays for' => '(частично) оплачены', - '(partially) reimburses' => '(частично) возмещены', + 'Paid_name' => 'Оплачено', + 'Refund_name' => 'Возврат', + 'Reimbursement_name' => 'Возмещение', + 'Related_name' => 'Связанные', + 'relates to_inward' => 'связано с', + 'is (partially) refunded by_inward' => '(частично) возвращён', + 'is (partially) paid for by_inward' => '(частично) оплачен', + 'is (partially) reimbursed by_inward' => '(частично) возмещён', + 'inward_transaction' => 'Внутренняя транзакция', + 'outward_transaction' => 'Внешняя транзакция', + 'relates to_outward' => 'относится к', + '(partially) refunds_outward' => '(частично) возвращены', + '(partially) pays for_outward' => '(частично) оплачены', + '(partially) reimburses_outward' => '(частично) возмещены', + 'is (partially) refunded by' => '(частично) возвращён', + 'is (partially) paid for by' => '(частично) оплачен', + 'is (partially) reimbursed by' => '(частично) возмещён', + 'relates to' => 'связано с', + '(partially) refunds' => '(частично) возвращены', + '(partially) pays for' => '(частично) оплачены', + '(partially) reimburses' => '(частично) возмещены', // split a transaction: - 'splits' => 'Разделение транзакции', - 'add_another_split' => 'Добавить еще одну часть', - 'cannot_edit_opening_balance' => 'Вы не можете изменить начальный баланс этого счёта.', - 'no_edit_multiple_left' => 'Вы выбрали для редактирования некорректную транзакцию.', - 'breadcrumb_convert_group' => 'Преобразовать транзакцию', - 'convert_invalid_source' => 'Транзакция #%d содержит неверную информацию о счете источника.', - 'convert_invalid_destination' => 'Транзакция #%d содержит неверную информацию о счёте назначения.', - 'create_another' => 'После сохранения вернуться сюда и создать ещё одну аналогичную запись.', - 'after_update_create_another' => 'После обновления вернитесь сюда, чтобы продолжить редактирование.', - 'store_as_new' => 'Сохранить как новую транзакцию вместо обновления.', - 'reset_after' => 'Сбросить форму после отправки', - 'errors_submission' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте ошибки ниже.', - 'errors_submission_v2' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте следующие ошибки: {{errorMessage}}', - 'transaction_expand_split' => 'Развернуть разделение', - 'transaction_remove_split' => 'Удалить разделение', - 'transaction_collapse_split' => 'Свернуть разделение', + 'splits' => 'Разделение транзакции', + 'add_another_split' => 'Добавить еще одну часть', + 'cannot_edit_opening_balance' => 'Вы не можете изменить начальный баланс этого счёта.', + 'no_edit_multiple_left' => 'Вы выбрали для редактирования некорректную транзакцию.', + 'breadcrumb_convert_group' => 'Преобразовать транзакцию', + 'convert_invalid_source' => 'Транзакция #%d содержит неверную информацию о счете источника.', + 'convert_invalid_destination' => 'Транзакция #%d содержит неверную информацию о счёте назначения.', + 'create_another' => 'После сохранения вернуться сюда и создать ещё одну аналогичную запись.', + 'after_update_create_another' => 'После обновления вернитесь сюда, чтобы продолжить редактирование.', + 'store_as_new' => 'Сохранить как новую транзакцию вместо обновления.', + 'reset_after' => 'Сбросить форму после отправки', + 'errors_submission' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте ошибки ниже.', + 'errors_submission_v2' => 'С вашей публикацией произошла ошибка. Пожалуйста, проверьте следующие ошибки: {{errorMessage}}', + 'transaction_expand_split' => 'Развернуть разделение', + 'transaction_remove_split' => 'Удалить разделение', + 'transaction_collapse_split' => 'Свернуть разделение', // object groups - 'default_group_title_name' => '(без группировки)', - 'default_group_title_name_plain' => 'без группировки', + 'default_group_title_name' => '(без группировки)', + 'default_group_title_name_plain' => 'без группировки', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Давайте создадим счёт расхода!', - 'no_accounts_intro_asset' => 'У вас пока нет основных счетов. Основные счета - это ваши денежные активы (наличные, сберегательный счёт, кредитная карта и т. п.).', - 'no_accounts_imperative_asset' => 'Чтобы начать использовать Firefly III, вы должны создать хотя бы один основной счёт. Давайте сделаем это сейчас:', - 'no_accounts_create_asset' => 'Создание расходного счёта', - 'no_accounts_title_expense' => 'Давайте создадим расходный счёт!', - 'no_accounts_intro_expense' => 'Пока у вас нет ни одного расходного счёта. Расходные счета используются для контроля за тем, где именно вы расходуете свои финансы. Например, в магазинах или на оплату коммунальных счетов.', - 'no_accounts_imperative_expense' => 'Расходные счета создаются автоматически, когда вы создаёте транзакции (расходы), но вы можете также создать их вручную, если хотите. Давайте создадим один прямо сейчас:', - 'no_accounts_create_expense' => 'Создать расходный счёт', - 'no_accounts_title_revenue' => 'Давайте создадим счёт дохода!', - 'no_accounts_intro_revenue' => 'У вас ещё нет счетов дохода. Счета дохода - это источники вашего дохода (например, ваш работодатель).', - 'no_accounts_imperative_revenue' => 'Счета дохода создаются автоматически при создании транзакций, но вы можете создать их вручную, если хотите. Давайте создадим один сейчас:', - 'no_accounts_create_revenue' => 'Создать счёт дохода', - 'no_accounts_title_liabilities' => 'Давайте создадим первый долговой счёт!', - 'no_accounts_intro_liabilities' => 'У вас пока нет обязательств. Обязательства являются счетами, которые регистрируют ваши ссуды (например, студенческие) и другие долги.', - 'no_accounts_imperative_liabilities' => 'Вам не обязательно использовать эту функцию, но она может быть полезной, если вы хотите отслеживать такие вещи.', - 'no_accounts_create_liabilities' => 'Создать новый долговой счёт', - 'no_budgets_title_default' => 'Давайте создадим бюджет', - 'no_rules_title_default' => 'Давайте создадим правило', - 'no_budgets_intro_default' => 'У вас пока нет бюджетов. Бюджеты используются для упорядочивания ваших расходов в логические группы, с помощью наблюдения за которыми вы можете ограничить свои расходы.', - 'no_rules_intro_default' => 'У Вас пока нет правил. Правила - это мощные автоматизации, которые могут обрабатывать транзакции за вас.', - 'no_rules_imperative_default' => 'Правила могут быть очень полезны при управлении транзакциями. Давайте создадим одно сейчас:', - 'no_budgets_imperative_default' => 'Бюджеты - это основные инструменты управления финансами. Давайте создадим один сейчас:', - 'no_budgets_create_default' => 'Создать бюджет', - 'no_rules_create_default' => 'Создать правило', - 'no_categories_title_default' => 'Давайте создадим категорию!', - 'no_categories_intro_default' => 'У вас пока нет категорий. Категории используются для точной настройки ваших транзакций и их маркировки.', - 'no_categories_imperative_default' => 'Категории создаются автоматически при создании транзакций, но вы также можете создать их вручную. Давайте создадим одну сейчас:', - 'no_categories_create_default' => 'Создать категорию', - 'no_tags_title_default' => 'Давайте создадим метку!', - 'no_tags_intro_default' => 'У вас еще нет меток. Метки используются для точной настройки транзакций и маркировки их конкретными ключевыми словами.', - 'no_tags_imperative_default' => 'Метки создаются автоматически при создании транзакций, но вы также можете создать их вручную. Давайте создадим одну сейчас:', - 'no_tags_create_default' => 'Создать метку', - 'no_transactions_title_withdrawal' => 'Давайте создадим расход!', - 'no_transactions_intro_withdrawal' => 'У вас пока нет расходов. Вы должны создать хотя бы один расход, чтобы начать управлять своими финансами.', - 'no_transactions_imperative_withdrawal' => 'Вы потратили часть своих денег? Это нужно записать:', - 'no_transactions_create_withdrawal' => 'Создать расход', - 'no_transactions_title_deposit' => 'Давайте создадим какой-нибудь доход!', - 'no_transactions_intro_deposit' => 'У вас пока нет учтённых доходов. Вы должны создать запись дохода, чтобы начать управлять своими финансами.', - 'no_transactions_imperative_deposit' => 'Вы получили какие-нибудь деньги? Вам нужно это записать:', - 'no_transactions_create_deposit' => 'Создать доход', - 'no_transactions_title_transfers' => 'Давайте создадим перевод!', - 'no_transactions_intro_transfers' => 'У вас ещё нет переводов. Когда вы перемещаете деньги между счетами, это нужно записывать как перевод.', - 'no_transactions_imperative_transfers' => 'Вы переместили часть своих денег? Это нужно записать:', - 'no_transactions_create_transfers' => 'Создать перевод', - 'no_piggies_title_default' => 'Давайте создадим копилку!', - 'no_piggies_intro_default' => 'У вас пока нет копилок. Вы можете создавать копилки, чтобы разделить свои сбережения и следить за тем, за что вы сберегаете.', - 'no_piggies_imperative_default' => 'Вы хотите накопить денег на что-нибудь? Создайте копилку и следите за своими сбережениями:', - 'no_piggies_create_default' => 'Создать новую копилку', - 'no_bills_title_default' => 'Давайте создадим счёт на оплату!', - 'no_bills_intro_default' => 'У вас пока нет счетов на оплату. Вы можете создавать счета для отслеживания регулярных расходов, таких как арендная плата или страхование.', - 'no_bills_imperative_default' => 'У вас есть такие регулярные платежи? Создайте счёт на оплату и отслеживайте свои платежи:', - 'no_bills_create_default' => 'Создать счет к оплате', + 'no_accounts_title_asset' => 'Давайте создадим счёт расхода!', + 'no_accounts_intro_asset' => 'У вас пока нет основных счетов. Основные счета - это ваши денежные активы (наличные, сберегательный счёт, кредитная карта и т. п.).', + 'no_accounts_imperative_asset' => 'Чтобы начать использовать Firefly III, вы должны создать хотя бы один основной счёт. Давайте сделаем это сейчас:', + 'no_accounts_create_asset' => 'Создание расходного счёта', + 'no_accounts_title_expense' => 'Давайте создадим расходный счёт!', + 'no_accounts_intro_expense' => 'Пока у вас нет ни одного расходного счёта. Расходные счета используются для контроля за тем, где именно вы расходуете свои финансы. Например, в магазинах или на оплату коммунальных счетов.', + 'no_accounts_imperative_expense' => 'Расходные счета создаются автоматически, когда вы создаёте транзакции (расходы), но вы можете также создать их вручную, если хотите. Давайте создадим один прямо сейчас:', + 'no_accounts_create_expense' => 'Создать расходный счёт', + 'no_accounts_title_revenue' => 'Давайте создадим счёт дохода!', + 'no_accounts_intro_revenue' => 'У вас ещё нет счетов дохода. Счета дохода - это источники вашего дохода (например, ваш работодатель).', + 'no_accounts_imperative_revenue' => 'Счета дохода создаются автоматически при создании транзакций, но вы можете создать их вручную, если хотите. Давайте создадим один сейчас:', + 'no_accounts_create_revenue' => 'Создать счёт дохода', + 'no_accounts_title_liabilities' => 'Давайте создадим первый долговой счёт!', + 'no_accounts_intro_liabilities' => 'У вас пока нет обязательств. Обязательства являются счетами, которые регистрируют ваши ссуды (например, студенческие) и другие долги.', + 'no_accounts_imperative_liabilities' => 'Вам не обязательно использовать эту функцию, но она может быть полезной, если вы хотите отслеживать такие вещи.', + 'no_accounts_create_liabilities' => 'Создать новый долговой счёт', + 'no_budgets_title_default' => 'Давайте создадим бюджет', + 'no_rules_title_default' => 'Давайте создадим правило', + 'no_budgets_intro_default' => 'У вас пока нет бюджетов. Бюджеты используются для упорядочивания ваших расходов в логические группы, с помощью наблюдения за которыми вы можете ограничить свои расходы.', + 'no_rules_intro_default' => 'У Вас пока нет правил. Правила - это мощные автоматизации, которые могут обрабатывать транзакции за вас.', + 'no_rules_imperative_default' => 'Правила могут быть очень полезны при управлении транзакциями. Давайте создадим одно сейчас:', + 'no_budgets_imperative_default' => 'Бюджеты - это основные инструменты управления финансами. Давайте создадим один сейчас:', + 'no_budgets_create_default' => 'Создать бюджет', + 'no_rules_create_default' => 'Создать правило', + 'no_categories_title_default' => 'Давайте создадим категорию!', + 'no_categories_intro_default' => 'У вас пока нет категорий. Категории используются для точной настройки ваших транзакций и их маркировки.', + 'no_categories_imperative_default' => 'Категории создаются автоматически при создании транзакций, но вы также можете создать их вручную. Давайте создадим одну сейчас:', + 'no_categories_create_default' => 'Создать категорию', + 'no_tags_title_default' => 'Давайте создадим метку!', + 'no_tags_intro_default' => 'У вас еще нет меток. Метки используются для точной настройки транзакций и маркировки их конкретными ключевыми словами.', + 'no_tags_imperative_default' => 'Метки создаются автоматически при создании транзакций, но вы также можете создать их вручную. Давайте создадим одну сейчас:', + 'no_tags_create_default' => 'Создать метку', + 'no_transactions_title_withdrawal' => 'Давайте создадим расход!', + 'no_transactions_intro_withdrawal' => 'У вас пока нет расходов. Вы должны создать хотя бы один расход, чтобы начать управлять своими финансами.', + 'no_transactions_imperative_withdrawal' => 'Вы потратили часть своих денег? Это нужно записать:', + 'no_transactions_create_withdrawal' => 'Создать расход', + 'no_transactions_title_deposit' => 'Давайте создадим какой-нибудь доход!', + 'no_transactions_intro_deposit' => 'У вас пока нет учтённых доходов. Вы должны создать запись дохода, чтобы начать управлять своими финансами.', + 'no_transactions_imperative_deposit' => 'Вы получили какие-нибудь деньги? Вам нужно это записать:', + 'no_transactions_create_deposit' => 'Создать доход', + 'no_transactions_title_transfers' => 'Давайте создадим перевод!', + 'no_transactions_intro_transfers' => 'У вас ещё нет переводов. Когда вы перемещаете деньги между счетами, это нужно записывать как перевод.', + 'no_transactions_imperative_transfers' => 'Вы переместили часть своих денег? Это нужно записать:', + 'no_transactions_create_transfers' => 'Создать перевод', + 'no_piggies_title_default' => 'Давайте создадим копилку!', + 'no_piggies_intro_default' => 'У вас пока нет копилок. Вы можете создавать копилки, чтобы разделить свои сбережения и следить за тем, за что вы сберегаете.', + 'no_piggies_imperative_default' => 'Вы хотите накопить денег на что-нибудь? Создайте копилку и следите за своими сбережениями:', + 'no_piggies_create_default' => 'Создать новую копилку', + 'no_bills_title_default' => 'Давайте создадим счёт на оплату!', + 'no_bills_intro_default' => 'У вас пока нет счетов на оплату. Вы можете создавать счета для отслеживания регулярных расходов, таких как арендная плата или страхование.', + 'no_bills_imperative_default' => 'У вас есть такие регулярные платежи? Создайте счёт на оплату и отслеживайте свои платежи:', + 'no_bills_create_default' => 'Создать счет к оплате', // recurring transactions - 'create_right_now' => 'Создать прямо сейчас', - 'no_new_transaction_in_recurrence' => 'Не было создано ни одной новой транзакции. Возможно, она уже была запущена на эту дату?', - 'recurrences' => 'Повторяющиеся транзакции', - 'repeat_until_in_past' => 'Повторение этой повторяющейся транзакции прервано :date.', - 'recurring_calendar_view' => 'Календарь', - 'no_recurring_title_default' => 'Давайте создадим повторяющуюся транзакцию!', - 'no_recurring_intro_default' => 'У вас пока нет повторяющихся транзакций. Вы можете использовать их для автоматического создания транзакций в Firefly III.', - 'no_recurring_imperative_default' => 'Это очень продвинутая функция, но она может быть очень полезна. Убедитесь, что вы прочитали документацию (значок "?" в правом верхнем углу), прежде чем продолжить.', - 'no_recurring_create_default' => 'Создать повторяющуюся транзакцию', - 'make_new_recurring' => 'Создать повторяющуюся транзакцию', - 'recurring_daily' => 'Каждый день', - 'recurring_weekly' => 'Каждую неделю в :weekday', - 'recurring_weekly_skip' => 'Каждую :skip(st/nd/rd/th) неделю в :weekday', - 'recurring_monthly' => 'Каждый месяц в :dayOfMonth(st/nd/rd/th) день', - 'recurring_monthly_skip' => 'Каждый :skip(st/nd/rd/th) месяц в :dayOfMonth(st/nd/rd/th) день', - 'recurring_ndom' => 'Каждый месяц в :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Каждый год на :date', - 'overview_for_recurrence' => 'Обзор повторяющейся транзакции ":title"', - 'warning_duplicates_repetitions' => 'В редких случаях даты в этом списке появляются дважды. Это может произойти, когда несколько повторяющихся транзакций пересекаются. Firefly III всегда будет генерировать одну транзакцию в день.', - 'created_transactions' => 'Связанные транзакции', - 'expected_withdrawals' => 'Просроченные расходы', - 'expected_deposits' => 'Просроченные доходы', - 'expected_transfers' => 'Просроченные переводы', - 'created_withdrawals' => 'Расходы созданы', - 'created_deposits' => 'Доходы созданы', - 'created_transfers' => 'Переводы созданы', - 'recurring_info' => 'Повторяющаяся транзакция :count / :total', - 'created_from_recurrence' => 'Создано из повторяющейся транзакции ":title" (#:id)', - 'recurring_never_cron' => 'Похоже, что задание cron, которое необходимо для работы повторяющихся транзакций, никогда не запускалось. Это совершенно нормально, если вы только что установили Firefly III, но возможно стоит проверить кое-какие настройки как можно скорее. Пожалуйста, перечитайте страницу справки, используя значок (?) в верхнем правом углу этой страницы.', - 'recurring_cron_long_ago' => 'Похоже, что прошло более 36 часов с того времени, когда задание cron должно было быть выполнено в последний раз. Вы уверены, что всё настроено правильно? Пожалуйста, перечитайте страницу справки, используя значок (?) в верхнем правом углу этой страницы.', + 'create_right_now' => 'Создать прямо сейчас', + 'no_new_transaction_in_recurrence' => 'Не было создано ни одной новой транзакции. Возможно, она уже была запущена на эту дату?', + 'recurrences' => 'Повторяющиеся транзакции', + 'repeat_until_in_past' => 'Повторение этой повторяющейся транзакции прервано :date.', + 'recurring_calendar_view' => 'Календарь', + 'no_recurring_title_default' => 'Давайте создадим повторяющуюся транзакцию!', + 'no_recurring_intro_default' => 'У вас пока нет повторяющихся транзакций. Вы можете использовать их для автоматического создания транзакций в Firefly III.', + 'no_recurring_imperative_default' => 'Это очень продвинутая функция, но она может быть очень полезна. Убедитесь, что вы прочитали документацию (значок "?" в правом верхнем углу), прежде чем продолжить.', + 'no_recurring_create_default' => 'Создать повторяющуюся транзакцию', + 'make_new_recurring' => 'Создать повторяющуюся транзакцию', + 'recurring_daily' => 'Каждый день', + 'recurring_weekly' => 'Каждую неделю в :weekday', + 'recurring_weekly_skip' => 'Каждую :skip(st/nd/rd/th) неделю в :weekday', + 'recurring_monthly' => 'Каждый месяц в :dayOfMonth(st/nd/rd/th) день', + 'recurring_monthly_skip' => 'Каждый :skip(st/nd/rd/th) месяц в :dayOfMonth(st/nd/rd/th) день', + 'recurring_ndom' => 'Каждый месяц в :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Каждый год на :date', + 'overview_for_recurrence' => 'Обзор повторяющейся транзакции ":title"', + 'warning_duplicates_repetitions' => 'В редких случаях даты в этом списке появляются дважды. Это может произойти, когда несколько повторяющихся транзакций пересекаются. Firefly III всегда будет генерировать одну транзакцию в день.', + 'created_transactions' => 'Связанные транзакции', + 'expected_withdrawals' => 'Просроченные расходы', + 'expected_deposits' => 'Просроченные доходы', + 'expected_transfers' => 'Просроченные переводы', + 'created_withdrawals' => 'Расходы созданы', + 'created_deposits' => 'Доходы созданы', + 'created_transfers' => 'Переводы созданы', + 'recurring_info' => 'Повторяющаяся транзакция :count / :total', + 'created_from_recurrence' => 'Создано из повторяющейся транзакции ":title" (#:id)', + 'recurring_never_cron' => 'Похоже, что задание cron, которое необходимо для работы повторяющихся транзакций, никогда не запускалось. Это совершенно нормально, если вы только что установили Firefly III, но возможно стоит проверить кое-какие настройки как можно скорее. Пожалуйста, перечитайте страницу справки, используя значок (?) в верхнем правом углу этой страницы.', + 'recurring_cron_long_ago' => 'Похоже, что прошло более 36 часов с того времени, когда задание cron должно было быть выполнено в последний раз. Вы уверены, что всё настроено правильно? Пожалуйста, перечитайте страницу справки, используя значок (?) в верхнем правом углу этой страницы.', - 'create_new_recurrence' => 'Создать новую повторяющуюся транзакцию', - 'help_first_date' => 'Укажите первое ожидаемое повторение. Оно должно быть в будущем.', - 'help_first_date_no_past' => 'Укажите первое ожидаемое повторение. Firefly III не будет создавать транзакции ранее этой даты.', - 'no_currency' => '(нет валюты)', - 'mandatory_for_recurring' => 'Обязательные сведения о повторении', - 'mandatory_for_transaction' => 'Обязательные сведения о транзакции', - 'optional_for_recurring' => 'Опциональные сведения о повторении', - 'optional_for_transaction' => 'Опциональные сведения о транзакции', - 'change_date_other_options' => 'Измените "начальную дату", чтобы увидеть больше опций.', - 'mandatory_fields_for_tranaction' => 'Эти значения будут использоваться при создании транзакций', - 'click_for_calendar' => 'Щёлкните здесь, чтобы открыт календарь и указать, когда транзакция будет повторяться.', - 'repeat_forever' => 'Повторять всегда', - 'repeat_until_date' => 'Повторять до указанной даты', - 'repeat_times' => 'Повторять указанное число раз', - 'recurring_skips_one' => 'Другой период', - 'recurring_skips_more' => 'Пропустить :count повторов', - 'store_new_recurrence' => 'Сохранить повторяющуюся транзакцию', - 'stored_new_recurrence' => 'Повторяющаяся транзакция ":title" успешно сохранена.', - 'edit_recurrence' => 'Изменить повторяющуюся транзакцию ":title"', - 'recurring_repeats_until' => 'Повторять до :date', - 'recurring_repeats_forever' => 'Повторять всегда', - 'recurring_repeats_x_times' => 'Повторяется :count раз|Повторяется :count раз', - 'update_recurrence' => 'Обновить повторяющуюся транзакцию', - 'updated_recurrence' => 'Повторяющаяся транзакция ":title" обновлена', - 'recurrence_is_inactive' => 'Эта повторяющаяся транзакция не активна и не создаёт новые транзакции.', - 'delete_recurring' => 'Удалить повторяющуюся транзакцию ":title"', - 'new_recurring_transaction' => 'Новая запланированная транзакция', - 'help_weekend' => 'Что должен сделать Firefly III, когда повторяющаяся транзакция попадает на субботу или воскресенье?', - 'do_nothing' => 'Просто создать транзакцию', - 'skip_transaction' => 'Пропустить транзакцию', - 'jump_to_friday' => 'Создать транзакцию в предшествующую пятницу', - 'jump_to_monday' => 'Создать транзакцию в следующий понедельник', - 'will_jump_friday' => 'Будет создана в пятницу, а не в выходной день.', - 'will_jump_monday' => 'Будет создана в понедельник, а не в выходной день.', - 'except_weekends' => 'Исключить выходные дни', - 'recurrence_deleted' => 'Повторяющаяся транзакция ":title" удалена', + 'create_new_recurrence' => 'Создать новую повторяющуюся транзакцию', + 'help_first_date' => 'Укажите первое ожидаемое повторение. Оно должно быть в будущем.', + 'help_first_date_no_past' => 'Укажите первое ожидаемое повторение. Firefly III не будет создавать транзакции ранее этой даты.', + 'no_currency' => '(нет валюты)', + 'mandatory_for_recurring' => 'Обязательные сведения о повторении', + 'mandatory_for_transaction' => 'Обязательные сведения о транзакции', + 'optional_for_recurring' => 'Опциональные сведения о повторении', + 'optional_for_transaction' => 'Опциональные сведения о транзакции', + 'change_date_other_options' => 'Измените "начальную дату", чтобы увидеть больше опций.', + 'mandatory_fields_for_tranaction' => 'Эти значения будут использоваться при создании транзакций', + 'click_for_calendar' => 'Щёлкните здесь, чтобы открыт календарь и указать, когда транзакция будет повторяться.', + 'repeat_forever' => 'Повторять всегда', + 'repeat_until_date' => 'Повторять до указанной даты', + 'repeat_times' => 'Повторять указанное число раз', + 'recurring_skips_one' => 'Другой период', + 'recurring_skips_more' => 'Пропустить :count повторов', + 'store_new_recurrence' => 'Сохранить повторяющуюся транзакцию', + 'stored_new_recurrence' => 'Повторяющаяся транзакция ":title" успешно сохранена.', + 'edit_recurrence' => 'Изменить повторяющуюся транзакцию ":title"', + 'recurring_repeats_until' => 'Повторять до :date', + 'recurring_repeats_forever' => 'Повторять всегда', + 'recurring_repeats_x_times' => 'Повторяется :count раз|Повторяется :count раз', + 'update_recurrence' => 'Обновить повторяющуюся транзакцию', + 'updated_recurrence' => 'Повторяющаяся транзакция ":title" обновлена', + 'recurrence_is_inactive' => 'Эта повторяющаяся транзакция не активна и не создаёт новые транзакции.', + 'delete_recurring' => 'Удалить повторяющуюся транзакцию ":title"', + 'new_recurring_transaction' => 'Новая запланированная транзакция', + 'help_weekend' => 'Что должен сделать Firefly III, когда повторяющаяся транзакция попадает на субботу или воскресенье?', + 'do_nothing' => 'Просто создать транзакцию', + 'skip_transaction' => 'Пропустить транзакцию', + 'jump_to_friday' => 'Создать транзакцию в предшествующую пятницу', + 'jump_to_monday' => 'Создать транзакцию в следующий понедельник', + 'will_jump_friday' => 'Будет создана в пятницу, а не в выходной день.', + 'will_jump_monday' => 'Будет создана в понедельник, а не в выходной день.', + 'except_weekends' => 'Исключить выходные дни', + 'recurrence_deleted' => 'Повторяющаяся транзакция ":title" удалена', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Баланс (:currency)', - 'box_spent_in_currency' => 'Расходы (:currency)', - 'box_earned_in_currency' => 'Доходы (:currency)', - 'box_budgeted_in_currency' => 'Запланировано в бюджете (:currency)', - 'box_bill_paid_in_currency' => 'Счета на оплату (:currency)', - 'box_bill_unpaid_in_currency' => 'Неоплаченные счета (:currency)', - 'box_left_to_spend_in_currency' => 'Осталось потратить (:currency)', - 'box_net_worth_in_currency' => 'Мои сбережения (:currency)', - 'box_spend_per_day' => 'Можно тратить в день: :amount', + 'box_balance_in_currency' => 'Баланс (:currency)', + 'box_spent_in_currency' => 'Расходы (:currency)', + 'box_earned_in_currency' => 'Доходы (:currency)', + 'box_budgeted_in_currency' => 'Запланировано в бюджете (:currency)', + 'box_bill_paid_in_currency' => 'Счета на оплату (:currency)', + 'box_bill_unpaid_in_currency' => 'Неоплаченные счета (:currency)', + 'box_left_to_spend_in_currency' => 'Осталось потратить (:currency)', + 'box_net_worth_in_currency' => 'Мои сбережения (:currency)', + 'box_spend_per_day' => 'Можно тратить в день: :amount', // debug page - 'debug_page' => 'Отладка', - 'debug_submit_instructions' => 'Если у вас возникли проблемы, вы можете использовать информацию в этом поле в качестве отладочной информации. Пожалуйста, скопируйте и вставьте эту информацию в новую или существующую проблему на GitHub. Будет сгенерирована красивая таблица, которая поможет быстро диагностировать вашу проблему.', - 'debug_pretty_table' => 'Если вы скопируете/вставите содержимое этого поля в проблему на GitHub, будет сгенерирована таблица. Пожалуйста, не окружайте этот текст апострофами или кавычками.', - 'debug_additional_data' => 'Вы также можете поделиться содержимым поля ниже. Вы можете скопировать и вставить это в новую или существующую проблему на GitHub. Однако помните, что содержимое этого поля может содержать личную информацию, такую как имена счетов, детали ваших транзакций или адреса электронной почты.', + 'debug_page' => 'Отладка', + 'debug_submit_instructions' => 'Если у вас возникли проблемы, вы можете использовать информацию в этом поле в качестве отладочной информации. Пожалуйста, скопируйте и вставьте эту информацию в новую или существующую проблему на GitHub. Будет сгенерирована красивая таблица, которая поможет быстро диагностировать вашу проблему.', + 'debug_pretty_table' => 'Если вы скопируете/вставите содержимое этого поля в проблему на GitHub, будет сгенерирована таблица. Пожалуйста, не окружайте этот текст апострофами или кавычками.', + 'debug_additional_data' => 'Вы также можете поделиться содержимым поля ниже. Вы можете скопировать и вставить это в новую или существующую проблему на GitHub. Однако помните, что содержимое этого поля может содержать личную информацию, такую как имена счетов, детали ваших транзакций или адреса электронной почты.', // object groups - 'object_groups_menu_bar' => 'Группы', - 'object_groups_page_title' => 'Группы', - 'object_groups_breadcrumb' => 'Группы', - 'object_groups_index' => 'Обзор', - 'object_groups' => 'Группы', - 'object_groups_empty_explain' => 'Некоторые вещи в Firefly III можно разделить на группы. Например, поле "Группа " на экранах редактирования и создания копилок. Когда вы зададите это поле, вы сможете редактировать названия и порядок групп на этой странице. Для получения дополнительной информации ознакомьтесь со справочными страницами (щёлкните по значку (?) в правом верхнем углу).', - 'object_group_title' => 'Название', - 'edit_object_group' => 'Изменить группу ":title"', - 'delete_object_group' => 'Удалить группу ":title"', - 'update_object_group' => 'Обновить группу', - 'updated_object_group' => 'Группа успешно обновлена ":title"', - 'deleted_object_group' => 'Группа успешно удалена ":title"', - 'object_group' => 'Группа', + 'object_groups_menu_bar' => 'Группы', + 'object_groups_page_title' => 'Группы', + 'object_groups_breadcrumb' => 'Группы', + 'object_groups_index' => 'Обзор', + 'object_groups' => 'Группы', + 'object_groups_empty_explain' => 'Некоторые вещи в Firefly III можно разделить на группы. Например, поле "Группа " на экранах редактирования и создания копилок. Когда вы зададите это поле, вы сможете редактировать названия и порядок групп на этой странице. Для получения дополнительной информации ознакомьтесь со справочными страницами (щёлкните по значку (?) в правом верхнем углу).', + 'object_group_title' => 'Название', + 'edit_object_group' => 'Изменить группу ":title"', + 'delete_object_group' => 'Удалить группу ":title"', + 'update_object_group' => 'Обновить группу', + 'updated_object_group' => 'Группа успешно обновлена ":title"', + 'deleted_object_group' => 'Группа успешно удалена ":title"', + 'object_group' => 'Группа', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Записи журнала аудита', - 'ale_action_log_add' => 'Добавить :amount в копилку ":name"', - 'ale_action_log_remove' => 'Взять :amount из копилки ":name"', - 'ale_action_clear_budget' => 'Удалено из бюджета', - 'ale_action_update_group_title' => 'Обновлены название группы транзакций', - 'ale_action_update_date' => 'Обновлена дата транзакции', - 'ale_action_update_order' => 'Обновлён порядок транзакций', - 'ale_action_clear_category' => 'Удалено из категории', - 'ale_action_clear_notes' => 'Удаленные заметки', - 'ale_action_clear_tag' => 'Тэг очищен', - 'ale_action_clear_all_tags' => 'Все теги очищены', - 'ale_action_set_bill' => 'Привязано к счету', - 'ale_action_switch_accounts' => 'Смена счета источника и назначения', - 'ale_action_set_budget' => 'Указать бюджет', - 'ale_action_set_category' => 'Указать категорию', - 'ale_action_set_source' => 'Указать счёт-источник', - 'ale_action_set_destination' => 'Указать счёт назначения', - 'ale_action_update_transaction_type' => 'Изменен тип платежа', - 'ale_action_update_notes' => 'Заметки изменены', - 'ale_action_update_description' => 'Описание изменено', - 'ale_action_add_to_piggy' => 'Копилка', - 'ale_action_remove_from_piggy' => 'Копилка', - 'ale_action_add_tag' => 'Добавленный тег', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Записи журнала аудита', + 'ale_action_log_add' => 'Добавить :amount в копилку ":name"', + 'ale_action_log_remove' => 'Взять :amount из копилки ":name"', + 'ale_action_clear_budget' => 'Удалено из бюджета', + 'ale_action_update_group_title' => 'Обновлены название группы транзакций', + 'ale_action_update_date' => 'Обновлена дата транзакции', + 'ale_action_update_order' => 'Обновлён порядок транзакций', + 'ale_action_clear_category' => 'Удалено из категории', + 'ale_action_clear_notes' => 'Удаленные заметки', + 'ale_action_clear_tag' => 'Тэг очищен', + 'ale_action_clear_all_tags' => 'Все теги очищены', + 'ale_action_set_bill' => 'Привязано к счету', + 'ale_action_switch_accounts' => 'Смена счета источника и назначения', + 'ale_action_set_budget' => 'Указать бюджет', + 'ale_action_set_category' => 'Указать категорию', + 'ale_action_set_source' => 'Указать счёт-источник', + 'ale_action_set_destination' => 'Указать счёт назначения', + 'ale_action_update_transaction_type' => 'Изменен тип платежа', + 'ale_action_update_notes' => 'Заметки изменены', + 'ale_action_update_description' => 'Описание изменено', + 'ale_action_add_to_piggy' => 'Копилка', + 'ale_action_remove_from_piggy' => 'Копилка', + 'ale_action_add_tag' => 'Добавленный тег', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Включить конвертацию валюты', - 'disable_auto_convert' => 'Отключить конвертацию валюты', + 'enable_auto_convert' => 'Включить конвертацию валюты', + 'disable_auto_convert' => 'Отключить конвертацию валюты', ]; /* diff --git a/resources/lang/ru_RU/validation.php b/resources/lang/ru_RU/validation.php index b81de5910e..1badc7390a 100644 --- a/resources/lang/ru_RU/validation.php +++ b/resources/lang/ru_RU/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'У вас нет необходимых прав доступа для данного административного действия.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/sk_SK/firefly.php b/resources/lang/sk_SK/firefly.php index b13b8fe6bf..2af402bf2f 100644 --- a/resources/lang/sk_SK/firefly.php +++ b/resources/lang/sk_SK/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Zavrieť', - 'actions' => 'Akcie', - 'edit' => 'Upraviť', - 'delete' => 'Odstrániť', - 'split' => 'Rozúčtovať', - 'single_split' => 'Rozúčtovať', - 'clone' => 'Klonovať', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => 'Uplynulých 7 dní', - 'last_thirty_days' => 'Uplynulých 30 dní', - 'last_180_days' => 'Posledných 180 dní', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'Tento rok', - 'welcome_back' => 'Ako to ide?', - 'everything' => 'Všetko', - 'today' => 'dnes', - 'customRange' => 'Vlastný rozsah', - 'date_range' => 'Časový rozsah', - 'apply' => 'Použiť', - 'select_date' => 'Vyberte dátum..', - 'cancel' => 'Storno', - 'from' => 'Od', - 'to' => 'Komu', - 'structure' => 'Štruktúra', - 'help_translating' => 'Tento text pomocníka ešte nie je k dispozícii vo vašom jazyku. Pomôžete prekladať?', - 'showEverything' => 'Zobraziť všetko', - 'never' => 'Nikdy', - 'no_results_for_empty_search' => 'Nevyplnili ste žiadny vyhľadávaný pojem, takže sa nič nenašlo.', - 'removed_amount' => 'Odobrané :amount', - 'added_amount' => 'Pridané :amount', - 'asset_account_role_help' => 'Akékoľvek ďalšie možnosti vyplývajúce z vášho výberu je možné nastaviť neskôr.', - 'Opening balance' => 'Počiatočný zostatok', - 'create_new_stuff' => 'Vytvoriť nový údaj', - 'new_withdrawal' => 'Nový výber', - 'create_new_transaction' => 'Vytvoriť novú transakciu', - 'sidebar_frontpage_create' => 'Vytvoriť', - 'new_transaction' => 'Nová transakcia', - 'no_rules_for_bill' => 'Táto účtenka nemá priradené žiadne pravidlá.', - 'go_to_asset_accounts' => 'Zobraziť účty aktív', - 'go_to_budgets' => 'Zobraziť rozpočty', - 'go_to_withdrawals' => 'Zobraziť výbery', - 'clones_journal_x' => 'Táto transakcia je kópiou „:description“ (#:id)', - 'go_to_categories' => 'Zobraziť kategórie', - 'go_to_bills' => 'Zobraziť účty', - 'go_to_expense_accounts' => 'Zobraziť výdavkové účty', - 'go_to_revenue_accounts' => 'Zobraziť výnosové účty', - 'go_to_piggies' => 'Zobraziť pokladničky', - 'new_deposit' => 'Nový vklad', - 'new_transfer' => 'Nový prevod', - 'new_transfers' => 'Nový prevod', - 'new_asset_account' => 'Nový účet aktív', - 'new_expense_account' => 'Nový výdavkový účet', - 'new_revenue_account' => 'Nový výnosový účet', - 'new_liabilities_account' => 'Nový záväzok', - 'new_budget' => 'Nový rozpočet', - 'new_bill' => 'Nový účet', - 'block_account_logout' => 'Byli jste odhlásení. Zablokované účty tuto stránku nemôžu používať. Zaregistrovaliste sa pomocou platnej e-mailovej adresy?', - 'flash_success' => 'Hotovo!', - 'flash_info' => 'Správa', - 'flash_warning' => 'Varovanie!', - 'flash_error' => 'Chyba!', - 'flash_danger' => 'Danger!', - 'flash_info_multiple' => 'Jedna správa|:count správ', - 'flash_error_multiple' => 'Jedna chyba|:count chýb', - 'net_worth' => 'Čisté imanie', - 'help_for_this_page' => 'Pomocník pro túto stránku', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'Zdravíme!', - 'two_factor_enter_code' => 'Pre pokračovanie zadajte kód pre dvojfázové overenie. Vaša aplikácia ho pre vás môže vytvoriť.', - 'two_factor_code_here' => 'Sem vložte kód', - 'two_factor_title' => 'Dvojfázové overenie', - 'authenticate' => 'Overiť', - 'two_factor_forgot_title' => 'Stratil(a) som dvojfázové overenie', - 'two_factor_forgot' => 'Zabudol(a) som si nástroj pro dvojfázové overenie.', - 'two_factor_lost_header' => 'Ztratili ste svoje dvojfázové overenie?', - 'two_factor_lost_intro' => 'Ak ste stratili aj svoje záložné kódy, máte smolu. Nie je to niečo, čo by ste mohli opraviť z webového rozhrania. Máte dve možnosti.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'V ostatných prípadoch napíšte prevádzkovateľovi, :site_owner a požiadajte ho o obnovenie vášho dvojfázového overenia.', - 'mfa_backup_code' => 'Použitím záložného kódu, umožňujúceho prihlásenie do Firefly III, platnosť kódu zaniká. Takže kód, ktorým ste sa už prihlásili, už vám je k ničomu (nie je možné ho použiť opakovane) - preto si ho zo zoznamu vyškrtnite.', - 'pref_two_factor_new_backup_codes' => 'Získať nové záložní kódy', - 'pref_two_factor_backup_code_count' => 'Máte :count platný záložný kód.|Máte :count platných záložných kódov.', - '2fa_i_have_them' => 'Uložil som si ich!', - 'warning_much_data' => 'Načítanie :days dní údajov môže chvíľu trvať.', - 'registered' => 'Úspešne ste sa zaregistrovali!', - 'Default asset account' => 'Prednastavený účet aktív', - 'no_budget_pointer' => 'Zdá sa, že zatiaľ nemáte žiadne rozpočty. Na stránke rozpočty by ste si nejaké mali vytvoriť. Rozpočty môžu pomôcť udržať prehľad vo výdavkoch.', - 'no_bill_pointer' => 'Zdá sa, že zatiaľ nemáte žiadne účty. Na stránke účty by ste mali nejaké vytvoriť. Účty môžu pomôcť udržať si prehľad vo výdavkoch.', - 'Savings account' => 'Sporiaci účet', - 'Credit card' => 'Kreditná karta', - 'source_accounts' => 'Zdrojový účet|Zdrojové účty', - 'destination_accounts' => 'Cieľový účet|Cieľové účty', - 'user_id_is' => 'Váš identifikátor použivateľa je :user', - 'field_supports_markdown' => 'Text v tomto políčku je možné formátovať pomocou syntaxe Markdown.', - 'need_more_help' => 'Ak potřebujetr ďalšiu pomoc s používaním Firefly III, založte požiadavku na portáli GitHub.', - 'reenable_intro_text' => 'Môžete tiež znova povoliť úvodné pokyny.', - 'intro_boxes_after_refresh' => 'Oblasti s úvodom sa znovu objavia po opätovnom načítaní stránky.', - 'show_all_no_filter' => 'Zobraziť všetky transakcie bez zoskupenia podľa dátumu.', - 'expenses_by_category' => 'Výdavky podľa kategórie', - 'expenses_by_budget' => 'Výdavky podľa rozpočtu', - 'income_by_category' => 'Príjmy podľa kategórie', - 'expenses_by_asset_account' => 'Výdavky podľa účtu aktív', - 'expenses_by_expense_account' => 'Výdavky podľa výdajových účtov', - 'cannot_redirect_to_account' => 'Firefly III se nedarí presmerovať vás na správnu stránku. Ospravedlňujeme sa.', - 'sum_of_expenses' => 'Suma výdavkov', - 'sum_of_income' => 'Suma príjmov', - 'liabilities' => 'Záväzky', - 'spent_in_specific_budget' => 'Utratené v rozpočte „:budget“', - 'spent_in_specific_double' => 'Uhradené v účte ":account"', - 'earned_in_specific_double' => 'Zarobené na účte ":account"', - 'source_account' => 'Zdrojový účet', - 'source_account_reconciliation' => 'Nemôžete upraviť zdrojový účet zúčtovacej transakcie.', - 'destination_account' => 'Cieľový účet', - 'destination_account_reconciliation' => 'Nemôžete upraviť cieľový účet zúčtovacej transakcie.', - 'sum_of_expenses_in_budget' => 'Celkom utratené v rozpočte „:budget“', - 'left_in_budget_limit' => 'Ponechané k útrate podľa rozpočtu', - 'current_period' => 'Aktuálne obdobie', - 'show_the_current_period_and_overview' => 'Zobraziť aktuálne obdobie a prehľad', - 'pref_languages_locale' => 'Aby mohol iný jazyk ako angličtina správne fungovať, musí byť váš operačný systém vybavený správnymi miestnymi informáciami. Ak nie sú k dispozícii, môžu byť údaje o mene, dátumy a sumy nesprávne naformátované.', - 'budget_in_period' => 'Všetky transakcie pre rozpočet ":name" medzi :start a :end v mene :currency', - 'chart_budget_in_period' => 'Graf všetkých transakcií pre rozpočet ":name" medzi :start a :end v mene :currency', - 'chart_budget_in_period_only_currency' => 'Suma rozpočtu je v :currency, takže tento graf zobrazuje len transakcie v :currency.', - 'chart_account_in_period' => 'Graf všetkých transakcií pre účet ":name" (:balance) medzi :start a :end', - 'chart_category_in_period' => 'Graf všetkých transakcií pre kategóriu „:name“ medzi :start a :end', - 'chart_category_all' => 'Graf všetkých transakcií pre kategóriu „:name“', - 'clone_withdrawal' => 'Klonovať tento výber', - 'clone_deposit' => 'Klonovať tento vklad', - 'clone_transfer' => 'Klonovať tento prevod', - 'multi_select_no_selection' => 'Žiadny výber', - 'multi_select_select_all' => 'Vybrať všetko', - 'multi_select_n_selected' => 'vybrané', - 'multi_select_all_selected' => 'Všetko vybrané', - 'multi_select_filter_placeholder' => 'Hľadať…', - 'intro_next_label' => 'Nasledujúce', - 'intro_prev_label' => 'Predchádzajúce', - 'intro_skip_label' => 'Preskočiť', - 'intro_done_label' => 'Hotovo', - 'between_dates_breadcrumb' => 'Medzi :start a :end', - 'all_journals_without_budget' => 'Všetky transakcie bez rozpočtu', - 'journals_without_budget' => 'Transakcie bez rozpočtu', - 'all_journals_without_category' => 'Všetky transakcie bez kategórie', - 'journals_without_category' => 'Transakcie bez kategórie', - 'all_journals_for_account' => 'Všetky transakcie pre účet :name', - 'chart_all_journals_for_account' => 'Graf všetkých transakcíi pre účet „:name“', - 'journals_in_period_for_account' => 'Všetky transakcie pre účet „:name“ medzi :start a :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Prenesené', - 'all_withdrawal' => 'Všetky výdavky', - 'all_transactions' => 'Všetky transakcie', - 'title_withdrawal_between' => 'Všetky výdavky medzi :start a :end', - 'all_deposit' => 'Všetky výnosy', - 'title_deposit_between' => 'Všetky výnosy medzi :start a :end', - 'all_transfers' => 'Všetky prevody', - 'title_transfers_between' => 'Všetky prevody medzi :start a :end', - 'all_transfer' => 'Všetky prevody', - 'all_journals_for_tag' => 'Všetky transakcie pre značku „:tag“', - 'title_transfer_between' => 'Všetky prevody medzi :start a :end', - 'all_journals_for_category' => 'Všetky prevody pre kategóriu :name', - 'all_journals_for_budget' => 'Všetky transakcie pre rozpočet :name', - 'chart_all_journals_for_budget' => 'Graf všetkých transakcií pre rozpočet „:name“', - 'journals_in_period_for_category' => 'Všetky transakce pre kategóriu „:name“ medzi :start a :end', - 'journals_in_period_for_tag' => 'Všetky transakcie pre štítok :tag medzi :start a :end', - 'not_available_demo_user' => 'Funkcia, ku ktorej sa snažíte získať prístup, nie je používateľom ukážky k dispozícii.', - 'exchange_rate_instructions' => 'Majetkový účet „@name“ prijíma iba transakcie v @native_currency. Ak chcete namiesto toho použiť @foreign_currency, uistite sa, že je známa aj suma v @native_currency:', - 'transfer_exchange_rate_instructions' => 'Účet zdrojového majetku "@source_name" prijíma iba transakcie v @source_currency. Cieľový majetkový účet „@dest_name“ prijíma iba transakcie v @dest_currency. Prevedenú čiastku musíte uviesť správne v oboch menách.', - 'transaction_data' => 'Údaje o transakcii', - 'invalid_server_configuration' => 'Neplatné nastavenie serveru', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Rýchle prepnutie', - 'sign_in_to_start' => 'Pre zahájenie sedenia sa prihláste', - 'sign_in' => 'Prihlásiť', - 'register_new_account' => 'Zaregistrovať nový účet', - 'forgot_my_password' => 'Zabudol(a) som svoje heslo', - 'problems_with_input' => 'Vyskytol sa problém s vstupnými údajmi.', - 'reset_password' => 'Obnovte si heslo', - 'button_reset_password' => 'Obnoviť heslo', - 'reset_button' => 'Obnoviť', - 'want_to_login' => 'Chcem sa prihlásiť', - 'login_page_title' => 'Prihlásenie do Firefly III', - 'register_page_title' => 'Registrácia do Firefly III', - 'forgot_pw_page_title' => 'Zabudnuté heslo do Firefly III', - 'reset_pw_page_title' => 'Obnovte si heslo do Firefly III', - 'cannot_reset_demo_user' => 'Heslo použivateľa pre ukážku (demo) nie je možné obnoviť.', - 'no_att_demo_user' => 'Demo používateľ nemá povolené nahrávať prílohy.', - 'button_register' => 'Registrovať', - 'authorization' => 'Autorizácia', - 'active_bills_only' => 'len aktívne účty', - 'active_bills_only_total' => 'všetky aktívne účty', - 'active_exp_bills_only' => 'len aktívne a očakávané účty', - 'active_exp_bills_only_total' => 'len všetky očakávané aktívne účty', - 'per_period_sum_1D' => 'Očakávané denné výdavky', - 'per_period_sum_1W' => 'Očakávané týždenné výdavky', - 'per_period_sum_1M' => 'Očakávané mesačné výdavky', - 'per_period_sum_3M' => 'Očakávané štvrťročné výdavky', - 'per_period_sum_6M' => 'Očakávané polročné výdavky', - 'per_period_sum_1Y' => 'Očakávané ročné výdavky', - 'average_per_bill' => 'priemer na účet', - 'expected_total' => 'očakávaný celkový súčet', - 'reconciliation_account_name' => ':name zúčtovanie (:currency)', - 'saved' => 'Uložené', - 'advanced_options' => 'Pokročilé nastavenia', - 'advanced_options_explain' => 'Niektoré stránky Firefly III majú pod týmto tlačítkom skryté pokročilé nastavenia. Táto stránka síce nič také neobsahuje, ale určite to skúste na iných!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Zavrieť', + 'actions' => 'Akcie', + 'edit' => 'Upraviť', + 'delete' => 'Odstrániť', + 'split' => 'Rozúčtovať', + 'single_split' => 'Rozúčtovať', + 'clone' => 'Klonovať', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => 'Uplynulých 7 dní', + 'last_thirty_days' => 'Uplynulých 30 dní', + 'last_180_days' => 'Posledných 180 dní', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'Tento rok', + 'welcome_back' => 'Ako to ide?', + 'everything' => 'Všetko', + 'today' => 'dnes', + 'customRange' => 'Vlastný rozsah', + 'date_range' => 'Časový rozsah', + 'apply' => 'Použiť', + 'select_date' => 'Vyberte dátum..', + 'cancel' => 'Storno', + 'from' => 'Od', + 'to' => 'Komu', + 'structure' => 'Štruktúra', + 'help_translating' => 'Tento text pomocníka ešte nie je k dispozícii vo vašom jazyku. Pomôžete prekladať?', + 'showEverything' => 'Zobraziť všetko', + 'never' => 'Nikdy', + 'no_results_for_empty_search' => 'Nevyplnili ste žiadny vyhľadávaný pojem, takže sa nič nenašlo.', + 'removed_amount' => 'Odobrané :amount', + 'added_amount' => 'Pridané :amount', + 'asset_account_role_help' => 'Akékoľvek ďalšie možnosti vyplývajúce z vášho výberu je možné nastaviť neskôr.', + 'Opening balance' => 'Počiatočný zostatok', + 'create_new_stuff' => 'Vytvoriť nový údaj', + 'new_withdrawal' => 'Nový výber', + 'create_new_transaction' => 'Vytvoriť novú transakciu', + 'sidebar_frontpage_create' => 'Vytvoriť', + 'new_transaction' => 'Nová transakcia', + 'no_rules_for_bill' => 'Táto účtenka nemá priradené žiadne pravidlá.', + 'go_to_asset_accounts' => 'Zobraziť účty aktív', + 'go_to_budgets' => 'Zobraziť rozpočty', + 'go_to_withdrawals' => 'Zobraziť výbery', + 'clones_journal_x' => 'Táto transakcia je kópiou „:description“ (#:id)', + 'go_to_categories' => 'Zobraziť kategórie', + 'go_to_bills' => 'Zobraziť účty', + 'go_to_expense_accounts' => 'Zobraziť výdavkové účty', + 'go_to_revenue_accounts' => 'Zobraziť výnosové účty', + 'go_to_piggies' => 'Zobraziť pokladničky', + 'new_deposit' => 'Nový vklad', + 'new_transfer' => 'Nový prevod', + 'new_transfers' => 'Nový prevod', + 'new_asset_account' => 'Nový účet aktív', + 'new_expense_account' => 'Nový výdavkový účet', + 'new_revenue_account' => 'Nový výnosový účet', + 'new_liabilities_account' => 'Nový záväzok', + 'new_budget' => 'Nový rozpočet', + 'new_bill' => 'Nový účet', + 'block_account_logout' => 'Byli jste odhlásení. Zablokované účty tuto stránku nemôžu používať. Zaregistrovaliste sa pomocou platnej e-mailovej adresy?', + 'flash_success' => 'Hotovo!', + 'flash_info' => 'Správa', + 'flash_warning' => 'Varovanie!', + 'flash_error' => 'Chyba!', + 'flash_danger' => 'Danger!', + 'flash_info_multiple' => 'Jedna správa|:count správ', + 'flash_error_multiple' => 'Jedna chyba|:count chýb', + 'net_worth' => 'Čisté imanie', + 'help_for_this_page' => 'Pomocník pro túto stránku', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'Zdravíme!', + 'two_factor_enter_code' => 'Pre pokračovanie zadajte kód pre dvojfázové overenie. Vaša aplikácia ho pre vás môže vytvoriť.', + 'two_factor_code_here' => 'Sem vložte kód', + 'two_factor_title' => 'Dvojfázové overenie', + 'authenticate' => 'Overiť', + 'two_factor_forgot_title' => 'Stratil(a) som dvojfázové overenie', + 'two_factor_forgot' => 'Zabudol(a) som si nástroj pro dvojfázové overenie.', + 'two_factor_lost_header' => 'Ztratili ste svoje dvojfázové overenie?', + 'two_factor_lost_intro' => 'Ak ste stratili aj svoje záložné kódy, máte smolu. Nie je to niečo, čo by ste mohli opraviť z webového rozhrania. Máte dve možnosti.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'V ostatných prípadoch napíšte prevádzkovateľovi, :site_owner a požiadajte ho o obnovenie vášho dvojfázového overenia.', + 'mfa_backup_code' => 'Použitím záložného kódu, umožňujúceho prihlásenie do Firefly III, platnosť kódu zaniká. Takže kód, ktorým ste sa už prihlásili, už vám je k ničomu (nie je možné ho použiť opakovane) - preto si ho zo zoznamu vyškrtnite.', + 'pref_two_factor_new_backup_codes' => 'Získať nové záložní kódy', + 'pref_two_factor_backup_code_count' => 'Máte :count platný záložný kód.|Máte :count platných záložných kódov.', + '2fa_i_have_them' => 'Uložil som si ich!', + 'warning_much_data' => 'Načítanie :days dní údajov môže chvíľu trvať.', + 'registered' => 'Úspešne ste sa zaregistrovali!', + 'Default asset account' => 'Prednastavený účet aktív', + 'no_budget_pointer' => 'Zdá sa, že zatiaľ nemáte žiadne rozpočty. Na stránke rozpočty by ste si nejaké mali vytvoriť. Rozpočty môžu pomôcť udržať prehľad vo výdavkoch.', + 'no_bill_pointer' => 'Zdá sa, že zatiaľ nemáte žiadne účty. Na stránke účty by ste mali nejaké vytvoriť. Účty môžu pomôcť udržať si prehľad vo výdavkoch.', + 'Savings account' => 'Sporiaci účet', + 'Credit card' => 'Kreditná karta', + 'source_accounts' => 'Zdrojový účet|Zdrojové účty', + 'destination_accounts' => 'Cieľový účet|Cieľové účty', + 'user_id_is' => 'Váš identifikátor použivateľa je :user', + 'field_supports_markdown' => 'Text v tomto políčku je možné formátovať pomocou syntaxe Markdown.', + 'need_more_help' => 'Ak potřebujetr ďalšiu pomoc s používaním Firefly III, založte požiadavku na portáli GitHub.', + 'reenable_intro_text' => 'Môžete tiež znova povoliť úvodné pokyny.', + 'intro_boxes_after_refresh' => 'Oblasti s úvodom sa znovu objavia po opätovnom načítaní stránky.', + 'show_all_no_filter' => 'Zobraziť všetky transakcie bez zoskupenia podľa dátumu.', + 'expenses_by_category' => 'Výdavky podľa kategórie', + 'expenses_by_budget' => 'Výdavky podľa rozpočtu', + 'income_by_category' => 'Príjmy podľa kategórie', + 'expenses_by_asset_account' => 'Výdavky podľa účtu aktív', + 'expenses_by_expense_account' => 'Výdavky podľa výdajových účtov', + 'cannot_redirect_to_account' => 'Firefly III se nedarí presmerovať vás na správnu stránku. Ospravedlňujeme sa.', + 'sum_of_expenses' => 'Suma výdavkov', + 'sum_of_income' => 'Suma príjmov', + 'liabilities' => 'Záväzky', + 'spent_in_specific_budget' => 'Utratené v rozpočte „:budget“', + 'spent_in_specific_double' => 'Uhradené v účte ":account"', + 'earned_in_specific_double' => 'Zarobené na účte ":account"', + 'source_account' => 'Zdrojový účet', + 'source_account_reconciliation' => 'Nemôžete upraviť zdrojový účet zúčtovacej transakcie.', + 'destination_account' => 'Cieľový účet', + 'destination_account_reconciliation' => 'Nemôžete upraviť cieľový účet zúčtovacej transakcie.', + 'sum_of_expenses_in_budget' => 'Celkom utratené v rozpočte „:budget“', + 'left_in_budget_limit' => 'Ponechané k útrate podľa rozpočtu', + 'current_period' => 'Aktuálne obdobie', + 'show_the_current_period_and_overview' => 'Zobraziť aktuálne obdobie a prehľad', + 'pref_languages_locale' => 'Aby mohol iný jazyk ako angličtina správne fungovať, musí byť váš operačný systém vybavený správnymi miestnymi informáciami. Ak nie sú k dispozícii, môžu byť údaje o mene, dátumy a sumy nesprávne naformátované.', + 'budget_in_period' => 'Všetky transakcie pre rozpočet ":name" medzi :start a :end v mene :currency', + 'chart_budget_in_period' => 'Graf všetkých transakcií pre rozpočet ":name" medzi :start a :end v mene :currency', + 'chart_budget_in_period_only_currency' => 'Suma rozpočtu je v :currency, takže tento graf zobrazuje len transakcie v :currency.', + 'chart_account_in_period' => 'Graf všetkých transakcií pre účet ":name" (:balance) medzi :start a :end', + 'chart_category_in_period' => 'Graf všetkých transakcií pre kategóriu „:name“ medzi :start a :end', + 'chart_category_all' => 'Graf všetkých transakcií pre kategóriu „:name“', + 'clone_withdrawal' => 'Klonovať tento výber', + 'clone_deposit' => 'Klonovať tento vklad', + 'clone_transfer' => 'Klonovať tento prevod', + 'multi_select_no_selection' => 'Žiadny výber', + 'multi_select_select_all' => 'Vybrať všetko', + 'multi_select_n_selected' => 'vybrané', + 'multi_select_all_selected' => 'Všetko vybrané', + 'multi_select_filter_placeholder' => 'Hľadať…', + 'intro_next_label' => 'Nasledujúce', + 'intro_prev_label' => 'Predchádzajúce', + 'intro_skip_label' => 'Preskočiť', + 'intro_done_label' => 'Hotovo', + 'between_dates_breadcrumb' => 'Medzi :start a :end', + 'all_journals_without_budget' => 'Všetky transakcie bez rozpočtu', + 'journals_without_budget' => 'Transakcie bez rozpočtu', + 'all_journals_without_category' => 'Všetky transakcie bez kategórie', + 'journals_without_category' => 'Transakcie bez kategórie', + 'all_journals_for_account' => 'Všetky transakcie pre účet :name', + 'chart_all_journals_for_account' => 'Graf všetkých transakcíi pre účet „:name“', + 'journals_in_period_for_account' => 'Všetky transakcie pre účet „:name“ medzi :start a :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Prenesené', + 'all_withdrawal' => 'Všetky výdavky', + 'all_transactions' => 'Všetky transakcie', + 'title_withdrawal_between' => 'Všetky výdavky medzi :start a :end', + 'all_deposit' => 'Všetky výnosy', + 'title_deposit_between' => 'Všetky výnosy medzi :start a :end', + 'all_transfers' => 'Všetky prevody', + 'title_transfers_between' => 'Všetky prevody medzi :start a :end', + 'all_transfer' => 'Všetky prevody', + 'all_journals_for_tag' => 'Všetky transakcie pre značku „:tag“', + 'title_transfer_between' => 'Všetky prevody medzi :start a :end', + 'all_journals_for_category' => 'Všetky prevody pre kategóriu :name', + 'all_journals_for_budget' => 'Všetky transakcie pre rozpočet :name', + 'chart_all_journals_for_budget' => 'Graf všetkých transakcií pre rozpočet „:name“', + 'journals_in_period_for_category' => 'Všetky transakce pre kategóriu „:name“ medzi :start a :end', + 'journals_in_period_for_tag' => 'Všetky transakcie pre štítok :tag medzi :start a :end', + 'not_available_demo_user' => 'Funkcia, ku ktorej sa snažíte získať prístup, nie je používateľom ukážky k dispozícii.', + 'exchange_rate_instructions' => 'Majetkový účet „@name“ prijíma iba transakcie v @native_currency. Ak chcete namiesto toho použiť @foreign_currency, uistite sa, že je známa aj suma v @native_currency:', + 'transfer_exchange_rate_instructions' => 'Účet zdrojového majetku "@source_name" prijíma iba transakcie v @source_currency. Cieľový majetkový účet „@dest_name“ prijíma iba transakcie v @dest_currency. Prevedenú čiastku musíte uviesť správne v oboch menách.', + 'transaction_data' => 'Údaje o transakcii', + 'invalid_server_configuration' => 'Neplatné nastavenie serveru', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Rýchle prepnutie', + 'sign_in_to_start' => 'Pre zahájenie sedenia sa prihláste', + 'sign_in' => 'Prihlásiť', + 'register_new_account' => 'Zaregistrovať nový účet', + 'forgot_my_password' => 'Zabudol(a) som svoje heslo', + 'problems_with_input' => 'Vyskytol sa problém s vstupnými údajmi.', + 'reset_password' => 'Obnovte si heslo', + 'button_reset_password' => 'Obnoviť heslo', + 'reset_button' => 'Obnoviť', + 'want_to_login' => 'Chcem sa prihlásiť', + 'login_page_title' => 'Prihlásenie do Firefly III', + 'register_page_title' => 'Registrácia do Firefly III', + 'forgot_pw_page_title' => 'Zabudnuté heslo do Firefly III', + 'reset_pw_page_title' => 'Obnovte si heslo do Firefly III', + 'cannot_reset_demo_user' => 'Heslo použivateľa pre ukážku (demo) nie je možné obnoviť.', + 'no_att_demo_user' => 'Demo používateľ nemá povolené nahrávať prílohy.', + 'button_register' => 'Registrovať', + 'authorization' => 'Autorizácia', + 'active_bills_only' => 'len aktívne účty', + 'active_bills_only_total' => 'všetky aktívne účty', + 'active_exp_bills_only' => 'len aktívne a očakávané účty', + 'active_exp_bills_only_total' => 'len všetky očakávané aktívne účty', + 'per_period_sum_1D' => 'Očakávané denné výdavky', + 'per_period_sum_1W' => 'Očakávané týždenné výdavky', + 'per_period_sum_1M' => 'Očakávané mesačné výdavky', + 'per_period_sum_3M' => 'Očakávané štvrťročné výdavky', + 'per_period_sum_6M' => 'Očakávané polročné výdavky', + 'per_period_sum_1Y' => 'Očakávané ročné výdavky', + 'average_per_bill' => 'priemer na účet', + 'expected_total' => 'očakávaný celkový súčet', + 'reconciliation_account_name' => ':name zúčtovanie (:currency)', + 'saved' => 'Uložené', + 'advanced_options' => 'Pokročilé nastavenia', + 'advanced_options_explain' => 'Niektoré stránky Firefly III majú pod týmto tlačítkom skryté pokročilé nastavenia. Táto stránka síce nič také neobsahuje, ale určite to skúste na iných!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooky', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooky', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Požiadavka na overenie – Firefly III verzia :version', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'Táto aplikácia bude môcť:', - 'button_authorize' => 'Autorizovať', - 'none_in_select_list' => '(žiadne)', - 'no_piggy_bank' => '(žiadna pokladnička)', - 'name_in_currency' => ':name v :currency', - 'paid_in_currency' => 'Uhradené v :currency', - 'unpaid_in_currency' => 'Neuhradené v :currency', - 'is_alpha_warning' => 'Používate ALPHA verziu. Buďte ostražití pred chybami a problémami.', - 'is_beta_warning' => 'Používate BETA verziu. Buďte ostražití pred chybami a problémami.', - 'all_destination_accounts' => 'Cieľové účty', - 'all_source_accounts' => 'Zdrojové účty', - 'back_to_index' => 'Späť na zoznam', - 'cant_logout_guard' => 'Firefly III sa nepodarilo vás odhlásiť.', - 'internal_reference' => 'Interná referencia', + 'authorization_request' => 'Požiadavka na overenie – Firefly III verzia :version', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'Táto aplikácia bude môcť:', + 'button_authorize' => 'Autorizovať', + 'none_in_select_list' => '(žiadne)', + 'no_piggy_bank' => '(žiadna pokladnička)', + 'name_in_currency' => ':name v :currency', + 'paid_in_currency' => 'Uhradené v :currency', + 'unpaid_in_currency' => 'Neuhradené v :currency', + 'is_alpha_warning' => 'Používate ALPHA verziu. Buďte ostražití pred chybami a problémami.', + 'is_beta_warning' => 'Používate BETA verziu. Buďte ostražití pred chybami a problémami.', + 'all_destination_accounts' => 'Cieľové účty', + 'all_source_accounts' => 'Zdrojové účty', + 'back_to_index' => 'Späť na zoznam', + 'cant_logout_guard' => 'Firefly III sa nepodarilo vás odhlásiť.', + 'internal_reference' => 'Interná referencia', // check for updates: - 'update_check_title' => 'Zistiť dostupnosť aktualizácií', - 'admin_update_check_title' => 'Zisťovať dostupnosť aktualizácií automaticky', - 'admin_update_check_explain' => 'Firefly III môže sám kontrolovať aktualizácie. Ak toto nastavenie aktivujete, bude kontaktovať hlavný server Firefly III, či je dostupná nová verzia Firefly III. Ak áno, dostanete upozornenie. Toto upozornenie si môžete vyskúšať kliknutím na tlačítko napravo. Prosím, vyberte nižšie, či chcete, aby Firefly III kontroloval aktualizácie.', - 'check_for_updates_permission' => 'Firefly III môže automaticky kontrolovať dostupnosť aktualizácií, ale potrebuje k tomu vaše povolenie. Prejdite do správy a označte, či chcete túto funkciu zapnúť.', - 'updates_ask_me_later' => 'Spýtať sa neskôr', - 'updates_do_not_check' => 'Nezisťovať dostupnosť aktualizácií', - 'updates_enable_check' => 'Zisťovať dostupnosť aktualizácií', - 'admin_update_check_now_title' => 'Zistiť dostupnosť aktualizácií teraz', - 'admin_update_check_now_explain' => 'Ak stlačíte tlačidlo, Firefly III zistí, či je vaša aktuálna verzia najnovšia.', - 'check_for_updates_button' => 'Skontrolovať teraz!', - 'update_new_version_alert' => 'Je dostupná nová verzia Firefly III. Pracujete s verziou :your_version, najnovšia verzia je :new_version zverejnená :date.', - 'update_version_beta' => 'Toto je BETA verzia. Môžu sa vyskytnúť chyby.', - 'update_version_alpha' => 'Toto je ALPHA verzia. Môžu sa vyskytnúť chyby.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Pracujete s verziou :version, čo je najnovšie dostupné vydanie.', - 'update_newer_version_alert' => 'Pracujete s verziou :your_version, ktorá je novšia, než posledné vydanie, :new_version.', - 'update_check_error' => 'Pri kontrole aktualizácii nastala chyba: :error', - 'unknown_error' => 'Neznáma chyba. Prepáčte.', - 'disabled_but_check' => 'Vypli ste kontrolu aktualizácií. Nezabudnite občas skontrolovať aktualizácie manuálne. Ďakujeme!', - 'admin_update_channel_title' => 'Aktualizačný kanál', - 'admin_update_channel_explain' => 'Firefly III má tri "kanály" aktualizácií, ktoré určujú, ako napred ste so svojim systémom, čo sa týka funkcií, vylepšení a chýb. Ak radi skúšate nové veci, použite "beta" kanál a ak vás bavi žiť nebezpečne, vyberte si "alfa".', - 'update_channel_stable' => 'Stabilná verzia. Všetko by malo fungovať.', - 'update_channel_beta' => 'Beta verzia. Nové funkcie, môžu sa vyskytnúť chyby.', - 'update_channel_alpha' => 'Alfa verzia. Hodíme sem, čo nás napadne, a použije sa, čo sa uchytí.', + 'update_check_title' => 'Zistiť dostupnosť aktualizácií', + 'admin_update_check_title' => 'Zisťovať dostupnosť aktualizácií automaticky', + 'admin_update_check_explain' => 'Firefly III môže sám kontrolovať aktualizácie. Ak toto nastavenie aktivujete, bude kontaktovať hlavný server Firefly III, či je dostupná nová verzia Firefly III. Ak áno, dostanete upozornenie. Toto upozornenie si môžete vyskúšať kliknutím na tlačítko napravo. Prosím, vyberte nižšie, či chcete, aby Firefly III kontroloval aktualizácie.', + 'check_for_updates_permission' => 'Firefly III môže automaticky kontrolovať dostupnosť aktualizácií, ale potrebuje k tomu vaše povolenie. Prejdite do správy a označte, či chcete túto funkciu zapnúť.', + 'updates_ask_me_later' => 'Spýtať sa neskôr', + 'updates_do_not_check' => 'Nezisťovať dostupnosť aktualizácií', + 'updates_enable_check' => 'Zisťovať dostupnosť aktualizácií', + 'admin_update_check_now_title' => 'Zistiť dostupnosť aktualizácií teraz', + 'admin_update_check_now_explain' => 'Ak stlačíte tlačidlo, Firefly III zistí, či je vaša aktuálna verzia najnovšia.', + 'check_for_updates_button' => 'Skontrolovať teraz!', + 'update_new_version_alert' => 'Je dostupná nová verzia Firefly III. Pracujete s verziou :your_version, najnovšia verzia je :new_version zverejnená :date.', + 'update_version_beta' => 'Toto je BETA verzia. Môžu sa vyskytnúť chyby.', + 'update_version_alpha' => 'Toto je ALPHA verzia. Môžu sa vyskytnúť chyby.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Pracujete s verziou :version, čo je najnovšie dostupné vydanie.', + 'update_newer_version_alert' => 'Pracujete s verziou :your_version, ktorá je novšia, než posledné vydanie, :new_version.', + 'update_check_error' => 'Pri kontrole aktualizácii nastala chyba: :error', + 'unknown_error' => 'Neznáma chyba. Prepáčte.', + 'disabled_but_check' => 'Vypli ste kontrolu aktualizácií. Nezabudnite občas skontrolovať aktualizácie manuálne. Ďakujeme!', + 'admin_update_channel_title' => 'Aktualizačný kanál', + 'admin_update_channel_explain' => 'Firefly III má tri "kanály" aktualizácií, ktoré určujú, ako napred ste so svojim systémom, čo sa týka funkcií, vylepšení a chýb. Ak radi skúšate nové veci, použite "beta" kanál a ak vás bavi žiť nebezpečne, vyberte si "alfa".', + 'update_channel_stable' => 'Stabilná verzia. Všetko by malo fungovať.', + 'update_channel_beta' => 'Beta verzia. Nové funkcie, môžu sa vyskytnúť chyby.', + 'update_channel_alpha' => 'Alfa verzia. Hodíme sem, čo nás napadne, a použije sa, čo sa uchytí.', // search - 'search' => 'Hľadať', - 'search_query' => 'Požiadavka', - 'search_found_transactions' => 'Firefly III našiel :count transakciu za :time sekúnd.|Firefly III našiel :count transakcií za :time sekúnd.', - 'search_found_more_transactions' => 'Firefly III našiel viac než :count transakcií za :time sekúnd.', - 'search_for_query' => 'Firefly III vyhľadáva transakcie obsahujúce tieto výrazy: :query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => 'Hľadať', + 'search_query' => 'Požiadavka', + 'search_found_transactions' => 'Firefly III našiel :count transakciu za :time sekúnd.|Firefly III našiel :count transakcií za :time sekúnd.', + 'search_found_more_transactions' => 'Firefly III našiel viac než :count transakcií za :time sekúnd.', + 'search_for_query' => 'Firefly III vyhľadáva transakcie obsahujúce tieto výrazy: :query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old @@ -351,368 +351,368 @@ 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_id' => 'ID transakcie je ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Dátum transakcie je pred alebo v deň ":value"', - 'search_modifier_date_after' => 'Dátum transakcie je po alebo v deň ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Popis obsahuje ":value“', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Popis je presne ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => '(Cudzia) mena transakcie je ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Cudzia mena transakcie je ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'Transakcia má prílohu', - 'search_modifier_has_no_category' => 'Transakcia nemá žiadnu kategóriu', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'Transakcia má (ľubovoľnú) kategóriu', - 'search_modifier_has_no_budget' => 'Transakcia nesmie mať rozpočet', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'Transakcia má (ľubovoľný) rozpočet', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'Transakcia nesmie mať účty', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'Transakcia má (ľubovoľné) účty', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'Transakcia nesmie mať štítky', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'Transakcia má (ľubovoľné) štítky', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Transakcia nemá žiadne poznámky', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'Transakcia má poznámky', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Suma je menej alebo presne :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Suma je viac ako alebo presne :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Názov zdrojového účtu je presne ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Názov zdrojového účtu obsahuje ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Názov zdrojového účtu začína ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Názov zdrojového účtu končí ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'ID zdrojového účtu je ":value"', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) je ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) obsahuje ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) začína ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Názov cieľového účtu je presne ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Názov cieľového účtu obsahuje ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Názov cieľového účtu začína ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'ID cieľového účtu je :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Číslo cieľového účtu (IBAN) je ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Číslo cieľového účtu (IBAN) obsahuje ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Číslo cieľového účtu (IBAN) začína ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Číslo cieľového účtu (IBAN) končí ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'ID zdrojového alebo cieľového účtu sú: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Kategória je ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Rozpočet je ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Účtenka je ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Typ transakcie je ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Štítok je ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + '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_id' => 'ID transakcie je ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Dátum transakcie je pred alebo v deň ":value"', + 'search_modifier_date_after' => 'Dátum transakcie je po alebo v deň ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Popis obsahuje ":value“', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Popis je presne ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => '(Cudzia) mena transakcie je ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Cudzia mena transakcie je ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'Transakcia má prílohu', + 'search_modifier_has_no_category' => 'Transakcia nemá žiadnu kategóriu', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'Transakcia má (ľubovoľnú) kategóriu', + 'search_modifier_has_no_budget' => 'Transakcia nesmie mať rozpočet', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'Transakcia má (ľubovoľný) rozpočet', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'Transakcia nesmie mať účty', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'Transakcia má (ľubovoľné) účty', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'Transakcia nesmie mať štítky', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'Transakcia má (ľubovoľné) štítky', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Transakcia nemá žiadne poznámky', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'Transakcia má poznámky', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Suma je menej alebo presne :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Suma je viac ako alebo presne :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Názov zdrojového účtu je presne ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Názov zdrojového účtu obsahuje ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Názov zdrojového účtu začína ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Názov zdrojového účtu končí ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'ID zdrojového účtu je ":value"', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Číslo zdrojového účtu (IBAN) je ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Číslo zdrojového účtu (IBAN) obsahuje ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Číslo zdrojového účtu (IBAN) začína ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Názov cieľového účtu je presne ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Názov cieľového účtu obsahuje ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Názov cieľového účtu začína ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'ID cieľového účtu je :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Číslo cieľového účtu (IBAN) je ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Číslo cieľového účtu (IBAN) obsahuje ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Číslo cieľového účtu (IBAN) začína ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Číslo cieľového účtu (IBAN) končí ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'ID zdrojového alebo cieľového účtu sú: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Kategória je ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Rozpočet je ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Účtenka je ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Typ transakcie je ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Štítok je ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Aktualizovať pravidlo ":rule" vyhľadávaným výrazom', - 'create_rule_from_query' => 'Vytvoriť z vyhľadávaného výrazu nové pravidlo', - 'rule_from_search_words' => 'Pravidlo má ťažkosti so spracovaním „:string“. Navrhované pravidlo, ktoré vyhovuje vášmu vyhľadávaciemu pojmu, môže poskytnúť rôzne výsledky. Dôkladne skontrolujte spúšťače pravidiel.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Aktualizovať pravidlo ":rule" vyhľadávaným výrazom', + 'create_rule_from_query' => 'Vytvoriť z vyhľadávaného výrazu nové pravidlo', + 'rule_from_search_words' => 'Pravidlo má ťažkosti so spracovaním „:string“. Navrhované pravidlo, ktoré vyhovuje vášmu vyhľadávaciemu pojmu, môže poskytnúť rôzne výsledky. Dôkladne skontrolujte spúšťače pravidiel.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Pri vyhľadávaní sa použijú aj nasledujúce modifikátory:', - 'general_search_error' => 'Pri hľadaní sa vyskytla chyba. Ďalšie informácie nájdete v súboroch denníka.', - 'search_box' => 'Hľadať', - 'search_box_intro' => 'Vitajte vo vyhľadávacej funkcii Firefly III. Do tohto poľa zadajte hľadaný výraz. Nezabudnite si pozrieť súbor pomocníka, pretože vyhľadávanie je dosť pokročilé.', - 'search_error' => 'Chyba pri vyhľadávaní', - 'search_searching' => 'Vyhľadáva sa …', - 'search_results' => 'Výsledky vyhľadávania', + 'modifiers_applies_are' => 'Pri vyhľadávaní sa použijú aj nasledujúce modifikátory:', + 'general_search_error' => 'Pri hľadaní sa vyskytla chyba. Ďalšie informácie nájdete v súboroch denníka.', + 'search_box' => 'Hľadať', + 'search_box_intro' => 'Vitajte vo vyhľadávacej funkcii Firefly III. Do tohto poľa zadajte hľadaný výraz. Nezabudnite si pozrieť súbor pomocníka, pretože vyhľadávanie je dosť pokročilé.', + 'search_error' => 'Chyba pri vyhľadávaní', + 'search_searching' => 'Vyhľadáva sa …', + 'search_results' => 'Výsledky vyhľadávania', // repeat frequencies: - 'repeat_freq_yearly' => 'ročne', - 'repeat_freq_half-year' => 'polročne', - 'repeat_freq_quarterly' => 'štvrťročne', - 'repeat_freq_monthly' => 'mesačne', - 'repeat_freq_weekly' => 'týždenne', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'týždenne', - 'quarterly' => 'štvrťročne', - 'half-year' => 'polročne', - 'yearly' => 'ročne', + 'repeat_freq_yearly' => 'ročne', + 'repeat_freq_half-year' => 'polročne', + 'repeat_freq_quarterly' => 'štvrťročne', + 'repeat_freq_monthly' => 'mesačne', + 'repeat_freq_weekly' => 'týždenne', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'týždenne', + 'quarterly' => 'štvrťročne', + 'half-year' => 'polročne', + 'yearly' => 'ročne', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Neaktívne pravidlá nie je možné spustiť.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Pravidlá', - 'rule_name' => 'Názov pravidla', - 'rule_triggers' => 'Pravidlo se uplatní, ak', - 'rule_actions' => 'Pravidlo bude', - 'new_rule' => 'Nové pravidlo', - 'new_rule_group' => 'Nová skupina pravidiel', - 'rule_priority_up' => 'Zvýšiť prioritu pravidla', - 'rule_priority_down' => 'Znížiť prioritu pravidla', - 'make_new_rule_group' => 'Vytvoriť novú skupinu pravidiel', - 'store_new_rule_group' => 'Uložiť novú skupinu pravidiel', - 'created_new_rule_group' => 'Nová skupina pravidiel „:title“ uložená!', - 'updated_rule_group' => 'Skupina pravidiel „:title“ úspešne aktualizovaná.', - 'edit_rule_group' => 'Upraviť skupinu pravidiel „:title“', - 'duplicate_rule' => 'Duplikovať pravidlo ":title"', - 'rule_copy_of' => 'Kópia ":title"', - 'duplicated_rule' => 'Duplikovať pravidlo ":title" do ":newTitle"', - 'delete_rule_group' => 'Odstrániť skupinu pravidiel „:title“', - 'deleted_rule_group' => 'Skupina pravidel „:title“ bola odstránená', - 'update_rule_group' => 'Aktualizovať skupinu pravidiel', - 'no_rules_in_group' => 'Táto skupina neobsahuje žiadne pravidlá', - 'move_rule_group_up' => 'Posunúť skupinu pravidiel nahor', - 'move_rule_group_down' => 'Posunúť skupinu pravidiel nadol', - 'save_rules_by_moving' => 'Toto pravidlo uložte presunutím do inej skupiny pravidiel:|Tieto pravidlá uložte presunutím do inej skupiny pravidiel:', - 'make_new_rule' => 'Vytvoriť nové pravidlo v skupine pravidiel „:title“', - 'make_new_rule_no_group' => 'Vytvoriť nové pravidlo', - 'instructions_rule_from_bill' => 'Aby bolo možné priradiť transakcie k vášmu novému účtu „:name“, môže Firefly III vytvoriť pravidlo, ktoré sa automaticky porovná s akýmikoľvek uloženými transakciami. Overte podrobnosti uvedené nižšie a uložte pravidlo, aby Firefly III automaticky priradil transakcie k vášmu novému účtu.', - 'instructions_rule_from_journal' => 'Vytvorte pravidlo na základe jednej z vašich transakcií. Vyplňte alebo odošlite formulár uvedený nižšie.', - 'rule_is_strict' => 'striktné pravidlo', - 'rule_is_not_strict' => 'nestriktné pravidlo', - 'rule_help_stop_processing' => 'Ak začiarknete toto políčko, neskoršie pravidlá v tejto skupine sa nebudú vykonávať.', - 'rule_help_strict' => 'V prípade, že sa majú akcie vykonať, musia byť splnené prísne pravidlá VŠETKY spúšťače. V prípade voľnejších pravidiel stačí na vykonanie akcie ľubovoľný spúšťač.', - 'rule_help_active' => 'Neaktívne pravidlá sa nikdy nespustia.', - 'stored_new_rule' => 'Uložené nové pravidlo nazvané „:title“', - 'deleted_rule' => 'Pravidlo nazvané „:title“ bolo odstránené', - 'store_new_rule' => 'Uložiť nové pravidlo', - 'updated_rule' => 'Pravidlo nazvané „:title“ aktualizované', - 'default_rule_group_name' => 'Východzie pravidlá', - 'default_rule_group_description' => 'Ani jedno vaše pravidlo nepatrí do skupiny.', - 'trigger' => 'Spúšťač', - 'trigger_value' => 'Spustiť pri hodnote', - 'stop_processing_other_triggers' => 'Zastaviť spracovávanie ostatných spúšťačov', - 'add_rule_trigger' => 'Pridať nový spúšťač', - 'action' => 'Akcia', - 'action_value' => 'Hodnota akcie', - 'stop_executing_other_actions' => 'Zastaviť vykonávanie ostatných akcií', - 'add_rule_action' => 'Pridať novú akciu', - 'edit_rule' => 'Upraviť pravidlo „:title“', - 'delete_rule' => 'Odstrániť pravidlo „:title“', - 'update_rule' => 'Upraviť pravidlo', - 'test_rule_triggers' => 'Zobraziť zodpovedajúce transakcie', - 'warning_no_matching_transactions' => 'Nenašli sa žiadne zodpovedajúce transakcie.', - 'warning_no_valid_triggers' => 'Neposkytli ste žiadne platné spúšťače.', - 'apply_rule_selection' => 'Uplatniť pravidlo „:title“ na vybrané transakcie', - 'apply_rule_selection_intro' => 'Pravidlá ako „:title“ sa zvyčajne uplatňujú iba na nové alebo aktualizované transakcie, môžete však Firefly III povedať, aby ho spustil pri výbere vašich existujúcich transakcií. To môže byť užitočné, keď ste aktualizovali pravidlo a potrebujete zmeny, ktoré sa majú uplatniť na všetky vaše ďalšie transakcie.', - 'include_transactions_from_accounts' => 'Zahrnúť transakcie z týchto účtov', - 'include' => 'Zahrnúť?', - 'applied_rule_selection' => '{0} Pravidlom ":title" nebola zmenená žiadna transakcia vo výbere.|[1] Pravidlom ":title" bola zmenená jedna transakcia.|[2,*] Pravidlom ":title" bolo zmenených :count transakcií.', - 'execute' => 'Vykonať', - 'apply_rule_group_selection' => 'Uplatniť skupinu pravidiel „:title“ na vybrané transakcie', - 'apply_rule_group_selection_intro' => 'Skupiny pravidiel ako „:title“ sa zvyčajne používajú iba na nové alebo aktualizované transakcie, ale môžete Firefly III povedať, aby pri výbere vašich existujúcich transakcií spustil všetky pravidlá v tejto skupine. To môže byť užitočné, keď ste aktualizovali skupinu pravidiel a potrebujete zmeny, ktoré sa majú uplatniť na všetky vaše ďalšie transakcie.', - 'applied_rule_group_selection' => 'Skupina pravidiel „:title“ bola uplatnená na váš výber.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Neaktívne pravidlá nie je možné spustiť.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Pravidlá', + 'rule_name' => 'Názov pravidla', + 'rule_triggers' => 'Pravidlo se uplatní, ak', + 'rule_actions' => 'Pravidlo bude', + 'new_rule' => 'Nové pravidlo', + 'new_rule_group' => 'Nová skupina pravidiel', + 'rule_priority_up' => 'Zvýšiť prioritu pravidla', + 'rule_priority_down' => 'Znížiť prioritu pravidla', + 'make_new_rule_group' => 'Vytvoriť novú skupinu pravidiel', + 'store_new_rule_group' => 'Uložiť novú skupinu pravidiel', + 'created_new_rule_group' => 'Nová skupina pravidiel „:title“ uložená!', + 'updated_rule_group' => 'Skupina pravidiel „:title“ úspešne aktualizovaná.', + 'edit_rule_group' => 'Upraviť skupinu pravidiel „:title“', + 'duplicate_rule' => 'Duplikovať pravidlo ":title"', + 'rule_copy_of' => 'Kópia ":title"', + 'duplicated_rule' => 'Duplikovať pravidlo ":title" do ":newTitle"', + 'delete_rule_group' => 'Odstrániť skupinu pravidiel „:title“', + 'deleted_rule_group' => 'Skupina pravidel „:title“ bola odstránená', + 'update_rule_group' => 'Aktualizovať skupinu pravidiel', + 'no_rules_in_group' => 'Táto skupina neobsahuje žiadne pravidlá', + 'move_rule_group_up' => 'Posunúť skupinu pravidiel nahor', + 'move_rule_group_down' => 'Posunúť skupinu pravidiel nadol', + 'save_rules_by_moving' => 'Toto pravidlo uložte presunutím do inej skupiny pravidiel:|Tieto pravidlá uložte presunutím do inej skupiny pravidiel:', + 'make_new_rule' => 'Vytvoriť nové pravidlo v skupine pravidiel „:title“', + 'make_new_rule_no_group' => 'Vytvoriť nové pravidlo', + 'instructions_rule_from_bill' => 'Aby bolo možné priradiť transakcie k vášmu novému účtu „:name“, môže Firefly III vytvoriť pravidlo, ktoré sa automaticky porovná s akýmikoľvek uloženými transakciami. Overte podrobnosti uvedené nižšie a uložte pravidlo, aby Firefly III automaticky priradil transakcie k vášmu novému účtu.', + 'instructions_rule_from_journal' => 'Vytvorte pravidlo na základe jednej z vašich transakcií. Vyplňte alebo odošlite formulár uvedený nižšie.', + 'rule_is_strict' => 'striktné pravidlo', + 'rule_is_not_strict' => 'nestriktné pravidlo', + 'rule_help_stop_processing' => 'Ak začiarknete toto políčko, neskoršie pravidlá v tejto skupine sa nebudú vykonávať.', + 'rule_help_strict' => 'V prípade, že sa majú akcie vykonať, musia byť splnené prísne pravidlá VŠETKY spúšťače. V prípade voľnejších pravidiel stačí na vykonanie akcie ľubovoľný spúšťač.', + 'rule_help_active' => 'Neaktívne pravidlá sa nikdy nespustia.', + 'stored_new_rule' => 'Uložené nové pravidlo nazvané „:title“', + 'deleted_rule' => 'Pravidlo nazvané „:title“ bolo odstránené', + 'store_new_rule' => 'Uložiť nové pravidlo', + 'updated_rule' => 'Pravidlo nazvané „:title“ aktualizované', + 'default_rule_group_name' => 'Východzie pravidlá', + 'default_rule_group_description' => 'Ani jedno vaše pravidlo nepatrí do skupiny.', + 'trigger' => 'Spúšťač', + 'trigger_value' => 'Spustiť pri hodnote', + 'stop_processing_other_triggers' => 'Zastaviť spracovávanie ostatných spúšťačov', + 'add_rule_trigger' => 'Pridať nový spúšťač', + 'action' => 'Akcia', + 'action_value' => 'Hodnota akcie', + 'stop_executing_other_actions' => 'Zastaviť vykonávanie ostatných akcií', + 'add_rule_action' => 'Pridať novú akciu', + 'edit_rule' => 'Upraviť pravidlo „:title“', + 'delete_rule' => 'Odstrániť pravidlo „:title“', + 'update_rule' => 'Upraviť pravidlo', + 'test_rule_triggers' => 'Zobraziť zodpovedajúce transakcie', + 'warning_no_matching_transactions' => 'Nenašli sa žiadne zodpovedajúce transakcie.', + 'warning_no_valid_triggers' => 'Neposkytli ste žiadne platné spúšťače.', + 'apply_rule_selection' => 'Uplatniť pravidlo „:title“ na vybrané transakcie', + 'apply_rule_selection_intro' => 'Pravidlá ako „:title“ sa zvyčajne uplatňujú iba na nové alebo aktualizované transakcie, môžete však Firefly III povedať, aby ho spustil pri výbere vašich existujúcich transakcií. To môže byť užitočné, keď ste aktualizovali pravidlo a potrebujete zmeny, ktoré sa majú uplatniť na všetky vaše ďalšie transakcie.', + 'include_transactions_from_accounts' => 'Zahrnúť transakcie z týchto účtov', + 'include' => 'Zahrnúť?', + 'applied_rule_selection' => '{0} Pravidlom ":title" nebola zmenená žiadna transakcia vo výbere.|[1] Pravidlom ":title" bola zmenená jedna transakcia.|[2,*] Pravidlom ":title" bolo zmenených :count transakcií.', + 'execute' => 'Vykonať', + 'apply_rule_group_selection' => 'Uplatniť skupinu pravidiel „:title“ na vybrané transakcie', + 'apply_rule_group_selection_intro' => 'Skupiny pravidiel ako „:title“ sa zvyčajne používajú iba na nové alebo aktualizované transakcie, ale môžete Firefly III povedať, aby pri výbere vašich existujúcich transakcií spustil všetky pravidlá v tejto skupine. To môže byť užitočné, keď ste aktualizovali skupinu pravidiel a potrebujete zmeny, ktoré sa majú uplatniť na všetky vaše ďalšie transakcie.', + 'applied_rule_group_selection' => 'Skupina pravidiel „:title“ bola uplatnená na váš výber.', // actions and triggers - 'rule_trigger_store_journal' => 'Kedy bola transakcia vytvorená', - 'rule_trigger_update_journal' => 'Kedy bola transakcia aktualizovaná', - 'rule_trigger_user_action' => 'Použivateľská akcia je „:trigger_value“', + 'rule_trigger_store_journal' => 'Kedy bola transakcia vytvorená', + 'rule_trigger_update_journal' => 'Kedy bola transakcia aktualizovaná', + 'rule_trigger_user_action' => 'Použivateľská akcia je „:trigger_value“', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Názov zdrojového účtu začína..', - 'rule_trigger_source_account_starts' => 'Názov zdrojového účtu začína ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Názov zdrojového účtu končí..', - 'rule_trigger_source_account_ends' => 'Názov zdrojového účtu končí ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Názov zdrojového účtu je..', - 'rule_trigger_source_account_is' => 'Názov zdrojového účtu je ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Názov zdrojového účtu obsahuje..', - 'rule_trigger_source_account_contains' => 'Názov zdrojového účtu obsahuje ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID zdrojového účtu je presne..', - 'rule_trigger_source_account_id' => 'ID zdrojového účtu je presne :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Názov cieľového účtu je presne..', - 'rule_trigger_destination_account_id' => 'ID cieľového účtu je presne :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Zdrojový účet je (hotovostný) účet', - 'rule_trigger_source_is_cash' => 'Zdrojový účet je (hotovostný) účet', - 'rule_trigger_destination_is_cash_choice' => 'Cieľový účet je (hotovostný) účet', - 'rule_trigger_destination_is_cash' => 'Cieľový účet je (hotovostný) účet', - 'rule_trigger_source_account_nr_starts_choice' => 'Číslo cieľového účtu / IBAN začína..', - 'rule_trigger_source_account_nr_starts' => 'Číslo zdrojového účtu / IBAN začína ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Číslo zdrojového účtu / IBAN končí..', - 'rule_trigger_source_account_nr_ends' => 'Číslo zdrojového účtu končí ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Číslo zdrojového účtu / IBAN je..', - 'rule_trigger_source_account_nr_is' => 'Číslo zdrojového účtu je ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Číslo zdrojového účtu / IBAN obsahuje..', - 'rule_trigger_source_account_nr_contains' => 'Číslo zdrojového účtu obsahuje ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Názov cieľového účtu začína..', - 'rule_trigger_destination_account_starts' => 'Názov cieľového účtu začína ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Názov cieľového účtu končí..', - 'rule_trigger_destination_account_ends' => 'Názov cieľového účtu končí ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Názov cieľového účtu je..', - 'rule_trigger_destination_account_is' => 'Názov cieľového účtu je ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Názov cieľového účtu obsahuje..', - 'rule_trigger_destination_account_contains' => 'Názov cieľového účtu obsahuje ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Číslo cieľového účtu / IBAN začína..', - 'rule_trigger_destination_account_nr_starts' => 'Číslo cieľového účtu / IBAN začína ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Názov cieľového účtu / IBAN končí..', - 'rule_trigger_destination_account_nr_ends' => 'Číslo cieľového účtu / IBAN končí ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Názov cieľového účtu / IBAN je..', - 'rule_trigger_destination_account_nr_is' => 'Číslo cieľového účtu / IBAN je ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Názov cieľového účtu / IBAN obsahuje..', - 'rule_trigger_destination_account_nr_contains' => 'Číslo cieľového účtu / IBAN obsahuje ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transakcia je typu..', - 'rule_trigger_transaction_type' => 'Transakcia je typu ":trigger_value“', - 'rule_trigger_category_is_choice' => 'Kategória je..', - 'rule_trigger_category_is' => 'Kategória je „:trigger_value“', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Popis začína..', - 'rule_trigger_description_starts' => 'Popis začína ":trigger_value“', - 'rule_trigger_description_ends_choice' => 'Popis končí..', - 'rule_trigger_description_ends' => 'Popis končí ":trigger_value“', - 'rule_trigger_description_contains_choice' => 'Popis obsahuje..', - 'rule_trigger_description_contains' => 'Popis obsahuje ":trigger_value“', - 'rule_trigger_description_is_choice' => 'Popis je..', - 'rule_trigger_description_is' => 'Popis je ":trigger_value“', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Dátum transakcie je pred..', - 'rule_trigger_date_before' => 'Dátum transakcie je pred ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Dátum transakcie je po..', - 'rule_trigger_date_after' => 'Dátum transakcie je po ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Rozpočet je…', - 'rule_trigger_budget_is' => 'Rozpočet je „:trigger_value“', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Mena transakcie je..', - 'rule_trigger_currency_is' => 'Mena transakcie je „:trigger_value“', - 'rule_trigger_foreign_currency_is_choice' => 'Cudzia mena transakcie je..', - 'rule_trigger_foreign_currency_is' => 'Cudzia mena transakcie je ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Má počet príloh minimálne', - 'rule_trigger_has_attachments' => 'Má minimálne :trigger_value príloh', - 'rule_trigger_has_no_category_choice' => 'Nemá žiadnu kategóriu', - 'rule_trigger_has_no_category' => 'Transakcia nemá žiadnu kategóriu', - 'rule_trigger_has_any_category_choice' => 'Má (ľubovoľnú) kategóriu', - 'rule_trigger_has_any_category' => 'Transakcia má (ľubovoľnú) kategóriu', - 'rule_trigger_has_no_budget_choice' => 'Nemá žiadny rozpočet', - 'rule_trigger_has_no_budget' => 'Transakcia nemá žiadny rozpočet', - 'rule_trigger_has_any_budget_choice' => 'Má (ľubovoľný) rozpočet', - 'rule_trigger_has_any_budget' => 'Transakcia má (ľubovoľný) rozpočet', - 'rule_trigger_has_no_bill_choice' => 'Nemá žiadny účet', - 'rule_trigger_has_no_bill' => 'Transakcia nemá žiadny účet', - 'rule_trigger_has_any_bill_choice' => 'Má (ľubovoľný) účet', - 'rule_trigger_has_any_bill' => 'Transakcia má (ľubovoľný) účet', - 'rule_trigger_has_no_tag_choice' => 'Nemá žiadne štítky', - 'rule_trigger_has_no_tag' => 'Transakcia nemá žiadne štítky', - 'rule_trigger_has_any_tag_choice' => 'Má jeden alebo viac štítkov', - 'rule_trigger_has_any_tag' => 'Transakcia má jeden alebo viac štítkov', - 'rule_trigger_any_notes_choice' => 'Má (akékoľvek) poznámky', - 'rule_trigger_any_notes' => 'Transakcia má (akékoľvek) poznámky', - 'rule_trigger_no_notes_choice' => 'Nemá žiadne poznámky', - 'rule_trigger_no_notes' => 'Transakcia nemá žiadne poznámky', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Účet je..', - 'rule_trigger_bill_is' => 'Účet je ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID denníka transakcií je..', - 'rule_trigger_journal_id' => 'ID denníka transakcií je ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Názov zdrojového účtu začína..', + 'rule_trigger_source_account_starts' => 'Názov zdrojového účtu začína ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Názov zdrojového účtu končí..', + 'rule_trigger_source_account_ends' => 'Názov zdrojového účtu končí ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Názov zdrojového účtu je..', + 'rule_trigger_source_account_is' => 'Názov zdrojového účtu je ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Názov zdrojového účtu obsahuje..', + 'rule_trigger_source_account_contains' => 'Názov zdrojového účtu obsahuje ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID zdrojového účtu je presne..', + 'rule_trigger_source_account_id' => 'ID zdrojového účtu je presne :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Názov cieľového účtu je presne..', + 'rule_trigger_destination_account_id' => 'ID cieľového účtu je presne :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Zdrojový účet je (hotovostný) účet', + 'rule_trigger_source_is_cash' => 'Zdrojový účet je (hotovostný) účet', + 'rule_trigger_destination_is_cash_choice' => 'Cieľový účet je (hotovostný) účet', + 'rule_trigger_destination_is_cash' => 'Cieľový účet je (hotovostný) účet', + 'rule_trigger_source_account_nr_starts_choice' => 'Číslo cieľového účtu / IBAN začína..', + 'rule_trigger_source_account_nr_starts' => 'Číslo zdrojového účtu / IBAN začína ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Číslo zdrojového účtu / IBAN končí..', + 'rule_trigger_source_account_nr_ends' => 'Číslo zdrojového účtu končí ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Číslo zdrojového účtu / IBAN je..', + 'rule_trigger_source_account_nr_is' => 'Číslo zdrojového účtu je ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Číslo zdrojového účtu / IBAN obsahuje..', + 'rule_trigger_source_account_nr_contains' => 'Číslo zdrojového účtu obsahuje ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Názov cieľového účtu začína..', + 'rule_trigger_destination_account_starts' => 'Názov cieľového účtu začína ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Názov cieľového účtu končí..', + 'rule_trigger_destination_account_ends' => 'Názov cieľového účtu končí ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Názov cieľového účtu je..', + 'rule_trigger_destination_account_is' => 'Názov cieľového účtu je ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Názov cieľového účtu obsahuje..', + 'rule_trigger_destination_account_contains' => 'Názov cieľového účtu obsahuje ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Číslo cieľového účtu / IBAN začína..', + 'rule_trigger_destination_account_nr_starts' => 'Číslo cieľového účtu / IBAN začína ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Názov cieľového účtu / IBAN končí..', + 'rule_trigger_destination_account_nr_ends' => 'Číslo cieľového účtu / IBAN končí ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Názov cieľového účtu / IBAN je..', + 'rule_trigger_destination_account_nr_is' => 'Číslo cieľového účtu / IBAN je ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Názov cieľového účtu / IBAN obsahuje..', + 'rule_trigger_destination_account_nr_contains' => 'Číslo cieľového účtu / IBAN obsahuje ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transakcia je typu..', + 'rule_trigger_transaction_type' => 'Transakcia je typu ":trigger_value“', + 'rule_trigger_category_is_choice' => 'Kategória je..', + 'rule_trigger_category_is' => 'Kategória je „:trigger_value“', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Popis začína..', + 'rule_trigger_description_starts' => 'Popis začína ":trigger_value“', + 'rule_trigger_description_ends_choice' => 'Popis končí..', + 'rule_trigger_description_ends' => 'Popis končí ":trigger_value“', + 'rule_trigger_description_contains_choice' => 'Popis obsahuje..', + 'rule_trigger_description_contains' => 'Popis obsahuje ":trigger_value“', + 'rule_trigger_description_is_choice' => 'Popis je..', + 'rule_trigger_description_is' => 'Popis je ":trigger_value“', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Dátum transakcie je pred..', + 'rule_trigger_date_before' => 'Dátum transakcie je pred ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Dátum transakcie je po..', + 'rule_trigger_date_after' => 'Dátum transakcie je po ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Rozpočet je…', + 'rule_trigger_budget_is' => 'Rozpočet je „:trigger_value“', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Mena transakcie je..', + 'rule_trigger_currency_is' => 'Mena transakcie je „:trigger_value“', + 'rule_trigger_foreign_currency_is_choice' => 'Cudzia mena transakcie je..', + 'rule_trigger_foreign_currency_is' => 'Cudzia mena transakcie je ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Má počet príloh minimálne', + 'rule_trigger_has_attachments' => 'Má minimálne :trigger_value príloh', + 'rule_trigger_has_no_category_choice' => 'Nemá žiadnu kategóriu', + 'rule_trigger_has_no_category' => 'Transakcia nemá žiadnu kategóriu', + 'rule_trigger_has_any_category_choice' => 'Má (ľubovoľnú) kategóriu', + 'rule_trigger_has_any_category' => 'Transakcia má (ľubovoľnú) kategóriu', + 'rule_trigger_has_no_budget_choice' => 'Nemá žiadny rozpočet', + 'rule_trigger_has_no_budget' => 'Transakcia nemá žiadny rozpočet', + 'rule_trigger_has_any_budget_choice' => 'Má (ľubovoľný) rozpočet', + 'rule_trigger_has_any_budget' => 'Transakcia má (ľubovoľný) rozpočet', + 'rule_trigger_has_no_bill_choice' => 'Nemá žiadny účet', + 'rule_trigger_has_no_bill' => 'Transakcia nemá žiadny účet', + 'rule_trigger_has_any_bill_choice' => 'Má (ľubovoľný) účet', + 'rule_trigger_has_any_bill' => 'Transakcia má (ľubovoľný) účet', + 'rule_trigger_has_no_tag_choice' => 'Nemá žiadne štítky', + 'rule_trigger_has_no_tag' => 'Transakcia nemá žiadne štítky', + 'rule_trigger_has_any_tag_choice' => 'Má jeden alebo viac štítkov', + 'rule_trigger_has_any_tag' => 'Transakcia má jeden alebo viac štítkov', + 'rule_trigger_any_notes_choice' => 'Má (akékoľvek) poznámky', + 'rule_trigger_any_notes' => 'Transakcia má (akékoľvek) poznámky', + 'rule_trigger_no_notes_choice' => 'Nemá žiadne poznámky', + 'rule_trigger_no_notes' => 'Transakcia nemá žiadne poznámky', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Účet je..', + 'rule_trigger_bill_is' => 'Účet je ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID denníka transakcií je..', + 'rule_trigger_journal_id' => 'ID denníka transakcií je ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Nastaviť kategóriu na „:action_value“', - 'rule_action_clear_category' => 'Odstrániť kategóriu', - 'rule_action_set_budget' => 'Nastaviť rozpočet na „:action_value“', - 'rule_action_clear_budget' => 'Odstrániť rozpočet', - 'rule_action_add_tag' => 'Pridať štítok „:action_value“', - 'rule_action_remove_tag' => 'Odsteániť štítok „:action_value“', - 'rule_action_remove_all_tags' => 'Odstrániť všetky štítky', - 'rule_action_set_description' => 'Nastaviť popis na „:action_value“', - 'rule_action_append_description' => 'Pripojiť popis s „:action_value“', - 'rule_action_prepend_description' => 'Pred popis pridať „:action_value“', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Odstrániť všetky kategórie', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Odsteániť všetky rozpočty', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Odstrániť všetky štítky', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Nastaviť účet na :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Nastaviť cieľový účet na :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Pridať za poznámky „:action_value“', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Pridať pred poznámky „:action_value“', - 'rule_action_clear_notes_choice' => 'Odstrániť všetky poznámky', - 'rule_action_clear_notes' => 'Odstrániť všetky poznámky', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Prepojiť s účtom ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Nastavit poznámky na „:action_value“', - 'rule_action_convert_deposit_choice' => 'Zmeniť túto transakciu na vklad', - 'rule_action_convert_deposit' => 'Zmeniť túto transakciu z vkladu na „:action_value“', - 'rule_action_convert_withdrawal_choice' => 'Zmeniť transakciu na výběr', - 'rule_action_convert_withdrawal' => 'Zmeniť túto transakciu na vklad do „:action_value“', - 'rule_action_convert_transfer_choice' => 'Zmeniť túto transakciu na prevod', - 'rule_action_convert_transfer' => 'Zmeniť túto transakciu na prevod s „:action_value“', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Skupina pravidiel pre účty', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Vytvoriť nové pravidlo pre účet ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Pravidlo pre účet ":name"', - 'new_rule_for_bill_description' => 'Toto pravidlo označuje transakcie pre účet ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Nastaviť kategóriu na „:action_value“', + 'rule_action_clear_category' => 'Odstrániť kategóriu', + 'rule_action_set_budget' => 'Nastaviť rozpočet na „:action_value“', + 'rule_action_clear_budget' => 'Odstrániť rozpočet', + 'rule_action_add_tag' => 'Pridať štítok „:action_value“', + 'rule_action_remove_tag' => 'Odsteániť štítok „:action_value“', + 'rule_action_remove_all_tags' => 'Odstrániť všetky štítky', + 'rule_action_set_description' => 'Nastaviť popis na „:action_value“', + 'rule_action_append_description' => 'Pripojiť popis s „:action_value“', + 'rule_action_prepend_description' => 'Pred popis pridať „:action_value“', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Odstrániť všetky kategórie', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Odsteániť všetky rozpočty', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Odstrániť všetky štítky', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Nastaviť účet na :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Nastaviť cieľový účet na :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Pridať za poznámky „:action_value“', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Pridať pred poznámky „:action_value“', + 'rule_action_clear_notes_choice' => 'Odstrániť všetky poznámky', + 'rule_action_clear_notes' => 'Odstrániť všetky poznámky', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Prepojiť s účtom ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Nastavit poznámky na „:action_value“', + 'rule_action_convert_deposit_choice' => 'Zmeniť túto transakciu na vklad', + 'rule_action_convert_deposit' => 'Zmeniť túto transakciu z vkladu na „:action_value“', + 'rule_action_convert_withdrawal_choice' => 'Zmeniť transakciu na výběr', + 'rule_action_convert_withdrawal' => 'Zmeniť túto transakciu na vklad do „:action_value“', + 'rule_action_convert_transfer_choice' => 'Zmeniť túto transakciu na prevod', + 'rule_action_convert_transfer' => 'Zmeniť túto transakciu na prevod s „:action_value“', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Skupina pravidiel pre účty', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Vytvoriť nové pravidlo pre účet ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Pravidlo pre účet ":name"', + 'new_rule_for_bill_description' => 'Toto pravidlo označuje transakcie pre účet ":name".', - 'new_rule_for_journal_title' => 'Pravidlo založené na transakcii ":description"', - 'new_rule_for_journal_description' => 'Toto pravidlo je založené na transakcii ":description". Zachytí transakcie, ktoré sú presne také isté.', + 'new_rule_for_journal_title' => 'Pravidlo založené na transakcii ":description"', + 'new_rule_for_journal_description' => 'Toto pravidlo je založené na transakcii ":description". Zachytí transakcie, ktoré sú presne také isté.', // tags - 'store_new_tag' => 'Uložiť nový štítok', - 'update_tag' => 'Upraviť štítok', - 'no_location_set' => 'Žiadna poloha.', - 'meta_data' => 'Metadata', - 'location' => 'Poloha', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Bez dátumu', - 'result' => 'Výsledok', - 'sums_apply_to_range' => 'Všetky súčty sa vzťahujú na vybraný rozsah', - 'mapbox_api_key' => 'Pre použitie mapy získajte API kľúč z Mapboxu. Otvorte súbor .env a tento kľúč vložte za MAPBOX_API_KEY=.', - 'press_object_location' => 'Pre nastavenie pozície objektu kliknite pravým tlačítkom alebo kliknite a podržte.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Odstrániť pozíciu', - 'delete_all_selected_tags' => 'Odstrániť všetky vybraté štítky', - 'select_tags_to_delete' => 'Nezabudnite vybrať nejaké štítky.', - 'deleted_x_tags' => ':count štítok bol odstránený.|:count štítkov bolo odstránených.', - 'create_rule_from_transaction' => 'Vytvoriť na základe transakcie štítok', - 'create_recurring_from_transaction' => 'Vytvoriť na základe transakcie opakovanú transakciu', + 'store_new_tag' => 'Uložiť nový štítok', + 'update_tag' => 'Upraviť štítok', + 'no_location_set' => 'Žiadna poloha.', + 'meta_data' => 'Metadata', + 'location' => 'Poloha', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Bez dátumu', + 'result' => 'Výsledok', + 'sums_apply_to_range' => 'Všetky súčty sa vzťahujú na vybraný rozsah', + 'mapbox_api_key' => 'Pre použitie mapy získajte API kľúč z Mapboxu. Otvorte súbor .env a tento kľúč vložte za MAPBOX_API_KEY=.', + 'press_object_location' => 'Pre nastavenie pozície objektu kliknite pravým tlačítkom alebo kliknite a podržte.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Odstrániť pozíciu', + 'delete_all_selected_tags' => 'Odstrániť všetky vybraté štítky', + 'select_tags_to_delete' => 'Nezabudnite vybrať nejaké štítky.', + 'deleted_x_tags' => ':count štítok bol odstránený.|:count štítkov bolo odstránených.', + 'create_rule_from_transaction' => 'Vytvoriť na základe transakcie štítok', + 'create_recurring_from_transaction' => 'Vytvoriť na základe transakcie opakovanú transakciu', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(rovné jazyku)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Účty na úvodnej obrazovke', - 'pref_home_screen_accounts_help' => 'Ktoré účty zobraziť na úvodnej stránke?', - 'pref_view_range' => 'Zobraziť rozsah', - 'pref_view_range_help' => 'Niektoré grafy sú automaticky zoskupené podľa období. Vaše rozpočty budú tiež zoskupené podľa období. Aké obdobie by ste uprednostnili?', - 'pref_1D' => 'Jeden deň', - 'pref_1W' => 'Jeden týždeň', - 'pref_1M' => 'Jeden mesiac', - 'pref_3M' => 'Tri mesiace (štvrťrok)', - 'pref_6M' => 'Šesť mesiacov', - 'pref_1Y' => 'Jeden rok', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Jazyky', - 'pref_locale' => 'Miestne nastavenia', - 'pref_languages_help' => 'Firefly III podporuje niekoľko jazykov – v ktorom ho chcete používať?', - 'pref_locale_help' => 'Firefly III vám umožňuje nastaviť ďalšie nastavenia, ako napríklad formátovanie mien, čísel a údajov. Položky v tomto zozname nemusia byť podporované vašim systémom. Firefly III nemá správne nastavené správne údaje pre všetky lokalizácie. Pre vylepšenie ma kontaktujte.', - 'pref_locale_no_demo' => 'Táto vlastnosť nebude pre demo použivateľa fungovať.', - 'pref_custom_fiscal_year' => 'Nastavenie fiškálneho roku', - 'pref_custom_fiscal_year_label' => 'Zapnuté', - 'pref_custom_fiscal_year_help' => 'Pre krajiny, v ktorých fiškálny rok nezačína 1. januára a tým pádom ani nekončí 31. decembra, je tu možné nastaviť iný začiatok a koniec', - 'pref_fiscal_year_start_label' => 'Dátum začiatku fiškálneho roka', - 'pref_two_factor_auth' => 'Dvojfázové overenie', - 'pref_two_factor_auth_help' => 'Keď povolíte dvojstupňové overenie (známe tiež ako dvojfaktorové overenie), pridáte do svojho účtu ďalšiu vrstvu zabezpečenia. Prihlásite sa pomocou niečoho, čo viete (svoje heslo), a toho, čo máte (verifikačný kód). Overovacie kódy generuje aplikácia vo vašom telefóne, napríklad Authy alebo Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Zapnúť dvojfázové overenie', - 'pref_two_factor_auth_disabled' => 'Dvojkrokové overenie odstránené a vypnuté', - 'pref_two_factor_auth_remove_it' => 'Nezabudnite tento účet odstrániť z overovacej aplikácie!', - 'pref_two_factor_auth_code' => 'Overiť kód', - 'pref_two_factor_auth_code_help' => 'Naskenujte QR kód v aplikácii na vašom telefóne (napríklad Authy alebo Google Authenticator) a vložte aplikáciou vytvorený kód.', - 'pref_two_factor_auth_reset_code' => 'Obnoviť overovací kód', - 'pref_two_factor_auth_disable_2fa' => 'Vypnúť dvojkrokové overenie', - '2fa_use_secret_instead' => 'Ak nemôžete naskenovať QR kód, použite namiesto neho tajný kľúč: :secret.', - '2fa_backup_codes' => 'Tieto záložné kódy si odložte, pre prípad straty vášho zariadenia.', - '2fa_already_enabled' => 'Dvojkrokové overenie je už zapnuté.', - 'wrong_mfa_code' => 'Tento MFA kód nie je platný.', - 'pref_save_settings' => 'Uložiť nastavenia', - 'saved_preferences' => 'Predvoľby uložené!', - 'preferences_general' => 'Všeobecné', - 'preferences_frontpage' => 'Úvodná obrazovka', - 'preferences_security' => 'Zabezpečenie', - 'preferences_layout' => 'Rozvrhnutie', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Zobrazovať vklady na úvodnej obrazovke', - 'pref_home_show_deposits_info' => 'Úvodná obrazovka už zobrazuje vaše výdavkové účty. Majú sa zobraziť aj príjmové?', - 'pref_home_do_show_deposits' => 'Áno, zobraziť ich', - 'successful_count' => 'z toho :count úspešné', - 'list_page_size_title' => 'Počet na stranu', - 'list_page_size_help' => 'Akýkoľvek zoznam údajov (účty, transakcie, atď) zobrazuje toto maximum na stránku.', - 'list_page_size_label' => 'Veľkosť stránky', - 'between_dates' => '(:start a :end)', - 'pref_optional_fields_transaction' => 'Voliteľné údaje pre transakcie', - 'pref_optional_fields_transaction_help' => 'Pri vytváraní novej transakcie nie sú predvolene povolené všetky polia (kvôli neprehľadnosti). Nižšie môžete tieto polia povoliť, ak si myslíte, že by mohli byť pre vás užitočné. Samozrejme, každé pole, ktoré je zakázané, ale už je vyplnené, bude viditeľné bez ohľadu na nastavenie.', - 'optional_tj_date_fields' => 'Políčka pre dátum', - 'optional_tj_other_fields' => 'Iné údaje', - 'optional_tj_attachment_fields' => 'Políčka pre prílohy', - 'pref_optional_tj_interest_date' => 'Úrokový dátum', - 'pref_optional_tj_book_date' => 'Dátum rezervácie', - 'pref_optional_tj_process_date' => 'Dátum spracovania', - 'pref_optional_tj_due_date' => 'Dátum splatnosti', - 'pref_optional_tj_payment_date' => 'Dátum úhrady', - 'pref_optional_tj_invoice_date' => 'Dátum vystavenia', - 'pref_optional_tj_internal_reference' => 'Interná referencia', - 'pref_optional_tj_notes' => 'Poznámky', - 'pref_optional_tj_attachments' => 'Prílohy', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Poloha', - 'pref_optional_tj_links' => 'Prepojenia transakcie', - 'optional_field_meta_dates' => 'Dátumy', - 'optional_field_meta_business' => 'Spoločnosť', - 'optional_field_attachments' => 'Prílohy', - 'optional_field_meta_data' => 'Voliteľné metadata', - 'external_url' => 'Externá URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(rovné jazyku)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Účty na úvodnej obrazovke', + 'pref_home_screen_accounts_help' => 'Ktoré účty zobraziť na úvodnej stránke?', + 'pref_view_range' => 'Zobraziť rozsah', + 'pref_view_range_help' => 'Niektoré grafy sú automaticky zoskupené podľa období. Vaše rozpočty budú tiež zoskupené podľa období. Aké obdobie by ste uprednostnili?', + 'pref_1D' => 'Jeden deň', + 'pref_1W' => 'Jeden týždeň', + 'pref_1M' => 'Jeden mesiac', + 'pref_3M' => 'Tri mesiace (štvrťrok)', + 'pref_6M' => 'Šesť mesiacov', + 'pref_1Y' => 'Jeden rok', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Jazyky', + 'pref_locale' => 'Miestne nastavenia', + 'pref_languages_help' => 'Firefly III podporuje niekoľko jazykov – v ktorom ho chcete používať?', + 'pref_locale_help' => 'Firefly III vám umožňuje nastaviť ďalšie nastavenia, ako napríklad formátovanie mien, čísel a údajov. Položky v tomto zozname nemusia byť podporované vašim systémom. Firefly III nemá správne nastavené správne údaje pre všetky lokalizácie. Pre vylepšenie ma kontaktujte.', + 'pref_locale_no_demo' => 'Táto vlastnosť nebude pre demo použivateľa fungovať.', + 'pref_custom_fiscal_year' => 'Nastavenie fiškálneho roku', + 'pref_custom_fiscal_year_label' => 'Zapnuté', + 'pref_custom_fiscal_year_help' => 'Pre krajiny, v ktorých fiškálny rok nezačína 1. januára a tým pádom ani nekončí 31. decembra, je tu možné nastaviť iný začiatok a koniec', + 'pref_fiscal_year_start_label' => 'Dátum začiatku fiškálneho roka', + 'pref_two_factor_auth' => 'Dvojfázové overenie', + 'pref_two_factor_auth_help' => 'Keď povolíte dvojstupňové overenie (známe tiež ako dvojfaktorové overenie), pridáte do svojho účtu ďalšiu vrstvu zabezpečenia. Prihlásite sa pomocou niečoho, čo viete (svoje heslo), a toho, čo máte (verifikačný kód). Overovacie kódy generuje aplikácia vo vašom telefóne, napríklad Authy alebo Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Zapnúť dvojfázové overenie', + 'pref_two_factor_auth_disabled' => 'Dvojkrokové overenie odstránené a vypnuté', + 'pref_two_factor_auth_remove_it' => 'Nezabudnite tento účet odstrániť z overovacej aplikácie!', + 'pref_two_factor_auth_code' => 'Overiť kód', + 'pref_two_factor_auth_code_help' => 'Naskenujte QR kód v aplikácii na vašom telefóne (napríklad Authy alebo Google Authenticator) a vložte aplikáciou vytvorený kód.', + 'pref_two_factor_auth_reset_code' => 'Obnoviť overovací kód', + 'pref_two_factor_auth_disable_2fa' => 'Vypnúť dvojkrokové overenie', + '2fa_use_secret_instead' => 'Ak nemôžete naskenovať QR kód, použite namiesto neho tajný kľúč: :secret.', + '2fa_backup_codes' => 'Tieto záložné kódy si odložte, pre prípad straty vášho zariadenia.', + '2fa_already_enabled' => 'Dvojkrokové overenie je už zapnuté.', + 'wrong_mfa_code' => 'Tento MFA kód nie je platný.', + 'pref_save_settings' => 'Uložiť nastavenia', + 'saved_preferences' => 'Predvoľby uložené!', + 'preferences_general' => 'Všeobecné', + 'preferences_frontpage' => 'Úvodná obrazovka', + 'preferences_security' => 'Zabezpečenie', + 'preferences_layout' => 'Rozvrhnutie', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Zobrazovať vklady na úvodnej obrazovke', + 'pref_home_show_deposits_info' => 'Úvodná obrazovka už zobrazuje vaše výdavkové účty. Majú sa zobraziť aj príjmové?', + 'pref_home_do_show_deposits' => 'Áno, zobraziť ich', + 'successful_count' => 'z toho :count úspešné', + 'list_page_size_title' => 'Počet na stranu', + 'list_page_size_help' => 'Akýkoľvek zoznam údajov (účty, transakcie, atď) zobrazuje toto maximum na stránku.', + 'list_page_size_label' => 'Veľkosť stránky', + 'between_dates' => '(:start a :end)', + 'pref_optional_fields_transaction' => 'Voliteľné údaje pre transakcie', + 'pref_optional_fields_transaction_help' => 'Pri vytváraní novej transakcie nie sú predvolene povolené všetky polia (kvôli neprehľadnosti). Nižšie môžete tieto polia povoliť, ak si myslíte, že by mohli byť pre vás užitočné. Samozrejme, každé pole, ktoré je zakázané, ale už je vyplnené, bude viditeľné bez ohľadu na nastavenie.', + 'optional_tj_date_fields' => 'Políčka pre dátum', + 'optional_tj_other_fields' => 'Iné údaje', + 'optional_tj_attachment_fields' => 'Políčka pre prílohy', + 'pref_optional_tj_interest_date' => 'Úrokový dátum', + 'pref_optional_tj_book_date' => 'Dátum rezervácie', + 'pref_optional_tj_process_date' => 'Dátum spracovania', + 'pref_optional_tj_due_date' => 'Dátum splatnosti', + 'pref_optional_tj_payment_date' => 'Dátum úhrady', + 'pref_optional_tj_invoice_date' => 'Dátum vystavenia', + 'pref_optional_tj_internal_reference' => 'Interná referencia', + 'pref_optional_tj_notes' => 'Poznámky', + 'pref_optional_tj_attachments' => 'Prílohy', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Poloha', + 'pref_optional_tj_links' => 'Prepojenia transakcie', + 'optional_field_meta_dates' => 'Dátumy', + 'optional_field_meta_business' => 'Spoločnosť', + 'optional_field_attachments' => 'Prílohy', + 'optional_field_meta_data' => 'Voliteľné metadata', + 'external_url' => 'Externá URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Všetky vaše sedenia boli odhlásené.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Odstrániť VŠETKY vaše rozpočty', - 'delete_all_categories' => 'Odstrániť VŠETKY vaše kategórie', - 'delete_all_tags' => 'Odstrániť VŠETKY vaše štítky', - 'delete_all_bills' => 'Odstrániť VŠETKY vaše účty', - 'delete_all_piggy_banks' => 'Odstrániť VŠETKY vaše pokladničky', - 'delete_all_rules' => 'Odstrániť VŠETKY vaše pravidlá', - 'delete_all_recurring' => 'Odstrániť VŠETKY vaše opakujúce sa transakcie', - 'delete_all_object_groups' => 'Odstrániť VŠETKY vaše skupiny objektov', - 'delete_all_accounts' => 'Odstrániť VŠETKY vaše účty', - 'delete_all_asset_accounts' => 'Odstrániť VŠETKY vaše účty aktív', - 'delete_all_expense_accounts' => 'Odstrániť VŠETKY výdavkové účty', - 'delete_all_revenue_accounts' => 'Odstrániť VŠETKY vaše výnosové účty', - 'delete_all_liabilities' => 'Odstrániť VŠETKY vaše záväzky', - 'delete_all_transactions' => 'Odstrániť VŠETKY vaše transakcie', - 'delete_all_withdrawals' => 'Odstrániť VŠETKY vaše výbery', - 'delete_all_deposits' => 'Odstrániť VŠETKY vaše vklady', - 'delete_all_transfers' => 'Odstrániť VŠETKY vaše prevody', - 'also_delete_transactions' => 'Odstránením účtov sa tiež odstránia VŠETKY previazané výbery, vklady a prevody!', - 'deleted_all_budgets' => 'Všetky rozpočty boli odstránené', - 'deleted_all_categories' => 'Všetky kategórie boli odstránené', - 'deleted_all_tags' => 'Všetky štítky boli odstránené', - 'deleted_all_bills' => 'Všetky účty boli odstránené', - 'deleted_all_piggy_banks' => 'Všetky pokladničky boli odstránené', - 'deleted_all_rules' => 'Všetky pravidlá a skupiny pravidiel boli odstránené', - 'deleted_all_object_groups' => 'Všetky skupiny boli odstránené', - 'deleted_all_accounts' => 'Všetky účty boli odstránené', - 'deleted_all_asset_accounts' => 'Všetky účty aktív boli odstránené', - 'deleted_all_expense_accounts' => 'Všetky výdavkové účty boli odstránené', - 'deleted_all_revenue_accounts' => 'Všetky výnosové účty boli odstránené', - 'deleted_all_liabilities' => 'Všetky záväzky boli odstránené', - 'deleted_all_transactions' => 'Všetky transakcie boli odstránené', - 'deleted_all_withdrawals' => 'Všetky výbery boli odstránené', - 'deleted_all_deposits' => 'Všetky vklady boli odstránené', - 'deleted_all_transfers' => 'Všetky prevody boli odstránené', - 'deleted_all_recurring' => 'Všetky opakované transakcie boli odstránené', - 'change_your_password' => 'Zmeňte si heslo', - 'delete_account' => 'Odstrániť účet', - 'current_password' => 'Aktuálne heslo', - 'new_password' => 'Nové heslo', - 'new_password_again' => 'Nové heslo (kontrola)', - 'delete_your_account' => 'Odstráňte svoj účet', - 'delete_your_account_help' => 'Pri odstránení vášho účtu sa zmažú všetky účty, transakcie, všetko, čo ste vo Firefly III uložili. Bude to PREČ.', - 'delete_your_account_password' => 'Pokračujte zadaním svojho hesla.', - 'password' => 'Heslo', - 'are_you_sure' => 'Ste si istí? Túto akciu nie je možné vrátiť späť.', - 'delete_account_button' => 'Odstrániť účet', - 'invalid_current_password' => 'Neplatné aktuálne heslo!', - 'password_changed' => 'Heslo zmenené!', - 'should_change' => 'Cieľom je zmeniť vaše heslo.', - 'invalid_password' => 'Neplatné heslo!', - 'what_is_pw_security' => 'Čo znamená „overiť bezpečnosť hesla“?', - 'secure_pw_title' => 'Ako zvoliť bezpečné heslo', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Neprejde týždeň, aby sme nevideli správy o ďalšej stránke, ktorá prišla o databázu hesiel svojich použivateľov. Hackeri a zlodeji tieto heslá používajú pre pokusy o ukradnutie vašich súkromných informácií. Informácie sú cenné.', - 'secure_pw_ff' => 'Používate rovnaké heslo na viacerých webových službách? Ak jedna z nich príde o vaše heslo, hackeri získajú prístup k všetkým z nich. Firefly III sa spolieha na to, že si zvolíte silné a inde nepoužívané heslo pre ochranu vašich finančných záznamov.', - 'secure_pw_check_box' => 'Firefly III môže pre vás skontrolovať heslo, ktoré chcete použiť, či nebolo v minulosti odcudzené. V takom prípade vám ho NEodporučí použiť.', - 'secure_pw_working_title' => 'Ako to funguje?', - 'secure_pw_working' => 'Zaškrtnutím tohto políčka Firefly III odošle prvých päť znakov hash vášho hesla SHA1 na web Troy Hunt a zistí, či je vaše heslo na zozname. To vám zabráni v používaní nebezpečných hesiel, ako sa odporúča v najnovšej špeciálnej publikácii NIST týkajúcej sa bezpečnosti.', - 'secure_pw_should' => 'Mám to zaškrtnúť?', - 'secure_pw_long_password' => 'Áno, vždy overiť bezpečnosť hesla.', - 'command_line_token' => 'Token pre príkazový riadok', - 'explain_command_line_token' => 'Tento token potrebujete na vykonávanie možností príkazového riadku, ako je napríklad export údajov. Bez toho tento citlivý príkaz nebude fungovať. Nezdieľajte svoj token príkazového riadku. Nikto od vás nebude žiadať tento token, ani ja. Ak sa bojíte, že ste to stratili, alebo keď ste paranoidní, regenerujte tento token pomocou tlačidla.', - 'regenerate_command_line_token' => 'Pregenerovať token príkazového riadka', - 'token_regenerated' => 'Nový token pre príkazový riadok bol vytvorený', - 'change_your_email' => 'Zmena e-mailovej adresy', - 'email_verification' => 'E-mailová správa bude zaslaná na vašu starú A novú e-mailovú adresu. Z bezpečnostných dôvodov sa nebudete môcť prihlásiť, kým neoveríte svoju novú e-mailovú adresu. Ak si nie ste istí, či je vaša inštalácia Firefly III schopná odosielať e-maily, nepoužívajte túto funkciu. Ak ste správcom, môžete to otestovať v časti Správa.', - 'email_changed_logout' => 'Kým neoveríte svoju e-mailovú adresu, nemôžete sa prihlásiť.', - 'login_with_new_email' => 'Teraz sa môžete prihlásiť so svojou novou e-mailovou adresou.', - 'login_with_old_email' => 'Teraz sa môžete prihlásiť so svojou starou e-mailovou adresou.', - 'login_provider_local_only' => 'Táto akcia nie je k dispozícii pri autentifikácii prostredníctvom „:login_provider“.', - 'external_user_mgt_disabled' => 'Táto akcia nie je k dispozícii, keď Firefly III nie je zodpovedný za správu používateľov alebo manipuláciu s autentifikáciou.', - 'external_auth_disabled' => 'Táto akcia nie je dostupná, ak Firefly III nie je zodpovedný za autentifikáciu.', - 'delete_local_info_only' => 'Pretože Firefly III nie je zodpovedný za správu používateľov alebo manipuláciu s autentifikáciou, táto funkcia vymaže iba miestne informácie Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth klienti', - 'profile_oauth_no_clients' => 'Zatiaľ ste nevytvorili žiadneho OAuth klienta.', - '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_header' => 'Klienti', - 'profile_oauth_client_id' => 'ID klienta', - 'profile_oauth_client_name' => 'Meno/Názov', - 'profile_oauth_client_secret' => 'Tajný kľúč', - 'profile_oauth_create_new_client' => 'Vytvoriť nového klienta', - 'profile_oauth_create_client' => 'Vytvoriť klienta', - 'profile_oauth_edit_client' => 'Upraviť klienta', - 'profile_oauth_name_help' => 'Niečo, čo vaši použivatelia poznajú a budú tomu dôverovať.', - 'profile_oauth_redirect_url' => 'URL presmerovania', - 'profile_oauth_redirect_url_help' => 'Spätná URL pre overenie autorizácie vašej aplikácie.', - 'profile_authorized_apps' => 'Povolené aplikácie', - 'profile_authorized_clients' => 'Autorizovaní klienti', - 'profile_scopes' => 'Rozsahy', - 'profile_revoke' => 'Odvolať', - 'profile_oauth_client_secret_title' => 'Tajný kľúč klienta', - 'profile_oauth_client_secret_expl' => 'Toto je váš tajný kľúč klienta. Toto je jediný raz, kedy sa zobrazí - nestraťte ho! Odteraz môžete tento tajný kľúč používať pre prístup k API.', - 'profile_personal_access_tokens' => 'Osobné prístupové tokeny', - 'profile_personal_access_token' => 'Osobný prístupový token', - 'profile_oauth_confidential' => 'Dôverné', - 'profile_oauth_confidential_help' => 'Vyžadujte od klienta autentifikáciu pomocou tajného kľúča. Dôverní klienti môžu uchovávať poverenia bezpečným spôsobom bez toho, aby boli vystavení neoprávneným stranám. Verejné aplikácie, ako napríklad natívna pracovná plocha alebo aplikácie Java SPA, nedokážu tajné kľúče bezpečne uchovať.', - 'profile_personal_access_token_explanation' => 'Toto je váš nový osobný prístupový token. Toto je jediný raz, kedy sa zobrazí - nestraťte ho! Odteraz ho môžete používať pre prístup k API.', - 'profile_no_personal_access_token' => 'Ešte ste nevytvorili žiadne osobné prístupové tokeny.', - 'profile_create_new_token' => 'Vytvoriť nový token', - 'profile_create_token' => 'Vytvoriť token', - 'profile_create' => 'Vytvoriť', - 'profile_save_changes' => 'Uložiť zmeny', - 'profile_whoops' => 'Ajaj!', - 'profile_something_wrong' => 'Niečo sa pokazilo!', - 'profile_try_again' => 'Niečo sa pokazilo. Prosím, skúste znova.', - 'amounts' => 'Suma', - 'multi_account_warning_unknown' => 'V závislosti od typu vytvorenej transakcie, môže byť zdrojový a/alebo cieľový účet následných rozúčtovaní prepísaný údajmi v prvom rozdelení transakcie.', - 'multi_account_warning_withdrawal' => 'Majte na pamäti, že zdrojový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozdelení výberu.', - 'multi_account_warning_deposit' => 'Majte na pamäti, že zdrojový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozúčtovaní vkladu.', - 'multi_account_warning_transfer' => 'Majte na pamäti, že zdrojový a cieľový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozúčtovaní prevodu.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Všetky vaše sedenia boli odhlásené.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Odstrániť VŠETKY vaše rozpočty', + 'delete_all_categories' => 'Odstrániť VŠETKY vaše kategórie', + 'delete_all_tags' => 'Odstrániť VŠETKY vaše štítky', + 'delete_all_bills' => 'Odstrániť VŠETKY vaše účty', + 'delete_all_piggy_banks' => 'Odstrániť VŠETKY vaše pokladničky', + 'delete_all_rules' => 'Odstrániť VŠETKY vaše pravidlá', + 'delete_all_recurring' => 'Odstrániť VŠETKY vaše opakujúce sa transakcie', + 'delete_all_object_groups' => 'Odstrániť VŠETKY vaše skupiny objektov', + 'delete_all_accounts' => 'Odstrániť VŠETKY vaše účty', + 'delete_all_asset_accounts' => 'Odstrániť VŠETKY vaše účty aktív', + 'delete_all_expense_accounts' => 'Odstrániť VŠETKY výdavkové účty', + 'delete_all_revenue_accounts' => 'Odstrániť VŠETKY vaše výnosové účty', + 'delete_all_liabilities' => 'Odstrániť VŠETKY vaše záväzky', + 'delete_all_transactions' => 'Odstrániť VŠETKY vaše transakcie', + 'delete_all_withdrawals' => 'Odstrániť VŠETKY vaše výbery', + 'delete_all_deposits' => 'Odstrániť VŠETKY vaše vklady', + 'delete_all_transfers' => 'Odstrániť VŠETKY vaše prevody', + 'also_delete_transactions' => 'Odstránením účtov sa tiež odstránia VŠETKY previazané výbery, vklady a prevody!', + 'deleted_all_budgets' => 'Všetky rozpočty boli odstránené', + 'deleted_all_categories' => 'Všetky kategórie boli odstránené', + 'deleted_all_tags' => 'Všetky štítky boli odstránené', + 'deleted_all_bills' => 'Všetky účty boli odstránené', + 'deleted_all_piggy_banks' => 'Všetky pokladničky boli odstránené', + 'deleted_all_rules' => 'Všetky pravidlá a skupiny pravidiel boli odstránené', + 'deleted_all_object_groups' => 'Všetky skupiny boli odstránené', + 'deleted_all_accounts' => 'Všetky účty boli odstránené', + 'deleted_all_asset_accounts' => 'Všetky účty aktív boli odstránené', + 'deleted_all_expense_accounts' => 'Všetky výdavkové účty boli odstránené', + 'deleted_all_revenue_accounts' => 'Všetky výnosové účty boli odstránené', + 'deleted_all_liabilities' => 'Všetky záväzky boli odstránené', + 'deleted_all_transactions' => 'Všetky transakcie boli odstránené', + 'deleted_all_withdrawals' => 'Všetky výbery boli odstránené', + 'deleted_all_deposits' => 'Všetky vklady boli odstránené', + 'deleted_all_transfers' => 'Všetky prevody boli odstránené', + 'deleted_all_recurring' => 'Všetky opakované transakcie boli odstránené', + 'change_your_password' => 'Zmeňte si heslo', + 'delete_account' => 'Odstrániť účet', + 'current_password' => 'Aktuálne heslo', + 'new_password' => 'Nové heslo', + 'new_password_again' => 'Nové heslo (kontrola)', + 'delete_your_account' => 'Odstráňte svoj účet', + 'delete_your_account_help' => 'Pri odstránení vášho účtu sa zmažú všetky účty, transakcie, všetko, čo ste vo Firefly III uložili. Bude to PREČ.', + 'delete_your_account_password' => 'Pokračujte zadaním svojho hesla.', + 'password' => 'Heslo', + 'are_you_sure' => 'Ste si istí? Túto akciu nie je možné vrátiť späť.', + 'delete_account_button' => 'Odstrániť účet', + 'invalid_current_password' => 'Neplatné aktuálne heslo!', + 'password_changed' => 'Heslo zmenené!', + 'should_change' => 'Cieľom je zmeniť vaše heslo.', + 'invalid_password' => 'Neplatné heslo!', + 'what_is_pw_security' => 'Čo znamená „overiť bezpečnosť hesla“?', + 'secure_pw_title' => 'Ako zvoliť bezpečné heslo', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Neprejde týždeň, aby sme nevideli správy o ďalšej stránke, ktorá prišla o databázu hesiel svojich použivateľov. Hackeri a zlodeji tieto heslá používajú pre pokusy o ukradnutie vašich súkromných informácií. Informácie sú cenné.', + 'secure_pw_ff' => 'Používate rovnaké heslo na viacerých webových službách? Ak jedna z nich príde o vaše heslo, hackeri získajú prístup k všetkým z nich. Firefly III sa spolieha na to, že si zvolíte silné a inde nepoužívané heslo pre ochranu vašich finančných záznamov.', + 'secure_pw_check_box' => 'Firefly III môže pre vás skontrolovať heslo, ktoré chcete použiť, či nebolo v minulosti odcudzené. V takom prípade vám ho NEodporučí použiť.', + 'secure_pw_working_title' => 'Ako to funguje?', + 'secure_pw_working' => 'Zaškrtnutím tohto políčka Firefly III odošle prvých päť znakov hash vášho hesla SHA1 na web Troy Hunt a zistí, či je vaše heslo na zozname. To vám zabráni v používaní nebezpečných hesiel, ako sa odporúča v najnovšej špeciálnej publikácii NIST týkajúcej sa bezpečnosti.', + 'secure_pw_should' => 'Mám to zaškrtnúť?', + 'secure_pw_long_password' => 'Áno, vždy overiť bezpečnosť hesla.', + 'command_line_token' => 'Token pre príkazový riadok', + 'explain_command_line_token' => 'Tento token potrebujete na vykonávanie možností príkazového riadku, ako je napríklad export údajov. Bez toho tento citlivý príkaz nebude fungovať. Nezdieľajte svoj token príkazového riadku. Nikto od vás nebude žiadať tento token, ani ja. Ak sa bojíte, že ste to stratili, alebo keď ste paranoidní, regenerujte tento token pomocou tlačidla.', + 'regenerate_command_line_token' => 'Pregenerovať token príkazového riadka', + 'token_regenerated' => 'Nový token pre príkazový riadok bol vytvorený', + 'change_your_email' => 'Zmena e-mailovej adresy', + 'email_verification' => 'E-mailová správa bude zaslaná na vašu starú A novú e-mailovú adresu. Z bezpečnostných dôvodov sa nebudete môcť prihlásiť, kým neoveríte svoju novú e-mailovú adresu. Ak si nie ste istí, či je vaša inštalácia Firefly III schopná odosielať e-maily, nepoužívajte túto funkciu. Ak ste správcom, môžete to otestovať v časti Správa.', + 'email_changed_logout' => 'Kým neoveríte svoju e-mailovú adresu, nemôžete sa prihlásiť.', + 'login_with_new_email' => 'Teraz sa môžete prihlásiť so svojou novou e-mailovou adresou.', + 'login_with_old_email' => 'Teraz sa môžete prihlásiť so svojou starou e-mailovou adresou.', + 'login_provider_local_only' => 'Táto akcia nie je k dispozícii pri autentifikácii prostredníctvom „:login_provider“.', + 'external_user_mgt_disabled' => 'Táto akcia nie je k dispozícii, keď Firefly III nie je zodpovedný za správu používateľov alebo manipuláciu s autentifikáciou.', + 'external_auth_disabled' => 'Táto akcia nie je dostupná, ak Firefly III nie je zodpovedný za autentifikáciu.', + 'delete_local_info_only' => 'Pretože Firefly III nie je zodpovedný za správu používateľov alebo manipuláciu s autentifikáciou, táto funkcia vymaže iba miestne informácie Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth klienti', + 'profile_oauth_no_clients' => 'Zatiaľ ste nevytvorili žiadneho OAuth klienta.', + '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_header' => 'Klienti', + 'profile_oauth_client_id' => 'ID klienta', + 'profile_oauth_client_name' => 'Meno/Názov', + 'profile_oauth_client_secret' => 'Tajný kľúč', + 'profile_oauth_create_new_client' => 'Vytvoriť nového klienta', + 'profile_oauth_create_client' => 'Vytvoriť klienta', + 'profile_oauth_edit_client' => 'Upraviť klienta', + 'profile_oauth_name_help' => 'Niečo, čo vaši použivatelia poznajú a budú tomu dôverovať.', + 'profile_oauth_redirect_url' => 'URL presmerovania', + 'profile_oauth_redirect_url_help' => 'Spätná URL pre overenie autorizácie vašej aplikácie.', + 'profile_authorized_apps' => 'Povolené aplikácie', + 'profile_authorized_clients' => 'Autorizovaní klienti', + 'profile_scopes' => 'Rozsahy', + 'profile_revoke' => 'Odvolať', + 'profile_oauth_client_secret_title' => 'Tajný kľúč klienta', + 'profile_oauth_client_secret_expl' => 'Toto je váš tajný kľúč klienta. Toto je jediný raz, kedy sa zobrazí - nestraťte ho! Odteraz môžete tento tajný kľúč používať pre prístup k API.', + 'profile_personal_access_tokens' => 'Osobné prístupové tokeny', + 'profile_personal_access_token' => 'Osobný prístupový token', + 'profile_oauth_confidential' => 'Dôverné', + 'profile_oauth_confidential_help' => 'Vyžadujte od klienta autentifikáciu pomocou tajného kľúča. Dôverní klienti môžu uchovávať poverenia bezpečným spôsobom bez toho, aby boli vystavení neoprávneným stranám. Verejné aplikácie, ako napríklad natívna pracovná plocha alebo aplikácie Java SPA, nedokážu tajné kľúče bezpečne uchovať.', + 'profile_personal_access_token_explanation' => 'Toto je váš nový osobný prístupový token. Toto je jediný raz, kedy sa zobrazí - nestraťte ho! Odteraz ho môžete používať pre prístup k API.', + 'profile_no_personal_access_token' => 'Ešte ste nevytvorili žiadne osobné prístupové tokeny.', + 'profile_create_new_token' => 'Vytvoriť nový token', + 'profile_create_token' => 'Vytvoriť token', + 'profile_create' => 'Vytvoriť', + 'profile_save_changes' => 'Uložiť zmeny', + 'profile_whoops' => 'Ajaj!', + 'profile_something_wrong' => 'Niečo sa pokazilo!', + 'profile_try_again' => 'Niečo sa pokazilo. Prosím, skúste znova.', + 'amounts' => 'Suma', + 'multi_account_warning_unknown' => 'V závislosti od typu vytvorenej transakcie, môže byť zdrojový a/alebo cieľový účet následných rozúčtovaní prepísaný údajmi v prvom rozdelení transakcie.', + 'multi_account_warning_withdrawal' => 'Majte na pamäti, že zdrojový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozdelení výberu.', + 'multi_account_warning_deposit' => 'Majte na pamäti, že zdrojový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozúčtovaní vkladu.', + 'multi_account_warning_transfer' => 'Majte na pamäti, že zdrojový a cieľový bankový účet následných rozúčtovaní bude prepísaný tým, čo je definované v prvom rozúčtovaní prevodu.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export údajov z Firefly III', - 'export_data_menu' => 'Export údajov', - 'export_data_bc' => 'Export údajov z Firefly III', - 'export_data_main_title' => 'Export údajov z Firefly III', - 'export_data_expl' => 'Tento odkaz vám umožní exportovať všetky transakcie a metadata z Firefly III. Viac informácií o procese nájdete v pomocníkovi (ikona (?) vpravo hore).', - 'export_data_all_transactions' => 'Export všetkých transakcií', - 'export_data_advanced_expl' => 'Ak potrebujete pokročilejší alebo konkrétnejší typ exportu, prečítajte si pomocníka, ako používať príkaz konzoly php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export údajov z Firefly III', + 'export_data_menu' => 'Export údajov', + 'export_data_bc' => 'Export údajov z Firefly III', + 'export_data_main_title' => 'Export údajov z Firefly III', + 'export_data_expl' => 'Tento odkaz vám umožní exportovať všetky transakcie a metadata z Firefly III. Viac informácií o procese nájdete v pomocníkovi (ikona (?) vpravo hore).', + 'export_data_all_transactions' => 'Export všetkých transakcií', + 'export_data_advanced_expl' => 'Ak potrebujete pokročilejší alebo konkrétnejší typ exportu, prečítajte si pomocníka, ako používať príkaz konzoly php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Jedna príloha|:count príloh', - 'attachments' => 'Prílohy', - 'edit_attachment' => 'Upraviť prílohu ":name"', - 'update_attachment' => 'Upraviť prílohu', - 'delete_attachment' => 'Odstrániť prílohu „:name“', - 'attachment_deleted' => 'Príloha „:name“ bola odstránená', - 'liabilities_deleted' => 'Záväzok „:name“ bol odstránený', - 'attachment_updated' => 'Príloha „:name“ upravená', - 'upload_max_file_size' => 'Maximálna veľkosť súboru: :size', - 'list_all_attachments' => 'Zoznam všetkých príloh', + 'nr_of_attachments' => 'Jedna príloha|:count príloh', + 'attachments' => 'Prílohy', + 'edit_attachment' => 'Upraviť prílohu ":name"', + 'update_attachment' => 'Upraviť prílohu', + 'delete_attachment' => 'Odstrániť prílohu „:name“', + 'attachment_deleted' => 'Príloha „:name“ bola odstránená', + 'liabilities_deleted' => 'Záväzok „:name“ bol odstránený', + 'attachment_updated' => 'Príloha „:name“ upravená', + 'upload_max_file_size' => 'Maximálna veľkosť súboru: :size', + 'list_all_attachments' => 'Zoznam všetkých príloh', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Výdavky', - 'title_withdrawal' => 'Výdavky', - 'title_revenue' => 'Zisky / príjmy', - 'title_deposit' => 'Zisky / príjmy', - 'title_transfer' => 'Prevody', - 'title_transfers' => 'Prevody', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Výdavky', + 'title_withdrawal' => 'Výdavky', + 'title_revenue' => 'Zisky / príjmy', + 'title_deposit' => 'Zisky / príjmy', + 'title_transfer' => 'Prevody', + 'title_transfers' => 'Prevody', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Tato transakcia už je výber', - 'convert_is_already_type_Deposit' => 'Tato transakcia už je vklad', - 'convert_is_already_type_Transfer' => 'Tato transakcia už je prevod', - 'convert_to_Withdrawal' => 'Zmeniť „:description“ na výber', - 'convert_to_Deposit' => 'Zmeniť „:description“ na vklad', - 'convert_to_Transfer' => 'Zmeniť „:description“ na prevod', - 'convert_options_WithdrawalDeposit' => 'Zmeniť výber na vklad', - 'convert_options_WithdrawalTransfer' => 'Zmeniť výber na prevod', - 'convert_options_DepositTransfer' => 'Zmeniť vklad na prevod', - 'convert_options_DepositWithdrawal' => 'Zmeniť vklad na výber', - 'convert_options_TransferWithdrawal' => 'Zmeniť prevod na výber', - 'convert_options_TransferDeposit' => 'Zmeniť prevod na vklad', - 'convert_Withdrawal_to_deposit' => 'Zmeniť tento výber na vklad', - 'convert_Withdrawal_to_transfer' => 'Zmeniť tento výber na vklad', - 'convert_Deposit_to_withdrawal' => 'Zmeniť tento vklad na výber', - 'convert_Deposit_to_transfer' => 'Zmeniť tento vklad na prevod', - 'convert_Transfer_to_deposit' => 'Zmeniť tento prevod na vklad', - 'convert_Transfer_to_withdrawal' => 'Zmeniť tento prevod na výber', - 'convert_please_set_revenue_source' => 'Vyberte účet aktiv, z kterého peniaze prídu.', - 'convert_please_set_asset_destination' => 'Vyberte účet aktív, na ktorý tieto peniaze odídu.', - 'convert_please_set_expense_destination' => 'Vyberte výdavkový účet, na ktorý peniaze odídu.', - 'convert_please_set_asset_source' => 'Vyberte účet aktív, z ktorého peniaze odídu.', - 'convert_expl_w_d' => 'Pri zmene výberu na vklad sa peniaze namiesto toho, aby sa zo zobrazeného cieľového účtu vybrali, vložia sa naň.|Pri zmene výberu na vklad sa peniaze namiesto výberu zo zobrazených cieľových účtov na ne vložia.', - 'convert_expl_w_t' => 'Pri zmene výberu na prevod sa peniaze prevedú preč zo zdrojového účtu na iný účet aktív alebo pasív namiesto toho, aby sa minuli na pôvodný účet výdavkov.|Pri zmene výberu na prevod sa peniaze prevedú ďalej z zdrojové účty na iné účty aktív alebo pasív namiesto toho, aby sa minuli na pôvodné účty výdavkov.', - 'convert_expl_d_w' => 'Pri zmene vkladu na výber sa peniaze namiesto vybratého vkladu vyberú zo zobrazeného zdrojového účtu.|Pri zmene vkladu na výber sa peniaze namiesto vloženia vyberú zo zobrazených zdrojových účtov. do nich.', - 'convert_expl_d_t' => 'Keď zmeníte vklad na prevod, peniaze sa vložia na uvedený cieľový účet z ktoréhokoľvek z vašich aktív alebo pasív.|Keď zmeníte vklad na prevod, peniaze sa vložia na uvedené cieľové účty z ľubovoľného účtu vašich aktív alebo pasív.', - 'convert_expl_t_w' => 'Keď zmeníte prevod na výber, peniaze sa minú na cieľový účet, ktorý ste tu nastavili, a nie na prevod preč.|Keď zmeníte prevod na výber, peniaze sa minú na cieľové účty, ktoré ste tu nastavili, namiesto toho, aby boli presunuté preč.', - 'convert_expl_t_d' => 'Keď zmeníte prevod na vklad, peniaze sa namiesto toho, aby sa na ne presunuli, uložia na cieľový účet, ktorý vidíte tu.|Keď zmeníte prevod na vklad, peniaze sa vložia na cieľové účty, ktoré vidíte tu, namiesto aby sa do nich preniesli.', - 'convert_select_sources' => 'Ak chcete dokončiť konverziu, nižšie nastavte nový zdrojový účet.|Na dokončenie konverzie nastavte nižšie nové zdrojové účty.', - 'convert_select_destinations' => 'Ak chcete dokončiť konverziu, vyberte nový cieľový účet uvedený nižšie.|Na dokončenie konverzie vyberte nižšie nové cieľové účty.', - 'converted_to_Withdrawal' => 'Transakcia bola prevedená na výber', - 'converted_to_Deposit' => 'Transakcia bola prevedená na vklad', - 'converted_to_Transfer' => 'Transakcia bola prevedená na prevod', - 'invalid_convert_selection' => 'Účet, ktorý ste vybrali, sa už v tejto transakcii používa alebo neexistuje.', - 'source_or_dest_invalid' => 'Nenašli sa správne podrobnosti transakcie. Prevod nie je možný.', - 'convert_to_withdrawal' => 'Zmeniť na výber', - 'convert_to_deposit' => 'Zmeniť na vklad', - 'convert_to_transfer' => 'Zmeniť na prevod', + 'convert_is_already_type_Withdrawal' => 'Tato transakcia už je výber', + 'convert_is_already_type_Deposit' => 'Tato transakcia už je vklad', + 'convert_is_already_type_Transfer' => 'Tato transakcia už je prevod', + 'convert_to_Withdrawal' => 'Zmeniť „:description“ na výber', + 'convert_to_Deposit' => 'Zmeniť „:description“ na vklad', + 'convert_to_Transfer' => 'Zmeniť „:description“ na prevod', + 'convert_options_WithdrawalDeposit' => 'Zmeniť výber na vklad', + 'convert_options_WithdrawalTransfer' => 'Zmeniť výber na prevod', + 'convert_options_DepositTransfer' => 'Zmeniť vklad na prevod', + 'convert_options_DepositWithdrawal' => 'Zmeniť vklad na výber', + 'convert_options_TransferWithdrawal' => 'Zmeniť prevod na výber', + 'convert_options_TransferDeposit' => 'Zmeniť prevod na vklad', + 'convert_Withdrawal_to_deposit' => 'Zmeniť tento výber na vklad', + 'convert_Withdrawal_to_transfer' => 'Zmeniť tento výber na vklad', + 'convert_Deposit_to_withdrawal' => 'Zmeniť tento vklad na výber', + 'convert_Deposit_to_transfer' => 'Zmeniť tento vklad na prevod', + 'convert_Transfer_to_deposit' => 'Zmeniť tento prevod na vklad', + 'convert_Transfer_to_withdrawal' => 'Zmeniť tento prevod na výber', + 'convert_please_set_revenue_source' => 'Vyberte účet aktiv, z kterého peniaze prídu.', + 'convert_please_set_asset_destination' => 'Vyberte účet aktív, na ktorý tieto peniaze odídu.', + 'convert_please_set_expense_destination' => 'Vyberte výdavkový účet, na ktorý peniaze odídu.', + 'convert_please_set_asset_source' => 'Vyberte účet aktív, z ktorého peniaze odídu.', + 'convert_expl_w_d' => 'Pri zmene výberu na vklad sa peniaze namiesto toho, aby sa zo zobrazeného cieľového účtu vybrali, vložia sa naň.|Pri zmene výberu na vklad sa peniaze namiesto výberu zo zobrazených cieľových účtov na ne vložia.', + 'convert_expl_w_t' => 'Pri zmene výberu na prevod sa peniaze prevedú preč zo zdrojového účtu na iný účet aktív alebo pasív namiesto toho, aby sa minuli na pôvodný účet výdavkov.|Pri zmene výberu na prevod sa peniaze prevedú ďalej z zdrojové účty na iné účty aktív alebo pasív namiesto toho, aby sa minuli na pôvodné účty výdavkov.', + 'convert_expl_d_w' => 'Pri zmene vkladu na výber sa peniaze namiesto vybratého vkladu vyberú zo zobrazeného zdrojového účtu.|Pri zmene vkladu na výber sa peniaze namiesto vloženia vyberú zo zobrazených zdrojových účtov. do nich.', + 'convert_expl_d_t' => 'Keď zmeníte vklad na prevod, peniaze sa vložia na uvedený cieľový účet z ktoréhokoľvek z vašich aktív alebo pasív.|Keď zmeníte vklad na prevod, peniaze sa vložia na uvedené cieľové účty z ľubovoľného účtu vašich aktív alebo pasív.', + 'convert_expl_t_w' => 'Keď zmeníte prevod na výber, peniaze sa minú na cieľový účet, ktorý ste tu nastavili, a nie na prevod preč.|Keď zmeníte prevod na výber, peniaze sa minú na cieľové účty, ktoré ste tu nastavili, namiesto toho, aby boli presunuté preč.', + 'convert_expl_t_d' => 'Keď zmeníte prevod na vklad, peniaze sa namiesto toho, aby sa na ne presunuli, uložia na cieľový účet, ktorý vidíte tu.|Keď zmeníte prevod na vklad, peniaze sa vložia na cieľové účty, ktoré vidíte tu, namiesto aby sa do nich preniesli.', + 'convert_select_sources' => 'Ak chcete dokončiť konverziu, nižšie nastavte nový zdrojový účet.|Na dokončenie konverzie nastavte nižšie nové zdrojové účty.', + 'convert_select_destinations' => 'Ak chcete dokončiť konverziu, vyberte nový cieľový účet uvedený nižšie.|Na dokončenie konverzie vyberte nižšie nové cieľové účty.', + 'converted_to_Withdrawal' => 'Transakcia bola prevedená na výber', + 'converted_to_Deposit' => 'Transakcia bola prevedená na vklad', + 'converted_to_Transfer' => 'Transakcia bola prevedená na prevod', + 'invalid_convert_selection' => 'Účet, ktorý ste vybrali, sa už v tejto transakcii používa alebo neexistuje.', + 'source_or_dest_invalid' => 'Nenašli sa správne podrobnosti transakcie. Prevod nie je možný.', + 'convert_to_withdrawal' => 'Zmeniť na výber', + 'convert_to_deposit' => 'Zmeniť na vklad', + 'convert_to_transfer' => 'Zmeniť na prevod', // create new stuff: - 'create_new_withdrawal' => 'Vytvoriť nový výber', - 'create_new_deposit' => 'Vytvoriť nový vklad', - 'create_new_transfer' => 'Vytvoriť nový prevod', - 'create_new_asset' => 'Vytvoriť nový účet aktív', - 'create_new_liabilities' => 'Vytvoriť nový záväzok', - 'create_new_expense' => 'Vytvoriť výdavkoý účet', - 'create_new_revenue' => 'Vytvoriť nový príjmový účet', - 'create_new_piggy_bank' => 'Vytvoriť novú pokladničku', - 'create_new_bill' => 'Vytvoriť nový účet', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Vytvoriť nový výber', + 'create_new_deposit' => 'Vytvoriť nový vklad', + 'create_new_transfer' => 'Vytvoriť nový prevod', + 'create_new_asset' => 'Vytvoriť nový účet aktív', + 'create_new_liabilities' => 'Vytvoriť nový záväzok', + 'create_new_expense' => 'Vytvoriť výdavkoý účet', + 'create_new_revenue' => 'Vytvoriť nový príjmový účet', + 'create_new_piggy_bank' => 'Vytvoriť novú pokladničku', + 'create_new_bill' => 'Vytvoriť nový účet', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Vytvoriť novú menu', - 'store_currency' => 'Uložiť novú menu', - 'update_currency' => 'Upraviť menu', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => ':name nie je možné odstrániť, pretože sa stále v aplikácii používa.', - 'cannot_delete_fallback_currency' => ':name je predvolená systémová základná mena a nie je možné ju odstrániť.', - 'cannot_disable_currency_journals' => ':name nie je možné vypnúť, pretože ju používajú niektoré transakcie.', - 'cannot_disable_currency_last_left' => ':name nie je možné vypnúť, pretože je to posledná aktívna mena.', - 'cannot_disable_currency_account_meta' => ':name nie je možné vypnúť, pretože je použitý v majetkových účtoch.', - 'cannot_disable_currency_bills' => ':name nie je možné vypnúť, pretože je použitý v majetkových účtoch.', - 'cannot_disable_currency_recurring' => ':name nie je možné vypnúť, pretože je použitý v opakovaných transakciách.', - 'cannot_disable_currency_available_budgets' => ':name nie je možné vypnúť, pretože je použitý v rozpočtoch.', - 'cannot_disable_currency_budget_limits' => ':name nie je možné vypnúť, pretože je použitý v obmedzeniach rozpočtov.', - 'cannot_disable_currency_current_default' => ':name nie je možné vypnúť, pretože je to aktuálne predvolená mena.', - 'cannot_disable_currency_system_fallback' => ':name nie je možné vypnúť, pretože je to systémová predvolená mena.', - 'disable_EUR_side_effects' => 'Euro je núdzová záložná mena systému. Jeho deaktivácia môže mať nežiaduce vedľajšie účinky a môže spôsobiť neplatnosť záruky.', - 'deleted_currency' => 'Mena :name bola odstránená', - 'created_currency' => 'Mena :name vytvorená', - 'could_not_store_currency' => 'Novú menu sa nepodarilo uložiť.', - 'updated_currency' => 'Mena :name upravená', - 'ask_site_owner' => 'O pridanie, odstránenie alebo zmeny v menách požiadajte prosím :owner.', - 'currencies_intro' => 'Firefly III podporuje rôzne meny, ktoré tu môžete spravovať.', - 'make_default_currency' => 'Nastaviť ako predvolené', - 'default_currency' => 'predvolené', - 'currency_is_disabled' => 'Vypnuté', - 'enable_currency' => 'Zapnúť', - 'disable_currency' => 'Vypnúť', - 'currencies_default_disabled' => 'Väčšina týchto mien je v základnom stave vypnutá. Ak ich chcete používať, musíte ich najprv zapnúť.', - 'currency_is_now_enabled' => 'Mena „:name“ bola zapnutá', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Mena „:name“ bola vypnutá', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Vytvoriť novú menu', + 'store_currency' => 'Uložiť novú menu', + 'update_currency' => 'Upraviť menu', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => ':name nie je možné odstrániť, pretože sa stále v aplikácii používa.', + 'cannot_delete_fallback_currency' => ':name je predvolená systémová základná mena a nie je možné ju odstrániť.', + 'cannot_disable_currency_journals' => ':name nie je možné vypnúť, pretože ju používajú niektoré transakcie.', + 'cannot_disable_currency_last_left' => ':name nie je možné vypnúť, pretože je to posledná aktívna mena.', + 'cannot_disable_currency_account_meta' => ':name nie je možné vypnúť, pretože je použitý v majetkových účtoch.', + 'cannot_disable_currency_bills' => ':name nie je možné vypnúť, pretože je použitý v majetkových účtoch.', + 'cannot_disable_currency_recurring' => ':name nie je možné vypnúť, pretože je použitý v opakovaných transakciách.', + 'cannot_disable_currency_available_budgets' => ':name nie je možné vypnúť, pretože je použitý v rozpočtoch.', + 'cannot_disable_currency_budget_limits' => ':name nie je možné vypnúť, pretože je použitý v obmedzeniach rozpočtov.', + 'cannot_disable_currency_current_default' => ':name nie je možné vypnúť, pretože je to aktuálne predvolená mena.', + 'cannot_disable_currency_system_fallback' => ':name nie je možné vypnúť, pretože je to systémová predvolená mena.', + 'disable_EUR_side_effects' => 'Euro je núdzová záložná mena systému. Jeho deaktivácia môže mať nežiaduce vedľajšie účinky a môže spôsobiť neplatnosť záruky.', + 'deleted_currency' => 'Mena :name bola odstránená', + 'created_currency' => 'Mena :name vytvorená', + 'could_not_store_currency' => 'Novú menu sa nepodarilo uložiť.', + 'updated_currency' => 'Mena :name upravená', + 'ask_site_owner' => 'O pridanie, odstránenie alebo zmeny v menách požiadajte prosím :owner.', + 'currencies_intro' => 'Firefly III podporuje rôzne meny, ktoré tu môžete spravovať.', + 'make_default_currency' => 'Nastaviť ako predvolené', + 'default_currency' => 'predvolené', + 'currency_is_disabled' => 'Vypnuté', + 'enable_currency' => 'Zapnúť', + 'disable_currency' => 'Vypnúť', + 'currencies_default_disabled' => 'Väčšina týchto mien je v základnom stave vypnutá. Ak ich chcete používať, musíte ich najprv zapnúť.', + 'currency_is_now_enabled' => 'Mena „:name“ bola zapnutá', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Mena „:name“ bola vypnutá', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Povinné údaje', - 'optionalFields' => 'Voliteľné údaje', - 'options' => 'Možnosti', + 'mandatoryFields' => 'Povinné údaje', + 'optionalFields' => 'Voliteľné údaje', + 'options' => 'Možnosti', // budgets: - 'daily_budgets' => 'Denné rozpočty', - 'weekly_budgets' => 'Týždenné rozpočty', - 'monthly_budgets' => 'Mesačné rozpočty', - 'quarterly_budgets' => 'Štvrťročné rozpočty', - 'half_year_budgets' => 'Polročné rozpočty', - 'yearly_budgets' => 'Ročné rozpočty', - 'other_budgets' => 'Špecifické časované rozpočty', - 'budget_limit_not_in_range' => 'Táto suma platí od :start do :end:', - 'total_available_budget' => 'Suma dostupného rozpočtu (medzi :start a :end)', - 'total_available_budget_in_currency' => 'Celkový rozpočet k dispozici v :currency', - 'see_below' => 'viď nižšie', - 'create_new_budget' => 'Vytvoriť nový rozpočet', - 'store_new_budget' => 'Uložiť nový rozpočet', - 'stored_new_budget' => 'Uložený nový rozpočet „:name“', - 'available_between' => 'Dostupné medzi :start a :end', - 'transactionsWithoutBudget' => 'Výdavky bez rozpočtu', - 'transactions_no_budget' => 'Výdavky bez rozpočtu medzi :start a :end', - 'spent_between' => 'Už utratené medzi :start a :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Nastaviť sumu k dispozícii', - 'update_available_amount' => 'Aktualizovať sumu k dispozícii', - 'ab_basic_modal_explain' => 'Pomocou tohto formulára zadajte, koľko očakávate, že budete môcť v uvedenom období zostaviť rozpočet (celkovo v :currency).', - 'createBudget' => 'Nový rozpočet', - 'invalid_currency' => 'Toto nie je platná mena', - 'invalid_amount' => 'Prosím, zadajte sumu', - 'set_ab' => 'Dostupná suma rozpočtu bola nastavená', - 'updated_ab' => 'Dostupná suma rozpočtu bola aktualizovaná', - 'deleted_ab' => 'Dostupná suma rozpočtu bola odstránená', - 'deleted_bl' => 'Rozpočtovaná suma bola odstránená', - 'alt_currency_ab_create' => 'Nastaviť dostupný rozpočet v inej mene', - 'bl_create_btn' => 'Nastaviť rozpočet v inej mene', - 'inactiveBudgets' => 'Neaktívne rozpočty', - 'without_budget_between' => 'Transakcia bez rozpočtu medzi :start a :end', - 'delete_budget' => 'Odstrániť rozpočet „:name“', - 'deleted_budget' => 'Rozpočet „:name“ bol odstránený', - 'edit_budget' => 'Upraviť rozpočet „:name“', - 'updated_budget' => 'Upravený rozpočet „:name“', - 'update_amount' => 'Upraviť sumu', - 'update_budget' => 'Upraviť rozpočet', - 'update_budget_amount_range' => 'Aktualizovať (očakávané) dostupné množstvo medzi :start a :end', - 'set_budget_limit_title' => 'Nastaviť rozpočtovanú sumu pre rozpočet :budget medzi :start a :end', - 'set_budget_limit' => 'Nastavte sumu rozpočtu', - 'budget_period_navigator' => 'Navigátor období', - 'info_on_available_amount' => 'Čo mám(e) k dispozícii?', - 'available_amount_indication' => 'Pomocou týchto súm získate informáciu o tom, aký môže byť váš celkový rozpočet.', - 'suggested' => 'Navrhované', - 'average_between' => 'Priemer medzi :start a :end', - 'transferred_in' => 'Prevedené (k nám)', - 'transferred_away' => 'Prevedené (preč)', - 'auto_budget_none' => 'Žiadny automatický rozpočet', - 'auto_budget_reset' => 'Nastaviť pevnú sumu pre každé obdobie', - 'auto_budget_rollover' => 'Pridať sumu každé obdobie', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Denne', - 'auto_budget_period_weekly' => 'Týždenne', - 'auto_budget_period_monthly' => 'Mesačne', - 'auto_budget_period_quarterly' => 'Štvrťročne', - 'auto_budget_period_half_year' => 'Polročne', - 'auto_budget_period_yearly' => 'Ročne', - 'auto_budget_help' => 'Viac o tejto funkcii sa dozviete v pomocníkovi. Kliknite na ikonu (?) vpravo hore.', - 'auto_budget_reset_icon' => 'Tento rozpočet bude stanovovaný pravidelne', - 'auto_budget_rollover_icon' => 'Táto suma rozpočtu sa bude pravidelne navyšovať', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Odstrániť rozpočtovú sumu v :currency', + 'daily_budgets' => 'Denné rozpočty', + 'weekly_budgets' => 'Týždenné rozpočty', + 'monthly_budgets' => 'Mesačné rozpočty', + 'quarterly_budgets' => 'Štvrťročné rozpočty', + 'half_year_budgets' => 'Polročné rozpočty', + 'yearly_budgets' => 'Ročné rozpočty', + 'other_budgets' => 'Špecifické časované rozpočty', + 'budget_limit_not_in_range' => 'Táto suma platí od :start do :end:', + 'total_available_budget' => 'Suma dostupného rozpočtu (medzi :start a :end)', + 'total_available_budget_in_currency' => 'Celkový rozpočet k dispozici v :currency', + 'see_below' => 'viď nižšie', + 'create_new_budget' => 'Vytvoriť nový rozpočet', + 'store_new_budget' => 'Uložiť nový rozpočet', + 'stored_new_budget' => 'Uložený nový rozpočet „:name“', + 'available_between' => 'Dostupné medzi :start a :end', + 'transactionsWithoutBudget' => 'Výdavky bez rozpočtu', + 'transactions_no_budget' => 'Výdavky bez rozpočtu medzi :start a :end', + 'spent_between' => 'Už utratené medzi :start a :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Nastaviť sumu k dispozícii', + 'update_available_amount' => 'Aktualizovať sumu k dispozícii', + 'ab_basic_modal_explain' => 'Pomocou tohto formulára zadajte, koľko očakávate, že budete môcť v uvedenom období zostaviť rozpočet (celkovo v :currency).', + 'createBudget' => 'Nový rozpočet', + 'invalid_currency' => 'Toto nie je platná mena', + 'invalid_amount' => 'Prosím, zadajte sumu', + 'set_ab' => 'Dostupná suma rozpočtu bola nastavená', + 'updated_ab' => 'Dostupná suma rozpočtu bola aktualizovaná', + 'deleted_ab' => 'Dostupná suma rozpočtu bola odstránená', + 'deleted_bl' => 'Rozpočtovaná suma bola odstránená', + 'alt_currency_ab_create' => 'Nastaviť dostupný rozpočet v inej mene', + 'bl_create_btn' => 'Nastaviť rozpočet v inej mene', + 'inactiveBudgets' => 'Neaktívne rozpočty', + 'without_budget_between' => 'Transakcia bez rozpočtu medzi :start a :end', + 'delete_budget' => 'Odstrániť rozpočet „:name“', + 'deleted_budget' => 'Rozpočet „:name“ bol odstránený', + 'edit_budget' => 'Upraviť rozpočet „:name“', + 'updated_budget' => 'Upravený rozpočet „:name“', + 'update_amount' => 'Upraviť sumu', + 'update_budget' => 'Upraviť rozpočet', + 'update_budget_amount_range' => 'Aktualizovať (očakávané) dostupné množstvo medzi :start a :end', + 'set_budget_limit_title' => 'Nastaviť rozpočtovanú sumu pre rozpočet :budget medzi :start a :end', + 'set_budget_limit' => 'Nastavte sumu rozpočtu', + 'budget_period_navigator' => 'Navigátor období', + 'info_on_available_amount' => 'Čo mám(e) k dispozícii?', + 'available_amount_indication' => 'Pomocou týchto súm získate informáciu o tom, aký môže byť váš celkový rozpočet.', + 'suggested' => 'Navrhované', + 'average_between' => 'Priemer medzi :start a :end', + 'transferred_in' => 'Prevedené (k nám)', + 'transferred_away' => 'Prevedené (preč)', + 'auto_budget_none' => 'Žiadny automatický rozpočet', + 'auto_budget_reset' => 'Nastaviť pevnú sumu pre každé obdobie', + 'auto_budget_rollover' => 'Pridať sumu každé obdobie', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Denne', + 'auto_budget_period_weekly' => 'Týždenne', + 'auto_budget_period_monthly' => 'Mesačne', + 'auto_budget_period_quarterly' => 'Štvrťročne', + 'auto_budget_period_half_year' => 'Polročne', + 'auto_budget_period_yearly' => 'Ročne', + 'auto_budget_help' => 'Viac o tejto funkcii sa dozviete v pomocníkovi. Kliknite na ikonu (?) vpravo hore.', + 'auto_budget_reset_icon' => 'Tento rozpočet bude stanovovaný pravidelne', + 'auto_budget_rollover_icon' => 'Táto suma rozpočtu sa bude pravidelne navyšovať', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Odstrániť rozpočtovú sumu v :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Neočakávané v tomto období', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => '(Ešte) nie', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Účtu zodpovedajú transakcie medzi :low a :high.', - 'running_again_loss' => 'Predchádzajúce spojené transakcie s týmto účtom môžu stratiť spojenie, ak sa (už) nezhodujú s pravidlami.', - 'bill_related_rules' => 'Pravidlá súvisiace s týmto účtom', - 'repeats' => 'Opakuje sa', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Prepojené transakcie', - 'auto_match_on' => 'Automaticky spárované Firefly III', - 'auto_match_off' => 'Firefly III nedokáže automaticky spárovať', - 'next_expected_match' => 'Ďalšia očakávaná zhoda', - 'delete_bill' => 'Odstrániť účet „:name“', - 'deleted_bill' => 'Ůčet „:name“ bol odstránený', - 'edit_bill' => 'Upraviť účet „:name“', - 'more' => 'Viac', - 'rescan_old' => 'Spustiť pravidlá znovu, na všetky transakcie', - 'update_bill' => 'Upraviť účet', - 'updated_bill' => 'Upraviť účet „:name“', - 'store_new_bill' => 'Uložiť nový účet', - 'stored_new_bill' => 'Nový účet „:name“ uložený', - 'cannot_scan_inactive_bill' => 'Neaktívne účty nie je možné skenovať.', - 'rescanned_bill' => 'Všetko bolo znova prehľadané a :count transakcia bola prepojená s účtom.|Všetko bolo znova prehľadané a :count transakcií bolo prepojených s účtom.', - 'average_bill_amount_year' => 'Priemerná ročná suma (:year)', - 'average_bill_amount_overall' => 'Priemerná ročná suma (celkom)', - 'bill_is_active' => 'Účet je aktívny', - 'bill_expected_between' => 'Očakávané medzi :start a :end', - 'bill_will_automatch' => 'Účet bude automaticky prepojený so zodpovedajúcimi transakciami', - 'skips_over' => 'preskočí cez', - 'bill_store_error' => 'Pri ukladaní nového účtu nastala chyba. Prosím, skontrolujte denník udalostí', - 'list_inactive_rule' => 'neaktívne pravidlo', - 'bill_edit_rules' => 'Firefly III sa pokúsi upraviť aj pravidlo týkajúce sa tohto účtu. Ak ste si však toto pravidlo upravili sami, Firefly III ho nebude meniť.|Firefly III sa pokúsi upraviť aj :count pravidiel súvisiacich s týmto účtom. Ak ste si však tieto pravidlá upravili sami, Firefly III ich nebude meniť.', - 'bill_expected_date' => 'Očakávané :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Uhradené {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Neočakávané v tomto období', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => '(Ešte) nie', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Účtu zodpovedajú transakcie medzi :low a :high.', + 'running_again_loss' => 'Predchádzajúce spojené transakcie s týmto účtom môžu stratiť spojenie, ak sa (už) nezhodujú s pravidlami.', + 'bill_related_rules' => 'Pravidlá súvisiace s týmto účtom', + 'repeats' => 'Opakuje sa', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Prepojené transakcie', + 'auto_match_on' => 'Automaticky spárované Firefly III', + 'auto_match_off' => 'Firefly III nedokáže automaticky spárovať', + 'next_expected_match' => 'Ďalšia očakávaná zhoda', + 'delete_bill' => 'Odstrániť účet „:name“', + 'deleted_bill' => 'Ůčet „:name“ bol odstránený', + 'edit_bill' => 'Upraviť účet „:name“', + 'more' => 'Viac', + 'rescan_old' => 'Spustiť pravidlá znovu, na všetky transakcie', + 'update_bill' => 'Upraviť účet', + 'updated_bill' => 'Upraviť účet „:name“', + 'store_new_bill' => 'Uložiť nový účet', + 'stored_new_bill' => 'Nový účet „:name“ uložený', + 'cannot_scan_inactive_bill' => 'Neaktívne účty nie je možné skenovať.', + 'rescanned_bill' => 'Všetko bolo znova prehľadané a :count transakcia bola prepojená s účtom.|Všetko bolo znova prehľadané a :count transakcií bolo prepojených s účtom.', + 'average_bill_amount_year' => 'Priemerná ročná suma (:year)', + 'average_bill_amount_overall' => 'Priemerná ročná suma (celkom)', + 'bill_is_active' => 'Účet je aktívny', + 'bill_expected_between' => 'Očakávané medzi :start a :end', + 'bill_will_automatch' => 'Účet bude automaticky prepojený so zodpovedajúcimi transakciami', + 'skips_over' => 'preskočí cez', + 'bill_store_error' => 'Pri ukladaní nového účtu nastala chyba. Prosím, skontrolujte denník udalostí', + 'list_inactive_rule' => 'neaktívne pravidlo', + 'bill_edit_rules' => 'Firefly III sa pokúsi upraviť aj pravidlo týkajúce sa tohto účtu. Ak ste si však toto pravidlo upravili sami, Firefly III ho nebude meniť.|Firefly III sa pokúsi upraviť aj :count pravidiel súvisiacich s týmto účtom. Ak ste si však tieto pravidlá upravili sami, Firefly III ich nebude meniť.', + 'bill_expected_date' => 'Očakávané :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Uhradené {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Máte :count neaktívny (archivovaný) bankový účet, ktorý môžete zobraziť na tejto samostatnej stránke.|Máte :count neaktívnych (archivovaných) bankových účtov, ktoré môžete zobraziť na tejto samostatnej stránke.', - 'all_accounts_inactive' => 'Toto sú vaše neaktívne bankové účty.', - 'active_account_link' => 'Tento prepojenie smeruje späť na vaše aktívne účty.', - 'account_missing_transaction' => 'Bankový účet #:id (":name") nie je možné zobraziť priamo, ale Firefly III chýbajú informácie o presmerovaní.', - 'cc_monthly_payment_date_help' => 'Vyberte akýkoľvek rok alebo mesiac, budú ignorované. Relevantný je len deň v mesiaci.', - 'details_for_asset' => 'Podrobnosti o účte aktív „:name“', - 'details_for_expense' => 'Podrobnosti o výdavkovom účte „:name“', - 'details_for_revenue' => 'Podrobnosti o výnosovom účte „:name“', - 'details_for_cash' => 'Podrobnosti o hotovostnom účte „:name“', - 'store_new_asset_account' => 'Uložiť nový účet aktív', - 'store_new_expense_account' => 'Uložiť nový výdavkový účet', - 'store_new_revenue_account' => 'Uložiť nový príjmový účet', - 'edit_asset_account' => 'Upraviť účet aktív „:name“', - 'edit_expense_account' => 'Upraviť výdavkový účet „:name“', - 'edit_revenue_account' => 'Upraviť výnosový účet „:name“', - 'delete_asset_account' => 'Odstrániť účet aktív „:name“', - 'delete_expense_account' => 'Odstrániť výdavkový účet ":name"', - 'delete_revenue_account' => 'Odstrániť výnosový účet ":name"', - 'delete_liabilities_account' => 'Odstrániť záväzok „:name“', - 'asset_deleted' => 'Majetkový účet ":name" bol odstránený', - 'account_deleted' => 'Účet ":name" bol odstránený', - 'expense_deleted' => 'Výdavkový účet ":name" bol odstránený', - 'revenue_deleted' => 'Výnosový účet ":name" bol odstránený', - 'update_asset_account' => 'Upraviť výdajový účet', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Upraviť záväzok', - 'update_expense_account' => 'Upraviť výdavkový účet', - 'update_revenue_account' => 'Upraviť príjmový účet', - 'make_new_asset_account' => 'Vytvoriť nový účet aktív', - 'make_new_expense_account' => 'Vytvoriť výdavkový účet', - 'make_new_revenue_account' => 'Vytvoriť nový príjmový účet', - 'make_new_liabilities_account' => 'Vytvoriť nový záväzok', - 'asset_accounts' => 'Účty aktív', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Majetkový účet (neaktívny)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Výdavkové účty', - 'expense_accounts_inactive' => 'Výdajový účet (neaktívny)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Výnosové účty', - 'revenue_accounts_inactive' => 'Výnosové účty (neaktívne)', - 'cash_accounts' => 'Hotovostné účty', - 'Cash account' => 'Hotovostný účet', - 'liabilities_accounts' => 'Záväzky', - 'liabilities_accounts_inactive' => 'Záväzky (neaktívne)', - 'reconcile_account' => 'Vyúčtovať účet ":account"', - 'overview_of_reconcile_modal' => 'Prehľad zúčtovania', - 'delete_reconciliation' => 'Odstrániť zúčtovanie', - 'update_reconciliation' => 'Opraviť zúčtovanie', - 'amount_cannot_be_zero' => 'Suma nemôže byť nula', - 'end_of_reconcile_period' => 'Koniec zúčtovacieho obdobia: :period', - 'start_of_reconcile_period' => 'Začiatok zúčtovacieho obdobia: :period', - 'start_balance' => 'Počiatočný zostatok', - 'end_balance' => 'Konečný zostatok', - 'update_balance_dates_instruction' => 'Priraďte vyššie uvedené sumy a dátumy k svojmu bankovému výpisu a stlačte tlačidlo „Začať vyúčtovanie“', - 'select_transactions_instruction' => 'Vyberte transakcie, ktoré sa zobrazia na vašom bankovom výpise.', - 'select_range_and_balance' => 'Najskôr skontrolujte rozsah dátumov a zostatky. Potom stlačte tlačidlo „Spustiť vyúčtovanie“', - 'date_change_instruction' => 'Ak teraz zmeníte rozsah dátumov, akýkoľvek pokrok sa stratí.', - 'update_selection' => 'Upraviť výber', - 'store_reconcile' => 'Uložiť zúčtovanie', - 'reconciliation_transaction' => 'Zúčtovacia transakcia', - 'Reconciliation' => 'Zúčtovanie', - 'reconciliation' => 'Zúčtovanie', - 'reconcile_options' => 'Možnosti zúčtovania', - 'reconcile_range' => 'Rozsah zúčtovania', - 'start_reconcile' => 'Spustiť zúčtovanie', - 'cash_account_type' => 'Hotovosť', - 'cash' => 'hotovosť', - 'cant_find_redirect_account' => 'Firefly III sa vás pokúsil presmerovať, ale nepodarilo sa. Prepáčte. Späť na úvod.', - 'account_type' => 'Typ účtu', - 'save_transactions_by_moving' => 'Uložte túto transakciu presunutím do iného účtu:|Uložte tieto transakcie presunutím do iného účtu:', - 'save_transactions_by_moving_js' => 'Žiadne transakcie|Zachovať túto transakciu presunom pod iný účet.|Zachovať tieto transakcie presunom pod iný účet.', - 'stored_new_account' => 'Nový účet „:name“ bol uložený!', - 'stored_new_account_js' => 'Nový účet "{name}" vytvorený!', - 'updated_account' => 'Účet „:name“ upravený', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Možnosti kreditnej karty', - 'no_transactions_account' => 'Pre majetkový účet ":name" neexistujú (v tomto období) žiadne transakcie.', - 'no_transactions_period' => 'Neexistujú žiadne transakcie (v tomto období).', - 'no_data_for_chart' => 'Pre vytvorenie tohto grafu nie je (zatiaľ) dostatok informácií.', - 'select_at_least_one_account' => 'Vyberte aspoň jeden účet aktív', - 'select_at_least_one_category' => 'Vyberte aspoň jednu kategóriu', - 'select_at_least_one_budget' => 'Vyberte aspoň jeden rozpočet', - 'select_at_least_one_tag' => 'Vyberte aspoň jeden štítok', - 'select_at_least_one_expense' => 'Vyberte aspoň jednu kombináciu účtov výdavkov/výnosov. Ak žiadne nemáte (zoznam je prázdny), tento výkaz nie je k dispozícii.', - 'account_default_currency' => 'Toto bude predvolená mena previazaná s týmto bankovým účtom.', - 'reconcile_has_more' => 'Vaša účtovná kniha Firefly III obsahuje viac peňazí, než udáva vaša banka. Máte viac možností - vyberte, ako pokračovať. Potom kliknite na "Potvrdiť zúčtovanie".', - 'reconcile_has_less' => 'Vaša účtovná kniha Firefly III obsahuje menej peňazí, než udáva vaša banka. Máte viac možností - vyberte, ako pokračovať. Potom kliknite na "Potvrdiť zúčtovanie".', - 'reconcile_is_equal' => 'Vaša účtovná kniha Firefly III sa zhoduje s výpismi z vašej banky. Kliknite na "Potvrdiť zúčtovanie" pre potvrdenie.', - 'create_pos_reconcile_transaction' => 'Vymažte vybrané transakcie a vytvorte opravu pridania :amount k tomuto majetkovému účtu.', - 'create_neg_reconcile_transaction' => 'Vymažte vybrané transakcie a vytvorte opravu odstránenia :amount z tohto majetkového účtu.', - 'reconcile_do_nothing' => 'Vymažte vybraté transakcie, ale neopravujte ich.', - 'reconcile_go_back' => 'Opravu môžete kedykoľvek upraviť alebo odstrániť.', - 'must_be_asset_account' => 'Môžete zúčtovať len majetkové účty', - 'reconciliation_stored' => 'Zúčtovanie uložené', - 'reconciliation_error' => 'Transakcie boli označené ako zúčtované, ale kvôli nasledujúcej chybe neboli uložené: :error.', - 'reconciliation_transaction_title' => 'Zúčtovanie (:from pre :to)', - 'sum_of_reconciliation' => 'Sumár zúčtovania', - 'reconcile_this_account' => 'Vyúčtovat tento účet', - 'reconcile' => 'Vyúčtovať', - 'show' => 'Zobraziť', - 'confirm_reconciliation' => 'Potvrdiť zúčtovanie', - 'submitted_start_balance' => 'Vložený počiatočný zostatok', - 'selected_transactions' => 'Vybrané transakcie (:count)', - 'already_cleared_transactions' => 'Už zúčtované transakcie (:count)', - 'submitted_end_balance' => 'Vložený konečný zostatok', - 'initial_balance_description' => 'Počiatočný zostatok pre „:account“', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'neznáme', - 'interest_calc_daily' => 'Za deň', - 'interest_calc_monthly' => 'Za mesiac', - 'interest_calc_yearly' => 'Za rok', - 'interest_calc_weekly' => 'Za týždeň', - 'interest_calc_half-year' => 'Za polrok', - 'interest_calc_quarterly' => 'Za štvrťrok', - 'initial_balance_account' => 'Počiatočný zostatok pre :account', - 'list_options' => 'Možnosti zoznamu', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Máte :count neaktívny (archivovaný) bankový účet, ktorý môžete zobraziť na tejto samostatnej stránke.|Máte :count neaktívnych (archivovaných) bankových účtov, ktoré môžete zobraziť na tejto samostatnej stránke.', + 'all_accounts_inactive' => 'Toto sú vaše neaktívne bankové účty.', + 'active_account_link' => 'Tento prepojenie smeruje späť na vaše aktívne účty.', + 'account_missing_transaction' => 'Bankový účet #:id (":name") nie je možné zobraziť priamo, ale Firefly III chýbajú informácie o presmerovaní.', + 'cc_monthly_payment_date_help' => 'Vyberte akýkoľvek rok alebo mesiac, budú ignorované. Relevantný je len deň v mesiaci.', + 'details_for_asset' => 'Podrobnosti o účte aktív „:name“', + 'details_for_expense' => 'Podrobnosti o výdavkovom účte „:name“', + 'details_for_revenue' => 'Podrobnosti o výnosovom účte „:name“', + 'details_for_cash' => 'Podrobnosti o hotovostnom účte „:name“', + 'store_new_asset_account' => 'Uložiť nový účet aktív', + 'store_new_expense_account' => 'Uložiť nový výdavkový účet', + 'store_new_revenue_account' => 'Uložiť nový príjmový účet', + 'edit_asset_account' => 'Upraviť účet aktív „:name“', + 'edit_expense_account' => 'Upraviť výdavkový účet „:name“', + 'edit_revenue_account' => 'Upraviť výnosový účet „:name“', + 'delete_asset_account' => 'Odstrániť účet aktív „:name“', + 'delete_expense_account' => 'Odstrániť výdavkový účet ":name"', + 'delete_revenue_account' => 'Odstrániť výnosový účet ":name"', + 'delete_liabilities_account' => 'Odstrániť záväzok „:name“', + 'asset_deleted' => 'Majetkový účet ":name" bol odstránený', + 'account_deleted' => 'Účet ":name" bol odstránený', + 'expense_deleted' => 'Výdavkový účet ":name" bol odstránený', + 'revenue_deleted' => 'Výnosový účet ":name" bol odstránený', + 'update_asset_account' => 'Upraviť výdajový účet', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Upraviť záväzok', + 'update_expense_account' => 'Upraviť výdavkový účet', + 'update_revenue_account' => 'Upraviť príjmový účet', + 'make_new_asset_account' => 'Vytvoriť nový účet aktív', + 'make_new_expense_account' => 'Vytvoriť výdavkový účet', + 'make_new_revenue_account' => 'Vytvoriť nový príjmový účet', + 'make_new_liabilities_account' => 'Vytvoriť nový záväzok', + 'asset_accounts' => 'Účty aktív', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Majetkový účet (neaktívny)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Výdavkové účty', + 'expense_accounts_inactive' => 'Výdajový účet (neaktívny)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Výnosové účty', + 'revenue_accounts_inactive' => 'Výnosové účty (neaktívne)', + 'cash_accounts' => 'Hotovostné účty', + 'Cash account' => 'Hotovostný účet', + 'liabilities_accounts' => 'Záväzky', + 'liabilities_accounts_inactive' => 'Záväzky (neaktívne)', + 'reconcile_account' => 'Vyúčtovať účet ":account"', + 'overview_of_reconcile_modal' => 'Prehľad zúčtovania', + 'delete_reconciliation' => 'Odstrániť zúčtovanie', + 'update_reconciliation' => 'Opraviť zúčtovanie', + 'amount_cannot_be_zero' => 'Suma nemôže byť nula', + 'end_of_reconcile_period' => 'Koniec zúčtovacieho obdobia: :period', + 'start_of_reconcile_period' => 'Začiatok zúčtovacieho obdobia: :period', + 'start_balance' => 'Počiatočný zostatok', + 'end_balance' => 'Konečný zostatok', + 'update_balance_dates_instruction' => 'Priraďte vyššie uvedené sumy a dátumy k svojmu bankovému výpisu a stlačte tlačidlo „Začať vyúčtovanie“', + 'select_transactions_instruction' => 'Vyberte transakcie, ktoré sa zobrazia na vašom bankovom výpise.', + 'select_range_and_balance' => 'Najskôr skontrolujte rozsah dátumov a zostatky. Potom stlačte tlačidlo „Spustiť vyúčtovanie“', + 'date_change_instruction' => 'Ak teraz zmeníte rozsah dátumov, akýkoľvek pokrok sa stratí.', + 'update_selection' => 'Upraviť výber', + 'store_reconcile' => 'Uložiť zúčtovanie', + 'reconciliation_transaction' => 'Zúčtovacia transakcia', + 'Reconciliation' => 'Zúčtovanie', + 'reconciliation' => 'Zúčtovanie', + 'reconcile_options' => 'Možnosti zúčtovania', + 'reconcile_range' => 'Rozsah zúčtovania', + 'start_reconcile' => 'Spustiť zúčtovanie', + 'cash_account_type' => 'Hotovosť', + 'cash' => 'hotovosť', + 'cant_find_redirect_account' => 'Firefly III sa vás pokúsil presmerovať, ale nepodarilo sa. Prepáčte. Späť na úvod.', + 'account_type' => 'Typ účtu', + 'save_transactions_by_moving' => 'Uložte túto transakciu presunutím do iného účtu:|Uložte tieto transakcie presunutím do iného účtu:', + 'save_transactions_by_moving_js' => 'Žiadne transakcie|Zachovať túto transakciu presunom pod iný účet.|Zachovať tieto transakcie presunom pod iný účet.', + 'stored_new_account' => 'Nový účet „:name“ bol uložený!', + 'stored_new_account_js' => 'Nový účet "{name}" vytvorený!', + 'updated_account' => 'Účet „:name“ upravený', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Možnosti kreditnej karty', + 'no_transactions_account' => 'Pre majetkový účet ":name" neexistujú (v tomto období) žiadne transakcie.', + 'no_transactions_period' => 'Neexistujú žiadne transakcie (v tomto období).', + 'no_data_for_chart' => 'Pre vytvorenie tohto grafu nie je (zatiaľ) dostatok informácií.', + 'select_at_least_one_account' => 'Vyberte aspoň jeden účet aktív', + 'select_at_least_one_category' => 'Vyberte aspoň jednu kategóriu', + 'select_at_least_one_budget' => 'Vyberte aspoň jeden rozpočet', + 'select_at_least_one_tag' => 'Vyberte aspoň jeden štítok', + 'select_at_least_one_expense' => 'Vyberte aspoň jednu kombináciu účtov výdavkov/výnosov. Ak žiadne nemáte (zoznam je prázdny), tento výkaz nie je k dispozícii.', + 'account_default_currency' => 'Toto bude predvolená mena previazaná s týmto bankovým účtom.', + 'reconcile_has_more' => 'Vaša účtovná kniha Firefly III obsahuje viac peňazí, než udáva vaša banka. Máte viac možností - vyberte, ako pokračovať. Potom kliknite na "Potvrdiť zúčtovanie".', + 'reconcile_has_less' => 'Vaša účtovná kniha Firefly III obsahuje menej peňazí, než udáva vaša banka. Máte viac možností - vyberte, ako pokračovať. Potom kliknite na "Potvrdiť zúčtovanie".', + 'reconcile_is_equal' => 'Vaša účtovná kniha Firefly III sa zhoduje s výpismi z vašej banky. Kliknite na "Potvrdiť zúčtovanie" pre potvrdenie.', + 'create_pos_reconcile_transaction' => 'Vymažte vybrané transakcie a vytvorte opravu pridania :amount k tomuto majetkovému účtu.', + 'create_neg_reconcile_transaction' => 'Vymažte vybrané transakcie a vytvorte opravu odstránenia :amount z tohto majetkového účtu.', + 'reconcile_do_nothing' => 'Vymažte vybraté transakcie, ale neopravujte ich.', + 'reconcile_go_back' => 'Opravu môžete kedykoľvek upraviť alebo odstrániť.', + 'must_be_asset_account' => 'Môžete zúčtovať len majetkové účty', + 'reconciliation_stored' => 'Zúčtovanie uložené', + 'reconciliation_error' => 'Transakcie boli označené ako zúčtované, ale kvôli nasledujúcej chybe neboli uložené: :error.', + 'reconciliation_transaction_title' => 'Zúčtovanie (:from pre :to)', + 'sum_of_reconciliation' => 'Sumár zúčtovania', + 'reconcile_this_account' => 'Vyúčtovat tento účet', + 'reconcile' => 'Vyúčtovať', + 'show' => 'Zobraziť', + 'confirm_reconciliation' => 'Potvrdiť zúčtovanie', + 'submitted_start_balance' => 'Vložený počiatočný zostatok', + 'selected_transactions' => 'Vybrané transakcie (:count)', + 'already_cleared_transactions' => 'Už zúčtované transakcie (:count)', + 'submitted_end_balance' => 'Vložený konečný zostatok', + 'initial_balance_description' => 'Počiatočný zostatok pre „:account“', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'neznáme', + 'interest_calc_daily' => 'Za deň', + 'interest_calc_monthly' => 'Za mesiac', + 'interest_calc_yearly' => 'Za rok', + 'interest_calc_weekly' => 'Za týždeň', + 'interest_calc_half-year' => 'Za polrok', + 'interest_calc_quarterly' => 'Za štvrťrok', + 'initial_balance_account' => 'Počiatočný zostatok pre :account', + 'list_options' => 'Možnosti zoznamu', // categories: - 'new_category' => 'Nová kategória', - 'create_new_category' => 'Vytvoriť novú kategóriu', - 'without_category' => 'Bez kategórie', - 'update_category' => 'Aktualizovať kategóriu', - 'updated_category' => 'Kategória „:name“ upravená', - 'categories' => 'Kategórie', - 'edit_category' => 'Upraviť kategóriu „:name“', - 'no_category' => '(žiadna kategória)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategória', - 'delete_category' => 'Odstrániť kategóriu „:name“', - 'deleted_category' => 'Kategorie „:name“ smazána', - 'store_category' => 'Uložiť novú kategóriu', - 'stored_category' => 'Nová kategória „:name“ bola uložená', - 'without_category_between' => 'Bez kategórie medzi :start a :end', + 'new_category' => 'Nová kategória', + 'create_new_category' => 'Vytvoriť novú kategóriu', + 'without_category' => 'Bez kategórie', + 'update_category' => 'Aktualizovať kategóriu', + 'updated_category' => 'Kategória „:name“ upravená', + 'categories' => 'Kategórie', + 'edit_category' => 'Upraviť kategóriu „:name“', + 'no_category' => '(žiadna kategória)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategória', + 'delete_category' => 'Odstrániť kategóriu „:name“', + 'deleted_category' => 'Kategorie „:name“ smazána', + 'store_category' => 'Uložiť novú kategóriu', + 'stored_category' => 'Nová kategória „:name“ bola uložená', + 'without_category_between' => 'Bez kategórie medzi :start a :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Upraviť výber', - 'update_deposit' => 'Upraviť vklad', - 'update_transaction' => 'Upraviť transakciu', - 'update_transfer' => 'Upraviť prevod', - 'updated_withdrawal' => 'Výber „:description“ bol upravený', - 'updated_deposit' => 'Vklad „:description“ bol upravený', - 'updated_transfer' => 'Prevod „:description“ bol upravený', - 'no_changes_withdrawal' => 'Výber ":description" nebol pozmenený.', - 'no_changes_deposit' => 'Vklad ":description" nebol pozmenený.', - 'no_changes_transfer' => 'Prevod ":description" nebol pozmenený.', - 'delete_withdrawal' => 'Výber bol „:description“ upravený', - 'delete_deposit' => 'Odstrániť vklad „:description“', - 'delete_transfer' => 'Odstrániť prevod „:description“', - 'deleted_withdrawal' => 'Výber „:description“ bol odstránený', - 'deleted_deposit' => 'Vklad „:description“ bol odstránený', - 'deleted_transfer' => 'Prevod „:description“ bol odstránený', - 'deleted_reconciliation' => 'Zúčtovacia transakcia ":description" bola odstránená', - 'stored_journal' => 'Nová transakcia „:description“ bola vytvorená', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Vaša nová transakcia bola vytvorená', - 'updated_journal_no_descr' => 'Vaša transakcia bola upravená', - 'select_transactions' => 'Vybrať transakcie', - 'rule_group_select_transactions' => 'Použiť ":title" na transakcie', - 'rule_select_transactions' => 'Použiť ":title" na transakcie', - 'stop_selection' => 'Ukončiť označovanie transakcií', - 'reconcile_selected' => 'Zúčtovať', - 'mass_delete_journals' => 'Odstrániť transakcie', - 'mass_edit_journals' => 'Upraviť transakcie', - 'mass_bulk_journals' => 'Hromadná úprava transakcií', - 'mass_bulk_journals_explain' => 'Tento formulár umožňuje meniť vlastnosti transakcií uvedených nižšie v jednej rozsiahlej aktualizácii. Všetky transakcie v tabuľke sa aktualizujú, keď zmeníte parametre, ktoré tu vidíte.', - 'part_of_split' => 'Táto transakcia je súčasťou rozúčtovanej transakcie. Ak ste nevybrali všetky rozúčtovania, môžete skončiť iba polovičnou zmenou transakcie.', - 'bulk_set_new_values' => 'Nové hodnoty nastavíte pomocí vstupních kolonek níže. Pokud je nevyplníte, budou u všeho vyprázdněny. Také si všimněte, že pouze výběry dostanou rozpočet.', - 'no_bulk_category' => 'Neupraviť kategóriu', - 'no_bulk_budget' => 'Neupraviť rozpočet', - 'no_bulk_tags' => 'Neupraviť štítky', - 'replace_with_these_tags' => 'Prepísať týmito štítkami', - 'append_these_tags' => 'Pridať tieto štítky', - 'mass_edit' => 'Upraviť označené individuálne', - 'bulk_edit' => 'Hromadná úprava označeného', - 'mass_delete' => 'Odstrániť označené', - 'cannot_edit_other_fields' => 'Nemôžete hromadne upravovať iné polia ako tie, ktoré sú tu, pretože nie je priestor na ich zobrazenie. Ak potrebujete upraviť tieto polia, kliknite na odkaz a upravte ich jednotlivo.', - 'cannot_change_amount_reconciled' => 'Nemôžete meniť sumu zúčtovaných transakcií.', - 'no_budget' => '(žiadny rozpočet)', - 'no_bill' => '(žiadny účet)', - 'account_per_budget' => 'Účty pre jednotlivé rozpočty', - 'account_per_category' => 'Účty pre jednotlivé kategórie', - 'create_new_object' => 'Vytvoriť', - 'empty' => '(prázdne)', - 'all_other_budgets' => '(všetky ostatné rozpočty)', - 'all_other_accounts' => '(všetky ostatné účty)', - 'expense_per_source_account' => 'Výdavky podľa zdrojového účtu', - 'expense_per_destination_account' => 'Výdavky podľa cieľového účtu', - 'income_per_destination_account' => 'Príjmy podľa cieľového účtu', - 'spent_in_specific_category' => 'Utratené v kategórii „:category“', - 'earned_in_specific_category' => 'Získané v kategórii „:category“', - 'spent_in_specific_tag' => 'Utratené pod štítkom „:tag“', - 'earned_in_specific_tag' => 'Získané pod štítkom „:tag“', - 'income_per_source_account' => 'Príjem podľa zdrojového účtu', - 'average_spending_per_destination' => 'Priemerný výdavok podľa cieľového účtu', - 'average_spending_per_source' => 'Priemerný výdavok podľa zdrojového účtu', - 'average_earning_per_source' => 'Priemerný príjem v jednotlivých zdrojových účtoch', - 'average_earning_per_destination' => 'Priemerný príjem v jednotlivých cieľových účtoch', - 'account_per_tag' => 'Účty pod jednotlivými štítkami', - 'tag_report_expenses_listed_once' => 'Výdavky a príjmy nikdy nie sú vypísané dvakrát. Ak má transakcia viacero štítkov, zobrazí se len pod jedným z nich. Môže se zdať, že na zozname chýbajú údaje, ale sumy budú správne.', - 'double_report_expenses_charted_once' => 'Výdavky a príjmy nikdy nie sú zobrazené dvakrát. Ak má transakcia viacero štítkov, zobrazí sa len pod jedným z nich. Môže sa zdať, že v tomto grafe niektoré údaje chýbajú, ale čiastky budú správne.', - 'tag_report_chart_single_tag' => 'Tento graf sa vzťahuje na jeden štítok. Ak má transakcia viac štítkov, to, čo tu vidíte, sa môže prejaviť aj v grafoch iných štítkov.', - 'tag' => 'Štítok', - 'no_budget_squared' => '(žiadny rozpočet)', - 'perm-delete-many' => 'Odstránenie viacerých položiek naraz môže byť veľmi rušivé. Buďte opatrní. Z tejto stránky môžete odstrániť časť rozdelenej transakcie, buďte preto opatrní.', - 'mass_deleted_transactions_success' => ':count transakcia bola odstránená.|:count transakcií bolo odstránených.', - 'mass_edited_transactions_success' => 'Upravila sa :count transakcia.|Upravilo sa :count transakcií.', - 'opt_group_' => '(žiadny typ účtu)', - 'opt_group_no_account_type' => '(žiadny typ účtu)', - 'opt_group_defaultAsset' => 'Predvolený majetkový účet', - 'opt_group_savingAsset' => 'Sporiace účty', - 'opt_group_sharedAsset' => 'Zdieľané účty aktív', - 'opt_group_ccAsset' => 'Kreditné karty', - 'opt_group_cashWalletAsset' => 'Peňaženky', - 'opt_group_expense_account' => 'Výdavkové účty', - 'opt_group_revenue_account' => 'Účty pre príjmy', - 'opt_group_l_Loan' => 'Záväzok: Pôžička', - 'opt_group_cash_account' => 'Hotovostný účet', - 'opt_group_l_Debt' => 'Záväzok: Dlh', - 'opt_group_l_Mortgage' => 'Záväzok: hypotéka', - 'opt_group_l_Credit card' => 'Záväzok: kreditná karta', - 'notes' => 'Poznámky', - 'unknown_journal_error' => 'Transakciu sa nepodarilo uložiť. Pozrite sa do záznamov denníka udalostí.', - 'attachment_not_found' => 'Nepodarilo sa nájsť prílohu.', - 'journal_link_bill' => 'Táto transakcia je prepojená s účtom :name. Ak chcete odstrániť prepojenie, odznačte ho. Pre prepojenie s iným účtom použite pravidlá.', - 'transaction_stored_link' => 'Transakcia #{ID} ("{title}") bola uložená.', - 'transaction_new_stored_link' => 'Transakcia #{ID} bola uložená.', - 'transaction_updated_link' => 'Transakcia #{ID} ("{title}") bola upravená.', - 'transaction_updated_no_changes' => 'Transakcia #{ID} ("{title}") sa nezmenila.', - 'first_split_decides' => 'Hodnotu tohto atribútu určuje prvé rozdelenie', - 'first_split_overrules_source' => 'Prvé rozdelenie môže pozmeniť zdrojový účet', - 'first_split_overrules_destination' => 'Prvé rozdelenie môže pozmeniť cieľový účet', - 'spent_x_of_y' => 'Utratené {amount} z {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Upraviť výber', + 'update_deposit' => 'Upraviť vklad', + 'update_transaction' => 'Upraviť transakciu', + 'update_transfer' => 'Upraviť prevod', + 'updated_withdrawal' => 'Výber „:description“ bol upravený', + 'updated_deposit' => 'Vklad „:description“ bol upravený', + 'updated_transfer' => 'Prevod „:description“ bol upravený', + 'no_changes_withdrawal' => 'Výber ":description" nebol pozmenený.', + 'no_changes_deposit' => 'Vklad ":description" nebol pozmenený.', + 'no_changes_transfer' => 'Prevod ":description" nebol pozmenený.', + 'delete_withdrawal' => 'Výber bol „:description“ upravený', + 'delete_deposit' => 'Odstrániť vklad „:description“', + 'delete_transfer' => 'Odstrániť prevod „:description“', + 'deleted_withdrawal' => 'Výber „:description“ bol odstránený', + 'deleted_deposit' => 'Vklad „:description“ bol odstránený', + 'deleted_transfer' => 'Prevod „:description“ bol odstránený', + 'deleted_reconciliation' => 'Zúčtovacia transakcia ":description" bola odstránená', + 'stored_journal' => 'Nová transakcia „:description“ bola vytvorená', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Vaša nová transakcia bola vytvorená', + 'updated_journal_no_descr' => 'Vaša transakcia bola upravená', + 'select_transactions' => 'Vybrať transakcie', + 'rule_group_select_transactions' => 'Použiť ":title" na transakcie', + 'rule_select_transactions' => 'Použiť ":title" na transakcie', + 'stop_selection' => 'Ukončiť označovanie transakcií', + 'reconcile_selected' => 'Zúčtovať', + 'mass_delete_journals' => 'Odstrániť transakcie', + 'mass_edit_journals' => 'Upraviť transakcie', + 'mass_bulk_journals' => 'Hromadná úprava transakcií', + 'mass_bulk_journals_explain' => 'Tento formulár umožňuje meniť vlastnosti transakcií uvedených nižšie v jednej rozsiahlej aktualizácii. Všetky transakcie v tabuľke sa aktualizujú, keď zmeníte parametre, ktoré tu vidíte.', + 'part_of_split' => 'Táto transakcia je súčasťou rozúčtovanej transakcie. Ak ste nevybrali všetky rozúčtovania, môžete skončiť iba polovičnou zmenou transakcie.', + 'bulk_set_new_values' => 'Nové hodnoty nastavíte pomocí vstupních kolonek níže. Pokud je nevyplníte, budou u všeho vyprázdněny. Také si všimněte, že pouze výběry dostanou rozpočet.', + 'no_bulk_category' => 'Neupraviť kategóriu', + 'no_bulk_budget' => 'Neupraviť rozpočet', + 'no_bulk_tags' => 'Neupraviť štítky', + 'replace_with_these_tags' => 'Prepísať týmito štítkami', + 'append_these_tags' => 'Pridať tieto štítky', + 'mass_edit' => 'Upraviť označené individuálne', + 'bulk_edit' => 'Hromadná úprava označeného', + 'mass_delete' => 'Odstrániť označené', + 'cannot_edit_other_fields' => 'Nemôžete hromadne upravovať iné polia ako tie, ktoré sú tu, pretože nie je priestor na ich zobrazenie. Ak potrebujete upraviť tieto polia, kliknite na odkaz a upravte ich jednotlivo.', + 'cannot_change_amount_reconciled' => 'Nemôžete meniť sumu zúčtovaných transakcií.', + 'no_budget' => '(žiadny rozpočet)', + 'no_bill' => '(žiadny účet)', + 'account_per_budget' => 'Účty pre jednotlivé rozpočty', + 'account_per_category' => 'Účty pre jednotlivé kategórie', + 'create_new_object' => 'Vytvoriť', + 'empty' => '(prázdne)', + 'all_other_budgets' => '(všetky ostatné rozpočty)', + 'all_other_accounts' => '(všetky ostatné účty)', + 'expense_per_source_account' => 'Výdavky podľa zdrojového účtu', + 'expense_per_destination_account' => 'Výdavky podľa cieľového účtu', + 'income_per_destination_account' => 'Príjmy podľa cieľového účtu', + 'spent_in_specific_category' => 'Utratené v kategórii „:category“', + 'earned_in_specific_category' => 'Získané v kategórii „:category“', + 'spent_in_specific_tag' => 'Utratené pod štítkom „:tag“', + 'earned_in_specific_tag' => 'Získané pod štítkom „:tag“', + 'income_per_source_account' => 'Príjem podľa zdrojového účtu', + 'average_spending_per_destination' => 'Priemerný výdavok podľa cieľového účtu', + 'average_spending_per_source' => 'Priemerný výdavok podľa zdrojového účtu', + 'average_earning_per_source' => 'Priemerný príjem v jednotlivých zdrojových účtoch', + 'average_earning_per_destination' => 'Priemerný príjem v jednotlivých cieľových účtoch', + 'account_per_tag' => 'Účty pod jednotlivými štítkami', + 'tag_report_expenses_listed_once' => 'Výdavky a príjmy nikdy nie sú vypísané dvakrát. Ak má transakcia viacero štítkov, zobrazí se len pod jedným z nich. Môže se zdať, že na zozname chýbajú údaje, ale sumy budú správne.', + 'double_report_expenses_charted_once' => 'Výdavky a príjmy nikdy nie sú zobrazené dvakrát. Ak má transakcia viacero štítkov, zobrazí sa len pod jedným z nich. Môže sa zdať, že v tomto grafe niektoré údaje chýbajú, ale čiastky budú správne.', + 'tag_report_chart_single_tag' => 'Tento graf sa vzťahuje na jeden štítok. Ak má transakcia viac štítkov, to, čo tu vidíte, sa môže prejaviť aj v grafoch iných štítkov.', + 'tag' => 'Štítok', + 'no_budget_squared' => '(žiadny rozpočet)', + 'perm-delete-many' => 'Odstránenie viacerých položiek naraz môže byť veľmi rušivé. Buďte opatrní. Z tejto stránky môžete odstrániť časť rozdelenej transakcie, buďte preto opatrní.', + 'mass_deleted_transactions_success' => ':count transakcia bola odstránená.|:count transakcií bolo odstránených.', + 'mass_edited_transactions_success' => 'Upravila sa :count transakcia.|Upravilo sa :count transakcií.', + 'opt_group_' => '(žiadny typ účtu)', + 'opt_group_no_account_type' => '(žiadny typ účtu)', + 'opt_group_defaultAsset' => 'Predvolený majetkový účet', + 'opt_group_savingAsset' => 'Sporiace účty', + 'opt_group_sharedAsset' => 'Zdieľané účty aktív', + 'opt_group_ccAsset' => 'Kreditné karty', + 'opt_group_cashWalletAsset' => 'Peňaženky', + 'opt_group_expense_account' => 'Výdavkové účty', + 'opt_group_revenue_account' => 'Účty pre príjmy', + 'opt_group_l_Loan' => 'Záväzok: Pôžička', + 'opt_group_cash_account' => 'Hotovostný účet', + 'opt_group_l_Debt' => 'Záväzok: Dlh', + 'opt_group_l_Mortgage' => 'Záväzok: hypotéka', + 'opt_group_l_Credit card' => 'Záväzok: kreditná karta', + 'notes' => 'Poznámky', + 'unknown_journal_error' => 'Transakciu sa nepodarilo uložiť. Pozrite sa do záznamov denníka udalostí.', + 'attachment_not_found' => 'Nepodarilo sa nájsť prílohu.', + 'journal_link_bill' => 'Táto transakcia je prepojená s účtom :name. Ak chcete odstrániť prepojenie, odznačte ho. Pre prepojenie s iným účtom použite pravidlá.', + 'transaction_stored_link' => 'Transakcia #{ID} ("{title}") bola uložená.', + 'transaction_new_stored_link' => 'Transakcia #{ID} bola uložená.', + 'transaction_updated_link' => 'Transakcia #{ID} ("{title}") bola upravená.', + 'transaction_updated_no_changes' => 'Transakcia #{ID} ("{title}") sa nezmenila.', + 'first_split_decides' => 'Hodnotu tohto atribútu určuje prvé rozdelenie', + 'first_split_overrules_source' => 'Prvé rozdelenie môže pozmeniť zdrojový účet', + 'first_split_overrules_destination' => 'Prvé rozdelenie môže pozmeniť cieľový účet', + 'spent_x_of_y' => 'Utratené {amount} z {total}', // new user: - 'welcome' => 'Vitajte ve Firefly III!', - 'submit' => 'Odoslať', - 'submission' => 'Odoslanie', - 'submit_yes_really' => 'Odoslať (viem, čo robím)', - 'getting_started' => 'Začíname', - 'to_get_started' => 'Je dobré vidieť, že ste Firefly III úspešne nainštalovali. Ak chcete začať používať tento nástroj, zadajte názov svojej banky a zostatok na vašom hlavnom bežnom účte. Ak máte viac účtov, zatiaľ si nerobte starosti. Môžete ich pridať neskôr. Firefly III jednoducho potrebuje aspoň niečo, s čím môže začať pracovať.', - 'savings_balance_text' => 'Firefly III vám automaticky vytvorí sporiaci účet. V predvolenom nastavení nebudú na vašom sporiacom účte žiadne peniaze, ale ak to vo Firefly III určíte, zostatok sa uloží ako taký.', - 'finish_up_new_user' => 'To je všetko! Môžete pokračovať stlačením Odoslať. Budete presmerovaní na úvodnú stránku Firefly III.', - 'stored_new_accounts_new_user' => 'Jupí! Vaše nové bankové účty boli uložené.', - 'set_preferred_language' => 'Ak chcete radšej používať Firefly III v inom jazyku, uveďte to tu.', - 'language' => 'Jazyk', - 'new_savings_account' => ':bank_name šetriaci účet', - 'cash_wallet' => 'Peňaženka', - 'currency_not_present' => 'Ak mena, ktorú bežne používate, nie je uvedená, nič sa nedeje. Svoje vlastné meny môžete vytvoriť v časti Možnosti > Meny.', + 'welcome' => 'Vitajte ve Firefly III!', + 'submit' => 'Odoslať', + 'submission' => 'Odoslanie', + 'submit_yes_really' => 'Odoslať (viem, čo robím)', + 'getting_started' => 'Začíname', + 'to_get_started' => 'Je dobré vidieť, že ste Firefly III úspešne nainštalovali. Ak chcete začať používať tento nástroj, zadajte názov svojej banky a zostatok na vašom hlavnom bežnom účte. Ak máte viac účtov, zatiaľ si nerobte starosti. Môžete ich pridať neskôr. Firefly III jednoducho potrebuje aspoň niečo, s čím môže začať pracovať.', + 'savings_balance_text' => 'Firefly III vám automaticky vytvorí sporiaci účet. V predvolenom nastavení nebudú na vašom sporiacom účte žiadne peniaze, ale ak to vo Firefly III určíte, zostatok sa uloží ako taký.', + 'finish_up_new_user' => 'To je všetko! Môžete pokračovať stlačením Odoslať. Budete presmerovaní na úvodnú stránku Firefly III.', + 'stored_new_accounts_new_user' => 'Jupí! Vaše nové bankové účty boli uložené.', + 'set_preferred_language' => 'Ak chcete radšej používať Firefly III v inom jazyku, uveďte to tu.', + 'language' => 'Jazyk', + 'new_savings_account' => ':bank_name šetriaci účet', + 'cash_wallet' => 'Peňaženka', + 'currency_not_present' => 'Ak mena, ktorú bežne používate, nie je uvedená, nič sa nedeje. Svoje vlastné meny môžete vytvoriť v časti Možnosti > Meny.', // home page: - 'transaction_table_description' => 'Tabuľka obsahujúca vaše transakcie', - 'opposing_account' => 'Cieľový účet', - 'yourAccounts' => 'Vaše účty', - 'your_accounts' => 'Prehľad vášho účtu', - 'category_overview' => 'Prehľad kategórie', - 'expense_overview' => 'Prehľad výdavkových účtov', - 'revenue_overview' => 'Prehľad príjmových účtov', - 'budgetsAndSpending' => 'Rozpočty a útraty', - 'budgets_and_spending' => 'Rozpočty a útraty', - 'go_to_budget' => 'Zobraziť rozpočet „{budget}“', - 'go_to_deposits' => 'Zobraziť vklady', - 'go_to_expenses' => 'Zobraziť výdavky', - 'savings' => 'Úspory', - 'newWithdrawal' => 'Nový výdavok', - 'newDeposit' => 'Nový vklad', - 'newTransfer' => 'Nový převod', - 'bills_to_pay' => 'Účty na úhradu', - 'per_day' => 'Za deň', - 'left_to_spend_per_day' => 'Zostáva na denné útraty', - 'bills_paid' => 'Zaplatené účty', - 'custom_period' => 'Vlastné obdobie', - 'reset_to_current' => 'Obnoviť na aktuálne obdobie', - 'select_period' => 'Vyberte obdobie', + 'transaction_table_description' => 'Tabuľka obsahujúca vaše transakcie', + 'opposing_account' => 'Cieľový účet', + 'yourAccounts' => 'Vaše účty', + 'your_accounts' => 'Prehľad vášho účtu', + 'category_overview' => 'Prehľad kategórie', + 'expense_overview' => 'Prehľad výdavkových účtov', + 'revenue_overview' => 'Prehľad príjmových účtov', + 'budgetsAndSpending' => 'Rozpočty a útraty', + 'budgets_and_spending' => 'Rozpočty a útraty', + 'go_to_budget' => 'Zobraziť rozpočet „{budget}“', + 'go_to_deposits' => 'Zobraziť vklady', + 'go_to_expenses' => 'Zobraziť výdavky', + 'savings' => 'Úspory', + 'newWithdrawal' => 'Nový výdavok', + 'newDeposit' => 'Nový vklad', + 'newTransfer' => 'Nový převod', + 'bills_to_pay' => 'Účty na úhradu', + 'per_day' => 'Za deň', + 'left_to_spend_per_day' => 'Zostáva na denné útraty', + 'bills_paid' => 'Zaplatené účty', + 'custom_period' => 'Vlastné obdobie', + 'reset_to_current' => 'Obnoviť na aktuálne obdobie', + 'select_period' => 'Vyberte obdobie', // menu and titles, should be recycled as often as possible: - 'currency' => 'Mena', - 'preferences' => 'Možnosti', - 'logout' => 'Odhlásiť sa', - 'logout_other_sessions' => 'Odhlásiť všetky ostatné sedenia', - 'toggleNavigation' => 'Vyp/zap. navigáciu', - 'searchPlaceholder' => 'Vyhľadať...', - 'version' => 'Verzia', - 'dashboard' => 'Prehľad', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Rozpočet k dispozícii ({currency})', - 'currencies' => 'Meny', - 'activity' => 'Aktivita', - 'usage' => 'Použitie', - 'accounts' => 'Účty', - 'Asset account' => 'Účet aktiv', - 'Default account' => 'Účet aktiv', - 'Expense account' => 'Výdavkový účet', - 'Revenue account' => 'Príjmový účet', - 'Initial balance account' => 'Účet počiatočného zostatku', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Dlh', - 'account_type_Loan' => 'Pôžička', - 'account_type_Mortgage' => 'Hypotéka', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Kreditná karta', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'Túto sumu mi dlžia', - 'liability_direction_debit' => 'Tento dlh mám voči niekomu inému', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Rozpočty', - 'tags' => 'Štítky', - 'reports' => 'Výkazy', - 'transactions' => 'Transakcie', - 'expenses' => 'Výdavky', - 'income' => 'Zisky / príjmy', - 'transfers' => 'Prevody', - 'moneyManagement' => 'Správa peňazí', - 'money_management' => 'Správa peňazí', - 'tools' => 'Nástroje', - 'piggyBanks' => 'Pokladničky', - 'piggy_banks' => 'Pokladničky', - 'amount_x_of_y' => '{current} z {total}', - 'bills' => 'Účty', - 'withdrawal' => 'Výber', - 'opening_balance' => 'Počiatočný zostatok', - 'deposit' => 'Vklad', - 'account' => 'Účet', - 'transfer' => 'Prevod', - 'Withdrawal' => 'Výber', - 'Deposit' => 'Vklad', - 'Transfer' => 'Prevod', - 'bill' => 'Účet', - 'yes' => 'Áno', - 'no' => 'Ne', - 'amount' => 'Suma', - 'overview' => 'Prehľad', - 'saveOnAccount' => 'Uložiť na účet', - 'unknown' => 'Neznáme', - 'monthly' => 'Mesačne', - 'profile' => 'Profil', - 'errors' => 'Chyby', - 'debt_start_date' => 'Dátum začiatku dlhu', - 'debt_start_amount' => 'Počiatočná výška dlhu', - 'debt_start_amount_help' => 'Najlepšie je vždy túto hodnotu nastaviť na zápornú hodnotu. Ďalšie informácie nájdete na stránkach pomocníka (ikona (?) vpravo hore).', - 'interest_period_help' => 'Toto pole je čisto kozmetické a nebude sa pre vás počítať. Ako sa ukázalo, banky sú veľmi záludné, takže Firefly III to nikdy neurobí správne.', - 'store_new_liabilities_account' => 'Uložiť nový záväzok', - 'edit_liabilities_account' => 'Upraviť záväzok „:name“', - 'financial_control' => 'Finančná kontrola', - 'accounting' => 'Bankové účty', - 'automation' => 'Automatizácia', - 'others' => 'Iné', - 'classification' => 'Klasifikácia', - 'store_transaction' => 'Uložiť transakciu', + 'currency' => 'Mena', + 'preferences' => 'Možnosti', + 'logout' => 'Odhlásiť sa', + 'logout_other_sessions' => 'Odhlásiť všetky ostatné sedenia', + 'toggleNavigation' => 'Vyp/zap. navigáciu', + 'searchPlaceholder' => 'Vyhľadať...', + 'version' => 'Verzia', + 'dashboard' => 'Prehľad', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Rozpočet k dispozícii ({currency})', + 'currencies' => 'Meny', + 'activity' => 'Aktivita', + 'usage' => 'Použitie', + 'accounts' => 'Účty', + 'Asset account' => 'Účet aktiv', + 'Default account' => 'Účet aktiv', + 'Expense account' => 'Výdavkový účet', + 'Revenue account' => 'Príjmový účet', + 'Initial balance account' => 'Účet počiatočného zostatku', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Dlh', + 'account_type_Loan' => 'Pôžička', + 'account_type_Mortgage' => 'Hypotéka', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Kreditná karta', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'Túto sumu mi dlžia', + 'liability_direction_debit' => 'Tento dlh mám voči niekomu inému', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Rozpočty', + 'tags' => 'Štítky', + 'reports' => 'Výkazy', + 'transactions' => 'Transakcie', + 'expenses' => 'Výdavky', + 'income' => 'Zisky / príjmy', + 'transfers' => 'Prevody', + 'moneyManagement' => 'Správa peňazí', + 'money_management' => 'Správa peňazí', + 'tools' => 'Nástroje', + 'piggyBanks' => 'Pokladničky', + 'piggy_banks' => 'Pokladničky', + 'amount_x_of_y' => '{current} z {total}', + 'bills' => 'Účty', + 'withdrawal' => 'Výber', + 'opening_balance' => 'Počiatočný zostatok', + 'deposit' => 'Vklad', + 'account' => 'Účet', + 'transfer' => 'Prevod', + 'Withdrawal' => 'Výber', + 'Deposit' => 'Vklad', + 'Transfer' => 'Prevod', + 'bill' => 'Účet', + 'yes' => 'Áno', + 'no' => 'Ne', + 'amount' => 'Suma', + 'overview' => 'Prehľad', + 'saveOnAccount' => 'Uložiť na účet', + 'unknown' => 'Neznáme', + 'monthly' => 'Mesačne', + 'profile' => 'Profil', + 'errors' => 'Chyby', + 'debt_start_date' => 'Dátum začiatku dlhu', + 'debt_start_amount' => 'Počiatočná výška dlhu', + 'debt_start_amount_help' => 'Najlepšie je vždy túto hodnotu nastaviť na zápornú hodnotu. Ďalšie informácie nájdete na stránkach pomocníka (ikona (?) vpravo hore).', + 'interest_period_help' => 'Toto pole je čisto kozmetické a nebude sa pre vás počítať. Ako sa ukázalo, banky sú veľmi záludné, takže Firefly III to nikdy neurobí správne.', + 'store_new_liabilities_account' => 'Uložiť nový záväzok', + 'edit_liabilities_account' => 'Upraviť záväzok „:name“', + 'financial_control' => 'Finančná kontrola', + 'accounting' => 'Bankové účty', + 'automation' => 'Automatizácia', + 'others' => 'Iné', + 'classification' => 'Klasifikácia', + 'store_transaction' => 'Uložiť transakciu', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Predvolený finančný výkaz v období :start a :end', - 'report_audit' => 'Prehľad histórie transakcií medzi :start a :end', - 'report_category' => 'Výkaz kategórie v rozmedzí :start a :end', - 'report_double' => 'Výkaz účtov výdavkov/výnosov medzi :start a :end', - 'report_budget' => 'Výkaz rozpočtov medzi :start a :end', - 'report_tag' => 'Výkaz štítkov medzi :start a :end', - 'quick_link_reports' => 'Rýchle odkazy', - 'quick_link_examples' => 'Je to len niekoľko príkladov prepojení, ktoré vám pomôžu začať. Na stránkach pomocníka pod tlačidlom (?) Nájdete informácie o všetkých výkazoch a magických slovíčkach, ktoré môžete použiť.', - 'quick_link_default_report' => 'Predvolený finančný výkaz', - 'quick_link_audit_report' => 'Prehľad histórie transakcií', - 'report_this_month_quick' => 'Aktuálny mesiac, všetky účty', - 'report_last_month_quick' => 'Minulý mesiac, všetky účty', - 'report_this_year_quick' => 'Aktuálny rok, všetky účty', - 'report_this_fiscal_year_quick' => 'Aktuálny fiškálny rok, všetky účty', - 'report_all_time_quick' => 'Kedykoľvek, všetky účty', - 'reports_can_bookmark' => 'Pamätajte, že výkazy je možné si ukládať do záložiek.', - 'incomeVsExpenses' => 'Príjmy voči výdavkom', - 'accountBalances' => 'Zostatky účtov', - 'balanceStart' => 'Zostatok na začiatku obdobia', - 'balanceEnd' => 'Zostatok na konci obdobia', - 'splitByAccount' => 'Rozúčtovanie podľa účtu', - 'coveredWithTags' => 'Pokryté štítkami', - 'leftInBudget' => 'Zostáva v rozpočte', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Súhrn súčtov', - 'noCategory' => '(bez kategórie)', - 'notCharged' => 'Nestrhnuté (zatiaľ)', - 'inactive' => 'Neaktívne', - 'active' => 'Aktívne', - 'difference' => 'Rozdiel', - 'money_flowing_in' => 'Prichádzajúce', - 'money_flowing_out' => 'Odchádzajúce', - 'topX' => 'naj :number', - 'show_full_list' => 'Zobraziť celý zoznam', - 'show_only_top' => 'Zobraziť len :number naj', - 'report_type' => 'Typ výkazu', - 'report_type_default' => 'Predvolený finančný výkaz', - 'report_type_audit' => 'Prehlad histórie transakcií (audit)', - 'report_type_category' => 'Výkaz kategórií', - 'report_type_budget' => 'Výkaz rozpočtu', - 'report_type_tag' => 'Výkaz štítkov', - 'report_type_double' => 'Výkaz výdajov/výnosov účtu', - 'more_info_help' => 'Viac informácií o týchto druhoch výkazov nájdete na stránkach pomocníka. Stlačte ikonu (?) V pravom hornom rohu.', - 'report_included_accounts' => 'Zahrnuté účty', - 'report_date_range' => 'Obdobie', - 'report_preset_ranges' => 'Predvolené rozsahy', - 'shared' => 'Zdieľané', - 'fiscal_year' => 'Fiškálny rok', - 'income_entry' => 'Príjmy z účtu „:name“ medzi :start a :end', - 'expense_entry' => 'Výdavky z účtu „:name“ v období :start a :end', - 'category_entry' => 'Výdavky a príjmy na účte „:name“ v období :start a :end', - 'budget_spent_amount' => 'Výdavky z rozpočtu „:budget“ v období :start a :end', - 'balance_amount' => 'Výdavky z rozpočtu „:budget“ hradené z účtu „:account“ v období :start a :end', - 'no_audit_activity' => 'Medzi :start a :end nebola na účte :account_name zaznamenaná žiadna aktivita.', - 'audit_end_balance' => 'Zostatok na účte :account_name na konci :end bol: :balance', - 'reports_extra_options' => 'Ďalšie možnosti', - 'report_has_no_extra_options' => 'Tento výkaz nemá žiadne ďalšie možnosti', - 'reports_submit' => 'Zobraziť výkaz', - 'end_after_start_date' => 'Konečný dátum výkazu musí nasledovať po počiatočnom dátume.', - 'select_category' => 'Vybrať kategórie', - 'select_budget' => 'Vybrať rozpočty.', - 'select_tag' => 'Vybrať štítky.', - 'income_per_category' => 'Príjem podľa kategórie', - 'expense_per_category' => 'Výdavky podľa kategórie', - 'expense_per_budget' => 'Výdavky podľa rozpočtu', - 'income_per_account' => 'Príjem podľa účtu', - 'expense_per_account' => 'Výdavky podľa účtu', - 'expense_per_tag' => 'Výdavky podľa štítku', - 'income_per_tag' => 'Príjmy podľa štítku', - 'include_expense_not_in_budget' => 'Zahrnuté výdavky nie sú v zvolených rozpočtoch', - 'include_expense_not_in_account' => 'Zahrnuté výdavky nie sú v zvolených bankových účtoch', - 'include_expense_not_in_category' => 'Zahrnuté výdavky nie sú v zvolených kategóriách', - 'include_income_not_in_category' => 'Zahrnuté príjmy nie sú v zvolených kategóriách', - 'include_income_not_in_account' => 'Zahrnuté príjmy nie sú v zvolených bankových účtoch', - 'include_income_not_in_tags' => 'Zahrnuté príjmy nie sú v zvolených štítkoch', - 'include_expense_not_in_tags' => 'Zahrnuté výdavky nie sú v zvolených štítkoch', - 'everything_else' => 'Všetko ostatné', - 'income_and_expenses' => 'Príjmy a výdavky', - 'spent_average' => 'Utratené (priemerne)', - 'income_average' => 'Získané (priemerne)', - 'transaction_count' => 'Počet transakcií', - 'average_spending_per_account' => 'Priemerné výdaje na účet', - 'average_income_per_account' => 'Priemerný príjem v jednotlivých účtoch', - 'total' => 'Spolu', - 'description' => 'Popis', - 'sum_of_period' => 'Spolu v období', - 'average_in_period' => 'Priemer obdobia', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Predvolený účet aktív', - 'account_role_sharedAsset' => 'Zdieľaný účet aktív', - 'account_role_savingAsset' => 'Šetriaci účet', - 'account_role_ccAsset' => 'Kreditná karta', - 'account_role_cashWalletAsset' => 'Peňaženka', - 'budget_chart_click' => 'Graf zobrazíte kliknutím na názov rozpočtu vo vyššie uvedenej tabuľke.', - 'category_chart_click' => 'Graf zobrazíte kliknutím na názov kategórie vo vyššie uvedenej tabuľke.', - 'in_out_accounts' => 'Získané a utratené v kombináciách', - 'in_out_accounts_per_asset' => 'Zarobené a utratené (na majetkový účet)', - 'in_out_per_category' => 'Získané a utratené v jednotlivých kategóriách', - 'out_per_budget' => 'Utratené v jednotlivých rozpočtoch', - 'select_expense_revenue' => 'Vybrať účet výdavkov/ziskov', - 'multi_currency_report_sum' => 'Pretože tento zoznam obsahuje účty v rôznych menách, nedávajú zobrazované súčty zmysel. Výkaz v tomto prípade vždy použije predvolenú menu.', - 'sum_in_default_currency' => 'Suma vždy bude v mene, ktorú ste nastavili jako predvolenú.', - 'net_filtered_prefs' => 'Tento graf nikdy nebude obsahovať účty, ktoré nemajú začiarknuté políčko „Zahrnúť do čistého imania“.', + 'report_default' => 'Predvolený finančný výkaz v období :start a :end', + 'report_audit' => 'Prehľad histórie transakcií medzi :start a :end', + 'report_category' => 'Výkaz kategórie v rozmedzí :start a :end', + 'report_double' => 'Výkaz účtov výdavkov/výnosov medzi :start a :end', + 'report_budget' => 'Výkaz rozpočtov medzi :start a :end', + 'report_tag' => 'Výkaz štítkov medzi :start a :end', + 'quick_link_reports' => 'Rýchle odkazy', + 'quick_link_examples' => 'Je to len niekoľko príkladov prepojení, ktoré vám pomôžu začať. Na stránkach pomocníka pod tlačidlom (?) Nájdete informácie o všetkých výkazoch a magických slovíčkach, ktoré môžete použiť.', + 'quick_link_default_report' => 'Predvolený finančný výkaz', + 'quick_link_audit_report' => 'Prehľad histórie transakcií', + 'report_this_month_quick' => 'Aktuálny mesiac, všetky účty', + 'report_last_month_quick' => 'Minulý mesiac, všetky účty', + 'report_this_year_quick' => 'Aktuálny rok, všetky účty', + 'report_this_fiscal_year_quick' => 'Aktuálny fiškálny rok, všetky účty', + 'report_all_time_quick' => 'Kedykoľvek, všetky účty', + 'reports_can_bookmark' => 'Pamätajte, že výkazy je možné si ukládať do záložiek.', + 'incomeVsExpenses' => 'Príjmy voči výdavkom', + 'accountBalances' => 'Zostatky účtov', + 'balanceStart' => 'Zostatok na začiatku obdobia', + 'balanceEnd' => 'Zostatok na konci obdobia', + 'splitByAccount' => 'Rozúčtovanie podľa účtu', + 'coveredWithTags' => 'Pokryté štítkami', + 'leftInBudget' => 'Zostáva v rozpočte', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Súhrn súčtov', + 'noCategory' => '(bez kategórie)', + 'notCharged' => 'Nestrhnuté (zatiaľ)', + 'inactive' => 'Neaktívne', + 'active' => 'Aktívne', + 'difference' => 'Rozdiel', + 'money_flowing_in' => 'Prichádzajúce', + 'money_flowing_out' => 'Odchádzajúce', + 'topX' => 'naj :number', + 'show_full_list' => 'Zobraziť celý zoznam', + 'show_only_top' => 'Zobraziť len :number naj', + 'report_type' => 'Typ výkazu', + 'report_type_default' => 'Predvolený finančný výkaz', + 'report_type_audit' => 'Prehlad histórie transakcií (audit)', + 'report_type_category' => 'Výkaz kategórií', + 'report_type_budget' => 'Výkaz rozpočtu', + 'report_type_tag' => 'Výkaz štítkov', + 'report_type_double' => 'Výkaz výdajov/výnosov účtu', + 'more_info_help' => 'Viac informácií o týchto druhoch výkazov nájdete na stránkach pomocníka. Stlačte ikonu (?) V pravom hornom rohu.', + 'report_included_accounts' => 'Zahrnuté účty', + 'report_date_range' => 'Obdobie', + 'report_preset_ranges' => 'Predvolené rozsahy', + 'shared' => 'Zdieľané', + 'fiscal_year' => 'Fiškálny rok', + 'income_entry' => 'Príjmy z účtu „:name“ medzi :start a :end', + 'expense_entry' => 'Výdavky z účtu „:name“ v období :start a :end', + 'category_entry' => 'Výdavky a príjmy na účte „:name“ v období :start a :end', + 'budget_spent_amount' => 'Výdavky z rozpočtu „:budget“ v období :start a :end', + 'balance_amount' => 'Výdavky z rozpočtu „:budget“ hradené z účtu „:account“ v období :start a :end', + 'no_audit_activity' => 'Medzi :start a :end nebola na účte :account_name zaznamenaná žiadna aktivita.', + 'audit_end_balance' => 'Zostatok na účte :account_name na konci :end bol: :balance', + 'reports_extra_options' => 'Ďalšie možnosti', + 'report_has_no_extra_options' => 'Tento výkaz nemá žiadne ďalšie možnosti', + 'reports_submit' => 'Zobraziť výkaz', + 'end_after_start_date' => 'Konečný dátum výkazu musí nasledovať po počiatočnom dátume.', + 'select_category' => 'Vybrať kategórie', + 'select_budget' => 'Vybrať rozpočty.', + 'select_tag' => 'Vybrať štítky.', + 'income_per_category' => 'Príjem podľa kategórie', + 'expense_per_category' => 'Výdavky podľa kategórie', + 'expense_per_budget' => 'Výdavky podľa rozpočtu', + 'income_per_account' => 'Príjem podľa účtu', + 'expense_per_account' => 'Výdavky podľa účtu', + 'expense_per_tag' => 'Výdavky podľa štítku', + 'income_per_tag' => 'Príjmy podľa štítku', + 'include_expense_not_in_budget' => 'Zahrnuté výdavky nie sú v zvolených rozpočtoch', + 'include_expense_not_in_account' => 'Zahrnuté výdavky nie sú v zvolených bankových účtoch', + 'include_expense_not_in_category' => 'Zahrnuté výdavky nie sú v zvolených kategóriách', + 'include_income_not_in_category' => 'Zahrnuté príjmy nie sú v zvolených kategóriách', + 'include_income_not_in_account' => 'Zahrnuté príjmy nie sú v zvolených bankových účtoch', + 'include_income_not_in_tags' => 'Zahrnuté príjmy nie sú v zvolených štítkoch', + 'include_expense_not_in_tags' => 'Zahrnuté výdavky nie sú v zvolených štítkoch', + 'everything_else' => 'Všetko ostatné', + 'income_and_expenses' => 'Príjmy a výdavky', + 'spent_average' => 'Utratené (priemerne)', + 'income_average' => 'Získané (priemerne)', + 'transaction_count' => 'Počet transakcií', + 'average_spending_per_account' => 'Priemerné výdaje na účet', + 'average_income_per_account' => 'Priemerný príjem v jednotlivých účtoch', + 'total' => 'Spolu', + 'description' => 'Popis', + 'sum_of_period' => 'Spolu v období', + 'average_in_period' => 'Priemer obdobia', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Predvolený účet aktív', + 'account_role_sharedAsset' => 'Zdieľaný účet aktív', + 'account_role_savingAsset' => 'Šetriaci účet', + 'account_role_ccAsset' => 'Kreditná karta', + 'account_role_cashWalletAsset' => 'Peňaženka', + 'budget_chart_click' => 'Graf zobrazíte kliknutím na názov rozpočtu vo vyššie uvedenej tabuľke.', + 'category_chart_click' => 'Graf zobrazíte kliknutím na názov kategórie vo vyššie uvedenej tabuľke.', + 'in_out_accounts' => 'Získané a utratené v kombináciách', + 'in_out_accounts_per_asset' => 'Zarobené a utratené (na majetkový účet)', + 'in_out_per_category' => 'Získané a utratené v jednotlivých kategóriách', + 'out_per_budget' => 'Utratené v jednotlivých rozpočtoch', + 'select_expense_revenue' => 'Vybrať účet výdavkov/ziskov', + 'multi_currency_report_sum' => 'Pretože tento zoznam obsahuje účty v rôznych menách, nedávajú zobrazované súčty zmysel. Výkaz v tomto prípade vždy použije predvolenú menu.', + 'sum_in_default_currency' => 'Suma vždy bude v mene, ktorú ste nastavili jako predvolenú.', + 'net_filtered_prefs' => 'Tento graf nikdy nebude obsahovať účty, ktoré nemajú začiarknuté políčko „Zahrnúť do čistého imania“.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Graf', - 'month' => 'Mesiac', - 'budget' => 'Rozpočet', - 'spent' => 'Utratené', - 'spent_capped' => 'Útraty (obmedzené)', - 'spent_in_budget' => 'Utratené v rozpočte', - 'left_to_spend' => 'Zostáva k útrate', - 'earned' => 'Zarobené', - 'overspent' => 'Prekročené výdaje', - 'left' => 'Zostáva', - 'max-amount' => 'Maximálna suma', - 'min-amount' => 'Najmenšia možná suma', - 'journal-amount' => 'Zadanie aktuálneho účtu', - 'name' => 'Názov', - 'date' => 'Dátum', - 'date_and_time' => 'Dátum a čas', - 'time' => 'Čas', - 'paid' => 'Uhradené', - 'unpaid' => 'Neuhradené', - 'day' => 'Deň', - 'budgeted' => 'Rozpočtované', - 'period' => 'Obdobie', - 'balance' => 'Zostatok', - 'in_out_period' => 'In + out this period', - 'sum' => 'Suma', - 'summary' => 'Sumár', - 'average' => 'Priemer', - 'balanceFor' => 'Zostatok pre :name', - 'no_tags' => '(žiadne štítky)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Graf', + 'month' => 'Mesiac', + 'budget' => 'Rozpočet', + 'spent' => 'Utratené', + 'spent_capped' => 'Útraty (obmedzené)', + 'spent_in_budget' => 'Utratené v rozpočte', + 'left_to_spend' => 'Zostáva k útrate', + 'earned' => 'Zarobené', + 'overspent' => 'Prekročené výdaje', + 'left' => 'Zostáva', + 'max-amount' => 'Maximálna suma', + 'min-amount' => 'Najmenšia možná suma', + 'journal-amount' => 'Zadanie aktuálneho účtu', + 'name' => 'Názov', + 'date' => 'Dátum', + 'date_and_time' => 'Dátum a čas', + 'time' => 'Čas', + 'paid' => 'Uhradené', + 'unpaid' => 'Neuhradené', + 'day' => 'Deň', + 'budgeted' => 'Rozpočtované', + 'period' => 'Obdobie', + 'balance' => 'Zostatok', + 'in_out_period' => 'In + out this period', + 'sum' => 'Suma', + 'summary' => 'Sumár', + 'average' => 'Priemer', + 'balanceFor' => 'Zostatok pre :name', + 'no_tags' => '(žiadne štítky)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Vložiť peniaze do pokladničky ":name"', - 'piggy_bank' => 'Pokladnička', - 'new_piggy_bank' => 'Nová pokladnička', - 'store_piggy_bank' => 'Uložiť novú pokladničku', - 'stored_piggy_bank' => 'Uložiť novú pokladničku „:name“', - 'account_status' => 'Stav účtu', - 'left_for_piggy_banks' => 'Zostáva pre pokladničky', - 'sum_of_piggy_banks' => 'Súčet pokladničiek', - 'saved_so_far' => 'Doteraz našetrené', - 'left_to_save' => 'Zostáva ušetriť', - 'suggested_amount' => 'Odporúčaná mesačná suma do úspor', - 'add_money_to_piggy_title' => 'Vložiť peniaze do pokladničky ":name"', - 'remove_money_from_piggy_title' => 'Vybrať peniaze z pokladničky ":name"', - 'add' => 'Pridať', - 'no_money_for_piggy' => 'Nie sú k dispozícii žiadne peniaze, ktoré by se dali vložiť do tejto pokladničky.', - 'suggested_savings_per_month' => 'Odporúčané na mesiac', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Vložiť peniaze do pokladničky ":name"', + 'piggy_bank' => 'Pokladnička', + 'new_piggy_bank' => 'Nová pokladnička', + 'store_piggy_bank' => 'Uložiť novú pokladničku', + 'stored_piggy_bank' => 'Uložiť novú pokladničku „:name“', + 'account_status' => 'Stav účtu', + 'left_for_piggy_banks' => 'Zostáva pre pokladničky', + 'sum_of_piggy_banks' => 'Súčet pokladničiek', + 'saved_so_far' => 'Doteraz našetrené', + 'left_to_save' => 'Zostáva ušetriť', + 'suggested_amount' => 'Odporúčaná mesačná suma do úspor', + 'add_money_to_piggy_title' => 'Vložiť peniaze do pokladničky ":name"', + 'remove_money_from_piggy_title' => 'Vybrať peniaze z pokladničky ":name"', + 'add' => 'Pridať', + 'no_money_for_piggy' => 'Nie sú k dispozícii žiadne peniaze, ktoré by se dali vložiť do tejto pokladničky.', + 'suggested_savings_per_month' => 'Odporúčané na mesiac', - 'remove' => 'Odstrániť', - 'max_amount_add' => 'Najvyššia suma, ktorú je možné pridať je', - 'max_amount_remove' => 'Najvyššia suma, ktorú je možné odobrať je', - 'update_piggy_button' => 'Upraviť pokladničku', - 'update_piggy_title' => 'Upraviť pokladničku ":name"', - 'updated_piggy_bank' => 'Pokladnička „:name“ bola upravená', - 'details' => 'Podrobnosti', - 'events' => 'Udalosti', - 'target_amount' => 'Cieľová suma', - 'start_date' => 'Dátum zahájenia', - 'no_start_date' => 'Žiadny dátum zahájenia', - 'target_date' => 'Cieľový dátum', - 'no_target_date' => 'Žiadny cieľový dátum', - 'table' => 'Tabuľka', - 'delete_piggy_bank' => 'Odstrániť pokladničku ":name"', - 'cannot_add_amount_piggy' => 'Nepodarilo sa pridať :amount do „:name“.', - 'cannot_remove_from_piggy' => 'Nepodarilo sa odstrániť :amount z „:name“.', - 'deleted_piggy_bank' => 'Pokladnička ":name" bola odstránená', - 'added_amount_to_piggy' => ':amount pridané do „:name“', - 'removed_amount_from_piggy' => ':amount odobrané z „:name“', - 'piggy_events' => 'Súvisiace pokladničky', + 'remove' => 'Odstrániť', + 'max_amount_add' => 'Najvyššia suma, ktorú je možné pridať je', + 'max_amount_remove' => 'Najvyššia suma, ktorú je možné odobrať je', + 'update_piggy_button' => 'Upraviť pokladničku', + 'update_piggy_title' => 'Upraviť pokladničku ":name"', + 'updated_piggy_bank' => 'Pokladnička „:name“ bola upravená', + 'details' => 'Podrobnosti', + 'events' => 'Udalosti', + 'target_amount' => 'Cieľová suma', + 'start_date' => 'Dátum zahájenia', + 'no_start_date' => 'Žiadny dátum zahájenia', + 'target_date' => 'Cieľový dátum', + 'no_target_date' => 'Žiadny cieľový dátum', + 'table' => 'Tabuľka', + 'delete_piggy_bank' => 'Odstrániť pokladničku ":name"', + 'cannot_add_amount_piggy' => 'Nepodarilo sa pridať :amount do „:name“.', + 'cannot_remove_from_piggy' => 'Nepodarilo sa odstrániť :amount z „:name“.', + 'deleted_piggy_bank' => 'Pokladnička ":name" bola odstránená', + 'added_amount_to_piggy' => ':amount pridané do „:name“', + 'removed_amount_from_piggy' => ':amount odobrané z „:name“', + 'piggy_events' => 'Súvisiace pokladničky', // tags - 'delete_tag' => 'Odstrániť štítok „:tag“', - 'deleted_tag' => 'Štítok „:tag“ bol odstránený', - 'new_tag' => 'Vytvoriť nový štítok', - 'edit_tag' => 'Upraviť štítok „:tag“', - 'updated_tag' => 'Štítok „:tag“ bol upravený', - 'created_tag' => 'Štítok „:tag“ bol vytvorený!', + 'delete_tag' => 'Odstrániť štítok „:tag“', + 'deleted_tag' => 'Štítok „:tag“ bol odstránený', + 'new_tag' => 'Vytvoriť nový štítok', + 'edit_tag' => 'Upraviť štítok „:tag“', + 'updated_tag' => 'Štítok „:tag“ bol upravený', + 'created_tag' => 'Štítok „:tag“ bol vytvorený!', - 'transaction_journal_information' => 'Informácie o transakcii', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta informácie', - 'transaction_journal_more' => 'Ďalšie informácie', - 'basic_journal_information' => 'Základné Informácie o transakcii', - 'transaction_journal_extra' => 'Ďalšie informácie', - 'att_part_of_journal' => 'Uložené pod „:journal“', - 'total_amount' => 'Celková suma', - 'number_of_decimals' => 'Počet desatinných miest', + 'transaction_journal_information' => 'Informácie o transakcii', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta informácie', + 'transaction_journal_more' => 'Ďalšie informácie', + 'basic_journal_information' => 'Základné Informácie o transakcii', + 'transaction_journal_extra' => 'Ďalšie informácie', + 'att_part_of_journal' => 'Uložené pod „:journal“', + 'total_amount' => 'Celková suma', + 'number_of_decimals' => 'Počet desatinných miest', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Správa', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Správa použivateľov', - 'list_all_users' => 'Všetci použivatelia', - 'all_users' => 'Všetci použivatelia', - 'instance_configuration' => 'Nastavenia', - 'firefly_instance_configuration' => 'Možnosti nastavenia Firefly III', - 'setting_single_user_mode' => 'Režim jediného použivateľa', - 'setting_single_user_mode_explain' => 'V predvolenom režime Firefly III akceptuje len jednu registráciu – Vás. Toto je bezpečnostné opatrenie, brániace ostatným používať vašu inštaláciu, kým im to nepovolíte. Ďalšie registrácie sú blokované. Aj tento prepínač povolíte, budú vašu inštaláciu Firefly III môcť použiť, samozrejme za predpokladu, že je je pre nich dostupná (pripojená k Internetu).', - 'store_configuration' => 'Uložiť nastavenia', - 'single_user_administration' => 'Správa použivateľa pre :email', - 'edit_user' => 'Upraviť použivateľa :email', - 'hidden_fields_preferences' => 'Viac možností transakcií môžete povoliť vo svojich nastaveniach.', - 'user_data_information' => 'Použivateľské údaje', - 'user_information' => 'Informácie o použivateľovi', - 'total_size' => 'celková veľkosť', - 'budget_or_budgets' => ':count rozpočet|:count rozpočtov', - 'budgets_with_limits' => ':count rozpočet s rozpočtovou sumou|:count rozpočtov s rozpočtovou sumou', - 'nr_of_rules_in_total_groups' => ':count_rules pravidiel v skupine pravidiel :count_groups', - 'tag_or_tags' => ':count štítok|:count štítkov', - 'configuration_updated' => 'Nastavenie bolo upravené', - 'setting_is_demo_site' => 'Demostránka', - 'setting_is_demo_site_explain' => 'Ak začiarknete toto políčko, bude sa táto inštalácia správať, akoby išlo o ukážkovú stránku, čo môže mať zvláštne vedľajšie účinky.', - 'block_code_bounced' => 'E-mailové správy boli vrátené', - 'block_code_expired' => 'Platnost demoúčtu skončila', - 'no_block_code' => 'Nie je dôvod pre blokovanie, alebo použivateľ nebol zablokovaný', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Poživateľ ešte nepotvrdil svoju e-mailovú adresu', - 'admin_update_email' => 'Na rozdiel od profilovej stránky použivatel NEBUDE upozornený na zmenu svojej e-mailovej adresy!', - 'update_user' => 'Upraviť použivateľa', - 'updated_user' => 'Údaje použivateľa boli zmenené.', - 'delete_user' => 'Odstrániť použivateľa :email', - 'user_deleted' => 'Použivateľ bol odstránený', - 'send_test_email' => 'Poslať skúšobný e-mail', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Odoslať správu', - 'send_test_triggered' => 'Test bol odoslaný. Skontrolujte svoju doručenú poštu a súbory denníka.', - 'give_admin_careful' => 'Používatelia, ktorí majú práva správcu, vám môžu odobrať tie vaše. Buďte opatrní.', - 'admin_maintanance_title' => 'Údržba', - 'admin_maintanance_expl' => 'Niekoľko šikovných tlačidiel pre údržbu Firefly III', - 'admin_maintenance_clear_cache' => 'Vymazať medzipamäť', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Správa', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Správa použivateľov', + 'list_all_users' => 'Všetci použivatelia', + 'all_users' => 'Všetci použivatelia', + 'instance_configuration' => 'Nastavenia', + 'firefly_instance_configuration' => 'Možnosti nastavenia Firefly III', + 'setting_single_user_mode' => 'Režim jediného použivateľa', + 'setting_single_user_mode_explain' => 'V predvolenom režime Firefly III akceptuje len jednu registráciu – Vás. Toto je bezpečnostné opatrenie, brániace ostatným používať vašu inštaláciu, kým im to nepovolíte. Ďalšie registrácie sú blokované. Aj tento prepínač povolíte, budú vašu inštaláciu Firefly III môcť použiť, samozrejme za predpokladu, že je je pre nich dostupná (pripojená k Internetu).', + 'store_configuration' => 'Uložiť nastavenia', + 'single_user_administration' => 'Správa použivateľa pre :email', + 'edit_user' => 'Upraviť použivateľa :email', + 'hidden_fields_preferences' => 'Viac možností transakcií môžete povoliť vo svojich nastaveniach.', + 'user_data_information' => 'Použivateľské údaje', + 'user_information' => 'Informácie o použivateľovi', + 'total_size' => 'celková veľkosť', + 'budget_or_budgets' => ':count rozpočet|:count rozpočtov', + 'budgets_with_limits' => ':count rozpočet s rozpočtovou sumou|:count rozpočtov s rozpočtovou sumou', + 'nr_of_rules_in_total_groups' => ':count_rules pravidiel v skupine pravidiel :count_groups', + 'tag_or_tags' => ':count štítok|:count štítkov', + 'configuration_updated' => 'Nastavenie bolo upravené', + 'setting_is_demo_site' => 'Demostránka', + 'setting_is_demo_site_explain' => 'Ak začiarknete toto políčko, bude sa táto inštalácia správať, akoby išlo o ukážkovú stránku, čo môže mať zvláštne vedľajšie účinky.', + 'block_code_bounced' => 'E-mailové správy boli vrátené', + 'block_code_expired' => 'Platnost demoúčtu skončila', + 'no_block_code' => 'Nie je dôvod pre blokovanie, alebo použivateľ nebol zablokovaný', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Poživateľ ešte nepotvrdil svoju e-mailovú adresu', + 'admin_update_email' => 'Na rozdiel od profilovej stránky použivatel NEBUDE upozornený na zmenu svojej e-mailovej adresy!', + 'update_user' => 'Upraviť použivateľa', + 'updated_user' => 'Údaje použivateľa boli zmenené.', + 'delete_user' => 'Odstrániť použivateľa :email', + 'user_deleted' => 'Použivateľ bol odstránený', + 'send_test_email' => 'Poslať skúšobný e-mail', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Odoslať správu', + 'send_test_triggered' => 'Test bol odoslaný. Skontrolujte svoju doručenú poštu a súbory denníka.', + 'give_admin_careful' => 'Používatelia, ktorí majú práva správcu, vám môžu odobrať tie vaše. Buďte opatrní.', + 'admin_maintanance_title' => 'Údržba', + 'admin_maintanance_expl' => 'Niekoľko šikovných tlačidiel pre údržbu Firefly III', + 'admin_maintenance_clear_cache' => 'Vymazať medzipamäť', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Popis rozúčtovania', - 'split_transaction_title_help' => 'Ak vytvoríte rozúčtovanú transakciu, musí existovať globálny popis všetkých rozúčtovaní transakcie.', - 'split_title_help' => 'Ak vytvoríte rozúčtovanie transakcie, je potrebné, aby ste určili všeobecný popis pre všetky rozúčtovania danej transakcie.', - 'you_create_transfer' => 'Vytvárate prevod.', - 'you_create_withdrawal' => 'Vytvárate výber.', - 'you_create_deposit' => 'Vytvárate vklad.', + 'split_transaction_title' => 'Popis rozúčtovania', + 'split_transaction_title_help' => 'Ak vytvoríte rozúčtovanú transakciu, musí existovať globálny popis všetkých rozúčtovaní transakcie.', + 'split_title_help' => 'Ak vytvoríte rozúčtovanie transakcie, je potrebné, aby ste určili všeobecný popis pre všetky rozúčtovania danej transakcie.', + 'you_create_transfer' => 'Vytvárate prevod.', + 'you_create_withdrawal' => 'Vytvárate výber.', + 'you_create_deposit' => 'Vytvárate vklad.', // links - 'journal_link_configuration' => 'Konfigurácia prepojení transakcií', - 'create_new_link_type' => 'Vytvoriť nový typ prepojenia', - 'store_new_link_type' => 'Uložiť nový typ prepojenia', - 'update_link_type' => 'Upraviť typ prepojenia', - 'edit_link_type' => 'Upraviť prepojenie typu „:name“', - 'updated_link_type' => 'Prepojenie typu „:name“ bolo upravené', - 'delete_link_type' => 'Odstrániť prepojenie typu ":name"', - 'deleted_link_type' => 'Prepojenie typu ":name" bolo odstránené', - 'stored_new_link_type' => 'Uložiť nové prepojenie typu ":name"', - 'cannot_edit_link_type' => 'Nie je možné upraviť prepojenie typu ":name"', - 'link_type_help_name' => 'tj. "duplicity"', - 'link_type_help_inward' => 'tj. „duplicity“', - 'link_type_help_outward' => 'tj. "duplikované"', - 'save_connections_by_moving' => 'Uložiť prepojenie medzi týmito transakciami presunutím do iného typu prepojenia:', - 'do_not_save_connection' => '(neukladať prepojenie)', - 'link_transaction' => 'Prepojiť transakciu', - 'link_to_other_transaction' => 'Prepojiť túto transakciu s inou', - 'select_transaction_to_link' => 'Vyberte transakciu, s ktorou chcete túto transakciu prepojiť. Prepojenia v súčasnosti nie sú vo Firefly III (okrem zobrazenia) používané, ale sú plány to v budúcnosti zmeniť. Pomocou vyhľadávacieho poľa vyberte transakciu podľa názvu alebo podľa ID. Ak chcete pridať vlastné typy odkazov, pozrite si sekciu pre správu.', - 'this_transaction' => 'Táto transakcia', - 'transaction' => 'Transakcia', - 'comments' => 'Komentáre', - 'link_notes' => 'Všetky poznámky, ktoré chcete uložiť s prepojením.', - 'invalid_link_selection' => 'Tieto transakcie nie je možné prepojiť', - 'selected_transaction' => 'Vybraná transakcia', - 'journals_linked' => 'Transakcie sú prepojené.', - 'journals_error_linked' => 'Tieto transakcie už sú prepojené.', - 'journals_link_to_self' => 'Nie je možné prepojiť transakciu so sebou samou', - 'journal_links' => 'Prepojenia transakcie', - 'this_withdrawal' => 'Tento výber', - 'this_deposit' => 'Tento vklad', - 'this_transfer' => 'Tento prevod', - 'overview_for_link' => 'Prehľad pre prepojenie typu ":name"', - 'source_transaction' => 'Zdrojová transakcia', - 'link_description' => 'Popis prepojenia', - 'destination_transaction' => 'Cieľová transakcia', - 'delete_journal_link' => 'Odstránenie prepojenia medzi :source a :destination', - 'deleted_link' => 'Prepojenie bolo odstránené', + 'journal_link_configuration' => 'Konfigurácia prepojení transakcií', + 'create_new_link_type' => 'Vytvoriť nový typ prepojenia', + 'store_new_link_type' => 'Uložiť nový typ prepojenia', + 'update_link_type' => 'Upraviť typ prepojenia', + 'edit_link_type' => 'Upraviť prepojenie typu „:name“', + 'updated_link_type' => 'Prepojenie typu „:name“ bolo upravené', + 'delete_link_type' => 'Odstrániť prepojenie typu ":name"', + 'deleted_link_type' => 'Prepojenie typu ":name" bolo odstránené', + 'stored_new_link_type' => 'Uložiť nové prepojenie typu ":name"', + 'cannot_edit_link_type' => 'Nie je možné upraviť prepojenie typu ":name"', + 'link_type_help_name' => 'tj. "duplicity"', + 'link_type_help_inward' => 'tj. „duplicity“', + 'link_type_help_outward' => 'tj. "duplikované"', + 'save_connections_by_moving' => 'Uložiť prepojenie medzi týmito transakciami presunutím do iného typu prepojenia:', + 'do_not_save_connection' => '(neukladať prepojenie)', + 'link_transaction' => 'Prepojiť transakciu', + 'link_to_other_transaction' => 'Prepojiť túto transakciu s inou', + 'select_transaction_to_link' => 'Vyberte transakciu, s ktorou chcete túto transakciu prepojiť. Prepojenia v súčasnosti nie sú vo Firefly III (okrem zobrazenia) používané, ale sú plány to v budúcnosti zmeniť. Pomocou vyhľadávacieho poľa vyberte transakciu podľa názvu alebo podľa ID. Ak chcete pridať vlastné typy odkazov, pozrite si sekciu pre správu.', + 'this_transaction' => 'Táto transakcia', + 'transaction' => 'Transakcia', + 'comments' => 'Komentáre', + 'link_notes' => 'Všetky poznámky, ktoré chcete uložiť s prepojením.', + 'invalid_link_selection' => 'Tieto transakcie nie je možné prepojiť', + 'selected_transaction' => 'Vybraná transakcia', + 'journals_linked' => 'Transakcie sú prepojené.', + 'journals_error_linked' => 'Tieto transakcie už sú prepojené.', + 'journals_link_to_self' => 'Nie je možné prepojiť transakciu so sebou samou', + 'journal_links' => 'Prepojenia transakcie', + 'this_withdrawal' => 'Tento výber', + 'this_deposit' => 'Tento vklad', + 'this_transfer' => 'Tento prevod', + 'overview_for_link' => 'Prehľad pre prepojenie typu ":name"', + 'source_transaction' => 'Zdrojová transakcia', + 'link_description' => 'Popis prepojenia', + 'destination_transaction' => 'Cieľová transakcia', + 'delete_journal_link' => 'Odstránenie prepojenia medzi :source a :destination', + 'deleted_link' => 'Prepojenie bolo odstránené', // link translations: - 'Paid_name' => 'Uhradené', - 'Refund_name' => 'Refundácia', - 'Reimbursement_name' => 'Preplatenie', - 'Related_name' => 'Súvisiace', - 'relates to_inward' => 'súvisí s', - 'is (partially) refunded by_inward' => 'je (čiastočne) preplatené', - 'is (partially) paid for by_inward' => 'je (čiastočne) uhradené', - 'is (partially) reimbursed by_inward' => 'je (čiastočne) preplatené', - 'inward_transaction' => 'Príchodzia transakcia', - 'outward_transaction' => 'Odchádzajúca transakcia', - 'relates to_outward' => 'súvisí s', - '(partially) refunds_outward' => '(čiastočne) prepláca', - '(partially) pays for_outward' => '(čiastočne) uhrádza', - '(partially) reimburses_outward' => '(čiastočne) prepláca', - 'is (partially) refunded by' => 'je (čiastočne) preplatené', - 'is (partially) paid for by' => 'je (čiastočne) uhradené', - 'is (partially) reimbursed by' => 'je (čiastočne) preplatené', - 'relates to' => 'súvisí s', - '(partially) refunds' => '(čiastočne) prepláca', - '(partially) pays for' => '(čiastočne) uhrádza', - '(partially) reimburses' => '(čiastočne) prepláca', + 'Paid_name' => 'Uhradené', + 'Refund_name' => 'Refundácia', + 'Reimbursement_name' => 'Preplatenie', + 'Related_name' => 'Súvisiace', + 'relates to_inward' => 'súvisí s', + 'is (partially) refunded by_inward' => 'je (čiastočne) preplatené', + 'is (partially) paid for by_inward' => 'je (čiastočne) uhradené', + 'is (partially) reimbursed by_inward' => 'je (čiastočne) preplatené', + 'inward_transaction' => 'Príchodzia transakcia', + 'outward_transaction' => 'Odchádzajúca transakcia', + 'relates to_outward' => 'súvisí s', + '(partially) refunds_outward' => '(čiastočne) prepláca', + '(partially) pays for_outward' => '(čiastočne) uhrádza', + '(partially) reimburses_outward' => '(čiastočne) prepláca', + 'is (partially) refunded by' => 'je (čiastočne) preplatené', + 'is (partially) paid for by' => 'je (čiastočne) uhradené', + 'is (partially) reimbursed by' => 'je (čiastočne) preplatené', + 'relates to' => 'súvisí s', + '(partially) refunds' => '(čiastočne) prepláca', + '(partially) pays for' => '(čiastočne) uhrádza', + '(partially) reimburses' => '(čiastočne) prepláca', // split a transaction: - 'splits' => 'Rozúčtovania', - 'add_another_split' => 'Pridať ďalšie rozúčtovanie', - 'cannot_edit_opening_balance' => 'Počiatočný zostatok na účte nemôžete upraviť.', - 'no_edit_multiple_left' => 'Nevybrali ste žiadne platné transakcie na úpravu.', - 'breadcrumb_convert_group' => 'Zmeniť transakciu', - 'convert_invalid_source' => 'Zdrojové informácie sú pre transakciu #%d neplatné.', - 'convert_invalid_destination' => 'Cílové informace sú pre transakciu #%d neplatné.', - 'create_another' => 'Po uložení sa vrátiť späť sem a vytvoriť ďalší.', - 'after_update_create_another' => 'Po aktualizácii sa vrátiť späť a pokračovať v úpravách.', - 'store_as_new' => 'Namiesto aktualizácie uložiť ako novú transakciu.', - 'reset_after' => 'Po odoslaní vynulovať formulár', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Rozúčtovania', + 'add_another_split' => 'Pridať ďalšie rozúčtovanie', + 'cannot_edit_opening_balance' => 'Počiatočný zostatok na účte nemôžete upraviť.', + 'no_edit_multiple_left' => 'Nevybrali ste žiadne platné transakcie na úpravu.', + 'breadcrumb_convert_group' => 'Zmeniť transakciu', + 'convert_invalid_source' => 'Zdrojové informácie sú pre transakciu #%d neplatné.', + 'convert_invalid_destination' => 'Cílové informace sú pre transakciu #%d neplatné.', + 'create_another' => 'Po uložení sa vrátiť späť sem a vytvoriť ďalší.', + 'after_update_create_another' => 'Po aktualizácii sa vrátiť späť a pokračovať v úpravách.', + 'store_as_new' => 'Namiesto aktualizácie uložiť ako novú transakciu.', + 'reset_after' => 'Po odoslaní vynulovať formulár', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(nezoskupené)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(nezoskupené)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Vytvorme účet aktív!', - 'no_accounts_intro_asset' => 'Zatiaľ nemáte žiadne majetkové účty. Majetkové účty sú vaše hlavné účty: bežný účet, sporiaci účet, zdieľaný účet alebo dokonca vaša kreditná karta.', - 'no_accounts_imperative_asset' => 'Ak chcete začať používať Firefly III, musíte si vytvoriť aspoň jeden majetkový účet. Urobme tak teraz:', - 'no_accounts_create_asset' => 'Vytvoriť nový účet', - 'no_accounts_title_expense' => 'Vytvorme výdavkový účet!', - 'no_accounts_intro_expense' => 'Zatiaľ ste nevytvorili žiadne výdavkové účty. Tieto účty sú určené na útraty, napríklad v obchodoch a supermarketoch.', - 'no_accounts_imperative_expense' => 'Výdavkové účty sa vytvárajú automaticky pri vytváraní transakcií, ale ak chcete, môžete ich vytvoriť aj manuálne. Vytvorme si jeden teraz:', - 'no_accounts_create_expense' => 'Vytvoriť výdavkový účet', - 'no_accounts_title_revenue' => 'Vytvorme príjmový účet!', - 'no_accounts_intro_revenue' => 'Zatiaľ ste nevytvorili žiadny príjmový účet. Príjmové účty slúžia na príjem peňazí – napríklad od vášho zamestnávateľa.', - 'no_accounts_imperative_revenue' => 'Účty výnosov sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj manuálne. Vytvorme si jeden teraz:', - 'no_accounts_create_revenue' => 'Vytvoriť príjmový účet', - 'no_accounts_title_liabilities' => 'Poďme vytvoriť záväzok!', - 'no_accounts_intro_liabilities' => 'Zatiaľ ste nevytvorili žiadne záväzky. Sú to účty, ktoré registrujú vaše pôžičky a ostatné dlhy.', - 'no_accounts_imperative_liabilities' => 'Túto funkciu nemusíte používať, ale hodí sa, ak si chcete v týchto veciach udržať prehľad.', - 'no_accounts_create_liabilities' => 'Vytvoriť záväzok', - 'no_budgets_title_default' => 'Poďme vytvoriť rozpočet', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'Zatiaľ nemáte žiadne rozpočty. Rozpočty sa používajú na usporiadanie vašich výdavkov do logických skupín, ktoré môžete obmedziť výdavkom pomocou soft-cap.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Rozpočty sú základné nástroje správy financií. Poďme si taký vytvoriť:', - 'no_budgets_create_default' => 'Vytvoriť rozpočet', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Poďme vytvoriť kategóriu!', - 'no_categories_intro_default' => 'Zatiaľ nemáte žiadne kategórie. Kategórie sa používajú na doladenie vašich transakcií a na označenie príslušnou kategóriou.', - 'no_categories_imperative_default' => 'Kategórie sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj manuálne. Vytvorme si teraz jednu:', - 'no_categories_create_default' => 'Vytvoriť kategóriu', - 'no_tags_title_default' => 'Poďme vytvoriť štítok!', - 'no_tags_intro_default' => 'Ešte ste nevytvorili žiadny štítok. Slúžia na jemné dolaďovanie vašich transakcií a označujú ich konkrétnymi kľúčovými slovami.', - 'no_tags_imperative_default' => 'Štítky sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj ručne. Vytvorme si teraz jeden:', - 'no_tags_create_default' => 'Vytvoriť štítok', - 'no_transactions_title_withdrawal' => 'Poďme vytvoriť výdavok!', - 'no_transactions_intro_withdrawal' => 'Zatiaľ nemáte žiadne výdaje. Mali by ste si vytvoriť výdavky, aby ste mohli začať spravovať svoje financie.', - 'no_transactions_imperative_withdrawal' => 'Už ste minuli nejaké peniaze? Potom by ste si to mali zapísať:', - 'no_transactions_create_withdrawal' => 'Vytvoriť výdavok', - 'no_transactions_title_deposit' => 'Poďme vytvoriť nejaký príjem!', - 'no_transactions_intro_deposit' => 'Zatiaľ nemáte zaznamenaný žiadny príjem. Mali by ste vytvoriť záznamy o príjmoch, aby ste mohli začať spravovať svoje financie.', - 'no_transactions_imperative_deposit' => 'Dostali ste nejaké peniaze? Potom by ste si to mali zapísať:', - 'no_transactions_create_deposit' => 'Vytvoriť vklad', - 'no_transactions_title_transfers' => 'Poďme vytvoriť prevod!', - 'no_transactions_intro_transfers' => 'Zatiaľ nemáte žiadne prevody. Keď presúvate peniaze medzi majetkovými účtami, zaznamená sa to ako prevod.', - 'no_transactions_imperative_transfers' => 'Presunuli ste nejaké peniaze? Potom by ste si to mali zapísať:', - 'no_transactions_create_transfers' => 'Vytvoriť prevod', - 'no_piggies_title_default' => 'Poďme vytvoriť pokladničku!', - 'no_piggies_intro_default' => 'Zatiaľ nemáte žiadne pokladničky. Môžete vytvoriť pokladničky, ktoré vám rozdelia úspory a sledujú, na čo si šetríte.', - 'no_piggies_imperative_default' => 'Máte veci, na ktoré si šetríte peniaze? Vytvorte si pokladničku a sledujte vývoj:', - 'no_piggies_create_default' => 'Vytvoriť novú pokladničku', - 'no_bills_title_default' => 'Poďme vytvoriť účet!', - 'no_bills_intro_default' => 'Zatiaľ nemáte žiadne účty. Môžete si vytvárať účty na sledovanie pravidelných výdavkov, ako je váš nájom alebo poistenie.', - 'no_bills_imperative_default' => 'Máte také pravidelné účty? Vytvorte účet a sledujte svoje platby:', - 'no_bills_create_default' => 'Vytvoriť účet', + 'no_accounts_title_asset' => 'Vytvorme účet aktív!', + 'no_accounts_intro_asset' => 'Zatiaľ nemáte žiadne majetkové účty. Majetkové účty sú vaše hlavné účty: bežný účet, sporiaci účet, zdieľaný účet alebo dokonca vaša kreditná karta.', + 'no_accounts_imperative_asset' => 'Ak chcete začať používať Firefly III, musíte si vytvoriť aspoň jeden majetkový účet. Urobme tak teraz:', + 'no_accounts_create_asset' => 'Vytvoriť nový účet', + 'no_accounts_title_expense' => 'Vytvorme výdavkový účet!', + 'no_accounts_intro_expense' => 'Zatiaľ ste nevytvorili žiadne výdavkové účty. Tieto účty sú určené na útraty, napríklad v obchodoch a supermarketoch.', + 'no_accounts_imperative_expense' => 'Výdavkové účty sa vytvárajú automaticky pri vytváraní transakcií, ale ak chcete, môžete ich vytvoriť aj manuálne. Vytvorme si jeden teraz:', + 'no_accounts_create_expense' => 'Vytvoriť výdavkový účet', + 'no_accounts_title_revenue' => 'Vytvorme príjmový účet!', + 'no_accounts_intro_revenue' => 'Zatiaľ ste nevytvorili žiadny príjmový účet. Príjmové účty slúžia na príjem peňazí – napríklad od vášho zamestnávateľa.', + 'no_accounts_imperative_revenue' => 'Účty výnosov sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj manuálne. Vytvorme si jeden teraz:', + 'no_accounts_create_revenue' => 'Vytvoriť príjmový účet', + 'no_accounts_title_liabilities' => 'Poďme vytvoriť záväzok!', + 'no_accounts_intro_liabilities' => 'Zatiaľ ste nevytvorili žiadne záväzky. Sú to účty, ktoré registrujú vaše pôžičky a ostatné dlhy.', + 'no_accounts_imperative_liabilities' => 'Túto funkciu nemusíte používať, ale hodí sa, ak si chcete v týchto veciach udržať prehľad.', + 'no_accounts_create_liabilities' => 'Vytvoriť záväzok', + 'no_budgets_title_default' => 'Poďme vytvoriť rozpočet', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'Zatiaľ nemáte žiadne rozpočty. Rozpočty sa používajú na usporiadanie vašich výdavkov do logických skupín, ktoré môžete obmedziť výdavkom pomocou soft-cap.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Rozpočty sú základné nástroje správy financií. Poďme si taký vytvoriť:', + 'no_budgets_create_default' => 'Vytvoriť rozpočet', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Poďme vytvoriť kategóriu!', + 'no_categories_intro_default' => 'Zatiaľ nemáte žiadne kategórie. Kategórie sa používajú na doladenie vašich transakcií a na označenie príslušnou kategóriou.', + 'no_categories_imperative_default' => 'Kategórie sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj manuálne. Vytvorme si teraz jednu:', + 'no_categories_create_default' => 'Vytvoriť kategóriu', + 'no_tags_title_default' => 'Poďme vytvoriť štítok!', + 'no_tags_intro_default' => 'Ešte ste nevytvorili žiadny štítok. Slúžia na jemné dolaďovanie vašich transakcií a označujú ich konkrétnymi kľúčovými slovami.', + 'no_tags_imperative_default' => 'Štítky sa vytvárajú automaticky pri vytváraní transakcií, ale môžete ich vytvoriť aj ručne. Vytvorme si teraz jeden:', + 'no_tags_create_default' => 'Vytvoriť štítok', + 'no_transactions_title_withdrawal' => 'Poďme vytvoriť výdavok!', + 'no_transactions_intro_withdrawal' => 'Zatiaľ nemáte žiadne výdaje. Mali by ste si vytvoriť výdavky, aby ste mohli začať spravovať svoje financie.', + 'no_transactions_imperative_withdrawal' => 'Už ste minuli nejaké peniaze? Potom by ste si to mali zapísať:', + 'no_transactions_create_withdrawal' => 'Vytvoriť výdavok', + 'no_transactions_title_deposit' => 'Poďme vytvoriť nejaký príjem!', + 'no_transactions_intro_deposit' => 'Zatiaľ nemáte zaznamenaný žiadny príjem. Mali by ste vytvoriť záznamy o príjmoch, aby ste mohli začať spravovať svoje financie.', + 'no_transactions_imperative_deposit' => 'Dostali ste nejaké peniaze? Potom by ste si to mali zapísať:', + 'no_transactions_create_deposit' => 'Vytvoriť vklad', + 'no_transactions_title_transfers' => 'Poďme vytvoriť prevod!', + 'no_transactions_intro_transfers' => 'Zatiaľ nemáte žiadne prevody. Keď presúvate peniaze medzi majetkovými účtami, zaznamená sa to ako prevod.', + 'no_transactions_imperative_transfers' => 'Presunuli ste nejaké peniaze? Potom by ste si to mali zapísať:', + 'no_transactions_create_transfers' => 'Vytvoriť prevod', + 'no_piggies_title_default' => 'Poďme vytvoriť pokladničku!', + 'no_piggies_intro_default' => 'Zatiaľ nemáte žiadne pokladničky. Môžete vytvoriť pokladničky, ktoré vám rozdelia úspory a sledujú, na čo si šetríte.', + 'no_piggies_imperative_default' => 'Máte veci, na ktoré si šetríte peniaze? Vytvorte si pokladničku a sledujte vývoj:', + 'no_piggies_create_default' => 'Vytvoriť novú pokladničku', + 'no_bills_title_default' => 'Poďme vytvoriť účet!', + 'no_bills_intro_default' => 'Zatiaľ nemáte žiadne účty. Môžete si vytvárať účty na sledovanie pravidelných výdavkov, ako je váš nájom alebo poistenie.', + 'no_bills_imperative_default' => 'Máte také pravidelné účty? Vytvorte účet a sledujte svoje platby:', + 'no_bills_create_default' => 'Vytvoriť účet', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Opakované transakcie', - 'repeat_until_in_past' => 'Táto opakujúca sa transakcia sa prestala opakovať :date.', - 'recurring_calendar_view' => 'Kalendár', - 'no_recurring_title_default' => 'Poďme vytvoriť opakujúcu sa transakciu!', - 'no_recurring_intro_default' => 'Zatiaľ nemáte žiadne opakujúce sa transakcie. Môžete ich použiť na to, aby Firefly III za vás automaticky vytvoril transakcie.', - 'no_recurring_imperative_default' => 'Toto je dosť pokročilá funkcia, ale môže byť veľmi užitočná. Než budete pokračovať, nezabudnite si prečítať dokumentáciu - ikona (?) v pravom hornom rohu.', - 'no_recurring_create_default' => 'Vytvoriť opakujúcu sa transakciu', - 'make_new_recurring' => 'Vytvoriť opakujúcu sa transakciu', - 'recurring_daily' => 'Každý deň', - 'recurring_weekly' => 'Každý týždeň v :weekday', - 'recurring_weekly_skip' => 'Každý :skip týždeň v :weekday', - 'recurring_monthly' => 'Každý mesiac, :dayOfMonthho', - 'recurring_monthly_skip' => 'Každý :skip mesiac, :dayOfMonthho', - 'recurring_ndom' => 'Každý mesiac, :weekday :dayOfMonthho', - 'recurring_yearly' => 'Každý rok v :date', - 'overview_for_recurrence' => 'Prehľad opakujúcej sa transakcie ":title"', - 'warning_duplicates_repetitions' => 'V zriedkavých prípadoch sa v tomto zozname zobrazia dátumy dvakrát. To sa môže stať, keď sa zrazí viac opakovaní. Firefly III vygeneruje vždy jednu transakciu za deň.', - 'created_transactions' => 'Súvisiace transakcie', - 'expected_withdrawals' => 'Očakávané výbery', - 'expected_deposits' => 'Očakávané vklady', - 'expected_transfers' => 'Očakávané prevody', - 'created_withdrawals' => 'Vytvorené výbery', - 'created_deposits' => 'Vytvorené vklady', - 'created_transfers' => 'Vytvorené prevody', - 'recurring_info' => 'Opakovaná transakcia :count / :total', - 'created_from_recurrence' => 'Vytvorené z opakovanej transakcie ":title" (#:id)', - 'recurring_never_cron' => 'Zdá sa, že úloha cron, ktorá je nevyhnutná na podporu opakujúcich sa transakcií, sa nikdy nespustila. To je samozrejme normálne, keď ste práve nainštalovali Firefly III, ale toto by mali čo najskôr nastaviť. Skontrolujte stránky pomocníka pomocou ikony (?) v pravom hornom rohu stránky.', - 'recurring_cron_long_ago' => 'Vyzerá to, že od posledného spustenia úlohy cron na podporu opakujúcich sa transakcií uplynulo viac ako 36 hodín. Ste si istý, že bol nastavený správne? Skontrolujte stránky pomocníka pomocou ikony (?) v pravom hornom rohu stránky.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Opakované transakcie', + 'repeat_until_in_past' => 'Táto opakujúca sa transakcia sa prestala opakovať :date.', + 'recurring_calendar_view' => 'Kalendár', + 'no_recurring_title_default' => 'Poďme vytvoriť opakujúcu sa transakciu!', + 'no_recurring_intro_default' => 'Zatiaľ nemáte žiadne opakujúce sa transakcie. Môžete ich použiť na to, aby Firefly III za vás automaticky vytvoril transakcie.', + 'no_recurring_imperative_default' => 'Toto je dosť pokročilá funkcia, ale môže byť veľmi užitočná. Než budete pokračovať, nezabudnite si prečítať dokumentáciu - ikona (?) v pravom hornom rohu.', + 'no_recurring_create_default' => 'Vytvoriť opakujúcu sa transakciu', + 'make_new_recurring' => 'Vytvoriť opakujúcu sa transakciu', + 'recurring_daily' => 'Každý deň', + 'recurring_weekly' => 'Každý týždeň v :weekday', + 'recurring_weekly_skip' => 'Každý :skip týždeň v :weekday', + 'recurring_monthly' => 'Každý mesiac, :dayOfMonthho', + 'recurring_monthly_skip' => 'Každý :skip mesiac, :dayOfMonthho', + 'recurring_ndom' => 'Každý mesiac, :weekday :dayOfMonthho', + 'recurring_yearly' => 'Každý rok v :date', + 'overview_for_recurrence' => 'Prehľad opakujúcej sa transakcie ":title"', + 'warning_duplicates_repetitions' => 'V zriedkavých prípadoch sa v tomto zozname zobrazia dátumy dvakrát. To sa môže stať, keď sa zrazí viac opakovaní. Firefly III vygeneruje vždy jednu transakciu za deň.', + 'created_transactions' => 'Súvisiace transakcie', + 'expected_withdrawals' => 'Očakávané výbery', + 'expected_deposits' => 'Očakávané vklady', + 'expected_transfers' => 'Očakávané prevody', + 'created_withdrawals' => 'Vytvorené výbery', + 'created_deposits' => 'Vytvorené vklady', + 'created_transfers' => 'Vytvorené prevody', + 'recurring_info' => 'Opakovaná transakcia :count / :total', + 'created_from_recurrence' => 'Vytvorené z opakovanej transakcie ":title" (#:id)', + 'recurring_never_cron' => 'Zdá sa, že úloha cron, ktorá je nevyhnutná na podporu opakujúcich sa transakcií, sa nikdy nespustila. To je samozrejme normálne, keď ste práve nainštalovali Firefly III, ale toto by mali čo najskôr nastaviť. Skontrolujte stránky pomocníka pomocou ikony (?) v pravom hornom rohu stránky.', + 'recurring_cron_long_ago' => 'Vyzerá to, že od posledného spustenia úlohy cron na podporu opakujúcich sa transakcií uplynulo viac ako 36 hodín. Ste si istý, že bol nastavený správne? Skontrolujte stránky pomocníka pomocou ikony (?) v pravom hornom rohu stránky.', - 'create_new_recurrence' => 'Vytvoriť novú opakujúcu sa transakciu', - 'help_first_date' => 'Uveďte prvé očakávané opakovanie. Musí byť v budúcnosti.', - 'help_first_date_no_past' => 'Uveďte prvé očakávané opakovanie. Firefly III nevytvára transakcie v minulosti.', - 'no_currency' => '(žiadna mena)', - 'mandatory_for_recurring' => 'Nezbytné informace k opakovanosti', - 'mandatory_for_transaction' => 'Povinné informácie o transakcii', - 'optional_for_recurring' => 'Voliteľné informácie o opakovanosti', - 'optional_for_transaction' => 'Voliteľné informácie o transakcii', - 'change_date_other_options' => 'Pre zobrazenie ďalších možností zmeňte „prvý dátum“.', - 'mandatory_fields_for_tranaction' => 'Tieto hodnoty budú prevedené do vytvorených transakcií', - 'click_for_calendar' => 'Kliknite sem pre zobrazenie kalendára, ktorý vám ukáže, kedy sa transakcia bude opakovať.', - 'repeat_forever' => 'Opakovat donekonečna', - 'repeat_until_date' => 'Opakovat do dátumu', - 'repeat_times' => 'Zopakovat -krát', - 'recurring_skips_one' => 'Každý druhý', - 'recurring_skips_more' => 'Preskočí :count výskytov', - 'store_new_recurrence' => 'Uložiť opakovanú transakciu', - 'stored_new_recurrence' => 'Opakujúca sa transakcia „:title“ bola uložená.', - 'edit_recurrence' => 'Upraviť opakovanú transakciu „:title“', - 'recurring_repeats_until' => 'Opakuje sa do :date', - 'recurring_repeats_forever' => 'Opakuje sa navždy', - 'recurring_repeats_x_times' => 'Opakuje sa :count krát|Opakuje sa :count krát', - 'update_recurrence' => 'Upraviť opakujúcu sa transakciu', - 'updated_recurrence' => 'Opakovaná transakcia ":title" bola upravená', - 'recurrence_is_inactive' => 'Táto opakujúca sa transakcia nie je aktívna a nebude generovať nové transakcie.', - 'delete_recurring' => 'Odstrániť opakovanú transakciu „:title“', - 'new_recurring_transaction' => 'Nová opakujúca sa transakcia', - 'help_weekend' => 'Čo by mal Firefly III spraviť, keď opakovaná transakcia pripadne na sobotu alebo nedeľu?', - 'do_nothing' => 'Len vytvoriť transakciu', - 'skip_transaction' => 'Preskočit opakovanosť', - 'jump_to_friday' => 'Namiesto toho vytvoriť transakciu predošlý piatok', - 'jump_to_monday' => 'Namiesto toho vytvoriť transakciu predošlý pondelok', - 'will_jump_friday' => 'Vytvorí sa namiesto víkendu v piatok.', - 'will_jump_monday' => 'Vytvorí sa namiesto víkendu v pondelok.', - 'except_weekends' => 'Okrem víkendov', - 'recurrence_deleted' => 'Opakovaná transakcia ":title" bola odstránená', + 'create_new_recurrence' => 'Vytvoriť novú opakujúcu sa transakciu', + 'help_first_date' => 'Uveďte prvé očakávané opakovanie. Musí byť v budúcnosti.', + 'help_first_date_no_past' => 'Uveďte prvé očakávané opakovanie. Firefly III nevytvára transakcie v minulosti.', + 'no_currency' => '(žiadna mena)', + 'mandatory_for_recurring' => 'Nezbytné informace k opakovanosti', + 'mandatory_for_transaction' => 'Povinné informácie o transakcii', + 'optional_for_recurring' => 'Voliteľné informácie o opakovanosti', + 'optional_for_transaction' => 'Voliteľné informácie o transakcii', + 'change_date_other_options' => 'Pre zobrazenie ďalších možností zmeňte „prvý dátum“.', + 'mandatory_fields_for_tranaction' => 'Tieto hodnoty budú prevedené do vytvorených transakcií', + 'click_for_calendar' => 'Kliknite sem pre zobrazenie kalendára, ktorý vám ukáže, kedy sa transakcia bude opakovať.', + 'repeat_forever' => 'Opakovat donekonečna', + 'repeat_until_date' => 'Opakovat do dátumu', + 'repeat_times' => 'Zopakovat -krát', + 'recurring_skips_one' => 'Každý druhý', + 'recurring_skips_more' => 'Preskočí :count výskytov', + 'store_new_recurrence' => 'Uložiť opakovanú transakciu', + 'stored_new_recurrence' => 'Opakujúca sa transakcia „:title“ bola uložená.', + 'edit_recurrence' => 'Upraviť opakovanú transakciu „:title“', + 'recurring_repeats_until' => 'Opakuje sa do :date', + 'recurring_repeats_forever' => 'Opakuje sa navždy', + 'recurring_repeats_x_times' => 'Opakuje sa :count krát|Opakuje sa :count krát', + 'update_recurrence' => 'Upraviť opakujúcu sa transakciu', + 'updated_recurrence' => 'Opakovaná transakcia ":title" bola upravená', + 'recurrence_is_inactive' => 'Táto opakujúca sa transakcia nie je aktívna a nebude generovať nové transakcie.', + 'delete_recurring' => 'Odstrániť opakovanú transakciu „:title“', + 'new_recurring_transaction' => 'Nová opakujúca sa transakcia', + 'help_weekend' => 'Čo by mal Firefly III spraviť, keď opakovaná transakcia pripadne na sobotu alebo nedeľu?', + 'do_nothing' => 'Len vytvoriť transakciu', + 'skip_transaction' => 'Preskočit opakovanosť', + 'jump_to_friday' => 'Namiesto toho vytvoriť transakciu predošlý piatok', + 'jump_to_monday' => 'Namiesto toho vytvoriť transakciu predošlý pondelok', + 'will_jump_friday' => 'Vytvorí sa namiesto víkendu v piatok.', + 'will_jump_monday' => 'Vytvorí sa namiesto víkendu v pondelok.', + 'except_weekends' => 'Okrem víkendov', + 'recurrence_deleted' => 'Opakovaná transakcia ":title" bola odstránená', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Zostatok (:currency)', - 'box_spent_in_currency' => 'Utratené (:currency)', - 'box_earned_in_currency' => 'Zarobené (:currency)', - 'box_budgeted_in_currency' => 'Rozpočet (:currency)', - 'box_bill_paid_in_currency' => 'Uhradené účty (:currency)', - 'box_bill_unpaid_in_currency' => 'Neuhradené účty (:currency)', - 'box_left_to_spend_in_currency' => 'Zostáva k útrate (:currency)', - 'box_net_worth_in_currency' => 'Čisté imanie (:currency)', - 'box_spend_per_day' => 'Zostáva pre dennú útratu: :amount', + 'box_balance_in_currency' => 'Zostatok (:currency)', + 'box_spent_in_currency' => 'Utratené (:currency)', + 'box_earned_in_currency' => 'Zarobené (:currency)', + 'box_budgeted_in_currency' => 'Rozpočet (:currency)', + 'box_bill_paid_in_currency' => 'Uhradené účty (:currency)', + 'box_bill_unpaid_in_currency' => 'Neuhradené účty (:currency)', + 'box_left_to_spend_in_currency' => 'Zostáva k útrate (:currency)', + 'box_net_worth_in_currency' => 'Čisté imanie (:currency)', + 'box_spend_per_day' => 'Zostáva pre dennú útratu: :amount', // debug page - 'debug_page' => 'Stránka ladenia', - 'debug_submit_instructions' => 'Ak narazíte na problémy, môžete informácie z tohto poľa použiť ako ladiace informácie. Skopírujte a prilepte do nového alebo existujúceho hlásenia GitHub. Vygeneruje krásnu tabuľku, pomocou ktorej je možné rýchlo diagnostikovať váš problém.', - 'debug_pretty_table' => 'Ak skopírujete/prilepíte nižšie uvedené pole do vydania GitHub, vygeneruje sa tabuľka. Nepridávajte okolo tohto textu znaky ` ani úvodzovky.', - 'debug_additional_data' => 'Môžete tiež zdieľať obsah poľa nižšie. Môžete ich tiež skopírovať a vložiť do nového alebo existujúceho hlásenia GitHub. Obsah tohto poľa však môže obsahovať súkromné informácie, ako sú názvy účtov, podrobnosti transakcií alebo e-mailové adresy.', + 'debug_page' => 'Stránka ladenia', + 'debug_submit_instructions' => 'Ak narazíte na problémy, môžete informácie z tohto poľa použiť ako ladiace informácie. Skopírujte a prilepte do nového alebo existujúceho hlásenia GitHub. Vygeneruje krásnu tabuľku, pomocou ktorej je možné rýchlo diagnostikovať váš problém.', + 'debug_pretty_table' => 'Ak skopírujete/prilepíte nižšie uvedené pole do vydania GitHub, vygeneruje sa tabuľka. Nepridávajte okolo tohto textu znaky ` ani úvodzovky.', + 'debug_additional_data' => 'Môžete tiež zdieľať obsah poľa nižšie. Môžete ich tiež skopírovať a vložiť do nového alebo existujúceho hlásenia GitHub. Obsah tohto poľa však môže obsahovať súkromné informácie, ako sú názvy účtov, podrobnosti transakcií alebo e-mailové adresy.', // object groups - 'object_groups_menu_bar' => 'Skupiny', - 'object_groups_page_title' => 'Skupiny', - 'object_groups_breadcrumb' => 'Skupiny', - 'object_groups_index' => 'Prehľad', - 'object_groups' => 'Skupiny', - 'object_groups_empty_explain' => 'Niektoré veci vo Firefly III sa dajú rozdeliť do skupín. Napríklad pokladničky majú v obrazovkách úprav a vytvárania pole „Skupina“. Keď nastavíte toto pole, môžete na tejto stránke upravovať názvy a poradie skupín. Ďalšie informácie nájdete na stránkach pomocníka v pravom hornom rohu pod ikonou (?).', - 'object_group_title' => 'Názov', - 'edit_object_group' => 'Upraviť skupinu „:title“', - 'delete_object_group' => 'Odstrániť skupinu ":title"', - 'update_object_group' => 'Aktualizovať skupinu', - 'updated_object_group' => 'Skupina ":title" bola upravená', - 'deleted_object_group' => 'Skupina ":title" bola odstránená', - 'object_group' => 'Skupina', + 'object_groups_menu_bar' => 'Skupiny', + 'object_groups_page_title' => 'Skupiny', + 'object_groups_breadcrumb' => 'Skupiny', + 'object_groups_index' => 'Prehľad', + 'object_groups' => 'Skupiny', + 'object_groups_empty_explain' => 'Niektoré veci vo Firefly III sa dajú rozdeliť do skupín. Napríklad pokladničky majú v obrazovkách úprav a vytvárania pole „Skupina“. Keď nastavíte toto pole, môžete na tejto stránke upravovať názvy a poradie skupín. Ďalšie informácie nájdete na stránkach pomocníka v pravom hornom rohu pod ikonou (?).', + 'object_group_title' => 'Názov', + 'edit_object_group' => 'Upraviť skupinu „:title“', + 'delete_object_group' => 'Odstrániť skupinu ":title"', + 'update_object_group' => 'Aktualizovať skupinu', + 'updated_object_group' => 'Skupina ":title" bola upravená', + 'deleted_object_group' => 'Skupina ":title" bola odstránená', + 'object_group' => 'Skupina', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/sk_SK/validation.php b/resources/lang/sk_SK/validation.php index 214bafdebd..d5c06854ef 100644 --- a/resources/lang/sk_SK/validation.php +++ b/resources/lang/sk_SK/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/sl_SI/firefly.php b/resources/lang/sl_SI/firefly.php index 8047cb8944..92d98b5d93 100644 --- a/resources/lang/sl_SI/firefly.php +++ b/resources/lang/sl_SI/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Zapri', - 'actions' => 'Dejanja', - 'edit' => 'Uredi', - 'delete' => 'Izbriši', - 'split' => 'Razdeli', - 'single_split' => 'Razdeli', - 'clone' => 'Kloniraj', - 'clone_and_edit' => 'Kloniraj in uredi', - 'confirm_action' => 'Potrdi dejanje', - 'last_seven_days' => 'Zadnjih sedem dni', - 'last_thirty_days' => 'Zadnjih 30 dni', - 'last_180_days' => 'Zadnjih 180 dni', - 'month_to_date' => 'Od meseca do datuma', - 'year_to_date' => 'Leto do datuma', - 'YTD' => 'YTD', - 'welcome_back' => 'Kaj vse se dogaja?', - 'everything' => 'Vse', - 'today' => 'danes', - 'customRange' => 'Obseg po meri', - 'date_range' => 'Datumski obseg', - 'apply' => 'Uporabi', - 'select_date' => 'Izberi datum..', - 'cancel' => 'Prekliči', - 'from' => 'Od', - 'to' => 'Do', - 'structure' => 'Struktura', - 'help_translating' => 'Pomoč še ni na voljo v tvojem jeziku. Boš pomagal pri prevodu?', - 'showEverything' => 'Pokaži vse', - 'never' => 'Nikoli', - 'no_results_for_empty_search' => 'Vaše polje iskanja je prazno, zato ni bilo mogoče najti ničesar.', - 'removed_amount' => 'Odstranjeno :amount', - 'added_amount' => 'Dodano :amount', - 'asset_account_role_help' => 'Dodatne možnosti se lahko nastavljajo tudi kasneje.', - 'Opening balance' => 'Začetno stanje', - 'create_new_stuff' => 'Ustvari novo stvar', - 'new_withdrawal' => 'Nov odliv', - 'create_new_transaction' => 'Ustvari novo transakcijo', - 'sidebar_frontpage_create' => 'Ustvari', - 'new_transaction' => 'Nova transakcija', - 'no_rules_for_bill' => 'Ta račun nima nastavljenih pravil.', - 'go_to_asset_accounts' => 'Oglej si račune sredstev', - 'go_to_budgets' => 'Na proračune', - 'go_to_withdrawals' => 'Pojdi na svoje odlive', - 'clones_journal_x' => 'Ta transakcija je kopija ":description" (#:id)', - 'go_to_categories' => 'Na kategorije', - 'go_to_bills' => 'Na svoje račune', - 'go_to_expense_accounts' => 'Oglej si račune stroškov', - 'go_to_revenue_accounts' => 'Oglej si račune prihodkov', - 'go_to_piggies' => 'Na hranilnike', - 'new_deposit' => 'Nov priliv', - 'new_transfer' => 'Nov prenos', - 'new_transfers' => 'Nov prenos', - 'new_asset_account' => 'Nov račun sredstev', - 'new_expense_account' => 'Nov račun stroškov', - 'new_revenue_account' => 'Nov račun prihodkov', - 'new_liabilities_account' => 'Nova obveznost', - 'new_budget' => 'Nov proračun', - 'new_bill' => 'Nov račun', - 'block_account_logout' => 'Odjavljeni ste. Blokirani računi ne morejo uporabljati te spletne strani. Ali ste se registrirali z veljavnim e-poštnim naslovom?', - 'flash_success' => 'Uspelo je!', - 'flash_info' => 'Sporočilo', - 'flash_warning' => 'Opozorilo!', - 'flash_error' => 'Napaka!', - 'flash_danger' => 'Nevarnost!', - 'flash_info_multiple' => 'Tu je eno sporočilo | Tu je :count sporočil', - 'flash_error_multiple' => 'Tu je ena napaka | Tu je :count napak', - 'net_worth' => 'Neto vrednost', - 'help_for_this_page' => 'Pomoč za to stran', - 'help_for_this_page_body' => 'Več informacij o tej strani najdete v dokumentaciji.', - 'two_factor_welcome' => 'Zdravo!', - 'two_factor_enter_code' => 'Če želite nadaljevati, vnesite vašo dvofaktorsko kodo. Vaš program za prijavo jo lahko ustvari za vas.', - 'two_factor_code_here' => 'Tukaj vnesi kodo', - 'two_factor_title' => 'Dvofaktorska avtentikacija', - 'authenticate' => 'Avtentikacija', - 'two_factor_forgot_title' => 'Izguba dvofaktorske avtentikacije', - 'two_factor_forgot' => 'Pozabil sem svojo reč za dva koraka.', - 'two_factor_lost_header' => 'Nimate dostopa do dvofaktorske avtentikacije?', - 'two_factor_lost_intro' => 'Če ste izgubili tudi varnostne kode imate res smolo. Tega ne morete popraviti preko spletnega vmesnika. Imate dve možnosti.', - 'two_factor_lost_fix_self' => 'Če poganjate lastno namestitev Firefly III, preberite ta vnos v pogostih vprašanjih za navodila.', - 'two_factor_lost_fix_owner' => 'V nasprotnem primeru pišite po e-pošti lastniku spletnega mesta :site_owner in ga prosite, da ponastavi vaše preverjanje pristnosti v dveh korakih.', - 'mfa_backup_code' => 'V Firefly III si se prijavil z rezervno kodo. Te kode ne moreš več uporabiti zato jo na seznamu prečrtaj.', - 'pref_two_factor_new_backup_codes' => 'Pridobi nove varnostne kode', - 'pref_two_factor_backup_code_count' => 'Imate :count veljavno varnostno kodo.|Imate :count veljavnih varnostnih kod.', - '2fa_i_have_them' => 'Spravil sem jih!', - 'warning_much_data' => ':days dni podatkov se lahko nalaga kar nekaj časa.', - 'registered' => 'Uspešno ste se registrirali!', - 'Default asset account' => 'Privzeti premoženjski račun', - 'no_budget_pointer' => 'Zdi se, da še nimate proračuna. Ustvarite jih nekaj na strani proračuni. Proračuni vam lahko pomagajo spremljati stroške.', - 'no_bill_pointer' => 'Zdi se, da še nimate računov. Ustvarite jih na strani računi. Računi vam lahko pomagajo spremljati stroške.', - 'Savings account' => 'Varčevalni račun', - 'Credit card' => 'Kreditna kartica', - 'source_accounts' => 'Izvorni račun|Izvorni računi', - 'destination_accounts' => 'Ciljni račun|Ciljni računi', - 'user_id_is' => 'Vaše uporabniško ime je :user', - 'field_supports_markdown' => 'To polje podpira Markdown.', - 'need_more_help' => 'Če potrebujete več pomoči pri uporabi Firefly III, prosimo, da odprete zahtevek za pomoč na Githubu.', - 'reenable_intro_text' => 'Vodiča lahko ponovno aktiviraš.', - 'intro_boxes_after_refresh' => 'Info polja se ponovno pojavijo, ko osvežite stran.', - 'show_all_no_filter' => 'Pokaži vse transakcije brez omejitve datuma.', - 'expenses_by_category' => 'Stroški po kategorijah', - 'expenses_by_budget' => 'Stroški po proračunih', - 'income_by_category' => 'Prihodki po kategorijah', - 'expenses_by_asset_account' => 'Stroški po premoženjskih računih', - 'expenses_by_expense_account' => 'Stroški po računih stroškov', - 'cannot_redirect_to_account' => 'Oprostite, ne moremo vas preusmeriti na pravo stran.', - 'sum_of_expenses' => 'Vsota stroškov', - 'sum_of_income' => 'Vsota prihodkov', - 'liabilities' => 'Obveznosti', - 'spent_in_specific_budget' => 'Porabljeno v proračunu ":budget"', - 'spent_in_specific_double' => 'Porabljeno po računu/ih ":account"', - 'earned_in_specific_double' => 'Prisluženo po računu/ih ":account"', - 'source_account' => 'Izvorni račun', - 'source_account_reconciliation' => 'Pri usklajevalni transakciji ni možno urejati izvornega računa.', - 'destination_account' => 'Ciljni račun', - 'destination_account_reconciliation' => 'Pri usklajevalni transakciji ni možno urejati ciljnega računa.', - 'sum_of_expenses_in_budget' => 'Skupaj porabljeno v ":budget"', - 'left_in_budget_limit' => 'Na voljo za zapravljanje glede na proračun', - 'current_period' => 'Tekoče obdobje', - 'show_the_current_period_and_overview' => 'Pokaži trenutno obdobje in pregled', - 'pref_languages_locale' => 'Za ostale jezike, razen Angleščine, je potrebno na operacijski sistem namestiti prave jezikovne nastavitve. Če le-te niso nastavljene pravilno se valuta, datumi in zneski ne bodo pravilno prikazovali.', - 'budget_in_period' => 'Vse transakcije za proračun ":name" med :start in :end v :currency', - 'chart_budget_in_period' => 'Diagram vseh transakcij za proračun ":name" med :start in :end v :currency', - 'chart_budget_in_period_only_currency' => 'Proračunski znesek je v :currency, zato bodo na grafikonu prikazane samo transakcije v :currency.', - 'chart_account_in_period' => 'Grafikon vseh transakcij za račun ":name" (:balance) med :start in :end', - 'chart_category_in_period' => 'Grafikon vseh transakcij za kategorijo ":name" med :start in :end', - 'chart_category_all' => 'Grafikon vseh transakcij za kategorijo ":name"', - 'clone_withdrawal' => 'Kloniraj ta odliv', - 'clone_deposit' => 'Kloniraj ta priliv', - 'clone_transfer' => 'Kloniraj ta prenos', - 'multi_select_no_selection' => 'Nič ni izbrano', - 'multi_select_select_all' => 'Izberi vse', - 'multi_select_n_selected' => 'izbrano', - 'multi_select_all_selected' => 'Vse je izbrano', - 'multi_select_filter_placeholder' => 'Najdi..', - 'intro_next_label' => 'Naslednji', - 'intro_prev_label' => 'Predhodnji', - 'intro_skip_label' => 'Preskoči', - 'intro_done_label' => 'Končano', - 'between_dates_breadcrumb' => 'Med :start in :end', - 'all_journals_without_budget' => 'Vse transakcije brez proračuna', - 'journals_without_budget' => 'Transakcije brez proračuna', - 'all_journals_without_category' => 'Vse transakcije brez kategorije', - 'journals_without_category' => 'Transakcije brez kategorije', - 'all_journals_for_account' => 'Vse transakcije za račun :name', - 'chart_all_journals_for_account' => 'Grafikon vseh transakcij za račun :name', - 'journals_in_period_for_account' => 'Vse transakcije za račun ":name" med :start in :end', - 'journals_in_period_for_account_js' => 'Vse transakcije za račun {title} med {start} in {end}', - 'transferred' => 'Preneseno', - 'all_withdrawal' => 'Vsi stroški', - 'all_transactions' => 'Vse transakcije', - 'title_withdrawal_between' => 'Vsi stroški med :start in :end', - 'all_deposit' => 'Vsi dohodki', - 'title_deposit_between' => 'Vsi dohodki med :start in :end', - 'all_transfers' => 'Vsi prenosi', - 'title_transfers_between' => 'Vsi prenosi med :start in :end', - 'all_transfer' => 'Vsi prenosi', - 'all_journals_for_tag' => 'Vse transakcije za oznako ":tag"', - 'title_transfer_between' => 'Vse transakcije med :start in :end', - 'all_journals_for_category' => 'Vse transakcije v kategoriji :name', - 'all_journals_for_budget' => 'Vse transakcije za v proračunu :name', - 'chart_all_journals_for_budget' => 'Grafikon vseh transakcij za proračun :name', - 'journals_in_period_for_category' => 'Vse transakcije na računu ":name" med :start in :end', - 'journals_in_period_for_tag' => 'Vse transakcije z oznako :tag med :start in :end', - 'not_available_demo_user' => 'Funkcija ni na voljo za demo uporabnike.', - 'exchange_rate_instructions' => 'Račun sredstev "@name" sprejema samo transakcije v @native_currency. Če želite namesto tega uporabiti @foreign_currency, morate podati tudi znesek v @native_currency:', - 'transfer_exchange_rate_instructions' => 'Izvorni račun sredstev "@source_name" sprejema samo transakcije v @source_currency. Ciljni račun sredstev "@dest_name" pa sprejema samo transakcije v @dest_currency. Podati morate znesek v obeh valutah.', - 'transaction_data' => 'Podrobnosti transakcije', - 'invalid_server_configuration' => 'Neveljavna nastavitev strežnika', - 'invalid_locale_settings' => 'Firefly III ne more oblikovati denarnih zneskov, ker vašemu strežniku manjkajo zahtevani paketi. Obstajajo navodila za to.', - 'quickswitch' => 'Hitri preklop', - 'sign_in_to_start' => 'Za nadaljevanje se prijavi', - 'sign_in' => 'Prijava', - 'register_new_account' => 'Ustvari nov račun', - 'forgot_my_password' => 'Pozabil sem geslo', - 'problems_with_input' => 'Z vašim vnosom so težave.', - 'reset_password' => 'Ponastavite vaše geslo', - 'button_reset_password' => 'Ponastavite geslo', - 'reset_button' => 'Ponastavite', - 'want_to_login' => 'Želim se prijaviti', - 'login_page_title' => 'Prijava v Firefly III', - 'register_page_title' => 'Ustvari nov račun za Firefly III', - 'forgot_pw_page_title' => 'Ste pozabil geslo za Firefly III', - 'reset_pw_page_title' => 'Ponastavite geslo za Firefly III', - 'cannot_reset_demo_user' => 'Za demo uporabnika gesla ni mogoče ponastaviti.', - 'no_att_demo_user' => 'Demo uporabnik ne more naložiti prilog.', - 'button_register' => 'Registracija', - 'authorization' => 'Avtorizacija', - 'active_bills_only' => 'samo aktivni računi', - 'active_bills_only_total' => 'vsi aktivni računi', - 'active_exp_bills_only' => 'samo aktivni in pričakovani računi', - 'active_exp_bills_only_total' => 'samo aktivni in pričakovani računi', - 'per_period_sum_1D' => 'Predvideni dnevni stroški', - 'per_period_sum_1W' => 'Predvideni tedenski stroški', - 'per_period_sum_1M' => 'Predvideni mesečni stroški', - 'per_period_sum_3M' => 'Pričakovani četrtletni stroški', - 'per_period_sum_6M' => 'Predvideni polletni stroški', - 'per_period_sum_1Y' => 'Predvideni letni stroški', - 'average_per_bill' => 'povprečno po računu', - 'expected_total' => 'predvidena vsota', - 'reconciliation_account_name' => 'Usklajevanje :name (:currency)', - 'saved' => 'Shranjeno', - 'advanced_options' => 'Napredne možnosti', - 'advanced_options_explain' => 'Nekatere strani v Firefly III imajo za tem gumbom skrite napredne možnosti. Ta stran nima nič posebnega, vendar si oglejte še druge!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Zapri', + 'actions' => 'Dejanja', + 'edit' => 'Uredi', + 'delete' => 'Izbriši', + 'split' => 'Razdeli', + 'single_split' => 'Razdeli', + 'clone' => 'Kloniraj', + 'clone_and_edit' => 'Kloniraj in uredi', + 'confirm_action' => 'Potrdi dejanje', + 'last_seven_days' => 'Zadnjih sedem dni', + 'last_thirty_days' => 'Zadnjih 30 dni', + 'last_180_days' => 'Zadnjih 180 dni', + 'month_to_date' => 'Od meseca do datuma', + 'year_to_date' => 'Leto do datuma', + 'YTD' => 'YTD', + 'welcome_back' => 'Kaj vse se dogaja?', + 'everything' => 'Vse', + 'today' => 'danes', + 'customRange' => 'Obseg po meri', + 'date_range' => 'Datumski obseg', + 'apply' => 'Uporabi', + 'select_date' => 'Izberi datum..', + 'cancel' => 'Prekliči', + 'from' => 'Od', + 'to' => 'Do', + 'structure' => 'Struktura', + 'help_translating' => 'Pomoč še ni na voljo v tvojem jeziku. Boš pomagal pri prevodu?', + 'showEverything' => 'Pokaži vse', + 'never' => 'Nikoli', + 'no_results_for_empty_search' => 'Vaše polje iskanja je prazno, zato ni bilo mogoče najti ničesar.', + 'removed_amount' => 'Odstranjeno :amount', + 'added_amount' => 'Dodano :amount', + 'asset_account_role_help' => 'Dodatne možnosti se lahko nastavljajo tudi kasneje.', + 'Opening balance' => 'Začetno stanje', + 'create_new_stuff' => 'Ustvari novo stvar', + 'new_withdrawal' => 'Nov odliv', + 'create_new_transaction' => 'Ustvari novo transakcijo', + 'sidebar_frontpage_create' => 'Ustvari', + 'new_transaction' => 'Nova transakcija', + 'no_rules_for_bill' => 'Ta račun nima nastavljenih pravil.', + 'go_to_asset_accounts' => 'Oglej si račune sredstev', + 'go_to_budgets' => 'Na proračune', + 'go_to_withdrawals' => 'Pojdi na svoje odlive', + 'clones_journal_x' => 'Ta transakcija je kopija ":description" (#:id)', + 'go_to_categories' => 'Na kategorije', + 'go_to_bills' => 'Na svoje račune', + 'go_to_expense_accounts' => 'Oglej si račune stroškov', + 'go_to_revenue_accounts' => 'Oglej si račune prihodkov', + 'go_to_piggies' => 'Na hranilnike', + 'new_deposit' => 'Nov priliv', + 'new_transfer' => 'Nov prenos', + 'new_transfers' => 'Nov prenos', + 'new_asset_account' => 'Nov račun sredstev', + 'new_expense_account' => 'Nov račun stroškov', + 'new_revenue_account' => 'Nov račun prihodkov', + 'new_liabilities_account' => 'Nova obveznost', + 'new_budget' => 'Nov proračun', + 'new_bill' => 'Nov račun', + 'block_account_logout' => 'Odjavljeni ste. Blokirani računi ne morejo uporabljati te spletne strani. Ali ste se registrirali z veljavnim e-poštnim naslovom?', + 'flash_success' => 'Uspelo je!', + 'flash_info' => 'Sporočilo', + 'flash_warning' => 'Opozorilo!', + 'flash_error' => 'Napaka!', + 'flash_danger' => 'Nevarnost!', + 'flash_info_multiple' => 'Tu je eno sporočilo | Tu je :count sporočil', + 'flash_error_multiple' => 'Tu je ena napaka | Tu je :count napak', + 'net_worth' => 'Neto vrednost', + 'help_for_this_page' => 'Pomoč za to stran', + 'help_for_this_page_body' => 'Več informacij o tej strani najdete v dokumentaciji.', + 'two_factor_welcome' => 'Zdravo!', + 'two_factor_enter_code' => 'Če želite nadaljevati, vnesite vašo dvofaktorsko kodo. Vaš program za prijavo jo lahko ustvari za vas.', + 'two_factor_code_here' => 'Tukaj vnesi kodo', + 'two_factor_title' => 'Dvofaktorska avtentikacija', + 'authenticate' => 'Avtentikacija', + 'two_factor_forgot_title' => 'Izguba dvofaktorske avtentikacije', + 'two_factor_forgot' => 'Pozabil sem svojo reč za dva koraka.', + 'two_factor_lost_header' => 'Nimate dostopa do dvofaktorske avtentikacije?', + 'two_factor_lost_intro' => 'Če ste izgubili tudi varnostne kode imate res smolo. Tega ne morete popraviti preko spletnega vmesnika. Imate dve možnosti.', + 'two_factor_lost_fix_self' => 'Če poganjate lastno namestitev Firefly III, preberite ta vnos v pogostih vprašanjih za navodila.', + 'two_factor_lost_fix_owner' => 'V nasprotnem primeru pišite po e-pošti lastniku spletnega mesta :site_owner in ga prosite, da ponastavi vaše preverjanje pristnosti v dveh korakih.', + 'mfa_backup_code' => 'V Firefly III si se prijavil z rezervno kodo. Te kode ne moreš več uporabiti zato jo na seznamu prečrtaj.', + 'pref_two_factor_new_backup_codes' => 'Pridobi nove varnostne kode', + 'pref_two_factor_backup_code_count' => 'Imate :count veljavno varnostno kodo.|Imate :count veljavnih varnostnih kod.', + '2fa_i_have_them' => 'Spravil sem jih!', + 'warning_much_data' => ':days dni podatkov se lahko nalaga kar nekaj časa.', + 'registered' => 'Uspešno ste se registrirali!', + 'Default asset account' => 'Privzeti premoženjski račun', + 'no_budget_pointer' => 'Zdi se, da še nimate proračuna. Ustvarite jih nekaj na strani proračuni. Proračuni vam lahko pomagajo spremljati stroške.', + 'no_bill_pointer' => 'Zdi se, da še nimate računov. Ustvarite jih na strani računi. Računi vam lahko pomagajo spremljati stroške.', + 'Savings account' => 'Varčevalni račun', + 'Credit card' => 'Kreditna kartica', + 'source_accounts' => 'Izvorni račun|Izvorni računi', + 'destination_accounts' => 'Ciljni račun|Ciljni računi', + 'user_id_is' => 'Vaše uporabniško ime je :user', + 'field_supports_markdown' => 'To polje podpira Markdown.', + 'need_more_help' => 'Če potrebujete več pomoči pri uporabi Firefly III, prosimo, da odprete zahtevek za pomoč na Githubu.', + 'reenable_intro_text' => 'Vodiča lahko ponovno aktiviraš.', + 'intro_boxes_after_refresh' => 'Info polja se ponovno pojavijo, ko osvežite stran.', + 'show_all_no_filter' => 'Pokaži vse transakcije brez omejitve datuma.', + 'expenses_by_category' => 'Stroški po kategorijah', + 'expenses_by_budget' => 'Stroški po proračunih', + 'income_by_category' => 'Prihodki po kategorijah', + 'expenses_by_asset_account' => 'Stroški po premoženjskih računih', + 'expenses_by_expense_account' => 'Stroški po računih stroškov', + 'cannot_redirect_to_account' => 'Oprostite, ne moremo vas preusmeriti na pravo stran.', + 'sum_of_expenses' => 'Vsota stroškov', + 'sum_of_income' => 'Vsota prihodkov', + 'liabilities' => 'Obveznosti', + 'spent_in_specific_budget' => 'Porabljeno v proračunu ":budget"', + 'spent_in_specific_double' => 'Porabljeno po računu/ih ":account"', + 'earned_in_specific_double' => 'Prisluženo po računu/ih ":account"', + 'source_account' => 'Izvorni račun', + 'source_account_reconciliation' => 'Pri usklajevalni transakciji ni možno urejati izvornega računa.', + 'destination_account' => 'Ciljni račun', + 'destination_account_reconciliation' => 'Pri usklajevalni transakciji ni možno urejati ciljnega računa.', + 'sum_of_expenses_in_budget' => 'Skupaj porabljeno v ":budget"', + 'left_in_budget_limit' => 'Na voljo za zapravljanje glede na proračun', + 'current_period' => 'Tekoče obdobje', + 'show_the_current_period_and_overview' => 'Pokaži trenutno obdobje in pregled', + 'pref_languages_locale' => 'Za ostale jezike, razen Angleščine, je potrebno na operacijski sistem namestiti prave jezikovne nastavitve. Če le-te niso nastavljene pravilno se valuta, datumi in zneski ne bodo pravilno prikazovali.', + 'budget_in_period' => 'Vse transakcije za proračun ":name" med :start in :end v :currency', + 'chart_budget_in_period' => 'Diagram vseh transakcij za proračun ":name" med :start in :end v :currency', + 'chart_budget_in_period_only_currency' => 'Proračunski znesek je v :currency, zato bodo na grafikonu prikazane samo transakcije v :currency.', + 'chart_account_in_period' => 'Grafikon vseh transakcij za račun ":name" (:balance) med :start in :end', + 'chart_category_in_period' => 'Grafikon vseh transakcij za kategorijo ":name" med :start in :end', + 'chart_category_all' => 'Grafikon vseh transakcij za kategorijo ":name"', + 'clone_withdrawal' => 'Kloniraj ta odliv', + 'clone_deposit' => 'Kloniraj ta priliv', + 'clone_transfer' => 'Kloniraj ta prenos', + 'multi_select_no_selection' => 'Nič ni izbrano', + 'multi_select_select_all' => 'Izberi vse', + 'multi_select_n_selected' => 'izbrano', + 'multi_select_all_selected' => 'Vse je izbrano', + 'multi_select_filter_placeholder' => 'Najdi..', + 'intro_next_label' => 'Naslednji', + 'intro_prev_label' => 'Predhodnji', + 'intro_skip_label' => 'Preskoči', + 'intro_done_label' => 'Končano', + 'between_dates_breadcrumb' => 'Med :start in :end', + 'all_journals_without_budget' => 'Vse transakcije brez proračuna', + 'journals_without_budget' => 'Transakcije brez proračuna', + 'all_journals_without_category' => 'Vse transakcije brez kategorije', + 'journals_without_category' => 'Transakcije brez kategorije', + 'all_journals_for_account' => 'Vse transakcije za račun :name', + 'chart_all_journals_for_account' => 'Grafikon vseh transakcij za račun :name', + 'journals_in_period_for_account' => 'Vse transakcije za račun ":name" med :start in :end', + 'journals_in_period_for_account_js' => 'Vse transakcije za račun {title} med {start} in {end}', + 'transferred' => 'Preneseno', + 'all_withdrawal' => 'Vsi stroški', + 'all_transactions' => 'Vse transakcije', + 'title_withdrawal_between' => 'Vsi stroški med :start in :end', + 'all_deposit' => 'Vsi dohodki', + 'title_deposit_between' => 'Vsi dohodki med :start in :end', + 'all_transfers' => 'Vsi prenosi', + 'title_transfers_between' => 'Vsi prenosi med :start in :end', + 'all_transfer' => 'Vsi prenosi', + 'all_journals_for_tag' => 'Vse transakcije za oznako ":tag"', + 'title_transfer_between' => 'Vse transakcije med :start in :end', + 'all_journals_for_category' => 'Vse transakcije v kategoriji :name', + 'all_journals_for_budget' => 'Vse transakcije za v proračunu :name', + 'chart_all_journals_for_budget' => 'Grafikon vseh transakcij za proračun :name', + 'journals_in_period_for_category' => 'Vse transakcije na računu ":name" med :start in :end', + 'journals_in_period_for_tag' => 'Vse transakcije z oznako :tag med :start in :end', + 'not_available_demo_user' => 'Funkcija ni na voljo za demo uporabnike.', + 'exchange_rate_instructions' => 'Račun sredstev "@name" sprejema samo transakcije v @native_currency. Če želite namesto tega uporabiti @foreign_currency, morate podati tudi znesek v @native_currency:', + 'transfer_exchange_rate_instructions' => 'Izvorni račun sredstev "@source_name" sprejema samo transakcije v @source_currency. Ciljni račun sredstev "@dest_name" pa sprejema samo transakcije v @dest_currency. Podati morate znesek v obeh valutah.', + 'transaction_data' => 'Podrobnosti transakcije', + 'invalid_server_configuration' => 'Neveljavna nastavitev strežnika', + 'invalid_locale_settings' => 'Firefly III ne more oblikovati denarnih zneskov, ker vašemu strežniku manjkajo zahtevani paketi. Obstajajo navodila za to.', + 'quickswitch' => 'Hitri preklop', + 'sign_in_to_start' => 'Za nadaljevanje se prijavi', + 'sign_in' => 'Prijava', + 'register_new_account' => 'Ustvari nov račun', + 'forgot_my_password' => 'Pozabil sem geslo', + 'problems_with_input' => 'Z vašim vnosom so težave.', + 'reset_password' => 'Ponastavite vaše geslo', + 'button_reset_password' => 'Ponastavite geslo', + 'reset_button' => 'Ponastavite', + 'want_to_login' => 'Želim se prijaviti', + 'login_page_title' => 'Prijava v Firefly III', + 'register_page_title' => 'Ustvari nov račun za Firefly III', + 'forgot_pw_page_title' => 'Ste pozabil geslo za Firefly III', + 'reset_pw_page_title' => 'Ponastavite geslo za Firefly III', + 'cannot_reset_demo_user' => 'Za demo uporabnika gesla ni mogoče ponastaviti.', + 'no_att_demo_user' => 'Demo uporabnik ne more naložiti prilog.', + 'button_register' => 'Registracija', + 'authorization' => 'Avtorizacija', + 'active_bills_only' => 'samo aktivni računi', + 'active_bills_only_total' => 'vsi aktivni računi', + 'active_exp_bills_only' => 'samo aktivni in pričakovani računi', + 'active_exp_bills_only_total' => 'samo aktivni in pričakovani računi', + 'per_period_sum_1D' => 'Predvideni dnevni stroški', + 'per_period_sum_1W' => 'Predvideni tedenski stroški', + 'per_period_sum_1M' => 'Predvideni mesečni stroški', + 'per_period_sum_3M' => 'Pričakovani četrtletni stroški', + 'per_period_sum_6M' => 'Predvideni polletni stroški', + 'per_period_sum_1Y' => 'Predvideni letni stroški', + 'average_per_bill' => 'povprečno po računu', + 'expected_total' => 'predvidena vsota', + 'reconciliation_account_name' => 'Usklajevanje :name (:currency)', + 'saved' => 'Shranjeno', + 'advanced_options' => 'Napredne možnosti', + 'advanced_options_explain' => 'Nekatere strani v Firefly III imajo za tem gumbom skrite napredne možnosti. Ta stran nima nič posebnega, vendar si oglejte še druge!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'onemogočeno', - 'no_webhook_messages' => 'Tukaj ni webhook sporočil', - 'webhook_trigger_STORE_TRANSACTION' => 'Po ustvarjanju transakcije', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Po posodabljanju transakcije', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Po brisanju transakcije', - 'webhook_response_TRANSACTIONS' => 'Podrobnosti transakcije', - 'webhook_response_ACCOUNTS' => 'Podrobnosti računa', - 'webhook_response_none_NONE' => 'Ni podrobnosti', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Preglejte', - 'create_new_webhook' => 'Ustvari nov webhook', - 'webhooks_create_breadcrumb' => 'Ustvari nov webhook', - 'webhook_trigger_form_help' => 'Navedite, ob katerem dogodku se bo sprožil webhook', - 'webhook_response_form_help' => 'Navedite, kaj mora webhook poslati po URL-ju.', - 'webhook_delivery_form_help' => 'V kateri obliki mora webhook dostaviti podatke.', - 'webhook_active_form_help' => 'Webhook mora biti aktiven, sicer ne bo poklican.', - 'stored_new_webhook' => 'Shranjen nov webhook ":title"', - 'delete_webhook' => 'Izbriši Webhook', - 'deleted_webhook' => 'Izbrisan webhook ":title"', - 'edit_webhook' => 'Uredi webhook ":title"', - 'updated_webhook' => 'Posodobljen webhook ":title"', - 'edit_webhook_js' => 'Uredi webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Webhook je bil sprožen ob navedeni transakciji. Počakajte, da se prikažejo rezultati.', - 'webhook_messages' => 'Webhook sporočilo', - 'view_message' => 'Poglej sporočilo', - 'view_attempts' => 'Ogled neuspelih poskusov', - 'message_content_title' => 'Vsebina sporočila Webhook', - 'message_content_help' => 'To je vsebina sporočila, ki je bilo poslano (ali poskuseno) s tem webhookom.', - 'attempt_content_title' => 'Poskusi Webhook', - 'attempt_content_help' => 'To so vsi neuspešni poskusi pošiljanja tega sporočila webhook na konfigurirani URL. Čez nekaj časa bo Firefly III nehal poskušati.', - 'no_attempts' => 'Ni neuspešnih poskusov. To je dobra stvar!', - 'webhook_attempt_at' => 'Poskus ob {moment}', - 'logs' => 'Dnevniki', - 'response' => 'Odziv', - 'visit_webhook_url' => 'Obiščite URL webhooka', - 'reset_webhook_secret' => 'Ponastavi skrivno kodo webhooka', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") je bil shranjen.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") je bil posodobljen.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'onemogočeno', + 'no_webhook_messages' => 'Tukaj ni webhook sporočil', + 'webhook_trigger_STORE_TRANSACTION' => 'Po ustvarjanju transakcije', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Po posodabljanju transakcije', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Po brisanju transakcije', + 'webhook_response_TRANSACTIONS' => 'Podrobnosti transakcije', + 'webhook_response_ACCOUNTS' => 'Podrobnosti računa', + 'webhook_response_none_NONE' => 'Ni podrobnosti', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Preglejte', + 'create_new_webhook' => 'Ustvari nov webhook', + 'webhooks_create_breadcrumb' => 'Ustvari nov webhook', + 'webhook_trigger_form_help' => 'Navedite, ob katerem dogodku se bo sprožil webhook', + 'webhook_response_form_help' => 'Navedite, kaj mora webhook poslati po URL-ju.', + 'webhook_delivery_form_help' => 'V kateri obliki mora webhook dostaviti podatke.', + 'webhook_active_form_help' => 'Webhook mora biti aktiven, sicer ne bo poklican.', + 'stored_new_webhook' => 'Shranjen nov webhook ":title"', + 'delete_webhook' => 'Izbriši Webhook', + 'deleted_webhook' => 'Izbrisan webhook ":title"', + 'edit_webhook' => 'Uredi webhook ":title"', + 'updated_webhook' => 'Posodobljen webhook ":title"', + 'edit_webhook_js' => 'Uredi webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Webhook je bil sprožen ob navedeni transakciji. Počakajte, da se prikažejo rezultati.', + 'webhook_messages' => 'Webhook sporočilo', + 'view_message' => 'Poglej sporočilo', + 'view_attempts' => 'Ogled neuspelih poskusov', + 'message_content_title' => 'Vsebina sporočila Webhook', + 'message_content_help' => 'To je vsebina sporočila, ki je bilo poslano (ali poskuseno) s tem webhookom.', + 'attempt_content_title' => 'Poskusi Webhook', + 'attempt_content_help' => 'To so vsi neuspešni poskusi pošiljanja tega sporočila webhook na konfigurirani URL. Čez nekaj časa bo Firefly III nehal poskušati.', + 'no_attempts' => 'Ni neuspešnih poskusov. To je dobra stvar!', + 'webhook_attempt_at' => 'Poskus ob {moment}', + 'logs' => 'Dnevniki', + 'response' => 'Odziv', + 'visit_webhook_url' => 'Obiščite URL webhooka', + 'reset_webhook_secret' => 'Ponastavi skrivno kodo webhooka', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") je bil shranjen.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") je bil posodobljen.', // API access - 'authorization_request' => 'Firefly III v:version Zahteva za avtorizacijo', - 'authorization_request_intro' => ':client je zahteval dostop do upravljanja tvojih financ. Dovoliš da :client dostopa do teh podatkov?', - 'authorization_request_site' => 'Preusmerjeni boste na :url, ki bo nato lahko dostopal do vaših podatkov Firefly III.', - 'authorization_request_invalid' => 'Ta zahteva za dostop je neveljavna. Nikoli več ne sledite tej povezavi.', - 'scopes_will_be_able' => 'Ta aplikacija bo lahko:', - 'button_authorize' => 'Avtoriziraj', - 'none_in_select_list' => '(brez)', - 'no_piggy_bank' => '(brez hranilnika)', - 'name_in_currency' => ':name v :currency', - 'paid_in_currency' => 'Plačano v :currency', - 'unpaid_in_currency' => 'Neplačano v :currency', - 'is_alpha_warning' => 'Poganjate ALFA verzijo. Bodite pozorni na hrošče in težave.', - 'is_beta_warning' => 'Poganjate BETA verzijo. Bodite pozorni na hrošče in težave.', - 'all_destination_accounts' => 'Ciljni računi', - 'all_source_accounts' => 'Izvorni računi', - 'back_to_index' => 'Nazaj na kazalo', - 'cant_logout_guard' => 'Firefly III vas ne more odjaviti.', - 'internal_reference' => 'Interna referenca', + 'authorization_request' => 'Firefly III v:version Zahteva za avtorizacijo', + 'authorization_request_intro' => ':client je zahteval dostop do upravljanja tvojih financ. Dovoliš da :client dostopa do teh podatkov?', + 'authorization_request_site' => 'Preusmerjeni boste na :url, ki bo nato lahko dostopal do vaših podatkov Firefly III.', + 'authorization_request_invalid' => 'Ta zahteva za dostop je neveljavna. Nikoli več ne sledite tej povezavi.', + 'scopes_will_be_able' => 'Ta aplikacija bo lahko:', + 'button_authorize' => 'Avtoriziraj', + 'none_in_select_list' => '(brez)', + 'no_piggy_bank' => '(brez hranilnika)', + 'name_in_currency' => ':name v :currency', + 'paid_in_currency' => 'Plačano v :currency', + 'unpaid_in_currency' => 'Neplačano v :currency', + 'is_alpha_warning' => 'Poganjate ALFA verzijo. Bodite pozorni na hrošče in težave.', + 'is_beta_warning' => 'Poganjate BETA verzijo. Bodite pozorni na hrošče in težave.', + 'all_destination_accounts' => 'Ciljni računi', + 'all_source_accounts' => 'Izvorni računi', + 'back_to_index' => 'Nazaj na kazalo', + 'cant_logout_guard' => 'Firefly III vas ne more odjaviti.', + 'internal_reference' => 'Interna referenca', // check for updates: - 'update_check_title' => 'Preverite za posodobitve', - 'admin_update_check_title' => 'Samodejno preverjaj za posodobitve', - 'admin_update_check_explain' => 'Firefly III lahko samodejno preverja posodobitve. Če to omogočite, bomo na Github-u preverjali ali je na voljo nova različica in vas o tem obvestili. To obvestilo lahko preizkusite z gumbom na desni. Označite spodaj, če želite, da Firefly III preveri, ali so posodobitve na voljo.', - 'check_for_updates_permission' => 'Firefly III lahko preveri posodobitve, vendar potrebuje vaše dovoljenje. Pojdite v skrbništvo, da označite, ali želite omogočiti to funkcijo.', - 'updates_ask_me_later' => 'Vprašaj me kasneje', - 'updates_do_not_check' => 'Ne preverjaj posodobitev', - 'updates_enable_check' => 'Omogoči preverjanje posodobitev', - 'admin_update_check_now_title' => 'Preveri za posodobitve zdaj', - 'admin_update_check_now_explain' => 'Če pritisnete gumb, bo Firefly III preveril, ali je vaša trenutna različica zadnja.', - 'check_for_updates_button' => 'Preveri zdaj!', - 'update_new_version_alert' => 'Na voljo je nova različica Firefly III. Trenutno uporabljate :your_version, najnovejša različica pa je :new_version, izdana :date.', - 'update_version_beta' => 'To je BETA verzija. Lahko naletite na težave.', - 'update_version_alpha' => 'To je ALFA verzija. Lahko naletite na težave.', - 'update_current_dev_older' => 'Poganjate razvojno izdajo ":version", ki je starejša od zadnje izdaje :new_version. Posodobite prosim!', - 'update_current_dev_newer' => 'Poganjate razvojno izdajo ":version", ki je novejša od zadnje izdaje :new_version.', - 'update_current_version_alert' => 'Uporabljate :version, ki je zadnja razpoložljiva izdaja.', - 'update_newer_version_alert' => 'Uporabljate :your_version, ki je novejša od zadnje izdaje, :new_version.', - 'update_check_error' => 'Pri preverjanju posodobitev smo naleteli na težavo: :error', - 'unknown_error' => 'Neznana napaka. Oprostite prosim.', - 'disabled_but_check' => 'Onemogočili ste preverjanje posodobitev. Zato ne pozabite občasno preveriti, ali so na voljo posodobitve. Hvala vam!', - 'admin_update_channel_title' => 'Kanal posodobitev', - 'admin_update_channel_explain' => 'Firefly III ima tri "kanale" posodobitev, ki določajo, kako hitro prejmete nove funkcije, izboljšave in odprave napak. Uporabite kanal "beta", če ste pustolovec, in "alfa", če radi živite nevarno življenje.', - 'update_channel_stable' => 'Stabilno. Vse naj bi delovalo po pričakovanjih.', - 'update_channel_beta' => 'Beta. Nove funkcionalnosti, vendar ni nujno, da vse deluje.', - 'update_channel_alpha' => 'Alfa. Noter vržemo razne stvari da vidimo kaj se "prime".', + 'update_check_title' => 'Preverite za posodobitve', + 'admin_update_check_title' => 'Samodejno preverjaj za posodobitve', + 'admin_update_check_explain' => 'Firefly III lahko samodejno preverja posodobitve. Če to omogočite, bomo na Github-u preverjali ali je na voljo nova različica in vas o tem obvestili. To obvestilo lahko preizkusite z gumbom na desni. Označite spodaj, če želite, da Firefly III preveri, ali so posodobitve na voljo.', + 'check_for_updates_permission' => 'Firefly III lahko preveri posodobitve, vendar potrebuje vaše dovoljenje. Pojdite v skrbništvo, da označite, ali želite omogočiti to funkcijo.', + 'updates_ask_me_later' => 'Vprašaj me kasneje', + 'updates_do_not_check' => 'Ne preverjaj posodobitev', + 'updates_enable_check' => 'Omogoči preverjanje posodobitev', + 'admin_update_check_now_title' => 'Preveri za posodobitve zdaj', + 'admin_update_check_now_explain' => 'Če pritisnete gumb, bo Firefly III preveril, ali je vaša trenutna različica zadnja.', + 'check_for_updates_button' => 'Preveri zdaj!', + 'update_new_version_alert' => 'Na voljo je nova različica Firefly III. Trenutno uporabljate :your_version, najnovejša različica pa je :new_version, izdana :date.', + 'update_version_beta' => 'To je BETA verzija. Lahko naletite na težave.', + 'update_version_alpha' => 'To je ALFA verzija. Lahko naletite na težave.', + 'update_current_dev_older' => 'Poganjate razvojno izdajo ":version", ki je starejša od zadnje izdaje :new_version. Posodobite prosim!', + 'update_current_dev_newer' => 'Poganjate razvojno izdajo ":version", ki je novejša od zadnje izdaje :new_version.', + 'update_current_version_alert' => 'Uporabljate :version, ki je zadnja razpoložljiva izdaja.', + 'update_newer_version_alert' => 'Uporabljate :your_version, ki je novejša od zadnje izdaje, :new_version.', + 'update_check_error' => 'Pri preverjanju posodobitev smo naleteli na težavo: :error', + 'unknown_error' => 'Neznana napaka. Oprostite prosim.', + 'disabled_but_check' => 'Onemogočili ste preverjanje posodobitev. Zato ne pozabite občasno preveriti, ali so na voljo posodobitve. Hvala vam!', + 'admin_update_channel_title' => 'Kanal posodobitev', + 'admin_update_channel_explain' => 'Firefly III ima tri "kanale" posodobitev, ki določajo, kako hitro prejmete nove funkcije, izboljšave in odprave napak. Uporabite kanal "beta", če ste pustolovec, in "alfa", če radi živite nevarno življenje.', + 'update_channel_stable' => 'Stabilno. Vse naj bi delovalo po pričakovanjih.', + 'update_channel_beta' => 'Beta. Nove funkcionalnosti, vendar ni nujno, da vse deluje.', + 'update_channel_alpha' => 'Alfa. Noter vržemo razne stvari da vidimo kaj se "prime".', // search - 'search' => 'Iskanje', - 'search_query' => 'Poizvedba', - 'search_found_transactions' => 'Firefly III je našel :count transakcijo v :time sekundah.|Firefly III je našel :count transakcij v :time sekundah.', - 'search_found_more_transactions' => 'Firefly III je našel več kot :count transakcij v :time sekundah.', - 'search_for_query' => 'Firefly III išče transakcije, ki vsebujejo vse besede: :query', - 'invalid_operators_list' => 'Ti iskalni parametri niso veljavni in so bili prezrti.', + 'search' => 'Iskanje', + 'search_query' => 'Poizvedba', + 'search_found_transactions' => 'Firefly III je našel :count transakcijo v :time sekundah.|Firefly III je našel :count transakcij v :time sekundah.', + 'search_found_more_transactions' => 'Firefly III je našel več kot :count transakcij v :time sekundah.', + 'search_for_query' => 'Firefly III išče transakcije, ki vsebujejo vse besede: :query', + 'invalid_operators_list' => 'Ti iskalni parametri niso veljavni in so bili prezrti.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Datum transakcije je ":value"', - 'search_modifier_not_date_on' => 'Datum transakcije ni ":value"', - 'search_modifier_reconciled' => 'Transakcija je usklajena', - 'search_modifier_not_reconciled' => 'Transakcija ni usklajena', - 'search_modifier_id' => 'ID transakcije je ":value"', - 'search_modifier_not_id' => 'ID transakcije ni ":value"', - 'search_modifier_date_before' => 'Datum transakcije je pred ali na ":value"', - 'search_modifier_date_after' => 'Datum transakcije je po ali na ":value"', - 'search_modifier_external_id_is' => 'Zunanji ID je ":value"', - 'search_modifier_not_external_id_is' => 'Zunanji ID ni ":value"', - 'search_modifier_no_external_url' => 'Transakcija nima zunanjega URL-ja', - 'search_modifier_no_external_id' => 'Transakcija nima zunanjega ID-ja', - 'search_modifier_not_any_external_url' => 'Transakcija nima zunanjega URL-ja', - 'search_modifier_not_any_external_id' => 'Transakcija nima zunanjega ID-ja', - 'search_modifier_any_external_url' => 'Transakcija mora imeti (poljubni) zunanji URL', - 'search_modifier_any_external_id' => 'Transakcija mora imeti (poljubni) zunanji ID', - 'search_modifier_not_no_external_url' => 'Transakcija mora imeti (poljubni) zunanji URL', - 'search_modifier_not_no_external_id' => 'Transakcija mora imeti (poljubni) zunanji ID', - 'search_modifier_internal_reference_is' => 'Notranja referenca je ":value"', - 'search_modifier_not_internal_reference_is' => 'Notranja referenca ni ":value"', - 'search_modifier_description_starts' => 'Opis se začne s ":value"', - 'search_modifier_not_description_starts' => 'Opis se ne začne s ":value"', - 'search_modifier_description_ends' => 'Opis se konča s ":value"', - 'search_modifier_not_description_ends' => 'Opis se ne konča s ":value"', - 'search_modifier_description_contains' => 'Opis vsebuje ":value"', - 'search_modifier_not_description_contains' => 'Opis ne vsebuje ":value"', - 'search_modifier_description_is' => 'Opis je točno ":value"', - 'search_modifier_not_description_is' => 'Opis natanko ni ":value"', - 'search_modifier_currency_is' => 'Transakcijska (tuja) valuta je ":value"', - 'search_modifier_not_currency_is' => 'Transakcijska (tuja) valuta ni ":value"', - 'search_modifier_foreign_currency_is' => 'Tuja valuta transakcije je ":value"', - 'search_modifier_not_foreign_currency_is' => 'Tuja valuta transakcije ni ":value"', - 'search_modifier_has_attachments' => 'Transakcija mora imeti prilogo', - 'search_modifier_has_no_category' => 'Transakcija ne sme imeti kategorije', - 'search_modifier_not_has_no_category' => 'Transakcija mora imeti (poljubno) kategorijo', - 'search_modifier_not_has_any_category' => 'Transakcija ne sme imeti kategorije', - 'search_modifier_has_any_category' => 'Transakcija mora imeti (poljubno) kategorijo', - 'search_modifier_has_no_budget' => 'Transakcija ne sme imeti proračuna', - 'search_modifier_not_has_any_budget' => 'Transakcija ne sme imeti proračuna', - 'search_modifier_has_any_budget' => 'Transakcija mora imeti (poljubni) proračun', - 'search_modifier_not_has_no_budget' => 'Transakcija mora imeti (poljubni) proračun', - 'search_modifier_has_no_bill' => 'Transakcija ne sme imeti računa', - 'search_modifier_not_has_no_bill' => 'Transakcija mora imeti (poljuben) račun', - 'search_modifier_has_any_bill' => 'Transakcija mora imeti (poljuben) račun', - 'search_modifier_not_has_any_bill' => 'Transakcija ne sme imeti računa', - 'search_modifier_has_no_tag' => 'Transakcija ne sme imeti oznak', - 'search_modifier_not_has_any_tag' => 'Transakcija ne sme imeti oznak', - 'search_modifier_not_has_no_tag' => 'Transakcija nima (poljubne) oznake', - 'search_modifier_has_any_tag' => 'Transakcija mora imeti (poljubno) oznako', - 'search_modifier_notes_contains' => 'Opombe o transakcijah vsebujejo ":value"', - 'search_modifier_not_notes_contains' => 'Opombe o transakciji ne vsebujejo ":value"', - 'search_modifier_notes_starts' => 'Opombe o transakciji se začnejo z ":value"', - 'search_modifier_not_notes_starts' => 'Opombe o transakciji se ne začnejo z ":value"', - 'search_modifier_notes_ends' => 'Opombe o transakciji se končajo s ":value"', - 'search_modifier_not_notes_ends' => 'Opombe o transakciji se ne končajo s ":value"', - 'search_modifier_notes_is' => 'Opombe o transakciji so točno ":value"', - 'search_modifier_not_notes_is' => 'Opombe o transakciji natanko niso ":value"', - 'search_modifier_no_notes' => 'Transakcija nima opomb', - 'search_modifier_not_no_notes' => 'Transakcija mora imeti opombe', - 'search_modifier_any_notes' => 'Transakcija mora imeti opombe', - 'search_modifier_not_any_notes' => 'Transakcija nima opomb', - 'search_modifier_amount_is' => 'Znesek je točno :value', - 'search_modifier_not_amount_is' => 'Znesek ni :value', - 'search_modifier_amount_less' => 'Znesek je manjši ali enak :value', - 'search_modifier_not_amount_more' => 'Znesek je manjši ali enak :value', - 'search_modifier_amount_more' => 'Znesek je večji ali enak :value', - 'search_modifier_not_amount_less' => 'Znesek je večji ali enak :value', - 'search_modifier_source_account_is' => 'Ime izvornega računa je točno ":value"', - 'search_modifier_not_source_account_is' => 'Ime izvornega računa ni ":value"', - 'search_modifier_source_account_contains' => 'Ime izvornega računa vsebuje ":value"', - 'search_modifier_not_source_account_contains' => 'Ime izvornega računa ne vsebuje ":value"', - 'search_modifier_source_account_starts' => 'Ime izvornega računa se začne z ":value"', - 'search_modifier_not_source_account_starts' => 'Ime izvornega računa se ne začne z ":value"', - 'search_modifier_source_account_ends' => 'Ime izvornega računa se konča s ":value"', - 'search_modifier_not_source_account_ends' => 'Ime izvornega računa se ne konča s ":value"', - 'search_modifier_source_account_id' => 'ID izvornega računa je :value', - 'search_modifier_not_source_account_id' => 'ID izvornega računa ni :value', - 'search_modifier_source_account_nr_is' => 'Izvorna številka računa (IBAN) je ":value"', - 'search_modifier_not_source_account_nr_is' => 'Izvorna številka računa (IBAN) ni ":value"', - 'search_modifier_source_account_nr_contains' => 'Izvorna številka računa (IBAN) vsebuje ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Izvorna številka računa (IBAN) ne vsebuje ":value"', - 'search_modifier_source_account_nr_starts' => 'Izvorna številka računa (IBAN) se začne z ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Izvorna številka računa (IBAN) se ne začne z ":value"', - 'search_modifier_source_account_nr_ends' => 'Izvorna številka računa (IBAN) se konča na ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Izvorna številka računa (IBAN) se ne konča na ":value"', - 'search_modifier_destination_account_is' => 'Ime ciljnega računa je točno ":value"', - 'search_modifier_not_destination_account_is' => 'Ime ciljnega računa ni ":value"', - 'search_modifier_destination_account_contains' => 'Ime ciljnega računa vsebuje ":value"', - 'search_modifier_not_destination_account_contains' => 'Ime ciljnega računa ne vsebuje ":value"', - 'search_modifier_destination_account_starts' => 'Ime ciljnega računa se začne z ":value"', - 'search_modifier_not_destination_account_starts' => 'Ime ciljnega računa se ne začne z ":value"', - 'search_modifier_destination_account_ends' => 'Ime ciljnega računa se konča na ":value"', - 'search_modifier_not_destination_account_ends' => 'Ime ciljnega računa se ne konča na ":value"', - 'search_modifier_destination_account_id' => 'ID ciljnega računa je :value', - 'search_modifier_not_destination_account_id' => 'ID ciljnega računa ni :value', - 'search_modifier_destination_is_cash' => 'Ciljni račun je "(gotovina)"', - 'search_modifier_not_destination_is_cash' => 'Ciljni račun ni račun "(gotovina)"', - 'search_modifier_source_is_cash' => 'Izvorni račun je račun "(gotovina)"', - 'search_modifier_not_source_is_cash' => 'Izvorni račun ni račun "(gotovina)"', - 'search_modifier_destination_account_nr_is' => 'Številka ciljnega računa (IBAN) je ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Številka ciljnega računa (IBAN) je ":value"', - 'search_modifier_destination_account_nr_contains' => 'Številka ciljnega računa (IBAN) vsebuje ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Številka ciljnega računa (IBAN) ne vsebuje ":value"', - 'search_modifier_destination_account_nr_starts' => 'Številka ciljnega računa (IBAN) se začne z ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Številka ciljnega računa (IBAN) se ne začne z ":value"', - 'search_modifier_destination_account_nr_ends' => 'Številka ciljnega računa (IBAN) se konča s ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Številka ciljnega računa (IBAN) se ne konča s ":value"', - 'search_modifier_account_id' => 'ID-ji izvornega ali ciljnega računa so: :value', - 'search_modifier_not_account_id' => 'ID-ji izvornega ali ciljnega računa ni: :value', - 'search_modifier_category_is' => 'Kategorija je ":value"', - 'search_modifier_not_category_is' => 'Kategorija ni ":value"', - 'search_modifier_budget_is' => 'Proračun je ":value"', - 'search_modifier_not_budget_is' => 'Proračun ni ":value"', - 'search_modifier_bill_is' => 'Račun je ":value"', - 'search_modifier_not_bill_is' => 'Račun ni ":value"', - 'search_modifier_transaction_type' => 'Vrsta transakcije je ":value"', - 'search_modifier_not_transaction_type' => 'Vrsta transakcije ni ":value"', - 'search_modifier_tag_is' => 'Oznaka je ":value"', - 'search_modifier_tag_contains' => 'Oznaka vsebuje ":value"', - 'search_modifier_not_tag_contains' => 'Oznaka ne vsebuje ":value"', - 'search_modifier_tag_ends' => 'Oznaka se konča z ":value"', - 'search_modifier_tag_starts' => 'Oznaka se začne z ":value"', - 'search_modifier_not_tag_is' => 'Nobena oznaka ni ":value"', - 'search_modifier_date_on_year' => 'Transakcija je v letu ":value"', - 'search_modifier_not_date_on_year' => 'Transakcija ni v letu ":value"', - 'search_modifier_date_on_month' => 'Transakcija je v mesecu ":value"', - 'search_modifier_not_date_on_month' => 'Transakcija ni v mesecu ":value"', - 'search_modifier_date_on_day' => 'Transakcija je na dan v mesecu ":value"', - 'search_modifier_not_date_on_day' => 'Transakcija ni na dan v mesecu ":value"', - 'search_modifier_date_before_year' => 'Transakcija je pred ali v letu ":value"', - 'search_modifier_date_before_month' => 'Transakcija je pred ali v mesecu ":value"', - 'search_modifier_date_before_day' => 'Transakcija je pred ali na dan v mesecu ":value"', - 'search_modifier_date_after_year' => 'Transakcija je v ali po letu ":value"', - 'search_modifier_date_after_month' => 'Transakcija je v ali po mesecu ":value"', - 'search_modifier_date_after_day' => 'Transakcija je po ali na dan v mesecu ":value"', + 'search_modifier_date_on' => 'Datum transakcije je ":value"', + 'search_modifier_not_date_on' => 'Datum transakcije ni ":value"', + 'search_modifier_reconciled' => 'Transakcija je usklajena', + 'search_modifier_not_reconciled' => 'Transakcija ni usklajena', + 'search_modifier_id' => 'ID transakcije je ":value"', + 'search_modifier_not_id' => 'ID transakcije ni ":value"', + 'search_modifier_date_before' => 'Datum transakcije je pred ali na ":value"', + 'search_modifier_date_after' => 'Datum transakcije je po ali na ":value"', + 'search_modifier_external_id_is' => 'Zunanji ID je ":value"', + 'search_modifier_not_external_id_is' => 'Zunanji ID ni ":value"', + 'search_modifier_no_external_url' => 'Transakcija nima zunanjega URL-ja', + 'search_modifier_no_external_id' => 'Transakcija nima zunanjega ID-ja', + 'search_modifier_not_any_external_url' => 'Transakcija nima zunanjega URL-ja', + 'search_modifier_not_any_external_id' => 'Transakcija nima zunanjega ID-ja', + 'search_modifier_any_external_url' => 'Transakcija mora imeti (poljubni) zunanji URL', + 'search_modifier_any_external_id' => 'Transakcija mora imeti (poljubni) zunanji ID', + 'search_modifier_not_no_external_url' => 'Transakcija mora imeti (poljubni) zunanji URL', + 'search_modifier_not_no_external_id' => 'Transakcija mora imeti (poljubni) zunanji ID', + 'search_modifier_internal_reference_is' => 'Notranja referenca je ":value"', + 'search_modifier_not_internal_reference_is' => 'Notranja referenca ni ":value"', + 'search_modifier_description_starts' => 'Opis se začne s ":value"', + 'search_modifier_not_description_starts' => 'Opis se ne začne s ":value"', + 'search_modifier_description_ends' => 'Opis se konča s ":value"', + 'search_modifier_not_description_ends' => 'Opis se ne konča s ":value"', + 'search_modifier_description_contains' => 'Opis vsebuje ":value"', + 'search_modifier_not_description_contains' => 'Opis ne vsebuje ":value"', + 'search_modifier_description_is' => 'Opis je točno ":value"', + 'search_modifier_not_description_is' => 'Opis natanko ni ":value"', + 'search_modifier_currency_is' => 'Transakcijska (tuja) valuta je ":value"', + 'search_modifier_not_currency_is' => 'Transakcijska (tuja) valuta ni ":value"', + 'search_modifier_foreign_currency_is' => 'Tuja valuta transakcije je ":value"', + 'search_modifier_not_foreign_currency_is' => 'Tuja valuta transakcije ni ":value"', + 'search_modifier_has_attachments' => 'Transakcija mora imeti prilogo', + 'search_modifier_has_no_category' => 'Transakcija ne sme imeti kategorije', + 'search_modifier_not_has_no_category' => 'Transakcija mora imeti (poljubno) kategorijo', + 'search_modifier_not_has_any_category' => 'Transakcija ne sme imeti kategorije', + 'search_modifier_has_any_category' => 'Transakcija mora imeti (poljubno) kategorijo', + 'search_modifier_has_no_budget' => 'Transakcija ne sme imeti proračuna', + 'search_modifier_not_has_any_budget' => 'Transakcija ne sme imeti proračuna', + 'search_modifier_has_any_budget' => 'Transakcija mora imeti (poljubni) proračun', + 'search_modifier_not_has_no_budget' => 'Transakcija mora imeti (poljubni) proračun', + 'search_modifier_has_no_bill' => 'Transakcija ne sme imeti računa', + 'search_modifier_not_has_no_bill' => 'Transakcija mora imeti (poljuben) račun', + 'search_modifier_has_any_bill' => 'Transakcija mora imeti (poljuben) račun', + 'search_modifier_not_has_any_bill' => 'Transakcija ne sme imeti računa', + 'search_modifier_has_no_tag' => 'Transakcija ne sme imeti oznak', + 'search_modifier_not_has_any_tag' => 'Transakcija ne sme imeti oznak', + 'search_modifier_not_has_no_tag' => 'Transakcija nima (poljubne) oznake', + 'search_modifier_has_any_tag' => 'Transakcija mora imeti (poljubno) oznako', + 'search_modifier_notes_contains' => 'Opombe o transakcijah vsebujejo ":value"', + 'search_modifier_not_notes_contains' => 'Opombe o transakciji ne vsebujejo ":value"', + 'search_modifier_notes_starts' => 'Opombe o transakciji se začnejo z ":value"', + 'search_modifier_not_notes_starts' => 'Opombe o transakciji se ne začnejo z ":value"', + 'search_modifier_notes_ends' => 'Opombe o transakciji se končajo s ":value"', + 'search_modifier_not_notes_ends' => 'Opombe o transakciji se ne končajo s ":value"', + 'search_modifier_notes_is' => 'Opombe o transakciji so točno ":value"', + 'search_modifier_not_notes_is' => 'Opombe o transakciji natanko niso ":value"', + 'search_modifier_no_notes' => 'Transakcija nima opomb', + 'search_modifier_not_no_notes' => 'Transakcija mora imeti opombe', + 'search_modifier_any_notes' => 'Transakcija mora imeti opombe', + 'search_modifier_not_any_notes' => 'Transakcija nima opomb', + 'search_modifier_amount_is' => 'Znesek je točno :value', + 'search_modifier_not_amount_is' => 'Znesek ni :value', + 'search_modifier_amount_less' => 'Znesek je manjši ali enak :value', + 'search_modifier_not_amount_more' => 'Znesek je manjši ali enak :value', + 'search_modifier_amount_more' => 'Znesek je večji ali enak :value', + 'search_modifier_not_amount_less' => 'Znesek je večji ali enak :value', + 'search_modifier_source_account_is' => 'Ime izvornega računa je točno ":value"', + 'search_modifier_not_source_account_is' => 'Ime izvornega računa ni ":value"', + 'search_modifier_source_account_contains' => 'Ime izvornega računa vsebuje ":value"', + 'search_modifier_not_source_account_contains' => 'Ime izvornega računa ne vsebuje ":value"', + 'search_modifier_source_account_starts' => 'Ime izvornega računa se začne z ":value"', + 'search_modifier_not_source_account_starts' => 'Ime izvornega računa se ne začne z ":value"', + 'search_modifier_source_account_ends' => 'Ime izvornega računa se konča s ":value"', + 'search_modifier_not_source_account_ends' => 'Ime izvornega računa se ne konča s ":value"', + 'search_modifier_source_account_id' => 'ID izvornega računa je :value', + 'search_modifier_not_source_account_id' => 'ID izvornega računa ni :value', + 'search_modifier_source_account_nr_is' => 'Izvorna številka računa (IBAN) je ":value"', + 'search_modifier_not_source_account_nr_is' => 'Izvorna številka računa (IBAN) ni ":value"', + 'search_modifier_source_account_nr_contains' => 'Izvorna številka računa (IBAN) vsebuje ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Izvorna številka računa (IBAN) ne vsebuje ":value"', + 'search_modifier_source_account_nr_starts' => 'Izvorna številka računa (IBAN) se začne z ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Izvorna številka računa (IBAN) se ne začne z ":value"', + 'search_modifier_source_account_nr_ends' => 'Izvorna številka računa (IBAN) se konča na ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Izvorna številka računa (IBAN) se ne konča na ":value"', + 'search_modifier_destination_account_is' => 'Ime ciljnega računa je točno ":value"', + 'search_modifier_not_destination_account_is' => 'Ime ciljnega računa ni ":value"', + 'search_modifier_destination_account_contains' => 'Ime ciljnega računa vsebuje ":value"', + 'search_modifier_not_destination_account_contains' => 'Ime ciljnega računa ne vsebuje ":value"', + 'search_modifier_destination_account_starts' => 'Ime ciljnega računa se začne z ":value"', + 'search_modifier_not_destination_account_starts' => 'Ime ciljnega računa se ne začne z ":value"', + 'search_modifier_destination_account_ends' => 'Ime ciljnega računa se konča na ":value"', + 'search_modifier_not_destination_account_ends' => 'Ime ciljnega računa se ne konča na ":value"', + 'search_modifier_destination_account_id' => 'ID ciljnega računa je :value', + 'search_modifier_not_destination_account_id' => 'ID ciljnega računa ni :value', + 'search_modifier_destination_is_cash' => 'Ciljni račun je "(gotovina)"', + 'search_modifier_not_destination_is_cash' => 'Ciljni račun ni račun "(gotovina)"', + 'search_modifier_source_is_cash' => 'Izvorni račun je račun "(gotovina)"', + 'search_modifier_not_source_is_cash' => 'Izvorni račun ni račun "(gotovina)"', + 'search_modifier_destination_account_nr_is' => 'Številka ciljnega računa (IBAN) je ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Številka ciljnega računa (IBAN) je ":value"', + 'search_modifier_destination_account_nr_contains' => 'Številka ciljnega računa (IBAN) vsebuje ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Številka ciljnega računa (IBAN) ne vsebuje ":value"', + 'search_modifier_destination_account_nr_starts' => 'Številka ciljnega računa (IBAN) se začne z ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Številka ciljnega računa (IBAN) se ne začne z ":value"', + 'search_modifier_destination_account_nr_ends' => 'Številka ciljnega računa (IBAN) se konča s ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Številka ciljnega računa (IBAN) se ne konča s ":value"', + 'search_modifier_account_id' => 'ID-ji izvornega ali ciljnega računa so: :value', + 'search_modifier_not_account_id' => 'ID-ji izvornega ali ciljnega računa ni: :value', + 'search_modifier_category_is' => 'Kategorija je ":value"', + 'search_modifier_not_category_is' => 'Kategorija ni ":value"', + 'search_modifier_budget_is' => 'Proračun je ":value"', + 'search_modifier_not_budget_is' => 'Proračun ni ":value"', + 'search_modifier_bill_is' => 'Račun je ":value"', + 'search_modifier_not_bill_is' => 'Račun ni ":value"', + 'search_modifier_transaction_type' => 'Vrsta transakcije je ":value"', + 'search_modifier_not_transaction_type' => 'Vrsta transakcije ni ":value"', + 'search_modifier_tag_is' => 'Oznaka je ":value"', + 'search_modifier_tag_contains' => 'Oznaka vsebuje ":value"', + 'search_modifier_not_tag_contains' => 'Oznaka ne vsebuje ":value"', + 'search_modifier_tag_ends' => 'Oznaka se konča z ":value"', + 'search_modifier_tag_starts' => 'Oznaka se začne z ":value"', + 'search_modifier_not_tag_is' => 'Nobena oznaka ni ":value"', + 'search_modifier_date_on_year' => 'Transakcija je v letu ":value"', + 'search_modifier_not_date_on_year' => 'Transakcija ni v letu ":value"', + 'search_modifier_date_on_month' => 'Transakcija je v mesecu ":value"', + 'search_modifier_not_date_on_month' => 'Transakcija ni v mesecu ":value"', + 'search_modifier_date_on_day' => 'Transakcija je na dan v mesecu ":value"', + 'search_modifier_not_date_on_day' => 'Transakcija ni na dan v mesecu ":value"', + 'search_modifier_date_before_year' => 'Transakcija je pred ali v letu ":value"', + 'search_modifier_date_before_month' => 'Transakcija je pred ali v mesecu ":value"', + 'search_modifier_date_before_day' => 'Transakcija je pred ali na dan v mesecu ":value"', + 'search_modifier_date_after_year' => 'Transakcija je v ali po letu ":value"', + 'search_modifier_date_after_month' => 'Transakcija je v ali po mesecu ":value"', + 'search_modifier_date_after_day' => 'Transakcija je po ali na dan v mesecu ":value"', // new - 'search_modifier_tag_is_not' => 'Nobena oznaka ni ":value', - 'search_modifier_not_tag_is_not' => 'Oznaka je ":value"', - 'search_modifier_account_is' => 'Kateri koli račun je ":value"', - 'search_modifier_not_account_is' => 'Noben račun ni ":value"', - 'search_modifier_account_contains' => 'Kateri koli račun vsebuje ":value"', - 'search_modifier_not_account_contains' => 'Noben račun ne vsebuje ":value"', - 'search_modifier_account_ends' => 'Oba računa se končata s ":value"', - 'search_modifier_not_account_ends' => 'Noben račun se ne konča s ":value"', - 'search_modifier_account_starts' => 'Oba računa se začneta z ":value"', - 'search_modifier_not_account_starts' => 'Noben račun se ne začne z ":value"', - 'search_modifier_account_nr_is' => 'Številka računa/IBAN je ":value"', - 'search_modifier_not_account_nr_is' => 'Nobena številka računa/IBAN ni ":value"', - 'search_modifier_account_nr_contains' => 'Številka računa/IBAN vsebuje ":value"', - 'search_modifier_not_account_nr_contains' => 'Nobena številka računa / IBAN ne vsebuje ":value"', - 'search_modifier_account_nr_ends' => 'Številka računa / IBAN se konča s ":value"', - 'search_modifier_not_account_nr_ends' => 'Nobena številka računa / IBAN se ne konča s ":value"', - 'search_modifier_account_nr_starts' => 'Številka računa/IBAN se začne z ":value"', - 'search_modifier_not_account_nr_starts' => 'Nobena številka računa / IBAN se ne začne z ":value"', - 'search_modifier_category_contains' => 'Kategorija vsebuje ":value"', - 'search_modifier_not_category_contains' => 'Kategorija ne vsebuje ":value"', - 'search_modifier_category_ends' => 'Kategorija se konča na ":value"', - 'search_modifier_not_category_ends' => 'Kategorija se ne konča na ":value"', - 'search_modifier_category_starts' => 'Kategorija se začne z ":value"', - 'search_modifier_not_category_starts' => 'Kategorija se ne začne z ":value"', - 'search_modifier_budget_contains' => 'Proračun vsebuje ":value"', - 'search_modifier_not_budget_contains' => 'Proračun ne vsebuje ":value"', - 'search_modifier_budget_ends' => 'Proračun se konča s ":value"', - 'search_modifier_not_budget_ends' => 'Proračun se ne konča na ":value"', - 'search_modifier_budget_starts' => 'Proračun se začne z ":value"', - 'search_modifier_not_budget_starts' => 'Proračun se ne začne z ":value"', - 'search_modifier_bill_contains' => 'Račun vsebuje ":value"', - 'search_modifier_not_bill_contains' => 'Račun ne vsebuje ":value"', - 'search_modifier_bill_ends' => 'Račun se konča s ":value"', - 'search_modifier_not_bill_ends' => 'Račun se ne konča na ":value"', - 'search_modifier_bill_starts' => 'Račun se začne z ":value"', - 'search_modifier_not_bill_starts' => 'Račun se ne začne z ":value"', - 'search_modifier_external_id_contains' => 'Zunanji ID vsebuje ":value"', - 'search_modifier_not_external_id_contains' => 'Zunanji ID ne vsebuje ":value"', - 'search_modifier_external_id_ends' => 'Zunanji ID se konča s ":value"', - 'search_modifier_not_external_id_ends' => 'Zunanji ID se ne konča s ":value"', - 'search_modifier_external_id_starts' => 'Zunanji ID se začne z ":value"', - 'search_modifier_not_external_id_starts' => 'Zunanji ID se ne začne z ":value"', - 'search_modifier_internal_reference_contains' => 'Notranja referenca vsebuje ":value"', - 'search_modifier_not_internal_reference_contains' => 'Notranja referenca ne vsebuje ":value"', - 'search_modifier_internal_reference_ends' => 'Notranja referenca se konča s ":value"', - 'search_modifier_internal_reference_starts' => 'Notranja referenca se začne z ":value"', - 'search_modifier_not_internal_reference_ends' => 'Notranja referenca se ne konča s ":value"', - 'search_modifier_not_internal_reference_starts' => 'Notranja referenca se ne začne z ":value"', - 'search_modifier_external_url_is' => 'Zunanji URL je ":value"', - 'search_modifier_not_external_url_is' => 'Zunanji URL ni ":value"', - 'search_modifier_external_url_contains' => 'Zunanji URL vsebuje ":value"', - 'search_modifier_not_external_url_contains' => 'Zunanji URL ne vsebuje ":value"', - 'search_modifier_external_url_ends' => 'Zunanji URL se konča s ":value"', - 'search_modifier_not_external_url_ends' => 'Zunanji URL se ne konča s ":value"', - 'search_modifier_external_url_starts' => 'Zunanji URL se začne z ":value"', - 'search_modifier_not_external_url_starts' => 'Zunanji URL se ne začne z ":value"', - 'search_modifier_has_no_attachments' => 'Transakcija nima prilog', - 'search_modifier_not_has_no_attachments' => 'Transakcija ima priloge', - 'search_modifier_not_has_attachments' => 'Transakcija nima prilog', - 'search_modifier_account_is_cash' => 'Kateri koli račun je račun "(gotovina)".', - 'search_modifier_not_account_is_cash' => 'Noben račun ni račun "(gotovina)".', - 'search_modifier_journal_id' => 'ID dnevnika je ":value"', - 'search_modifier_not_journal_id' => 'ID dnevnika ni ":value"', - 'search_modifier_recurrence_id' => 'ID ponavljajoče se transakcije je ":value"', - 'search_modifier_not_recurrence_id' => 'ID ponavljajoče se transakcije ni »:value«', - 'search_modifier_foreign_amount_is' => 'Tuji znesek je ":value"', - 'search_modifier_not_foreign_amount_is' => 'Tuji znesek ni ":value"', - 'search_modifier_foreign_amount_less' => 'Tuji znesek je manjši od ":value"', - 'search_modifier_not_foreign_amount_more' => 'Tuji znesek je manjši od ":value"', - 'search_modifier_not_foreign_amount_less' => 'Tuji znesek je večji od ":value"', - 'search_modifier_foreign_amount_more' => 'Tuji znesek je večji od ":value"', - 'search_modifier_exists' => 'Transakcija obstaja (katera koli transakcija)', - 'search_modifier_not_exists' => 'Transakcija ne obstaja (ni transakcije)', + 'search_modifier_tag_is_not' => 'Nobena oznaka ni ":value', + 'search_modifier_not_tag_is_not' => 'Oznaka je ":value"', + 'search_modifier_account_is' => 'Kateri koli račun je ":value"', + 'search_modifier_not_account_is' => 'Noben račun ni ":value"', + 'search_modifier_account_contains' => 'Kateri koli račun vsebuje ":value"', + 'search_modifier_not_account_contains' => 'Noben račun ne vsebuje ":value"', + 'search_modifier_account_ends' => 'Oba računa se končata s ":value"', + 'search_modifier_not_account_ends' => 'Noben račun se ne konča s ":value"', + 'search_modifier_account_starts' => 'Oba računa se začneta z ":value"', + 'search_modifier_not_account_starts' => 'Noben račun se ne začne z ":value"', + 'search_modifier_account_nr_is' => 'Številka računa/IBAN je ":value"', + 'search_modifier_not_account_nr_is' => 'Nobena številka računa/IBAN ni ":value"', + 'search_modifier_account_nr_contains' => 'Številka računa/IBAN vsebuje ":value"', + 'search_modifier_not_account_nr_contains' => 'Nobena številka računa / IBAN ne vsebuje ":value"', + 'search_modifier_account_nr_ends' => 'Številka računa / IBAN se konča s ":value"', + 'search_modifier_not_account_nr_ends' => 'Nobena številka računa / IBAN se ne konča s ":value"', + 'search_modifier_account_nr_starts' => 'Številka računa/IBAN se začne z ":value"', + 'search_modifier_not_account_nr_starts' => 'Nobena številka računa / IBAN se ne začne z ":value"', + 'search_modifier_category_contains' => 'Kategorija vsebuje ":value"', + 'search_modifier_not_category_contains' => 'Kategorija ne vsebuje ":value"', + 'search_modifier_category_ends' => 'Kategorija se konča na ":value"', + 'search_modifier_not_category_ends' => 'Kategorija se ne konča na ":value"', + 'search_modifier_category_starts' => 'Kategorija se začne z ":value"', + 'search_modifier_not_category_starts' => 'Kategorija se ne začne z ":value"', + 'search_modifier_budget_contains' => 'Proračun vsebuje ":value"', + 'search_modifier_not_budget_contains' => 'Proračun ne vsebuje ":value"', + 'search_modifier_budget_ends' => 'Proračun se konča s ":value"', + 'search_modifier_not_budget_ends' => 'Proračun se ne konča na ":value"', + 'search_modifier_budget_starts' => 'Proračun se začne z ":value"', + 'search_modifier_not_budget_starts' => 'Proračun se ne začne z ":value"', + 'search_modifier_bill_contains' => 'Račun vsebuje ":value"', + 'search_modifier_not_bill_contains' => 'Račun ne vsebuje ":value"', + 'search_modifier_bill_ends' => 'Račun se konča s ":value"', + 'search_modifier_not_bill_ends' => 'Račun se ne konča na ":value"', + 'search_modifier_bill_starts' => 'Račun se začne z ":value"', + 'search_modifier_not_bill_starts' => 'Račun se ne začne z ":value"', + 'search_modifier_external_id_contains' => 'Zunanji ID vsebuje ":value"', + 'search_modifier_not_external_id_contains' => 'Zunanji ID ne vsebuje ":value"', + 'search_modifier_external_id_ends' => 'Zunanji ID se konča s ":value"', + 'search_modifier_not_external_id_ends' => 'Zunanji ID se ne konča s ":value"', + 'search_modifier_external_id_starts' => 'Zunanji ID se začne z ":value"', + 'search_modifier_not_external_id_starts' => 'Zunanji ID se ne začne z ":value"', + 'search_modifier_internal_reference_contains' => 'Notranja referenca vsebuje ":value"', + 'search_modifier_not_internal_reference_contains' => 'Notranja referenca ne vsebuje ":value"', + 'search_modifier_internal_reference_ends' => 'Notranja referenca se konča s ":value"', + 'search_modifier_internal_reference_starts' => 'Notranja referenca se začne z ":value"', + 'search_modifier_not_internal_reference_ends' => 'Notranja referenca se ne konča s ":value"', + 'search_modifier_not_internal_reference_starts' => 'Notranja referenca se ne začne z ":value"', + 'search_modifier_external_url_is' => 'Zunanji URL je ":value"', + 'search_modifier_not_external_url_is' => 'Zunanji URL ni ":value"', + 'search_modifier_external_url_contains' => 'Zunanji URL vsebuje ":value"', + 'search_modifier_not_external_url_contains' => 'Zunanji URL ne vsebuje ":value"', + 'search_modifier_external_url_ends' => 'Zunanji URL se konča s ":value"', + 'search_modifier_not_external_url_ends' => 'Zunanji URL se ne konča s ":value"', + 'search_modifier_external_url_starts' => 'Zunanji URL se začne z ":value"', + 'search_modifier_not_external_url_starts' => 'Zunanji URL se ne začne z ":value"', + 'search_modifier_has_no_attachments' => 'Transakcija nima prilog', + 'search_modifier_not_has_no_attachments' => 'Transakcija ima priloge', + 'search_modifier_not_has_attachments' => 'Transakcija nima prilog', + 'search_modifier_account_is_cash' => 'Kateri koli račun je račun "(gotovina)".', + 'search_modifier_not_account_is_cash' => 'Noben račun ni račun "(gotovina)".', + 'search_modifier_journal_id' => 'ID dnevnika je ":value"', + 'search_modifier_not_journal_id' => 'ID dnevnika ni ":value"', + 'search_modifier_recurrence_id' => 'ID ponavljajoče se transakcije je ":value"', + 'search_modifier_not_recurrence_id' => 'ID ponavljajoče se transakcije ni »:value«', + 'search_modifier_foreign_amount_is' => 'Tuji znesek je ":value"', + 'search_modifier_not_foreign_amount_is' => 'Tuji znesek ni ":value"', + 'search_modifier_foreign_amount_less' => 'Tuji znesek je manjši od ":value"', + 'search_modifier_not_foreign_amount_more' => 'Tuji znesek je manjši od ":value"', + 'search_modifier_not_foreign_amount_less' => 'Tuji znesek je večji od ":value"', + 'search_modifier_foreign_amount_more' => 'Tuji znesek je večji od ":value"', + 'search_modifier_exists' => 'Transakcija obstaja (katera koli transakcija)', + 'search_modifier_not_exists' => 'Transakcija ne obstaja (ni transakcije)', // date fields - 'search_modifier_interest_date_on' => 'Datum obresti transakcije je ":value"', - 'search_modifier_not_interest_date_on' => 'Datum obresti transakcije ni ":value"', - 'search_modifier_interest_date_on_year' => 'Datum obresti transakcije je v letu ":value"', - 'search_modifier_not_interest_date_on_year' => 'Datum obresti transakcije ni v letu ":value"', - 'search_modifier_interest_date_on_month' => 'Datum obresti transakcije je v mesecu ":value"', - 'search_modifier_not_interest_date_on_month' => 'Datum obresti transakcije ni v mesecu ":value"', - 'search_modifier_interest_date_on_day' => 'Datum obresti transakcije je na dan v mesecu ":value"', - 'search_modifier_not_interest_date_on_day' => 'Datum obresti transakcije ni na dan v mesecu ":value"', - 'search_modifier_interest_date_before_year' => 'Datum obresti transakcije je pred ali v letu ":value"', - 'search_modifier_interest_date_before_month' => 'Datum obresti transakcije je pred ali v mesecu ":value"', - 'search_modifier_interest_date_before_day' => 'Datum obresti transakcije je pred ali na dan v mesecu ":value"', - 'search_modifier_interest_date_after_year' => 'Datum obresti transakcije je po ali v letu ":value"', - 'search_modifier_interest_date_after_month' => 'Datum obresti transakcije je po ali v mesecu ":value"', - 'search_modifier_interest_date_after_day' => 'Datum obresti transakcije je po ali na dan v mesecu ":value"', - 'search_modifier_book_date_on_year' => 'Datum knjiženja je v letu ":value"', - 'search_modifier_book_date_on_month' => 'Datum knjiženja je v mesecu ":value"', - 'search_modifier_book_date_on_day' => 'Datum knjiženja je na dan v mesecu ":value"', - 'search_modifier_not_book_date_on_year' => 'Datum knjiženja ni v letu ":value"', - 'search_modifier_not_book_date_on_month' => 'Datum knjiženja ni v mesecu ":value"', - 'search_modifier_not_book_date_on_day' => 'Datum knjiženja ni na dan v mesecu ":value"', - 'search_modifier_book_date_before_year' => 'Datum knjiženja je pred ali v letu ":value"', - 'search_modifier_book_date_before_month' => 'Datum knjiženja je pred ali v mesecu ":value"', - 'search_modifier_book_date_before_day' => 'Datum knjiženja je pred ali na dan v mesecu ":value"', - 'search_modifier_book_date_after_year' => 'Datum knjiženja je za ali v letu ":value"', - 'search_modifier_book_date_after_month' => 'Datum knjiženja je za ali v mesecu ":value"', - 'search_modifier_book_date_after_day' => 'Datum knjiženja je za ali na dan v mesecu ":value"', - 'search_modifier_process_date_on_year' => 'Datum postopka transakcije je v letu ":value"', - 'search_modifier_process_date_on_month' => 'Datum postopka transakcije je v mesecu ":value"', - 'search_modifier_process_date_on_day' => 'Datum postopka transakcije je na dan v mesecu ":value"', - 'search_modifier_not_process_date_on_year' => 'Datum postopka transakcije ni v letu ":value"', - 'search_modifier_not_process_date_on_month' => 'Datum postopka transakcije ni v mesecu ":value"', - 'search_modifier_not_process_date_on_day' => 'Datum postopka transakcije ni na dan v mesecu ":value"', - 'search_modifier_process_date_before_year' => 'Datum postopka transakcije je pred ali v letu ":value"', - 'search_modifier_process_date_before_month' => 'Datum postopka transakcije je pred ali v mesecu ":value"', - 'search_modifier_process_date_before_day' => 'Datum postopka transakcije je pred ali na dan v mesecu ":value"', - 'search_modifier_process_date_after_year' => 'Datum postopka transakcije je za ali v letu ":value"', - 'search_modifier_process_date_after_month' => 'Datum postopka transakcije je po ali v mesecu ":value"', - 'search_modifier_process_date_after_day' => 'Datum postopka transakcije je po ali na dan v mesecu ":value"', - 'search_modifier_due_date_on_year' => 'Rok zapadlosti transakcije je v letu ":value"', - 'search_modifier_due_date_on_month' => 'Rok zapadlosti transakcije je v mesecu ":value"', - 'search_modifier_due_date_on_day' => 'Rok zapadlosti transakcije je na dan v mesecu ":value"', - 'search_modifier_not_due_date_on_year' => 'Rok zapadlosti transakcije ni v letu ":value"', - 'search_modifier_not_due_date_on_month' => 'Rok zapadlosti transakcije ni v mesecu ":value"', - 'search_modifier_not_due_date_on_day' => 'Datum zapadlosti transakcije ni na dan v mesecu ":value"', - 'search_modifier_due_date_before_year' => 'Rok zapadlosti transakcije je pred ali v letu ":value"', - 'search_modifier_due_date_before_month' => 'Rok zapadlosti transakcije je pred ali v mesecu ":value"', - 'search_modifier_due_date_before_day' => 'Datum zapadlosti transakcije je pred ali na dan v mesecu ":value"', - 'search_modifier_due_date_after_year' => 'Rok zapadlosti transakcije je po ali v letu ":value"', - 'search_modifier_due_date_after_month' => 'Rok zapadlosti transakcije je po ali v mesecu ":value"', - 'search_modifier_due_date_after_day' => 'Datum zapadlosti transakcije je po ali na dan v mesecu ":value"', - 'search_modifier_payment_date_on_year' => 'Datum plačila transakcije je v letu ":value"', - 'search_modifier_payment_date_on_month' => 'Datum plačila transakcije je v mesecu ":value"', - 'search_modifier_payment_date_on_day' => 'Datum plačila transakcije je dan v mesecu ":value"', - 'search_modifier_not_payment_date_on_year' => 'Datum plačila transakcije ni v letu ":value"', - 'search_modifier_not_payment_date_on_month' => 'Datum plačila transakcije ni v mesecu ":value"', - 'search_modifier_not_payment_date_on_day' => 'Datum plačila transakcije ni na dan v mesecu ":value"', - 'search_modifier_payment_date_before_year' => 'Datum plačila transakcije je pred ali v letu ":value"', - 'search_modifier_payment_date_before_month' => 'Datum plačila transakcije je pred ali v mesecu ":value"', - 'search_modifier_payment_date_before_day' => 'Datum plačila transakcije je pred ali na dan v mesecu ":value"', - 'search_modifier_payment_date_after_year' => 'Datum plačila transakcije je po ali v letu ":value"', - 'search_modifier_payment_date_after_month' => 'Datum plačila transakcije je po ali v mesecu ":value"', - 'search_modifier_payment_date_after_day' => 'Datum plačila transakcije je po ali na dan v mesecu ":value"', - 'search_modifier_invoice_date_on_year' => 'Datum transakcijskega računa je v letu ":value"', - 'search_modifier_invoice_date_on_month' => 'Datum transakcijskega računa je v mesecu ":value"', - 'search_modifier_invoice_date_on_day' => 'Datum transakcijskega računa je na dan v mesecu ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Datum transakcijskega računa ni v letu ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Datum transakcijskega računa ni v mesecu ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Datum transakcijskega računa ni na dan v mesecu ":value"', - 'search_modifier_invoice_date_before_year' => 'Datum transakcijskega računa je pred ali v letu ":value"', - 'search_modifier_invoice_date_before_month' => 'Datum transakcijskega računa je pred ali v mesecu ":value"', - 'search_modifier_invoice_date_before_day' => 'Datum transakcijskega računa je pred ali na dan v mesecu ":value"', - 'search_modifier_invoice_date_after_year' => 'Datum transakcijskega računa je za ali v letu ":value"', - 'search_modifier_invoice_date_after_month' => 'Datum transakcijskega računa je po ali v mesecu ":value"', - 'search_modifier_invoice_date_after_day' => 'Datum transakcijskega računa je po ali na dan v mesecu ":value"', + 'search_modifier_interest_date_on' => 'Datum obresti transakcije je ":value"', + 'search_modifier_not_interest_date_on' => 'Datum obresti transakcije ni ":value"', + 'search_modifier_interest_date_on_year' => 'Datum obresti transakcije je v letu ":value"', + 'search_modifier_not_interest_date_on_year' => 'Datum obresti transakcije ni v letu ":value"', + 'search_modifier_interest_date_on_month' => 'Datum obresti transakcije je v mesecu ":value"', + 'search_modifier_not_interest_date_on_month' => 'Datum obresti transakcije ni v mesecu ":value"', + 'search_modifier_interest_date_on_day' => 'Datum obresti transakcije je na dan v mesecu ":value"', + 'search_modifier_not_interest_date_on_day' => 'Datum obresti transakcije ni na dan v mesecu ":value"', + 'search_modifier_interest_date_before_year' => 'Datum obresti transakcije je pred ali v letu ":value"', + 'search_modifier_interest_date_before_month' => 'Datum obresti transakcije je pred ali v mesecu ":value"', + 'search_modifier_interest_date_before_day' => 'Datum obresti transakcije je pred ali na dan v mesecu ":value"', + 'search_modifier_interest_date_after_year' => 'Datum obresti transakcije je po ali v letu ":value"', + 'search_modifier_interest_date_after_month' => 'Datum obresti transakcije je po ali v mesecu ":value"', + 'search_modifier_interest_date_after_day' => 'Datum obresti transakcije je po ali na dan v mesecu ":value"', + 'search_modifier_book_date_on_year' => 'Datum knjiženja je v letu ":value"', + 'search_modifier_book_date_on_month' => 'Datum knjiženja je v mesecu ":value"', + 'search_modifier_book_date_on_day' => 'Datum knjiženja je na dan v mesecu ":value"', + 'search_modifier_not_book_date_on_year' => 'Datum knjiženja ni v letu ":value"', + 'search_modifier_not_book_date_on_month' => 'Datum knjiženja ni v mesecu ":value"', + 'search_modifier_not_book_date_on_day' => 'Datum knjiženja ni na dan v mesecu ":value"', + 'search_modifier_book_date_before_year' => 'Datum knjiženja je pred ali v letu ":value"', + 'search_modifier_book_date_before_month' => 'Datum knjiženja je pred ali v mesecu ":value"', + 'search_modifier_book_date_before_day' => 'Datum knjiženja je pred ali na dan v mesecu ":value"', + 'search_modifier_book_date_after_year' => 'Datum knjiženja je za ali v letu ":value"', + 'search_modifier_book_date_after_month' => 'Datum knjiženja je za ali v mesecu ":value"', + 'search_modifier_book_date_after_day' => 'Datum knjiženja je za ali na dan v mesecu ":value"', + 'search_modifier_process_date_on_year' => 'Datum postopka transakcije je v letu ":value"', + 'search_modifier_process_date_on_month' => 'Datum postopka transakcije je v mesecu ":value"', + 'search_modifier_process_date_on_day' => 'Datum postopka transakcije je na dan v mesecu ":value"', + 'search_modifier_not_process_date_on_year' => 'Datum postopka transakcije ni v letu ":value"', + 'search_modifier_not_process_date_on_month' => 'Datum postopka transakcije ni v mesecu ":value"', + 'search_modifier_not_process_date_on_day' => 'Datum postopka transakcije ni na dan v mesecu ":value"', + 'search_modifier_process_date_before_year' => 'Datum postopka transakcije je pred ali v letu ":value"', + 'search_modifier_process_date_before_month' => 'Datum postopka transakcije je pred ali v mesecu ":value"', + 'search_modifier_process_date_before_day' => 'Datum postopka transakcije je pred ali na dan v mesecu ":value"', + 'search_modifier_process_date_after_year' => 'Datum postopka transakcije je za ali v letu ":value"', + 'search_modifier_process_date_after_month' => 'Datum postopka transakcije je po ali v mesecu ":value"', + 'search_modifier_process_date_after_day' => 'Datum postopka transakcije je po ali na dan v mesecu ":value"', + 'search_modifier_due_date_on_year' => 'Rok zapadlosti transakcije je v letu ":value"', + 'search_modifier_due_date_on_month' => 'Rok zapadlosti transakcije je v mesecu ":value"', + 'search_modifier_due_date_on_day' => 'Rok zapadlosti transakcije je na dan v mesecu ":value"', + 'search_modifier_not_due_date_on_year' => 'Rok zapadlosti transakcije ni v letu ":value"', + 'search_modifier_not_due_date_on_month' => 'Rok zapadlosti transakcije ni v mesecu ":value"', + 'search_modifier_not_due_date_on_day' => 'Datum zapadlosti transakcije ni na dan v mesecu ":value"', + 'search_modifier_due_date_before_year' => 'Rok zapadlosti transakcije je pred ali v letu ":value"', + 'search_modifier_due_date_before_month' => 'Rok zapadlosti transakcije je pred ali v mesecu ":value"', + 'search_modifier_due_date_before_day' => 'Datum zapadlosti transakcije je pred ali na dan v mesecu ":value"', + 'search_modifier_due_date_after_year' => 'Rok zapadlosti transakcije je po ali v letu ":value"', + 'search_modifier_due_date_after_month' => 'Rok zapadlosti transakcije je po ali v mesecu ":value"', + 'search_modifier_due_date_after_day' => 'Datum zapadlosti transakcije je po ali na dan v mesecu ":value"', + 'search_modifier_payment_date_on_year' => 'Datum plačila transakcije je v letu ":value"', + 'search_modifier_payment_date_on_month' => 'Datum plačila transakcije je v mesecu ":value"', + 'search_modifier_payment_date_on_day' => 'Datum plačila transakcije je dan v mesecu ":value"', + 'search_modifier_not_payment_date_on_year' => 'Datum plačila transakcije ni v letu ":value"', + 'search_modifier_not_payment_date_on_month' => 'Datum plačila transakcije ni v mesecu ":value"', + 'search_modifier_not_payment_date_on_day' => 'Datum plačila transakcije ni na dan v mesecu ":value"', + 'search_modifier_payment_date_before_year' => 'Datum plačila transakcije je pred ali v letu ":value"', + 'search_modifier_payment_date_before_month' => 'Datum plačila transakcije je pred ali v mesecu ":value"', + 'search_modifier_payment_date_before_day' => 'Datum plačila transakcije je pred ali na dan v mesecu ":value"', + 'search_modifier_payment_date_after_year' => 'Datum plačila transakcije je po ali v letu ":value"', + 'search_modifier_payment_date_after_month' => 'Datum plačila transakcije je po ali v mesecu ":value"', + 'search_modifier_payment_date_after_day' => 'Datum plačila transakcije je po ali na dan v mesecu ":value"', + 'search_modifier_invoice_date_on_year' => 'Datum transakcijskega računa je v letu ":value"', + 'search_modifier_invoice_date_on_month' => 'Datum transakcijskega računa je v mesecu ":value"', + 'search_modifier_invoice_date_on_day' => 'Datum transakcijskega računa je na dan v mesecu ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Datum transakcijskega računa ni v letu ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Datum transakcijskega računa ni v mesecu ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Datum transakcijskega računa ni na dan v mesecu ":value"', + 'search_modifier_invoice_date_before_year' => 'Datum transakcijskega računa je pred ali v letu ":value"', + 'search_modifier_invoice_date_before_month' => 'Datum transakcijskega računa je pred ali v mesecu ":value"', + 'search_modifier_invoice_date_before_day' => 'Datum transakcijskega računa je pred ali na dan v mesecu ":value"', + 'search_modifier_invoice_date_after_year' => 'Datum transakcijskega računa je za ali v letu ":value"', + 'search_modifier_invoice_date_after_month' => 'Datum transakcijskega računa je po ali v mesecu ":value"', + 'search_modifier_invoice_date_after_day' => 'Datum transakcijskega računa je po ali na dan v mesecu ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transakcija je bila nazadnje posodobljena v letu ":value"', - 'search_modifier_updated_at_on_month' => 'Transakcija je bila nazadnje posodobljena v mesecu ":value"', - 'search_modifier_updated_at_on_day' => 'Transakcija je bila nazadnje posodobljena na dan v mesecu ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transakcija ni bila nazadnje posodobljena v letu ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transakcija ni bila nazadnje posodobljena v mesecu ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transakcija ni bila nazadnje posodobljena na dan v mesecu ":value"', - 'search_modifier_updated_at_before_year' => 'Transakcija je bila nazadnje posodobljena v ali pred letom ":value"', - 'search_modifier_updated_at_before_month' => 'Transakcija je bila nazadnje posodobljena v ali pred mesecem ":value"', - 'search_modifier_updated_at_before_day' => 'Transakcija je bila nazadnje posodobljena na ali pred dnevom v mesecu ":value"', - 'search_modifier_updated_at_after_year' => 'Transakcija je bila nazadnje posodobljena v ali po letu ":value"', - 'search_modifier_updated_at_after_month' => 'Transakcija je bila nazadnje posodobljena v ali po mesecu ":value"', - 'search_modifier_updated_at_after_day' => 'Transakcija je bila nazadnje posodobljena na ali po dnevu v mesecu ":value"', - 'search_modifier_created_at_on_year' => 'Transakcija je bila ustvarjena v letu ":value"', - 'search_modifier_created_at_on_month' => 'Transakcija je bila ustvarjena v mesecu ":value"', - 'search_modifier_created_at_on_day' => 'Transakcija je bila ustvarjena na dan v mesecu ":value"', - 'search_modifier_not_created_at_on_year' => 'Transakcija ni bila ustvarjena v letu ":value"', - 'search_modifier_not_created_at_on_month' => 'Transakcija ni bila ustvarjena v mesecu ":value"', - 'search_modifier_not_created_at_on_day' => 'Transakcija ni bila ustvarjena na dan v mesecu ":value"', - 'search_modifier_created_at_before_year' => 'Transakcija je bila ustvarjena v ali pred letom ":value"', - 'search_modifier_created_at_before_month' => 'Transakcija je bila ustvarjena v ali pred mesecem ":value"', - 'search_modifier_created_at_before_day' => 'Transakcija je bila ustvarjena na ali pred dnevom v mesecu ":value"', - 'search_modifier_created_at_after_year' => 'Transakcija je bila ustvarjena na ali po ":value"', - 'search_modifier_created_at_after_month' => 'Transakcija je bila ustvarjena v ali po mesecu ":value"', - 'search_modifier_created_at_after_day' => 'Transakcija je bila ustvarjena na ali po dnevu v mesecu ":value"', - 'search_modifier_interest_date_before' => 'Datum obresti transakcije je na ali pred ":value"', - 'search_modifier_interest_date_after' => 'Datum obresti transakcije je na ali po ":value"', - 'search_modifier_book_date_on' => 'Datum knjiženja je ":value"', - 'search_modifier_not_book_date_on' => 'Datum knjiženja ni ":value"', - 'search_modifier_book_date_before' => 'Datum knjiženja je na ali pred ":value"', - 'search_modifier_book_date_after' => 'Datum knjiženja je na ali po ":value"', - 'search_modifier_process_date_on' => 'Datum postopka transakcije je na ":value"', - 'search_modifier_not_process_date_on' => 'Datum postopka transakcije ni na ":value"', - 'search_modifier_process_date_before' => 'Datum postopka transakcije je na ali pred ":value"', - 'search_modifier_process_date_after' => 'Datum postopka transakcije je na ali po ":value"', - 'search_modifier_due_date_on' => 'Rok transakcije je na ":value"', - 'search_modifier_not_due_date_on' => 'Rok zapadlosti transakcije ni na ":value"', - 'search_modifier_due_date_before' => 'Datum zapadlosti transakcije je na ali pred ":value"', - 'search_modifier_due_date_after' => 'Datum zapadlosti transakcije je na ali po ":value"', - 'search_modifier_payment_date_on' => 'Datum plačila transakcije je na ":value"', - 'search_modifier_not_payment_date_on' => 'Datum plačila transakcije ni na ":value"', - 'search_modifier_payment_date_before' => 'Datum plačila transakcije je na ali pred ":value"', - 'search_modifier_payment_date_after' => 'Datum plačila transakcije je na ali po ":value"', - 'search_modifier_invoice_date_on' => 'Datum transakcijskega računa je na ":value"', - 'search_modifier_not_invoice_date_on' => 'Datum transakcijskega računa ni na ":value"', - 'search_modifier_invoice_date_before' => 'Datum transakcijskega računa je na ali pred ":value"', - 'search_modifier_invoice_date_after' => 'Datum transakcijskega računa je na ali po ":value"', - 'search_modifier_created_at_on' => 'Transakcija je bila ustvarjena na ":value"', - 'search_modifier_not_created_at_on' => 'Transakcija ni bila ustvarjena na ":value"', - 'search_modifier_created_at_before' => 'Transakcija je bila ustvarjena na ali pred ":value"', - 'search_modifier_created_at_after' => 'Transakcija je bila ustvarjena na ali po ":value"', - 'search_modifier_updated_at_on' => 'Transakcija je bila posodobljena na ":value"', - 'search_modifier_not_updated_at_on' => 'Transakcija ni bila posodobljena na ":value"', - 'search_modifier_updated_at_before' => 'Transakcija je bila posodobljena na ali pred ":value"', - 'search_modifier_updated_at_after' => 'Transakcija je bila posodobljena na ali po ":value"', + 'search_modifier_updated_at_on_year' => 'Transakcija je bila nazadnje posodobljena v letu ":value"', + 'search_modifier_updated_at_on_month' => 'Transakcija je bila nazadnje posodobljena v mesecu ":value"', + 'search_modifier_updated_at_on_day' => 'Transakcija je bila nazadnje posodobljena na dan v mesecu ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transakcija ni bila nazadnje posodobljena v letu ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transakcija ni bila nazadnje posodobljena v mesecu ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transakcija ni bila nazadnje posodobljena na dan v mesecu ":value"', + 'search_modifier_updated_at_before_year' => 'Transakcija je bila nazadnje posodobljena v ali pred letom ":value"', + 'search_modifier_updated_at_before_month' => 'Transakcija je bila nazadnje posodobljena v ali pred mesecem ":value"', + 'search_modifier_updated_at_before_day' => 'Transakcija je bila nazadnje posodobljena na ali pred dnevom v mesecu ":value"', + 'search_modifier_updated_at_after_year' => 'Transakcija je bila nazadnje posodobljena v ali po letu ":value"', + 'search_modifier_updated_at_after_month' => 'Transakcija je bila nazadnje posodobljena v ali po mesecu ":value"', + 'search_modifier_updated_at_after_day' => 'Transakcija je bila nazadnje posodobljena na ali po dnevu v mesecu ":value"', + 'search_modifier_created_at_on_year' => 'Transakcija je bila ustvarjena v letu ":value"', + 'search_modifier_created_at_on_month' => 'Transakcija je bila ustvarjena v mesecu ":value"', + 'search_modifier_created_at_on_day' => 'Transakcija je bila ustvarjena na dan v mesecu ":value"', + 'search_modifier_not_created_at_on_year' => 'Transakcija ni bila ustvarjena v letu ":value"', + 'search_modifier_not_created_at_on_month' => 'Transakcija ni bila ustvarjena v mesecu ":value"', + 'search_modifier_not_created_at_on_day' => 'Transakcija ni bila ustvarjena na dan v mesecu ":value"', + 'search_modifier_created_at_before_year' => 'Transakcija je bila ustvarjena v ali pred letom ":value"', + 'search_modifier_created_at_before_month' => 'Transakcija je bila ustvarjena v ali pred mesecem ":value"', + 'search_modifier_created_at_before_day' => 'Transakcija je bila ustvarjena na ali pred dnevom v mesecu ":value"', + 'search_modifier_created_at_after_year' => 'Transakcija je bila ustvarjena na ali po ":value"', + 'search_modifier_created_at_after_month' => 'Transakcija je bila ustvarjena v ali po mesecu ":value"', + 'search_modifier_created_at_after_day' => 'Transakcija je bila ustvarjena na ali po dnevu v mesecu ":value"', + 'search_modifier_interest_date_before' => 'Datum obresti transakcije je na ali pred ":value"', + 'search_modifier_interest_date_after' => 'Datum obresti transakcije je na ali po ":value"', + 'search_modifier_book_date_on' => 'Datum knjiženja je ":value"', + 'search_modifier_not_book_date_on' => 'Datum knjiženja ni ":value"', + 'search_modifier_book_date_before' => 'Datum knjiženja je na ali pred ":value"', + 'search_modifier_book_date_after' => 'Datum knjiženja je na ali po ":value"', + 'search_modifier_process_date_on' => 'Datum postopka transakcije je na ":value"', + 'search_modifier_not_process_date_on' => 'Datum postopka transakcije ni na ":value"', + 'search_modifier_process_date_before' => 'Datum postopka transakcije je na ali pred ":value"', + 'search_modifier_process_date_after' => 'Datum postopka transakcije je na ali po ":value"', + 'search_modifier_due_date_on' => 'Rok transakcije je na ":value"', + 'search_modifier_not_due_date_on' => 'Rok zapadlosti transakcije ni na ":value"', + 'search_modifier_due_date_before' => 'Datum zapadlosti transakcije je na ali pred ":value"', + 'search_modifier_due_date_after' => 'Datum zapadlosti transakcije je na ali po ":value"', + 'search_modifier_payment_date_on' => 'Datum plačila transakcije je na ":value"', + 'search_modifier_not_payment_date_on' => 'Datum plačila transakcije ni na ":value"', + 'search_modifier_payment_date_before' => 'Datum plačila transakcije je na ali pred ":value"', + 'search_modifier_payment_date_after' => 'Datum plačila transakcije je na ali po ":value"', + 'search_modifier_invoice_date_on' => 'Datum transakcijskega računa je na ":value"', + 'search_modifier_not_invoice_date_on' => 'Datum transakcijskega računa ni na ":value"', + 'search_modifier_invoice_date_before' => 'Datum transakcijskega računa je na ali pred ":value"', + 'search_modifier_invoice_date_after' => 'Datum transakcijskega računa je na ali po ":value"', + 'search_modifier_created_at_on' => 'Transakcija je bila ustvarjena na ":value"', + 'search_modifier_not_created_at_on' => 'Transakcija ni bila ustvarjena na ":value"', + 'search_modifier_created_at_before' => 'Transakcija je bila ustvarjena na ali pred ":value"', + 'search_modifier_created_at_after' => 'Transakcija je bila ustvarjena na ali po ":value"', + 'search_modifier_updated_at_on' => 'Transakcija je bila posodobljena na ":value"', + 'search_modifier_not_updated_at_on' => 'Transakcija ni bila posodobljena na ":value"', + 'search_modifier_updated_at_before' => 'Transakcija je bila posodobljena na ali pred ":value"', + 'search_modifier_updated_at_after' => 'Transakcija je bila posodobljena na ali po ":value"', - 'search_modifier_attachment_name_is' => 'Ime katere koli priloge je ":value"', - 'search_modifier_attachment_name_contains' => 'Vsako ime priloge vsebuje ":value"', - 'search_modifier_attachment_name_starts' => 'Vsako ime priloge se začne z ":value"', - 'search_modifier_attachment_name_ends' => 'Vsako ime priloge se konča s ":value"', - 'search_modifier_attachment_notes_are' => 'Vse opombe k prilogi so ":value"', - 'search_modifier_attachment_notes_contains' => 'Vse opombe k prilogi vsebujejo ":value"', - 'search_modifier_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo z ":value"', - 'search_modifier_attachment_notes_ends' => 'Opombe katere koli priloge se končajo s ":value"', - 'search_modifier_not_attachment_name_is' => 'Ime nobene priloge ni ":value"', - 'search_modifier_not_attachment_name_contains' => 'Ime nobene priloge ne vsebuje ":value"', - 'search_modifier_not_attachment_name_starts' => 'Ime nobene priloge se ne začne z ":value"', - 'search_modifier_not_attachment_name_ends' => 'Ime nobene priloge se ne konča s ":value"', - 'search_modifier_not_attachment_notes_are' => 'Opombe k prilogi niso »:value«', - 'search_modifier_not_attachment_notes_contains' => 'Opombe k prilogi ne vsebujejo ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo z ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Opombe k prilogi se ne končajo s ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT je ":value"', - 'update_rule_from_query' => 'Posodobite pravilo ":rule" iz iskalne poizvedbe', - 'create_rule_from_query' => 'Ustvari novo pravilo iz iskalne poizvedbe', - 'rule_from_search_words' => 'Mehanizem pravil težko obravnava ":string". Predlagano pravilo, ki ustreza vaši iskalni poizvedbi, lahko daje drugačne rezultate. Pazljivo preverite sprožilce pravila.', + 'search_modifier_attachment_name_is' => 'Ime katere koli priloge je ":value"', + 'search_modifier_attachment_name_contains' => 'Vsako ime priloge vsebuje ":value"', + 'search_modifier_attachment_name_starts' => 'Vsako ime priloge se začne z ":value"', + 'search_modifier_attachment_name_ends' => 'Vsako ime priloge se konča s ":value"', + 'search_modifier_attachment_notes_are' => 'Vse opombe k prilogi so ":value"', + 'search_modifier_attachment_notes_contains' => 'Vse opombe k prilogi vsebujejo ":value"', + 'search_modifier_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo z ":value"', + 'search_modifier_attachment_notes_ends' => 'Opombe katere koli priloge se končajo s ":value"', + 'search_modifier_not_attachment_name_is' => 'Ime nobene priloge ni ":value"', + 'search_modifier_not_attachment_name_contains' => 'Ime nobene priloge ne vsebuje ":value"', + 'search_modifier_not_attachment_name_starts' => 'Ime nobene priloge se ne začne z ":value"', + 'search_modifier_not_attachment_name_ends' => 'Ime nobene priloge se ne konča s ":value"', + 'search_modifier_not_attachment_notes_are' => 'Opombe k prilogi niso »:value«', + 'search_modifier_not_attachment_notes_contains' => 'Opombe k prilogi ne vsebujejo ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo z ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Opombe k prilogi se ne končajo s ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT je ":value"', + 'update_rule_from_query' => 'Posodobite pravilo ":rule" iz iskalne poizvedbe', + 'create_rule_from_query' => 'Ustvari novo pravilo iz iskalne poizvedbe', + 'rule_from_search_words' => 'Mehanizem pravil težko obravnava ":string". Predlagano pravilo, ki ustreza vaši iskalni poizvedbi, lahko daje drugačne rezultate. Pazljivo preverite sprožilce pravila.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Naslednji modifikatorji se uporabljajo tudi za iskanje:', - 'general_search_error' => 'Pri iskanju je prišlo do napake. Za več informacij preverite datoteke dnevnika.', - 'search_box' => 'Iskanje', - 'search_box_intro' => 'Dobrodošli v iskalni funkciji Firefly III. V polje vnesite iskalno poizvedbo. Preverite datoteko za pomoč, ker je iskanje precej napredno.', - 'search_error' => 'Napaka med iskanjem', - 'search_searching' => 'Iščem...', - 'search_results' => 'Rezultati iskanja', + 'modifiers_applies_are' => 'Naslednji modifikatorji se uporabljajo tudi za iskanje:', + 'general_search_error' => 'Pri iskanju je prišlo do napake. Za več informacij preverite datoteke dnevnika.', + 'search_box' => 'Iskanje', + 'search_box_intro' => 'Dobrodošli v iskalni funkciji Firefly III. V polje vnesite iskalno poizvedbo. Preverite datoteko za pomoč, ker je iskanje precej napredno.', + 'search_error' => 'Napaka med iskanjem', + 'search_searching' => 'Iščem...', + 'search_results' => 'Rezultati iskanja', // repeat frequencies: - 'repeat_freq_yearly' => 'letno', - 'repeat_freq_half-year' => 'polletno', - 'repeat_freq_quarterly' => 'četrtletno', - 'repeat_freq_monthly' => 'mesečno', - 'repeat_freq_weekly' => 'tedensko', - 'repeat_freq_daily' => 'dnevno', - 'daily' => 'dnevno', - 'weekly' => 'tedensko', - 'quarterly' => 'četrtletno', - 'half-year' => 'polletno', - 'yearly' => 'letno', + 'repeat_freq_yearly' => 'letno', + 'repeat_freq_half-year' => 'polletno', + 'repeat_freq_quarterly' => 'četrtletno', + 'repeat_freq_monthly' => 'mesečno', + 'repeat_freq_weekly' => 'tedensko', + 'repeat_freq_daily' => 'dnevno', + 'daily' => 'dnevno', + 'weekly' => 'tedensko', + 'quarterly' => 'četrtletno', + 'half-year' => 'polletno', + 'yearly' => 'letno', // rules - 'is_not_rule_trigger' => 'Ni', - 'cannot_fire_inactive_rules' => 'Neaktivnih pravil ne morete izvajati.', - 'show_triggers' => 'Prikaži sprožilce', - 'show_actions' => 'Prikaži dejanja', - 'rules' => 'Pravila', - 'rule_name' => 'Naziv pravila', - 'rule_triggers' => 'Pravilo se sproži, ko', - 'rule_actions' => 'Pravilo bo', - 'new_rule' => 'Novo pravilo', - 'new_rule_group' => 'Nova skupina pravil', - 'rule_priority_up' => 'Pravilu povišajte prioriteto', - 'rule_priority_down' => 'Pravilu znižajte prioriteto', - 'make_new_rule_group' => 'Ustvari novo skupino pravil', - 'store_new_rule_group' => 'Shrani novo skupino pravil', - 'created_new_rule_group' => 'Nova skupina pravil ":title" je shranjena!', - 'updated_rule_group' => 'Skupina pravil ":title" je uspešno posodobljena.', - 'edit_rule_group' => 'Uredi skupino pravil ":title"', - 'duplicate_rule' => 'Ustvari dvojnik pravila ":title"', - 'rule_copy_of' => 'Kopija ":title"', - 'duplicated_rule' => 'Pravilo ":title" podvojeno v ":newTitle"', - 'delete_rule_group' => 'Izbriši skupino pravil ":title"', - 'deleted_rule_group' => 'Skupina pravil ":title" je izbrisana', - 'update_rule_group' => 'Posodobite skupino pravil', - 'no_rules_in_group' => 'V tej skupini ni pravil', - 'move_rule_group_up' => 'Premakni skupino pravil gor', - 'move_rule_group_down' => 'Premakni skupino pravil dol', - 'save_rules_by_moving' => 'Shranite to pravilo tako, da ga premaknete v drugo skupino pravil:|Shranite ta pravila tako, da jih premaknete v drugo skupino pravil:', - 'make_new_rule' => 'Ustvari novo pravilo v skupini ":title"', - 'make_new_rule_no_group' => 'Ustvari novo pravilo', - 'instructions_rule_from_bill' => 'Da povežemo transakcije z novim računom ":name" bo Firefly III ustvaril pravilo, ki bo samodejno preverjalo vnesene transakcije. Preverite podrobnosti spodnjega pravila in pravilo shranite.', - 'instructions_rule_from_journal' => 'Ustvarite pravilo na podlagi transakcije. Dopolnite ali uredite spodnji obrazec.', - 'rule_is_strict' => 'strogo pravilo', - 'rule_is_not_strict' => 'togo pravilo', - 'rule_help_stop_processing' => 'Ko potrdite to polje, se poznejša pravila v tej skupini ne bodo izvajala.', - 'rule_help_strict' => 'V strogih pravilih se morajo sprožiti vsi sprožilci da se dejanje izvede. V togih pravilih je KATERIKOLI sprožilec dovolj za izvedbo dejanj.', - 'rule_help_active' => 'Neaktivna pravila se ne bodo sprožila.', - 'stored_new_rule' => 'Shranjeno novo pravilo z naslovom ":title"', - 'deleted_rule' => 'Pravilo z naslovom ":title" izbrisano', - 'store_new_rule' => 'Shrani novo pravilo', - 'updated_rule' => 'Pravilo z naslovom ":title" je posodobljeno', - 'default_rule_group_name' => 'Privzeto pravilo', - 'default_rule_group_description' => 'Vsa pravila ki niso v skupini.', - 'trigger' => 'Sprožilec', - 'trigger_value' => 'Sprožilec na vrednost', - 'stop_processing_other_triggers' => 'Ustavi izvajanje drugih sprožilcev', - 'add_rule_trigger' => 'Dodaj nov sprožilec', - 'action' => 'Dejanje', - 'action_value' => 'Vrednost dejanja', - 'stop_executing_other_actions' => 'Ustavi izvajanje drugih dejanj', - 'add_rule_action' => 'Dodaj dejanje', - 'edit_rule' => 'Uredi pravilo ":title"', - 'delete_rule' => 'Izbriši pravilo ":title"', - 'update_rule' => 'Uredi pravilo', - 'test_rule_triggers' => 'Poglej ujemajoče se transakcije', - 'warning_no_matching_transactions' => 'Ni ustreznih transakcij.', - 'warning_no_valid_triggers' => 'Sprožilci niso veljavni.', - 'apply_rule_selection' => 'Uporabi pravilo ":title" za izbor transakcij', - 'apply_rule_selection_intro' => 'Pravila, kot je ":title", se običajno uporabljajo samo za nove ali posodobljene transakcije, vendar lahko označite da jih Firefly III zažene ob izbiri obstoječih transakcij. To je lahko uporabno, če ste posodobili pravilo in morate spremembe uporabiti za vse druge transakcije.', - 'include_transactions_from_accounts' => 'Vključi transakcije iz teh računov', - 'include' => 'Vključim?', - 'applied_rule_selection' => '{0} Pravilo »:title« ni spremenilo nobene transakcije v vašem izboru.|[1] Eno transakcijo v vašem izboru je spremenilo pravilo »:title«.|[2,*] :count transakcij v vašem izboru je spremenilo pravilo ":naslov".', - 'execute' => 'Izvedi', - 'apply_rule_group_selection' => 'Uporabite skupino pravil ":title" za izbor transakcij', - 'apply_rule_group_selection_intro' => 'Skupine pravil, kot je ":title", se običajno uporabljajo samo za nove ali posodobljene transakcije, vendar lahko označite da jih Firefly III zažene ob izbiri obstoječih transakcij. To je lahko uporabno, če ste posodobili pravilo in morate spremembe uporabiti za vse druge transakcije.', - 'applied_rule_group_selection' => 'Skupina pravil ":title" je bila uporabljena za vašo izbiro.', + 'is_not_rule_trigger' => 'Ni', + 'cannot_fire_inactive_rules' => 'Neaktivnih pravil ne morete izvajati.', + 'show_triggers' => 'Prikaži sprožilce', + 'show_actions' => 'Prikaži dejanja', + 'rules' => 'Pravila', + 'rule_name' => 'Naziv pravila', + 'rule_triggers' => 'Pravilo se sproži, ko', + 'rule_actions' => 'Pravilo bo', + 'new_rule' => 'Novo pravilo', + 'new_rule_group' => 'Nova skupina pravil', + 'rule_priority_up' => 'Pravilu povišajte prioriteto', + 'rule_priority_down' => 'Pravilu znižajte prioriteto', + 'make_new_rule_group' => 'Ustvari novo skupino pravil', + 'store_new_rule_group' => 'Shrani novo skupino pravil', + 'created_new_rule_group' => 'Nova skupina pravil ":title" je shranjena!', + 'updated_rule_group' => 'Skupina pravil ":title" je uspešno posodobljena.', + 'edit_rule_group' => 'Uredi skupino pravil ":title"', + 'duplicate_rule' => 'Ustvari dvojnik pravila ":title"', + 'rule_copy_of' => 'Kopija ":title"', + 'duplicated_rule' => 'Pravilo ":title" podvojeno v ":newTitle"', + 'delete_rule_group' => 'Izbriši skupino pravil ":title"', + 'deleted_rule_group' => 'Skupina pravil ":title" je izbrisana', + 'update_rule_group' => 'Posodobite skupino pravil', + 'no_rules_in_group' => 'V tej skupini ni pravil', + 'move_rule_group_up' => 'Premakni skupino pravil gor', + 'move_rule_group_down' => 'Premakni skupino pravil dol', + 'save_rules_by_moving' => 'Shranite to pravilo tako, da ga premaknete v drugo skupino pravil:|Shranite ta pravila tako, da jih premaknete v drugo skupino pravil:', + 'make_new_rule' => 'Ustvari novo pravilo v skupini ":title"', + 'make_new_rule_no_group' => 'Ustvari novo pravilo', + 'instructions_rule_from_bill' => 'Da povežemo transakcije z novim računom ":name" bo Firefly III ustvaril pravilo, ki bo samodejno preverjalo vnesene transakcije. Preverite podrobnosti spodnjega pravila in pravilo shranite.', + 'instructions_rule_from_journal' => 'Ustvarite pravilo na podlagi transakcije. Dopolnite ali uredite spodnji obrazec.', + 'rule_is_strict' => 'strogo pravilo', + 'rule_is_not_strict' => 'togo pravilo', + 'rule_help_stop_processing' => 'Ko potrdite to polje, se poznejša pravila v tej skupini ne bodo izvajala.', + 'rule_help_strict' => 'V strogih pravilih se morajo sprožiti vsi sprožilci da se dejanje izvede. V togih pravilih je KATERIKOLI sprožilec dovolj za izvedbo dejanj.', + 'rule_help_active' => 'Neaktivna pravila se ne bodo sprožila.', + 'stored_new_rule' => 'Shranjeno novo pravilo z naslovom ":title"', + 'deleted_rule' => 'Pravilo z naslovom ":title" izbrisano', + 'store_new_rule' => 'Shrani novo pravilo', + 'updated_rule' => 'Pravilo z naslovom ":title" je posodobljeno', + 'default_rule_group_name' => 'Privzeto pravilo', + 'default_rule_group_description' => 'Vsa pravila ki niso v skupini.', + 'trigger' => 'Sprožilec', + 'trigger_value' => 'Sprožilec na vrednost', + 'stop_processing_other_triggers' => 'Ustavi izvajanje drugih sprožilcev', + 'add_rule_trigger' => 'Dodaj nov sprožilec', + 'action' => 'Dejanje', + 'action_value' => 'Vrednost dejanja', + 'stop_executing_other_actions' => 'Ustavi izvajanje drugih dejanj', + 'add_rule_action' => 'Dodaj dejanje', + 'edit_rule' => 'Uredi pravilo ":title"', + 'delete_rule' => 'Izbriši pravilo ":title"', + 'update_rule' => 'Uredi pravilo', + 'test_rule_triggers' => 'Poglej ujemajoče se transakcije', + 'warning_no_matching_transactions' => 'Ni ustreznih transakcij.', + 'warning_no_valid_triggers' => 'Sprožilci niso veljavni.', + 'apply_rule_selection' => 'Uporabi pravilo ":title" za izbor transakcij', + 'apply_rule_selection_intro' => 'Pravila, kot je ":title", se običajno uporabljajo samo za nove ali posodobljene transakcije, vendar lahko označite da jih Firefly III zažene ob izbiri obstoječih transakcij. To je lahko uporabno, če ste posodobili pravilo in morate spremembe uporabiti za vse druge transakcije.', + 'include_transactions_from_accounts' => 'Vključi transakcije iz teh računov', + 'include' => 'Vključim?', + 'applied_rule_selection' => '{0} Pravilo »:title« ni spremenilo nobene transakcije v vašem izboru.|[1] Eno transakcijo v vašem izboru je spremenilo pravilo »:title«.|[2,*] :count transakcij v vašem izboru je spremenilo pravilo ":naslov".', + 'execute' => 'Izvedi', + 'apply_rule_group_selection' => 'Uporabite skupino pravil ":title" za izbor transakcij', + 'apply_rule_group_selection_intro' => 'Skupine pravil, kot je ":title", se običajno uporabljajo samo za nove ali posodobljene transakcije, vendar lahko označite da jih Firefly III zažene ob izbiri obstoječih transakcij. To je lahko uporabno, če ste posodobili pravilo in morate spremembe uporabiti za vse druge transakcije.', + 'applied_rule_group_selection' => 'Skupina pravil ":title" je bila uporabljena za vašo izbiro.', // actions and triggers - 'rule_trigger_store_journal' => 'Ko je transakcija ustvarjena', - 'rule_trigger_update_journal' => 'Ko je transakcija posodobljena', - 'rule_trigger_user_action' => 'Dejanje uporabnika je ":trigger_value"', + 'rule_trigger_store_journal' => 'Ko je transakcija ustvarjena', + 'rule_trigger_update_journal' => 'Ko je transakcija posodobljena', + 'rule_trigger_user_action' => 'Dejanje uporabnika je ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Ime izvornega računa se začne z ...', - 'rule_trigger_source_account_starts' => 'Ime izvornega računa se začne z ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Ime izvornega računa se konča s..', - 'rule_trigger_source_account_ends' => 'Ime izvornega računa se konča s ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Ime izvornega računa je ...', - 'rule_trigger_source_account_is' => 'Ime izvornega računa je ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Ime izvornega računa vsebuje ...', - 'rule_trigger_source_account_contains' => 'Ime izvornega računa vsebuje ":trigger_value"', - 'rule_trigger_account_id_choice' => 'ID računa je natančno ...', - 'rule_trigger_account_id' => 'ID katerega koli računa je točno :trigger_value', - 'rule_trigger_source_account_id_choice' => 'ID izvornega računa je točno ...', - 'rule_trigger_source_account_id' => 'ID izvornega računa je točno :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'ID ciljnega računa je točno ...', - 'rule_trigger_destination_account_id' => 'ID ciljnega računa je točno :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Kateri koli račun je gotovina', - 'rule_trigger_account_is_cash' => 'Kateri koli račun je gotovina', - 'rule_trigger_source_is_cash_choice' => 'Izvorni račun je gotovinski račun', - 'rule_trigger_source_is_cash' => 'Izvorni račun je gotovinski račun', - 'rule_trigger_destination_is_cash_choice' => 'Ciljni račun je (gotovinski) račun', - 'rule_trigger_destination_is_cash' => 'Ciljni račun je (gotovinski) račun', - 'rule_trigger_source_account_nr_starts_choice' => 'Izvorna številka računa / IBAN se začne z ...', - 'rule_trigger_source_account_nr_starts' => 'Izvorna številka računa / IBAN se začne z ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Izvorna številka računa / IBAN se konča s..', - 'rule_trigger_source_account_nr_ends' => 'Izvorna številka računa / IBAN se konča s ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Izvorna številka računa / IBAN je ...', - 'rule_trigger_source_account_nr_is' => 'Izvorna številka računa/IBAN je ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Izvorna številka računa / IBAN vsebuje ...', - 'rule_trigger_source_account_nr_contains' => 'Izvorna številka računa/IBAN vsebuje ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Ime ciljnega računa se začne z ...', - 'rule_trigger_destination_account_starts' => 'Ime ciljnega računa se začne z ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Ime ciljnega računa se konča s..', - 'rule_trigger_destination_account_ends' => 'Ime ciljnega računa se konča s ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Ime ciljnega računa je ...', - 'rule_trigger_destination_account_is' => 'Ime ciljnega računa je ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Ime ciljnega računa vsebuje ...', - 'rule_trigger_destination_account_contains' => 'Ime ciljnega računa vsebuje ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Številka ciljnega računa / IBAN se začne s..', - 'rule_trigger_destination_account_nr_starts' => 'Številka ciljnega računa / IBAN se začne s ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Številka ciljnega računa / IBAN se konča s..', - 'rule_trigger_destination_account_nr_ends' => 'Številka ciljnega računa / IBAN se konča s ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Številka ciljnega računa / IBAN je ...', - 'rule_trigger_destination_account_nr_is' => 'Številka ciljnega računa/IBAN je ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Številka ciljnega računa / IBAN vsebuje ...', - 'rule_trigger_destination_account_nr_contains' => 'Številka ciljnega računa / IBAN vsebuje ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Tip transakcije je..', - 'rule_trigger_transaction_type' => 'Tip transakcije je ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategorija je..', - 'rule_trigger_category_is' => 'Kategorija je ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Znesek je manjši ali enak ...', - 'rule_trigger_amount_less' => 'Znesek je manjši ali enak :trigger_value', - 'rule_trigger_amount_is_choice' => 'Znesek je..', - 'rule_trigger_amount_is' => 'Znesek je :trigger_value', - 'rule_trigger_amount_more_choice' => 'Znesek je večji ali enak ...', - 'rule_trigger_amount_more' => 'Znesek je večji ali enak :trigger_value', - 'rule_trigger_description_starts_choice' => 'Opis se začne s..', - 'rule_trigger_description_starts' => 'Opis se začne s ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Opis se konča s..', - 'rule_trigger_description_ends' => 'Opis se konča s ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Opis vsebuje..', - 'rule_trigger_description_contains' => 'Opis vsebuje ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Opis je..', - 'rule_trigger_description_is' => 'Opis je ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Datum transakcije je ...', - 'rule_trigger_date_on' => 'Datum transakcije je ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Datum transakcije je pred ...', - 'rule_trigger_date_before' => 'Datum transakcije je pred ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Datum transakcije je po ...', - 'rule_trigger_date_after' => 'Datum transakcije je za ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transakcija je bila izvedena dne ...', - 'rule_trigger_created_at_on' => 'Transakcija je bila izvedena na ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transakcija je bila nazadnje urejena ...', - 'rule_trigger_updated_at_on' => 'Transakcija je bila nazadnje urejena dne ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Proračun je..', - 'rule_trigger_budget_is' => 'Proračun je ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Vsaka oznaka je ...', - 'rule_trigger_tag_is' => 'Katera koli oznaka je ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Katera koli oznaka vsebuje..', - 'rule_trigger_tag_contains' => 'Katera koli oznaka vsebuje ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Katera koli oznaka se konča s..', - 'rule_trigger_tag_ends' => 'Katera koli oznaka se konča s ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Katera koli oznaka se začne s..', - 'rule_trigger_tag_starts' => 'Katera koli oznaka se začne s ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Valuta transakcije je..', - 'rule_trigger_currency_is' => 'Valuta transakcije je ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Tuja valuta transakcije je ...', - 'rule_trigger_foreign_currency_is' => 'Tuja valuta transakcije je ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Ima vsaj toliko priponk', - 'rule_trigger_has_attachments' => 'Ima vsaj :trigger_value prilogo(e)', - 'rule_trigger_has_no_category_choice' => 'Nima kategorije', - 'rule_trigger_has_no_category' => 'Transakcija nima kategorije', - 'rule_trigger_has_any_category_choice' => 'Ima kategorijo', - 'rule_trigger_has_any_category' => 'Transakcija ima (katerokoli) kategorijo', - 'rule_trigger_has_no_budget_choice' => 'Nima proračuna', - 'rule_trigger_has_no_budget' => 'Transakcija nima proračuna', - 'rule_trigger_has_any_budget_choice' => 'Ima (katerikoli) proračun', - 'rule_trigger_has_any_budget' => 'Transakcija ima (katerikoli) proračun', - 'rule_trigger_has_no_bill_choice' => 'Nima računa', - 'rule_trigger_has_no_bill' => 'Transakcija nima nobenega računa', - 'rule_trigger_has_any_bill_choice' => 'Ima (katerikoli) račun', - 'rule_trigger_has_any_bill' => 'Transakcija ima (katerikoli) račun', - 'rule_trigger_has_no_tag_choice' => 'Nima oznak', - 'rule_trigger_has_no_tag' => 'Transakcija nima oznak(e)', - 'rule_trigger_has_any_tag_choice' => 'Ima eno ali več oznak', - 'rule_trigger_has_any_tag' => 'Transakcija ima eno ali več oznak', - 'rule_trigger_any_notes_choice' => 'Ima zaznamke', - 'rule_trigger_any_notes' => 'Transakcija ima zaznamke', - 'rule_trigger_no_notes_choice' => 'Nima zaznamkov', - 'rule_trigger_no_notes' => 'Transakcija nima zaznamkov', - 'rule_trigger_notes_is_choice' => 'Opombe so..', - 'rule_trigger_notes_is' => 'Opombe so ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Opombe vsebujejo ...', - 'rule_trigger_notes_contains' => 'Opombe vsebujejo ":trigger_value', - 'rule_trigger_notes_starts_choice' => 'Opombe se začnejo s..', - 'rule_trigger_notes_starts' => 'Opombe se začnejo s ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Opombe se končajo s..', - 'rule_trigger_notes_ends' => 'Opombe se končajo s ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Račun je..', - 'rule_trigger_bill_is' => 'Račun je ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Zunanji ID je ...', - 'rule_trigger_external_id_is' => 'Zunanji ID je ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Notranja referenca je ..', - 'rule_trigger_internal_reference_is' => 'Notranja referenca je ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'ID dnevnika transakcij je ...', - 'rule_trigger_journal_id' => 'ID dnevnika transakcij je ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transakcija ima (kateri koli) zunanji URL', - 'rule_trigger_any_external_url_choice' => 'Transakcija ima (kateri koli) zunanji URL', - 'rule_trigger_any_external_id' => 'Transakcija ima (poljubni) zunanji ID', - 'rule_trigger_any_external_id_choice' => 'Transakcija ima (poljubni) zunanji ID', - 'rule_trigger_no_external_url_choice' => 'Transakcija nima zunanjega URL-ja', - 'rule_trigger_no_external_url' => 'Transakcija nima zunanjega URL-ja', - 'rule_trigger_no_external_id_choice' => 'Transakcija nima zunanjega ID-ja', - 'rule_trigger_no_external_id' => 'Transakcija nima zunanjega ID-ja', - 'rule_trigger_id_choice' => 'ID transakcije je ...', - 'rule_trigger_id' => 'ID transakcije je ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT je ...', - 'rule_trigger_sepa_ct_is' => 'SEPA CT je ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Ime izvornega računa se začne z ...', + 'rule_trigger_source_account_starts' => 'Ime izvornega računa se začne z ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Ime izvornega računa se konča s..', + 'rule_trigger_source_account_ends' => 'Ime izvornega računa se konča s ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Ime izvornega računa je ...', + 'rule_trigger_source_account_is' => 'Ime izvornega računa je ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Ime izvornega računa vsebuje ...', + 'rule_trigger_source_account_contains' => 'Ime izvornega računa vsebuje ":trigger_value"', + 'rule_trigger_account_id_choice' => 'ID računa je natančno ...', + 'rule_trigger_account_id' => 'ID katerega koli računa je točno :trigger_value', + 'rule_trigger_source_account_id_choice' => 'ID izvornega računa je točno ...', + 'rule_trigger_source_account_id' => 'ID izvornega računa je točno :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'ID ciljnega računa je točno ...', + 'rule_trigger_destination_account_id' => 'ID ciljnega računa je točno :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Kateri koli račun je gotovina', + 'rule_trigger_account_is_cash' => 'Kateri koli račun je gotovina', + 'rule_trigger_source_is_cash_choice' => 'Izvorni račun je gotovinski račun', + 'rule_trigger_source_is_cash' => 'Izvorni račun je gotovinski račun', + 'rule_trigger_destination_is_cash_choice' => 'Ciljni račun je (gotovinski) račun', + 'rule_trigger_destination_is_cash' => 'Ciljni račun je (gotovinski) račun', + 'rule_trigger_source_account_nr_starts_choice' => 'Izvorna številka računa / IBAN se začne z ...', + 'rule_trigger_source_account_nr_starts' => 'Izvorna številka računa / IBAN se začne z ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Izvorna številka računa / IBAN se konča s..', + 'rule_trigger_source_account_nr_ends' => 'Izvorna številka računa / IBAN se konča s ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Izvorna številka računa / IBAN je ...', + 'rule_trigger_source_account_nr_is' => 'Izvorna številka računa/IBAN je ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Izvorna številka računa / IBAN vsebuje ...', + 'rule_trigger_source_account_nr_contains' => 'Izvorna številka računa/IBAN vsebuje ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Ime ciljnega računa se začne z ...', + 'rule_trigger_destination_account_starts' => 'Ime ciljnega računa se začne z ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Ime ciljnega računa se konča s..', + 'rule_trigger_destination_account_ends' => 'Ime ciljnega računa se konča s ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Ime ciljnega računa je ...', + 'rule_trigger_destination_account_is' => 'Ime ciljnega računa je ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Ime ciljnega računa vsebuje ...', + 'rule_trigger_destination_account_contains' => 'Ime ciljnega računa vsebuje ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Številka ciljnega računa / IBAN se začne s..', + 'rule_trigger_destination_account_nr_starts' => 'Številka ciljnega računa / IBAN se začne s ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Številka ciljnega računa / IBAN se konča s..', + 'rule_trigger_destination_account_nr_ends' => 'Številka ciljnega računa / IBAN se konča s ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Številka ciljnega računa / IBAN je ...', + 'rule_trigger_destination_account_nr_is' => 'Številka ciljnega računa/IBAN je ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Številka ciljnega računa / IBAN vsebuje ...', + 'rule_trigger_destination_account_nr_contains' => 'Številka ciljnega računa / IBAN vsebuje ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Tip transakcije je..', + 'rule_trigger_transaction_type' => 'Tip transakcije je ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategorija je..', + 'rule_trigger_category_is' => 'Kategorija je ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Znesek je manjši ali enak ...', + 'rule_trigger_amount_less' => 'Znesek je manjši ali enak :trigger_value', + 'rule_trigger_amount_is_choice' => 'Znesek je..', + 'rule_trigger_amount_is' => 'Znesek je :trigger_value', + 'rule_trigger_amount_more_choice' => 'Znesek je večji ali enak ...', + 'rule_trigger_amount_more' => 'Znesek je večji ali enak :trigger_value', + 'rule_trigger_description_starts_choice' => 'Opis se začne s..', + 'rule_trigger_description_starts' => 'Opis se začne s ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Opis se konča s..', + 'rule_trigger_description_ends' => 'Opis se konča s ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Opis vsebuje..', + 'rule_trigger_description_contains' => 'Opis vsebuje ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Opis je..', + 'rule_trigger_description_is' => 'Opis je ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Datum transakcije je ...', + 'rule_trigger_date_on' => 'Datum transakcije je ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Datum transakcije je pred ...', + 'rule_trigger_date_before' => 'Datum transakcije je pred ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Datum transakcije je po ...', + 'rule_trigger_date_after' => 'Datum transakcije je za ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transakcija je bila izvedena dne ...', + 'rule_trigger_created_at_on' => 'Transakcija je bila izvedena na ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transakcija je bila nazadnje urejena ...', + 'rule_trigger_updated_at_on' => 'Transakcija je bila nazadnje urejena dne ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Proračun je..', + 'rule_trigger_budget_is' => 'Proračun je ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Vsaka oznaka je ...', + 'rule_trigger_tag_is' => 'Katera koli oznaka je ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Katera koli oznaka vsebuje..', + 'rule_trigger_tag_contains' => 'Katera koli oznaka vsebuje ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Katera koli oznaka se konča s..', + 'rule_trigger_tag_ends' => 'Katera koli oznaka se konča s ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Katera koli oznaka se začne s..', + 'rule_trigger_tag_starts' => 'Katera koli oznaka se začne s ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Valuta transakcije je..', + 'rule_trigger_currency_is' => 'Valuta transakcije je ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Tuja valuta transakcije je ...', + 'rule_trigger_foreign_currency_is' => 'Tuja valuta transakcije je ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Ima vsaj toliko priponk', + 'rule_trigger_has_attachments' => 'Ima vsaj :trigger_value prilogo(e)', + 'rule_trigger_has_no_category_choice' => 'Nima kategorije', + 'rule_trigger_has_no_category' => 'Transakcija nima kategorije', + 'rule_trigger_has_any_category_choice' => 'Ima kategorijo', + 'rule_trigger_has_any_category' => 'Transakcija ima (katerokoli) kategorijo', + 'rule_trigger_has_no_budget_choice' => 'Nima proračuna', + 'rule_trigger_has_no_budget' => 'Transakcija nima proračuna', + 'rule_trigger_has_any_budget_choice' => 'Ima (katerikoli) proračun', + 'rule_trigger_has_any_budget' => 'Transakcija ima (katerikoli) proračun', + 'rule_trigger_has_no_bill_choice' => 'Nima računa', + 'rule_trigger_has_no_bill' => 'Transakcija nima nobenega računa', + 'rule_trigger_has_any_bill_choice' => 'Ima (katerikoli) račun', + 'rule_trigger_has_any_bill' => 'Transakcija ima (katerikoli) račun', + 'rule_trigger_has_no_tag_choice' => 'Nima oznak', + 'rule_trigger_has_no_tag' => 'Transakcija nima oznak(e)', + 'rule_trigger_has_any_tag_choice' => 'Ima eno ali več oznak', + 'rule_trigger_has_any_tag' => 'Transakcija ima eno ali več oznak', + 'rule_trigger_any_notes_choice' => 'Ima zaznamke', + 'rule_trigger_any_notes' => 'Transakcija ima zaznamke', + 'rule_trigger_no_notes_choice' => 'Nima zaznamkov', + 'rule_trigger_no_notes' => 'Transakcija nima zaznamkov', + 'rule_trigger_notes_is_choice' => 'Opombe so..', + 'rule_trigger_notes_is' => 'Opombe so ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Opombe vsebujejo ...', + 'rule_trigger_notes_contains' => 'Opombe vsebujejo ":trigger_value', + 'rule_trigger_notes_starts_choice' => 'Opombe se začnejo s..', + 'rule_trigger_notes_starts' => 'Opombe se začnejo s ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Opombe se končajo s..', + 'rule_trigger_notes_ends' => 'Opombe se končajo s ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Račun je..', + 'rule_trigger_bill_is' => 'Račun je ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Zunanji ID je ...', + 'rule_trigger_external_id_is' => 'Zunanji ID je ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Notranja referenca je ..', + 'rule_trigger_internal_reference_is' => 'Notranja referenca je ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'ID dnevnika transakcij je ...', + 'rule_trigger_journal_id' => 'ID dnevnika transakcij je ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transakcija ima (kateri koli) zunanji URL', + 'rule_trigger_any_external_url_choice' => 'Transakcija ima (kateri koli) zunanji URL', + 'rule_trigger_any_external_id' => 'Transakcija ima (poljubni) zunanji ID', + 'rule_trigger_any_external_id_choice' => 'Transakcija ima (poljubni) zunanji ID', + 'rule_trigger_no_external_url_choice' => 'Transakcija nima zunanjega URL-ja', + 'rule_trigger_no_external_url' => 'Transakcija nima zunanjega URL-ja', + 'rule_trigger_no_external_id_choice' => 'Transakcija nima zunanjega ID-ja', + 'rule_trigger_no_external_id' => 'Transakcija nima zunanjega ID-ja', + 'rule_trigger_id_choice' => 'ID transakcije je ...', + 'rule_trigger_id' => 'ID transakcije je ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT je ...', + 'rule_trigger_sepa_ct_is' => 'SEPA CT je ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Dejanje uporabnika je ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Nobena oznaka ni..', - 'rule_trigger_tag_is_not' => 'Nobena oznaka ni ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Vsak račun je točno ...', - 'rule_trigger_account_is' => 'Kateri koli račun je točno ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Vsak račun vsebuje ...', - 'rule_trigger_account_contains' => 'Kateri koli račun vsebuje ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Kateri koli račun se konča s..', - 'rule_trigger_account_ends' => 'Oba računa se končata s ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Vsak račun se začne s..', - 'rule_trigger_account_starts' => 'Oba računa se začneta s ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Številka računa / IBAN je ...', - 'rule_trigger_account_nr_is' => 'Številka računa/IBAN je ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Številka računa / IBAN vsebuje ...', - 'rule_trigger_account_nr_contains' => 'Številka računa/IBAN vsebuje ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Katera koli številka računa / IBAN se konča s..', - 'rule_trigger_account_nr_ends' => 'Številka računa/IBAN se konča s ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Številka računa/IBAN se začne s..', - 'rule_trigger_account_nr_starts' => 'Številka računa/IBAN se začne z ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Kategorija vsebuje ...', - 'rule_trigger_category_contains' => 'Kategorija vsebuje ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Kategorija se konča s..', - 'rule_trigger_category_ends' => 'Kategorija se konča s ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Kategorija se začne s..', - 'rule_trigger_category_starts' => 'Kategorija se začne s ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Proračun vsebuje ...', - 'rule_trigger_budget_contains' => 'Proračun vsebuje ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Proračun se konča s..', - 'rule_trigger_budget_ends' => 'Proračun se konča s ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Proračun se začne s..', - 'rule_trigger_budget_starts' => 'Proračun se začne s ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Račun vsebuje..', - 'rule_trigger_bill_contains' => 'Račun vsebuje ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Račun se konča s..', - 'rule_trigger_bill_ends' => 'Račun se konča s ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Račun se začne s..', - 'rule_trigger_bill_starts' => 'Račun se začne s ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Zunanji ID vsebuje ...', - 'rule_trigger_external_id_contains' => 'Zunanji ID vsebuje ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Zunanji ID se konča s..', - 'rule_trigger_external_id_ends' => 'Zunanji ID se konča s ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Zunanji ID se začne s..', - 'rule_trigger_external_id_starts' => 'Zunanji ID se začne s ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Notranja referenca vsebuje ...', - 'rule_trigger_internal_reference_contains' => 'Notranja referenca vsebuje ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Notranja referenca se konča s..', - 'rule_trigger_internal_reference_ends' => 'Notranja referenca se konča s ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Notranja referenca se začne s..', - 'rule_trigger_internal_reference_starts' => 'Notranja referenca se začne s ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Zunanji URL je ...', - 'rule_trigger_external_url_is' => 'Zunanji URL je ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Zunanji URL vsebuje ...', - 'rule_trigger_external_url_contains' => 'Zunanji URL vsebuje ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Zunanji URL se konča s..', - 'rule_trigger_external_url_ends' => 'Zunanji URL se konča s ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Zunanji URL se začne s..', - 'rule_trigger_external_url_starts' => 'Zunanji URL se začne s ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Nima prilog', - 'rule_trigger_has_no_attachments' => 'Transakcija nima prilog', - 'rule_trigger_recurrence_id_choice' => 'ID ponavljajoče se transakcije je ...', - 'rule_trigger_recurrence_id' => 'ID ponavljajoče se transakcije je ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Datum obresti je ...', - 'rule_trigger_interest_date_on' => 'Datum obresti je na ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Datum obresti je pred ...', - 'rule_trigger_interest_date_before' => 'Datum obresti je pred ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Datum obresti je po ...', - 'rule_trigger_interest_date_after' => 'Datum obresti je za ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Datum knjige je ...', - 'rule_trigger_book_date_on' => 'Datum knjige je na ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Datum knjige je pred ...', - 'rule_trigger_book_date_before' => 'Datum knjige je pred ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Datum knjige je po ...', - 'rule_trigger_book_date_after' => 'Datum knjige je za ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Datum postopka je ..', - 'rule_trigger_process_date_on' => 'Datum postopka je ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Datum postopka je pred ...', - 'rule_trigger_process_date_before' => 'Datum postopka je pred ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Datum postopka je po ...', - 'rule_trigger_process_date_after' => 'Datum postopka je za ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Rok je na ...', - 'rule_trigger_due_date_on' => 'Rok je na ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Rok je pred ...', - 'rule_trigger_due_date_before' => 'Rok je pred ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Rok je po ...', - 'rule_trigger_due_date_after' => 'Rok je za ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Datum plačila je ...', - 'rule_trigger_payment_date_on' => 'Datum plačila je ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Datum plačila je pred ...', - 'rule_trigger_payment_date_before' => 'Datum plačila je pred ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Datum plačila je po ...', - 'rule_trigger_payment_date_after' => 'Datum plačila je po ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Datum računa je ...', - 'rule_trigger_invoice_date_on' => 'Datum računa je na ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Datum računa je pred ...', - 'rule_trigger_invoice_date_before' => 'Datum računa je pred ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Datum računa je po ...', - 'rule_trigger_invoice_date_after' => 'Datum računa je za ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transakcija je bila ustvarjena pred ...', - 'rule_trigger_created_at_before' => 'Transakcija je bila ustvarjena pred ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transakcija je bila ustvarjena po ...', - 'rule_trigger_created_at_after' => 'Transakcija je bila ustvarjena po ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transakcija je bila nazadnje posodobljena pred ...', - 'rule_trigger_updated_at_before' => 'Transakcija je bila nazadnje posodobljena pred ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transakcija je bila nazadnje posodobljena po ...', - 'rule_trigger_updated_at_after' => 'Transakcija je bila nazadnje posodobljena po ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Tuji znesek je točno ...', - 'rule_trigger_foreign_amount_is' => 'Tuji znesek je točno ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Tuji znesek je manjši od ...', - 'rule_trigger_foreign_amount_less' => 'Tuji znesek je manjši od ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Tuji znesek je več kot ...', - 'rule_trigger_foreign_amount_more' => 'Tuji znesek je večji od ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Ime katere koli priloge je ...', - 'rule_trigger_attachment_name_is' => 'Ime katere koli priloge je ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Vsako ime priloge vsebuje ...', - 'rule_trigger_attachment_name_contains' => 'Vsako ime priloge vsebuje ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Vsako ime priloge se začne z ...', - 'rule_trigger_attachment_name_starts' => 'Vsako ime priloge se začne z ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Vsako ime priloge se konča s..', - 'rule_trigger_attachment_name_ends' => 'Vsako ime priloge se konča s ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Morebitne opombe k prilogi so ...', - 'rule_trigger_attachment_notes_are' => 'Vse opombe k prilogi so ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Vse opombe k prilogi vsebujejo ...', - 'rule_trigger_attachment_notes_contains' => 'Vse opombe k prilogi vsebujejo ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Vse opombe k prilogi se začnejo s..', - 'rule_trigger_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo s ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Vse opombe k prilogi se končajo s..', - 'rule_trigger_attachment_notes_ends' => 'Vse opombe k prilogi se končajo s ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transakcija je usklajena', - 'rule_trigger_reconciled' => 'Transakcija je usklajena', - 'rule_trigger_exists_choice' => 'Katera koli transakcija se ujema(!)', - 'rule_trigger_exists' => 'Vsaka transakcija se ujema', + 'rule_trigger_user_action_choice' => 'Dejanje uporabnika je ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Nobena oznaka ni..', + 'rule_trigger_tag_is_not' => 'Nobena oznaka ni ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Vsak račun je točno ...', + 'rule_trigger_account_is' => 'Kateri koli račun je točno ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Vsak račun vsebuje ...', + 'rule_trigger_account_contains' => 'Kateri koli račun vsebuje ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Kateri koli račun se konča s..', + 'rule_trigger_account_ends' => 'Oba računa se končata s ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Vsak račun se začne s..', + 'rule_trigger_account_starts' => 'Oba računa se začneta s ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Številka računa / IBAN je ...', + 'rule_trigger_account_nr_is' => 'Številka računa/IBAN je ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Številka računa / IBAN vsebuje ...', + 'rule_trigger_account_nr_contains' => 'Številka računa/IBAN vsebuje ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Katera koli številka računa / IBAN se konča s..', + 'rule_trigger_account_nr_ends' => 'Številka računa/IBAN se konča s ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Številka računa/IBAN se začne s..', + 'rule_trigger_account_nr_starts' => 'Številka računa/IBAN se začne z ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Kategorija vsebuje ...', + 'rule_trigger_category_contains' => 'Kategorija vsebuje ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Kategorija se konča s..', + 'rule_trigger_category_ends' => 'Kategorija se konča s ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Kategorija se začne s..', + 'rule_trigger_category_starts' => 'Kategorija se začne s ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Proračun vsebuje ...', + 'rule_trigger_budget_contains' => 'Proračun vsebuje ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Proračun se konča s..', + 'rule_trigger_budget_ends' => 'Proračun se konča s ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Proračun se začne s..', + 'rule_trigger_budget_starts' => 'Proračun se začne s ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Račun vsebuje..', + 'rule_trigger_bill_contains' => 'Račun vsebuje ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Račun se konča s..', + 'rule_trigger_bill_ends' => 'Račun se konča s ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Račun se začne s..', + 'rule_trigger_bill_starts' => 'Račun se začne s ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Zunanji ID vsebuje ...', + 'rule_trigger_external_id_contains' => 'Zunanji ID vsebuje ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Zunanji ID se konča s..', + 'rule_trigger_external_id_ends' => 'Zunanji ID se konča s ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Zunanji ID se začne s..', + 'rule_trigger_external_id_starts' => 'Zunanji ID se začne s ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Notranja referenca vsebuje ...', + 'rule_trigger_internal_reference_contains' => 'Notranja referenca vsebuje ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Notranja referenca se konča s..', + 'rule_trigger_internal_reference_ends' => 'Notranja referenca se konča s ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Notranja referenca se začne s..', + 'rule_trigger_internal_reference_starts' => 'Notranja referenca se začne s ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Zunanji URL je ...', + 'rule_trigger_external_url_is' => 'Zunanji URL je ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Zunanji URL vsebuje ...', + 'rule_trigger_external_url_contains' => 'Zunanji URL vsebuje ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Zunanji URL se konča s..', + 'rule_trigger_external_url_ends' => 'Zunanji URL se konča s ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Zunanji URL se začne s..', + 'rule_trigger_external_url_starts' => 'Zunanji URL se začne s ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Nima prilog', + 'rule_trigger_has_no_attachments' => 'Transakcija nima prilog', + 'rule_trigger_recurrence_id_choice' => 'ID ponavljajoče se transakcije je ...', + 'rule_trigger_recurrence_id' => 'ID ponavljajoče se transakcije je ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Datum obresti je ...', + 'rule_trigger_interest_date_on' => 'Datum obresti je na ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Datum obresti je pred ...', + 'rule_trigger_interest_date_before' => 'Datum obresti je pred ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Datum obresti je po ...', + 'rule_trigger_interest_date_after' => 'Datum obresti je za ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Datum knjige je ...', + 'rule_trigger_book_date_on' => 'Datum knjige je na ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Datum knjige je pred ...', + 'rule_trigger_book_date_before' => 'Datum knjige je pred ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Datum knjige je po ...', + 'rule_trigger_book_date_after' => 'Datum knjige je za ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Datum postopka je ..', + 'rule_trigger_process_date_on' => 'Datum postopka je ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Datum postopka je pred ...', + 'rule_trigger_process_date_before' => 'Datum postopka je pred ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Datum postopka je po ...', + 'rule_trigger_process_date_after' => 'Datum postopka je za ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Rok je na ...', + 'rule_trigger_due_date_on' => 'Rok je na ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Rok je pred ...', + 'rule_trigger_due_date_before' => 'Rok je pred ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Rok je po ...', + 'rule_trigger_due_date_after' => 'Rok je za ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Datum plačila je ...', + 'rule_trigger_payment_date_on' => 'Datum plačila je ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Datum plačila je pred ...', + 'rule_trigger_payment_date_before' => 'Datum plačila je pred ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Datum plačila je po ...', + 'rule_trigger_payment_date_after' => 'Datum plačila je po ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Datum računa je ...', + 'rule_trigger_invoice_date_on' => 'Datum računa je na ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Datum računa je pred ...', + 'rule_trigger_invoice_date_before' => 'Datum računa je pred ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Datum računa je po ...', + 'rule_trigger_invoice_date_after' => 'Datum računa je za ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transakcija je bila ustvarjena pred ...', + 'rule_trigger_created_at_before' => 'Transakcija je bila ustvarjena pred ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transakcija je bila ustvarjena po ...', + 'rule_trigger_created_at_after' => 'Transakcija je bila ustvarjena po ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transakcija je bila nazadnje posodobljena pred ...', + 'rule_trigger_updated_at_before' => 'Transakcija je bila nazadnje posodobljena pred ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transakcija je bila nazadnje posodobljena po ...', + 'rule_trigger_updated_at_after' => 'Transakcija je bila nazadnje posodobljena po ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Tuji znesek je točno ...', + 'rule_trigger_foreign_amount_is' => 'Tuji znesek je točno ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Tuji znesek je manjši od ...', + 'rule_trigger_foreign_amount_less' => 'Tuji znesek je manjši od ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Tuji znesek je več kot ...', + 'rule_trigger_foreign_amount_more' => 'Tuji znesek je večji od ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Ime katere koli priloge je ...', + 'rule_trigger_attachment_name_is' => 'Ime katere koli priloge je ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Vsako ime priloge vsebuje ...', + 'rule_trigger_attachment_name_contains' => 'Vsako ime priloge vsebuje ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Vsako ime priloge se začne z ...', + 'rule_trigger_attachment_name_starts' => 'Vsako ime priloge se začne z ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Vsako ime priloge se konča s..', + 'rule_trigger_attachment_name_ends' => 'Vsako ime priloge se konča s ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Morebitne opombe k prilogi so ...', + 'rule_trigger_attachment_notes_are' => 'Vse opombe k prilogi so ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Vse opombe k prilogi vsebujejo ...', + 'rule_trigger_attachment_notes_contains' => 'Vse opombe k prilogi vsebujejo ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Vse opombe k prilogi se začnejo s..', + 'rule_trigger_attachment_notes_starts' => 'Vse opombe k prilogi se začnejo s ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Vse opombe k prilogi se končajo s..', + 'rule_trigger_attachment_notes_ends' => 'Vse opombe k prilogi se končajo s ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transakcija je usklajena', + 'rule_trigger_reconciled' => 'Transakcija je usklajena', + 'rule_trigger_exists_choice' => 'Katera koli transakcija se ujema(!)', + 'rule_trigger_exists' => 'Vsaka transakcija se ujema', // more values for new types: - 'rule_trigger_not_account_id' => 'ID računa ni ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'ID izvornega računa ni ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'ID ciljnega računa ni ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Vrsta transakcije ni ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Oznaka ni ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Oznaka je ":trigger_value"', - 'rule_trigger_not_description_is' => 'Opis ni ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Opis ne vsebuje ', - 'rule_trigger_not_description_ends' => 'Opis se začne s ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Opis se ne začne s ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Opombe niso ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Opombe ne vsebujejo ":trigger_value', - 'rule_trigger_not_notes_ends' => 'Opombe se ne končajo na ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Opombe se ne začnejo s ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Izvorni račun ni ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Izvorni račun ne vsebuje ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Izvorni račun se ne konča na ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Izvorni račun se ne začne s ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Izvorna številka računa/IBAN ni ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Izvorna številka računa/IBAN ne vsebuje ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Izvorna številka računa / IBAN se ne konča na ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Izvorna številka računa/IBAN se ne začne s ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Ciljni račun ni ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Ciljni račun ne vsebuje ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Ciljni račun se ne konča na ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Ciljni račun se ne začne s ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Številka ciljnega računa/IBAN ni ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Številka ciljnega računa / IBAN ne vsebuje ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Številka ciljnega računa / IBAN se ne konča na ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Številka ciljnega računa / IBAN se ne začne s ":trigger_value"', - 'rule_trigger_not_account_is' => 'Noben račun ni ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Noben račun ne vsebuje ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Noben račun se ne konča na ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Noben račun se ne začne s ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Nobena številka računa/IBAN ni ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Nobena številka računa / IBAN ne vsebuje ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Nobena številka računa / IBAN se ne konča na ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Nobena številka računa / IBAN se začne z ":trigger_value"', - 'rule_trigger_not_category_is' => 'Kategorija ni ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Kategorija ne vsebuje ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Kategorija se ne konča na ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Kategorija se ne začne s ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Proračun ni ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Proračun ne vsebuje ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Proračun se ne konča na ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Proračun se ne začne z ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Račun ni ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Račun ne vsebuje ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Račun se ne konča na ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Račun se ne konča s ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Zunanji ID ni ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Zunanji ID ne vsebuje ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Zunanji ID se ne konča na ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Zunanji ID se ne začne s ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Notranja referenca ni ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Notranja referenca ne vsebuje ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Notranja referenca se ne konča na ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Notranja referenca se ne začne s ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'Zunanji URL ni ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Zunanji URL ne vsebuje ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Zunanji URL se ne konča na ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Zunanji URL se ne začne s ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Valuta ni ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Tuja valuta ni ":trigger_value"', - 'rule_trigger_not_id' => 'ID transakcije ni ":trigger_value"', - 'rule_trigger_not_journal_id' => 'ID dnevnika transakcij ni ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'ID ponavljanja ni ":trigger_value"', - 'rule_trigger_not_date_on' => 'Datum ni na ":trigger_value"', - 'rule_trigger_not_date_before' => 'Datum ni pred ":trigger_value"', - 'rule_trigger_not_date_after' => 'Datum ni po ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Datum obresti ni na ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Datum obresti ni pred ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Datum obresti ni po ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Datum knjige ni na ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Datum knjige ni pred ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Datum knjige ni za ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Datum postopka ni na ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Datum postopka ni pred ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Datum postopka ni po ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Rok ni na ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Rok ni pred ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Rok ni za ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Datum plačila ni na ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Datum plačila ni pred ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Datum plačila ni po ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Datum računa ni na ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Datum računa ni pred ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Datum računa ni za ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transakcija ni ustvarjena na ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transakcija ni ustvarjena pred ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transakcija ni ustvarjena po ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transakcija ni posodobljena na ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transakcija ni posodobljena pred ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transakcija ni posodobljena po ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Znesek transakcije ni ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Znesek transakcije je večji od ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Znesek transakcije je manjši od ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Znesek transakcije v tujini ni ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Znesek tuje transakcije je večji od ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Znesek tuje transakcije je manjši od ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Nobena priloga ni imenovana ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Nobeno ime priloge ne vsebuje ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Nobeno ime priloge se ne začne z ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Nobeno ime priloge se ne konča na ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Nobena opomba v prilogi ni ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Nobena opomba v prilogi ne vsebuje ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Nobena opomba v prilogi se ne začne z ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Nobena opomba v prilogi se ne konča na ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transakcija ni usklajena', - 'rule_trigger_not_exists' => 'Transakcija ne obstaja', - 'rule_trigger_not_has_attachments' => 'Transakcija nima prilog', - 'rule_trigger_not_has_any_category' => 'Transakcija nima kategorije', - 'rule_trigger_not_has_any_budget' => 'Transakcija nima proračuna', - 'rule_trigger_not_has_any_bill' => 'Transakcija nima računa', - 'rule_trigger_not_has_any_tag' => 'Transakcija nima oznak', - 'rule_trigger_not_any_notes' => 'Transakcija nima opomb', - 'rule_trigger_not_any_external_url' => 'Transakcija nima zunanjega URL-ja', - 'rule_trigger_not_has_no_attachments' => 'Transakcija ima (poljubne) priloge', - 'rule_trigger_not_has_no_category' => 'Transakcija ima (poljubno) kategorijo', - 'rule_trigger_not_has_no_budget' => 'Transakcija ima (poljubni) proračun', - 'rule_trigger_not_has_no_bill' => 'Transakcija ima (poljuben) račun', - 'rule_trigger_not_has_no_tag' => 'Transakcija ima (poljubno) oznako', - 'rule_trigger_not_no_notes' => 'Transakcija ima morebitne opombe', - 'rule_trigger_not_no_external_url' => 'Transakcija ima zunanji URL', - 'rule_trigger_not_source_is_cash' => 'Izvorni račun ni gotovinski račun', - 'rule_trigger_not_destination_is_cash' => 'Ciljni račun ni gotovinski račun', - 'rule_trigger_not_account_is_cash' => 'Noben račun ni denarni račun', + 'rule_trigger_not_account_id' => 'ID računa ni ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'ID izvornega računa ni ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'ID ciljnega računa ni ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Vrsta transakcije ni ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Oznaka ni ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Oznaka je ":trigger_value"', + 'rule_trigger_not_description_is' => 'Opis ni ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Opis ne vsebuje ', + 'rule_trigger_not_description_ends' => 'Opis se začne s ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Opis se ne začne s ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Opombe niso ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Opombe ne vsebujejo ":trigger_value', + 'rule_trigger_not_notes_ends' => 'Opombe se ne končajo na ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Opombe se ne začnejo s ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Izvorni račun ni ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Izvorni račun ne vsebuje ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Izvorni račun se ne konča na ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Izvorni račun se ne začne s ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Izvorna številka računa/IBAN ni ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Izvorna številka računa/IBAN ne vsebuje ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Izvorna številka računa / IBAN se ne konča na ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Izvorna številka računa/IBAN se ne začne s ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Ciljni račun ni ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Ciljni račun ne vsebuje ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Ciljni račun se ne konča na ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Ciljni račun se ne začne s ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Številka ciljnega računa/IBAN ni ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Številka ciljnega računa / IBAN ne vsebuje ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Številka ciljnega računa / IBAN se ne konča na ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Številka ciljnega računa / IBAN se ne začne s ":trigger_value"', + 'rule_trigger_not_account_is' => 'Noben račun ni ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Noben račun ne vsebuje ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Noben račun se ne konča na ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Noben račun se ne začne s ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Nobena številka računa/IBAN ni ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Nobena številka računa / IBAN ne vsebuje ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Nobena številka računa / IBAN se ne konča na ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Nobena številka računa / IBAN se začne z ":trigger_value"', + 'rule_trigger_not_category_is' => 'Kategorija ni ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Kategorija ne vsebuje ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Kategorija se ne konča na ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Kategorija se ne začne s ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Proračun ni ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Proračun ne vsebuje ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Proračun se ne konča na ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Proračun se ne začne z ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Račun ni ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Račun ne vsebuje ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Račun se ne konča na ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Račun se ne konča s ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Zunanji ID ni ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Zunanji ID ne vsebuje ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Zunanji ID se ne konča na ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Zunanji ID se ne začne s ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Notranja referenca ni ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Notranja referenca ne vsebuje ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Notranja referenca se ne konča na ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Notranja referenca se ne začne s ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'Zunanji URL ni ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Zunanji URL ne vsebuje ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Zunanji URL se ne konča na ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Zunanji URL se ne začne s ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Valuta ni ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Tuja valuta ni ":trigger_value"', + 'rule_trigger_not_id' => 'ID transakcije ni ":trigger_value"', + 'rule_trigger_not_journal_id' => 'ID dnevnika transakcij ni ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'ID ponavljanja ni ":trigger_value"', + 'rule_trigger_not_date_on' => 'Datum ni na ":trigger_value"', + 'rule_trigger_not_date_before' => 'Datum ni pred ":trigger_value"', + 'rule_trigger_not_date_after' => 'Datum ni po ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Datum obresti ni na ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Datum obresti ni pred ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Datum obresti ni po ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Datum knjige ni na ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Datum knjige ni pred ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Datum knjige ni za ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Datum postopka ni na ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Datum postopka ni pred ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Datum postopka ni po ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Rok ni na ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Rok ni pred ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Rok ni za ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Datum plačila ni na ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Datum plačila ni pred ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Datum plačila ni po ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Datum računa ni na ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Datum računa ni pred ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Datum računa ni za ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transakcija ni ustvarjena na ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transakcija ni ustvarjena pred ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transakcija ni ustvarjena po ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transakcija ni posodobljena na ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transakcija ni posodobljena pred ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transakcija ni posodobljena po ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Znesek transakcije ni ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Znesek transakcije je večji od ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Znesek transakcije je manjši od ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Znesek transakcije v tujini ni ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Znesek tuje transakcije je večji od ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Znesek tuje transakcije je manjši od ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Nobena priloga ni imenovana ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Nobeno ime priloge ne vsebuje ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Nobeno ime priloge se ne začne z ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Nobeno ime priloge se ne konča na ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Nobena opomba v prilogi ni ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Nobena opomba v prilogi ne vsebuje ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Nobena opomba v prilogi se ne začne z ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Nobena opomba v prilogi se ne konča na ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transakcija ni usklajena', + 'rule_trigger_not_exists' => 'Transakcija ne obstaja', + 'rule_trigger_not_has_attachments' => 'Transakcija nima prilog', + 'rule_trigger_not_has_any_category' => 'Transakcija nima kategorije', + 'rule_trigger_not_has_any_budget' => 'Transakcija nima proračuna', + 'rule_trigger_not_has_any_bill' => 'Transakcija nima računa', + 'rule_trigger_not_has_any_tag' => 'Transakcija nima oznak', + 'rule_trigger_not_any_notes' => 'Transakcija nima opomb', + 'rule_trigger_not_any_external_url' => 'Transakcija nima zunanjega URL-ja', + 'rule_trigger_not_has_no_attachments' => 'Transakcija ima (poljubne) priloge', + 'rule_trigger_not_has_no_category' => 'Transakcija ima (poljubno) kategorijo', + 'rule_trigger_not_has_no_budget' => 'Transakcija ima (poljubni) proračun', + 'rule_trigger_not_has_no_bill' => 'Transakcija ima (poljuben) račun', + 'rule_trigger_not_has_no_tag' => 'Transakcija ima (poljubno) oznako', + 'rule_trigger_not_no_notes' => 'Transakcija ima morebitne opombe', + 'rule_trigger_not_no_external_url' => 'Transakcija ima zunanji URL', + 'rule_trigger_not_source_is_cash' => 'Izvorni račun ni gotovinski račun', + 'rule_trigger_not_destination_is_cash' => 'Ciljni račun ni gotovinski račun', + 'rule_trigger_not_account_is_cash' => 'Noben račun ni denarni račun', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'IZBRIŠI transakcijo (!)', - 'rule_action_delete_transaction' => 'IZBRIŠI transakcijo (!)', - 'rule_action_set_category' => 'Nastavi kategorijo na ":action_value"', - 'rule_action_clear_category' => 'Počisti kategorijo', - 'rule_action_set_budget' => 'Nastavi proračun na ":action_value"', - 'rule_action_clear_budget' => 'Počisti proračun', - 'rule_action_add_tag' => 'Dodaj oznako ":action_value"', - 'rule_action_remove_tag' => 'Odstrani oznako ":action_value"', - 'rule_action_remove_all_tags' => 'Odstrani vse oznake', - 'rule_action_set_description' => 'Nastavi opis na ":action_value"', - 'rule_action_append_description' => 'Opisu dodaj ":action_value"', - 'rule_action_prepend_description' => 'Pred opis dodaj ":action_value"', - 'rule_action_set_category_choice' => 'Nastavi kategorijo na ...', - 'rule_action_clear_category_choice' => 'Počisti kategorijo', - 'rule_action_set_budget_choice' => 'Nastavi proračun na ...', - 'rule_action_clear_budget_choice' => 'Počisti proračun', - 'rule_action_add_tag_choice' => 'Dodaj oznako ..', - 'rule_action_remove_tag_choice' => 'Odstranite oznako ..', - 'rule_action_remove_all_tags_choice' => 'Odstrani vse oznake', - 'rule_action_set_description_choice' => 'Nastavi opis na ...', - 'rule_action_update_piggy_choice' => 'Dodaj/odstrani znesek transakcije v hranilniku ...', - 'rule_action_update_piggy' => 'Dodajte / odstranite znesek transakcije v hranilnik ":action_value"', - 'rule_action_append_description_choice' => 'Opisu dodaj ..', - 'rule_action_prepend_description_choice' => 'Pred opis dodaj ...', - 'rule_action_set_source_account_choice' => 'Nastavi izvorni račun na ...', - 'rule_action_set_source_account' => 'Nastavi izvorni račun na :action_value', - 'rule_action_set_destination_account_choice' => 'Nastavi ciljni račun na ...', - 'rule_action_set_destination_account' => 'Nastavi ciljni račun na :action_value', - 'rule_action_append_notes_choice' => 'Opombi dodaj ..', - 'rule_action_append_notes' => 'Opombi dodaj ":action_value"', - 'rule_action_prepend_notes_choice' => 'Pred opombo dodaj ...', - 'rule_action_prepend_notes' => 'Pred opombo dodaj ":action_value"', - 'rule_action_clear_notes_choice' => 'Odstrani opombe', - 'rule_action_clear_notes' => 'Odstrani opombe', - 'rule_action_set_notes_choice' => 'Nastavi opombe na ...', - 'rule_action_link_to_bill_choice' => 'Poveži z računom ..', - 'rule_action_link_to_bill' => 'Poveži z računom ":action_value"', - 'rule_action_switch_accounts_choice' => 'Zamenjajte izvorni in ciljni račun (samo prenosi!)', - 'rule_action_switch_accounts' => 'Zamenjava vira in cilja', - 'rule_action_set_notes' => 'Nastavi opombe na ":action_value"', - 'rule_action_convert_deposit_choice' => 'Pretvori transakcijo v priliv', - 'rule_action_convert_deposit' => 'Pretvori transakcijo v priliv iz ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Pretvori transakcijo v odliv', - 'rule_action_convert_withdrawal' => 'Pretvori transakcijo v odliv na ":action_value"', - 'rule_action_convert_transfer_choice' => 'Pretvori transakcijo v prenos', - 'rule_action_convert_transfer' => 'Pretvori transakcijo v prenos z ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Opis dodajte opombam o transakciji', - 'rule_action_append_notes_to_descr_choice' => 'Opombe o transakciji dodajte opisu', - 'rule_action_move_descr_to_notes_choice' => 'Zamenjajte trenutne opombe o transakciji z opisom', - 'rule_action_move_notes_to_descr_choice' => 'Zamenjajte trenutni opis z opombami o transakciji', - 'rule_action_append_descr_to_notes' => 'Dodaj opis k opombami', - 'rule_action_append_notes_to_descr' => 'Dodaj opombe k opisu', - 'rule_action_move_descr_to_notes' => 'Opombe zamenjajte z opisom', - 'rule_action_move_notes_to_descr' => 'Zamenjajte opis z opombami', - 'rule_action_set_amount_choice' => 'Nastavi znesek na ..', - 'rule_action_set_amount' => 'Nastavi znesek na ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Nastavi ciljni račun na (gotovina)', - 'rule_action_set_source_to_cash_choice' => 'Nastavi izvorni račun na (gotovina)', - 'rulegroup_for_bills_title' => 'Skupina pravil za račune', - 'rulegroup_for_bills_description' => 'Posebna skupina pravil za vsa pravila, ki vključujejo račune.', - 'rule_for_bill_title' => 'Samodejno ustvarjeno pravilo za račun ":name"', - 'rule_for_bill_description' => 'To pravilo je samodejno ustvarjeno za poskus ujemanja računa ":name".', - 'create_rule_for_bill' => 'Ustvari novo pravilo za račun ":name"', - 'create_rule_for_bill_txt' => 'Pravkar ste ustvarili nov račun z imenom ":name", čestitamo! Firefly III lahko samodejno poveže nove odlive s tem računom. Na primer, kadar koli plačate najemnino, bo račun "najemnina" povezan s stroški. Tako vam lahko Firefly III natančno pokaže, kateri računi so zapadli in kateri ne. Če želite to narediti, je treba ustvariti novo pravilo. Firefly III je za vas izpolnil nekaj smiselnih privzetih vrednosti. Preverite, ali so pravilni. Če so te vrednosti pravilne, Firefly III samodejno poveže pravilen odliv s pravilnim računom. Preverite sprožilce, da vidite, ali so pravilni, in jih dodajte, če so napačni.', - 'new_rule_for_bill_title' => 'Pravilo za račun ":name"', - 'new_rule_for_bill_description' => 'To pravilo označuje transakcije za račun ":name".', + 'rule_action_delete_transaction_choice' => 'IZBRIŠI transakcijo (!)', + 'rule_action_delete_transaction' => 'IZBRIŠI transakcijo (!)', + 'rule_action_set_category' => 'Nastavi kategorijo na ":action_value"', + 'rule_action_clear_category' => 'Počisti kategorijo', + 'rule_action_set_budget' => 'Nastavi proračun na ":action_value"', + 'rule_action_clear_budget' => 'Počisti proračun', + 'rule_action_add_tag' => 'Dodaj oznako ":action_value"', + 'rule_action_remove_tag' => 'Odstrani oznako ":action_value"', + 'rule_action_remove_all_tags' => 'Odstrani vse oznake', + 'rule_action_set_description' => 'Nastavi opis na ":action_value"', + 'rule_action_append_description' => 'Opisu dodaj ":action_value"', + 'rule_action_prepend_description' => 'Pred opis dodaj ":action_value"', + 'rule_action_set_category_choice' => 'Nastavi kategorijo na ...', + 'rule_action_clear_category_choice' => 'Počisti kategorijo', + 'rule_action_set_budget_choice' => 'Nastavi proračun na ...', + 'rule_action_clear_budget_choice' => 'Počisti proračun', + 'rule_action_add_tag_choice' => 'Dodaj oznako ..', + 'rule_action_remove_tag_choice' => 'Odstranite oznako ..', + 'rule_action_remove_all_tags_choice' => 'Odstrani vse oznake', + 'rule_action_set_description_choice' => 'Nastavi opis na ...', + 'rule_action_update_piggy_choice' => 'Dodaj/odstrani znesek transakcije v hranilniku ...', + 'rule_action_update_piggy' => 'Dodajte / odstranite znesek transakcije v hranilnik ":action_value"', + 'rule_action_append_description_choice' => 'Opisu dodaj ..', + 'rule_action_prepend_description_choice' => 'Pred opis dodaj ...', + 'rule_action_set_source_account_choice' => 'Nastavi izvorni račun na ...', + 'rule_action_set_source_account' => 'Nastavi izvorni račun na :action_value', + 'rule_action_set_destination_account_choice' => 'Nastavi ciljni račun na ...', + 'rule_action_set_destination_account' => 'Nastavi ciljni račun na :action_value', + 'rule_action_append_notes_choice' => 'Opombi dodaj ..', + 'rule_action_append_notes' => 'Opombi dodaj ":action_value"', + 'rule_action_prepend_notes_choice' => 'Pred opombo dodaj ...', + 'rule_action_prepend_notes' => 'Pred opombo dodaj ":action_value"', + 'rule_action_clear_notes_choice' => 'Odstrani opombe', + 'rule_action_clear_notes' => 'Odstrani opombe', + 'rule_action_set_notes_choice' => 'Nastavi opombe na ...', + 'rule_action_link_to_bill_choice' => 'Poveži z računom ..', + 'rule_action_link_to_bill' => 'Poveži z računom ":action_value"', + 'rule_action_switch_accounts_choice' => 'Zamenjajte izvorni in ciljni račun (samo prenosi!)', + 'rule_action_switch_accounts' => 'Zamenjava vira in cilja', + 'rule_action_set_notes' => 'Nastavi opombe na ":action_value"', + 'rule_action_convert_deposit_choice' => 'Pretvori transakcijo v priliv', + 'rule_action_convert_deposit' => 'Pretvori transakcijo v priliv iz ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Pretvori transakcijo v odliv', + 'rule_action_convert_withdrawal' => 'Pretvori transakcijo v odliv na ":action_value"', + 'rule_action_convert_transfer_choice' => 'Pretvori transakcijo v prenos', + 'rule_action_convert_transfer' => 'Pretvori transakcijo v prenos z ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Opis dodajte opombam o transakciji', + 'rule_action_append_notes_to_descr_choice' => 'Opombe o transakciji dodajte opisu', + 'rule_action_move_descr_to_notes_choice' => 'Zamenjajte trenutne opombe o transakciji z opisom', + 'rule_action_move_notes_to_descr_choice' => 'Zamenjajte trenutni opis z opombami o transakciji', + 'rule_action_append_descr_to_notes' => 'Dodaj opis k opombami', + 'rule_action_append_notes_to_descr' => 'Dodaj opombe k opisu', + 'rule_action_move_descr_to_notes' => 'Opombe zamenjajte z opisom', + 'rule_action_move_notes_to_descr' => 'Zamenjajte opis z opombami', + 'rule_action_set_amount_choice' => 'Nastavi znesek na ..', + 'rule_action_set_amount' => 'Nastavi znesek na ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Nastavi ciljni račun na (gotovina)', + 'rule_action_set_source_to_cash_choice' => 'Nastavi izvorni račun na (gotovina)', + 'rulegroup_for_bills_title' => 'Skupina pravil za račune', + 'rulegroup_for_bills_description' => 'Posebna skupina pravil za vsa pravila, ki vključujejo račune.', + 'rule_for_bill_title' => 'Samodejno ustvarjeno pravilo za račun ":name"', + 'rule_for_bill_description' => 'To pravilo je samodejno ustvarjeno za poskus ujemanja računa ":name".', + 'create_rule_for_bill' => 'Ustvari novo pravilo za račun ":name"', + 'create_rule_for_bill_txt' => 'Pravkar ste ustvarili nov račun z imenom ":name", čestitamo! Firefly III lahko samodejno poveže nove odlive s tem računom. Na primer, kadar koli plačate najemnino, bo račun "najemnina" povezan s stroški. Tako vam lahko Firefly III natančno pokaže, kateri računi so zapadli in kateri ne. Če želite to narediti, je treba ustvariti novo pravilo. Firefly III je za vas izpolnil nekaj smiselnih privzetih vrednosti. Preverite, ali so pravilni. Če so te vrednosti pravilne, Firefly III samodejno poveže pravilen odliv s pravilnim računom. Preverite sprožilce, da vidite, ali so pravilni, in jih dodajte, če so napačni.', + 'new_rule_for_bill_title' => 'Pravilo za račun ":name"', + 'new_rule_for_bill_description' => 'To pravilo označuje transakcije za račun ":name".', - 'new_rule_for_journal_title' => 'Pravilo, ki temelji na transakciji ":description"', - 'new_rule_for_journal_description' => 'To pravilo temelji na transakciji ":description". Ujemalo se bo le s popolnoma enakimi transakcijami.', + 'new_rule_for_journal_title' => 'Pravilo, ki temelji na transakciji ":description"', + 'new_rule_for_journal_description' => 'To pravilo temelji na transakciji ":description". Ujemalo se bo le s popolnoma enakimi transakcijami.', // tags - 'store_new_tag' => 'Shrani novo oznako', - 'update_tag' => 'Posodobi oznako', - 'no_location_set' => 'Lokacija ni nastavljena.', - 'meta_data' => 'Meta podatki', - 'location' => 'Lokacija', - 'location_first_split' => 'Mesto za to transakcijo je mogoče nastaviti ob prvi delitvi te transakcije.', - 'without_date' => 'Brez datuma', - 'result' => 'Rezultati', - 'sums_apply_to_range' => 'Vsi zneski veljajo za izbran interval', - 'mapbox_api_key' => 'Če želite uporabiti zemljevid, pridobite API ključ iz Mapbox-a. Odprite datoteko .env in vanjo vnesite kodo za MAPBOX_API_KEY=.', - 'press_object_location' => 'Z desnim klikom ali dolgim pritiskom nastavite lokacijo objekta.', - 'click_tap_location' => 'Kliknite ali tapnite zemljevid, da dodate lokacijo', - 'clear_location' => 'Počisti lokacijo', - 'delete_all_selected_tags' => 'Izbriši vse izbrane oznake', - 'select_tags_to_delete' => 'Ne pozabite izbrati oznak.', - 'deleted_x_tags' => 'Izbrisana :count oznaka.|Izbrisanih :count oznak.', - 'create_rule_from_transaction' => 'Ustvarite pravilo, ki temelji na transakciji', - 'create_recurring_from_transaction' => 'Ustvarite ponavljajočo se transakcijo na podlagi transakcije', + 'store_new_tag' => 'Shrani novo oznako', + 'update_tag' => 'Posodobi oznako', + 'no_location_set' => 'Lokacija ni nastavljena.', + 'meta_data' => 'Meta podatki', + 'location' => 'Lokacija', + 'location_first_split' => 'Mesto za to transakcijo je mogoče nastaviti ob prvi delitvi te transakcije.', + 'without_date' => 'Brez datuma', + 'result' => 'Rezultati', + 'sums_apply_to_range' => 'Vsi zneski veljajo za izbran interval', + 'mapbox_api_key' => 'Če želite uporabiti zemljevid, pridobite API ključ iz Mapbox-a. Odprite datoteko .env in vanjo vnesite kodo za MAPBOX_API_KEY=.', + 'press_object_location' => 'Z desnim klikom ali dolgim pritiskom nastavite lokacijo objekta.', + 'click_tap_location' => 'Kliknite ali tapnite zemljevid, da dodate lokacijo', + 'clear_location' => 'Počisti lokacijo', + 'delete_all_selected_tags' => 'Izbriši vse izbrane oznake', + 'select_tags_to_delete' => 'Ne pozabite izbrati oznak.', + 'deleted_x_tags' => 'Izbrisana :count oznaka.|Izbrisanih :count oznak.', + 'create_rule_from_transaction' => 'Ustvarite pravilo, ki temelji na transakciji', + 'create_recurring_from_transaction' => 'Ustvarite ponavljajočo se transakcijo na podlagi transakcije', // preferences - 'dark_mode_option_browser' => 'Dovolite, da določi brskalnik', - 'dark_mode_option_light' => 'Vedno svetla tema', - 'dark_mode_option_dark' => 'Vedno temna tema', - 'equal_to_language' => '(enako jeziku)', - 'dark_mode_preference' => 'Temen način', - 'dark_mode_preference_help' => 'Povejte Firefly III, kdaj naj uporabi temni način.', - 'pref_home_screen_accounts' => 'Računi na začetni strani', - 'pref_home_screen_accounts_help' => 'Kateri računi naj bodo prikazani na začetni strani?', - 'pref_view_range' => 'Interval pogleda', - 'pref_view_range_help' => 'Nekateri diagrami so samodejno združeni v obdobja. Tudi proračuni bodo združeni v obdobjih. Kakšno obdobje želite?', - 'pref_1D' => 'En dan', - 'pref_1W' => 'En teden', - 'pref_1M' => 'En mesec', - 'pref_3M' => 'Trije meseci (četrtletje)', - 'pref_6M' => 'Šest mesecev', - 'pref_1Y' => 'Eno leto', - 'pref_last365' => 'Zadnje leto', - 'pref_last90' => 'Zadnjih 90 dni', - 'pref_last30' => 'Zadnjih 30 dni', - 'pref_last7' => 'Zadnjih 7 dni', - 'pref_YTD' => 'Leto do datuma', - 'pref_QTD' => 'Četrtletje do danes', - 'pref_MTD' => 'Mesec do datuma', - 'pref_languages' => 'Jeziki', - 'pref_locale' => 'Področne nastavitve', - 'pref_languages_help' => 'Firefly III podpira več jezikov. Kateri vam je ljubši?', - 'pref_locale_help' => 'V Firefly III lahko nastavite ostale nastavitve lokalizacije, kot na primer prikaz valut, števil in datumov. Vaš sistem morda ne podpira vnosov na tem seznamu. Firefly III nima pravilnih nastavitev prikaza datuma za vse lokalizacije; kontaktirajte me za izboljšave.', - 'pref_locale_no_demo' => 'Ta funkcija ne bo delovala za demo uporabnika.', - 'pref_custom_fiscal_year' => 'Nastavitve fiskalnega leta', - 'pref_custom_fiscal_year_label' => 'Omogočeno', - 'pref_custom_fiscal_year_help' => 'V državah, ki uporabljajo finančno leto, ki je drugače od 1. januarja do 31. decembra, lahko to vklopite in določite prvi / zadnji dan fiskalnega leta', - 'pref_fiscal_year_start_label' => 'Začetek fiskalnega leta', - 'pref_two_factor_auth' => 'Preverjanje v dveh korakih', - 'pref_two_factor_auth_help' => 'Ko omogočite preverjanje v dveh korakih (znano tudi kot dvofaktorska avtentikacija), svojemu računu dodate dodatno raven varnosti. Prijavite se z nečim, kar poznate (geslo), in s tem, kar imate (kodo za preverjanje). Kode za preverjanje generira aplikacija v vašem telefonu, kot je Authy ali Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Omogoči preverjanje v dveh korakih', - 'pref_two_factor_auth_disabled' => 'Koda za preverjanje v dveh korakih je odstranjena in onemogočena', - 'pref_two_factor_auth_remove_it' => 'Ne pozabite odstraniti računa iz aplikacije za preverjanje pristnosti!', - 'pref_two_factor_auth_code' => 'Preverite kodo', - 'pref_two_factor_auth_code_help' => 'Skenirajte kodo QR z aplikacijo v telefonu, kot je Authy ali Google Authenticator, in vnesite generirano kodo.', - 'pref_two_factor_auth_reset_code' => 'Ponastavite kodo za preverjanje', - 'pref_two_factor_auth_disable_2fa' => 'Onemogoči 2FA', - '2fa_use_secret_instead' => 'Če ne morete skenirati QR kode, raje uporabite skrivno kodo: :secret.', - '2fa_backup_codes' => 'Te varnostne kode varno spravite za primer, če izgubite svojo napravo.', - '2fa_already_enabled' => ' Preverjanje v dveh korakih je že omogočeno.', - 'wrong_mfa_code' => 'Ta MFA koda ni veljavna.', - 'pref_save_settings' => 'Shrani nastavitve', - 'saved_preferences' => 'Nastavitve shranjene!', - 'preferences_general' => 'Splošno', - 'preferences_frontpage' => 'Začetni zaslon', - 'preferences_security' => 'Varnost', - 'preferences_layout' => 'Postavitev', - 'preferences_notifications' => 'Obvestila', - 'pref_home_show_deposits' => 'Pokaži prilive na začetni strani', - 'pref_home_show_deposits_info' => 'Prva stran že prikazuje vaše račune stroškov. Ali naj prikazuje tudi račune prihodkov?', - 'pref_home_do_show_deposits' => 'Da, pokaži jih', - 'successful_count' => 'od tega :count uspešno', - 'list_page_size_title' => 'Velikost strani', - 'list_page_size_help' => 'Vsak seznam stvari (računi, transakcije itd.) pokaže največ toliko na stran.', - 'list_page_size_label' => 'Velikost strani', - 'between_dates' => '(:start in :end)', - 'pref_optional_fields_transaction' => 'Neobvezna polja za transakcije', - 'pref_optional_fields_transaction_help' => 'Privzeto pri ustvarjanju nove transakcije niso omogočena vsa polja (zaradi nepreglednosti). V nadaljevanju lahko omogočite dodatna polja, če menite, da bi vam to lahko koristilo. Seveda je vsako polje, ki je onemogočeno, vendar že izpolnjeno, vidno ne glede na nastavitev.', - 'optional_tj_date_fields' => 'Datumska polja', - 'optional_tj_other_fields' => 'Druga polja', - 'optional_tj_attachment_fields' => 'Polja prilog', - 'pref_optional_tj_interest_date' => 'Datum obresti', - 'pref_optional_tj_book_date' => 'Datum knjiženja', - 'pref_optional_tj_process_date' => 'Datum obdelave', - 'pref_optional_tj_due_date' => 'Datum zapadlosti', - 'pref_optional_tj_payment_date' => 'Datum plačila', - 'pref_optional_tj_invoice_date' => 'Datum računa', - 'pref_optional_tj_internal_reference' => 'Notranji sklic', - 'pref_optional_tj_notes' => 'Opombe', - 'pref_optional_tj_attachments' => 'Priloge', - 'pref_optional_tj_external_url' => 'Zunanji URL', - 'pref_optional_tj_location' => 'Lokacija', - 'pref_optional_tj_links' => 'Povezave transakcije', - 'optional_field_meta_dates' => 'Datumi', - 'optional_field_meta_business' => 'Poslovno', - 'optional_field_attachments' => 'Priloge', - 'optional_field_meta_data' => 'Izbirni meta podatki', - 'external_url' => 'Zunanji URL', - 'pref_notification_bill_reminder' => 'Opomnik o poteklih računih', - 'pref_notification_new_access_token' => 'Opozorilo, ko je ustvarjen nov žeton za dostop do API-ja', - 'pref_notification_transaction_creation' => 'Opozorilo, ko je transakcija ustvarjena samodejno', - 'pref_notification_user_login' => 'Opozorilo, ko se prijavite z nove lokacije', - 'pref_notification_rule_action_failures' => 'Opozorilo, ko se dejanja pravila ne izvedejo (samo Slack ali Discord)', - 'pref_notifications' => 'Obvestila', - 'pref_notifications_help' => 'Označite, ali so to obvestila, ki jih želite prejemati. Nekatera obvestila lahko vsebujejo občutljive finančne podatke.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'Če želite, da vas Firefly III obvesti s storitvijo Slack, tukaj vnesite URL webhook. V nasprotnem primeru pustite polje prazno. Če ste skrbnik, morate ta URL nastaviti tudi v administraciji.', - 'slack_url_label' => 'Slack "dohodni webhook" URL', + 'dark_mode_option_browser' => 'Dovolite, da določi brskalnik', + 'dark_mode_option_light' => 'Vedno svetla tema', + 'dark_mode_option_dark' => 'Vedno temna tema', + 'equal_to_language' => '(enako jeziku)', + 'dark_mode_preference' => 'Temen način', + 'dark_mode_preference_help' => 'Povejte Firefly III, kdaj naj uporabi temni način.', + 'pref_home_screen_accounts' => 'Računi na začetni strani', + 'pref_home_screen_accounts_help' => 'Kateri računi naj bodo prikazani na začetni strani?', + 'pref_view_range' => 'Interval pogleda', + 'pref_view_range_help' => 'Nekateri diagrami so samodejno združeni v obdobja. Tudi proračuni bodo združeni v obdobjih. Kakšno obdobje želite?', + 'pref_1D' => 'En dan', + 'pref_1W' => 'En teden', + 'pref_1M' => 'En mesec', + 'pref_3M' => 'Trije meseci (četrtletje)', + 'pref_6M' => 'Šest mesecev', + 'pref_1Y' => 'Eno leto', + 'pref_last365' => 'Zadnje leto', + 'pref_last90' => 'Zadnjih 90 dni', + 'pref_last30' => 'Zadnjih 30 dni', + 'pref_last7' => 'Zadnjih 7 dni', + 'pref_YTD' => 'Leto do datuma', + 'pref_QTD' => 'Četrtletje do danes', + 'pref_MTD' => 'Mesec do datuma', + 'pref_languages' => 'Jeziki', + 'pref_locale' => 'Področne nastavitve', + 'pref_languages_help' => 'Firefly III podpira več jezikov. Kateri vam je ljubši?', + 'pref_locale_help' => 'V Firefly III lahko nastavite ostale nastavitve lokalizacije, kot na primer prikaz valut, števil in datumov. Vaš sistem morda ne podpira vnosov na tem seznamu. Firefly III nima pravilnih nastavitev prikaza datuma za vse lokalizacije; kontaktirajte me za izboljšave.', + 'pref_locale_no_demo' => 'Ta funkcija ne bo delovala za demo uporabnika.', + 'pref_custom_fiscal_year' => 'Nastavitve fiskalnega leta', + 'pref_custom_fiscal_year_label' => 'Omogočeno', + 'pref_custom_fiscal_year_help' => 'V državah, ki uporabljajo finančno leto, ki je drugače od 1. januarja do 31. decembra, lahko to vklopite in določite prvi / zadnji dan fiskalnega leta', + 'pref_fiscal_year_start_label' => 'Začetek fiskalnega leta', + 'pref_two_factor_auth' => 'Preverjanje v dveh korakih', + 'pref_two_factor_auth_help' => 'Ko omogočite preverjanje v dveh korakih (znano tudi kot dvofaktorska avtentikacija), svojemu računu dodate dodatno raven varnosti. Prijavite se z nečim, kar poznate (geslo), in s tem, kar imate (kodo za preverjanje). Kode za preverjanje generira aplikacija v vašem telefonu, kot je Authy ali Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Omogoči preverjanje v dveh korakih', + 'pref_two_factor_auth_disabled' => 'Koda za preverjanje v dveh korakih je odstranjena in onemogočena', + 'pref_two_factor_auth_remove_it' => 'Ne pozabite odstraniti računa iz aplikacije za preverjanje pristnosti!', + 'pref_two_factor_auth_code' => 'Preverite kodo', + 'pref_two_factor_auth_code_help' => 'Skenirajte kodo QR z aplikacijo v telefonu, kot je Authy ali Google Authenticator, in vnesite generirano kodo.', + 'pref_two_factor_auth_reset_code' => 'Ponastavite kodo za preverjanje', + 'pref_two_factor_auth_disable_2fa' => 'Onemogoči 2FA', + '2fa_use_secret_instead' => 'Če ne morete skenirati QR kode, raje uporabite skrivno kodo: :secret.', + '2fa_backup_codes' => 'Te varnostne kode varno spravite za primer, če izgubite svojo napravo.', + '2fa_already_enabled' => ' Preverjanje v dveh korakih je že omogočeno.', + 'wrong_mfa_code' => 'Ta MFA koda ni veljavna.', + 'pref_save_settings' => 'Shrani nastavitve', + 'saved_preferences' => 'Nastavitve shranjene!', + 'preferences_general' => 'Splošno', + 'preferences_frontpage' => 'Začetni zaslon', + 'preferences_security' => 'Varnost', + 'preferences_layout' => 'Postavitev', + 'preferences_notifications' => 'Obvestila', + 'pref_home_show_deposits' => 'Pokaži prilive na začetni strani', + 'pref_home_show_deposits_info' => 'Prva stran že prikazuje vaše račune stroškov. Ali naj prikazuje tudi račune prihodkov?', + 'pref_home_do_show_deposits' => 'Da, pokaži jih', + 'successful_count' => 'od tega :count uspešno', + 'list_page_size_title' => 'Velikost strani', + 'list_page_size_help' => 'Vsak seznam stvari (računi, transakcije itd.) pokaže največ toliko na stran.', + 'list_page_size_label' => 'Velikost strani', + 'between_dates' => '(:start in :end)', + 'pref_optional_fields_transaction' => 'Neobvezna polja za transakcije', + 'pref_optional_fields_transaction_help' => 'Privzeto pri ustvarjanju nove transakcije niso omogočena vsa polja (zaradi nepreglednosti). V nadaljevanju lahko omogočite dodatna polja, če menite, da bi vam to lahko koristilo. Seveda je vsako polje, ki je onemogočeno, vendar že izpolnjeno, vidno ne glede na nastavitev.', + 'optional_tj_date_fields' => 'Datumska polja', + 'optional_tj_other_fields' => 'Druga polja', + 'optional_tj_attachment_fields' => 'Polja prilog', + 'pref_optional_tj_interest_date' => 'Datum obresti', + 'pref_optional_tj_book_date' => 'Datum knjiženja', + 'pref_optional_tj_process_date' => 'Datum obdelave', + 'pref_optional_tj_due_date' => 'Datum zapadlosti', + 'pref_optional_tj_payment_date' => 'Datum plačila', + 'pref_optional_tj_invoice_date' => 'Datum računa', + 'pref_optional_tj_internal_reference' => 'Notranji sklic', + 'pref_optional_tj_notes' => 'Opombe', + 'pref_optional_tj_attachments' => 'Priloge', + 'pref_optional_tj_external_url' => 'Zunanji URL', + 'pref_optional_tj_location' => 'Lokacija', + 'pref_optional_tj_links' => 'Povezave transakcije', + 'optional_field_meta_dates' => 'Datumi', + 'optional_field_meta_business' => 'Poslovno', + 'optional_field_attachments' => 'Priloge', + 'optional_field_meta_data' => 'Izbirni meta podatki', + 'external_url' => 'Zunanji URL', + 'pref_notification_bill_reminder' => 'Opomnik o poteklih računih', + 'pref_notification_new_access_token' => 'Opozorilo, ko je ustvarjen nov žeton za dostop do API-ja', + 'pref_notification_transaction_creation' => 'Opozorilo, ko je transakcija ustvarjena samodejno', + 'pref_notification_user_login' => 'Opozorilo, ko se prijavite z nove lokacije', + 'pref_notification_rule_action_failures' => 'Opozorilo, ko se dejanja pravila ne izvedejo (samo Slack ali Discord)', + 'pref_notifications' => 'Obvestila', + 'pref_notifications_help' => 'Označite, ali so to obvestila, ki jih želite prejemati. Nekatera obvestila lahko vsebujejo občutljive finančne podatke.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'Če želite, da vas Firefly III obvesti s storitvijo Slack, tukaj vnesite URL webhook. V nasprotnem primeru pustite polje prazno. Če ste skrbnik, morate ta URL nastaviti tudi v administraciji.', + 'slack_url_label' => 'Slack "dohodni webhook" URL', // Financial administrations - 'administration_index' => 'Finančna administracija', - 'administrations_index_menu' => 'Finančna administracija', - 'administrations_breadcrumb' => 'Finančna administracija', - 'administrations_page_title' => 'Finančna administracija', - 'administrations_page_sub_title' => 'Pregled', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Vaša vloga: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Finančna administracija', + 'administrations_index_menu' => 'Finančna administracija', + 'administrations_breadcrumb' => 'Finančna administracija', + 'administrations_page_title' => 'Finančna administracija', + 'administrations_page_sub_title' => 'Pregled', + 'create_administration' => 'Ustvari novo administracijo', + 'administration_owner' => 'Lastnik administracije: {{email}}', + 'administration_you' => 'Vaša vloga: {{role}}', + 'other_users_in_admin' => 'Drugi uporabniki v tej administraciji', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Lastnik', - 'administration_role_ro' => 'Samo za branje', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Upravljanje naročnin', - 'administration_role_mng_rules' => 'Upravljaj pravila', - 'administration_role_mng_recurring' => 'Upravljaj ponavljajoče transakcije', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Upravljanje valut', - 'administration_role_view_reports' => 'Prikaz poročil', - 'administration_role_full' => 'Neomejen dostop', + 'administration_role_owner' => 'Lastnik', + 'administration_role_ro' => 'Samo za branje', + 'administration_role_mng_trx' => 'Upravljanje transakcij', + 'administration_role_mng_meta' => 'Upravljanje klasifikacij in metapodatkov', + 'administration_role_mng_budgets' => 'Upravljaj proračune', + 'administration_role_mng_piggies' => 'Upravljaj hranilnike', + 'administration_role_mng_subscriptions' => 'Upravljanje naročnin', + 'administration_role_mng_rules' => 'Upravljaj pravila', + 'administration_role_mng_recurring' => 'Upravljaj ponavljajoče transakcije', + 'administration_role_mng_webhooks' => 'Upravljaj webhooke', + 'administration_role_mng_currencies' => 'Upravljanje valut', + 'administration_role_view_reports' => 'Prikaz poročil', + 'administration_role_full' => 'Neomejen dostop', // profile: - 'purge_data_title' => 'Čiščenje podatkov iz Firefly III', - 'purge_data_expl' => '"Čiščenje" pomeni "brisanje tistega, kar je že izbrisano". V normalnih okoliščinah Firefly III ničesar trajno ne izbriše. To samo skriva. Spodnji gumb izbriše vse te prej "izbrisane" zapise ZA VEDNO.', - 'delete_stuff_header' => 'Brisanje in čiščenje podatkov', - 'purge_all_data' => 'Počisti vse izbrisane zapise', - 'purge_data' => 'Izbris podatkov', - 'purged_all_records' => 'Vsi izbrisani zapisi so bili izbrisani.', - 'delete_data_title' => 'Izbriši podatke iz Firefly III', - 'permanent_delete_stuff' => 'Iz Firefly III lahko izbrišete stvari. Uporaba spodnjih gumbov pomeni, da bodo vaši predmeti odstranjeni iz pogleda in skriti. Za to ni gumba za razveljavitev, vendar lahko elementi ostanejo v bazi podatkov, kjer jih lahko po potrebi rešite.', - 'other_sessions_logged_out' => 'Vse vaše druge seje so bile odjavljene.', - 'delete_unused_accounts' => 'Če izbrišete neuporabljene račune, boste počistili svoje sezname za samodejno dokončanje.', - 'delete_all_unused_accounts' => 'Izbriši neuporabljene račune', - 'deleted_all_unused_accounts' => 'Vsi neuporabljeni računi so izbrisani', - 'delete_all_budgets' => 'Izbriši VSE proračune', - 'delete_all_categories' => 'Izbriši VSE kategorije', - 'delete_all_tags' => 'Izbriši VSE oznake', - 'delete_all_bills' => 'Izbriši VSE račune', - 'delete_all_piggy_banks' => 'Izbriši VSE hranilnike', - 'delete_all_rules' => 'Izbriši VSA pravila', - 'delete_all_recurring' => 'Izbriši VSE ponavljajoče se transakcije', - 'delete_all_object_groups' => 'Izbriši VSE skupine predmetov', - 'delete_all_accounts' => 'Izbriši VSE račune', - 'delete_all_asset_accounts' => 'Izbriši VSE račune sredstev', - 'delete_all_expense_accounts' => 'Izbriši VSE račune stroškov', - 'delete_all_revenue_accounts' => 'Izbriši VSE račune prihodkov', - 'delete_all_liabilities' => 'Izbriši VSE obveznosti', - 'delete_all_transactions' => 'Izbriši VSE transakcije', - 'delete_all_withdrawals' => 'Izbriši VSE odlive', - 'delete_all_deposits' => 'Izbriši VSE prilive', - 'delete_all_transfers' => 'Izbriši VSE prenose ', - 'also_delete_transactions' => 'Brisanje računa bo pobrisalo tudi VSE povezane odlive, prilive in prenose!', - 'deleted_all_budgets' => 'Vsi proračuni so bili izbrisani', - 'deleted_all_categories' => 'Vse kategorije so bile izbrisane', - 'deleted_all_tags' => 'Vse oznake so bile izbrisane', - 'deleted_all_bills' => 'Vsi računi so bili izbrisani', - 'deleted_all_piggy_banks' => 'Vsi hranilniki so bili izbrisani', - 'deleted_all_rules' => 'Vsa pravila in skupine pravil so bila izbrisana', - 'deleted_all_object_groups' => 'Vse skupine so bile izbrisane', - 'deleted_all_accounts' => 'Vsi računi so bili izbrisani', - 'deleted_all_asset_accounts' => 'Vsi računi sredstev so bili izbrisani', - 'deleted_all_expense_accounts' => 'Vsi računi stroškov so bili izbrisani', - 'deleted_all_revenue_accounts' => 'Vsi računi prihodkov so bili izbrisani', - 'deleted_all_liabilities' => 'Vse obveznosti so bile izbrisane', - 'deleted_all_transactions' => 'Vse transakcije so bile izbrisane', - 'deleted_all_withdrawals' => 'Vsi odlivi so bili izbrisani', - 'deleted_all_deposits' => 'Vsi prilivi so bili izbrisani', - 'deleted_all_transfers' => 'Vsi prenosi so bili izbrisani', - 'deleted_all_recurring' => 'Vse ponavljajoče se transakcije so bile izbrisane', - 'change_your_password' => 'Spremeni geslo', - 'delete_account' => 'Izbriši račun', - 'current_password' => 'Trenutno geslo', - 'new_password' => 'Novo geslo', - 'new_password_again' => 'Novo geslo (ponovno)', - 'delete_your_account' => 'Izbriši račun', - 'delete_your_account_help' => 'Če izbrišete račun, bodo izbrisani tudi vsi računi, transakcije, karkoli ste morda shranili v storitev Firefly III bo izgubljeno.', - 'delete_your_account_password' => 'Za nadaljevanje vpišite geslo.', - 'password' => 'Geslo', - 'are_you_sure' => 'Ali ste prepričan? Tega se ne da razveljaviti.', - 'delete_account_button' => 'IZBRIŠI račun', - 'invalid_current_password' => 'Obstoječe geslo je napačno!', - 'password_changed' => 'Geslo spremenjeno!', - 'should_change' => 'Namen je spremeniti vaše geslo.', - 'invalid_password' => 'Napačno geslo!', - 'what_is_pw_security' => 'Kaj je »preverjanje varnosti gesla«?', - 'secure_pw_title' => 'Kako izbrati varno geslo', - 'forgot_password_response' => 'Hvala vam. Če obstaja račun s tem e-poštnim naslovom, boste navodila našli v mapi »Prejeto«.', - 'secure_pw_history' => 'Niti teden še ni minil, ko ste prebrali v novicah o strani, ki izgublja gesla svojih uporabnikov. Hekerji in tatovi uporabljajo ta gesla, da bi poskušali ukrasti vaše zasebne podatke. Te informacije so dragocene.', - 'secure_pw_ff' => 'Ali uporabljate isto geslo po vsem internetu? Če eno mesto izgubi geslo, imajo hekerji dostop do vseh vaših podatkov. Firefly III se zanaša na vas, da izberete močno in edinstveno geslo za zaščito vaših finančnih zapisov.', - 'secure_pw_check_box' => 'Da bi vam pomagali, lahko Firefly III preveri, ali je bilo geslo, ki ga želite uporabiti, ukradeno v preteklosti. V tem primeru vam svetuje, da NE uporabljate tega gesla.', - 'secure_pw_working_title' => 'Kako deluje?', - 'secure_pw_working' => 'S potrditvijo tega polja bo Firefly III poslal prvih pet znakov zgoščenega zapisa SHA1 vašega gesla na spletno stran Troy Hunta, da vidite, ali je na seznamu. Tako ne boste mogli uporabljati nevarnih gesel, kot je priporočeno v najnovejši posebni publikaciji NIST na to temo.', - 'secure_pw_should' => 'Naj potrdim polje?', - 'secure_pw_long_password' => 'Da. Vedno preverite, ali je vaše geslo varno.', - 'command_line_token' => 'Žeton za ukazno vrstico', - 'explain_command_line_token' => 'Ta žeton potrebujete za izvajanje možnosti ukazne vrstice, kot je izvoz podatkov. Brez tega ta občutljiv ukaz ne bo deloval. Ne delite svojega žetona ukazne vrstice. Nihče vas ne bo prosil za ta žeton, tudi jaz ne. Če se bojite, da ste to izgubili, ali ko ste paranoični, znova ustvarite ta žeton z gumbom.', - 'regenerate_command_line_token' => 'Ponovno ustvari žeton za ukazno vrstico', - 'token_regenerated' => 'Nov žeton ukazne vrstice je bil ustvarjen', - 'change_your_email' => 'Spremeni elektronski naslov', - 'email_verification' => 'E-poštno sporočilo bo poslano na vaš stari IN novi e-poštni naslov. Iz varnostnih razlogov se ne boste mogli prijaviti, dokler ne potrdite svojega novega e-poštnega naslova. Če niste prepričani, ali vaša namestitev Firefly III omogoča pošiljanje e-pošte, prosimo, ne uporabljajte te funkcije. Če ste skrbnik, lahko to preizkusite v Administracija.', - 'email_changed_logout' => 'Dokler ne potrdite svojega elektronskega naslova, se ne morete prijaviti.', - 'login_with_new_email' => 'Zdaj se lahko prijavite z novim e-poštnim naslovom.', - 'login_with_old_email' => 'Znova se lahko prijavite s starim elektronskim naslovom.', - 'login_provider_local_only' => 'To dejanje ni na voljo pri preverjanju pristnosti preko ":login_provider".', - 'external_user_mgt_disabled' => 'To dejanje ni na voljo, če Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti.', - 'external_auth_disabled' => 'To dejanje ni na voljo, če Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti.', - 'delete_local_info_only' => 'Ker Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti, bo ta funkcija izbrisala samo lokalne podatke Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Odjemalci OAuth', - 'profile_oauth_no_clients' => 'Ustvarili niste še nobenega odjemalca OAuth.', - 'profile_oauth_clients_external_auth' => 'Če uporabljate zunanjega ponudnika preverjanja pristnosti, kot je Authelia, odjemalci OAuth ne bodo delovali. Uporabljate lahko samo osebne žetone za dostop.', - 'profile_oauth_clients_header' => 'Odjemalci', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Ime', - 'profile_oauth_client_secret' => 'Skrivna koda', - 'profile_oauth_create_new_client' => 'Ustvari novega odjemalca', - 'profile_oauth_create_client' => 'Ustvari odjemalca', - 'profile_oauth_edit_client' => 'Urejanje odjemalca', - 'profile_oauth_name_help' => 'Nekaj, kar bodo vaši uporabniki prepoznali in mu zaupali.', - 'profile_oauth_redirect_url' => 'URL preusmeritve', - 'profile_oauth_redirect_url_help' => 'URL povratnega klica avtorizacije vaše aplikacije.', - 'profile_authorized_apps' => 'Pooblaščene aplikacije', - 'profile_authorized_clients' => 'Pooblaščeni odjemalci', - 'profile_scopes' => 'Področja', - 'profile_revoke' => 'Odvzemi dostop', - 'profile_oauth_client_secret_title' => 'Skrivna koda odjemalca', - 'profile_oauth_client_secret_expl' => 'Tukaj je skrivna koda vašega odjemalca. To je edini čas, da bo prikazana, zato je ne izgubite! Zdaj lahko uporabite to skrivno kodo za pošiljanje zahtev API.', - 'profile_personal_access_tokens' => 'Osebni dostopni žetoni', - 'profile_personal_access_token' => 'Osebni dostopni žeton', - 'profile_oauth_confidential' => 'Zaupno', - 'profile_oauth_confidential_help' => 'Od odjemalca zahtevajte avtentikacijo s skrivno kodo. Zaupni odjemalci imajo lahko poverilnice na varen način, ne da bi jih izpostavili nepooblaščenim osebam. Javne aplikacije, kot so izvorne namizne aplikacije ali aplikacije JavaScript SPA, ne morejo varno hraniti skrivnih kod.', - 'profile_personal_access_token_explanation' => 'Tukaj je vaš novi žeton za osebni dostop. To je edini čas, da bo prikazan, zato ga ne izgubite! Od zdaj naprej lahko uporabite ta žeton za pošiljanje zahtev API.', - 'profile_no_personal_access_token' => 'Niste ustvarili nobenih osebnih žetonov za dostop.', - 'profile_create_new_token' => 'Ustvari nov žeton', - 'profile_create_token' => 'Ustvari žeton', - 'profile_create' => 'Ustvari', - 'profile_save_changes' => 'Shrani spremembe', - 'profile_whoops' => 'Ups!', - 'profile_something_wrong' => 'Nekaj je šlo narobe!', - 'profile_try_again' => "Nekaj \u{200b}\u{200b}je šlo narobe. Prosim poskusite znova.", - 'amounts' => 'Zneski', - 'multi_account_warning_unknown' => 'Odvisno od vrste transakcije, ki jo ustvarite, lahko izvorni in/ali ciljni račun poznejših razdelitev preglasi tisto, kar je definirano v prvi razdelitvi transakcije.', - 'multi_account_warning_withdrawal' => 'Upoštevajte, da bo izvorni račun poznejših razdelitev preglasilo tisto, kar je definirano v prvi razdelitvi odliva.', - 'multi_account_warning_deposit' => 'Upoštevajte, da bo ciljni račun poznejših delitev preglasilo tisto, kar je opredeljeno v prvi delitvi priliva.', - 'multi_account_warning_transfer' => 'Upoštevajte, da bo izvorni + ciljni račun poznejših razdelitev preglasilo tisto, kar je definirano v prvi razdelitvi prenosa.', + 'purge_data_title' => 'Čiščenje podatkov iz Firefly III', + 'purge_data_expl' => '"Čiščenje" pomeni "brisanje tistega, kar je že izbrisano". V normalnih okoliščinah Firefly III ničesar trajno ne izbriše. To samo skriva. Spodnji gumb izbriše vse te prej "izbrisane" zapise ZA VEDNO.', + 'delete_stuff_header' => 'Brisanje in čiščenje podatkov', + 'purge_all_data' => 'Počisti vse izbrisane zapise', + 'purge_data' => 'Izbris podatkov', + 'purged_all_records' => 'Vsi izbrisani zapisi so bili izbrisani.', + 'delete_data_title' => 'Izbriši podatke iz Firefly III', + 'permanent_delete_stuff' => 'Iz Firefly III lahko izbrišete stvari. Uporaba spodnjih gumbov pomeni, da bodo vaši predmeti odstranjeni iz pogleda in skriti. Za to ni gumba za razveljavitev, vendar lahko elementi ostanejo v bazi podatkov, kjer jih lahko po potrebi rešite.', + 'other_sessions_logged_out' => 'Vse vaše druge seje so bile odjavljene.', + 'delete_unused_accounts' => 'Če izbrišete neuporabljene račune, boste počistili svoje sezname za samodejno dokončanje.', + 'delete_all_unused_accounts' => 'Izbriši neuporabljene račune', + 'deleted_all_unused_accounts' => 'Vsi neuporabljeni računi so izbrisani', + 'delete_all_budgets' => 'Izbriši VSE proračune', + 'delete_all_categories' => 'Izbriši VSE kategorije', + 'delete_all_tags' => 'Izbriši VSE oznake', + 'delete_all_bills' => 'Izbriši VSE račune', + 'delete_all_piggy_banks' => 'Izbriši VSE hranilnike', + 'delete_all_rules' => 'Izbriši VSA pravila', + 'delete_all_recurring' => 'Izbriši VSE ponavljajoče se transakcije', + 'delete_all_object_groups' => 'Izbriši VSE skupine predmetov', + 'delete_all_accounts' => 'Izbriši VSE račune', + 'delete_all_asset_accounts' => 'Izbriši VSE račune sredstev', + 'delete_all_expense_accounts' => 'Izbriši VSE račune stroškov', + 'delete_all_revenue_accounts' => 'Izbriši VSE račune prihodkov', + 'delete_all_liabilities' => 'Izbriši VSE obveznosti', + 'delete_all_transactions' => 'Izbriši VSE transakcije', + 'delete_all_withdrawals' => 'Izbriši VSE odlive', + 'delete_all_deposits' => 'Izbriši VSE prilive', + 'delete_all_transfers' => 'Izbriši VSE prenose ', + 'also_delete_transactions' => 'Brisanje računa bo pobrisalo tudi VSE povezane odlive, prilive in prenose!', + 'deleted_all_budgets' => 'Vsi proračuni so bili izbrisani', + 'deleted_all_categories' => 'Vse kategorije so bile izbrisane', + 'deleted_all_tags' => 'Vse oznake so bile izbrisane', + 'deleted_all_bills' => 'Vsi računi so bili izbrisani', + 'deleted_all_piggy_banks' => 'Vsi hranilniki so bili izbrisani', + 'deleted_all_rules' => 'Vsa pravila in skupine pravil so bila izbrisana', + 'deleted_all_object_groups' => 'Vse skupine so bile izbrisane', + 'deleted_all_accounts' => 'Vsi računi so bili izbrisani', + 'deleted_all_asset_accounts' => 'Vsi računi sredstev so bili izbrisani', + 'deleted_all_expense_accounts' => 'Vsi računi stroškov so bili izbrisani', + 'deleted_all_revenue_accounts' => 'Vsi računi prihodkov so bili izbrisani', + 'deleted_all_liabilities' => 'Vse obveznosti so bile izbrisane', + 'deleted_all_transactions' => 'Vse transakcije so bile izbrisane', + 'deleted_all_withdrawals' => 'Vsi odlivi so bili izbrisani', + 'deleted_all_deposits' => 'Vsi prilivi so bili izbrisani', + 'deleted_all_transfers' => 'Vsi prenosi so bili izbrisani', + 'deleted_all_recurring' => 'Vse ponavljajoče se transakcije so bile izbrisane', + 'change_your_password' => 'Spremeni geslo', + 'delete_account' => 'Izbriši račun', + 'current_password' => 'Trenutno geslo', + 'new_password' => 'Novo geslo', + 'new_password_again' => 'Novo geslo (ponovno)', + 'delete_your_account' => 'Izbriši račun', + 'delete_your_account_help' => 'Če izbrišete račun, bodo izbrisani tudi vsi računi, transakcije, karkoli ste morda shranili v storitev Firefly III bo izgubljeno.', + 'delete_your_account_password' => 'Za nadaljevanje vpišite geslo.', + 'password' => 'Geslo', + 'are_you_sure' => 'Ali ste prepričan? Tega se ne da razveljaviti.', + 'delete_account_button' => 'IZBRIŠI račun', + 'invalid_current_password' => 'Obstoječe geslo je napačno!', + 'password_changed' => 'Geslo spremenjeno!', + 'should_change' => 'Namen je spremeniti vaše geslo.', + 'invalid_password' => 'Napačno geslo!', + 'what_is_pw_security' => 'Kaj je »preverjanje varnosti gesla«?', + 'secure_pw_title' => 'Kako izbrati varno geslo', + 'forgot_password_response' => 'Hvala vam. Če obstaja račun s tem e-poštnim naslovom, boste navodila našli v mapi »Prejeto«.', + 'secure_pw_history' => 'Niti teden še ni minil, ko ste prebrali v novicah o strani, ki izgublja gesla svojih uporabnikov. Hekerji in tatovi uporabljajo ta gesla, da bi poskušali ukrasti vaše zasebne podatke. Te informacije so dragocene.', + 'secure_pw_ff' => 'Ali uporabljate isto geslo po vsem internetu? Če eno mesto izgubi geslo, imajo hekerji dostop do vseh vaših podatkov. Firefly III se zanaša na vas, da izberete močno in edinstveno geslo za zaščito vaših finančnih zapisov.', + 'secure_pw_check_box' => 'Da bi vam pomagali, lahko Firefly III preveri, ali je bilo geslo, ki ga želite uporabiti, ukradeno v preteklosti. V tem primeru vam svetuje, da NE uporabljate tega gesla.', + 'secure_pw_working_title' => 'Kako deluje?', + 'secure_pw_working' => 'S potrditvijo tega polja bo Firefly III poslal prvih pet znakov zgoščenega zapisa SHA1 vašega gesla na spletno stran Troy Hunta, da vidite, ali je na seznamu. Tako ne boste mogli uporabljati nevarnih gesel, kot je priporočeno v najnovejši posebni publikaciji NIST na to temo.', + 'secure_pw_should' => 'Naj potrdim polje?', + 'secure_pw_long_password' => 'Da. Vedno preverite, ali je vaše geslo varno.', + 'command_line_token' => 'Žeton za ukazno vrstico', + 'explain_command_line_token' => 'Ta žeton potrebujete za izvajanje možnosti ukazne vrstice, kot je izvoz podatkov. Brez tega ta občutljiv ukaz ne bo deloval. Ne delite svojega žetona ukazne vrstice. Nihče vas ne bo prosil za ta žeton, tudi jaz ne. Če se bojite, da ste to izgubili, ali ko ste paranoični, znova ustvarite ta žeton z gumbom.', + 'regenerate_command_line_token' => 'Ponovno ustvari žeton za ukazno vrstico', + 'token_regenerated' => 'Nov žeton ukazne vrstice je bil ustvarjen', + 'change_your_email' => 'Spremeni elektronski naslov', + 'email_verification' => 'E-poštno sporočilo bo poslano na vaš stari IN novi e-poštni naslov. Iz varnostnih razlogov se ne boste mogli prijaviti, dokler ne potrdite svojega novega e-poštnega naslova. Če niste prepričani, ali vaša namestitev Firefly III omogoča pošiljanje e-pošte, prosimo, ne uporabljajte te funkcije. Če ste skrbnik, lahko to preizkusite v Administracija.', + 'email_changed_logout' => 'Dokler ne potrdite svojega elektronskega naslova, se ne morete prijaviti.', + 'login_with_new_email' => 'Zdaj se lahko prijavite z novim e-poštnim naslovom.', + 'login_with_old_email' => 'Znova se lahko prijavite s starim elektronskim naslovom.', + 'login_provider_local_only' => 'To dejanje ni na voljo pri preverjanju pristnosti preko ":login_provider".', + 'external_user_mgt_disabled' => 'To dejanje ni na voljo, če Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti.', + 'external_auth_disabled' => 'To dejanje ni na voljo, če Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti.', + 'delete_local_info_only' => 'Ker Firefly III ni odgovoren za upravljanje uporabnikov ali preverjanje pristnosti, bo ta funkcija izbrisala samo lokalne podatke Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Odjemalci OAuth', + 'profile_oauth_no_clients' => 'Ustvarili niste še nobenega odjemalca OAuth.', + 'profile_oauth_clients_external_auth' => 'Če uporabljate zunanjega ponudnika preverjanja pristnosti, kot je Authelia, odjemalci OAuth ne bodo delovali. Uporabljate lahko samo osebne žetone za dostop.', + 'profile_oauth_clients_header' => 'Odjemalci', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Ime', + 'profile_oauth_client_secret' => 'Skrivna koda', + 'profile_oauth_create_new_client' => 'Ustvari novega odjemalca', + 'profile_oauth_create_client' => 'Ustvari odjemalca', + 'profile_oauth_edit_client' => 'Urejanje odjemalca', + 'profile_oauth_name_help' => 'Nekaj, kar bodo vaši uporabniki prepoznali in mu zaupali.', + 'profile_oauth_redirect_url' => 'URL preusmeritve', + 'profile_oauth_redirect_url_help' => 'URL povratnega klica avtorizacije vaše aplikacije.', + 'profile_authorized_apps' => 'Pooblaščene aplikacije', + 'profile_authorized_clients' => 'Pooblaščeni odjemalci', + 'profile_scopes' => 'Področja', + 'profile_revoke' => 'Odvzemi dostop', + 'profile_oauth_client_secret_title' => 'Skrivna koda odjemalca', + 'profile_oauth_client_secret_expl' => 'Tukaj je skrivna koda vašega odjemalca. To je edini čas, da bo prikazana, zato je ne izgubite! Zdaj lahko uporabite to skrivno kodo za pošiljanje zahtev API.', + 'profile_personal_access_tokens' => 'Osebni dostopni žetoni', + 'profile_personal_access_token' => 'Osebni dostopni žeton', + 'profile_oauth_confidential' => 'Zaupno', + 'profile_oauth_confidential_help' => 'Od odjemalca zahtevajte avtentikacijo s skrivno kodo. Zaupni odjemalci imajo lahko poverilnice na varen način, ne da bi jih izpostavili nepooblaščenim osebam. Javne aplikacije, kot so izvorne namizne aplikacije ali aplikacije JavaScript SPA, ne morejo varno hraniti skrivnih kod.', + 'profile_personal_access_token_explanation' => 'Tukaj je vaš novi žeton za osebni dostop. To je edini čas, da bo prikazan, zato ga ne izgubite! Od zdaj naprej lahko uporabite ta žeton za pošiljanje zahtev API.', + 'profile_no_personal_access_token' => 'Niste ustvarili nobenih osebnih žetonov za dostop.', + 'profile_create_new_token' => 'Ustvari nov žeton', + 'profile_create_token' => 'Ustvari žeton', + 'profile_create' => 'Ustvari', + 'profile_save_changes' => 'Shrani spremembe', + 'profile_whoops' => 'Ups!', + 'profile_something_wrong' => 'Nekaj je šlo narobe!', + 'profile_try_again' => "Nekaj \u{200b}\u{200b}je šlo narobe. Prosim poskusite znova.", + 'amounts' => 'Zneski', + 'multi_account_warning_unknown' => 'Odvisno od vrste transakcije, ki jo ustvarite, lahko izvorni in/ali ciljni račun poznejših razdelitev preglasi tisto, kar je definirano v prvi razdelitvi transakcije.', + 'multi_account_warning_withdrawal' => 'Upoštevajte, da bo izvorni račun poznejših razdelitev preglasilo tisto, kar je definirano v prvi razdelitvi odliva.', + 'multi_account_warning_deposit' => 'Upoštevajte, da bo ciljni račun poznejših delitev preglasilo tisto, kar je opredeljeno v prvi delitvi priliva.', + 'multi_account_warning_transfer' => 'Upoštevajte, da bo izvorni + ciljni račun poznejših razdelitev preglasilo tisto, kar je definirano v prvi razdelitvi prenosa.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Izvozi podatke iz Firefly III', - 'export_data_menu' => 'Izvozi podatke', - 'export_data_bc' => 'Izvozi podatke iz Firefly III', - 'export_data_main_title' => 'Izvozi podatke iz Firefly III', - 'export_data_expl' => 'Ta povezava vam omogoča izvoz vseh transakcij + meta podatkov iz Firefly III. Prosimo, glejte pomoč (zgornja desna (?)-ikona) za več informacij o postopku.', - 'export_data_all_transactions' => 'Izvozi vse transakcije', - 'export_data_advanced_expl' => 'Če potrebujete naprednejšo ali specifično vrsto izvoza, preberite pomoč o uporabi konzolnega ukaza php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Izvozi podatke iz Firefly III', + 'export_data_menu' => 'Izvozi podatke', + 'export_data_bc' => 'Izvozi podatke iz Firefly III', + 'export_data_main_title' => 'Izvozi podatke iz Firefly III', + 'export_data_expl' => 'Ta povezava vam omogoča izvoz vseh transakcij + meta podatkov iz Firefly III. Prosimo, glejte pomoč (zgornja desna (?)-ikona) za več informacij o postopku.', + 'export_data_all_transactions' => 'Izvozi vse transakcije', + 'export_data_advanced_expl' => 'Če potrebujete naprednejšo ali specifično vrsto izvoza, preberite pomoč o uporabi konzolnega ukaza php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Ena priloga|:count prilog', - 'attachments' => 'Priloge', - 'edit_attachment' => 'Uredi prilogo ":name"', - 'update_attachment' => 'Posodobi prilogo', - 'delete_attachment' => 'Izbriši prilogo ":name"', - 'attachment_deleted' => 'Priloga ":name" izbrisana', - 'liabilities_deleted' => 'Izbrisana odgovornost ":name"', - 'attachment_updated' => 'Priloga ":name" je posodobljena', - 'upload_max_file_size' => 'Največja velikost datoteke: :size', - 'list_all_attachments' => 'Seznam vseh prilog', + 'nr_of_attachments' => 'Ena priloga|:count prilog', + 'attachments' => 'Priloge', + 'edit_attachment' => 'Uredi prilogo ":name"', + 'update_attachment' => 'Posodobi prilogo', + 'delete_attachment' => 'Izbriši prilogo ":name"', + 'attachment_deleted' => 'Priloga ":name" izbrisana', + 'liabilities_deleted' => 'Izbrisana odgovornost ":name"', + 'attachment_updated' => 'Priloga ":name" je posodobljena', + 'upload_max_file_size' => 'Največja velikost datoteke: :size', + 'list_all_attachments' => 'Seznam vseh prilog', // transaction index - 'is_reconciled_fields_dropped' => 'Ker je ta transakcija usklajena, ne boste mogli posodobiti računov niti zneskov.', - 'title_expenses' => 'Stroški', - 'title_withdrawal' => 'Stroški', - 'title_revenue' => 'Dohodki / prihodki', - 'title_deposit' => 'Dohodki / prihodki', - 'title_transfer' => 'Prenosi', - 'title_transfers' => 'Prenosi', - 'submission_options' => 'Možnosti oddaje', - 'apply_rules_checkbox' => 'Uporabite pravila', - 'fire_webhooks_checkbox' => 'Sprožite Webhooke', - 'select_source_account' => 'Izberite ali vnesite veljavno ime izvornega računa', - 'select_dest_account' => 'Izberite ali vnesite veljavno ime ciljnega računa', + 'is_reconciled_fields_dropped' => 'Ker je ta transakcija usklajena, ne boste mogli posodobiti računov niti zneskov.', + 'title_expenses' => 'Stroški', + 'title_withdrawal' => 'Stroški', + 'title_revenue' => 'Dohodki / prihodki', + 'title_deposit' => 'Dohodki / prihodki', + 'title_transfer' => 'Prenosi', + 'title_transfers' => 'Prenosi', + 'submission_options' => 'Možnosti oddaje', + 'apply_rules_checkbox' => 'Uporabite pravila', + 'fire_webhooks_checkbox' => 'Sprožite Webhooke', + 'select_source_account' => 'Izberite ali vnesite veljavno ime izvornega računa', + 'select_dest_account' => 'Izberite ali vnesite veljavno ime ciljnega računa', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv', - 'convert_is_already_type_Deposit' => 'Ta transakcija je že priliv', - 'convert_is_already_type_Transfer' => 'Ta transakcija je že prenos', - 'convert_to_Withdrawal' => 'Pretvori ":description" v odliv', - 'convert_to_Deposit' => 'Pretvori ":description" v priliv', - 'convert_to_Transfer' => 'Pretvori ":description" v prenos', - 'convert_options_WithdrawalDeposit' => 'Pretvori odliv v priliv', - 'convert_options_WithdrawalTransfer' => 'Pretvori odliv v prenos', - 'convert_options_DepositTransfer' => 'Pretvori priliv v prenos', - 'convert_options_DepositWithdrawal' => 'Pretvori polog v odliv', - 'convert_options_TransferWithdrawal' => 'Pretvori prenos v odliv', - 'convert_options_TransferDeposit' => 'Pretvori prenos v priliv', - 'convert_Withdrawal_to_deposit' => 'Pretvori ta odliv v priliv', - 'convert_Withdrawal_to_transfer' => 'Pretvori ta dvig v prenos', - 'convert_Deposit_to_withdrawal' => 'Pretvori ta priliv v odliv', - 'convert_Deposit_to_transfer' => 'Pretvori ta priliv v prenos', - 'convert_Transfer_to_deposit' => 'Pretvori ta prenos v priliv', - 'convert_Transfer_to_withdrawal' => 'Pretvori ta prenos v odliv', - 'convert_please_set_revenue_source' => 'Izberite račun prihodkov iz katerega boste prenesli denar.', - 'convert_please_set_asset_destination' => 'Izberite račun sredstev na katerega boste prenesli denar.', - 'convert_please_set_expense_destination' => 'Izberite na kateri račun stroškov bo šel denar.', - 'convert_please_set_asset_source' => 'Izberite račun sredstev iz katerega boste prenesli denar.', - 'convert_expl_w_d' => 'Pri pretvorbi iz odliva v priliv bo denar položen na prikazani ciljni račun, namesto da bi bil dvignjen z njega.|Pri pretvorbi iz odliva v priliv bo denar položen na prikazane ciljne račune, namesto da se od njih umika.', - 'convert_expl_w_t' => 'Pri pretvorbi odliva v prenos bo denar prenesen stran od izvornega računa na drug račun sredstev ali obveznosti, namesto da bi bil porabljen na prvotnem računu stroškov.|Pri pretvarjanju odliva v prenos bo denar prenesen stran od izvornega računa na druge račune sredstev ali obveznosti, namesto da bi bili porabljeni na prvotnih računih odhodkov.', - 'convert_expl_d_w' => 'Pri pretvorbi priliva v odliv, bo denar dvignjen s prikazanega izvornega računa, namesto da bi bil položen nanj.|Pri pretvorbi priliva v odliv, bo denar dvignjen s prikazanih izvornih računov, namesto da bi bil položen nanje.', - 'convert_expl_d_t' => 'Ko pretvorite priliv v prenos, bo denar položen na navedeni ciljni račun s katerega koli računa sredstev ali obveznosti.|Ko pretvorite priliv v prenos, bo denar položen na navedene ciljne račune s katerega koli vaših računov sredstev ali obveznosti.', - 'convert_expl_t_w' => 'Ko pretvorite nakazilo v odliv, bo denar porabljen na ciljnem računu, ki ga nastavite tukaj, namesto da bi bil prenesen stran.|Ko pretvorite prenos v odliv, bo denar porabljen na ciljnih računih, ki ste jih nastavili tukaj, namesto da bi bil premeščen.', - 'convert_expl_t_d' => 'Ko pretvorite nakazilo v priliv, bo denar položen na ciljni račun, ki ga vidite tukaj, namesto da bi bil nakazan vanj.|Ko pretvorite nakazilo v priliv, bo denar položen na ciljne račune, ki jih vidite tukaj, namesto da bi bil prenesen vanje.', - 'convert_select_sources' => 'Če želite dokončati pretvorbo, nastavite nov izvorni račun spodaj.|Za dokončanje pretvorbe nastavite nove izvorne račune spodaj.', - 'convert_select_destinations' => 'Za dokončanje konverzije spodaj izberite nov ciljni račun.|Za dokončanje konverzije spodaj izberite nove ciljne račune.', - 'converted_to_Withdrawal' => 'Transakcija je bila pretvorjena v odliv', - 'converted_to_Deposit' => 'Transakcija je bila pretvorjena v priliv', - 'converted_to_Transfer' => 'Transakcija je bila pretvorjena v prenos', - 'invalid_convert_selection' => 'Račun, ki ste ga izbrali, je v tej transakciji že uporabljen ali pa ne obstaja.', - 'source_or_dest_invalid' => 'Ne najdem pravilnih podrobnosti o transakciji. Pretvorba ni mogoča.', - 'convert_to_withdrawal' => 'Pretvori v odliv', - 'convert_to_deposit' => 'Pretvori v priliv', - 'convert_to_transfer' => 'Pretvori v prenos', + 'convert_is_already_type_Withdrawal' => 'Ta transakcija je že odliv', + 'convert_is_already_type_Deposit' => 'Ta transakcija je že priliv', + 'convert_is_already_type_Transfer' => 'Ta transakcija je že prenos', + 'convert_to_Withdrawal' => 'Pretvori ":description" v odliv', + 'convert_to_Deposit' => 'Pretvori ":description" v priliv', + 'convert_to_Transfer' => 'Pretvori ":description" v prenos', + 'convert_options_WithdrawalDeposit' => 'Pretvori odliv v priliv', + 'convert_options_WithdrawalTransfer' => 'Pretvori odliv v prenos', + 'convert_options_DepositTransfer' => 'Pretvori priliv v prenos', + 'convert_options_DepositWithdrawal' => 'Pretvori polog v odliv', + 'convert_options_TransferWithdrawal' => 'Pretvori prenos v odliv', + 'convert_options_TransferDeposit' => 'Pretvori prenos v priliv', + 'convert_Withdrawal_to_deposit' => 'Pretvori ta odliv v priliv', + 'convert_Withdrawal_to_transfer' => 'Pretvori ta dvig v prenos', + 'convert_Deposit_to_withdrawal' => 'Pretvori ta priliv v odliv', + 'convert_Deposit_to_transfer' => 'Pretvori ta priliv v prenos', + 'convert_Transfer_to_deposit' => 'Pretvori ta prenos v priliv', + 'convert_Transfer_to_withdrawal' => 'Pretvori ta prenos v odliv', + 'convert_please_set_revenue_source' => 'Izberite račun prihodkov iz katerega boste prenesli denar.', + 'convert_please_set_asset_destination' => 'Izberite račun sredstev na katerega boste prenesli denar.', + 'convert_please_set_expense_destination' => 'Izberite na kateri račun stroškov bo šel denar.', + 'convert_please_set_asset_source' => 'Izberite račun sredstev iz katerega boste prenesli denar.', + 'convert_expl_w_d' => 'Pri pretvorbi iz odliva v priliv bo denar položen na prikazani ciljni račun, namesto da bi bil dvignjen z njega.|Pri pretvorbi iz odliva v priliv bo denar položen na prikazane ciljne račune, namesto da se od njih umika.', + 'convert_expl_w_t' => 'Pri pretvorbi odliva v prenos bo denar prenesen stran od izvornega računa na drug račun sredstev ali obveznosti, namesto da bi bil porabljen na prvotnem računu stroškov.|Pri pretvarjanju odliva v prenos bo denar prenesen stran od izvornega računa na druge račune sredstev ali obveznosti, namesto da bi bili porabljeni na prvotnih računih odhodkov.', + 'convert_expl_d_w' => 'Pri pretvorbi priliva v odliv, bo denar dvignjen s prikazanega izvornega računa, namesto da bi bil položen nanj.|Pri pretvorbi priliva v odliv, bo denar dvignjen s prikazanih izvornih računov, namesto da bi bil položen nanje.', + 'convert_expl_d_t' => 'Ko pretvorite priliv v prenos, bo denar položen na navedeni ciljni račun s katerega koli računa sredstev ali obveznosti.|Ko pretvorite priliv v prenos, bo denar položen na navedene ciljne račune s katerega koli vaših računov sredstev ali obveznosti.', + 'convert_expl_t_w' => 'Ko pretvorite nakazilo v odliv, bo denar porabljen na ciljnem računu, ki ga nastavite tukaj, namesto da bi bil prenesen stran.|Ko pretvorite prenos v odliv, bo denar porabljen na ciljnih računih, ki ste jih nastavili tukaj, namesto da bi bil premeščen.', + 'convert_expl_t_d' => 'Ko pretvorite nakazilo v priliv, bo denar položen na ciljni račun, ki ga vidite tukaj, namesto da bi bil nakazan vanj.|Ko pretvorite nakazilo v priliv, bo denar položen na ciljne račune, ki jih vidite tukaj, namesto da bi bil prenesen vanje.', + 'convert_select_sources' => 'Če želite dokončati pretvorbo, nastavite nov izvorni račun spodaj.|Za dokončanje pretvorbe nastavite nove izvorne račune spodaj.', + 'convert_select_destinations' => 'Za dokončanje konverzije spodaj izberite nov ciljni račun.|Za dokončanje konverzije spodaj izberite nove ciljne račune.', + 'converted_to_Withdrawal' => 'Transakcija je bila pretvorjena v odliv', + 'converted_to_Deposit' => 'Transakcija je bila pretvorjena v priliv', + 'converted_to_Transfer' => 'Transakcija je bila pretvorjena v prenos', + 'invalid_convert_selection' => 'Račun, ki ste ga izbrali, je v tej transakciji že uporabljen ali pa ne obstaja.', + 'source_or_dest_invalid' => 'Ne najdem pravilnih podrobnosti o transakciji. Pretvorba ni mogoča.', + 'convert_to_withdrawal' => 'Pretvori v odliv', + 'convert_to_deposit' => 'Pretvori v priliv', + 'convert_to_transfer' => 'Pretvori v prenos', // create new stuff: - 'create_new_withdrawal' => 'Ustvari nov odliv', - 'create_new_deposit' => 'Ustvari nov priliv', - 'create_new_transfer' => 'Ustvari nov prenos', - 'create_new_asset' => 'Ustvari nov račun sredstev', - 'create_new_liabilities' => 'Ustvari novo obveznost', - 'create_new_expense' => 'Ustvari nov račun stroškov', - 'create_new_revenue' => 'Ustvari nov račun prihodkov', - 'create_new_piggy_bank' => 'Ustvari nov hranilnik', - 'create_new_bill' => 'Ustvari nov račun', - 'create_new_subscription' => 'Ustvari novo naročnino', - 'create_new_rule' => 'Ustvari novo pravilo', + 'create_new_withdrawal' => 'Ustvari nov odliv', + 'create_new_deposit' => 'Ustvari nov priliv', + 'create_new_transfer' => 'Ustvari nov prenos', + 'create_new_asset' => 'Ustvari nov račun sredstev', + 'create_new_liabilities' => 'Ustvari novo obveznost', + 'create_new_expense' => 'Ustvari nov račun stroškov', + 'create_new_revenue' => 'Ustvari nov račun prihodkov', + 'create_new_piggy_bank' => 'Ustvari nov hranilnik', + 'create_new_bill' => 'Ustvari nov račun', + 'create_new_subscription' => 'Ustvari novo naročnino', + 'create_new_rule' => 'Ustvari novo pravilo', // currencies: - 'create_currency' => 'Ustvari novo valuto', - 'store_currency' => 'Shrani novo valuto', - 'update_currency' => 'Osveži valuto', - 'new_default_currency' => '":name" je zdaj privzeta valuta.', - 'default_currency_failed' => '»:name« ni bilo mogoče narediti za privzeto valuto. Preverite dnevnike.', - 'cannot_delete_currency' => 'Ne morem izbrisati :name ker je v uporabi.', - 'cannot_delete_fallback_currency' => ':name je sistemska nadomestna valuta in je ni mogoče izbrisati.', - 'cannot_disable_currency_journals' => ':name ni mogoče onemogočiti, ker ga transakcije še vedno uporabljajo.', - 'cannot_disable_currency_last_left' => ':name ni mogoče onemogočiti, ker je to zadnja omogočena valuta.', - 'cannot_disable_currency_account_meta' => 'Ne morem onemogočiti :name, ker je uporabljen v računih sredstev.', - 'cannot_disable_currency_bills' => 'Ni mogoče onemogočiti :name, ker se uporablja v računu.', - 'cannot_disable_currency_recurring' => ':name ni mogoče onemogočiti, ker se uporablja v ponavljajočih se transakcijah.', - 'cannot_disable_currency_available_budgets' => ':name ni mogoče onemogočiti, ker se uporablja v ponavljajočih se transakcijah.', - 'cannot_disable_currency_budget_limits' => 'Ni mogoče onemogočiti :name, ker se uporablja v proračunskih omejitvah.', - 'cannot_disable_currency_current_default' => ':name ni mogoče onemogočiti, ker je to trenutna privzeta valuta.', - 'cannot_disable_currency_system_fallback' => ':name ni mogoče onemogočiti, ker je sistemska privzeta valuta.', - 'disable_EUR_side_effects' => 'Evro je rezervna valuta sistema v sili. Če ga onemogočite, lahko pride do nenamernih stranskih učinkov in lahko razveljavi vašo garancijo.', - 'deleted_currency' => 'Valuta :name je izbrisana', - 'created_currency' => 'Valuta :name je ustvarjena', - 'could_not_store_currency' => 'Nove valute ni bilo mogoče shraniti.', - 'updated_currency' => 'Valuta :name je posodobljena', - 'ask_site_owner' => 'Prosim dogovorite se s :owner da doda, odstrani ali uredi valute.', - 'currencies_intro' => 'Firefly III podpira različne valute, ki jih lahko nastavite in omogočite tukaj.', - 'make_default_currency' => 'Nastavi za privzeto', - 'default_currency' => 'privzeto', - 'currency_is_disabled' => 'Onemogočeno', - 'enable_currency' => 'Omogoči', - 'disable_currency' => 'Onemogoči', - 'currencies_default_disabled' => 'Večina teh valut je privzeto onemogočena. Če jih želite uporabiti, jih morate najprej omogočiti.', - 'currency_is_now_enabled' => 'Valuta ":name" je bila omogočena', - 'could_not_enable_currency' => 'Ni bilo mogoče omogočiti valute ":name". Prosimo, preglejte dnevnike.', - 'currency_is_now_disabled' => 'Valuta ":name" je bila onemogočena', - 'could_not_disable_currency' => 'Ni bilo mogoče onemogočiti valute ":name". Mogoče je še v uporabi?', + 'create_currency' => 'Ustvari novo valuto', + 'store_currency' => 'Shrani novo valuto', + 'update_currency' => 'Osveži valuto', + 'new_default_currency' => '":name" je zdaj privzeta valuta.', + 'default_currency_failed' => '»:name« ni bilo mogoče narediti za privzeto valuto. Preverite dnevnike.', + 'cannot_delete_currency' => 'Ne morem izbrisati :name ker je v uporabi.', + 'cannot_delete_fallback_currency' => ':name je sistemska nadomestna valuta in je ni mogoče izbrisati.', + 'cannot_disable_currency_journals' => ':name ni mogoče onemogočiti, ker ga transakcije še vedno uporabljajo.', + 'cannot_disable_currency_last_left' => ':name ni mogoče onemogočiti, ker je to zadnja omogočena valuta.', + 'cannot_disable_currency_account_meta' => 'Ne morem onemogočiti :name, ker je uporabljen v računih sredstev.', + 'cannot_disable_currency_bills' => 'Ni mogoče onemogočiti :name, ker se uporablja v računu.', + 'cannot_disable_currency_recurring' => ':name ni mogoče onemogočiti, ker se uporablja v ponavljajočih se transakcijah.', + 'cannot_disable_currency_available_budgets' => ':name ni mogoče onemogočiti, ker se uporablja v ponavljajočih se transakcijah.', + 'cannot_disable_currency_budget_limits' => 'Ni mogoče onemogočiti :name, ker se uporablja v proračunskih omejitvah.', + 'cannot_disable_currency_current_default' => ':name ni mogoče onemogočiti, ker je to trenutna privzeta valuta.', + 'cannot_disable_currency_system_fallback' => ':name ni mogoče onemogočiti, ker je sistemska privzeta valuta.', + 'disable_EUR_side_effects' => 'Evro je rezervna valuta sistema v sili. Če ga onemogočite, lahko pride do nenamernih stranskih učinkov in lahko razveljavi vašo garancijo.', + 'deleted_currency' => 'Valuta :name je izbrisana', + 'created_currency' => 'Valuta :name je ustvarjena', + 'could_not_store_currency' => 'Nove valute ni bilo mogoče shraniti.', + 'updated_currency' => 'Valuta :name je posodobljena', + 'ask_site_owner' => 'Prosim dogovorite se s :owner da doda, odstrani ali uredi valute.', + 'currencies_intro' => 'Firefly III podpira različne valute, ki jih lahko nastavite in omogočite tukaj.', + 'make_default_currency' => 'Nastavi za privzeto', + 'default_currency' => 'privzeto', + 'currency_is_disabled' => 'Onemogočeno', + 'enable_currency' => 'Omogoči', + 'disable_currency' => 'Onemogoči', + 'currencies_default_disabled' => 'Večina teh valut je privzeto onemogočena. Če jih želite uporabiti, jih morate najprej omogočiti.', + 'currency_is_now_enabled' => 'Valuta ":name" je bila omogočena', + 'could_not_enable_currency' => 'Ni bilo mogoče omogočiti valute ":name". Prosimo, preglejte dnevnike.', + 'currency_is_now_disabled' => 'Valuta ":name" je bila onemogočena', + 'could_not_disable_currency' => 'Ni bilo mogoče onemogočiti valute ":name". Mogoče je še v uporabi?', // forms: - 'mandatoryFields' => 'Obvezna polja', - 'optionalFields' => 'Izbirna polja', - 'options' => 'Možnosti', + 'mandatoryFields' => 'Obvezna polja', + 'optionalFields' => 'Izbirna polja', + 'options' => 'Možnosti', // budgets: - 'daily_budgets' => 'Dnevni proračuni', - 'weekly_budgets' => 'Tedenski proračuni', - 'monthly_budgets' => 'Mesečni proračuni', - 'quarterly_budgets' => 'Četrtletni proračuni', - 'half_year_budgets' => 'Polletni proračuni', - 'yearly_budgets' => 'Letni proračuni', - 'other_budgets' => 'Časovni proračuni po meri', - 'budget_limit_not_in_range' => 'Ta znesek velja od :start do :end:', - 'total_available_budget' => 'Skupni razpoložljivi proračun (med :start in :end)', - 'total_available_budget_in_currency' => 'Skupni razpoložljivi proračun v :currency', - 'see_below' => 'glej spodaj', - 'create_new_budget' => 'Ustvari nov proračun', - 'store_new_budget' => 'Shrani nov proračun', - 'stored_new_budget' => 'Nov proračun ":name" je shranjen', - 'available_between' => 'Na voljo med :start in :end', - 'transactionsWithoutBudget' => 'Stroški brez proračuna', - 'transactions_no_budget' => 'Stroški brez proračuna med :start in :end', - 'spent_between' => 'Že porabljeno med :start in :end', - 'spent_between_left' => 'Porabljeno :spent med :start in :end, preostane še :left.', - 'set_available_amount' => 'Nastavi razpoložljivo količino', - 'update_available_amount' => 'Posodobi razpoložljivo količino', - 'ab_basic_modal_explain' => 'S tem obrazcem navedite, koliko pričakujete, da boste lahko dodali v proračun (skupaj, v :currency) v navedenem obdobju.', - 'createBudget' => 'Nov proračun', - 'invalid_currency' => 'To je neveljavna valuta', - 'invalid_amount' => 'Prosim, vnesite znesek', - 'set_ab' => 'Razpoložljivi proračunski znesek je nastavljen', - 'updated_ab' => 'Razpoložljivi proračunski znesek je posodobljen', - 'deleted_ab' => 'Razpoložljivi znesek proračuna je bil izbrisan', - 'deleted_bl' => 'Proračunski znesek je bil odstranjen', - 'alt_currency_ab_create' => 'Nastavite razpoložljivi proračun v drugi valuti', - 'bl_create_btn' => 'Nastavite proračun v drugi valuti', - 'inactiveBudgets' => 'Neaktivni proračuni', - 'without_budget_between' => 'Transakcije brez proračuna med :start in :end', - 'delete_budget' => 'Izbriši proračun ":name"', - 'deleted_budget' => 'Proračun ":name" izbrisan', - 'edit_budget' => 'Uredi proračun ":name"', - 'updated_budget' => 'Proračun ":name" je posodobljen', - 'update_amount' => 'Posodobi znesek', - 'update_budget' => 'Posodobi proračun', - 'update_budget_amount_range' => 'Posodobi (pričakovani) razpoložljivi znesek med :start in :end', - 'set_budget_limit_title' => 'Nastavite proračunski znesek za proračun :budget med :start in :end', - 'set_budget_limit' => 'Določite proračunski znesek', - 'budget_period_navigator' => 'Obdobje', - 'info_on_available_amount' => 'Kaj imam na voljo?', - 'available_amount_indication' => 'Uporabi te zneske za informacijo kakšen bi bil skupni proračun.', - 'suggested' => 'Predlagano', - 'average_between' => 'Povprečno med :start in :end', - 'transferred_in' => 'Preneseno (v)', - 'transferred_away' => 'Preneseno (iz)', - 'auto_budget_none' => 'Brez samodejnega proračuna', - 'auto_budget_reset' => 'Nastavite fiksni znesek za vsako obdobje', - 'auto_budget_rollover' => 'Dodajte znesek za vsako obdobje', - 'auto_budget_adjusted' => 'Vsako obdobje dodajte znesek in popravite preveliko porabo', - 'auto_budget_period_daily' => 'Dnevno', - 'auto_budget_period_weekly' => 'Tedensko', - 'auto_budget_period_monthly' => 'Mesečno', - 'auto_budget_period_quarterly' => 'Četrtletno', - 'auto_budget_period_half_year' => 'Polletno', - 'auto_budget_period_yearly' => 'Letno', - 'auto_budget_help' => 'Več o tej funkciji lahko preberete v pomoči. Kliknite ikono zgoraj desno (?).', - 'auto_budget_reset_icon' => 'Ta proračun bo nastavljen periodično', - 'auto_budget_rollover_icon' => 'Proračunski znesek se bo občasno povečeval', - 'auto_budget_adjusted_icon' => 'Proračunski znesek se bo občasno povečeval in popravljal za prekomerno porabo', - 'remove_budgeted_amount' => 'Odstrani proračunski znesek v :currency', + 'daily_budgets' => 'Dnevni proračuni', + 'weekly_budgets' => 'Tedenski proračuni', + 'monthly_budgets' => 'Mesečni proračuni', + 'quarterly_budgets' => 'Četrtletni proračuni', + 'half_year_budgets' => 'Polletni proračuni', + 'yearly_budgets' => 'Letni proračuni', + 'other_budgets' => 'Časovni proračuni po meri', + 'budget_limit_not_in_range' => 'Ta znesek velja od :start do :end:', + 'total_available_budget' => 'Skupni razpoložljivi proračun (med :start in :end)', + 'total_available_budget_in_currency' => 'Skupni razpoložljivi proračun v :currency', + 'see_below' => 'glej spodaj', + 'create_new_budget' => 'Ustvari nov proračun', + 'store_new_budget' => 'Shrani nov proračun', + 'stored_new_budget' => 'Nov proračun ":name" je shranjen', + 'available_between' => 'Na voljo med :start in :end', + 'transactionsWithoutBudget' => 'Stroški brez proračuna', + 'transactions_no_budget' => 'Stroški brez proračuna med :start in :end', + 'spent_between' => 'Že porabljeno med :start in :end', + 'spent_between_left' => 'Porabljeno :spent med :start in :end, preostane še :left.', + 'set_available_amount' => 'Nastavi razpoložljivo količino', + 'update_available_amount' => 'Posodobi razpoložljivo količino', + 'ab_basic_modal_explain' => 'S tem obrazcem navedite, koliko pričakujete, da boste lahko dodali v proračun (skupaj, v :currency) v navedenem obdobju.', + 'createBudget' => 'Nov proračun', + 'invalid_currency' => 'To je neveljavna valuta', + 'invalid_amount' => 'Prosim, vnesite znesek', + 'set_ab' => 'Razpoložljivi proračunski znesek je nastavljen', + 'updated_ab' => 'Razpoložljivi proračunski znesek je posodobljen', + 'deleted_ab' => 'Razpoložljivi znesek proračuna je bil izbrisan', + 'deleted_bl' => 'Proračunski znesek je bil odstranjen', + 'alt_currency_ab_create' => 'Nastavite razpoložljivi proračun v drugi valuti', + 'bl_create_btn' => 'Nastavite proračun v drugi valuti', + 'inactiveBudgets' => 'Neaktivni proračuni', + 'without_budget_between' => 'Transakcije brez proračuna med :start in :end', + 'delete_budget' => 'Izbriši proračun ":name"', + 'deleted_budget' => 'Proračun ":name" izbrisan', + 'edit_budget' => 'Uredi proračun ":name"', + 'updated_budget' => 'Proračun ":name" je posodobljen', + 'update_amount' => 'Posodobi znesek', + 'update_budget' => 'Posodobi proračun', + 'update_budget_amount_range' => 'Posodobi (pričakovani) razpoložljivi znesek med :start in :end', + 'set_budget_limit_title' => 'Nastavite proračunski znesek za proračun :budget med :start in :end', + 'set_budget_limit' => 'Določite proračunski znesek', + 'budget_period_navigator' => 'Obdobje', + 'info_on_available_amount' => 'Kaj imam na voljo?', + 'available_amount_indication' => 'Uporabi te zneske za informacijo kakšen bi bil skupni proračun.', + 'suggested' => 'Predlagano', + 'average_between' => 'Povprečno med :start in :end', + 'transferred_in' => 'Preneseno (v)', + 'transferred_away' => 'Preneseno (iz)', + 'auto_budget_none' => 'Brez samodejnega proračuna', + 'auto_budget_reset' => 'Nastavite fiksni znesek za vsako obdobje', + 'auto_budget_rollover' => 'Dodajte znesek za vsako obdobje', + 'auto_budget_adjusted' => 'Vsako obdobje dodajte znesek in popravite preveliko porabo', + 'auto_budget_period_daily' => 'Dnevno', + 'auto_budget_period_weekly' => 'Tedensko', + 'auto_budget_period_monthly' => 'Mesečno', + 'auto_budget_period_quarterly' => 'Četrtletno', + 'auto_budget_period_half_year' => 'Polletno', + 'auto_budget_period_yearly' => 'Letno', + 'auto_budget_help' => 'Več o tej funkciji lahko preberete v pomoči. Kliknite ikono zgoraj desno (?).', + 'auto_budget_reset_icon' => 'Ta proračun bo nastavljen periodično', + 'auto_budget_rollover_icon' => 'Proračunski znesek se bo občasno povečeval', + 'auto_budget_adjusted_icon' => 'Proračunski znesek se bo občasno povečeval in popravljal za prekomerno porabo', + 'remove_budgeted_amount' => 'Odstrani proračunski znesek v :currency', // bills: - 'subscription' => 'Naročnina', - 'not_expected_period' => 'Ni pričakovano v tem obdobju', - 'subscriptions_in_group' => 'Naročnine v skupini "%{title}"', - 'subscr_expected_x_times' => 'Pričakujte, da boste v tem obdobju plačali %{amount} %{times}-krat', - 'not_or_not_yet' => 'Ne (še)', - 'visit_bill' => 'Obiščite račun ":name" v Firefly III', - 'match_between_amounts' => 'Račun se ujema s transakcijami med :low in :high.', - 'running_again_loss' => 'Prej povezane transakcije s tem računom lahko izgubijo povezavo, če se (ne več) ujemajo s pravilom(-i).', - 'bill_related_rules' => 'Pravila povezana s tem računom', - 'repeats' => 'Ponovitve', - 'bill_end_date_help' => 'Izbirno polje. Račun naj bi se končal na ta datum.', - 'bill_extension_date_help' => 'Izbirno polje. Račun je treba podaljšati (ali preklicati) na ali pred tem datumom.', - 'bill_end_index_line' => 'Ta račun se konča dne :date', - 'bill_extension_index_line' => 'Ta račun je treba podaljšati ali preklicati dne :date', - 'connected_journals' => 'Povezane transakcije', - 'auto_match_on' => 'Samodejno povezano s Firefly III', - 'auto_match_off' => 'Ne povezano samodejno s Firefly III', - 'next_expected_match' => 'Naslednje pričakovano ujemanje', - 'delete_bill' => 'Izbriši račun ":name"', - 'deleted_bill' => 'Račun ":name" je izbrisan', - 'edit_bill' => 'Uredi račun ":name"', - 'more' => 'Več', - 'rescan_old' => 'Znova zaženite pravila za vse transakcije', - 'update_bill' => 'Posodobi račun', - 'updated_bill' => 'Račun ":name" je posodobljen', - 'store_new_bill' => 'Shrani nov račun', - 'stored_new_bill' => 'Nov račun ":name" je shranjen', - 'cannot_scan_inactive_bill' => 'Neaktivnih računom ni mogoče pregledati.', - 'rescanned_bill' => 'Ponovno pregledal vse in povezal :count transakcije z računom.|Znova pregledal vse in povezal :count transakcij z računom.', - 'average_bill_amount_year' => 'Povprečen znesek računa (:year)', - 'average_bill_amount_overall' => 'Povprečen znesek računa (vseh)', - 'bill_is_active' => 'Račun je aktiven', - 'bill_expected_between' => 'Pričakovano med :start in :end', - 'bill_will_automatch' => 'Račun bo samodejno povezan z ujemajočimi se transakcijami', - 'skips_over' => 'preskoči', - 'bill_store_error' => 'Pri shranjevanju novega računa je prišlo do nepričakovane napake. Preverite datoteke dnevnika', - 'list_inactive_rule' => 'neaktivno pravilo', - 'bill_edit_rules' => 'Firefly III bo poskušal urediti tudi pravilo v zvezi s tem predlogom pravila. Če ste to pravilo uredili sami, Firefly III ne bo spremenil ničesar.|Firefly III bo poskušal urediti tudi pravila :count, povezana s tem računom. Če pa ste ta pravila uredili sami, Firefly III ne bo spremenil ničesar.', - 'bill_expected_date' => 'Pričakovano :date', - 'bill_expected_date_js' => 'Pričakovano {date}', - 'expected_amount' => '(Pričakovan) znesek', - 'bill_paid_on' => 'Plačano na {date}', - 'bill_repeats_weekly' => 'Ponovi vsak teden', - 'bill_repeats_monthly' => 'Ponavlja se mesečno', - 'bill_repeats_quarterly' => 'Ponavlja se četrtletno', - 'bill_repeats_half-year' => 'Ponavlja se vsake pol leta', - 'bill_repeats_yearly' => 'Ponovi se vsako leto', - 'bill_repeats_weekly_other' => 'Ponavlja se vsak drugi teden', - 'bill_repeats_monthly_other' => 'Ponavlja se vsak drugi mesec', - 'bill_repeats_quarterly_other' => 'Ponovi vsako drugo četrtletje', - 'bill_repeats_half-year_other' => 'Ponovi se vsako leto', - 'bill_repeats_yearly_other' => 'Ponavlja se vsako drugo leto', - 'bill_repeats_weekly_skip' => 'Ponovi se vsakih {skip} tednov', - 'bill_repeats_monthly_skip' => 'Ponovi se vsakih {skip} mesecev', - 'bill_repeats_quarterly_skip' => 'Ponovi se vsakih {skip} četrtletij', - 'bill_repeats_half-year_skip' => 'Ponovi se vsake {skip} pol leta', - 'bill_repeats_yearly_skip' => 'Ponovi se vsakih {skip} let', - 'subscriptions' => 'Naročnine', - 'go_to_subscriptions' => 'Pojdite na svoje naročnine', - 'forever' => 'V nedolged', - 'extension_date_is' => 'Datum podaljšanja je {date}', + 'subscription' => 'Naročnina', + 'not_expected_period' => 'Ni pričakovano v tem obdobju', + 'subscriptions_in_group' => 'Naročnine v skupini "%{title}"', + 'subscr_expected_x_times' => 'Pričakujte, da boste v tem obdobju plačali %{amount} %{times}-krat', + 'not_or_not_yet' => 'Ne (še)', + 'visit_bill' => 'Obiščite račun ":name" v Firefly III', + 'match_between_amounts' => 'Račun se ujema s transakcijami med :low in :high.', + 'running_again_loss' => 'Prej povezane transakcije s tem računom lahko izgubijo povezavo, če se (ne več) ujemajo s pravilom(-i).', + 'bill_related_rules' => 'Pravila povezana s tem računom', + 'repeats' => 'Ponovitve', + 'bill_end_date_help' => 'Izbirno polje. Račun naj bi se končal na ta datum.', + 'bill_extension_date_help' => 'Izbirno polje. Račun je treba podaljšati (ali preklicati) na ali pred tem datumom.', + 'bill_end_index_line' => 'Ta račun se konča dne :date', + 'bill_extension_index_line' => 'Ta račun je treba podaljšati ali preklicati dne :date', + 'connected_journals' => 'Povezane transakcije', + 'auto_match_on' => 'Samodejno povezano s Firefly III', + 'auto_match_off' => 'Ne povezano samodejno s Firefly III', + 'next_expected_match' => 'Naslednje pričakovano ujemanje', + 'delete_bill' => 'Izbriši račun ":name"', + 'deleted_bill' => 'Račun ":name" je izbrisan', + 'edit_bill' => 'Uredi račun ":name"', + 'more' => 'Več', + 'rescan_old' => 'Znova zaženite pravila za vse transakcije', + 'update_bill' => 'Posodobi račun', + 'updated_bill' => 'Račun ":name" je posodobljen', + 'store_new_bill' => 'Shrani nov račun', + 'stored_new_bill' => 'Nov račun ":name" je shranjen', + 'cannot_scan_inactive_bill' => 'Neaktivnih računom ni mogoče pregledati.', + 'rescanned_bill' => 'Ponovno pregledal vse in povezal :count transakcije z računom.|Znova pregledal vse in povezal :count transakcij z računom.', + 'average_bill_amount_year' => 'Povprečen znesek računa (:year)', + 'average_bill_amount_overall' => 'Povprečen znesek računa (vseh)', + 'bill_is_active' => 'Račun je aktiven', + 'bill_expected_between' => 'Pričakovano med :start in :end', + 'bill_will_automatch' => 'Račun bo samodejno povezan z ujemajočimi se transakcijami', + 'skips_over' => 'preskoči', + 'bill_store_error' => 'Pri shranjevanju novega računa je prišlo do nepričakovane napake. Preverite datoteke dnevnika', + 'list_inactive_rule' => 'neaktivno pravilo', + 'bill_edit_rules' => 'Firefly III bo poskušal urediti tudi pravilo v zvezi s tem predlogom pravila. Če ste to pravilo uredili sami, Firefly III ne bo spremenil ničesar.|Firefly III bo poskušal urediti tudi pravila :count, povezana s tem računom. Če pa ste ta pravila uredili sami, Firefly III ne bo spremenil ničesar.', + 'bill_expected_date' => 'Pričakovano :date', + 'bill_expected_date_js' => 'Pričakovano {date}', + 'expected_amount' => '(Pričakovan) znesek', + 'bill_paid_on' => 'Plačano na {date}', + 'bill_repeats_weekly' => 'Ponovi vsak teden', + 'bill_repeats_monthly' => 'Ponavlja se mesečno', + 'bill_repeats_quarterly' => 'Ponavlja se četrtletno', + 'bill_repeats_half-year' => 'Ponavlja se vsake pol leta', + 'bill_repeats_yearly' => 'Ponovi se vsako leto', + 'bill_repeats_weekly_other' => 'Ponavlja se vsak drugi teden', + 'bill_repeats_monthly_other' => 'Ponavlja se vsak drugi mesec', + 'bill_repeats_quarterly_other' => 'Ponovi vsako drugo četrtletje', + 'bill_repeats_half-year_other' => 'Ponovi se vsako leto', + 'bill_repeats_yearly_other' => 'Ponavlja se vsako drugo leto', + 'bill_repeats_weekly_skip' => 'Ponovi se vsakih {skip} tednov', + 'bill_repeats_monthly_skip' => 'Ponovi se vsakih {skip} mesecev', + 'bill_repeats_quarterly_skip' => 'Ponovi se vsakih {skip} četrtletij', + 'bill_repeats_half-year_skip' => 'Ponovi se vsake {skip} pol leta', + 'bill_repeats_yearly_skip' => 'Ponovi se vsakih {skip} let', + 'subscriptions' => 'Naročnine', + 'go_to_subscriptions' => 'Pojdite na svoje naročnine', + 'forever' => 'V nedolged', + 'extension_date_is' => 'Datum podaljšanja je {date}', // accounts: - 'i_am_owed_amount' => 'Dolžan sem znesek', - 'i_owe_amount' => 'Dolgujem znesek', - 'inactive_account_link' => 'Imate :count neaktivnih (arhiviranih) računov, ki si jih lahko ogledate na tej ločeni strani.|Imate :count neaktivnih (arhiviranih) računov, ki si jih lahko ogledate na tej ločeni strani.', - 'all_accounts_inactive' => 'To so vaši neaktivni računi.', - 'active_account_link' => 'Ta povezava vodi nazaj do vaših aktivnih računov.', - 'account_missing_transaction' => 'Računa #:id (":name") si ni mogoče neposredno ogledati, vendar Firefly-u manjkajo informacije o preusmeritvi.', - 'cc_monthly_payment_date_help' => 'Izberite katero koli leto in kateri koli mesec, vseeno bo prezrt. Pomemben je le dan v mesecu.', - 'details_for_asset' => 'Podrobnosti za račun sredstev ":name"', - 'details_for_expense' => 'Podrobnosti računa stroškov ":name"', - 'details_for_revenue' => 'Podrobnosti za račun prihodkov ":name"', - 'details_for_cash' => 'Podrobnosti za gotovinski račun ":name"', - 'store_new_asset_account' => 'Shrani nov račun sredstev', - 'store_new_expense_account' => 'Shrani nov račun stroškov', - 'store_new_revenue_account' => 'Shrani nov račun prihodkov', - 'edit_asset_account' => 'Uredi račun sredstev ":name"', - 'edit_expense_account' => 'Uredi račun stroškov ":name"', - 'edit_revenue_account' => 'Uredi račun prihodkov ":name"', - 'delete_asset_account' => 'Izbriši račun sredstev ":name"', - 'delete_expense_account' => 'Izbriši račun stroškov ":name"', - 'delete_revenue_account' => 'Izbriši račun prihodkov ":name"', - 'delete_liabilities_account' => 'Izbriši obveznost ":name"', - 'asset_deleted' => 'Račun sredstev ":name" je bil uspešno izbrisan', - 'account_deleted' => 'Uspešno izbrisan račun ":name"', - 'expense_deleted' => 'Račun stroškov ":name" je bil uspešno izbrisan', - 'revenue_deleted' => 'Račun prihodkov ":name" je bil uspešno izbrisan', - 'update_asset_account' => 'Posodobite račun sredstev', - 'update_undefined_account' => 'Posodobi račun', - 'update_liabilities_account' => 'Uredi obveznost', - 'update_expense_account' => 'Posodobi račun stroškov', - 'update_revenue_account' => 'Posodobi račun prihodkov', - 'make_new_asset_account' => 'Ustvari nov račun sredstev', - 'make_new_expense_account' => 'Ustvari nov račun stroškov', - 'make_new_revenue_account' => 'Ustvari nov račun prihodkov', - 'make_new_liabilities_account' => 'Ustvari novo obveznost', - 'asset_accounts' => 'Računi sredstev', - 'undefined_accounts' => 'Računi', - 'asset_accounts_inactive' => 'Računi sredstev (neaktivno)', - 'expense_account' => 'Račun stroškov', - 'expense_accounts' => 'Računi stroškov', - 'expense_accounts_inactive' => 'Računi sredstev (neaktivno)', - 'revenue_account' => 'Račun prihodkov', - 'revenue_accounts' => 'Računi prihodkov', - 'revenue_accounts_inactive' => 'Računi prihodkov (neaktivno)', - 'cash_accounts' => 'Gotovinski računi', - 'Cash account' => 'Gotovinski račun', - 'liabilities_accounts' => 'Obveznosti', - 'liabilities_accounts_inactive' => 'Obveznosti (neaktivno)', - 'reconcile_account' => 'Uskladi račun: ":account"', - 'overview_of_reconcile_modal' => 'Pregled usklajevanja', - 'delete_reconciliation' => 'Izbriši uskladitev', - 'update_reconciliation' => 'Posodobi uskladitev', - 'amount_cannot_be_zero' => 'Znesek ne sme biti nič', - 'end_of_reconcile_period' => 'Konec obdobja usklajevanja :period', - 'start_of_reconcile_period' => 'Začetek obdobja usklajevanja :period', - 'start_balance' => 'Začetno stanje', - 'end_balance' => 'Končno stanje', - 'update_balance_dates_instruction' => 'Zgornje zneske in datume uskladite z bančnim izpiskom in pritisnite »Začni usklajevanje«', - 'select_transactions_instruction' => 'Izberite transakcije, ki so prikazane v bančnem izpisku.', - 'select_range_and_balance' => 'Najprej preverite obseg datuma in stanje. Nato pritisnite »Začni usklajevanje«', - 'date_change_instruction' => 'Če zdaj spremenite časovno obdobje, se celotna zgodovina izgubi.', - 'update_selection' => 'Posodobi izbor', - 'store_reconcile' => 'Shrani uskladitev', - 'reconciliation_transaction' => 'Uskladitvena transakcija', - 'Reconciliation' => 'Usklajevanje', - 'reconciliation' => 'Usklajevanje', - 'reconcile_options' => 'Možnosti usklajevanja', - 'reconcile_range' => 'Obseg usklajevanja', - 'start_reconcile' => 'Začni usklajevanje', - 'cash_account_type' => 'Gotovina', - 'cash' => 'gotovina', - 'cant_find_redirect_account' => 'Firefly III vas je poskušal preusmeriti, a ni mogel. Oprostite za to. Nazaj na kazalo.', - 'account_type' => 'Vrsta računa', - 'save_transactions_by_moving' => 'Shranite to transakcijo tako, da jo premaknete na drug račun:|Shranite te transakcije tako, da jih premaknete na drug račun:', - 'save_transactions_by_moving_js' => 'Brez transakcij|Shranite to transakcijo tako, da jo premaknete na drug račun. |Shranite te transakcije tako, da jih premaknete na drug račun.', - 'stored_new_account' => 'Nov račun ":name" je shranjen!', - 'stored_new_account_js' => 'Nov račun "{name}" je shranjen!', - 'updated_account' => 'Račun ":name" je posodobljen', - 'updated_account_js' => 'Posodobljen račun "{title}".', - 'credit_card_options' => 'Možnosti kreditne kartice', - 'no_transactions_account' => 'Ni transakcij (za to obdobje) za račun sredstev ":name".', - 'no_transactions_period' => 'V tem obdobju ni transakcij.', - 'no_data_for_chart' => 'Za ustvarjanje tega diagrama (še) ni dovolj informacij.', - 'select_at_least_one_account' => 'Prosim izberite vsaj en račun sredstev', - 'select_at_least_one_category' => 'Prosim izberite vsaj eno kategorijo', - 'select_at_least_one_budget' => 'Prosim izberite vsaj en proračun', - 'select_at_least_one_tag' => 'Prosim izberite vsaj eno oznako', - 'select_at_least_one_expense' => 'Prosim izberite vsaj eno kombinacijo računov za stroške/prihodke. Če jih nimate (prazen seznam), to poročilo ni na voljo.', - 'account_default_currency' => 'To bo privzeta valuta tega računa.', - 'reconcile_has_more' => 'V Firefly III glavni knjigi je več denarja, kot vaša banka trdi, da bi morali imeti. Obstaja več možnosti. Izberi, kaj želiš storiti. Nato pritisni "Potrdi usklajevanje".', - 'reconcile_has_less' => 'V Firefly III glavni knjigi je manj denarja, kot vaša banka trdi, da bi morali imeti. Obstaja več možnosti. Izberite, kaj želite storiti. Nato pritisnite "Potrdi usklajevanje".', - 'reconcile_is_equal' => 'Firefly III glavna knjiga in vaši bančni izpiski se ujemajo. Ničesar vam ni treba storiti. Pritisnite »Potrdi usklajevanje«, da potrdite vnos.', - 'create_pos_reconcile_transaction' => 'Počisti izbrane transakcije in ustvarite popravek, ki bo dodal :amount na ta račun sredstev.', - 'create_neg_reconcile_transaction' => 'Počisti izbrane transakcije in ustvari popravek, ki bo odvzel :amount s tega računa sredstev.', - 'reconcile_do_nothing' => 'Počisti izbrane transakcije, vendar jih ne popravi.', - 'reconcile_go_back' => 'Popravke lahko kadar koli uredite ali izbrišete.', - 'must_be_asset_account' => 'Uskladite lahko samo račune sredstev', - 'reconciliation_stored' => 'Usklajevanje je shranjeno', - 'reconciliation_error' => 'Zaradi napake so bile transakcije označene kot usklajene, vendar popravek ni bil shranjen: :error.', - 'reconciliation_transaction_title' => 'Uskladitev (:from do :to)', - 'sum_of_reconciliation' => 'Vsota uskladitev', - 'reconcile_this_account' => 'Uskladi ta račun', - 'reconcile' => 'Uskladi', - 'show' => 'Prikaži', - 'confirm_reconciliation' => 'Potrdite uskladitev', - 'submitted_start_balance' => 'Predloženo začetno stanje', - 'selected_transactions' => 'Izbrane transakcije (:count)', - 'already_cleared_transactions' => 'Že obračunane transakcije (:count)', - 'submitted_end_balance' => 'Predloženo končno stanje', - 'initial_balance_description' => 'Začetno stanje za ":account"', - 'liability_credit_description' => 'Dobropis obveznosti za ":account"', - 'interest_calc_' => 'neznano', - 'interest_calc_daily' => 'Na dan', - 'interest_calc_monthly' => 'Na mesec', - 'interest_calc_yearly' => 'Na leto', - 'interest_calc_weekly' => 'Tedensko', - 'interest_calc_half-year' => 'Na pol leta', - 'interest_calc_quarterly' => 'Na četrtletje', - 'initial_balance_account' => 'Začetno stanje na računu :account', - 'list_options' => 'Seznam možnosti', + 'i_am_owed_amount' => 'Dolžan sem znesek', + 'i_owe_amount' => 'Dolgujem znesek', + 'inactive_account_link' => 'Imate :count neaktivnih (arhiviranih) računov, ki si jih lahko ogledate na tej ločeni strani.|Imate :count neaktivnih (arhiviranih) računov, ki si jih lahko ogledate na tej ločeni strani.', + 'all_accounts_inactive' => 'To so vaši neaktivni računi.', + 'active_account_link' => 'Ta povezava vodi nazaj do vaših aktivnih računov.', + 'account_missing_transaction' => 'Računa #:id (":name") si ni mogoče neposredno ogledati, vendar Firefly-u manjkajo informacije o preusmeritvi.', + 'cc_monthly_payment_date_help' => 'Izberite katero koli leto in kateri koli mesec, vseeno bo prezrt. Pomemben je le dan v mesecu.', + 'details_for_asset' => 'Podrobnosti za račun sredstev ":name"', + 'details_for_expense' => 'Podrobnosti računa stroškov ":name"', + 'details_for_revenue' => 'Podrobnosti za račun prihodkov ":name"', + 'details_for_cash' => 'Podrobnosti za gotovinski račun ":name"', + 'store_new_asset_account' => 'Shrani nov račun sredstev', + 'store_new_expense_account' => 'Shrani nov račun stroškov', + 'store_new_revenue_account' => 'Shrani nov račun prihodkov', + 'edit_asset_account' => 'Uredi račun sredstev ":name"', + 'edit_expense_account' => 'Uredi račun stroškov ":name"', + 'edit_revenue_account' => 'Uredi račun prihodkov ":name"', + 'delete_asset_account' => 'Izbriši račun sredstev ":name"', + 'delete_expense_account' => 'Izbriši račun stroškov ":name"', + 'delete_revenue_account' => 'Izbriši račun prihodkov ":name"', + 'delete_liabilities_account' => 'Izbriši obveznost ":name"', + 'asset_deleted' => 'Račun sredstev ":name" je bil uspešno izbrisan', + 'account_deleted' => 'Uspešno izbrisan račun ":name"', + 'expense_deleted' => 'Račun stroškov ":name" je bil uspešno izbrisan', + 'revenue_deleted' => 'Račun prihodkov ":name" je bil uspešno izbrisan', + 'update_asset_account' => 'Posodobite račun sredstev', + 'update_undefined_account' => 'Posodobi račun', + 'update_liabilities_account' => 'Uredi obveznost', + 'update_expense_account' => 'Posodobi račun stroškov', + 'update_revenue_account' => 'Posodobi račun prihodkov', + 'make_new_asset_account' => 'Ustvari nov račun sredstev', + 'make_new_expense_account' => 'Ustvari nov račun stroškov', + 'make_new_revenue_account' => 'Ustvari nov račun prihodkov', + 'make_new_liabilities_account' => 'Ustvari novo obveznost', + 'asset_accounts' => 'Računi sredstev', + 'undefined_accounts' => 'Računi', + 'asset_accounts_inactive' => 'Računi sredstev (neaktivno)', + 'expense_account' => 'Račun stroškov', + 'expense_accounts' => 'Računi stroškov', + 'expense_accounts_inactive' => 'Računi sredstev (neaktivno)', + 'revenue_account' => 'Račun prihodkov', + 'revenue_accounts' => 'Računi prihodkov', + 'revenue_accounts_inactive' => 'Računi prihodkov (neaktivno)', + 'cash_accounts' => 'Gotovinski računi', + 'Cash account' => 'Gotovinski račun', + 'liabilities_accounts' => 'Obveznosti', + 'liabilities_accounts_inactive' => 'Obveznosti (neaktivno)', + 'reconcile_account' => 'Uskladi račun: ":account"', + 'overview_of_reconcile_modal' => 'Pregled usklajevanja', + 'delete_reconciliation' => 'Izbriši uskladitev', + 'update_reconciliation' => 'Posodobi uskladitev', + 'amount_cannot_be_zero' => 'Znesek ne sme biti nič', + 'end_of_reconcile_period' => 'Konec obdobja usklajevanja :period', + 'start_of_reconcile_period' => 'Začetek obdobja usklajevanja :period', + 'start_balance' => 'Začetno stanje', + 'end_balance' => 'Končno stanje', + 'update_balance_dates_instruction' => 'Zgornje zneske in datume uskladite z bančnim izpiskom in pritisnite »Začni usklajevanje«', + 'select_transactions_instruction' => 'Izberite transakcije, ki so prikazane v bančnem izpisku.', + 'select_range_and_balance' => 'Najprej preverite obseg datuma in stanje. Nato pritisnite »Začni usklajevanje«', + 'date_change_instruction' => 'Če zdaj spremenite časovno obdobje, se celotna zgodovina izgubi.', + 'update_selection' => 'Posodobi izbor', + 'store_reconcile' => 'Shrani uskladitev', + 'reconciliation_transaction' => 'Uskladitvena transakcija', + 'Reconciliation' => 'Usklajevanje', + 'reconciliation' => 'Usklajevanje', + 'reconcile_options' => 'Možnosti usklajevanja', + 'reconcile_range' => 'Obseg usklajevanja', + 'start_reconcile' => 'Začni usklajevanje', + 'cash_account_type' => 'Gotovina', + 'cash' => 'gotovina', + 'cant_find_redirect_account' => 'Firefly III vas je poskušal preusmeriti, a ni mogel. Oprostite za to. Nazaj na kazalo.', + 'account_type' => 'Vrsta računa', + 'save_transactions_by_moving' => 'Shranite to transakcijo tako, da jo premaknete na drug račun:|Shranite te transakcije tako, da jih premaknete na drug račun:', + 'save_transactions_by_moving_js' => 'Brez transakcij|Shranite to transakcijo tako, da jo premaknete na drug račun. |Shranite te transakcije tako, da jih premaknete na drug račun.', + 'stored_new_account' => 'Nov račun ":name" je shranjen!', + 'stored_new_account_js' => 'Nov račun "{name}" je shranjen!', + 'updated_account' => 'Račun ":name" je posodobljen', + 'updated_account_js' => 'Posodobljen račun "{title}".', + 'credit_card_options' => 'Možnosti kreditne kartice', + 'no_transactions_account' => 'Ni transakcij (za to obdobje) za račun sredstev ":name".', + 'no_transactions_period' => 'V tem obdobju ni transakcij.', + 'no_data_for_chart' => 'Za ustvarjanje tega diagrama (še) ni dovolj informacij.', + 'select_at_least_one_account' => 'Prosim izberite vsaj en račun sredstev', + 'select_at_least_one_category' => 'Prosim izberite vsaj eno kategorijo', + 'select_at_least_one_budget' => 'Prosim izberite vsaj en proračun', + 'select_at_least_one_tag' => 'Prosim izberite vsaj eno oznako', + 'select_at_least_one_expense' => 'Prosim izberite vsaj eno kombinacijo računov za stroške/prihodke. Če jih nimate (prazen seznam), to poročilo ni na voljo.', + 'account_default_currency' => 'To bo privzeta valuta tega računa.', + 'reconcile_has_more' => 'V Firefly III glavni knjigi je več denarja, kot vaša banka trdi, da bi morali imeti. Obstaja več možnosti. Izberi, kaj želiš storiti. Nato pritisni "Potrdi usklajevanje".', + 'reconcile_has_less' => 'V Firefly III glavni knjigi je manj denarja, kot vaša banka trdi, da bi morali imeti. Obstaja več možnosti. Izberite, kaj želite storiti. Nato pritisnite "Potrdi usklajevanje".', + 'reconcile_is_equal' => 'Firefly III glavna knjiga in vaši bančni izpiski se ujemajo. Ničesar vam ni treba storiti. Pritisnite »Potrdi usklajevanje«, da potrdite vnos.', + 'create_pos_reconcile_transaction' => 'Počisti izbrane transakcije in ustvarite popravek, ki bo dodal :amount na ta račun sredstev.', + 'create_neg_reconcile_transaction' => 'Počisti izbrane transakcije in ustvari popravek, ki bo odvzel :amount s tega računa sredstev.', + 'reconcile_do_nothing' => 'Počisti izbrane transakcije, vendar jih ne popravi.', + 'reconcile_go_back' => 'Popravke lahko kadar koli uredite ali izbrišete.', + 'must_be_asset_account' => 'Uskladite lahko samo račune sredstev', + 'reconciliation_stored' => 'Usklajevanje je shranjeno', + 'reconciliation_error' => 'Zaradi napake so bile transakcije označene kot usklajene, vendar popravek ni bil shranjen: :error.', + 'reconciliation_transaction_title' => 'Uskladitev (:from do :to)', + 'sum_of_reconciliation' => 'Vsota uskladitev', + 'reconcile_this_account' => 'Uskladi ta račun', + 'reconcile' => 'Uskladi', + 'show' => 'Prikaži', + 'confirm_reconciliation' => 'Potrdite uskladitev', + 'submitted_start_balance' => 'Predloženo začetno stanje', + 'selected_transactions' => 'Izbrane transakcije (:count)', + 'already_cleared_transactions' => 'Že obračunane transakcije (:count)', + 'submitted_end_balance' => 'Predloženo končno stanje', + 'initial_balance_description' => 'Začetno stanje za ":account"', + 'liability_credit_description' => 'Dobropis obveznosti za ":account"', + 'interest_calc_' => 'neznano', + 'interest_calc_daily' => 'Na dan', + 'interest_calc_monthly' => 'Na mesec', + 'interest_calc_yearly' => 'Na leto', + 'interest_calc_weekly' => 'Tedensko', + 'interest_calc_half-year' => 'Na pol leta', + 'interest_calc_quarterly' => 'Na četrtletje', + 'initial_balance_account' => 'Začetno stanje na računu :account', + 'list_options' => 'Seznam možnosti', // categories: - 'new_category' => 'Nova kategorija', - 'create_new_category' => 'Ustvari novo kategorijo', - 'without_category' => 'Brez kategorije', - 'update_category' => 'Posodobi kategorije', - 'updated_category' => 'Kategorija ":name" je posodobljena', - 'categories' => 'Kategorije', - 'edit_category' => 'Uredi kategorijo ":name"', - 'no_category' => '(brez kategorije)', - 'unknown_category_plain' => 'Brez kategorije', - 'category' => 'Kategorija', - 'delete_category' => 'Izbriši kategorijo ":name"', - 'deleted_category' => 'Kategorija ":name" je izbrisana', - 'store_category' => 'Shrani novo kategorijo', - 'stored_category' => 'Nova kategorija ":name" je shranjena', - 'without_category_between' => 'Brez kategorije med :start in :end', + 'new_category' => 'Nova kategorija', + 'create_new_category' => 'Ustvari novo kategorijo', + 'without_category' => 'Brez kategorije', + 'update_category' => 'Posodobi kategorije', + 'updated_category' => 'Kategorija ":name" je posodobljena', + 'categories' => 'Kategorije', + 'edit_category' => 'Uredi kategorijo ":name"', + 'no_category' => '(brez kategorije)', + 'unknown_category_plain' => 'Brez kategorije', + 'category' => 'Kategorija', + 'delete_category' => 'Izbriši kategorijo ":name"', + 'deleted_category' => 'Kategorija ":name" je izbrisana', + 'store_category' => 'Shrani novo kategorijo', + 'stored_category' => 'Nova kategorija ":name" je shranjena', + 'without_category_between' => 'Brez kategorije med :start in :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Počakajte, da se obrazec naloži', - 'wait_loading_data' => 'Počakajte, da se vaši podatki naložijo...', - 'wait_attachments' => 'Počakajte, da se priloge naložijo.', - 'errors_upload' => 'Nalaganje ni uspelo. Preverite, ali je v konzoli brskalnika prišlo do napake.', - 'amount_foreign_if' => 'Znesek v tuji valuti, če obstaja', - 'amount_destination_account' => 'Znesek v valuti ciljnega računa', - 'edit_transaction_title' => 'Uredi transakcijo ":description"', - 'unreconcile' => 'Razveljavi uskladitev', - 'update_withdrawal' => 'Posodobi odliv', - 'update_deposit' => 'Posodobi priliv', - 'update_transaction' => 'Posodobi transakcije', - 'update_transfer' => 'Posodobi prenos', - 'updated_withdrawal' => 'Odliv ":description" je posodobljen', - 'updated_deposit' => 'Priliv ":description" je posodobljen', - 'updated_transfer' => 'Prenos ":description" je posodobljen', - 'no_changes_withdrawal' => 'Odliv ":description" ni bil spremenjen.', - 'no_changes_deposit' => 'Priliv ":description" ni bil spremenjen.', - 'no_changes_transfer' => 'Prenos ":description" ni bil spremenjen.', - 'delete_withdrawal' => 'Odliv ":description" je izbrisan', - 'delete_deposit' => 'Izbriši priliv ":description"', - 'delete_transfer' => 'Izbriši prenos ":description"', - 'deleted_withdrawal' => 'Odliv ":description" je uspešno izbrisan', - 'deleted_deposit' => 'Priliv ":description" je uspešno izbrisan', - 'deleted_transfer' => 'Prenos ":description" je uspešno izbrisan', - 'deleted_reconciliation' => 'Transakcija usklajevanja ":description" je bila uspešno izbrisana', - 'stored_journal' => 'Nova transakcija ":description" je uspešno ustvarjena', - 'stored_journal_js' => 'Nova transakcija "{{description}}" je uspešno ustvarjena', - 'stored_journal_no_descr' => 'Vaša nova transakcija je uspešno ustvarjena', - 'updated_journal_no_descr' => 'Vaša transakcija je bila uspešno posodobljena', - 'select_transactions' => 'Izberi transakcije', - 'rule_group_select_transactions' => 'Uporabi ":title" za transakcije', - 'rule_select_transactions' => 'Uporabi ":title" za transakcije', - 'stop_selection' => 'Končaj z izbiro transakcij', - 'reconcile_selected' => 'Uskladi', - 'mass_delete_journals' => 'Izbriši število transakcij', - 'mass_edit_journals' => 'Uredi več transakcij', - 'mass_bulk_journals' => 'Množično urejanje transakcij', - 'mass_bulk_journals_explain' => 'Ta obrazec vam omogoča spreminjanje lastnosti spodaj navedenih transakcij v eni obsežni posodobitvi. Vse transakcije v tabeli bodo posodobljene, ko spremenite parametre, ki jih vidite tukaj.', - 'part_of_split' => 'Ta transakcija je del razdeljene transakcije. Če niste izbrali vseh razdelitev, boste morda na koncu spremenili le polovico transakcije.', - 'bulk_set_new_values' => 'S spodnjimi vnosi nastaviš nove vrednosti. Če jih pustiš prazne, bodo za vse prazne. Upoštevajte tudi, da bo proračun dodeljen samo odlivom.', - 'no_bulk_category' => 'Ne posodobi kategorije', - 'no_bulk_budget' => 'Ne posodobi proračuna', - 'no_bulk_tags' => 'Ne posodobi oznak(e)', - 'replace_with_these_tags' => 'Zamenjaj s temi oznakami', - 'append_these_tags' => 'Dodaj te oznake', - 'mass_edit' => 'Uredi izbrano posamično', - 'bulk_edit' => 'Uredi izbrano v večjem obsegu', - 'mass_delete' => 'Izbriši izbrano', - 'cannot_edit_other_fields' => 'Drugih polj ne morete množično urejati, ker ni prostora za prikaz. Če želite urediti ta polja, sledite povezavi in jih uredite posebej.', - 'cannot_change_amount_reconciled' => 'Zneska usklajenih transakcij ne morete spremeniti.', - 'no_budget' => '(brez proračuna)', - 'no_bill' => '(ni računa)', - 'account_per_budget' => 'Porabljeno po proračunu', - 'account_per_category' => 'Račun po kategoriji', - 'create_new_object' => 'Ustvari', - 'empty' => '(prazno)', - 'all_other_budgets' => '(vsi ostali proračuni)', - 'all_other_accounts' => '(vsi ostali računi)', - 'expense_per_source_account' => 'Stroški po računih', - 'expense_per_destination_account' => 'Stroški na ciljnem računu', - 'income_per_destination_account' => 'Dohodek na ciljni račun', - 'spent_in_specific_category' => 'Porabljeno v kategoriji ":category"', - 'earned_in_specific_category' => 'Prisluženo v kategoriji ":category"', - 'spent_in_specific_tag' => 'Porabljeno v oznaki ":tag"', - 'earned_in_specific_tag' => 'Zasluženo v oznaki ":tag"', - 'income_per_source_account' => 'Dohodek na izvorni račun', - 'average_spending_per_destination' => 'Povprečni stroški na ciljni račun', - 'average_spending_per_source' => 'Povprečni stroški na izvorni račun', - 'average_earning_per_source' => 'Povprečni zaslužek na izvorni račun', - 'average_earning_per_destination' => 'Povprečni zaslužek na ciljni račun', - 'account_per_tag' => 'Račun po oznaki', - 'tag_report_expenses_listed_once' => 'Stroški in prihodki niso nikoli navedeni dvakrat. Če ima transakcija več oznak, se lahko prikaže le pod eno od njenih oznak. Morda se zdi, da na tem seznamu manjkajo podatki, vendar bodo zneski pravilni.', - 'double_report_expenses_charted_once' => 'Odhodki in prihodki niso nikoli prikazani dvakrat. Če ima transakcija več oznak, se lahko prikaže le pod eno od njenih oznak. Morda se zdi, da v tem grafikonu manjkajo podatki, vendar bodo zneski pravilni.', - 'tag_report_chart_single_tag' => 'Ta grafikon velja za posamezno oznako. Če ima transakcija več oznak, se lahko to, kar vidite tukaj, odraža tudi v grafikonih drugih oznak.', - 'tag' => 'Oznaka', - 'no_budget_squared' => '(brez proračuna)', - 'perm-delete-many' => 'Brisanje več elementov naenkrat je lahko zelo moteče. Bodite previdni. S te strani lahko izbrišete del razdeljene transakcije, zato bodite previdni.', - 'mass_deleted_transactions_success' => 'Izbrisano :count transakcij.|Izbrisano :count transakcij.', - 'mass_edited_transactions_success' => 'Posodobljeno :count transakcij.|Posodobljeno :count transakcij.', - 'opt_group_' => '(brez tipa računa)', - 'opt_group_no_account_type' => '(brez tipa računa)', - 'opt_group_defaultAsset' => 'Privzeti računi sredstev', - 'opt_group_savingAsset' => 'Varčevalni račun', - 'opt_group_sharedAsset' => 'Skupni računi sredstev', - 'opt_group_ccAsset' => 'Kreditne kartice', - 'opt_group_cashWalletAsset' => 'Gotovina', - 'opt_group_expense_account' => 'Računi odhodkov', - 'opt_group_revenue_account' => 'Računi prihodkov', - 'opt_group_l_Loan' => 'Obveznost: Posojilo', - 'opt_group_cash_account' => 'Gotovinski račun', - 'opt_group_l_Debt' => 'Obveznost: Dolg', - 'opt_group_l_Mortgage' => 'Obveznost: Hipoteka', - 'opt_group_l_Credit card' => 'Obveznost: Kreditna kartica', - 'notes' => 'Opombe', - 'unknown_journal_error' => 'Transakcije ni bilo mogoče shraniti. Preverite datoteke dnevnika.', - 'attachment_not_found' => 'Te priloge ni bilo mogoče najti.', - 'journal_link_bill' => 'Ta transakcija je povezana z računom :name. Če želiš povezavo prekiniti, odstranite kljukico. Uporabite pravila, da jo povežete z drugim računom.', - 'transaction_stored_link' => 'Transakcija št. #{ID} ("{title}") je bila shranjena.', - 'transaction_new_stored_link' => 'Transakcija št. #{ID} je bila shranjena.', - 'transaction_updated_link' => 'Transakcija št. #{ID} ("{title}") je bila posodobljena.', - 'transaction_updated_no_changes' => 'Transakcija št. #{ID} ("{title}") ni prejela nobenih sprememb.', - 'first_split_decides' => 'Prva razdelitev določa vrednost tega polja', - 'first_split_overrules_source' => 'Prva razdelitev lahko razveljavi izvorni račun', - 'first_split_overrules_destination' => 'Prva razdelitev lahko razveljavi ciljni račun', - 'spent_x_of_y' => 'Porabljen {amount} od {total}', + 'wait_loading_transaction' => 'Počakajte, da se obrazec naloži', + 'wait_loading_data' => 'Počakajte, da se vaši podatki naložijo...', + 'wait_attachments' => 'Počakajte, da se priloge naložijo.', + 'errors_upload' => 'Nalaganje ni uspelo. Preverite, ali je v konzoli brskalnika prišlo do napake.', + 'amount_foreign_if' => 'Znesek v tuji valuti, če obstaja', + 'amount_destination_account' => 'Znesek v valuti ciljnega računa', + 'edit_transaction_title' => 'Uredi transakcijo ":description"', + 'unreconcile' => 'Razveljavi uskladitev', + 'update_withdrawal' => 'Posodobi odliv', + 'update_deposit' => 'Posodobi priliv', + 'update_transaction' => 'Posodobi transakcije', + 'update_transfer' => 'Posodobi prenos', + 'updated_withdrawal' => 'Odliv ":description" je posodobljen', + 'updated_deposit' => 'Priliv ":description" je posodobljen', + 'updated_transfer' => 'Prenos ":description" je posodobljen', + 'no_changes_withdrawal' => 'Odliv ":description" ni bil spremenjen.', + 'no_changes_deposit' => 'Priliv ":description" ni bil spremenjen.', + 'no_changes_transfer' => 'Prenos ":description" ni bil spremenjen.', + 'delete_withdrawal' => 'Odliv ":description" je izbrisan', + 'delete_deposit' => 'Izbriši priliv ":description"', + 'delete_transfer' => 'Izbriši prenos ":description"', + 'deleted_withdrawal' => 'Odliv ":description" je uspešno izbrisan', + 'deleted_deposit' => 'Priliv ":description" je uspešno izbrisan', + 'deleted_transfer' => 'Prenos ":description" je uspešno izbrisan', + 'deleted_reconciliation' => 'Transakcija usklajevanja ":description" je bila uspešno izbrisana', + 'stored_journal' => 'Nova transakcija ":description" je uspešno ustvarjena', + 'stored_journal_js' => 'Nova transakcija "{{description}}" je uspešno ustvarjena', + 'stored_journal_no_descr' => 'Vaša nova transakcija je uspešno ustvarjena', + 'updated_journal_no_descr' => 'Vaša transakcija je bila uspešno posodobljena', + 'select_transactions' => 'Izberi transakcije', + 'rule_group_select_transactions' => 'Uporabi ":title" za transakcije', + 'rule_select_transactions' => 'Uporabi ":title" za transakcije', + 'stop_selection' => 'Končaj z izbiro transakcij', + 'reconcile_selected' => 'Uskladi', + 'mass_delete_journals' => 'Izbriši število transakcij', + 'mass_edit_journals' => 'Uredi več transakcij', + 'mass_bulk_journals' => 'Množično urejanje transakcij', + 'mass_bulk_journals_explain' => 'Ta obrazec vam omogoča spreminjanje lastnosti spodaj navedenih transakcij v eni obsežni posodobitvi. Vse transakcije v tabeli bodo posodobljene, ko spremenite parametre, ki jih vidite tukaj.', + 'part_of_split' => 'Ta transakcija je del razdeljene transakcije. Če niste izbrali vseh razdelitev, boste morda na koncu spremenili le polovico transakcije.', + 'bulk_set_new_values' => 'S spodnjimi vnosi nastaviš nove vrednosti. Če jih pustiš prazne, bodo za vse prazne. Upoštevajte tudi, da bo proračun dodeljen samo odlivom.', + 'no_bulk_category' => 'Ne posodobi kategorije', + 'no_bulk_budget' => 'Ne posodobi proračuna', + 'no_bulk_tags' => 'Ne posodobi oznak(e)', + 'replace_with_these_tags' => 'Zamenjaj s temi oznakami', + 'append_these_tags' => 'Dodaj te oznake', + 'mass_edit' => 'Uredi izbrano posamično', + 'bulk_edit' => 'Uredi izbrano v večjem obsegu', + 'mass_delete' => 'Izbriši izbrano', + 'cannot_edit_other_fields' => 'Drugih polj ne morete množično urejati, ker ni prostora za prikaz. Če želite urediti ta polja, sledite povezavi in jih uredite posebej.', + 'cannot_change_amount_reconciled' => 'Zneska usklajenih transakcij ne morete spremeniti.', + 'no_budget' => '(brez proračuna)', + 'no_bill' => '(ni računa)', + 'account_per_budget' => 'Porabljeno po proračunu', + 'account_per_category' => 'Račun po kategoriji', + 'create_new_object' => 'Ustvari', + 'empty' => '(prazno)', + 'all_other_budgets' => '(vsi ostali proračuni)', + 'all_other_accounts' => '(vsi ostali računi)', + 'expense_per_source_account' => 'Stroški po računih', + 'expense_per_destination_account' => 'Stroški na ciljnem računu', + 'income_per_destination_account' => 'Dohodek na ciljni račun', + 'spent_in_specific_category' => 'Porabljeno v kategoriji ":category"', + 'earned_in_specific_category' => 'Prisluženo v kategoriji ":category"', + 'spent_in_specific_tag' => 'Porabljeno v oznaki ":tag"', + 'earned_in_specific_tag' => 'Zasluženo v oznaki ":tag"', + 'income_per_source_account' => 'Dohodek na izvorni račun', + 'average_spending_per_destination' => 'Povprečni stroški na ciljni račun', + 'average_spending_per_source' => 'Povprečni stroški na izvorni račun', + 'average_earning_per_source' => 'Povprečni zaslužek na izvorni račun', + 'average_earning_per_destination' => 'Povprečni zaslužek na ciljni račun', + 'account_per_tag' => 'Račun po oznaki', + 'tag_report_expenses_listed_once' => 'Stroški in prihodki niso nikoli navedeni dvakrat. Če ima transakcija več oznak, se lahko prikaže le pod eno od njenih oznak. Morda se zdi, da na tem seznamu manjkajo podatki, vendar bodo zneski pravilni.', + 'double_report_expenses_charted_once' => 'Odhodki in prihodki niso nikoli prikazani dvakrat. Če ima transakcija več oznak, se lahko prikaže le pod eno od njenih oznak. Morda se zdi, da v tem grafikonu manjkajo podatki, vendar bodo zneski pravilni.', + 'tag_report_chart_single_tag' => 'Ta grafikon velja za posamezno oznako. Če ima transakcija več oznak, se lahko to, kar vidite tukaj, odraža tudi v grafikonih drugih oznak.', + 'tag' => 'Oznaka', + 'no_budget_squared' => '(brez proračuna)', + 'perm-delete-many' => 'Brisanje več elementov naenkrat je lahko zelo moteče. Bodite previdni. S te strani lahko izbrišete del razdeljene transakcije, zato bodite previdni.', + 'mass_deleted_transactions_success' => 'Izbrisano :count transakcij.|Izbrisano :count transakcij.', + 'mass_edited_transactions_success' => 'Posodobljeno :count transakcij.|Posodobljeno :count transakcij.', + 'opt_group_' => '(brez tipa računa)', + 'opt_group_no_account_type' => '(brez tipa računa)', + 'opt_group_defaultAsset' => 'Privzeti računi sredstev', + 'opt_group_savingAsset' => 'Varčevalni račun', + 'opt_group_sharedAsset' => 'Skupni računi sredstev', + 'opt_group_ccAsset' => 'Kreditne kartice', + 'opt_group_cashWalletAsset' => 'Gotovina', + 'opt_group_expense_account' => 'Računi odhodkov', + 'opt_group_revenue_account' => 'Računi prihodkov', + 'opt_group_l_Loan' => 'Obveznost: Posojilo', + 'opt_group_cash_account' => 'Gotovinski račun', + 'opt_group_l_Debt' => 'Obveznost: Dolg', + 'opt_group_l_Mortgage' => 'Obveznost: Hipoteka', + 'opt_group_l_Credit card' => 'Obveznost: Kreditna kartica', + 'notes' => 'Opombe', + 'unknown_journal_error' => 'Transakcije ni bilo mogoče shraniti. Preverite datoteke dnevnika.', + 'attachment_not_found' => 'Te priloge ni bilo mogoče najti.', + 'journal_link_bill' => 'Ta transakcija je povezana z računom :name. Če želiš povezavo prekiniti, odstranite kljukico. Uporabite pravila, da jo povežete z drugim računom.', + 'transaction_stored_link' => 'Transakcija št. #{ID} ("{title}") je bila shranjena.', + 'transaction_new_stored_link' => 'Transakcija št. #{ID} je bila shranjena.', + 'transaction_updated_link' => 'Transakcija št. #{ID} ("{title}") je bila posodobljena.', + 'transaction_updated_no_changes' => 'Transakcija št. #{ID} ("{title}") ni prejela nobenih sprememb.', + 'first_split_decides' => 'Prva razdelitev določa vrednost tega polja', + 'first_split_overrules_source' => 'Prva razdelitev lahko razveljavi izvorni račun', + 'first_split_overrules_destination' => 'Prva razdelitev lahko razveljavi ciljni račun', + 'spent_x_of_y' => 'Porabljen {amount} od {total}', // new user: - 'welcome' => 'Dobrodošli v Firefly III!', - 'submit' => 'Potrdite', - 'submission' => 'Predložitev', - 'submit_yes_really' => 'Predložite (vem kaj počnem)', - 'getting_started' => 'Kako začeti', - 'to_get_started' => 'Lepo je videti, da ste uspešno namestili Firefly III. Če želite začeti z uporabo tega orodja, vnesite ime banke in stanje glavnega tekočega računa. Ne skrbite, če imate več računov. Lahko jih dodate pozneje. Firefly III pač potrebuje nekaj za začetek.', - 'savings_balance_text' => 'Firefly III ti bo samodejno ustvaril varčevalni račun. Privzeto na varčevalnem računu ne bo nobenega denarja, če pa Firefly III zaupate stanje, bo le-to nastavljeno.', - 'finish_up_new_user' => 'To je to! Nadaljujete s pritiskom na Pošlji. Preusmerjeni boste na kazalo Firefly III.', - 'stored_new_accounts_new_user' => 'Juhu! Vaši novi računi so shranjeni.', - 'set_preferred_language' => 'Če želite uporabiti Firefly III v drugem jeziku, prosimo, označite tukaj.', - 'language' => 'Jezik', - 'new_savings_account' => ':bank_name varčevalni račun', - 'cash_wallet' => 'Gotovina', - 'currency_not_present' => 'Če valuta, ki jo običajno uporabljate, ni navedena, ne skrbite. Ustvarite lahko lastne valute pod Možnosti> Valute.', + 'welcome' => 'Dobrodošli v Firefly III!', + 'submit' => 'Potrdite', + 'submission' => 'Predložitev', + 'submit_yes_really' => 'Predložite (vem kaj počnem)', + 'getting_started' => 'Kako začeti', + 'to_get_started' => 'Lepo je videti, da ste uspešno namestili Firefly III. Če želite začeti z uporabo tega orodja, vnesite ime banke in stanje glavnega tekočega računa. Ne skrbite, če imate več računov. Lahko jih dodate pozneje. Firefly III pač potrebuje nekaj za začetek.', + 'savings_balance_text' => 'Firefly III ti bo samodejno ustvaril varčevalni račun. Privzeto na varčevalnem računu ne bo nobenega denarja, če pa Firefly III zaupate stanje, bo le-to nastavljeno.', + 'finish_up_new_user' => 'To je to! Nadaljujete s pritiskom na Pošlji. Preusmerjeni boste na kazalo Firefly III.', + 'stored_new_accounts_new_user' => 'Juhu! Vaši novi računi so shranjeni.', + 'set_preferred_language' => 'Če želite uporabiti Firefly III v drugem jeziku, prosimo, označite tukaj.', + 'language' => 'Jezik', + 'new_savings_account' => ':bank_name varčevalni račun', + 'cash_wallet' => 'Gotovina', + 'currency_not_present' => 'Če valuta, ki jo običajno uporabljate, ni navedena, ne skrbite. Ustvarite lahko lastne valute pod Možnosti> Valute.', // home page: - 'transaction_table_description' => 'Tabela z vašimi transakcijami', - 'opposing_account' => 'Nasprotni račun', - 'yourAccounts' => 'Vaši računi', - 'your_accounts' => 'Pregled računov', - 'category_overview' => 'Pregled kategorij', - 'expense_overview' => 'Pregled računov stroškov', - 'revenue_overview' => 'Pregled računov prihodkov', - 'budgetsAndSpending' => 'Proračuni in poraba', - 'budgets_and_spending' => 'Proračuni in poraba', - 'go_to_budget' => 'Pojdi na proračun "{budget}"', - 'go_to_deposits' => 'Pojdi na prilive', - 'go_to_expenses' => 'Pojdi na izdatke', - 'savings' => 'Prihranki', - 'newWithdrawal' => 'Nov strošek', - 'newDeposit' => 'Nov priliv', - 'newTransfer' => 'Nov prenos', - 'bills_to_pay' => 'Računi za plačilo', - 'per_day' => 'Na dan', - 'left_to_spend_per_day' => 'Ostane za porabit na dan', - 'bills_paid' => 'Plačani računi', - 'custom_period' => 'Obdobje po meri', - 'reset_to_current' => 'Ponastavi na trenutno obdobje', - 'select_period' => 'Izberite obdobje', + 'transaction_table_description' => 'Tabela z vašimi transakcijami', + 'opposing_account' => 'Nasprotni račun', + 'yourAccounts' => 'Vaši računi', + 'your_accounts' => 'Pregled računov', + 'category_overview' => 'Pregled kategorij', + 'expense_overview' => 'Pregled računov stroškov', + 'revenue_overview' => 'Pregled računov prihodkov', + 'budgetsAndSpending' => 'Proračuni in poraba', + 'budgets_and_spending' => 'Proračuni in poraba', + 'go_to_budget' => 'Pojdi na proračun "{budget}"', + 'go_to_deposits' => 'Pojdi na prilive', + 'go_to_expenses' => 'Pojdi na izdatke', + 'savings' => 'Prihranki', + 'newWithdrawal' => 'Nov strošek', + 'newDeposit' => 'Nov priliv', + 'newTransfer' => 'Nov prenos', + 'bills_to_pay' => 'Računi za plačilo', + 'per_day' => 'Na dan', + 'left_to_spend_per_day' => 'Ostane za porabit na dan', + 'bills_paid' => 'Plačani računi', + 'custom_period' => 'Obdobje po meri', + 'reset_to_current' => 'Ponastavi na trenutno obdobje', + 'select_period' => 'Izberite obdobje', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Možnosti', - 'logout' => 'Odjava', - 'logout_other_sessions' => 'Odjavi vse druge seje', - 'toggleNavigation' => 'Preklopi navigacijo', - 'searchPlaceholder' => 'Iskanje...', - 'version' => 'Različica', - 'dashboard' => 'Nadzorna plošča', - 'income_and_expense' => 'Prihodki in odhodki', - 'all_money' => 'Ves vaš denar', - 'unknown_source_plain' => 'Neznan izvorni račun', - 'unknown_dest_plain' => 'Neznan ciljni račun', - 'unknown_any_plain' => 'Neznan račun', - 'unknown_budget_plain' => 'Ni proračuna', - 'available_budget' => 'Razpoložljiv proračun ({currency})', - 'currencies' => 'Valute', - 'activity' => 'Dejavnost', - 'usage' => 'Uporaba', - 'accounts' => 'Računi', - 'Asset account' => 'Račun sredstev', - 'Default account' => 'Račun sredstev', - 'Expense account' => 'Račun stroškov', - 'Revenue account' => 'Račun prihodkov', - 'Initial balance account' => 'Začetno stanje', - 'account_type_Asset account' => 'Račun sredstev', - 'account_type_Expense account' => 'Račun stroškov', - 'account_type_Revenue account' => 'Račun prihodkov', - 'account_type_Debt' => 'Dolg', - 'account_type_Loan' => 'Posojilo', - 'account_type_Mortgage' => 'Hipoteka', - 'account_type_debt' => 'Dolg', - 'account_type_loan' => 'Posojilo', - 'account_type_mortgage' => 'Hipoteka', - 'account_type_Credit card' => 'Kreditna kartica', - 'credit_card_type_monthlyFull' => 'Polno plačilo vsak mesec', - 'liability_direction_credit' => 'Dolžan sem ta dolg', - 'liability_direction_debit' => 'Ta dolg dolgujem nekomu drugemu', - 'liability_direction_credit_short' => 'Ta dolg je bil dolgovan', - 'liability_direction_debit_short' => 'Dolgujem', - 'liability_direction__short' => 'Neznano', - 'liability_direction_null_short' => 'Neznano', - 'Liability credit' => 'Kredit za obveznost', - 'budgets' => 'Proračuni', - 'tags' => 'Oznake', - 'reports' => 'Poročila', - 'transactions' => 'Transakcije', - 'expenses' => 'Stroški', - 'income' => 'Dohodki / prihodki', - 'transfers' => 'Prenosi', - 'moneyManagement' => 'Upravljanje denarja', - 'money_management' => 'Upravljanje denarja', - 'tools' => 'Orodja', - 'piggyBanks' => 'Hranilniki', - 'piggy_banks' => 'Hranilniki', - 'amount_x_of_y' => '{current} od {total}', - 'bills' => 'Računi', - 'withdrawal' => 'Odliv', - 'opening_balance' => 'Začetno stanje', - 'deposit' => 'Priliv', - 'account' => 'Račun', - 'transfer' => 'Prenos', - 'Withdrawal' => 'Odliv', - 'Deposit' => 'Priliv', - 'Transfer' => 'Prenos', - 'bill' => 'Račun', - 'yes' => 'Da', - 'no' => 'Ne', - 'amount' => 'Znesek', - 'overview' => 'Pregled', - 'saveOnAccount' => 'Shrani na račun', - 'unknown' => 'Neznano', - 'monthly' => 'Mesečno', - 'profile' => 'Profil', - 'errors' => 'Napake', - 'debt_start_date' => 'Začetni datum dolga', - 'debt_start_amount' => 'Začetni znesek dolga', - 'debt_start_amount_help' => 'Vedno je najbolje, da to vrednost nastavite na negativno vrednost. Za več informacij preberite strani s pomočjo (zgornja desna (?)-ikona).', - 'interest_period_help' => 'To polje je zgolj kozmetično in ga ne bomo izračunali namesto vas. Kot se je izkazalo, so banke zelo zahrbtne, zato Firefly III nikoli ne zadane pravilno.', - 'store_new_liabilities_account' => 'Shrani novo obveznost', - 'edit_liabilities_account' => 'Uredi obveznost ":name"', - 'financial_control' => 'Nadzor financ', - 'accounting' => 'Računovodstvo', - 'automation' => 'Avtomatizacija', - 'others' => 'Drugo', - 'classification' => 'Klasifikacija', - 'store_transaction' => 'Shrani transakcijo', + 'currency' => 'Valuta', + 'preferences' => 'Možnosti', + 'logout' => 'Odjava', + 'logout_other_sessions' => 'Odjavi vse druge seje', + 'toggleNavigation' => 'Preklopi navigacijo', + 'searchPlaceholder' => 'Iskanje...', + 'version' => 'Različica', + 'dashboard' => 'Nadzorna plošča', + 'income_and_expense' => 'Prihodki in odhodki', + 'all_money' => 'Ves vaš denar', + 'unknown_source_plain' => 'Neznan izvorni račun', + 'unknown_dest_plain' => 'Neznan ciljni račun', + 'unknown_any_plain' => 'Neznan račun', + 'unknown_budget_plain' => 'Ni proračuna', + 'available_budget' => 'Razpoložljiv proračun ({currency})', + 'currencies' => 'Valute', + 'activity' => 'Dejavnost', + 'usage' => 'Uporaba', + 'accounts' => 'Računi', + 'Asset account' => 'Račun sredstev', + 'Default account' => 'Račun sredstev', + 'Expense account' => 'Račun stroškov', + 'Revenue account' => 'Račun prihodkov', + 'Initial balance account' => 'Začetno stanje', + 'account_type_Asset account' => 'Račun sredstev', + 'account_type_Expense account' => 'Račun stroškov', + 'account_type_Revenue account' => 'Račun prihodkov', + 'account_type_Debt' => 'Dolg', + 'account_type_Loan' => 'Posojilo', + 'account_type_Mortgage' => 'Hipoteka', + 'account_type_debt' => 'Dolg', + 'account_type_loan' => 'Posojilo', + 'account_type_mortgage' => 'Hipoteka', + 'account_type_Credit card' => 'Kreditna kartica', + 'credit_card_type_monthlyFull' => 'Polno plačilo vsak mesec', + 'liability_direction_credit' => 'Dolžan sem ta dolg', + 'liability_direction_debit' => 'Ta dolg dolgujem nekomu drugemu', + 'liability_direction_credit_short' => 'Ta dolg je bil dolgovan', + 'liability_direction_debit_short' => 'Dolgujem', + 'liability_direction__short' => 'Neznano', + 'liability_direction_null_short' => 'Neznano', + 'Liability credit' => 'Kredit za obveznost', + 'budgets' => 'Proračuni', + 'tags' => 'Oznake', + 'reports' => 'Poročila', + 'transactions' => 'Transakcije', + 'expenses' => 'Stroški', + 'income' => 'Dohodki / prihodki', + 'transfers' => 'Prenosi', + 'moneyManagement' => 'Upravljanje denarja', + 'money_management' => 'Upravljanje denarja', + 'tools' => 'Orodja', + 'piggyBanks' => 'Hranilniki', + 'piggy_banks' => 'Hranilniki', + 'amount_x_of_y' => '{current} od {total}', + 'bills' => 'Računi', + 'withdrawal' => 'Odliv', + 'opening_balance' => 'Začetno stanje', + 'deposit' => 'Priliv', + 'account' => 'Račun', + 'transfer' => 'Prenos', + 'Withdrawal' => 'Odliv', + 'Deposit' => 'Priliv', + 'Transfer' => 'Prenos', + 'bill' => 'Račun', + 'yes' => 'Da', + 'no' => 'Ne', + 'amount' => 'Znesek', + 'overview' => 'Pregled', + 'saveOnAccount' => 'Shrani na račun', + 'unknown' => 'Neznano', + 'monthly' => 'Mesečno', + 'profile' => 'Profil', + 'errors' => 'Napake', + 'debt_start_date' => 'Začetni datum dolga', + 'debt_start_amount' => 'Začetni znesek dolga', + 'debt_start_amount_help' => 'Vedno je najbolje, da to vrednost nastavite na negativno vrednost. Za več informacij preberite strani s pomočjo (zgornja desna (?)-ikona).', + 'interest_period_help' => 'To polje je zgolj kozmetično in ga ne bomo izračunali namesto vas. Kot se je izkazalo, so banke zelo zahrbtne, zato Firefly III nikoli ne zadane pravilno.', + 'store_new_liabilities_account' => 'Shrani novo obveznost', + 'edit_liabilities_account' => 'Uredi obveznost ":name"', + 'financial_control' => 'Nadzor financ', + 'accounting' => 'Računovodstvo', + 'automation' => 'Avtomatizacija', + 'others' => 'Drugo', + 'classification' => 'Klasifikacija', + 'store_transaction' => 'Shrani transakcijo', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Privzeto finančno poročilo med :start in :end', - 'report_audit' => 'Pregled zgodovine transakcij med :start in :end', - 'report_category' => 'Poročilo po kategorijah med :start in :end', - 'report_double' => 'Poročilo o odhodkih/prihodkih med :start in :end', - 'report_budget' => 'Poročilo proračunov med :start in :end', - 'report_tag' => 'Poročilo oznakah med :start in :end', - 'quick_link_reports' => 'Hitre povezave', - 'quick_link_examples' => 'To so le nekateri primeri povezav za začetek. Oglejte si strani za pomoč pod gumbom (?) za informacije o vseh poročilih in "čarobnih besedah", ki jih lahko uporabite.', - 'quick_link_default_report' => 'Privzeto finančno poročilo', - 'quick_link_audit_report' => 'Pregled zgodovine transakcij', - 'report_this_month_quick' => 'Tekoči mesec, vsi računi', - 'report_last_month_quick' => 'Zadnji mesec, vsi računi', - 'report_this_year_quick' => 'Tekoče leto, vsi računi', - 'report_this_fiscal_year_quick' => 'Tekoče fiskalno leto, vsi računi', - 'report_all_time_quick' => 'Kadarkoli, vsi računi', - 'reports_can_bookmark' => 'Poročila lahko shranite med zaznamke.', - 'incomeVsExpenses' => 'Prihodki napram odhodkom', - 'accountBalances' => 'Stanje na računih', - 'balanceStart' => 'Stanje na začetku obdobja', - 'balanceEnd' => 'Stanje na koncu obdobja', - 'splitByAccount' => 'Razdeljeno po računih', - 'coveredWithTags' => 'Z oznakami', - 'leftInBudget' => 'Ostanek v proračunu', - 'left_in_debt' => 'Dolgovani znesek', - 'sumOfSums' => 'Vsota vsot', - 'noCategory' => '(brez kategorije)', - 'notCharged' => 'Ne (še) zaračunano', - 'inactive' => 'Neaktivno', - 'active' => 'Aktiven', - 'difference' => 'Razlika', - 'money_flowing_in' => 'Na', - 'money_flowing_out' => 'Iz', - 'topX' => 'prvih :number', - 'show_full_list' => 'Pokažite celoten seznam', - 'show_only_top' => 'Pokažite samo prvih :number', - 'report_type' => 'Vrsta poročila', - 'report_type_default' => 'Privzeto finančno poročilo', - 'report_type_audit' => 'Pregled zgodovine transakcij (revizija)', - 'report_type_category' => 'Poročilo kategorij', - 'report_type_budget' => 'Poročilo proračunov', - 'report_type_tag' => 'Poročilo oznak', - 'report_type_double' => 'Poročilo o odhodkih/prihodkih', - 'more_info_help' => 'Več informacij o teh vrstah poročil lahko najdete na straneh s pomočjo. Pritisnite ikono (?) v zgornjem desnem kotu.', - 'report_included_accounts' => 'Vključeni računi', - 'report_date_range' => 'Datumski obseg', - 'report_preset_ranges' => 'Prednastavljeni obsegi', - 'shared' => 'Skupni', - 'fiscal_year' => 'Fiskalno leto', - 'income_entry' => 'Prihodki na računi ":name" med :start in :end', - 'expense_entry' => 'Stroški na računu ":name" med :start in :end', - 'category_entry' => 'Odhodki in prihodki v kategoriji ":name" med :start in :end', - 'budget_spent_amount' => 'Stroški v proračunu "::budget" med :start in :end', - 'balance_amount' => 'Stroški v proračunu ":budget", plačani iz računa ":account" med :start in :end', - 'no_audit_activity' => 'Na račun ni bila zabeležena nobena dejavnost :account_name med :start in :end.', - 'audit_end_balance' => 'Stanje na računu :account_name na koncu :end je bilo :balance', - 'reports_extra_options' => 'Dodatne možnosti', - 'report_has_no_extra_options' => 'To poročilo nima dodatnih možnosti', - 'reports_submit' => 'Ogled poročila', - 'end_after_start_date' => 'Končni datum poročila mora biti po začetnem datumu.', - 'select_category' => 'Izberi kategorije', - 'select_budget' => 'Izberi proračun(e).', - 'select_tag' => 'Izberi oznake.', - 'income_per_category' => 'Prihodki po kategoriji', - 'expense_per_category' => 'Stroški po kategorijah', - 'expense_per_budget' => 'Stroški po proračunu', - 'income_per_account' => 'Prihodki pa računu', - 'expense_per_account' => 'Stroški po računih', - 'expense_per_tag' => 'Stroški po oznakah', - 'income_per_tag' => 'Prihodki po oznaki', - 'include_expense_not_in_budget' => 'Vključeni stroški niso v izbranih proračunih', - 'include_expense_not_in_account' => 'Vključeni stroški niso v izbranih računih', - 'include_expense_not_in_category' => 'Vključeni stroški niso v izbranih kategorijah', - 'include_income_not_in_category' => 'Vključeni prihodki niso v izbranih kategorijah', - 'include_income_not_in_account' => 'Vključeni prihodki niso v izbranih računih', - 'include_income_not_in_tags' => 'Vključeni prihodki nimajo izbranih oznak', - 'include_expense_not_in_tags' => 'Vključeni stroški nimajo izbranih oznak', - 'everything_else' => 'Vse ostalo', - 'income_and_expenses' => 'Prihodki in odhodki', - 'spent_average' => 'Porabljeno (povprečje)', - 'income_average' => 'Prihodki (povprečno)', - 'transaction_count' => 'Število transakcije', - 'average_spending_per_account' => 'Povprečna poraba po računu', - 'average_income_per_account' => 'Povprečni prihodek po računu', - 'total' => 'Skupaj', - 'description' => 'Opis', - 'sum_of_period' => 'Seštevek obdobja', - 'average_in_period' => 'Povprečno v obdobju', - 'no_account_role' => '(brez pravil)', - 'account_role_defaultAsset' => 'Privzeti račun sredstev', - 'account_role_sharedAsset' => 'Skupni račun sredstev', - 'account_role_savingAsset' => 'Varčevalni račun', - 'account_role_ccAsset' => 'Kreditna kartica', - 'account_role_cashWalletAsset' => 'Gotovina', - 'budget_chart_click' => 'V zgornji tabeli kliknite na ime proračuna, za ogled grafikona.', - 'category_chart_click' => 'Za ogled grafikona v zgornji tabeli kliknite na ime kategorije.', - 'in_out_accounts' => 'Kombinacija zasluženo/porabljeno', - 'in_out_accounts_per_asset' => 'Zasluženo in porabljeno (po računih sredstev)', - 'in_out_per_category' => 'Zasluženo in porabljeno po kategoriji', - 'out_per_budget' => 'Porabljeno po proračunu', - 'select_expense_revenue' => 'Izberite račun stroškov/prihodkov', - 'multi_currency_report_sum' => 'Ker ta seznam vsebuje račune z več valutami, vsota, ki jo vidite, morda nima smisla. Poročilo se vedno vrne na privzeto valuto.', - 'sum_in_default_currency' => 'Vsota bo vedno v privzeti valuti.', - 'net_filtered_prefs' => 'Ta grafikon nikoli ne bo vključeval računov, ki nimajo izbrano »Vključi v neto vrednost«.', + 'report_default' => 'Privzeto finančno poročilo med :start in :end', + 'report_audit' => 'Pregled zgodovine transakcij med :start in :end', + 'report_category' => 'Poročilo po kategorijah med :start in :end', + 'report_double' => 'Poročilo o odhodkih/prihodkih med :start in :end', + 'report_budget' => 'Poročilo proračunov med :start in :end', + 'report_tag' => 'Poročilo oznakah med :start in :end', + 'quick_link_reports' => 'Hitre povezave', + 'quick_link_examples' => 'To so le nekateri primeri povezav za začetek. Oglejte si strani za pomoč pod gumbom (?) za informacije o vseh poročilih in "čarobnih besedah", ki jih lahko uporabite.', + 'quick_link_default_report' => 'Privzeto finančno poročilo', + 'quick_link_audit_report' => 'Pregled zgodovine transakcij', + 'report_this_month_quick' => 'Tekoči mesec, vsi računi', + 'report_last_month_quick' => 'Zadnji mesec, vsi računi', + 'report_this_year_quick' => 'Tekoče leto, vsi računi', + 'report_this_fiscal_year_quick' => 'Tekoče fiskalno leto, vsi računi', + 'report_all_time_quick' => 'Kadarkoli, vsi računi', + 'reports_can_bookmark' => 'Poročila lahko shranite med zaznamke.', + 'incomeVsExpenses' => 'Prihodki napram odhodkom', + 'accountBalances' => 'Stanje na računih', + 'balanceStart' => 'Stanje na začetku obdobja', + 'balanceEnd' => 'Stanje na koncu obdobja', + 'splitByAccount' => 'Razdeljeno po računih', + 'coveredWithTags' => 'Z oznakami', + 'leftInBudget' => 'Ostanek v proračunu', + 'left_in_debt' => 'Dolgovani znesek', + 'sumOfSums' => 'Vsota vsot', + 'noCategory' => '(brez kategorije)', + 'notCharged' => 'Ne (še) zaračunano', + 'inactive' => 'Neaktivno', + 'active' => 'Aktiven', + 'difference' => 'Razlika', + 'money_flowing_in' => 'Na', + 'money_flowing_out' => 'Iz', + 'topX' => 'prvih :number', + 'show_full_list' => 'Pokažite celoten seznam', + 'show_only_top' => 'Pokažite samo prvih :number', + 'report_type' => 'Vrsta poročila', + 'report_type_default' => 'Privzeto finančno poročilo', + 'report_type_audit' => 'Pregled zgodovine transakcij (revizija)', + 'report_type_category' => 'Poročilo kategorij', + 'report_type_budget' => 'Poročilo proračunov', + 'report_type_tag' => 'Poročilo oznak', + 'report_type_double' => 'Poročilo o odhodkih/prihodkih', + 'more_info_help' => 'Več informacij o teh vrstah poročil lahko najdete na straneh s pomočjo. Pritisnite ikono (?) v zgornjem desnem kotu.', + 'report_included_accounts' => 'Vključeni računi', + 'report_date_range' => 'Datumski obseg', + 'report_preset_ranges' => 'Prednastavljeni obsegi', + 'shared' => 'Skupni', + 'fiscal_year' => 'Fiskalno leto', + 'income_entry' => 'Prihodki na računi ":name" med :start in :end', + 'expense_entry' => 'Stroški na računu ":name" med :start in :end', + 'category_entry' => 'Odhodki in prihodki v kategoriji ":name" med :start in :end', + 'budget_spent_amount' => 'Stroški v proračunu "::budget" med :start in :end', + 'balance_amount' => 'Stroški v proračunu ":budget", plačani iz računa ":account" med :start in :end', + 'no_audit_activity' => 'Na račun ni bila zabeležena nobena dejavnost :account_name med :start in :end.', + 'audit_end_balance' => 'Stanje na računu :account_name na koncu :end je bilo :balance', + 'reports_extra_options' => 'Dodatne možnosti', + 'report_has_no_extra_options' => 'To poročilo nima dodatnih možnosti', + 'reports_submit' => 'Ogled poročila', + 'end_after_start_date' => 'Končni datum poročila mora biti po začetnem datumu.', + 'select_category' => 'Izberi kategorije', + 'select_budget' => 'Izberi proračun(e).', + 'select_tag' => 'Izberi oznake.', + 'income_per_category' => 'Prihodki po kategoriji', + 'expense_per_category' => 'Stroški po kategorijah', + 'expense_per_budget' => 'Stroški po proračunu', + 'income_per_account' => 'Prihodki pa računu', + 'expense_per_account' => 'Stroški po računih', + 'expense_per_tag' => 'Stroški po oznakah', + 'income_per_tag' => 'Prihodki po oznaki', + 'include_expense_not_in_budget' => 'Vključeni stroški niso v izbranih proračunih', + 'include_expense_not_in_account' => 'Vključeni stroški niso v izbranih računih', + 'include_expense_not_in_category' => 'Vključeni stroški niso v izbranih kategorijah', + 'include_income_not_in_category' => 'Vključeni prihodki niso v izbranih kategorijah', + 'include_income_not_in_account' => 'Vključeni prihodki niso v izbranih računih', + 'include_income_not_in_tags' => 'Vključeni prihodki nimajo izbranih oznak', + 'include_expense_not_in_tags' => 'Vključeni stroški nimajo izbranih oznak', + 'everything_else' => 'Vse ostalo', + 'income_and_expenses' => 'Prihodki in odhodki', + 'spent_average' => 'Porabljeno (povprečje)', + 'income_average' => 'Prihodki (povprečno)', + 'transaction_count' => 'Število transakcije', + 'average_spending_per_account' => 'Povprečna poraba po računu', + 'average_income_per_account' => 'Povprečni prihodek po računu', + 'total' => 'Skupaj', + 'description' => 'Opis', + 'sum_of_period' => 'Seštevek obdobja', + 'average_in_period' => 'Povprečno v obdobju', + 'no_account_role' => '(brez pravil)', + 'account_role_defaultAsset' => 'Privzeti račun sredstev', + 'account_role_sharedAsset' => 'Skupni račun sredstev', + 'account_role_savingAsset' => 'Varčevalni račun', + 'account_role_ccAsset' => 'Kreditna kartica', + 'account_role_cashWalletAsset' => 'Gotovina', + 'budget_chart_click' => 'V zgornji tabeli kliknite na ime proračuna, za ogled grafikona.', + 'category_chart_click' => 'Za ogled grafikona v zgornji tabeli kliknite na ime kategorije.', + 'in_out_accounts' => 'Kombinacija zasluženo/porabljeno', + 'in_out_accounts_per_asset' => 'Zasluženo in porabljeno (po računih sredstev)', + 'in_out_per_category' => 'Zasluženo in porabljeno po kategoriji', + 'out_per_budget' => 'Porabljeno po proračunu', + 'select_expense_revenue' => 'Izberite račun stroškov/prihodkov', + 'multi_currency_report_sum' => 'Ker ta seznam vsebuje račune z več valutami, vsota, ki jo vidite, morda nima smisla. Poročilo se vedno vrne na privzeto valuto.', + 'sum_in_default_currency' => 'Vsota bo vedno v privzeti valuti.', + 'net_filtered_prefs' => 'Ta grafikon nikoli ne bo vključeval računov, ki nimajo izbrano »Vključi v neto vrednost«.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Grafikon', - 'month' => 'Mesec', - 'budget' => 'Proračun', - 'spent' => 'Porabljeno', - 'spent_capped' => 'Porabljeno (omejeno)', - 'spent_in_budget' => 'Porabljeno v proračunu', - 'left_to_spend' => 'Ostane za porabit', - 'earned' => 'Prisluženo', - 'overspent' => 'Preveč porabljeno', - 'left' => 'Preostalo', - 'max-amount' => 'Najvišji znesek', - 'min-amount' => 'Najmanjša vrednost', - 'journal-amount' => 'Trenutni vnos na računu', - 'name' => 'Ime', - 'date' => 'Datum', - 'date_and_time' => 'Datum in čas', - 'time' => 'Čas', - 'paid' => 'Plačano', - 'unpaid' => 'Neplačano', - 'day' => 'Dan', - 'budgeted' => 'Proračunski znesek', - 'period' => 'Obdobje', - 'balance' => 'Stanje', - 'in_out_period' => 'V + iz tega obdobja', - 'sum' => 'Vsota', - 'summary' => 'Povzetek', - 'average' => 'Povprečno', - 'balanceFor' => 'Stanje za :name', - 'no_tags' => '(ni oznak)', - 'nothing_found' => '(nič najdenega)', + 'chart' => 'Grafikon', + 'month' => 'Mesec', + 'budget' => 'Proračun', + 'spent' => 'Porabljeno', + 'spent_capped' => 'Porabljeno (omejeno)', + 'spent_in_budget' => 'Porabljeno v proračunu', + 'left_to_spend' => 'Ostane za porabit', + 'earned' => 'Prisluženo', + 'overspent' => 'Preveč porabljeno', + 'left' => 'Preostalo', + 'max-amount' => 'Najvišji znesek', + 'min-amount' => 'Najmanjša vrednost', + 'journal-amount' => 'Trenutni vnos na računu', + 'name' => 'Ime', + 'date' => 'Datum', + 'date_and_time' => 'Datum in čas', + 'time' => 'Čas', + 'paid' => 'Plačano', + 'unpaid' => 'Neplačano', + 'day' => 'Dan', + 'budgeted' => 'Proračunski znesek', + 'period' => 'Obdobje', + 'balance' => 'Stanje', + 'in_out_period' => 'V + iz tega obdobja', + 'sum' => 'Vsota', + 'summary' => 'Povzetek', + 'average' => 'Povprečno', + 'balanceFor' => 'Stanje za :name', + 'no_tags' => '(ni oznak)', + 'nothing_found' => '(nič najdenega)', // piggy banks: - 'event_history' => 'Zgodovina dogodkov', - 'add_money_to_piggy' => 'Dodaj denar na hranilnik ":name"', - 'piggy_bank' => 'Dodaj hranilnik', - 'new_piggy_bank' => 'Nov hranilnik', - 'store_piggy_bank' => 'Shrani nov hranilnik', - 'stored_piggy_bank' => 'Shrani nov hranilnik ":name"', - 'account_status' => 'Stanje računa', - 'left_for_piggy_banks' => 'Preostalo za hranilnike', - 'sum_of_piggy_banks' => 'Vsota hranilnikov', - 'saved_so_far' => 'Privarčevano do sedaj', - 'left_to_save' => 'Preostalo za varčevanje', - 'suggested_amount' => 'Predlagani mesečni znesek varčevanja', - 'add_money_to_piggy_title' => 'Dodaj denar na hranilnik ":name"', - 'remove_money_from_piggy_title' => 'Odstrani denar s hranilnika ":name"', - 'add' => 'Dodaj', - 'no_money_for_piggy' => 'Nimate denarja, da bi ga dali v ta hranilnik.', - 'suggested_savings_per_month' => 'Predlagano na mesec', + 'event_history' => 'Zgodovina dogodkov', + 'add_money_to_piggy' => 'Dodaj denar na hranilnik ":name"', + 'piggy_bank' => 'Dodaj hranilnik', + 'new_piggy_bank' => 'Nov hranilnik', + 'store_piggy_bank' => 'Shrani nov hranilnik', + 'stored_piggy_bank' => 'Shrani nov hranilnik ":name"', + 'account_status' => 'Stanje računa', + 'left_for_piggy_banks' => 'Preostalo za hranilnike', + 'sum_of_piggy_banks' => 'Vsota hranilnikov', + 'saved_so_far' => 'Privarčevano do sedaj', + 'left_to_save' => 'Preostalo za varčevanje', + 'suggested_amount' => 'Predlagani mesečni znesek varčevanja', + 'add_money_to_piggy_title' => 'Dodaj denar na hranilnik ":name"', + 'remove_money_from_piggy_title' => 'Odstrani denar s hranilnika ":name"', + 'add' => 'Dodaj', + 'no_money_for_piggy' => 'Nimate denarja, da bi ga dali v ta hranilnik.', + 'suggested_savings_per_month' => 'Predlagano na mesec', - 'remove' => 'Odstrani', - 'max_amount_add' => 'Najvišji znesek, ki ga lahko dodate, je', - 'max_amount_remove' => 'Najvišji znesek, ki ga lahko odstranite, je', - 'update_piggy_button' => 'Posodobi hranilnik', - 'update_piggy_title' => 'Posodobi hranilnik ":name"', - 'updated_piggy_bank' => 'Hranilnik ":name" je posodobljen', - 'details' => 'Podrobnosti', - 'events' => 'Dogodki', - 'target_amount' => 'Ciljni znesek', - 'start_date' => 'Začetni datum', - 'no_start_date' => 'Brez začetnega datuma', - 'target_date' => 'Ciljni datum', - 'no_target_date' => 'Brez ciljnega datuma', - 'table' => 'Tabela', - 'delete_piggy_bank' => 'Izbriši hranilnik ":name"', - 'cannot_add_amount_piggy' => 'Zneska :amount ni bilo mogoče dodati na ":name".', - 'cannot_remove_from_piggy' => 'Zneska :amount ni bilo mogoče odstraniti iz ":name".', - 'deleted_piggy_bank' => 'Hranilnik ":name" je izbrisan', - 'added_amount_to_piggy' => 'Znesek :amount dodan na ":name"', - 'removed_amount_from_piggy' => 'Znesek :amount odstranjen iz ":name"', - 'piggy_events' => 'Sorodni hranilniki', + 'remove' => 'Odstrani', + 'max_amount_add' => 'Najvišji znesek, ki ga lahko dodate, je', + 'max_amount_remove' => 'Najvišji znesek, ki ga lahko odstranite, je', + 'update_piggy_button' => 'Posodobi hranilnik', + 'update_piggy_title' => 'Posodobi hranilnik ":name"', + 'updated_piggy_bank' => 'Hranilnik ":name" je posodobljen', + 'details' => 'Podrobnosti', + 'events' => 'Dogodki', + 'target_amount' => 'Ciljni znesek', + 'start_date' => 'Začetni datum', + 'no_start_date' => 'Brez začetnega datuma', + 'target_date' => 'Ciljni datum', + 'no_target_date' => 'Brez ciljnega datuma', + 'table' => 'Tabela', + 'delete_piggy_bank' => 'Izbriši hranilnik ":name"', + 'cannot_add_amount_piggy' => 'Zneska :amount ni bilo mogoče dodati na ":name".', + 'cannot_remove_from_piggy' => 'Zneska :amount ni bilo mogoče odstraniti iz ":name".', + 'deleted_piggy_bank' => 'Hranilnik ":name" je izbrisan', + 'added_amount_to_piggy' => 'Znesek :amount dodan na ":name"', + 'removed_amount_from_piggy' => 'Znesek :amount odstranjen iz ":name"', + 'piggy_events' => 'Sorodni hranilniki', // tags - 'delete_tag' => 'Izbriši oznako ":tag"', - 'deleted_tag' => 'Oznaka ":tag" je izbrisana', - 'new_tag' => 'Ustvari novo oznako', - 'edit_tag' => 'Uredi oznako ":tag"', - 'updated_tag' => 'Posodobi oznako ":tag"', - 'created_tag' => 'Oznaka ":tag" je bila ustvarjena!', + 'delete_tag' => 'Izbriši oznako ":tag"', + 'deleted_tag' => 'Oznaka ":tag" je izbrisana', + 'new_tag' => 'Ustvari novo oznako', + 'edit_tag' => 'Uredi oznako ":tag"', + 'updated_tag' => 'Posodobi oznako ":tag"', + 'created_tag' => 'Oznaka ":tag" je bila ustvarjena!', - 'transaction_journal_information' => 'Informacije o transakciji', - 'transaction_journal_amount' => 'Informacije o znesku', - 'transaction_journal_meta' => 'Meta informacije', - 'transaction_journal_more' => 'Več informacij', - 'basic_journal_information' => 'Osnovne informacije o transakciji', - 'transaction_journal_extra' => 'Dodatne informacije', - 'att_part_of_journal' => 'Shranjeno v ":journal"', - 'total_amount' => 'Skupni znesek', - 'number_of_decimals' => 'Število decimalk', + 'transaction_journal_information' => 'Informacije o transakciji', + 'transaction_journal_amount' => 'Informacije o znesku', + 'transaction_journal_meta' => 'Meta informacije', + 'transaction_journal_more' => 'Več informacij', + 'basic_journal_information' => 'Osnovne informacije o transakciji', + 'transaction_journal_extra' => 'Dodatne informacije', + 'att_part_of_journal' => 'Shranjeno v ":journal"', + 'total_amount' => 'Skupni znesek', + 'number_of_decimals' => 'Število decimalk', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Povabilo na ":address" je že unovčeno.', - 'invite_is_deleted' => 'Povabilo na ":address" je bilo izbrisano.', - 'invite_new_user_title' => 'Povabi nove uporabnike', - 'invite_new_user_text' => 'Kot skrbnik lahko povabite uporabnike, da se registrirajo v vaši administraciji Firefly III. Z uporabo neposredne povezave, ki jo lahko delite z njimi, bodo lahko registrirali račun. Povabljeni uporabnik in njegova povezava do povabila bosta prikazana v spodnji tabeli. Z njimi lahko delite povezavo do povabila.', - 'invited_user_mail' => 'E-poštni naslov', - 'invite_user' => 'Povabi uporabnika', - 'user_is_invited' => 'E-poštni naslov ":address" je bil povabljen na Firefly III', - 'administration' => 'Administracija', - 'system_settings' => 'Sistemske nastavitve', - 'code_already_used' => 'Uporabljena je bila koda povabila', - 'user_administration' => 'Upravljanje uporabnikov', - 'list_all_users' => 'Vsi uporabniki', - 'all_users' => 'Vsi uporabniki', - 'instance_configuration' => 'Nastavitve', - 'firefly_instance_configuration' => 'Možnosti nastavitev za Firefly III', - 'setting_single_user_mode' => 'Enouporabniški način', - 'setting_single_user_mode_explain' => 'Privzeto Firefly III dovoli samo eno (1) registracijo: vašo. To je varnostni ukrep, ki preprečuje drugim, da uporabljajo vašo instanco, razen če jim tega ne dovolite. Nadaljnje registracije so blokirane. Ko počistite to potrditveno polje, lahko tudi drugi uporabijo vašo instanco, če do nje lahko dostopajo (ko je objavljena na internetu).', - 'store_configuration' => 'Shranite nastavitve', - 'single_user_administration' => 'Uporabniške nastavitve za :email', - 'edit_user' => 'Uredi uporabnika :email', - 'hidden_fields_preferences' => 'Več možnosti transakcije lahko omogočite v nastavitvah.', - 'user_data_information' => 'Uporabniški podatki', - 'user_information' => 'Podatki o uporabniku', - 'total_size' => 'skupna velikost', - 'budget_or_budgets' => ':count proračun|:count proračunov', - 'budgets_with_limits' => 'Proračun:count z nastavljenim zneskom|:count proračuni z nastavljenim zneskom', - 'nr_of_rules_in_total_groups' => ':count_rules pravil v :count_groups skupinskem/ih pravilu/ih', - 'tag_or_tags' => ':count oznak|:count oznak', - 'configuration_updated' => 'Nastavitve so bili posodobljene', - 'setting_is_demo_site' => 'Demo stran', - 'setting_is_demo_site_explain' => 'Če potrdite to polje, se bo ta namestitev obnašala, kot da je to demo spletno mesto in ima lahko čudne stranske učinke.', - 'block_code_bounced' => 'Elektronsko sporočilo je bilo zavrnjeno', - 'block_code_expired' => 'Demo račun je potekel', - 'no_block_code' => 'Brez razloga za blokiranje ali pa uporabnik ni blokiran', - 'demo_user_export' => 'Demo uporabnik ne more izvoziti podatkov', - 'block_code_email_changed' => 'Uporabnik še ni potrdil novega elektronskega naslova', - 'admin_update_email' => 'V nasprotju s stranjo profila, uporabnik NE bo obveščen o spremembi svojega elektronskega naslova!', - 'update_user' => 'Posodobi uporabnika', - 'updated_user' => 'Uporabniški podatki spremenjeni.', - 'delete_user' => 'Izbriši uporabnika :email', - 'user_deleted' => 'Uporabnik je izbrisan', - 'send_test_email' => 'Pošlji testno elektronsko sporočilo', - 'send_test_email_text' => 'Če želite preveriti, ali vaša namestitev lahko pošilja e-pošto ali objavlja sporočila Slack, pritisnite ta gumb. Tukaj ne boste videli napake (če obstaja), dnevniške datoteke bodo odražale vse napake. Ta gumb lahko pritisnete tolikokrat, kot želite. Ni nadzora neželene pošte. Sporočilo bo poslano na :email in bi moralo prispeti kmalu.', - 'send_message' => 'Pošlji sporočilo', - 'send_test_triggered' => 'Test je bil sprožen. Preverite mapo »Prejeto« in datoteke dnevnika.', - 'give_admin_careful' => 'Uporabniki, ki imajo skrbniške pravice, vam lahko odvzamejo vaše. Bodi previden.', - 'admin_maintanance_title' => 'Vzdrževanje', - 'admin_maintanance_expl' => 'Nekaj čudovitih gumbov za vzdrževanje Firefly III', - 'admin_maintenance_clear_cache' => 'Izpraznite predpomnilnik', - 'admin_notifications' => 'Skrbniška obvestila', - 'admin_notifications_expl' => 'Skrbnik lahko omogoči ali onemogoči naslednja obvestila. Če želite ta sporočila prenesti tudi prek Slacka, nastavite URL "vhodni webhook".', - 'admin_notification_check_user_new_reg' => 'Uporabnik prejme pozdravno sporočilo po registraciji', - 'admin_notification_check_admin_new_reg' => 'Skrbniki prejmejo obvestilo o registraciji novega uporabnika', - 'admin_notification_check_new_version' => 'Na voljo je nova različica', - 'admin_notification_check_invite_created' => 'Uporabnik je povabljen v Firefly III', - 'admin_notification_check_invite_redeemed' => 'Uporabniško povabilo je unovčeno', - 'all_invited_users' => 'Vsi povabljeni uporabniki', - 'save_notification_settings' => 'Shrani nastavitve', - 'notification_settings_saved' => 'Nastavitve obvestil so shranjene', + 'invite_is_already_redeemed' => 'Povabilo na ":address" je že unovčeno.', + 'invite_is_deleted' => 'Povabilo na ":address" je bilo izbrisano.', + 'invite_new_user_title' => 'Povabi nove uporabnike', + 'invite_new_user_text' => 'Kot skrbnik lahko povabite uporabnike, da se registrirajo v vaši administraciji Firefly III. Z uporabo neposredne povezave, ki jo lahko delite z njimi, bodo lahko registrirali račun. Povabljeni uporabnik in njegova povezava do povabila bosta prikazana v spodnji tabeli. Z njimi lahko delite povezavo do povabila.', + 'invited_user_mail' => 'E-poštni naslov', + 'invite_user' => 'Povabi uporabnika', + 'user_is_invited' => 'E-poštni naslov ":address" je bil povabljen na Firefly III', + 'administration' => 'Administracija', + 'system_settings' => 'Sistemske nastavitve', + 'code_already_used' => 'Uporabljena je bila koda povabila', + 'user_administration' => 'Upravljanje uporabnikov', + 'list_all_users' => 'Vsi uporabniki', + 'all_users' => 'Vsi uporabniki', + 'instance_configuration' => 'Nastavitve', + 'firefly_instance_configuration' => 'Možnosti nastavitev za Firefly III', + 'setting_single_user_mode' => 'Enouporabniški način', + 'setting_single_user_mode_explain' => 'Privzeto Firefly III dovoli samo eno (1) registracijo: vašo. To je varnostni ukrep, ki preprečuje drugim, da uporabljajo vašo instanco, razen če jim tega ne dovolite. Nadaljnje registracije so blokirane. Ko počistite to potrditveno polje, lahko tudi drugi uporabijo vašo instanco, če do nje lahko dostopajo (ko je objavljena na internetu).', + 'store_configuration' => 'Shranite nastavitve', + 'single_user_administration' => 'Uporabniške nastavitve za :email', + 'edit_user' => 'Uredi uporabnika :email', + 'hidden_fields_preferences' => 'Več možnosti transakcije lahko omogočite v nastavitvah.', + 'user_data_information' => 'Uporabniški podatki', + 'user_information' => 'Podatki o uporabniku', + 'total_size' => 'skupna velikost', + 'budget_or_budgets' => ':count proračun|:count proračunov', + 'budgets_with_limits' => 'Proračun:count z nastavljenim zneskom|:count proračuni z nastavljenim zneskom', + 'nr_of_rules_in_total_groups' => ':count_rules pravil v :count_groups skupinskem/ih pravilu/ih', + 'tag_or_tags' => ':count oznak|:count oznak', + 'configuration_updated' => 'Nastavitve so bili posodobljene', + 'setting_is_demo_site' => 'Demo stran', + 'setting_is_demo_site_explain' => 'Če potrdite to polje, se bo ta namestitev obnašala, kot da je to demo spletno mesto in ima lahko čudne stranske učinke.', + 'block_code_bounced' => 'Elektronsko sporočilo je bilo zavrnjeno', + 'block_code_expired' => 'Demo račun je potekel', + 'no_block_code' => 'Brez razloga za blokiranje ali pa uporabnik ni blokiran', + 'demo_user_export' => 'Demo uporabnik ne more izvoziti podatkov', + 'block_code_email_changed' => 'Uporabnik še ni potrdil novega elektronskega naslova', + 'admin_update_email' => 'V nasprotju s stranjo profila, uporabnik NE bo obveščen o spremembi svojega elektronskega naslova!', + 'update_user' => 'Posodobi uporabnika', + 'updated_user' => 'Uporabniški podatki spremenjeni.', + 'delete_user' => 'Izbriši uporabnika :email', + 'user_deleted' => 'Uporabnik je izbrisan', + 'send_test_email' => 'Pošlji testno elektronsko sporočilo', + 'send_test_email_text' => 'Če želite preveriti, ali vaša namestitev lahko pošilja e-pošto ali objavlja sporočila Slack, pritisnite ta gumb. Tukaj ne boste videli napake (če obstaja), dnevniške datoteke bodo odražale vse napake. Ta gumb lahko pritisnete tolikokrat, kot želite. Ni nadzora neželene pošte. Sporočilo bo poslano na :email in bi moralo prispeti kmalu.', + 'send_message' => 'Pošlji sporočilo', + 'send_test_triggered' => 'Test je bil sprožen. Preverite mapo »Prejeto« in datoteke dnevnika.', + 'give_admin_careful' => 'Uporabniki, ki imajo skrbniške pravice, vam lahko odvzamejo vaše. Bodi previden.', + 'admin_maintanance_title' => 'Vzdrževanje', + 'admin_maintanance_expl' => 'Nekaj čudovitih gumbov za vzdrževanje Firefly III', + 'admin_maintenance_clear_cache' => 'Izpraznite predpomnilnik', + 'admin_notifications' => 'Skrbniška obvestila', + 'admin_notifications_expl' => 'Skrbnik lahko omogoči ali onemogoči naslednja obvestila. Če želite ta sporočila prenesti tudi prek Slacka, nastavite URL "vhodni webhook".', + 'admin_notification_check_user_new_reg' => 'Uporabnik prejme pozdravno sporočilo po registraciji', + 'admin_notification_check_admin_new_reg' => 'Skrbniki prejmejo obvestilo o registraciji novega uporabnika', + 'admin_notification_check_new_version' => 'Na voljo je nova različica', + 'admin_notification_check_invite_created' => 'Uporabnik je povabljen v Firefly III', + 'admin_notification_check_invite_redeemed' => 'Uporabniško povabilo je unovčeno', + 'all_invited_users' => 'Vsi povabljeni uporabniki', + 'save_notification_settings' => 'Shrani nastavitve', + 'notification_settings_saved' => 'Nastavitve obvestil so shranjene', - 'split_transaction_title' => 'Opis razdeljene transakcije', - 'split_transaction_title_help' => 'Če ustvarite razdeljeno transakcijo, mora obstajati globalni opis za vse razdelitve transakcije.', - 'split_title_help' => 'Če ustvarite razdeljeno transakcijo, mora obstajati globalni opis za vse dele transakcije.', - 'you_create_transfer' => 'Ustvarjate prenos.', - 'you_create_withdrawal' => 'Ustvarjate odliv.', - 'you_create_deposit' => 'Ustvarjaš priliv.', + 'split_transaction_title' => 'Opis razdeljene transakcije', + 'split_transaction_title_help' => 'Če ustvarite razdeljeno transakcijo, mora obstajati globalni opis za vse razdelitve transakcije.', + 'split_title_help' => 'Če ustvarite razdeljeno transakcijo, mora obstajati globalni opis za vse dele transakcije.', + 'you_create_transfer' => 'Ustvarjate prenos.', + 'you_create_withdrawal' => 'Ustvarjate odliv.', + 'you_create_deposit' => 'Ustvarjaš priliv.', // links - 'journal_link_configuration' => 'Nastavitev povezav transakcije', - 'create_new_link_type' => 'Ustvari novo vrsto povezave', - 'store_new_link_type' => 'Shrani novo vrsto povezave', - 'update_link_type' => 'Posodobi vrsto povezave', - 'edit_link_type' => 'Uredi vrsto povezave ":name"', - 'updated_link_type' => 'Vrsta povezave ":name" je posodobljena', - 'delete_link_type' => 'Izbriši vrsto povezave ":name"', - 'deleted_link_type' => 'Vrsta povezave ":name" je izbrisana', - 'stored_new_link_type' => 'Shranite vrsto povezave ":name"', - 'cannot_edit_link_type' => 'Ne morem urediti vrste povezave ":name"', - 'link_type_help_name' => 'Npr. "Dvojniki"', - 'link_type_help_inward' => 'Npr. "dvojniki"', - 'link_type_help_outward' => 'Npr. "podvojil ga je"', - 'save_connections_by_moving' => 'Shranite povezavo med temi transakcijami tako, da jih premaknete na drugo vrsto povezave:', - 'do_not_save_connection' => '(ne shrani povezave)', - 'link_transaction' => 'Poveži transakcijo', - 'link_to_other_transaction' => 'Poveži to transakcijo z drugo transakcijo', - 'select_transaction_to_link' => 'Izberite transakcijo, s katero želite povezati to transakcijo. Povezave trenutno niso v uporabi v Firefly III (razen tega, da so prikazane), vendar nameravam to spremeniti v prihodnosti. Z iskalnim poljem izberite transakcijo po naslovu ali ID-ju. Če želite dodati vrste povezav po meri, si oglejte skrbniški razdelek.', - 'this_transaction' => 'Ta transakcija', - 'transaction' => 'Transakcija', - 'comments' => 'Komentarji', - 'link_notes' => 'Vse opombe, ki jih želite shraniti s povezavo.', - 'invalid_link_selection' => 'Teh transakcij se ne da povezati', - 'selected_transaction' => 'Izbrana transakcija', - 'journals_linked' => 'Transakcije so povezane.', - 'journals_error_linked' => 'Te transakcije so že povezane.', - 'journals_link_to_self' => 'Transakcije ni mogoče povezati samo nase', - 'journal_links' => 'Povezave transakcije', - 'this_withdrawal' => 'Ta odliv', - 'this_deposit' => 'Ta priliv', - 'this_transfer' => 'Ta prenos', - 'overview_for_link' => 'Pregled vrste povezav ":name"', - 'source_transaction' => 'Izvorna transakcija', - 'link_description' => 'Opis povezave', - 'destination_transaction' => 'Ciljna transakcija', - 'delete_journal_link' => 'Izbriši povezavo med :source in :destination', - 'deleted_link' => 'Povezava izbrisana', + 'journal_link_configuration' => 'Nastavitev povezav transakcije', + 'create_new_link_type' => 'Ustvari novo vrsto povezave', + 'store_new_link_type' => 'Shrani novo vrsto povezave', + 'update_link_type' => 'Posodobi vrsto povezave', + 'edit_link_type' => 'Uredi vrsto povezave ":name"', + 'updated_link_type' => 'Vrsta povezave ":name" je posodobljena', + 'delete_link_type' => 'Izbriši vrsto povezave ":name"', + 'deleted_link_type' => 'Vrsta povezave ":name" je izbrisana', + 'stored_new_link_type' => 'Shranite vrsto povezave ":name"', + 'cannot_edit_link_type' => 'Ne morem urediti vrste povezave ":name"', + 'link_type_help_name' => 'Npr. "Dvojniki"', + 'link_type_help_inward' => 'Npr. "dvojniki"', + 'link_type_help_outward' => 'Npr. "podvojil ga je"', + 'save_connections_by_moving' => 'Shranite povezavo med temi transakcijami tako, da jih premaknete na drugo vrsto povezave:', + 'do_not_save_connection' => '(ne shrani povezave)', + 'link_transaction' => 'Poveži transakcijo', + 'link_to_other_transaction' => 'Poveži to transakcijo z drugo transakcijo', + 'select_transaction_to_link' => 'Izberite transakcijo, s katero želite povezati to transakcijo. Povezave trenutno niso v uporabi v Firefly III (razen tega, da so prikazane), vendar nameravam to spremeniti v prihodnosti. Z iskalnim poljem izberite transakcijo po naslovu ali ID-ju. Če želite dodati vrste povezav po meri, si oglejte skrbniški razdelek.', + 'this_transaction' => 'Ta transakcija', + 'transaction' => 'Transakcija', + 'comments' => 'Komentarji', + 'link_notes' => 'Vse opombe, ki jih želite shraniti s povezavo.', + 'invalid_link_selection' => 'Teh transakcij se ne da povezati', + 'selected_transaction' => 'Izbrana transakcija', + 'journals_linked' => 'Transakcije so povezane.', + 'journals_error_linked' => 'Te transakcije so že povezane.', + 'journals_link_to_self' => 'Transakcije ni mogoče povezati samo nase', + 'journal_links' => 'Povezave transakcije', + 'this_withdrawal' => 'Ta odliv', + 'this_deposit' => 'Ta priliv', + 'this_transfer' => 'Ta prenos', + 'overview_for_link' => 'Pregled vrste povezav ":name"', + 'source_transaction' => 'Izvorna transakcija', + 'link_description' => 'Opis povezave', + 'destination_transaction' => 'Ciljna transakcija', + 'delete_journal_link' => 'Izbriši povezavo med :source in :destination', + 'deleted_link' => 'Povezava izbrisana', // link translations: - 'Paid_name' => 'Plačano', - 'Refund_name' => 'Vračilo', - 'Reimbursement_name' => 'Povračilo', - 'Related_name' => 'Povezano', - 'relates to_inward' => 'se nanaša na', - 'is (partially) refunded by_inward' => 'je (delno) vrnjen iz', - 'is (partially) paid for by_inward' => 'je (delno) plačan iz', - 'is (partially) reimbursed by_inward' => 'je (delno) povrnjen iz', - 'inward_transaction' => 'Dohodno plačilo', - 'outward_transaction' => 'Odhodno plačilo', - 'relates to_outward' => 'povezan z', - '(partially) refunds_outward' => '(delno) poplača', - '(partially) pays for_outward' => '(delno) plača za', - '(partially) reimburses_outward' => '(delno) povrnjen', - 'is (partially) refunded by' => 'znesek je (delno) povrnen od', - 'is (partially) paid for by' => 'je (delno) plačan od', - 'is (partially) reimbursed by' => 'je (delno) povrnjen od', - 'relates to' => 'povezan z', - '(partially) refunds' => '(delna) povračila', - '(partially) pays for' => '(delno) plačan za', - '(partially) reimburses' => '(delno) povrnjen', + 'Paid_name' => 'Plačano', + 'Refund_name' => 'Vračilo', + 'Reimbursement_name' => 'Povračilo', + 'Related_name' => 'Povezano', + 'relates to_inward' => 'se nanaša na', + 'is (partially) refunded by_inward' => 'je (delno) vrnjen iz', + 'is (partially) paid for by_inward' => 'je (delno) plačan iz', + 'is (partially) reimbursed by_inward' => 'je (delno) povrnjen iz', + 'inward_transaction' => 'Dohodno plačilo', + 'outward_transaction' => 'Odhodno plačilo', + 'relates to_outward' => 'povezan z', + '(partially) refunds_outward' => '(delno) poplača', + '(partially) pays for_outward' => '(delno) plača za', + '(partially) reimburses_outward' => '(delno) povrnjen', + 'is (partially) refunded by' => 'znesek je (delno) povrnen od', + 'is (partially) paid for by' => 'je (delno) plačan od', + 'is (partially) reimbursed by' => 'je (delno) povrnjen od', + 'relates to' => 'povezan z', + '(partially) refunds' => '(delna) povračila', + '(partially) pays for' => '(delno) plačan za', + '(partially) reimburses' => '(delno) povrnjen', // split a transaction: - 'splits' => 'Razdelitve', - 'add_another_split' => 'Dodaj še eno razdelitev', - 'cannot_edit_opening_balance' => 'Ne morete urejati začetnega stanja računa.', - 'no_edit_multiple_left' => 'Za urejanje niste izbrali veljavnih transakcij.', - 'breadcrumb_convert_group' => 'Pretvori transakcijo', - 'convert_invalid_source' => 'Podatki o izvoru niso veljavni za transakcijo #%d.', - 'convert_invalid_destination' => 'Informacije o cilju niso veljavne za transakcijo #%d.', - 'create_another' => 'Po shranjevanju se vrnite sem, da ustvarite še enega.', - 'after_update_create_another' => 'Po posodobitvi se vrnite sem za nadaljevanje urejanja.', - 'store_as_new' => 'Shranite kot novo transakcijo namesto posodabljanja.', - 'reset_after' => 'Po predložitvi ponastavite obrazec', - 'errors_submission' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake.', - 'errors_submission_v2' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake: {{errorMessage}}', - 'transaction_expand_split' => 'Razširi razdelitev', - 'transaction_remove_split' => 'Odstrani delitev', - 'transaction_collapse_split' => 'Skrči razdelitev', + 'splits' => 'Razdelitve', + 'add_another_split' => 'Dodaj še eno razdelitev', + 'cannot_edit_opening_balance' => 'Ne morete urejati začetnega stanja računa.', + 'no_edit_multiple_left' => 'Za urejanje niste izbrali veljavnih transakcij.', + 'breadcrumb_convert_group' => 'Pretvori transakcijo', + 'convert_invalid_source' => 'Podatki o izvoru niso veljavni za transakcijo #%d.', + 'convert_invalid_destination' => 'Informacije o cilju niso veljavne za transakcijo #%d.', + 'create_another' => 'Po shranjevanju se vrnite sem, da ustvarite še enega.', + 'after_update_create_another' => 'Po posodobitvi se vrnite sem za nadaljevanje urejanja.', + 'store_as_new' => 'Shranite kot novo transakcijo namesto posodabljanja.', + 'reset_after' => 'Po predložitvi ponastavite obrazec', + 'errors_submission' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake.', + 'errors_submission_v2' => 'Nekaj je bilo narobe z vašo oddajo. Preverite spodnje napake: {{errorMessage}}', + 'transaction_expand_split' => 'Razširi razdelitev', + 'transaction_remove_split' => 'Odstrani delitev', + 'transaction_collapse_split' => 'Skrči razdelitev', // object groups - 'default_group_title_name' => '(nezdruženo)', - 'default_group_title_name_plain' => 'nezdruženo', + 'default_group_title_name' => '(nezdruženo)', + 'default_group_title_name_plain' => 'nezdruženo', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Ustvarimo račun sredstev!', - 'no_accounts_intro_asset' => 'Še nobenega računa sredstev nimate. Ti računi so vaši glavni računi sredstev: tekoči računi, skupni računi, varčevalni računi in celo računi kreditnih kartic.', - 'no_accounts_imperative_asset' => 'Za začetek uporabe Firefly III, morate ustvariti vsaj en račun sredstev. Naredite to zdaj:', - 'no_accounts_create_asset' => 'Ustvari račun sredstev', - 'no_accounts_title_expense' => 'Ustvarimo nov račun stroškov!', - 'no_accounts_intro_expense' => 'Nimate še nobenega računa stroškov. Računi stroškov so računi kamor knjižite denar, ki ste ga zapravili kot npr. trgovine in supermarketi.', - 'no_accounts_imperative_expense' => 'Računi stroškov se ustvarijo samodejno pri kreiranju transakcije, če pa želite, jih lahko ustvarite tudi ročno. Ustvarite enega zdaj:', - 'no_accounts_create_expense' => 'Ustvari račun stroškov', - 'no_accounts_title_revenue' => 'Ustvarimo račun prihodkov!', - 'no_accounts_intro_revenue' => 'Računov prihodkov še nimate. Računi prihodkov so tisti v katere prejemate denar, kot je na primer vaš od vašega delodajalca.', - 'no_accounts_imperative_revenue' => 'Računi prihodkov se ustvarijo samodejno ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', - 'no_accounts_create_revenue' => 'Ustvari račun prihodkov', - 'no_accounts_title_liabilities' => 'Ustvarimo obveznost!', - 'no_accounts_intro_liabilities' => 'Obveznosti še nimaš. Obveznosti so računi, ki evidentirajo (študentska) posojila in druge dolgove.', - 'no_accounts_imperative_liabilities' => 'Te funkcije ni treba uporabljati, vendar je lahko uporabna, če želite slediti tem stvarem.', - 'no_accounts_create_liabilities' => 'Ustvari obveznost', - 'no_budgets_title_default' => 'Ustvarimo proračun', - 'no_rules_title_default' => 'Ustvarimo pravilo', - 'no_budgets_intro_default' => 'Nimate še nobenega proračuna. Proračuni se uporabljajo za organiziranje vaših stroškov v logične skupine, ki jim lahko dodelite poljubne zneske za omejitev svojih stroškov.', - 'no_rules_intro_default' => 'Nimate še nobenih pravil. Pravila so močna avtomatizacija, ki lahko upravlja transakcije namesto vas.', - 'no_rules_imperative_default' => 'Pravila so lahko zelo uporabna, ko upravljate transakcije. Ustvarimo ga zdaj:', - 'no_budgets_imperative_default' => 'Proračuni so osnovno orodje finančnega upravljanja. Ustvarimo enega zdaj:', - 'no_budgets_create_default' => 'Ustvari proračun', - 'no_rules_create_default' => 'Ustvari pravilo', - 'no_categories_title_default' => 'Ustvarimo kategorijo!', - 'no_categories_intro_default' => 'Nimate še kategorij. Kategorije se uporabljajo za natančno nastavitev transakcij in označevanje z določeno kategorijo.', - 'no_categories_imperative_default' => 'Kategorije se ustvarijo avtomatično, ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', - 'no_categories_create_default' => 'Ustvari kategorijo', - 'no_tags_title_default' => 'Ustvarimo novo oznako!', - 'no_tags_intro_default' => 'Oznak še nimaš. Oznake se uporabljajo za natančno nastavitev transakcij in označevanje z določenimi ključnimi besedami.', - 'no_tags_imperative_default' => 'Oznake se ustvarijo samodejno ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', - 'no_tags_create_default' => 'Ustvari oznako', - 'no_transactions_title_withdrawal' => 'Ustvarimo nov strošek!', - 'no_transactions_intro_withdrawal' => 'Stroškov še nimate. Za upravljanje svojih financ morate ustvariti stroške.', - 'no_transactions_imperative_withdrawal' => 'Ste porabili nekaj denarja? Potem pa to vnesite:', - 'no_transactions_create_withdrawal' => 'Ustvari strošek', - 'no_transactions_title_deposit' => 'Ustvarimo nov prihodek!', - 'no_transactions_intro_deposit' => 'Prihodkov še nimate. Za upravljanje vaših financ morate začeti beležiti prihodke.', - 'no_transactions_imperative_deposit' => 'Ste dobil nekaj denarja? Potem pa to vnesite:', - 'no_transactions_create_deposit' => 'Ustvari priliv', - 'no_transactions_title_transfers' => 'Ustvarimo nov prenos!', - 'no_transactions_intro_transfers' => 'Nimate še nobenih prenosov. Če prenašate denar med računi sredstev, se to zabeleži kot prenos.', - 'no_transactions_imperative_transfers' => 'Ste že premikali denar naokoli? Potem pa to vnesite:', - 'no_transactions_create_transfers' => 'Ustvari prenos', - 'no_piggies_title_default' => 'Ustvarimo nov hranilnik!', - 'no_piggies_intro_default' => 'Nimate še hranilnikov. Lahko jih ustvarite, da razdelite svoje prihranke in spremljate, za kaj varčujete.', - 'no_piggies_imperative_default' => 'Ali imate stvari za katere varčujete? Ustvarite hranilnik in z njim sledite varčevanju:', - 'no_piggies_create_default' => 'Ustvari nov hranilnik', - 'no_bills_title_default' => 'Ustvari nov račun!', - 'no_bills_intro_default' => 'Nimate še nobenega računa. Lahko ustvarite račune za sledenje rednih stroškov, kot so najemnina ali zavarovanje.', - 'no_bills_imperative_default' => 'Imate redne račune? Ustvarite ponavljajoče se račune in sledite vašim plačilom:', - 'no_bills_create_default' => 'Ustvari nov račun', + 'no_accounts_title_asset' => 'Ustvarimo račun sredstev!', + 'no_accounts_intro_asset' => 'Še nobenega računa sredstev nimate. Ti računi so vaši glavni računi sredstev: tekoči računi, skupni računi, varčevalni računi in celo računi kreditnih kartic.', + 'no_accounts_imperative_asset' => 'Za začetek uporabe Firefly III, morate ustvariti vsaj en račun sredstev. Naredite to zdaj:', + 'no_accounts_create_asset' => 'Ustvari račun sredstev', + 'no_accounts_title_expense' => 'Ustvarimo nov račun stroškov!', + 'no_accounts_intro_expense' => 'Nimate še nobenega računa stroškov. Računi stroškov so računi kamor knjižite denar, ki ste ga zapravili kot npr. trgovine in supermarketi.', + 'no_accounts_imperative_expense' => 'Računi stroškov se ustvarijo samodejno pri kreiranju transakcije, če pa želite, jih lahko ustvarite tudi ročno. Ustvarite enega zdaj:', + 'no_accounts_create_expense' => 'Ustvari račun stroškov', + 'no_accounts_title_revenue' => 'Ustvarimo račun prihodkov!', + 'no_accounts_intro_revenue' => 'Računov prihodkov še nimate. Računi prihodkov so tisti v katere prejemate denar, kot je na primer vaš od vašega delodajalca.', + 'no_accounts_imperative_revenue' => 'Računi prihodkov se ustvarijo samodejno ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', + 'no_accounts_create_revenue' => 'Ustvari račun prihodkov', + 'no_accounts_title_liabilities' => 'Ustvarimo obveznost!', + 'no_accounts_intro_liabilities' => 'Obveznosti še nimaš. Obveznosti so računi, ki evidentirajo (študentska) posojila in druge dolgove.', + 'no_accounts_imperative_liabilities' => 'Te funkcije ni treba uporabljati, vendar je lahko uporabna, če želite slediti tem stvarem.', + 'no_accounts_create_liabilities' => 'Ustvari obveznost', + 'no_budgets_title_default' => 'Ustvarimo proračun', + 'no_rules_title_default' => 'Ustvarimo pravilo', + 'no_budgets_intro_default' => 'Nimate še nobenega proračuna. Proračuni se uporabljajo za organiziranje vaših stroškov v logične skupine, ki jim lahko dodelite poljubne zneske za omejitev svojih stroškov.', + 'no_rules_intro_default' => 'Nimate še nobenih pravil. Pravila so močna avtomatizacija, ki lahko upravlja transakcije namesto vas.', + 'no_rules_imperative_default' => 'Pravila so lahko zelo uporabna, ko upravljate transakcije. Ustvarimo ga zdaj:', + 'no_budgets_imperative_default' => 'Proračuni so osnovno orodje finančnega upravljanja. Ustvarimo enega zdaj:', + 'no_budgets_create_default' => 'Ustvari proračun', + 'no_rules_create_default' => 'Ustvari pravilo', + 'no_categories_title_default' => 'Ustvarimo kategorijo!', + 'no_categories_intro_default' => 'Nimate še kategorij. Kategorije se uporabljajo za natančno nastavitev transakcij in označevanje z določeno kategorijo.', + 'no_categories_imperative_default' => 'Kategorije se ustvarijo avtomatično, ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', + 'no_categories_create_default' => 'Ustvari kategorijo', + 'no_tags_title_default' => 'Ustvarimo novo oznako!', + 'no_tags_intro_default' => 'Oznak še nimaš. Oznake se uporabljajo za natančno nastavitev transakcij in označevanje z določenimi ključnimi besedami.', + 'no_tags_imperative_default' => 'Oznake se ustvarijo samodejno ko ustvarite transakcije, lahko pa jih ustvarite tudi ročno, če želite:', + 'no_tags_create_default' => 'Ustvari oznako', + 'no_transactions_title_withdrawal' => 'Ustvarimo nov strošek!', + 'no_transactions_intro_withdrawal' => 'Stroškov še nimate. Za upravljanje svojih financ morate ustvariti stroške.', + 'no_transactions_imperative_withdrawal' => 'Ste porabili nekaj denarja? Potem pa to vnesite:', + 'no_transactions_create_withdrawal' => 'Ustvari strošek', + 'no_transactions_title_deposit' => 'Ustvarimo nov prihodek!', + 'no_transactions_intro_deposit' => 'Prihodkov še nimate. Za upravljanje vaših financ morate začeti beležiti prihodke.', + 'no_transactions_imperative_deposit' => 'Ste dobil nekaj denarja? Potem pa to vnesite:', + 'no_transactions_create_deposit' => 'Ustvari priliv', + 'no_transactions_title_transfers' => 'Ustvarimo nov prenos!', + 'no_transactions_intro_transfers' => 'Nimate še nobenih prenosov. Če prenašate denar med računi sredstev, se to zabeleži kot prenos.', + 'no_transactions_imperative_transfers' => 'Ste že premikali denar naokoli? Potem pa to vnesite:', + 'no_transactions_create_transfers' => 'Ustvari prenos', + 'no_piggies_title_default' => 'Ustvarimo nov hranilnik!', + 'no_piggies_intro_default' => 'Nimate še hranilnikov. Lahko jih ustvarite, da razdelite svoje prihranke in spremljate, za kaj varčujete.', + 'no_piggies_imperative_default' => 'Ali imate stvari za katere varčujete? Ustvarite hranilnik in z njim sledite varčevanju:', + 'no_piggies_create_default' => 'Ustvari nov hranilnik', + 'no_bills_title_default' => 'Ustvari nov račun!', + 'no_bills_intro_default' => 'Nimate še nobenega računa. Lahko ustvarite račune za sledenje rednih stroškov, kot so najemnina ali zavarovanje.', + 'no_bills_imperative_default' => 'Imate redne račune? Ustvarite ponavljajoče se račune in sledite vašim plačilom:', + 'no_bills_create_default' => 'Ustvari nov račun', // recurring transactions - 'create_right_now' => 'Ustvari takoj', - 'no_new_transaction_in_recurrence' => 'Ustvarjena ni bila nobena nova transakcija. Mogoče je bila za ta datum že sprožena?', - 'recurrences' => 'Ponavljajoče se transakcije', - 'repeat_until_in_past' => 'Ta ponavljajoča se transakcija se je prenehala ponavljati dne :date.', - 'recurring_calendar_view' => 'Koledar', - 'no_recurring_title_default' => 'Ustvarimo ponavljajočo se transakcijo!', - 'no_recurring_intro_default' => 'Ponavljajočih transakcij še nimate. Uporabite jih lahko zato, da vam Firefly III samodejno ustvari transakcije.', - 'no_recurring_imperative_default' => 'To je precej napredna funkcija, vendar je lahko zelo uporabna. Preden nadaljuješ, se prepričaj, da si v zgornjem desnem kotu prebral dokumentacijo (ikona ?).', - 'no_recurring_create_default' => 'Ustvari ponavljajočo se transakcijo', - 'make_new_recurring' => 'Ustvari ponavljajočo se transakcijo', - 'recurring_daily' => 'Vsak dan', - 'recurring_weekly' => 'Vsak teden v :weekday', - 'recurring_weekly_skip' => 'Vsak :skip teden na :weekday', - 'recurring_monthly' => 'Vsak mesec :dayOfMonth. dan', - 'recurring_monthly_skip' => 'Vsak :skip mesec na :dayOfMonth dan', - 'recurring_ndom' => 'Vsak mesec :dayOfMonth. :weekday', - 'recurring_yearly' => 'Vsako leto na :date', - 'overview_for_recurrence' => 'Pregled ponavljajočih se transakcij ":title"', - 'warning_duplicates_repetitions' => 'V redkih primerih se datumi na tem seznamu pojavijo dvakrat. To se lahko zgodi, če pride do večkratnih ponovitev. Firefly III bo vedno ustvaril eno transakcijo na dan.', - 'created_transactions' => 'Sorodne transakcije', - 'expected_withdrawals' => 'Pričakovani odlivi', - 'expected_deposits' => 'Pričakovani prilivi', - 'expected_transfers' => 'Pričakovani prenosi', - 'created_withdrawals' => 'Ustvarjeni odlivi', - 'created_deposits' => 'Ustvarjeni prilivi', - 'created_transfers' => 'Ustvarjeno prenosi', - 'recurring_info' => 'Ponavljajoča se transakcija :count / :total', - 'created_from_recurrence' => 'Ustvarjeno iz ponavljajoče se transakcije ":title" (#:id)', - 'recurring_never_cron' => 'Zdi se, da se cron opravilo, ki je potrebno za podporo ponavljajočih se transakcij ni še nikoli zagnalo. To je seveda normalno, če ste pravkar namestili Firefly III, vendar je to nekaj, kar morate čim prej nastaviti. Oglejte si strani s pomočjo z ikono (?) - v zgornjem desnem kotu strani.', - 'recurring_cron_long_ago' => 'Izgleda, da je preteklo več kot 36 ur, odkar je zadnje cron opravilo, ki podpira ponavljajoče se transakcije, sprožilo. Ali ste prepričan, da je bilo pravilno nastavljeno? Oglejte si strani s pomočjo z ikono (?) v zgornjem desnem kotu strani.', + 'create_right_now' => 'Ustvari takoj', + 'no_new_transaction_in_recurrence' => 'Ustvarjena ni bila nobena nova transakcija. Mogoče je bila za ta datum že sprožena?', + 'recurrences' => 'Ponavljajoče se transakcije', + 'repeat_until_in_past' => 'Ta ponavljajoča se transakcija se je prenehala ponavljati dne :date.', + 'recurring_calendar_view' => 'Koledar', + 'no_recurring_title_default' => 'Ustvarimo ponavljajočo se transakcijo!', + 'no_recurring_intro_default' => 'Ponavljajočih transakcij še nimate. Uporabite jih lahko zato, da vam Firefly III samodejno ustvari transakcije.', + 'no_recurring_imperative_default' => 'To je precej napredna funkcija, vendar je lahko zelo uporabna. Preden nadaljuješ, se prepričaj, da si v zgornjem desnem kotu prebral dokumentacijo (ikona ?).', + 'no_recurring_create_default' => 'Ustvari ponavljajočo se transakcijo', + 'make_new_recurring' => 'Ustvari ponavljajočo se transakcijo', + 'recurring_daily' => 'Vsak dan', + 'recurring_weekly' => 'Vsak teden v :weekday', + 'recurring_weekly_skip' => 'Vsak :skip teden na :weekday', + 'recurring_monthly' => 'Vsak mesec :dayOfMonth. dan', + 'recurring_monthly_skip' => 'Vsak :skip mesec na :dayOfMonth dan', + 'recurring_ndom' => 'Vsak mesec :dayOfMonth. :weekday', + 'recurring_yearly' => 'Vsako leto na :date', + 'overview_for_recurrence' => 'Pregled ponavljajočih se transakcij ":title"', + 'warning_duplicates_repetitions' => 'V redkih primerih se datumi na tem seznamu pojavijo dvakrat. To se lahko zgodi, če pride do večkratnih ponovitev. Firefly III bo vedno ustvaril eno transakcijo na dan.', + 'created_transactions' => 'Sorodne transakcije', + 'expected_withdrawals' => 'Pričakovani odlivi', + 'expected_deposits' => 'Pričakovani prilivi', + 'expected_transfers' => 'Pričakovani prenosi', + 'created_withdrawals' => 'Ustvarjeni odlivi', + 'created_deposits' => 'Ustvarjeni prilivi', + 'created_transfers' => 'Ustvarjeno prenosi', + 'recurring_info' => 'Ponavljajoča se transakcija :count / :total', + 'created_from_recurrence' => 'Ustvarjeno iz ponavljajoče se transakcije ":title" (#:id)', + 'recurring_never_cron' => 'Zdi se, da se cron opravilo, ki je potrebno za podporo ponavljajočih se transakcij ni še nikoli zagnalo. To je seveda normalno, če ste pravkar namestili Firefly III, vendar je to nekaj, kar morate čim prej nastaviti. Oglejte si strani s pomočjo z ikono (?) - v zgornjem desnem kotu strani.', + 'recurring_cron_long_ago' => 'Izgleda, da je preteklo več kot 36 ur, odkar je zadnje cron opravilo, ki podpira ponavljajoče se transakcije, sprožilo. Ali ste prepričan, da je bilo pravilno nastavljeno? Oglejte si strani s pomočjo z ikono (?) v zgornjem desnem kotu strani.', - 'create_new_recurrence' => 'Ustvari novo ponavljajočo se transakcijo', - 'help_first_date' => 'Navedi prvo pričakovano ponovitev. To mora biti v prihodnosti.', - 'help_first_date_no_past' => 'Firefly III ne bo ustvarjal transakcij v preteklosti.', - 'no_currency' => '(brez valute)', - 'mandatory_for_recurring' => 'Obvezne informacije o ponovitvah', - 'mandatory_for_transaction' => 'Obvezne informacije o transakcijah', - 'optional_for_recurring' => 'Neobvezne informacije o ponovitvah', - 'optional_for_transaction' => 'Neobvezne informacije o transakcijah', - 'change_date_other_options' => 'Spremenite "prvi datum", za več možnosti.', - 'mandatory_fields_for_tranaction' => 'Te vrednosti bodo končale v ustvarjenih transakcijah', - 'click_for_calendar' => 'Kliknite tu za koledar, ki vam pokaže, kdaj se transakcija ponovi.', - 'repeat_forever' => 'Ponavljaj v nedogled', - 'repeat_until_date' => 'Ponavljaj do datuma', - 'repeat_times' => 'Ponavljaj večkrat', - 'recurring_skips_one' => 'Vsak drugi', - 'recurring_skips_more' => 'Preskoči :count ponovitev', - 'store_new_recurrence' => 'Shranite ponavljajočo se transakcijo', - 'stored_new_recurrence' => 'Ponavljajoča se transakcija ":title" uspešno shranjena.', - 'edit_recurrence' => 'Uredi ponavljajočo se transakcijo ":title"', - 'recurring_repeats_until' => 'Ponavlja se do :date', - 'recurring_repeats_forever' => 'Ponavlja se v nedogled', - 'recurring_repeats_x_times' => 'Ponavlja se :count časa|Ponavlja se :count krat', - 'update_recurrence' => 'Uredi ponavljajočo se transakcijo', - 'updated_recurrence' => 'Ponavljajoča se transakcija ":title" je bila urejena', - 'recurrence_is_inactive' => 'Ta ponavljajoča se transakcija ni aktivna in ne bo ustvarila novih transakcij.', - 'delete_recurring' => 'Izbriši ponavljajočo se transakcijo ":title"', - 'new_recurring_transaction' => 'Nova ponavljajoča se transakcija', - 'help_weekend' => 'Kaj naj Firefly III stori, ko ponavljajoča se transakcija pade na soboto ali nedeljo?', - 'do_nothing' => 'Samo ustvari transakcijo', - 'skip_transaction' => 'Preskoči ponovitev', - 'jump_to_friday' => 'Namesto tega ustvari transakcijo na prejšnji petek', - 'jump_to_monday' => 'Namesto tega ustvari transakcijo na naslednji ponedeljek', - 'will_jump_friday' => 'Bo ustvarjena v petek namesto ob vikendih.', - 'will_jump_monday' => 'Bo ustvarjena v ponedeljek namesto ob vikendih.', - 'except_weekends' => 'Razen vikendov', - 'recurrence_deleted' => 'Ponavljajoča se transakcija ":title" izbrisana', + 'create_new_recurrence' => 'Ustvari novo ponavljajočo se transakcijo', + 'help_first_date' => 'Navedi prvo pričakovano ponovitev. To mora biti v prihodnosti.', + 'help_first_date_no_past' => 'Firefly III ne bo ustvarjal transakcij v preteklosti.', + 'no_currency' => '(brez valute)', + 'mandatory_for_recurring' => 'Obvezne informacije o ponovitvah', + 'mandatory_for_transaction' => 'Obvezne informacije o transakcijah', + 'optional_for_recurring' => 'Neobvezne informacije o ponovitvah', + 'optional_for_transaction' => 'Neobvezne informacije o transakcijah', + 'change_date_other_options' => 'Spremenite "prvi datum", za več možnosti.', + 'mandatory_fields_for_tranaction' => 'Te vrednosti bodo končale v ustvarjenih transakcijah', + 'click_for_calendar' => 'Kliknite tu za koledar, ki vam pokaže, kdaj se transakcija ponovi.', + 'repeat_forever' => 'Ponavljaj v nedogled', + 'repeat_until_date' => 'Ponavljaj do datuma', + 'repeat_times' => 'Ponavljaj večkrat', + 'recurring_skips_one' => 'Vsak drugi', + 'recurring_skips_more' => 'Preskoči :count ponovitev', + 'store_new_recurrence' => 'Shranite ponavljajočo se transakcijo', + 'stored_new_recurrence' => 'Ponavljajoča se transakcija ":title" uspešno shranjena.', + 'edit_recurrence' => 'Uredi ponavljajočo se transakcijo ":title"', + 'recurring_repeats_until' => 'Ponavlja se do :date', + 'recurring_repeats_forever' => 'Ponavlja se v nedogled', + 'recurring_repeats_x_times' => 'Ponavlja se :count časa|Ponavlja se :count krat', + 'update_recurrence' => 'Uredi ponavljajočo se transakcijo', + 'updated_recurrence' => 'Ponavljajoča se transakcija ":title" je bila urejena', + 'recurrence_is_inactive' => 'Ta ponavljajoča se transakcija ni aktivna in ne bo ustvarila novih transakcij.', + 'delete_recurring' => 'Izbriši ponavljajočo se transakcijo ":title"', + 'new_recurring_transaction' => 'Nova ponavljajoča se transakcija', + 'help_weekend' => 'Kaj naj Firefly III stori, ko ponavljajoča se transakcija pade na soboto ali nedeljo?', + 'do_nothing' => 'Samo ustvari transakcijo', + 'skip_transaction' => 'Preskoči ponovitev', + 'jump_to_friday' => 'Namesto tega ustvari transakcijo na prejšnji petek', + 'jump_to_monday' => 'Namesto tega ustvari transakcijo na naslednji ponedeljek', + 'will_jump_friday' => 'Bo ustvarjena v petek namesto ob vikendih.', + 'will_jump_monday' => 'Bo ustvarjena v ponedeljek namesto ob vikendih.', + 'except_weekends' => 'Razen vikendov', + 'recurrence_deleted' => 'Ponavljajoča se transakcija ":title" izbrisana', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Stanje (:currency)', - 'box_spent_in_currency' => 'Porabljeno (:currency)', - 'box_earned_in_currency' => 'Zasluženo (:currency)', - 'box_budgeted_in_currency' => 'Proračunski znesek (:currency)', - 'box_bill_paid_in_currency' => 'Plačani računi (:currency)', - 'box_bill_unpaid_in_currency' => 'Neplačani računi (:currency)', - 'box_left_to_spend_in_currency' => 'Še za porabit (:currency)', - 'box_net_worth_in_currency' => 'Neto vrednost (:currency)', - 'box_spend_per_day' => 'Še za zapravit na dan :amount', + 'box_balance_in_currency' => 'Stanje (:currency)', + 'box_spent_in_currency' => 'Porabljeno (:currency)', + 'box_earned_in_currency' => 'Zasluženo (:currency)', + 'box_budgeted_in_currency' => 'Proračunski znesek (:currency)', + 'box_bill_paid_in_currency' => 'Plačani računi (:currency)', + 'box_bill_unpaid_in_currency' => 'Neplačani računi (:currency)', + 'box_left_to_spend_in_currency' => 'Še za porabit (:currency)', + 'box_net_worth_in_currency' => 'Neto vrednost (:currency)', + 'box_spend_per_day' => 'Še za zapravit na dan :amount', // debug page - 'debug_page' => 'Stran za odpravljanje napak', - 'debug_submit_instructions' => 'Če imate težave, lahko informacije v tem polju uporabite kot informacije za odpravljanje napak. Kopirajte in prilepite v novo ali obstoječo izdajo GitHub. Ustvaril bo čudovito tabelo, ki jo lahko uporabite za hitro diagnosticiranje vaše težave.', - 'debug_pretty_table' => 'Če kopirate/prilepite spodnje polje v izdajo GitHub, se ustvari tabela. Prosimo, da tega besedila ne obdajate s povratnimi kljukicami ali narekovaji.', - 'debug_additional_data' => 'Lahko tudi delite vsebino spodnjega polja. To lahko tudi kopirate in prilepite v novo ali obstoječo izdajo GitHub. Vendar lahko vsebina tega polja vsebuje zasebne podatke, kot so imena računov, podrobnosti o transakcijah ali e-poštni naslovi.', + 'debug_page' => 'Stran za odpravljanje napak', + 'debug_submit_instructions' => 'Če imate težave, lahko informacije v tem polju uporabite kot informacije za odpravljanje napak. Kopirajte in prilepite v novo ali obstoječo izdajo GitHub. Ustvaril bo čudovito tabelo, ki jo lahko uporabite za hitro diagnosticiranje vaše težave.', + 'debug_pretty_table' => 'Če kopirate/prilepite spodnje polje v izdajo GitHub, se ustvari tabela. Prosimo, da tega besedila ne obdajate s povratnimi kljukicami ali narekovaji.', + 'debug_additional_data' => 'Lahko tudi delite vsebino spodnjega polja. To lahko tudi kopirate in prilepite v novo ali obstoječo izdajo GitHub. Vendar lahko vsebina tega polja vsebuje zasebne podatke, kot so imena računov, podrobnosti o transakcijah ali e-poštni naslovi.', // object groups - 'object_groups_menu_bar' => 'Skupine', - 'object_groups_page_title' => 'Skupine', - 'object_groups_breadcrumb' => 'Skupine', - 'object_groups_index' => 'Pregled', - 'object_groups' => 'Skupine', - 'object_groups_empty_explain' => 'Nekatere stvari v Firefly III lahko razdelimo v skupine. Hranilniki imajo na primer polje »Skupina« na zaslonih za urejanje in ustvarjanje. Ko nastavite to polje, lahko uredite imena in vrstni red skupin na tej strani. Za več informacij si oglejte strani s pomočjo v zgornjem desnem kotu pod ikono (?).', - 'object_group_title' => 'Naslov', - 'edit_object_group' => 'Uredi skupino ":title"', - 'delete_object_group' => 'Izbriši skupino ":title"', - 'update_object_group' => 'Posodobi skupino', - 'updated_object_group' => 'Uspešno posodobljena skupina ":title"', - 'deleted_object_group' => 'Uspešno izbrisana skupina ":title"', - 'object_group' => 'Skupina', + 'object_groups_menu_bar' => 'Skupine', + 'object_groups_page_title' => 'Skupine', + 'object_groups_breadcrumb' => 'Skupine', + 'object_groups_index' => 'Pregled', + 'object_groups' => 'Skupine', + 'object_groups_empty_explain' => 'Nekatere stvari v Firefly III lahko razdelimo v skupine. Hranilniki imajo na primer polje »Skupina« na zaslonih za urejanje in ustvarjanje. Ko nastavite to polje, lahko uredite imena in vrstni red skupin na tej strani. Za več informacij si oglejte strani s pomočjo v zgornjem desnem kotu pod ikono (?).', + 'object_group_title' => 'Naslov', + 'edit_object_group' => 'Uredi skupino ":title"', + 'delete_object_group' => 'Izbriši skupino ":title"', + 'update_object_group' => 'Posodobi skupino', + 'updated_object_group' => 'Uspešno posodobljena skupina ":title"', + 'deleted_object_group' => 'Uspešno izbrisana skupina ":title"', + 'object_group' => 'Skupina', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Vnosi v revizijskem dnevniku', - 'ale_action_log_add' => 'Dodan :amount v hranilnik ":name"', - 'ale_action_log_remove' => 'Odstranjeno :amount iz hranilnika ":name"', - 'ale_action_clear_budget' => 'Odstranjeno iz proračuna', - 'ale_action_update_group_title' => 'Posodobljen naslov transakcijske skupine', - 'ale_action_update_date' => 'Posodobljen datum transakcije', - 'ale_action_update_order' => 'Posodobljeno transakcijsko naročilo', - 'ale_action_clear_category' => 'Odstranjeno iz kategorije', - 'ale_action_clear_notes' => 'Odstrani opombe', - 'ale_action_clear_tag' => 'Počiščena oznaka', - 'ale_action_clear_all_tags' => 'Izbrisane vse oznake', - 'ale_action_set_bill' => 'Povezano z računom', - 'ale_action_switch_accounts' => 'Zamenjan izvorni in ciljni račun', - 'ale_action_set_budget' => 'Določite proračun', - 'ale_action_set_category' => 'Nastavi kategorijo', - 'ale_action_set_source' => 'Nastavi izvorni račun', - 'ale_action_set_destination' => 'Nastavi ciljni račun', - 'ale_action_update_transaction_type' => 'Spremenjena vrsta transakcije', - 'ale_action_update_notes' => 'Spremenjene opombe', - 'ale_action_update_description' => 'Spremenjen opis', - 'ale_action_add_to_piggy' => 'Hranilnik', - 'ale_action_remove_from_piggy' => 'Hranilnik', - 'ale_action_add_tag' => 'Dodana oznaka', - 'ale_action_update_amount' => 'Posodobljen znesek', + 'audit_log_entries' => 'Vnosi v revizijskem dnevniku', + 'ale_action_log_add' => 'Dodan :amount v hranilnik ":name"', + 'ale_action_log_remove' => 'Odstranjeno :amount iz hranilnika ":name"', + 'ale_action_clear_budget' => 'Odstranjeno iz proračuna', + 'ale_action_update_group_title' => 'Posodobljen naslov transakcijske skupine', + 'ale_action_update_date' => 'Posodobljen datum transakcije', + 'ale_action_update_order' => 'Posodobljeno transakcijsko naročilo', + 'ale_action_clear_category' => 'Odstranjeno iz kategorije', + 'ale_action_clear_notes' => 'Odstrani opombe', + 'ale_action_clear_tag' => 'Počiščena oznaka', + 'ale_action_clear_all_tags' => 'Izbrisane vse oznake', + 'ale_action_set_bill' => 'Povezano z računom', + 'ale_action_switch_accounts' => 'Zamenjan izvorni in ciljni račun', + 'ale_action_set_budget' => 'Določite proračun', + 'ale_action_set_category' => 'Nastavi kategorijo', + 'ale_action_set_source' => 'Nastavi izvorni račun', + 'ale_action_set_destination' => 'Nastavi ciljni račun', + 'ale_action_update_transaction_type' => 'Spremenjena vrsta transakcije', + 'ale_action_update_notes' => 'Spremenjene opombe', + 'ale_action_update_description' => 'Spremenjen opis', + 'ale_action_add_to_piggy' => 'Hranilnik', + 'ale_action_remove_from_piggy' => 'Hranilnik', + 'ale_action_add_tag' => 'Dodana oznaka', + 'ale_action_update_amount' => 'Posodobljen znesek', // dashboard - 'enable_auto_convert' => 'Omogoči pretvorbo valut', - 'disable_auto_convert' => 'Onemogoči pretvorbo valut', + 'enable_auto_convert' => 'Omogoči pretvorbo valut', + 'disable_auto_convert' => 'Onemogoči pretvorbo valut', ]; /* diff --git a/resources/lang/sl_SI/validation.php b/resources/lang/sl_SI/validation.php index 704178344f..703ee8e265 100644 --- a/resources/lang/sl_SI/validation.php +++ b/resources/lang/sl_SI/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'Nimate ustreznih pravic dostopa do te administracije.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/sv_SE/firefly.php b/resources/lang/sv_SE/firefly.php index 8def968f1a..ae9269e9cc 100644 --- a/resources/lang/sv_SE/firefly.php +++ b/resources/lang/sv_SE/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Stäng', - 'actions' => 'Åtgärder', - 'edit' => 'Redigera', - 'delete' => 'Ta bort', - 'split' => 'Dela', - 'single_split' => 'Dela', - 'clone' => 'Klona', - 'clone_and_edit' => 'Klona och redigera', - 'confirm_action' => 'Bekräfta åtgärd', - 'last_seven_days' => 'Senaste 7 dagarna', - 'last_thirty_days' => 'Senaste 30 dagarna', - 'last_180_days' => 'Senaste 180 dagarna', - 'month_to_date' => 'Månad hittills', - 'year_to_date' => 'År hittills', - 'YTD' => 'ÅTD', - 'welcome_back' => 'Vad spelas?', - 'everything' => 'Allt', - 'today' => 'idag', - 'customRange' => 'Egen tidsperiod', - 'date_range' => 'Datumintervall', - 'apply' => 'Bekräfta', - 'select_date' => 'Välj datum..', - 'cancel' => 'Avbryt', - 'from' => 'Från', - 'to' => 'Till', - 'structure' => 'Struktur', - 'help_translating' => 'Den här hjälptexten finns inte på svenska än. Kan du hjälpa till att översätta?', - 'showEverything' => 'Visa allt', - 'never' => 'Aldrig', - 'no_results_for_empty_search' => 'Din sökning var tom, så ingenting hittades.', - 'removed_amount' => 'Borttaget :amount', - 'added_amount' => 'Lade till :amount', - 'asset_account_role_help' => 'Extra alternativ utifrån ditt val kan ändras senare.', - 'Opening balance' => 'Ingående balans', - 'create_new_stuff' => 'Skapa nya saker', - 'new_withdrawal' => 'Nytt uttag', - 'create_new_transaction' => 'Skapa en ny transaktion', - 'sidebar_frontpage_create' => 'Skapa', - 'new_transaction' => 'Lägg till transaktion', - 'no_rules_for_bill' => 'Notan saknar associerade regler.', - 'go_to_asset_accounts' => 'Visa dina tillgångskonton', - 'go_to_budgets' => 'Gå till dina budgetar', - 'go_to_withdrawals' => 'Gå till dina uttag', - 'clones_journal_x' => 'Denna transaktion är en klon av ":description" (#:id)', - 'go_to_categories' => 'Gå till dina kategorier', - 'go_to_bills' => 'Gå till dina räkningar', - 'go_to_expense_accounts' => 'Se dina utgiftskonton', - 'go_to_revenue_accounts' => 'Se din intäktskonton', - 'go_to_piggies' => 'Gå till dina sparbössor', - 'new_deposit' => 'Ny insättning', - 'new_transfer' => 'Ny överföring', - 'new_transfers' => 'Ny överföring', - 'new_asset_account' => 'Nytt tillgångskonto', - 'new_expense_account' => 'Nytt utgiftskonto', - 'new_revenue_account' => 'Nytt intäktskonto', - 'new_liabilities_account' => 'Ny skuld', - 'new_budget' => 'Ny budget', - 'new_bill' => 'Ny nota', - 'block_account_logout' => 'Du har loggats ut. Blockerade konton kan inte använda den här sidan. Registrerade du dig med en giltig e-postadress?', - 'flash_success' => 'Slutförd!', - 'flash_info' => 'Meddelande', - 'flash_warning' => 'Varning!', - 'flash_error' => 'Fel!', - 'flash_danger' => 'Fara!', - 'flash_info_multiple' => 'Det finns ett meddelande|Det finns :count meddelanden', - 'flash_error_multiple' => 'Det finns ett felmeddelande|Det finns :count felmeddelanden', - 'net_worth' => 'Nettoförmögenhet', - 'help_for_this_page' => 'Hjälp för denna sidan', - 'help_for_this_page_body' => 'Du hittar mer information om denna sida i dokumentationen.', - 'two_factor_welcome' => 'Hej!', - 'two_factor_enter_code' => 'För att fortsätta, mata in din tvåfaktorsautentiseringkod. Din applikation kan generera den åt dig.', - 'two_factor_code_here' => 'Skriv in koden', - 'two_factor_title' => 'Tvåfaktorsautensiering', - 'authenticate' => 'Autentisera', - 'two_factor_forgot_title' => 'Förlorad tvåfaktorsautentisering', - 'two_factor_forgot' => 'Jag har glömt min tvåfaktors-pryl.', - 'two_factor_lost_header' => 'Förlorad tvåfaktorsautentisering?', - 'two_factor_lost_intro' => 'Om du har förlorat även dina backupkoder har du otur. Detta är inte något du kan fixa från webbgränssnittet. Du har två val.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Annars, skicka epost till sajt-ägaren, :site_owner och be hen att återställa din tvåfaktorsautentisering.', - 'mfa_backup_code' => 'Du har använt en engångskod för att logga in i Firefly III. Den kan inte användas igen, så stryk den från din lista.', - 'pref_two_factor_new_backup_codes' => 'Generera nya engångskoder', - 'pref_two_factor_backup_code_count' => 'Du har :count giltig backup kod.|Du har :count giltiga backup koder.', - '2fa_i_have_them' => 'Sparade!', - 'warning_much_data' => ':days dagar med data kan ta ett tag att ladda.', - 'registered' => 'Din registrering lyckades!', - 'Default asset account' => 'Förvalt tillgångskonto', - 'no_budget_pointer' => 'Du verkar inte ha några budgetar än. Du bör skapa några på budgetar-sidan. Budgetar kan hjälpa dig att hålla reda på utgifter.', - 'no_bill_pointer' => 'Du verkar inte ha några räkningar ännu. Du bör skapa några på räkningar-sidan. Räkningar kan hjälpa dig att hålla reda på utgifter.', - 'Savings account' => 'Sparkonto', - 'Credit card' => 'Kreditkort', - 'source_accounts' => 'Källkonto|Källkonton', - 'destination_accounts' => 'Destination konto|Destination konton', - 'user_id_is' => 'Ditt användarid är :user', - 'field_supports_markdown' => 'Detta fält stödjer Markdown.', - 'need_more_help' => 'Om du behöver mer hjälp med att använda Firefly III, öppna en ticket på GitHub.', - 'reenable_intro_text' => 'Du kan också aktivera introduktionsguidningen.', - 'intro_boxes_after_refresh' => 'Introduktionsrutorna dyker upp igen när du uppdaterar sidan.', - 'show_all_no_filter' => 'Visa alla transaktioner utan att gruppera dem efter datum.', - 'expenses_by_category' => 'Utgifter per kategori', - 'expenses_by_budget' => 'Utgifter per budget', - 'income_by_category' => 'Intäkter per kategori', - 'expenses_by_asset_account' => 'Kostnader per tillgångskonto', - 'expenses_by_expense_account' => 'Kostnader per utgiftskonton', - 'cannot_redirect_to_account' => 'Förlåt, Firefly III kan inte omdirigera dig till rätt sida.', - 'sum_of_expenses' => 'Summa av kostnader', - 'sum_of_income' => 'Summa av inkomst', - 'liabilities' => 'Skulder', - 'spent_in_specific_budget' => 'Spenderad budget ":budget"', - 'spent_in_specific_double' => 'Spenderat i kontot ":account"', - 'earned_in_specific_double' => 'Intjänat i kontot ":account"', - 'source_account' => 'Källkonto', - 'source_account_reconciliation' => 'Du kan inte redigera källkontot för en avstämningstransaktion.', - 'destination_account' => 'Till konto', - 'destination_account_reconciliation' => 'Du kan inte redigera destinationskontot för en avstämningstransaktion.', - 'sum_of_expenses_in_budget' => 'Spenderat totalt i budget ":budget"', - 'left_in_budget_limit' => 'Kvar att spender enligt budget', - 'current_period' => 'Nuvarande period', - 'show_the_current_period_and_overview' => 'Visa nuvarande period och översikt', - 'pref_languages_locale' => 'För att ett språk förutom Engelska ska fungera bra, behöver ditt operativsystem ha de rätta språkinställningarna. Annars kommer inte valuta information, datum och summor visas på rätt sätt.', - 'budget_in_period' => 'Alla transaktioner för budget ":name" mellan :start och :end för :currency', - 'chart_budget_in_period' => 'Diagram med alla transaktioner för budget ":name" mellan :start och :end för :currency', - 'chart_budget_in_period_only_currency' => 'Summan du budgeterat var i :currency, detta diagram visar bara transaktioner i :currency.', - 'chart_account_in_period' => 'Diagram för alla transaktioner för kontot ":name" (:balance) mellan :start och :end', - 'chart_category_in_period' => 'Diagram med alla transaktioner för kategorin ":name" mellan :start och :end', - 'chart_category_all' => 'Diagram med alla transaktioner för kategorin ":name"', - 'clone_withdrawal' => 'Klona detta uttag', - 'clone_deposit' => 'Klona denna insättning', - 'clone_transfer' => 'Klona denna överföring', - 'multi_select_no_selection' => 'Inget valt', - 'multi_select_select_all' => 'Markera allt', - 'multi_select_n_selected' => 'vald', - 'multi_select_all_selected' => 'Allt valt', - 'multi_select_filter_placeholder' => 'Sök..', - 'intro_next_label' => 'Nästa', - 'intro_prev_label' => 'Föregående', - 'intro_skip_label' => 'Hoppa över', - 'intro_done_label' => 'Klart', - 'between_dates_breadcrumb' => 'Mellan :start och :end', - 'all_journals_without_budget' => 'Alla transaktioner utan en budget', - 'journals_without_budget' => 'Transaktioner utan budget', - 'all_journals_without_category' => 'Alla transaktioner utan en kategori', - 'journals_without_category' => 'Transaktioner utan en kategori', - 'all_journals_for_account' => 'Alla transaktioner för konto :name', - 'chart_all_journals_for_account' => 'Diagram med alla transaktioner för konto :name', - 'journals_in_period_for_account' => 'Alla transaktioner för konto :name mellan :start och :end', - 'journals_in_period_for_account_js' => 'Alla transaktioner för konto {title} mellan {start} och {end}', - 'transferred' => 'Överfört', - 'all_withdrawal' => 'All utgifter', - 'all_transactions' => 'Alla transaktioner', - 'title_withdrawal_between' => 'Alla utgifter mellan :start och :end', - 'all_deposit' => 'Alla intäkter', - 'title_deposit_between' => 'Alla intäkter mellan :start och :end', - 'all_transfers' => 'Alla överföringar', - 'title_transfers_between' => 'Alla överföringar mellan :start och :end', - 'all_transfer' => 'Alla överföringar', - 'all_journals_for_tag' => 'Alla överföringar märkta med ":tag"', - 'title_transfer_between' => 'Alla överföringar mellan :start och :end', - 'all_journals_for_category' => 'Alla transaktioner för kategori :name', - 'all_journals_for_budget' => 'Alla transaktioner för budget :name', - 'chart_all_journals_for_budget' => 'Diagram med alla transaktioner för budget :name', - 'journals_in_period_for_category' => 'Alla transaktioner för kategori :name mellan :start och :end', - 'journals_in_period_for_tag' => 'Alla transaktioner märkta :tag mellan :start och :end', - 'not_available_demo_user' => 'Denna funktionen är inte tillgänglig för demo användare.', - 'exchange_rate_instructions' => 'Tillgångskonto "@name" tillåter transaktioner endast i @native_currency. Om du önskar använda @foreign_currency, vänligen säkerställ att summan i @native_currency också är känd:', - 'transfer_exchange_rate_instructions' => 'Källkontot "@source_name" accepterar bara transaktioner i @source_currency. Mottagarkontot "@dest_name" accepterar bara transaktioner i @dest_currencty. Du behöver ange det överförda beloppet korrekt i båda valutorna.', - 'transaction_data' => 'Transaktionsdata', - 'invalid_server_configuration' => 'Ogiltig serverkonfiguration', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Snabbbyte', - 'sign_in_to_start' => 'Logga in för att börja din session', - 'sign_in' => 'Logga in', - 'register_new_account' => 'Registrera ett nytt konto', - 'forgot_my_password' => 'Glömt mitt lösenord', - 'problems_with_input' => 'Det fanns program med din inmatning.', - 'reset_password' => 'Återställ ditt lösenord', - 'button_reset_password' => 'Återställ lösenord', - 'reset_button' => 'Återställ', - 'want_to_login' => 'Jag vill logga in', - 'login_page_title' => 'Logga in till Firefly III', - 'register_page_title' => 'Registrera hos Firefly III', - 'forgot_pw_page_title' => 'Glömt ditt lösenord till Firefly III', - 'reset_pw_page_title' => 'Återställ ditt lösenord för Firefly III', - 'cannot_reset_demo_user' => 'Går inte att återställa lösenordet för demo användaren.', - 'no_att_demo_user' => 'Demoanvändaren kan inte ladda upp bilagor.', - 'button_register' => 'Registrera', - 'authorization' => 'Auktorisering', - 'active_bills_only' => 'endast aktiva räkningar', - 'active_bills_only_total' => 'alla aktiva räkningar', - 'active_exp_bills_only' => 'endast aktiva och väntade räkningar', - 'active_exp_bills_only_total' => 'alla aktiva förväntade räkningar endast', - 'per_period_sum_1D' => 'Förväntade dagliga kostnader', - 'per_period_sum_1W' => 'Förväntade veckokostnader', - 'per_period_sum_1M' => 'Förväntade månadskostnader', - 'per_period_sum_3M' => 'Förväntade kvartalskostnader', - 'per_period_sum_6M' => 'Förväntade halvårskostnader', - 'per_period_sum_1Y' => 'Förväntade årliga kostnader', - 'average_per_bill' => 'medel per nota', - 'expected_total' => 'total förväntad', - 'reconciliation_account_name' => ':name avstämning (:currency)', - 'saved' => 'Sparad', - 'advanced_options' => 'Avancerade alternativ', - 'advanced_options_explain' => 'Vissa sidor i Firefly III har avancerade alternativ gömda bakom den här knappen. Den här sidan har inget tjusigt här, men kolla in de andra!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Stäng', + 'actions' => 'Åtgärder', + 'edit' => 'Redigera', + 'delete' => 'Ta bort', + 'split' => 'Dela', + 'single_split' => 'Dela', + 'clone' => 'Klona', + 'clone_and_edit' => 'Klona och redigera', + 'confirm_action' => 'Bekräfta åtgärd', + 'last_seven_days' => 'Senaste 7 dagarna', + 'last_thirty_days' => 'Senaste 30 dagarna', + 'last_180_days' => 'Senaste 180 dagarna', + 'month_to_date' => 'Månad hittills', + 'year_to_date' => 'År hittills', + 'YTD' => 'ÅTD', + 'welcome_back' => 'Vad spelas?', + 'everything' => 'Allt', + 'today' => 'idag', + 'customRange' => 'Egen tidsperiod', + 'date_range' => 'Datumintervall', + 'apply' => 'Bekräfta', + 'select_date' => 'Välj datum..', + 'cancel' => 'Avbryt', + 'from' => 'Från', + 'to' => 'Till', + 'structure' => 'Struktur', + 'help_translating' => 'Den här hjälptexten finns inte på svenska än. Kan du hjälpa till att översätta?', + 'showEverything' => 'Visa allt', + 'never' => 'Aldrig', + 'no_results_for_empty_search' => 'Din sökning var tom, så ingenting hittades.', + 'removed_amount' => 'Borttaget :amount', + 'added_amount' => 'Lade till :amount', + 'asset_account_role_help' => 'Extra alternativ utifrån ditt val kan ändras senare.', + 'Opening balance' => 'Ingående balans', + 'create_new_stuff' => 'Skapa nya saker', + 'new_withdrawal' => 'Nytt uttag', + 'create_new_transaction' => 'Skapa en ny transaktion', + 'sidebar_frontpage_create' => 'Skapa', + 'new_transaction' => 'Lägg till transaktion', + 'no_rules_for_bill' => 'Notan saknar associerade regler.', + 'go_to_asset_accounts' => 'Visa dina tillgångskonton', + 'go_to_budgets' => 'Gå till dina budgetar', + 'go_to_withdrawals' => 'Gå till dina uttag', + 'clones_journal_x' => 'Denna transaktion är en klon av ":description" (#:id)', + 'go_to_categories' => 'Gå till dina kategorier', + 'go_to_bills' => 'Gå till dina räkningar', + 'go_to_expense_accounts' => 'Se dina utgiftskonton', + 'go_to_revenue_accounts' => 'Se din intäktskonton', + 'go_to_piggies' => 'Gå till dina sparbössor', + 'new_deposit' => 'Ny insättning', + 'new_transfer' => 'Ny överföring', + 'new_transfers' => 'Ny överföring', + 'new_asset_account' => 'Nytt tillgångskonto', + 'new_expense_account' => 'Nytt utgiftskonto', + 'new_revenue_account' => 'Nytt intäktskonto', + 'new_liabilities_account' => 'Ny skuld', + 'new_budget' => 'Ny budget', + 'new_bill' => 'Ny nota', + 'block_account_logout' => 'Du har loggats ut. Blockerade konton kan inte använda den här sidan. Registrerade du dig med en giltig e-postadress?', + 'flash_success' => 'Slutförd!', + 'flash_info' => 'Meddelande', + 'flash_warning' => 'Varning!', + 'flash_error' => 'Fel!', + 'flash_danger' => 'Fara!', + 'flash_info_multiple' => 'Det finns ett meddelande|Det finns :count meddelanden', + 'flash_error_multiple' => 'Det finns ett felmeddelande|Det finns :count felmeddelanden', + 'net_worth' => 'Nettoförmögenhet', + 'help_for_this_page' => 'Hjälp för denna sidan', + 'help_for_this_page_body' => 'Du hittar mer information om denna sida i dokumentationen.', + 'two_factor_welcome' => 'Hej!', + 'two_factor_enter_code' => 'För att fortsätta, mata in din tvåfaktorsautentiseringkod. Din applikation kan generera den åt dig.', + 'two_factor_code_here' => 'Skriv in koden', + 'two_factor_title' => 'Tvåfaktorsautensiering', + 'authenticate' => 'Autentisera', + 'two_factor_forgot_title' => 'Förlorad tvåfaktorsautentisering', + 'two_factor_forgot' => 'Jag har glömt min tvåfaktors-pryl.', + 'two_factor_lost_header' => 'Förlorad tvåfaktorsautentisering?', + 'two_factor_lost_intro' => 'Om du har förlorat även dina backupkoder har du otur. Detta är inte något du kan fixa från webbgränssnittet. Du har två val.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Annars, skicka epost till sajt-ägaren, :site_owner och be hen att återställa din tvåfaktorsautentisering.', + 'mfa_backup_code' => 'Du har använt en engångskod för att logga in i Firefly III. Den kan inte användas igen, så stryk den från din lista.', + 'pref_two_factor_new_backup_codes' => 'Generera nya engångskoder', + 'pref_two_factor_backup_code_count' => 'Du har :count giltig backup kod.|Du har :count giltiga backup koder.', + '2fa_i_have_them' => 'Sparade!', + 'warning_much_data' => ':days dagar med data kan ta ett tag att ladda.', + 'registered' => 'Din registrering lyckades!', + 'Default asset account' => 'Förvalt tillgångskonto', + 'no_budget_pointer' => 'Du verkar inte ha några budgetar än. Du bör skapa några på budgetar-sidan. Budgetar kan hjälpa dig att hålla reda på utgifter.', + 'no_bill_pointer' => 'Du verkar inte ha några räkningar ännu. Du bör skapa några på räkningar-sidan. Räkningar kan hjälpa dig att hålla reda på utgifter.', + 'Savings account' => 'Sparkonto', + 'Credit card' => 'Kreditkort', + 'source_accounts' => 'Källkonto|Källkonton', + 'destination_accounts' => 'Destination konto|Destination konton', + 'user_id_is' => 'Ditt användarid är :user', + 'field_supports_markdown' => 'Detta fält stödjer Markdown.', + 'need_more_help' => 'Om du behöver mer hjälp med att använda Firefly III, öppna en ticket på GitHub.', + 'reenable_intro_text' => 'Du kan också aktivera introduktionsguidningen.', + 'intro_boxes_after_refresh' => 'Introduktionsrutorna dyker upp igen när du uppdaterar sidan.', + 'show_all_no_filter' => 'Visa alla transaktioner utan att gruppera dem efter datum.', + 'expenses_by_category' => 'Utgifter per kategori', + 'expenses_by_budget' => 'Utgifter per budget', + 'income_by_category' => 'Intäkter per kategori', + 'expenses_by_asset_account' => 'Kostnader per tillgångskonto', + 'expenses_by_expense_account' => 'Kostnader per utgiftskonton', + 'cannot_redirect_to_account' => 'Förlåt, Firefly III kan inte omdirigera dig till rätt sida.', + 'sum_of_expenses' => 'Summa av kostnader', + 'sum_of_income' => 'Summa av inkomst', + 'liabilities' => 'Skulder', + 'spent_in_specific_budget' => 'Spenderad budget ":budget"', + 'spent_in_specific_double' => 'Spenderat i kontot ":account"', + 'earned_in_specific_double' => 'Intjänat i kontot ":account"', + 'source_account' => 'Källkonto', + 'source_account_reconciliation' => 'Du kan inte redigera källkontot för en avstämningstransaktion.', + 'destination_account' => 'Till konto', + 'destination_account_reconciliation' => 'Du kan inte redigera destinationskontot för en avstämningstransaktion.', + 'sum_of_expenses_in_budget' => 'Spenderat totalt i budget ":budget"', + 'left_in_budget_limit' => 'Kvar att spender enligt budget', + 'current_period' => 'Nuvarande period', + 'show_the_current_period_and_overview' => 'Visa nuvarande period och översikt', + 'pref_languages_locale' => 'För att ett språk förutom Engelska ska fungera bra, behöver ditt operativsystem ha de rätta språkinställningarna. Annars kommer inte valuta information, datum och summor visas på rätt sätt.', + 'budget_in_period' => 'Alla transaktioner för budget ":name" mellan :start och :end för :currency', + 'chart_budget_in_period' => 'Diagram med alla transaktioner för budget ":name" mellan :start och :end för :currency', + 'chart_budget_in_period_only_currency' => 'Summan du budgeterat var i :currency, detta diagram visar bara transaktioner i :currency.', + 'chart_account_in_period' => 'Diagram för alla transaktioner för kontot ":name" (:balance) mellan :start och :end', + 'chart_category_in_period' => 'Diagram med alla transaktioner för kategorin ":name" mellan :start och :end', + 'chart_category_all' => 'Diagram med alla transaktioner för kategorin ":name"', + 'clone_withdrawal' => 'Klona detta uttag', + 'clone_deposit' => 'Klona denna insättning', + 'clone_transfer' => 'Klona denna överföring', + 'multi_select_no_selection' => 'Inget valt', + 'multi_select_select_all' => 'Markera allt', + 'multi_select_n_selected' => 'vald', + 'multi_select_all_selected' => 'Allt valt', + 'multi_select_filter_placeholder' => 'Sök..', + 'intro_next_label' => 'Nästa', + 'intro_prev_label' => 'Föregående', + 'intro_skip_label' => 'Hoppa över', + 'intro_done_label' => 'Klart', + 'between_dates_breadcrumb' => 'Mellan :start och :end', + 'all_journals_without_budget' => 'Alla transaktioner utan en budget', + 'journals_without_budget' => 'Transaktioner utan budget', + 'all_journals_without_category' => 'Alla transaktioner utan en kategori', + 'journals_without_category' => 'Transaktioner utan en kategori', + 'all_journals_for_account' => 'Alla transaktioner för konto :name', + 'chart_all_journals_for_account' => 'Diagram med alla transaktioner för konto :name', + 'journals_in_period_for_account' => 'Alla transaktioner för konto :name mellan :start och :end', + 'journals_in_period_for_account_js' => 'Alla transaktioner för konto {title} mellan {start} och {end}', + 'transferred' => 'Överfört', + 'all_withdrawal' => 'All utgifter', + 'all_transactions' => 'Alla transaktioner', + 'title_withdrawal_between' => 'Alla utgifter mellan :start och :end', + 'all_deposit' => 'Alla intäkter', + 'title_deposit_between' => 'Alla intäkter mellan :start och :end', + 'all_transfers' => 'Alla överföringar', + 'title_transfers_between' => 'Alla överföringar mellan :start och :end', + 'all_transfer' => 'Alla överföringar', + 'all_journals_for_tag' => 'Alla överföringar märkta med ":tag"', + 'title_transfer_between' => 'Alla överföringar mellan :start och :end', + 'all_journals_for_category' => 'Alla transaktioner för kategori :name', + 'all_journals_for_budget' => 'Alla transaktioner för budget :name', + 'chart_all_journals_for_budget' => 'Diagram med alla transaktioner för budget :name', + 'journals_in_period_for_category' => 'Alla transaktioner för kategori :name mellan :start och :end', + 'journals_in_period_for_tag' => 'Alla transaktioner märkta :tag mellan :start och :end', + 'not_available_demo_user' => 'Denna funktionen är inte tillgänglig för demo användare.', + 'exchange_rate_instructions' => 'Tillgångskonto "@name" tillåter transaktioner endast i @native_currency. Om du önskar använda @foreign_currency, vänligen säkerställ att summan i @native_currency också är känd:', + 'transfer_exchange_rate_instructions' => 'Källkontot "@source_name" accepterar bara transaktioner i @source_currency. Mottagarkontot "@dest_name" accepterar bara transaktioner i @dest_currencty. Du behöver ange det överförda beloppet korrekt i båda valutorna.', + 'transaction_data' => 'Transaktionsdata', + 'invalid_server_configuration' => 'Ogiltig serverkonfiguration', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Snabbbyte', + 'sign_in_to_start' => 'Logga in för att börja din session', + 'sign_in' => 'Logga in', + 'register_new_account' => 'Registrera ett nytt konto', + 'forgot_my_password' => 'Glömt mitt lösenord', + 'problems_with_input' => 'Det fanns program med din inmatning.', + 'reset_password' => 'Återställ ditt lösenord', + 'button_reset_password' => 'Återställ lösenord', + 'reset_button' => 'Återställ', + 'want_to_login' => 'Jag vill logga in', + 'login_page_title' => 'Logga in till Firefly III', + 'register_page_title' => 'Registrera hos Firefly III', + 'forgot_pw_page_title' => 'Glömt ditt lösenord till Firefly III', + 'reset_pw_page_title' => 'Återställ ditt lösenord för Firefly III', + 'cannot_reset_demo_user' => 'Går inte att återställa lösenordet för demo användaren.', + 'no_att_demo_user' => 'Demoanvändaren kan inte ladda upp bilagor.', + 'button_register' => 'Registrera', + 'authorization' => 'Auktorisering', + 'active_bills_only' => 'endast aktiva räkningar', + 'active_bills_only_total' => 'alla aktiva räkningar', + 'active_exp_bills_only' => 'endast aktiva och väntade räkningar', + 'active_exp_bills_only_total' => 'alla aktiva förväntade räkningar endast', + 'per_period_sum_1D' => 'Förväntade dagliga kostnader', + 'per_period_sum_1W' => 'Förväntade veckokostnader', + 'per_period_sum_1M' => 'Förväntade månadskostnader', + 'per_period_sum_3M' => 'Förväntade kvartalskostnader', + 'per_period_sum_6M' => 'Förväntade halvårskostnader', + 'per_period_sum_1Y' => 'Förväntade årliga kostnader', + 'average_per_bill' => 'medel per nota', + 'expected_total' => 'total förväntad', + 'reconciliation_account_name' => ':name avstämning (:currency)', + 'saved' => 'Sparad', + 'advanced_options' => 'Avancerade alternativ', + 'advanced_options_explain' => 'Vissa sidor i Firefly III har avancerade alternativ gömda bakom den här knappen. Den här sidan har inget tjusigt här, men kolla in de andra!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhookar', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'inaktiverad', - 'no_webhook_messages' => 'There are no webhook messages', - 'webhook_trigger_STORE_TRANSACTION' => 'Efter skapande av transaktion', - 'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update', - 'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete', - 'webhook_response_TRANSACTIONS' => 'Transaktionsdetaljer', - 'webhook_response_ACCOUNTS' => 'Kontodetaljer', - 'webhook_response_none_NONE' => 'Inga detaljer', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Inspektera', - '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.', - 'webhook_messages' => 'Webhook message', - 'view_message' => 'Visa meddelande', - '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' => 'Loggar', - 'response' => 'Svar', - 'visit_webhook_url' => 'Visit webhook URL', - 'reset_webhook_secret' => 'Reset webhook secret', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhookar', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'inaktiverad', + 'no_webhook_messages' => 'There are no webhook messages', + 'webhook_trigger_STORE_TRANSACTION' => 'Efter skapande av transaktion', + 'webhook_trigger_UPDATE_TRANSACTION' => 'After transaction update', + 'webhook_trigger_DESTROY_TRANSACTION' => 'After transaction delete', + 'webhook_response_TRANSACTIONS' => 'Transaktionsdetaljer', + 'webhook_response_ACCOUNTS' => 'Kontodetaljer', + 'webhook_response_none_NONE' => 'Inga detaljer', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Inspektera', + '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.', + 'webhook_messages' => 'Webhook message', + 'view_message' => 'Visa meddelande', + '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' => 'Loggar', + 'response' => 'Svar', + 'visit_webhook_url' => 'Visit webhook URL', + 'reset_webhook_secret' => 'Reset webhook secret', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Auktorisationsbegäran', - 'authorization_request_intro' => 'Applikationen ":client" begär behörighet att få tillgång till din ekonomiska administration. Vill du ge :client tillgång till dessa poster?', - 'authorization_request_site' => 'Du kommer omdirigeras till :url som sedan kommer få tillgång till dina Firefly III-data.', - 'authorization_request_invalid' => 'Denna begäran om åtkomst är ogiltig. Följ aldrig den här länken igen.', - 'scopes_will_be_able' => 'Detta program kommer att kunna:', - 'button_authorize' => 'Godkänn', - 'none_in_select_list' => '(Ingen)', - 'no_piggy_bank' => '(ingen spargris)', - 'name_in_currency' => ':name i :currency', - 'paid_in_currency' => 'Betalad i :currency', - 'unpaid_in_currency' => 'Obetalad i :currency', - 'is_alpha_warning' => 'Du kör en ALPHA-version. Var försiktig med buggar och problem.', - 'is_beta_warning' => 'Du kör en BETA-version. Var försiktig med buggar och problem.', - 'all_destination_accounts' => 'Destinationskonton', - 'all_source_accounts' => 'Källkonton', - 'back_to_index' => 'Åter till index', - 'cant_logout_guard' => 'Firefly III kan inte logga ut dig.', - 'internal_reference' => 'Intern referens', + 'authorization_request' => 'Firefly III v:version Auktorisationsbegäran', + 'authorization_request_intro' => 'Applikationen ":client" begär behörighet att få tillgång till din ekonomiska administration. Vill du ge :client tillgång till dessa poster?', + 'authorization_request_site' => 'Du kommer omdirigeras till :url som sedan kommer få tillgång till dina Firefly III-data.', + 'authorization_request_invalid' => 'Denna begäran om åtkomst är ogiltig. Följ aldrig den här länken igen.', + 'scopes_will_be_able' => 'Detta program kommer att kunna:', + 'button_authorize' => 'Godkänn', + 'none_in_select_list' => '(Ingen)', + 'no_piggy_bank' => '(ingen spargris)', + 'name_in_currency' => ':name i :currency', + 'paid_in_currency' => 'Betalad i :currency', + 'unpaid_in_currency' => 'Obetalad i :currency', + 'is_alpha_warning' => 'Du kör en ALPHA-version. Var försiktig med buggar och problem.', + 'is_beta_warning' => 'Du kör en BETA-version. Var försiktig med buggar och problem.', + 'all_destination_accounts' => 'Destinationskonton', + 'all_source_accounts' => 'Källkonton', + 'back_to_index' => 'Åter till index', + 'cant_logout_guard' => 'Firefly III kan inte logga ut dig.', + 'internal_reference' => 'Intern referens', // check for updates: - 'update_check_title' => 'Sök uppdateringar', - 'admin_update_check_title' => 'Sök automatiskt efter uppdateringar', - 'admin_update_check_explain' => 'Firefly III kan söka efter uppdateringar automatiskt. När du aktiverar denna inställning, kommer den kontakta Firefly III uppdateringsserver för att se om en ny version av Firefly III finns tillgänglig. När det gör det så får du en notifiering. Du kan testa dessa notifieringar via knappen till höger. Välj nedan om du vill att Firefly III ska automatiskt söka efter uppdateringar.', - 'check_for_updates_permission' => 'Firefly III kan söka efter uppdateringara, men den behöver din tillåtelse att göra så. Vänligen gå till inställningar för att ställa in om denna funktion ska aktiveras.', - 'updates_ask_me_later' => 'Fråga mig senare', - 'updates_do_not_check' => 'Sök inte efter uppdateringar', - 'updates_enable_check' => 'Aktivera för att leta efter uppdateringar', - 'admin_update_check_now_title' => 'Sök efter uppdateringar nu', - 'admin_update_check_now_explain' => 'Om du trycker på knappen, kontrollerar Firefly III om du har den senaste versionen.', - 'check_for_updates_button' => 'Kontrollera nu!', - 'update_new_version_alert' => 'En ny version av Firefly III är tillgänglig. Du har :your_version, den senaste är :new_version vilken släpptes :date.', - 'update_version_beta' => 'Denna version är en BETA version. Det kan förekomma problem.', - 'update_version_alpha' => 'Denna version är en ALPHA version. Det kan förekomma problem.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Du har :version, vilken är den senaste tillgängliga utgåva.', - 'update_newer_version_alert' => 'Du har :your_version, vilken är nyare än senaste utgåva, :new_version.', - 'update_check_error' => 'Ett fel inträffade vid sökning efter uppdateringar: :error', - 'unknown_error' => 'Okänt fel. Ledsen för det.', - 'disabled_but_check' => 'Du inaktiverade uppdateringskontroll. Så glöm inte att söka efter uppdateringar själv då och då. Tack!', - 'admin_update_channel_title' => 'Uppdatera kanal', - 'admin_update_channel_explain' => 'Firefly III har tre uppdaterings "kanaler" som bestämmer hur frammåt i kurvan du är i form av funktioner, förbättringar och buggar. Använd "beta" kanalen om du är äventyrslysten och "alpha" om du tycket om att leva farligt.', - 'update_channel_stable' => 'Stabil. Allting fungerar som förväntat.', - 'update_channel_beta' => 'Beta. Nya funktioner men saker kan vara trasiga.', - 'update_channel_alpha' => 'Alpha. Vi kastar in saker, det som fastnar det fastnar.', + 'update_check_title' => 'Sök uppdateringar', + 'admin_update_check_title' => 'Sök automatiskt efter uppdateringar', + 'admin_update_check_explain' => 'Firefly III kan söka efter uppdateringar automatiskt. När du aktiverar denna inställning, kommer den kontakta Firefly III uppdateringsserver för att se om en ny version av Firefly III finns tillgänglig. När det gör det så får du en notifiering. Du kan testa dessa notifieringar via knappen till höger. Välj nedan om du vill att Firefly III ska automatiskt söka efter uppdateringar.', + 'check_for_updates_permission' => 'Firefly III kan söka efter uppdateringara, men den behöver din tillåtelse att göra så. Vänligen gå till inställningar för att ställa in om denna funktion ska aktiveras.', + 'updates_ask_me_later' => 'Fråga mig senare', + 'updates_do_not_check' => 'Sök inte efter uppdateringar', + 'updates_enable_check' => 'Aktivera för att leta efter uppdateringar', + 'admin_update_check_now_title' => 'Sök efter uppdateringar nu', + 'admin_update_check_now_explain' => 'Om du trycker på knappen, kontrollerar Firefly III om du har den senaste versionen.', + 'check_for_updates_button' => 'Kontrollera nu!', + 'update_new_version_alert' => 'En ny version av Firefly III är tillgänglig. Du har :your_version, den senaste är :new_version vilken släpptes :date.', + 'update_version_beta' => 'Denna version är en BETA version. Det kan förekomma problem.', + 'update_version_alpha' => 'Denna version är en ALPHA version. Det kan förekomma problem.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Du har :version, vilken är den senaste tillgängliga utgåva.', + 'update_newer_version_alert' => 'Du har :your_version, vilken är nyare än senaste utgåva, :new_version.', + 'update_check_error' => 'Ett fel inträffade vid sökning efter uppdateringar: :error', + 'unknown_error' => 'Okänt fel. Ledsen för det.', + 'disabled_but_check' => 'Du inaktiverade uppdateringskontroll. Så glöm inte att söka efter uppdateringar själv då och då. Tack!', + 'admin_update_channel_title' => 'Uppdatera kanal', + 'admin_update_channel_explain' => 'Firefly III har tre uppdaterings "kanaler" som bestämmer hur frammåt i kurvan du är i form av funktioner, förbättringar och buggar. Använd "beta" kanalen om du är äventyrslysten och "alpha" om du tycket om att leva farligt.', + 'update_channel_stable' => 'Stabil. Allting fungerar som förväntat.', + 'update_channel_beta' => 'Beta. Nya funktioner men saker kan vara trasiga.', + 'update_channel_alpha' => 'Alpha. Vi kastar in saker, det som fastnar det fastnar.', // search - 'search' => 'Sök', - 'search_query' => 'Fråga', - 'search_found_transactions' => 'Firefly III hittade :count transaktion i :time sekunder.|Firefly III hittade :count transaktioner i :time sekunder.', - 'search_found_more_transactions' => 'Firefly III hittade mer än :count transaktioner i :time sekunder.', - 'search_for_query' => 'Firefly III söker efter transaktioner med dessa ord i dem: :query', - 'invalid_operators_list' => 'Sökparametrarna är inte giltiga och har ignorerats.', + 'search' => 'Sök', + 'search_query' => 'Fråga', + 'search_found_transactions' => 'Firefly III hittade :count transaktion i :time sekunder.|Firefly III hittade :count transaktioner i :time sekunder.', + 'search_found_more_transactions' => 'Firefly III hittade mer än :count transaktioner i :time sekunder.', + 'search_for_query' => 'Firefly III söker efter transaktioner med dessa ord i dem: :query', + 'invalid_operators_list' => 'Sökparametrarna är inte giltiga och har ignorerats.', // old @@ -351,368 +351,368 @@ 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_id' => 'Transaktions ID är: ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaktions datum är före eller på ":value"', - 'search_modifier_date_after' => 'Transaktions datum är efter eller på ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'Transaktionen saknar extern 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_any_external_url' => 'Transaktionen måste ha en extern URL (valfri)', - '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_description_contains' => 'Beskrivning innehåller ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Beskrivningen är ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaktion (utländsk) valuta är ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaktion med utländsk valuta är ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'Transaktionen måste ha en bilaga', - 'search_modifier_has_no_category' => 'Transaktionen får inte ha någon kategori', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'Transaktionen måste ha (valfri) kategori', - 'search_modifier_has_no_budget' => 'Transaktionen får inte ha någon budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'Transaktionen måste ha (valfri) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'Transaktionen får inte ha någon räkning', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'Transaktionen måste ha en (valfri) räkning', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'Transaktionen får inte ha några taggar', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'Transaktionen måste ha en (valfri) tagg', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'Transaktionen saknar anteckningar', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'Transaktionen måste ha anteckningar', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Beloppet är mindre än eller lika med :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Beloppet är mer än eller lika med :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Källkontonamn är exakt ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Källkontonamn innehåller ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Källkontonamn börjar med ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Källkontonamn slutar med ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Källkonto ID är :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Källkontonummer (IBAN) är ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Källkontonummer (IBAN) innehåller ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Källkontonummer (IBAN) börjar med ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destinationens kontonamn är exakt ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destinationens kontonamn innehåller ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destinationens kontonamn börjar med ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destinationskonto ID är :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destinationskontonummer (IBAN) är ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destinationskontonummer (IBAN) innehåller ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destinationskontonummer (IBAN) börjar med ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destinationskontonummer (IBAN) slutar med ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Källa eller destinationskonto ID är/är: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Kategorin är ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget är ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Nota är ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaktionstypen är ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Taggen är ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaktionen är före eller under år ":value"', - 'search_modifier_date_before_month' => 'Transaktionen är före eller under månaden ":value"', - 'search_modifier_date_before_day' => 'Transaktionen är före eller på dagen i månaden ":value"', - 'search_modifier_date_after_year' => 'Transaktionen är i eller efter år ":value"', - 'search_modifier_date_after_month' => 'Transaktionen är i eller efter månad ":value"', - 'search_modifier_date_after_day' => 'Transaktionen är efter eller på dagen i månaden ":value"', + '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_id' => 'Transaktions ID är: ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaktions datum är före eller på ":value"', + 'search_modifier_date_after' => 'Transaktions datum är efter eller på ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'Transaktionen saknar extern 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_any_external_url' => 'Transaktionen måste ha en extern URL (valfri)', + '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_description_contains' => 'Beskrivning innehåller ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Beskrivningen är ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaktion (utländsk) valuta är ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaktion med utländsk valuta är ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'Transaktionen måste ha en bilaga', + 'search_modifier_has_no_category' => 'Transaktionen får inte ha någon kategori', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'Transaktionen måste ha (valfri) kategori', + 'search_modifier_has_no_budget' => 'Transaktionen får inte ha någon budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'Transaktionen måste ha (valfri) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'Transaktionen får inte ha någon räkning', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'Transaktionen måste ha en (valfri) räkning', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'Transaktionen får inte ha några taggar', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'Transaktionen måste ha en (valfri) tagg', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'Transaktionen saknar anteckningar', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'Transaktionen måste ha anteckningar', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Beloppet är mindre än eller lika med :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Beloppet är mer än eller lika med :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Källkontonamn är exakt ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Källkontonamn innehåller ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Källkontonamn börjar med ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Källkontonamn slutar med ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Källkonto ID är :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Källkontonummer (IBAN) är ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Källkontonummer (IBAN) innehåller ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Källkontonummer (IBAN) börjar med ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destinationens kontonamn är exakt ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destinationens kontonamn innehåller ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destinationens kontonamn börjar med ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destinationskonto ID är :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destinationskontonummer (IBAN) är ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destinationskontonummer (IBAN) innehåller ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destinationskontonummer (IBAN) börjar med ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destinationskontonummer (IBAN) slutar med ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Källa eller destinationskonto ID är/är: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Kategorin är ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget är ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Nota är ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaktionstypen är ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Taggen är ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaktionen är före eller under år ":value"', + 'search_modifier_date_before_month' => 'Transaktionen är före eller under månaden ":value"', + 'search_modifier_date_before_day' => 'Transaktionen är före eller på dagen i månaden ":value"', + 'search_modifier_date_after_year' => 'Transaktionen är i eller efter år ":value"', + 'search_modifier_date_after_month' => 'Transaktionen är i eller efter månad ":value"', + 'search_modifier_date_after_day' => 'Transaktionen är efter eller på dagen i månaden ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Uppdatera regel ":rule" från sökfråga', - 'create_rule_from_query' => 'Skapa ny regel från sökfrågan', - 'rule_from_search_words' => 'Regelmotorn har svårt att hantera ":string". Den föreslagna regeln som passar din sökfråga kan ge olika resultat. Kontrollera regelutlösarna noggrant.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Uppdatera regel ":rule" från sökfråga', + 'create_rule_from_query' => 'Skapa ny regel från sökfrågan', + 'rule_from_search_words' => 'Regelmotorn har svårt att hantera ":string". Den föreslagna regeln som passar din sökfråga kan ge olika resultat. Kontrollera regelutlösarna noggrant.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Följande filter tillämpas även på sökning(ar):', - 'general_search_error' => 'Ett fel uppstod vid sökning. Kontrollera loggfilerna för mer information.', - 'search_box' => 'Sök', - 'search_box_intro' => 'Välkommen till sökfunktionen i Firefly III. Ange din sökterm i rutan. Se till att läsa hjälpfilen eftersom sök funktionen är ganska avancerad.', - 'search_error' => 'Fel vid sökning', - 'search_searching' => 'Söker ...', - 'search_results' => 'Sökresultat', + 'modifiers_applies_are' => 'Följande filter tillämpas även på sökning(ar):', + 'general_search_error' => 'Ett fel uppstod vid sökning. Kontrollera loggfilerna för mer information.', + 'search_box' => 'Sök', + 'search_box_intro' => 'Välkommen till sökfunktionen i Firefly III. Ange din sökterm i rutan. Se till att läsa hjälpfilen eftersom sök funktionen är ganska avancerad.', + 'search_error' => 'Fel vid sökning', + 'search_searching' => 'Söker ...', + 'search_results' => 'Sökresultat', // repeat frequencies: - 'repeat_freq_yearly' => 'årligen', - 'repeat_freq_half-year' => 'varje halvår', - 'repeat_freq_quarterly' => 'kvartal', - 'repeat_freq_monthly' => 'månadsvis', - 'repeat_freq_weekly' => 'veckovis', - 'repeat_freq_daily' => 'dagligen', - 'daily' => 'dagligen', - 'weekly' => 'veckovis', - 'quarterly' => 'kvartal', - 'half-year' => 'varje halvår', - 'yearly' => 'årligen', + 'repeat_freq_yearly' => 'årligen', + 'repeat_freq_half-year' => 'varje halvår', + 'repeat_freq_quarterly' => 'kvartal', + 'repeat_freq_monthly' => 'månadsvis', + 'repeat_freq_weekly' => 'veckovis', + 'repeat_freq_daily' => 'dagligen', + 'daily' => 'dagligen', + 'weekly' => 'veckovis', + 'quarterly' => 'kvartal', + 'half-year' => 'varje halvår', + 'yearly' => 'årligen', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Du kan inte köra inaktiva regler.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Regler', - 'rule_name' => 'Namn på regel', - 'rule_triggers' => 'Regel triggas när', - 'rule_actions' => 'Regel kommer', - 'new_rule' => 'Ny regel', - 'new_rule_group' => 'Ny regel grupp', - 'rule_priority_up' => 'Ge regel mer prioritet', - 'rule_priority_down' => 'Ge regel mindre prioritet', - 'make_new_rule_group' => 'Skapa ny regelgrupp', - 'store_new_rule_group' => 'Spara ny regelgrupp', - 'created_new_rule_group' => 'Ny regelgrupp ":title" sparad!', - 'updated_rule_group' => 'Lyckades uppdatera regelgrupp ":title".', - 'edit_rule_group' => 'Ändra regelgrupp ":title"', - 'duplicate_rule' => 'Duplicera regel ":title"', - 'rule_copy_of' => 'Kopia av ":title"', - 'duplicated_rule' => 'Duplicerad regel ":title" till ":newTitle"', - 'delete_rule_group' => 'Ta bort regelgrupp ":title"', - 'deleted_rule_group' => 'Tog bort regelgrupp ":title"', - 'update_rule_group' => 'Uppdatera regelgrupp', - 'no_rules_in_group' => 'Inga regler i denna grupp', - 'move_rule_group_up' => 'Flytta upp regelgrupp', - 'move_rule_group_down' => 'Flytta ned regelgrupp', - 'save_rules_by_moving' => 'Spara denna regel genom att flytta den till en annan regelgrupp:|Spara dessa regler genom att flytta dem till en annan regelgrupp:', - 'make_new_rule' => 'Skapa en ny regel i regelgrupp ":title"', - 'make_new_rule_no_group' => 'Skapa en ny regel', - 'instructions_rule_from_bill' => 'För att matcha transaktioner till din nya nota ":name", så kan Firefly III skapa en regel för att automatiskt kontrollera mot alla transaktioner du sparar. Vänligen verifiera detaljerna nedan och spara regeln för att Firefly III automatisk ska matcha transaktioner till din nya nota.', - 'instructions_rule_from_journal' => 'Skapa en regel baserad på en av dina transaktioner. Komplettera eller skicka formuläret nedan.', - 'rule_is_strict' => 'strikt regel', - 'rule_is_not_strict' => 'icke-strikt regel', - 'rule_help_stop_processing' => 'Med denna ruta ikryssad körs inte efterkommande regler i denna grupp.', - 'rule_help_strict' => 'Med strikta regler måste ALLA utlösare köras för att åtgärd(erna) ska genomföras. Med icke-strikta regler är vilken trigger som helst nog för att åtgärd(erna) ska genomföras.', - 'rule_help_active' => 'Inaktiva regler körs aldrig.', - 'stored_new_rule' => 'Sparade ny regel med titel ":title"', - 'deleted_rule' => 'Tog bort regel med titel ":title"', - 'store_new_rule' => 'Spara ny regel', - 'updated_rule' => 'Uppdaterade regel med titel ":title"', - 'default_rule_group_name' => 'Standard regler', - 'default_rule_group_description' => 'Alla dina regler inte i en viss grupp.', - 'trigger' => 'Utlösare', - 'trigger_value' => 'Utlösare på värde', - 'stop_processing_other_triggers' => 'Sluta bearbeta andra utlösare', - 'add_rule_trigger' => 'Lägg till utlösare', - 'action' => 'Händelse', - 'action_value' => 'Åtgärdsvärde', - 'stop_executing_other_actions' => 'Sluta köra andra åtgärder', - 'add_rule_action' => 'Lägg till ny åtgärd', - 'edit_rule' => 'Ändra regel ":title"', - 'delete_rule' => 'Ta bort regel ":title"', - 'update_rule' => 'Uppdatera regel', - 'test_rule_triggers' => 'Se matchande transaktioner', - 'warning_no_matching_transactions' => 'Inga matchande transaktioner hittades.', - 'warning_no_valid_triggers' => 'Inga giltiga händelser tillhandahållna.', - 'apply_rule_selection' => 'Tillämpa regel ":title" till ditt val av transaktioner', - 'apply_rule_selection_intro' => 'Regler som ":title" används normalt bara för nya eller uppdaterade transaktioner, men du kan få Firefly III att köra det på ett utval av nuvarande transaktioner. Detta kan vara användbart när du har uppdaterat en regel ändringen behöver göras på alla dina transaktioner.', - 'include_transactions_from_accounts' => 'Inkludera transaktioner från dessa konton', - 'include' => 'Inkludera?', - 'applied_rule_selection' => '{0} Inga transaktioner i ditt urval ändrades av regeln ":title".|[1] En transaktion i ditt urval ändrades av regeln ":title".|[2,*] :count transaktioner i ditt urval ändrades av regeln ":title".', - 'execute' => 'Utför', - 'apply_rule_group_selection' => 'Tillämpa regel grupp ":title" till dit val av transaktioner', - 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" används normalt bara för nya eller uppdaterade transaktioner, men du kan få Firefly III att köra alla regler i gruppen på ett utval av nuvarande transaktioner. Detta är användbart när du har uppdaterat en grupp med regler och dessa förändringar behöver göras på alla dina andra transaktioner.', - 'applied_rule_group_selection' => 'Regelgrupp ":title" har tillämpats på ditt val.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Du kan inte köra inaktiva regler.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Regler', + 'rule_name' => 'Namn på regel', + 'rule_triggers' => 'Regel triggas när', + 'rule_actions' => 'Regel kommer', + 'new_rule' => 'Ny regel', + 'new_rule_group' => 'Ny regel grupp', + 'rule_priority_up' => 'Ge regel mer prioritet', + 'rule_priority_down' => 'Ge regel mindre prioritet', + 'make_new_rule_group' => 'Skapa ny regelgrupp', + 'store_new_rule_group' => 'Spara ny regelgrupp', + 'created_new_rule_group' => 'Ny regelgrupp ":title" sparad!', + 'updated_rule_group' => 'Lyckades uppdatera regelgrupp ":title".', + 'edit_rule_group' => 'Ändra regelgrupp ":title"', + 'duplicate_rule' => 'Duplicera regel ":title"', + 'rule_copy_of' => 'Kopia av ":title"', + 'duplicated_rule' => 'Duplicerad regel ":title" till ":newTitle"', + 'delete_rule_group' => 'Ta bort regelgrupp ":title"', + 'deleted_rule_group' => 'Tog bort regelgrupp ":title"', + 'update_rule_group' => 'Uppdatera regelgrupp', + 'no_rules_in_group' => 'Inga regler i denna grupp', + 'move_rule_group_up' => 'Flytta upp regelgrupp', + 'move_rule_group_down' => 'Flytta ned regelgrupp', + 'save_rules_by_moving' => 'Spara denna regel genom att flytta den till en annan regelgrupp:|Spara dessa regler genom att flytta dem till en annan regelgrupp:', + 'make_new_rule' => 'Skapa en ny regel i regelgrupp ":title"', + 'make_new_rule_no_group' => 'Skapa en ny regel', + 'instructions_rule_from_bill' => 'För att matcha transaktioner till din nya nota ":name", så kan Firefly III skapa en regel för att automatiskt kontrollera mot alla transaktioner du sparar. Vänligen verifiera detaljerna nedan och spara regeln för att Firefly III automatisk ska matcha transaktioner till din nya nota.', + 'instructions_rule_from_journal' => 'Skapa en regel baserad på en av dina transaktioner. Komplettera eller skicka formuläret nedan.', + 'rule_is_strict' => 'strikt regel', + 'rule_is_not_strict' => 'icke-strikt regel', + 'rule_help_stop_processing' => 'Med denna ruta ikryssad körs inte efterkommande regler i denna grupp.', + 'rule_help_strict' => 'Med strikta regler måste ALLA utlösare köras för att åtgärd(erna) ska genomföras. Med icke-strikta regler är vilken trigger som helst nog för att åtgärd(erna) ska genomföras.', + 'rule_help_active' => 'Inaktiva regler körs aldrig.', + 'stored_new_rule' => 'Sparade ny regel med titel ":title"', + 'deleted_rule' => 'Tog bort regel med titel ":title"', + 'store_new_rule' => 'Spara ny regel', + 'updated_rule' => 'Uppdaterade regel med titel ":title"', + 'default_rule_group_name' => 'Standard regler', + 'default_rule_group_description' => 'Alla dina regler inte i en viss grupp.', + 'trigger' => 'Utlösare', + 'trigger_value' => 'Utlösare på värde', + 'stop_processing_other_triggers' => 'Sluta bearbeta andra utlösare', + 'add_rule_trigger' => 'Lägg till utlösare', + 'action' => 'Händelse', + 'action_value' => 'Åtgärdsvärde', + 'stop_executing_other_actions' => 'Sluta köra andra åtgärder', + 'add_rule_action' => 'Lägg till ny åtgärd', + 'edit_rule' => 'Ändra regel ":title"', + 'delete_rule' => 'Ta bort regel ":title"', + 'update_rule' => 'Uppdatera regel', + 'test_rule_triggers' => 'Se matchande transaktioner', + 'warning_no_matching_transactions' => 'Inga matchande transaktioner hittades.', + 'warning_no_valid_triggers' => 'Inga giltiga händelser tillhandahållna.', + 'apply_rule_selection' => 'Tillämpa regel ":title" till ditt val av transaktioner', + 'apply_rule_selection_intro' => 'Regler som ":title" används normalt bara för nya eller uppdaterade transaktioner, men du kan få Firefly III att köra det på ett utval av nuvarande transaktioner. Detta kan vara användbart när du har uppdaterat en regel ändringen behöver göras på alla dina transaktioner.', + 'include_transactions_from_accounts' => 'Inkludera transaktioner från dessa konton', + 'include' => 'Inkludera?', + 'applied_rule_selection' => '{0} Inga transaktioner i ditt urval ändrades av regeln ":title".|[1] En transaktion i ditt urval ändrades av regeln ":title".|[2,*] :count transaktioner i ditt urval ändrades av regeln ":title".', + 'execute' => 'Utför', + 'apply_rule_group_selection' => 'Tillämpa regel grupp ":title" till dit val av transaktioner', + 'apply_rule_group_selection_intro' => 'Regelgrupper som ":title" används normalt bara för nya eller uppdaterade transaktioner, men du kan få Firefly III att köra alla regler i gruppen på ett utval av nuvarande transaktioner. Detta är användbart när du har uppdaterat en grupp med regler och dessa förändringar behöver göras på alla dina andra transaktioner.', + 'applied_rule_group_selection' => 'Regelgrupp ":title" har tillämpats på ditt val.', // actions and triggers - 'rule_trigger_store_journal' => 'När en transaktion skapas', - 'rule_trigger_update_journal' => 'När en transaktion uppdateras', - 'rule_trigger_user_action' => 'Användaråtgärd är ":trigger_value"', + 'rule_trigger_store_journal' => 'När en transaktion skapas', + 'rule_trigger_update_journal' => 'När en transaktion uppdateras', + 'rule_trigger_user_action' => 'Användaråtgärd är ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Källkontonamn börjar med..', - 'rule_trigger_source_account_starts' => 'Källkontonamn börjar med ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Källkontonamn slutar med..', - 'rule_trigger_source_account_ends' => 'Källkontonamn slutar med ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Källkontonamn är..', - 'rule_trigger_source_account_is' => 'Källkontonamn är ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Källkontonamn innehåller..', - 'rule_trigger_source_account_contains' => 'Källkontonamn innehåller ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Källkonto-ID är exakt..', - 'rule_trigger_source_account_id' => 'Källkonto-ID är exakt :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination konto-ID är exakt..', - 'rule_trigger_destination_account_id' => 'Destinationskonto ID är exakt :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Källkonto är (kontant) konto', - 'rule_trigger_source_is_cash' => 'Källkonto är (kontant) konto', - 'rule_trigger_destination_is_cash_choice' => 'Destinationskonto är (kontant) konto', - 'rule_trigger_destination_is_cash' => 'Destinationskonto är (kontant) konto', - 'rule_trigger_source_account_nr_starts_choice' => 'Källkontonummer / IBAN börjar med..', - 'rule_trigger_source_account_nr_starts' => 'Källkontonummer / IBAN börjar med ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Källkontonummer / IBAN slutar med..', - 'rule_trigger_source_account_nr_ends' => 'Källkontonummer / IBAN slutar med ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Källkontonummer / IBAN är..', - 'rule_trigger_source_account_nr_is' => 'Källkontonummer / IBAN är ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Källkontonummer / IBAN innehåller..', - 'rule_trigger_source_account_nr_contains' => 'Källkontonummer / IBAN innehåller ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destinationskontonamn börjar med..', - 'rule_trigger_destination_account_starts' => 'Destinationskontonamn börjar med ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destinationskontonamn slutar med..', - 'rule_trigger_destination_account_ends' => 'Destinationskontonamn slutar med ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destinationskontonamn är..', - 'rule_trigger_destination_account_is' => 'Destinationskontonamn är ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destinationenskontonamn innehåller..', - 'rule_trigger_destination_account_contains' => 'Destinationenskontonamn innehåller ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destinationskontonummer/IBAN börjar med..', - 'rule_trigger_destination_account_nr_starts' => 'Destinationskontonummer / IBAN börjar med ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destinationskontonummer / IBAN slutar med..', - 'rule_trigger_destination_account_nr_ends' => 'Destinationskontonummer / IBAN slutar med ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destinationskontonummer / IBAN är..', - 'rule_trigger_destination_account_nr_is' => 'Destinationskontonummer / IBAN är ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destinationskontonummer / IBAN innehåller..', - 'rule_trigger_destination_account_nr_contains' => 'Destinationskontonummer / IBAN innehåller ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaktion är av typen..', - 'rule_trigger_transaction_type' => 'Transaktion är av typen ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategori är..', - 'rule_trigger_category_is' => 'Kategori är ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Beskrivning börjar med..', - 'rule_trigger_description_starts' => 'Beskrivning börjar med ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Beskrivning slutar med..', - 'rule_trigger_description_ends' => 'Beskrivning slutar med ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Beskrivningen innehåller..', - 'rule_trigger_description_contains' => 'Beskrivning innehåller ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Beskrivning är..', - 'rule_trigger_description_is' => 'Beskrivning är ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaktionsdatum är innan..', - 'rule_trigger_date_before' => 'Transaktionsdatum är före ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaktionsdatum är efter..', - 'rule_trigger_date_after' => 'Transaktionsdatum är efter ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget är..', - 'rule_trigger_budget_is' => 'Budget är ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaktionsvalutan är..', - 'rule_trigger_currency_is' => 'Transaktionsvalutan är ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaktion med utländsk valuta är..', - 'rule_trigger_foreign_currency_is' => 'Transaktion med utländsk valuta är ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Har minst så många bilagor', - 'rule_trigger_has_attachments' => 'Har minst :trigger_value bilaga/bilagor', - 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', - 'rule_trigger_has_no_category' => 'Transaktion saknar kategori', - 'rule_trigger_has_any_category_choice' => 'Har en (valfri) kategori', - 'rule_trigger_has_any_category' => 'Transaktion har (valfri) kategori', - 'rule_trigger_has_no_budget_choice' => 'Saknar budget', - 'rule_trigger_has_no_budget' => 'Transaktion saknar budget', - 'rule_trigger_has_any_budget_choice' => 'Har (valfri) budget', - 'rule_trigger_has_any_budget' => 'Transaktion har (valfri) budget', - 'rule_trigger_has_no_bill_choice' => 'Har ingen räkning', - 'rule_trigger_has_no_bill' => 'Transaktionen har ingen räkning', - 'rule_trigger_has_any_bill_choice' => 'Har en (valfri) räkning', - 'rule_trigger_has_any_bill' => 'Transaktionen har en (valfri) räkning', - 'rule_trigger_has_no_tag_choice' => 'Saknar etikett(er)', - 'rule_trigger_has_no_tag' => 'Transaktion saknar etikett(er)', - 'rule_trigger_has_any_tag_choice' => 'Har en eller flera (valfria) etiketter', - 'rule_trigger_has_any_tag' => 'Transaktion har en eller flera (valfria) etiketter', - 'rule_trigger_any_notes_choice' => 'Har (valfria) anteckningar', - 'rule_trigger_any_notes' => 'Transaktion har (valfria) anteckningar', - 'rule_trigger_no_notes_choice' => 'Har inga anteckningar', - 'rule_trigger_no_notes' => 'Transaktion saknar anteckningar', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Faktura är..', - 'rule_trigger_bill_is' => 'Fakturan är ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaktionsjournal-ID är..', - 'rule_trigger_journal_id' => 'Transaktionsjournal-ID är ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaktionen saknar extern URL', - 'rule_trigger_no_external_url' => 'Transaktionen saknar extern URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaktions-ID är..', - 'rule_trigger_id' => 'Transaktions-ID är ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Källkontonamn börjar med..', + 'rule_trigger_source_account_starts' => 'Källkontonamn börjar med ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Källkontonamn slutar med..', + 'rule_trigger_source_account_ends' => 'Källkontonamn slutar med ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Källkontonamn är..', + 'rule_trigger_source_account_is' => 'Källkontonamn är ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Källkontonamn innehåller..', + 'rule_trigger_source_account_contains' => 'Källkontonamn innehåller ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Källkonto-ID är exakt..', + 'rule_trigger_source_account_id' => 'Källkonto-ID är exakt :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination konto-ID är exakt..', + 'rule_trigger_destination_account_id' => 'Destinationskonto ID är exakt :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Källkonto är (kontant) konto', + 'rule_trigger_source_is_cash' => 'Källkonto är (kontant) konto', + 'rule_trigger_destination_is_cash_choice' => 'Destinationskonto är (kontant) konto', + 'rule_trigger_destination_is_cash' => 'Destinationskonto är (kontant) konto', + 'rule_trigger_source_account_nr_starts_choice' => 'Källkontonummer / IBAN börjar med..', + 'rule_trigger_source_account_nr_starts' => 'Källkontonummer / IBAN börjar med ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Källkontonummer / IBAN slutar med..', + 'rule_trigger_source_account_nr_ends' => 'Källkontonummer / IBAN slutar med ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Källkontonummer / IBAN är..', + 'rule_trigger_source_account_nr_is' => 'Källkontonummer / IBAN är ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Källkontonummer / IBAN innehåller..', + 'rule_trigger_source_account_nr_contains' => 'Källkontonummer / IBAN innehåller ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destinationskontonamn börjar med..', + 'rule_trigger_destination_account_starts' => 'Destinationskontonamn börjar med ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destinationskontonamn slutar med..', + 'rule_trigger_destination_account_ends' => 'Destinationskontonamn slutar med ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destinationskontonamn är..', + 'rule_trigger_destination_account_is' => 'Destinationskontonamn är ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destinationenskontonamn innehåller..', + 'rule_trigger_destination_account_contains' => 'Destinationenskontonamn innehåller ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destinationskontonummer/IBAN börjar med..', + 'rule_trigger_destination_account_nr_starts' => 'Destinationskontonummer / IBAN börjar med ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destinationskontonummer / IBAN slutar med..', + 'rule_trigger_destination_account_nr_ends' => 'Destinationskontonummer / IBAN slutar med ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destinationskontonummer / IBAN är..', + 'rule_trigger_destination_account_nr_is' => 'Destinationskontonummer / IBAN är ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destinationskontonummer / IBAN innehåller..', + 'rule_trigger_destination_account_nr_contains' => 'Destinationskontonummer / IBAN innehåller ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaktion är av typen..', + 'rule_trigger_transaction_type' => 'Transaktion är av typen ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori är..', + 'rule_trigger_category_is' => 'Kategori är ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Beskrivning börjar med..', + 'rule_trigger_description_starts' => 'Beskrivning börjar med ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Beskrivning slutar med..', + 'rule_trigger_description_ends' => 'Beskrivning slutar med ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Beskrivningen innehåller..', + 'rule_trigger_description_contains' => 'Beskrivning innehåller ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Beskrivning är..', + 'rule_trigger_description_is' => 'Beskrivning är ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaktionsdatum är innan..', + 'rule_trigger_date_before' => 'Transaktionsdatum är före ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaktionsdatum är efter..', + 'rule_trigger_date_after' => 'Transaktionsdatum är efter ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget är..', + 'rule_trigger_budget_is' => 'Budget är ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaktionsvalutan är..', + 'rule_trigger_currency_is' => 'Transaktionsvalutan är ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaktion med utländsk valuta är..', + 'rule_trigger_foreign_currency_is' => 'Transaktion med utländsk valuta är ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Har minst så många bilagor', + 'rule_trigger_has_attachments' => 'Har minst :trigger_value bilaga/bilagor', + 'rule_trigger_has_no_category_choice' => 'Har ingen kategori', + 'rule_trigger_has_no_category' => 'Transaktion saknar kategori', + 'rule_trigger_has_any_category_choice' => 'Har en (valfri) kategori', + 'rule_trigger_has_any_category' => 'Transaktion har (valfri) kategori', + 'rule_trigger_has_no_budget_choice' => 'Saknar budget', + 'rule_trigger_has_no_budget' => 'Transaktion saknar budget', + 'rule_trigger_has_any_budget_choice' => 'Har (valfri) budget', + 'rule_trigger_has_any_budget' => 'Transaktion har (valfri) budget', + 'rule_trigger_has_no_bill_choice' => 'Har ingen räkning', + 'rule_trigger_has_no_bill' => 'Transaktionen har ingen räkning', + 'rule_trigger_has_any_bill_choice' => 'Har en (valfri) räkning', + 'rule_trigger_has_any_bill' => 'Transaktionen har en (valfri) räkning', + 'rule_trigger_has_no_tag_choice' => 'Saknar etikett(er)', + 'rule_trigger_has_no_tag' => 'Transaktion saknar etikett(er)', + 'rule_trigger_has_any_tag_choice' => 'Har en eller flera (valfria) etiketter', + 'rule_trigger_has_any_tag' => 'Transaktion har en eller flera (valfria) etiketter', + 'rule_trigger_any_notes_choice' => 'Har (valfria) anteckningar', + 'rule_trigger_any_notes' => 'Transaktion har (valfria) anteckningar', + 'rule_trigger_no_notes_choice' => 'Har inga anteckningar', + 'rule_trigger_no_notes' => 'Transaktion saknar anteckningar', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Faktura är..', + 'rule_trigger_bill_is' => 'Fakturan är ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaktionsjournal-ID är..', + 'rule_trigger_journal_id' => 'Transaktionsjournal-ID är ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaktionen saknar extern URL', + 'rule_trigger_no_external_url' => 'Transaktionen saknar extern URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaktions-ID är..', + 'rule_trigger_id' => 'Transaktions-ID är ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Har inga bilagor', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Har inga bilagor', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Sätt kategori till ":action_value"', - 'rule_action_clear_category' => 'Rensa kategori', - 'rule_action_set_budget' => 'Sätt budget till ":action_value"', - 'rule_action_clear_budget' => 'Rensa budget', - 'rule_action_add_tag' => 'Lägg till etikett ":action_value"', - 'rule_action_remove_tag' => 'Ta bort etikett ":action_value"', - 'rule_action_remove_all_tags' => 'Ta bort alla etiketter', - 'rule_action_set_description' => 'Sätt beskrivning till ":action_value"', - 'rule_action_append_description' => 'Lägg till beskrivning med ":action_value"', - 'rule_action_prepend_description' => 'Förbered beskrivning med ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Rensa alla kategorier', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Rensa alla budgetar', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Ta bort alla etiketter', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Sätt källkonto till :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Sätt destinationskonto till :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Lägg till anteckningar med ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Förbered anteckningar med ":action_value"', - 'rule_action_clear_notes_choice' => 'Ta bort alla anteckningar', - 'rule_action_clear_notes' => 'Ta bort alla anteckningar', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Länka till nota ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Sätt anteckningar till ":action_value"', - 'rule_action_convert_deposit_choice' => 'Konvertera transaktionen till en insättning', - 'rule_action_convert_deposit' => 'Konvertera transaktionen till en insättning från ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Konvertera transaktionen till ett uttag', - 'rule_action_convert_withdrawal' => 'Konvertera transaktionen till ett uttag från ":action_value"', - 'rule_action_convert_transfer_choice' => 'Gör transaktionen till en överföring', - 'rule_action_convert_transfer' => 'Gör transaktionen till en överföring med ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Regelgrupp för räkningar', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Skapa en ny regel för nota ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Regel för nota ":name"', - 'new_rule_for_bill_description' => 'Denna regel markerar transaktion för nota ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Sätt kategori till ":action_value"', + 'rule_action_clear_category' => 'Rensa kategori', + 'rule_action_set_budget' => 'Sätt budget till ":action_value"', + 'rule_action_clear_budget' => 'Rensa budget', + 'rule_action_add_tag' => 'Lägg till etikett ":action_value"', + 'rule_action_remove_tag' => 'Ta bort etikett ":action_value"', + 'rule_action_remove_all_tags' => 'Ta bort alla etiketter', + 'rule_action_set_description' => 'Sätt beskrivning till ":action_value"', + 'rule_action_append_description' => 'Lägg till beskrivning med ":action_value"', + 'rule_action_prepend_description' => 'Förbered beskrivning med ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Rensa alla kategorier', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Rensa alla budgetar', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Ta bort alla etiketter', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Sätt källkonto till :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Sätt destinationskonto till :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Lägg till anteckningar med ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Förbered anteckningar med ":action_value"', + 'rule_action_clear_notes_choice' => 'Ta bort alla anteckningar', + 'rule_action_clear_notes' => 'Ta bort alla anteckningar', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Länka till nota ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Sätt anteckningar till ":action_value"', + 'rule_action_convert_deposit_choice' => 'Konvertera transaktionen till en insättning', + 'rule_action_convert_deposit' => 'Konvertera transaktionen till en insättning från ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Konvertera transaktionen till ett uttag', + 'rule_action_convert_withdrawal' => 'Konvertera transaktionen till ett uttag från ":action_value"', + 'rule_action_convert_transfer_choice' => 'Gör transaktionen till en överföring', + 'rule_action_convert_transfer' => 'Gör transaktionen till en överföring med ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Regelgrupp för räkningar', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Skapa en ny regel för nota ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Regel för nota ":name"', + 'new_rule_for_bill_description' => 'Denna regel markerar transaktion för nota ":name".', - 'new_rule_for_journal_title' => 'Regel baserad på transaktionen ":description"', - 'new_rule_for_journal_description' => 'Den här regeln är baserad på transaktionen ":description". Den kommer matcha transaktioner som är exakt likadana.', + 'new_rule_for_journal_title' => 'Regel baserad på transaktionen ":description"', + 'new_rule_for_journal_description' => 'Den här regeln är baserad på transaktionen ":description". Den kommer matcha transaktioner som är exakt likadana.', // tags - 'store_new_tag' => 'Spara ny etikett', - 'update_tag' => 'Uppdatera etikett', - 'no_location_set' => 'Ingen plats inställd.', - 'meta_data' => 'Metadata', - 'location' => 'Plats', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Utan datum', - 'result' => 'Resultat', - 'sums_apply_to_range' => 'Alla summor gäller för valt intervall', - 'mapbox_api_key' => 'För att använda karta, hämta en API nyckel från Mapbox. Öppna din .env fil och ange koden efter MAPBOX_API_KEY=.', - 'press_object_location' => 'Högerklicka eller långtryck för att ställa in objektets plats.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Rena plats', - 'delete_all_selected_tags' => 'Ta bort alla markerade etiketter', - 'select_tags_to_delete' => 'Glöm inte att välja några etiketter.', - 'deleted_x_tags' => 'Tog bort :count tag.|Tog bort :count taggar.', - 'create_rule_from_transaction' => 'Skapa regel baserad på transaktion', - 'create_recurring_from_transaction' => 'Skapa återkommande transaktion baserat på transaktion', + 'store_new_tag' => 'Spara ny etikett', + 'update_tag' => 'Uppdatera etikett', + 'no_location_set' => 'Ingen plats inställd.', + 'meta_data' => 'Metadata', + 'location' => 'Plats', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Utan datum', + 'result' => 'Resultat', + 'sums_apply_to_range' => 'Alla summor gäller för valt intervall', + 'mapbox_api_key' => 'För att använda karta, hämta en API nyckel från Mapbox. Öppna din .env fil och ange koden efter MAPBOX_API_KEY=.', + 'press_object_location' => 'Högerklicka eller långtryck för att ställa in objektets plats.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Rena plats', + 'delete_all_selected_tags' => 'Ta bort alla markerade etiketter', + 'select_tags_to_delete' => 'Glöm inte att välja några etiketter.', + 'deleted_x_tags' => 'Tog bort :count tag.|Tog bort :count taggar.', + 'create_rule_from_transaction' => 'Skapa regel baserad på transaktion', + 'create_recurring_from_transaction' => 'Skapa återkommande transaktion baserat på transaktion', // preferences - 'dark_mode_option_browser' => 'Låt din webbläsare bestämma', - 'dark_mode_option_light' => 'Alltid ljust', - 'dark_mode_option_dark' => 'Alltid mörkt', - 'equal_to_language' => '(lika med språk)', - 'dark_mode_preference' => 'Mörkt läge', - 'dark_mode_preference_help' => 'Berätta för Firefly III när mörkt läge ska användas.', - 'pref_home_screen_accounts' => 'Startskäm konton', - 'pref_home_screen_accounts_help' => 'Vilka konton ska visas på startskärmen?', - 'pref_view_range' => 'Visa intervall', - 'pref_view_range_help' => 'Vissa diagram grupperas automatiskt i perioder. Dina budgetar grupperas också i perioder. Vilken period föredrar du?', - 'pref_1D' => 'En dag', - 'pref_1W' => 'En vecka', - 'pref_1M' => 'En månad', - 'pref_3M' => 'Tre månader (kvartal)', - 'pref_6M' => 'Sex månader', - 'pref_1Y' => 'Ett år', - 'pref_last365' => 'Föregående år', - 'pref_last90' => 'Senaste 90 dagarna', - 'pref_last30' => 'Senaste 30 dagarna', - 'pref_last7' => 'Senaste 7 dagarna', - 'pref_YTD' => 'Hittills i år', - 'pref_QTD' => 'Kvartal hittills', - 'pref_MTD' => 'Månad hittills', - 'pref_languages' => 'Språk', - 'pref_locale' => 'Nationella inställningar', - 'pref_languages_help' => 'Firefly III stödjer flera språk. Vilket föredrar du?', - 'pref_locale_help' => 'Firefly III låter dig ställa in andra lokala inställningar, som hur valutor, siffror och datum formateras. Poster i denna lista kanske inte stöds av ditt system. Firefly III har inte rätt datuminställningar för varje lokal; kontakta mig för förbättringar.', - 'pref_locale_no_demo' => 'Denna funktion fungerar inte för demoanvändaren.', - 'pref_custom_fiscal_year' => 'Räkneskapsårs inställningar', - 'pref_custom_fiscal_year_label' => 'Aktiverad', - 'pref_custom_fiscal_year_help' => 'I länder som använder räkneskapsår annat än 1a Januari till 31a December, går det att ändra detta och välja start / slut dagar för räkneskapsåret', - 'pref_fiscal_year_start_label' => 'Startdatum för räkneskapsår', - 'pref_two_factor_auth' => 'Tvåstegsverifiering', - 'pref_two_factor_auth_help' => 'När tvåstegsverifiering aktiveras (även känt som tvåfaktorautentisering), så lägger du på ytterligare lager säkerhet på ditt konto. Du kan logga in med något du vet (ditt lösenord) eller något du har (en verifieringskod). Verifieringskoder kan också genereras av en app på din telefon som till exempel, Authy eller Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Aktivera tvåstegsverifiering', - 'pref_two_factor_auth_disabled' => '2-stegs verifieringskod har tagits bort och inaktiverats', - 'pref_two_factor_auth_remove_it' => 'Glöm inte att ta bort kontot från din autentiseringsapp!', - 'pref_two_factor_auth_code' => 'Verifiera kod', - 'pref_two_factor_auth_code_help' => 'Skanna QR koden med en app på din telefon som till exempel Authy eller Google Authenticator och ange den genererade koden.', - 'pref_two_factor_auth_reset_code' => 'Nollställ verifieringskod', - 'pref_two_factor_auth_disable_2fa' => 'Inaktivera 2FA', - '2fa_use_secret_instead' => 'Om du inte kan scanna QR koden, använd denna hemliga istället :secret.', - '2fa_backup_codes' => 'Spara dessa backup koder för åtkomst ifall du tappar bort din enhet.', - '2fa_already_enabled' => 'Tvåfaktorsautentisering är redan aktiverat.', - 'wrong_mfa_code' => 'MFA-koden är inte giltig.', - 'pref_save_settings' => 'Spara inställningar', - 'saved_preferences' => 'Inställningar sparade!', - 'preferences_general' => 'Allmänt', - 'preferences_frontpage' => 'Startsidan', - 'preferences_security' => 'Säkerhet', - 'preferences_layout' => 'Layout', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Visa insättningar på startskärmen', - 'pref_home_show_deposits_info' => 'Startskärmen visar redan dina utgiftskonton. Ska den även visa intäktskonton?', - 'pref_home_do_show_deposits' => 'Ja, visa dem', - 'successful_count' => 'av :count framgångsrikt', - 'list_page_size_title' => 'Sidstorlek', - 'list_page_size_help' => 'Alla listor med (konton, transaktioner, etc) visar som mest så här många per sida.', - 'list_page_size_label' => 'Sidstorlek', - 'between_dates' => '(:start och :end)', - 'pref_optional_fields_transaction' => 'Alternativa fält för transaktioner', - 'pref_optional_fields_transaction_help' => 'Per default är inte alla fält aktiverade vid skapande av en ny transaktion (underlätta röran). Nedanför går det att aktivera dessa fält om de är användbara för dig. Självklar, ett fält som är ifyllt men inaktiverat, visas oavsett denna inställning.', - 'optional_tj_date_fields' => 'Datumfält', - 'optional_tj_other_fields' => 'Andra fält', - 'optional_tj_attachment_fields' => 'Bilagefält', - 'pref_optional_tj_interest_date' => 'Räntedatum', - 'pref_optional_tj_book_date' => 'Bokföringsdatum', - 'pref_optional_tj_process_date' => 'Behandlingsdatum', - 'pref_optional_tj_due_date' => 'Förfallodatum', - 'pref_optional_tj_payment_date' => 'Betalningsdatum', - 'pref_optional_tj_invoice_date' => 'Fakturadatum', - 'pref_optional_tj_internal_reference' => 'Intern referens', - 'pref_optional_tj_notes' => 'Anteckningar', - 'pref_optional_tj_attachments' => 'Bilagor', - 'pref_optional_tj_external_url' => 'Extern URL', - 'pref_optional_tj_location' => 'Plats', - 'pref_optional_tj_links' => 'Transaktionslänkar', - 'optional_field_meta_dates' => 'Datum', - 'optional_field_meta_business' => 'Affärsverksamhet', - 'optional_field_attachments' => 'Bilagor', - 'optional_field_meta_data' => 'Valfri metadata', - 'external_url' => 'Extern URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Låt din webbläsare bestämma', + 'dark_mode_option_light' => 'Alltid ljust', + 'dark_mode_option_dark' => 'Alltid mörkt', + 'equal_to_language' => '(lika med språk)', + 'dark_mode_preference' => 'Mörkt läge', + 'dark_mode_preference_help' => 'Berätta för Firefly III när mörkt läge ska användas.', + 'pref_home_screen_accounts' => 'Startskäm konton', + 'pref_home_screen_accounts_help' => 'Vilka konton ska visas på startskärmen?', + 'pref_view_range' => 'Visa intervall', + 'pref_view_range_help' => 'Vissa diagram grupperas automatiskt i perioder. Dina budgetar grupperas också i perioder. Vilken period föredrar du?', + 'pref_1D' => 'En dag', + 'pref_1W' => 'En vecka', + 'pref_1M' => 'En månad', + 'pref_3M' => 'Tre månader (kvartal)', + 'pref_6M' => 'Sex månader', + 'pref_1Y' => 'Ett år', + 'pref_last365' => 'Föregående år', + 'pref_last90' => 'Senaste 90 dagarna', + 'pref_last30' => 'Senaste 30 dagarna', + 'pref_last7' => 'Senaste 7 dagarna', + 'pref_YTD' => 'Hittills i år', + 'pref_QTD' => 'Kvartal hittills', + 'pref_MTD' => 'Månad hittills', + 'pref_languages' => 'Språk', + 'pref_locale' => 'Nationella inställningar', + 'pref_languages_help' => 'Firefly III stödjer flera språk. Vilket föredrar du?', + 'pref_locale_help' => 'Firefly III låter dig ställa in andra lokala inställningar, som hur valutor, siffror och datum formateras. Poster i denna lista kanske inte stöds av ditt system. Firefly III har inte rätt datuminställningar för varje lokal; kontakta mig för förbättringar.', + 'pref_locale_no_demo' => 'Denna funktion fungerar inte för demoanvändaren.', + 'pref_custom_fiscal_year' => 'Räkneskapsårs inställningar', + 'pref_custom_fiscal_year_label' => 'Aktiverad', + 'pref_custom_fiscal_year_help' => 'I länder som använder räkneskapsår annat än 1a Januari till 31a December, går det att ändra detta och välja start / slut dagar för räkneskapsåret', + 'pref_fiscal_year_start_label' => 'Startdatum för räkneskapsår', + 'pref_two_factor_auth' => 'Tvåstegsverifiering', + 'pref_two_factor_auth_help' => 'När tvåstegsverifiering aktiveras (även känt som tvåfaktorautentisering), så lägger du på ytterligare lager säkerhet på ditt konto. Du kan logga in med något du vet (ditt lösenord) eller något du har (en verifieringskod). Verifieringskoder kan också genereras av en app på din telefon som till exempel, Authy eller Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Aktivera tvåstegsverifiering', + 'pref_two_factor_auth_disabled' => '2-stegs verifieringskod har tagits bort och inaktiverats', + 'pref_two_factor_auth_remove_it' => 'Glöm inte att ta bort kontot från din autentiseringsapp!', + 'pref_two_factor_auth_code' => 'Verifiera kod', + 'pref_two_factor_auth_code_help' => 'Skanna QR koden med en app på din telefon som till exempel Authy eller Google Authenticator och ange den genererade koden.', + 'pref_two_factor_auth_reset_code' => 'Nollställ verifieringskod', + 'pref_two_factor_auth_disable_2fa' => 'Inaktivera 2FA', + '2fa_use_secret_instead' => 'Om du inte kan scanna QR koden, använd denna hemliga istället :secret.', + '2fa_backup_codes' => 'Spara dessa backup koder för åtkomst ifall du tappar bort din enhet.', + '2fa_already_enabled' => 'Tvåfaktorsautentisering är redan aktiverat.', + 'wrong_mfa_code' => 'MFA-koden är inte giltig.', + 'pref_save_settings' => 'Spara inställningar', + 'saved_preferences' => 'Inställningar sparade!', + 'preferences_general' => 'Allmänt', + 'preferences_frontpage' => 'Startsidan', + 'preferences_security' => 'Säkerhet', + 'preferences_layout' => 'Layout', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Visa insättningar på startskärmen', + 'pref_home_show_deposits_info' => 'Startskärmen visar redan dina utgiftskonton. Ska den även visa intäktskonton?', + 'pref_home_do_show_deposits' => 'Ja, visa dem', + 'successful_count' => 'av :count framgångsrikt', + 'list_page_size_title' => 'Sidstorlek', + 'list_page_size_help' => 'Alla listor med (konton, transaktioner, etc) visar som mest så här många per sida.', + 'list_page_size_label' => 'Sidstorlek', + 'between_dates' => '(:start och :end)', + 'pref_optional_fields_transaction' => 'Alternativa fält för transaktioner', + 'pref_optional_fields_transaction_help' => 'Per default är inte alla fält aktiverade vid skapande av en ny transaktion (underlätta röran). Nedanför går det att aktivera dessa fält om de är användbara för dig. Självklar, ett fält som är ifyllt men inaktiverat, visas oavsett denna inställning.', + 'optional_tj_date_fields' => 'Datumfält', + 'optional_tj_other_fields' => 'Andra fält', + 'optional_tj_attachment_fields' => 'Bilagefält', + 'pref_optional_tj_interest_date' => 'Räntedatum', + 'pref_optional_tj_book_date' => 'Bokföringsdatum', + 'pref_optional_tj_process_date' => 'Behandlingsdatum', + 'pref_optional_tj_due_date' => 'Förfallodatum', + 'pref_optional_tj_payment_date' => 'Betalningsdatum', + 'pref_optional_tj_invoice_date' => 'Fakturadatum', + 'pref_optional_tj_internal_reference' => 'Intern referens', + 'pref_optional_tj_notes' => 'Anteckningar', + 'pref_optional_tj_attachments' => 'Bilagor', + 'pref_optional_tj_external_url' => 'Extern URL', + 'pref_optional_tj_location' => 'Plats', + 'pref_optional_tj_links' => 'Transaktionslänkar', + 'optional_field_meta_dates' => 'Datum', + 'optional_field_meta_business' => 'Affärsverksamhet', + 'optional_field_attachments' => 'Bilagor', + 'optional_field_meta_data' => 'Valfri metadata', + 'external_url' => 'Extern URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Din roll: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Din roll: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Hantera transaktioner', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Hantera spargrisar', - 'administration_role_mng_subscriptions' => 'Hantera prenumerationer', - 'administration_role_mng_rules' => 'Hantera regler', - 'administration_role_mng_recurring' => 'Hantera återkommande transaktioner ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Hantera valutor', - 'administration_role_view_reports' => 'Visa rapporter', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Hantera transaktioner', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Hantera spargrisar', + 'administration_role_mng_subscriptions' => 'Hantera prenumerationer', + 'administration_role_mng_rules' => 'Hantera regler', + 'administration_role_mng_recurring' => 'Hantera återkommande transaktioner ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Hantera valutor', + 'administration_role_view_reports' => 'Visa rapporter', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Alla dina andra sessioner har loggats ut.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Radera oanvända konton', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Ta bort ALLA dina budgetar', - 'delete_all_categories' => 'Ta bort ALLA dina kategorier', - 'delete_all_tags' => 'Ta bort ALLA etiketter', - 'delete_all_bills' => 'Ta bort ALLA dina räkningar', - 'delete_all_piggy_banks' => 'Ta bort ALLA dina spargrisar', - 'delete_all_rules' => 'Ta bort ALLA dina regler', - 'delete_all_recurring' => 'Ta bort ALLA dina återkommande transaktioner', - 'delete_all_object_groups' => 'Ta bort ALLA dina objektgrupper', - 'delete_all_accounts' => 'Ta bort ALLA dina konton', - 'delete_all_asset_accounts' => 'Ta bort ALLA dina tillgångskonton', - 'delete_all_expense_accounts' => 'Ta bort ALLA dina utgiftskonton', - 'delete_all_revenue_accounts' => 'Ta bort ALLA dina intäktskonton', - 'delete_all_liabilities' => 'Ta bort ALLA dina skulder', - 'delete_all_transactions' => 'Ta bort ALLA dina transaktioner', - 'delete_all_withdrawals' => 'Ta bort ALLA dina uttag', - 'delete_all_deposits' => 'Ta bort ALLA dina insättningar', - 'delete_all_transfers' => 'Ta bort ALLA dina överföringar', - 'also_delete_transactions' => 'Att ta bort konton kommer också ta bort ALLA associerade uttag, insättningar och överföringar!', - 'deleted_all_budgets' => 'Alla budgetar har raderats', - 'deleted_all_categories' => 'Alla kategorier har tagits bort', - 'deleted_all_tags' => 'Alla etiketter har tagits bort', - 'deleted_all_bills' => 'Alla räkningar har tagits bort', - 'deleted_all_piggy_banks' => 'Alla spargrisar har tagits bort', - 'deleted_all_rules' => 'Alla regler och regelgrupper har tagits bort', - 'deleted_all_object_groups' => 'Alla grupper har tagits bort', - 'deleted_all_accounts' => 'Alla konton har tagits bort', - 'deleted_all_asset_accounts' => 'Alla tillgångskonton har tagits bort', - 'deleted_all_expense_accounts' => 'Alla utgiftskonton har tagits bort', - 'deleted_all_revenue_accounts' => 'Alla intäktskonton har tagits bort', - 'deleted_all_liabilities' => 'Alla skulder har tagits bort', - 'deleted_all_transactions' => 'Alla transaktioner har tagits bort', - 'deleted_all_withdrawals' => 'Alla uttag har tagits bort', - 'deleted_all_deposits' => 'Alla insättningar har tagits bort', - 'deleted_all_transfers' => 'Alla överföringar har tagits bort', - 'deleted_all_recurring' => 'Alla återkommande transaktioner har tagits bort', - 'change_your_password' => 'Ändra ditt lösenord', - 'delete_account' => 'Ta bort konto', - 'current_password' => 'Nuvarande lösenord', - 'new_password' => 'Nytt lösenord', - 'new_password_again' => 'Repetera lösenord', - 'delete_your_account' => 'Radera ditt konto', - 'delete_your_account_help' => 'Radering av ditt konto tar även bort alla konton, transaktioner, allt du kan ha sparat i Firefly III. Det kommer att vara BORTA.', - 'delete_your_account_password' => 'Ange ditt lösenord för att fortsätta.', - 'password' => 'Lösenord', - 'are_you_sure' => 'Är du säker? Du kan inte ångra detta.', - 'delete_account_button' => 'TA BORT ditt konto', - 'invalid_current_password' => 'Ogiltigt nuvarande lösenord!', - 'password_changed' => 'Lösenordet har ändrats!', - 'should_change' => 'Tanken är att byta ditt lösenord.', - 'invalid_password' => 'Ogiltigt lösenord!', - 'what_is_pw_security' => 'Vad är "verifiera lösenordssäkerhet"?', - 'secure_pw_title' => 'Hur man väljer ett säkert lösenord', - 'forgot_password_response' => 'Tack. Om ett konto finns med denna e-postadress, hittar du instruktioner i din inkorg.', - 'secure_pw_history' => 'Det går inte en vecka utan att man läser i nyheterna om en sida som förlorat lösenord till sina användare. Hackare och tjuvar använder dessa lösenord för att stjäla din privata information. Denna information är värdefull.', - 'secure_pw_ff' => 'Använder du samma lösenord överallt på internet? Om en av dessa sidor förlorar ditt lösenord, så har hackare åtkomst till all din data. Firefly III förlitar sig att du väljer ett starkt och unikt lösenord för att skydda dina ekonomiska uppgifter.', - 'secure_pw_check_box' => 'För att hjälpa dig så kan Firefly III kontrollera om lösenordet du vill använda blivit stulet tidigare. Om detta är fallet, kommer Firefly III råda dig att INTE använda det lösenordet.', - 'secure_pw_working_title' => 'Hur fungerar det?', - 'secure_pw_working' => 'Kryssa i rutan, Firefly III kommer att skicka de fem första tecknen i SHA1 hash av ditt lösenord till webbsidan av Troy Hunt för att se om det finns med på listan. Detta kommer att stoppa dig från att använda osäkra lösenord vilket rekommenderas i den senaste NIST Special Publication om ämnet.', - 'secure_pw_should' => 'Borde jag kryssa i rutan?', - 'secure_pw_long_password' => 'Ja. Verifiera alltid att ditt lösenord är säkert.', - 'command_line_token' => 'Kommandoradstoken', - 'explain_command_line_token' => 'Du behöver denna token för att utföra kommandoradsalternativ, till exempel exportera data. Utan det kommer det känsliga kommandot inte att fungera. Dela inte din kommandoradssymbol. Ingen kommer att be er om detta tecken, inte ens jag. Om du är rädd för att du förlorade detta, eller när du är paranoid, regenerera denna token med hjälp av knappen.', - 'regenerate_command_line_token' => 'Återskapa kommandoradstoken', - 'token_regenerated' => 'En ny kommandoradstoken har skapats', - 'change_your_email' => 'Ändra din e-postadress', - 'email_verification' => 'Ett e-postmeddelande kommer att skickas till din gamla OCH nya e-postadress. Av säkerhetsskäl kommer du inte att kunna logga in förrän du verifierar din nya e-postadress. Om du är osäker på om din Firefly III-installation kan skicka e-post, använd inte den här funktionen. Om du är administratör kan du testa detta i Administration.', - 'email_changed_logout' => 'Tills e-postadress blivit verifierad, så kan du inte logga in.', - 'login_with_new_email' => 'Du kan nu logga in med din nya epost-adress.', - 'login_with_old_email' => 'Du kan nu logga in med din gamla epost-adress igen.', - 'login_provider_local_only' => 'Denna åtgärd är inte tillgänlig vid autentisiering genom ":login_provider".', - 'external_user_mgt_disabled' => 'Denna åtgärd är inte tillgänglig när Firefly III inte är ansvarig för användarhantering eller autentiseringshantering.', - 'external_auth_disabled' => 'Denna åtgärd är inte tillgänglig när Firefly III inte är ansvarig för autentiseringshantering.', - 'delete_local_info_only' => 'Eftersom Firefly III inte är ansvarig för användarhantering eller autentiseringshantering, kommer denna funktion endast ta bort lokal Firefly III-information.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth klienter', - 'profile_oauth_no_clients' => 'Du har inte skapat några OAuth klienter.', - '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_header' => 'Klienter', - 'profile_oauth_client_id' => 'Klient ID', - 'profile_oauth_client_name' => 'Namn', - 'profile_oauth_client_secret' => 'Hemlighet', - 'profile_oauth_create_new_client' => 'Skapa ny klient', - 'profile_oauth_create_client' => 'Skapa klient', - 'profile_oauth_edit_client' => 'Redigera klient', - 'profile_oauth_name_help' => 'Något som dina användare kommer att känna igen och lita på.', - 'profile_oauth_redirect_url' => 'Omdirigera URL', - 'profile_oauth_redirect_url_help' => 'Din applikations auktorisering callback URL.', - 'profile_authorized_apps' => 'Auktoriserade applikationer', - 'profile_authorized_clients' => 'Auktoriserade klienter', - 'profile_scopes' => 'Omfattningar', - 'profile_revoke' => 'Återkalla', - 'profile_oauth_client_secret_title' => 'Klienthemlighet', - 'profile_oauth_client_secret_expl' => 'Här är din nya klient hemlighet. Detta är den enda gången det kommer att visas så förlora inte det! Du kan nu använda denna hemlighet för att göra API-förfrågningar.', - 'profile_personal_access_tokens' => 'Personliga åtkomst-Tokens', - 'profile_personal_access_token' => 'Personlig åtkomsttoken', - 'profile_oauth_confidential' => 'Konfidentiell', - 'profile_oauth_confidential_help' => 'Kräv att klienten autentiserar med en hemlighet. Konfidentiella klienter kan hålla autentiseringsuppgifter på ett säkert sätt utan att utsätta dem för obehöriga parter. Publika applikationer, som skrivbord eller JavaScript-SPA-applikationer, kan inte hålla hemligheter på ett säkert sätt.', - 'profile_personal_access_token_explanation' => 'Här är din nya personliga tillgångs token. Detta är den enda gången det kommer att visas så förlora inte det! Du kan nu använda denna token för att göra API-förfrågningar.', - 'profile_no_personal_access_token' => 'Du har inte skapat några personliga åtkomsttokens.', - 'profile_create_new_token' => 'Skapa ny token', - 'profile_create_token' => 'Skapa token', - 'profile_create' => 'Skapa', - 'profile_save_changes' => 'Spara ändringar', - 'profile_whoops' => 'Hoppsan!', - 'profile_something_wrong' => 'Något gick fel!', - 'profile_try_again' => 'Något gick fel. Försök igen.', - 'amounts' => 'Belopp', - 'multi_account_warning_unknown' => 'Beroende på vilken typ av transaktion du skapar, källan och/eller destinationskontot för efterföljande delningar kan åsidosättas av vad som än definieras i den första delningen av transaktionen.', - 'multi_account_warning_withdrawal' => 'Tänk på att källkontot för efterföljande uppdelningar kommer att upphävas av vad som än definieras i den första uppdelningen av uttaget.', - 'multi_account_warning_deposit' => 'Tänk på att destinationskontot för efterföljande uppdelningar kommer att styras av vad som än definieras i den första uppdelningen av insättningen.', - 'multi_account_warning_transfer' => 'Tänk på att käll + destinationskonto av efterföljande delningar kommer att styras av vad som definieras i den första uppdelningen av överföringen.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Alla dina andra sessioner har loggats ut.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Radera oanvända konton', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Ta bort ALLA dina budgetar', + 'delete_all_categories' => 'Ta bort ALLA dina kategorier', + 'delete_all_tags' => 'Ta bort ALLA etiketter', + 'delete_all_bills' => 'Ta bort ALLA dina räkningar', + 'delete_all_piggy_banks' => 'Ta bort ALLA dina spargrisar', + 'delete_all_rules' => 'Ta bort ALLA dina regler', + 'delete_all_recurring' => 'Ta bort ALLA dina återkommande transaktioner', + 'delete_all_object_groups' => 'Ta bort ALLA dina objektgrupper', + 'delete_all_accounts' => 'Ta bort ALLA dina konton', + 'delete_all_asset_accounts' => 'Ta bort ALLA dina tillgångskonton', + 'delete_all_expense_accounts' => 'Ta bort ALLA dina utgiftskonton', + 'delete_all_revenue_accounts' => 'Ta bort ALLA dina intäktskonton', + 'delete_all_liabilities' => 'Ta bort ALLA dina skulder', + 'delete_all_transactions' => 'Ta bort ALLA dina transaktioner', + 'delete_all_withdrawals' => 'Ta bort ALLA dina uttag', + 'delete_all_deposits' => 'Ta bort ALLA dina insättningar', + 'delete_all_transfers' => 'Ta bort ALLA dina överföringar', + 'also_delete_transactions' => 'Att ta bort konton kommer också ta bort ALLA associerade uttag, insättningar och överföringar!', + 'deleted_all_budgets' => 'Alla budgetar har raderats', + 'deleted_all_categories' => 'Alla kategorier har tagits bort', + 'deleted_all_tags' => 'Alla etiketter har tagits bort', + 'deleted_all_bills' => 'Alla räkningar har tagits bort', + 'deleted_all_piggy_banks' => 'Alla spargrisar har tagits bort', + 'deleted_all_rules' => 'Alla regler och regelgrupper har tagits bort', + 'deleted_all_object_groups' => 'Alla grupper har tagits bort', + 'deleted_all_accounts' => 'Alla konton har tagits bort', + 'deleted_all_asset_accounts' => 'Alla tillgångskonton har tagits bort', + 'deleted_all_expense_accounts' => 'Alla utgiftskonton har tagits bort', + 'deleted_all_revenue_accounts' => 'Alla intäktskonton har tagits bort', + 'deleted_all_liabilities' => 'Alla skulder har tagits bort', + 'deleted_all_transactions' => 'Alla transaktioner har tagits bort', + 'deleted_all_withdrawals' => 'Alla uttag har tagits bort', + 'deleted_all_deposits' => 'Alla insättningar har tagits bort', + 'deleted_all_transfers' => 'Alla överföringar har tagits bort', + 'deleted_all_recurring' => 'Alla återkommande transaktioner har tagits bort', + 'change_your_password' => 'Ändra ditt lösenord', + 'delete_account' => 'Ta bort konto', + 'current_password' => 'Nuvarande lösenord', + 'new_password' => 'Nytt lösenord', + 'new_password_again' => 'Repetera lösenord', + 'delete_your_account' => 'Radera ditt konto', + 'delete_your_account_help' => 'Radering av ditt konto tar även bort alla konton, transaktioner, allt du kan ha sparat i Firefly III. Det kommer att vara BORTA.', + 'delete_your_account_password' => 'Ange ditt lösenord för att fortsätta.', + 'password' => 'Lösenord', + 'are_you_sure' => 'Är du säker? Du kan inte ångra detta.', + 'delete_account_button' => 'TA BORT ditt konto', + 'invalid_current_password' => 'Ogiltigt nuvarande lösenord!', + 'password_changed' => 'Lösenordet har ändrats!', + 'should_change' => 'Tanken är att byta ditt lösenord.', + 'invalid_password' => 'Ogiltigt lösenord!', + 'what_is_pw_security' => 'Vad är "verifiera lösenordssäkerhet"?', + 'secure_pw_title' => 'Hur man väljer ett säkert lösenord', + 'forgot_password_response' => 'Tack. Om ett konto finns med denna e-postadress, hittar du instruktioner i din inkorg.', + 'secure_pw_history' => 'Det går inte en vecka utan att man läser i nyheterna om en sida som förlorat lösenord till sina användare. Hackare och tjuvar använder dessa lösenord för att stjäla din privata information. Denna information är värdefull.', + 'secure_pw_ff' => 'Använder du samma lösenord överallt på internet? Om en av dessa sidor förlorar ditt lösenord, så har hackare åtkomst till all din data. Firefly III förlitar sig att du väljer ett starkt och unikt lösenord för att skydda dina ekonomiska uppgifter.', + 'secure_pw_check_box' => 'För att hjälpa dig så kan Firefly III kontrollera om lösenordet du vill använda blivit stulet tidigare. Om detta är fallet, kommer Firefly III råda dig att INTE använda det lösenordet.', + 'secure_pw_working_title' => 'Hur fungerar det?', + 'secure_pw_working' => 'Kryssa i rutan, Firefly III kommer att skicka de fem första tecknen i SHA1 hash av ditt lösenord till webbsidan av Troy Hunt för att se om det finns med på listan. Detta kommer att stoppa dig från att använda osäkra lösenord vilket rekommenderas i den senaste NIST Special Publication om ämnet.', + 'secure_pw_should' => 'Borde jag kryssa i rutan?', + 'secure_pw_long_password' => 'Ja. Verifiera alltid att ditt lösenord är säkert.', + 'command_line_token' => 'Kommandoradstoken', + 'explain_command_line_token' => 'Du behöver denna token för att utföra kommandoradsalternativ, till exempel exportera data. Utan det kommer det känsliga kommandot inte att fungera. Dela inte din kommandoradssymbol. Ingen kommer att be er om detta tecken, inte ens jag. Om du är rädd för att du förlorade detta, eller när du är paranoid, regenerera denna token med hjälp av knappen.', + 'regenerate_command_line_token' => 'Återskapa kommandoradstoken', + 'token_regenerated' => 'En ny kommandoradstoken har skapats', + 'change_your_email' => 'Ändra din e-postadress', + 'email_verification' => 'Ett e-postmeddelande kommer att skickas till din gamla OCH nya e-postadress. Av säkerhetsskäl kommer du inte att kunna logga in förrän du verifierar din nya e-postadress. Om du är osäker på om din Firefly III-installation kan skicka e-post, använd inte den här funktionen. Om du är administratör kan du testa detta i Administration.', + 'email_changed_logout' => 'Tills e-postadress blivit verifierad, så kan du inte logga in.', + 'login_with_new_email' => 'Du kan nu logga in med din nya epost-adress.', + 'login_with_old_email' => 'Du kan nu logga in med din gamla epost-adress igen.', + 'login_provider_local_only' => 'Denna åtgärd är inte tillgänlig vid autentisiering genom ":login_provider".', + 'external_user_mgt_disabled' => 'Denna åtgärd är inte tillgänglig när Firefly III inte är ansvarig för användarhantering eller autentiseringshantering.', + 'external_auth_disabled' => 'Denna åtgärd är inte tillgänglig när Firefly III inte är ansvarig för autentiseringshantering.', + 'delete_local_info_only' => 'Eftersom Firefly III inte är ansvarig för användarhantering eller autentiseringshantering, kommer denna funktion endast ta bort lokal Firefly III-information.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth klienter', + 'profile_oauth_no_clients' => 'Du har inte skapat några OAuth klienter.', + '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_header' => 'Klienter', + 'profile_oauth_client_id' => 'Klient ID', + 'profile_oauth_client_name' => 'Namn', + 'profile_oauth_client_secret' => 'Hemlighet', + 'profile_oauth_create_new_client' => 'Skapa ny klient', + 'profile_oauth_create_client' => 'Skapa klient', + 'profile_oauth_edit_client' => 'Redigera klient', + 'profile_oauth_name_help' => 'Något som dina användare kommer att känna igen och lita på.', + 'profile_oauth_redirect_url' => 'Omdirigera URL', + 'profile_oauth_redirect_url_help' => 'Din applikations auktorisering callback URL.', + 'profile_authorized_apps' => 'Auktoriserade applikationer', + 'profile_authorized_clients' => 'Auktoriserade klienter', + 'profile_scopes' => 'Omfattningar', + 'profile_revoke' => 'Återkalla', + 'profile_oauth_client_secret_title' => 'Klienthemlighet', + 'profile_oauth_client_secret_expl' => 'Här är din nya klient hemlighet. Detta är den enda gången det kommer att visas så förlora inte det! Du kan nu använda denna hemlighet för att göra API-förfrågningar.', + 'profile_personal_access_tokens' => 'Personliga åtkomst-Tokens', + 'profile_personal_access_token' => 'Personlig åtkomsttoken', + 'profile_oauth_confidential' => 'Konfidentiell', + 'profile_oauth_confidential_help' => 'Kräv att klienten autentiserar med en hemlighet. Konfidentiella klienter kan hålla autentiseringsuppgifter på ett säkert sätt utan att utsätta dem för obehöriga parter. Publika applikationer, som skrivbord eller JavaScript-SPA-applikationer, kan inte hålla hemligheter på ett säkert sätt.', + 'profile_personal_access_token_explanation' => 'Här är din nya personliga tillgångs token. Detta är den enda gången det kommer att visas så förlora inte det! Du kan nu använda denna token för att göra API-förfrågningar.', + 'profile_no_personal_access_token' => 'Du har inte skapat några personliga åtkomsttokens.', + 'profile_create_new_token' => 'Skapa ny token', + 'profile_create_token' => 'Skapa token', + 'profile_create' => 'Skapa', + 'profile_save_changes' => 'Spara ändringar', + 'profile_whoops' => 'Hoppsan!', + 'profile_something_wrong' => 'Något gick fel!', + 'profile_try_again' => 'Något gick fel. Försök igen.', + 'amounts' => 'Belopp', + 'multi_account_warning_unknown' => 'Beroende på vilken typ av transaktion du skapar, källan och/eller destinationskontot för efterföljande delningar kan åsidosättas av vad som än definieras i den första delningen av transaktionen.', + 'multi_account_warning_withdrawal' => 'Tänk på att källkontot för efterföljande uppdelningar kommer att upphävas av vad som än definieras i den första uppdelningen av uttaget.', + 'multi_account_warning_deposit' => 'Tänk på att destinationskontot för efterföljande uppdelningar kommer att styras av vad som än definieras i den första uppdelningen av insättningen.', + 'multi_account_warning_transfer' => 'Tänk på att käll + destinationskonto av efterföljande delningar kommer att styras av vad som definieras i den första uppdelningen av överföringen.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Exportera data från Firefly III', - 'export_data_menu' => 'Exportera data', - 'export_data_bc' => 'Exportera data från Firefly III', - 'export_data_main_title' => 'Exportera data från Firefly III', - 'export_data_expl' => 'Denna länk låter dig exportera alla transaktioner + meta data från Firefly III. Se hjälpen (högst upp till höger (?)-ikonen) för mer information om processen.', - 'export_data_all_transactions' => 'Exportera alla transaktioner', - 'export_data_advanced_expl' => 'Om du behöver en mer avancerad eller specifik typ av export, läs hjälpen om hur man använder konsolkommandot php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Exportera data från Firefly III', + 'export_data_menu' => 'Exportera data', + 'export_data_bc' => 'Exportera data från Firefly III', + 'export_data_main_title' => 'Exportera data från Firefly III', + 'export_data_expl' => 'Denna länk låter dig exportera alla transaktioner + meta data från Firefly III. Se hjälpen (högst upp till höger (?)-ikonen) för mer information om processen.', + 'export_data_all_transactions' => 'Exportera alla transaktioner', + 'export_data_advanced_expl' => 'Om du behöver en mer avancerad eller specifik typ av export, läs hjälpen om hur man använder konsolkommandot php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'En bilaga|:count bilagor', - 'attachments' => 'Bilagor', - 'edit_attachment' => 'Ändra bilaga ":name"', - 'update_attachment' => 'Uppdatera bifogad fil', - 'delete_attachment' => 'Ta bort bilaga ":name"', - 'attachment_deleted' => 'Tog bort bilaga ":name"', - 'liabilities_deleted' => 'Raderat skuld ":name"', - 'attachment_updated' => 'Uppdaterat bilaga ":name"', - 'upload_max_file_size' => 'Maximal filstorlek är :size', - 'list_all_attachments' => 'Lista alla bilagor', + 'nr_of_attachments' => 'En bilaga|:count bilagor', + 'attachments' => 'Bilagor', + 'edit_attachment' => 'Ändra bilaga ":name"', + 'update_attachment' => 'Uppdatera bifogad fil', + 'delete_attachment' => 'Ta bort bilaga ":name"', + 'attachment_deleted' => 'Tog bort bilaga ":name"', + 'liabilities_deleted' => 'Raderat skuld ":name"', + 'attachment_updated' => 'Uppdaterat bilaga ":name"', + 'upload_max_file_size' => 'Maximal filstorlek är :size', + 'list_all_attachments' => 'Lista alla bilagor', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Utgifter', - 'title_withdrawal' => 'Utgifter', - 'title_revenue' => 'Intäkter / inkomst', - 'title_deposit' => 'Intäkter / inkomst', - 'title_transfer' => 'Överföringar', - 'title_transfers' => 'Överföringar', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Utgifter', + 'title_withdrawal' => 'Utgifter', + 'title_revenue' => 'Intäkter / inkomst', + 'title_deposit' => 'Intäkter / inkomst', + 'title_transfer' => 'Överföringar', + 'title_transfers' => 'Överföringar', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Transaktionen är redan ett uttag', - 'convert_is_already_type_Deposit' => 'Transaktionen är redan en insättning', - 'convert_is_already_type_Transfer' => 'Transaktionen är redan en överföring', - 'convert_to_Withdrawal' => 'Konvertera ":description" till ett uttag', - 'convert_to_Deposit' => 'Konvertera ":description" till en insättning', - 'convert_to_Transfer' => 'Konvertera ":description" till en överföring', - 'convert_options_WithdrawalDeposit' => 'Konvertera ett uttag till en insättning', - 'convert_options_WithdrawalTransfer' => 'Konvertera ett uttag till en överföring', - 'convert_options_DepositTransfer' => 'Konvertera en insättning till en överföring', - 'convert_options_DepositWithdrawal' => 'Konvertera en insättning till ett uttag', - 'convert_options_TransferWithdrawal' => 'Konvertera en överföring till ett uttag', - 'convert_options_TransferDeposit' => 'Konvertera överföring till en insättning', - 'convert_Withdrawal_to_deposit' => 'Konvertera detta uttg till en insättning', - 'convert_Withdrawal_to_transfer' => 'Konvertera detta uttag till en överföring', - 'convert_Deposit_to_withdrawal' => 'Konvertera denna insättning till ett uttag', - 'convert_Deposit_to_transfer' => 'Konvertera denna insättning till överföring', - 'convert_Transfer_to_deposit' => 'Konvertera överföring till en insättning', - 'convert_Transfer_to_withdrawal' => 'Konvertera överföring till ett uttag', - 'convert_please_set_revenue_source' => 'Vänligen välj intäktskonto där pengarna kommer från.', - 'convert_please_set_asset_destination' => 'Välj tillgångskonto pengarna kommer att gå till.', - 'convert_please_set_expense_destination' => 'Välj utgiftskonto som pengarna går till.', - 'convert_please_set_asset_source' => 'Välj tillgångskonto pengarna kommer från.', - 'convert_expl_w_d' => 'När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till det visade destinationskontot, istället för att tas ut från det. När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till de visade destinationskontona, istället för att tas ut från dem.', - 'convert_expl_w_t' => 'När du konverterar ett uttag till en överföring, pengarna överförs från källkontot till annat tillgångs- eller ansvarskonto istället för att spenderas på det ursprungliga utgiftskontot.|När du konverterar ett uttag till en överföring, pengarna överförs från källräkenskaperna till andra tillgångs- eller ansvarskonton istället för att spenderas på de ursprungliga kostnadskontona.', - 'convert_expl_d_w' => 'När du konverterar en insättning till ett uttag kommer pengarna att tas ut från det visade källkontot istället för att deponeras till det.|När du konverterar en insättning till ett uttag kommer pengarna att tas ut från de visade källkontona istället för att deponeras till dem.', - 'convert_expl_d_t' => 'När du konverterar en insättning till en överföring, pengarna kommer att sättas in på det angivna destinationskontot från något av ditt tillgångs- eller ansvarskonto.|När du konverterar en insättning till en överföring, pengarna kommer att sättas in på de angivna destinationskontona från någon av dina tillgångs- eller ansvarskonton.', - 'convert_expl_t_w' => 'När du konverterar en överföring till ett uttag kommer pengarna att spenderas på det destinationskonto du anger här, istället för att överföras bort.|När du konverterar en överföring till ett uttag kommer pengarna att spenderas på de destinationskonton du anger här, istället för att överföras bort.', - 'convert_expl_t_d' => 'När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till det visade destinationskontot, istället för att tas ut från det.|När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till de visade destinationskontona, istället för att tas ut från dem.', - 'convert_select_sources' => 'För att slutföra konverteringen, ange det nya källkontot nedan.|För att slutföra konverteringen, vänligen ange de nya källkontona nedan.', - 'convert_select_destinations' => 'För att slutföra konverteringen, välj det nya destinationskontot nedan.|För att slutföra konverteringen, vänligen välj de nya destinationskontona nedan.', - 'converted_to_Withdrawal' => 'Transaktion har konverterats till ett uttag', - 'converted_to_Deposit' => 'Transaktion har konverterats till en insättning', - 'converted_to_Transfer' => 'Transaktionen har konverterats till en överföring', - 'invalid_convert_selection' => 'Valt konto används redan i transaktion eller saknas helt.', - 'source_or_dest_invalid' => 'Finner inte rätt transaktionsdetaljer. Konvertering inte möjlig.', - 'convert_to_withdrawal' => 'Konvertera till ett uttag', - 'convert_to_deposit' => 'Konvertera till en insättning', - 'convert_to_transfer' => 'Konvertera till en överföring', + 'convert_is_already_type_Withdrawal' => 'Transaktionen är redan ett uttag', + 'convert_is_already_type_Deposit' => 'Transaktionen är redan en insättning', + 'convert_is_already_type_Transfer' => 'Transaktionen är redan en överföring', + 'convert_to_Withdrawal' => 'Konvertera ":description" till ett uttag', + 'convert_to_Deposit' => 'Konvertera ":description" till en insättning', + 'convert_to_Transfer' => 'Konvertera ":description" till en överföring', + 'convert_options_WithdrawalDeposit' => 'Konvertera ett uttag till en insättning', + 'convert_options_WithdrawalTransfer' => 'Konvertera ett uttag till en överföring', + 'convert_options_DepositTransfer' => 'Konvertera en insättning till en överföring', + 'convert_options_DepositWithdrawal' => 'Konvertera en insättning till ett uttag', + 'convert_options_TransferWithdrawal' => 'Konvertera en överföring till ett uttag', + 'convert_options_TransferDeposit' => 'Konvertera överföring till en insättning', + 'convert_Withdrawal_to_deposit' => 'Konvertera detta uttg till en insättning', + 'convert_Withdrawal_to_transfer' => 'Konvertera detta uttag till en överföring', + 'convert_Deposit_to_withdrawal' => 'Konvertera denna insättning till ett uttag', + 'convert_Deposit_to_transfer' => 'Konvertera denna insättning till överföring', + 'convert_Transfer_to_deposit' => 'Konvertera överföring till en insättning', + 'convert_Transfer_to_withdrawal' => 'Konvertera överföring till ett uttag', + 'convert_please_set_revenue_source' => 'Vänligen välj intäktskonto där pengarna kommer från.', + 'convert_please_set_asset_destination' => 'Välj tillgångskonto pengarna kommer att gå till.', + 'convert_please_set_expense_destination' => 'Välj utgiftskonto som pengarna går till.', + 'convert_please_set_asset_source' => 'Välj tillgångskonto pengarna kommer från.', + 'convert_expl_w_d' => 'När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till det visade destinationskontot, istället för att tas ut från det. När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till de visade destinationskontona, istället för att tas ut från dem.', + 'convert_expl_w_t' => 'När du konverterar ett uttag till en överföring, pengarna överförs från källkontot till annat tillgångs- eller ansvarskonto istället för att spenderas på det ursprungliga utgiftskontot.|När du konverterar ett uttag till en överföring, pengarna överförs från källräkenskaperna till andra tillgångs- eller ansvarskonton istället för att spenderas på de ursprungliga kostnadskontona.', + 'convert_expl_d_w' => 'När du konverterar en insättning till ett uttag kommer pengarna att tas ut från det visade källkontot istället för att deponeras till det.|När du konverterar en insättning till ett uttag kommer pengarna att tas ut från de visade källkontona istället för att deponeras till dem.', + 'convert_expl_d_t' => 'När du konverterar en insättning till en överföring, pengarna kommer att sättas in på det angivna destinationskontot från något av ditt tillgångs- eller ansvarskonto.|När du konverterar en insättning till en överföring, pengarna kommer att sättas in på de angivna destinationskontona från någon av dina tillgångs- eller ansvarskonton.', + 'convert_expl_t_w' => 'När du konverterar en överföring till ett uttag kommer pengarna att spenderas på det destinationskonto du anger här, istället för att överföras bort.|När du konverterar en överföring till ett uttag kommer pengarna att spenderas på de destinationskonton du anger här, istället för att överföras bort.', + 'convert_expl_t_d' => 'När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till det visade destinationskontot, istället för att tas ut från det.|När du konverterar från ett uttag till en insättning, kommer pengarna att deponeras till de visade destinationskontona, istället för att tas ut från dem.', + 'convert_select_sources' => 'För att slutföra konverteringen, ange det nya källkontot nedan.|För att slutföra konverteringen, vänligen ange de nya källkontona nedan.', + 'convert_select_destinations' => 'För att slutföra konverteringen, välj det nya destinationskontot nedan.|För att slutföra konverteringen, vänligen välj de nya destinationskontona nedan.', + 'converted_to_Withdrawal' => 'Transaktion har konverterats till ett uttag', + 'converted_to_Deposit' => 'Transaktion har konverterats till en insättning', + 'converted_to_Transfer' => 'Transaktionen har konverterats till en överföring', + 'invalid_convert_selection' => 'Valt konto används redan i transaktion eller saknas helt.', + 'source_or_dest_invalid' => 'Finner inte rätt transaktionsdetaljer. Konvertering inte möjlig.', + 'convert_to_withdrawal' => 'Konvertera till ett uttag', + 'convert_to_deposit' => 'Konvertera till en insättning', + 'convert_to_transfer' => 'Konvertera till en överföring', // create new stuff: - 'create_new_withdrawal' => 'Skapa ett nytt uttag', - 'create_new_deposit' => 'Skapa en ny insättning', - 'create_new_transfer' => 'Skapa en ny överföring', - 'create_new_asset' => 'Skapa ett nytt tillgångskonto', - 'create_new_liabilities' => 'Skapa ny skuld', - 'create_new_expense' => 'Skapa ett nytt utgiftskonto', - 'create_new_revenue' => 'Skapa ett nytt intäktskonto', - 'create_new_piggy_bank' => 'Skapa en ny spargris', - 'create_new_bill' => 'Skapa en ny nota', - 'create_new_subscription' => 'Skapa ny prenumeration', - 'create_new_rule' => 'Skapa ny regel', + 'create_new_withdrawal' => 'Skapa ett nytt uttag', + 'create_new_deposit' => 'Skapa en ny insättning', + 'create_new_transfer' => 'Skapa en ny överföring', + 'create_new_asset' => 'Skapa ett nytt tillgångskonto', + 'create_new_liabilities' => 'Skapa ny skuld', + 'create_new_expense' => 'Skapa ett nytt utgiftskonto', + 'create_new_revenue' => 'Skapa ett nytt intäktskonto', + 'create_new_piggy_bank' => 'Skapa en ny spargris', + 'create_new_bill' => 'Skapa en ny nota', + 'create_new_subscription' => 'Skapa ny prenumeration', + 'create_new_rule' => 'Skapa ny regel', // currencies: - 'create_currency' => 'Skapa en ny valuta', - 'store_currency' => 'Lagra en ny valuta', - 'update_currency' => 'Uppdatera valuta', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Kan ej ta bort :name då den fortfarande används.', - 'cannot_delete_fallback_currency' => ':name är systemets reservvaluta och kan inte tas bort.', - 'cannot_disable_currency_journals' => 'Kan inte inaktivera :name då transaktioner fortfarande använder den.', - 'cannot_disable_currency_last_left' => 'Kan inte inaktivera :name efter det är den sista aktiverade valutan.', - 'cannot_disable_currency_account_meta' => 'Kan inte inaktivera :name, används i tillgångskonton.', - 'cannot_disable_currency_bills' => 'Kan inte inaktivera :name, används i räkningar.', - 'cannot_disable_currency_recurring' => 'Kan inte inaktivera :name, används i återkommande transaktioner.', - 'cannot_disable_currency_available_budgets' => 'Kan inte inaktivera :name, används i tillgängliga budgetar.', - 'cannot_disable_currency_budget_limits' => 'Kan inte inaktivera :name, används i budgetgränser.', - 'cannot_disable_currency_current_default' => 'Kan inte inaktivera :name, används som aktuell standardvaluta.', - 'cannot_disable_currency_system_fallback' => 'Kan inte inaktivera :name, är systemets standardvaluta.', - 'disable_EUR_side_effects' => 'Euron är systemets nödfallsvaluta. Inaktivering kan ha oavsiktliga bieffekter och kan upphäva din garanti.', - 'deleted_currency' => 'Valuta :name borttagen', - 'created_currency' => 'Valuta :name skapad', - 'could_not_store_currency' => 'Kunde inte lagra den nya valutan.', - 'updated_currency' => 'Valuta :name uppdaterad', - 'ask_site_owner' => 'Be :owner att lägga till, ta bort eller ändra valutor.', - 'currencies_intro' => 'Firefly III stödjer olika valutor vilket du kan ställa in här.', - 'make_default_currency' => 'Gör till standard', - 'default_currency' => 'standard', - 'currency_is_disabled' => 'Inaktiverad', - 'enable_currency' => 'Aktivera', - 'disable_currency' => 'Inaktivera', - 'currencies_default_disabled' => 'De flesta valutor är inaktiverade som standard. För att använda dem, så måste de aktiveras först.', - 'currency_is_now_enabled' => 'Valuta ":name" har aktiverats', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Valuta ":name" har inaktiverats', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Skapa en ny valuta', + 'store_currency' => 'Lagra en ny valuta', + 'update_currency' => 'Uppdatera valuta', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Kan ej ta bort :name då den fortfarande används.', + 'cannot_delete_fallback_currency' => ':name är systemets reservvaluta och kan inte tas bort.', + 'cannot_disable_currency_journals' => 'Kan inte inaktivera :name då transaktioner fortfarande använder den.', + 'cannot_disable_currency_last_left' => 'Kan inte inaktivera :name efter det är den sista aktiverade valutan.', + 'cannot_disable_currency_account_meta' => 'Kan inte inaktivera :name, används i tillgångskonton.', + 'cannot_disable_currency_bills' => 'Kan inte inaktivera :name, används i räkningar.', + 'cannot_disable_currency_recurring' => 'Kan inte inaktivera :name, används i återkommande transaktioner.', + 'cannot_disable_currency_available_budgets' => 'Kan inte inaktivera :name, används i tillgängliga budgetar.', + 'cannot_disable_currency_budget_limits' => 'Kan inte inaktivera :name, används i budgetgränser.', + 'cannot_disable_currency_current_default' => 'Kan inte inaktivera :name, används som aktuell standardvaluta.', + 'cannot_disable_currency_system_fallback' => 'Kan inte inaktivera :name, är systemets standardvaluta.', + 'disable_EUR_side_effects' => 'Euron är systemets nödfallsvaluta. Inaktivering kan ha oavsiktliga bieffekter och kan upphäva din garanti.', + 'deleted_currency' => 'Valuta :name borttagen', + 'created_currency' => 'Valuta :name skapad', + 'could_not_store_currency' => 'Kunde inte lagra den nya valutan.', + 'updated_currency' => 'Valuta :name uppdaterad', + 'ask_site_owner' => 'Be :owner att lägga till, ta bort eller ändra valutor.', + 'currencies_intro' => 'Firefly III stödjer olika valutor vilket du kan ställa in här.', + 'make_default_currency' => 'Gör till standard', + 'default_currency' => 'standard', + 'currency_is_disabled' => 'Inaktiverad', + 'enable_currency' => 'Aktivera', + 'disable_currency' => 'Inaktivera', + 'currencies_default_disabled' => 'De flesta valutor är inaktiverade som standard. För att använda dem, så måste de aktiveras först.', + 'currency_is_now_enabled' => 'Valuta ":name" har aktiverats', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Valuta ":name" har inaktiverats', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Obligatoriska fält', - 'optionalFields' => 'Valfria fält', - 'options' => 'Alternativ', + 'mandatoryFields' => 'Obligatoriska fält', + 'optionalFields' => 'Valfria fält', + 'options' => 'Alternativ', // budgets: - 'daily_budgets' => 'Dagliga budgetar', - 'weekly_budgets' => 'Veckovis budgetar', - 'monthly_budgets' => 'Månatliga budgetar', - 'quarterly_budgets' => 'Kvartalsbudgetar', - 'half_year_budgets' => 'Halvårsbudgetar', - 'yearly_budgets' => 'Årliga budgetar', - 'other_budgets' => 'Anpassade tidsinställda budgetar', - 'budget_limit_not_in_range' => 'Detta belopp gäller från :start till :end:', - 'total_available_budget' => 'Total tillgänglig budget (mellan :start och :end)', - 'total_available_budget_in_currency' => 'Total tillgänglig budget i :currency', - 'see_below' => 'se nedan', - 'create_new_budget' => 'Skapa en ny budget', - 'store_new_budget' => 'Lagra ny budget', - 'stored_new_budget' => 'Lagrade ny budget ":name"', - 'available_between' => 'Tillgänglig mellan :start och :end', - 'transactionsWithoutBudget' => 'Utgifter utan budget', - 'transactions_no_budget' => 'Utgifter utan budget mellan :start och :end', - 'spent_between' => 'Redan spenderat mellan :start och :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Valt tillgängligt belopp', - 'update_available_amount' => 'Uppdatera tillgängligt belopp', - 'ab_basic_modal_explain' => 'Detta formulär används för hur mycket du förväntas kunna budgetera (totalt i :currency) under angiven period.', - 'createBudget' => 'Ny budget', - 'invalid_currency' => 'Detta är en ogiltig valuta', - 'invalid_amount' => 'Ange ett belopp', - 'set_ab' => 'Summan på tillgänlig budget har satts', - 'updated_ab' => 'Summan på tillgänlig budget har uppdaterats', - 'deleted_ab' => 'Summan på tillgänglig budget har tagits bort', - 'deleted_bl' => 'Den budgeterade summan har tagits bort', - 'alt_currency_ab_create' => 'Ange tillgänglig budget i annan valuta', - 'bl_create_btn' => 'Ange budget i annan valuta', - 'inactiveBudgets' => 'Inaktiva budgetar', - 'without_budget_between' => 'Transaktioner utan budget mellan :start och :end', - 'delete_budget' => 'Ta bort budget ":name"', - 'deleted_budget' => 'Borttagen budget ":name"', - 'edit_budget' => 'Ändra budget ":name"', - 'updated_budget' => 'Uppdatera budget ":name"', - 'update_amount' => 'Uppdatera belopp', - 'update_budget' => 'Uppdatera budget', - 'update_budget_amount_range' => 'Uppdatera (förväntad) tillgänglig summa mellan :start och :end', - 'set_budget_limit_title' => 'Sätt budgeterat belopp för budget :budget mellan :start och :end', - 'set_budget_limit' => 'Sätt budgeterat belopp', - 'budget_period_navigator' => 'Periodnavigator', - 'info_on_available_amount' => 'Vad är tillgängligt?', - 'available_amount_indication' => 'Använd dessa summor för en indikering av vad din totala budget kan bli.', - 'suggested' => 'Föreslagen', - 'average_between' => 'Genomsnitt mellan :start och :end', - 'transferred_in' => 'Överfört (in)', - 'transferred_away' => 'Överfört (bort)', - 'auto_budget_none' => 'Ingen auto-budget', - 'auto_budget_reset' => 'Ange ett fast belopp varje period', - 'auto_budget_rollover' => 'Lägg till ett belopp varje period', - 'auto_budget_adjusted' => 'Lägg till ett belopp varje period och korrigera för överkonsumtion', - 'auto_budget_period_daily' => 'Dagligen', - 'auto_budget_period_weekly' => 'Veckovis', - 'auto_budget_period_monthly' => 'Månadsvis', - 'auto_budget_period_quarterly' => 'Kvartalsvis', - 'auto_budget_period_half_year' => 'Varje halvår', - 'auto_budget_period_yearly' => 'Årligen', - 'auto_budget_help' => 'Du kan läsa mer om denna funktion i hjälpen. Klicka på (?) ikonen uppe till höger.', - 'auto_budget_reset_icon' => 'Denna budget kommer att fastställas periodvis', - 'auto_budget_rollover_icon' => 'Budgetbeloppet kommer att öka periodiskt', - 'auto_budget_adjusted_icon' => 'Budgetbeloppet kommer att öka periodiskt och kommer att korrigera för överkonsumtion', - 'remove_budgeted_amount' => 'Ta bort budgeterat belopp i :currency', + 'daily_budgets' => 'Dagliga budgetar', + 'weekly_budgets' => 'Veckovis budgetar', + 'monthly_budgets' => 'Månatliga budgetar', + 'quarterly_budgets' => 'Kvartalsbudgetar', + 'half_year_budgets' => 'Halvårsbudgetar', + 'yearly_budgets' => 'Årliga budgetar', + 'other_budgets' => 'Anpassade tidsinställda budgetar', + 'budget_limit_not_in_range' => 'Detta belopp gäller från :start till :end:', + 'total_available_budget' => 'Total tillgänglig budget (mellan :start och :end)', + 'total_available_budget_in_currency' => 'Total tillgänglig budget i :currency', + 'see_below' => 'se nedan', + 'create_new_budget' => 'Skapa en ny budget', + 'store_new_budget' => 'Lagra ny budget', + 'stored_new_budget' => 'Lagrade ny budget ":name"', + 'available_between' => 'Tillgänglig mellan :start och :end', + 'transactionsWithoutBudget' => 'Utgifter utan budget', + 'transactions_no_budget' => 'Utgifter utan budget mellan :start och :end', + 'spent_between' => 'Redan spenderat mellan :start och :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Valt tillgängligt belopp', + 'update_available_amount' => 'Uppdatera tillgängligt belopp', + 'ab_basic_modal_explain' => 'Detta formulär används för hur mycket du förväntas kunna budgetera (totalt i :currency) under angiven period.', + 'createBudget' => 'Ny budget', + 'invalid_currency' => 'Detta är en ogiltig valuta', + 'invalid_amount' => 'Ange ett belopp', + 'set_ab' => 'Summan på tillgänlig budget har satts', + 'updated_ab' => 'Summan på tillgänlig budget har uppdaterats', + 'deleted_ab' => 'Summan på tillgänglig budget har tagits bort', + 'deleted_bl' => 'Den budgeterade summan har tagits bort', + 'alt_currency_ab_create' => 'Ange tillgänglig budget i annan valuta', + 'bl_create_btn' => 'Ange budget i annan valuta', + 'inactiveBudgets' => 'Inaktiva budgetar', + 'without_budget_between' => 'Transaktioner utan budget mellan :start och :end', + 'delete_budget' => 'Ta bort budget ":name"', + 'deleted_budget' => 'Borttagen budget ":name"', + 'edit_budget' => 'Ändra budget ":name"', + 'updated_budget' => 'Uppdatera budget ":name"', + 'update_amount' => 'Uppdatera belopp', + 'update_budget' => 'Uppdatera budget', + 'update_budget_amount_range' => 'Uppdatera (förväntad) tillgänglig summa mellan :start och :end', + 'set_budget_limit_title' => 'Sätt budgeterat belopp för budget :budget mellan :start och :end', + 'set_budget_limit' => 'Sätt budgeterat belopp', + 'budget_period_navigator' => 'Periodnavigator', + 'info_on_available_amount' => 'Vad är tillgängligt?', + 'available_amount_indication' => 'Använd dessa summor för en indikering av vad din totala budget kan bli.', + 'suggested' => 'Föreslagen', + 'average_between' => 'Genomsnitt mellan :start och :end', + 'transferred_in' => 'Överfört (in)', + 'transferred_away' => 'Överfört (bort)', + 'auto_budget_none' => 'Ingen auto-budget', + 'auto_budget_reset' => 'Ange ett fast belopp varje period', + 'auto_budget_rollover' => 'Lägg till ett belopp varje period', + 'auto_budget_adjusted' => 'Lägg till ett belopp varje period och korrigera för överkonsumtion', + 'auto_budget_period_daily' => 'Dagligen', + 'auto_budget_period_weekly' => 'Veckovis', + 'auto_budget_period_monthly' => 'Månadsvis', + 'auto_budget_period_quarterly' => 'Kvartalsvis', + 'auto_budget_period_half_year' => 'Varje halvår', + 'auto_budget_period_yearly' => 'Årligen', + 'auto_budget_help' => 'Du kan läsa mer om denna funktion i hjälpen. Klicka på (?) ikonen uppe till höger.', + 'auto_budget_reset_icon' => 'Denna budget kommer att fastställas periodvis', + 'auto_budget_rollover_icon' => 'Budgetbeloppet kommer att öka periodiskt', + 'auto_budget_adjusted_icon' => 'Budgetbeloppet kommer att öka periodiskt och kommer att korrigera för överkonsumtion', + 'remove_budgeted_amount' => 'Ta bort budgeterat belopp i :currency', // bills: - 'subscription' => 'Prenumeration', - 'not_expected_period' => 'Inte väntat denna period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Inte (ännu)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Nota matchar transaktioner mellan :low och :high.', - 'running_again_loss' => 'Tidigare länkade transaktioner till denna nota kan förlora sin koppling, om de (inte längre) matchar regler(na).', - 'bill_related_rules' => 'Regler relaterade till denna nota', - 'repeats' => 'Återkommande', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Anslutna transaktioner', - 'auto_match_on' => 'Automatiskt matchade av Firefly III', - 'auto_match_off' => 'Inte automatiskt matchad av Firefly III', - 'next_expected_match' => 'Nästa förväntade träff', - 'delete_bill' => 'Ta bort nota ":name"', - 'deleted_bill' => 'Nota ":name" borttagen', - 'edit_bill' => 'Redigera nota ":name"', - 'more' => 'Mer', - 'rescan_old' => 'Kör regler igen, på alla transaktioner', - 'update_bill' => 'Uppdatera nota', - 'updated_bill' => 'Nota ":name" uppdaterad', - 'store_new_bill' => 'Spara ny nota', - 'stored_new_bill' => 'Ny nota ":name" sparad', - 'cannot_scan_inactive_bill' => 'Inaktiva räkningar kan inte skannas.', - 'rescanned_bill' => 'Sökte genom allting, och länkade :count transaktioner till räkningen.|Sökte genom allting, och länkade :count transaktioner till räkningen.', - 'average_bill_amount_year' => 'Genomsnittligt notabelopp (:year)', - 'average_bill_amount_overall' => 'Genomsnittligt notabelopp (totalt)', - 'bill_is_active' => 'Notan är aktiv', - 'bill_expected_between' => 'Förväntas mellan :start och :end', - 'bill_will_automatch' => 'Nota länkas automatiskt mot matchande transaktioner', - 'skips_over' => 'hoppas över', - 'bill_store_error' => 'Ett oväntat fel uppstod vid lagring av den nya notan. Vänligen se loggfilerna', - 'list_inactive_rule' => 'inaktiv regel', - 'bill_edit_rules' => 'Firefly III kommer också att försöka redigera regeln relaterad till denna räkning. Om du själv har redigerat denna regel kommer Firefly III inte att ändra någonting.|Firefly III kommer att försöka redigera :count regler som är relaterade till denna räkning. Om du själv har redigerat dessa regler kommer dock Firefly III inte att ändra någonting.', - 'bill_expected_date' => 'Förväntat :date', - 'bill_expected_date_js' => 'Förväntat {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Betalad den {date}', - 'bill_repeats_weekly' => 'Upprepas veckovis', - 'bill_repeats_monthly' => 'Upprepas månadsvis', - 'bill_repeats_quarterly' => 'Upprepas kvartalsvis', - 'bill_repeats_half-year' => 'Uprepas varje halvår', - 'bill_repeats_yearly' => 'Upprepas årsvis', - 'bill_repeats_weekly_other' => 'Upprepas varannan vecka', - 'bill_repeats_monthly_other' => 'Upprepas varannan månad', - 'bill_repeats_quarterly_other' => 'Upprepas varannat kvartal', - 'bill_repeats_half-year_other' => 'Upprepas årsvis', - 'bill_repeats_yearly_other' => 'Upprepas varannat år', - 'bill_repeats_weekly_skip' => 'Upprepas varje {skip} veckor', - 'bill_repeats_monthly_skip' => 'Upprepas varje {skip} månad', - 'bill_repeats_quarterly_skip' => 'Upprepas varje {skip} kvartal', - 'bill_repeats_half-year_skip' => 'Upprepas varje {skip} halvår', - 'bill_repeats_yearly_skip' => 'Upprepas varje {skip} år', - 'subscriptions' => 'Prenumerationer', - 'go_to_subscriptions' => 'Gå till dina prenumerationer', - 'forever' => 'För alltid', - 'extension_date_is' => 'Tillägg datum är {date}', + 'subscription' => 'Prenumeration', + 'not_expected_period' => 'Inte väntat denna period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Inte (ännu)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Nota matchar transaktioner mellan :low och :high.', + 'running_again_loss' => 'Tidigare länkade transaktioner till denna nota kan förlora sin koppling, om de (inte längre) matchar regler(na).', + 'bill_related_rules' => 'Regler relaterade till denna nota', + 'repeats' => 'Återkommande', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Anslutna transaktioner', + 'auto_match_on' => 'Automatiskt matchade av Firefly III', + 'auto_match_off' => 'Inte automatiskt matchad av Firefly III', + 'next_expected_match' => 'Nästa förväntade träff', + 'delete_bill' => 'Ta bort nota ":name"', + 'deleted_bill' => 'Nota ":name" borttagen', + 'edit_bill' => 'Redigera nota ":name"', + 'more' => 'Mer', + 'rescan_old' => 'Kör regler igen, på alla transaktioner', + 'update_bill' => 'Uppdatera nota', + 'updated_bill' => 'Nota ":name" uppdaterad', + 'store_new_bill' => 'Spara ny nota', + 'stored_new_bill' => 'Ny nota ":name" sparad', + 'cannot_scan_inactive_bill' => 'Inaktiva räkningar kan inte skannas.', + 'rescanned_bill' => 'Sökte genom allting, och länkade :count transaktioner till räkningen.|Sökte genom allting, och länkade :count transaktioner till räkningen.', + 'average_bill_amount_year' => 'Genomsnittligt notabelopp (:year)', + 'average_bill_amount_overall' => 'Genomsnittligt notabelopp (totalt)', + 'bill_is_active' => 'Notan är aktiv', + 'bill_expected_between' => 'Förväntas mellan :start och :end', + 'bill_will_automatch' => 'Nota länkas automatiskt mot matchande transaktioner', + 'skips_over' => 'hoppas över', + 'bill_store_error' => 'Ett oväntat fel uppstod vid lagring av den nya notan. Vänligen se loggfilerna', + 'list_inactive_rule' => 'inaktiv regel', + 'bill_edit_rules' => 'Firefly III kommer också att försöka redigera regeln relaterad till denna räkning. Om du själv har redigerat denna regel kommer Firefly III inte att ändra någonting.|Firefly III kommer att försöka redigera :count regler som är relaterade till denna räkning. Om du själv har redigerat dessa regler kommer dock Firefly III inte att ändra någonting.', + 'bill_expected_date' => 'Förväntat :date', + 'bill_expected_date_js' => 'Förväntat {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Betalad den {date}', + 'bill_repeats_weekly' => 'Upprepas veckovis', + 'bill_repeats_monthly' => 'Upprepas månadsvis', + 'bill_repeats_quarterly' => 'Upprepas kvartalsvis', + 'bill_repeats_half-year' => 'Uprepas varje halvår', + 'bill_repeats_yearly' => 'Upprepas årsvis', + 'bill_repeats_weekly_other' => 'Upprepas varannan vecka', + 'bill_repeats_monthly_other' => 'Upprepas varannan månad', + 'bill_repeats_quarterly_other' => 'Upprepas varannat kvartal', + 'bill_repeats_half-year_other' => 'Upprepas årsvis', + 'bill_repeats_yearly_other' => 'Upprepas varannat år', + 'bill_repeats_weekly_skip' => 'Upprepas varje {skip} veckor', + 'bill_repeats_monthly_skip' => 'Upprepas varje {skip} månad', + 'bill_repeats_quarterly_skip' => 'Upprepas varje {skip} kvartal', + 'bill_repeats_half-year_skip' => 'Upprepas varje {skip} halvår', + 'bill_repeats_yearly_skip' => 'Upprepas varje {skip} år', + 'subscriptions' => 'Prenumerationer', + 'go_to_subscriptions' => 'Gå till dina prenumerationer', + 'forever' => 'För alltid', + 'extension_date_is' => 'Tillägg datum är {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Du har :count inaktiva (arkiverat) konto, som du kan se på denna separata sida.|Du har :count inaktiva (arkiverade) konton, som du kan se på denna separata sida.', - 'all_accounts_inactive' => 'Dessa är dina inaktiva konton.', - 'active_account_link' => 'Denna länk går tillbaka till dina aktiva konton.', - 'account_missing_transaction' => 'Konto #:id (":name") kan inte visas direkt, men Firefly saknar information för omdirigering.', - 'cc_monthly_payment_date_help' => 'Välj ett år och en månad, det kommer att ignoreras ändå. Endast dagen i månaden är relevant.', - 'details_for_asset' => 'Detaljer för tillgångskonto ":name"', - 'details_for_expense' => 'Detaljer för utgiftskonto ":name"', - 'details_for_revenue' => 'Detaljer för intäktskonto ":name"', - 'details_for_cash' => 'Detaljer för kontantkonto ":name"', - 'store_new_asset_account' => 'Lagra nytt tillgångskonto', - 'store_new_expense_account' => 'Spara nytt utgiftskonto', - 'store_new_revenue_account' => 'Spara nytt intäktskonto', - 'edit_asset_account' => 'Ändra tillgångskonto ":name"', - 'edit_expense_account' => 'Ändra utgiftskonto ":name"', - 'edit_revenue_account' => 'Ändra intäktskonto ":name"', - 'delete_asset_account' => 'Ta bort tillgångskonto ":name"', - 'delete_expense_account' => 'Ta bort utgiftskonto ":name"', - 'delete_revenue_account' => 'Ta bort intäktskonto ":name"', - 'delete_liabilities_account' => 'Ta bort skuld ":name"', - 'asset_deleted' => 'Tillgångskonto togs bort ":name"', - 'account_deleted' => 'Kontot ":name" togs bort', - 'expense_deleted' => 'Utgiftskonto togs bort ":name"', - 'revenue_deleted' => 'Intäktskonto togs bort ":name"', - 'update_asset_account' => 'Uppdatera tillgångskonto', - 'update_undefined_account' => 'Uppdatera konto', - 'update_liabilities_account' => 'Uppdatera skuld', - 'update_expense_account' => 'Uppdatera utgiftskonto', - 'update_revenue_account' => 'Uppdatera intäktskonto', - 'make_new_asset_account' => 'Skapa ett nytt tillgångskonto', - 'make_new_expense_account' => 'Skapa ett nytt utgiftskonto', - 'make_new_revenue_account' => 'Skapa ett nytt intäktskonto', - 'make_new_liabilities_account' => 'Skapa en ny skuld', - 'asset_accounts' => 'Tillgångskonton', - 'undefined_accounts' => 'Konton', - 'asset_accounts_inactive' => 'Tillgångskonton (inaktiva)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Kostnadskonto', - 'expense_accounts_inactive' => 'Utgiftskonton (inaktiva)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Intäktskonton', - 'revenue_accounts_inactive' => 'Intäktskonton (inaktiv)', - 'cash_accounts' => 'Kontantkonton', - 'Cash account' => 'Kontantkonto', - 'liabilities_accounts' => 'Skulder', - 'liabilities_accounts_inactive' => 'Skulder (inaktiva)', - 'reconcile_account' => 'Sammansätt konto ":account"', - 'overview_of_reconcile_modal' => 'Översikt av sammansättning', - 'delete_reconciliation' => 'Ta bort sammansättning', - 'update_reconciliation' => 'Uppdatera sammansättning', - 'amount_cannot_be_zero' => 'Beloppet kan inte vara noll', - 'end_of_reconcile_period' => 'Slut på avstämningsperiod: :period', - 'start_of_reconcile_period' => 'Start av avstämningsperiod: :period', - 'start_balance' => 'Startsaldo', - 'end_balance' => 'Slutsaldo', - 'update_balance_dates_instruction' => 'Matcha beloppen och datum ovan mot dina bankutdrag, och tryck "Börja avstämning"', - 'select_transactions_instruction' => 'Välj transaktioner som visas på kontoutdrag.', - 'select_range_and_balance' => 'Verifiera först datumintervall och balanser. Tryck sedan på "Börja sammanfoga"', - 'date_change_instruction' => 'Byte av datumområde nu kan framsteg förloras.', - 'update_selection' => 'Uppdatera val', - 'store_reconcile' => 'Lagra avstämning', - 'reconciliation_transaction' => 'Stäm av transaktion', - 'Reconciliation' => 'Avstämning', - 'reconciliation' => 'Avstämning', - 'reconcile_options' => 'Avstämningsval', - 'reconcile_range' => 'Avstämningsområde', - 'start_reconcile' => 'Börja stämma av', - 'cash_account_type' => 'Kontant', - 'cash' => 'kontant', - 'cant_find_redirect_account' => 'Firefly III försökte omdirigera dig men misslyckades. Förlåt, åter till index.', - 'account_type' => 'Kontotyp', - 'save_transactions_by_moving' => 'Spara denna transaktion genom att flytta den till ett annat konto:|Spara dessa transaktioner genom att flytta dem till ett annat konto:', - 'save_transactions_by_moving_js' => 'Inga transaktioner|Spara denna transaktion genom att flytta den till ett annat konto.|Spara dessa transaktioner genom att flytta dem till ett annat konto.', - 'stored_new_account' => 'Nytt konto ":name" lagrat!', - 'stored_new_account_js' => 'Nytt konto "{name}" lagrat!', - 'updated_account' => 'Konto ":name" uppdaterad', - 'updated_account_js' => 'Uppdaterade kontot "{title}".', - 'credit_card_options' => 'Kreditkortalternativ', - 'no_transactions_account' => 'Inga transaktioner (i denna period) för tillgångskonto ":name".', - 'no_transactions_period' => 'Inga transaktioner (i denna period).', - 'no_data_for_chart' => 'Saknas information (fortfarande) för att generera detta diagram.', - 'select_at_least_one_account' => 'Välj minst ett tillgångskonto', - 'select_at_least_one_category' => 'Välj åtminstone en kategori', - 'select_at_least_one_budget' => 'Välj minst en budget', - 'select_at_least_one_tag' => 'Välj åtminstone en etikett', - 'select_at_least_one_expense' => 'Välj åtminstone en kombination av utgift/intäcktskonton. Om dessa saknas (listan är tom) är inte denna rapport tillgänglig.', - 'account_default_currency' => 'Detta är standard valut associerad till detta konto.', - 'reconcile_has_more' => 'Firefly III huvudbok har mer penger än vad din bank påstår det bör vara. Det finns flera alternativ. Vänligen välj vad som ska ske. Tryck sedan "Bekräfta avstämning".', - 'reconcile_has_less' => 'Firefly III huvudbok har mindre penger än vad din bank påstår det bör vara. Det finns flera alternativ. Vänligen välj vad som ska ske. Tryck sedan "Bekräfta avstämning".', - 'reconcile_is_equal' => 'Firefly III huvudbok och kontoutdrag stämmer överens. Det finns inget att göra. Tryck "Bekräfta avstämning" för att bekräfta din inmatning.', - 'create_pos_reconcile_transaction' => 'Rensa de valda transaktionerna och skapa en korrigering som lägger till :amount till detta tillgångskonto.', - 'create_neg_reconcile_transaction' => 'Rensa de valda transaktionerna och skapa en korrigering som tar bort :amount från detta tillgångskonto.', - 'reconcile_do_nothing' => 'Rensa de valda transaktionerna, men korrigera inget.', - 'reconcile_go_back' => 'Det går att ändra eller ta bort en rättelse senare.', - 'must_be_asset_account' => 'Du kan bara stämma av tillgångskonton', - 'reconciliation_stored' => 'Avstämning sparad', - 'reconciliation_error' => 'På grund av ett fel markerades transaktionerna som avstämda men korrigeringen har inte sparats: :error.', - 'reconciliation_transaction_title' => 'Avstämning (:from till :to)', - 'sum_of_reconciliation' => 'Summa av avstämning', - 'reconcile_this_account' => 'Stäm av detta konto', - 'reconcile' => 'Avstämning', - 'show' => 'Visa', - 'confirm_reconciliation' => 'Bekräfta avstämning', - 'submitted_start_balance' => 'Inskickad startbalans', - 'selected_transactions' => 'Valda transaktioner (:count)', - 'already_cleared_transactions' => 'Slutförda transaktioner (:count)', - 'submitted_end_balance' => 'Inskickad slutbalans', - 'initial_balance_description' => 'Startbalans för ":account"', - 'liability_credit_description' => 'Ansvarskredit för ":account"', - 'interest_calc_' => 'okänd', - 'interest_calc_daily' => 'Per dag', - 'interest_calc_monthly' => 'Per månad', - 'interest_calc_yearly' => 'Per år', - 'interest_calc_weekly' => 'Per vecka', - 'interest_calc_half-year' => 'Per halvår', - 'interest_calc_quarterly' => 'Per kvartal', - 'initial_balance_account' => 'Startbalans för konto :account', - 'list_options' => 'Listalternativ', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Du har :count inaktiva (arkiverat) konto, som du kan se på denna separata sida.|Du har :count inaktiva (arkiverade) konton, som du kan se på denna separata sida.', + 'all_accounts_inactive' => 'Dessa är dina inaktiva konton.', + 'active_account_link' => 'Denna länk går tillbaka till dina aktiva konton.', + 'account_missing_transaction' => 'Konto #:id (":name") kan inte visas direkt, men Firefly saknar information för omdirigering.', + 'cc_monthly_payment_date_help' => 'Välj ett år och en månad, det kommer att ignoreras ändå. Endast dagen i månaden är relevant.', + 'details_for_asset' => 'Detaljer för tillgångskonto ":name"', + 'details_for_expense' => 'Detaljer för utgiftskonto ":name"', + 'details_for_revenue' => 'Detaljer för intäktskonto ":name"', + 'details_for_cash' => 'Detaljer för kontantkonto ":name"', + 'store_new_asset_account' => 'Lagra nytt tillgångskonto', + 'store_new_expense_account' => 'Spara nytt utgiftskonto', + 'store_new_revenue_account' => 'Spara nytt intäktskonto', + 'edit_asset_account' => 'Ändra tillgångskonto ":name"', + 'edit_expense_account' => 'Ändra utgiftskonto ":name"', + 'edit_revenue_account' => 'Ändra intäktskonto ":name"', + 'delete_asset_account' => 'Ta bort tillgångskonto ":name"', + 'delete_expense_account' => 'Ta bort utgiftskonto ":name"', + 'delete_revenue_account' => 'Ta bort intäktskonto ":name"', + 'delete_liabilities_account' => 'Ta bort skuld ":name"', + 'asset_deleted' => 'Tillgångskonto togs bort ":name"', + 'account_deleted' => 'Kontot ":name" togs bort', + 'expense_deleted' => 'Utgiftskonto togs bort ":name"', + 'revenue_deleted' => 'Intäktskonto togs bort ":name"', + 'update_asset_account' => 'Uppdatera tillgångskonto', + 'update_undefined_account' => 'Uppdatera konto', + 'update_liabilities_account' => 'Uppdatera skuld', + 'update_expense_account' => 'Uppdatera utgiftskonto', + 'update_revenue_account' => 'Uppdatera intäktskonto', + 'make_new_asset_account' => 'Skapa ett nytt tillgångskonto', + 'make_new_expense_account' => 'Skapa ett nytt utgiftskonto', + 'make_new_revenue_account' => 'Skapa ett nytt intäktskonto', + 'make_new_liabilities_account' => 'Skapa en ny skuld', + 'asset_accounts' => 'Tillgångskonton', + 'undefined_accounts' => 'Konton', + 'asset_accounts_inactive' => 'Tillgångskonton (inaktiva)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Kostnadskonto', + 'expense_accounts_inactive' => 'Utgiftskonton (inaktiva)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Intäktskonton', + 'revenue_accounts_inactive' => 'Intäktskonton (inaktiv)', + 'cash_accounts' => 'Kontantkonton', + 'Cash account' => 'Kontantkonto', + 'liabilities_accounts' => 'Skulder', + 'liabilities_accounts_inactive' => 'Skulder (inaktiva)', + 'reconcile_account' => 'Sammansätt konto ":account"', + 'overview_of_reconcile_modal' => 'Översikt av sammansättning', + 'delete_reconciliation' => 'Ta bort sammansättning', + 'update_reconciliation' => 'Uppdatera sammansättning', + 'amount_cannot_be_zero' => 'Beloppet kan inte vara noll', + 'end_of_reconcile_period' => 'Slut på avstämningsperiod: :period', + 'start_of_reconcile_period' => 'Start av avstämningsperiod: :period', + 'start_balance' => 'Startsaldo', + 'end_balance' => 'Slutsaldo', + 'update_balance_dates_instruction' => 'Matcha beloppen och datum ovan mot dina bankutdrag, och tryck "Börja avstämning"', + 'select_transactions_instruction' => 'Välj transaktioner som visas på kontoutdrag.', + 'select_range_and_balance' => 'Verifiera först datumintervall och balanser. Tryck sedan på "Börja sammanfoga"', + 'date_change_instruction' => 'Byte av datumområde nu kan framsteg förloras.', + 'update_selection' => 'Uppdatera val', + 'store_reconcile' => 'Lagra avstämning', + 'reconciliation_transaction' => 'Stäm av transaktion', + 'Reconciliation' => 'Avstämning', + 'reconciliation' => 'Avstämning', + 'reconcile_options' => 'Avstämningsval', + 'reconcile_range' => 'Avstämningsområde', + 'start_reconcile' => 'Börja stämma av', + 'cash_account_type' => 'Kontant', + 'cash' => 'kontant', + 'cant_find_redirect_account' => 'Firefly III försökte omdirigera dig men misslyckades. Förlåt, åter till index.', + 'account_type' => 'Kontotyp', + 'save_transactions_by_moving' => 'Spara denna transaktion genom att flytta den till ett annat konto:|Spara dessa transaktioner genom att flytta dem till ett annat konto:', + 'save_transactions_by_moving_js' => 'Inga transaktioner|Spara denna transaktion genom att flytta den till ett annat konto.|Spara dessa transaktioner genom att flytta dem till ett annat konto.', + 'stored_new_account' => 'Nytt konto ":name" lagrat!', + 'stored_new_account_js' => 'Nytt konto "{name}" lagrat!', + 'updated_account' => 'Konto ":name" uppdaterad', + 'updated_account_js' => 'Uppdaterade kontot "{title}".', + 'credit_card_options' => 'Kreditkortalternativ', + 'no_transactions_account' => 'Inga transaktioner (i denna period) för tillgångskonto ":name".', + 'no_transactions_period' => 'Inga transaktioner (i denna period).', + 'no_data_for_chart' => 'Saknas information (fortfarande) för att generera detta diagram.', + 'select_at_least_one_account' => 'Välj minst ett tillgångskonto', + 'select_at_least_one_category' => 'Välj åtminstone en kategori', + 'select_at_least_one_budget' => 'Välj minst en budget', + 'select_at_least_one_tag' => 'Välj åtminstone en etikett', + 'select_at_least_one_expense' => 'Välj åtminstone en kombination av utgift/intäcktskonton. Om dessa saknas (listan är tom) är inte denna rapport tillgänglig.', + 'account_default_currency' => 'Detta är standard valut associerad till detta konto.', + 'reconcile_has_more' => 'Firefly III huvudbok har mer penger än vad din bank påstår det bör vara. Det finns flera alternativ. Vänligen välj vad som ska ske. Tryck sedan "Bekräfta avstämning".', + 'reconcile_has_less' => 'Firefly III huvudbok har mindre penger än vad din bank påstår det bör vara. Det finns flera alternativ. Vänligen välj vad som ska ske. Tryck sedan "Bekräfta avstämning".', + 'reconcile_is_equal' => 'Firefly III huvudbok och kontoutdrag stämmer överens. Det finns inget att göra. Tryck "Bekräfta avstämning" för att bekräfta din inmatning.', + 'create_pos_reconcile_transaction' => 'Rensa de valda transaktionerna och skapa en korrigering som lägger till :amount till detta tillgångskonto.', + 'create_neg_reconcile_transaction' => 'Rensa de valda transaktionerna och skapa en korrigering som tar bort :amount från detta tillgångskonto.', + 'reconcile_do_nothing' => 'Rensa de valda transaktionerna, men korrigera inget.', + 'reconcile_go_back' => 'Det går att ändra eller ta bort en rättelse senare.', + 'must_be_asset_account' => 'Du kan bara stämma av tillgångskonton', + 'reconciliation_stored' => 'Avstämning sparad', + 'reconciliation_error' => 'På grund av ett fel markerades transaktionerna som avstämda men korrigeringen har inte sparats: :error.', + 'reconciliation_transaction_title' => 'Avstämning (:from till :to)', + 'sum_of_reconciliation' => 'Summa av avstämning', + 'reconcile_this_account' => 'Stäm av detta konto', + 'reconcile' => 'Avstämning', + 'show' => 'Visa', + 'confirm_reconciliation' => 'Bekräfta avstämning', + 'submitted_start_balance' => 'Inskickad startbalans', + 'selected_transactions' => 'Valda transaktioner (:count)', + 'already_cleared_transactions' => 'Slutförda transaktioner (:count)', + 'submitted_end_balance' => 'Inskickad slutbalans', + 'initial_balance_description' => 'Startbalans för ":account"', + 'liability_credit_description' => 'Ansvarskredit för ":account"', + 'interest_calc_' => 'okänd', + 'interest_calc_daily' => 'Per dag', + 'interest_calc_monthly' => 'Per månad', + 'interest_calc_yearly' => 'Per år', + 'interest_calc_weekly' => 'Per vecka', + 'interest_calc_half-year' => 'Per halvår', + 'interest_calc_quarterly' => 'Per kvartal', + 'initial_balance_account' => 'Startbalans för konto :account', + 'list_options' => 'Listalternativ', // categories: - 'new_category' => 'Ny kategori', - 'create_new_category' => 'Skapa en ny kategori', - 'without_category' => 'Kategori saknas', - 'update_category' => 'Uppdatera kategori', - 'updated_category' => 'Kategori ":name" uppdaterad', - 'categories' => 'Kategorier', - 'edit_category' => 'Redigera kategori ":name"', - 'no_category' => '(utan kategori)', - 'unknown_category_plain' => 'Ingen kategori', - 'category' => 'Kategori', - 'delete_category' => 'Ta bort kategori ":name"', - 'deleted_category' => 'Kategori ":name" togs bort', - 'store_category' => 'Lagra ny kategori', - 'stored_category' => 'Ny kategori ":name" lagrades', - 'without_category_between' => 'Utan kategori mellan :start och :end', + 'new_category' => 'Ny kategori', + 'create_new_category' => 'Skapa en ny kategori', + 'without_category' => 'Kategori saknas', + 'update_category' => 'Uppdatera kategori', + 'updated_category' => 'Kategori ":name" uppdaterad', + 'categories' => 'Kategorier', + 'edit_category' => 'Redigera kategori ":name"', + 'no_category' => '(utan kategori)', + 'unknown_category_plain' => 'Ingen kategori', + 'category' => 'Kategori', + 'delete_category' => 'Ta bort kategori ":name"', + 'deleted_category' => 'Kategori ":name" togs bort', + 'store_category' => 'Lagra ny kategori', + 'stored_category' => 'Ny kategori ":name" lagrades', + 'without_category_between' => 'Utan kategori mellan :start och :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,241 +1991,241 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Uppdatera uttag', - 'update_deposit' => 'Uppdatera insättning', - 'update_transaction' => 'Uppdatera transaktion', - 'update_transfer' => 'Uppdatera överföring', - 'updated_withdrawal' => 'Uppdatera uttag ":description"', - 'updated_deposit' => 'Uppdatera insättning ":description"', - 'updated_transfer' => 'Uppdatera överföring ":description"', - 'no_changes_withdrawal' => 'Uttag ":description" har inte ändrats.', - 'no_changes_deposit' => 'Insättning ":description" har inte ändrats.', - 'no_changes_transfer' => 'Överföring ":description" har inte ändrats.', - 'delete_withdrawal' => 'Ta bort uttag ":description"', - 'delete_deposit' => 'Ta bort insättning ":description"', - 'delete_transfer' => 'Ta bort överföring ":description"', - 'deleted_withdrawal' => 'Uttag ":description" har tagits bort', - 'deleted_deposit' => 'Insättning ":description" har tagits bort', - 'deleted_transfer' => 'Överföring ":description" har tagits bort', - 'deleted_reconciliation' => 'Avstämningstransaktionen ":description" togs bort lyckat', - 'stored_journal' => 'Skapade ny transaktion ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Ny transaktion skapades lyckat', - 'updated_journal_no_descr' => 'Transaktion har uppdaterats', - 'select_transactions' => 'Välj transaktioner', - 'rule_group_select_transactions' => 'Tillämpa ":title" till transaktioner', - 'rule_select_transactions' => 'Tillämpa ":title" till transaktioner', - 'stop_selection' => 'Sluta välja transaktioner', - 'reconcile_selected' => 'Avstämning', - 'mass_delete_journals' => 'Ta bort ett antal transaktioner', - 'mass_edit_journals' => 'Ändra ett antal transaktioner', - 'mass_bulk_journals' => 'Ändra flera transaktioner', - 'mass_bulk_journals_explain' => 'Detta formulär tillåter dig att ändra egenskaperna på transaktionerna listade nedan i ett enda svep. Alla transaktioner i tabellen uppdateras när du ändrar parametrarna du ser här.', - 'part_of_split' => 'Denna transaktion är del av en delad transaktion. Om du inte har valt alla delarna, kan det bli att du bara ändrar halva transaktionen.', - 'bulk_set_new_values' => 'Använd valen nedan för att sätta nya värden. Om de lämnas tomma, blir de tomma för alla. Notera också att endast uttag kommer att ges en budget.', - 'no_bulk_category' => 'Uppdatera inte kategori', - 'no_bulk_budget' => 'Uppdatera inte budget', - 'no_bulk_tags' => 'Uppdatera inte etikett(er)', - 'replace_with_these_tags' => 'Ersätt med dessa taggar', - 'append_these_tags' => 'Lägg till dessa taggar', - 'mass_edit' => 'Ändra valda individuellt', - 'bulk_edit' => 'Massredigera valda', - 'mass_delete' => 'Ta bort valda', - 'cannot_edit_other_fields' => 'Går ej att massredigera andra fält än dessa, eftersom det inte finns utrymme att visa andra. Vänligen följ länken och redigera dem en efter en om andra fält behöver redigeras.', - 'cannot_change_amount_reconciled' => 'Du kan inte ändra beloppet för avstämda transaktioner.', - 'no_budget' => '(ingen budget)', - 'no_bill' => '(ingen räkning)', - 'account_per_budget' => 'Konto per budget', - 'account_per_category' => 'Konto per etikett', - 'create_new_object' => 'Skapa', - 'empty' => '(tom)', - 'all_other_budgets' => '(övriga budgetar)', - 'all_other_accounts' => '(alla övriga konton)', - 'expense_per_source_account' => 'Utgifter per källkonto', - 'expense_per_destination_account' => 'Utgifter per målkonto', - 'income_per_destination_account' => 'Inkomst per målkonto', - 'spent_in_specific_category' => 'Spenderat i kategori ":category"', - 'earned_in_specific_category' => 'Intjänat i kategori ":category"', - 'spent_in_specific_tag' => 'Spenderat i etikett ":tag"', - 'earned_in_specific_tag' => 'Tjänat i etikett ":tag"', - 'income_per_source_account' => 'Inkomst per källkonto', - 'average_spending_per_destination' => 'Medel kostnad per målkonto', - 'average_spending_per_source' => 'Medel kostnad per källkonto', - 'average_earning_per_source' => 'Medel intjäning per källkonto', - 'average_earning_per_destination' => 'Medel intjäning per målkonto', - 'account_per_tag' => 'Konton per etikett', - 'tag_report_expenses_listed_once' => 'Utgifter och inkomster visas aldrig dubbelt. Om en transaktioner har flera etiketter, visas den bara under en av dessa. Detta diagram kan tyckas sakna data, men summan kommer att stämma.', - 'double_report_expenses_charted_once' => 'Utgifter och inkomster visas aldrig dubbelt. Om en transaktioner har flera etiketter, visas den bara under en av dessa. Detta diagram kan tyckas sakna data, men summan kommer att stämma.', - 'tag_report_chart_single_tag' => 'Detta diagram tillämpas bara för en etikett. Om en transaktion har flera etiketter, det som visas i diagrammen kan komma från andra etiketter också.', - 'tag' => 'Etikett', - 'no_budget_squared' => '(ingen budget)', - 'perm-delete-many' => 'Att ta bort så mycket på en gång kan vara problematiskt. Var försiktig. Du kan ta bort delar av en delad transaktion från denna sida, så var försiktig.', - 'mass_deleted_transactions_success' => 'Borttagna :count transaktion.|Borttagna :count transaktioner.', - 'mass_edited_transactions_success' => 'Uppdaterade :count transaktion.|Uppdaterade :count transaktioner.', - 'opt_group_' => '(saknar kontotyp)', - 'opt_group_no_account_type' => '(saknar kontotyp)', - 'opt_group_defaultAsset' => 'Förvalt tillgångskonton', - 'opt_group_savingAsset' => 'Sparkonton', - 'opt_group_sharedAsset' => 'Delade tillgångskonton', - 'opt_group_ccAsset' => 'Kreditkort', - 'opt_group_cashWalletAsset' => 'Plånböcker', - 'opt_group_expense_account' => 'Kostnadskonton', - 'opt_group_revenue_account' => 'Intäktskonton', - 'opt_group_l_Loan' => 'Skuld: Lån', - 'opt_group_cash_account' => 'Kontantkonto', - 'opt_group_l_Debt' => 'Skuld: Skuld', - 'opt_group_l_Mortgage' => 'Skuld: Bolån', - 'opt_group_l_Credit card' => 'Skuld: Kreditkort', - 'notes' => 'Noteringar', - 'unknown_journal_error' => 'Transaktion kunde inte lagras. Vänligen se loggfiler.', - 'attachment_not_found' => 'Denna bilaga kunde inte hittas.', - 'journal_link_bill' => 'Transaktion länkad till nota :name. För att ta bort koppling, avmarkera kryssrutan. Använd regler för att koppla den till en annan nota.', - 'transaction_stored_link' => 'Transaktion #{ID} ("{title}") sparades.', - 'transaction_new_stored_link' => 'Transaktion #{ID} sparades.', - 'transaction_updated_link' => 'Transaktion #{ID} ("{title}") uppdaterades.', - 'transaction_updated_no_changes' => 'Transaktion #{ID} ("{title}") fick inga ändringar.', - 'first_split_decides' => 'Första delningen bestämmer värdet på detta fält', - 'first_split_overrules_source' => 'Den första delningen kan åsidosätta källkontot', - 'first_split_overrules_destination' => 'Den första delningen kan åsidosätta målkontot', - 'spent_x_of_y' => 'Spenderade {amount} av {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Uppdatera uttag', + 'update_deposit' => 'Uppdatera insättning', + 'update_transaction' => 'Uppdatera transaktion', + 'update_transfer' => 'Uppdatera överföring', + 'updated_withdrawal' => 'Uppdatera uttag ":description"', + 'updated_deposit' => 'Uppdatera insättning ":description"', + 'updated_transfer' => 'Uppdatera överföring ":description"', + 'no_changes_withdrawal' => 'Uttag ":description" har inte ändrats.', + 'no_changes_deposit' => 'Insättning ":description" har inte ändrats.', + 'no_changes_transfer' => 'Överföring ":description" har inte ändrats.', + 'delete_withdrawal' => 'Ta bort uttag ":description"', + 'delete_deposit' => 'Ta bort insättning ":description"', + 'delete_transfer' => 'Ta bort överföring ":description"', + 'deleted_withdrawal' => 'Uttag ":description" har tagits bort', + 'deleted_deposit' => 'Insättning ":description" har tagits bort', + 'deleted_transfer' => 'Överföring ":description" har tagits bort', + 'deleted_reconciliation' => 'Avstämningstransaktionen ":description" togs bort lyckat', + 'stored_journal' => 'Skapade ny transaktion ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Ny transaktion skapades lyckat', + 'updated_journal_no_descr' => 'Transaktion har uppdaterats', + 'select_transactions' => 'Välj transaktioner', + 'rule_group_select_transactions' => 'Tillämpa ":title" till transaktioner', + 'rule_select_transactions' => 'Tillämpa ":title" till transaktioner', + 'stop_selection' => 'Sluta välja transaktioner', + 'reconcile_selected' => 'Avstämning', + 'mass_delete_journals' => 'Ta bort ett antal transaktioner', + 'mass_edit_journals' => 'Ändra ett antal transaktioner', + 'mass_bulk_journals' => 'Ändra flera transaktioner', + 'mass_bulk_journals_explain' => 'Detta formulär tillåter dig att ändra egenskaperna på transaktionerna listade nedan i ett enda svep. Alla transaktioner i tabellen uppdateras när du ändrar parametrarna du ser här.', + 'part_of_split' => 'Denna transaktion är del av en delad transaktion. Om du inte har valt alla delarna, kan det bli att du bara ändrar halva transaktionen.', + 'bulk_set_new_values' => 'Använd valen nedan för att sätta nya värden. Om de lämnas tomma, blir de tomma för alla. Notera också att endast uttag kommer att ges en budget.', + 'no_bulk_category' => 'Uppdatera inte kategori', + 'no_bulk_budget' => 'Uppdatera inte budget', + 'no_bulk_tags' => 'Uppdatera inte etikett(er)', + 'replace_with_these_tags' => 'Ersätt med dessa taggar', + 'append_these_tags' => 'Lägg till dessa taggar', + 'mass_edit' => 'Ändra valda individuellt', + 'bulk_edit' => 'Massredigera valda', + 'mass_delete' => 'Ta bort valda', + 'cannot_edit_other_fields' => 'Går ej att massredigera andra fält än dessa, eftersom det inte finns utrymme att visa andra. Vänligen följ länken och redigera dem en efter en om andra fält behöver redigeras.', + 'cannot_change_amount_reconciled' => 'Du kan inte ändra beloppet för avstämda transaktioner.', + 'no_budget' => '(ingen budget)', + 'no_bill' => '(ingen räkning)', + 'account_per_budget' => 'Konto per budget', + 'account_per_category' => 'Konto per etikett', + 'create_new_object' => 'Skapa', + 'empty' => '(tom)', + 'all_other_budgets' => '(övriga budgetar)', + 'all_other_accounts' => '(alla övriga konton)', + 'expense_per_source_account' => 'Utgifter per källkonto', + 'expense_per_destination_account' => 'Utgifter per målkonto', + 'income_per_destination_account' => 'Inkomst per målkonto', + 'spent_in_specific_category' => 'Spenderat i kategori ":category"', + 'earned_in_specific_category' => 'Intjänat i kategori ":category"', + 'spent_in_specific_tag' => 'Spenderat i etikett ":tag"', + 'earned_in_specific_tag' => 'Tjänat i etikett ":tag"', + 'income_per_source_account' => 'Inkomst per källkonto', + 'average_spending_per_destination' => 'Medel kostnad per målkonto', + 'average_spending_per_source' => 'Medel kostnad per källkonto', + 'average_earning_per_source' => 'Medel intjäning per källkonto', + 'average_earning_per_destination' => 'Medel intjäning per målkonto', + 'account_per_tag' => 'Konton per etikett', + 'tag_report_expenses_listed_once' => 'Utgifter och inkomster visas aldrig dubbelt. Om en transaktioner har flera etiketter, visas den bara under en av dessa. Detta diagram kan tyckas sakna data, men summan kommer att stämma.', + 'double_report_expenses_charted_once' => 'Utgifter och inkomster visas aldrig dubbelt. Om en transaktioner har flera etiketter, visas den bara under en av dessa. Detta diagram kan tyckas sakna data, men summan kommer att stämma.', + 'tag_report_chart_single_tag' => 'Detta diagram tillämpas bara för en etikett. Om en transaktion har flera etiketter, det som visas i diagrammen kan komma från andra etiketter också.', + 'tag' => 'Etikett', + 'no_budget_squared' => '(ingen budget)', + 'perm-delete-many' => 'Att ta bort så mycket på en gång kan vara problematiskt. Var försiktig. Du kan ta bort delar av en delad transaktion från denna sida, så var försiktig.', + 'mass_deleted_transactions_success' => 'Borttagna :count transaktion.|Borttagna :count transaktioner.', + 'mass_edited_transactions_success' => 'Uppdaterade :count transaktion.|Uppdaterade :count transaktioner.', + 'opt_group_' => '(saknar kontotyp)', + 'opt_group_no_account_type' => '(saknar kontotyp)', + 'opt_group_defaultAsset' => 'Förvalt tillgångskonton', + 'opt_group_savingAsset' => 'Sparkonton', + 'opt_group_sharedAsset' => 'Delade tillgångskonton', + 'opt_group_ccAsset' => 'Kreditkort', + 'opt_group_cashWalletAsset' => 'Plånböcker', + 'opt_group_expense_account' => 'Kostnadskonton', + 'opt_group_revenue_account' => 'Intäktskonton', + 'opt_group_l_Loan' => 'Skuld: Lån', + 'opt_group_cash_account' => 'Kontantkonto', + 'opt_group_l_Debt' => 'Skuld: Skuld', + 'opt_group_l_Mortgage' => 'Skuld: Bolån', + 'opt_group_l_Credit card' => 'Skuld: Kreditkort', + 'notes' => 'Noteringar', + 'unknown_journal_error' => 'Transaktion kunde inte lagras. Vänligen se loggfiler.', + 'attachment_not_found' => 'Denna bilaga kunde inte hittas.', + 'journal_link_bill' => 'Transaktion länkad till nota :name. För att ta bort koppling, avmarkera kryssrutan. Använd regler för att koppla den till en annan nota.', + 'transaction_stored_link' => 'Transaktion #{ID} ("{title}") sparades.', + 'transaction_new_stored_link' => 'Transaktion #{ID} sparades.', + 'transaction_updated_link' => 'Transaktion #{ID} ("{title}") uppdaterades.', + 'transaction_updated_no_changes' => 'Transaktion #{ID} ("{title}") fick inga ändringar.', + 'first_split_decides' => 'Första delningen bestämmer värdet på detta fält', + 'first_split_overrules_source' => 'Den första delningen kan åsidosätta källkontot', + 'first_split_overrules_destination' => 'Den första delningen kan åsidosätta målkontot', + 'spent_x_of_y' => 'Spenderade {amount} av {total}', // new user: - 'welcome' => 'Välkommen till Firefly III!', - 'submit' => 'Skicka', - 'submission' => 'Inskickning', - 'submit_yes_really' => 'Skicka (Jag vet vad jag gör)', - 'getting_started' => 'Komma igång', - 'to_get_started' => 'Det är bra att se att du har lyckats installera Firefly III. För att komma igång med detta verktyg vänligen ange din banks namn och saldot på ditt huvudkonto. Oroa dig in om du har flera konton. Dessa går att lägga till senare. Firefly III behöver något att börja med.', - 'savings_balance_text' => 'Firefly III skapar automatiskt sparkonto åt dig. Som standard finns det inga pengar i dina sparkonton, men om du berättar för Firefly III om balansen så lagras detta.', - 'finish_up_new_user' => 'Det var allt! Du kan fortsätta genom att klicka på Skicka. Du kommer då till startsidan för Firefly III.', - 'stored_new_accounts_new_user' => 'Jippie! Dina nya konton har lagrats.', - 'set_preferred_language' => 'Om du föredrar att använda Firefly III i annat språk, välj sådant här.', - 'language' => 'Språk', - 'new_savings_account' => ':bank_name sparkonto', - 'cash_wallet' => 'Plånbok', - 'currency_not_present' => 'Om valutan du normalt använder inte finns med, oroa dig inte. Du kan skapa nya valutor under Alternativ > Valutor.', + 'welcome' => 'Välkommen till Firefly III!', + 'submit' => 'Skicka', + 'submission' => 'Inskickning', + 'submit_yes_really' => 'Skicka (Jag vet vad jag gör)', + 'getting_started' => 'Komma igång', + 'to_get_started' => 'Det är bra att se att du har lyckats installera Firefly III. För att komma igång med detta verktyg vänligen ange din banks namn och saldot på ditt huvudkonto. Oroa dig in om du har flera konton. Dessa går att lägga till senare. Firefly III behöver något att börja med.', + 'savings_balance_text' => 'Firefly III skapar automatiskt sparkonto åt dig. Som standard finns det inga pengar i dina sparkonton, men om du berättar för Firefly III om balansen så lagras detta.', + 'finish_up_new_user' => 'Det var allt! Du kan fortsätta genom att klicka på Skicka. Du kommer då till startsidan för Firefly III.', + 'stored_new_accounts_new_user' => 'Jippie! Dina nya konton har lagrats.', + 'set_preferred_language' => 'Om du föredrar att använda Firefly III i annat språk, välj sådant här.', + 'language' => 'Språk', + 'new_savings_account' => ':bank_name sparkonto', + 'cash_wallet' => 'Plånbok', + 'currency_not_present' => 'Om valutan du normalt använder inte finns med, oroa dig inte. Du kan skapa nya valutor under Alternativ > Valutor.', // home page: - 'transaction_table_description' => 'En tabell som innehåller dina transaktioner', - 'opposing_account' => 'Motsatt konto', - 'yourAccounts' => 'Dina konton', - 'your_accounts' => 'Din kontoöversikt', - 'category_overview' => 'Kategori översikt', - 'expense_overview' => 'Översikt kostnadskonto', - 'revenue_overview' => 'Översikt intäktskonto', - 'budgetsAndSpending' => 'Budgetar och utgifter', - 'budgets_and_spending' => 'Budgetar och utgifter', - 'go_to_budget' => 'Gå till budget "{budget}"', - 'go_to_deposits' => 'Gå till insättningar', - 'go_to_expenses' => 'Gå till utgifter', - 'savings' => 'Sparande', - 'newWithdrawal' => 'Ny utgift', - 'newDeposit' => 'Ny insättning', - 'newTransfer' => 'Ny överföring', - 'bills_to_pay' => 'Räkningar + 'transaction_table_description' => 'En tabell som innehåller dina transaktioner', + 'opposing_account' => 'Motsatt konto', + 'yourAccounts' => 'Dina konton', + 'your_accounts' => 'Din kontoöversikt', + 'category_overview' => 'Kategori översikt', + 'expense_overview' => 'Översikt kostnadskonto', + 'revenue_overview' => 'Översikt intäktskonto', + 'budgetsAndSpending' => 'Budgetar och utgifter', + 'budgets_and_spending' => 'Budgetar och utgifter', + 'go_to_budget' => 'Gå till budget "{budget}"', + 'go_to_deposits' => 'Gå till insättningar', + 'go_to_expenses' => 'Gå till utgifter', + 'savings' => 'Sparande', + 'newWithdrawal' => 'Ny utgift', + 'newDeposit' => 'Ny insättning', + 'newTransfer' => 'Ny överföring', + 'bills_to_pay' => 'Räkningar att betala', - 'per_day' => 'Per dag', - 'left_to_spend_per_day' => 'Kvar att spendera per dag', - 'bills_paid' => 'Räkningar betalda', - 'custom_period' => 'Anpassad period', - 'reset_to_current' => 'Återställ till nuvarande period', - 'select_period' => 'Välj en period', + 'per_day' => 'Per dag', + 'left_to_spend_per_day' => 'Kvar att spendera per dag', + 'bills_paid' => 'Räkningar betalda', + 'custom_period' => 'Anpassad period', + 'reset_to_current' => 'Återställ till nuvarande period', + 'select_period' => 'Välj en period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Valuta', - 'preferences' => 'Inställningar', - 'logout' => 'Logga ut', - 'logout_other_sessions' => 'Logga ut alla andra sessioner', - 'toggleNavigation' => 'Växla navigering', - 'searchPlaceholder' => 'Sök...', - 'version' => 'Version', - 'dashboard' => 'Kontrollpanel', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Tillgänglig budget ({currency})', - 'currencies' => 'Valutor', - 'activity' => 'Aktivitet', - 'usage' => 'Användning', - 'accounts' => 'Konton', - 'Asset account' => 'Tillgångskonto', - 'Default account' => 'Tillgångskonto', - 'Expense account' => 'Kostnadskonto', - 'Revenue account' => 'Intäktskonton', - 'Initial balance account' => 'Startbalans konto', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Skuld', - 'account_type_Loan' => 'Lån', - 'account_type_Mortgage' => 'Bolån', - 'account_type_debt' => 'Skuld', - 'account_type_loan' => 'Lån', - 'account_type_mortgage' => 'Bolån', - 'account_type_Credit card' => 'Kreditkort', - 'credit_card_type_monthlyFull' => 'Full betalning varje månad', - 'liability_direction_credit' => 'Någon skyller mig denna skuld', - 'liability_direction_debit' => 'Jag är skyldig någon annan denna skuld', - 'liability_direction_credit_short' => 'Ägde denna skuld', - 'liability_direction_debit_short' => 'Äger denna skuld', - 'liability_direction__short' => 'Okänd', - 'liability_direction_null_short' => 'Okänd', - 'Liability credit' => 'Ansvar kredit', - 'budgets' => 'Budgetar', - 'tags' => 'Etiketter', - 'reports' => 'Rapporter', - 'transactions' => 'Transaktioner', - 'expenses' => 'Utgifter', - 'income' => 'Intäkter / inkomster', - 'transfers' => 'Överföringar', - 'moneyManagement' => 'Penninghantering', - 'money_management' => 'Penninghantering', - 'tools' => 'Verktyg', - 'piggyBanks' => 'Spargrisar', - 'piggy_banks' => 'Spargrisar', - 'amount_x_of_y' => '{current} av {total}', - 'bills' => 'Räkningar', - 'withdrawal' => 'Uttag', - 'opening_balance' => 'Ingående balans', - 'deposit' => 'Insättning', - 'account' => 'Konto', - 'transfer' => 'Överföring', - 'Withdrawal' => 'Uttag', - 'Deposit' => 'Insättning', - 'Transfer' => 'Överföring', - 'bill' => 'Nota', - 'yes' => 'Ja', - 'no' => 'Nej', - 'amount' => 'Belopp', - 'overview' => 'Översikt', - 'saveOnAccount' => 'Spara till konto', - 'unknown' => 'Okänd', - 'monthly' => 'Månatlig', - 'profile' => 'Profil', - 'errors' => 'Fel', - 'debt_start_date' => 'Skuldens startdatum', - 'debt_start_amount' => 'Skuldens startsumma', - 'debt_start_amount_help' => 'Det är alltid bäst att ställa in detta värde till ett negativt belopp. Läs hjälpsidorna (högst upp till höger (?)-ikonen) för mer information.', - 'interest_period_help' => 'Detta fält är rent kosmetiskt och kommer inte att beräknas för dig. Det har visat sig att banker är mycket lömska så Firefly III får det aldrig rätt.', - 'store_new_liabilities_account' => 'Spara en ny skuld', - 'edit_liabilities_account' => 'Ändra skuld ":name"', - 'financial_control' => 'Finansiell kontroll', - 'accounting' => 'Redovisning', - 'automation' => 'Automatisering', - 'others' => 'Andra', - 'classification' => 'Klassificering', - 'store_transaction' => 'Lagra transaktion', + 'currency' => 'Valuta', + 'preferences' => 'Inställningar', + 'logout' => 'Logga ut', + 'logout_other_sessions' => 'Logga ut alla andra sessioner', + 'toggleNavigation' => 'Växla navigering', + 'searchPlaceholder' => 'Sök...', + 'version' => 'Version', + 'dashboard' => 'Kontrollpanel', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Tillgänglig budget ({currency})', + 'currencies' => 'Valutor', + 'activity' => 'Aktivitet', + 'usage' => 'Användning', + 'accounts' => 'Konton', + 'Asset account' => 'Tillgångskonto', + 'Default account' => 'Tillgångskonto', + 'Expense account' => 'Kostnadskonto', + 'Revenue account' => 'Intäktskonton', + 'Initial balance account' => 'Startbalans konto', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Skuld', + 'account_type_Loan' => 'Lån', + 'account_type_Mortgage' => 'Bolån', + 'account_type_debt' => 'Skuld', + 'account_type_loan' => 'Lån', + 'account_type_mortgage' => 'Bolån', + 'account_type_Credit card' => 'Kreditkort', + 'credit_card_type_monthlyFull' => 'Full betalning varje månad', + 'liability_direction_credit' => 'Någon skyller mig denna skuld', + 'liability_direction_debit' => 'Jag är skyldig någon annan denna skuld', + 'liability_direction_credit_short' => 'Ägde denna skuld', + 'liability_direction_debit_short' => 'Äger denna skuld', + 'liability_direction__short' => 'Okänd', + 'liability_direction_null_short' => 'Okänd', + 'Liability credit' => 'Ansvar kredit', + 'budgets' => 'Budgetar', + 'tags' => 'Etiketter', + 'reports' => 'Rapporter', + 'transactions' => 'Transaktioner', + 'expenses' => 'Utgifter', + 'income' => 'Intäkter / inkomster', + 'transfers' => 'Överföringar', + 'moneyManagement' => 'Penninghantering', + 'money_management' => 'Penninghantering', + 'tools' => 'Verktyg', + 'piggyBanks' => 'Spargrisar', + 'piggy_banks' => 'Spargrisar', + 'amount_x_of_y' => '{current} av {total}', + 'bills' => 'Räkningar', + 'withdrawal' => 'Uttag', + 'opening_balance' => 'Ingående balans', + 'deposit' => 'Insättning', + 'account' => 'Konto', + 'transfer' => 'Överföring', + 'Withdrawal' => 'Uttag', + 'Deposit' => 'Insättning', + 'Transfer' => 'Överföring', + 'bill' => 'Nota', + 'yes' => 'Ja', + 'no' => 'Nej', + 'amount' => 'Belopp', + 'overview' => 'Översikt', + 'saveOnAccount' => 'Spara till konto', + 'unknown' => 'Okänd', + 'monthly' => 'Månatlig', + 'profile' => 'Profil', + 'errors' => 'Fel', + 'debt_start_date' => 'Skuldens startdatum', + 'debt_start_amount' => 'Skuldens startsumma', + 'debt_start_amount_help' => 'Det är alltid bäst att ställa in detta värde till ett negativt belopp. Läs hjälpsidorna (högst upp till höger (?)-ikonen) för mer information.', + 'interest_period_help' => 'Detta fält är rent kosmetiskt och kommer inte att beräknas för dig. Det har visat sig att banker är mycket lömska så Firefly III får det aldrig rätt.', + 'store_new_liabilities_account' => 'Spara en ny skuld', + 'edit_liabilities_account' => 'Ändra skuld ":name"', + 'financial_control' => 'Finansiell kontroll', + 'accounting' => 'Redovisning', + 'automation' => 'Automatisering', + 'others' => 'Andra', + 'classification' => 'Klassificering', + 'store_transaction' => 'Lagra transaktion', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2233,109 +2239,109 @@ return [ */ // reports: - 'report_default' => 'Standard ekonomisk rapport mellan :start och :end', - 'report_audit' => 'Transaktionshistoriköversikt mellan :start och :end', - 'report_category' => 'Kategorirapport mellan :start och :end', - 'report_double' => 'Kostnad/intäktskonto rapport mellan :start och :end', - 'report_budget' => 'Budgetrapport mellan :start och :end', - 'report_tag' => 'Etikett rapport mellan :start och :end', - 'quick_link_reports' => 'Snabblänkar', - 'quick_link_examples' => 'Dessa är några exempel länkar för dig att komma igång. Se hjälpsidorna under (?)-knappen för information om alla rapporter och magiska ord du kan använda.', - 'quick_link_default_report' => 'Standard ekonomisk rapport', - 'quick_link_audit_report' => 'Transaktionshistoriköversikt', - 'report_this_month_quick' => 'Nuvarande månad, alla konton', - 'report_last_month_quick' => 'Föregående månad, alla konton', - 'report_this_year_quick' => 'Nuvarande år, alla konton', - 'report_this_fiscal_year_quick' => 'Nuvarande bokföringsår, alla konton', - 'report_all_time_quick' => 'Komplett, alla konton', - 'reports_can_bookmark' => 'Kom ihåg att rapporter kan bokmärkas.', - 'incomeVsExpenses' => 'Inkomster vs utgifter', - 'accountBalances' => 'Kontobalanser', - 'balanceStart' => 'Balans vid början av period', - 'balanceEnd' => 'Balans vid slut av period', - 'splitByAccount' => 'Dela efter konto', - 'coveredWithTags' => 'Belagd med etiketter', - 'leftInBudget' => 'Kvar i budget', - 'left_in_debt' => 'Att betala', - 'sumOfSums' => 'Summan av beloppen', - 'noCategory' => '(ingen kategori)', - 'notCharged' => 'Inte debiterade (ännu)', - 'inactive' => 'Inaktiv', - 'active' => 'Aktiv', - 'difference' => 'Skillnad', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Ut', - 'topX' => 'topp :number', - 'show_full_list' => 'Visa hela listan', - 'show_only_top' => 'Visa bara första :number', - 'report_type' => 'Rapporttyp', - 'report_type_default' => 'Standard ekonomisk rapport', - 'report_type_audit' => 'Transaktionshistoriköversikt (granskning)', - 'report_type_category' => 'Kategorirapport', - 'report_type_budget' => 'Budgetrapport', - 'report_type_tag' => 'Etikettrapport', - 'report_type_double' => 'Utgift/intäktskonto rapport', - 'more_info_help' => 'Mer information om dessa typer av rapporter kan hittas i hjälpsidorna. Tryck på (?) ikonen i det övre högra hörnet.', - 'report_included_accounts' => 'Inkludera konton', - 'report_date_range' => 'Datumintervall', - 'report_preset_ranges' => 'Förinställda intervall', - 'shared' => 'Delad', - 'fiscal_year' => 'Räkenskapsår', - 'income_entry' => 'Inkomst från konto ":name" mellan :start och :end', - 'expense_entry' => 'Utgifter från konto ":name" mellan :start och :end', - 'category_entry' => 'Utgifter och inkomster i kategori ":name" mellan :start och :end', - 'budget_spent_amount' => 'Utgifter i budget ":budget" mellan :start och :end', - 'balance_amount' => 'Utgifter i budget ":budget" betalad från konto ":account" mellan :start och :end', - 'no_audit_activity' => 'Ingen aktivitet registrerad på konto :account_name mellan :start och :end.', - 'audit_end_balance' => 'Kontosaldot på :account_name vid slutet av :end var :balance', - 'reports_extra_options' => 'Extra alternativ', - 'report_has_no_extra_options' => 'Denna rapport saknar extra alternativ', - 'reports_submit' => 'Visa rapport', - 'end_after_start_date' => 'Slutdatum för rapporten måste vara efter startdatum.', - 'select_category' => 'Välj kategori(er)', - 'select_budget' => 'Välj budget(ar).', - 'select_tag' => 'Välj etikett(er).', - 'income_per_category' => 'Intäkter per kategori', - 'expense_per_category' => 'Utgifter per kategori', - 'expense_per_budget' => 'Utgifter per budget', - 'income_per_account' => 'Inkomst per konto', - 'expense_per_account' => 'Utgifter per konto', - 'expense_per_tag' => 'Kostnader per etikett', - 'income_per_tag' => 'Inkomster per etikett', - 'include_expense_not_in_budget' => 'Inkludera utgifter utanför valda budget(er)', - 'include_expense_not_in_account' => 'Inkludera utgifter utanför valda konto(n)', - 'include_expense_not_in_category' => 'Inkludera utgifter utanför valda kategori(er)', - 'include_income_not_in_category' => 'Inkludes inkomster utanför valda kategori(er)', - 'include_income_not_in_account' => 'Inkludera inkomster utanför valda konto(n)', - 'include_income_not_in_tags' => 'Inkludera inkomster utanför valda etikett(er)', - 'include_expense_not_in_tags' => 'Inkludera utgifter utanför valda etikett(er)', - 'everything_else' => 'Allt annat', - 'income_and_expenses' => 'Inkomster och utgifter', - 'spent_average' => 'Spenderat (medel)', - 'income_average' => 'Inkomst (medel)', - 'transaction_count' => 'Antal transaktioner', - 'average_spending_per_account' => 'Medel spenderat per konto', - 'average_income_per_account' => 'Medel inkomst per konto', - 'total' => 'Total', - 'description' => 'Beskrivning', - 'sum_of_period' => 'Summa på period', - 'average_in_period' => 'Medel av period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Förvalt tillgångskonto', - 'account_role_sharedAsset' => 'Delat tillgångskonto', - 'account_role_savingAsset' => 'Sparkonto', - 'account_role_ccAsset' => 'Kreditkort', - 'account_role_cashWalletAsset' => 'Plånbok', - 'budget_chart_click' => 'Klicka på ett budgetnamn i tabellen nedan för att se ett diagram.', - 'category_chart_click' => 'Klicka på ett kategorinamn i tabellen nedan för att se ett diagram.', - 'in_out_accounts' => 'Intjänat och spenderat per kombination', - 'in_out_accounts_per_asset' => 'Intjänat och spenderat (per tillgångskonto)', - 'in_out_per_category' => 'Intjänat och spenderat per kategori', - 'out_per_budget' => 'Spenderat per budget', - 'select_expense_revenue' => 'Välj utgifts-/intäktskonto', - 'multi_currency_report_sum' => 'Då denna lista innehåller konton med flera valutor, kan summor(na) se konstiga ut. Rapporten faller alltid tillbaka på din standard valuta.', - 'sum_in_default_currency' => 'Summan kommer alltid att vara i din standardvaluta.', - 'net_filtered_prefs' => 'Det här diagrammet kommer aldrig att innehålla konton som har alternativet "Inkludera i nätet värdet" avmarkerat.', + 'report_default' => 'Standard ekonomisk rapport mellan :start och :end', + 'report_audit' => 'Transaktionshistoriköversikt mellan :start och :end', + 'report_category' => 'Kategorirapport mellan :start och :end', + 'report_double' => 'Kostnad/intäktskonto rapport mellan :start och :end', + 'report_budget' => 'Budgetrapport mellan :start och :end', + 'report_tag' => 'Etikett rapport mellan :start och :end', + 'quick_link_reports' => 'Snabblänkar', + 'quick_link_examples' => 'Dessa är några exempel länkar för dig att komma igång. Se hjälpsidorna under (?)-knappen för information om alla rapporter och magiska ord du kan använda.', + 'quick_link_default_report' => 'Standard ekonomisk rapport', + 'quick_link_audit_report' => 'Transaktionshistoriköversikt', + 'report_this_month_quick' => 'Nuvarande månad, alla konton', + 'report_last_month_quick' => 'Föregående månad, alla konton', + 'report_this_year_quick' => 'Nuvarande år, alla konton', + 'report_this_fiscal_year_quick' => 'Nuvarande bokföringsår, alla konton', + 'report_all_time_quick' => 'Komplett, alla konton', + 'reports_can_bookmark' => 'Kom ihåg att rapporter kan bokmärkas.', + 'incomeVsExpenses' => 'Inkomster vs utgifter', + 'accountBalances' => 'Kontobalanser', + 'balanceStart' => 'Balans vid början av period', + 'balanceEnd' => 'Balans vid slut av period', + 'splitByAccount' => 'Dela efter konto', + 'coveredWithTags' => 'Belagd med etiketter', + 'leftInBudget' => 'Kvar i budget', + 'left_in_debt' => 'Att betala', + 'sumOfSums' => 'Summan av beloppen', + 'noCategory' => '(ingen kategori)', + 'notCharged' => 'Inte debiterade (ännu)', + 'inactive' => 'Inaktiv', + 'active' => 'Aktiv', + 'difference' => 'Skillnad', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Ut', + 'topX' => 'topp :number', + 'show_full_list' => 'Visa hela listan', + 'show_only_top' => 'Visa bara första :number', + 'report_type' => 'Rapporttyp', + 'report_type_default' => 'Standard ekonomisk rapport', + 'report_type_audit' => 'Transaktionshistoriköversikt (granskning)', + 'report_type_category' => 'Kategorirapport', + 'report_type_budget' => 'Budgetrapport', + 'report_type_tag' => 'Etikettrapport', + 'report_type_double' => 'Utgift/intäktskonto rapport', + 'more_info_help' => 'Mer information om dessa typer av rapporter kan hittas i hjälpsidorna. Tryck på (?) ikonen i det övre högra hörnet.', + 'report_included_accounts' => 'Inkludera konton', + 'report_date_range' => 'Datumintervall', + 'report_preset_ranges' => 'Förinställda intervall', + 'shared' => 'Delad', + 'fiscal_year' => 'Räkenskapsår', + 'income_entry' => 'Inkomst från konto ":name" mellan :start och :end', + 'expense_entry' => 'Utgifter från konto ":name" mellan :start och :end', + 'category_entry' => 'Utgifter och inkomster i kategori ":name" mellan :start och :end', + 'budget_spent_amount' => 'Utgifter i budget ":budget" mellan :start och :end', + 'balance_amount' => 'Utgifter i budget ":budget" betalad från konto ":account" mellan :start och :end', + 'no_audit_activity' => 'Ingen aktivitet registrerad på konto :account_name mellan :start och :end.', + 'audit_end_balance' => 'Kontosaldot på :account_name vid slutet av :end var :balance', + 'reports_extra_options' => 'Extra alternativ', + 'report_has_no_extra_options' => 'Denna rapport saknar extra alternativ', + 'reports_submit' => 'Visa rapport', + 'end_after_start_date' => 'Slutdatum för rapporten måste vara efter startdatum.', + 'select_category' => 'Välj kategori(er)', + 'select_budget' => 'Välj budget(ar).', + 'select_tag' => 'Välj etikett(er).', + 'income_per_category' => 'Intäkter per kategori', + 'expense_per_category' => 'Utgifter per kategori', + 'expense_per_budget' => 'Utgifter per budget', + 'income_per_account' => 'Inkomst per konto', + 'expense_per_account' => 'Utgifter per konto', + 'expense_per_tag' => 'Kostnader per etikett', + 'income_per_tag' => 'Inkomster per etikett', + 'include_expense_not_in_budget' => 'Inkludera utgifter utanför valda budget(er)', + 'include_expense_not_in_account' => 'Inkludera utgifter utanför valda konto(n)', + 'include_expense_not_in_category' => 'Inkludera utgifter utanför valda kategori(er)', + 'include_income_not_in_category' => 'Inkludes inkomster utanför valda kategori(er)', + 'include_income_not_in_account' => 'Inkludera inkomster utanför valda konto(n)', + 'include_income_not_in_tags' => 'Inkludera inkomster utanför valda etikett(er)', + 'include_expense_not_in_tags' => 'Inkludera utgifter utanför valda etikett(er)', + 'everything_else' => 'Allt annat', + 'income_and_expenses' => 'Inkomster och utgifter', + 'spent_average' => 'Spenderat (medel)', + 'income_average' => 'Inkomst (medel)', + 'transaction_count' => 'Antal transaktioner', + 'average_spending_per_account' => 'Medel spenderat per konto', + 'average_income_per_account' => 'Medel inkomst per konto', + 'total' => 'Total', + 'description' => 'Beskrivning', + 'sum_of_period' => 'Summa på period', + 'average_in_period' => 'Medel av period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Förvalt tillgångskonto', + 'account_role_sharedAsset' => 'Delat tillgångskonto', + 'account_role_savingAsset' => 'Sparkonto', + 'account_role_ccAsset' => 'Kreditkort', + 'account_role_cashWalletAsset' => 'Plånbok', + 'budget_chart_click' => 'Klicka på ett budgetnamn i tabellen nedan för att se ett diagram.', + 'category_chart_click' => 'Klicka på ett kategorinamn i tabellen nedan för att se ett diagram.', + 'in_out_accounts' => 'Intjänat och spenderat per kombination', + 'in_out_accounts_per_asset' => 'Intjänat och spenderat (per tillgångskonto)', + 'in_out_per_category' => 'Intjänat och spenderat per kategori', + 'out_per_budget' => 'Spenderat per budget', + 'select_expense_revenue' => 'Välj utgifts-/intäktskonto', + 'multi_currency_report_sum' => 'Då denna lista innehåller konton med flera valutor, kan summor(na) se konstiga ut. Rapporten faller alltid tillbaka på din standard valuta.', + 'sum_in_default_currency' => 'Summan kommer alltid att vara i din standardvaluta.', + 'net_filtered_prefs' => 'Det här diagrammet kommer aldrig att innehålla konton som har alternativet "Inkludera i nätet värdet" avmarkerat.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2349,95 +2355,95 @@ return [ */ // charts: - 'chart' => 'Graf', - 'month' => 'Månad', - 'budget' => 'Budget', - 'spent' => 'Spenderat', - 'spent_capped' => 'Spenderade (kantade)', - 'spent_in_budget' => 'Spenderat per budget', - 'left_to_spend' => 'Återstår att spendera', - 'earned' => 'Tjänat', - 'overspent' => 'Överansträngd', - 'left' => 'Återstår', - 'max-amount' => 'Högsta belopp', - 'min-amount' => 'Lägsta belopp', - 'journal-amount' => 'Aktuell notapost', - 'name' => 'Namn', - 'date' => 'Datum', - 'date_and_time' => 'Datum och tid', - 'time' => 'Tid', - 'paid' => 'Betald', - 'unpaid' => 'Obetald', - 'day' => 'Dag', - 'budgeted' => 'Budgeterat', - 'period' => 'Period', - 'balance' => 'Saldo', - 'in_out_period' => 'In + ut denna period', - 'sum' => 'Summa', - 'summary' => 'Översikt', - 'average' => 'Medel', - 'balanceFor' => 'Saldo för :name', - 'no_tags' => '(inga etiketter)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Graf', + 'month' => 'Månad', + 'budget' => 'Budget', + 'spent' => 'Spenderat', + 'spent_capped' => 'Spenderade (kantade)', + 'spent_in_budget' => 'Spenderat per budget', + 'left_to_spend' => 'Återstår att spendera', + 'earned' => 'Tjänat', + 'overspent' => 'Överansträngd', + 'left' => 'Återstår', + 'max-amount' => 'Högsta belopp', + 'min-amount' => 'Lägsta belopp', + 'journal-amount' => 'Aktuell notapost', + 'name' => 'Namn', + 'date' => 'Datum', + 'date_and_time' => 'Datum och tid', + 'time' => 'Tid', + 'paid' => 'Betald', + 'unpaid' => 'Obetald', + 'day' => 'Dag', + 'budgeted' => 'Budgeterat', + 'period' => 'Period', + 'balance' => 'Saldo', + 'in_out_period' => 'In + ut denna period', + 'sum' => 'Summa', + 'summary' => 'Översikt', + 'average' => 'Medel', + 'balanceFor' => 'Saldo för :name', + 'no_tags' => '(inga etiketter)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Lägg till pengar till spargris ":name"', - 'piggy_bank' => 'Spargris', - 'new_piggy_bank' => 'Ny spargris', - 'store_piggy_bank' => 'Lagra ny spargris', - 'stored_piggy_bank' => 'Lagra ny spargris ":name"', - 'account_status' => 'Kontostatus', - 'left_for_piggy_banks' => 'Kvar för spargrisar', - 'sum_of_piggy_banks' => 'Summa sparbanker', - 'saved_so_far' => 'Sparat hittills', - 'left_to_save' => 'Kvar att spara', - 'suggested_amount' => 'Föreslaget månadsbelopp att spara', - 'add_money_to_piggy_title' => 'Lägg till pengar till spargris ":name"', - 'remove_money_from_piggy_title' => 'Ta bort pengar från spargris ":name"', - 'add' => 'Lägg till', - 'no_money_for_piggy' => 'Du saknar pengar att lägga till i denna spargris.', - 'suggested_savings_per_month' => 'Föreslaget per månad', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Lägg till pengar till spargris ":name"', + 'piggy_bank' => 'Spargris', + 'new_piggy_bank' => 'Ny spargris', + 'store_piggy_bank' => 'Lagra ny spargris', + 'stored_piggy_bank' => 'Lagra ny spargris ":name"', + 'account_status' => 'Kontostatus', + 'left_for_piggy_banks' => 'Kvar för spargrisar', + 'sum_of_piggy_banks' => 'Summa sparbanker', + 'saved_so_far' => 'Sparat hittills', + 'left_to_save' => 'Kvar att spara', + 'suggested_amount' => 'Föreslaget månadsbelopp att spara', + 'add_money_to_piggy_title' => 'Lägg till pengar till spargris ":name"', + 'remove_money_from_piggy_title' => 'Ta bort pengar från spargris ":name"', + 'add' => 'Lägg till', + 'no_money_for_piggy' => 'Du saknar pengar att lägga till i denna spargris.', + 'suggested_savings_per_month' => 'Föreslaget per månad', - 'remove' => 'Ta bort', - 'max_amount_add' => 'Max belopp du kan lägga till är', - 'max_amount_remove' => 'Max belopp du kan ta bort är', - 'update_piggy_button' => 'Uppdatera spargris', - 'update_piggy_title' => 'Uppdatera spargris ":name"', - 'updated_piggy_bank' => 'Uppdaterat spargris ":name"', - 'details' => 'Detaljer', - 'events' => 'Händelser', - 'target_amount' => 'Mål belopp', - 'start_date' => 'Startdatum', - 'no_start_date' => 'Inget startdatum', - 'target_date' => 'Måldatum', - 'no_target_date' => 'Inget måldatum', - 'table' => 'Tabell', - 'delete_piggy_bank' => 'Ta bort spargris ":name"', - 'cannot_add_amount_piggy' => ':amount kunde inte läggas till ":name".', - 'cannot_remove_from_piggy' => ':amount kunde inte tas bort från ":name".', - 'deleted_piggy_bank' => 'Spargris ":name" har tagits bort', - 'added_amount_to_piggy' => ':amount lades till ":name"', - 'removed_amount_from_piggy' => ':amount togs bort från ":name"', - 'piggy_events' => 'Relaterade spargrisar', + 'remove' => 'Ta bort', + 'max_amount_add' => 'Max belopp du kan lägga till är', + 'max_amount_remove' => 'Max belopp du kan ta bort är', + 'update_piggy_button' => 'Uppdatera spargris', + 'update_piggy_title' => 'Uppdatera spargris ":name"', + 'updated_piggy_bank' => 'Uppdaterat spargris ":name"', + 'details' => 'Detaljer', + 'events' => 'Händelser', + 'target_amount' => 'Mål belopp', + 'start_date' => 'Startdatum', + 'no_start_date' => 'Inget startdatum', + 'target_date' => 'Måldatum', + 'no_target_date' => 'Inget måldatum', + 'table' => 'Tabell', + 'delete_piggy_bank' => 'Ta bort spargris ":name"', + 'cannot_add_amount_piggy' => ':amount kunde inte läggas till ":name".', + 'cannot_remove_from_piggy' => ':amount kunde inte tas bort från ":name".', + 'deleted_piggy_bank' => 'Spargris ":name" har tagits bort', + 'added_amount_to_piggy' => ':amount lades till ":name"', + 'removed_amount_from_piggy' => ':amount togs bort från ":name"', + 'piggy_events' => 'Relaterade spargrisar', // tags - 'delete_tag' => 'Ta bort etiketten ":tag"', - 'deleted_tag' => 'Tog bort etiketten ":tag"', - 'new_tag' => 'Skapa en ny etikett', - 'edit_tag' => 'Ändra etikett ":tag"', - 'updated_tag' => 'Uppdatera etikett ":tag"', - 'created_tag' => 'Etiketten ":tag" har skapats!', + 'delete_tag' => 'Ta bort etiketten ":tag"', + 'deleted_tag' => 'Tog bort etiketten ":tag"', + 'new_tag' => 'Skapa en ny etikett', + 'edit_tag' => 'Ändra etikett ":tag"', + 'updated_tag' => 'Uppdatera etikett ":tag"', + 'created_tag' => 'Etiketten ":tag" har skapats!', - 'transaction_journal_information' => 'Transaktionsinformation', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Metadata', - 'transaction_journal_more' => 'Mer information', - 'basic_journal_information' => 'Grundläggande transaktionsinformation', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Sparad under ":journal"', - 'total_amount' => 'Totala summan', - 'number_of_decimals' => 'Antal decimaler', + 'transaction_journal_information' => 'Transaktionsinformation', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Metadata', + 'transaction_journal_more' => 'Mer information', + 'basic_journal_information' => 'Grundläggande transaktionsinformation', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Sparad under ":journal"', + 'total_amount' => 'Totala summan', + 'number_of_decimals' => 'Antal decimaler', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2451,279 +2457,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'Inbjudan till ":address" har redan lösts in.', - 'invite_is_deleted' => 'Inbjudan till ":address" har tagits bort.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'E-postadress', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Användaradministration', - 'list_all_users' => 'Alla användare', - 'all_users' => 'Alla användare', - 'instance_configuration' => 'Konfiguration', - 'firefly_instance_configuration' => 'Konfigurationsalternativ för Firefly III', - 'setting_single_user_mode' => 'Enkelanvändarläge', - 'setting_single_user_mode_explain' => 'Som standard accepterar Firefly III endas en (1) registrator: du. Detta är en säkerhetstanke, för att förhindra andra från att använda din instans bara om du tillåter det. Framtida registreringar är blockerade. Om du kryssar ur denna ruta, så kan andra användare också använda din instans, förutsatt att de kan nå den (när den är ansluten till internet).', - 'store_configuration' => 'Spara konfiguration', - 'single_user_administration' => 'Användaradministration för :email', - 'edit_user' => 'Redigera användare :email', - 'hidden_fields_preferences' => 'Du kan aktivera fler transaktionsalternativ i dina inställningar.', - 'user_data_information' => 'Användardata', - 'user_information' => 'Användar information', - 'total_size' => 'total storlek', - 'budget_or_budgets' => ':count budget|:count budgetar', - 'budgets_with_limits' => ':count budget med konfigurerat belopp|:count budgetar med konfigurerat belopp', - 'nr_of_rules_in_total_groups' => ':count_rules regel/regler i :count_groups regelgrupp(er)', - 'tag_or_tags' => ':count tag|:count taggar', - 'configuration_updated' => 'Konfigurationen har uppdaterats', - 'setting_is_demo_site' => 'Demo webbplats', - 'setting_is_demo_site_explain' => 'Om du kryssar i denna ruta, kommer installation att bete sig som om det är demosidan, vilket kan ha konstiga biverkningar.', - 'block_code_bounced' => 'E-postmeddelande(n) studsade', - 'block_code_expired' => 'Demo-konto har löpt ut', - 'no_block_code' => 'Ingen anledning till blockering eller användare inte blockerad', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Användaren har ännu inte bekräftat ny e-postadress', - 'admin_update_email' => 'I motsats till profilsidan kommer användaren INTE att meddelas att deras e-postadress har ändrats!', - 'update_user' => 'Uppdatera användare', - 'updated_user' => 'Användardata har ändrats.', - 'delete_user' => 'Ta bort användare :email', - 'user_deleted' => 'Användaren har tagits bort', - 'send_test_email' => 'Skicka testmeddelande via e-post', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Skicka meddelande', - 'send_test_triggered' => 'Test utlöst. Kontrollera din inkorg och loggfilerna.', - 'give_admin_careful' => 'Användare som får administratörsrättigheter kan ta bort din. Var försiktig.', - 'admin_maintanance_title' => 'Underhåll', - 'admin_maintanance_expl' => 'Några fiffiga knappar för Firefly III underhåll', - 'admin_maintenance_clear_cache' => 'Rensa cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Spara inställningar', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'Inbjudan till ":address" har redan lösts in.', + 'invite_is_deleted' => 'Inbjudan till ":address" har tagits bort.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'E-postadress', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Användaradministration', + 'list_all_users' => 'Alla användare', + 'all_users' => 'Alla användare', + 'instance_configuration' => 'Konfiguration', + 'firefly_instance_configuration' => 'Konfigurationsalternativ för Firefly III', + 'setting_single_user_mode' => 'Enkelanvändarläge', + 'setting_single_user_mode_explain' => 'Som standard accepterar Firefly III endas en (1) registrator: du. Detta är en säkerhetstanke, för att förhindra andra från att använda din instans bara om du tillåter det. Framtida registreringar är blockerade. Om du kryssar ur denna ruta, så kan andra användare också använda din instans, förutsatt att de kan nå den (när den är ansluten till internet).', + 'store_configuration' => 'Spara konfiguration', + 'single_user_administration' => 'Användaradministration för :email', + 'edit_user' => 'Redigera användare :email', + 'hidden_fields_preferences' => 'Du kan aktivera fler transaktionsalternativ i dina inställningar.', + 'user_data_information' => 'Användardata', + 'user_information' => 'Användar information', + 'total_size' => 'total storlek', + 'budget_or_budgets' => ':count budget|:count budgetar', + 'budgets_with_limits' => ':count budget med konfigurerat belopp|:count budgetar med konfigurerat belopp', + 'nr_of_rules_in_total_groups' => ':count_rules regel/regler i :count_groups regelgrupp(er)', + 'tag_or_tags' => ':count tag|:count taggar', + 'configuration_updated' => 'Konfigurationen har uppdaterats', + 'setting_is_demo_site' => 'Demo webbplats', + 'setting_is_demo_site_explain' => 'Om du kryssar i denna ruta, kommer installation att bete sig som om det är demosidan, vilket kan ha konstiga biverkningar.', + 'block_code_bounced' => 'E-postmeddelande(n) studsade', + 'block_code_expired' => 'Demo-konto har löpt ut', + 'no_block_code' => 'Ingen anledning till blockering eller användare inte blockerad', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Användaren har ännu inte bekräftat ny e-postadress', + 'admin_update_email' => 'I motsats till profilsidan kommer användaren INTE att meddelas att deras e-postadress har ändrats!', + 'update_user' => 'Uppdatera användare', + 'updated_user' => 'Användardata har ändrats.', + 'delete_user' => 'Ta bort användare :email', + 'user_deleted' => 'Användaren har tagits bort', + 'send_test_email' => 'Skicka testmeddelande via e-post', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Skicka meddelande', + 'send_test_triggered' => 'Test utlöst. Kontrollera din inkorg och loggfilerna.', + 'give_admin_careful' => 'Användare som får administratörsrättigheter kan ta bort din. Var försiktig.', + 'admin_maintanance_title' => 'Underhåll', + 'admin_maintanance_expl' => 'Några fiffiga knappar för Firefly III underhåll', + 'admin_maintenance_clear_cache' => 'Rensa cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Spara inställningar', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Beskrivning av delad transaktion', - 'split_transaction_title_help' => 'Om du skapar en delad transaktion måste det finnas en global beskrivning för alla delningar av transaktionen.', - 'split_title_help' => 'Om du skapar en delad transaktion måste det finnas en global beskrivning för alla delningar av transaktionen.', - 'you_create_transfer' => 'Du skapar en överföring.', - 'you_create_withdrawal' => 'Du skapar ett uttag.', - 'you_create_deposit' => 'Du skapar en insättning.', + 'split_transaction_title' => 'Beskrivning av delad transaktion', + 'split_transaction_title_help' => 'Om du skapar en delad transaktion måste det finnas en global beskrivning för alla delningar av transaktionen.', + 'split_title_help' => 'Om du skapar en delad transaktion måste det finnas en global beskrivning för alla delningar av transaktionen.', + 'you_create_transfer' => 'Du skapar en överföring.', + 'you_create_withdrawal' => 'Du skapar ett uttag.', + 'you_create_deposit' => 'Du skapar en insättning.', // links - 'journal_link_configuration' => 'Konfiguration av transaktionslänkar', - 'create_new_link_type' => 'Skapa ny länktyp', - 'store_new_link_type' => 'Lagra ny länktyp', - 'update_link_type' => 'Uppdatera länktyp', - 'edit_link_type' => 'Redigera länktyp ":name"', - 'updated_link_type' => 'Länktypen ":name" uppdaterades', - 'delete_link_type' => 'Ta bort länktyp ":name"', - 'deleted_link_type' => 'Länktypen ":name" raderad', - 'stored_new_link_type' => 'Lagra ny länktyp ":name"', - 'cannot_edit_link_type' => 'Kan inte redigera länktyp ":name"', - 'link_type_help_name' => 'T. ex. "dubbletter"', - 'link_type_help_inward' => 'T. ex. "dubbletter"', - 'link_type_help_outward' => 'T. ex. "är dubbellet av"', - 'save_connections_by_moving' => 'Spara länken mellan dessa transaktioner genom att flytta dem till en annan länktyp:', - 'do_not_save_connection' => '(spara inte koppling)', - 'link_transaction' => 'Länka transaktion', - 'link_to_other_transaction' => 'Länka denna transaktion till en annan transaktion', - 'select_transaction_to_link' => 'Välj en transaktion för att länka denna transaktion till. Länkarna är för närvarande oanvända i Firefly III (förutom att visas), men jag planerar att ändra detta i framtiden. Använd sökrutan för att välja en transaktion antingen efter titel eller efter ID. Om du vill lägga till anpassade länktyper, kolla in administrationsavsnittet.', - 'this_transaction' => 'Denna transaktion', - 'transaction' => 'Transaktion', - 'comments' => 'Kommentarer', - 'link_notes' => 'Eventuella anteckningar som du vill lagra med länken.', - 'invalid_link_selection' => 'Kan inte länka dessa transaktioner', - 'selected_transaction' => 'Vald transaktion', - 'journals_linked' => 'Transaktioner är länkade.', - 'journals_error_linked' => 'Dessa transaktioner är redan länkade.', - 'journals_link_to_self' => 'Går inte länka en transaktion till sig själv', - 'journal_links' => 'Transaktionslänkar', - 'this_withdrawal' => 'Detta uttag', - 'this_deposit' => 'Denna insättning', - 'this_transfer' => 'Denna överföring', - 'overview_for_link' => 'Översikt för länktyp ":name"', - 'source_transaction' => 'Källtransaktion', - 'link_description' => 'Länkbeskrivning', - 'destination_transaction' => 'Destinationstransaktion', - 'delete_journal_link' => 'Ta bort länk mellan :source och :destination', - 'deleted_link' => 'Länk borttagen', + 'journal_link_configuration' => 'Konfiguration av transaktionslänkar', + 'create_new_link_type' => 'Skapa ny länktyp', + 'store_new_link_type' => 'Lagra ny länktyp', + 'update_link_type' => 'Uppdatera länktyp', + 'edit_link_type' => 'Redigera länktyp ":name"', + 'updated_link_type' => 'Länktypen ":name" uppdaterades', + 'delete_link_type' => 'Ta bort länktyp ":name"', + 'deleted_link_type' => 'Länktypen ":name" raderad', + 'stored_new_link_type' => 'Lagra ny länktyp ":name"', + 'cannot_edit_link_type' => 'Kan inte redigera länktyp ":name"', + 'link_type_help_name' => 'T. ex. "dubbletter"', + 'link_type_help_inward' => 'T. ex. "dubbletter"', + 'link_type_help_outward' => 'T. ex. "är dubbellet av"', + 'save_connections_by_moving' => 'Spara länken mellan dessa transaktioner genom att flytta dem till en annan länktyp:', + 'do_not_save_connection' => '(spara inte koppling)', + 'link_transaction' => 'Länka transaktion', + 'link_to_other_transaction' => 'Länka denna transaktion till en annan transaktion', + 'select_transaction_to_link' => 'Välj en transaktion för att länka denna transaktion till. Länkarna är för närvarande oanvända i Firefly III (förutom att visas), men jag planerar att ändra detta i framtiden. Använd sökrutan för att välja en transaktion antingen efter titel eller efter ID. Om du vill lägga till anpassade länktyper, kolla in administrationsavsnittet.', + 'this_transaction' => 'Denna transaktion', + 'transaction' => 'Transaktion', + 'comments' => 'Kommentarer', + 'link_notes' => 'Eventuella anteckningar som du vill lagra med länken.', + 'invalid_link_selection' => 'Kan inte länka dessa transaktioner', + 'selected_transaction' => 'Vald transaktion', + 'journals_linked' => 'Transaktioner är länkade.', + 'journals_error_linked' => 'Dessa transaktioner är redan länkade.', + 'journals_link_to_self' => 'Går inte länka en transaktion till sig själv', + 'journal_links' => 'Transaktionslänkar', + 'this_withdrawal' => 'Detta uttag', + 'this_deposit' => 'Denna insättning', + 'this_transfer' => 'Denna överföring', + 'overview_for_link' => 'Översikt för länktyp ":name"', + 'source_transaction' => 'Källtransaktion', + 'link_description' => 'Länkbeskrivning', + 'destination_transaction' => 'Destinationstransaktion', + 'delete_journal_link' => 'Ta bort länk mellan :source och :destination', + 'deleted_link' => 'Länk borttagen', // link translations: - 'Paid_name' => 'Betalad', - 'Refund_name' => 'Återbetalning', - 'Reimbursement_name' => 'Ersättning', - 'Related_name' => 'Relaterad', - 'relates to_inward' => 'relaterad till', - 'is (partially) refunded by_inward' => 'är (delvis) återbetalad av', - 'is (partially) paid for by_inward' => 'är (delvis) betalad från', - 'is (partially) reimbursed by_inward' => 'är (delvis) ersatt från', - 'inward_transaction' => 'Intransaktion', - 'outward_transaction' => 'Utgående transaktion', - 'relates to_outward' => 'relaterad till', - '(partially) refunds_outward' => '(delvis) återbetalningar', - '(partially) pays for_outward' => '(delvis) betalning för', - '(partially) reimburses_outward' => '(delvis) ersättning', - 'is (partially) refunded by' => 'är (delvis) återbetalad av', - 'is (partially) paid for by' => 'betalas (delvis) av', - 'is (partially) reimbursed by' => 'ersätts (delvis) av', - 'relates to' => 'relaterar till', - '(partially) refunds' => '(delvis) återbetalning', - '(partially) pays for' => '(delvis) betalar för', - '(partially) reimburses' => '(delvis) återbetalar', + 'Paid_name' => 'Betalad', + 'Refund_name' => 'Återbetalning', + 'Reimbursement_name' => 'Ersättning', + 'Related_name' => 'Relaterad', + 'relates to_inward' => 'relaterad till', + 'is (partially) refunded by_inward' => 'är (delvis) återbetalad av', + 'is (partially) paid for by_inward' => 'är (delvis) betalad från', + 'is (partially) reimbursed by_inward' => 'är (delvis) ersatt från', + 'inward_transaction' => 'Intransaktion', + 'outward_transaction' => 'Utgående transaktion', + 'relates to_outward' => 'relaterad till', + '(partially) refunds_outward' => '(delvis) återbetalningar', + '(partially) pays for_outward' => '(delvis) betalning för', + '(partially) reimburses_outward' => '(delvis) ersättning', + 'is (partially) refunded by' => 'är (delvis) återbetalad av', + 'is (partially) paid for by' => 'betalas (delvis) av', + 'is (partially) reimbursed by' => 'ersätts (delvis) av', + 'relates to' => 'relaterar till', + '(partially) refunds' => '(delvis) återbetalning', + '(partially) pays for' => '(delvis) betalar för', + '(partially) reimburses' => '(delvis) återbetalar', // split a transaction: - 'splits' => 'Dela upp', - 'add_another_split' => 'Lägga till en annan delning', - 'cannot_edit_opening_balance' => 'Går inte ändra öppningsbalansen på ett konto.', - 'no_edit_multiple_left' => 'Du har inte valt en giltig transaktion att ändra.', - 'breadcrumb_convert_group' => 'Konvertera transaktion', - 'convert_invalid_source' => 'Källinformation är ogiltig för transaktion #%d.', - 'convert_invalid_destination' => 'Destinationsinformation är ogiltig för transaktion #%d.', - 'create_another' => 'Efter sparat, återkom hit för att skapa ytterligare en.', - 'after_update_create_another' => 'Efter uppdaterat, återkom hit för att fortsätta redigera.', - 'store_as_new' => 'Spara en ny transaktion istället för att uppdatera.', - 'reset_after' => 'Återställ formulär efter inskickat', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expandera delningen', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Minimera delning', + 'splits' => 'Dela upp', + 'add_another_split' => 'Lägga till en annan delning', + 'cannot_edit_opening_balance' => 'Går inte ändra öppningsbalansen på ett konto.', + 'no_edit_multiple_left' => 'Du har inte valt en giltig transaktion att ändra.', + 'breadcrumb_convert_group' => 'Konvertera transaktion', + 'convert_invalid_source' => 'Källinformation är ogiltig för transaktion #%d.', + 'convert_invalid_destination' => 'Destinationsinformation är ogiltig för transaktion #%d.', + 'create_another' => 'Efter sparat, återkom hit för att skapa ytterligare en.', + 'after_update_create_another' => 'Efter uppdaterat, återkom hit för att fortsätta redigera.', + 'store_as_new' => 'Spara en ny transaktion istället för att uppdatera.', + 'reset_after' => 'Återställ formulär efter inskickat', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expandera delningen', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Minimera delning', // object groups - 'default_group_title_name' => '(ogrupperad)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ogrupperad)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Låt oss skapa ett tillgångskonto!', - 'no_accounts_intro_asset' => 'Inga tillgångskonton ännu. Tillgångskonton är dina huvudkonton: kontrollkonto, sparkonto, delat konto eller även ditt kreditkort.', - 'no_accounts_imperative_asset' => 'För att börja använda Firefly III måste du skapa minst ett tillgångskonto. Låt oss göra det nu:', - 'no_accounts_create_asset' => 'Skapa ett tillgångskonto', - 'no_accounts_title_expense' => 'Låt oss skapa ett utgiftskonton!', - 'no_accounts_intro_expense' => 'Du har inga utgiftskonton ännu. Utgiftskonton är de platser där du spenderar pengar, såsom butiker och stormarknader.', - 'no_accounts_imperative_expense' => 'Utgiftskonton skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också, om du vill. Låt oss skapa en nu:', - 'no_accounts_create_expense' => 'Skapa ett utgiftskonto', - 'no_accounts_title_revenue' => 'Låt oss skapa ett intäktskonto!', - 'no_accounts_intro_revenue' => 'Du har inga intäktskonton än. Intäktskonton är de platser där du får pengar från, till exempel din arbetsgivare.', - 'no_accounts_imperative_revenue' => 'Intäktskonton skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också, om du vill. Låt oss skapa en nu:', - 'no_accounts_create_revenue' => 'Skapa ett intäktskonto', - 'no_accounts_title_liabilities' => 'Låt oss skapa en skuld!', - 'no_accounts_intro_liabilities' => 'Du har inga skulder ännu. Skulder är de konton som registrerar dina (studerande) lån och andra skulder.', - 'no_accounts_imperative_liabilities' => 'Du behöver inte använda den här funktionen, men det kan vara användbart om du vill hålla reda på dessa saker.', - 'no_accounts_create_liabilities' => 'Skapa en ny skuld', - 'no_budgets_title_default' => 'Låt oss skapa en budget', - 'no_rules_title_default' => 'Låt oss skapa en regel', - 'no_budgets_intro_default' => 'Du har inga budgetar ännu. Budgetar används för att organisera dina utgifter i logiska grupper, som du kan ge en soft-cap för att begränsa dina utgifter.', - 'no_rules_intro_default' => 'Du har inga regler ännu. Regler är kraftfulla automatiseringar som kan hantera transaktioner åt dig.', - 'no_rules_imperative_default' => 'Regler kan vara mycket användbara när du hanterar transaktioner. Låt oss skapa en nu:', - 'no_budgets_imperative_default' => 'Budgetarna är de grundläggande verktygen för ekonomisk förvaltning. Låt oss skapa ett nu:', - 'no_budgets_create_default' => 'Skapa en budget', - 'no_rules_create_default' => 'Skapa en regel', - 'no_categories_title_default' => 'Låt oss skapa en kategori!', - 'no_categories_intro_default' => 'Du har inga kategorier ännu. Kategorier används för att finjustera dina transaktioner och märka dem med deras utsedda kategori.', - 'no_categories_imperative_default' => 'Kategorier skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också. Låt oss skapa en nu:', - 'no_categories_create_default' => 'Skapa en kategori', - 'no_tags_title_default' => 'Skapa en etikett!', - 'no_tags_intro_default' => 'Du har inga etiketter ännu. Etiketter används för att finjustera transaktioner och märka dem med specifika nyckelord.', - 'no_tags_imperative_default' => 'Etiketter skapas automatiskt när du skapar transaktioner, men de går att skapa manuellt också. Låt oss skapa en nu:', - 'no_tags_create_default' => 'Skapa en etikett', - 'no_transactions_title_withdrawal' => 'Låt oss skapa en kostnad!', - 'no_transactions_intro_withdrawal' => 'Du har inga utgifter ännu. Du bör skapa utgifter för att börja hantera din ekonomi.', - 'no_transactions_imperative_withdrawal' => 'Har du spenderat lite pengar? Då ska du skriva ner det:', - 'no_transactions_create_withdrawal' => 'Skapa en kostnad', - 'no_transactions_title_deposit' => 'Låt oss skapa lite inkomst!', - 'no_transactions_intro_deposit' => 'Du har inga registrerade inkomster ännu. Du bör skapa inkomstposter för att börja hantera din ekonomi.', - 'no_transactions_imperative_deposit' => 'Har du fått lite pengar? Då ska du skriva ner det:', - 'no_transactions_create_deposit' => 'Skapa en insättning', - 'no_transactions_title_transfers' => 'Låt oss skapa en överföring!', - 'no_transactions_intro_transfers' => 'Du har inga överföringar ännu. När du flyttar pengar mellan tillgångskonton registreras det som överföring.', - 'no_transactions_imperative_transfers' => 'Har du flyttat lite pengar runt? Då ska du skriva ner det:', - 'no_transactions_create_transfers' => 'Skapa en överföring', - 'no_piggies_title_default' => 'Låt oss skapa en spargris!', - 'no_piggies_intro_default' => 'Du har inga spargrisar ännu. Du kan skapa spargrisar för att dela upp dina besparingar och hålla reda på vad du sparar på.', - 'no_piggies_imperative_default' => 'Har du saker du sparar pengar till? Skapa en spargris och håll reda på:', - 'no_piggies_create_default' => 'Skapa en ny sparbank', - 'no_bills_title_default' => 'Låt oss skapa en nota!', - 'no_bills_intro_default' => 'Du har inga notor ännu. Du kan skapa notor för att hålla koll på dina vanliga utgifter, som hyra eller försäkringar.', - 'no_bills_imperative_default' => 'Har du så regelbundna räkningar? Skapa en räkning och håll koll på dina betalningar:', - 'no_bills_create_default' => 'Skapa en nota', + 'no_accounts_title_asset' => 'Låt oss skapa ett tillgångskonto!', + 'no_accounts_intro_asset' => 'Inga tillgångskonton ännu. Tillgångskonton är dina huvudkonton: kontrollkonto, sparkonto, delat konto eller även ditt kreditkort.', + 'no_accounts_imperative_asset' => 'För att börja använda Firefly III måste du skapa minst ett tillgångskonto. Låt oss göra det nu:', + 'no_accounts_create_asset' => 'Skapa ett tillgångskonto', + 'no_accounts_title_expense' => 'Låt oss skapa ett utgiftskonton!', + 'no_accounts_intro_expense' => 'Du har inga utgiftskonton ännu. Utgiftskonton är de platser där du spenderar pengar, såsom butiker och stormarknader.', + 'no_accounts_imperative_expense' => 'Utgiftskonton skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också, om du vill. Låt oss skapa en nu:', + 'no_accounts_create_expense' => 'Skapa ett utgiftskonto', + 'no_accounts_title_revenue' => 'Låt oss skapa ett intäktskonto!', + 'no_accounts_intro_revenue' => 'Du har inga intäktskonton än. Intäktskonton är de platser där du får pengar från, till exempel din arbetsgivare.', + 'no_accounts_imperative_revenue' => 'Intäktskonton skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också, om du vill. Låt oss skapa en nu:', + 'no_accounts_create_revenue' => 'Skapa ett intäktskonto', + 'no_accounts_title_liabilities' => 'Låt oss skapa en skuld!', + 'no_accounts_intro_liabilities' => 'Du har inga skulder ännu. Skulder är de konton som registrerar dina (studerande) lån och andra skulder.', + 'no_accounts_imperative_liabilities' => 'Du behöver inte använda den här funktionen, men det kan vara användbart om du vill hålla reda på dessa saker.', + 'no_accounts_create_liabilities' => 'Skapa en ny skuld', + 'no_budgets_title_default' => 'Låt oss skapa en budget', + 'no_rules_title_default' => 'Låt oss skapa en regel', + 'no_budgets_intro_default' => 'Du har inga budgetar ännu. Budgetar används för att organisera dina utgifter i logiska grupper, som du kan ge en soft-cap för att begränsa dina utgifter.', + 'no_rules_intro_default' => 'Du har inga regler ännu. Regler är kraftfulla automatiseringar som kan hantera transaktioner åt dig.', + 'no_rules_imperative_default' => 'Regler kan vara mycket användbara när du hanterar transaktioner. Låt oss skapa en nu:', + 'no_budgets_imperative_default' => 'Budgetarna är de grundläggande verktygen för ekonomisk förvaltning. Låt oss skapa ett nu:', + 'no_budgets_create_default' => 'Skapa en budget', + 'no_rules_create_default' => 'Skapa en regel', + 'no_categories_title_default' => 'Låt oss skapa en kategori!', + 'no_categories_intro_default' => 'Du har inga kategorier ännu. Kategorier används för att finjustera dina transaktioner och märka dem med deras utsedda kategori.', + 'no_categories_imperative_default' => 'Kategorier skapas automatiskt när du skapar transaktioner, men du kan skapa en manuellt också. Låt oss skapa en nu:', + 'no_categories_create_default' => 'Skapa en kategori', + 'no_tags_title_default' => 'Skapa en etikett!', + 'no_tags_intro_default' => 'Du har inga etiketter ännu. Etiketter används för att finjustera transaktioner och märka dem med specifika nyckelord.', + 'no_tags_imperative_default' => 'Etiketter skapas automatiskt när du skapar transaktioner, men de går att skapa manuellt också. Låt oss skapa en nu:', + 'no_tags_create_default' => 'Skapa en etikett', + 'no_transactions_title_withdrawal' => 'Låt oss skapa en kostnad!', + 'no_transactions_intro_withdrawal' => 'Du har inga utgifter ännu. Du bör skapa utgifter för att börja hantera din ekonomi.', + 'no_transactions_imperative_withdrawal' => 'Har du spenderat lite pengar? Då ska du skriva ner det:', + 'no_transactions_create_withdrawal' => 'Skapa en kostnad', + 'no_transactions_title_deposit' => 'Låt oss skapa lite inkomst!', + 'no_transactions_intro_deposit' => 'Du har inga registrerade inkomster ännu. Du bör skapa inkomstposter för att börja hantera din ekonomi.', + 'no_transactions_imperative_deposit' => 'Har du fått lite pengar? Då ska du skriva ner det:', + 'no_transactions_create_deposit' => 'Skapa en insättning', + 'no_transactions_title_transfers' => 'Låt oss skapa en överföring!', + 'no_transactions_intro_transfers' => 'Du har inga överföringar ännu. När du flyttar pengar mellan tillgångskonton registreras det som överföring.', + 'no_transactions_imperative_transfers' => 'Har du flyttat lite pengar runt? Då ska du skriva ner det:', + 'no_transactions_create_transfers' => 'Skapa en överföring', + 'no_piggies_title_default' => 'Låt oss skapa en spargris!', + 'no_piggies_intro_default' => 'Du har inga spargrisar ännu. Du kan skapa spargrisar för att dela upp dina besparingar och hålla reda på vad du sparar på.', + 'no_piggies_imperative_default' => 'Har du saker du sparar pengar till? Skapa en spargris och håll reda på:', + 'no_piggies_create_default' => 'Skapa en ny sparbank', + 'no_bills_title_default' => 'Låt oss skapa en nota!', + 'no_bills_intro_default' => 'Du har inga notor ännu. Du kan skapa notor för att hålla koll på dina vanliga utgifter, som hyra eller försäkringar.', + 'no_bills_imperative_default' => 'Har du så regelbundna räkningar? Skapa en räkning och håll koll på dina betalningar:', + 'no_bills_create_default' => 'Skapa en nota', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Återkommande transaktioner', - 'repeat_until_in_past' => 'Denna återkommande transaktion slutade upprepas :date.', - 'recurring_calendar_view' => 'Kalender', - 'no_recurring_title_default' => 'Låt oss skapa en återkommande transaktion!', - 'no_recurring_intro_default' => 'Du har inga återkommande transaktioner än. Dessa kan användas för att låta Firefly III automatiskt skapa transaktioner åt dig.', - 'no_recurring_imperative_default' => 'Detta är en ganska avancerad funktion, men det kan vara mycket användbart. Se till att du läser dokumentationen (?)-ikonen i det övre högra hörnet) innan du fortsätter.', - 'no_recurring_create_default' => 'Skapa en återkommande transaktion', - 'make_new_recurring' => 'Skapa en återkommande transaktion', - 'recurring_daily' => 'Dagligen', - 'recurring_weekly' => 'Varje vecka på :weekday', - 'recurring_weekly_skip' => 'Varje :skip(a/e) vecka på :weekday', - 'recurring_monthly' => 'Varje månad på :dayOfMonth(a/e) dag', - 'recurring_monthly_skip' => 'Varje :skip(st/nd/rd/th) månad :dayOfMonth(st/nd/rd/th) dag', - 'recurring_ndom' => 'Varje månad på :dayOfMonth(a/e) :weekday', - 'recurring_yearly' => 'Varje år på :date', - 'overview_for_recurrence' => 'Översikt för återkommande transaktioner ":title"', - 'warning_duplicates_repetitions' => 'I sällsynta fall, kan datum förekomma flera gånger i denna lista. Detta kan ske när flera upprepningar kolliderar. Firefly III generar alltid en transaktion per dag.', - 'created_transactions' => 'Relaterade transaktioner', - 'expected_withdrawals' => 'Förväntade uttag', - 'expected_deposits' => 'Förväntade insättningar', - 'expected_transfers' => 'Förväntade överföringar', - 'created_withdrawals' => 'Skapade uttag', - 'created_deposits' => 'Skapade insättning', - 'created_transfers' => 'Skapade överföringar', - 'recurring_info' => 'Återkommande transaktion :count / :total', - 'created_from_recurrence' => 'Skapad från återkommande transaktion ":title" (#:id)', - 'recurring_never_cron' => 'Det verkar som om cron-jobbet som är nödvändigt för att stödja återkommande transaktioner aldrig har kört. Detta är naturligtvis normalt när du just har installerat Firefly III, men detta bör vara något att ställa upp så snart som möjligt. Kolla in hjälpsidorna med hjälp av (?)-ikonen i det övre högra hörnet av sidan.', - 'recurring_cron_long_ago' => 'Det verkar som om det har gått mer än 36 timmar sedan cronjobbet för att stödja återkommande transaktioner har sparkats för sista gången. Är du säker på att den har konfigurerats korrekt? Kolla in hjälpsidorna med hjälp av (?)-ikonen i det övre högra hörnet av sidan.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Återkommande transaktioner', + 'repeat_until_in_past' => 'Denna återkommande transaktion slutade upprepas :date.', + 'recurring_calendar_view' => 'Kalender', + 'no_recurring_title_default' => 'Låt oss skapa en återkommande transaktion!', + 'no_recurring_intro_default' => 'Du har inga återkommande transaktioner än. Dessa kan användas för att låta Firefly III automatiskt skapa transaktioner åt dig.', + 'no_recurring_imperative_default' => 'Detta är en ganska avancerad funktion, men det kan vara mycket användbart. Se till att du läser dokumentationen (?)-ikonen i det övre högra hörnet) innan du fortsätter.', + 'no_recurring_create_default' => 'Skapa en återkommande transaktion', + 'make_new_recurring' => 'Skapa en återkommande transaktion', + 'recurring_daily' => 'Dagligen', + 'recurring_weekly' => 'Varje vecka på :weekday', + 'recurring_weekly_skip' => 'Varje :skip(a/e) vecka på :weekday', + 'recurring_monthly' => 'Varje månad på :dayOfMonth(a/e) dag', + 'recurring_monthly_skip' => 'Varje :skip(st/nd/rd/th) månad :dayOfMonth(st/nd/rd/th) dag', + 'recurring_ndom' => 'Varje månad på :dayOfMonth(a/e) :weekday', + 'recurring_yearly' => 'Varje år på :date', + 'overview_for_recurrence' => 'Översikt för återkommande transaktioner ":title"', + 'warning_duplicates_repetitions' => 'I sällsynta fall, kan datum förekomma flera gånger i denna lista. Detta kan ske när flera upprepningar kolliderar. Firefly III generar alltid en transaktion per dag.', + 'created_transactions' => 'Relaterade transaktioner', + 'expected_withdrawals' => 'Förväntade uttag', + 'expected_deposits' => 'Förväntade insättningar', + 'expected_transfers' => 'Förväntade överföringar', + 'created_withdrawals' => 'Skapade uttag', + 'created_deposits' => 'Skapade insättning', + 'created_transfers' => 'Skapade överföringar', + 'recurring_info' => 'Återkommande transaktion :count / :total', + 'created_from_recurrence' => 'Skapad från återkommande transaktion ":title" (#:id)', + 'recurring_never_cron' => 'Det verkar som om cron-jobbet som är nödvändigt för att stödja återkommande transaktioner aldrig har kört. Detta är naturligtvis normalt när du just har installerat Firefly III, men detta bör vara något att ställa upp så snart som möjligt. Kolla in hjälpsidorna med hjälp av (?)-ikonen i det övre högra hörnet av sidan.', + 'recurring_cron_long_ago' => 'Det verkar som om det har gått mer än 36 timmar sedan cronjobbet för att stödja återkommande transaktioner har sparkats för sista gången. Är du säker på att den har konfigurerats korrekt? Kolla in hjälpsidorna med hjälp av (?)-ikonen i det övre högra hörnet av sidan.', - 'create_new_recurrence' => 'Skapa ny återkommande transaktion', - 'help_first_date' => 'Ange den första förväntade upprepningen. Detta måste vara i framtiden.', - 'help_first_date_no_past' => 'Ange den första förväntade upprepningen. Firefly III kommer inte att skapa transaktioner i det förflutna.', - 'no_currency' => '(ingen valuta)', - 'mandatory_for_recurring' => 'Obligatorisk återkommande information', - 'mandatory_for_transaction' => 'Obligatorisk transaktionsinformation', - 'optional_for_recurring' => 'Valfri återkommande information', - 'optional_for_transaction' => 'Valfri transaktionsinformation', - 'change_date_other_options' => 'Ändra "första datumet" för att se fler alternativ.', - 'mandatory_fields_for_tranaction' => 'Värdena här kommer att hamna i de transaktion(er) som skapas', - 'click_for_calendar' => 'Klicka här för en kalender som visar dig när transaktionen ska upprepas.', - 'repeat_forever' => 'Upprepa för alltid', - 'repeat_until_date' => 'Upprepa till datum', - 'repeat_times' => 'Upprepa ett antal gånger', - 'recurring_skips_one' => 'Varannan', - 'recurring_skips_more' => 'Hoppar över :count förekomster', - 'store_new_recurrence' => 'Lagra återkommande transaktion', - 'stored_new_recurrence' => 'Återkommande transaktion ":title" lagras framgångsrikt.', - 'edit_recurrence' => 'Redigera återkommande transaktion ":title"', - 'recurring_repeats_until' => 'Upprepas till :date', - 'recurring_repeats_forever' => 'Upprepa för alltid', - 'recurring_repeats_x_times' => 'Upprepas :count gång|Upprepas :count gånger', - 'update_recurrence' => 'Uppdatera återkommande transaktion', - 'updated_recurrence' => 'Uppdaterade återkommande transaktion ":title"', - 'recurrence_is_inactive' => 'Denna återkommande transaktion är inte aktiv och kommer inte generera nya transaktioner.', - 'delete_recurring' => 'Ta bort återkommande transaktion ":title"', - 'new_recurring_transaction' => 'Ny återkommande transaktion', - 'help_weekend' => 'Vad ska Firefly III göra när den återkommande transaktionen infaller på en lördag eller söndag?', - 'do_nothing' => 'Skapa bara transaktionen', - 'skip_transaction' => 'Hoppa över förekomsten', - 'jump_to_friday' => 'Skapa transaktionen på föregående fredag istället', - 'jump_to_monday' => 'Skapa transaktionen nästa måndag istället', - 'will_jump_friday' => 'Kommer att skapas på fredag istället för helgerna.', - 'will_jump_monday' => 'Kommer att skapas på måndag istället för helgerna.', - 'except_weekends' => 'Förutom helger', - 'recurrence_deleted' => 'Återkommande transaktion ":title" raderad', + 'create_new_recurrence' => 'Skapa ny återkommande transaktion', + 'help_first_date' => 'Ange den första förväntade upprepningen. Detta måste vara i framtiden.', + 'help_first_date_no_past' => 'Ange den första förväntade upprepningen. Firefly III kommer inte att skapa transaktioner i det förflutna.', + 'no_currency' => '(ingen valuta)', + 'mandatory_for_recurring' => 'Obligatorisk återkommande information', + 'mandatory_for_transaction' => 'Obligatorisk transaktionsinformation', + 'optional_for_recurring' => 'Valfri återkommande information', + 'optional_for_transaction' => 'Valfri transaktionsinformation', + 'change_date_other_options' => 'Ändra "första datumet" för att se fler alternativ.', + 'mandatory_fields_for_tranaction' => 'Värdena här kommer att hamna i de transaktion(er) som skapas', + 'click_for_calendar' => 'Klicka här för en kalender som visar dig när transaktionen ska upprepas.', + 'repeat_forever' => 'Upprepa för alltid', + 'repeat_until_date' => 'Upprepa till datum', + 'repeat_times' => 'Upprepa ett antal gånger', + 'recurring_skips_one' => 'Varannan', + 'recurring_skips_more' => 'Hoppar över :count förekomster', + 'store_new_recurrence' => 'Lagra återkommande transaktion', + 'stored_new_recurrence' => 'Återkommande transaktion ":title" lagras framgångsrikt.', + 'edit_recurrence' => 'Redigera återkommande transaktion ":title"', + 'recurring_repeats_until' => 'Upprepas till :date', + 'recurring_repeats_forever' => 'Upprepa för alltid', + 'recurring_repeats_x_times' => 'Upprepas :count gång|Upprepas :count gånger', + 'update_recurrence' => 'Uppdatera återkommande transaktion', + 'updated_recurrence' => 'Uppdaterade återkommande transaktion ":title"', + 'recurrence_is_inactive' => 'Denna återkommande transaktion är inte aktiv och kommer inte generera nya transaktioner.', + 'delete_recurring' => 'Ta bort återkommande transaktion ":title"', + 'new_recurring_transaction' => 'Ny återkommande transaktion', + 'help_weekend' => 'Vad ska Firefly III göra när den återkommande transaktionen infaller på en lördag eller söndag?', + 'do_nothing' => 'Skapa bara transaktionen', + 'skip_transaction' => 'Hoppa över förekomsten', + 'jump_to_friday' => 'Skapa transaktionen på föregående fredag istället', + 'jump_to_monday' => 'Skapa transaktionen nästa måndag istället', + 'will_jump_friday' => 'Kommer att skapas på fredag istället för helgerna.', + 'will_jump_monday' => 'Kommer att skapas på måndag istället för helgerna.', + 'except_weekends' => 'Förutom helger', + 'recurrence_deleted' => 'Återkommande transaktion ":title" raderad', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2737,69 +2743,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balans (:currency)', - 'box_spent_in_currency' => 'Spenderat (:currency)', - 'box_earned_in_currency' => 'Intjänat (:currency)', - 'box_budgeted_in_currency' => 'Budgeterat (:currency)', - 'box_bill_paid_in_currency' => 'Räkningar betalade (:currency)', - 'box_bill_unpaid_in_currency' => 'Obetalda räkningar (:currency)', - 'box_left_to_spend_in_currency' => 'Kvar att spendera (:currency)', - 'box_net_worth_in_currency' => 'Netto värde (:currency)', - 'box_spend_per_day' => 'Kvar att spendera per dag :amount', + 'box_balance_in_currency' => 'Balans (:currency)', + 'box_spent_in_currency' => 'Spenderat (:currency)', + 'box_earned_in_currency' => 'Intjänat (:currency)', + 'box_budgeted_in_currency' => 'Budgeterat (:currency)', + 'box_bill_paid_in_currency' => 'Räkningar betalade (:currency)', + 'box_bill_unpaid_in_currency' => 'Obetalda räkningar (:currency)', + 'box_left_to_spend_in_currency' => 'Kvar att spendera (:currency)', + 'box_net_worth_in_currency' => 'Netto värde (:currency)', + 'box_spend_per_day' => 'Kvar att spendera per dag :amount', // debug page - 'debug_page' => 'Debug sida', - 'debug_submit_instructions' => 'Om du stöter på problem kan du använda informationen i den här rutan som felsökningsinformation. Kopiera och klistra in i ett nytt eller befintligt GitHub-problem. Det kommer att generera en vacker tabell som kan användas för att snabbt diagnostisera ditt problem.', - 'debug_pretty_table' => 'Om du kopierar/klistrar in rutan nedan i ett GitHub-problem kommer det att generera en tabell. Omge inte denna text med backticks eller citat.', - 'debug_additional_data' => 'Du kan också dela innehållet i rutan nedan. Du kan också kopiera och klistra in detta i en ny eller befintlig GitHub-utgåva. Innehållet i denna ruta kan dock innehålla privat information som kontonamn, transaktionsuppgifter eller e-postadresser.', + 'debug_page' => 'Debug sida', + 'debug_submit_instructions' => 'Om du stöter på problem kan du använda informationen i den här rutan som felsökningsinformation. Kopiera och klistra in i ett nytt eller befintligt GitHub-problem. Det kommer att generera en vacker tabell som kan användas för att snabbt diagnostisera ditt problem.', + 'debug_pretty_table' => 'Om du kopierar/klistrar in rutan nedan i ett GitHub-problem kommer det att generera en tabell. Omge inte denna text med backticks eller citat.', + 'debug_additional_data' => 'Du kan också dela innehållet i rutan nedan. Du kan också kopiera och klistra in detta i en ny eller befintlig GitHub-utgåva. Innehållet i denna ruta kan dock innehålla privat information som kontonamn, transaktionsuppgifter eller e-postadresser.', // object groups - 'object_groups_menu_bar' => 'Grupper', - 'object_groups_page_title' => 'Grupper', - 'object_groups_breadcrumb' => 'Grupper', - 'object_groups_index' => 'Översikt', - 'object_groups' => 'Grupper', - 'object_groups_empty_explain' => 'Vissa saker i Firefly III kan delas in i grupper. Spargrisar till exempel, har ett "Grupp" fält i redigera och skapa vyerna. När du anger det här fältet kan du redigera gruppernas namn och ordning på den här sidan. För mer information, kolla in hjälpsidorna i det övre högra hörnet, under (?)-ikonen.', - 'object_group_title' => 'Titel', - 'edit_object_group' => 'Redigera grupp ":title"', - 'delete_object_group' => 'Ta bort grupp ":title"', - 'update_object_group' => 'Uppdatera grupp', - 'updated_object_group' => 'Uppdaterade gruppen ":title"', - 'deleted_object_group' => 'Tog bort gruppen ":title"', - 'object_group' => 'Grupp', + 'object_groups_menu_bar' => 'Grupper', + 'object_groups_page_title' => 'Grupper', + 'object_groups_breadcrumb' => 'Grupper', + 'object_groups_index' => 'Översikt', + 'object_groups' => 'Grupper', + 'object_groups_empty_explain' => 'Vissa saker i Firefly III kan delas in i grupper. Spargrisar till exempel, har ett "Grupp" fält i redigera och skapa vyerna. När du anger det här fältet kan du redigera gruppernas namn och ordning på den här sidan. För mer information, kolla in hjälpsidorna i det övre högra hörnet, under (?)-ikonen.', + 'object_group_title' => 'Titel', + 'edit_object_group' => 'Redigera grupp ":title"', + 'delete_object_group' => 'Ta bort grupp ":title"', + 'update_object_group' => 'Uppdatera grupp', + 'updated_object_group' => 'Uppdaterade gruppen ":title"', + 'deleted_object_group' => 'Tog bort gruppen ":title"', + 'object_group' => 'Grupp', // other stuff - 'placeholder' => '[Platshållare]', + 'placeholder' => '[Platshållare]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Spargris', - 'ale_action_remove_from_piggy' => 'Spargris', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Spargris', + 'ale_action_remove_from_piggy' => 'Spargris', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/sv_SE/validation.php b/resources/lang/sv_SE/validation.php index c8f3d28681..fdd261d300 100644 --- a/resources/lang/sv_SE/validation.php +++ b/resources/lang/sv_SE/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/th_TH/firefly.php b/resources/lang/th_TH/firefly.php index 44ca6a4c9a..15bd4e2e54 100644 --- a/resources/lang/th_TH/firefly.php +++ b/resources/lang/th_TH/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'ปิด', - 'actions' => 'ดำเนินการ', - 'edit' => 'แก้ไข', - 'delete' => 'ลบ', - 'split' => 'แบ่ง', - 'single_split' => 'การแบ่ง', - 'clone' => 'ทำสำเนา', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => '7 วันที่แล้ว', - 'last_thirty_days' => '30 วันที่ผ่านมา', - 'last_180_days' => '180 วันที่ผ่านมา', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'YTD', - 'welcome_back' => 'What\'s playing?', - 'everything' => 'ทุกอย่าง', - 'today' => 'วันนี้', - 'customRange' => 'Custom range', - 'date_range' => 'ช่วงวันที่', - 'apply' => 'นำไปใช้', - 'select_date' => 'เลือกวันที่', - 'cancel' => 'ยกเลิก', - 'from' => 'จาก', - 'to' => 'ถึง', - 'structure' => 'Structure', - 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', - 'showEverything' => 'แสดงทุกอย่าง', - 'never' => 'Never', - 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', - 'removed_amount' => 'ลบ :amount', - 'added_amount' => 'เพิ่ม :amount', - 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', - 'Opening balance' => 'Opening balance', - 'create_new_stuff' => 'Create new stuff', - 'new_withdrawal' => 'New withdrawal', - 'create_new_transaction' => 'Create a new transaction', - 'sidebar_frontpage_create' => 'Create', - 'new_transaction' => 'New transaction', - 'no_rules_for_bill' => 'This bill has no rules associated to it.', - 'go_to_asset_accounts' => 'View your asset accounts', - 'go_to_budgets' => 'Go to your budgets', - 'go_to_withdrawals' => 'Go to your withdrawals', - 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', - 'go_to_categories' => 'Go to your categories', - 'go_to_bills' => 'Go to your bills', - 'go_to_expense_accounts' => 'ดูบัญชีรายจ่ายของคุณ', - 'go_to_revenue_accounts' => 'ดูบัญชีรายได้ของคุณ', - 'go_to_piggies' => 'Go to your piggy banks', - 'new_deposit' => 'New deposit', - 'new_transfer' => 'New transfer', - 'new_transfers' => 'New transfer', - 'new_asset_account' => 'New asset account', - 'new_expense_account' => 'New expense account', - 'new_revenue_account' => 'New revenue account', - 'new_liabilities_account' => 'New liability', - 'new_budget' => 'New budget', - 'new_bill' => 'New bill', - 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', - 'flash_success' => 'เสร็จสมบูรณ์!', - 'flash_info' => 'ข้อความ', - 'flash_warning' => 'คำเตือน!', - 'flash_error' => 'ข้อผิดพลาด!', - 'flash_danger' => 'Danger!', - 'flash_info_multiple' => 'There is one message|There are :count messages', - 'flash_error_multiple' => 'There is one error|There are :count errors', - 'net_worth' => 'Net worth', - 'help_for_this_page' => 'Help for this page', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => 'สวัสดี!', - 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', - 'two_factor_code_here' => 'Enter code here', - 'two_factor_title' => 'Two factor authentication', - 'authenticate' => 'Authenticate', - 'two_factor_forgot_title' => 'Lost two factor authentication', - 'two_factor_forgot' => 'I forgot my two-factor thing.', - 'two_factor_lost_header' => 'Lost your two factor authentication?', - 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', - 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', - 'pref_two_factor_new_backup_codes' => 'Get new backup codes', - 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', - '2fa_i_have_them' => 'I stored them!', - 'warning_much_data' => ':days days of data may take a while to load.', - 'registered' => 'You have registered successfully!', - 'Default asset account' => 'Default asset account', - 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', - 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', - 'Savings account' => 'Savings account', - 'Credit card' => 'Credit card', - 'source_accounts' => 'Source account|Source accounts', - 'destination_accounts' => 'Destination account|Destination accounts', - 'user_id_is' => 'Your user id is :user', - 'field_supports_markdown' => 'This field supports Markdown.', - 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', - 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', - 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', - 'show_all_no_filter' => 'Show all transactions without grouping them by date.', - 'expenses_by_category' => 'Expenses by category', - 'expenses_by_budget' => 'Expenses by budget', - 'income_by_category' => 'Income by category', - 'expenses_by_asset_account' => 'Expenses by asset account', - 'expenses_by_expense_account' => 'Expenses by expense account', - 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', - 'sum_of_expenses' => 'Sum of expenses', - 'sum_of_income' => 'Sum of income', - 'liabilities' => 'Liabilities', - 'spent_in_specific_budget' => 'Spent in budget ":budget"', - 'spent_in_specific_double' => 'Spent in account ":account"', - 'earned_in_specific_double' => 'Earned in account ":account"', - 'source_account' => 'Source account', - 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', - 'destination_account' => 'Destination account', - 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', - 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', - 'left_in_budget_limit' => 'Left to spend according to budgeting', - 'current_period' => 'Current period', - 'show_the_current_period_and_overview' => 'Show the current period and overview', - 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', - 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', - 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', - 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', - 'chart_category_all' => 'Chart for all transactions for category ":name"', - 'clone_withdrawal' => 'Clone this withdrawal', - 'clone_deposit' => 'Clone this deposit', - 'clone_transfer' => 'Clone this transfer', - 'multi_select_no_selection' => 'None selected', - 'multi_select_select_all' => 'Select all', - 'multi_select_n_selected' => 'selected', - 'multi_select_all_selected' => 'All selected', - 'multi_select_filter_placeholder' => 'Find..', - 'intro_next_label' => 'Next', - 'intro_prev_label' => 'Previous', - 'intro_skip_label' => 'Skip', - 'intro_done_label' => 'Done', - 'between_dates_breadcrumb' => 'Between :start and :end', - 'all_journals_without_budget' => 'All transactions without a budget', - 'journals_without_budget' => 'Transactions without a budget', - 'all_journals_without_category' => 'All transactions without a category', - 'journals_without_category' => 'Transactions without a category', - 'all_journals_for_account' => 'All transactions for account :name', - 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', - 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => 'Transferred', - 'all_withdrawal' => 'All expenses', - 'all_transactions' => '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', - 'invalid_server_configuration' => 'Invalid server configuration', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Quickswitch', - 'sign_in_to_start' => 'Sign in to start your session', - 'sign_in' => 'Sign in', - 'register_new_account' => 'Register a new account', - 'forgot_my_password' => 'I forgot my password', - 'problems_with_input' => 'There were some problems with your input.', - 'reset_password' => 'Reset your password', - 'button_reset_password' => 'Reset password', - 'reset_button' => 'Reset', - 'want_to_login' => 'I want to login', - 'login_page_title' => 'Login to Firefly III', - 'register_page_title' => 'Register at Firefly III', - 'forgot_pw_page_title' => 'Forgot your password for 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.', - 'no_att_demo_user' => 'The demo user can\'t upload attachments.', - 'button_register' => 'Register', - 'authorization' => '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', - 'per_period_sum_1D' => 'Expected daily costs', - 'per_period_sum_1W' => 'Expected weekly costs', - 'per_period_sum_1M' => 'Expected monthly costs', - 'per_period_sum_3M' => 'Expected quarterly costs', - 'per_period_sum_6M' => 'Expected half-yearly costs', - 'per_period_sum_1Y' => 'Expected yearly costs', - 'average_per_bill' => 'average per bill', - 'expected_total' => 'expected total', - 'reconciliation_account_name' => ':name reconciliation (:currency)', - 'saved' => 'Saved', - 'advanced_options' => '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!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'ปิด', + 'actions' => 'ดำเนินการ', + 'edit' => 'แก้ไข', + 'delete' => 'ลบ', + 'split' => 'แบ่ง', + 'single_split' => 'การแบ่ง', + 'clone' => 'ทำสำเนา', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => '7 วันที่แล้ว', + 'last_thirty_days' => '30 วันที่ผ่านมา', + 'last_180_days' => '180 วันที่ผ่านมา', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'YTD', + 'welcome_back' => 'What\'s playing?', + 'everything' => 'ทุกอย่าง', + 'today' => 'วันนี้', + 'customRange' => 'Custom range', + 'date_range' => 'ช่วงวันที่', + 'apply' => 'นำไปใช้', + 'select_date' => 'เลือกวันที่', + 'cancel' => 'ยกเลิก', + 'from' => 'จาก', + 'to' => 'ถึง', + 'structure' => 'Structure', + 'help_translating' => 'This help text is not yet available in your language. Will you help translate?', + 'showEverything' => 'แสดงทุกอย่าง', + 'never' => 'Never', + 'no_results_for_empty_search' => 'Your search was empty, so nothing was found.', + 'removed_amount' => 'ลบ :amount', + 'added_amount' => 'เพิ่ม :amount', + 'asset_account_role_help' => 'Any extra options resulting from your choice can be set later.', + 'Opening balance' => 'Opening balance', + 'create_new_stuff' => 'Create new stuff', + 'new_withdrawal' => 'New withdrawal', + 'create_new_transaction' => 'Create a new transaction', + 'sidebar_frontpage_create' => 'Create', + 'new_transaction' => 'New transaction', + 'no_rules_for_bill' => 'This bill has no rules associated to it.', + 'go_to_asset_accounts' => 'View your asset accounts', + 'go_to_budgets' => 'Go to your budgets', + 'go_to_withdrawals' => 'Go to your withdrawals', + 'clones_journal_x' => 'This transaction is a clone of ":description" (#:id)', + 'go_to_categories' => 'Go to your categories', + 'go_to_bills' => 'Go to your bills', + 'go_to_expense_accounts' => 'ดูบัญชีรายจ่ายของคุณ', + 'go_to_revenue_accounts' => 'ดูบัญชีรายได้ของคุณ', + 'go_to_piggies' => 'Go to your piggy banks', + 'new_deposit' => 'New deposit', + 'new_transfer' => 'New transfer', + 'new_transfers' => 'New transfer', + 'new_asset_account' => 'New asset account', + 'new_expense_account' => 'New expense account', + 'new_revenue_account' => 'New revenue account', + 'new_liabilities_account' => 'New liability', + 'new_budget' => 'New budget', + 'new_bill' => 'New bill', + 'block_account_logout' => 'You have been logged out. Blocked accounts cannot use this site. Did you register with a valid email address?', + 'flash_success' => 'เสร็จสมบูรณ์!', + 'flash_info' => 'ข้อความ', + 'flash_warning' => 'คำเตือน!', + 'flash_error' => 'ข้อผิดพลาด!', + 'flash_danger' => 'Danger!', + 'flash_info_multiple' => 'There is one message|There are :count messages', + 'flash_error_multiple' => 'There is one error|There are :count errors', + 'net_worth' => 'Net worth', + 'help_for_this_page' => 'Help for this page', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => 'สวัสดี!', + 'two_factor_enter_code' => 'To continue, please enter your two factor authentication code. Your application can generate it for you.', + 'two_factor_code_here' => 'Enter code here', + 'two_factor_title' => 'Two factor authentication', + 'authenticate' => 'Authenticate', + 'two_factor_forgot_title' => 'Lost two factor authentication', + 'two_factor_forgot' => 'I forgot my two-factor thing.', + 'two_factor_lost_header' => 'Lost your two factor authentication?', + 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Otherwise, email the site owner, :site_owner and ask them to reset your two factor authentication.', + 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', + 'pref_two_factor_new_backup_codes' => 'Get new backup codes', + 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', + '2fa_i_have_them' => 'I stored them!', + 'warning_much_data' => ':days days of data may take a while to load.', + 'registered' => 'You have registered successfully!', + 'Default asset account' => 'Default asset account', + 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', + 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', + 'Savings account' => 'Savings account', + 'Credit card' => 'Credit card', + 'source_accounts' => 'Source account|Source accounts', + 'destination_accounts' => 'Destination account|Destination accounts', + 'user_id_is' => 'Your user id is :user', + 'field_supports_markdown' => 'This field supports Markdown.', + 'need_more_help' => 'If you need more help using Firefly III, please open a ticket on Github.', + 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', + 'intro_boxes_after_refresh' => 'The introduction boxes will reappear when you refresh the page.', + 'show_all_no_filter' => 'Show all transactions without grouping them by date.', + 'expenses_by_category' => 'Expenses by category', + 'expenses_by_budget' => 'Expenses by budget', + 'income_by_category' => 'Income by category', + 'expenses_by_asset_account' => 'Expenses by asset account', + 'expenses_by_expense_account' => 'Expenses by expense account', + 'cannot_redirect_to_account' => 'Firefly III cannot redirect you to the correct page. Apologies.', + 'sum_of_expenses' => 'Sum of expenses', + 'sum_of_income' => 'Sum of income', + 'liabilities' => 'Liabilities', + 'spent_in_specific_budget' => 'Spent in budget ":budget"', + 'spent_in_specific_double' => 'Spent in account ":account"', + 'earned_in_specific_double' => 'Earned in account ":account"', + 'source_account' => 'Source account', + 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', + 'destination_account' => 'Destination account', + 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', + 'sum_of_expenses_in_budget' => 'Spent total in budget ":budget"', + 'left_in_budget_limit' => 'Left to spend according to budgeting', + 'current_period' => 'Current period', + 'show_the_current_period_and_overview' => 'Show the current period and overview', + 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', + 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', + 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', + 'chart_category_in_period' => 'Chart for all transactions for category ":name" between :start and :end', + 'chart_category_all' => 'Chart for all transactions for category ":name"', + 'clone_withdrawal' => 'Clone this withdrawal', + 'clone_deposit' => 'Clone this deposit', + 'clone_transfer' => 'Clone this transfer', + 'multi_select_no_selection' => 'None selected', + 'multi_select_select_all' => 'Select all', + 'multi_select_n_selected' => 'selected', + 'multi_select_all_selected' => 'All selected', + 'multi_select_filter_placeholder' => 'Find..', + 'intro_next_label' => 'Next', + 'intro_prev_label' => 'Previous', + 'intro_skip_label' => 'Skip', + 'intro_done_label' => 'Done', + 'between_dates_breadcrumb' => 'Between :start and :end', + 'all_journals_without_budget' => 'All transactions without a budget', + 'journals_without_budget' => 'Transactions without a budget', + 'all_journals_without_category' => 'All transactions without a category', + 'journals_without_category' => 'Transactions without a category', + 'all_journals_for_account' => 'All transactions for account :name', + 'chart_all_journals_for_account' => 'Chart of all transactions for account :name', + 'journals_in_period_for_account' => 'All transactions for account :name between :start and :end', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => 'Transferred', + 'all_withdrawal' => 'All expenses', + 'all_transactions' => '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', + 'invalid_server_configuration' => 'Invalid server configuration', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Quickswitch', + 'sign_in_to_start' => 'Sign in to start your session', + 'sign_in' => 'Sign in', + 'register_new_account' => 'Register a new account', + 'forgot_my_password' => 'I forgot my password', + 'problems_with_input' => 'There were some problems with your input.', + 'reset_password' => 'Reset your password', + 'button_reset_password' => 'Reset password', + 'reset_button' => 'Reset', + 'want_to_login' => 'I want to login', + 'login_page_title' => 'Login to Firefly III', + 'register_page_title' => 'Register at Firefly III', + 'forgot_pw_page_title' => 'Forgot your password for 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.', + 'no_att_demo_user' => 'The demo user can\'t upload attachments.', + 'button_register' => 'Register', + 'authorization' => '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', + 'per_period_sum_1D' => 'Expected daily costs', + 'per_period_sum_1W' => 'Expected weekly costs', + 'per_period_sum_1M' => 'Expected monthly costs', + 'per_period_sum_3M' => 'Expected quarterly costs', + 'per_period_sum_6M' => 'Expected half-yearly costs', + 'per_period_sum_1Y' => 'Expected yearly costs', + 'average_per_bill' => 'average per bill', + 'expected_total' => 'expected total', + 'reconciliation_account_name' => ':name reconciliation (:currency)', + 'saved' => 'Saved', + 'advanced_options' => '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!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v:version Authorization Request', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'This application will be able to:', - 'button_authorize' => 'Authorize', - 'none_in_select_list' => '(none)', - 'no_piggy_bank' => '(no piggy bank)', - 'name_in_currency' => ':name in :currency', - 'paid_in_currency' => 'Paid in :currency', - 'unpaid_in_currency' => 'Unpaid in :currency', - 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', - 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', - 'all_destination_accounts' => 'Destination accounts', - 'all_source_accounts' => 'Source accounts', - 'back_to_index' => 'Back to the index', - 'cant_logout_guard' => 'Firefly III can\'t log you out.', - 'internal_reference' => 'Internal reference', + 'authorization_request' => 'Firefly III v:version Authorization Request', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'This application will be able to:', + 'button_authorize' => 'Authorize', + 'none_in_select_list' => '(none)', + 'no_piggy_bank' => '(no piggy bank)', + 'name_in_currency' => ':name in :currency', + 'paid_in_currency' => 'Paid in :currency', + 'unpaid_in_currency' => 'Unpaid in :currency', + 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', + 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', + 'all_destination_accounts' => 'Destination accounts', + 'all_source_accounts' => 'Source accounts', + 'back_to_index' => 'Back to the index', + 'cant_logout_guard' => 'Firefly III can\'t log you out.', + 'internal_reference' => 'Internal reference', // check for updates: - 'update_check_title' => 'Check for updates', - 'admin_update_check_title' => 'Automatically check for update', - 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', - 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', - 'updates_ask_me_later' => 'Ask me later', - 'updates_do_not_check' => 'Do not check for updates', - 'updates_enable_check' => 'Enable the check for updates', - 'admin_update_check_now_title' => 'Check for updates now', - 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', - 'check_for_updates_button' => 'Check now!', - 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', - 'update_version_beta' => 'This version is a BETA version. You may run into issues.', - 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'You are running :version, which is the latest available release.', - 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', - 'update_check_error' => 'An error occurred while checking for updates: :error', - 'unknown_error' => 'Unknown error. Sorry about that.', - 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', - 'admin_update_channel_title' => 'Update channel', - 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', - 'update_channel_stable' => 'Stable. Everything should work as expected.', - 'update_channel_beta' => 'Beta. New features but things may be broken.', - 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', + 'update_check_title' => 'Check for updates', + 'admin_update_check_title' => 'Automatically check for update', + 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', + 'check_for_updates_permission' => 'Firefly III can check for updates, but it needs your permission to do so. Please go to the administration to indicate if you would like this feature to be enabled.', + 'updates_ask_me_later' => 'Ask me later', + 'updates_do_not_check' => 'Do not check for updates', + 'updates_enable_check' => 'Enable the check for updates', + 'admin_update_check_now_title' => 'Check for updates now', + 'admin_update_check_now_explain' => 'If you press the button, Firefly III will see if your current version is the latest.', + 'check_for_updates_button' => 'Check now!', + 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', + 'update_version_beta' => 'This version is a BETA version. You may run into issues.', + 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'You are running :version, which is the latest available release.', + 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', + 'update_check_error' => 'An error occurred while checking for updates: :error', + 'unknown_error' => 'Unknown error. Sorry about that.', + 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', + 'admin_update_channel_title' => 'Update channel', + 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', + 'update_channel_stable' => 'Stable. Everything should work as expected.', + 'update_channel_beta' => 'Beta. New features but things may be broken.', + 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', // search - 'search' => 'Search', - 'search_query' => 'Query', - 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', - 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', - 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => 'Search', + 'search_query' => 'Query', + 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', + 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', + 'search_for_query' => 'Firefly III is searching for transactions with all of these words in them: :query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old @@ -351,368 +351,368 @@ 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_id' => 'Transaction ID is ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaction date is before or on ":value"', - 'search_modifier_date_after' => 'Transaction date is after or on ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Description is exactly ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'The transaction must have an attachment', - 'search_modifier_has_no_category' => 'The transaction must have no category', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'The transaction must have a (any) category', - 'search_modifier_has_no_budget' => 'The transaction must have no budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'The transaction must have no bill', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'The transaction has no notes', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'The transaction must have notes', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Amount is less than or equal to :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Amount is more than or equal to :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Source account name contains ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Bill is ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaction type is ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + '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_id' => 'Transaction ID is ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaction date is before or on ":value"', + 'search_modifier_date_after' => 'Transaction date is after or on ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Description is exactly ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'The transaction must have an attachment', + 'search_modifier_has_no_category' => 'The transaction must have no category', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'The transaction must have a (any) category', + 'search_modifier_has_no_budget' => 'The transaction must have no budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'The transaction must have no bill', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'The transaction has no notes', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'The transaction must have notes', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Amount is less than or equal to :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Amount is more than or equal to :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Source account name contains ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Bill is ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaction type is ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => 'Search', - 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', - 'search_error' => 'Error while searching', - 'search_searching' => 'Searching ...', - 'search_results' => 'Search results', + 'modifiers_applies_are' => 'The following modifiers are applied to the search as well:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => 'Search', + 'search_box_intro' => 'Welcome to the search function of Firefly III. Enter your search query in the box. Make sure you check out the help file because the search is pretty advanced.', + 'search_error' => 'Error while searching', + 'search_searching' => 'Searching ...', + 'search_results' => 'Search results', // repeat frequencies: - 'repeat_freq_yearly' => 'yearly', - 'repeat_freq_half-year' => 'every half-year', - 'repeat_freq_quarterly' => 'quarterly', - 'repeat_freq_monthly' => 'monthly', - 'repeat_freq_weekly' => 'weekly', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => 'weekly', - 'quarterly' => 'quarterly', - 'half-year' => 'every half year', - 'yearly' => 'yearly', + 'repeat_freq_yearly' => 'yearly', + 'repeat_freq_half-year' => 'every half-year', + 'repeat_freq_quarterly' => 'quarterly', + 'repeat_freq_monthly' => 'monthly', + 'repeat_freq_weekly' => 'weekly', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => 'weekly', + 'quarterly' => 'quarterly', + 'half-year' => 'every half year', + 'yearly' => 'yearly', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Rules', - 'rule_name' => 'Name of rule', - 'rule_triggers' => 'Rule triggers when', - 'rule_actions' => 'Rule will', - 'new_rule' => 'New rule', - 'new_rule_group' => 'New rule group', - 'rule_priority_up' => 'Give rule more priority', - 'rule_priority_down' => 'Give rule less priority', - 'make_new_rule_group' => 'Make new rule group', - 'store_new_rule_group' => 'Store new rule group', - 'created_new_rule_group' => 'New rule group ":title" stored!', - 'updated_rule_group' => 'Successfully updated rule group ":title".', - 'edit_rule_group' => 'Edit rule group ":title"', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => 'Delete rule group ":title"', - 'deleted_rule_group' => 'Deleted rule group ":title"', - 'update_rule_group' => 'Update rule group', - 'no_rules_in_group' => 'There are no rules in this group', - 'move_rule_group_up' => 'Move rule group up', - 'move_rule_group_down' => 'Move rule group down', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => 'Make a new rule in rule group ":title"', - 'make_new_rule_no_group' => 'Make a new rule', - 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => 'strict rule', - 'rule_is_not_strict' => 'non-strict rule', - 'rule_help_stop_processing' => 'When you check this box, later rules in this group will not be executed.', - 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', - 'rule_help_active' => 'Inactive rules will never fire.', - 'stored_new_rule' => 'Stored new rule with title ":title"', - 'deleted_rule' => 'Deleted rule with title ":title"', - 'store_new_rule' => 'Store new rule', - 'updated_rule' => 'Updated rule with title ":title"', - 'default_rule_group_name' => 'Default rules', - 'default_rule_group_description' => 'All your rules not in a particular group.', - 'trigger' => 'Trigger', - 'trigger_value' => 'Trigger on value', - 'stop_processing_other_triggers' => 'Stop processing other triggers', - 'add_rule_trigger' => 'Add new trigger', - 'action' => 'Action', - 'action_value' => 'Action value', - 'stop_executing_other_actions' => 'Stop executing other actions', - 'add_rule_action' => 'Add new action', - 'edit_rule' => 'Edit rule ":title"', - 'delete_rule' => 'Delete rule ":title"', - 'update_rule' => 'Update rule', - 'test_rule_triggers' => 'See matching transactions', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => 'No valid triggers provided.', - 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', - 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', - 'include_transactions_from_accounts' => 'Include transactions from these accounts', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Execute', - 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', - 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', - 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Rules', + 'rule_name' => 'Name of rule', + 'rule_triggers' => 'Rule triggers when', + 'rule_actions' => 'Rule will', + 'new_rule' => 'New rule', + 'new_rule_group' => 'New rule group', + 'rule_priority_up' => 'Give rule more priority', + 'rule_priority_down' => 'Give rule less priority', + 'make_new_rule_group' => 'Make new rule group', + 'store_new_rule_group' => 'Store new rule group', + 'created_new_rule_group' => 'New rule group ":title" stored!', + 'updated_rule_group' => 'Successfully updated rule group ":title".', + 'edit_rule_group' => 'Edit rule group ":title"', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => 'Delete rule group ":title"', + 'deleted_rule_group' => 'Deleted rule group ":title"', + 'update_rule_group' => 'Update rule group', + 'no_rules_in_group' => 'There are no rules in this group', + 'move_rule_group_up' => 'Move rule group up', + 'move_rule_group_down' => 'Move rule group down', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => 'Make a new rule in rule group ":title"', + 'make_new_rule_no_group' => 'Make a new rule', + 'instructions_rule_from_bill' => 'In order to match transactions to your new bill ":name", Firefly III can create a rule that will automatically be checked against any transactions you store. Please verify the details below and store the rule to have Firefly III automatically match transactions to your new bill.', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => 'strict rule', + 'rule_is_not_strict' => 'non-strict rule', + 'rule_help_stop_processing' => 'When you check this box, later rules in this group will not be executed.', + 'rule_help_strict' => 'In strict rules ALL triggers must fire for the action(s) to be executed. In non-strict rules, ANY trigger is enough for the action(s) to be executed.', + 'rule_help_active' => 'Inactive rules will never fire.', + 'stored_new_rule' => 'Stored new rule with title ":title"', + 'deleted_rule' => 'Deleted rule with title ":title"', + 'store_new_rule' => 'Store new rule', + 'updated_rule' => 'Updated rule with title ":title"', + 'default_rule_group_name' => 'Default rules', + 'default_rule_group_description' => 'All your rules not in a particular group.', + 'trigger' => 'Trigger', + 'trigger_value' => 'Trigger on value', + 'stop_processing_other_triggers' => 'Stop processing other triggers', + 'add_rule_trigger' => 'Add new trigger', + 'action' => 'Action', + 'action_value' => 'Action value', + 'stop_executing_other_actions' => 'Stop executing other actions', + 'add_rule_action' => 'Add new action', + 'edit_rule' => 'Edit rule ":title"', + 'delete_rule' => 'Delete rule ":title"', + 'update_rule' => 'Update rule', + 'test_rule_triggers' => 'See matching transactions', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => 'No valid triggers provided.', + 'apply_rule_selection' => 'Apply rule ":title" to a selection of your transactions', + 'apply_rule_selection_intro' => 'Rules like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run it on a selection of your existing transactions. This can be useful when you have updated a rule and you need the changes to be applied to all of your other transactions.', + 'include_transactions_from_accounts' => 'Include transactions from these accounts', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Execute', + 'apply_rule_group_selection' => 'Apply rule group ":title" to a selection of your transactions', + 'apply_rule_group_selection_intro' => 'Rule groups like ":title" are normally only applied to new or updated transactions, but you can tell Firefly III to run all the rules in this group on a selection of your existing transactions. This can be useful when you have updated a group of rules and you need the changes to be applied to all of your other transactions.', + 'applied_rule_group_selection' => 'Rule group ":title" has been applied to your selection.', // actions and triggers - 'rule_trigger_store_journal' => 'When a transaction is created', - 'rule_trigger_update_journal' => 'When a transaction is updated', - 'rule_trigger_user_action' => 'User action is ":trigger_value"', + 'rule_trigger_store_journal' => 'When a transaction is created', + 'rule_trigger_update_journal' => 'When a transaction is updated', + 'rule_trigger_user_action' => 'User action is ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', - 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Category is..', - 'rule_trigger_category_is' => 'Category is ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Description starts with..', - 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Description ends with..', - 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Description contains..', - 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Description is..', - 'rule_trigger_description_is' => 'Description is ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaction date is before..', - 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaction date is after..', - 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Budget is..', - 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Transaction currency is..', - 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Has no category', - 'rule_trigger_has_no_category' => 'Transaction has no category', - 'rule_trigger_has_any_category_choice' => 'Has a (any) category', - 'rule_trigger_has_any_category' => 'Transaction has a (any) category', - 'rule_trigger_has_no_budget_choice' => 'Has no budget', - 'rule_trigger_has_no_budget' => 'Transaction has no budget', - 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', - 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', - 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', - 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', - 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', - 'rule_trigger_any_notes_choice' => 'Has (any) notes', - 'rule_trigger_any_notes' => 'Transaction has (any) notes', - 'rule_trigger_no_notes_choice' => 'Has no notes', - 'rule_trigger_no_notes' => 'Transaction has no notes', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', + 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Category is..', + 'rule_trigger_category_is' => 'Category is ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Description starts with..', + 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Description ends with..', + 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Description contains..', + 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Description is..', + 'rule_trigger_description_is' => 'Description is ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaction date is before..', + 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaction date is after..', + 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Budget is..', + 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Transaction currency is..', + 'rule_trigger_currency_is' => 'Transaction currency is ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Has no category', + 'rule_trigger_has_no_category' => 'Transaction has no category', + 'rule_trigger_has_any_category_choice' => 'Has a (any) category', + 'rule_trigger_has_any_category' => 'Transaction has a (any) category', + 'rule_trigger_has_no_budget_choice' => 'Has no budget', + 'rule_trigger_has_no_budget' => 'Transaction has no budget', + 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', + 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', + 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', + 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', + 'rule_trigger_any_notes_choice' => 'Has (any) notes', + 'rule_trigger_any_notes' => 'Transaction has (any) notes', + 'rule_trigger_no_notes_choice' => 'Has no notes', + 'rule_trigger_no_notes' => 'Transaction has no notes', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Set category to ":action_value"', - 'rule_action_clear_category' => 'Clear category', - 'rule_action_set_budget' => 'Set budget to ":action_value"', - 'rule_action_clear_budget' => 'Clear budget', - 'rule_action_add_tag' => 'Add tag ":action_value"', - 'rule_action_remove_tag' => 'Remove tag ":action_value"', - 'rule_action_remove_all_tags' => 'Remove all tags', - 'rule_action_set_description' => 'Set description to ":action_value"', - 'rule_action_append_description' => 'Append description with ":action_value"', - 'rule_action_prepend_description' => 'Prepend description with ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Clear any category', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Clear any budget', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Remove all tags', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Set source account to :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Set destination account to :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Append notes with ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', - 'rule_action_clear_notes_choice' => 'Remove any notes', - 'rule_action_clear_notes' => 'Remove any notes', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Link to bill ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Set notes to ":action_value"', - 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', - 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', - 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', - 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', - 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Rule group for bills', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Create a new rule for bill ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Rule for bill ":name"', - 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Set category to ":action_value"', + 'rule_action_clear_category' => 'Clear category', + 'rule_action_set_budget' => 'Set budget to ":action_value"', + 'rule_action_clear_budget' => 'Clear budget', + 'rule_action_add_tag' => 'Add tag ":action_value"', + 'rule_action_remove_tag' => 'Remove tag ":action_value"', + 'rule_action_remove_all_tags' => 'Remove all tags', + 'rule_action_set_description' => 'Set description to ":action_value"', + 'rule_action_append_description' => 'Append description with ":action_value"', + 'rule_action_prepend_description' => 'Prepend description with ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Clear any category', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Clear any budget', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Remove all tags', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Set source account to :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Set destination account to :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Append notes with ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Prepend notes with ":action_value"', + 'rule_action_clear_notes_choice' => 'Remove any notes', + 'rule_action_clear_notes' => 'Remove any notes', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Link to bill ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Set notes to ":action_value"', + 'rule_action_convert_deposit_choice' => 'Convert the transaction to a deposit', + 'rule_action_convert_deposit' => 'Convert the transaction to a deposit from ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Convert the transaction to a withdrawal', + 'rule_action_convert_withdrawal' => 'Convert the transaction to a withdrawal to ":action_value"', + 'rule_action_convert_transfer_choice' => 'Convert the transaction to a transfer', + 'rule_action_convert_transfer' => 'Convert the transaction to a transfer with ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Rule group for bills', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Create a new rule for bill ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Rule for bill ":name"', + 'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => 'Store new tag', - 'update_tag' => 'Update tag', - 'no_location_set' => 'No location set.', - 'meta_data' => 'Meta data', - 'location' => 'Location', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Without date', - 'result' => 'Result', - 'sums_apply_to_range' => 'All sums apply to the selected range', - 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Clear location', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Store new tag', + 'update_tag' => 'Update tag', + 'no_location_set' => 'No location set.', + 'meta_data' => 'Meta data', + 'location' => 'Location', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Without date', + 'result' => 'Result', + 'sums_apply_to_range' => 'All sums apply to the selected range', + 'mapbox_api_key' => 'To use map, get an API key from Mapbox. Open your .env file and enter this code after MAPBOX_API_KEY=.', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Clear location', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(equal to language)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Home screen accounts', - 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', - 'pref_view_range' => 'View range', - 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', - 'pref_1D' => 'One day', - 'pref_1W' => 'One week', - 'pref_1M' => 'One month', - 'pref_3M' => 'Three months (quarter)', - 'pref_6M' => 'Six months', - 'pref_1Y' => 'One year', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Languages', - 'pref_locale' => 'Locale settings', - 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => 'Fiscal year settings', - 'pref_custom_fiscal_year_label' => 'Enabled', - 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', - 'pref_fiscal_year_start_label' => 'Fiscal year start date', - 'pref_two_factor_auth' => '2-step verification', - 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Enable 2-step verification', - 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', - 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', - 'pref_two_factor_auth_code' => 'Verify code', - 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', - 'pref_two_factor_auth_reset_code' => 'Reset verification code', - 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => 'Save settings', - 'saved_preferences' => 'Preferences saved!', - 'preferences_general' => 'General', - 'preferences_frontpage' => 'Home screen', - 'preferences_security' => 'Security', - 'preferences_layout' => 'Layout', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Show deposits on the home screen', - 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', - 'pref_home_do_show_deposits' => 'Yes, show them', - 'successful_count' => 'of which :count successful', - 'list_page_size_title' => 'Page size', - 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', - 'list_page_size_label' => 'Page size', - 'between_dates' => '(:start and :end)', - 'pref_optional_fields_transaction' => 'Optional fields for transactions', - 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', - 'optional_tj_date_fields' => 'Date fields', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => 'Attachment fields', - 'pref_optional_tj_interest_date' => 'Interest date', - 'pref_optional_tj_book_date' => 'Book date', - 'pref_optional_tj_process_date' => 'Processing date', - 'pref_optional_tj_due_date' => 'Due date', - 'pref_optional_tj_payment_date' => 'Payment date', - 'pref_optional_tj_invoice_date' => 'Invoice date', - 'pref_optional_tj_internal_reference' => 'Internal reference', - 'pref_optional_tj_notes' => 'Notes', - 'pref_optional_tj_attachments' => 'Attachments', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => 'Dates', - 'optional_field_meta_business' => 'Business', - 'optional_field_attachments' => 'Attachments', - 'optional_field_meta_data' => 'Optional meta data', - 'external_url' => 'External URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(equal to language)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Home screen accounts', + 'pref_home_screen_accounts_help' => 'Which accounts should be displayed on the home page?', + 'pref_view_range' => 'View range', + 'pref_view_range_help' => 'Some charts are automatically grouped in periods. Your budgets will also be grouped in periods. What period would you prefer?', + 'pref_1D' => 'One day', + 'pref_1W' => 'One week', + 'pref_1M' => 'One month', + 'pref_3M' => 'Three months (quarter)', + 'pref_6M' => 'Six months', + 'pref_1Y' => 'One year', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Languages', + 'pref_locale' => 'Locale settings', + 'pref_languages_help' => 'Firefly III supports several languages. Which one do you prefer?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => 'Fiscal year settings', + 'pref_custom_fiscal_year_label' => 'Enabled', + 'pref_custom_fiscal_year_help' => 'In countries that use a financial year other than January 1 to December 31, you can switch this on and specify start / end days of the fiscal year', + 'pref_fiscal_year_start_label' => 'Fiscal year start date', + 'pref_two_factor_auth' => '2-step verification', + 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Enable 2-step verification', + 'pref_two_factor_auth_disabled' => '2-step verification code removed and disabled', + 'pref_two_factor_auth_remove_it' => 'Don\'t forget to remove the account from your authentication app!', + 'pref_two_factor_auth_code' => 'Verify code', + 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', + 'pref_two_factor_auth_reset_code' => 'Reset verification code', + 'pref_two_factor_auth_disable_2fa' => 'Disable 2FA', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => 'Save settings', + 'saved_preferences' => 'Preferences saved!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Home screen', + 'preferences_security' => 'Security', + 'preferences_layout' => 'Layout', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Show deposits on the home screen', + 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', + 'pref_home_do_show_deposits' => 'Yes, show them', + 'successful_count' => 'of which :count successful', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', + 'between_dates' => '(:start and :end)', + 'pref_optional_fields_transaction' => 'Optional fields for transactions', + 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', + 'optional_tj_date_fields' => 'Date fields', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => 'Attachment fields', + 'pref_optional_tj_interest_date' => 'Interest date', + 'pref_optional_tj_book_date' => 'Book date', + 'pref_optional_tj_process_date' => 'Processing date', + 'pref_optional_tj_due_date' => 'Due date', + 'pref_optional_tj_payment_date' => 'Payment date', + 'pref_optional_tj_invoice_date' => 'Invoice date', + 'pref_optional_tj_internal_reference' => 'Internal reference', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Attachments', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Business', + 'optional_field_attachments' => 'Attachments', + 'optional_field_meta_data' => 'Optional meta data', + 'external_url' => 'External URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Delete ALL your categories', - 'delete_all_tags' => 'Delete ALL your tags', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Change your password', - 'delete_account' => 'Delete account', - 'current_password' => 'Current password', - 'new_password' => 'New password', - 'new_password_again' => 'New password (again)', - 'delete_your_account' => 'Delete your account', - 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', - 'delete_your_account_password' => 'Enter your password to continue.', - 'password' => 'Password', - 'are_you_sure' => 'Are you sure? You cannot undo this.', - 'delete_account_button' => 'DELETE your account', - 'invalid_current_password' => 'Invalid current password!', - 'password_changed' => 'Password changed!', - 'should_change' => 'The idea is to change your password.', - 'invalid_password' => 'Invalid password!', - 'what_is_pw_security' => 'What is "verify password security"?', - 'secure_pw_title' => 'How to choose a secure password', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', - 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', - 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', - 'secure_pw_working_title' => 'How does it work?', - 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Should I check the box?', - 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', - 'command_line_token' => 'Command line token', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'A new command line token was generated', - 'change_your_email' => 'Change your email address', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Until you verify your email address, you cannot login.', - 'login_with_new_email' => 'You can now login with your new email address.', - 'login_with_old_email' => 'You can now login with your old email address again.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Create Client', - 'profile_oauth_edit_client' => 'Edit Client', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Redirect URL', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Authorized clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Create new token', - 'profile_create_token' => 'Create token', - 'profile_create' => 'Create', - 'profile_save_changes' => 'Save changes', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Delete ALL your categories', + 'delete_all_tags' => 'Delete ALL your tags', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Change your password', + 'delete_account' => 'Delete account', + 'current_password' => 'Current password', + 'new_password' => 'New password', + 'new_password_again' => 'New password (again)', + 'delete_your_account' => 'Delete your account', + 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', + 'delete_your_account_password' => 'Enter your password to continue.', + 'password' => 'Password', + 'are_you_sure' => 'Are you sure? You cannot undo this.', + 'delete_account_button' => 'DELETE your account', + 'invalid_current_password' => 'Invalid current password!', + 'password_changed' => 'Password changed!', + 'should_change' => 'The idea is to change your password.', + 'invalid_password' => 'Invalid password!', + 'what_is_pw_security' => 'What is "verify password security"?', + 'secure_pw_title' => 'How to choose a secure password', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', + 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', + 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', + 'secure_pw_working_title' => 'How does it work?', + 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Should I check the box?', + 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', + 'command_line_token' => 'Command line token', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'A new command line token was generated', + 'change_your_email' => 'Change your email address', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Until you verify your email address, you cannot login.', + 'login_with_new_email' => 'You can now login with your new email address.', + 'login_with_old_email' => 'You can now login with your old email address again.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Create Client', + 'profile_oauth_edit_client' => 'Edit Client', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Redirect URL', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Authorized clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Create new token', + 'profile_create_token' => 'Create token', + 'profile_create' => 'Create', + 'profile_save_changes' => 'Save changes', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Export data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Export data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'One attachment|:count attachments', - 'attachments' => 'Attachments', - 'edit_attachment' => 'Edit attachment ":name"', - 'update_attachment' => 'Update attachment', - 'delete_attachment' => 'Delete attachment ":name"', - 'attachment_deleted' => 'Deleted attachment ":name"', - 'liabilities_deleted' => 'Deleted liability ":name"', - 'attachment_updated' => 'Updated attachment ":name"', - 'upload_max_file_size' => 'Maximum file size: :size', - 'list_all_attachments' => 'List of all attachments', + 'nr_of_attachments' => 'One attachment|:count attachments', + 'attachments' => 'Attachments', + 'edit_attachment' => 'Edit attachment ":name"', + 'update_attachment' => 'Update attachment', + 'delete_attachment' => 'Delete attachment ":name"', + 'attachment_deleted' => 'Deleted attachment ":name"', + 'liabilities_deleted' => 'Deleted liability ":name"', + 'attachment_updated' => 'Updated attachment ":name"', + 'upload_max_file_size' => 'Maximum file size: :size', + 'list_all_attachments' => 'List of all attachments', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Expenses', - 'title_withdrawal' => 'Expenses', - 'title_revenue' => 'Revenue / income', - 'title_deposit' => 'Revenue / income', - 'title_transfer' => 'Transfers', - 'title_transfers' => 'Transfers', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Expenses', + 'title_withdrawal' => 'Expenses', + 'title_revenue' => 'Revenue / income', + 'title_deposit' => 'Revenue / income', + 'title_transfer' => 'Transfers', + 'title_transfers' => 'Transfers', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', - 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', - 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', - 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', - 'convert_to_Deposit' => 'Convert ":description" to a deposit', - 'convert_to_Transfer' => 'Convert ":description" to a transfer', - 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', - 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', - 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', - 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', - 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', - 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', - 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', - 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', - 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', - 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', - 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', - 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', - 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', - 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', - 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', - 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', - 'converted_to_Deposit' => 'The transaction has been converted to a deposit', - 'converted_to_Transfer' => 'The transaction has been converted to a transfer', - 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Convert to a withdrawal', - 'convert_to_deposit' => 'Convert to a deposit', - 'convert_to_transfer' => 'Convert to a transfer', + 'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal', + 'convert_is_already_type_Deposit' => 'This transaction is already a deposit', + 'convert_is_already_type_Transfer' => 'This transaction is already a transfer', + 'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal', + 'convert_to_Deposit' => 'Convert ":description" to a deposit', + 'convert_to_Transfer' => 'Convert ":description" to a transfer', + 'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit', + 'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer', + 'convert_options_DepositTransfer' => 'Convert a deposit into a transfer', + 'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal', + 'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal', + 'convert_options_TransferDeposit' => 'Convert a transfer into a deposit', + 'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit', + 'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer', + 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', + 'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer', + 'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit', + 'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal', + 'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.', + 'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.', + 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', + 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'The transaction has been converted to a transfer', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Convert to a withdrawal', + 'convert_to_deposit' => 'Convert to a deposit', + 'convert_to_transfer' => 'Convert to a transfer', // create new stuff: - 'create_new_withdrawal' => 'Create new withdrawal', - 'create_new_deposit' => 'Create new deposit', - 'create_new_transfer' => 'Create new transfer', - 'create_new_asset' => 'Create new asset account', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Create new expense account', - 'create_new_revenue' => 'Create new revenue account', - 'create_new_piggy_bank' => 'Create new piggy bank', - 'create_new_bill' => 'Create new bill', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Create new withdrawal', + 'create_new_deposit' => 'Create new deposit', + 'create_new_transfer' => 'Create new transfer', + 'create_new_asset' => 'Create new asset account', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Create new expense account', + 'create_new_revenue' => 'Create new revenue account', + 'create_new_piggy_bank' => 'Create new piggy bank', + 'create_new_bill' => 'Create new bill', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Create a new currency', - 'store_currency' => 'Store new currency', - 'update_currency' => 'Update currency', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => 'Currency :name deleted', - 'created_currency' => 'Currency :name created', - 'could_not_store_currency' => 'Could not store the new currency.', - 'updated_currency' => 'Currency :name updated', - 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', - 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', - 'make_default_currency' => 'Make default', - 'default_currency' => 'default', - 'currency_is_disabled' => 'Disabled', - 'enable_currency' => 'Enable', - 'disable_currency' => 'Disable', - 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', - 'currency_is_now_enabled' => 'Currency ":name" has been enabled', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Currency ":name" has been disabled', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Create a new currency', + 'store_currency' => 'Store new currency', + 'update_currency' => 'Update currency', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => 'Currency :name deleted', + 'created_currency' => 'Currency :name created', + 'could_not_store_currency' => 'Could not store the new currency.', + 'updated_currency' => 'Currency :name updated', + 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', + 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', + 'make_default_currency' => 'Make default', + 'default_currency' => 'default', + 'currency_is_disabled' => 'Disabled', + 'enable_currency' => 'Enable', + 'disable_currency' => 'Disable', + 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', + 'currency_is_now_enabled' => 'Currency ":name" has been enabled', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Currency ":name" has been disabled', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Mandatory fields', - 'optionalFields' => 'Optional fields', - 'options' => 'Options', + 'mandatoryFields' => 'Mandatory fields', + 'optionalFields' => 'Optional fields', + 'options' => 'Options', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => 'Create a new budget', - 'store_new_budget' => 'Store new budget', - 'stored_new_budget' => 'Stored new budget ":name"', - 'available_between' => 'Available between :start and :end', - 'transactionsWithoutBudget' => 'Expenses without budget', - 'transactions_no_budget' => 'Expenses without budget between :start and :end', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'New budget', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Inactive budgets', - 'without_budget_between' => 'Transactions without a budget between :start and :end', - 'delete_budget' => 'Delete budget ":name"', - 'deleted_budget' => 'Deleted budget ":name"', - 'edit_budget' => 'Edit budget ":name"', - 'updated_budget' => 'Updated budget ":name"', - 'update_amount' => 'Update amount', - 'update_budget' => 'Update budget', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => 'Period navigator', - 'info_on_available_amount' => 'What do I have available?', - 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', - 'suggested' => 'Suggested', - 'average_between' => 'Average between :start and :end', - 'transferred_in' => 'Transferred (in)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daily', - 'auto_budget_period_weekly' => 'Weekly', - 'auto_budget_period_monthly' => 'Monthly', - 'auto_budget_period_quarterly' => 'Quarterly', - 'auto_budget_period_half_year' => 'Every half year', - 'auto_budget_period_yearly' => 'Yearly', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => 'Create a new budget', + 'store_new_budget' => 'Store new budget', + 'stored_new_budget' => 'Stored new budget ":name"', + 'available_between' => 'Available between :start and :end', + 'transactionsWithoutBudget' => 'Expenses without budget', + 'transactions_no_budget' => 'Expenses without budget between :start and :end', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'New budget', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Inactive budgets', + 'without_budget_between' => 'Transactions without a budget between :start and :end', + 'delete_budget' => 'Delete budget ":name"', + 'deleted_budget' => 'Deleted budget ":name"', + 'edit_budget' => 'Edit budget ":name"', + 'updated_budget' => 'Updated budget ":name"', + 'update_amount' => 'Update amount', + 'update_budget' => 'Update budget', + 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => 'Period navigator', + 'info_on_available_amount' => 'What do I have available?', + 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', + 'suggested' => 'Suggested', + 'average_between' => 'Average between :start and :end', + 'transferred_in' => 'Transferred (in)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daily', + 'auto_budget_period_weekly' => 'Weekly', + 'auto_budget_period_monthly' => 'Monthly', + 'auto_budget_period_quarterly' => 'Quarterly', + 'auto_budget_period_half_year' => 'Every half year', + 'auto_budget_period_yearly' => 'Yearly', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Bill matches transactions between :low and :high.', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => 'Rules related to this bill', - 'repeats' => 'Repeats', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Connected transactions', - 'auto_match_on' => 'Automatically matched by Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Next expected match', - 'delete_bill' => 'Delete bill ":name"', - 'deleted_bill' => 'Deleted bill ":name"', - 'edit_bill' => 'Edit bill ":name"', - 'more' => 'More', - 'rescan_old' => 'Run rules again, on all transactions', - 'update_bill' => 'Update bill', - 'updated_bill' => 'Updated bill ":name"', - 'store_new_bill' => 'Store new bill', - 'stored_new_bill' => 'Stored new bill ":name"', - 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => 'Average bill amount (:year)', - 'average_bill_amount_overall' => 'Average bill amount (overall)', - 'bill_is_active' => 'Bill is active', - 'bill_expected_between' => 'Expected between :start and :end', - 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', - 'skips_over' => 'skips over', - 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', - 'list_inactive_rule' => 'inactive rule', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'จ่ายเมื่อ {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Bill matches transactions between :low and :high.', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => 'Rules related to this bill', + 'repeats' => 'Repeats', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Connected transactions', + 'auto_match_on' => 'Automatically matched by Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Next expected match', + 'delete_bill' => 'Delete bill ":name"', + 'deleted_bill' => 'Deleted bill ":name"', + 'edit_bill' => 'Edit bill ":name"', + 'more' => 'More', + 'rescan_old' => 'Run rules again, on all transactions', + 'update_bill' => 'Update bill', + 'updated_bill' => 'Updated bill ":name"', + 'store_new_bill' => 'Store new bill', + 'stored_new_bill' => 'Stored new bill ":name"', + 'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => 'Average bill amount (:year)', + 'average_bill_amount_overall' => 'Average bill amount (overall)', + 'bill_is_active' => 'Bill is active', + 'bill_expected_between' => 'Expected between :start and :end', + 'bill_will_automatch' => 'Bill will automatically linked to matching transactions', + 'skips_over' => 'skips over', + 'bill_store_error' => 'An unexpected error occurred while storing your new bill. Please check the log files', + 'list_inactive_rule' => 'inactive rule', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'จ่ายเมื่อ {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Details for asset account ":name"', - 'details_for_expense' => 'Details for expense account ":name"', - 'details_for_revenue' => 'Details for revenue account ":name"', - 'details_for_cash' => 'Details for cash account ":name"', - 'store_new_asset_account' => 'Store new asset account', - 'store_new_expense_account' => 'Store new expense account', - 'store_new_revenue_account' => 'Store new revenue account', - 'edit_asset_account' => 'Edit asset account ":name"', - 'edit_expense_account' => 'Edit expense account ":name"', - 'edit_revenue_account' => 'Edit revenue account ":name"', - 'delete_asset_account' => 'Delete asset account ":name"', - 'delete_expense_account' => 'Delete expense account ":name"', - 'delete_revenue_account' => 'Delete revenue account ":name"', - 'delete_liabilities_account' => 'Delete liability ":name"', - 'asset_deleted' => 'Successfully deleted asset account ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Successfully deleted expense account ":name"', - 'revenue_deleted' => 'Successfully deleted revenue account ":name"', - 'update_asset_account' => 'Update asset account', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Update liability', - 'update_expense_account' => 'Update expense account', - 'update_revenue_account' => 'Update revenue account', - 'make_new_asset_account' => 'Create a new asset account', - 'make_new_expense_account' => 'Create a new expense account', - 'make_new_revenue_account' => 'Create a new revenue account', - 'make_new_liabilities_account' => 'Create a new liability', - 'asset_accounts' => 'Asset accounts', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Expense accounts', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Revenue accounts', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Cash accounts', - 'Cash account' => 'Cash account', - 'liabilities_accounts' => 'Liabilities', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Reconcile account ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Delete reconciliation', - 'update_reconciliation' => 'Update reconciliation', - 'amount_cannot_be_zero' => 'The amount cannot be zero', - 'end_of_reconcile_period' => 'End of reconcile period: :period', - 'start_of_reconcile_period' => 'Start of reconcile period: :period', - 'start_balance' => 'Start balance', - 'end_balance' => 'End balance', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Update selection', - 'store_reconcile' => 'Store reconciliation', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Reconciliation', - 'reconciliation' => 'Reconciliation', - 'reconcile_options' => 'Reconciliation options', - 'reconcile_range' => 'Reconciliation range', - 'start_reconcile' => 'Start reconciling', - 'cash_account_type' => 'Cash', - 'cash' => 'cash', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Account type', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'New account ":name" stored!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Updated account ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Credit card options', - 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Please select at least one category', - 'select_at_least_one_budget' => 'Please select at least one budget', - 'select_at_least_one_tag' => 'Please select at least one tag', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'You can always edit or delete a correction later.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Reconciliation stored', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Reconcile this account', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Confirm reconciliation', - 'submitted_start_balance' => 'Submitted start balance', - 'selected_transactions' => 'Selected transactions (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Submitted end balance', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'Per day', - 'interest_calc_monthly' => 'Per month', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => 'Account #:id (":name") cannot be viewed directly, but Firefly is missing redirect information.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Details for asset account ":name"', + 'details_for_expense' => 'Details for expense account ":name"', + 'details_for_revenue' => 'Details for revenue account ":name"', + 'details_for_cash' => 'Details for cash account ":name"', + 'store_new_asset_account' => 'Store new asset account', + 'store_new_expense_account' => 'Store new expense account', + 'store_new_revenue_account' => 'Store new revenue account', + 'edit_asset_account' => 'Edit asset account ":name"', + 'edit_expense_account' => 'Edit expense account ":name"', + 'edit_revenue_account' => 'Edit revenue account ":name"', + 'delete_asset_account' => 'Delete asset account ":name"', + 'delete_expense_account' => 'Delete expense account ":name"', + 'delete_revenue_account' => 'Delete revenue account ":name"', + 'delete_liabilities_account' => 'Delete liability ":name"', + 'asset_deleted' => 'Successfully deleted asset account ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Successfully deleted expense account ":name"', + 'revenue_deleted' => 'Successfully deleted revenue account ":name"', + 'update_asset_account' => 'Update asset account', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Update liability', + 'update_expense_account' => 'Update expense account', + 'update_revenue_account' => 'Update revenue account', + 'make_new_asset_account' => 'Create a new asset account', + 'make_new_expense_account' => 'Create a new expense account', + 'make_new_revenue_account' => 'Create a new revenue account', + 'make_new_liabilities_account' => 'Create a new liability', + 'asset_accounts' => 'Asset accounts', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Expense accounts', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Revenue accounts', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Cash accounts', + 'Cash account' => 'Cash account', + 'liabilities_accounts' => 'Liabilities', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Reconcile account ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Delete reconciliation', + 'update_reconciliation' => 'Update reconciliation', + 'amount_cannot_be_zero' => 'The amount cannot be zero', + 'end_of_reconcile_period' => 'End of reconcile period: :period', + 'start_of_reconcile_period' => 'Start of reconcile period: :period', + 'start_balance' => 'Start balance', + 'end_balance' => 'End balance', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Update selection', + 'store_reconcile' => 'Store reconciliation', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Reconciliation', + 'reconciliation' => 'Reconciliation', + 'reconcile_options' => 'Reconciliation options', + 'reconcile_range' => 'Reconciliation range', + 'start_reconcile' => 'Start reconciling', + 'cash_account_type' => 'Cash', + 'cash' => 'cash', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'New account ":name" stored!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Updated account ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Credit card options', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Please select at least one category', + 'select_at_least_one_budget' => 'Please select at least one budget', + 'select_at_least_one_tag' => 'Please select at least one tag', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'You can always edit or delete a correction later.', + 'must_be_asset_account' => 'You can only reconcile asset accounts', + 'reconciliation_stored' => 'Reconciliation stored', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Reconcile this account', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Confirm reconciliation', + 'submitted_start_balance' => 'Submitted start balance', + 'selected_transactions' => 'Selected transactions (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Submitted end balance', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'Per day', + 'interest_calc_monthly' => 'Per month', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'List options', // categories: - 'new_category' => 'New category', - 'create_new_category' => 'Create a new category', - 'without_category' => 'Without a category', - 'update_category' => 'Update category', - 'updated_category' => 'Updated category ":name"', - 'categories' => 'Categories', - 'edit_category' => 'Edit category ":name"', - 'no_category' => '(no category)', - 'unknown_category_plain' => 'No category', - 'category' => 'Category', - 'delete_category' => 'Delete category ":name"', - 'deleted_category' => 'Deleted category ":name"', - 'store_category' => 'Store new category', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Without category between :start and :end', + 'new_category' => 'New category', + 'create_new_category' => 'Create a new category', + 'without_category' => 'Without a category', + 'update_category' => 'Update category', + 'updated_category' => 'Updated category ":name"', + 'categories' => 'Categories', + 'edit_category' => 'Edit category ":name"', + 'no_category' => '(no category)', + 'unknown_category_plain' => 'No category', + 'category' => 'Category', + 'delete_category' => 'Delete category ":name"', + 'deleted_category' => 'Deleted category ":name"', + 'store_category' => 'Store new category', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Without category between :start and :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Update withdrawal', - 'update_deposit' => 'Update deposit', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Update transfer', - 'updated_withdrawal' => 'Updated withdrawal ":description"', - 'updated_deposit' => 'Updated deposit ":description"', - 'updated_transfer' => 'Updated transfer ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Delete withdrawal ":description"', - 'delete_deposit' => 'Delete deposit ":description"', - 'delete_transfer' => 'Delete transfer ":description"', - 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', - 'deleted_deposit' => 'Successfully deleted deposit ":description"', - 'deleted_transfer' => 'Successfully deleted transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Successfully created new transaction ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Select transactions', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', - 'stop_selection' => 'Stop selecting transactions', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Delete a number of transactions', - 'mass_edit_journals' => 'Edit a number of transactions', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(no budget)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Create', - 'empty' => '(empty)', - 'all_other_budgets' => '(all other budgets)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tag', - 'no_budget_squared' => '(no budget)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(no account type)', - 'opt_group_no_account_type' => '(no account type)', - 'opt_group_defaultAsset' => 'Default asset accounts', - 'opt_group_savingAsset' => 'Savings accounts', - 'opt_group_sharedAsset' => 'Shared asset accounts', - 'opt_group_ccAsset' => 'Credit cards', - 'opt_group_cashWalletAsset' => 'Cash wallets', - 'opt_group_expense_account' => 'Expense accounts', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => 'Liability: Loan', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => 'Liability: Debt', - 'opt_group_l_Mortgage' => 'Liability: Mortgage', - 'opt_group_l_Credit card' => 'Liability: Credit card', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', - 'attachment_not_found' => 'This attachment could not be found.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Update withdrawal', + 'update_deposit' => 'Update deposit', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Update transfer', + 'updated_withdrawal' => 'Updated withdrawal ":description"', + 'updated_deposit' => 'Updated deposit ":description"', + 'updated_transfer' => 'Updated transfer ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Delete withdrawal ":description"', + 'delete_deposit' => 'Delete deposit ":description"', + 'delete_transfer' => 'Delete transfer ":description"', + 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', + 'deleted_deposit' => 'Successfully deleted deposit ":description"', + 'deleted_transfer' => 'Successfully deleted transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Successfully created new transaction ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Select transactions', + 'rule_group_select_transactions' => 'Apply ":title" to transactions', + 'rule_select_transactions' => 'Apply ":title" to transactions', + 'stop_selection' => 'Stop selecting transactions', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Delete a number of transactions', + 'mass_edit_journals' => 'Edit a number of transactions', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(no budget)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Create', + 'empty' => '(empty)', + 'all_other_budgets' => '(all other budgets)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tag', + 'no_budget_squared' => '(no budget)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(no account type)', + 'opt_group_no_account_type' => '(no account type)', + 'opt_group_defaultAsset' => 'Default asset accounts', + 'opt_group_savingAsset' => 'Savings accounts', + 'opt_group_sharedAsset' => 'Shared asset accounts', + 'opt_group_ccAsset' => 'Credit cards', + 'opt_group_cashWalletAsset' => 'Cash wallets', + 'opt_group_expense_account' => 'Expense accounts', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => 'Liability: Loan', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => 'Liability: Debt', + 'opt_group_l_Mortgage' => 'Liability: Mortgage', + 'opt_group_l_Credit card' => 'Liability: Credit card', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', + 'attachment_not_found' => 'This attachment could not be found.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Submit', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Getting started', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Language', - 'new_savings_account' => ':bank_name savings account', - 'cash_wallet' => 'Cash wallet', - 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Submit', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Getting started', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Language', + 'new_savings_account' => ':bank_name savings account', + 'cash_wallet' => 'Cash wallet', + 'currency_not_present' => 'If the currency you normally use is not listed do not worry. You can create your own currencies under Options > Currencies.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Your accounts', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Budgets and spending', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Savings', - 'newWithdrawal' => 'New expense', - 'newDeposit' => 'New deposit', - 'newTransfer' => 'New transfer', - 'bills_to_pay' => 'Bills to pay', - 'per_day' => 'Per day', - 'left_to_spend_per_day' => 'Left to spend per day', - 'bills_paid' => 'Bills paid', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Your accounts', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Budgets and spending', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Savings', + 'newWithdrawal' => 'New expense', + 'newDeposit' => 'New deposit', + 'newTransfer' => 'New transfer', + 'bills_to_pay' => 'Bills to pay', + 'per_day' => 'Per day', + 'left_to_spend_per_day' => 'Left to spend per day', + 'bills_paid' => 'Bills paid', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Currency', - 'preferences' => 'Preferences', - 'logout' => 'Logout', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Toggle navigation', - 'searchPlaceholder' => 'Search...', - 'version' => 'Version', - 'dashboard' => 'Dashboard', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Currencies', - 'activity' => 'Activity', - 'usage' => 'Usage', - 'accounts' => 'Accounts', - 'Asset account' => 'Asset account', - 'Default account' => 'Asset account', - 'Expense account' => 'Expense account', - 'Revenue account' => 'Revenue account', - 'Initial balance account' => 'Initial balance account', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Debt', - 'account_type_Loan' => 'Loan', - 'account_type_Mortgage' => 'Mortgage', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Budgets', - 'tags' => 'Tags', - 'reports' => 'Reports', - 'transactions' => 'Transactions', - 'expenses' => 'Expenses', - 'income' => 'Revenue / income', - 'transfers' => 'Transfers', - 'moneyManagement' => 'Money management', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Piggy banks', - 'piggy_banks' => 'Piggy banks', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Bills', - 'withdrawal' => 'Withdrawal', - 'opening_balance' => 'Opening balance', - 'deposit' => 'Deposit', - 'account' => 'Account', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Withdrawal', - 'Deposit' => 'Deposit', - 'Transfer' => 'Transfer', - 'bill' => 'Bill', - 'yes' => 'Yes', - 'no' => 'No', - 'amount' => 'Amount', - 'overview' => 'Overview', - 'saveOnAccount' => 'Save on account', - 'unknown' => 'Unknown', - 'monthly' => 'Monthly', - 'profile' => 'Profile', - 'errors' => 'Errors', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Currency', + 'preferences' => 'Preferences', + 'logout' => 'Logout', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Search...', + 'version' => 'Version', + 'dashboard' => 'Dashboard', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Currencies', + 'activity' => 'Activity', + 'usage' => 'Usage', + 'accounts' => 'Accounts', + 'Asset account' => 'Asset account', + 'Default account' => 'Asset account', + 'Expense account' => 'Expense account', + 'Revenue account' => 'Revenue account', + 'Initial balance account' => 'Initial balance account', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Debt', + 'account_type_Loan' => 'Loan', + 'account_type_Mortgage' => 'Mortgage', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Budgets', + 'tags' => 'Tags', + 'reports' => 'Reports', + 'transactions' => 'Transactions', + 'expenses' => 'Expenses', + 'income' => 'Revenue / income', + 'transfers' => 'Transfers', + 'moneyManagement' => 'Money management', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Piggy banks', + 'piggy_banks' => 'Piggy banks', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Bills', + 'withdrawal' => 'Withdrawal', + 'opening_balance' => 'Opening balance', + 'deposit' => 'Deposit', + 'account' => 'Account', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Withdrawal', + 'Deposit' => 'Deposit', + 'Transfer' => 'Transfer', + 'bill' => 'Bill', + 'yes' => 'Yes', + 'no' => 'No', + 'amount' => 'Amount', + 'overview' => 'Overview', + 'saveOnAccount' => 'Save on account', + 'unknown' => 'Unknown', + 'monthly' => 'Monthly', + 'profile' => 'Profile', + 'errors' => 'Errors', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Default financial report between :start and :end', - 'report_audit' => 'Transaction history overview between :start and :end', - 'report_category' => 'Category report between :start and :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Quick links', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Default financial report', - 'quick_link_audit_report' => 'Transaction history overview', - 'report_this_month_quick' => 'Current month, all accounts', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Current year, all accounts', - 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', - 'report_all_time_quick' => 'All-time, all accounts', - 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', - 'incomeVsExpenses' => 'Income vs. expenses', - 'accountBalances' => 'Account balances', - 'balanceStart' => 'Balance at start of period', - 'balanceEnd' => 'Balance at end of period', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftInBudget' => 'Left in budget', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Sum of sums', - 'noCategory' => '(no category)', - 'notCharged' => 'Not charged (yet)', - 'inactive' => 'Inactive', - 'active' => 'Active', - 'difference' => 'Difference', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Out', - 'topX' => 'top :number', - 'show_full_list' => 'Show entire list', - 'show_only_top' => 'Show only top :number', - 'report_type' => 'Report type', - 'report_type_default' => 'Default financial report', - 'report_type_audit' => 'Transaction history overview (audit)', - 'report_type_category' => 'Category report', - 'report_type_budget' => 'Budget report', - 'report_type_tag' => 'Tag report', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', - 'report_included_accounts' => 'Included accounts', - 'report_date_range' => 'Date range', - 'report_preset_ranges' => 'Pre-set ranges', - 'shared' => 'Shared', - 'fiscal_year' => 'Fiscal year', - 'income_entry' => 'Income from account ":name" between :start and :end', - 'expense_entry' => 'Expenses to account ":name" between :start and :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', - 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Extra options', - 'report_has_no_extra_options' => 'This report has no extra options', - 'reports_submit' => 'View report', - 'end_after_start_date' => 'End date of report must be after start date.', - 'select_category' => 'Select category(ies)', - 'select_budget' => 'Select budget(s).', - 'select_tag' => 'Select tag(s).', - 'income_per_category' => 'Income per category', - 'expense_per_category' => 'Expense per category', - 'expense_per_budget' => 'Expense per budget', - 'income_per_account' => 'Income per account', - 'expense_per_account' => 'Expense per account', - 'expense_per_tag' => 'Expense per tag', - 'income_per_tag' => 'Income per tag', - 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', - 'everything_else' => 'Everything else', - 'income_and_expenses' => 'Income and expenses', - 'spent_average' => 'Spent (average)', - 'income_average' => 'Income (average)', - 'transaction_count' => 'Transaction count', - 'average_spending_per_account' => 'Average spending per account', - 'average_income_per_account' => 'Average income per account', - 'total' => 'Total', - 'description' => 'Description', - 'sum_of_period' => 'Sum of period', - 'average_in_period' => 'Average in period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Default asset account', - 'account_role_sharedAsset' => 'Shared asset account', - 'account_role_savingAsset' => 'Savings account', - 'account_role_ccAsset' => 'Credit card', - 'account_role_cashWalletAsset' => 'Cash wallet', - 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', - 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Default financial report between :start and :end', + 'report_audit' => 'Transaction history overview between :start and :end', + 'report_category' => 'Category report between :start and :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Quick links', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Default financial report', + 'quick_link_audit_report' => 'Transaction history overview', + 'report_this_month_quick' => 'Current month, all accounts', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Current year, all accounts', + 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', + 'report_all_time_quick' => 'All-time, all accounts', + 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', + 'incomeVsExpenses' => 'Income vs. expenses', + 'accountBalances' => 'Account balances', + 'balanceStart' => 'Balance at start of period', + 'balanceEnd' => 'Balance at end of period', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftInBudget' => 'Left in budget', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', + 'topX' => 'top :number', + 'show_full_list' => 'Show entire list', + 'show_only_top' => 'Show only top :number', + 'report_type' => 'Report type', + 'report_type_default' => 'Default financial report', + 'report_type_audit' => 'Transaction history overview (audit)', + 'report_type_category' => 'Category report', + 'report_type_budget' => 'Budget report', + 'report_type_tag' => 'Tag report', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Included accounts', + 'report_date_range' => 'Date range', + 'report_preset_ranges' => 'Pre-set ranges', + 'shared' => 'Shared', + 'fiscal_year' => 'Fiscal year', + 'income_entry' => 'Income from account ":name" between :start and :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Extra options', + 'report_has_no_extra_options' => 'This report has no extra options', + 'reports_submit' => 'View report', + 'end_after_start_date' => 'End date of report must be after start date.', + 'select_category' => 'Select category(ies)', + 'select_budget' => 'Select budget(s).', + 'select_tag' => 'Select tag(s).', + 'income_per_category' => 'Income per category', + 'expense_per_category' => 'Expense per category', + 'expense_per_budget' => 'Expense per budget', + 'income_per_account' => 'Income per account', + 'expense_per_account' => 'Expense per account', + 'expense_per_tag' => 'Expense per tag', + 'income_per_tag' => 'Income per tag', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Everything else', + 'income_and_expenses' => 'Income and expenses', + 'spent_average' => 'Spent (average)', + 'income_average' => 'Income (average)', + 'transaction_count' => 'Transaction count', + 'average_spending_per_account' => 'Average spending per account', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Shared asset account', + 'account_role_savingAsset' => 'Savings account', + 'account_role_ccAsset' => 'Credit card', + 'account_role_cashWalletAsset' => 'Cash wallet', + 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', + 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Chart', - 'month' => 'Month', - 'budget' => 'Budget', - 'spent' => 'Spent', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Spent in budget', - 'left_to_spend' => 'Left to spend', - 'earned' => 'Earned', - 'overspent' => 'Overspent', - 'left' => 'Left', - 'max-amount' => 'Maximum amount', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Current bill entry', - 'name' => 'Name', - 'date' => 'Date', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Paid', - 'unpaid' => 'Unpaid', - 'day' => 'Day', - 'budgeted' => 'Budgeted', - 'period' => 'Period', - 'balance' => 'Balance', - 'in_out_period' => 'In + out this period', - 'sum' => 'Sum', - 'summary' => 'Summary', - 'average' => 'Average', - 'balanceFor' => 'Balance for :name', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Current bill entry', + 'name' => 'Name', + 'date' => 'Date', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Paid', + 'unpaid' => 'Unpaid', + 'day' => 'Day', + 'budgeted' => 'Budgeted', + 'period' => 'Period', + 'balance' => 'Balance', + 'in_out_period' => 'In + out this period', + 'sum' => 'Sum', + 'summary' => 'Summary', + 'average' => 'Average', + 'balanceFor' => 'Balance for :name', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Add money to piggy bank ":name"', - 'piggy_bank' => 'Piggy bank', - 'new_piggy_bank' => 'New piggy bank', - 'store_piggy_bank' => 'Store new piggy bank', - 'stored_piggy_bank' => 'Store new piggy bank ":name"', - 'account_status' => 'Account status', - 'left_for_piggy_banks' => 'Left for piggy banks', - 'sum_of_piggy_banks' => 'Sum of piggy banks', - 'saved_so_far' => 'Saved so far', - 'left_to_save' => 'Left to save', - 'suggested_amount' => 'Suggested monthly amount to save', - 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', - 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', - 'add' => 'Add', - 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Add money to piggy bank ":name"', + 'piggy_bank' => 'Piggy bank', + 'new_piggy_bank' => 'New piggy bank', + 'store_piggy_bank' => 'Store new piggy bank', + 'stored_piggy_bank' => 'Store new piggy bank ":name"', + 'account_status' => 'Account status', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Sum of piggy banks', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', + 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', + 'add' => 'Add', + 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Remove', - 'max_amount_add' => 'The maximum amount you can add is', - 'max_amount_remove' => 'The maximum amount you can remove is', - 'update_piggy_button' => 'Update piggy bank', - 'update_piggy_title' => 'Update piggy bank ":name"', - 'updated_piggy_bank' => 'Updated piggy bank ":name"', - 'details' => 'Details', - 'events' => 'Events', - 'target_amount' => 'Target amount', - 'start_date' => 'Start date', - 'no_start_date' => 'No start date', - 'target_date' => 'Target date', - 'no_target_date' => 'No target date', - 'table' => 'Table', - 'delete_piggy_bank' => 'Delete piggy bank ":name"', - 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', - 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', - 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', - 'added_amount_to_piggy' => 'Added :amount to ":name"', - 'removed_amount_from_piggy' => 'Removed :amount from ":name"', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Remove', + 'max_amount_add' => 'The maximum amount you can add is', + 'max_amount_remove' => 'The maximum amount you can remove is', + 'update_piggy_button' => 'Update piggy bank', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Updated piggy bank ":name"', + 'details' => 'Details', + 'events' => 'Events', + 'target_amount' => 'Target amount', + 'start_date' => 'Start date', + 'no_start_date' => 'No start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Table', + 'delete_piggy_bank' => 'Delete piggy bank ":name"', + 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', + 'added_amount_to_piggy' => 'Added :amount to ":name"', + 'removed_amount_from_piggy' => 'Removed :amount from ":name"', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => 'Delete tag ":tag"', - 'deleted_tag' => 'Deleted tag ":tag"', - 'new_tag' => 'Make new tag', - 'edit_tag' => 'Edit tag ":tag"', - 'updated_tag' => 'Updated tag ":tag"', - 'created_tag' => 'Tag ":tag" has been created!', + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', - 'transaction_journal_information' => 'Transaction information', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta information', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Total amount', - 'number_of_decimals' => 'Number of decimals', + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta information', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'User administration', - 'list_all_users' => 'All users', - 'all_users' => 'All users', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Configuration options for Firefly III', - 'setting_single_user_mode' => 'Single user mode', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Store configuration', - 'single_user_administration' => 'User administration for :email', - 'edit_user' => 'Edit user :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'User data', - 'user_information' => 'User information', - 'total_size' => 'total size', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'The configuration has been updated', - 'setting_is_demo_site' => 'Demo site', - 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Demo account expired', - 'no_block_code' => 'No reason for block or user not blocked', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'User has not yet confirmed new email address', - 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', - 'update_user' => 'Update user', - 'updated_user' => 'User data has been changed.', - 'delete_user' => 'Delete user :email', - 'user_deleted' => 'The user has been deleted', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Create new link type', - 'store_new_link_type' => 'Store new link type', - 'update_link_type' => 'Update link type', - 'edit_link_type' => 'Edit link type ":name"', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'Ie. "duplicates"', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(do not save connection)', - 'link_transaction' => 'Link transaction', - 'link_to_other_transaction' => 'Link this transaction to another transaction', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'This transaction', - 'transaction' => 'Transaction', - 'comments' => 'Comments', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Cannot link these transactions', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transactions are linked.', - 'journals_error_linked' => 'These transactions are already linked.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'This withdrawal', - 'this_deposit' => 'This deposit', - 'this_transfer' => 'This transfer', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Source transaction', - 'link_description' => 'Link description', - 'destination_transaction' => 'Destination transaction', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Deleted link', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Splits', - 'add_another_split' => 'Add another split', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Let\'s create an asset account!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', - 'no_accounts_create_asset' => 'Create an asset account', - 'no_accounts_title_expense' => 'Let\'s create an expense account!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Create an expense account', - 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', - 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_revenue' => 'Create a revenue account', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Let\'s create a budget', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', - 'no_budgets_create_default' => 'Create a budget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Let\'s create a category!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', - 'no_tags_title_default' => 'Let\'s create a tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Create a tag', - 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', - 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Create an expense', - 'no_transactions_title_deposit' => 'Let\'s create some income!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Create a deposit', - 'no_transactions_title_transfers' => 'Let\'s create a transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Create a transfer', - 'no_piggies_title_default' => 'Let\'s create a piggy bank!', - 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', - 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', - 'no_piggies_create_default' => 'Create a new piggy bank', - 'no_bills_title_default' => 'Let\'s create a bill!', - 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', - 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', - 'no_bills_create_default' => 'Create a bill', + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', + 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Create a revenue account', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Create an expense', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Let\'s create a piggy bank!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Create a new piggy bank', + 'no_bills_title_default' => 'Let\'s create a bill!', + 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', + 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_create_default' => 'Create a bill', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Every day', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Every day', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Bills paid (:currency)', - 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Bills paid (:currency)', + 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/th_TH/validation.php b/resources/lang/th_TH/validation.php index b5a39fffb4..6fe7b812ac 100644 --- a/resources/lang/th_TH/validation.php +++ b/resources/lang/th_TH/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/tr_TR/firefly.php b/resources/lang/tr_TR/firefly.php index e514ad2694..f28a0cfd4a 100644 --- a/resources/lang/tr_TR/firefly.php +++ b/resources/lang/tr_TR/firefly.php @@ -35,309 +35,309 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Kapat', - 'actions' => 'Eylemler', - 'edit' => 'Düzenle', - 'delete' => 'Sil', - 'split' => 'Böl', - 'single_split' => 'Böl', - 'clone' => 'Klonla', - 'clone_and_edit' => 'Clone and edit', - 'confirm_action' => 'Confirm action', - 'last_seven_days' => 'Son yedi gün', - 'last_thirty_days' => 'Son otuz gün', - 'last_180_days' => 'Son 180 gün', - 'month_to_date' => 'Month to date', - 'year_to_date' => 'Year to date', - 'YTD' => 'Son 2 Ay', - 'welcome_back' => 'Neler oluyor?', - 'everything' => 'Her şey', - 'today' => 'bugün', - 'customRange' => 'Özel menzil', - 'date_range' => 'Tarih Aralığı', - 'apply' => 'Uygula', - 'select_date' => 'Tarih Seç..', - 'cancel' => 'İptal', - 'from' => 'Gönderen', - 'to' => 'Alıcı', - 'structure' => 'Yapı', - 'help_translating' => 'Bu yardım metni henüz sizin dilinizde bulunmamaktadır. Çeviriye katkı sağlamak ister misiniz?', - 'showEverything' => 'Her şeyi göster', - 'never' => 'Asla', - 'no_results_for_empty_search' => 'Aramanız boştu, bu nedenle hiçbir şey bulunamadı.', - 'removed_amount' => '" :amount" kaldırıldı', - 'added_amount' => ':amount eklendi', - 'asset_account_role_help' => 'Seçiminizden kaynaklanan ekstra seçenekler daha sonra ayarlanabilir.', - 'Opening balance' => 'Açılış bakiyesi', - 'create_new_stuff' => 'Yeni bir şey oluştur', - 'new_withdrawal' => 'Yeni para çekme', - 'create_new_transaction' => 'Yeni Transfer Oluştur', - 'sidebar_frontpage_create' => 'Yeni', - 'new_transaction' => 'Yeni işlem', - 'no_rules_for_bill' => 'Bu faturaya bağlı bir kural yok.', - 'go_to_asset_accounts' => 'Varlık hesaplarınızı görüntüleyin + 'close' => 'Kapat', + 'actions' => 'Eylemler', + 'edit' => 'Düzenle', + 'delete' => 'Sil', + 'split' => 'Böl', + 'single_split' => 'Böl', + 'clone' => 'Klonla', + 'clone_and_edit' => 'Clone and edit', + 'confirm_action' => 'Confirm action', + 'last_seven_days' => 'Son yedi gün', + 'last_thirty_days' => 'Son otuz gün', + 'last_180_days' => 'Son 180 gün', + 'month_to_date' => 'Month to date', + 'year_to_date' => 'Year to date', + 'YTD' => 'Son 2 Ay', + 'welcome_back' => 'Neler oluyor?', + 'everything' => 'Her şey', + 'today' => 'bugün', + 'customRange' => 'Özel menzil', + 'date_range' => 'Tarih Aralığı', + 'apply' => 'Uygula', + 'select_date' => 'Tarih Seç..', + 'cancel' => 'İptal', + 'from' => 'Gönderen', + 'to' => 'Alıcı', + 'structure' => 'Yapı', + 'help_translating' => 'Bu yardım metni henüz sizin dilinizde bulunmamaktadır. Çeviriye katkı sağlamak ister misiniz?', + 'showEverything' => 'Her şeyi göster', + 'never' => 'Asla', + 'no_results_for_empty_search' => 'Aramanız boştu, bu nedenle hiçbir şey bulunamadı.', + 'removed_amount' => '" :amount" kaldırıldı', + 'added_amount' => ':amount eklendi', + 'asset_account_role_help' => 'Seçiminizden kaynaklanan ekstra seçenekler daha sonra ayarlanabilir.', + 'Opening balance' => 'Açılış bakiyesi', + 'create_new_stuff' => 'Yeni bir şey oluştur', + 'new_withdrawal' => 'Yeni para çekme', + 'create_new_transaction' => 'Yeni Transfer Oluştur', + 'sidebar_frontpage_create' => 'Yeni', + 'new_transaction' => 'Yeni işlem', + 'no_rules_for_bill' => 'Bu faturaya bağlı bir kural yok.', + 'go_to_asset_accounts' => 'Varlık hesaplarınızı görüntüleyin ', - 'go_to_budgets' => 'Bütçelerine git', - 'go_to_withdrawals' => 'Para çekme işlemlerine gidin', - 'clones_journal_x' => 'Bu işlem ":description" (#:id) kopyasıdır', - 'go_to_categories' => 'Kategorilerinize gidin', - 'go_to_bills' => 'Faturalarına git', - 'go_to_expense_accounts' => 'Gider hesaplarınızı görün', - 'go_to_revenue_accounts' => 'Gelir hesaplarınızı görün', - 'go_to_piggies' => 'Kumbaranıza gidin', - 'new_deposit' => 'Yeni Depozito', - 'new_transfer' => 'Yeni transfer', - 'new_transfers' => 'Yeni transfer', - 'new_asset_account' => 'Yeni varlık hesabı', - 'new_expense_account' => 'Yeni gider hesabı', - 'new_revenue_account' => 'Yeni Gelir Hesabı', - 'new_liabilities_account' => 'Yeni sorumluluk', - 'new_budget' => 'Yeni bütçe', - 'new_bill' => 'Yeni Fatura', - 'block_account_logout' => 'Çıkış yaptınız. Engellenen hesaplar bu siteyi kullanamaz. Geçerli bir e-posta adresiyle kayıt oldunuz mu?', - 'flash_success' => 'Başarılı!', - 'flash_info' => 'İleti', - 'flash_warning' => 'Uyarı!', - 'flash_error' => 'Hata!', - 'flash_danger' => 'Tehlike!', - 'flash_info_multiple' => 'Bir ileti var|:count ileti var', - 'flash_error_multiple' => 'Bir hata var|:count hata var', - 'net_worth' => 'Net değer', - 'help_for_this_page' => 'Bu sayfa için yardım', - 'help_for_this_page_body' => 'Bu sayfa hakkında daha fazla bilgi bulabilirsiniz belgelerde.', - 'two_factor_welcome' => 'Merhaba!', - 'two_factor_enter_code' => 'Devam etmek için lütfen iki faktörlü kimlik doğrulama kodunuzu girin. Uygulamanız sizin için oluşturabilir.', - 'two_factor_code_here' => 'Kodu buraya girin', - 'two_factor_title' => 'İki faktörlü kimlik doğrulaması', - 'authenticate' => 'Kimliği doğrula', - 'two_factor_forgot_title' => 'Kayıp iki faktörlü kimlik doğrulaması', - 'two_factor_forgot' => 'İki faktörlü kimlik doğrulama cihazını unuttum.', - 'two_factor_lost_header' => 'İki faktörlü kimlik doğrulamanızı mı kaybettiniz?', - 'two_factor_lost_intro' => 'Eğer yedek kodlarınızı da kayıp ettiyseniz, şansınız kötü. Bu web arayüzünden düzeltebileceğiniz bir şey değil. İki seçeneğiniz var.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Aksi takdirde, site sahibine (:site_owner) e-posta gönderin ve iki faktörlü kimlik doğrulamasını sıfırlamasını isteyin.', - 'mfa_backup_code' => 'Firefly III giriş yapmak için yedek kullandınız. Bu kod tekrar kullanılamaz, o yüzden listenizden çıkartın.', - 'pref_two_factor_new_backup_codes' => 'Yeni yedek kodları alın', - 'pref_two_factor_backup_code_count' => 'Geçerli :count yedek kodunuz var.|Sizin :count geçerli yedek kodunuz var.', - '2fa_i_have_them' => 'Hepsini sakladım!', - 'warning_much_data' => ':days günlük verinin yüklenmesi biraz zaman alabilir.', - 'registered' => 'Başarıyla kaydoldunuz!', - 'Default asset account' => 'Varsayılan varlık hesabı', - 'no_budget_pointer' => 'Henüz bütçeniz yok gibi görünüyor. bütçeler sayfasında biraz oluşturmalısınız. Bütçeler, giderleri takip etmenize yardımcı olabilir.', - 'no_bill_pointer' => 'Henüz faturanız yok gibi görünüyor. faturalar sayfasında biraz oluşturmalısınız. Faturalar, harcamaları takip etmenize yardımcı olabilir.', - 'Savings account' => 'Birikim Hesabı', - 'Credit card' => 'Kredi Kartı', - 'source_accounts' => 'Kaynak hesap|Kaynak hesaplar', - 'destination_accounts' => 'Hedef hesap|Hedef hesaplar', - 'user_id_is' => 'Kullanıcı kimliğiniz :user', - 'field_supports_markdown' => 'Bu alan Markdown\'u destekliyor.', - 'need_more_help' => 'Firefly III kullanımında daha fazla yardıma ihtiyacınız olursa, lütfen Github\'da bir talep açın.', - 'reenable_intro_text' => 'Ayni zamanda giriş rehberi yeniden aktive edebilirsin.', - 'intro_boxes_after_refresh' => 'Sayfayı yenilediğinizde tanıtım kutuları yeniden görünecektir.', - 'show_all_no_filter' => 'Tüm işlemleri, tarihe göre gruplamadan gösterin.', - 'expenses_by_category' => 'Kategoriye göre giderler', - 'expenses_by_budget' => 'Bütçeye göre giderler', - 'income_by_category' => 'Kategoriye göre gelir', - 'expenses_by_asset_account' => 'Varlık hesabına göre giderler', - 'expenses_by_expense_account' => 'Gider hesabına göre giderler', - 'cannot_redirect_to_account' => 'Firefly III sizi doğru sayfaya yönlendiremiyor. Özür dileriz.', - 'sum_of_expenses' => 'Giderlerin Toplamı', - 'sum_of_income' => 'Gelirin Toplamı', - 'liabilities' => 'Yükümlülükler', - 'spent_in_specific_budget' => 'Miktar ":budget" harcandı', - 'spent_in_specific_double' => '":account" hesabında harcandı', - 'earned_in_specific_double' => '":account" tarafından kazanıldı', - 'source_account' => 'Kaynak hesap', - 'source_account_reconciliation' => 'Bir mutabakat işleminin kaynak hesabını düzenleyemezsiniz.', - 'destination_account' => 'Hedef hesap', - 'destination_account_reconciliation' => 'Bir mutabakat işleminin hedef hesabını düzenleyemezsiniz.', - 'sum_of_expenses_in_budget' => 'Harcanan toplam bütçe ":budget"', - 'left_in_budget_limit' => 'Bütçeye göre harcama ayrıldı', - 'current_period' => 'Cari dönem', - 'show_the_current_period_and_overview' => 'Geçerli periyodu ve genel bakışı göster', - 'pref_languages_locale' => 'İngilizce dışındaki bir dilin düzgün çalışması için, işletim sisteminizin doğru yerel ayar bilgileri ile donatılmış olmalıdır. Aksi halde, tarih, para birim verileri ve tutarı yanlış gösterilebilir.', - 'budget_in_period' => '":name" bütçesi için :start ve :end aralığında yapılan :currency işlemleri', - 'chart_budget_in_period' => '":name" bütçesi için :start ve :end aralığında yapılan :currency işlemlerin grafiği', - 'chart_budget_in_period_only_currency' => 'Bütçe miktarı :currency dövizinde, dolayısı ile bu grafik sadece :currency dövizinde yapılan işlemleri gösterir.', - 'chart_account_in_period' => '":name" (:balance) hesabı için :start ve :end arasındaki tüm işlemler için grafik', - 'chart_category_in_period' => ':start ve :end arasında ":name" kategorisindeki bütün işlemler için grafik', - 'chart_category_all' => '":name" kategorisinde bütün işlemler çizelgesi', - 'clone_withdrawal' => 'Bu para çekimini klonla', - 'clone_deposit' => 'Bu depozitoyu klonla', - 'clone_transfer' => 'Bu transferi kopyala', - 'multi_select_no_selection' => 'Hiçbiri seçilmedi', - 'multi_select_select_all' => 'Tümünü seç', - 'multi_select_n_selected' => 'seçili', - 'multi_select_all_selected' => 'Tümü seçildi', - 'multi_select_filter_placeholder' => 'Bul..', - 'intro_next_label' => 'Sonraki', - 'intro_prev_label' => 'Önceki', - 'intro_skip_label' => 'Atla', - 'intro_done_label' => 'Bitti', - 'between_dates_breadcrumb' => ':start ve :end arasında', - 'all_journals_without_budget' => 'Bütçesiz tüm işlemler', - 'journals_without_budget' => 'Bütçesiz İşlemler', - 'all_journals_without_category' => 'Kategorisiz tüm işlemler', - 'journals_without_category' => 'Kategorisiz işlemler', - 'all_journals_for_account' => ':name hesabındaki tüm işlemler', - 'chart_all_journals_for_account' => ':name hesabındaki tüm işlemlerin grafiği', - 'journals_in_period_for_account' => ':start ile :end tarihleri arasında :name hesabından yapılan tüm işlemler', - 'journals_in_period_for_account_js' => '{title} hesabı için {start} ile {end} arasındaki tüm işlemler', - 'transferred' => 'Transfer yapıldı', - 'all_withdrawal' => 'Tüm giderler', - 'all_transactions' => 'Tüm işlemler', - 'title_withdrawal_between' => 'Başlangıç ve Bitiş arasındaki tüm harcamalar', - 'all_deposit' => 'Toplam varlık', - 'title_deposit_between' => 'Başlangıç ve Bitiş arasındaki tüm gelir', - 'all_transfers' => 'Tüm transferler', - 'title_transfers_between' => ':start ile :end tarihleri arasındaki tüm işlemler', - 'all_transfer' => 'Tüm transferler', - 'all_journals_for_tag' => '":tag" etiketiyle yapılan tüm işlemler', - 'title_transfer_between' => ':start ile :end tarihleri arasındaki tüm işlemler', - 'all_journals_for_category' => '":name" kategorisindeki tüm işlemler', - 'all_journals_for_budget' => '":name" bütçesindeki tüm işlemler', - 'chart_all_journals_for_budget' => ':name bütçesindeki tüm işlemlerin grafiği', - 'journals_in_period_for_category' => ':start ile :end tarihleri arasında :name kategorisinde yapılan tüm işlemler', - 'journals_in_period_for_tag' => ':start ile :end tarihleri arasında :tag etiketiyle yapılan tüm işlemler', - 'not_available_demo_user' => 'Erişmeye çalıştığınız özellik, demo kullanıcıları tarafından kullanılamaz.', - 'exchange_rate_instructions' => '"@name" varlık hesabı yalnızca @native_currency\'daki işlemleri kabul eder. Bunun yerine @foreign_currency\'u kullanmak istiyorsanız, @native_currency\'daki karşılığının da bilinmesini sağlayın:', - 'transfer_exchange_rate_instructions' => 'Kaynak varlık hesabı "@source_name" sadece @soruce_currency işlemlerini kabul eder. Hedef varlık hesabı "@dest_name" sadece @dest_currency işlemlerini kabul eder. Aktarılan tutarı her iki para biriminde de doğru olarak girmeniz gerekir.', - 'transaction_data' => 'İşlem Verileri', - 'invalid_server_configuration' => 'Geçersiz sunucu yapılandırması', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Hızlı anahtar', - 'sign_in_to_start' => 'Oturumu başlatmak için giriş yapın', - 'sign_in' => 'Oturum aç', - 'register_new_account' => 'Yeni hesap kaydı', - 'forgot_my_password' => 'Şifremi unuttum', - 'problems_with_input' => 'Girişinizle ilgili bazı problemler var.', - 'reset_password' => 'Şifreni sıfırla', - 'button_reset_password' => 'Parolayı Sıfırla', - 'reset_button' => 'Sıfırla', - 'want_to_login' => 'Giriş yapmak istiyorum', - 'login_page_title' => 'Firefly III\'e giriş yapın', - 'register_page_title' => 'Firefly III\'e kayıt olun', - 'forgot_pw_page_title' => 'Firefly III için şifrenizi mi unuttunuz', - 'reset_pw_page_title' => 'Firefly III şifrenizi sıfırlayın', - 'cannot_reset_demo_user' => 'Demo kullanıcısının şifresini sıfırlayamazsınız.', - 'no_att_demo_user' => 'Demo kullanıcısı ekleri yükleyemez.', - 'button_register' => 'Kayıt ol', - 'authorization' => 'Yetkilendirme', - 'active_bills_only' => 'sadece aktif faturalar', - 'active_bills_only_total' => 'tüm aktif faturalar', - 'active_exp_bills_only' => 'sadece aktif ve beklenen faturalar', - 'active_exp_bills_only_total' => 'yalnızca tüm etkin beklenen faturalar', - 'per_period_sum_1D' => 'Beklenen günlük maliyetler', - 'per_period_sum_1W' => 'Beklenen haftalık maliyetler', - 'per_period_sum_1M' => 'Beklenen aylık maliyetler', - 'per_period_sum_3M' => 'Beklenen üç aylık maliyetler', - 'per_period_sum_6M' => 'Beklenen yarı yıllık maliyetler', - 'per_period_sum_1Y' => 'Beklenen yıllık maliyetler', - 'average_per_bill' => 'fatura başına ortalama', - 'expected_total' => 'beklenen toplam', - 'reconciliation_account_name' => ':name mutabakatı (:currency)', - 'saved' => 'Kaydedildi', - 'advanced_options' => 'Gelişmiş Ayarlar', - 'advanced_options_explain' => 'Firefly III\'teki bazı sayfalarda bu düğmenin arkasına gizlenmiş gelişmiş seçenekler bulunur. Bu sayfanın burada süslü bir yanı yok, ama diğerlerine bir göz atın!', - 'here_be_dragons' => 'İşte ejderhalar', + 'go_to_budgets' => 'Bütçelerine git', + 'go_to_withdrawals' => 'Para çekme işlemlerine gidin', + 'clones_journal_x' => 'Bu işlem ":description" (#:id) kopyasıdır', + 'go_to_categories' => 'Kategorilerinize gidin', + 'go_to_bills' => 'Faturalarına git', + 'go_to_expense_accounts' => 'Gider hesaplarınızı görün', + 'go_to_revenue_accounts' => 'Gelir hesaplarınızı görün', + 'go_to_piggies' => 'Kumbaranıza gidin', + 'new_deposit' => 'Yeni Depozito', + 'new_transfer' => 'Yeni transfer', + 'new_transfers' => 'Yeni transfer', + 'new_asset_account' => 'Yeni varlık hesabı', + 'new_expense_account' => 'Yeni gider hesabı', + 'new_revenue_account' => 'Yeni Gelir Hesabı', + 'new_liabilities_account' => 'Yeni sorumluluk', + 'new_budget' => 'Yeni bütçe', + 'new_bill' => 'Yeni Fatura', + 'block_account_logout' => 'Çıkış yaptınız. Engellenen hesaplar bu siteyi kullanamaz. Geçerli bir e-posta adresiyle kayıt oldunuz mu?', + 'flash_success' => 'Başarılı!', + 'flash_info' => 'İleti', + 'flash_warning' => 'Uyarı!', + 'flash_error' => 'Hata!', + 'flash_danger' => 'Tehlike!', + 'flash_info_multiple' => 'Bir ileti var|:count ileti var', + 'flash_error_multiple' => 'Bir hata var|:count hata var', + 'net_worth' => 'Net değer', + 'help_for_this_page' => 'Bu sayfa için yardım', + 'help_for_this_page_body' => 'Bu sayfa hakkında daha fazla bilgi bulabilirsiniz belgelerde.', + 'two_factor_welcome' => 'Merhaba!', + 'two_factor_enter_code' => 'Devam etmek için lütfen iki faktörlü kimlik doğrulama kodunuzu girin. Uygulamanız sizin için oluşturabilir.', + 'two_factor_code_here' => 'Kodu buraya girin', + 'two_factor_title' => 'İki faktörlü kimlik doğrulaması', + 'authenticate' => 'Kimliği doğrula', + 'two_factor_forgot_title' => 'Kayıp iki faktörlü kimlik doğrulaması', + 'two_factor_forgot' => 'İki faktörlü kimlik doğrulama cihazını unuttum.', + 'two_factor_lost_header' => 'İki faktörlü kimlik doğrulamanızı mı kaybettiniz?', + 'two_factor_lost_intro' => 'Eğer yedek kodlarınızı da kayıp ettiyseniz, şansınız kötü. Bu web arayüzünden düzeltebileceğiniz bir şey değil. İki seçeneğiniz var.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Aksi takdirde, site sahibine (:site_owner) e-posta gönderin ve iki faktörlü kimlik doğrulamasını sıfırlamasını isteyin.', + 'mfa_backup_code' => 'Firefly III giriş yapmak için yedek kullandınız. Bu kod tekrar kullanılamaz, o yüzden listenizden çıkartın.', + 'pref_two_factor_new_backup_codes' => 'Yeni yedek kodları alın', + 'pref_two_factor_backup_code_count' => 'Geçerli :count yedek kodunuz var.|Sizin :count geçerli yedek kodunuz var.', + '2fa_i_have_them' => 'Hepsini sakladım!', + 'warning_much_data' => ':days günlük verinin yüklenmesi biraz zaman alabilir.', + 'registered' => 'Başarıyla kaydoldunuz!', + 'Default asset account' => 'Varsayılan varlık hesabı', + 'no_budget_pointer' => 'Henüz bütçeniz yok gibi görünüyor. bütçeler sayfasında biraz oluşturmalısınız. Bütçeler, giderleri takip etmenize yardımcı olabilir.', + 'no_bill_pointer' => 'Henüz faturanız yok gibi görünüyor. faturalar sayfasında biraz oluşturmalısınız. Faturalar, harcamaları takip etmenize yardımcı olabilir.', + 'Savings account' => 'Birikim Hesabı', + 'Credit card' => 'Kredi Kartı', + 'source_accounts' => 'Kaynak hesap|Kaynak hesaplar', + 'destination_accounts' => 'Hedef hesap|Hedef hesaplar', + 'user_id_is' => 'Kullanıcı kimliğiniz :user', + 'field_supports_markdown' => 'Bu alan Markdown\'u destekliyor.', + 'need_more_help' => 'Firefly III kullanımında daha fazla yardıma ihtiyacınız olursa, lütfen Github\'da bir talep açın.', + 'reenable_intro_text' => 'Ayni zamanda giriş rehberi yeniden aktive edebilirsin.', + 'intro_boxes_after_refresh' => 'Sayfayı yenilediğinizde tanıtım kutuları yeniden görünecektir.', + 'show_all_no_filter' => 'Tüm işlemleri, tarihe göre gruplamadan gösterin.', + 'expenses_by_category' => 'Kategoriye göre giderler', + 'expenses_by_budget' => 'Bütçeye göre giderler', + 'income_by_category' => 'Kategoriye göre gelir', + 'expenses_by_asset_account' => 'Varlık hesabına göre giderler', + 'expenses_by_expense_account' => 'Gider hesabına göre giderler', + 'cannot_redirect_to_account' => 'Firefly III sizi doğru sayfaya yönlendiremiyor. Özür dileriz.', + 'sum_of_expenses' => 'Giderlerin Toplamı', + 'sum_of_income' => 'Gelirin Toplamı', + 'liabilities' => 'Yükümlülükler', + 'spent_in_specific_budget' => 'Miktar ":budget" harcandı', + 'spent_in_specific_double' => '":account" hesabında harcandı', + 'earned_in_specific_double' => '":account" tarafından kazanıldı', + 'source_account' => 'Kaynak hesap', + 'source_account_reconciliation' => 'Bir mutabakat işleminin kaynak hesabını düzenleyemezsiniz.', + 'destination_account' => 'Hedef hesap', + 'destination_account_reconciliation' => 'Bir mutabakat işleminin hedef hesabını düzenleyemezsiniz.', + 'sum_of_expenses_in_budget' => 'Harcanan toplam bütçe ":budget"', + 'left_in_budget_limit' => 'Bütçeye göre harcama ayrıldı', + 'current_period' => 'Cari dönem', + 'show_the_current_period_and_overview' => 'Geçerli periyodu ve genel bakışı göster', + 'pref_languages_locale' => 'İngilizce dışındaki bir dilin düzgün çalışması için, işletim sisteminizin doğru yerel ayar bilgileri ile donatılmış olmalıdır. Aksi halde, tarih, para birim verileri ve tutarı yanlış gösterilebilir.', + 'budget_in_period' => '":name" bütçesi için :start ve :end aralığında yapılan :currency işlemleri', + 'chart_budget_in_period' => '":name" bütçesi için :start ve :end aralığında yapılan :currency işlemlerin grafiği', + 'chart_budget_in_period_only_currency' => 'Bütçe miktarı :currency dövizinde, dolayısı ile bu grafik sadece :currency dövizinde yapılan işlemleri gösterir.', + 'chart_account_in_period' => '":name" (:balance) hesabı için :start ve :end arasındaki tüm işlemler için grafik', + 'chart_category_in_period' => ':start ve :end arasında ":name" kategorisindeki bütün işlemler için grafik', + 'chart_category_all' => '":name" kategorisinde bütün işlemler çizelgesi', + 'clone_withdrawal' => 'Bu para çekimini klonla', + 'clone_deposit' => 'Bu depozitoyu klonla', + 'clone_transfer' => 'Bu transferi kopyala', + 'multi_select_no_selection' => 'Hiçbiri seçilmedi', + 'multi_select_select_all' => 'Tümünü seç', + 'multi_select_n_selected' => 'seçili', + 'multi_select_all_selected' => 'Tümü seçildi', + 'multi_select_filter_placeholder' => 'Bul..', + 'intro_next_label' => 'Sonraki', + 'intro_prev_label' => 'Önceki', + 'intro_skip_label' => 'Atla', + 'intro_done_label' => 'Bitti', + 'between_dates_breadcrumb' => ':start ve :end arasında', + 'all_journals_without_budget' => 'Bütçesiz tüm işlemler', + 'journals_without_budget' => 'Bütçesiz İşlemler', + 'all_journals_without_category' => 'Kategorisiz tüm işlemler', + 'journals_without_category' => 'Kategorisiz işlemler', + 'all_journals_for_account' => ':name hesabındaki tüm işlemler', + 'chart_all_journals_for_account' => ':name hesabındaki tüm işlemlerin grafiği', + 'journals_in_period_for_account' => ':start ile :end tarihleri arasında :name hesabından yapılan tüm işlemler', + 'journals_in_period_for_account_js' => '{title} hesabı için {start} ile {end} arasındaki tüm işlemler', + 'transferred' => 'Transfer yapıldı', + 'all_withdrawal' => 'Tüm giderler', + 'all_transactions' => 'Tüm işlemler', + 'title_withdrawal_between' => 'Başlangıç ve Bitiş arasındaki tüm harcamalar', + 'all_deposit' => 'Toplam varlık', + 'title_deposit_between' => 'Başlangıç ve Bitiş arasındaki tüm gelir', + 'all_transfers' => 'Tüm transferler', + 'title_transfers_between' => ':start ile :end tarihleri arasındaki tüm işlemler', + 'all_transfer' => 'Tüm transferler', + 'all_journals_for_tag' => '":tag" etiketiyle yapılan tüm işlemler', + 'title_transfer_between' => ':start ile :end tarihleri arasındaki tüm işlemler', + 'all_journals_for_category' => '":name" kategorisindeki tüm işlemler', + 'all_journals_for_budget' => '":name" bütçesindeki tüm işlemler', + 'chart_all_journals_for_budget' => ':name bütçesindeki tüm işlemlerin grafiği', + 'journals_in_period_for_category' => ':start ile :end tarihleri arasında :name kategorisinde yapılan tüm işlemler', + 'journals_in_period_for_tag' => ':start ile :end tarihleri arasında :tag etiketiyle yapılan tüm işlemler', + 'not_available_demo_user' => 'Erişmeye çalıştığınız özellik, demo kullanıcıları tarafından kullanılamaz.', + 'exchange_rate_instructions' => '"@name" varlık hesabı yalnızca @native_currency\'daki işlemleri kabul eder. Bunun yerine @foreign_currency\'u kullanmak istiyorsanız, @native_currency\'daki karşılığının da bilinmesini sağlayın:', + 'transfer_exchange_rate_instructions' => 'Kaynak varlık hesabı "@source_name" sadece @soruce_currency işlemlerini kabul eder. Hedef varlık hesabı "@dest_name" sadece @dest_currency işlemlerini kabul eder. Aktarılan tutarı her iki para biriminde de doğru olarak girmeniz gerekir.', + 'transaction_data' => 'İşlem Verileri', + 'invalid_server_configuration' => 'Geçersiz sunucu yapılandırması', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Hızlı anahtar', + 'sign_in_to_start' => 'Oturumu başlatmak için giriş yapın', + 'sign_in' => 'Oturum aç', + 'register_new_account' => 'Yeni hesap kaydı', + 'forgot_my_password' => 'Şifremi unuttum', + 'problems_with_input' => 'Girişinizle ilgili bazı problemler var.', + 'reset_password' => 'Şifreni sıfırla', + 'button_reset_password' => 'Parolayı Sıfırla', + 'reset_button' => 'Sıfırla', + 'want_to_login' => 'Giriş yapmak istiyorum', + 'login_page_title' => 'Firefly III\'e giriş yapın', + 'register_page_title' => 'Firefly III\'e kayıt olun', + 'forgot_pw_page_title' => 'Firefly III için şifrenizi mi unuttunuz', + 'reset_pw_page_title' => 'Firefly III şifrenizi sıfırlayın', + 'cannot_reset_demo_user' => 'Demo kullanıcısının şifresini sıfırlayamazsınız.', + 'no_att_demo_user' => 'Demo kullanıcısı ekleri yükleyemez.', + 'button_register' => 'Kayıt ol', + 'authorization' => 'Yetkilendirme', + 'active_bills_only' => 'sadece aktif faturalar', + 'active_bills_only_total' => 'tüm aktif faturalar', + 'active_exp_bills_only' => 'sadece aktif ve beklenen faturalar', + 'active_exp_bills_only_total' => 'yalnızca tüm etkin beklenen faturalar', + 'per_period_sum_1D' => 'Beklenen günlük maliyetler', + 'per_period_sum_1W' => 'Beklenen haftalık maliyetler', + 'per_period_sum_1M' => 'Beklenen aylık maliyetler', + 'per_period_sum_3M' => 'Beklenen üç aylık maliyetler', + 'per_period_sum_6M' => 'Beklenen yarı yıllık maliyetler', + 'per_period_sum_1Y' => 'Beklenen yıllık maliyetler', + 'average_per_bill' => 'fatura başına ortalama', + 'expected_total' => 'beklenen toplam', + 'reconciliation_account_name' => ':name mutabakatı (:currency)', + 'saved' => 'Kaydedildi', + 'advanced_options' => 'Gelişmiş Ayarlar', + 'advanced_options_explain' => 'Firefly III\'teki bazı sayfalarda bu düğmenin arkasına gizlenmiş gelişmiş seçenekler bulunur. Bu sayfanın burada süslü bir yanı yok, ama diğerlerine bir göz atın!', + 'here_be_dragons' => 'İşte ejderhalar', // Webhooks - 'webhooks' => 'Web kancaları', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - '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', - '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.', - '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' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Web kancaları', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + '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', + '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.', + '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' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III v: version Yetkilendirme İsteği', - 'authorization_request_intro' => '":client" uygulaması, mali yönetiminize erişmek için izin istiyor. Bu kayıtlara erişmesi için :client\'e yetki vermek ister misiniz?', - 'authorization_request_site' => 'Firefly III verilerinize erişebilecek olan :url adresine yönlendirileceksiniz.', - 'authorization_request_invalid' => 'Bu erişim isteği geçersiz. Lütfen bu bağlantıyı bir daha asla takip etmeyin.', - 'scopes_will_be_able' => 'Bu uygulama şunları yapabilir:', - 'button_authorize' => 'İzin ver', - 'none_in_select_list' => '(Yok)', - 'no_piggy_bank' => '(kumbara bankası yok)', - 'name_in_currency' => ':name :currency', - 'paid_in_currency' => ':currency olarak ödenen', - 'unpaid_in_currency' => ':currency olarak ödenmeyen', - 'is_alpha_warning' => 'Bir ALPHA sürümü çalıştırıyorsunuz. Hatalara ve sorunlara karşı dikkatli olun.', - 'is_beta_warning' => 'Bir BETA sürümünü çalıştırıyorsunuz. Hatalara ve sorunlara karşı dikkatli olun.', - 'all_destination_accounts' => 'Hedef Hesap(lar)', - 'all_source_accounts' => 'Kaynak Hesap', - 'back_to_index' => 'Dizine geri dön', - 'cant_logout_guard' => 'Firefly III oturumunuzu kapatamaz.', - 'internal_reference' => 'Dahili referans', + 'authorization_request' => 'Firefly III v: version Yetkilendirme İsteği', + 'authorization_request_intro' => '":client" uygulaması, mali yönetiminize erişmek için izin istiyor. Bu kayıtlara erişmesi için :client\'e yetki vermek ister misiniz?', + 'authorization_request_site' => 'Firefly III verilerinize erişebilecek olan :url adresine yönlendirileceksiniz.', + 'authorization_request_invalid' => 'Bu erişim isteği geçersiz. Lütfen bu bağlantıyı bir daha asla takip etmeyin.', + 'scopes_will_be_able' => 'Bu uygulama şunları yapabilir:', + 'button_authorize' => 'İzin ver', + 'none_in_select_list' => '(Yok)', + 'no_piggy_bank' => '(kumbara bankası yok)', + 'name_in_currency' => ':name :currency', + 'paid_in_currency' => ':currency olarak ödenen', + 'unpaid_in_currency' => ':currency olarak ödenmeyen', + 'is_alpha_warning' => 'Bir ALPHA sürümü çalıştırıyorsunuz. Hatalara ve sorunlara karşı dikkatli olun.', + 'is_beta_warning' => 'Bir BETA sürümünü çalıştırıyorsunuz. Hatalara ve sorunlara karşı dikkatli olun.', + 'all_destination_accounts' => 'Hedef Hesap(lar)', + 'all_source_accounts' => 'Kaynak Hesap', + 'back_to_index' => 'Dizine geri dön', + 'cant_logout_guard' => 'Firefly III oturumunuzu kapatamaz.', + 'internal_reference' => 'Dahili referans', // check for updates: - 'update_check_title' => 'Güncellemeleri kontrol et', - 'admin_update_check_title' => 'Güncellemeleri otomatik olarak kontrol et', - 'admin_update_check_explain' => 'Firefly III, güncellemeleri otomatik olarak kontrol edebilir. Bu ayarı etkinleştirdiğinizde, Firefly III\'ün yeni bir sürümünün mevcut olup olmadığını görmek için Firefly III güncelleme sunucusuyla iletişime geçecektir. Olduğunda, bir bildirim alacaksınız. Bu bildirimi sağdaki düğmeyi kullanarak test edebilirsiniz. Firefly III\'ün güncellemeleri kontrol etmesini istiyorsanız lütfen aşağıda belirtin.', - 'check_for_updates_permission' => 'Firefly III güncellemeleri kontrol edebilir, ancak bunu yapmak için izniniz gerekir. Bu özelliğin etkinleştirilmesini isteyip istemediğinizi belirtmek için lütfen yönetim bölümüne gidin.', - 'updates_ask_me_later' => 'Daha sonra sor', - 'updates_do_not_check' => 'Güncelleştirmeleri kontrol ETME', - 'updates_enable_check' => 'Güncelleme kontrolünü etkinleştir', - 'admin_update_check_now_title' => 'Güncellemeleri kontrol et', - 'admin_update_check_now_explain' => 'Düğmeye basarsanız, Firefly III geçerli sürümünüzün en son olup olmadığını görür.', - 'check_for_updates_button' => 'Kontrol Et!', - 'update_new_version_alert' => 'Firefly III\'ün yeni versiyonu mevcut. Şuan kullandığınız :your_version, son versiyon ise :date tarihinde yayınlanan :new_version versiyonu.', - 'update_version_beta' => 'Bu bir BETA versiyonudur. Bazı hatalar ile karşılaşabilirsiniz.', - 'update_version_alpha' => 'Bu bir ALPHA versiyonudur. Bazı hatalar ile karşılaşabilirsiniz.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'En son mevcut olan :version versiyonunu kullanıyorsunuz.', - 'update_newer_version_alert' => 'Son mevcut olan :new_version versiyonundan daha yeni olan :your_version versiyonu kullanıyorsunuz.', - 'update_check_error' => 'Güncellemeler kontrol edilirken bir hata oluştu: :error', - 'unknown_error' => 'Bilinmeyen hata. Bunun için üzgünüm.', - 'disabled_but_check' => 'Güncelleme kontrolünü devre dışı bıraktınız. Bu nedenle, ara sıra güncellemeleri kendiniz kontrol etmeyi unutmayın. Teşekkürler!', - 'admin_update_channel_title' => 'Güncelleme kanalı', - 'admin_update_channel_explain' => 'Firefly III 3 adet güncelleme kanalına sahiptir. Bu kanallar sizin özellikler, geliştirmeler ve hatalar ile ilgili ne kadar önde olduğunuzu belirler. Maceracası iseniz "beta", tehlikeli yaşamayı seviyorsanız "alpha" versiyonunu kullanın.', - 'update_channel_stable' => 'Stabil. Herşey olması gerektiği gibi.', - 'update_channel_beta' => 'Beta. Yeni özellikler fakat bazı şeyler bozulabilir.', - 'update_channel_alpha' => 'Alpha. İçine ne bulursak atıp, uygun olanı kullanıyoruz.', + 'update_check_title' => 'Güncellemeleri kontrol et', + 'admin_update_check_title' => 'Güncellemeleri otomatik olarak kontrol et', + 'admin_update_check_explain' => 'Firefly III, güncellemeleri otomatik olarak kontrol edebilir. Bu ayarı etkinleştirdiğinizde, Firefly III\'ün yeni bir sürümünün mevcut olup olmadığını görmek için Firefly III güncelleme sunucusuyla iletişime geçecektir. Olduğunda, bir bildirim alacaksınız. Bu bildirimi sağdaki düğmeyi kullanarak test edebilirsiniz. Firefly III\'ün güncellemeleri kontrol etmesini istiyorsanız lütfen aşağıda belirtin.', + 'check_for_updates_permission' => 'Firefly III güncellemeleri kontrol edebilir, ancak bunu yapmak için izniniz gerekir. Bu özelliğin etkinleştirilmesini isteyip istemediğinizi belirtmek için lütfen yönetim bölümüne gidin.', + 'updates_ask_me_later' => 'Daha sonra sor', + 'updates_do_not_check' => 'Güncelleştirmeleri kontrol ETME', + 'updates_enable_check' => 'Güncelleme kontrolünü etkinleştir', + 'admin_update_check_now_title' => 'Güncellemeleri kontrol et', + 'admin_update_check_now_explain' => 'Düğmeye basarsanız, Firefly III geçerli sürümünüzün en son olup olmadığını görür.', + 'check_for_updates_button' => 'Kontrol Et!', + 'update_new_version_alert' => 'Firefly III\'ün yeni versiyonu mevcut. Şuan kullandığınız :your_version, son versiyon ise :date tarihinde yayınlanan :new_version versiyonu.', + 'update_version_beta' => 'Bu bir BETA versiyonudur. Bazı hatalar ile karşılaşabilirsiniz.', + 'update_version_alpha' => 'Bu bir ALPHA versiyonudur. Bazı hatalar ile karşılaşabilirsiniz.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'En son mevcut olan :version versiyonunu kullanıyorsunuz.', + 'update_newer_version_alert' => 'Son mevcut olan :new_version versiyonundan daha yeni olan :your_version versiyonu kullanıyorsunuz.', + 'update_check_error' => 'Güncellemeler kontrol edilirken bir hata oluştu: :error', + 'unknown_error' => 'Bilinmeyen hata. Bunun için üzgünüm.', + 'disabled_but_check' => 'Güncelleme kontrolünü devre dışı bıraktınız. Bu nedenle, ara sıra güncellemeleri kendiniz kontrol etmeyi unutmayın. Teşekkürler!', + 'admin_update_channel_title' => 'Güncelleme kanalı', + 'admin_update_channel_explain' => 'Firefly III 3 adet güncelleme kanalına sahiptir. Bu kanallar sizin özellikler, geliştirmeler ve hatalar ile ilgili ne kadar önde olduğunuzu belirler. Maceracası iseniz "beta", tehlikeli yaşamayı seviyorsanız "alpha" versiyonunu kullanın.', + 'update_channel_stable' => 'Stabil. Herşey olması gerektiği gibi.', + 'update_channel_beta' => 'Beta. Yeni özellikler fakat bazı şeyler bozulabilir.', + 'update_channel_alpha' => 'Alpha. İçine ne bulursak atıp, uygun olanı kullanıyoruz.', // search - 'search' => 'Ara', - 'search_query' => 'Sorgu', - 'search_found_transactions' => 'Firefly III bulundu :count :time saniye cinsinden sayar.|Firefly III bulundu :count :time saniye cinsinden sayar.', - 'search_found_more_transactions' => 'Firefly III, :time saniye cinsinden :count işlemlerinden fazlasını buldu.', - 'search_for_query' => 'Firefly III şu kelimelerin hepsini içeren hareketleri arıyor: :query', - 'invalid_operators_list' => 'Bu arama parametreleri geçerli değil ve yok sayıldı.', + 'search' => 'Ara', + 'search_query' => 'Sorgu', + 'search_found_transactions' => 'Firefly III bulundu :count :time saniye cinsinden sayar.|Firefly III bulundu :count :time saniye cinsinden sayar.', + 'search_found_more_transactions' => 'Firefly III, :time saniye cinsinden :count işlemlerinden fazlasını buldu.', + 'search_for_query' => 'Firefly III şu kelimelerin hepsini içeren hareketleri arıyor: :query', + 'invalid_operators_list' => 'Bu arama parametreleri geçerli değil ve yok sayıldı.', // old @@ -352,368 +352,368 @@ 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_id' => 'Transfer Kimliği ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'İşlem tarihi ":value" dan önce veya üzerinde', - 'search_modifier_date_after' => 'İşlem tarihi ":value" dan sonra veya üzerinde', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'İşlemin harici URL\'si yok', - '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_any_external_url' => 'İşlemin (herhangi bir) harici URL\'si olmalıdır', - '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_description_contains' => 'Açıklama ":value" içeriyor', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Açıklama tam olarak ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'İşlem (yabancı) para birimi ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'İşlem yabancı para birimi ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'İşlemin bir eki olmalıdır', - 'search_modifier_has_no_category' => 'İşlemin kategorisi olmamalıdır', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'İşlemin bir (herhangi bir) kategorisi olmalıdır', - 'search_modifier_has_no_budget' => 'İşlemin bütçesi olmamalıdır', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'İşlemin (herhangi bir) bütçesi olmalıdır', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'İşlemin faturası olmamalıdır', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'İşlemin (herhangi bir) faturası olmalıdır', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'İşlemin etiketi olmamalıdır', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'İşlemin bir (herhangi bir) etiketi olmalıdır', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'İşlemin notu yok', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'İşlemin notları olmalıdır', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Tutar şundan küçük veya şuna eşit ":value"', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Tutar şundan büyük veya eşittir :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Kaynak hesap adı tam olarak ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Kaynak hesap adı ":value" içeriyor', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Kaynak hesap adı ":value" ile başlar', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Kaynak hesap adı ":value" ile biter', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Kaynak hesap kimliği :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Kaynak hesap numarası (IBAN) ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Kaynak hesap numarası (IBAN) ":value" içeriyor', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Kaynak hesap numarası (IBAN) ":value" ile başlar', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Hedef hesap adı tam olarak ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Hedef hesap adı ":value" içeriyor', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Hedef hesap adı ":value" ile başlar', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Hedef hesap kimliği :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Hedef hesap numarası (IBAN) ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Hedef hesap numarası (IBAN) ":value" içeriyor', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Hedef hesap numarası (IBAN) ":value" ile başlar', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Hedef hesap numarası (IBAN) ":value" ile biter', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Kaynak veya hedef hesap kimlikleri: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Kategori ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Bütçe ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Fatura ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'İşlem türü ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Etiket şu şekildedir:value', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'İşlem öncesi veya yıl içinde yapılır ":value"', - 'search_modifier_date_before_month' => 'İşlem ay önce ya ":value"', - 'search_modifier_date_before_day' => 'İşlem ayın öncesinde veya günündedir ":value"', - 'search_modifier_date_after_year' => 'İşlem bir yıl içinde veya sonrasında gerçekleşir ":value"', - 'search_modifier_date_after_month' => 'İşlem ay içinde veya sonrasında ":value"', - 'search_modifier_date_after_day' => 'İşlem, ayın sonunda veya gününde gerçekleşir ":value"', + '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_id' => 'Transfer Kimliği ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'İşlem tarihi ":value" dan önce veya üzerinde', + 'search_modifier_date_after' => 'İşlem tarihi ":value" dan sonra veya üzerinde', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'İşlemin harici URL\'si yok', + '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_any_external_url' => 'İşlemin (herhangi bir) harici URL\'si olmalıdır', + '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_description_contains' => 'Açıklama ":value" içeriyor', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Açıklama tam olarak ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'İşlem (yabancı) para birimi ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'İşlem yabancı para birimi ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'İşlemin bir eki olmalıdır', + 'search_modifier_has_no_category' => 'İşlemin kategorisi olmamalıdır', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'İşlemin bir (herhangi bir) kategorisi olmalıdır', + 'search_modifier_has_no_budget' => 'İşlemin bütçesi olmamalıdır', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'İşlemin (herhangi bir) bütçesi olmalıdır', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'İşlemin faturası olmamalıdır', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'İşlemin (herhangi bir) faturası olmalıdır', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'İşlemin etiketi olmamalıdır', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'İşlemin bir (herhangi bir) etiketi olmalıdır', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'İşlemin notu yok', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'İşlemin notları olmalıdır', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Tutar şundan küçük veya şuna eşit ":value"', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Tutar şundan büyük veya eşittir :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Kaynak hesap adı tam olarak ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Kaynak hesap adı ":value" içeriyor', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Kaynak hesap adı ":value" ile başlar', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Kaynak hesap adı ":value" ile biter', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Kaynak hesap kimliği :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Kaynak hesap numarası (IBAN) ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Kaynak hesap numarası (IBAN) ":value" içeriyor', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Kaynak hesap numarası (IBAN) ":value" ile başlar', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Hedef hesap adı tam olarak ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Hedef hesap adı ":value" içeriyor', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Hedef hesap adı ":value" ile başlar', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Hedef hesap kimliği :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Hedef hesap numarası (IBAN) ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Hedef hesap numarası (IBAN) ":value" içeriyor', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Hedef hesap numarası (IBAN) ":value" ile başlar', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Hedef hesap numarası (IBAN) ":value" ile biter', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Kaynak veya hedef hesap kimlikleri: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Kategori ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Bütçe ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Fatura ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'İşlem türü ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Etiket şu şekildedir:value', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'İşlem öncesi veya yıl içinde yapılır ":value"', + 'search_modifier_date_before_month' => 'İşlem ay önce ya ":value"', + 'search_modifier_date_before_day' => 'İşlem ayın öncesinde veya günündedir ":value"', + 'search_modifier_date_after_year' => 'İşlem bir yıl içinde veya sonrasında gerçekleşir ":value"', + 'search_modifier_date_after_month' => 'İşlem ay içinde veya sonrasında ":value"', + 'search_modifier_date_after_day' => 'İşlem, ayın sonunda veya gününde gerçekleşir ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Arama sorgusundan ":rule" kuralını güncelle', - 'create_rule_from_query' => 'Arama sorgusundan yeni kural oluşturma', - 'rule_from_search_words' => 'Kural altyapısı ":string" işlemekte zorlanıyor. Arama sorgunuza uyan önerilen kural farklı sonuçlar verebilir. Lütfen kural tetikleyicilerini dikkatlice doğrulayın.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Arama sorgusundan ":rule" kuralını güncelle', + 'create_rule_from_query' => 'Arama sorgusundan yeni kural oluşturma', + 'rule_from_search_words' => 'Kural altyapısı ":string" işlemekte zorlanıyor. Arama sorgunuza uyan önerilen kural farklı sonuçlar verebilir. Lütfen kural tetikleyicilerini dikkatlice doğrulayın.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -727,498 +727,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Aşağıdaki değiştiriciler arama için de uygulanır:', - 'general_search_error' => 'Arama yaparken hata oluştu. Lütfen daha fazla bilgi için kütük dosyalarına göz atınız.', - 'search_box' => 'Ara', - 'search_box_intro' => 'Firefly III\'ün arama fonksiyonuna hoş geldiniz. Kutuya arama sorgunuzu giriniz. Arama oldukça gelişmiş olduğundan yardım dosyasını kontrol ettiğinizden emin olun.', - 'search_error' => 'Arama sırasında hata oluştu', - 'search_searching' => 'Aranıyor ...', - 'search_results' => 'Arama sonuçları', + 'modifiers_applies_are' => 'Aşağıdaki değiştiriciler arama için de uygulanır:', + 'general_search_error' => 'Arama yaparken hata oluştu. Lütfen daha fazla bilgi için kütük dosyalarına göz atınız.', + 'search_box' => 'Ara', + 'search_box_intro' => 'Firefly III\'ün arama fonksiyonuna hoş geldiniz. Kutuya arama sorgunuzu giriniz. Arama oldukça gelişmiş olduğundan yardım dosyasını kontrol ettiğinizden emin olun.', + 'search_error' => 'Arama sırasında hata oluştu', + 'search_searching' => 'Aranıyor ...', + 'search_results' => 'Arama sonuçları', // repeat frequencies: - 'repeat_freq_yearly' => 'yıllık', - 'repeat_freq_half-year' => 'her yarı yıl', - 'repeat_freq_quarterly' => 'üç aylık', - 'repeat_freq_monthly' => 'aylık', - 'repeat_freq_weekly' => 'haftalık', - 'repeat_freq_daily' => 'günlük', - 'daily' => 'günlük', - 'weekly' => 'haftalık', - 'quarterly' => 'üç aylık', - 'half-year' => 'her yarı yıl', - 'yearly' => 'yıllık', + 'repeat_freq_yearly' => 'yıllık', + 'repeat_freq_half-year' => 'her yarı yıl', + 'repeat_freq_quarterly' => 'üç aylık', + 'repeat_freq_monthly' => 'aylık', + 'repeat_freq_weekly' => 'haftalık', + 'repeat_freq_daily' => 'günlük', + 'daily' => 'günlük', + 'weekly' => 'haftalık', + 'quarterly' => 'üç aylık', + 'half-year' => 'her yarı yıl', + 'yearly' => 'yıllık', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Etkin olmayan kuralları yürütemezsiniz.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Kurallar', - 'rule_name' => 'Kural adı', - 'rule_triggers' => 'Kural ne zaman etkinleşir', - 'rule_actions' => 'Kural olacak', - 'new_rule' => 'Yeni kural', - 'new_rule_group' => 'Yeni kural grubu', - 'rule_priority_up' => 'Kurala daha fazla öncelik ver', - 'rule_priority_down' => 'Kurala daha az öncelik ver', - 'make_new_rule_group' => 'Yeni kural grubu oluştur', - 'store_new_rule_group' => 'Yeni kural grubunu kaydet', - 'created_new_rule_group' => 'Yeni kural grubu ":title" saklandı!', - 'updated_rule_group' => 'Başarıyla güncellenen kural grubu ":title".', - 'edit_rule_group' => '":title" kural grubunu düzenle', - 'duplicate_rule' => 'Yinelenen kural ":title"', - 'rule_copy_of' => 'Kopyası ":title"', - 'duplicated_rule' => 'Çoğaltılmış kural ":title" içinde ":newTitle"', - 'delete_rule_group' => '":title" kural grubunu sil', - 'deleted_rule_group' => 'Silinen kural grubu ":title"', - 'update_rule_group' => 'Grup bilgilerini güncelle', - 'no_rules_in_group' => 'Bu grupta kural yok', - 'move_rule_group_up' => 'Grup kuralını yukarı taşı', - 'move_rule_group_down' => 'Grup kuralını aşağı taşı', - 'save_rules_by_moving' => 'Bu kuralı başka bir kural grubuna taşıyarak kaydedin:|Bu kuralları başka bir kural grubuna taşıyarak kaydedin:', - 'make_new_rule' => '":title" kural grubunda yeni kural oluşturun', - 'make_new_rule_no_group' => 'Yeni bir kural ekleyin', - 'instructions_rule_from_bill' => 'Hesap hareketlerini ":name" ile eşleştirebilmeniz için Firefly III depolayacağınız tüm hesap hareketlerine karşı otomatik olarak kontrol edebilen bir kural oluşturabilir. Lütfen aşağıdaki detayları doğrulayın ve Firefly III\'ün hesap hareketlerini yeni faturanızla otomatik olarak eşleştirebilmesi için bu kuralı depolayın.', - 'instructions_rule_from_journal' => 'İşlemlerinizden birini temel alan bir kural oluşturun. Aşağıdaki formu tamamlayın veya gönderin.', - 'rule_is_strict' => 'sıkı kural', - 'rule_is_not_strict' => 'sıkı olmayan kural', - 'rule_help_stop_processing' => 'Bu kutuyu işaretlediğinizde, bu grupta sonraki kurallar yürütülemez.', - 'rule_help_strict' => 'Katı kuraldayken aksiyonun gerçekleşmesi için tüm tetikleyiciler tetiklenmelidir. Katı olmayan kuraldayken herhangi bir tetikleyicinin tetiklenmesi aksiyonun gerçekleşmesine yeterlidir.', - 'rule_help_active' => 'Aktif olmayan kurallar asla çalışmaz.', - 'stored_new_rule' => '":title" başlığıyla saklanmış yeni kural', - 'deleted_rule' => '":title" başlığıyla saklanmış kuralı sil', - 'store_new_rule' => 'Yeni kural sakla', - 'updated_rule' => '":title" başlığı ile la güncellenmiş kural', - 'default_rule_group_name' => 'Varsayılan kurallar', - 'default_rule_group_description' => 'Tüm kurallarınız belli bir grupta değil.', - 'trigger' => 'Tetikleyici', - 'trigger_value' => 'Değer üzerindeki tetikleyici', - 'stop_processing_other_triggers' => 'Diğer tetikleyicilerin işlenmesini durdur', - 'add_rule_trigger' => 'Yeni tetikleyici ekle', - 'action' => 'Eylem', - 'action_value' => 'Eylem değeri', - 'stop_executing_other_actions' => 'Diğer işlemleri yürütmeyi durdur', - 'add_rule_action' => 'Yeni eylem ekle', - 'edit_rule' => '":title" düzenle', - 'delete_rule' => '":title" kuralını sil', - 'update_rule' => 'Güncelleme kuralları', - 'test_rule_triggers' => 'Eşleşen işlemleri görün', - 'warning_no_matching_transactions' => 'Eşleşen işlem bulunamadı.', - 'warning_no_valid_triggers' => 'Geçerli tetikleyiciler sağlanmadı.', - 'apply_rule_selection' => 'İşleminizin bir bölümüne ":title" kuralını uygulayın', - 'apply_rule_selection_intro' => '":title" gibi kurallar normalde sadece yeni ve güncellenen işlemlerde geçerlidir ama Firefly III\'e onları mevcut işlemlerinizin istediğiniz bölümlerinde uygulanmasını söyleyebilirsiniz. Bu bir kuralı değiştirdiğinizde ve bunun diğer tüm işlemlerde uygulanmasını istediğinizde yararlı olabilir.', - 'include_transactions_from_accounts' => 'Bu hesaplardan gelen işlemleri dahil et', - 'include' => 'Vardır?', - 'applied_rule_selection' => '{0} Seçiminizdeki hiçbir işlem kural tarafından değiştirilmedi ":title".|[1] Seçiminizdeki bir işlem kuralla değiştirildi":title".|[2,*] :seçiminizdeki sayım işlemleri kurala göre değiştirildi ":title".', - 'execute' => 'Çalıştır', - 'apply_rule_group_selection' => 'İşlemlerinizin bir bölümüne ":title" kural grubunu uygulayın', - 'apply_rule_group_selection_intro' => '":title" gibi kural grupları normalde sadece yeni ve güncellenen işlemlerde geçerlidir ama Firefly III\'e onları mevcut işlemlerinizin istediğiniz bölümlerinde uygulanmasını söyleyebilirsiniz. Bu bir kural grubunu değiştirdiğinizde ve bunun diğer tüm işlemlerde uygulanmasını istediğinizde yararlı olabilir.', - 'applied_rule_group_selection' => 'Seçeneğinize ":title" kuralı uygulandı.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Etkin olmayan kuralları yürütemezsiniz.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Kurallar', + 'rule_name' => 'Kural adı', + 'rule_triggers' => 'Kural ne zaman etkinleşir', + 'rule_actions' => 'Kural olacak', + 'new_rule' => 'Yeni kural', + 'new_rule_group' => 'Yeni kural grubu', + 'rule_priority_up' => 'Kurala daha fazla öncelik ver', + 'rule_priority_down' => 'Kurala daha az öncelik ver', + 'make_new_rule_group' => 'Yeni kural grubu oluştur', + 'store_new_rule_group' => 'Yeni kural grubunu kaydet', + 'created_new_rule_group' => 'Yeni kural grubu ":title" saklandı!', + 'updated_rule_group' => 'Başarıyla güncellenen kural grubu ":title".', + 'edit_rule_group' => '":title" kural grubunu düzenle', + 'duplicate_rule' => 'Yinelenen kural ":title"', + 'rule_copy_of' => 'Kopyası ":title"', + 'duplicated_rule' => 'Çoğaltılmış kural ":title" içinde ":newTitle"', + 'delete_rule_group' => '":title" kural grubunu sil', + 'deleted_rule_group' => 'Silinen kural grubu ":title"', + 'update_rule_group' => 'Grup bilgilerini güncelle', + 'no_rules_in_group' => 'Bu grupta kural yok', + 'move_rule_group_up' => 'Grup kuralını yukarı taşı', + 'move_rule_group_down' => 'Grup kuralını aşağı taşı', + 'save_rules_by_moving' => 'Bu kuralı başka bir kural grubuna taşıyarak kaydedin:|Bu kuralları başka bir kural grubuna taşıyarak kaydedin:', + 'make_new_rule' => '":title" kural grubunda yeni kural oluşturun', + 'make_new_rule_no_group' => 'Yeni bir kural ekleyin', + 'instructions_rule_from_bill' => 'Hesap hareketlerini ":name" ile eşleştirebilmeniz için Firefly III depolayacağınız tüm hesap hareketlerine karşı otomatik olarak kontrol edebilen bir kural oluşturabilir. Lütfen aşağıdaki detayları doğrulayın ve Firefly III\'ün hesap hareketlerini yeni faturanızla otomatik olarak eşleştirebilmesi için bu kuralı depolayın.', + 'instructions_rule_from_journal' => 'İşlemlerinizden birini temel alan bir kural oluşturun. Aşağıdaki formu tamamlayın veya gönderin.', + 'rule_is_strict' => 'sıkı kural', + 'rule_is_not_strict' => 'sıkı olmayan kural', + 'rule_help_stop_processing' => 'Bu kutuyu işaretlediğinizde, bu grupta sonraki kurallar yürütülemez.', + 'rule_help_strict' => 'Katı kuraldayken aksiyonun gerçekleşmesi için tüm tetikleyiciler tetiklenmelidir. Katı olmayan kuraldayken herhangi bir tetikleyicinin tetiklenmesi aksiyonun gerçekleşmesine yeterlidir.', + 'rule_help_active' => 'Aktif olmayan kurallar asla çalışmaz.', + 'stored_new_rule' => '":title" başlığıyla saklanmış yeni kural', + 'deleted_rule' => '":title" başlığıyla saklanmış kuralı sil', + 'store_new_rule' => 'Yeni kural sakla', + 'updated_rule' => '":title" başlığı ile la güncellenmiş kural', + 'default_rule_group_name' => 'Varsayılan kurallar', + 'default_rule_group_description' => 'Tüm kurallarınız belli bir grupta değil.', + 'trigger' => 'Tetikleyici', + 'trigger_value' => 'Değer üzerindeki tetikleyici', + 'stop_processing_other_triggers' => 'Diğer tetikleyicilerin işlenmesini durdur', + 'add_rule_trigger' => 'Yeni tetikleyici ekle', + 'action' => 'Eylem', + 'action_value' => 'Eylem değeri', + 'stop_executing_other_actions' => 'Diğer işlemleri yürütmeyi durdur', + 'add_rule_action' => 'Yeni eylem ekle', + 'edit_rule' => '":title" düzenle', + 'delete_rule' => '":title" kuralını sil', + 'update_rule' => 'Güncelleme kuralları', + 'test_rule_triggers' => 'Eşleşen işlemleri görün', + 'warning_no_matching_transactions' => 'Eşleşen işlem bulunamadı.', + 'warning_no_valid_triggers' => 'Geçerli tetikleyiciler sağlanmadı.', + 'apply_rule_selection' => 'İşleminizin bir bölümüne ":title" kuralını uygulayın', + 'apply_rule_selection_intro' => '":title" gibi kurallar normalde sadece yeni ve güncellenen işlemlerde geçerlidir ama Firefly III\'e onları mevcut işlemlerinizin istediğiniz bölümlerinde uygulanmasını söyleyebilirsiniz. Bu bir kuralı değiştirdiğinizde ve bunun diğer tüm işlemlerde uygulanmasını istediğinizde yararlı olabilir.', + 'include_transactions_from_accounts' => 'Bu hesaplardan gelen işlemleri dahil et', + 'include' => 'Vardır?', + 'applied_rule_selection' => '{0} Seçiminizdeki hiçbir işlem kural tarafından değiştirilmedi ":title".|[1] Seçiminizdeki bir işlem kuralla değiştirildi":title".|[2,*] :seçiminizdeki sayım işlemleri kurala göre değiştirildi ":title".', + 'execute' => 'Çalıştır', + 'apply_rule_group_selection' => 'İşlemlerinizin bir bölümüne ":title" kural grubunu uygulayın', + 'apply_rule_group_selection_intro' => '":title" gibi kural grupları normalde sadece yeni ve güncellenen işlemlerde geçerlidir ama Firefly III\'e onları mevcut işlemlerinizin istediğiniz bölümlerinde uygulanmasını söyleyebilirsiniz. Bu bir kural grubunu değiştirdiğinizde ve bunun diğer tüm işlemlerde uygulanmasını istediğinizde yararlı olabilir.', + 'applied_rule_group_selection' => 'Seçeneğinize ":title" kuralı uygulandı.', // actions and triggers - 'rule_trigger_store_journal' => 'Bir işlem oluşturulduğunda', - 'rule_trigger_update_journal' => 'Bir işlem güncellendiğinde', - 'rule_trigger_user_action' => 'Kullanıcı işlemi ":trigger_value"', + 'rule_trigger_store_journal' => 'Bir işlem oluşturulduğunda', + 'rule_trigger_update_journal' => 'Bir işlem güncellendiğinde', + 'rule_trigger_user_action' => 'Kullanıcı işlemi ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Kaynak hesap adı ile başlar..', - 'rule_trigger_source_account_starts' => 'Kaynak hesap adı şununla başlar ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Kaynak hesap adı şununla biter ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Kaynak hesap adıdır..', - 'rule_trigger_source_account_is' => 'Kaynak hesap adı":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Kaynak hesap adı içerir..', - 'rule_trigger_source_account_contains' => 'Kaynak hesap adı şunları içerir ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Kaynak hesap kimliği tam olarak..', - 'rule_trigger_source_account_id' => 'Kaynak hesap kimliği tam olarak :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Hedef hesap kimliği tam olarak..', - 'rule_trigger_destination_account_id' => 'Hedef hesap kimliği tam olarak :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Kaynak hesap (nakit) hesaptır', - 'rule_trigger_source_is_cash' => 'Kaynak hesap (nakit) hesaptır', - 'rule_trigger_destination_is_cash_choice' => 'Hedef hesap (nakit) hesaptır', - 'rule_trigger_destination_is_cash' => 'Hedef hesap (nakit) hesaptır', - 'rule_trigger_source_account_nr_starts_choice' => 'Kaynak hesap numarası / IBAN ile başlar..', - 'rule_trigger_source_account_nr_starts' => 'Kaynak hesap numarası / IBAN ile başlar ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Kaynak hesap numarası / IBAN ile biter..', - 'rule_trigger_source_account_nr_ends' => 'Kaynak hesap numarası / IBAN ile biter ":trigger_value', - 'rule_trigger_source_account_nr_is_choice' => 'Kaynak hesap numarası / IBAN..', - 'rule_trigger_source_account_nr_is' => 'Kaynak hesap numarası / IBAN ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Kaynak hesap numarası / IBAN içerir..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains:trigger_value', - 'rule_trigger_destination_account_starts_choice' => 'Hedef hesap adı ile başlar..', - 'rule_trigger_destination_account_starts' => 'Hedef hesap adı şununla başlar ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Hedef hesap adı ile biter..', - 'rule_trigger_destination_account_ends' => 'Hedef hesap adı şununla biter ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Hedef hesap adıdır..', - 'rule_trigger_destination_account_is' => 'Hedef hesap adı":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Hedef hesap adı içerir..', - 'rule_trigger_destination_account_contains' => 'Hedef hesap adı şunları içerir ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Hedef hesap numarası / IBAN ile başlar..', - 'rule_trigger_destination_account_nr_starts' => 'Hedef hesap numarası / IBAN ":trigger_value" ile başlar', - 'rule_trigger_destination_account_nr_ends_choice' => 'Hedef hesap numarası / IBAN ile biter..', - 'rule_trigger_destination_account_nr_ends' => 'Hedef hesap numarası / IBAN ":trigger_value" ile bitiyor', - 'rule_trigger_destination_account_nr_is_choice' => 'Hedef hesap numarası / IBAN\'dır..', - 'rule_trigger_destination_account_nr_is' => 'Hedef hesap numarası / IBAN: ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Hedef hesap numarası / IBAN içerir..', - 'rule_trigger_destination_account_nr_contains' => 'Hedef hesap numarası / IBAN içerir ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'İşlem türü..', - 'rule_trigger_transaction_type' => 'İşlem türü ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Kategori..', - 'rule_trigger_category_is' => 'Kategori ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Açıklama başlıyor..', - 'rule_trigger_description_starts' => 'Açıklama ":trigger_value" ile başlar', - 'rule_trigger_description_ends_choice' => 'Açıklama bitiyor..', - 'rule_trigger_description_ends' => 'Açıklama ":trigger_value" ile bitiyor', - 'rule_trigger_description_contains_choice' => 'Açıklama içerir..', - 'rule_trigger_description_contains' => 'Açıklama ":trigger_value" içerir', - 'rule_trigger_description_is_choice' => 'Açıklama..', - 'rule_trigger_description_is' => 'Açıklama ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'İşlem tarihi öncedir..', - 'rule_trigger_date_before' => 'İşlem tarihi önce:trigger_value', - 'rule_trigger_date_after_choice' => 'İşlem tarihi sonradır..', - 'rule_trigger_date_after' => 'İşlem tarihi:trigger_value sonrasıdır', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Bütçe..', - 'rule_trigger_budget_is' => 'Bütçe ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'İşlem dövizi..', - 'rule_trigger_currency_is' => 'İşlem dövizi ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'İşlem dövizdir..', - 'rule_trigger_foreign_currency_is' => 'İşlem yabancı para birimi:trigger_value', - 'rule_trigger_has_attachments_choice' => 'En son bir çok eklentileri var', - 'rule_trigger_has_attachments' => 'En az:trigger_value eki (ler) var', - 'rule_trigger_has_no_category_choice' => 'Kategorisi yok', - 'rule_trigger_has_no_category' => 'İşlemin kategorisi yok', - 'rule_trigger_has_any_category_choice' => 'Bir kategorisi var', - 'rule_trigger_has_any_category' => 'İşlemin bir kategorisi var', - 'rule_trigger_has_no_budget_choice' => 'Bütçe yok', - 'rule_trigger_has_no_budget' => 'İşlem bütçesi yok', - 'rule_trigger_has_any_budget_choice' => 'Bir bütçesi var', - 'rule_trigger_has_any_budget' => 'İşlemin bir bütçesi var', - 'rule_trigger_has_no_bill_choice' => 'Faturası yok', - 'rule_trigger_has_no_bill' => 'İşlemin faturası yok', - 'rule_trigger_has_any_bill_choice' => '(Herhangi) bir faturası var mı', - 'rule_trigger_has_any_bill' => 'İşlemin (herhangi) bir faturası vardır', - 'rule_trigger_has_no_tag_choice' => 'Etiket yok', - 'rule_trigger_has_no_tag' => 'İşlemin etiketi yok', - 'rule_trigger_has_any_tag_choice' => 'Bir veya birçok etiketleri var', - 'rule_trigger_has_any_tag' => 'İşlemin bir veya birçok etiketi var', - 'rule_trigger_any_notes_choice' => 'Notları var', - 'rule_trigger_any_notes' => 'İşlemin notları var', - 'rule_trigger_no_notes_choice' => 'Notu yok', - 'rule_trigger_no_notes' => 'İşlemin notu yok', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill öyle..', - 'rule_trigger_bill_is' => 'Fatura:trigger_value', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'İşlem günlüğü kimliğidir..', - 'rule_trigger_journal_id' => 'İşlem günlüğü kimliği:trigger_value', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'İşlemin harici URL\'si yok', - 'rule_trigger_no_external_url' => 'İşlemin harici URL\'si yok', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'İşlem kimliğidir..', - 'rule_trigger_id' => 'İşlem kimliği:trigger_value', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Kaynak hesap adı ile başlar..', + 'rule_trigger_source_account_starts' => 'Kaynak hesap adı şununla başlar ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Kaynak hesap adı şununla biter ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Kaynak hesap adıdır..', + 'rule_trigger_source_account_is' => 'Kaynak hesap adı":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Kaynak hesap adı içerir..', + 'rule_trigger_source_account_contains' => 'Kaynak hesap adı şunları içerir ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Kaynak hesap kimliği tam olarak..', + 'rule_trigger_source_account_id' => 'Kaynak hesap kimliği tam olarak :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Hedef hesap kimliği tam olarak..', + 'rule_trigger_destination_account_id' => 'Hedef hesap kimliği tam olarak :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Kaynak hesap (nakit) hesaptır', + 'rule_trigger_source_is_cash' => 'Kaynak hesap (nakit) hesaptır', + 'rule_trigger_destination_is_cash_choice' => 'Hedef hesap (nakit) hesaptır', + 'rule_trigger_destination_is_cash' => 'Hedef hesap (nakit) hesaptır', + 'rule_trigger_source_account_nr_starts_choice' => 'Kaynak hesap numarası / IBAN ile başlar..', + 'rule_trigger_source_account_nr_starts' => 'Kaynak hesap numarası / IBAN ile başlar ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Kaynak hesap numarası / IBAN ile biter..', + 'rule_trigger_source_account_nr_ends' => 'Kaynak hesap numarası / IBAN ile biter ":trigger_value', + 'rule_trigger_source_account_nr_is_choice' => 'Kaynak hesap numarası / IBAN..', + 'rule_trigger_source_account_nr_is' => 'Kaynak hesap numarası / IBAN ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Kaynak hesap numarası / IBAN içerir..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains:trigger_value', + 'rule_trigger_destination_account_starts_choice' => 'Hedef hesap adı ile başlar..', + 'rule_trigger_destination_account_starts' => 'Hedef hesap adı şununla başlar ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Hedef hesap adı ile biter..', + 'rule_trigger_destination_account_ends' => 'Hedef hesap adı şununla biter ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Hedef hesap adıdır..', + 'rule_trigger_destination_account_is' => 'Hedef hesap adı":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Hedef hesap adı içerir..', + 'rule_trigger_destination_account_contains' => 'Hedef hesap adı şunları içerir ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Hedef hesap numarası / IBAN ile başlar..', + 'rule_trigger_destination_account_nr_starts' => 'Hedef hesap numarası / IBAN ":trigger_value" ile başlar', + 'rule_trigger_destination_account_nr_ends_choice' => 'Hedef hesap numarası / IBAN ile biter..', + 'rule_trigger_destination_account_nr_ends' => 'Hedef hesap numarası / IBAN ":trigger_value" ile bitiyor', + 'rule_trigger_destination_account_nr_is_choice' => 'Hedef hesap numarası / IBAN\'dır..', + 'rule_trigger_destination_account_nr_is' => 'Hedef hesap numarası / IBAN: ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Hedef hesap numarası / IBAN içerir..', + 'rule_trigger_destination_account_nr_contains' => 'Hedef hesap numarası / IBAN içerir ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'İşlem türü..', + 'rule_trigger_transaction_type' => 'İşlem türü ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori..', + 'rule_trigger_category_is' => 'Kategori ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Açıklama başlıyor..', + 'rule_trigger_description_starts' => 'Açıklama ":trigger_value" ile başlar', + 'rule_trigger_description_ends_choice' => 'Açıklama bitiyor..', + 'rule_trigger_description_ends' => 'Açıklama ":trigger_value" ile bitiyor', + 'rule_trigger_description_contains_choice' => 'Açıklama içerir..', + 'rule_trigger_description_contains' => 'Açıklama ":trigger_value" içerir', + 'rule_trigger_description_is_choice' => 'Açıklama..', + 'rule_trigger_description_is' => 'Açıklama ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'İşlem tarihi öncedir..', + 'rule_trigger_date_before' => 'İşlem tarihi önce:trigger_value', + 'rule_trigger_date_after_choice' => 'İşlem tarihi sonradır..', + 'rule_trigger_date_after' => 'İşlem tarihi:trigger_value sonrasıdır', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Bütçe..', + 'rule_trigger_budget_is' => 'Bütçe ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'İşlem dövizi..', + 'rule_trigger_currency_is' => 'İşlem dövizi ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'İşlem dövizdir..', + 'rule_trigger_foreign_currency_is' => 'İşlem yabancı para birimi:trigger_value', + 'rule_trigger_has_attachments_choice' => 'En son bir çok eklentileri var', + 'rule_trigger_has_attachments' => 'En az:trigger_value eki (ler) var', + 'rule_trigger_has_no_category_choice' => 'Kategorisi yok', + 'rule_trigger_has_no_category' => 'İşlemin kategorisi yok', + 'rule_trigger_has_any_category_choice' => 'Bir kategorisi var', + 'rule_trigger_has_any_category' => 'İşlemin bir kategorisi var', + 'rule_trigger_has_no_budget_choice' => 'Bütçe yok', + 'rule_trigger_has_no_budget' => 'İşlem bütçesi yok', + 'rule_trigger_has_any_budget_choice' => 'Bir bütçesi var', + 'rule_trigger_has_any_budget' => 'İşlemin bir bütçesi var', + 'rule_trigger_has_no_bill_choice' => 'Faturası yok', + 'rule_trigger_has_no_bill' => 'İşlemin faturası yok', + 'rule_trigger_has_any_bill_choice' => '(Herhangi) bir faturası var mı', + 'rule_trigger_has_any_bill' => 'İşlemin (herhangi) bir faturası vardır', + 'rule_trigger_has_no_tag_choice' => 'Etiket yok', + 'rule_trigger_has_no_tag' => 'İşlemin etiketi yok', + 'rule_trigger_has_any_tag_choice' => 'Bir veya birçok etiketleri var', + 'rule_trigger_has_any_tag' => 'İşlemin bir veya birçok etiketi var', + 'rule_trigger_any_notes_choice' => 'Notları var', + 'rule_trigger_any_notes' => 'İşlemin notları var', + 'rule_trigger_no_notes_choice' => 'Notu yok', + 'rule_trigger_no_notes' => 'İşlemin notu yok', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill öyle..', + 'rule_trigger_bill_is' => 'Fatura:trigger_value', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'İşlem günlüğü kimliğidir..', + 'rule_trigger_journal_id' => 'İşlem günlüğü kimliği:trigger_value', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'İşlemin harici URL\'si yok', + 'rule_trigger_no_external_url' => 'İşlemin harici URL\'si yok', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'İşlem kimliğidir..', + 'rule_trigger_id' => 'İşlem kimliği:trigger_value', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1233,340 +1233,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Kategoriyi ":action_value" olarak ayarla', - 'rule_action_clear_category' => 'Kategoriyi temizle', - 'rule_action_set_budget' => 'Bütçeyi ":action_value" olarak ayarlayın', - 'rule_action_clear_budget' => 'Bütçeyi temizle', - 'rule_action_add_tag' => '":action_value" etiketi ekle', - 'rule_action_remove_tag' => '":action_value" etiketini kaldır', - 'rule_action_remove_all_tags' => 'Tüm etiketleri kaldır', - 'rule_action_set_description' => 'Açıklamayı ":action_value" olarak ayarla', - 'rule_action_append_description' => 'Açıklamayı ":action_value" ile ekle', - 'rule_action_prepend_description' => 'Açıklamayı ":action_value" ile ekleyin', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Tüm kategoriyi temizle', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Herhangi bir bütçeyi temizle', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Tüm etiketleri kaldır', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Kaynak hesaba :action_value ayarlayınız', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Hedef hesaba :action_value ayarlayınız', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => '":action_value" ile not ekle', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Notlarına başına ":action_value" ekleyiniz', - 'rule_action_clear_notes_choice' => 'Herhangi bir notu kaldır', - 'rule_action_clear_notes' => 'Herhangi bir notu kaldır', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Fatura linki ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Notları ":action_value" olarak ayarla', - 'rule_action_convert_deposit_choice' => 'İşlemi mevduata dönüştür', - 'rule_action_convert_deposit' => 'İşlemi ":action_value" mevduatına dönüştür', - 'rule_action_convert_withdrawal_choice' => 'İşlemi para çekmeye dönüştür', - 'rule_action_convert_withdrawal' => 'İşlemi ":action_value" para çekmeye dönüştür', - 'rule_action_convert_transfer_choice' => 'İşlemi transfere dönüştür', - 'rule_action_convert_transfer' => 'İşlemi ":action_value" transferine dönüştür', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Fatura kuralı grubu', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Fatura için yeni bir kural oluşturmal ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Fatura için kural ":name"', - 'new_rule_for_bill_description' => 'Bu kural fatura işlemlerini işaretler ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Kategoriyi ":action_value" olarak ayarla', + 'rule_action_clear_category' => 'Kategoriyi temizle', + 'rule_action_set_budget' => 'Bütçeyi ":action_value" olarak ayarlayın', + 'rule_action_clear_budget' => 'Bütçeyi temizle', + 'rule_action_add_tag' => '":action_value" etiketi ekle', + 'rule_action_remove_tag' => '":action_value" etiketini kaldır', + 'rule_action_remove_all_tags' => 'Tüm etiketleri kaldır', + 'rule_action_set_description' => 'Açıklamayı ":action_value" olarak ayarla', + 'rule_action_append_description' => 'Açıklamayı ":action_value" ile ekle', + 'rule_action_prepend_description' => 'Açıklamayı ":action_value" ile ekleyin', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Tüm kategoriyi temizle', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Herhangi bir bütçeyi temizle', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Tüm etiketleri kaldır', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Kaynak hesaba :action_value ayarlayınız', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Hedef hesaba :action_value ayarlayınız', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => '":action_value" ile not ekle', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Notlarına başına ":action_value" ekleyiniz', + 'rule_action_clear_notes_choice' => 'Herhangi bir notu kaldır', + 'rule_action_clear_notes' => 'Herhangi bir notu kaldır', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Fatura linki ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Notları ":action_value" olarak ayarla', + 'rule_action_convert_deposit_choice' => 'İşlemi mevduata dönüştür', + 'rule_action_convert_deposit' => 'İşlemi ":action_value" mevduatına dönüştür', + 'rule_action_convert_withdrawal_choice' => 'İşlemi para çekmeye dönüştür', + 'rule_action_convert_withdrawal' => 'İşlemi ":action_value" para çekmeye dönüştür', + 'rule_action_convert_transfer_choice' => 'İşlemi transfere dönüştür', + 'rule_action_convert_transfer' => 'İşlemi ":action_value" transferine dönüştür', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Fatura kuralı grubu', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Fatura için yeni bir kural oluşturmal ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Fatura için kural ":name"', + 'new_rule_for_bill_description' => 'Bu kural fatura işlemlerini işaretler ":name".', - 'new_rule_for_journal_title' => 'İşleme dayalı kural ":description"', - 'new_rule_for_journal_description' => 'Bu kural işleme dayanmaktadır ":description". Tam olarak aynı olan işlemlerle eşleşecektir.', + 'new_rule_for_journal_title' => 'İşleme dayalı kural ":description"', + 'new_rule_for_journal_description' => 'Bu kural işleme dayanmaktadır ":description". Tam olarak aynı olan işlemlerle eşleşecektir.', // tags - 'store_new_tag' => 'Yeni etiket kaydet', - 'update_tag' => 'Etiketi Güncelle', - 'no_location_set' => 'Konum ayarlanamadı.', - 'meta_data' => 'Meta veri', - 'location' => 'Konum', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Tarihsiz', - 'result' => 'Sonuç', - 'sums_apply_to_range' => 'Tüm toplamlar seçili aralıkta geçerlidir', - 'mapbox_api_key' => 'Map\'i kullanmak için şu adresten bir API anahtarı alın: Mapbox. Seninkini aç .env dosyalayın ve sonra bu kodu girin MAPBOX_API_KEY=.', - 'press_object_location' => 'Nesnenin konumunu ayarlamak için sağ tıklayın veya uzun basın.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Konumu temizle', - 'delete_all_selected_tags' => 'Seçili tüm etiketleri sil', - 'select_tags_to_delete' => 'Bazı etiketler seçmeyi unutmayın.', - 'deleted_x_tags' => 'Silmek :count etiket.|Silmek :count etiket.', - 'create_rule_from_transaction' => 'İşleme dayalı kural oluşturma', - 'create_recurring_from_transaction' => 'İşleme dayalı yinelenen işlem oluşturma', + 'store_new_tag' => 'Yeni etiket kaydet', + 'update_tag' => 'Etiketi Güncelle', + 'no_location_set' => 'Konum ayarlanamadı.', + 'meta_data' => 'Meta veri', + 'location' => 'Konum', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Tarihsiz', + 'result' => 'Sonuç', + 'sums_apply_to_range' => 'Tüm toplamlar seçili aralıkta geçerlidir', + 'mapbox_api_key' => 'Map\'i kullanmak için şu adresten bir API anahtarı alın: Mapbox. Seninkini aç .env dosyalayın ve sonra bu kodu girin MAPBOX_API_KEY=.', + 'press_object_location' => 'Nesnenin konumunu ayarlamak için sağ tıklayın veya uzun basın.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Konumu temizle', + 'delete_all_selected_tags' => 'Seçili tüm etiketleri sil', + 'select_tags_to_delete' => 'Bazı etiketler seçmeyi unutmayın.', + 'deleted_x_tags' => 'Silmek :count etiket.|Silmek :count etiket.', + 'create_rule_from_transaction' => 'İşleme dayalı kural oluşturma', + 'create_recurring_from_transaction' => 'İşleme dayalı yinelenen işlem oluşturma', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(dile eşit)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Ana ekran hesapları', - 'pref_home_screen_accounts_help' => 'Giriş sayfasında hangi hesaplar görüntülensin?', - 'pref_view_range' => 'Görüş Mesafesi', - 'pref_view_range_help' => 'Bazı grafikler otomatik olarak dönemler halinde gruplandırılır. Bütçeleriniz de dönemlere göre gruplandırılacaktır. Hangi dönemi tercih edersin?', - 'pref_1D' => 'Bir gün', - 'pref_1W' => 'Bir hafta', - 'pref_1M' => 'Bir ay', - 'pref_3M' => 'Üç ay (çeyrek)', - 'pref_6M' => 'Altı ay', - 'pref_1Y' => 'Bir yıl', - 'pref_last365' => 'Geçen yıl', - 'pref_last90' => 'Son 90 gün', - 'pref_last30' => 'Son 30 gün', - 'pref_last7' => 'Son 7 gün', - 'pref_YTD' => 'Yıldan bugüne', - 'pref_QTD' => 'Bugüne kadar tarih', - 'pref_MTD' => 'Bugüne kadar ay', - 'pref_languages' => 'Diller', - 'pref_locale' => 'Yerel ayarlar', - 'pref_languages_help' => 'Firefly III birçok dili destekliyor. Hangisini tercih edersiniz?', - 'pref_locale_help' => 'Firefly III, para birimlerinin, sayıların ve tarihlerin nasıl biçimlendirildiği gibi diğer yerel ayarları ayarlamanıza olanak tanır. Bu listedeki girdiler sisteminiz tarafından desteklenmeyebilir. Firefly III her yerel ayar için doğru tarih ayarlarına sahip değil; iyileştirmeler için bana ulaşın.', - 'pref_locale_no_demo' => 'Bu özellik demo kullanıcısı için çalışmaz.', - 'pref_custom_fiscal_year' => 'Mali yıl ayarları', - 'pref_custom_fiscal_year_label' => 'Etkin', - 'pref_custom_fiscal_year_help' => '1 Ocak - 31 Aralık arasındaki bir mali yılı kullanan ülkelerde bu ayarı açabilir ve mali yılın başlangıç / bitiş günlerini belirleyebilirsiniz', - 'pref_fiscal_year_start_label' => 'Mali yıl başlangıç tarihi', - 'pref_two_factor_auth' => '2 adımlı doğrulama', - 'pref_two_factor_auth_help' => '2 adımlı doğrulamayı etkinleştirdiğinizde (iki faktörlü kimlik doğrulama olarak da bilinir) hesabınıza fazladan bir güvenlik katmanı eklersiniz. Bildiğiniz bir şeyle (şifreniz) ve sahip olduğunuz bir şeyle(doğrulama kodu) ile giriş yaparsınız. Doğrulama kodları telefonunuzda Authy ya da Google Authenticator gibi bir uygulama tarafından oluşturulur.', - 'pref_enable_two_factor_auth' => '2 adımlı doğrulamayı etkinleştir', - 'pref_two_factor_auth_disabled' => '2 adımlı doğrulama kodu kaldırıldı ve devre dışı bırakıldı', - 'pref_two_factor_auth_remove_it' => 'Kimlik hesabı doğrulama uygulaması için çıkış yapmayı unutmayın!', - 'pref_two_factor_auth_code' => 'Doğrulama kodu', - 'pref_two_factor_auth_code_help' => 'QR kodunu, telefonunuzda Authy veya Authenticator uygulamalarında bulun ve oluşturulan kodu girin.', - 'pref_two_factor_auth_reset_code' => 'Doğrulama kodunu sıfırla', - 'pref_two_factor_auth_disable_2fa' => '2FA\'yı kapatın', - '2fa_use_secret_instead' => 'QR kodunu tarayamıyorsanız, bunun yerine sırrı kullanmaktan çekinmeyin: :secret.', - '2fa_backup_codes' => 'Cihazınızı kaybetmeniz durumunda erişim için bu yedekleme kodlarını saklayın.', - '2fa_already_enabled' => '2 adımlı doğrulama zaten etkindir.', - 'wrong_mfa_code' => 'Bu MFA kodu geçerli değil.', - 'pref_save_settings' => 'Ayarları kaydet', - 'saved_preferences' => 'Tercihler kaydedildi!', - 'preferences_general' => 'Genel', - 'preferences_frontpage' => 'Ana ekran', - 'preferences_security' => 'Güvenlik', - 'preferences_layout' => 'Düzen', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Ana ekranda mevduat göster', - 'pref_home_show_deposits_info' => 'Ana ekranınızda hesaplarınız zaten görüntülenir. Gelir hesaplarınız da görüntülensin mi?', - 'pref_home_do_show_deposits' => 'Evet, onlara göster', - 'successful_count' => ':count bunlar başarılı oldu', - 'list_page_size_title' => 'Sayfa boyutu', - 'list_page_size_help' => 'Herhangi bir şeyin listesi (hesaplar, işlemler, vb) sayfa başına en fazla bu kadar gösterebilir.', - 'list_page_size_label' => 'Sayfa boyutu', - 'between_dates' => "(:start \u{200b}ve :end)", - 'pref_optional_fields_transaction' => 'İşlemler için bağlı alanlar', - 'pref_optional_fields_transaction_help' => 'Yeni bir işlem oluşturulurken (dağınıklık nedeniyle) varsayılan olarak tüm alanlar ektinleştirilmez. Aşağıdan, eğer işinize yarayacağını düşünüyorsanız bu alanları ektinleştirebilirsiniz. Tabii ki, devre dışı bırakılmış ama zaten doldurulmuş alanlar ayarlar ne olursa olsun görünecektir.', - 'optional_tj_date_fields' => 'Tarih alanları', - 'optional_tj_other_fields' => 'Diğer alanlar', - 'optional_tj_attachment_fields' => 'Ek alanları', - 'pref_optional_tj_interest_date' => 'Faiz tarihi', - 'pref_optional_tj_book_date' => 'Kitap tarihi', - 'pref_optional_tj_process_date' => 'İşlem tarihi', - 'pref_optional_tj_due_date' => 'Bitiş tarihi', - 'pref_optional_tj_payment_date' => 'Ödeme tarihi', - 'pref_optional_tj_invoice_date' => 'Fatura tarihi', - 'pref_optional_tj_internal_reference' => 'Dahili referans', - 'pref_optional_tj_notes' => 'Notlar', - 'pref_optional_tj_attachments' => 'Ekler', - 'pref_optional_tj_external_url' => 'Dış URL', - 'pref_optional_tj_location' => 'Konum', - 'pref_optional_tj_links' => 'İşlem bağlantıları', - 'optional_field_meta_dates' => 'Tarih', - 'optional_field_meta_business' => 'İş', - 'optional_field_attachments' => 'Ekler', - 'optional_field_meta_data' => 'İsteğe bağlı meta veriler', - 'external_url' => 'Harici URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(dile eşit)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Ana ekran hesapları', + 'pref_home_screen_accounts_help' => 'Giriş sayfasında hangi hesaplar görüntülensin?', + 'pref_view_range' => 'Görüş Mesafesi', + 'pref_view_range_help' => 'Bazı grafikler otomatik olarak dönemler halinde gruplandırılır. Bütçeleriniz de dönemlere göre gruplandırılacaktır. Hangi dönemi tercih edersin?', + 'pref_1D' => 'Bir gün', + 'pref_1W' => 'Bir hafta', + 'pref_1M' => 'Bir ay', + 'pref_3M' => 'Üç ay (çeyrek)', + 'pref_6M' => 'Altı ay', + 'pref_1Y' => 'Bir yıl', + 'pref_last365' => 'Geçen yıl', + 'pref_last90' => 'Son 90 gün', + 'pref_last30' => 'Son 30 gün', + 'pref_last7' => 'Son 7 gün', + 'pref_YTD' => 'Yıldan bugüne', + 'pref_QTD' => 'Bugüne kadar tarih', + 'pref_MTD' => 'Bugüne kadar ay', + 'pref_languages' => 'Diller', + 'pref_locale' => 'Yerel ayarlar', + 'pref_languages_help' => 'Firefly III birçok dili destekliyor. Hangisini tercih edersiniz?', + 'pref_locale_help' => 'Firefly III, para birimlerinin, sayıların ve tarihlerin nasıl biçimlendirildiği gibi diğer yerel ayarları ayarlamanıza olanak tanır. Bu listedeki girdiler sisteminiz tarafından desteklenmeyebilir. Firefly III her yerel ayar için doğru tarih ayarlarına sahip değil; iyileştirmeler için bana ulaşın.', + 'pref_locale_no_demo' => 'Bu özellik demo kullanıcısı için çalışmaz.', + 'pref_custom_fiscal_year' => 'Mali yıl ayarları', + 'pref_custom_fiscal_year_label' => 'Etkin', + 'pref_custom_fiscal_year_help' => '1 Ocak - 31 Aralık arasındaki bir mali yılı kullanan ülkelerde bu ayarı açabilir ve mali yılın başlangıç / bitiş günlerini belirleyebilirsiniz', + 'pref_fiscal_year_start_label' => 'Mali yıl başlangıç tarihi', + 'pref_two_factor_auth' => '2 adımlı doğrulama', + 'pref_two_factor_auth_help' => '2 adımlı doğrulamayı etkinleştirdiğinizde (iki faktörlü kimlik doğrulama olarak da bilinir) hesabınıza fazladan bir güvenlik katmanı eklersiniz. Bildiğiniz bir şeyle (şifreniz) ve sahip olduğunuz bir şeyle(doğrulama kodu) ile giriş yaparsınız. Doğrulama kodları telefonunuzda Authy ya da Google Authenticator gibi bir uygulama tarafından oluşturulur.', + 'pref_enable_two_factor_auth' => '2 adımlı doğrulamayı etkinleştir', + 'pref_two_factor_auth_disabled' => '2 adımlı doğrulama kodu kaldırıldı ve devre dışı bırakıldı', + 'pref_two_factor_auth_remove_it' => 'Kimlik hesabı doğrulama uygulaması için çıkış yapmayı unutmayın!', + 'pref_two_factor_auth_code' => 'Doğrulama kodu', + 'pref_two_factor_auth_code_help' => 'QR kodunu, telefonunuzda Authy veya Authenticator uygulamalarında bulun ve oluşturulan kodu girin.', + 'pref_two_factor_auth_reset_code' => 'Doğrulama kodunu sıfırla', + 'pref_two_factor_auth_disable_2fa' => '2FA\'yı kapatın', + '2fa_use_secret_instead' => 'QR kodunu tarayamıyorsanız, bunun yerine sırrı kullanmaktan çekinmeyin: :secret.', + '2fa_backup_codes' => 'Cihazınızı kaybetmeniz durumunda erişim için bu yedekleme kodlarını saklayın.', + '2fa_already_enabled' => '2 adımlı doğrulama zaten etkindir.', + 'wrong_mfa_code' => 'Bu MFA kodu geçerli değil.', + 'pref_save_settings' => 'Ayarları kaydet', + 'saved_preferences' => 'Tercihler kaydedildi!', + 'preferences_general' => 'Genel', + 'preferences_frontpage' => 'Ana ekran', + 'preferences_security' => 'Güvenlik', + 'preferences_layout' => 'Düzen', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Ana ekranda mevduat göster', + 'pref_home_show_deposits_info' => 'Ana ekranınızda hesaplarınız zaten görüntülenir. Gelir hesaplarınız da görüntülensin mi?', + 'pref_home_do_show_deposits' => 'Evet, onlara göster', + 'successful_count' => ':count bunlar başarılı oldu', + 'list_page_size_title' => 'Sayfa boyutu', + 'list_page_size_help' => 'Herhangi bir şeyin listesi (hesaplar, işlemler, vb) sayfa başına en fazla bu kadar gösterebilir.', + 'list_page_size_label' => 'Sayfa boyutu', + 'between_dates' => "(:start \u{200b}ve :end)", + 'pref_optional_fields_transaction' => 'İşlemler için bağlı alanlar', + 'pref_optional_fields_transaction_help' => 'Yeni bir işlem oluşturulurken (dağınıklık nedeniyle) varsayılan olarak tüm alanlar ektinleştirilmez. Aşağıdan, eğer işinize yarayacağını düşünüyorsanız bu alanları ektinleştirebilirsiniz. Tabii ki, devre dışı bırakılmış ama zaten doldurulmuş alanlar ayarlar ne olursa olsun görünecektir.', + 'optional_tj_date_fields' => 'Tarih alanları', + 'optional_tj_other_fields' => 'Diğer alanlar', + 'optional_tj_attachment_fields' => 'Ek alanları', + 'pref_optional_tj_interest_date' => 'Faiz tarihi', + 'pref_optional_tj_book_date' => 'Kitap tarihi', + 'pref_optional_tj_process_date' => 'İşlem tarihi', + 'pref_optional_tj_due_date' => 'Bitiş tarihi', + 'pref_optional_tj_payment_date' => 'Ödeme tarihi', + 'pref_optional_tj_invoice_date' => 'Fatura tarihi', + 'pref_optional_tj_internal_reference' => 'Dahili referans', + 'pref_optional_tj_notes' => 'Notlar', + 'pref_optional_tj_attachments' => 'Ekler', + 'pref_optional_tj_external_url' => 'Dış URL', + 'pref_optional_tj_location' => 'Konum', + 'pref_optional_tj_links' => 'İşlem bağlantıları', + 'optional_field_meta_dates' => 'Tarih', + 'optional_field_meta_business' => 'İş', + 'optional_field_attachments' => 'Ekler', + 'optional_field_meta_data' => 'İsteğe bağlı meta veriler', + 'external_url' => 'Harici URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'Diğer tüm oturumlarınız kapatıldı.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Diğer tüm seanslarınız kapatıldı', - 'delete_all_categories' => 'TÜM kategorilerinizi silme', - 'delete_all_tags' => 'TÜM etiketlerinizi silin', - 'delete_all_bills' => 'TÜM faturalarınızı silin', - 'delete_all_piggy_banks' => 'TÜM kumbaralarınızı silin', - 'delete_all_rules' => 'TÜM kurallarınızı silin', - 'delete_all_recurring' => 'Yinelenen tüm işlemlerinizi silme', - 'delete_all_object_groups' => 'TÜM nesne gruplarınızı silme', - 'delete_all_accounts' => 'TÜM hesaplarınızı silin', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => 'Şifrenizi değiştirin', - 'delete_account' => 'Hesabı Sil', - 'current_password' => 'Güncel Şifre', - 'new_password' => 'Yeni Şifre', - 'new_password_again' => 'Yeni Şifre (Tekrar)', - 'delete_your_account' => 'Hesabını Sil', - 'delete_your_account_help' => 'Hesabınızı silmeniz aynı zamanda Firefly III\'e kaydetmiş olabileceğiniz hesapları, işlemleri, her şeyi de silecektir. YOK OLACAK.', - 'delete_your_account_password' => 'Devam etmek için şifrenizi girin.', - 'password' => 'Şifre', - 'are_you_sure' => 'Emin misiniz? Bunu geri alamazsınız.', - 'delete_account_button' => 'Hesabını Sil', - 'invalid_current_password' => 'Geçersiz Şifre!', - 'password_changed' => 'Şifre değiştirildi!', - 'should_change' => 'Amaç, şifrenizi değiştirmenizdir.', - 'invalid_password' => 'Geçersiz şifre!', - 'what_is_pw_security' => '\'\'Doğrulama şifresi güvenliği\'\' nedir?', - 'secure_pw_title' => 'Güvenli şifre nasıl seçilir?', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', - 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', - 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', - 'secure_pw_working_title' => 'How does it work?', - 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', - 'secure_pw_should' => 'Kutuyu kontrol etmeli miyim?', - 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', - 'command_line_token' => 'Command line token', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => 'Regenerate command line token', - 'token_regenerated' => 'A new command line token was generated', - 'change_your_email' => 'E-posta adresini değiştir', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'E-posta adresinizi doğrulayana kadar giriş yapamazsınız.', - 'login_with_new_email' => 'Artık yeni e-posta adresinizle giriş yapabilirsiniz.', - 'login_with_old_email' => 'Artık eski e-posta adresinizle yeniden giriş yapabilirsiniz.', - 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Müşteri Oluştur', - 'profile_oauth_edit_client' => 'İstemciyi Düzenle', - 'profile_oauth_name_help' => 'Kullanıcılarınızın tanıyacağı ve güveneceği bir şey.', - 'profile_oauth_redirect_url' => 'URL\'yi yönlendir', - 'profile_oauth_redirect_url_help' => 'Uygulamanızın yetkilendirme geri arama URL\'si.', - 'profile_authorized_apps' => 'Yetkili uygulamalar', - 'profile_authorized_clients' => 'Yetkili müşteriler', - 'profile_scopes' => 'Kapsamalar', - 'profile_revoke' => 'İptal etmek', - 'profile_oauth_client_secret_title' => 'Müşteri Sırrı', - 'profile_oauth_client_secret_expl' => 'İşte yeni müşteri sırrın. Bu gösterilecek tek zaman, bu yüzden onu kaybetme! Artık API istekleri yapmak için bu sırrı kullanabilirsiniz.', - 'profile_personal_access_tokens' => 'Kişisel Erişim Belirteçleri', - 'profile_personal_access_token' => 'Kişisel Erişim Belirteci', - 'profile_oauth_confidential' => 'Gizli', - 'profile_oauth_confidential_help' => 'İstemcinin bir sır ile kimlik doğrulaması yapmasını isteyin. Gizli müşteriler, kimlik bilgilerini yetkisiz taraflara ifşa etmeden güvenli bir şekilde saklayabilir. Yerel masaüstü veya JavaScript SPA uygulamaları gibi genel uygulamalar sırları güvenli bir şekilde saklayamaz.', - 'profile_personal_access_token_explanation' => 'İşte yeni kişisel erişim belirteciniz. Bu gösterilecek tek zaman, bu yüzden onu kaybetme! Artık API istekleri yapmak için bu belirtecini kullanabilirsiniz.', - 'profile_no_personal_access_token' => 'Herhangi bir kişisel erişim belirteci oluşturmadınız.', - 'profile_create_new_token' => 'Yeni belirteç oluştur', - 'profile_create_token' => 'Belirteç oluştur', - 'profile_create' => 'Belirteç oluşturma', - 'profile_save_changes' => 'Değişiklikleri kaydet', - 'profile_whoops' => 'Hoppala!', - 'profile_something_wrong' => 'Bir şeyler ters gitti!', - 'profile_try_again' => 'Bir şeyler yanlış gitti. Lütfen tekrar deneyin.', - 'amounts' => 'Miktarlar', - 'multi_account_warning_unknown' => 'Oluşturduğunuz işlemin türüne bağlı olarak, sonraki bölünmelerin kaynak ve / veya hedef hesabı, işlemin ilk bölünmesinde tanımlanan her şey tarafından geçersiz kılınabilir.', - 'multi_account_warning_withdrawal' => 'Sonraki bölünmelerin kaynak hesabının, geri çekilmenin ilk bölünmesinde tanımlanan herhangi bir şey tarafından reddedileceğini unutmayın.', - 'multi_account_warning_deposit' => 'Sonraki bölünmelerin hedef hesabının, mevduatın ilk bölünmesinde tanımlanan herhangi bir şey tarafından iptal edileceğini unutmayın.', - 'multi_account_warning_transfer' => 'Sonraki bölünmelerin kaynak + hedef hesabının, aktarımın ilk bölünmesinde tanımlanan her şey tarafından geçersiz kılınacağını unutmayın.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'Diğer tüm oturumlarınız kapatıldı.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Diğer tüm seanslarınız kapatıldı', + 'delete_all_categories' => 'TÜM kategorilerinizi silme', + 'delete_all_tags' => 'TÜM etiketlerinizi silin', + 'delete_all_bills' => 'TÜM faturalarınızı silin', + 'delete_all_piggy_banks' => 'TÜM kumbaralarınızı silin', + 'delete_all_rules' => 'TÜM kurallarınızı silin', + 'delete_all_recurring' => 'Yinelenen tüm işlemlerinizi silme', + 'delete_all_object_groups' => 'TÜM nesne gruplarınızı silme', + 'delete_all_accounts' => 'TÜM hesaplarınızı silin', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => 'Şifrenizi değiştirin', + 'delete_account' => 'Hesabı Sil', + 'current_password' => 'Güncel Şifre', + 'new_password' => 'Yeni Şifre', + 'new_password_again' => 'Yeni Şifre (Tekrar)', + 'delete_your_account' => 'Hesabını Sil', + 'delete_your_account_help' => 'Hesabınızı silmeniz aynı zamanda Firefly III\'e kaydetmiş olabileceğiniz hesapları, işlemleri, her şeyi de silecektir. YOK OLACAK.', + 'delete_your_account_password' => 'Devam etmek için şifrenizi girin.', + 'password' => 'Şifre', + 'are_you_sure' => 'Emin misiniz? Bunu geri alamazsınız.', + 'delete_account_button' => 'Hesabını Sil', + 'invalid_current_password' => 'Geçersiz Şifre!', + 'password_changed' => 'Şifre değiştirildi!', + 'should_change' => 'Amaç, şifrenizi değiştirmenizdir.', + 'invalid_password' => 'Geçersiz şifre!', + 'what_is_pw_security' => '\'\'Doğrulama şifresi güvenliği\'\' nedir?', + 'secure_pw_title' => 'Güvenli şifre nasıl seçilir?', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => 'Not a week goes by that you read in the news about a site losing the passwords of its users. Hackers and thieves use these passwords to try to steal your private information. This information is valuable.', + 'secure_pw_ff' => 'Do you use the same password all over the internet? If one site loses your password, hackers have access to all your data. Firefly III relies on you to choose a strong and unique password to protect your financial records.', + 'secure_pw_check_box' => 'To help you do that Firefly III can check if the password you want to use has been stolen in the past. If this is the case, Firefly III advises you NOT to use that password.', + 'secure_pw_working_title' => 'How does it work?', + 'secure_pw_working' => 'By checking the box, Firefly III will send the first five characters of the SHA1 hash of your password to the website of Troy Hunt to see if it is on the list. This will stop you from using unsafe passwords as is recommended in the latest NIST Special Publication on this subject.', + 'secure_pw_should' => 'Kutuyu kontrol etmeli miyim?', + 'secure_pw_long_password' => 'Yes. Always verify your password is safe.', + 'command_line_token' => 'Command line token', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => 'Regenerate command line token', + 'token_regenerated' => 'A new command line token was generated', + 'change_your_email' => 'E-posta adresini değiştir', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'E-posta adresinizi doğrulayana kadar giriş yapamazsınız.', + 'login_with_new_email' => 'Artık yeni e-posta adresinizle giriş yapabilirsiniz.', + 'login_with_old_email' => 'Artık eski e-posta adresinizle yeniden giriş yapabilirsiniz.', + 'login_provider_local_only' => 'This action is not available when authenticating through ":login_provider".', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Müşteri Oluştur', + 'profile_oauth_edit_client' => 'İstemciyi Düzenle', + 'profile_oauth_name_help' => 'Kullanıcılarınızın tanıyacağı ve güveneceği bir şey.', + 'profile_oauth_redirect_url' => 'URL\'yi yönlendir', + 'profile_oauth_redirect_url_help' => 'Uygulamanızın yetkilendirme geri arama URL\'si.', + 'profile_authorized_apps' => 'Yetkili uygulamalar', + 'profile_authorized_clients' => 'Yetkili müşteriler', + 'profile_scopes' => 'Kapsamalar', + 'profile_revoke' => 'İptal etmek', + 'profile_oauth_client_secret_title' => 'Müşteri Sırrı', + 'profile_oauth_client_secret_expl' => 'İşte yeni müşteri sırrın. Bu gösterilecek tek zaman, bu yüzden onu kaybetme! Artık API istekleri yapmak için bu sırrı kullanabilirsiniz.', + 'profile_personal_access_tokens' => 'Kişisel Erişim Belirteçleri', + 'profile_personal_access_token' => 'Kişisel Erişim Belirteci', + 'profile_oauth_confidential' => 'Gizli', + 'profile_oauth_confidential_help' => 'İstemcinin bir sır ile kimlik doğrulaması yapmasını isteyin. Gizli müşteriler, kimlik bilgilerini yetkisiz taraflara ifşa etmeden güvenli bir şekilde saklayabilir. Yerel masaüstü veya JavaScript SPA uygulamaları gibi genel uygulamalar sırları güvenli bir şekilde saklayamaz.', + 'profile_personal_access_token_explanation' => 'İşte yeni kişisel erişim belirteciniz. Bu gösterilecek tek zaman, bu yüzden onu kaybetme! Artık API istekleri yapmak için bu belirtecini kullanabilirsiniz.', + 'profile_no_personal_access_token' => 'Herhangi bir kişisel erişim belirteci oluşturmadınız.', + 'profile_create_new_token' => 'Yeni belirteç oluştur', + 'profile_create_token' => 'Belirteç oluştur', + 'profile_create' => 'Belirteç oluşturma', + 'profile_save_changes' => 'Değişiklikleri kaydet', + 'profile_whoops' => 'Hoppala!', + 'profile_something_wrong' => 'Bir şeyler ters gitti!', + 'profile_try_again' => 'Bir şeyler yanlış gitti. Lütfen tekrar deneyin.', + 'amounts' => 'Miktarlar', + 'multi_account_warning_unknown' => 'Oluşturduğunuz işlemin türüne bağlı olarak, sonraki bölünmelerin kaynak ve / veya hedef hesabı, işlemin ilk bölünmesinde tanımlanan her şey tarafından geçersiz kılınabilir.', + 'multi_account_warning_withdrawal' => 'Sonraki bölünmelerin kaynak hesabının, geri çekilmenin ilk bölünmesinde tanımlanan herhangi bir şey tarafından reddedileceğini unutmayın.', + 'multi_account_warning_deposit' => 'Sonraki bölünmelerin hedef hesabının, mevduatın ilk bölünmesinde tanımlanan herhangi bir şey tarafından iptal edileceğini unutmayın.', + 'multi_account_warning_transfer' => 'Sonraki bölünmelerin kaynak + hedef hesabının, aktarımın ilk bölünmesinde tanımlanan her şey tarafından geçersiz kılınacağını unutmayın.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1580,399 +1586,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Verileri dışa aktar', - 'export_data_bc' => 'Firefly III \'ten veri dışa aktarma', - 'export_data_main_title' => 'Firefly III \'ten veri dışa aktarma', - 'export_data_expl' => 'Bu bağlantı, tüm işlemleri + meta verilerini Firefly ııı\'ten dışa aktarmanıza olanak tanır. Lütfen yardıma bakın (sağ üstte (?)-simge) işlem hakkında daha fazla bilgi için.', - 'export_data_all_transactions' => 'Tüm işlemleri dışa aktar', - 'export_data_advanced_expl' => 'Daha gelişmiş veya belirli bir dışa aktarma türüne ihtiyacınız varsa, konsol komutunun nasıl kullanılacağına ilişkin yardımı okuyun php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Verileri dışa aktar', + 'export_data_bc' => 'Firefly III \'ten veri dışa aktarma', + 'export_data_main_title' => 'Firefly III \'ten veri dışa aktarma', + 'export_data_expl' => 'Bu bağlantı, tüm işlemleri + meta verilerini Firefly ııı\'ten dışa aktarmanıza olanak tanır. Lütfen yardıma bakın (sağ üstte (?)-simge) işlem hakkında daha fazla bilgi için.', + 'export_data_all_transactions' => 'Tüm işlemleri dışa aktar', + 'export_data_advanced_expl' => 'Daha gelişmiş veya belirli bir dışa aktarma türüne ihtiyacınız varsa, konsol komutunun nasıl kullanılacağına ilişkin yardımı okuyun php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Bir eklenti |:count eklenti', - 'attachments' => 'Ekler', - 'edit_attachment' => 'Ek ":name" düzenle', - 'update_attachment' => 'Eki güncelle', - 'delete_attachment' => '":name" Eki sil', - 'attachment_deleted' => '":name" eki silindi', - 'liabilities_deleted' => 'Silinen sorumluluk ":name"', - 'attachment_updated' => '":name" Ek güncellendi', - 'upload_max_file_size' => 'Maksimum dosya boyutu: :size', - 'list_all_attachments' => 'Tüm eklerin listesi', + 'nr_of_attachments' => 'Bir eklenti |:count eklenti', + 'attachments' => 'Ekler', + 'edit_attachment' => 'Ek ":name" düzenle', + 'update_attachment' => 'Eki güncelle', + 'delete_attachment' => '":name" Eki sil', + 'attachment_deleted' => '":name" eki silindi', + 'liabilities_deleted' => 'Silinen sorumluluk ":name"', + 'attachment_updated' => '":name" Ek güncellendi', + 'upload_max_file_size' => 'Maksimum dosya boyutu: :size', + 'list_all_attachments' => 'Tüm eklerin listesi', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Giderler', - 'title_withdrawal' => 'Giderler', - 'title_revenue' => 'Gelir / Gelir', - 'title_deposit' => 'Gelir / Gelir', - 'title_transfer' => 'Transferler', - 'title_transfers' => 'Transferler', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Giderler', + 'title_withdrawal' => 'Giderler', + 'title_revenue' => 'Gelir / Gelir', + 'title_deposit' => 'Gelir / Gelir', + 'title_transfer' => 'Transferler', + 'title_transfers' => 'Transferler', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Bu işlem zaten bir para çekme işlemidir', - 'convert_is_already_type_Deposit' => 'Bu işlem zaten bir para çekme işlemidir', - 'convert_is_already_type_Transfer' => 'Bu işlem zaten bir transfer işlemidir', - 'convert_to_Withdrawal' => '":description" yı bir para çekme işlemine dönüştür', - 'convert_to_Deposit' => '":description" yı mevduata dönüştür', - 'convert_to_Transfer' => '":description" yı bir aktarıma dönüştür', - 'convert_options_WithdrawalDeposit' => 'Para çekme işlemini çekime dönüştür', - 'convert_options_WithdrawalTransfer' => 'Para çekim işlemini aktarmaya dönüştür', - 'convert_options_DepositTransfer' => 'Para yatırma işlemini bir aktarmaya dönüştür', - 'convert_options_DepositWithdrawal' => 'Para yatırma işlemini çekime dönüştür', - 'convert_options_TransferWithdrawal' => 'Bir transferi çekime dönüştür', - 'convert_options_TransferDeposit' => 'Bir transferi çekime dönüştür', - 'convert_Withdrawal_to_deposit' => 'Bu para çekme işlemini para yatırma işlemine çevir', - 'convert_Withdrawal_to_transfer' => 'Bu para çekim işlemini havaleye çevir', - 'convert_Deposit_to_withdrawal' => 'Bu para yatırma işlemini para çekme işlemine dönüştür', - 'convert_Deposit_to_transfer' => 'Bu yatırımı bir havale olarak değiştir', - 'convert_Transfer_to_deposit' => 'Bu havaleyi birikime dönüştürün', - 'convert_Transfer_to_withdrawal' => 'Bu transferi bir para çekme işlemine dönüştür', - 'convert_please_set_revenue_source' => 'Lütfen paranın geleceği bir gelir hesabı seçiniz.', - 'convert_please_set_asset_destination' => 'Lütfen paranın gideceği varlık hesabını seçin.', - 'convert_please_set_expense_destination' => 'Lütfen paranın gideceği masraf hesaplarını seçin.', - 'convert_please_set_asset_source' => 'Lütfen paranın geleceği bir varlık hesabı seçiniz.', - 'convert_expl_w_d' => 'Para çekme işleminden para yatırma işlemine dönüştürülürken, para çekilmek yerine görüntülenen hedef hesaba yatırılır./ Para çekme işleminden para yatırma işlemine dönüştürülürken, para onlardan çekilmek yerine görüntülenen hedef hesaplara yatırılır.', - 'convert_expl_w_t' => 'Para çekme işlemini aktarıma dönüştürürken, para orijinal gider hesabına harcanmak yerine kaynak hesaptan başka bir varlık veya yükümlülük hesabına aktarılır./ Para çekme işlemini aktarıma dönüştürürken, para orijinal gider hesaplarına harcanmak yerine kaynak hesaplardan diğer varlık veya yükümlülük hesaplarına aktarılır.', - 'convert_expl_d_w' => 'Para yatırma işlemini para çekme işlemine dönüştürürken, para yatırılmak yerine görüntülenen kaynak hesaptan çekilir./ Para yatırma işlemini para çekme işlemine dönüştürürken, para yatırılmak yerine görüntülenen kaynak hesaplardan çekilir.', - 'convert_expl_d_t' => 'Para yatırma işlemini aktarıma dönüştürdüğünüzde, para, varlık veya yükümlülük hesabınızdan herhangi birinden listelenen hedef hesaba yatırılır./ Bir depozitoyu aktarıma dönüştürdüğünüzde, para, varlık veya yükümlülük hesaplarınızdan herhangi birinden listelenen hedef hesaplara yatırılır.', - 'convert_expl_t_w' => 'Bir transferi para çekme işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada belirlediğiniz hedef hesaba harcanacaktır./ Bir transferi para çekme işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada belirlediğiniz hedef hesaplara harcanacaktır.', - 'convert_expl_t_d' => 'Bir havaleyi para yatırma işlemine dönüştürdüğünüzde, para buraya aktarılmak yerine burada gördüğünüz hedef hesaba yatırılır./ Bir havaleyi para yatırma işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada gördüğünüz hedef hesaplara yatırılır.', - 'convert_select_sources' => 'Dönüşümü tamamlamak için lütfen aşağıdaki yeni kaynak hesabı ayarlayın./ Dönüşümü tamamlamak için lütfen aşağıdaki yeni kaynak hesaplarını ayarlayın.', - 'convert_select_destinations' => 'Dönüşümü tamamlamak için lütfen aşağıdaki yeni hedef hesabı seçin./ Dönüşümü tamamlamak için lütfen aşağıdaki yeni hedef hesapları seçin.', - 'converted_to_Withdrawal' => 'İşlem çekime dönüştürüldü', - 'converted_to_Deposit' => 'İşlem depozitoya dönüştürüldü', - 'converted_to_Transfer' => 'İşlem aktarıma dönüştürüldü', - 'invalid_convert_selection' => 'Seçtiğiniz hesap zaten bu işlemde kullanılmış veya mevcut değil.', - 'source_or_dest_invalid' => 'Doğru işlem ayrıntıları bulunamıyor. Dönüşüm mümkün değildir.', - 'convert_to_withdrawal' => 'Para çekme işlemine dönüştür', - 'convert_to_deposit' => 'Depozitoya dönüştür', - 'convert_to_transfer' => 'Aktarıma dönüştür', + 'convert_is_already_type_Withdrawal' => 'Bu işlem zaten bir para çekme işlemidir', + 'convert_is_already_type_Deposit' => 'Bu işlem zaten bir para çekme işlemidir', + 'convert_is_already_type_Transfer' => 'Bu işlem zaten bir transfer işlemidir', + 'convert_to_Withdrawal' => '":description" yı bir para çekme işlemine dönüştür', + 'convert_to_Deposit' => '":description" yı mevduata dönüştür', + 'convert_to_Transfer' => '":description" yı bir aktarıma dönüştür', + 'convert_options_WithdrawalDeposit' => 'Para çekme işlemini çekime dönüştür', + 'convert_options_WithdrawalTransfer' => 'Para çekim işlemini aktarmaya dönüştür', + 'convert_options_DepositTransfer' => 'Para yatırma işlemini bir aktarmaya dönüştür', + 'convert_options_DepositWithdrawal' => 'Para yatırma işlemini çekime dönüştür', + 'convert_options_TransferWithdrawal' => 'Bir transferi çekime dönüştür', + 'convert_options_TransferDeposit' => 'Bir transferi çekime dönüştür', + 'convert_Withdrawal_to_deposit' => 'Bu para çekme işlemini para yatırma işlemine çevir', + 'convert_Withdrawal_to_transfer' => 'Bu para çekim işlemini havaleye çevir', + 'convert_Deposit_to_withdrawal' => 'Bu para yatırma işlemini para çekme işlemine dönüştür', + 'convert_Deposit_to_transfer' => 'Bu yatırımı bir havale olarak değiştir', + 'convert_Transfer_to_deposit' => 'Bu havaleyi birikime dönüştürün', + 'convert_Transfer_to_withdrawal' => 'Bu transferi bir para çekme işlemine dönüştür', + 'convert_please_set_revenue_source' => 'Lütfen paranın geleceği bir gelir hesabı seçiniz.', + 'convert_please_set_asset_destination' => 'Lütfen paranın gideceği varlık hesabını seçin.', + 'convert_please_set_expense_destination' => 'Lütfen paranın gideceği masraf hesaplarını seçin.', + 'convert_please_set_asset_source' => 'Lütfen paranın geleceği bir varlık hesabı seçiniz.', + 'convert_expl_w_d' => 'Para çekme işleminden para yatırma işlemine dönüştürülürken, para çekilmek yerine görüntülenen hedef hesaba yatırılır./ Para çekme işleminden para yatırma işlemine dönüştürülürken, para onlardan çekilmek yerine görüntülenen hedef hesaplara yatırılır.', + 'convert_expl_w_t' => 'Para çekme işlemini aktarıma dönüştürürken, para orijinal gider hesabına harcanmak yerine kaynak hesaptan başka bir varlık veya yükümlülük hesabına aktarılır./ Para çekme işlemini aktarıma dönüştürürken, para orijinal gider hesaplarına harcanmak yerine kaynak hesaplardan diğer varlık veya yükümlülük hesaplarına aktarılır.', + 'convert_expl_d_w' => 'Para yatırma işlemini para çekme işlemine dönüştürürken, para yatırılmak yerine görüntülenen kaynak hesaptan çekilir./ Para yatırma işlemini para çekme işlemine dönüştürürken, para yatırılmak yerine görüntülenen kaynak hesaplardan çekilir.', + 'convert_expl_d_t' => 'Para yatırma işlemini aktarıma dönüştürdüğünüzde, para, varlık veya yükümlülük hesabınızdan herhangi birinden listelenen hedef hesaba yatırılır./ Bir depozitoyu aktarıma dönüştürdüğünüzde, para, varlık veya yükümlülük hesaplarınızdan herhangi birinden listelenen hedef hesaplara yatırılır.', + 'convert_expl_t_w' => 'Bir transferi para çekme işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada belirlediğiniz hedef hesaba harcanacaktır./ Bir transferi para çekme işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada belirlediğiniz hedef hesaplara harcanacaktır.', + 'convert_expl_t_d' => 'Bir havaleyi para yatırma işlemine dönüştürdüğünüzde, para buraya aktarılmak yerine burada gördüğünüz hedef hesaba yatırılır./ Bir havaleyi para yatırma işlemine dönüştürdüğünüzde, para transfer edilmek yerine burada gördüğünüz hedef hesaplara yatırılır.', + 'convert_select_sources' => 'Dönüşümü tamamlamak için lütfen aşağıdaki yeni kaynak hesabı ayarlayın./ Dönüşümü tamamlamak için lütfen aşağıdaki yeni kaynak hesaplarını ayarlayın.', + 'convert_select_destinations' => 'Dönüşümü tamamlamak için lütfen aşağıdaki yeni hedef hesabı seçin./ Dönüşümü tamamlamak için lütfen aşağıdaki yeni hedef hesapları seçin.', + 'converted_to_Withdrawal' => 'İşlem çekime dönüştürüldü', + 'converted_to_Deposit' => 'İşlem depozitoya dönüştürüldü', + 'converted_to_Transfer' => 'İşlem aktarıma dönüştürüldü', + 'invalid_convert_selection' => 'Seçtiğiniz hesap zaten bu işlemde kullanılmış veya mevcut değil.', + 'source_or_dest_invalid' => 'Doğru işlem ayrıntıları bulunamıyor. Dönüşüm mümkün değildir.', + 'convert_to_withdrawal' => 'Para çekme işlemine dönüştür', + 'convert_to_deposit' => 'Depozitoya dönüştür', + 'convert_to_transfer' => 'Aktarıma dönüştür', // create new stuff: - 'create_new_withdrawal' => 'Yeni çekim oluştur', - 'create_new_deposit' => 'Yeni mevduat oluştur', - 'create_new_transfer' => 'Yeni transfer oluştur', - 'create_new_asset' => 'Yeni varlık hesabı oluştur', - 'create_new_liabilities' => 'Yeni sorumluluk oluşturma', - 'create_new_expense' => 'Yeni gider hesabı oluştur', - 'create_new_revenue' => 'Yeni gelir hesabı oluştur', - 'create_new_piggy_bank' => 'Yeni bir kumbara oluştur', - 'create_new_bill' => 'Yeni fatura oluştur', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Yeni çekim oluştur', + 'create_new_deposit' => 'Yeni mevduat oluştur', + 'create_new_transfer' => 'Yeni transfer oluştur', + 'create_new_asset' => 'Yeni varlık hesabı oluştur', + 'create_new_liabilities' => 'Yeni sorumluluk oluşturma', + 'create_new_expense' => 'Yeni gider hesabı oluştur', + 'create_new_revenue' => 'Yeni gelir hesabı oluştur', + 'create_new_piggy_bank' => 'Yeni bir kumbara oluştur', + 'create_new_bill' => 'Yeni fatura oluştur', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Yeni para birimi oluştur', - 'store_currency' => 'Yeni para birimini sakla', - 'update_currency' => 'Para birimini güncelle', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => ':name hala kullanıldığı için silinemiyor.', - 'cannot_delete_fallback_currency' => ':name sistem geri dönüş para birimidir ve silinemez.', - 'cannot_disable_currency_journals' => 'Devre dışı bırakılamıyor :name çünkü işlemler hala kullanıyor.', - 'cannot_disable_currency_last_left' => 'Devre dışı bırakılamıyor :name çünkü en son etkinleştirilen para birimidir.', - 'cannot_disable_currency_account_meta' => 'Devre dışı bırakılamıyor :name çünkü varlık hesaplarında kullanılır.', - 'cannot_disable_currency_bills' => 'Devre dışı bırakılamıyor :name çünkü faturalarda kullanılıyor.', - 'cannot_disable_currency_recurring' => 'Devre dışı bırakılamıyor :name çünkü yinelenen işlemlerde kullanılır.', - 'cannot_disable_currency_available_budgets' => 'Devre dışı bırakılamıyor :name çünkü mevcut bütçelerde kullanılıyor.', - 'cannot_disable_currency_budget_limits' => 'Devre dışı bırakılamıyor :name çünkü bütçe sınırlarında kullanılıyor.', - 'cannot_disable_currency_current_default' => 'Devre dışı bırakılamıyor :name çünkü geçerli varsayılan para birimidir.', - 'cannot_disable_currency_system_fallback' => 'Devre dışı bırakılamıyor :name çünkü sistem varsayılan para birimidir.', - 'disable_EUR_side_effects' => 'Euro, sistemin acil durum geri dönüş para birimidir. Devre dışı bırakmanın istenmeyen yan etkileri olabilir ve garantinizi geçersiz kılabilir.', - 'deleted_currency' => 'Para birimi :name silindi', - 'created_currency' => 'Para birimi :name oluşturuldu', - 'could_not_store_currency' => 'Yeni para birimi depolanamadı.', - 'updated_currency' => 'Para birimi :name güncellendi', - 'ask_site_owner' => 'Lütfen para birimleri eklemek, kaldırmak veya düzenlemek için :owner\'a danışın.', - 'currencies_intro' => 'Firefly III, burada ayarlayabileceğiniz ve etkinleştirebileceğiniz çeşitli para birimlerini destekliyor.', - 'make_default_currency' => 'Varsayılanı yap', - 'default_currency' => 'varsayılan', - 'currency_is_disabled' => 'Engelli', - 'enable_currency' => 'Etkinleştirmek', - 'disable_currency' => 'Devre dışı bırakmak', - 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', - 'currency_is_now_enabled' => 'Currency ":name" has been enabled', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Currency ":name" has been disabled', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Yeni para birimi oluştur', + 'store_currency' => 'Yeni para birimini sakla', + 'update_currency' => 'Para birimini güncelle', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => ':name hala kullanıldığı için silinemiyor.', + 'cannot_delete_fallback_currency' => ':name sistem geri dönüş para birimidir ve silinemez.', + 'cannot_disable_currency_journals' => 'Devre dışı bırakılamıyor :name çünkü işlemler hala kullanıyor.', + 'cannot_disable_currency_last_left' => 'Devre dışı bırakılamıyor :name çünkü en son etkinleştirilen para birimidir.', + 'cannot_disable_currency_account_meta' => 'Devre dışı bırakılamıyor :name çünkü varlık hesaplarında kullanılır.', + 'cannot_disable_currency_bills' => 'Devre dışı bırakılamıyor :name çünkü faturalarda kullanılıyor.', + 'cannot_disable_currency_recurring' => 'Devre dışı bırakılamıyor :name çünkü yinelenen işlemlerde kullanılır.', + 'cannot_disable_currency_available_budgets' => 'Devre dışı bırakılamıyor :name çünkü mevcut bütçelerde kullanılıyor.', + 'cannot_disable_currency_budget_limits' => 'Devre dışı bırakılamıyor :name çünkü bütçe sınırlarında kullanılıyor.', + 'cannot_disable_currency_current_default' => 'Devre dışı bırakılamıyor :name çünkü geçerli varsayılan para birimidir.', + 'cannot_disable_currency_system_fallback' => 'Devre dışı bırakılamıyor :name çünkü sistem varsayılan para birimidir.', + 'disable_EUR_side_effects' => 'Euro, sistemin acil durum geri dönüş para birimidir. Devre dışı bırakmanın istenmeyen yan etkileri olabilir ve garantinizi geçersiz kılabilir.', + 'deleted_currency' => 'Para birimi :name silindi', + 'created_currency' => 'Para birimi :name oluşturuldu', + 'could_not_store_currency' => 'Yeni para birimi depolanamadı.', + 'updated_currency' => 'Para birimi :name güncellendi', + 'ask_site_owner' => 'Lütfen para birimleri eklemek, kaldırmak veya düzenlemek için :owner\'a danışın.', + 'currencies_intro' => 'Firefly III, burada ayarlayabileceğiniz ve etkinleştirebileceğiniz çeşitli para birimlerini destekliyor.', + 'make_default_currency' => 'Varsayılanı yap', + 'default_currency' => 'varsayılan', + 'currency_is_disabled' => 'Engelli', + 'enable_currency' => 'Etkinleştirmek', + 'disable_currency' => 'Devre dışı bırakmak', + 'currencies_default_disabled' => 'Most of these currencies are disabled by default. To use them, you must enable them first.', + 'currency_is_now_enabled' => 'Currency ":name" has been enabled', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Currency ":name" has been disabled', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Zorunlu alanlar', - 'optionalFields' => 'İsteğe bağlı alanlar', - 'options' => 'Seçenekler', + 'mandatoryFields' => 'Zorunlu alanlar', + 'optionalFields' => 'İsteğe bağlı alanlar', + 'options' => 'Seçenekler', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => 'Yeni bir bütçe oluştur', - 'store_new_budget' => 'Yeni bütçeyi sakla', - 'stored_new_budget' => 'Yeni bütçe ":name" kaydedildi', - 'available_between' => ':start ve :end arasında kullanılabilir', - 'transactionsWithoutBudget' => 'Bütçesiz Giderler', - 'transactions_no_budget' => ':start ve :end arasındaki bütçe dışı harcamalar', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => 'Yeni bütçe', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => 'Etkin olmayan bütçeler', - 'without_budget_between' => ':start ve :end arasında bütçesiz işlemler', - 'delete_budget' => '":name" bütçesini sil', - 'deleted_budget' => 'Silinen bütçe ":name"', - 'edit_budget' => '":name" bütçesini düzenle', - 'updated_budget' => 'Güncellenmiş bütçe ":name"', - 'update_amount' => 'Güncelleme miktarı', - 'update_budget' => 'Bütçeyi güncelle', - 'update_budget_amount_range' => ':start ve :end arasında (beklenen) mevcut miktarı güncelleyiniz', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => 'Devreden sayacı', - 'info_on_available_amount' => 'Elimde ne var?', - 'available_amount_indication' => 'Toplam bütçenizin ne olabileceğinin bir göstergesi olarak bu tutarı kullanın.', - 'suggested' => 'Önerilen', - 'average_between' => ':start ve :end arasında Averaj', - 'transferred_in' => 'Transferred (in)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Günlük', - 'auto_budget_period_weekly' => 'Haftalık', - 'auto_budget_period_monthly' => 'Aylık', - 'auto_budget_period_quarterly' => 'Üç aylık', - 'auto_budget_period_half_year' => 'Her yarım yılda bir', - 'auto_budget_period_yearly' => 'Yıllık', - 'auto_budget_help' => 'Bu özellik hakkında daha fazla bilgiyi yardım\'da okuyabilirsiniz. Sağ üst köşedeki sembolu (?) tıklayın.', - 'auto_budget_reset_icon' => 'Bu bütçe periyodik olarak belirlenecektir', - 'auto_budget_rollover_icon' => 'Bütçe tutarı periyodik olarak artacaktır', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Bütçelenmiş tutarı kaldır :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => 'Yeni bir bütçe oluştur', + 'store_new_budget' => 'Yeni bütçeyi sakla', + 'stored_new_budget' => 'Yeni bütçe ":name" kaydedildi', + 'available_between' => ':start ve :end arasında kullanılabilir', + 'transactionsWithoutBudget' => 'Bütçesiz Giderler', + 'transactions_no_budget' => ':start ve :end arasındaki bütçe dışı harcamalar', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => 'Yeni bütçe', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => 'Etkin olmayan bütçeler', + 'without_budget_between' => ':start ve :end arasında bütçesiz işlemler', + 'delete_budget' => '":name" bütçesini sil', + 'deleted_budget' => 'Silinen bütçe ":name"', + 'edit_budget' => '":name" bütçesini düzenle', + 'updated_budget' => 'Güncellenmiş bütçe ":name"', + 'update_amount' => 'Güncelleme miktarı', + 'update_budget' => 'Bütçeyi güncelle', + 'update_budget_amount_range' => ':start ve :end arasında (beklenen) mevcut miktarı güncelleyiniz', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => 'Devreden sayacı', + 'info_on_available_amount' => 'Elimde ne var?', + 'available_amount_indication' => 'Toplam bütçenizin ne olabileceğinin bir göstergesi olarak bu tutarı kullanın.', + 'suggested' => 'Önerilen', + 'average_between' => ':start ve :end arasında Averaj', + 'transferred_in' => 'Transferred (in)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Günlük', + 'auto_budget_period_weekly' => 'Haftalık', + 'auto_budget_period_monthly' => 'Aylık', + 'auto_budget_period_quarterly' => 'Üç aylık', + 'auto_budget_period_half_year' => 'Her yarım yılda bir', + 'auto_budget_period_yearly' => 'Yıllık', + 'auto_budget_help' => 'Bu özellik hakkında daha fazla bilgiyi yardım\'da okuyabilirsiniz. Sağ üst köşedeki sembolu (?) tıklayın.', + 'auto_budget_reset_icon' => 'Bu bütçe periyodik olarak belirlenecektir', + 'auto_budget_rollover_icon' => 'Bütçe tutarı periyodik olarak artacaktır', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Bütçelenmiş tutarı kaldır :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Bu süre beklenmiyor', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => '(Henüz)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Fatura arasındaki işlemlerle eşleşir :low ve :high.', - 'running_again_loss' => 'Bu tasarı daha önce bağlantılı hareketleri, bağlantı kesilirse, eğer daha uzun (no) (s) kuralına uyarlarsa olabilir.', - 'bill_related_rules' => 'Bu tasarıya ilişkin kurallar', - 'repeats' => 'Tekrarlar', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'İlişkili işlemler', - 'auto_match_on' => 'Firefly III tarafından otomatik olarak eşleştirildi', - 'auto_match_off' => 'Firefly III tarafından otomatik olarak eşleşmiyor', - 'next_expected_match' => 'Beklenen sonraki eşleşme', - 'delete_bill' => 'Faturayı sil ":name"', - 'deleted_bill' => 'Silinmiş fatura ":name"', - 'edit_bill' => 'Fatura düzenle ":name"', - 'more' => 'Daha', - 'rescan_old' => 'Tüm işlemlerde kuralları yeniden çalıştırın', - 'update_bill' => 'Faturayı güncelle', - 'updated_bill' => 'Güncellenmiş fatura ":name"', - 'store_new_bill' => 'Yeni fatura kaydet', - 'stored_new_bill' => 'Yeni fatura ":name" kaydedildi', - 'cannot_scan_inactive_bill' => 'Etkin olmayan faturalar taranamaz.', - 'rescanned_bill' => 'Her şeyi yeniden taradım ve bağlantı kurdum :count faturaya işlem./ Her şeyi yeniden taradı ve bağlantılı :count faturaya yapılan işlemler.', - 'average_bill_amount_year' => 'Ortalama fatura tutarı (:year)', - 'average_bill_amount_overall' => 'Ortalama fatura tutarı (genel)', - 'bill_is_active' => 'Fatura aktif', - 'bill_expected_between' => ':start ve :end arasında beklenen', - 'bill_will_automatch' => 'Fatura uygun işlemlere otomatik olarak bağlandı', - 'skips_over' => 'atla', - 'bill_store_error' => 'Yeni faturanızı saklarken beklenmeyen bir hata oluştu. Lütfen günlük dosyalarını kontrol edin', - 'list_inactive_rule' => 'Etkin Olmayan Kurallar', - 'bill_edit_rules' => 'Firefly III, bu tasarıyla ilgili kuralı da düzenlemeye çalışacaktır. Ancak, bu kuralı kendiniz düzenlediyseniz, Firefly III hiçbir şeyi değiştirmez.|Firefly III, bu tasarıyla ilgili :count kurallarını da düzenlemeye çalışacaktır. Ancak, bu kuralları kendiniz düzenlediyseniz, Firefly III hiçbir şeyi değiştirmez.', - 'bill_expected_date' => 'Beklenen :date', - 'bill_expected_date_js' => 'Beklenen {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Ödeme Tarihi {date}', - 'bill_repeats_weekly' => 'Haftalık tekrarlar', - 'bill_repeats_monthly' => 'Aylık tekrarlar', - 'bill_repeats_quarterly' => 'Üç ayda bir tekrarlar', - 'bill_repeats_half-year' => 'Her yarım yılda bir tekrarlar', - 'bill_repeats_yearly' => 'Yıllık tekrarlar', - 'bill_repeats_weekly_other' => 'Her hafta tekrarlar', - 'bill_repeats_monthly_other' => 'Her ay tekrarlar', - 'bill_repeats_quarterly_other' => 'Her çeyrekte tekrarlar', - 'bill_repeats_half-year_other' => 'Yıllık tekrarlar', - 'bill_repeats_yearly_other' => 'Her yıl tekrarlar', - 'bill_repeats_weekly_skip' => 'Her birini tekrarlar {skip} haftalar', - 'bill_repeats_monthly_skip' => 'Her {skip} ayda bir tekrarlar', - 'bill_repeats_quarterly_skip' => 'Her{skip} çeyreğini tekrarlar', - 'bill_repeats_half-year_skip' => 'Her {skip} yarım yılda bir tekrarlar', - 'bill_repeats_yearly_skip' => 'Her {skip} yılda bir tekrarlar', - 'subscriptions' => 'Abonelik', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Sonsuza dek', - 'extension_date_is' => 'Uzantı tarihi {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Bu süre beklenmiyor', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => '(Henüz)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Fatura arasındaki işlemlerle eşleşir :low ve :high.', + 'running_again_loss' => 'Bu tasarı daha önce bağlantılı hareketleri, bağlantı kesilirse, eğer daha uzun (no) (s) kuralına uyarlarsa olabilir.', + 'bill_related_rules' => 'Bu tasarıya ilişkin kurallar', + 'repeats' => 'Tekrarlar', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'İlişkili işlemler', + 'auto_match_on' => 'Firefly III tarafından otomatik olarak eşleştirildi', + 'auto_match_off' => 'Firefly III tarafından otomatik olarak eşleşmiyor', + 'next_expected_match' => 'Beklenen sonraki eşleşme', + 'delete_bill' => 'Faturayı sil ":name"', + 'deleted_bill' => 'Silinmiş fatura ":name"', + 'edit_bill' => 'Fatura düzenle ":name"', + 'more' => 'Daha', + 'rescan_old' => 'Tüm işlemlerde kuralları yeniden çalıştırın', + 'update_bill' => 'Faturayı güncelle', + 'updated_bill' => 'Güncellenmiş fatura ":name"', + 'store_new_bill' => 'Yeni fatura kaydet', + 'stored_new_bill' => 'Yeni fatura ":name" kaydedildi', + 'cannot_scan_inactive_bill' => 'Etkin olmayan faturalar taranamaz.', + 'rescanned_bill' => 'Her şeyi yeniden taradım ve bağlantı kurdum :count faturaya işlem./ Her şeyi yeniden taradı ve bağlantılı :count faturaya yapılan işlemler.', + 'average_bill_amount_year' => 'Ortalama fatura tutarı (:year)', + 'average_bill_amount_overall' => 'Ortalama fatura tutarı (genel)', + 'bill_is_active' => 'Fatura aktif', + 'bill_expected_between' => ':start ve :end arasında beklenen', + 'bill_will_automatch' => 'Fatura uygun işlemlere otomatik olarak bağlandı', + 'skips_over' => 'atla', + 'bill_store_error' => 'Yeni faturanızı saklarken beklenmeyen bir hata oluştu. Lütfen günlük dosyalarını kontrol edin', + 'list_inactive_rule' => 'Etkin Olmayan Kurallar', + 'bill_edit_rules' => 'Firefly III, bu tasarıyla ilgili kuralı da düzenlemeye çalışacaktır. Ancak, bu kuralı kendiniz düzenlediyseniz, Firefly III hiçbir şeyi değiştirmez.|Firefly III, bu tasarıyla ilgili :count kurallarını da düzenlemeye çalışacaktır. Ancak, bu kuralları kendiniz düzenlediyseniz, Firefly III hiçbir şeyi değiştirmez.', + 'bill_expected_date' => 'Beklenen :date', + 'bill_expected_date_js' => 'Beklenen {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Ödeme Tarihi {date}', + 'bill_repeats_weekly' => 'Haftalık tekrarlar', + 'bill_repeats_monthly' => 'Aylık tekrarlar', + 'bill_repeats_quarterly' => 'Üç ayda bir tekrarlar', + 'bill_repeats_half-year' => 'Her yarım yılda bir tekrarlar', + 'bill_repeats_yearly' => 'Yıllık tekrarlar', + 'bill_repeats_weekly_other' => 'Her hafta tekrarlar', + 'bill_repeats_monthly_other' => 'Her ay tekrarlar', + 'bill_repeats_quarterly_other' => 'Her çeyrekte tekrarlar', + 'bill_repeats_half-year_other' => 'Yıllık tekrarlar', + 'bill_repeats_yearly_other' => 'Her yıl tekrarlar', + 'bill_repeats_weekly_skip' => 'Her birini tekrarlar {skip} haftalar', + 'bill_repeats_monthly_skip' => 'Her {skip} ayda bir tekrarlar', + 'bill_repeats_quarterly_skip' => 'Her{skip} çeyreğini tekrarlar', + 'bill_repeats_half-year_skip' => 'Her {skip} yarım yılda bir tekrarlar', + 'bill_repeats_yearly_skip' => 'Her {skip} yılda bir tekrarlar', + 'subscriptions' => 'Abonelik', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Sonsuza dek', + 'extension_date_is' => 'Uzantı tarihi {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'Sahipsin :count bu ayrı sayfada görüntüleyebileceğiniz etkin olmayan (arşivlenmiş) hesap.|Sahipsin:count inactive (archived) accounts, which you can view on this separate page.Bu ayrı sayfada görüntüleyebileceğiniz etkin olmayan (arşivlenmiş) hesaplar.', - 'all_accounts_inactive' => 'Bunlar aktif olmayan hesaplarınız.', - 'active_account_link' => 'Bu bağlantı etkin hesaplarınıza geri döner.', - 'account_missing_transaction' => 'Hesap #: ıd (": name") doğrudan görüntülenemiyor, ancak Firefly yönlendirme bilgileri eksik.', - 'cc_monthly_payment_date_help' => 'Herhangi bir yılı ve herhangi bir ayı seçin, yine de göz ardı edilecektir. Sadece ayın günü geçerlidir.', - 'details_for_asset' => '":name" Varlık hesabı ayrıntıları', - 'details_for_expense' => '":name" Harcama hesabı ayrıntıları', - 'details_for_revenue' => '":name" Gelir hesabı ayrıntıları', - 'details_for_cash' => '":name" Nakit hesabı ayrıntıları', - 'store_new_asset_account' => 'Yeni varlık hesabını kaydet', - 'store_new_expense_account' => 'Yeni gider hesabını sakla', - 'store_new_revenue_account' => 'Yeni gelir hesabını kaydet', - 'edit_asset_account' => '":name" Öğe hesabını düzenle', - 'edit_expense_account' => '":name" Harcama hesabını düzenle', - 'edit_revenue_account' => '":name" Gelir hesabını düzenle', - 'delete_asset_account' => '":name" Öğe hesabını sil', - 'delete_expense_account' => '":name" Masraf hesaplarını sil', - 'delete_revenue_account' => '":name" Gelir hesabını sil', - 'delete_liabilities_account' => 'Sorumluluğu sil:name', - 'asset_deleted' => '":name" Adlı varlık hesabı başarıyla silindi', - 'account_deleted' => ':name hesabı başarıyla silindi', - 'expense_deleted' => '":name" gider hesabı başarıyla silindi', - 'revenue_deleted' => '":name" gelir hesabı başarıyla silindi', - 'update_asset_account' => 'Varlık hesabını güncelle', - 'update_undefined_account' => 'Hesabı güncelle', - 'update_liabilities_account' => 'Güncelleme sorumluluğu', - 'update_expense_account' => 'Gider hesabını güncelle', - 'update_revenue_account' => 'Gelir hesabı güncelleme', - 'make_new_asset_account' => 'Yeni varlık hesabı oluştur', - 'make_new_expense_account' => 'Yeni gider hesabı oluştur', - 'make_new_revenue_account' => 'Yeni gelir hesabı oluştur', - 'make_new_liabilities_account' => 'Create a new liability', - 'asset_accounts' => 'Varlık hesapları', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Gider hesapları', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Gelir hesapları', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Nakit Hesabı', - 'Cash account' => 'Nakit Hesabı', - 'liabilities_accounts' => 'Liabilities', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Hesabı ":account" dengeleyin', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Mutabakatı sil', - 'update_reconciliation' => 'Mutabakatı güncelle', - 'amount_cannot_be_zero' => 'Miktar sıfır olamaz', - 'end_of_reconcile_period' => 'Uzlaştırma dönemi sonu: :period', - 'start_of_reconcile_period' => 'Uzlaştırma dönemi başlangıcı: :period', - 'start_balance' => 'Başlangıç bakiyesi', - 'end_balance' => 'Son bakiye', - 'update_balance_dates_instruction' => 'Yukarıdaki tutarlar ve tarihleri banka ekstrenizle esşleştirin ve "Mutabakatı başlat" düğmesine basın', - 'select_transactions_instruction' => 'Banka ekstrenizde görünen işlemleri seçin.', - 'select_range_and_balance' => 'Önce tarih aralığını ve bakiyeleri doğrulayın. Daha sonra "Mutabakatı başlat" tuşuna basın', - 'date_change_instruction' => 'Tarih aralığını şim değiştirdiniz, ilerleme kaydedilemez.', - 'update_selection' => 'Güncelleme seç', - 'store_reconcile' => 'Mutabakatı sakla', - 'reconciliation_transaction' => 'Mutabakat işlemi', - 'Reconciliation' => 'Mutabakat', - 'reconciliation' => 'Mutabakat', - 'reconcile_options' => 'Mutabakat Seçenekleri', - 'reconcile_range' => 'Mutabakat aralığı', - 'start_reconcile' => 'Mutabakatı başlat', - 'cash_account_type' => 'Cash', - 'cash' => 'nakit', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Hesap Türü', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'Yeni hesap ":name" kaydedildi!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Güncellenmiş hesap ismi ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Kredi kart seçenekleri', - 'no_transactions_account' => 'Aktif hesapta herhangi bir işlem yok (bu dönem için) ":name".', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'Bu grafiği oluşturmak için yeterli bilgi (henüz) yok.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Please select at least one category', - 'select_at_least_one_budget' => 'Please select at least one budget', - 'select_at_least_one_tag' => 'Please select at least one tag', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Firefly III hesabınızda bankanızın iddia ettiğinden daha fazla para var. Birkaç seçenek var. Lütfen ne yapılacağını seçin. Daha sonra "Uzlaşmayı onayla" ya basın.', - 'reconcile_has_less' => 'Firefly III\'de bankanızın iddia ettiğinden daha az para var. Birkaç seçenek var. Lütfen ne yapılacağını seçin. Daha sonra "Uzlaşmayı onayla"\'ya basın.', - 'reconcile_is_equal' => 'Firefly III hesabınızdaki para ile banka ekstreniz eşleşiyor. Yapılacak bir şey yok. Lütfen girdinizi onaylamak için "Uzlaşmayı onayla"\'ya basın.', - 'create_pos_reconcile_transaction' => 'Seçilen işlemleri temizleyiniz ve varlık hesabına :amount ekleyerek bir düzeltme oluşturun.', - 'create_neg_reconcile_transaction' => 'Seçilen işlemleri temizleyiniz ve varlık hesabından :amount kaldırarak bir düzeltme oluşturun.', - 'reconcile_do_nothing' => 'Seçilen işlemleri temizleyin, ama düzeltmeyiniz.', - 'reconcile_go_back' => 'Bir düzeltmeyi daha sonra her zaman düzenleyebilir ya da silebilirsiniz.', - 'must_be_asset_account' => 'Sadece varlık hesapları bağdaştırabilirsiniz', - 'reconciliation_stored' => 'Depolanmış Mutabakat', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Bu hesabı bağdaştırınız', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => 'Mutabakatı onayla', - 'submitted_start_balance' => 'Gönderilen başlangıç bakiyesi', - 'selected_transactions' => 'Seçilen İşlemler (:count)', - 'already_cleared_transactions' => 'Halihazırda temizlenmiş işlemler (:count)', - 'submitted_end_balance' => 'Gönderilen bitiş bakiyesi', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'Per day', - 'interest_calc_monthly' => 'Per month', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'Sahipsin :count bu ayrı sayfada görüntüleyebileceğiniz etkin olmayan (arşivlenmiş) hesap.|Sahipsin:count inactive (archived) accounts, which you can view on this separate page.Bu ayrı sayfada görüntüleyebileceğiniz etkin olmayan (arşivlenmiş) hesaplar.', + 'all_accounts_inactive' => 'Bunlar aktif olmayan hesaplarınız.', + 'active_account_link' => 'Bu bağlantı etkin hesaplarınıza geri döner.', + 'account_missing_transaction' => 'Hesap #: ıd (": name") doğrudan görüntülenemiyor, ancak Firefly yönlendirme bilgileri eksik.', + 'cc_monthly_payment_date_help' => 'Herhangi bir yılı ve herhangi bir ayı seçin, yine de göz ardı edilecektir. Sadece ayın günü geçerlidir.', + 'details_for_asset' => '":name" Varlık hesabı ayrıntıları', + 'details_for_expense' => '":name" Harcama hesabı ayrıntıları', + 'details_for_revenue' => '":name" Gelir hesabı ayrıntıları', + 'details_for_cash' => '":name" Nakit hesabı ayrıntıları', + 'store_new_asset_account' => 'Yeni varlık hesabını kaydet', + 'store_new_expense_account' => 'Yeni gider hesabını sakla', + 'store_new_revenue_account' => 'Yeni gelir hesabını kaydet', + 'edit_asset_account' => '":name" Öğe hesabını düzenle', + 'edit_expense_account' => '":name" Harcama hesabını düzenle', + 'edit_revenue_account' => '":name" Gelir hesabını düzenle', + 'delete_asset_account' => '":name" Öğe hesabını sil', + 'delete_expense_account' => '":name" Masraf hesaplarını sil', + 'delete_revenue_account' => '":name" Gelir hesabını sil', + 'delete_liabilities_account' => 'Sorumluluğu sil:name', + 'asset_deleted' => '":name" Adlı varlık hesabı başarıyla silindi', + 'account_deleted' => ':name hesabı başarıyla silindi', + 'expense_deleted' => '":name" gider hesabı başarıyla silindi', + 'revenue_deleted' => '":name" gelir hesabı başarıyla silindi', + 'update_asset_account' => 'Varlık hesabını güncelle', + 'update_undefined_account' => 'Hesabı güncelle', + 'update_liabilities_account' => 'Güncelleme sorumluluğu', + 'update_expense_account' => 'Gider hesabını güncelle', + 'update_revenue_account' => 'Gelir hesabı güncelleme', + 'make_new_asset_account' => 'Yeni varlık hesabı oluştur', + 'make_new_expense_account' => 'Yeni gider hesabı oluştur', + 'make_new_revenue_account' => 'Yeni gelir hesabı oluştur', + 'make_new_liabilities_account' => 'Create a new liability', + 'asset_accounts' => 'Varlık hesapları', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Gider hesapları', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Gelir hesapları', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Nakit Hesabı', + 'Cash account' => 'Nakit Hesabı', + 'liabilities_accounts' => 'Liabilities', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Hesabı ":account" dengeleyin', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Mutabakatı sil', + 'update_reconciliation' => 'Mutabakatı güncelle', + 'amount_cannot_be_zero' => 'Miktar sıfır olamaz', + 'end_of_reconcile_period' => 'Uzlaştırma dönemi sonu: :period', + 'start_of_reconcile_period' => 'Uzlaştırma dönemi başlangıcı: :period', + 'start_balance' => 'Başlangıç bakiyesi', + 'end_balance' => 'Son bakiye', + 'update_balance_dates_instruction' => 'Yukarıdaki tutarlar ve tarihleri banka ekstrenizle esşleştirin ve "Mutabakatı başlat" düğmesine basın', + 'select_transactions_instruction' => 'Banka ekstrenizde görünen işlemleri seçin.', + 'select_range_and_balance' => 'Önce tarih aralığını ve bakiyeleri doğrulayın. Daha sonra "Mutabakatı başlat" tuşuna basın', + 'date_change_instruction' => 'Tarih aralığını şim değiştirdiniz, ilerleme kaydedilemez.', + 'update_selection' => 'Güncelleme seç', + 'store_reconcile' => 'Mutabakatı sakla', + 'reconciliation_transaction' => 'Mutabakat işlemi', + 'Reconciliation' => 'Mutabakat', + 'reconciliation' => 'Mutabakat', + 'reconcile_options' => 'Mutabakat Seçenekleri', + 'reconcile_range' => 'Mutabakat aralığı', + 'start_reconcile' => 'Mutabakatı başlat', + 'cash_account_type' => 'Cash', + 'cash' => 'nakit', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Hesap Türü', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'Yeni hesap ":name" kaydedildi!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Güncellenmiş hesap ismi ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Kredi kart seçenekleri', + 'no_transactions_account' => 'Aktif hesapta herhangi bir işlem yok (bu dönem için) ":name".', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'Bu grafiği oluşturmak için yeterli bilgi (henüz) yok.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Please select at least one category', + 'select_at_least_one_budget' => 'Please select at least one budget', + 'select_at_least_one_tag' => 'Please select at least one tag', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Firefly III hesabınızda bankanızın iddia ettiğinden daha fazla para var. Birkaç seçenek var. Lütfen ne yapılacağını seçin. Daha sonra "Uzlaşmayı onayla" ya basın.', + 'reconcile_has_less' => 'Firefly III\'de bankanızın iddia ettiğinden daha az para var. Birkaç seçenek var. Lütfen ne yapılacağını seçin. Daha sonra "Uzlaşmayı onayla"\'ya basın.', + 'reconcile_is_equal' => 'Firefly III hesabınızdaki para ile banka ekstreniz eşleşiyor. Yapılacak bir şey yok. Lütfen girdinizi onaylamak için "Uzlaşmayı onayla"\'ya basın.', + 'create_pos_reconcile_transaction' => 'Seçilen işlemleri temizleyiniz ve varlık hesabına :amount ekleyerek bir düzeltme oluşturun.', + 'create_neg_reconcile_transaction' => 'Seçilen işlemleri temizleyiniz ve varlık hesabından :amount kaldırarak bir düzeltme oluşturun.', + 'reconcile_do_nothing' => 'Seçilen işlemleri temizleyin, ama düzeltmeyiniz.', + 'reconcile_go_back' => 'Bir düzeltmeyi daha sonra her zaman düzenleyebilir ya da silebilirsiniz.', + 'must_be_asset_account' => 'Sadece varlık hesapları bağdaştırabilirsiniz', + 'reconciliation_stored' => 'Depolanmış Mutabakat', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Bu hesabı bağdaştırınız', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => 'Mutabakatı onayla', + 'submitted_start_balance' => 'Gönderilen başlangıç bakiyesi', + 'selected_transactions' => 'Seçilen İşlemler (:count)', + 'already_cleared_transactions' => 'Halihazırda temizlenmiş işlemler (:count)', + 'submitted_end_balance' => 'Gönderilen bitiş bakiyesi', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'Per day', + 'interest_calc_monthly' => 'Per month', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'List options', // categories: - 'new_category' => 'Yeni Kategori', - 'create_new_category' => 'Yeni bir kategori oluştur', - 'without_category' => 'Kategori olmaksızın', - 'update_category' => 'Kategoriyi güncelle', - 'updated_category' => '":name" kategorisi güncellendi', - 'categories' => 'Kategoriler', - 'edit_category' => '":name" kategorisini düzenle', - 'no_category' => '(Kategori yok)', - 'unknown_category_plain' => 'No category', - 'category' => 'Kategori', - 'delete_category' => '":name" kategorisini sil', - 'deleted_category' => ' kategorisi silindi', - 'store_category' => 'Yeni kategoriyi kaydet', - 'stored_category' => 'Kaydedilen yeni kategori ":name"', - 'without_category_between' => ':start ve :end arasında kategorisiz', + 'new_category' => 'Yeni Kategori', + 'create_new_category' => 'Yeni bir kategori oluştur', + 'without_category' => 'Kategori olmaksızın', + 'update_category' => 'Kategoriyi güncelle', + 'updated_category' => '":name" kategorisi güncellendi', + 'categories' => 'Kategoriler', + 'edit_category' => '":name" kategorisini düzenle', + 'no_category' => '(Kategori yok)', + 'unknown_category_plain' => 'No category', + 'category' => 'Kategori', + 'delete_category' => '":name" kategorisini sil', + 'deleted_category' => ' kategorisi silindi', + 'store_category' => 'Yeni kategoriyi kaydet', + 'stored_category' => 'Kaydedilen yeni kategori ":name"', + 'without_category_between' => ':start ve :end arasında kategorisiz', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1986,240 +1992,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Geri çekmeyi güncelle', - 'update_deposit' => 'Depozitoyu güncelle', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Aktarımı güncelle', - 'updated_withdrawal' => 'Para çekme güncellendi ":description"', - 'updated_deposit' => 'Güncellenmiş depozito ":description"', - 'updated_transfer' => 'Güncellenmiş ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Çekimi sil ":description"', - 'delete_deposit' => 'Mevduat sil ":description"', - 'delete_transfer' => 'Aktarımı sil ":description"', - 'deleted_withdrawal' => 'Çekilme başarıyla silindi ":description"', - 'deleted_deposit' => '":description" Para yatırma başarıyla silindi', - 'deleted_transfer' => '":description" Aktarım başarıyla silindi', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => '":description" Yeni işlem başarıyla oluşturuldu', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'İşlemleri Seç', - 'rule_group_select_transactions' => 'İşlemlere "başlık" uygula', - 'rule_select_transactions' => 'İşlemlere "başlık" uygula', - 'stop_selection' => 'İşlemleri seçmeyi durdur', - 'reconcile_selected' => 'Onaylanmış', - 'mass_delete_journals' => 'Bir dizi işlemi sil', - 'mass_edit_journals' => 'Bir dizi işlem düzenle', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Etiket (ler) i güncelleme', - 'replace_with_these_tags' => 'Bu etiketlerle değiştirin', - 'append_these_tags' => 'Bu etiketleri ekle', - 'mass_edit' => 'Seçilenleri tek tek düzenle', - 'bulk_edit' => 'Toplu olarak seçilenleri düzenle', - 'mass_delete' => 'Seçileni sil', - 'cannot_edit_other_fields' => 'Gösterecek yer olmadığı için, bu dosya dışındaki dosyaları toplu olarak düzenleyemezsiniz. Eğer o alanları düzenlemeniz gerekliyse lütfen linki takip edin ve onları teker teker düzenleyin.', - 'cannot_change_amount_reconciled' => 'Mutabakat işlemlerinin miktarını değiştiremezsiniz.', - 'no_budget' => '(bütçe yok)', - 'no_bill' => '(hayır bill)', - 'account_per_budget' => 'Bütçe başına hesap', - 'account_per_category' => 'Kategori başına hesap', - 'create_new_object' => 'Yaratmak', - 'empty' => '(boş)', - 'all_other_budgets' => '(diğer tüm bütçeler)', - 'all_other_accounts' => '(diğer tüm hesaplar)', - 'expense_per_source_account' => 'Kaynak hesap başına giderler', - 'expense_per_destination_account' => 'Hedef hesap başına giderler', - 'income_per_destination_account' => 'Hedef hesap başına gelir', - 'spent_in_specific_category' => ':category kategorisinde harcandı', - 'earned_in_specific_category' => ':category kategorisinde kazanılan', - 'spent_in_specific_tag' => 'Etikette harcanan:tag', - 'earned_in_specific_tag' => ':tag etiketinde kazanıldı', - 'income_per_source_account' => 'Kaynak hesap başına gelir', - 'average_spending_per_destination' => 'Hedef hesap başına ortalama gider', - 'average_spending_per_source' => 'Kaynak hesap başına ortalama gider', - 'average_earning_per_source' => 'Kaynak hesap başına ortalama kazanç', - 'average_earning_per_destination' => 'Hedef hesap başına ortalama kazanç', - 'account_per_tag' => 'Etiket başına hesap', - 'tag_report_expenses_listed_once' => 'Giderler ve gelirler asla iki kez listelenmez. Bir işlemin birden çok etiketi varsa, yalnızca etiketlerinden birinin altında görünebilir. Bu liste eksik veri gibi görünebilir, ancak tutarlar doğru olacaktır.', - 'double_report_expenses_charted_once' => 'Giderler ve gelirler hiçbir zaman iki kez görüntülenmez. Bir işlemin birden çok etiketi varsa, yalnızca etiketlerinden birinin altında görünebilir. Bu grafikte veri eksik gibi görünebilir, ancak tutarlar doğru olacaktır.', - 'tag_report_chart_single_tag' => 'Bu grafik tek bir etiket için geçerlidir. Bir işlemin birden çok etiketi varsa, burada gördükleriniz diğer etiketlerin grafiklerine de yansıtılabilir.', - 'tag' => 'Etiket', - 'no_budget_squared' => '(Bütçe yok)', - 'perm-delete-many' => 'Bir seferde birçok öğeyi silmek çok yıkıcı olabilir. Lütfen dikkatli olun. Bölünmüş bir işlemin bir bölümünü bu sayfadan silebilirsiniz, bu nedenle dikkatli olun.', - 'mass_deleted_transactions_success' => 'Silmek :count işlem.|Silmek :count işlemler.', - 'mass_edited_transactions_success' => 'Updated :count işlem.|Silmek :count işlemler.', - 'opt_group_' => '(hesap türü yok)', - 'opt_group_no_account_type' => '(hesap türü yok)', - 'opt_group_defaultAsset' => 'Varsayılan varlık hesapları', - 'opt_group_savingAsset' => 'Tasarruf Hesapları', - 'opt_group_sharedAsset' => 'Paylaşılan varlık hesapları', - 'opt_group_ccAsset' => 'Kredi Kartı', - 'opt_group_cashWalletAsset' => 'Nakit cüzdan', - 'opt_group_expense_account' => 'Gider hesapları', - 'opt_group_revenue_account' => 'Gelir hesapları', - 'opt_group_l_Loan' => 'Sorumluluk: Kredi', - 'opt_group_cash_account' => 'Nakit hesabı', - 'opt_group_l_Debt' => 'Sorumluluk: Borç', - 'opt_group_l_Mortgage' => 'Sorumluluk: İpotek', - 'opt_group_l_Credit card' => 'Sorumluluk: Kredi kartı', - 'notes' => 'Notlar', - 'unknown_journal_error' => 'İşlem depolanamadı. Lütfen günlük dosyalarını kontrol edin.', - 'attachment_not_found' => 'Bu ek bulunamadı.', - 'journal_link_bill' => 'Bu işlem fatura ile bağlantılıdır :name. Bağlantıyı kaldırmak için onay kutusunun işaretini kaldırın. Başka bir faturaya bağlamak için kuralları kullanın.', - 'transaction_stored_link' => 'İşlem #{ID} ("{title}") saklı olmuştur.', - 'transaction_new_stored_link' => 'İşlem #{ID}saklı olmuştur.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Geri çekmeyi güncelle', + 'update_deposit' => 'Depozitoyu güncelle', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Aktarımı güncelle', + 'updated_withdrawal' => 'Para çekme güncellendi ":description"', + 'updated_deposit' => 'Güncellenmiş depozito ":description"', + 'updated_transfer' => 'Güncellenmiş ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Çekimi sil ":description"', + 'delete_deposit' => 'Mevduat sil ":description"', + 'delete_transfer' => 'Aktarımı sil ":description"', + 'deleted_withdrawal' => 'Çekilme başarıyla silindi ":description"', + 'deleted_deposit' => '":description" Para yatırma başarıyla silindi', + 'deleted_transfer' => '":description" Aktarım başarıyla silindi', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => '":description" Yeni işlem başarıyla oluşturuldu', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'İşlemleri Seç', + 'rule_group_select_transactions' => 'İşlemlere "başlık" uygula', + 'rule_select_transactions' => 'İşlemlere "başlık" uygula', + 'stop_selection' => 'İşlemleri seçmeyi durdur', + 'reconcile_selected' => 'Onaylanmış', + 'mass_delete_journals' => 'Bir dizi işlemi sil', + 'mass_edit_journals' => 'Bir dizi işlem düzenle', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Etiket (ler) i güncelleme', + 'replace_with_these_tags' => 'Bu etiketlerle değiştirin', + 'append_these_tags' => 'Bu etiketleri ekle', + 'mass_edit' => 'Seçilenleri tek tek düzenle', + 'bulk_edit' => 'Toplu olarak seçilenleri düzenle', + 'mass_delete' => 'Seçileni sil', + 'cannot_edit_other_fields' => 'Gösterecek yer olmadığı için, bu dosya dışındaki dosyaları toplu olarak düzenleyemezsiniz. Eğer o alanları düzenlemeniz gerekliyse lütfen linki takip edin ve onları teker teker düzenleyin.', + 'cannot_change_amount_reconciled' => 'Mutabakat işlemlerinin miktarını değiştiremezsiniz.', + 'no_budget' => '(bütçe yok)', + 'no_bill' => '(hayır bill)', + 'account_per_budget' => 'Bütçe başına hesap', + 'account_per_category' => 'Kategori başına hesap', + 'create_new_object' => 'Yaratmak', + 'empty' => '(boş)', + 'all_other_budgets' => '(diğer tüm bütçeler)', + 'all_other_accounts' => '(diğer tüm hesaplar)', + 'expense_per_source_account' => 'Kaynak hesap başına giderler', + 'expense_per_destination_account' => 'Hedef hesap başına giderler', + 'income_per_destination_account' => 'Hedef hesap başına gelir', + 'spent_in_specific_category' => ':category kategorisinde harcandı', + 'earned_in_specific_category' => ':category kategorisinde kazanılan', + 'spent_in_specific_tag' => 'Etikette harcanan:tag', + 'earned_in_specific_tag' => ':tag etiketinde kazanıldı', + 'income_per_source_account' => 'Kaynak hesap başına gelir', + 'average_spending_per_destination' => 'Hedef hesap başına ortalama gider', + 'average_spending_per_source' => 'Kaynak hesap başına ortalama gider', + 'average_earning_per_source' => 'Kaynak hesap başına ortalama kazanç', + 'average_earning_per_destination' => 'Hedef hesap başına ortalama kazanç', + 'account_per_tag' => 'Etiket başına hesap', + 'tag_report_expenses_listed_once' => 'Giderler ve gelirler asla iki kez listelenmez. Bir işlemin birden çok etiketi varsa, yalnızca etiketlerinden birinin altında görünebilir. Bu liste eksik veri gibi görünebilir, ancak tutarlar doğru olacaktır.', + 'double_report_expenses_charted_once' => 'Giderler ve gelirler hiçbir zaman iki kez görüntülenmez. Bir işlemin birden çok etiketi varsa, yalnızca etiketlerinden birinin altında görünebilir. Bu grafikte veri eksik gibi görünebilir, ancak tutarlar doğru olacaktır.', + 'tag_report_chart_single_tag' => 'Bu grafik tek bir etiket için geçerlidir. Bir işlemin birden çok etiketi varsa, burada gördükleriniz diğer etiketlerin grafiklerine de yansıtılabilir.', + 'tag' => 'Etiket', + 'no_budget_squared' => '(Bütçe yok)', + 'perm-delete-many' => 'Bir seferde birçok öğeyi silmek çok yıkıcı olabilir. Lütfen dikkatli olun. Bölünmüş bir işlemin bir bölümünü bu sayfadan silebilirsiniz, bu nedenle dikkatli olun.', + 'mass_deleted_transactions_success' => 'Silmek :count işlem.|Silmek :count işlemler.', + 'mass_edited_transactions_success' => 'Updated :count işlem.|Silmek :count işlemler.', + 'opt_group_' => '(hesap türü yok)', + 'opt_group_no_account_type' => '(hesap türü yok)', + 'opt_group_defaultAsset' => 'Varsayılan varlık hesapları', + 'opt_group_savingAsset' => 'Tasarruf Hesapları', + 'opt_group_sharedAsset' => 'Paylaşılan varlık hesapları', + 'opt_group_ccAsset' => 'Kredi Kartı', + 'opt_group_cashWalletAsset' => 'Nakit cüzdan', + 'opt_group_expense_account' => 'Gider hesapları', + 'opt_group_revenue_account' => 'Gelir hesapları', + 'opt_group_l_Loan' => 'Sorumluluk: Kredi', + 'opt_group_cash_account' => 'Nakit hesabı', + 'opt_group_l_Debt' => 'Sorumluluk: Borç', + 'opt_group_l_Mortgage' => 'Sorumluluk: İpotek', + 'opt_group_l_Credit card' => 'Sorumluluk: Kredi kartı', + 'notes' => 'Notlar', + 'unknown_journal_error' => 'İşlem depolanamadı. Lütfen günlük dosyalarını kontrol edin.', + 'attachment_not_found' => 'Bu ek bulunamadı.', + 'journal_link_bill' => 'Bu işlem fatura ile bağlantılıdır :name. Bağlantıyı kaldırmak için onay kutusunun işaretini kaldırın. Başka bir faturaya bağlamak için kuralları kullanın.', + 'transaction_stored_link' => 'İşlem #{ID} ("{title}") saklı olmuştur.', + 'transaction_new_stored_link' => 'İşlem #{ID}saklı olmuştur.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Firefly III\'e hoşgeldiniz!', - 'submit' => 'Gönder', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Başla', - 'to_get_started' => 'Firefly III\'ü başarılı şekilde yüklediğinizi görmek güzel. Bu aracı kullanmak için lütfen banka adınızı ve ana hesabınızın bakiyesini girin. Birden fazla hesabınız varsa endişelenmeyin. Onları daha sonra ekleyebilirsiniz. Bu adım sadece Firefly III\'ün bir yerden başlaması gerektiği içindir.', - 'savings_balance_text' => 'Firefly III sizin için otomatik olarak bir birikim hesabı oluşturacaktır. Varsayılan olarak birikim hesabınızda hiç para olmayacaktır ama Firefly III\'e dengelemesini söylerseniz o şekilde saklayacaktır.', - 'finish_up_new_user' => 'İşte bu! Submit tıklayarak devam edebilirsiniz. Firefly III Anasayfasına yönlendirileceksiniz.', - 'stored_new_accounts_new_user' => 'Yuppi! Yeni hesabınız kaydedildi.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Dil', - 'new_savings_account' => ':bank_name tasarruf hesabı', - 'cash_wallet' => 'Nakit cüzdan', - 'currency_not_present' => 'Normalde kullandığınız para birimi listelenmiyorsa endişelenmeyin. Seçenekler> Para Birimleri altında kendi para birimlerini oluşturabilirsiniz.', + 'welcome' => 'Firefly III\'e hoşgeldiniz!', + 'submit' => 'Gönder', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Başla', + 'to_get_started' => 'Firefly III\'ü başarılı şekilde yüklediğinizi görmek güzel. Bu aracı kullanmak için lütfen banka adınızı ve ana hesabınızın bakiyesini girin. Birden fazla hesabınız varsa endişelenmeyin. Onları daha sonra ekleyebilirsiniz. Bu adım sadece Firefly III\'ün bir yerden başlaması gerektiği içindir.', + 'savings_balance_text' => 'Firefly III sizin için otomatik olarak bir birikim hesabı oluşturacaktır. Varsayılan olarak birikim hesabınızda hiç para olmayacaktır ama Firefly III\'e dengelemesini söylerseniz o şekilde saklayacaktır.', + 'finish_up_new_user' => 'İşte bu! Submit tıklayarak devam edebilirsiniz. Firefly III Anasayfasına yönlendirileceksiniz.', + 'stored_new_accounts_new_user' => 'Yuppi! Yeni hesabınız kaydedildi.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Dil', + 'new_savings_account' => ':bank_name tasarruf hesabı', + 'cash_wallet' => 'Nakit cüzdan', + 'currency_not_present' => 'Normalde kullandığınız para birimi listelenmiyorsa endişelenmeyin. Seçenekler> Para Birimleri altında kendi para birimlerini oluşturabilirsiniz.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Hesaplarınız', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Bütçe ve Harcama', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Birikim', - 'newWithdrawal' => 'Yeni gider', - 'newDeposit' => 'Yeni mevduat', - 'newTransfer' => 'Yeni Transfer', - 'bills_to_pay' => 'Ödenecek fatura', - 'per_day' => 'Hergün', - 'left_to_spend_per_day' => 'Günlük harcama için bırakıldı', - 'bills_paid' => 'Ödenen Faturalar', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Hesaplarınız', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Bütçe ve Harcama', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Birikim', + 'newWithdrawal' => 'Yeni gider', + 'newDeposit' => 'Yeni mevduat', + 'newTransfer' => 'Yeni Transfer', + 'bills_to_pay' => 'Ödenecek fatura', + 'per_day' => 'Hergün', + 'left_to_spend_per_day' => 'Günlük harcama için bırakıldı', + 'bills_paid' => 'Ödenen Faturalar', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Para birimi', - 'preferences' => 'Tercihler', - 'logout' => 'Çıkış Yap', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Navigasyonu aç / kapat', - 'searchPlaceholder' => 'Aranıyor...', - 'version' => 'Versiyon', - 'dashboard' => 'Gösterge paneli', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Available budget ({currency})', - 'currencies' => 'Kurlar', - 'activity' => 'Activity', - 'usage' => 'Usage', - 'accounts' => 'Hesaplar', - 'Asset account' => 'Varlık hesabı', - 'Default account' => 'Varlık hesabı', - 'Expense account' => 'Gider hesabı', - 'Revenue account' => 'Gelir hesabı', - 'Initial balance account' => 'Başlangıç bakiye hesabı', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Debt', - 'account_type_Loan' => 'Loan', - 'account_type_Mortgage' => 'Mortgage', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Credit card', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Bütçeler', - 'tags' => 'Etiketler', - 'reports' => 'Raporlar', - 'transactions' => 'İşlemler', - 'expenses' => 'Giderler', - 'income' => 'Gelir / gelir', - 'transfers' => 'Transferler', - 'moneyManagement' => 'Para Yönetimi', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Kumbara', - 'piggy_banks' => 'Piggy banks', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Fatura', - 'withdrawal' => 'Para Çekme', - 'opening_balance' => 'Açılış bakiyesi', - 'deposit' => 'Mevduat', - 'account' => 'Hesap', - 'transfer' => 'Havale', - 'Withdrawal' => 'Para Çekme', - 'Deposit' => 'Mevduat', - 'Transfer' => 'Havale', - 'bill' => 'Fatura', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'amount' => 'Miktar', - 'overview' => 'Genel Bakış', - 'saveOnAccount' => 'Hesabı Kaydet', - 'unknown' => 'Bilinmeyen', - 'monthly' => 'Aylık', - 'profile' => 'Profil', - 'errors' => 'Hatalar', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Store new liability', - 'edit_liabilities_account' => 'Edit liability ":name"', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => 'Para birimi', + 'preferences' => 'Tercihler', + 'logout' => 'Çıkış Yap', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Navigasyonu aç / kapat', + 'searchPlaceholder' => 'Aranıyor...', + 'version' => 'Versiyon', + 'dashboard' => 'Gösterge paneli', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Available budget ({currency})', + 'currencies' => 'Kurlar', + 'activity' => 'Activity', + 'usage' => 'Usage', + 'accounts' => 'Hesaplar', + 'Asset account' => 'Varlık hesabı', + 'Default account' => 'Varlık hesabı', + 'Expense account' => 'Gider hesabı', + 'Revenue account' => 'Gelir hesabı', + 'Initial balance account' => 'Başlangıç bakiye hesabı', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Debt', + 'account_type_Loan' => 'Loan', + 'account_type_Mortgage' => 'Mortgage', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Credit card', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Bütçeler', + 'tags' => 'Etiketler', + 'reports' => 'Raporlar', + 'transactions' => 'İşlemler', + 'expenses' => 'Giderler', + 'income' => 'Gelir / gelir', + 'transfers' => 'Transferler', + 'moneyManagement' => 'Para Yönetimi', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Kumbara', + 'piggy_banks' => 'Piggy banks', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Fatura', + 'withdrawal' => 'Para Çekme', + 'opening_balance' => 'Açılış bakiyesi', + 'deposit' => 'Mevduat', + 'account' => 'Hesap', + 'transfer' => 'Havale', + 'Withdrawal' => 'Para Çekme', + 'Deposit' => 'Mevduat', + 'Transfer' => 'Havale', + 'bill' => 'Fatura', + 'yes' => 'Evet', + 'no' => 'Hayır', + 'amount' => 'Miktar', + 'overview' => 'Genel Bakış', + 'saveOnAccount' => 'Hesabı Kaydet', + 'unknown' => 'Bilinmeyen', + 'monthly' => 'Aylık', + 'profile' => 'Profil', + 'errors' => 'Hatalar', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Store new liability', + 'edit_liabilities_account' => 'Edit liability ":name"', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2233,109 +2239,109 @@ return [ */ // reports: - 'report_default' => ':start ve :end arasında varsayılan finans raporu', - 'report_audit' => ':start ve :end arasında işlem geçmişine genel bakış', - 'report_category' => ':start ve :end arasında kategori raporu', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => ':start ve :end arasında bütçe raporu', - 'report_tag' => ':start ve :end arasında etiket raporu', - 'quick_link_reports' => 'Hızlı Erişim', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Varsayılan finansal rapor', - 'quick_link_audit_report' => 'İşlem geçmişine genel bakış', - 'report_this_month_quick' => 'Cari ay, tüm hesaplar', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Cari yıl, tüm hesaplar', - 'report_this_fiscal_year_quick' => 'Cari mali yıl, bütün hesaplar', - 'report_all_time_quick' => 'Bütün zaman, bütün hesaplar', - 'reports_can_bookmark' => 'Raporların yer imlerine eklenebileceğini unutmayın.', - 'incomeVsExpenses' => 'Gelir ve giderler', - 'accountBalances' => 'Hesap bakiyeleri', - 'balanceStart' => 'Dönem Başında Bakiye', - 'balanceEnd' => 'Dönem Sonunda Bakiye', - 'splitByAccount' => 'Hesaplara göre bölünmüş', - 'coveredWithTags' => 'Etiketler kapatılmıştır', - 'leftInBudget' => 'Bütçede bırakıldı', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Hesap toplamı', - 'noCategory' => '(Kategori yok)', - 'notCharged' => 'Ücret alınmadı (henüz)', - 'inactive' => 'Etkisiz', - 'active' => 'Aktif', - 'difference' => 'Fark', - 'money_flowing_in' => 'İçeri', - 'money_flowing_out' => 'Dışarı', - 'topX' => 'üst :number', - 'show_full_list' => 'Tüm listeyi göster', - 'show_only_top' => 'Sadece üst :number göster', - 'report_type' => 'Rapor Türü', - 'report_type_default' => 'Varsayılan finansal rapor', - 'report_type_audit' => 'İşlem geçmişine genel bakış (denetim)', - 'report_type_category' => 'Kategori raporu', - 'report_type_budget' => 'Bütçe raporu', - 'report_type_tag' => 'Etiket raporu', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'Bu tür raporlar hakkında daha fazla bilgi yardım sayfalarında bulunabilir. Sağ üst köşedeki (?) simgesine basın.', - 'report_included_accounts' => 'Dahil edilen hesaplar', - 'report_date_range' => 'Tarih aralığı', - 'report_preset_ranges' => 'Önceden ayarlanmış aralıklar', - 'shared' => 'Paylaşılan', - 'fiscal_year' => 'Mali yıl', - 'income_entry' => ':start ve :end arasında ":name" hesabının geliri', - 'expense_entry' => ':start ve :end arasında ":name" hesabının giderleri', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => '":budget" bütçesindeki :start ve :end arası harcamalar', - 'balance_amount' => '":budget" bütçesindeki, ":account" hesabından :start ve :end arası ödenen giderler', - 'no_audit_activity' => ':account_name hesabında :start ve :end arasında hiç bir hareket kaydedilmedi.', - 'audit_end_balance' => ':end sonunda :account_name hesabının bakiyesi: :balance', - 'reports_extra_options' => 'Ekstra Seçenekler', - 'report_has_no_extra_options' => 'Bu raporda ekstra bir seçenek yok', - 'reports_submit' => 'Raporu görüntüle', - 'end_after_start_date' => 'Raporun bitiş tarihi, başlangıç tarihinden sonra olmalıdır.', - 'select_category' => 'Kategori (ler) seçin', - 'select_budget' => 'Bütçe (ler) seçin.', - 'select_tag' => 'Etiket (ler) seçin.', - 'income_per_category' => 'Kategori başına gelir', - 'expense_per_category' => 'Kategori başına harcama', - 'expense_per_budget' => 'Bütçe başına harcama', - 'income_per_account' => 'Hesap başına gelir', - 'expense_per_account' => 'Hesap başına gider', - 'expense_per_tag' => 'Etiket başına harcama', - 'income_per_tag' => 'Etiket başına gelir', - 'include_expense_not_in_budget' => 'Dahil edilen masraflar seçili bütçe(ler) içinde değil', - 'include_expense_not_in_account' => 'Dahil edilen masraflar seçili hesaplar(lar) içinde değil', - 'include_expense_not_in_category' => 'Dahil edilen masraflar seçili kategori(ler) içinde değil', - 'include_income_not_in_category' => 'Dahil edilen gelirler seçili kategori(ler) içinde değil', - 'include_income_not_in_account' => 'Dahil edilen gelirler seçili hesap(lar) içinde değil', - 'include_income_not_in_tags' => 'Dahil edilen gelirler seçili etiket(ler) içinde değil', - 'include_expense_not_in_tags' => 'Dahil edilen giderler seçili etiket(ler) içinde değil', - 'everything_else' => 'Geri kalan her şey', - 'income_and_expenses' => 'Gelir ve gider', - 'spent_average' => 'Harcanan (ortalama)', - 'income_average' => 'Gelir (ortalama)', - 'transaction_count' => 'İşlem sayısı', - 'average_spending_per_account' => 'Hesap başına ortalama harcama', - 'average_income_per_account' => 'Hesap başına ortalama gelir', - 'total' => 'Genel Toplam', - 'description' => 'Açıklama', - 'sum_of_period' => 'Dönemin toplamı', - 'average_in_period' => 'Dönem içinde ortalama', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Varsayılan varlık hesabı', - 'account_role_sharedAsset' => 'Paylaşılan varlık hesabı', - 'account_role_savingAsset' => 'Birikim hesabı', - 'account_role_ccAsset' => 'Kredi Kartı', - 'account_role_cashWalletAsset' => 'Nakit cüzdan', - 'budget_chart_click' => 'Bir grafik görmek için lütfen yukarıdaki tabloda bir bütçe adına tıklayın.', - 'category_chart_click' => 'Bir grafik görmek için lütfen yukarıdaki tabloda bir kategori adına tıklayın.', - 'in_out_accounts' => 'Kazanılan ve kombinasyon başına harcanan', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => 'Kazanılan ve kategori başına harcanan', - 'out_per_budget' => 'Bütçe başına harcama', - 'select_expense_revenue' => 'Harcama / gelir hesabı seçin', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => ':start ve :end arasında varsayılan finans raporu', + 'report_audit' => ':start ve :end arasında işlem geçmişine genel bakış', + 'report_category' => ':start ve :end arasında kategori raporu', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => ':start ve :end arasında bütçe raporu', + 'report_tag' => ':start ve :end arasında etiket raporu', + 'quick_link_reports' => 'Hızlı Erişim', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Varsayılan finansal rapor', + 'quick_link_audit_report' => 'İşlem geçmişine genel bakış', + 'report_this_month_quick' => 'Cari ay, tüm hesaplar', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Cari yıl, tüm hesaplar', + 'report_this_fiscal_year_quick' => 'Cari mali yıl, bütün hesaplar', + 'report_all_time_quick' => 'Bütün zaman, bütün hesaplar', + 'reports_can_bookmark' => 'Raporların yer imlerine eklenebileceğini unutmayın.', + 'incomeVsExpenses' => 'Gelir ve giderler', + 'accountBalances' => 'Hesap bakiyeleri', + 'balanceStart' => 'Dönem Başında Bakiye', + 'balanceEnd' => 'Dönem Sonunda Bakiye', + 'splitByAccount' => 'Hesaplara göre bölünmüş', + 'coveredWithTags' => 'Etiketler kapatılmıştır', + 'leftInBudget' => 'Bütçede bırakıldı', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Hesap toplamı', + 'noCategory' => '(Kategori yok)', + 'notCharged' => 'Ücret alınmadı (henüz)', + 'inactive' => 'Etkisiz', + 'active' => 'Aktif', + 'difference' => 'Fark', + 'money_flowing_in' => 'İçeri', + 'money_flowing_out' => 'Dışarı', + 'topX' => 'üst :number', + 'show_full_list' => 'Tüm listeyi göster', + 'show_only_top' => 'Sadece üst :number göster', + 'report_type' => 'Rapor Türü', + 'report_type_default' => 'Varsayılan finansal rapor', + 'report_type_audit' => 'İşlem geçmişine genel bakış (denetim)', + 'report_type_category' => 'Kategori raporu', + 'report_type_budget' => 'Bütçe raporu', + 'report_type_tag' => 'Etiket raporu', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'Bu tür raporlar hakkında daha fazla bilgi yardım sayfalarında bulunabilir. Sağ üst köşedeki (?) simgesine basın.', + 'report_included_accounts' => 'Dahil edilen hesaplar', + 'report_date_range' => 'Tarih aralığı', + 'report_preset_ranges' => 'Önceden ayarlanmış aralıklar', + 'shared' => 'Paylaşılan', + 'fiscal_year' => 'Mali yıl', + 'income_entry' => ':start ve :end arasında ":name" hesabının geliri', + 'expense_entry' => ':start ve :end arasında ":name" hesabının giderleri', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => '":budget" bütçesindeki :start ve :end arası harcamalar', + 'balance_amount' => '":budget" bütçesindeki, ":account" hesabından :start ve :end arası ödenen giderler', + 'no_audit_activity' => ':account_name hesabında :start ve :end arasında hiç bir hareket kaydedilmedi.', + 'audit_end_balance' => ':end sonunda :account_name hesabının bakiyesi: :balance', + 'reports_extra_options' => 'Ekstra Seçenekler', + 'report_has_no_extra_options' => 'Bu raporda ekstra bir seçenek yok', + 'reports_submit' => 'Raporu görüntüle', + 'end_after_start_date' => 'Raporun bitiş tarihi, başlangıç tarihinden sonra olmalıdır.', + 'select_category' => 'Kategori (ler) seçin', + 'select_budget' => 'Bütçe (ler) seçin.', + 'select_tag' => 'Etiket (ler) seçin.', + 'income_per_category' => 'Kategori başına gelir', + 'expense_per_category' => 'Kategori başına harcama', + 'expense_per_budget' => 'Bütçe başına harcama', + 'income_per_account' => 'Hesap başına gelir', + 'expense_per_account' => 'Hesap başına gider', + 'expense_per_tag' => 'Etiket başına harcama', + 'income_per_tag' => 'Etiket başına gelir', + 'include_expense_not_in_budget' => 'Dahil edilen masraflar seçili bütçe(ler) içinde değil', + 'include_expense_not_in_account' => 'Dahil edilen masraflar seçili hesaplar(lar) içinde değil', + 'include_expense_not_in_category' => 'Dahil edilen masraflar seçili kategori(ler) içinde değil', + 'include_income_not_in_category' => 'Dahil edilen gelirler seçili kategori(ler) içinde değil', + 'include_income_not_in_account' => 'Dahil edilen gelirler seçili hesap(lar) içinde değil', + 'include_income_not_in_tags' => 'Dahil edilen gelirler seçili etiket(ler) içinde değil', + 'include_expense_not_in_tags' => 'Dahil edilen giderler seçili etiket(ler) içinde değil', + 'everything_else' => 'Geri kalan her şey', + 'income_and_expenses' => 'Gelir ve gider', + 'spent_average' => 'Harcanan (ortalama)', + 'income_average' => 'Gelir (ortalama)', + 'transaction_count' => 'İşlem sayısı', + 'average_spending_per_account' => 'Hesap başına ortalama harcama', + 'average_income_per_account' => 'Hesap başına ortalama gelir', + 'total' => 'Genel Toplam', + 'description' => 'Açıklama', + 'sum_of_period' => 'Dönemin toplamı', + 'average_in_period' => 'Dönem içinde ortalama', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Varsayılan varlık hesabı', + 'account_role_sharedAsset' => 'Paylaşılan varlık hesabı', + 'account_role_savingAsset' => 'Birikim hesabı', + 'account_role_ccAsset' => 'Kredi Kartı', + 'account_role_cashWalletAsset' => 'Nakit cüzdan', + 'budget_chart_click' => 'Bir grafik görmek için lütfen yukarıdaki tabloda bir bütçe adına tıklayın.', + 'category_chart_click' => 'Bir grafik görmek için lütfen yukarıdaki tabloda bir kategori adına tıklayın.', + 'in_out_accounts' => 'Kazanılan ve kombinasyon başına harcanan', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => 'Kazanılan ve kategori başına harcanan', + 'out_per_budget' => 'Bütçe başına harcama', + 'select_expense_revenue' => 'Harcama / gelir hesabı seçin', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2349,95 +2355,95 @@ return [ */ // charts: - 'chart' => 'Grafik', - 'month' => 'Ay', - 'budget' => 'Bütçe', - 'spent' => 'Harcanan', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Bütçede harcama', - 'left_to_spend' => 'Harcama için bırakıldı', - 'earned' => 'Kazanılan', - 'overspent' => 'Fazladan', - 'left' => 'Ayrıldı', - 'max-amount' => 'En yüksek miktar', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Geçerli fatura girişi', - 'name' => 'İsim', - 'date' => 'Tarih', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Ödendi', - 'unpaid' => 'Ödenmedi', - 'day' => 'Gün', - 'budgeted' => 'Bütçelenen', - 'period' => 'Dönem', - 'balance' => 'Denge', - 'in_out_period' => 'In + out this period', - 'sum' => 'Toplam', - 'summary' => 'Summary', - 'average' => 'Ortalama', - 'balanceFor' => ':name için bakiye', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Grafik', + 'month' => 'Ay', + 'budget' => 'Bütçe', + 'spent' => 'Harcanan', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Bütçede harcama', + 'left_to_spend' => 'Harcama için bırakıldı', + 'earned' => 'Kazanılan', + 'overspent' => 'Fazladan', + 'left' => 'Ayrıldı', + 'max-amount' => 'En yüksek miktar', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Geçerli fatura girişi', + 'name' => 'İsim', + 'date' => 'Tarih', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Ödendi', + 'unpaid' => 'Ödenmedi', + 'day' => 'Gün', + 'budgeted' => 'Bütçelenen', + 'period' => 'Dönem', + 'balance' => 'Denge', + 'in_out_period' => 'In + out this period', + 'sum' => 'Toplam', + 'summary' => 'Summary', + 'average' => 'Ortalama', + 'balanceFor' => ':name için bakiye', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => '":name" kumbarasına paraa ekle', - 'piggy_bank' => 'Kumbara', - 'new_piggy_bank' => 'Yeni kumbara', - 'store_piggy_bank' => 'Yeni bir kumbara kaydet', - 'stored_piggy_bank' => '":name" isimli yeni bir kumbara kaydet', - 'account_status' => 'Hesap Durumu', - 'left_for_piggy_banks' => 'Kumbara için sola', - 'sum_of_piggy_banks' => 'Kumbaranın toplamı', - 'saved_so_far' => 'Şimdiye kadar biriktirilmiş', - 'left_to_save' => 'Kaydetmek için sola', - 'suggested_amount' => 'Birikim için önerilen aylık tutar', - 'add_money_to_piggy_title' => '":name" kumbarasına para ekle', - 'remove_money_from_piggy_title' => '":name" kumbarasından para çek', - 'add' => 'Ekle', - 'no_money_for_piggy' => 'Bu kumbaraya koyacak paran yok.', - 'suggested_savings_per_month' => 'Aylık önerildi', + 'event_history' => 'Event history', + 'add_money_to_piggy' => '":name" kumbarasına paraa ekle', + 'piggy_bank' => 'Kumbara', + 'new_piggy_bank' => 'Yeni kumbara', + 'store_piggy_bank' => 'Yeni bir kumbara kaydet', + 'stored_piggy_bank' => '":name" isimli yeni bir kumbara kaydet', + 'account_status' => 'Hesap Durumu', + 'left_for_piggy_banks' => 'Kumbara için sola', + 'sum_of_piggy_banks' => 'Kumbaranın toplamı', + 'saved_so_far' => 'Şimdiye kadar biriktirilmiş', + 'left_to_save' => 'Kaydetmek için sola', + 'suggested_amount' => 'Birikim için önerilen aylık tutar', + 'add_money_to_piggy_title' => '":name" kumbarasına para ekle', + 'remove_money_from_piggy_title' => '":name" kumbarasından para çek', + 'add' => 'Ekle', + 'no_money_for_piggy' => 'Bu kumbaraya koyacak paran yok.', + 'suggested_savings_per_month' => 'Aylık önerildi', - 'remove' => 'Kaldır', - 'max_amount_add' => 'Ekleyebileceğiniz azami tutar', - 'max_amount_remove' => 'Kaldırabileceğiniz maksimum tutar', - 'update_piggy_button' => 'Kumbarayı güncelle', - 'update_piggy_title' => '":name" kumbarasını güncelle', - 'updated_piggy_bank' => '":name" kumbarası güncellenmiş', - 'details' => 'Detaylar', - 'events' => 'Etkinlikler', - 'target_amount' => 'Hedef miktar', - 'start_date' => 'Başlangıç Tarihi', - 'no_start_date' => 'başlangıç tarihi yok', - 'target_date' => 'Hedeflenen tarih', - 'no_target_date' => 'Hedef tarihi yok', - 'table' => 'Tablo', - 'delete_piggy_bank' => '":name" (adlı) kumbarayı sil', - 'cannot_add_amount_piggy' => '":name" değerine "amount:" eklenemedi.', - 'cannot_remove_from_piggy' => '":name" adresinden miktar kaldırılamadı.', - 'deleted_piggy_bank' => '":name" kumbarası silinmiş', - 'added_amount_to_piggy' => '":name" e kadar olan miktar eklendi', - 'removed_amount_from_piggy' => '":name"\'den :amount" silindi', - 'piggy_events' => 'Related piggy banks', + 'remove' => 'Kaldır', + 'max_amount_add' => 'Ekleyebileceğiniz azami tutar', + 'max_amount_remove' => 'Kaldırabileceğiniz maksimum tutar', + 'update_piggy_button' => 'Kumbarayı güncelle', + 'update_piggy_title' => '":name" kumbarasını güncelle', + 'updated_piggy_bank' => '":name" kumbarası güncellenmiş', + 'details' => 'Detaylar', + 'events' => 'Etkinlikler', + 'target_amount' => 'Hedef miktar', + 'start_date' => 'Başlangıç Tarihi', + 'no_start_date' => 'başlangıç tarihi yok', + 'target_date' => 'Hedeflenen tarih', + 'no_target_date' => 'Hedef tarihi yok', + 'table' => 'Tablo', + 'delete_piggy_bank' => '":name" (adlı) kumbarayı sil', + 'cannot_add_amount_piggy' => '":name" değerine "amount:" eklenemedi.', + 'cannot_remove_from_piggy' => '":name" adresinden miktar kaldırılamadı.', + 'deleted_piggy_bank' => '":name" kumbarası silinmiş', + 'added_amount_to_piggy' => '":name" e kadar olan miktar eklendi', + 'removed_amount_from_piggy' => '":name"\'den :amount" silindi', + 'piggy_events' => 'Related piggy banks', // tags - 'delete_tag' => '":tag" etiketi sil', - 'deleted_tag' => '":tag" etiketi silinmiş', - 'new_tag' => 'Yeni etiket yap', - 'edit_tag' => '":tag" etiketi düzenle', - 'updated_tag' => 'Güncellenmiş etiket ":tag"', - 'created_tag' => 'Tag ":tag" oluşturuldu!', + 'delete_tag' => '":tag" etiketi sil', + 'deleted_tag' => '":tag" etiketi silinmiş', + 'new_tag' => 'Yeni etiket yap', + 'edit_tag' => '":tag" etiketi düzenle', + 'updated_tag' => 'Güncellenmiş etiket ":tag"', + 'created_tag' => 'Tag ":tag" oluşturuldu!', - 'transaction_journal_information' => 'İşlem Bilgileri', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta Bilgisi', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Toplam Tutar', - 'number_of_decimals' => 'Ondalık Sayı', + 'transaction_journal_information' => 'İşlem Bilgileri', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta Bilgisi', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Toplam Tutar', + 'number_of_decimals' => 'Ondalık Sayı', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2451,279 +2457,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Yönetim', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Kullanıcı Yönetimi', - 'list_all_users' => 'Tüm kullanıcılar', - 'all_users' => 'Tüm kullanıcılar', - 'instance_configuration' => 'Yapılandırma', - 'firefly_instance_configuration' => 'Firefly III için yapılandırma seçenekleri', - 'setting_single_user_mode' => 'Tek kullanıcı modu', - 'setting_single_user_mode_explain' => 'Varsayılan olarak Firefly III sadece bir kayıt kabul eder: sizi. Bu başkalarının sizin isteklerinizi kontrol etmemesi için bir güvenlik önlemidir. Gelecekteki kayıtlar engellendi. Bu kutunun işaretini kaldırdığınızda erişebildiklerini var sayarsak (internete bağlı olduğunda) başkaları da sizin isteklerinizi kullanabilir.', - 'store_configuration' => 'Mağaza yapılandırması', - 'single_user_administration' => ':email için kullanıcı yönetimi', - 'edit_user' => ':email kullanıcısını düzenle', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Kullanıcı bilgisi', - 'user_information' => 'Kullanıcı bilgisi', - 'total_size' => 'toplam boyut', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_groups kural gruplarındaki :count_rules kuralları', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'Yapılandırma güncellendi', - 'setting_is_demo_site' => 'Tanıtım videosu', - 'setting_is_demo_site_explain' => 'Bu kutuyu işaretlediniz, bu yükleme, demo sitesinin sanki garip yan etkilere sahipmiş gibi davranır.', - 'block_code_bounced' => 'E-posta mesajı geri çevrildi', - 'block_code_expired' => 'Demo hesabı doldu', - 'no_block_code' => 'Engellemek için bir neden yok ya da kullanıcı engellenmemiş', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Kullanıcı henüz yeni bir e-posta adresi teyit etmedi', - 'admin_update_email' => 'Profil sayfasının aksine kullanıcı e-posta adresleri değiştirildiğinde bildirim ALMAYACAKLAR!', - 'update_user' => 'Kullanıcıyı güncelle', - 'updated_user' => 'Kullanıcı verileri değiştirildi.', - 'delete_user' => 'Kullanıcıyı sil :email', - 'user_deleted' => 'Kullanıcı silindi', - 'send_test_email' => 'E-posta adresine test mesajı gönder', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Mesaj gönder', - 'send_test_triggered' => 'Test tetiklendi. Gelen kutunuzu ve kayıt dosyalarınızı kontrol ediniz.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Yönetim', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Kullanıcı Yönetimi', + 'list_all_users' => 'Tüm kullanıcılar', + 'all_users' => 'Tüm kullanıcılar', + 'instance_configuration' => 'Yapılandırma', + 'firefly_instance_configuration' => 'Firefly III için yapılandırma seçenekleri', + 'setting_single_user_mode' => 'Tek kullanıcı modu', + 'setting_single_user_mode_explain' => 'Varsayılan olarak Firefly III sadece bir kayıt kabul eder: sizi. Bu başkalarının sizin isteklerinizi kontrol etmemesi için bir güvenlik önlemidir. Gelecekteki kayıtlar engellendi. Bu kutunun işaretini kaldırdığınızda erişebildiklerini var sayarsak (internete bağlı olduğunda) başkaları da sizin isteklerinizi kullanabilir.', + 'store_configuration' => 'Mağaza yapılandırması', + 'single_user_administration' => ':email için kullanıcı yönetimi', + 'edit_user' => ':email kullanıcısını düzenle', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Kullanıcı bilgisi', + 'user_information' => 'Kullanıcı bilgisi', + 'total_size' => 'toplam boyut', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_groups kural gruplarındaki :count_rules kuralları', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'Yapılandırma güncellendi', + 'setting_is_demo_site' => 'Tanıtım videosu', + 'setting_is_demo_site_explain' => 'Bu kutuyu işaretlediniz, bu yükleme, demo sitesinin sanki garip yan etkilere sahipmiş gibi davranır.', + 'block_code_bounced' => 'E-posta mesajı geri çevrildi', + 'block_code_expired' => 'Demo hesabı doldu', + 'no_block_code' => 'Engellemek için bir neden yok ya da kullanıcı engellenmemiş', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Kullanıcı henüz yeni bir e-posta adresi teyit etmedi', + 'admin_update_email' => 'Profil sayfasının aksine kullanıcı e-posta adresleri değiştirildiğinde bildirim ALMAYACAKLAR!', + 'update_user' => 'Kullanıcıyı güncelle', + 'updated_user' => 'Kullanıcı verileri değiştirildi.', + 'delete_user' => 'Kullanıcıyı sil :email', + 'user_deleted' => 'Kullanıcı silindi', + 'send_test_email' => 'E-posta adresine test mesajı gönder', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Mesaj gönder', + 'send_test_triggered' => 'Test tetiklendi. Gelen kutunuzu ve kayıt dosyalarınızı kontrol ediniz.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'İşlem bağlantıları yapılandırması', - 'create_new_link_type' => 'Yeni bağlantı türü oluştur', - 'store_new_link_type' => 'Yeni bağlantı türünü kaydet', - 'update_link_type' => 'Bağlantı türünü güncelle', - 'edit_link_type' => '":name" bağlantı türünü düzenleyin', - 'updated_link_type' => '":name" bağlantı türünü güncelleyin', - 'delete_link_type' => '":name" bağlantı türünü silin', - 'deleted_link_type' => '":name" bağlantı türü silinmiş', - 'stored_new_link_type' => '":name" yeni bağlantı türünü kaydet', - 'cannot_edit_link_type' => '":name" bağlantı türü düzenlenemiyor', - 'link_type_help_name' => 'Yani "Kopyalar"', - 'link_type_help_inward' => 'Yani "kopyalar"', - 'link_type_help_outward' => 'Yani "tarafından çoğaltılmış"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(bağlantıyı kaydetme)', - 'link_transaction' => 'Bağlantı işlemi', - 'link_to_other_transaction' => 'Bu işlemi başka bir işlemle bağlantılandır', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'Bu işlem', - 'transaction' => 'İşlem', - 'comments' => 'Yorumlar', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Bu işlemler bağlantılanamıyor', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'İşlemler bağlantıları oluşturuldu.', - 'journals_error_linked' => 'Bu işlemler zaten bağlantılı.', - 'journals_link_to_self' => 'Kendisi için bir ilişki ekleyemezsiniz.', - 'journal_links' => 'İşlem bağlantıları', - 'this_withdrawal' => 'Bu çekim', - 'this_deposit' => 'Bu depozito', - 'this_transfer' => 'Bu transfer', - 'overview_for_link' => '":name" bağlantı tipine genel bakış', - 'source_transaction' => 'İşlem kaynağı', - 'link_description' => 'Bağlantı açıklaması', - 'destination_transaction' => 'Hedef işlem', - 'delete_journal_link' => ':sourceve:destination arasında bağlantıyı sil', - 'deleted_link' => 'Bağlantı silindi', + 'journal_link_configuration' => 'İşlem bağlantıları yapılandırması', + 'create_new_link_type' => 'Yeni bağlantı türü oluştur', + 'store_new_link_type' => 'Yeni bağlantı türünü kaydet', + 'update_link_type' => 'Bağlantı türünü güncelle', + 'edit_link_type' => '":name" bağlantı türünü düzenleyin', + 'updated_link_type' => '":name" bağlantı türünü güncelleyin', + 'delete_link_type' => '":name" bağlantı türünü silin', + 'deleted_link_type' => '":name" bağlantı türü silinmiş', + 'stored_new_link_type' => '":name" yeni bağlantı türünü kaydet', + 'cannot_edit_link_type' => '":name" bağlantı türü düzenlenemiyor', + 'link_type_help_name' => 'Yani "Kopyalar"', + 'link_type_help_inward' => 'Yani "kopyalar"', + 'link_type_help_outward' => 'Yani "tarafından çoğaltılmış"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(bağlantıyı kaydetme)', + 'link_transaction' => 'Bağlantı işlemi', + 'link_to_other_transaction' => 'Bu işlemi başka bir işlemle bağlantılandır', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'Bu işlem', + 'transaction' => 'İşlem', + 'comments' => 'Yorumlar', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Bu işlemler bağlantılanamıyor', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'İşlemler bağlantıları oluşturuldu.', + 'journals_error_linked' => 'Bu işlemler zaten bağlantılı.', + 'journals_link_to_self' => 'Kendisi için bir ilişki ekleyemezsiniz.', + 'journal_links' => 'İşlem bağlantıları', + 'this_withdrawal' => 'Bu çekim', + 'this_deposit' => 'Bu depozito', + 'this_transfer' => 'Bu transfer', + 'overview_for_link' => '":name" bağlantı tipine genel bakış', + 'source_transaction' => 'İşlem kaynağı', + 'link_description' => 'Bağlantı açıklaması', + 'destination_transaction' => 'Hedef işlem', + 'delete_journal_link' => ':sourceve:destination arasında bağlantıyı sil', + 'deleted_link' => 'Bağlantı silindi', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'ile ilişkili', - 'is (partially) refunded by_inward' => 'tarafından (kısmen) geri ödendi', - 'is (partially) paid for by_inward' => 'tarafından (kısmen) ödendi', - 'is (partially) reimbursed by_inward' => 'tarafından (kısmen) iade edildi', - 'inward_transaction' => 'Içe işlem', - 'outward_transaction' => 'Dış işlem', - 'relates to_outward' => 'ile ilişkili', - '(partially) refunds_outward' => '(kısmen) geri ödeme', - '(partially) pays for_outward' => 'için (kısmen) öder', - '(partially) reimburses_outward' => '(kısmen) iade edilir', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'ile ilişkili', + 'is (partially) refunded by_inward' => 'tarafından (kısmen) geri ödendi', + 'is (partially) paid for by_inward' => 'tarafından (kısmen) ödendi', + 'is (partially) reimbursed by_inward' => 'tarafından (kısmen) iade edildi', + 'inward_transaction' => 'Içe işlem', + 'outward_transaction' => 'Dış işlem', + 'relates to_outward' => 'ile ilişkili', + '(partially) refunds_outward' => '(kısmen) geri ödeme', + '(partially) pays for_outward' => 'için (kısmen) öder', + '(partially) reimburses_outward' => '(kısmen) iade edilir', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Bölmeler', - 'add_another_split' => 'Başka bir bölme ekle', - 'cannot_edit_opening_balance' => 'Bir hesabın açılış bakiyesini düzenleyemezsiniz.', - 'no_edit_multiple_left' => 'Düzenlemek için geçerli İşlemler seçmediniz.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Bölmeler', + 'add_another_split' => 'Başka bir bölme ekle', + 'cannot_edit_opening_balance' => 'Bir hesabın açılış bakiyesini düzenleyemezsiniz.', + 'no_edit_multiple_left' => 'Düzenlemek için geçerli İşlemler seçmediniz.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Bir varlık hesabı oluşturalım!', - 'no_accounts_intro_asset' => 'Henüz varlık hesabınız yok. Varlık hesapları ana hesaplarınızdır: çek hesabı, birikim hesabı, paylaşılan hesabınız veya kredi kartınız.', - 'no_accounts_imperative_asset' => 'Firefly III kullanmaya başlamak için en az bir varlık hesabı açmanız gerekir. Hadi şimdi yapalım:', - 'no_accounts_create_asset' => 'Yeni varlık hesabı oluştur', - 'no_accounts_title_expense' => 'Haydi bir gider hesabı oluşturalım!', - 'no_accounts_intro_expense' => 'Henüz gider hesaplarınız yok. Gider hesapları parayı harcadığınız yerdir, dükkanlar ve süpermarketler gibi.', - 'no_accounts_imperative_expense' => 'Gider hesapları işlemler oluşturduğunuzda otomatik olarak oluşturulur, ama eğer isterseniz manuel olarak da bir tane oluşturabilirsiniz. Haydi şimdi bir tane oluşturalım:', - 'no_accounts_create_expense' => 'Bir masraf hesabı oluştur', - 'no_accounts_title_revenue' => 'Gelir hesabı oluşturalım!', - 'no_accounts_intro_revenue' => 'Henüz gelir hesaplarınız yok. Gelir hesapları para almanızı sağlayan yerdir, tıpkı işvereniniz gibi.', - 'no_accounts_imperative_revenue' => 'Gelir hesapları, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama isterseniz manuel olarak da bir tane oluşturabilirsiniz. Hadi şimdi bir tane oluşturalım:', - 'no_accounts_create_revenue' => 'Bir gelir hesabı oluşturun', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Bütçe oluşturalım', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Bütçeler, finansal yönetimin temel araçlarıdır. Şimdi bir tane oluşturalım:', - 'no_budgets_create_default' => 'Bir bütçe oluştur', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Bir kategori oluşturalım!', - 'no_categories_intro_default' => 'Henüz kategorileriniz yok. Kategoriler işlemlerinizi ayrıntılı ayarlamak ve onları belirlenmiş olan kategorilere etiketlemenize yarar.', - 'no_categories_imperative_default' => 'Kategoriler, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama siz manuel olarak da oluşturabilirsiniz. Hadi bir tane oluşturalım:', - 'no_categories_create_default' => 'Bir kategori oluştur', - 'no_tags_title_default' => 'Bir etiket oluşturalım!', - 'no_tags_intro_default' => 'Henüz etiketler yok. Etiketler, işlemlerinizi ayrıntılı ayarlamak ve onları özel anahtar kelimelerle etiketlemenize yarar.', - 'no_tags_imperative_default' => 'Etiketler, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama siz manuel olarak da oluşturabilirsiniz. Haydi bir tane oluşturalım şimdi:', - 'no_tags_create_default' => 'Etiket oluştur', - 'no_transactions_title_withdrawal' => 'Hadi bir gider oluşturalım!', - 'no_transactions_intro_withdrawal' => 'Henüz giderleriniz yok. Maliyenizi yönetmek için giderler oluşturmanız gerekir.', - 'no_transactions_imperative_withdrawal' => 'Biraz para harcadın mı? O zaman şunu yazmalısın:', - 'no_transactions_create_withdrawal' => 'Bir gider oluştur', - 'no_transactions_title_deposit' => 'Bir kaç gelir oluşturalım!', - 'no_transactions_intro_deposit' => 'Kayıtlı bir geliriniz henüz yok. Giderlerinizi yönetmeye başlamak için gelir girdileri oluşturmalısınız.', - 'no_transactions_imperative_deposit' => 'Biraz para aldınız mı? Ozaman aşağıya yazmanız gerekir:', - 'no_transactions_create_deposit' => 'Para yatırma', - 'no_transactions_title_transfers' => 'Bir transfer oluşturalım!', - 'no_transactions_intro_transfers' => 'Henüz bir transferiniz yok. Varlık hesapları arasında para taşıdığınızda, bir transfer olarak kaydedilir.', - 'no_transactions_imperative_transfers' => 'Biraz para mı harcadın? O zaman onu aşağıya yazmalısın:', - 'no_transactions_create_transfers' => 'Aktarma oluştur', - 'no_piggies_title_default' => 'Bir kumbara oluşturalım!', - 'no_piggies_intro_default' => 'Henüz kumbaranız yok. Kazançlarınızı bölmek ve ne kazandığınızı izlemek için kumbaralar oluşturabilirsiniz.', - 'no_piggies_imperative_default' => 'Para biriktirdiğiniz birşeyler var mı? Bir kumbara oluşturun ve takip edin:', - 'no_piggies_create_default' => 'Yeni bir kumbara yarat', - 'no_bills_title_default' => 'Bir fatura oluşturalım!', - 'no_bills_intro_default' => 'Henüz bir faturanız yok. Kira veya sigortanız gibi düzenli giderleri takip etmek için faturalar oluşturabilirsiniz.', - 'no_bills_imperative_default' => 'Böyle düzenli faturalarınız var mı? Bir fatura oluşturun ve ödemelerinizi takip edin:', - 'no_bills_create_default' => 'Fatura oluştur', + 'no_accounts_title_asset' => 'Bir varlık hesabı oluşturalım!', + 'no_accounts_intro_asset' => 'Henüz varlık hesabınız yok. Varlık hesapları ana hesaplarınızdır: çek hesabı, birikim hesabı, paylaşılan hesabınız veya kredi kartınız.', + 'no_accounts_imperative_asset' => 'Firefly III kullanmaya başlamak için en az bir varlık hesabı açmanız gerekir. Hadi şimdi yapalım:', + 'no_accounts_create_asset' => 'Yeni varlık hesabı oluştur', + 'no_accounts_title_expense' => 'Haydi bir gider hesabı oluşturalım!', + 'no_accounts_intro_expense' => 'Henüz gider hesaplarınız yok. Gider hesapları parayı harcadığınız yerdir, dükkanlar ve süpermarketler gibi.', + 'no_accounts_imperative_expense' => 'Gider hesapları işlemler oluşturduğunuzda otomatik olarak oluşturulur, ama eğer isterseniz manuel olarak da bir tane oluşturabilirsiniz. Haydi şimdi bir tane oluşturalım:', + 'no_accounts_create_expense' => 'Bir masraf hesabı oluştur', + 'no_accounts_title_revenue' => 'Gelir hesabı oluşturalım!', + 'no_accounts_intro_revenue' => 'Henüz gelir hesaplarınız yok. Gelir hesapları para almanızı sağlayan yerdir, tıpkı işvereniniz gibi.', + 'no_accounts_imperative_revenue' => 'Gelir hesapları, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama isterseniz manuel olarak da bir tane oluşturabilirsiniz. Hadi şimdi bir tane oluşturalım:', + 'no_accounts_create_revenue' => 'Bir gelir hesabı oluşturun', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Bütçe oluşturalım', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Bütçeler, finansal yönetimin temel araçlarıdır. Şimdi bir tane oluşturalım:', + 'no_budgets_create_default' => 'Bir bütçe oluştur', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Bir kategori oluşturalım!', + 'no_categories_intro_default' => 'Henüz kategorileriniz yok. Kategoriler işlemlerinizi ayrıntılı ayarlamak ve onları belirlenmiş olan kategorilere etiketlemenize yarar.', + 'no_categories_imperative_default' => 'Kategoriler, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama siz manuel olarak da oluşturabilirsiniz. Hadi bir tane oluşturalım:', + 'no_categories_create_default' => 'Bir kategori oluştur', + 'no_tags_title_default' => 'Bir etiket oluşturalım!', + 'no_tags_intro_default' => 'Henüz etiketler yok. Etiketler, işlemlerinizi ayrıntılı ayarlamak ve onları özel anahtar kelimelerle etiketlemenize yarar.', + 'no_tags_imperative_default' => 'Etiketler, işlemler oluşturduğunuzda otomatikmen oluşturulur, ama siz manuel olarak da oluşturabilirsiniz. Haydi bir tane oluşturalım şimdi:', + 'no_tags_create_default' => 'Etiket oluştur', + 'no_transactions_title_withdrawal' => 'Hadi bir gider oluşturalım!', + 'no_transactions_intro_withdrawal' => 'Henüz giderleriniz yok. Maliyenizi yönetmek için giderler oluşturmanız gerekir.', + 'no_transactions_imperative_withdrawal' => 'Biraz para harcadın mı? O zaman şunu yazmalısın:', + 'no_transactions_create_withdrawal' => 'Bir gider oluştur', + 'no_transactions_title_deposit' => 'Bir kaç gelir oluşturalım!', + 'no_transactions_intro_deposit' => 'Kayıtlı bir geliriniz henüz yok. Giderlerinizi yönetmeye başlamak için gelir girdileri oluşturmalısınız.', + 'no_transactions_imperative_deposit' => 'Biraz para aldınız mı? Ozaman aşağıya yazmanız gerekir:', + 'no_transactions_create_deposit' => 'Para yatırma', + 'no_transactions_title_transfers' => 'Bir transfer oluşturalım!', + 'no_transactions_intro_transfers' => 'Henüz bir transferiniz yok. Varlık hesapları arasında para taşıdığınızda, bir transfer olarak kaydedilir.', + 'no_transactions_imperative_transfers' => 'Biraz para mı harcadın? O zaman onu aşağıya yazmalısın:', + 'no_transactions_create_transfers' => 'Aktarma oluştur', + 'no_piggies_title_default' => 'Bir kumbara oluşturalım!', + 'no_piggies_intro_default' => 'Henüz kumbaranız yok. Kazançlarınızı bölmek ve ne kazandığınızı izlemek için kumbaralar oluşturabilirsiniz.', + 'no_piggies_imperative_default' => 'Para biriktirdiğiniz birşeyler var mı? Bir kumbara oluşturun ve takip edin:', + 'no_piggies_create_default' => 'Yeni bir kumbara yarat', + 'no_bills_title_default' => 'Bir fatura oluşturalım!', + 'no_bills_intro_default' => 'Henüz bir faturanız yok. Kira veya sigortanız gibi düzenli giderleri takip etmek için faturalar oluşturabilirsiniz.', + 'no_bills_imperative_default' => 'Böyle düzenli faturalarınız var mı? Bir fatura oluşturun ve ödemelerinizi takip edin:', + 'no_bills_create_default' => 'Fatura oluştur', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Tekrar Eden İşlemler', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Yinelenen bir işlem yapalım!', - 'no_recurring_intro_default' => 'Henüz yinelenen işleminiz yok. Firefly III\'ün sizin için otomatik olarak işlemler oluşturmasını sağlamak için bunları kullanabilirsiniz.', - 'no_recurring_imperative_default' => 'Bu oldukça gelişmiş bir özelliktir ve son derece kullanışlı olabilir. Devam etmeden önce, (?) - sağ üst köşedeki dokümanları okuduğunuzdan emin olun.', - 'no_recurring_create_default' => 'Yinelenen bir işlem oluştur', - 'make_new_recurring' => 'Yinelenen bir işlem oluştur', - 'recurring_daily' => 'Her gün', - 'recurring_weekly' => 'Every week on :weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'İlişkili işlemler', - 'expected_withdrawals' => 'Expected withdrawals', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Tekrar Eden İşlemler', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Yinelenen bir işlem yapalım!', + 'no_recurring_intro_default' => 'Henüz yinelenen işleminiz yok. Firefly III\'ün sizin için otomatik olarak işlemler oluşturmasını sağlamak için bunları kullanabilirsiniz.', + 'no_recurring_imperative_default' => 'Bu oldukça gelişmiş bir özelliktir ve son derece kullanışlı olabilir. Devam etmeden önce, (?) - sağ üst köşedeki dokümanları okuduğunuzdan emin olun.', + 'no_recurring_create_default' => 'Yinelenen bir işlem oluştur', + 'make_new_recurring' => 'Yinelenen bir işlem oluştur', + 'recurring_daily' => 'Her gün', + 'recurring_weekly' => 'Every week on :weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => 'Every month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'İlişkili işlemler', + 'expected_withdrawals' => 'Expected withdrawals', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Yinelenen bir işlem oluştur', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Yinelenen bir işlem oluştur', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2737,69 +2743,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Bills paid (:currency)', - 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Bills paid (:currency)', + 'box_bill_unpaid_in_currency' => 'Bills unpaid (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/tr_TR/validation.php b/resources/lang/tr_TR/validation.php index b2a8e93a68..280f9f2314 100644 --- a/resources/lang/tr_TR/validation.php +++ b/resources/lang/tr_TR/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/uk_UA/firefly.php b/resources/lang/uk_UA/firefly.php index 98bc0cd607..51622348b3 100644 --- a/resources/lang/uk_UA/firefly.php +++ b/resources/lang/uk_UA/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Закрити', - 'actions' => 'Дії', - 'edit' => 'Редагувати', - 'delete' => 'Видалити', - 'split' => 'Розділити', - 'single_split' => 'Розділити', - 'clone' => 'Клонувати', - 'clone_and_edit' => 'Клонувати та редагувати', - 'confirm_action' => 'Підтвердити дію', - 'last_seven_days' => 'Останні сім днів', - 'last_thirty_days' => 'Останні тридцять днів', - 'last_180_days' => 'Останні 180 днів', - 'month_to_date' => 'Місяць до дати', - 'year_to_date' => 'Рік до дати', - 'YTD' => 'З початку року', - 'welcome_back' => 'Що в гаманці?', - 'everything' => 'Все', - 'today' => 'сьогодні', - 'customRange' => 'Власний діапазон', - 'date_range' => 'Період', - 'apply' => 'Застосувати', - 'select_date' => 'Оберіть дату..', - 'cancel' => 'Скасувати', - 'from' => 'Від', - 'to' => 'До', - 'structure' => 'Структура', - 'help_translating' => 'Цей текст довідки поки що не доступний українською мовою. Ви допоможете перекласти?', - 'showEverything' => 'Показати все', - 'never' => 'Ніколи', - 'no_results_for_empty_search' => 'Ваш пошук був порожнім, тому нічого не знайдено.', - 'removed_amount' => 'Видалено :amount', - 'added_amount' => 'Додано :amount', - 'asset_account_role_help' => 'Будь-які додаткові параметри, що виникли з вашого вибору, можна додати пізніше.', - 'Opening balance' => 'Початковий баланс', - 'create_new_stuff' => 'Створити новий матеріал', - 'new_withdrawal' => 'Нове зняття коштів', - 'create_new_transaction' => 'Створити нову операцію', - 'sidebar_frontpage_create' => 'Створити', - 'new_transaction' => 'Нова операція', - 'no_rules_for_bill' => 'Цей рахунок до сплати не має правил, пов\'язаних з ним.', - 'go_to_asset_accounts' => 'Переглянути ваші активи рахунків', - 'go_to_budgets' => 'Перейти до ваших бюджетів', - 'go_to_withdrawals' => 'Перейти до зняття коштів', - 'clones_journal_x' => 'Операція є копією ":description" (#:id)', - 'go_to_categories' => 'Перейти до ваших категорій', - 'go_to_bills' => 'Відкрити рахунки до сплати', - 'go_to_expense_accounts' => 'Переглянь свої рахунки витрат', - 'go_to_revenue_accounts' => 'Перегляньте свої рахунки доходу', - 'go_to_piggies' => 'Відкрити скарбнички', - 'new_deposit' => 'Новий внесок', - 'new_transfer' => 'Новий переказ', - 'new_transfers' => 'Новий переказ', - 'new_asset_account' => 'Новий рахунок активів', - 'new_expense_account' => 'Новий рахунок витрат', - 'new_revenue_account' => 'Новий рахунок доходів', - 'new_liabilities_account' => 'Нове боргове зобов\'язання', - 'new_budget' => 'Новий бюджет', - 'new_bill' => 'Новий рахунок до сплати', - 'block_account_logout' => 'Ви вийшли з системи. Заблоковані облікові записи не можуть використовувати цей сервіс. Ви зареєструвалися з дійсною електронною адресою?', - 'flash_success' => 'Успішно!', - 'flash_info' => 'Повідомлення', - 'flash_warning' => 'Увага!', - 'flash_error' => 'Помилка!', - 'flash_danger' => 'Небезпека!', - 'flash_info_multiple' => 'Є одне повідомлення|Є :count повідомлень', - 'flash_error_multiple' => 'Є одна помилка|Є :count помилок', - 'net_worth' => 'Чисті активи', - 'help_for_this_page' => 'Довідка до сторінки', - 'help_for_this_page_body' => 'Ви можете знайти більше інформації про цю сторінку в документації.', - 'two_factor_welcome' => 'Доброго дня!', - 'two_factor_enter_code' => 'Для продовження, введіть свій код двофакторної аутентифікації. Його може згенерувати ваш додаток.', - 'two_factor_code_here' => 'Введіть код тут', - 'two_factor_title' => 'Двофакторна аутентифікація', - 'authenticate' => 'Аутентифікація', - 'two_factor_forgot_title' => 'Втрачено двофакторну автентифікацію', - 'two_factor_forgot' => 'Я забув свій двофакторний ключ.', - 'two_factor_lost_header' => 'Чи втрачено двофакторну аутентифікацію?', - 'two_factor_lost_intro' => 'Якщо ви втратили резервні копії, вам не пощастило. Через вебінтерфейс це неможливо виправити. Ви маєте виходи.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'В іншому випадку надішліть електронний лист адміністратору сервісу, :site_owner та попросіть його створити новий ключ двофакторної автентифікації.', - 'mfa_backup_code' => 'Ви використали резервний код для входу в Firefly III. Його не можна використати повторно, тому видаліть його зі свого списку.', - 'pref_two_factor_new_backup_codes' => 'Отримати нові резервні коди', - 'pref_two_factor_backup_code_count' => 'У вас є :count дійсний резервний код.|У вас :count дійсних резервних кодів.', - '2fa_i_have_them' => 'Я їх зберіг!', - 'warning_much_data' => ':days днів для завантаження даних, може знадобитися деякий час.', - 'registered' => 'Ви успішно зареєструвалися!', - 'Default asset account' => 'Рахунок активів за замовчуванням', - 'no_budget_pointer' => 'Здається, не створили жодного бюджету. Створіть один на сторінці бюджетів. Бюджети можуть допомогти вам стежити за витратами.', - 'no_bill_pointer' => 'У вас, здається, ще немає рахунків до сплати. Створіть кілька на сторінці рахунків. Рахунки можуть допомогти вам стежити за витратами.', - 'Savings account' => 'Рахунок для накопичення', - 'Credit card' => 'Кредитна картка', - 'source_accounts' => 'Джерело рахунку|Джерела рахунків', - 'destination_accounts' => 'Рахунок-одержувач|Рахунки-одержувачі', - 'user_id_is' => 'Ідентифікатор користувача :user', - 'field_supports_markdown' => 'Це поле підтримує Уцінку.', - 'need_more_help' => 'Якщо вам потрібна додаткова допомога щодо Firefly III, створіть звернення на Github.', - 'reenable_intro_text' => 'Ви можете повторно увімкнути вступне керівництво.', - 'intro_boxes_after_refresh' => 'Вступне керівництво з\'явиться знову після оновлення сторінки.', - 'show_all_no_filter' => 'Показати всі операції без групування за датою.', - 'expenses_by_category' => 'Витрати за категоріями', - 'expenses_by_budget' => 'Витрати за бюджетом', - 'income_by_category' => 'Дохід за категоріями', - 'expenses_by_asset_account' => 'Витрати з основного рахунку', - 'expenses_by_expense_account' => 'Витрати з рахунку витрат', - 'cannot_redirect_to_account' => 'Firefly III не може перенаправити вас на правильну сторінку. Вибачте.', - 'sum_of_expenses' => 'Сума витрат', - 'sum_of_income' => 'Сума доходу', - 'liabilities' => 'Зобов\'язання', - 'spent_in_specific_budget' => 'Витрати в бюджеті ":budget"', - 'spent_in_specific_double' => 'Витрати з рахунку ":account"', - 'earned_in_specific_double' => 'Зароблено у рахунок ":account"', - 'source_account' => 'Вихідний рахунок', - 'source_account_reconciliation' => 'Ви не можете редагувати операції звірки, рахунка джерела.', - 'destination_account' => 'Рахунок призначення', - 'destination_account_reconciliation' => 'Ви не можете редагувати операції погодження, рахунку призначення.', - 'sum_of_expenses_in_budget' => 'Загальна сума витрат у бюджеті ":budget"', - 'left_in_budget_limit' => 'Залишилося витратити відповідно до бюджету', - 'current_period' => 'Поточний період', - 'show_the_current_period_and_overview' => 'Показати поточний період та огляд', - 'pref_languages_locale' => 'Щоб мова, відмінна від англійської, працювала належним чином, ваша операційна система має мати правильну інформацію про мову. Якщо їх немає, дані про валюту, дати та суми можуть мати неправильний формат.', - 'budget_in_period' => 'Усі транзакції для бюджету ":name" між :start та :end у :currency', - 'chart_budget_in_period' => 'Графік всіх операцій для бюджету ":name" між :start та :end у :currency', - 'chart_budget_in_period_only_currency' => 'Сума бюджету була у :currency, тому цей графік відображатиме лише транзакції у :currency.', - 'chart_account_in_period' => 'Діаграма для всіх транзакцій по рахунку ":name" (:balance) між :start і :end', - 'chart_category_in_period' => 'Діаграма всіх операцій для категорії ":name" між :start і :end', - 'chart_category_all' => 'Діаграма всіх операцій для категорії ":name"', - 'clone_withdrawal' => 'Клонувати цю витрату', - 'clone_deposit' => 'Клонувати цей дохід', - 'clone_transfer' => 'Клонувати цей переказ', - 'multi_select_no_selection' => 'Нічого не вибрано', - 'multi_select_select_all' => 'Обрати все', - 'multi_select_n_selected' => 'обрано', - 'multi_select_all_selected' => 'Усе обрано', - 'multi_select_filter_placeholder' => 'Знайти..', - 'intro_next_label' => 'Далі', - 'intro_prev_label' => 'Попередній', - 'intro_skip_label' => 'Пропустити', - 'intro_done_label' => 'Готово', - 'between_dates_breadcrumb' => 'Між :start і :end', - 'all_journals_without_budget' => 'Всі транзакції без бюджету', - 'journals_without_budget' => 'Транзакції без бюджету', - 'all_journals_without_category' => 'Усі транзакції без категорії', - 'journals_without_category' => 'Транзакції без категорії', - 'all_journals_for_account' => 'Всі транзакції для рахунку :name', - 'chart_all_journals_for_account' => 'Діаграма всіх операцій для рахунку :name', - 'journals_in_period_for_account' => 'Всі транзакції для рахунку :name між :start і :end', - 'journals_in_period_for_account_js' => 'Всі транзакції для облікового запису {title} між {start} і {end}', - 'transferred' => 'Передано', - 'all_withdrawal' => 'Усі витрати', - 'all_transactions' => 'Всі транзакції', - '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' => 'Всі транзакції для категорії :name між :start і :end', - 'journals_in_period_for_tag' => 'Всі транзакції для тегу: :tag між :start і :end', - '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 instructions how to do this.', - 'quickswitch' => 'Швидке перемикання', - 'sign_in_to_start' => 'Увійдіть щоб розпочати сеанс', - 'sign_in' => 'Ввійти', - 'register_new_account' => 'Зареєструвати новий обліковий запис', - 'forgot_my_password' => 'Я забув пароль', - 'problems_with_input' => 'Є деякі проблеми з введеними вами даними.', - 'reset_password' => 'Відновити ваш пароль', - 'button_reset_password' => 'Відновити пароль', - 'reset_button' => 'Скинути', - 'want_to_login' => 'Я хочу увійти', - 'login_page_title' => 'Вхід у Firefly III', - 'register_page_title' => 'Реєстрація у Firefly III', - 'forgot_pw_page_title' => 'Забув пароль для Firefly III', - 'reset_pw_page_title' => 'Скинути пароль для Firefly III', - 'cannot_reset_demo_user' => 'Ви не можете скинути пароль демо-користувача.', - 'no_att_demo_user' => 'Демо-користувач не може завантажувати вкладені файли.', - 'button_register' => 'Реєєстрація', - 'authorization' => 'Авторизація', - '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' => 'Очікувані щомісячні витрати', - 'per_period_sum_3M' => 'Очікувані квартальні витрати', - 'per_period_sum_6M' => 'Очікувані піврічні витрати', - 'per_period_sum_1Y' => 'Очікувані річні витрати', - 'average_per_bill' => 'у середньому на рахунок', - 'expected_total' => 'очікується загалом', - 'reconciliation_account_name' => ':name погодження (:currency)', - 'saved' => 'Збережено', - 'advanced_options' => 'Додаткові налаштування', - 'advanced_options_explain' => 'Деякі сторінки у Firefly III мають додаткові опції, приховані за цією кнопкою. Ця сторінка не має тут нічого цікавого, але перевірте інші!', - 'here_be_dragons' => 'Тут живуть дракони', + 'close' => 'Закрити', + 'actions' => 'Дії', + 'edit' => 'Редагувати', + 'delete' => 'Видалити', + 'split' => 'Розділити', + 'single_split' => 'Розділити', + 'clone' => 'Клонувати', + 'clone_and_edit' => 'Клонувати та редагувати', + 'confirm_action' => 'Підтвердити дію', + 'last_seven_days' => 'Останні сім днів', + 'last_thirty_days' => 'Останні тридцять днів', + 'last_180_days' => 'Останні 180 днів', + 'month_to_date' => 'Місяць до дати', + 'year_to_date' => 'Рік до дати', + 'YTD' => 'З початку року', + 'welcome_back' => 'Що в гаманці?', + 'everything' => 'Все', + 'today' => 'сьогодні', + 'customRange' => 'Власний діапазон', + 'date_range' => 'Період', + 'apply' => 'Застосувати', + 'select_date' => 'Оберіть дату..', + 'cancel' => 'Скасувати', + 'from' => 'Від', + 'to' => 'До', + 'structure' => 'Структура', + 'help_translating' => 'Цей текст довідки поки що не доступний українською мовою. Ви допоможете перекласти?', + 'showEverything' => 'Показати все', + 'never' => 'Ніколи', + 'no_results_for_empty_search' => 'Ваш пошук був порожнім, тому нічого не знайдено.', + 'removed_amount' => 'Видалено :amount', + 'added_amount' => 'Додано :amount', + 'asset_account_role_help' => 'Будь-які додаткові параметри, що виникли з вашого вибору, можна додати пізніше.', + 'Opening balance' => 'Початковий баланс', + 'create_new_stuff' => 'Створити новий матеріал', + 'new_withdrawal' => 'Нове зняття коштів', + 'create_new_transaction' => 'Створити нову операцію', + 'sidebar_frontpage_create' => 'Створити', + 'new_transaction' => 'Нова операція', + 'no_rules_for_bill' => 'Цей рахунок до сплати не має правил, пов\'язаних з ним.', + 'go_to_asset_accounts' => 'Переглянути ваші активи рахунків', + 'go_to_budgets' => 'Перейти до ваших бюджетів', + 'go_to_withdrawals' => 'Перейти до зняття коштів', + 'clones_journal_x' => 'Операція є копією ":description" (#:id)', + 'go_to_categories' => 'Перейти до ваших категорій', + 'go_to_bills' => 'Відкрити рахунки до сплати', + 'go_to_expense_accounts' => 'Переглянь свої рахунки витрат', + 'go_to_revenue_accounts' => 'Перегляньте свої рахунки доходу', + 'go_to_piggies' => 'Відкрити скарбнички', + 'new_deposit' => 'Новий внесок', + 'new_transfer' => 'Новий переказ', + 'new_transfers' => 'Новий переказ', + 'new_asset_account' => 'Новий рахунок активів', + 'new_expense_account' => 'Новий рахунок витрат', + 'new_revenue_account' => 'Новий рахунок доходів', + 'new_liabilities_account' => 'Нове боргове зобов\'язання', + 'new_budget' => 'Новий бюджет', + 'new_bill' => 'Новий рахунок до сплати', + 'block_account_logout' => 'Ви вийшли з системи. Заблоковані облікові записи не можуть використовувати цей сервіс. Ви зареєструвалися з дійсною електронною адресою?', + 'flash_success' => 'Успішно!', + 'flash_info' => 'Повідомлення', + 'flash_warning' => 'Увага!', + 'flash_error' => 'Помилка!', + 'flash_danger' => 'Небезпека!', + 'flash_info_multiple' => 'Є одне повідомлення|Є :count повідомлень', + 'flash_error_multiple' => 'Є одна помилка|Є :count помилок', + 'net_worth' => 'Чисті активи', + 'help_for_this_page' => 'Довідка до сторінки', + 'help_for_this_page_body' => 'Ви можете знайти більше інформації про цю сторінку в документації.', + 'two_factor_welcome' => 'Доброго дня!', + 'two_factor_enter_code' => 'Для продовження, введіть свій код двофакторної аутентифікації. Його може згенерувати ваш додаток.', + 'two_factor_code_here' => 'Введіть код тут', + 'two_factor_title' => 'Двофакторна аутентифікація', + 'authenticate' => 'Аутентифікація', + 'two_factor_forgot_title' => 'Втрачено двофакторну автентифікацію', + 'two_factor_forgot' => 'Я забув свій двофакторний ключ.', + 'two_factor_lost_header' => 'Чи втрачено двофакторну аутентифікацію?', + 'two_factor_lost_intro' => 'Якщо ви втратили резервні копії, вам не пощастило. Через вебінтерфейс це неможливо виправити. Ви маєте виходи.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'В іншому випадку надішліть електронний лист адміністратору сервісу, :site_owner та попросіть його створити новий ключ двофакторної автентифікації.', + 'mfa_backup_code' => 'Ви використали резервний код для входу в Firefly III. Його не можна використати повторно, тому видаліть його зі свого списку.', + 'pref_two_factor_new_backup_codes' => 'Отримати нові резервні коди', + 'pref_two_factor_backup_code_count' => 'У вас є :count дійсний резервний код.|У вас :count дійсних резервних кодів.', + '2fa_i_have_them' => 'Я їх зберіг!', + 'warning_much_data' => ':days днів для завантаження даних, може знадобитися деякий час.', + 'registered' => 'Ви успішно зареєструвалися!', + 'Default asset account' => 'Рахунок активів за замовчуванням', + 'no_budget_pointer' => 'Здається, не створили жодного бюджету. Створіть один на сторінці бюджетів. Бюджети можуть допомогти вам стежити за витратами.', + 'no_bill_pointer' => 'У вас, здається, ще немає рахунків до сплати. Створіть кілька на сторінці рахунків. Рахунки можуть допомогти вам стежити за витратами.', + 'Savings account' => 'Рахунок для накопичення', + 'Credit card' => 'Кредитна картка', + 'source_accounts' => 'Джерело рахунку|Джерела рахунків', + 'destination_accounts' => 'Рахунок-одержувач|Рахунки-одержувачі', + 'user_id_is' => 'Ідентифікатор користувача :user', + 'field_supports_markdown' => 'Це поле підтримує Уцінку.', + 'need_more_help' => 'Якщо вам потрібна додаткова допомога щодо Firefly III, створіть звернення на Github.', + 'reenable_intro_text' => 'Ви можете повторно увімкнути вступне керівництво.', + 'intro_boxes_after_refresh' => 'Вступне керівництво з\'явиться знову після оновлення сторінки.', + 'show_all_no_filter' => 'Показати всі операції без групування за датою.', + 'expenses_by_category' => 'Витрати за категоріями', + 'expenses_by_budget' => 'Витрати за бюджетом', + 'income_by_category' => 'Дохід за категоріями', + 'expenses_by_asset_account' => 'Витрати з основного рахунку', + 'expenses_by_expense_account' => 'Витрати з рахунку витрат', + 'cannot_redirect_to_account' => 'Firefly III не може перенаправити вас на правильну сторінку. Вибачте.', + 'sum_of_expenses' => 'Сума витрат', + 'sum_of_income' => 'Сума доходу', + 'liabilities' => 'Зобов\'язання', + 'spent_in_specific_budget' => 'Витрати в бюджеті ":budget"', + 'spent_in_specific_double' => 'Витрати з рахунку ":account"', + 'earned_in_specific_double' => 'Зароблено у рахунок ":account"', + 'source_account' => 'Вихідний рахунок', + 'source_account_reconciliation' => 'Ви не можете редагувати операції звірки, рахунка джерела.', + 'destination_account' => 'Рахунок призначення', + 'destination_account_reconciliation' => 'Ви не можете редагувати операції погодження, рахунку призначення.', + 'sum_of_expenses_in_budget' => 'Загальна сума витрат у бюджеті ":budget"', + 'left_in_budget_limit' => 'Залишилося витратити відповідно до бюджету', + 'current_period' => 'Поточний період', + 'show_the_current_period_and_overview' => 'Показати поточний період та огляд', + 'pref_languages_locale' => 'Щоб мова, відмінна від англійської, працювала належним чином, ваша операційна система має мати правильну інформацію про мову. Якщо їх немає, дані про валюту, дати та суми можуть мати неправильний формат.', + 'budget_in_period' => 'Усі транзакції для бюджету ":name" між :start та :end у :currency', + 'chart_budget_in_period' => 'Графік всіх операцій для бюджету ":name" між :start та :end у :currency', + 'chart_budget_in_period_only_currency' => 'Сума бюджету була у :currency, тому цей графік відображатиме лише транзакції у :currency.', + 'chart_account_in_period' => 'Діаграма для всіх транзакцій по рахунку ":name" (:balance) між :start і :end', + 'chart_category_in_period' => 'Діаграма всіх операцій для категорії ":name" між :start і :end', + 'chart_category_all' => 'Діаграма всіх операцій для категорії ":name"', + 'clone_withdrawal' => 'Клонувати цю витрату', + 'clone_deposit' => 'Клонувати цей дохід', + 'clone_transfer' => 'Клонувати цей переказ', + 'multi_select_no_selection' => 'Нічого не вибрано', + 'multi_select_select_all' => 'Обрати все', + 'multi_select_n_selected' => 'обрано', + 'multi_select_all_selected' => 'Усе обрано', + 'multi_select_filter_placeholder' => 'Знайти..', + 'intro_next_label' => 'Далі', + 'intro_prev_label' => 'Попередній', + 'intro_skip_label' => 'Пропустити', + 'intro_done_label' => 'Готово', + 'between_dates_breadcrumb' => 'Між :start і :end', + 'all_journals_without_budget' => 'Всі транзакції без бюджету', + 'journals_without_budget' => 'Транзакції без бюджету', + 'all_journals_without_category' => 'Усі транзакції без категорії', + 'journals_without_category' => 'Транзакції без категорії', + 'all_journals_for_account' => 'Всі транзакції для рахунку :name', + 'chart_all_journals_for_account' => 'Діаграма всіх операцій для рахунку :name', + 'journals_in_period_for_account' => 'Всі транзакції для рахунку :name між :start і :end', + 'journals_in_period_for_account_js' => 'Всі транзакції для облікового запису {title} між {start} і {end}', + 'transferred' => 'Передано', + 'all_withdrawal' => 'Усі витрати', + 'all_transactions' => 'Всі транзакції', + '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' => 'Всі транзакції для категорії :name між :start і :end', + 'journals_in_period_for_tag' => 'Всі транзакції для тегу: :tag між :start і :end', + '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 instructions how to do this.', + 'quickswitch' => 'Швидке перемикання', + 'sign_in_to_start' => 'Увійдіть щоб розпочати сеанс', + 'sign_in' => 'Ввійти', + 'register_new_account' => 'Зареєструвати новий обліковий запис', + 'forgot_my_password' => 'Я забув пароль', + 'problems_with_input' => 'Є деякі проблеми з введеними вами даними.', + 'reset_password' => 'Відновити ваш пароль', + 'button_reset_password' => 'Відновити пароль', + 'reset_button' => 'Скинути', + 'want_to_login' => 'Я хочу увійти', + 'login_page_title' => 'Вхід у Firefly III', + 'register_page_title' => 'Реєстрація у Firefly III', + 'forgot_pw_page_title' => 'Забув пароль для Firefly III', + 'reset_pw_page_title' => 'Скинути пароль для Firefly III', + 'cannot_reset_demo_user' => 'Ви не можете скинути пароль демо-користувача.', + 'no_att_demo_user' => 'Демо-користувач не може завантажувати вкладені файли.', + 'button_register' => 'Реєєстрація', + 'authorization' => 'Авторизація', + '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' => 'Очікувані щомісячні витрати', + 'per_period_sum_3M' => 'Очікувані квартальні витрати', + 'per_period_sum_6M' => 'Очікувані піврічні витрати', + 'per_period_sum_1Y' => 'Очікувані річні витрати', + 'average_per_bill' => 'у середньому на рахунок', + 'expected_total' => 'очікується загалом', + 'reconciliation_account_name' => ':name погодження (:currency)', + 'saved' => 'Збережено', + 'advanced_options' => 'Додаткові налаштування', + 'advanced_options_explain' => 'Деякі сторінки у Firefly III мають додаткові опції, приховані за цією кнопкою. Ця сторінка не має тут нічого цікавого, але перевірте інші!', + 'here_be_dragons' => 'Тут живуть дракони', // Webhooks - 'webhooks' => 'Веб-гаки', - 'webhooks_breadcrumb' => 'Веб-хуки', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => 'Повідомлення відсутні', - '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' => 'Дослідити', - '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' => 'Видалено веб-хук', - 'edit_webhook' => 'Редагувати веб-хук ":title"', - 'updated_webhook' => 'Оновлено веб-хук ":title"', - 'edit_webhook_js' => 'Редагувати веб-хук "{title}"', - 'show_webhook' => 'Веб-хук ":title"', - 'webhook_was_triggered' => 'Вебхук був запущений в зазначеній транзакції. Будь ласка, зачекайте на отримання результатів.', - 'webhook_messages' => 'Повідомлення веб-хука', - 'view_message' => 'Переглянути повідомлення', - 'view_attempts' => 'Переглянути невдалі спроби', - 'message_content_title' => 'Вміст веб-хук повідомлення', - 'message_content_help' => 'Це вміст повідомлення, яке було надіслано (або зроблено спробу) за допомогою цього вебхука.', - 'attempt_content_title' => 'Спроби веб-хуку', - 'attempt_content_help' => 'Це всі невдалі спроби цього повідомлення вебхуку надіслати налаштовану URL-адресу. Через деякий час Firefly III припинить спроби.', - 'no_attempts' => 'Безуспішних спроб нема. Це добре!', - 'webhook_attempt_at' => 'Спроба {moment}', - 'logs' => 'Журнали', - 'response' => 'Відповідь', - 'visit_webhook_url' => 'Відвідайте URL-адресу веб-хуку', - 'reset_webhook_secret' => 'Відновити сікрет веб-хука', - 'webhook_stored_link' => 'Вебхук #{ID} ("{title}") був збережений.', - 'webhook_updated_link' => 'Вебхук #{ID} ("{title}") був оновлений.', + 'webhooks' => 'Веб-гаки', + 'webhooks_breadcrumb' => 'Веб-хуки', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => 'Повідомлення відсутні', + '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' => 'Дослідити', + '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' => 'Видалено веб-хук', + 'edit_webhook' => 'Редагувати веб-хук ":title"', + 'updated_webhook' => 'Оновлено веб-хук ":title"', + 'edit_webhook_js' => 'Редагувати веб-хук "{title}"', + 'show_webhook' => 'Веб-хук ":title"', + 'webhook_was_triggered' => 'Вебхук був запущений в зазначеній транзакції. Будь ласка, зачекайте на отримання результатів.', + 'webhook_messages' => 'Повідомлення веб-хука', + 'view_message' => 'Переглянути повідомлення', + 'view_attempts' => 'Переглянути невдалі спроби', + 'message_content_title' => 'Вміст веб-хук повідомлення', + 'message_content_help' => 'Це вміст повідомлення, яке було надіслано (або зроблено спробу) за допомогою цього вебхука.', + 'attempt_content_title' => 'Спроби веб-хуку', + 'attempt_content_help' => 'Це всі невдалі спроби цього повідомлення вебхуку надіслати налаштовану URL-адресу. Через деякий час Firefly III припинить спроби.', + 'no_attempts' => 'Безуспішних спроб нема. Це добре!', + 'webhook_attempt_at' => 'Спроба {moment}', + 'logs' => 'Журнали', + 'response' => 'Відповідь', + 'visit_webhook_url' => 'Відвідайте URL-адресу веб-хуку', + 'reset_webhook_secret' => 'Відновити сікрет веб-хука', + 'webhook_stored_link' => 'Вебхук #{ID} ("{title}") був збережений.', + 'webhook_updated_link' => 'Вебхук #{ID} ("{title}") був оновлений.', // API access - 'authorization_request' => 'Firefly III v:version запит авторизації', - 'authorization_request_intro' => 'Додаток ":client" вимагає дозволу на доступ до фінансового управління. Бажаєте авторизувати :client для доступу до цих записів?', - 'authorization_request_site' => 'Ви будете перенаправлені на :url, куди згодом надасться доступ до даних Firefly III.', - 'authorization_request_invalid' => 'Цей запит доступу є недійсним. Будь ласка, ніколи не переходіть за цим посиланням знову.', - 'scopes_will_be_able' => 'Цей додаток матиме змогу:', - 'button_authorize' => 'Авторизувати', - 'none_in_select_list' => '(немає)', - 'no_piggy_bank' => '(немає скарбнички)', - 'name_in_currency' => ':name в :currency', - 'paid_in_currency' => 'Сплачено в :currency', - 'unpaid_in_currency' => 'Неоплачено в :currency', - 'is_alpha_warning' => 'Ви використовуєте ALPHA - версію. Можуть зустрічатись баги та недопрацювання.', - 'is_beta_warning' => 'Ви використовуєте BETA - версію. Можуть зустрічатись баги та недопрацювання.', - 'all_destination_accounts' => 'Рахунки-одержувачі', - 'all_source_accounts' => 'Вихідні рахунки', - 'back_to_index' => 'Назад до змісту', - 'cant_logout_guard' => 'Firefly III не може вийти з вашого облікового запису.', - 'internal_reference' => 'Внутрішнє посилання', + 'authorization_request' => 'Firefly III v:version запит авторизації', + 'authorization_request_intro' => 'Додаток ":client" вимагає дозволу на доступ до фінансового управління. Бажаєте авторизувати :client для доступу до цих записів?', + 'authorization_request_site' => 'Ви будете перенаправлені на :url, куди згодом надасться доступ до даних Firefly III.', + 'authorization_request_invalid' => 'Цей запит доступу є недійсним. Будь ласка, ніколи не переходіть за цим посиланням знову.', + 'scopes_will_be_able' => 'Цей додаток матиме змогу:', + 'button_authorize' => 'Авторизувати', + 'none_in_select_list' => '(немає)', + 'no_piggy_bank' => '(немає скарбнички)', + 'name_in_currency' => ':name в :currency', + 'paid_in_currency' => 'Сплачено в :currency', + 'unpaid_in_currency' => 'Неоплачено в :currency', + 'is_alpha_warning' => 'Ви використовуєте ALPHA - версію. Можуть зустрічатись баги та недопрацювання.', + 'is_beta_warning' => 'Ви використовуєте BETA - версію. Можуть зустрічатись баги та недопрацювання.', + 'all_destination_accounts' => 'Рахунки-одержувачі', + 'all_source_accounts' => 'Вихідні рахунки', + 'back_to_index' => 'Назад до змісту', + 'cant_logout_guard' => 'Firefly III не може вийти з вашого облікового запису.', + 'internal_reference' => 'Внутрішнє посилання', // check for updates: - 'update_check_title' => 'Перевірити оновлення', - 'admin_update_check_title' => 'Автоматично перевіряти оновлення', - 'admin_update_check_explain' => 'Firefly III може автоматично перевіряти наявність оновлень. Коли ви вмикаєте цей параметр, програма зв\'яжеться з сервером, щоб перевірити наявність нової версії Firefly III. Коли це станеться, ви отримаєте сповіщення. Також Ви можете перевірити наявність оновлення за допомогою кнопки справа. Будь ласка, зазначте нижче, чи хочете Ви щоб Firefly III перевіряв наявність оновлень.', - 'check_for_updates_permission' => 'Firefly III може перевіряти наявність оновлень, але для цього потрібен Ваш дозвіл. Будь ласка, перейдіть у розділ управління, щоб увімкнути цю можливість.', - 'updates_ask_me_later' => 'Запитати пізніше', - 'updates_do_not_check' => 'Не перевіряти наявність оновлень', - 'updates_enable_check' => 'Увімкнути перевірку оновлень', - 'admin_update_check_now_title' => 'Перевірити наявність оновлень', - 'admin_update_check_now_explain' => 'Якщо ви натиснете кнопку, Firefly III перевірить, чи ваша поточна версія остання.', - 'check_for_updates_button' => 'Перевірити зараз!', - 'update_new_version_alert' => 'Доступна нова версія Firefly III. Ви працюєте з :your_version, остання версія :new_version яка була випущена на :date.', - 'update_version_beta' => 'Це бета-версія. Ви можете зіткнутися з проблемами.', - 'update_version_alpha' => 'Це альфа-версія. Може містити баги та недоліки.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Ви працюєте в найновішій версії :version.', - 'update_newer_version_alert' => 'Ви працюєте з :your_version версією, яка є новішою за останній реліз, :new_version.', - 'update_check_error' => 'Сталася помилка під час перевірки наявності оновлень: :error', - 'unknown_error' => 'Невідома помилка. Вибачте.', - 'disabled_but_check' => 'Ви відключили перевірку оновлення. Тому не забудьте перевіряти наявність оновлень особисто час від часу. Дякуємо!', - 'admin_update_channel_title' => 'Канал оновлень', - 'admin_update_channel_explain' => 'Firefly III має три "канали" оновлення, які визначають як швидко ви можете отримати нові функції. Використовуйте канал "бета", якщо ви любителі пригоди та "альфа", коли вам подобається ризикувати.', - 'update_channel_stable' => 'Стабільний. Все працює, як і очікувалося.', - 'update_channel_beta' => 'Бета. Нові функції, але дані можуть бути зіпсовані.', - 'update_channel_alpha' => 'Альфа. Ми додаємо нові функції, але вони працюють на милицях.', + 'update_check_title' => 'Перевірити оновлення', + 'admin_update_check_title' => 'Автоматично перевіряти оновлення', + 'admin_update_check_explain' => 'Firefly III може автоматично перевіряти наявність оновлень. Коли ви вмикаєте цей параметр, програма зв\'яжеться з сервером, щоб перевірити наявність нової версії Firefly III. Коли це станеться, ви отримаєте сповіщення. Також Ви можете перевірити наявність оновлення за допомогою кнопки справа. Будь ласка, зазначте нижче, чи хочете Ви щоб Firefly III перевіряв наявність оновлень.', + 'check_for_updates_permission' => 'Firefly III може перевіряти наявність оновлень, але для цього потрібен Ваш дозвіл. Будь ласка, перейдіть у розділ управління, щоб увімкнути цю можливість.', + 'updates_ask_me_later' => 'Запитати пізніше', + 'updates_do_not_check' => 'Не перевіряти наявність оновлень', + 'updates_enable_check' => 'Увімкнути перевірку оновлень', + 'admin_update_check_now_title' => 'Перевірити наявність оновлень', + 'admin_update_check_now_explain' => 'Якщо ви натиснете кнопку, Firefly III перевірить, чи ваша поточна версія остання.', + 'check_for_updates_button' => 'Перевірити зараз!', + 'update_new_version_alert' => 'Доступна нова версія Firefly III. Ви працюєте з :your_version, остання версія :new_version яка була випущена на :date.', + 'update_version_beta' => 'Це бета-версія. Ви можете зіткнутися з проблемами.', + 'update_version_alpha' => 'Це альфа-версія. Може містити баги та недоліки.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Ви працюєте в найновішій версії :version.', + 'update_newer_version_alert' => 'Ви працюєте з :your_version версією, яка є новішою за останній реліз, :new_version.', + 'update_check_error' => 'Сталася помилка під час перевірки наявності оновлень: :error', + 'unknown_error' => 'Невідома помилка. Вибачте.', + 'disabled_but_check' => 'Ви відключили перевірку оновлення. Тому не забудьте перевіряти наявність оновлень особисто час від часу. Дякуємо!', + 'admin_update_channel_title' => 'Канал оновлень', + 'admin_update_channel_explain' => 'Firefly III має три "канали" оновлення, які визначають як швидко ви можете отримати нові функції. Використовуйте канал "бета", якщо ви любителі пригоди та "альфа", коли вам подобається ризикувати.', + 'update_channel_stable' => 'Стабільний. Все працює, як і очікувалося.', + 'update_channel_beta' => 'Бета. Нові функції, але дані можуть бути зіпсовані.', + 'update_channel_alpha' => 'Альфа. Ми додаємо нові функції, але вони працюють на милицях.', // search - 'search' => 'Пошук', - 'search_query' => 'Запит', - 'search_found_transactions' => 'Firefly III знайшов :count транзакцію за :time секунд.|Firefly III знайшов :count транзакцій за :time секунд.', - 'search_found_more_transactions' => 'Firefly III знайшов більше, ніж :count транзакцій за :time секунд.', - 'search_for_query' => 'Firefly III шукає транзакції з усіма цими словами в них: :query', - 'invalid_operators_list' => 'Ці параметри пошуку є недійсними і були проігноровані.', + 'search' => 'Пошук', + 'search_query' => 'Запит', + 'search_found_transactions' => 'Firefly III знайшов :count транзакцію за :time секунд.|Firefly III знайшов :count транзакцій за :time секунд.', + 'search_found_more_transactions' => 'Firefly III знайшов більше, ніж :count транзакцій за :time секунд.', + 'search_for_query' => 'Firefly III шукає транзакції з усіма цими словами в них: :query', + 'invalid_operators_list' => 'Ці параметри пошуку є недійсними і були проігноровані.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Дата операції ":value"', - 'search_modifier_not_date_on' => 'Дата операції не ":value"', - 'search_modifier_reconciled' => 'Операція узгоджена', - 'search_modifier_not_reconciled' => 'Операція не узгоджена', - 'search_modifier_id' => 'Ідентифікатор транзакції: ":value"', - 'search_modifier_not_id' => 'Ідентифікатор операції не ":value"', - 'search_modifier_date_before' => 'Дата транзакції перед або ":value"', - 'search_modifier_date_after' => 'Дата транзакції після або о ":value"', - 'search_modifier_external_id_is' => 'Зовнішній ID - ":value"', - 'search_modifier_not_external_id_is' => 'Зовнішній ідентифікатор не ":value"', - 'search_modifier_no_external_url' => 'Операція не має зовнішнього URL', - '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' => 'Операція повинна мати (якийсь) зовнішній 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' => 'Опис не містить ":value"', - 'search_modifier_description_is' => 'Опис повністю відповідає ":value"', - 'search_modifier_not_description_is' => 'Опис точно не ":value"', - 'search_modifier_currency_is' => 'Валюта (іноземна) транзакції - ":value"', - 'search_modifier_not_currency_is' => 'Валюта (іноземна) операції не ":value"', - 'search_modifier_foreign_currency_is' => 'Валюта іноземна транзакції - ":value"', - 'search_modifier_not_foreign_currency_is' => 'Іноземна валюта операції не ":value"', - 'search_modifier_has_attachments' => 'Транзакція має містити вкладення', - 'search_modifier_has_no_category' => 'Транзакція повинна бути без категорії', - 'search_modifier_not_has_no_category' => 'Операція повинна мати (будь-яку) категорію', - 'search_modifier_not_has_any_category' => 'Операція має містити жодної категорії', - 'search_modifier_has_any_category' => 'Транзакція повинна мати (будь яку) категорію', - 'search_modifier_has_no_budget' => 'Транзакція не повинна мати бюджет', - 'search_modifier_not_has_any_budget' => 'Операція не повинна мати бюджету', - 'search_modifier_has_any_budget' => 'Транзакція повинна мати (будь який) бюджет', - 'search_modifier_not_has_no_budget' => 'Операція повинна мати (будь-який) бюджет', - 'search_modifier_has_no_bill' => 'Транзакція не повинна мати виплатів', - 'search_modifier_not_has_no_bill' => 'Операція повинна мати (будь-який) рахунок до сплати', - 'search_modifier_has_any_bill' => 'Транзакція повинна мати (будь яку) виплату', - 'search_modifier_not_has_any_bill' => 'Операція не повинна мати рахунку до сплати', - 'search_modifier_has_no_tag' => 'Транзакція не повинна мати міток', - 'search_modifier_not_has_any_tag' => 'Операція не повинна мати мітки', - 'search_modifier_not_has_no_tag' => 'Операція повинна мати (будь-яку) мітку', - 'search_modifier_has_any_tag' => 'Транзакція повинна мати (будь яку) мітку', - 'search_modifier_notes_contains' => 'Примітки для операції містять ":value"', - 'search_modifier_not_notes_contains' => 'Примітки до операції не містять ":value"', - 'search_modifier_notes_starts' => 'Примітки для операції починаються з ":value"', - 'search_modifier_not_notes_starts' => 'Примітки до операції не починаються з ":value"', - 'search_modifier_notes_ends' => 'Примітки для операції закінчуються на ":value"', - 'search_modifier_not_notes_ends' => 'Примітки до операції не закінчуються на ":value"', - 'search_modifier_notes_is' => 'Примітки для операції відповідають ":value"', - 'search_modifier_not_notes_is' => 'Примітки до операції не ":value"', - 'search_modifier_no_notes' => 'Транзакція не містить приміток', - 'search_modifier_not_no_notes' => 'Операція повинна мати примітки', - 'search_modifier_any_notes' => 'Транзакція має містити примітки', - 'search_modifier_not_any_notes' => 'Транзакція не має приміток', - 'search_modifier_amount_is' => 'Сума дорівнює :value', - 'search_modifier_not_amount_is' => 'Сума не дорівнює :value', - 'search_modifier_amount_less' => 'Сума менша або дорівнює :value', - 'search_modifier_not_amount_more' => 'Сума менша або дорівнює :value', - 'search_modifier_amount_more' => 'Сума більше або дорівнює :value', - 'search_modifier_not_amount_less' => 'Сума більше або дорівнює :value', - 'search_modifier_source_account_is' => 'Імя вихідного рахунку співпадає з ":value"', - 'search_modifier_not_source_account_is' => 'Назва рахунку не ":value"', - 'search_modifier_source_account_contains' => 'Імя вихідного рахунку містить ":value"', - 'search_modifier_not_source_account_contains' => 'Назва рахунку не містить ":value"', - 'search_modifier_source_account_starts' => 'Імя вихідного рахунку починається з ":value"', - 'search_modifier_not_source_account_starts' => 'Назва рахунку не починається з ":value"', - 'search_modifier_source_account_ends' => 'Імя вихідного рахунку закінчується на ":value"', - 'search_modifier_not_source_account_ends' => 'Назва рахунку не закінчується на ":value"', - 'search_modifier_source_account_id' => 'ID вихідного рахунку дорівнює :value', - 'search_modifier_not_source_account_id' => 'Ідентифікатор рахунку не :value', - 'search_modifier_source_account_nr_is' => 'Номер вихідного рахунку (IBAN) дорівнює ":value"', - 'search_modifier_not_source_account_nr_is' => 'Номер рахунку (IBAN) не ":value"', - 'search_modifier_source_account_nr_contains' => 'Номер вихідного рахунку (IBAN) містить ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Номер рахунку (IBAN) не містить ":value"', - 'search_modifier_source_account_nr_starts' => 'Номер вихідного рахунку (IBAN) починається з ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Номер рахунку (IBAN) не починається з ":value"', - 'search_modifier_source_account_nr_ends' => 'Номер рахунку (IBAN) закінчується на ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Номер рахунку (IBAN) не закінчується на ":value"', - 'search_modifier_destination_account_is' => 'Ім\'я рахуноку-одержувача співпадає з ":value"', - 'search_modifier_not_destination_account_is' => 'Назва цільового рахунку не ":value"', - 'search_modifier_destination_account_contains' => 'Ім\'я рахуноку-одержувача містить ":value"', - 'search_modifier_not_destination_account_contains' => 'Назва цільового рахунку не містить ":value"', - 'search_modifier_destination_account_starts' => 'Ім\'я рахуноку-одержувача починається з ":value"', - 'search_modifier_not_destination_account_starts' => 'Назва цільового рахунку не починається з ":value"', - 'search_modifier_destination_account_ends' => 'Назва цільового рахунку закінчується на ":value"', - 'search_modifier_not_destination_account_ends' => 'Назва цільового рахунку не закінчується на ":value"', - 'search_modifier_destination_account_id' => 'Ідентифікатор рахуноку-одержувача дорівнює ":value"', - 'search_modifier_not_destination_account_id' => 'Ідентифікатор цільового рахунку не :value', - 'search_modifier_destination_is_cash' => 'Рахунок призначення – "(cash)" рахунок', - 'search_modifier_not_destination_is_cash' => 'Рахунок призначення – не "(cash)" рахунок', - 'search_modifier_source_is_cash' => "Джерело рахунка - \"(cash)\" \u{200b}\u{200b}рахунок", - 'search_modifier_not_source_is_cash' => "Джерелом рахунка - не \"(cash)\" \u{200b}\u{200b}рахунок", - 'search_modifier_destination_account_nr_is' => 'Номер рахунку-одержувача (IBAN) дорівнює ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Номер цільового рахунку (IBAN) - ":value"', - 'search_modifier_destination_account_nr_contains' => 'Номер рахунку-одержувача (IBAN) містить ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Номер цільового рахунку (IBAN) не містить ":value"', - 'search_modifier_destination_account_nr_starts' => 'Номер рахунку-одержувача (IBAN) починається з ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Номер цільового рахунку (IBAN) не починається з ":value"', - 'search_modifier_destination_account_nr_ends' => 'Номер рахунку-одержувача (IBAN) закінчується на ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Номер цільового рахунку (IBAN) не закінчується на ":value"', - 'search_modifier_account_id' => 'Ідентифікатор вихідного рахунку або рахуноку-одержувача дорівнює/дорівнюють: :value', - 'search_modifier_not_account_id' => 'Ідентифікатори джерел або цільових рахунків не: :value', - 'search_modifier_category_is' => 'Категорія дорівнює ":value"', - 'search_modifier_not_category_is' => 'Категорія не ":value"', - 'search_modifier_budget_is' => 'Бюджет дорівнює ":value"', - 'search_modifier_not_budget_is' => 'Бюджет - це не ":value"', - 'search_modifier_bill_is' => 'Квитанція дорівнює ":value"', - 'search_modifier_not_bill_is' => 'Рахунок до сплати не ":value"', - 'search_modifier_transaction_type' => 'Тип транзакції дорівнює ":value"', - 'search_modifier_not_transaction_type' => 'Тип операції не ":value"', - 'search_modifier_tag_is' => 'Мітка дорівнює ":value"', - 'search_modifier_tag_contains' => 'Мітка містить ":value"', - 'search_modifier_not_tag_contains' => 'Мітка не містить ":value"', - 'search_modifier_tag_ends' => 'Мітка закінчується на ":value"', - 'search_modifier_tag_starts' => 'Мітка починається з ":value"', - 'search_modifier_not_tag_is' => 'Жодної мітки зі значенням ":value"', - 'search_modifier_date_on_year' => 'Рік операції ":value"', - 'search_modifier_not_date_on_year' => 'Операція не в ":value" році', - 'search_modifier_date_on_month' => 'Місяць операції ":value"', - 'search_modifier_not_date_on_month' => 'Операція не в ":value" місяці', - 'search_modifier_date_on_day' => 'День операції ":value"', - 'search_modifier_not_date_on_day' => 'Операція не в ":value" дні місяця', - 'search_modifier_date_before_year' => 'Дата операції до чи в році ":value"', - 'search_modifier_date_before_month' => 'Дата операції до чи в місяці ":value"', - 'search_modifier_date_before_day' => 'Дата операції до чи в день ":value"', - 'search_modifier_date_after_year' => 'Дата операції до чи після року ":value"', - 'search_modifier_date_after_month' => 'Дата операції до чи після місяця ":value"', - 'search_modifier_date_after_day' => 'Дата операції до чи після дня ":value"', + 'search_modifier_date_on' => 'Дата операції ":value"', + 'search_modifier_not_date_on' => 'Дата операції не ":value"', + 'search_modifier_reconciled' => 'Операція узгоджена', + 'search_modifier_not_reconciled' => 'Операція не узгоджена', + 'search_modifier_id' => 'Ідентифікатор транзакції: ":value"', + 'search_modifier_not_id' => 'Ідентифікатор операції не ":value"', + 'search_modifier_date_before' => 'Дата транзакції перед або ":value"', + 'search_modifier_date_after' => 'Дата транзакції після або о ":value"', + 'search_modifier_external_id_is' => 'Зовнішній ID - ":value"', + 'search_modifier_not_external_id_is' => 'Зовнішній ідентифікатор не ":value"', + 'search_modifier_no_external_url' => 'Операція не має зовнішнього URL', + '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' => 'Операція повинна мати (якийсь) зовнішній 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' => 'Опис не містить ":value"', + 'search_modifier_description_is' => 'Опис повністю відповідає ":value"', + 'search_modifier_not_description_is' => 'Опис точно не ":value"', + 'search_modifier_currency_is' => 'Валюта (іноземна) транзакції - ":value"', + 'search_modifier_not_currency_is' => 'Валюта (іноземна) операції не ":value"', + 'search_modifier_foreign_currency_is' => 'Валюта іноземна транзакції - ":value"', + 'search_modifier_not_foreign_currency_is' => 'Іноземна валюта операції не ":value"', + 'search_modifier_has_attachments' => 'Транзакція має містити вкладення', + 'search_modifier_has_no_category' => 'Транзакція повинна бути без категорії', + 'search_modifier_not_has_no_category' => 'Операція повинна мати (будь-яку) категорію', + 'search_modifier_not_has_any_category' => 'Операція має містити жодної категорії', + 'search_modifier_has_any_category' => 'Транзакція повинна мати (будь яку) категорію', + 'search_modifier_has_no_budget' => 'Транзакція не повинна мати бюджет', + 'search_modifier_not_has_any_budget' => 'Операція не повинна мати бюджету', + 'search_modifier_has_any_budget' => 'Транзакція повинна мати (будь який) бюджет', + 'search_modifier_not_has_no_budget' => 'Операція повинна мати (будь-який) бюджет', + 'search_modifier_has_no_bill' => 'Транзакція не повинна мати виплатів', + 'search_modifier_not_has_no_bill' => 'Операція повинна мати (будь-який) рахунок до сплати', + 'search_modifier_has_any_bill' => 'Транзакція повинна мати (будь яку) виплату', + 'search_modifier_not_has_any_bill' => 'Операція не повинна мати рахунку до сплати', + 'search_modifier_has_no_tag' => 'Транзакція не повинна мати міток', + 'search_modifier_not_has_any_tag' => 'Операція не повинна мати мітки', + 'search_modifier_not_has_no_tag' => 'Операція повинна мати (будь-яку) мітку', + 'search_modifier_has_any_tag' => 'Транзакція повинна мати (будь яку) мітку', + 'search_modifier_notes_contains' => 'Примітки для операції містять ":value"', + 'search_modifier_not_notes_contains' => 'Примітки до операції не містять ":value"', + 'search_modifier_notes_starts' => 'Примітки для операції починаються з ":value"', + 'search_modifier_not_notes_starts' => 'Примітки до операції не починаються з ":value"', + 'search_modifier_notes_ends' => 'Примітки для операції закінчуються на ":value"', + 'search_modifier_not_notes_ends' => 'Примітки до операції не закінчуються на ":value"', + 'search_modifier_notes_is' => 'Примітки для операції відповідають ":value"', + 'search_modifier_not_notes_is' => 'Примітки до операції не ":value"', + 'search_modifier_no_notes' => 'Транзакція не містить приміток', + 'search_modifier_not_no_notes' => 'Операція повинна мати примітки', + 'search_modifier_any_notes' => 'Транзакція має містити примітки', + 'search_modifier_not_any_notes' => 'Транзакція не має приміток', + 'search_modifier_amount_is' => 'Сума дорівнює :value', + 'search_modifier_not_amount_is' => 'Сума не дорівнює :value', + 'search_modifier_amount_less' => 'Сума менша або дорівнює :value', + 'search_modifier_not_amount_more' => 'Сума менша або дорівнює :value', + 'search_modifier_amount_more' => 'Сума більше або дорівнює :value', + 'search_modifier_not_amount_less' => 'Сума більше або дорівнює :value', + 'search_modifier_source_account_is' => 'Імя вихідного рахунку співпадає з ":value"', + 'search_modifier_not_source_account_is' => 'Назва рахунку не ":value"', + 'search_modifier_source_account_contains' => 'Імя вихідного рахунку містить ":value"', + 'search_modifier_not_source_account_contains' => 'Назва рахунку не містить ":value"', + 'search_modifier_source_account_starts' => 'Імя вихідного рахунку починається з ":value"', + 'search_modifier_not_source_account_starts' => 'Назва рахунку не починається з ":value"', + 'search_modifier_source_account_ends' => 'Імя вихідного рахунку закінчується на ":value"', + 'search_modifier_not_source_account_ends' => 'Назва рахунку не закінчується на ":value"', + 'search_modifier_source_account_id' => 'ID вихідного рахунку дорівнює :value', + 'search_modifier_not_source_account_id' => 'Ідентифікатор рахунку не :value', + 'search_modifier_source_account_nr_is' => 'Номер вихідного рахунку (IBAN) дорівнює ":value"', + 'search_modifier_not_source_account_nr_is' => 'Номер рахунку (IBAN) не ":value"', + 'search_modifier_source_account_nr_contains' => 'Номер вихідного рахунку (IBAN) містить ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Номер рахунку (IBAN) не містить ":value"', + 'search_modifier_source_account_nr_starts' => 'Номер вихідного рахунку (IBAN) починається з ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Номер рахунку (IBAN) не починається з ":value"', + 'search_modifier_source_account_nr_ends' => 'Номер рахунку (IBAN) закінчується на ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Номер рахунку (IBAN) не закінчується на ":value"', + 'search_modifier_destination_account_is' => 'Ім\'я рахуноку-одержувача співпадає з ":value"', + 'search_modifier_not_destination_account_is' => 'Назва цільового рахунку не ":value"', + 'search_modifier_destination_account_contains' => 'Ім\'я рахуноку-одержувача містить ":value"', + 'search_modifier_not_destination_account_contains' => 'Назва цільового рахунку не містить ":value"', + 'search_modifier_destination_account_starts' => 'Ім\'я рахуноку-одержувача починається з ":value"', + 'search_modifier_not_destination_account_starts' => 'Назва цільового рахунку не починається з ":value"', + 'search_modifier_destination_account_ends' => 'Назва цільового рахунку закінчується на ":value"', + 'search_modifier_not_destination_account_ends' => 'Назва цільового рахунку не закінчується на ":value"', + 'search_modifier_destination_account_id' => 'Ідентифікатор рахуноку-одержувача дорівнює ":value"', + 'search_modifier_not_destination_account_id' => 'Ідентифікатор цільового рахунку не :value', + 'search_modifier_destination_is_cash' => 'Рахунок призначення – "(cash)" рахунок', + 'search_modifier_not_destination_is_cash' => 'Рахунок призначення – не "(cash)" рахунок', + 'search_modifier_source_is_cash' => "Джерело рахунка - \"(cash)\" \u{200b}\u{200b}рахунок", + 'search_modifier_not_source_is_cash' => "Джерелом рахунка - не \"(cash)\" \u{200b}\u{200b}рахунок", + 'search_modifier_destination_account_nr_is' => 'Номер рахунку-одержувача (IBAN) дорівнює ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Номер цільового рахунку (IBAN) - ":value"', + 'search_modifier_destination_account_nr_contains' => 'Номер рахунку-одержувача (IBAN) містить ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Номер цільового рахунку (IBAN) не містить ":value"', + 'search_modifier_destination_account_nr_starts' => 'Номер рахунку-одержувача (IBAN) починається з ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Номер цільового рахунку (IBAN) не починається з ":value"', + 'search_modifier_destination_account_nr_ends' => 'Номер рахунку-одержувача (IBAN) закінчується на ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Номер цільового рахунку (IBAN) не закінчується на ":value"', + 'search_modifier_account_id' => 'Ідентифікатор вихідного рахунку або рахуноку-одержувача дорівнює/дорівнюють: :value', + 'search_modifier_not_account_id' => 'Ідентифікатори джерел або цільових рахунків не: :value', + 'search_modifier_category_is' => 'Категорія дорівнює ":value"', + 'search_modifier_not_category_is' => 'Категорія не ":value"', + 'search_modifier_budget_is' => 'Бюджет дорівнює ":value"', + 'search_modifier_not_budget_is' => 'Бюджет - це не ":value"', + 'search_modifier_bill_is' => 'Квитанція дорівнює ":value"', + 'search_modifier_not_bill_is' => 'Рахунок до сплати не ":value"', + 'search_modifier_transaction_type' => 'Тип транзакції дорівнює ":value"', + 'search_modifier_not_transaction_type' => 'Тип операції не ":value"', + 'search_modifier_tag_is' => 'Мітка дорівнює ":value"', + 'search_modifier_tag_contains' => 'Мітка містить ":value"', + 'search_modifier_not_tag_contains' => 'Мітка не містить ":value"', + 'search_modifier_tag_ends' => 'Мітка закінчується на ":value"', + 'search_modifier_tag_starts' => 'Мітка починається з ":value"', + 'search_modifier_not_tag_is' => 'Жодної мітки зі значенням ":value"', + 'search_modifier_date_on_year' => 'Рік операції ":value"', + 'search_modifier_not_date_on_year' => 'Операція не в ":value" році', + 'search_modifier_date_on_month' => 'Місяць операції ":value"', + 'search_modifier_not_date_on_month' => 'Операція не в ":value" місяці', + 'search_modifier_date_on_day' => 'День операції ":value"', + 'search_modifier_not_date_on_day' => 'Операція не в ":value" дні місяця', + 'search_modifier_date_before_year' => 'Дата операції до чи в році ":value"', + 'search_modifier_date_before_month' => 'Дата операції до чи в місяці ":value"', + 'search_modifier_date_before_day' => 'Дата операції до чи в день ":value"', + 'search_modifier_date_after_year' => 'Дата операції до чи після року ":value"', + 'search_modifier_date_after_month' => 'Дата операції до чи після місяця ":value"', + 'search_modifier_date_after_day' => 'Дата операції до чи після дня ":value"', // new - 'search_modifier_tag_is_not' => 'Помітка ":value"', - 'search_modifier_not_tag_is_not' => 'Мітка ":value"', - 'search_modifier_account_is' => 'Будь-який рахунок є ":value"', - 'search_modifier_not_account_is' => 'Жодного рахунку ":value"', - 'search_modifier_account_contains' => 'Всі рахунки які містять ":value"', - 'search_modifier_not_account_contains' => 'Жодних рахунків які містять ":value"', - 'search_modifier_account_ends' => 'Всі рахунки які закінчуються на ":value"', - 'search_modifier_not_account_ends' => 'Жодних рахунків які закінчуються на ":value"', - 'search_modifier_account_starts' => 'Всі рахунки які починаються з ":value"', - 'search_modifier_not_account_starts' => 'Жодних рахунків які починаються з ":value"', - 'search_modifier_account_nr_is' => 'Усі номери рахунків або IBAN ":value"', - 'search_modifier_not_account_nr_is' => 'Жодних номерів рахунків або IBAN ":value"', - 'search_modifier_account_nr_contains' => 'Усі номери рахунків або IBAN які містять ":value"', - 'search_modifier_not_account_nr_contains' => 'Жодних номерів рахунків або IBAN які містять ":value"', - 'search_modifier_account_nr_ends' => 'Усі номери рахунків або IBAN які закінчуються на ":value"', - 'search_modifier_not_account_nr_ends' => 'Жодних номерів рахунків або IBAN які закінчуються на ":value"', - 'search_modifier_account_nr_starts' => 'Усі номери рахунків або IBAN які починаються з ":value"', - 'search_modifier_not_account_nr_starts' => 'Жодних номерів рахунків або IBAN які починаються з ":value"', - 'search_modifier_category_contains' => 'Категорія містить ":value"', - 'search_modifier_not_category_contains' => 'Категорія не містить ":value"', - 'search_modifier_category_ends' => 'Категорія закінчується на ":value"', - 'search_modifier_not_category_ends' => 'Категорія не закінчується на ":value"', - 'search_modifier_category_starts' => 'Категорія починається з ":value"', - 'search_modifier_not_category_starts' => 'Категорія не починається з ":value"', - 'search_modifier_budget_contains' => 'Бюджет містить ":value"', - 'search_modifier_not_budget_contains' => 'Бюджет не містить ":value"', - 'search_modifier_budget_ends' => 'Бюджет закінчується на ":value"', - 'search_modifier_not_budget_ends' => 'Бюджет не закінчується на ":value"', - 'search_modifier_budget_starts' => 'Бюджет починається з ":value"', - 'search_modifier_not_budget_starts' => 'Бюджет не починається з ":value"', - 'search_modifier_bill_contains' => 'Рахунок до сплати містить ":value"', - 'search_modifier_not_bill_contains' => 'Рахунок до сплати не містить ":value"', - 'search_modifier_bill_ends' => 'Рахунок до сплати закінчується на ":value"', - 'search_modifier_not_bill_ends' => 'Рахунок до сплати не закінчується на ":value"', - 'search_modifier_bill_starts' => 'Рахунок до сплати починається з ":value"', - 'search_modifier_not_bill_starts' => 'Рахунок до сплати не починається з ":value"', - 'search_modifier_external_id_contains' => 'Зовнішній ідентифікатор містить ":value"', - 'search_modifier_not_external_id_contains' => 'Зовнішній ідентифікатор не містить ":value"', - 'search_modifier_external_id_ends' => 'Зовнішній ідентифікатор закінчується на ":value"', - 'search_modifier_not_external_id_ends' => 'Зовнішній ідентифікатор не закінчується на ":value"', - 'search_modifier_external_id_starts' => 'Зовнішній ідентифікатор починається з ":value"', - 'search_modifier_not_external_id_starts' => 'Зовнішній ідентифікатор не починається з ":value"', - 'search_modifier_internal_reference_contains' => 'Внутрішнє посилання містить ":value"', - 'search_modifier_not_internal_reference_contains' => 'Внутрішнє посилання не містить ":value"', - 'search_modifier_internal_reference_ends' => 'Внутрішнє посилання закінчується на ":value"', - 'search_modifier_internal_reference_starts' => 'Внутрішнє посилання починається з ":value"', - 'search_modifier_not_internal_reference_ends' => 'Внутрішнє посилання не закінчується на ":value"', - 'search_modifier_not_internal_reference_starts' => 'Внутрішнє посилання не починається з ":value"', - 'search_modifier_external_url_is' => 'Зовнішня URL-адреса ":value"', - 'search_modifier_not_external_url_is' => 'Зовнішня URL-адреса не є ":value"', - 'search_modifier_external_url_contains' => 'Зовнішня URL-адреса містить ":value"', - 'search_modifier_not_external_url_contains' => 'Зовнішня URL-адреса не містить ":value"', - 'search_modifier_external_url_ends' => 'Зовнішня URL-адреса закінчується на ":value"', - 'search_modifier_not_external_url_ends' => 'Зовнішня URL-адреса не закінчується на ":value"', - 'search_modifier_external_url_starts' => 'Зовнішня URL-адреса починається з ":value"', - 'search_modifier_not_external_url_starts' => 'Зовнішня URL-адреса не починається з ":value"', - 'search_modifier_has_no_attachments' => 'Операція має прикріплених файлів', - 'search_modifier_not_has_no_attachments' => 'Операція має прикріплені файли', - 'search_modifier_not_has_attachments' => 'Операція має прикріплених файлів', - 'search_modifier_account_is_cash' => 'Будь-який рахунок є "(cash)" рахунком.', - 'search_modifier_not_account_is_cash' => 'Жоден рахунок не є "(cash)" рахунком.', - 'search_modifier_journal_id' => 'Ідентифікатор журналу: ":value"', - 'search_modifier_not_journal_id' => 'Ідентифікатор журналу не ":value"', - 'search_modifier_recurrence_id' => 'Ідентифікатор повторюваної операції ":value"', - 'search_modifier_not_recurrence_id' => 'Ідентифікатор повторюваної операції не ":value"', - 'search_modifier_foreign_amount_is' => 'Сума у валюті ":value"', - 'search_modifier_not_foreign_amount_is' => 'Сума у валюті не ":value"', - 'search_modifier_foreign_amount_less' => 'Сума у валюті менша за ":value"', - 'search_modifier_not_foreign_amount_more' => 'Сума у валюті більша за ":value"', - 'search_modifier_not_foreign_amount_less' => 'Сума у валюті не менша за ":value"', - 'search_modifier_foreign_amount_more' => 'Сума у валюті не більша за ":value"', - 'search_modifier_exists' => 'Операція існує (будь-яка операція)', - 'search_modifier_not_exists' => 'Операція не існує (немає операцій)', + 'search_modifier_tag_is_not' => 'Помітка ":value"', + 'search_modifier_not_tag_is_not' => 'Мітка ":value"', + 'search_modifier_account_is' => 'Будь-який рахунок є ":value"', + 'search_modifier_not_account_is' => 'Жодного рахунку ":value"', + 'search_modifier_account_contains' => 'Всі рахунки які містять ":value"', + 'search_modifier_not_account_contains' => 'Жодних рахунків які містять ":value"', + 'search_modifier_account_ends' => 'Всі рахунки які закінчуються на ":value"', + 'search_modifier_not_account_ends' => 'Жодних рахунків які закінчуються на ":value"', + 'search_modifier_account_starts' => 'Всі рахунки які починаються з ":value"', + 'search_modifier_not_account_starts' => 'Жодних рахунків які починаються з ":value"', + 'search_modifier_account_nr_is' => 'Усі номери рахунків або IBAN ":value"', + 'search_modifier_not_account_nr_is' => 'Жодних номерів рахунків або IBAN ":value"', + 'search_modifier_account_nr_contains' => 'Усі номери рахунків або IBAN які містять ":value"', + 'search_modifier_not_account_nr_contains' => 'Жодних номерів рахунків або IBAN які містять ":value"', + 'search_modifier_account_nr_ends' => 'Усі номери рахунків або IBAN які закінчуються на ":value"', + 'search_modifier_not_account_nr_ends' => 'Жодних номерів рахунків або IBAN які закінчуються на ":value"', + 'search_modifier_account_nr_starts' => 'Усі номери рахунків або IBAN які починаються з ":value"', + 'search_modifier_not_account_nr_starts' => 'Жодних номерів рахунків або IBAN які починаються з ":value"', + 'search_modifier_category_contains' => 'Категорія містить ":value"', + 'search_modifier_not_category_contains' => 'Категорія не містить ":value"', + 'search_modifier_category_ends' => 'Категорія закінчується на ":value"', + 'search_modifier_not_category_ends' => 'Категорія не закінчується на ":value"', + 'search_modifier_category_starts' => 'Категорія починається з ":value"', + 'search_modifier_not_category_starts' => 'Категорія не починається з ":value"', + 'search_modifier_budget_contains' => 'Бюджет містить ":value"', + 'search_modifier_not_budget_contains' => 'Бюджет не містить ":value"', + 'search_modifier_budget_ends' => 'Бюджет закінчується на ":value"', + 'search_modifier_not_budget_ends' => 'Бюджет не закінчується на ":value"', + 'search_modifier_budget_starts' => 'Бюджет починається з ":value"', + 'search_modifier_not_budget_starts' => 'Бюджет не починається з ":value"', + 'search_modifier_bill_contains' => 'Рахунок до сплати містить ":value"', + 'search_modifier_not_bill_contains' => 'Рахунок до сплати не містить ":value"', + 'search_modifier_bill_ends' => 'Рахунок до сплати закінчується на ":value"', + 'search_modifier_not_bill_ends' => 'Рахунок до сплати не закінчується на ":value"', + 'search_modifier_bill_starts' => 'Рахунок до сплати починається з ":value"', + 'search_modifier_not_bill_starts' => 'Рахунок до сплати не починається з ":value"', + 'search_modifier_external_id_contains' => 'Зовнішній ідентифікатор містить ":value"', + 'search_modifier_not_external_id_contains' => 'Зовнішній ідентифікатор не містить ":value"', + 'search_modifier_external_id_ends' => 'Зовнішній ідентифікатор закінчується на ":value"', + 'search_modifier_not_external_id_ends' => 'Зовнішній ідентифікатор не закінчується на ":value"', + 'search_modifier_external_id_starts' => 'Зовнішній ідентифікатор починається з ":value"', + 'search_modifier_not_external_id_starts' => 'Зовнішній ідентифікатор не починається з ":value"', + 'search_modifier_internal_reference_contains' => 'Внутрішнє посилання містить ":value"', + 'search_modifier_not_internal_reference_contains' => 'Внутрішнє посилання не містить ":value"', + 'search_modifier_internal_reference_ends' => 'Внутрішнє посилання закінчується на ":value"', + 'search_modifier_internal_reference_starts' => 'Внутрішнє посилання починається з ":value"', + 'search_modifier_not_internal_reference_ends' => 'Внутрішнє посилання не закінчується на ":value"', + 'search_modifier_not_internal_reference_starts' => 'Внутрішнє посилання не починається з ":value"', + 'search_modifier_external_url_is' => 'Зовнішня URL-адреса ":value"', + 'search_modifier_not_external_url_is' => 'Зовнішня URL-адреса не є ":value"', + 'search_modifier_external_url_contains' => 'Зовнішня URL-адреса містить ":value"', + 'search_modifier_not_external_url_contains' => 'Зовнішня URL-адреса не містить ":value"', + 'search_modifier_external_url_ends' => 'Зовнішня URL-адреса закінчується на ":value"', + 'search_modifier_not_external_url_ends' => 'Зовнішня URL-адреса не закінчується на ":value"', + 'search_modifier_external_url_starts' => 'Зовнішня URL-адреса починається з ":value"', + 'search_modifier_not_external_url_starts' => 'Зовнішня URL-адреса не починається з ":value"', + 'search_modifier_has_no_attachments' => 'Операція має прикріплених файлів', + 'search_modifier_not_has_no_attachments' => 'Операція має прикріплені файли', + 'search_modifier_not_has_attachments' => 'Операція має прикріплених файлів', + 'search_modifier_account_is_cash' => 'Будь-який рахунок є "(cash)" рахунком.', + 'search_modifier_not_account_is_cash' => 'Жоден рахунок не є "(cash)" рахунком.', + 'search_modifier_journal_id' => 'Ідентифікатор журналу: ":value"', + 'search_modifier_not_journal_id' => 'Ідентифікатор журналу не ":value"', + 'search_modifier_recurrence_id' => 'Ідентифікатор повторюваної операції ":value"', + 'search_modifier_not_recurrence_id' => 'Ідентифікатор повторюваної операції не ":value"', + 'search_modifier_foreign_amount_is' => 'Сума у валюті ":value"', + 'search_modifier_not_foreign_amount_is' => 'Сума у валюті не ":value"', + 'search_modifier_foreign_amount_less' => 'Сума у валюті менша за ":value"', + 'search_modifier_not_foreign_amount_more' => 'Сума у валюті більша за ":value"', + 'search_modifier_not_foreign_amount_less' => 'Сума у валюті не менша за ":value"', + 'search_modifier_foreign_amount_more' => 'Сума у валюті не більша за ":value"', + 'search_modifier_exists' => 'Операція існує (будь-яка операція)', + 'search_modifier_not_exists' => 'Операція не існує (немає операцій)', // date fields - 'search_modifier_interest_date_on' => 'Дата нарахування відсотків ":value"', - 'search_modifier_not_interest_date_on' => 'Дата нарахування відсотків не ":value"', - 'search_modifier_interest_date_on_year' => 'Дата нарахування відсотків ":value" року', - 'search_modifier_not_interest_date_on_year' => 'Дата нарахування відсотків не ":value" року', - 'search_modifier_interest_date_on_month' => 'Дата нарахування відсотків ":value" місяця', - 'search_modifier_not_interest_date_on_month' => 'Дата нарахування відсотків не ":value" місяця', - 'search_modifier_interest_date_on_day' => 'Дата нарахування відсотків в ":value" дні місяця', - 'search_modifier_not_interest_date_on_day' => 'Дата нарахування відсотків не в ":value" дні місяця', - 'search_modifier_interest_date_before_year' => 'Дата нарахування відсотків до або в ":value" році', - 'search_modifier_interest_date_before_month' => 'Дата нарахування відсотків до або в ":value" місяці', - 'search_modifier_interest_date_before_day' => 'Дата нарахування відсотків до або в ":value" дні місяця', - 'search_modifier_interest_date_after_year' => 'Дата нарахування відсотків після або в ":value" році', - 'search_modifier_interest_date_after_month' => 'Дата нарахування відсотків після або в ":value" місяці', - 'search_modifier_interest_date_after_day' => 'Дата нарахування відсотків після або в ":value" дні місяця', - 'search_modifier_book_date_on_year' => 'Дата книги операцій знаходиться в ":value" році', - 'search_modifier_book_date_on_month' => 'Дата книги операцій знаходиться в ":value" місяці', - 'search_modifier_book_date_on_day' => 'Дата книги операцій знаходиться в ":value" дні місяця', - 'search_modifier_not_book_date_on_year' => 'Дата книги операцій знаходиться не в ":value" році', - 'search_modifier_not_book_date_on_month' => 'Дата книги операцій знаходиться не в ":value" місяці', - 'search_modifier_not_book_date_on_day' => 'Дата книги операцій знаходиться не в ":value" дні місяця', - 'search_modifier_book_date_before_year' => 'Дата книги операцій знаходиться до або в ":value" році', - 'search_modifier_book_date_before_month' => 'Дата книги операцій знаходиться до або в ":value" місяці', - 'search_modifier_book_date_before_day' => 'Дата книги операцій знаходиться до або в ":value" дні місяця', - 'search_modifier_book_date_after_year' => 'Дата операції була після або в ":value" році', - 'search_modifier_book_date_after_month' => 'Дата операції була після або в ":value" місяці', - 'search_modifier_book_date_after_day' => 'Дата операції була після або в ":value" дні місяця', - 'search_modifier_process_date_on_year' => 'Дата операції вказана в ":value" році', - 'search_modifier_process_date_on_month' => 'Дата операції вказана в ":value" місяці', - 'search_modifier_process_date_on_day' => 'Дата операції вказана в ":value" дні місяця', - 'search_modifier_not_process_date_on_year' => 'Дата операції вказана не в ":value" році', - 'search_modifier_not_process_date_on_month' => 'Дата операції вказана не в ":value" місяці', - 'search_modifier_not_process_date_on_day' => 'Дата операції вказана не в ":value" дні місяця', - 'search_modifier_process_date_before_year' => 'Дата операції вказана до або в ":value" році', - 'search_modifier_process_date_before_month' => 'Дата операції вказана до або в ":value" місяці', - 'search_modifier_process_date_before_day' => 'Дата операції вказана до або в ":value" дні місяця', - 'search_modifier_process_date_after_year' => 'Дата операції вказана після або в ":value" році', - 'search_modifier_process_date_after_month' => 'Дата операції вказана після або в ":value" місяці', - 'search_modifier_process_date_after_day' => 'Дата операції вказана після або в ":value" дні місяця', - 'search_modifier_due_date_on_year' => 'Термін виконання операції вказано в ":value" році', - 'search_modifier_due_date_on_month' => 'Термін виконання операції вказано в ":value" місяці', - 'search_modifier_due_date_on_day' => 'Термін виконання операції вказано в ":value" дні місяця', - 'search_modifier_not_due_date_on_year' => 'Термін виконання операції не вказано в ":value" році', - 'search_modifier_not_due_date_on_month' => 'Термін виконання операції не вказано в ":value" місяці', - 'search_modifier_not_due_date_on_day' => 'Термін виконання операції не вказано в ":value" дні місяця', - 'search_modifier_due_date_before_year' => 'Термін виконання операції до або в ":value" році', - 'search_modifier_due_date_before_month' => 'Термін виконання операції до або в ":value" місяці', - 'search_modifier_due_date_before_day' => 'Термін виконання операції до або в ":value" дні місяця', - 'search_modifier_due_date_after_year' => 'Термін виконання операції наступає після або в ":value" році', - 'search_modifier_due_date_after_month' => 'Термін виконання операції наступає після або в ":value" місяці', - 'search_modifier_due_date_after_day' => 'Термін виконання операції наступає після або в ":value" дні місяця', - 'search_modifier_payment_date_on_year' => 'Дата платежу операції вказана в ":value" році', - 'search_modifier_payment_date_on_month' => 'Дата платежу операції вказана в ":value" місяці', - 'search_modifier_payment_date_on_day' => 'Дата платежу операції вказана в ":value" дні місяця', - 'search_modifier_not_payment_date_on_year' => 'Дата платежу операції не вказано в ":value" році', - 'search_modifier_not_payment_date_on_month' => 'Дата платежу операції не вказано в ":value" місяці', - 'search_modifier_not_payment_date_on_day' => 'Дата платежу операції не вказано в ":value" дні місяця', - 'search_modifier_payment_date_before_year' => 'Дата платежу операції до або в ":value" році', - 'search_modifier_payment_date_before_month' => 'Дата платежу операції до або в ":value" місяці', - 'search_modifier_payment_date_before_day' => 'Дата платежу операції до або в ":value" дні місяця', - 'search_modifier_payment_date_after_year' => 'Дата платежу операції наступає після або в ":value" році', - 'search_modifier_payment_date_after_month' => 'Дата платежу операції наступає після або в ":value" місяці', - 'search_modifier_payment_date_after_day' => 'Дата платежу операції наступає після або в ":value" дні місяця', - 'search_modifier_invoice_date_on_year' => 'Дата рахунку-фактури операції вказана в ":value" році', - 'search_modifier_invoice_date_on_month' => 'Дата рахунку-фактури операції вказана в ":value" місяці', - 'search_modifier_invoice_date_on_day' => 'Дата рахунку-фактури операції вказана в ":value" дні місяця', - 'search_modifier_not_invoice_date_on_year' => 'Дата рахунку-фактури операції не вказано в ":value" році', - 'search_modifier_not_invoice_date_on_month' => 'Дата рахунку-фактури операції не вказано в ":value" місяці', - 'search_modifier_not_invoice_date_on_day' => 'Дата рахунку-фактури операції не вказано в ":value" дні місяця', - 'search_modifier_invoice_date_before_year' => 'Дата рахунку-фактури операції до або в ":value" році', - 'search_modifier_invoice_date_before_month' => 'Дата рахунку-фактури операції до або в ":value" місяці', - 'search_modifier_invoice_date_before_day' => 'Дата рахунку-фактури операції до або в ":value" дні місяця', - 'search_modifier_invoice_date_after_year' => 'Дата рахунка-фактури операції після або в ":value" році', - 'search_modifier_invoice_date_after_month' => 'Дата рахунка-фактури операції після або в ":value" місяці', - 'search_modifier_invoice_date_after_day' => 'Дата рахунку-фактури операції після або в ":value" день місяця', + 'search_modifier_interest_date_on' => 'Дата нарахування відсотків ":value"', + 'search_modifier_not_interest_date_on' => 'Дата нарахування відсотків не ":value"', + 'search_modifier_interest_date_on_year' => 'Дата нарахування відсотків ":value" року', + 'search_modifier_not_interest_date_on_year' => 'Дата нарахування відсотків не ":value" року', + 'search_modifier_interest_date_on_month' => 'Дата нарахування відсотків ":value" місяця', + 'search_modifier_not_interest_date_on_month' => 'Дата нарахування відсотків не ":value" місяця', + 'search_modifier_interest_date_on_day' => 'Дата нарахування відсотків в ":value" дні місяця', + 'search_modifier_not_interest_date_on_day' => 'Дата нарахування відсотків не в ":value" дні місяця', + 'search_modifier_interest_date_before_year' => 'Дата нарахування відсотків до або в ":value" році', + 'search_modifier_interest_date_before_month' => 'Дата нарахування відсотків до або в ":value" місяці', + 'search_modifier_interest_date_before_day' => 'Дата нарахування відсотків до або в ":value" дні місяця', + 'search_modifier_interest_date_after_year' => 'Дата нарахування відсотків після або в ":value" році', + 'search_modifier_interest_date_after_month' => 'Дата нарахування відсотків після або в ":value" місяці', + 'search_modifier_interest_date_after_day' => 'Дата нарахування відсотків після або в ":value" дні місяця', + 'search_modifier_book_date_on_year' => 'Дата книги операцій знаходиться в ":value" році', + 'search_modifier_book_date_on_month' => 'Дата книги операцій знаходиться в ":value" місяці', + 'search_modifier_book_date_on_day' => 'Дата книги операцій знаходиться в ":value" дні місяця', + 'search_modifier_not_book_date_on_year' => 'Дата книги операцій знаходиться не в ":value" році', + 'search_modifier_not_book_date_on_month' => 'Дата книги операцій знаходиться не в ":value" місяці', + 'search_modifier_not_book_date_on_day' => 'Дата книги операцій знаходиться не в ":value" дні місяця', + 'search_modifier_book_date_before_year' => 'Дата книги операцій знаходиться до або в ":value" році', + 'search_modifier_book_date_before_month' => 'Дата книги операцій знаходиться до або в ":value" місяці', + 'search_modifier_book_date_before_day' => 'Дата книги операцій знаходиться до або в ":value" дні місяця', + 'search_modifier_book_date_after_year' => 'Дата операції була після або в ":value" році', + 'search_modifier_book_date_after_month' => 'Дата операції була після або в ":value" місяці', + 'search_modifier_book_date_after_day' => 'Дата операції була після або в ":value" дні місяця', + 'search_modifier_process_date_on_year' => 'Дата операції вказана в ":value" році', + 'search_modifier_process_date_on_month' => 'Дата операції вказана в ":value" місяці', + 'search_modifier_process_date_on_day' => 'Дата операції вказана в ":value" дні місяця', + 'search_modifier_not_process_date_on_year' => 'Дата операції вказана не в ":value" році', + 'search_modifier_not_process_date_on_month' => 'Дата операції вказана не в ":value" місяці', + 'search_modifier_not_process_date_on_day' => 'Дата операції вказана не в ":value" дні місяця', + 'search_modifier_process_date_before_year' => 'Дата операції вказана до або в ":value" році', + 'search_modifier_process_date_before_month' => 'Дата операції вказана до або в ":value" місяці', + 'search_modifier_process_date_before_day' => 'Дата операції вказана до або в ":value" дні місяця', + 'search_modifier_process_date_after_year' => 'Дата операції вказана після або в ":value" році', + 'search_modifier_process_date_after_month' => 'Дата операції вказана після або в ":value" місяці', + 'search_modifier_process_date_after_day' => 'Дата операції вказана після або в ":value" дні місяця', + 'search_modifier_due_date_on_year' => 'Термін виконання операції вказано в ":value" році', + 'search_modifier_due_date_on_month' => 'Термін виконання операції вказано в ":value" місяці', + 'search_modifier_due_date_on_day' => 'Термін виконання операції вказано в ":value" дні місяця', + 'search_modifier_not_due_date_on_year' => 'Термін виконання операції не вказано в ":value" році', + 'search_modifier_not_due_date_on_month' => 'Термін виконання операції не вказано в ":value" місяці', + 'search_modifier_not_due_date_on_day' => 'Термін виконання операції не вказано в ":value" дні місяця', + 'search_modifier_due_date_before_year' => 'Термін виконання операції до або в ":value" році', + 'search_modifier_due_date_before_month' => 'Термін виконання операції до або в ":value" місяці', + 'search_modifier_due_date_before_day' => 'Термін виконання операції до або в ":value" дні місяця', + 'search_modifier_due_date_after_year' => 'Термін виконання операції наступає після або в ":value" році', + 'search_modifier_due_date_after_month' => 'Термін виконання операції наступає після або в ":value" місяці', + 'search_modifier_due_date_after_day' => 'Термін виконання операції наступає після або в ":value" дні місяця', + 'search_modifier_payment_date_on_year' => 'Дата платежу операції вказана в ":value" році', + 'search_modifier_payment_date_on_month' => 'Дата платежу операції вказана в ":value" місяці', + 'search_modifier_payment_date_on_day' => 'Дата платежу операції вказана в ":value" дні місяця', + 'search_modifier_not_payment_date_on_year' => 'Дата платежу операції не вказано в ":value" році', + 'search_modifier_not_payment_date_on_month' => 'Дата платежу операції не вказано в ":value" місяці', + 'search_modifier_not_payment_date_on_day' => 'Дата платежу операції не вказано в ":value" дні місяця', + 'search_modifier_payment_date_before_year' => 'Дата платежу операції до або в ":value" році', + 'search_modifier_payment_date_before_month' => 'Дата платежу операції до або в ":value" місяці', + 'search_modifier_payment_date_before_day' => 'Дата платежу операції до або в ":value" дні місяця', + 'search_modifier_payment_date_after_year' => 'Дата платежу операції наступає після або в ":value" році', + 'search_modifier_payment_date_after_month' => 'Дата платежу операції наступає після або в ":value" місяці', + 'search_modifier_payment_date_after_day' => 'Дата платежу операції наступає після або в ":value" дні місяця', + 'search_modifier_invoice_date_on_year' => 'Дата рахунку-фактури операції вказана в ":value" році', + 'search_modifier_invoice_date_on_month' => 'Дата рахунку-фактури операції вказана в ":value" місяці', + 'search_modifier_invoice_date_on_day' => 'Дата рахунку-фактури операції вказана в ":value" дні місяця', + 'search_modifier_not_invoice_date_on_year' => 'Дата рахунку-фактури операції не вказано в ":value" році', + 'search_modifier_not_invoice_date_on_month' => 'Дата рахунку-фактури операції не вказано в ":value" місяці', + 'search_modifier_not_invoice_date_on_day' => 'Дата рахунку-фактури операції не вказано в ":value" дні місяця', + 'search_modifier_invoice_date_before_year' => 'Дата рахунку-фактури операції до або в ":value" році', + 'search_modifier_invoice_date_before_month' => 'Дата рахунку-фактури операції до або в ":value" місяці', + 'search_modifier_invoice_date_before_day' => 'Дата рахунку-фактури операції до або в ":value" дні місяця', + 'search_modifier_invoice_date_after_year' => 'Дата рахунка-фактури операції після або в ":value" році', + 'search_modifier_invoice_date_after_month' => 'Дата рахунка-фактури операції після або в ":value" місяці', + 'search_modifier_invoice_date_after_day' => 'Дата рахунку-фактури операції після або в ":value" день місяця', // other dates - 'search_modifier_updated_at_on_year' => 'Операцію востаннє оновлено в ":value" році', - 'search_modifier_updated_at_on_month' => 'Операцію востаннє оновлено в ":value" місяці', - 'search_modifier_updated_at_on_day' => 'Операцію востаннє оновлено в ":value" дні місяця', - 'search_modifier_not_updated_at_on_year' => 'Операцію востаннє не оновлено в ":value" році', - 'search_modifier_not_updated_at_on_month' => 'Операцію востаннє не оновлено в ":value" місяці', - 'search_modifier_not_updated_at_on_day' => 'Операцію востаннє не оновлено в ":value" дні місяця', - 'search_modifier_updated_at_before_year' => 'Операцію востаннє оновлено в або до ":value" році', - 'search_modifier_updated_at_before_month' => 'Операцію востаннє оновлено в або до ":value" місяці', - 'search_modifier_updated_at_before_day' => 'Операцію востаннє оновлено в або до ":value" дні місяця', - 'search_modifier_updated_at_after_year' => 'Операцію востаннє оновлено в або після ":value" році', - 'search_modifier_updated_at_after_month' => 'Операцію востаннє оновлено в або після ":value" місяці', - 'search_modifier_updated_at_after_day' => 'Операцію востаннє оновлено в або після ":value" дні місяця', - 'search_modifier_created_at_on_year' => 'Операцію було створено в ":value" році', - 'search_modifier_created_at_on_month' => 'Операцію було створено в ":value" місяці', - 'search_modifier_created_at_on_day' => 'Операцію було створено в ":value" дні місяця', - 'search_modifier_not_created_at_on_year' => 'Операцію не було створено в ":value" році', - 'search_modifier_not_created_at_on_month' => 'Операцію не було створено в ":value" місяці', - 'search_modifier_not_created_at_on_day' => 'Операцію не було створено в ":value" дні місяця', - 'search_modifier_created_at_before_year' => 'Операцію було створено в або до ":value" році', - 'search_modifier_created_at_before_month' => 'Операцію було створено в або до ":value" місяці', - 'search_modifier_created_at_before_day' => 'Операцію було створено в або до ":value" дні місяця', - 'search_modifier_created_at_after_year' => 'Операцію було створено в або після ":value" році', - 'search_modifier_created_at_after_month' => 'Операцію було створено в або після ":value" місяці', - 'search_modifier_created_at_after_day' => 'Операцію було створено в або після ":value" дні місяця', - 'search_modifier_interest_date_before' => 'Дата нарахування відсотків не перевищує ":value"', - 'search_modifier_interest_date_after' => 'Дата нарахування відсотків не раніше ":value"', - 'search_modifier_book_date_on' => 'Дата книги операцій ":value"', - 'search_modifier_not_book_date_on' => 'Дата книги операцій не ":value"', - 'search_modifier_book_date_before' => 'Дата книги операцій не перевищує ":value"', - 'search_modifier_book_date_after' => 'Дата книги операцій не раніше ":value"', - 'search_modifier_process_date_on' => 'Дата обробки операції ":value"', - 'search_modifier_not_process_date_on' => 'Дата обробки операції не ":value"', - 'search_modifier_process_date_before' => 'Дата обробки операції не перевищує ":value"', - 'search_modifier_process_date_after' => 'Дата обробки операції не раніше ":value"', - 'search_modifier_due_date_on' => 'Термін виконання операції ":value"', - 'search_modifier_not_due_date_on' => 'Термін виконання операції не ":value"', - 'search_modifier_due_date_before' => 'Термін виконання операції не перевищує ":value"', - 'search_modifier_due_date_after' => 'Термін виконання операції не раніше ":value"', - 'search_modifier_payment_date_on' => 'Дата платежу ":value"', - 'search_modifier_not_payment_date_on' => 'Дата платежу не ":value"', - 'search_modifier_payment_date_before' => 'Дата платежу не перевищує ":value"', - 'search_modifier_payment_date_after' => 'Дата платежу не раніше ":value"', - 'search_modifier_invoice_date_on' => 'Дата рахунка-фактури ":value"', - 'search_modifier_not_invoice_date_on' => 'Дата рахунка-фактури не ":value"', - 'search_modifier_invoice_date_before' => 'Дата рахунка-фактури не перевищує ":value"', - 'search_modifier_invoice_date_after' => 'Дата рахунка-фактури не раніше ":value"', - 'search_modifier_created_at_on' => 'Операцію створено ":value"', - 'search_modifier_not_created_at_on' => 'Операцію не створено ":value"', - 'search_modifier_created_at_before' => 'Операцію створено не пізніше ":value"', - 'search_modifier_created_at_after' => 'Операцію створена в або після ":value"', - 'search_modifier_updated_at_on' => 'Операцію оновлено ":value"', - 'search_modifier_not_updated_at_on' => 'Операцію не оновлено ":value"', - 'search_modifier_updated_at_before' => 'Операцію оновлено в або до ":value"', - 'search_modifier_updated_at_after' => 'Операцію оновлено в або після ":value"', + 'search_modifier_updated_at_on_year' => 'Операцію востаннє оновлено в ":value" році', + 'search_modifier_updated_at_on_month' => 'Операцію востаннє оновлено в ":value" місяці', + 'search_modifier_updated_at_on_day' => 'Операцію востаннє оновлено в ":value" дні місяця', + 'search_modifier_not_updated_at_on_year' => 'Операцію востаннє не оновлено в ":value" році', + 'search_modifier_not_updated_at_on_month' => 'Операцію востаннє не оновлено в ":value" місяці', + 'search_modifier_not_updated_at_on_day' => 'Операцію востаннє не оновлено в ":value" дні місяця', + 'search_modifier_updated_at_before_year' => 'Операцію востаннє оновлено в або до ":value" році', + 'search_modifier_updated_at_before_month' => 'Операцію востаннє оновлено в або до ":value" місяці', + 'search_modifier_updated_at_before_day' => 'Операцію востаннє оновлено в або до ":value" дні місяця', + 'search_modifier_updated_at_after_year' => 'Операцію востаннє оновлено в або після ":value" році', + 'search_modifier_updated_at_after_month' => 'Операцію востаннє оновлено в або після ":value" місяці', + 'search_modifier_updated_at_after_day' => 'Операцію востаннє оновлено в або після ":value" дні місяця', + 'search_modifier_created_at_on_year' => 'Операцію було створено в ":value" році', + 'search_modifier_created_at_on_month' => 'Операцію було створено в ":value" місяці', + 'search_modifier_created_at_on_day' => 'Операцію було створено в ":value" дні місяця', + 'search_modifier_not_created_at_on_year' => 'Операцію не було створено в ":value" році', + 'search_modifier_not_created_at_on_month' => 'Операцію не було створено в ":value" місяці', + 'search_modifier_not_created_at_on_day' => 'Операцію не було створено в ":value" дні місяця', + 'search_modifier_created_at_before_year' => 'Операцію було створено в або до ":value" році', + 'search_modifier_created_at_before_month' => 'Операцію було створено в або до ":value" місяці', + 'search_modifier_created_at_before_day' => 'Операцію було створено в або до ":value" дні місяця', + 'search_modifier_created_at_after_year' => 'Операцію було створено в або після ":value" році', + 'search_modifier_created_at_after_month' => 'Операцію було створено в або після ":value" місяці', + 'search_modifier_created_at_after_day' => 'Операцію було створено в або після ":value" дні місяця', + 'search_modifier_interest_date_before' => 'Дата нарахування відсотків не перевищує ":value"', + 'search_modifier_interest_date_after' => 'Дата нарахування відсотків не раніше ":value"', + 'search_modifier_book_date_on' => 'Дата книги операцій ":value"', + 'search_modifier_not_book_date_on' => 'Дата книги операцій не ":value"', + 'search_modifier_book_date_before' => 'Дата книги операцій не перевищує ":value"', + 'search_modifier_book_date_after' => 'Дата книги операцій не раніше ":value"', + 'search_modifier_process_date_on' => 'Дата обробки операції ":value"', + 'search_modifier_not_process_date_on' => 'Дата обробки операції не ":value"', + 'search_modifier_process_date_before' => 'Дата обробки операції не перевищує ":value"', + 'search_modifier_process_date_after' => 'Дата обробки операції не раніше ":value"', + 'search_modifier_due_date_on' => 'Термін виконання операції ":value"', + 'search_modifier_not_due_date_on' => 'Термін виконання операції не ":value"', + 'search_modifier_due_date_before' => 'Термін виконання операції не перевищує ":value"', + 'search_modifier_due_date_after' => 'Термін виконання операції не раніше ":value"', + 'search_modifier_payment_date_on' => 'Дата платежу ":value"', + 'search_modifier_not_payment_date_on' => 'Дата платежу не ":value"', + 'search_modifier_payment_date_before' => 'Дата платежу не перевищує ":value"', + 'search_modifier_payment_date_after' => 'Дата платежу не раніше ":value"', + 'search_modifier_invoice_date_on' => 'Дата рахунка-фактури ":value"', + 'search_modifier_not_invoice_date_on' => 'Дата рахунка-фактури не ":value"', + 'search_modifier_invoice_date_before' => 'Дата рахунка-фактури не перевищує ":value"', + 'search_modifier_invoice_date_after' => 'Дата рахунка-фактури не раніше ":value"', + 'search_modifier_created_at_on' => 'Операцію створено ":value"', + 'search_modifier_not_created_at_on' => 'Операцію не створено ":value"', + 'search_modifier_created_at_before' => 'Операцію створено не пізніше ":value"', + 'search_modifier_created_at_after' => 'Операцію створена в або після ":value"', + 'search_modifier_updated_at_on' => 'Операцію оновлено ":value"', + 'search_modifier_not_updated_at_on' => 'Операцію не оновлено ":value"', + 'search_modifier_updated_at_before' => 'Операцію оновлено в або до ":value"', + 'search_modifier_updated_at_after' => 'Операцію оновлено в або після ":value"', - 'search_modifier_attachment_name_is' => 'Будь-яке вкладення має назву ":value"', - 'search_modifier_attachment_name_contains' => 'Будь-яке ім’я вкладення містить ":value"', - 'search_modifier_attachment_name_starts' => 'Ім\'я будь-якого вкладення починається з ":value"', - 'search_modifier_attachment_name_ends' => 'Будь-яке ім’я вкладення закінчується на ":value"', - 'search_modifier_attachment_notes_are' => 'Будь-які примітки до вкладення мають значення ":value"', - 'search_modifier_attachment_notes_contains' => 'Будь-які примітки до вкладення містять ":value"', - 'search_modifier_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":value"', - 'search_modifier_attachment_notes_ends' => 'Будь-які примітки до вкладення закінчуються на ":value"', - 'search_modifier_not_attachment_name_is' => 'Будь-яке ім\'я вкладення не ":value"', - 'search_modifier_not_attachment_name_contains' => 'Будь-яке ім\'я вкладення не містить ":value"', - 'search_modifier_not_attachment_name_starts' => 'Назва вкладення не починається з ":value"', - 'search_modifier_not_attachment_name_ends' => 'Назва вкладення не закінчується на ":value"', - 'search_modifier_not_attachment_notes_are' => 'Будь-які примітки вкладення не ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Будь-які примітки вкладення не містять ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Примітки до вкладення не закінчуються на ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT дорівнює ":value"', - 'update_rule_from_query' => 'Оновити правило ":rule" із пошукового запиту', - 'create_rule_from_query' => 'Створити нове правило з пошукового запиту', - 'rule_from_search_words' => 'Рушію правил важко обробити ":string". Пропоноване правило, яке відповідає вашому запиту, може дати різні результати. Будь ласка, уважно перевіряйте умови.', + 'search_modifier_attachment_name_is' => 'Будь-яке вкладення має назву ":value"', + 'search_modifier_attachment_name_contains' => 'Будь-яке ім’я вкладення містить ":value"', + 'search_modifier_attachment_name_starts' => 'Ім\'я будь-якого вкладення починається з ":value"', + 'search_modifier_attachment_name_ends' => 'Будь-яке ім’я вкладення закінчується на ":value"', + 'search_modifier_attachment_notes_are' => 'Будь-які примітки до вкладення мають значення ":value"', + 'search_modifier_attachment_notes_contains' => 'Будь-які примітки до вкладення містять ":value"', + 'search_modifier_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":value"', + 'search_modifier_attachment_notes_ends' => 'Будь-які примітки до вкладення закінчуються на ":value"', + 'search_modifier_not_attachment_name_is' => 'Будь-яке ім\'я вкладення не ":value"', + 'search_modifier_not_attachment_name_contains' => 'Будь-яке ім\'я вкладення не містить ":value"', + 'search_modifier_not_attachment_name_starts' => 'Назва вкладення не починається з ":value"', + 'search_modifier_not_attachment_name_ends' => 'Назва вкладення не закінчується на ":value"', + 'search_modifier_not_attachment_notes_are' => 'Будь-які примітки вкладення не ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Будь-які примітки вкладення не містять ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Примітки до вкладення не закінчуються на ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT дорівнює ":value"', + 'update_rule_from_query' => 'Оновити правило ":rule" із пошукового запиту', + 'create_rule_from_query' => 'Створити нове правило з пошукового запиту', + 'rule_from_search_words' => 'Рушію правил важко обробити ":string". Пропоноване правило, яке відповідає вашому запиту, може дати різні результати. Будь ласка, уважно перевіряйте умови.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Наступні модифікатори застосовуються до пошуку:', - 'general_search_error' => 'Під час пошуку виникла помилка. Будь-ласка, перевірте файл журналу для отримання додаткової інформації.', - 'search_box' => 'Пошук', - 'search_box_intro' => 'Ласкаво просимо до функції пошуку Firefly III. Введіть ваш пошуковий запит у віконце. Переконайтеся, що ви перевірити файл довідки, оскільки пошук досить розширений.', - 'search_error' => 'Помилка під час пошуку', - 'search_searching' => 'Шукаємо ...', - 'search_results' => 'Результати пошуку', + 'modifiers_applies_are' => 'Наступні модифікатори застосовуються до пошуку:', + 'general_search_error' => 'Під час пошуку виникла помилка. Будь-ласка, перевірте файл журналу для отримання додаткової інформації.', + 'search_box' => 'Пошук', + 'search_box_intro' => 'Ласкаво просимо до функції пошуку Firefly III. Введіть ваш пошуковий запит у віконце. Переконайтеся, що ви перевірити файл довідки, оскільки пошук досить розширений.', + 'search_error' => 'Помилка під час пошуку', + 'search_searching' => 'Шукаємо ...', + 'search_results' => 'Результати пошуку', // repeat frequencies: - 'repeat_freq_yearly' => 'за роками', - 'repeat_freq_half-year' => 'кожних півроку', - 'repeat_freq_quarterly' => 'за кварталами', - 'repeat_freq_monthly' => 'щомісяця', - 'repeat_freq_weekly' => 'щотижня', - 'repeat_freq_daily' => 'щодня', - 'daily' => 'щодня', - 'weekly' => 'щотижня', - 'quarterly' => 'за кварталами', - 'half-year' => 'кожних півроку', - 'yearly' => 'щороку', + 'repeat_freq_yearly' => 'за роками', + 'repeat_freq_half-year' => 'кожних півроку', + 'repeat_freq_quarterly' => 'за кварталами', + 'repeat_freq_monthly' => 'щомісяця', + 'repeat_freq_weekly' => 'щотижня', + 'repeat_freq_daily' => 'щодня', + 'daily' => 'щодня', + 'weekly' => 'щотижня', + 'quarterly' => 'за кварталами', + 'half-year' => 'кожних півроку', + 'yearly' => 'щороку', // rules - 'is_not_rule_trigger' => 'Не', - 'cannot_fire_inactive_rules' => 'Ви не можете виконати неактивні правила.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Правила', - 'rule_name' => 'Назва правила', - 'rule_triggers' => 'Виконується правило коли', - 'rule_actions' => 'Правило буде', - 'new_rule' => 'Нове правило', - 'new_rule_group' => 'Нова група правил', - 'rule_priority_up' => 'Вказати для правила більший пріоритет', - 'rule_priority_down' => 'Дати правилу меньший пріоритет', - 'make_new_rule_group' => 'Створити нову групу правил', - 'store_new_rule_group' => 'Зберегти нову групу правил', - 'created_new_rule_group' => 'Збережена нова група правил ":title"!', - 'updated_rule_group' => 'Група правил ":title" успішно оновлена.', - 'edit_rule_group' => 'Редагувати групу правил ":title"', - 'duplicate_rule' => 'Дублювати правило ":title"', - 'rule_copy_of' => 'Копія ":title"', - 'duplicated_rule' => 'Дубльоване правило ":title" в ":newTitle"', - 'delete_rule_group' => 'Видалити групу правил ":title"', - 'deleted_rule_group' => 'Видалено групу правил ":title"', - 'update_rule_group' => 'Редагувати групу правил', - 'no_rules_in_group' => 'У цій групі немає правил', - 'move_rule_group_up' => 'Перемістити групу правил вгору', - 'move_rule_group_down' => 'Перемістити групу правил вниз', - 'save_rules_by_moving' => 'Збережіть це правило, перемістивши його в іншу групу правил:|Збережіть ці правила, перемістивши їх в іншу групу:', - 'make_new_rule' => 'Створити нове правило в групі правил ":title"', - 'make_new_rule_no_group' => 'Створити нове правило', - 'instructions_rule_from_bill' => 'Для того щоб співставити транзакції до вашої пової квитанції ":name", Firefly III може створити правило, яке буде автоматично перевіряти усі новосьворені транзакції. Будь ласка, перевірте зазначені нижче деталі та збережіть правило для того щоб Firefly III автоматично співставляв транзакції з вашою новою квитанцією.', - 'instructions_rule_from_journal' => 'Створіть правило на основі однієї з ваших транзакцій. Доповненіть або надішліть форму що нижче.', - 'rule_is_strict' => 'суворе правило', - 'rule_is_not_strict' => 'не суворе правило', - 'rule_help_stop_processing' => 'Коли ви поставите прапорець, наступні правила у цій групі не будуть виконані.', - 'rule_help_strict' => 'У жорстких правилах ВСІ тригери повинні спрацювати для виконання дії(й). У не жорстких правилах достатньо і спрацювання одного тригера, щоб дія(ї) було виконано.', - 'rule_help_active' => 'Неактивні правила ніколи не спрацьовують.', - 'stored_new_rule' => 'Збережено нове правило ":title"', - 'deleted_rule' => 'Видалено правило ":title"', - 'store_new_rule' => 'Зберегти нове правило', - 'updated_rule' => 'Оновлено правило ":title"', - 'default_rule_group_name' => 'Типові правила', - 'default_rule_group_description' => 'Тут ваші не згуртовані правила.', - 'trigger' => 'Умова', - 'trigger_value' => 'Значення умови', - 'stop_processing_other_triggers' => 'Припинити обробку інших умов', - 'add_rule_trigger' => 'Додати нову умову', - 'action' => 'Дія', - 'action_value' => 'Значення дії', - 'stop_executing_other_actions' => 'Зупинити виконання інших дій', - 'add_rule_action' => 'Додати нову дію', - 'edit_rule' => 'Редагувати правило ":title"', - 'delete_rule' => 'Видалити правило ":title"', - 'update_rule' => 'Оновити правило', - 'test_rule_triggers' => 'Переглянути відповідні транзакції', - 'warning_no_matching_transactions' => 'Не знайдено відповідних транзакцій.', - 'warning_no_valid_triggers' => 'Немає правильних умов.', - 'apply_rule_selection' => 'Застосуйте правило ":title" до ваших транзакцій', - 'apply_rule_selection_intro' => 'Правила на зразок ":title" зазвичай застосовуються лише для нових або оновлених транзакцій, але ви можете застосувати його для вже існуючих транзакцій. Це може бути корисним, коли ви оновили правило.', - 'include_transactions_from_accounts' => 'Транзакції з цих рахунків', - 'include' => 'Включити?', - 'applied_rule_selection' => '{0} Жодна транзакція у вашому виборі не була змінена правилом ":title".|[1] Одна транзакція у вашому виборі була змінена правилом ":title".|[2,*] :count транзакцій у вашому виборі змінено правило ":title".', - 'execute' => 'Виконати', - 'apply_rule_group_selection' => 'Застосуйте групу правил ":title" до обраних транзакцій', - 'apply_rule_group_selection_intro' => 'Групи правили як ":title" зазвичай застосовуються тільки до нових або оновлених транзакцій, але ви можете сказати Firefly III виконувати всі правила в цій групі при виборі ваших вже існуючих операцій. Це може бути корисним коли ви оновили групу правил і вам потрібні зміни, які будуть застосовані до всіх інших ваших операцій.', - 'applied_rule_group_selection' => 'Група правил ":title" була застосована до обраних транзакцій.', + 'is_not_rule_trigger' => 'Не', + 'cannot_fire_inactive_rules' => 'Ви не можете виконати неактивні правила.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Правила', + 'rule_name' => 'Назва правила', + 'rule_triggers' => 'Виконується правило коли', + 'rule_actions' => 'Правило буде', + 'new_rule' => 'Нове правило', + 'new_rule_group' => 'Нова група правил', + 'rule_priority_up' => 'Вказати для правила більший пріоритет', + 'rule_priority_down' => 'Дати правилу меньший пріоритет', + 'make_new_rule_group' => 'Створити нову групу правил', + 'store_new_rule_group' => 'Зберегти нову групу правил', + 'created_new_rule_group' => 'Збережена нова група правил ":title"!', + 'updated_rule_group' => 'Група правил ":title" успішно оновлена.', + 'edit_rule_group' => 'Редагувати групу правил ":title"', + 'duplicate_rule' => 'Дублювати правило ":title"', + 'rule_copy_of' => 'Копія ":title"', + 'duplicated_rule' => 'Дубльоване правило ":title" в ":newTitle"', + 'delete_rule_group' => 'Видалити групу правил ":title"', + 'deleted_rule_group' => 'Видалено групу правил ":title"', + 'update_rule_group' => 'Редагувати групу правил', + 'no_rules_in_group' => 'У цій групі немає правил', + 'move_rule_group_up' => 'Перемістити групу правил вгору', + 'move_rule_group_down' => 'Перемістити групу правил вниз', + 'save_rules_by_moving' => 'Збережіть це правило, перемістивши його в іншу групу правил:|Збережіть ці правила, перемістивши їх в іншу групу:', + 'make_new_rule' => 'Створити нове правило в групі правил ":title"', + 'make_new_rule_no_group' => 'Створити нове правило', + 'instructions_rule_from_bill' => 'Для того щоб співставити транзакції до вашої пової квитанції ":name", Firefly III може створити правило, яке буде автоматично перевіряти усі новосьворені транзакції. Будь ласка, перевірте зазначені нижче деталі та збережіть правило для того щоб Firefly III автоматично співставляв транзакції з вашою новою квитанцією.', + 'instructions_rule_from_journal' => 'Створіть правило на основі однієї з ваших транзакцій. Доповненіть або надішліть форму що нижче.', + 'rule_is_strict' => 'суворе правило', + 'rule_is_not_strict' => 'не суворе правило', + 'rule_help_stop_processing' => 'Коли ви поставите прапорець, наступні правила у цій групі не будуть виконані.', + 'rule_help_strict' => 'У жорстких правилах ВСІ тригери повинні спрацювати для виконання дії(й). У не жорстких правилах достатньо і спрацювання одного тригера, щоб дія(ї) було виконано.', + 'rule_help_active' => 'Неактивні правила ніколи не спрацьовують.', + 'stored_new_rule' => 'Збережено нове правило ":title"', + 'deleted_rule' => 'Видалено правило ":title"', + 'store_new_rule' => 'Зберегти нове правило', + 'updated_rule' => 'Оновлено правило ":title"', + 'default_rule_group_name' => 'Типові правила', + 'default_rule_group_description' => 'Тут ваші не згуртовані правила.', + 'trigger' => 'Умова', + 'trigger_value' => 'Значення умови', + 'stop_processing_other_triggers' => 'Припинити обробку інших умов', + 'add_rule_trigger' => 'Додати нову умову', + 'action' => 'Дія', + 'action_value' => 'Значення дії', + 'stop_executing_other_actions' => 'Зупинити виконання інших дій', + 'add_rule_action' => 'Додати нову дію', + 'edit_rule' => 'Редагувати правило ":title"', + 'delete_rule' => 'Видалити правило ":title"', + 'update_rule' => 'Оновити правило', + 'test_rule_triggers' => 'Переглянути відповідні транзакції', + 'warning_no_matching_transactions' => 'Не знайдено відповідних транзакцій.', + 'warning_no_valid_triggers' => 'Немає правильних умов.', + 'apply_rule_selection' => 'Застосуйте правило ":title" до ваших транзакцій', + 'apply_rule_selection_intro' => 'Правила на зразок ":title" зазвичай застосовуються лише для нових або оновлених транзакцій, але ви можете застосувати його для вже існуючих транзакцій. Це може бути корисним, коли ви оновили правило.', + 'include_transactions_from_accounts' => 'Транзакції з цих рахунків', + 'include' => 'Включити?', + 'applied_rule_selection' => '{0} Жодна транзакція у вашому виборі не була змінена правилом ":title".|[1] Одна транзакція у вашому виборі була змінена правилом ":title".|[2,*] :count транзакцій у вашому виборі змінено правило ":title".', + 'execute' => 'Виконати', + 'apply_rule_group_selection' => 'Застосуйте групу правил ":title" до обраних транзакцій', + 'apply_rule_group_selection_intro' => 'Групи правили як ":title" зазвичай застосовуються тільки до нових або оновлених транзакцій, але ви можете сказати Firefly III виконувати всі правила в цій групі при виборі ваших вже існуючих операцій. Це може бути корисним коли ви оновили групу правил і вам потрібні зміни, які будуть застосовані до всіх інших ваших операцій.', + 'applied_rule_group_selection' => 'Група правил ":title" була застосована до обраних транзакцій.', // actions and triggers - 'rule_trigger_store_journal' => 'При створенні транзакції', - 'rule_trigger_update_journal' => 'Коли транзакція оновлена', - 'rule_trigger_user_action' => 'Дія користувача ":trigger_value"', + 'rule_trigger_store_journal' => 'При створенні транзакції', + 'rule_trigger_update_journal' => 'Коли транзакція оновлена', + 'rule_trigger_user_action' => 'Дія користувача ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Ім\'я вихідного рахунку починається з ": value"..', - 'rule_trigger_source_account_starts' => 'Назва джерела рахунку починається з ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Назва джерела рахунку закінчується на..', - 'rule_trigger_source_account_ends' => 'Назва джерела рахунку закінчується на ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Ім\'я вихідного рахунку містить..', - 'rule_trigger_source_account_is' => 'Назва джерела рахунку ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Назва джерела рахунку містить..', - 'rule_trigger_source_account_contains' => 'Назва джерела рахунку містить ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Ідентифікація будь-якого рахунку є точною..', - 'rule_trigger_account_id' => 'Ідентифікатор рахунку є саме :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Ідентифікація будь-якого джерела рахунку є точною..', - 'rule_trigger_source_account_id' => 'Ідентифікатор джерела рахунку є саме :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Ідентифікація рахунку призначення є точною..', - 'rule_trigger_destination_account_id' => 'Ідентифікатор рахунку призначення є саме :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Будь-який рахунок є готівковим', - 'rule_trigger_account_is_cash' => 'Будь-який рахунок є готівковим', - 'rule_trigger_source_is_cash_choice' => "Джерелом рахунком є \u{200b}\u{200b}(готівковий) рахунок", - 'rule_trigger_source_is_cash' => "Джерелом рахунком є \u{200b}\u{200b}(готівковий) рахунок", - 'rule_trigger_destination_is_cash_choice' => "Рахунком призначення є \u{200b}\u{200b}(готівковий) рахунок", - 'rule_trigger_destination_is_cash' => "Рахунком призначення є \u{200b}\u{200b}(готівковий) рахунок", - 'rule_trigger_source_account_nr_starts_choice' => 'Номер джерела рахунку / IBAN починається з..', - 'rule_trigger_source_account_nr_starts' => 'Номер джерела рахунку / IBAN починається з ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Номер рахунку призначення / IBAN закінчується на..', - 'rule_trigger_source_account_nr_ends' => 'Номер рахунку призначення / IBAN закінчується на ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Номер джерела рахунку / IBAN є..', - 'rule_trigger_source_account_nr_is' => 'Номер джерела рахунку / IBAN є ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Номер джерела рахунку / IBAN містить..', - 'rule_trigger_source_account_nr_contains' => 'Номер джерела рахунку / IBAN ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Рахунок призначення починається з..', - 'rule_trigger_destination_account_starts' => 'Рахунок призначення починається з ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Рахунок призначення закінчується на..', - 'rule_trigger_destination_account_ends' => 'Рахунок призначення закінчується на ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Рахунок-одержувач..', - 'rule_trigger_destination_account_is' => 'Рахунок-одержувач ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Ім\'я рахуноку-одержувача містить..', - 'rule_trigger_destination_account_contains' => 'Ім\'я рахуноку-одержувача містить ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Рахунок призначення / IBAN починається з..', - 'rule_trigger_destination_account_nr_starts' => 'Рахунок призначення / IBAN починається з ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Рахунок призначення / IBAN закінчується на..', - 'rule_trigger_destination_account_nr_ends' => 'Рахунок призначення / IBAN закінчується на ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Рахунок призначення / IBAN..', - 'rule_trigger_destination_account_nr_is' => 'Рахунок призначення / IBAN ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Рахунок призначення / IBAN містить..', - 'rule_trigger_destination_account_nr_contains' => 'Рахунок призначення / IBAN містить ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Транзакція має тип..', - 'rule_trigger_transaction_type' => 'Тип операції ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Категорія є..', - 'rule_trigger_category_is' => 'Категорія дорівнює ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Сума менша або дорівнює ..', - 'rule_trigger_amount_less' => 'Сума менша або дорівнює :trigger_value', - 'rule_trigger_amount_is_choice' => 'Сума..', - 'rule_trigger_amount_is' => 'Сума :trigger_value', - 'rule_trigger_amount_more_choice' => 'Сума більше або дорівнює..', - 'rule_trigger_amount_more' => 'Сума більше або дорівнює :trigger_value', - 'rule_trigger_description_starts_choice' => 'Опис починається з..', - 'rule_trigger_description_starts' => 'Опис починається з ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Опис закінчується на..', - 'rule_trigger_description_ends' => 'Опис закінчується ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Опис містить..', - 'rule_trigger_description_contains' => 'Опис містить ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Опис..', - 'rule_trigger_description_is' => 'Опис ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Дата операції..', - 'rule_trigger_date_on' => 'Дата операції ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Дата операції раніше..', - 'rule_trigger_date_before' => 'Дата операції раніше ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Дата операції пізніше..', - 'rule_trigger_date_after' => 'Дата транзакції після ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Операція була створена..', - 'rule_trigger_created_at_on' => 'Операція була створена ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Операція була відредагована..', - 'rule_trigger_updated_at_on' => 'Операція була відредагована ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Бюджет..', - 'rule_trigger_budget_is' => 'Бюджет ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Будь-яка мітка..', - 'rule_trigger_tag_is' => 'Будь-яка мітка ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Валюти транзакцій є..', - 'rule_trigger_currency_is' => 'Валюта цієї транзакції ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Валюта транзакції є..', - 'rule_trigger_foreign_currency_is' => 'Валюта цієї транзакції ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Має принаймні цю кількість вкладень', - 'rule_trigger_has_attachments' => 'Має принаймні :trigger_value вкладення(ів)', - 'rule_trigger_has_no_category_choice' => 'Без категорії', - 'rule_trigger_has_no_category' => 'Транзакції без категорії', - 'rule_trigger_has_any_category_choice' => 'Має (будь-яку) категорію', - 'rule_trigger_has_any_category' => 'Транзакція має категорію (будь-яка)', - 'rule_trigger_has_no_budget_choice' => 'Немає пов\'язаного бюджету', - 'rule_trigger_has_no_budget' => 'Транзакція не має бюджету', - 'rule_trigger_has_any_budget_choice' => 'Має (будь-який) бюджет', - 'rule_trigger_has_any_budget' => 'Транзакція має бюджет (будь-який)', - 'rule_trigger_has_no_bill_choice' => 'Не має рахунків до сплати', - 'rule_trigger_has_no_bill' => 'Операція не має рахунків до сплати', - 'rule_trigger_has_any_bill_choice' => 'Має (якийсь) рахунок до сплати', - 'rule_trigger_has_any_bill' => 'Операція має (якийсь) рахунок до сплати', - 'rule_trigger_has_no_tag_choice' => 'Немає тегів', - 'rule_trigger_has_no_tag' => 'Транзакція не має тегів(ів)', - 'rule_trigger_has_any_tag_choice' => 'Є один або кілька тегів (будь-яких)', - 'rule_trigger_has_any_tag' => 'Транзакція має один або декілька (будь-який) тегів', - 'rule_trigger_any_notes_choice' => 'Має (будь-які) нотатки', - 'rule_trigger_any_notes' => 'Операція має (якісь) примітки', - 'rule_trigger_no_notes_choice' => 'Нотатки відсутні', - 'rule_trigger_no_notes' => 'Транзакція не містить нотаток', - 'rule_trigger_notes_is_choice' => 'Примітки..', - 'rule_trigger_notes_is' => 'Примітки ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Примітки містять..', - 'rule_trigger_notes_contains' => 'Примітки містять ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Примітки починаються з..', - 'rule_trigger_notes_starts' => 'Примітки починаються з ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Примітки завершуються на..', - 'rule_trigger_notes_ends' => 'Примітки завершуються на ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Рахунок до сплати..', - 'rule_trigger_bill_is' => 'Рахунок до сплати ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'Зовнішній ID містить..', - 'rule_trigger_external_id_is' => 'Зовнішній ідентифікатор ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Внутрішнє посилання - це..', - 'rule_trigger_internal_reference_is' => 'Внутрішнє посилання ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Ідентифікатор журналу операцій є..', - 'rule_trigger_journal_id' => 'Ідентифікатор журналу операцій є ":trigger_value"', - 'rule_trigger_any_external_url' => 'Операція має (якусь) зовнішню URL-адресу', - 'rule_trigger_any_external_url_choice' => 'Операція має (якусь) зовнішню URL-адресу', - 'rule_trigger_any_external_id' => 'Операція має (якийсь) зовнішній ID', - 'rule_trigger_any_external_id_choice' => 'Операція має (якийсь) зовнішній ID', - 'rule_trigger_no_external_url_choice' => 'Операція не має зовнішньої URL-адреси', - 'rule_trigger_no_external_url' => 'Операція не має зовнішньої URL-адреси', - 'rule_trigger_no_external_id_choice' => 'Операція не має зовнішнього ID', - 'rule_trigger_no_external_id' => 'Операція не має зовнішнього ID', - 'rule_trigger_id_choice' => 'Ідентифікатор операції..', - 'rule_trigger_id' => 'Ідентифікатор операції: ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT дорівнює..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT це ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Ім\'я вихідного рахунку починається з ": value"..', + 'rule_trigger_source_account_starts' => 'Назва джерела рахунку починається з ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Назва джерела рахунку закінчується на..', + 'rule_trigger_source_account_ends' => 'Назва джерела рахунку закінчується на ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Ім\'я вихідного рахунку містить..', + 'rule_trigger_source_account_is' => 'Назва джерела рахунку ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Назва джерела рахунку містить..', + 'rule_trigger_source_account_contains' => 'Назва джерела рахунку містить ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Ідентифікація будь-якого рахунку є точною..', + 'rule_trigger_account_id' => 'Ідентифікатор рахунку є саме :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Ідентифікація будь-якого джерела рахунку є точною..', + 'rule_trigger_source_account_id' => 'Ідентифікатор джерела рахунку є саме :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Ідентифікація рахунку призначення є точною..', + 'rule_trigger_destination_account_id' => 'Ідентифікатор рахунку призначення є саме :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Будь-який рахунок є готівковим', + 'rule_trigger_account_is_cash' => 'Будь-який рахунок є готівковим', + 'rule_trigger_source_is_cash_choice' => "Джерелом рахунком є \u{200b}\u{200b}(готівковий) рахунок", + 'rule_trigger_source_is_cash' => "Джерелом рахунком є \u{200b}\u{200b}(готівковий) рахунок", + 'rule_trigger_destination_is_cash_choice' => "Рахунком призначення є \u{200b}\u{200b}(готівковий) рахунок", + 'rule_trigger_destination_is_cash' => "Рахунком призначення є \u{200b}\u{200b}(готівковий) рахунок", + 'rule_trigger_source_account_nr_starts_choice' => 'Номер джерела рахунку / IBAN починається з..', + 'rule_trigger_source_account_nr_starts' => 'Номер джерела рахунку / IBAN починається з ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Номер рахунку призначення / IBAN закінчується на..', + 'rule_trigger_source_account_nr_ends' => 'Номер рахунку призначення / IBAN закінчується на ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Номер джерела рахунку / IBAN є..', + 'rule_trigger_source_account_nr_is' => 'Номер джерела рахунку / IBAN є ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Номер джерела рахунку / IBAN містить..', + 'rule_trigger_source_account_nr_contains' => 'Номер джерела рахунку / IBAN ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Рахунок призначення починається з..', + 'rule_trigger_destination_account_starts' => 'Рахунок призначення починається з ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Рахунок призначення закінчується на..', + 'rule_trigger_destination_account_ends' => 'Рахунок призначення закінчується на ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Рахунок-одержувач..', + 'rule_trigger_destination_account_is' => 'Рахунок-одержувач ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Ім\'я рахуноку-одержувача містить..', + 'rule_trigger_destination_account_contains' => 'Ім\'я рахуноку-одержувача містить ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Рахунок призначення / IBAN починається з..', + 'rule_trigger_destination_account_nr_starts' => 'Рахунок призначення / IBAN починається з ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Рахунок призначення / IBAN закінчується на..', + 'rule_trigger_destination_account_nr_ends' => 'Рахунок призначення / IBAN закінчується на ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Рахунок призначення / IBAN..', + 'rule_trigger_destination_account_nr_is' => 'Рахунок призначення / IBAN ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Рахунок призначення / IBAN містить..', + 'rule_trigger_destination_account_nr_contains' => 'Рахунок призначення / IBAN містить ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Транзакція має тип..', + 'rule_trigger_transaction_type' => 'Тип операції ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Категорія є..', + 'rule_trigger_category_is' => 'Категорія дорівнює ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Сума менша або дорівнює ..', + 'rule_trigger_amount_less' => 'Сума менша або дорівнює :trigger_value', + 'rule_trigger_amount_is_choice' => 'Сума..', + 'rule_trigger_amount_is' => 'Сума :trigger_value', + 'rule_trigger_amount_more_choice' => 'Сума більше або дорівнює..', + 'rule_trigger_amount_more' => 'Сума більше або дорівнює :trigger_value', + 'rule_trigger_description_starts_choice' => 'Опис починається з..', + 'rule_trigger_description_starts' => 'Опис починається з ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Опис закінчується на..', + 'rule_trigger_description_ends' => 'Опис закінчується ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Опис містить..', + 'rule_trigger_description_contains' => 'Опис містить ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Опис..', + 'rule_trigger_description_is' => 'Опис ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Дата операції..', + 'rule_trigger_date_on' => 'Дата операції ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Дата операції раніше..', + 'rule_trigger_date_before' => 'Дата операції раніше ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Дата операції пізніше..', + 'rule_trigger_date_after' => 'Дата транзакції після ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Операція була створена..', + 'rule_trigger_created_at_on' => 'Операція була створена ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Операція була відредагована..', + 'rule_trigger_updated_at_on' => 'Операція була відредагована ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Бюджет..', + 'rule_trigger_budget_is' => 'Бюджет ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Будь-яка мітка..', + 'rule_trigger_tag_is' => 'Будь-яка мітка ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Валюти транзакцій є..', + 'rule_trigger_currency_is' => 'Валюта цієї транзакції ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Валюта транзакції є..', + 'rule_trigger_foreign_currency_is' => 'Валюта цієї транзакції ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Має принаймні цю кількість вкладень', + 'rule_trigger_has_attachments' => 'Має принаймні :trigger_value вкладення(ів)', + 'rule_trigger_has_no_category_choice' => 'Без категорії', + 'rule_trigger_has_no_category' => 'Транзакції без категорії', + 'rule_trigger_has_any_category_choice' => 'Має (будь-яку) категорію', + 'rule_trigger_has_any_category' => 'Транзакція має категорію (будь-яка)', + 'rule_trigger_has_no_budget_choice' => 'Немає пов\'язаного бюджету', + 'rule_trigger_has_no_budget' => 'Транзакція не має бюджету', + 'rule_trigger_has_any_budget_choice' => 'Має (будь-який) бюджет', + 'rule_trigger_has_any_budget' => 'Транзакція має бюджет (будь-який)', + 'rule_trigger_has_no_bill_choice' => 'Не має рахунків до сплати', + 'rule_trigger_has_no_bill' => 'Операція не має рахунків до сплати', + 'rule_trigger_has_any_bill_choice' => 'Має (якийсь) рахунок до сплати', + 'rule_trigger_has_any_bill' => 'Операція має (якийсь) рахунок до сплати', + 'rule_trigger_has_no_tag_choice' => 'Немає тегів', + 'rule_trigger_has_no_tag' => 'Транзакція не має тегів(ів)', + 'rule_trigger_has_any_tag_choice' => 'Є один або кілька тегів (будь-яких)', + 'rule_trigger_has_any_tag' => 'Транзакція має один або декілька (будь-який) тегів', + 'rule_trigger_any_notes_choice' => 'Має (будь-які) нотатки', + 'rule_trigger_any_notes' => 'Операція має (якісь) примітки', + 'rule_trigger_no_notes_choice' => 'Нотатки відсутні', + 'rule_trigger_no_notes' => 'Транзакція не містить нотаток', + 'rule_trigger_notes_is_choice' => 'Примітки..', + 'rule_trigger_notes_is' => 'Примітки ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Примітки містять..', + 'rule_trigger_notes_contains' => 'Примітки містять ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Примітки починаються з..', + 'rule_trigger_notes_starts' => 'Примітки починаються з ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Примітки завершуються на..', + 'rule_trigger_notes_ends' => 'Примітки завершуються на ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Рахунок до сплати..', + 'rule_trigger_bill_is' => 'Рахунок до сплати ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'Зовнішній ID містить..', + 'rule_trigger_external_id_is' => 'Зовнішній ідентифікатор ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Внутрішнє посилання - це..', + 'rule_trigger_internal_reference_is' => 'Внутрішнє посилання ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Ідентифікатор журналу операцій є..', + 'rule_trigger_journal_id' => 'Ідентифікатор журналу операцій є ":trigger_value"', + 'rule_trigger_any_external_url' => 'Операція має (якусь) зовнішню URL-адресу', + 'rule_trigger_any_external_url_choice' => 'Операція має (якусь) зовнішню URL-адресу', + 'rule_trigger_any_external_id' => 'Операція має (якийсь) зовнішній ID', + 'rule_trigger_any_external_id_choice' => 'Операція має (якийсь) зовнішній ID', + 'rule_trigger_no_external_url_choice' => 'Операція не має зовнішньої URL-адреси', + 'rule_trigger_no_external_url' => 'Операція не має зовнішньої URL-адреси', + 'rule_trigger_no_external_id_choice' => 'Операція не має зовнішнього ID', + 'rule_trigger_no_external_id' => 'Операція не має зовнішнього ID', + 'rule_trigger_id_choice' => 'Ідентифікатор операції..', + 'rule_trigger_id' => 'Ідентифікатор операції: ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT дорівнює..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT це ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'Дія користувача: ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'Міток немає..', - 'rule_trigger_tag_is_not' => 'Міток немає ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Будь-який рахунок є точним..', - 'rule_trigger_account_is' => 'Будь-який рахунок є точним ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Будь-який рахунок містить..', - 'rule_trigger_account_contains' => 'Будь-який рахунок містить ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Будь-який рахунок закінчується на..', - 'rule_trigger_account_ends' => 'Будь-який обліковий запис закінчується на ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Будь-який рахунок починається з..', - 'rule_trigger_account_starts' => 'Будь-який рахунок починається з ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Будь-який номер рахунку / IBAN є..', - 'rule_trigger_account_nr_is' => 'Будь-який номер рахунку / IBAN є ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Будь-який номер рахунку / IBAN містить..', - 'rule_trigger_account_nr_contains' => 'Будь-який номер рахунку / IBAN містить ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Будь-який номер рахунку/IBAN закінчується на..', - 'rule_trigger_account_nr_ends' => 'Будь-який номер рахунку/IBAN закінчується на ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Будь-який номер рахунку/IBAN починається з..', - 'rule_trigger_account_nr_starts' => 'Будь-який номер рахунку/IBAN починається з ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Категорія містить..', - 'rule_trigger_category_contains' => 'Категорія містить ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Категорія закінчується на..', - 'rule_trigger_category_ends' => 'Категорія закінчується на ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Категорія починається з..', - 'rule_trigger_category_starts' => 'Категорія починається з ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Бюджет містить..', - 'rule_trigger_budget_contains' => 'Бюджет містить ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Бюджет закінчується на..', - 'rule_trigger_budget_ends' => 'Бюджет закінчується на ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Бюджет починається з..', - 'rule_trigger_budget_starts' => 'Бюджет починається з ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Рахунок до сплати містить..', - 'rule_trigger_bill_contains' => 'Рахунок до сплати містить ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Рахунок до сплати закінчується на..', - 'rule_trigger_bill_ends' => 'Рахунок до сплати закінчується на ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Рахунок до сплати починається з..', - 'rule_trigger_bill_starts' => 'Рахунок до сплати починається з ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'Зовнішній ID містить..', - 'rule_trigger_external_id_contains' => 'Зовнішній ID містить ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'Зовнішній ідентифікатор закінчується на..', - 'rule_trigger_external_id_ends' => 'Зовнішній ідентифікатор закінчується ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'Зовнішній ідентифікатор починається з..', - 'rule_trigger_external_id_starts' => 'Зовнішній ідентифікатор починається з ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Внутрішнє посилання містить..', - 'rule_trigger_internal_reference_contains' => 'Внутрішнє посилання містить ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Внутрішнє посилання закінчується на..', - 'rule_trigger_internal_reference_ends' => 'Внутрішнє посилання закінчується на ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Внутрішнє посилання починається з..', - 'rule_trigger_internal_reference_starts' => 'Внутрішнє посилання починається з ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'Зовнішня URL-адреса..', - 'rule_trigger_external_url_is' => 'Зовнішня URL-адреса ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'Зовнішня URL-адреса містить..', - 'rule_trigger_external_url_contains' => 'Зовнішня URL-адреса містить ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'Зовнішня URL-адреса закінчується на..', - 'rule_trigger_external_url_ends' => 'Зовнішня URL-адреса закінчується на ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'Зовнішня URL-адреса починається з..', - 'rule_trigger_external_url_starts' => 'Зовнішня URL-адреса починається з ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Не має вкладень', - 'rule_trigger_has_no_attachments' => 'Операція не має вкладень', - 'rule_trigger_recurrence_id_choice' => 'Ідентифікатор повторюваної транзакції..', - 'rule_trigger_recurrence_id' => 'Ідентифікатор повторюваної транзакції ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Дата нарахування відсотків..', - 'rule_trigger_interest_date_on' => 'Дата нарахування відсотків ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Дата нарахування відсотків раніше..', - 'rule_trigger_interest_date_before' => 'Дата нарахування відсотків раніше ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Дата нарахування відсотків після..', - 'rule_trigger_interest_date_after' => 'Дата нарахування відсотків після ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Дата книги..', - 'rule_trigger_book_date_on' => 'Дата книги ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Дата книги раніше..', - 'rule_trigger_book_date_before' => 'Дата книги раніше ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Дата книги після..', - 'rule_trigger_book_date_after' => 'Дата книги після ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Дата обробки..', - 'rule_trigger_process_date_on' => 'Дата обробки ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Дата обробки раніше..', - 'rule_trigger_process_date_before' => 'Дата обробки раніше ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Дата обробки після..', - 'rule_trigger_process_date_after' => 'Дата обробки після ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Термін погашення..', - 'rule_trigger_due_date_on' => 'Термін погашення ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Термін погашення раніше..', - 'rule_trigger_due_date_before' => 'Термін погашення раніше ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Термін погашення після..', - 'rule_trigger_due_date_after' => 'Термін погашення після ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Дата оплати..', - 'rule_trigger_payment_date_on' => 'Дата оплати ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Дата оплати раніше..', - 'rule_trigger_payment_date_before' => 'Дата оплати раніше ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Дата оплати після..', - 'rule_trigger_payment_date_after' => 'Дата платежу після ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Дата виставлення рахунку вказана..', - 'rule_trigger_invoice_date_on' => 'Дата виставлення рахунку вказана ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Дата рахунка-фактури передує..', - 'rule_trigger_invoice_date_before' => 'Дата рахунка-фактури передує ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Дата рахунка-фактури після..', - 'rule_trigger_invoice_date_after' => 'Дата рахунка-фактури після ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Операція була створена раніше..', - 'rule_trigger_created_at_before' => 'Трансакція була створена раніше ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Операцію було створено після..', - 'rule_trigger_created_at_after' => 'Операцію було створено після ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Операцію востаннє оновлено раніше..', - 'rule_trigger_updated_at_before' => 'Операцію востаннє оновлено раніше ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Операцію востаннє оновлено після..', - 'rule_trigger_updated_at_after' => 'Операцію востаннє оновлено після ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Сума в валюті точно..', - 'rule_trigger_foreign_amount_is' => 'Сума в валюті точно ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Сума в валюті менше ніж..', - 'rule_trigger_foreign_amount_less' => 'Сума в валюті менше ніж ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Сума в валюті більше ніж..', - 'rule_trigger_foreign_amount_more' => 'Сума в валюті більше ніж ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Ім\'я будь-якого вкладеного файлу..', - 'rule_trigger_attachment_name_is' => 'Ім\'я будь-якого вкладеного файлу ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Будь-яке ім\'я вкладення містить..', - 'rule_trigger_attachment_name_contains' => 'Будь-яке ім\'я вкладення містить ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Будь-яке ім’я вкладення починається з..', - 'rule_trigger_attachment_name_starts' => 'Будь-яке ім’я вкладення починається з ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Будь-яке ім’я вкладення закінчується на..', - 'rule_trigger_attachment_name_ends' => 'Будь-яке ім’я вкладення закінчується на ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Будь-які примітки до вкладень є..', - 'rule_trigger_attachment_notes_are' => 'Будь-які примітки до вкладень є ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Будь-які примітки до вкладення містять..', - 'rule_trigger_attachment_notes_contains' => 'Будь-які примітки до вкладення містять ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Будь-які примітки до вкладення починаються з..', - 'rule_trigger_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Будь-які примітки до вкладення закінчуються на..', - 'rule_trigger_attachment_notes_ends' => 'Будь-які примітки до вкладення закінчуються на ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Операція узгоджена', - 'rule_trigger_reconciled' => 'Операція узгоджена', - 'rule_trigger_exists_choice' => 'Будь-яка трансакція збігається(!)', - 'rule_trigger_exists' => 'Будь-яка трансакція збігається', + 'rule_trigger_user_action_choice' => 'Дія користувача: ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'Міток немає..', + 'rule_trigger_tag_is_not' => 'Міток немає ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Будь-який рахунок є точним..', + 'rule_trigger_account_is' => 'Будь-який рахунок є точним ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Будь-який рахунок містить..', + 'rule_trigger_account_contains' => 'Будь-який рахунок містить ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Будь-який рахунок закінчується на..', + 'rule_trigger_account_ends' => 'Будь-який обліковий запис закінчується на ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Будь-який рахунок починається з..', + 'rule_trigger_account_starts' => 'Будь-який рахунок починається з ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Будь-який номер рахунку / IBAN є..', + 'rule_trigger_account_nr_is' => 'Будь-який номер рахунку / IBAN є ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Будь-який номер рахунку / IBAN містить..', + 'rule_trigger_account_nr_contains' => 'Будь-який номер рахунку / IBAN містить ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Будь-який номер рахунку/IBAN закінчується на..', + 'rule_trigger_account_nr_ends' => 'Будь-який номер рахунку/IBAN закінчується на ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Будь-який номер рахунку/IBAN починається з..', + 'rule_trigger_account_nr_starts' => 'Будь-який номер рахунку/IBAN починається з ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Категорія містить..', + 'rule_trigger_category_contains' => 'Категорія містить ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Категорія закінчується на..', + 'rule_trigger_category_ends' => 'Категорія закінчується на ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Категорія починається з..', + 'rule_trigger_category_starts' => 'Категорія починається з ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Бюджет містить..', + 'rule_trigger_budget_contains' => 'Бюджет містить ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Бюджет закінчується на..', + 'rule_trigger_budget_ends' => 'Бюджет закінчується на ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Бюджет починається з..', + 'rule_trigger_budget_starts' => 'Бюджет починається з ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Рахунок до сплати містить..', + 'rule_trigger_bill_contains' => 'Рахунок до сплати містить ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Рахунок до сплати закінчується на..', + 'rule_trigger_bill_ends' => 'Рахунок до сплати закінчується на ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Рахунок до сплати починається з..', + 'rule_trigger_bill_starts' => 'Рахунок до сплати починається з ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'Зовнішній ID містить..', + 'rule_trigger_external_id_contains' => 'Зовнішній ID містить ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'Зовнішній ідентифікатор закінчується на..', + 'rule_trigger_external_id_ends' => 'Зовнішній ідентифікатор закінчується ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'Зовнішній ідентифікатор починається з..', + 'rule_trigger_external_id_starts' => 'Зовнішній ідентифікатор починається з ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Внутрішнє посилання містить..', + 'rule_trigger_internal_reference_contains' => 'Внутрішнє посилання містить ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Внутрішнє посилання закінчується на..', + 'rule_trigger_internal_reference_ends' => 'Внутрішнє посилання закінчується на ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Внутрішнє посилання починається з..', + 'rule_trigger_internal_reference_starts' => 'Внутрішнє посилання починається з ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'Зовнішня URL-адреса..', + 'rule_trigger_external_url_is' => 'Зовнішня URL-адреса ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'Зовнішня URL-адреса містить..', + 'rule_trigger_external_url_contains' => 'Зовнішня URL-адреса містить ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'Зовнішня URL-адреса закінчується на..', + 'rule_trigger_external_url_ends' => 'Зовнішня URL-адреса закінчується на ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'Зовнішня URL-адреса починається з..', + 'rule_trigger_external_url_starts' => 'Зовнішня URL-адреса починається з ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Не має вкладень', + 'rule_trigger_has_no_attachments' => 'Операція не має вкладень', + 'rule_trigger_recurrence_id_choice' => 'Ідентифікатор повторюваної транзакції..', + 'rule_trigger_recurrence_id' => 'Ідентифікатор повторюваної транзакції ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Дата нарахування відсотків..', + 'rule_trigger_interest_date_on' => 'Дата нарахування відсотків ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Дата нарахування відсотків раніше..', + 'rule_trigger_interest_date_before' => 'Дата нарахування відсотків раніше ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Дата нарахування відсотків після..', + 'rule_trigger_interest_date_after' => 'Дата нарахування відсотків після ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Дата книги..', + 'rule_trigger_book_date_on' => 'Дата книги ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Дата книги раніше..', + 'rule_trigger_book_date_before' => 'Дата книги раніше ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Дата книги після..', + 'rule_trigger_book_date_after' => 'Дата книги після ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Дата обробки..', + 'rule_trigger_process_date_on' => 'Дата обробки ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Дата обробки раніше..', + 'rule_trigger_process_date_before' => 'Дата обробки раніше ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Дата обробки після..', + 'rule_trigger_process_date_after' => 'Дата обробки після ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Термін погашення..', + 'rule_trigger_due_date_on' => 'Термін погашення ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Термін погашення раніше..', + 'rule_trigger_due_date_before' => 'Термін погашення раніше ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Термін погашення після..', + 'rule_trigger_due_date_after' => 'Термін погашення після ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Дата оплати..', + 'rule_trigger_payment_date_on' => 'Дата оплати ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Дата оплати раніше..', + 'rule_trigger_payment_date_before' => 'Дата оплати раніше ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Дата оплати після..', + 'rule_trigger_payment_date_after' => 'Дата платежу після ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Дата виставлення рахунку вказана..', + 'rule_trigger_invoice_date_on' => 'Дата виставлення рахунку вказана ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Дата рахунка-фактури передує..', + 'rule_trigger_invoice_date_before' => 'Дата рахунка-фактури передує ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Дата рахунка-фактури після..', + 'rule_trigger_invoice_date_after' => 'Дата рахунка-фактури після ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Операція була створена раніше..', + 'rule_trigger_created_at_before' => 'Трансакція була створена раніше ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Операцію було створено після..', + 'rule_trigger_created_at_after' => 'Операцію було створено після ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Операцію востаннє оновлено раніше..', + 'rule_trigger_updated_at_before' => 'Операцію востаннє оновлено раніше ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Операцію востаннє оновлено після..', + 'rule_trigger_updated_at_after' => 'Операцію востаннє оновлено після ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Сума в валюті точно..', + 'rule_trigger_foreign_amount_is' => 'Сума в валюті точно ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Сума в валюті менше ніж..', + 'rule_trigger_foreign_amount_less' => 'Сума в валюті менше ніж ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Сума в валюті більше ніж..', + 'rule_trigger_foreign_amount_more' => 'Сума в валюті більше ніж ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Ім\'я будь-якого вкладеного файлу..', + 'rule_trigger_attachment_name_is' => 'Ім\'я будь-якого вкладеного файлу ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Будь-яке ім\'я вкладення містить..', + 'rule_trigger_attachment_name_contains' => 'Будь-яке ім\'я вкладення містить ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Будь-яке ім’я вкладення починається з..', + 'rule_trigger_attachment_name_starts' => 'Будь-яке ім’я вкладення починається з ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Будь-яке ім’я вкладення закінчується на..', + 'rule_trigger_attachment_name_ends' => 'Будь-яке ім’я вкладення закінчується на ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Будь-які примітки до вкладень є..', + 'rule_trigger_attachment_notes_are' => 'Будь-які примітки до вкладень є ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Будь-які примітки до вкладення містять..', + 'rule_trigger_attachment_notes_contains' => 'Будь-які примітки до вкладення містять ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Будь-які примітки до вкладення починаються з..', + 'rule_trigger_attachment_notes_starts' => 'Будь-які примітки до вкладення починаються з ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Будь-які примітки до вкладення закінчуються на..', + 'rule_trigger_attachment_notes_ends' => 'Будь-які примітки до вкладення закінчуються на ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Операція узгоджена', + 'rule_trigger_reconciled' => 'Операція узгоджена', + 'rule_trigger_exists_choice' => 'Будь-яка трансакція збігається(!)', + 'rule_trigger_exists' => 'Будь-яка трансакція збігається', // more values for new types: - 'rule_trigger_not_account_id' => 'Ідентифікатор рахунку не ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Ідентифікатор джерела рахунку не ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Ідентифікатор рахунку призначення не є ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Тип операції не ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Тег не ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Тег ":trigger_value"', - 'rule_trigger_not_description_is' => 'Опис не ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Опис не містить', - 'rule_trigger_not_description_ends' => 'Опис не закінчується на ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Опис не починається з ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Примітки не ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Примітки не містять ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Нотатки не закінчуються на ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Нотатки розпочинаються не з ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Джерело рахунку не ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Джерело рахунку не містить ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Джерело рахунку не закінчується на ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Джерело рахунку не починається з ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Номер джерела рахунку / IBAN не ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Номер джерела рахунку / IBAN не містить ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Номер джерела рахунку / IBAN не закінчується на ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Номер джерела рахунку / IBAN не починається з ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Рахунок призначення не ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Рахунок призначення не містить ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Рахунок призначення не закінчується на ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Рахунок призначення не починається з ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Номер джерела рахунку / IBAN не ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Номер джерела рахунку / IBAN не містить ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Номер джерела рахунку / IBAN не закінчується на ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Номер джерела рахунку / IBAN не починається з ":trigger_value"', - 'rule_trigger_not_account_is' => 'Жодного рахунку ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Жодного рахунку який містить ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Жоден рахунок не закінчується ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Жоден рахунок не починається ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Жодного рахунку з номером / IBAN ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Жодного рахунку з номером / IBAN який містить ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Жодного рахунку з номером / IBAN який закінчується ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Жодного рахунку з номером / IBAN який починається ":trigger_value"', - 'rule_trigger_not_category_is' => 'Категорія не є ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Категорія не містить ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Категорія не закінчується на ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Категорія не починається з ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Бюджет не ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Бюджет не включає ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Бюджет не закінчується на ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Бюджет не починається з ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Рахунок до сплати не ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Рахунок до сплати не містить ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Рахунок до сплати не закінчується ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Рахунок до сплати не закінчується з ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'Зовнішній ідентифікатор не ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'Зовнішній ідентифікатор не містить ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'Зовнішній ідентифікатор не закінчується на ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'Зовнішній ідентифікатор не починається з ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Внутрішнє посилання не ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Внутрішнє посилання не містить ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Внутрішнє посилання не закінчується на ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Внутрішнє посилання не починається з ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'Зовнішня URL-адреса не ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'Зовнішня URL-адреса не містить ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'Зовнішня URL-адреса не закінчується на ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'Зовнішня URL-адреса не починається з ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Валюта не ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Валюта не ":trigger_value"', - 'rule_trigger_not_id' => 'Ідентифікатор операції не ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Ідентифікатор журналу операцій не ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Ідентифікатор повторення не ":trigger_value"', - 'rule_trigger_not_date_on' => 'Дата не ":trigger_value"', - 'rule_trigger_not_date_before' => 'Дата не раніше ":trigger_value"', - 'rule_trigger_not_date_after' => 'Дата не пізніше ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Дата нарахування відсотків не ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Дата нарахування відсотків не раніше ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Дата нарахування відсотків не пізніше ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Дата книги не ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Дата книги не раніше ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Дата книги не пізніше ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Дата обробки не ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Дата обробки не раніше ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Дата обробки не пізніше ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Термін виконання не ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Термін виконання не раніше ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Термін виконання не пізніше ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Дата платежу не ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Дата платежу не раніше ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Дата платежу не пізніше ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Дата рахунка-фактури не ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Дата рахунку-фактури не раніше ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Дата рахунку-фактури не пізніше ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Операція не створена ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Операція не створена раніше ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Операція не створена пізніше ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Операція не оновлена ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Операція не оновлена раніше ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Операція не оновлена після ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Сума операції не ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Сума операції перевищує ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Сума операції менша за ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Сума операції в валюті не ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Сума операції в валюті більша за ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Сума операції в валюті не перевищує ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'Немає вкладень з назвою ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'Ім\'я вкладення не містить ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'Ім\'я вкладення починається з ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'Ім\'я вкладення закінчується на ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'Немає примітки до вкладення ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'Примітки до вкладень не містять ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'Немає приміток вкладення починаючогося з ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'Немає приміток вкладення закінчуючогося на ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Операція не узгоджена', - 'rule_trigger_not_exists' => 'Операція не існує', - 'rule_trigger_not_has_attachments' => 'Операція не має вкладень', - 'rule_trigger_not_has_any_category' => 'Операція не має категорії', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Операція не має рахунків до сплати', - 'rule_trigger_not_has_any_tag' => 'Операція не має тегів', - 'rule_trigger_not_any_notes' => 'Операція не містить приміток', - 'rule_trigger_not_any_external_url' => 'Операція не має зовнішньої URL-адреси', - 'rule_trigger_not_has_no_attachments' => 'Операція має (деякі) вкладення', - 'rule_trigger_not_has_no_category' => 'Операція має (деяку) категорію', - 'rule_trigger_not_has_no_budget' => 'Операція має (деякий) бюджет', - 'rule_trigger_not_has_no_bill' => 'Операція має (деякий) рахунок до сплати', - 'rule_trigger_not_has_no_tag' => 'Операція має (деякий) тег', - 'rule_trigger_not_no_notes' => 'Операція має примітки', - 'rule_trigger_not_no_external_url' => 'Операція має зовнішню URL-адресу', - 'rule_trigger_not_source_is_cash' => 'Джерелом рахунка не є готівковий рахунок', - 'rule_trigger_not_destination_is_cash' => 'Рахунком призначення не є готівковий рахунок', - 'rule_trigger_not_account_is_cash' => 'Жоден рахунок не є готівковим', + 'rule_trigger_not_account_id' => 'Ідентифікатор рахунку не ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Ідентифікатор джерела рахунку не ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Ідентифікатор рахунку призначення не є ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Тип операції не ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Тег не ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Тег ":trigger_value"', + 'rule_trigger_not_description_is' => 'Опис не ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Опис не містить', + 'rule_trigger_not_description_ends' => 'Опис не закінчується на ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Опис не починається з ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Примітки не ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Примітки не містять ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Нотатки не закінчуються на ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Нотатки розпочинаються не з ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Джерело рахунку не ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Джерело рахунку не містить ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Джерело рахунку не закінчується на ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Джерело рахунку не починається з ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Номер джерела рахунку / IBAN не ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Номер джерела рахунку / IBAN не містить ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Номер джерела рахунку / IBAN не закінчується на ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Номер джерела рахунку / IBAN не починається з ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Рахунок призначення не ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Рахунок призначення не містить ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Рахунок призначення не закінчується на ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Рахунок призначення не починається з ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Номер джерела рахунку / IBAN не ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Номер джерела рахунку / IBAN не містить ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Номер джерела рахунку / IBAN не закінчується на ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Номер джерела рахунку / IBAN не починається з ":trigger_value"', + 'rule_trigger_not_account_is' => 'Жодного рахунку ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Жодного рахунку який містить ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Жоден рахунок не закінчується ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Жоден рахунок не починається ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Жодного рахунку з номером / IBAN ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Жодного рахунку з номером / IBAN який містить ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Жодного рахунку з номером / IBAN який закінчується ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Жодного рахунку з номером / IBAN який починається ":trigger_value"', + 'rule_trigger_not_category_is' => 'Категорія не є ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Категорія не містить ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Категорія не закінчується на ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Категорія не починається з ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Бюджет не ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Бюджет не включає ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Бюджет не закінчується на ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Бюджет не починається з ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Рахунок до сплати не ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Рахунок до сплати не містить ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Рахунок до сплати не закінчується ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Рахунок до сплати не закінчується з ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'Зовнішній ідентифікатор не ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'Зовнішній ідентифікатор не містить ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'Зовнішній ідентифікатор не закінчується на ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'Зовнішній ідентифікатор не починається з ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Внутрішнє посилання не ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Внутрішнє посилання не містить ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Внутрішнє посилання не закінчується на ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Внутрішнє посилання не починається з ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'Зовнішня URL-адреса не ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'Зовнішня URL-адреса не містить ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'Зовнішня URL-адреса не закінчується на ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'Зовнішня URL-адреса не починається з ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Валюта не ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Валюта не ":trigger_value"', + 'rule_trigger_not_id' => 'Ідентифікатор операції не ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Ідентифікатор журналу операцій не ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Ідентифікатор повторення не ":trigger_value"', + 'rule_trigger_not_date_on' => 'Дата не ":trigger_value"', + 'rule_trigger_not_date_before' => 'Дата не раніше ":trigger_value"', + 'rule_trigger_not_date_after' => 'Дата не пізніше ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Дата нарахування відсотків не ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Дата нарахування відсотків не раніше ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Дата нарахування відсотків не пізніше ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Дата книги не ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Дата книги не раніше ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Дата книги не пізніше ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Дата обробки не ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Дата обробки не раніше ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Дата обробки не пізніше ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Термін виконання не ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Термін виконання не раніше ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Термін виконання не пізніше ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Дата платежу не ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Дата платежу не раніше ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Дата платежу не пізніше ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Дата рахунка-фактури не ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Дата рахунку-фактури не раніше ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Дата рахунку-фактури не пізніше ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Операція не створена ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Операція не створена раніше ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Операція не створена пізніше ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Операція не оновлена ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Операція не оновлена раніше ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Операція не оновлена після ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Сума операції не ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Сума операції перевищує ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Сума операції менша за ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Сума операції в валюті не ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Сума операції в валюті більша за ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Сума операції в валюті не перевищує ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'Немає вкладень з назвою ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'Ім\'я вкладення не містить ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'Ім\'я вкладення починається з ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'Ім\'я вкладення закінчується на ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'Немає примітки до вкладення ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'Примітки до вкладень не містять ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'Немає приміток вкладення починаючогося з ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'Немає приміток вкладення закінчуючогося на ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Операція не узгоджена', + 'rule_trigger_not_exists' => 'Операція не існує', + 'rule_trigger_not_has_attachments' => 'Операція не має вкладень', + 'rule_trigger_not_has_any_category' => 'Операція не має категорії', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Операція не має рахунків до сплати', + 'rule_trigger_not_has_any_tag' => 'Операція не має тегів', + 'rule_trigger_not_any_notes' => 'Операція не містить приміток', + 'rule_trigger_not_any_external_url' => 'Операція не має зовнішньої URL-адреси', + 'rule_trigger_not_has_no_attachments' => 'Операція має (деякі) вкладення', + 'rule_trigger_not_has_no_category' => 'Операція має (деяку) категорію', + 'rule_trigger_not_has_no_budget' => 'Операція має (деякий) бюджет', + 'rule_trigger_not_has_no_bill' => 'Операція має (деякий) рахунок до сплати', + 'rule_trigger_not_has_no_tag' => 'Операція має (деякий) тег', + 'rule_trigger_not_no_notes' => 'Операція має примітки', + 'rule_trigger_not_no_external_url' => 'Операція має зовнішню URL-адресу', + 'rule_trigger_not_source_is_cash' => 'Джерелом рахунка не є готівковий рахунок', + 'rule_trigger_not_destination_is_cash' => 'Рахунком призначення не є готівковий рахунок', + 'rule_trigger_not_account_is_cash' => 'Жоден рахунок не є готівковим', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'ВИДАЛИТИ операцію(!)', - 'rule_action_delete_transaction' => 'ВИДАЛИТИ операцію(!)', - 'rule_action_set_category' => 'Вибрати категорію ":action_value"', - 'rule_action_clear_category' => 'Звільнити поле "Категорія"', - 'rule_action_set_budget' => 'Встановити бюджет ":action_value"', - 'rule_action_clear_budget' => 'Видалити бюджет', - 'rule_action_add_tag' => 'Додати тег ":action_value"', - 'rule_action_remove_tag' => 'Видалити тег ":action_value"', - 'rule_action_remove_all_tags' => 'Видалити усі теги', - 'rule_action_set_description' => 'Вказати примітки до ":action_value"', - 'rule_action_append_description' => 'Додайте до опису ":action_value"', - 'rule_action_prepend_description' => 'Почніть опис з ":action_value"', - 'rule_action_set_category_choice' => 'Обрати категорію..', - 'rule_action_clear_category_choice' => 'Очистити всі категорії', - 'rule_action_set_budget_choice' => 'Встановити бюджет..', - 'rule_action_clear_budget_choice' => 'Очистити всі бюджети', - 'rule_action_add_tag_choice' => 'Додати тег..', - 'rule_action_remove_tag_choice' => 'Видалити тег..', - 'rule_action_remove_all_tags_choice' => 'Видалити усі теги', - 'rule_action_set_description_choice' => 'Встановити опис на..', - 'rule_action_update_piggy_choice' => 'Додати / видалити суму транзакції в скарбничці ..', - 'rule_action_update_piggy' => 'Додати/видалити суму транзакції в скарбничці ":action_value"', - 'rule_action_append_description_choice' => 'Доповнити опис з ..', - 'rule_action_prepend_description_choice' => 'Перед описом додати з ..', - 'rule_action_set_source_account_choice' => 'Встановити вихідний обліковий запис на ..', - 'rule_action_set_source_account' => 'Встановити вихідний обліковий запис на :action_value', - 'rule_action_set_destination_account_choice' => 'Вибрати цільовий рахунок..', - 'rule_action_set_destination_account' => 'Вибрати цільовий рахунок :action_value', - 'rule_action_append_notes_choice' => 'Додайте нотатки за допомогою ..', - 'rule_action_append_notes' => 'Додайте нотатки за допомогою ":action_value"', - 'rule_action_prepend_notes_choice' => 'Додайте до нотаток ..', - 'rule_action_prepend_notes' => 'Додайте до нотаток ":action_value"', - 'rule_action_clear_notes_choice' => 'Видаліть будь-які примітки', - 'rule_action_clear_notes' => 'Видаліть будь-які примітки', - 'rule_action_set_notes_choice' => 'Виберіть нотатки до ..', - 'rule_action_link_to_bill_choice' => 'Посилання на рахунок до сплати ..', - 'rule_action_link_to_bill' => 'Посилання на рахунок до сплати ":action_value"', - 'rule_action_switch_accounts_choice' => 'Поміняти місцями рахунки джерела та призначення (лише перекази!)', - 'rule_action_switch_accounts' => 'Поміняти місцями рахунки джерела та призначення', - 'rule_action_set_notes' => 'Вказати примітки до ":action_value"', - 'rule_action_convert_deposit_choice' => 'Перетворити операцію в депозит', - 'rule_action_convert_deposit' => 'Перетворити операцію в депозит з ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Перетворіть операцію на зняття', - 'rule_action_convert_withdrawal' => 'Перетворіть операцію на зняття в ":action_value"', - 'rule_action_convert_transfer_choice' => 'Перетворення операції на переказ', - 'rule_action_convert_transfer' => 'Перетворення операції на переказ з ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Додайте опис в примітках до операції', - 'rule_action_append_notes_to_descr_choice' => 'Додайте примітки до операції в описі', - 'rule_action_move_descr_to_notes_choice' => 'Замініть поточні примітки до операції в описі', - 'rule_action_move_notes_to_descr_choice' => 'Замініть поточні примітки до операції в описі', - 'rule_action_append_descr_to_notes' => 'Додайте опис в примітках', - 'rule_action_append_notes_to_descr' => 'Додайте примітки до опису', - 'rule_action_move_descr_to_notes' => 'Замініть примітки в описі', - 'rule_action_move_notes_to_descr' => 'Замініть примітки в описі', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Налаштувати цільовий рахунок як (готівковий)', - 'rule_action_set_source_to_cash_choice' => 'Налаштувати вихідний рахунок як (готівковий)', - 'rulegroup_for_bills_title' => 'Група правил для рахунків до сплати', - 'rulegroup_for_bills_description' => 'Спеціальна група правил для всіх правил, які стосуються рахунків до сплати.', - 'rule_for_bill_title' => 'Автоматично створене правило для рахунку до сплати ":name"', - 'rule_for_bill_description' => 'Це правило створюється автоматично, щоб спробувати зіставити рахунок до сплати ":name".', - 'create_rule_for_bill' => 'Створити нове правило для рахунку до сплати ":name"', - 'create_rule_for_bill_txt' => 'Ви щойно створили новий рахунок до сплати під назвою ":name", вітаємо! Firefly III може автоматично зіставляти нові зняття за цим рахунком до сплати. Наприклад, щоразу, коли ви сплачуєте орендну плату, рахунок до сплати «оренда» буде пов’язаний із витратами. Таким чином Firefly III може точно показати вам, які рахунки до сплати підлягають оплаті, а які ні. Для цього необхідно створити нове правило. Firefly III заповнив для вас деякі розумні параметри за замовчуванням. Будь ласка, переконайтеся, що вони правильні. Якщо ці значення правильні, Firefly III автоматично зв’яже правильне зняття з правильним рахунком до сплати. Будь ласка, перевірте тригери, щоб перевірити, чи вони правильні, і додайте кілька, якщо вони неправильні.', - 'new_rule_for_bill_title' => 'Правило для рахунку до сплати ":name"', - 'new_rule_for_bill_description' => 'Це правило позначає операції для рахунку до сплати ":name".', + 'rule_action_delete_transaction_choice' => 'ВИДАЛИТИ операцію(!)', + 'rule_action_delete_transaction' => 'ВИДАЛИТИ операцію(!)', + 'rule_action_set_category' => 'Вибрати категорію ":action_value"', + 'rule_action_clear_category' => 'Звільнити поле "Категорія"', + 'rule_action_set_budget' => 'Встановити бюджет ":action_value"', + 'rule_action_clear_budget' => 'Видалити бюджет', + 'rule_action_add_tag' => 'Додати тег ":action_value"', + 'rule_action_remove_tag' => 'Видалити тег ":action_value"', + 'rule_action_remove_all_tags' => 'Видалити усі теги', + 'rule_action_set_description' => 'Вказати примітки до ":action_value"', + 'rule_action_append_description' => 'Додайте до опису ":action_value"', + 'rule_action_prepend_description' => 'Почніть опис з ":action_value"', + 'rule_action_set_category_choice' => 'Обрати категорію..', + 'rule_action_clear_category_choice' => 'Очистити всі категорії', + 'rule_action_set_budget_choice' => 'Встановити бюджет..', + 'rule_action_clear_budget_choice' => 'Очистити всі бюджети', + 'rule_action_add_tag_choice' => 'Додати тег..', + 'rule_action_remove_tag_choice' => 'Видалити тег..', + 'rule_action_remove_all_tags_choice' => 'Видалити усі теги', + 'rule_action_set_description_choice' => 'Встановити опис на..', + 'rule_action_update_piggy_choice' => 'Додати / видалити суму транзакції в скарбничці ..', + 'rule_action_update_piggy' => 'Додати/видалити суму транзакції в скарбничці ":action_value"', + 'rule_action_append_description_choice' => 'Доповнити опис з ..', + 'rule_action_prepend_description_choice' => 'Перед описом додати з ..', + 'rule_action_set_source_account_choice' => 'Встановити вихідний обліковий запис на ..', + 'rule_action_set_source_account' => 'Встановити вихідний обліковий запис на :action_value', + 'rule_action_set_destination_account_choice' => 'Вибрати цільовий рахунок..', + 'rule_action_set_destination_account' => 'Вибрати цільовий рахунок :action_value', + 'rule_action_append_notes_choice' => 'Додайте нотатки за допомогою ..', + 'rule_action_append_notes' => 'Додайте нотатки за допомогою ":action_value"', + 'rule_action_prepend_notes_choice' => 'Додайте до нотаток ..', + 'rule_action_prepend_notes' => 'Додайте до нотаток ":action_value"', + 'rule_action_clear_notes_choice' => 'Видаліть будь-які примітки', + 'rule_action_clear_notes' => 'Видаліть будь-які примітки', + 'rule_action_set_notes_choice' => 'Виберіть нотатки до ..', + 'rule_action_link_to_bill_choice' => 'Посилання на рахунок до сплати ..', + 'rule_action_link_to_bill' => 'Посилання на рахунок до сплати ":action_value"', + 'rule_action_switch_accounts_choice' => 'Поміняти місцями рахунки джерела та призначення (лише перекази!)', + 'rule_action_switch_accounts' => 'Поміняти місцями рахунки джерела та призначення', + 'rule_action_set_notes' => 'Вказати примітки до ":action_value"', + 'rule_action_convert_deposit_choice' => 'Перетворити операцію в депозит', + 'rule_action_convert_deposit' => 'Перетворити операцію в депозит з ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Перетворіть операцію на зняття', + 'rule_action_convert_withdrawal' => 'Перетворіть операцію на зняття в ":action_value"', + 'rule_action_convert_transfer_choice' => 'Перетворення операції на переказ', + 'rule_action_convert_transfer' => 'Перетворення операції на переказ з ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Додайте опис в примітках до операції', + 'rule_action_append_notes_to_descr_choice' => 'Додайте примітки до операції в описі', + 'rule_action_move_descr_to_notes_choice' => 'Замініть поточні примітки до операції в описі', + 'rule_action_move_notes_to_descr_choice' => 'Замініть поточні примітки до операції в описі', + 'rule_action_append_descr_to_notes' => 'Додайте опис в примітках', + 'rule_action_append_notes_to_descr' => 'Додайте примітки до опису', + 'rule_action_move_descr_to_notes' => 'Замініть примітки в описі', + 'rule_action_move_notes_to_descr' => 'Замініть примітки в описі', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Налаштувати цільовий рахунок як (готівковий)', + 'rule_action_set_source_to_cash_choice' => 'Налаштувати вихідний рахунок як (готівковий)', + 'rulegroup_for_bills_title' => 'Група правил для рахунків до сплати', + 'rulegroup_for_bills_description' => 'Спеціальна група правил для всіх правил, які стосуються рахунків до сплати.', + 'rule_for_bill_title' => 'Автоматично створене правило для рахунку до сплати ":name"', + 'rule_for_bill_description' => 'Це правило створюється автоматично, щоб спробувати зіставити рахунок до сплати ":name".', + 'create_rule_for_bill' => 'Створити нове правило для рахунку до сплати ":name"', + 'create_rule_for_bill_txt' => 'Ви щойно створили новий рахунок до сплати під назвою ":name", вітаємо! Firefly III може автоматично зіставляти нові зняття за цим рахунком до сплати. Наприклад, щоразу, коли ви сплачуєте орендну плату, рахунок до сплати «оренда» буде пов’язаний із витратами. Таким чином Firefly III може точно показати вам, які рахунки до сплати підлягають оплаті, а які ні. Для цього необхідно створити нове правило. Firefly III заповнив для вас деякі розумні параметри за замовчуванням. Будь ласка, переконайтеся, що вони правильні. Якщо ці значення правильні, Firefly III автоматично зв’яже правильне зняття з правильним рахунком до сплати. Будь ласка, перевірте тригери, щоб перевірити, чи вони правильні, і додайте кілька, якщо вони неправильні.', + 'new_rule_for_bill_title' => 'Правило для рахунку до сплати ":name"', + 'new_rule_for_bill_description' => 'Це правило позначає операції для рахунку до сплати ":name".', - 'new_rule_for_journal_title' => 'Правило на основі операції ":description"', - 'new_rule_for_journal_description' => 'Це правило базується на операції ":description". Він відповідатиме операціям, які абсолютно однакові.', + 'new_rule_for_journal_title' => 'Правило на основі операції ":description"', + 'new_rule_for_journal_description' => 'Це правило базується на операції ":description". Він відповідатиме операціям, які абсолютно однакові.', // tags - 'store_new_tag' => 'Зберегти новий тег', - 'update_tag' => 'Оновити тег', - 'no_location_set' => 'Місцезаходження не вказано.', - 'meta_data' => 'Мета-дані', - 'location' => 'Місцерозташування', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Без дати', - 'result' => 'Результат', - 'sums_apply_to_range' => 'Усі суми стосуються вибраного діапазону', - 'mapbox_api_key' => 'Щоб використовувати карту, отримайте ключ API від Mapbox. Відкрийте файл .env і додайте цей код після MAPBOX_API_KEY=.', - 'press_object_location' => 'Клацніть правою кнопкою миші або натисніть і утримуйте, щоб установити розташування об’єкта.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Видалити розташування', - 'delete_all_selected_tags' => 'Видалити всі вибрані теги', - 'select_tags_to_delete' => 'Не забудьте вибрати деякі теги.', - 'deleted_x_tags' => 'Видалено тег :count.|Видалено теги :count.', - 'create_rule_from_transaction' => 'Створення правила на основі операції', - 'create_recurring_from_transaction' => 'Створення повторюваної операції на основі операції', + 'store_new_tag' => 'Зберегти новий тег', + 'update_tag' => 'Оновити тег', + 'no_location_set' => 'Місцезаходження не вказано.', + 'meta_data' => 'Мета-дані', + 'location' => 'Місцерозташування', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Без дати', + 'result' => 'Результат', + 'sums_apply_to_range' => 'Усі суми стосуються вибраного діапазону', + 'mapbox_api_key' => 'Щоб використовувати карту, отримайте ключ API від Mapbox. Відкрийте файл .env і додайте цей код після MAPBOX_API_KEY=.', + 'press_object_location' => 'Клацніть правою кнопкою миші або натисніть і утримуйте, щоб установити розташування об’єкта.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Видалити розташування', + 'delete_all_selected_tags' => 'Видалити всі вибрані теги', + 'select_tags_to_delete' => 'Не забудьте вибрати деякі теги.', + 'deleted_x_tags' => 'Видалено тег :count.|Видалено теги :count.', + 'create_rule_from_transaction' => 'Створення правила на основі операції', + 'create_recurring_from_transaction' => 'Створення повторюваної операції на основі операції', // preferences - 'dark_mode_option_browser' => 'Дозвольте браузеру вирішити', - 'dark_mode_option_light' => 'Завжди світла', - 'dark_mode_option_dark' => 'Завжди темна', - 'equal_to_language' => '(прирівнюється до мови)', - 'dark_mode_preference' => 'Темний режим', - 'dark_mode_preference_help' => 'Скажіть Firefly III, коли використовувати темний режим.', - 'pref_home_screen_accounts' => 'Головна сторінка рахунків', - 'pref_home_screen_accounts_help' => 'Які рахунки слід відображати на головній сторінці?', - 'pref_view_range' => 'Діапазон перегляду', - 'pref_view_range_help' => 'Деякі діаграми автоматично згруповані в періоди. Ваші бюджети також будуть згруповані за періодами. Якому періоду ви віддаєте перевагу?', - 'pref_1D' => 'Один день', - 'pref_1W' => 'Один тиждень', - 'pref_1M' => 'Один місяць', - 'pref_3M' => 'Три місяці (квартал)', - 'pref_6M' => 'Шість місяців', - 'pref_1Y' => 'Один рік', - 'pref_last365' => 'Минулий рік', - 'pref_last90' => 'Останні 90 днів', - 'pref_last30' => 'Останні 30 днів', - 'pref_last7' => 'Останні 7 днів', - 'pref_YTD' => 'Рік до дати', - 'pref_QTD' => 'Квартал до дати', - 'pref_MTD' => 'Місяць до дати', - 'pref_languages' => 'Мови', - 'pref_locale' => 'Налаштування локалі', - 'pref_languages_help' => 'Firefly III підтримує декілька мов. Якій ви віддаєте перевагу?', - 'pref_locale_help' => 'Firefly III дозволяє встановлювати інші локальні налаштування, такі як валюти, числа та дати. Записи в цьому списку можуть не підтримуватися вашою системою. Firefly III не має правильних параметрів дати для кожної локалі; зв\'яжіться зі мною для вдосконалення.', - 'pref_locale_no_demo' => 'Ця функція не працюватиме для демо-користувача.', - 'pref_custom_fiscal_year' => 'Налаштування фінансового року', - 'pref_custom_fiscal_year_label' => 'Увiмкнено', - 'pref_custom_fiscal_year_help' => 'У країнах, які використовують фінансовий рік, крім 1 січня до 31 грудня, ви можете увімкнути це і вказати початкові/кінцеві дні фіскального року', - 'pref_fiscal_year_start_label' => 'Дата початку фіскального року', - 'pref_two_factor_auth' => 'Двоетапна перевірка', - 'pref_two_factor_auth_help' => 'При включенні двохетапної перевірки (також відомої як двофакторна автентифікація), ви додаєте додатковий шар безпеки для вашого облікового запису. Ви здійснюєте вхід за допомогою того, що знаєте (свій пароль) і того, що ви маєте (код підтвердження). Коди для підтвердження генерується додатком на вашому телефоні, таким як Authy або Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Увімкнути двоетапну перевірку', - 'pref_two_factor_auth_disabled' => 'Код двоетапної перевірки видалено та вимкнуто', - 'pref_two_factor_auth_remove_it' => 'Не забудьте видалити обліковий запис з вашого додатка для автентифікації!', - 'pref_two_factor_auth_code' => 'Підтвердити код', - 'pref_two_factor_auth_code_help' => 'Скануйте QR-код за допомогою додатку на вашому телефоні, наприклад, Authy чи Google Authenticator і введіть згенерований код.', - 'pref_two_factor_auth_reset_code' => 'Скинути код підтвердження', - 'pref_two_factor_auth_disable_2fa' => 'Вимкнути 2FA', - '2fa_use_secret_instead' => 'Якщо ви не можете відсканувати QR-код, використовуйте секретний код: :secret.', - '2fa_backup_codes' => 'Збережіть ці резервні коди доступу на випадок втрати вашого пристрій.', - '2fa_already_enabled' => 'Двоетапну перевірку вже увімкнено.', - 'wrong_mfa_code' => 'Цей MFA код не дійсний.', - 'pref_save_settings' => 'Зберегти налаштування', - 'saved_preferences' => 'Налаштування збережено!', - 'preferences_general' => 'Загальні', - 'preferences_frontpage' => 'Головний екран', - 'preferences_security' => 'Безпека', - 'preferences_layout' => 'Зовнішній вигляд', - 'preferences_notifications' => 'Сповіщення', - 'pref_home_show_deposits' => 'Показувати надходження на головному екрані', - 'pref_home_show_deposits_info' => 'На головному екрані тепер відображаються ваші рахунки витрат. Бажаєте також переглянути рахунки доходів?', - 'pref_home_do_show_deposits' => 'Так, показати їх', - 'successful_count' => 'з яких :count успішно завершено', - 'list_page_size_title' => 'Розмір сторінки', - 'list_page_size_help' => 'Будь-який список речей (рахунки, транзакції тощо) показує максимум стільки на сторінці.', - 'list_page_size_label' => 'Розмір сторінки', - 'between_dates' => '(:start і :end)', - 'pref_optional_fields_transaction' => 'Необов\'язкові поля для операцій', - 'pref_optional_fields_transaction_help' => 'За замовчуванням не всі поля активні під час створення нової транзакції (щоб уникнути безладу). Нижче ви можете включити ці поля, якщо вважаєте, що вони можуть бути корисними для вас. Звичайно, будь-яке поле, що відключене, але вже заповнене, буде видимим незалежно від налаштувань.', - 'optional_tj_date_fields' => 'Поле дати', - 'optional_tj_other_fields' => 'Інші поля', - 'optional_tj_attachment_fields' => 'Поля вкладення', - 'pref_optional_tj_interest_date' => 'Дата нарахування відсотку', - 'pref_optional_tj_book_date' => 'Дата обліку', - 'pref_optional_tj_process_date' => 'Дата опрацювання', - 'pref_optional_tj_due_date' => 'Дата закінчення', - 'pref_optional_tj_payment_date' => 'Дата оплати', - 'pref_optional_tj_invoice_date' => 'Дата рахунку', - 'pref_optional_tj_internal_reference' => 'Внутрішнє посилання', - 'pref_optional_tj_notes' => 'Нотатки', - 'pref_optional_tj_attachments' => 'Вкладення', - 'pref_optional_tj_external_url' => 'Зовнішній URL', - 'pref_optional_tj_location' => 'Розташування', - 'pref_optional_tj_links' => 'Пов\'язані транзакції', - 'optional_field_meta_dates' => 'Дати', - 'optional_field_meta_business' => 'Бізнес', - 'optional_field_attachments' => 'Вкладення', - 'optional_field_meta_data' => 'Додаткові метадані', - 'external_url' => 'Зовнішній URL', - 'pref_notification_bill_reminder' => 'Нагадування про термін дії рахунків', - 'pref_notification_new_access_token' => 'Попереджати, коли створюється новий токен доступу до API', - 'pref_notification_transaction_creation' => 'Попереджати про автоматичне створення транзакції', - 'pref_notification_user_login' => 'Попереджати, коли ви входите з нового місця', - 'pref_notification_rule_action_failures' => 'Попереджати, коли правило не виконується (лише Slack або Discord)', - 'pref_notifications' => 'Сповіщення', - 'pref_notifications_help' => 'Укажіть, чи хотіли б ви отримувати ці сповіщення. Деякі сповіщення можуть містити конфіденційну фінансову інформацію.', - 'slack_webhook_url' => 'URL-адреса Slack Webhook', - 'slack_webhook_url_help' => 'Якщо ви хочете, щоб Firefly III повідомляв вас за допомогою Slack, введіть тут URL-адресу вебхука. В іншому випадку залиште поле порожнім. Якщо ви адміністратор, вам також потрібно встановити цю URL-адресу в панелі адміністрування.', - 'slack_url_label' => 'URL-адреса Slack "вхідного вебхуку"', + 'dark_mode_option_browser' => 'Дозвольте браузеру вирішити', + 'dark_mode_option_light' => 'Завжди світла', + 'dark_mode_option_dark' => 'Завжди темна', + 'equal_to_language' => '(прирівнюється до мови)', + 'dark_mode_preference' => 'Темний режим', + 'dark_mode_preference_help' => 'Скажіть Firefly III, коли використовувати темний режим.', + 'pref_home_screen_accounts' => 'Головна сторінка рахунків', + 'pref_home_screen_accounts_help' => 'Які рахунки слід відображати на головній сторінці?', + 'pref_view_range' => 'Діапазон перегляду', + 'pref_view_range_help' => 'Деякі діаграми автоматично згруповані в періоди. Ваші бюджети також будуть згруповані за періодами. Якому періоду ви віддаєте перевагу?', + 'pref_1D' => 'Один день', + 'pref_1W' => 'Один тиждень', + 'pref_1M' => 'Один місяць', + 'pref_3M' => 'Три місяці (квартал)', + 'pref_6M' => 'Шість місяців', + 'pref_1Y' => 'Один рік', + 'pref_last365' => 'Минулий рік', + 'pref_last90' => 'Останні 90 днів', + 'pref_last30' => 'Останні 30 днів', + 'pref_last7' => 'Останні 7 днів', + 'pref_YTD' => 'Рік до дати', + 'pref_QTD' => 'Квартал до дати', + 'pref_MTD' => 'Місяць до дати', + 'pref_languages' => 'Мови', + 'pref_locale' => 'Налаштування локалі', + 'pref_languages_help' => 'Firefly III підтримує декілька мов. Якій ви віддаєте перевагу?', + 'pref_locale_help' => 'Firefly III дозволяє встановлювати інші локальні налаштування, такі як валюти, числа та дати. Записи в цьому списку можуть не підтримуватися вашою системою. Firefly III не має правильних параметрів дати для кожної локалі; зв\'яжіться зі мною для вдосконалення.', + 'pref_locale_no_demo' => 'Ця функція не працюватиме для демо-користувача.', + 'pref_custom_fiscal_year' => 'Налаштування фінансового року', + 'pref_custom_fiscal_year_label' => 'Увiмкнено', + 'pref_custom_fiscal_year_help' => 'У країнах, які використовують фінансовий рік, крім 1 січня до 31 грудня, ви можете увімкнути це і вказати початкові/кінцеві дні фіскального року', + 'pref_fiscal_year_start_label' => 'Дата початку фіскального року', + 'pref_two_factor_auth' => 'Двоетапна перевірка', + 'pref_two_factor_auth_help' => 'При включенні двохетапної перевірки (також відомої як двофакторна автентифікація), ви додаєте додатковий шар безпеки для вашого облікового запису. Ви здійснюєте вхід за допомогою того, що знаєте (свій пароль) і того, що ви маєте (код підтвердження). Коди для підтвердження генерується додатком на вашому телефоні, таким як Authy або Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Увімкнути двоетапну перевірку', + 'pref_two_factor_auth_disabled' => 'Код двоетапної перевірки видалено та вимкнуто', + 'pref_two_factor_auth_remove_it' => 'Не забудьте видалити обліковий запис з вашого додатка для автентифікації!', + 'pref_two_factor_auth_code' => 'Підтвердити код', + 'pref_two_factor_auth_code_help' => 'Скануйте QR-код за допомогою додатку на вашому телефоні, наприклад, Authy чи Google Authenticator і введіть згенерований код.', + 'pref_two_factor_auth_reset_code' => 'Скинути код підтвердження', + 'pref_two_factor_auth_disable_2fa' => 'Вимкнути 2FA', + '2fa_use_secret_instead' => 'Якщо ви не можете відсканувати QR-код, використовуйте секретний код: :secret.', + '2fa_backup_codes' => 'Збережіть ці резервні коди доступу на випадок втрати вашого пристрій.', + '2fa_already_enabled' => 'Двоетапну перевірку вже увімкнено.', + 'wrong_mfa_code' => 'Цей MFA код не дійсний.', + 'pref_save_settings' => 'Зберегти налаштування', + 'saved_preferences' => 'Налаштування збережено!', + 'preferences_general' => 'Загальні', + 'preferences_frontpage' => 'Головний екран', + 'preferences_security' => 'Безпека', + 'preferences_layout' => 'Зовнішній вигляд', + 'preferences_notifications' => 'Сповіщення', + 'pref_home_show_deposits' => 'Показувати надходження на головному екрані', + 'pref_home_show_deposits_info' => 'На головному екрані тепер відображаються ваші рахунки витрат. Бажаєте також переглянути рахунки доходів?', + 'pref_home_do_show_deposits' => 'Так, показати їх', + 'successful_count' => 'з яких :count успішно завершено', + 'list_page_size_title' => 'Розмір сторінки', + 'list_page_size_help' => 'Будь-який список речей (рахунки, транзакції тощо) показує максимум стільки на сторінці.', + 'list_page_size_label' => 'Розмір сторінки', + 'between_dates' => '(:start і :end)', + 'pref_optional_fields_transaction' => 'Необов\'язкові поля для операцій', + 'pref_optional_fields_transaction_help' => 'За замовчуванням не всі поля активні під час створення нової транзакції (щоб уникнути безладу). Нижче ви можете включити ці поля, якщо вважаєте, що вони можуть бути корисними для вас. Звичайно, будь-яке поле, що відключене, але вже заповнене, буде видимим незалежно від налаштувань.', + 'optional_tj_date_fields' => 'Поле дати', + 'optional_tj_other_fields' => 'Інші поля', + 'optional_tj_attachment_fields' => 'Поля вкладення', + 'pref_optional_tj_interest_date' => 'Дата нарахування відсотку', + 'pref_optional_tj_book_date' => 'Дата обліку', + 'pref_optional_tj_process_date' => 'Дата опрацювання', + 'pref_optional_tj_due_date' => 'Дата закінчення', + 'pref_optional_tj_payment_date' => 'Дата оплати', + 'pref_optional_tj_invoice_date' => 'Дата рахунку', + 'pref_optional_tj_internal_reference' => 'Внутрішнє посилання', + 'pref_optional_tj_notes' => 'Нотатки', + 'pref_optional_tj_attachments' => 'Вкладення', + 'pref_optional_tj_external_url' => 'Зовнішній URL', + 'pref_optional_tj_location' => 'Розташування', + 'pref_optional_tj_links' => 'Пов\'язані транзакції', + 'optional_field_meta_dates' => 'Дати', + 'optional_field_meta_business' => 'Бізнес', + 'optional_field_attachments' => 'Вкладення', + 'optional_field_meta_data' => 'Додаткові метадані', + 'external_url' => 'Зовнішній URL', + 'pref_notification_bill_reminder' => 'Нагадування про термін дії рахунків', + 'pref_notification_new_access_token' => 'Попереджати, коли створюється новий токен доступу до API', + 'pref_notification_transaction_creation' => 'Попереджати про автоматичне створення транзакції', + 'pref_notification_user_login' => 'Попереджати, коли ви входите з нового місця', + 'pref_notification_rule_action_failures' => 'Попереджати, коли правило не виконується (лише Slack або Discord)', + 'pref_notifications' => 'Сповіщення', + 'pref_notifications_help' => 'Укажіть, чи хотіли б ви отримувати ці сповіщення. Деякі сповіщення можуть містити конфіденційну фінансову інформацію.', + 'slack_webhook_url' => 'URL-адреса Slack Webhook', + 'slack_webhook_url_help' => 'Якщо ви хочете, щоб Firefly III повідомляв вас за допомогою Slack, введіть тут URL-адресу вебхука. В іншому випадку залиште поле порожнім. Якщо ви адміністратор, вам також потрібно встановити цю URL-адресу в панелі адміністрування.', + 'slack_url_label' => 'URL-адреса Slack "вхідного вебхуку"', // Financial administrations - 'administration_index' => 'Фінансове управління', - 'administrations_index_menu' => 'Управління фінансами', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Фінансове управління', + 'administrations_index_menu' => 'Управління фінансами', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Очистити дані з Firefly III', - 'purge_data_expl' => '«Очищення» означає «видалення того, що вже видалено». За звичайних обставин Firefly III нічого не видаляє остаточно. Це просто приховує це. Кнопка нижче видаляє всі ці раніше "видалені" записи НАЗАВЖДИ.', - 'delete_stuff_header' => 'Видалити та очистити дані', - 'purge_all_data' => 'Знищити всі видалені записи', - 'purge_data' => 'Очистити дані', - 'purged_all_records' => 'Всі видалені записи були очищені.', - 'delete_data_title' => 'Видалити дані з Firefly III', - 'permanent_delete_stuff' => 'Ви можете видалити вміст з Firefly III. Використання кнопок нижче означає, що ваші елементи будуть видалені з поля зору та приховані. Для цього немає кнопки скасування, але елементи можуть залишатися в базі даних, де ви можете їх зберегти, якщо це необхідно.', - 'other_sessions_logged_out' => 'Усі інші ваші сеанси вийшли з системи.', - 'delete_unused_accounts' => 'Видалення невикористаних облікових записів очистить ваші списки автозаповнення.', - 'delete_all_unused_accounts' => 'Видалити невикористані облікові записи', - 'deleted_all_unused_accounts' => 'Усі невикористовувані облікові записи видаляються', - 'delete_all_budgets' => 'Видалити УСІ свої бюджети', - 'delete_all_categories' => 'Видалити ВСІ ваші категорії', - 'delete_all_tags' => 'Видалити УСІ свої теги', - 'delete_all_bills' => 'Видалити УСІ свої рахунки до сплати', - 'delete_all_piggy_banks' => 'Видалити УСІ свої скарбнички', - 'delete_all_rules' => 'Видалити УСІ свої правила', - 'delete_all_recurring' => 'Видалити УСІ повторювані операції', - 'delete_all_object_groups' => 'Видалити УСІ ваші групи', - 'delete_all_accounts' => 'Видалити ВСІ свої рахунки', - 'delete_all_asset_accounts' => 'Видалити УСІ свої рахунки активів', - 'delete_all_expense_accounts' => 'Видалити УСІ свої рахунки витрат', - 'delete_all_revenue_accounts' => 'Видалити УСІ свої рахунки доходів', - 'delete_all_liabilities' => 'Видалити УСІ свої зобов\'язання', - 'delete_all_transactions' => 'Видалити ВСІ операції', - 'delete_all_withdrawals' => 'Видалити УСІ свої зняття', - 'delete_all_deposits' => 'Видалити УСІ свої депозити', - 'delete_all_transfers' => 'Видалити ВСІ перекази', - 'also_delete_transactions' => 'Видалення рахунків також призведе до видалення ВСІХ пов’язаних зняття коштів, депозитів і переказів!', - 'deleted_all_budgets' => 'Усі бюджети видалено', - 'deleted_all_categories' => 'Всі категорії видалено', - 'deleted_all_tags' => 'Усі теги видалено', - 'deleted_all_bills' => 'Усі рахунки видалено', - 'deleted_all_piggy_banks' => 'Всі скарбнички видалені', - 'deleted_all_rules' => 'Усі правила та групи правил видалено', - 'deleted_all_object_groups' => 'Усі групи видалено', - 'deleted_all_accounts' => 'Усі рахунки видалено', - 'deleted_all_asset_accounts' => 'Усі рахунки активів видалено', - 'deleted_all_expense_accounts' => 'Усі рахунки витрат видалено', - 'deleted_all_revenue_accounts' => 'Усі прибуткові рахунки видалено', - 'deleted_all_liabilities' => 'Усі зобов’язання видалено', - 'deleted_all_transactions' => 'Усі операції видалено', - 'deleted_all_withdrawals' => 'Усі зняття було видалено', - 'deleted_all_deposits' => 'Усі депозити видалено', - 'deleted_all_transfers' => 'Усі перекази видалено', - 'deleted_all_recurring' => 'Усі повторювані транзакції видалено', - 'change_your_password' => 'Змінити пароль', - 'delete_account' => 'Видалити обліковий запис', - 'current_password' => 'Поточний пароль', - 'new_password' => 'Новий пароль', - 'new_password_again' => 'Новий пароль (іще раз)', - 'delete_your_account' => 'Видалити ваш обліковий запис', - 'delete_your_account_help' => 'Видалення вашого облікового запису також призведе до видалення всіх облікових записів, транзакцій, всього, що ви зберігали у Firefly III. Все буде втрачено.', - 'delete_your_account_password' => 'Введіть свій пароль, щоб продовжити.', - 'password' => 'Пароль', - 'are_you_sure' => 'Ви впевнені? Скасовувати видалення не можливо.', - 'delete_account_button' => 'Видалити ваш обліковий запис', - 'invalid_current_password' => 'Невірний поточний пароль!', - 'password_changed' => 'Пароль змінено!', - 'should_change' => 'Ідея в тому, щоб змінити пароль.', - 'invalid_password' => 'Невірний пароль!', - 'what_is_pw_security' => 'Що таке "перевірити надійність паролю"?', - 'secure_pw_title' => 'Як вибрати безпечний пароль', - 'forgot_password_response' => 'Дякуємо. Якщо обліковий запис існує з цією електронною адресою, ви знайдете інструкції у вашій поштовій скриньці.', - 'secure_pw_history' => 'Не проходить і тижня, щоб ви не прочитали в новинах про те, що сервіси втрачають паролі своїх користувачів. Хакери та злодії використовують ці паролі, щоб спробувати викрасти вашу особисту інформацію. Ця інформація є цінною.', - 'secure_pw_ff' => 'Ви використовуєте один і той самий пароль в Інтернеті? Якщо один сайт втратить ваш пароль, хакери отримають доступ до всіх ваших даних. Firefly III покладається на те, що ви виберете надійний і унікальний пароль для захисту своїх фінансових записів.', - 'secure_pw_check_box' => 'Щоб допомогти вам у цьому, Firefly III може перевірити, чи пароль, який ви хочете використати, був викрадений у минулому. Якщо це так, Firefly III радить вам НЕ використовувати цей пароль.', - 'secure_pw_working_title' => 'Як це працює?', - 'secure_pw_working' => 'Якщо поставити прапорець, Firefly III надішле перші п’ять символів хешу SHA1 вашого пароля на веб-сайт Troy Hunt, щоб перевірити, чи є він у списку. Це дозволить вам не використовувати небезпечні паролі, як рекомендовано в останній спеціальній публікації NIST на цю тему.', - 'secure_pw_should' => 'Чи варто поставити прапорець?', - 'secure_pw_long_password' => 'Так. Завжди перевіряйте надійність свого пароля.', - 'command_line_token' => 'Токен командного рядка', - 'explain_command_line_token' => 'Цей токен потрібен для виконання параметрів командного рядка, наприклад експорту даних. Без нього ця чутлива команда не працюватиме. Не повідомляйте свій токен командного рядка. Ніхто не буде просити у вас цей токен, навіть я. Якщо ви боїтеся втратити його, або коли Ви параноїдні, відновіть цей токен за допомогою кнопки.', - 'regenerate_command_line_token' => 'Відновити токен командного рядка', - 'token_regenerated' => 'Було створено новий токен командного рядка', - 'change_your_email' => 'Змінити електронну адресу', - 'email_verification' => 'Електронне повідомлення буде надіслано на вашу стару ТА нову адресу електронної пошти. З міркувань безпеки ви не зможете увійти, доки не підтвердите свою нову адресу електронної пошти. Якщо ви не впевнені, що ваша сервіс Firefly III здатен надсилати електронну пошту, не використовуйте цю функцію. Якщо ви адміністратор, ви можете перевірити це в розділі Адміністрування.', - 'email_changed_logout' => 'Доки ви не підтвердите свою електронну адресу, ви не зможете увійти.', - 'login_with_new_email' => 'Тепер ви можете увійти за допомогою нової електронної адреси.', - 'login_with_old_email' => 'Тепер ви можете знову увійти зі своєю старою електронною адресою.', - 'login_provider_local_only' => 'Ця дія недоступна під час автентифікації через ":login_provider".', - 'external_user_mgt_disabled' => 'Ця дія недоступна, якщо Firefly III не відповідає за керування користувачами чи обробку автентифікації.', - 'external_auth_disabled' => 'Ця дія недоступна, якщо Firefly III не відповідає за обробку автентифікації.', - 'delete_local_info_only' => 'Оскільки Firefly III не відповідає за керування користувачами чи обробку автентифікації, ця функція видалятиме лише локальну інформацію Firefly III.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'Клієнти OAuth', - 'profile_oauth_no_clients' => 'Ви не створили жодних клієнтів OAuth.', - 'profile_oauth_clients_external_auth' => 'Якщо ви використовуєте стороннього постачальника автентифікації, наприклад Authelia, клієнти OAuth не працюватимуть. Ви можете використовувати лише особисті токени доступу.', - 'profile_oauth_clients_header' => 'Клієнти', - 'profile_oauth_client_id' => 'ID клієнта', - 'profile_oauth_client_name' => 'Ім\'я', - 'profile_oauth_client_secret' => 'Секретний ключ', - 'profile_oauth_create_new_client' => 'Створити нового клієнта', - 'profile_oauth_create_client' => 'Створити клієнта', - 'profile_oauth_edit_client' => 'Редагувати клієнта', - 'profile_oauth_name_help' => 'Щось, що ваші користувачі впізнають і довірятимуть.', - 'profile_oauth_redirect_url' => 'URL-адреса перенаправлення', - 'profile_oauth_redirect_url_help' => 'Зовнішній URL для авторизації додатка.', - 'profile_authorized_apps' => 'Авторизовані додатки', - 'profile_authorized_clients' => 'Авторизовані клієнти', - 'profile_scopes' => 'Області застосування', - 'profile_revoke' => 'Відкликати', - 'profile_oauth_client_secret_title' => 'Секретний ключ клієнта', - 'profile_oauth_client_secret_expl' => 'Ось новий секретний ключ клієнта. Це єдиний раз, коли він буде показаний, тому не втрачайте його! Тепер ви можете використовувати цей секретний ключ для надсилання запитів API.', - 'profile_personal_access_tokens' => 'Токени особистого доступу', - 'profile_personal_access_token' => 'Токен персонального доступу', - 'profile_oauth_confidential' => 'Конфіденційно', - 'profile_oauth_confidential_help' => 'Вимагайте від клієнта автентифікації за допомогою секретного ключа. Конфіденційні клієнти можуть безпечно зберігати облікові дані, без надання їх неавторизованим особам. Публічні додатки, такі як native desktop програми або програми JavaScript SPA, не можуть надійно зберігати секрети.', - 'profile_personal_access_token_explanation' => 'Ось ваш новий особистий токен. Це єдиний раз, коли він буде показаний, тому не втрачайте його! Тепер ви можете використовувати цей токен для надсилання запитів API.', - 'profile_no_personal_access_token' => 'Ви не створили особистих токенів доступу.', - 'profile_create_new_token' => 'Створити новий токен', - 'profile_create_token' => 'Створити токен', - 'profile_create' => 'Створити', - 'profile_save_changes' => 'Зберегти зміни', - 'profile_whoops' => 'Лишенько!', - 'profile_something_wrong' => 'Щось пішло не так!', - 'profile_try_again' => 'Щось пішло не так. Будь ласка, спробуйте ще раз.', - 'amounts' => 'Суми', - 'multi_account_warning_unknown' => 'Залежно від типу транзакції, яку ви створюєте, вихідним і/або цільовим рахунком наступних поділів може бути рахунок, визначений у першому поділі транзакції.', - 'multi_account_warning_withdrawal' => 'Зауважте, що вихідним рахунком для наступних розподілів буде встановлено рахунок, визначений у першому розподілі виплат.', - 'multi_account_warning_deposit' => 'Зауважте, що цільовим рахунком для наступних розподілів буде встановлено рахунок, визначений у першому розподілі депозиту.', - 'multi_account_warning_transfer' => 'Зауважте, що облікові записи джерела та призначення наступних поділів буде встановлено на рахунок, визначений у першому поділі переказу.', + 'purge_data_title' => 'Очистити дані з Firefly III', + 'purge_data_expl' => '«Очищення» означає «видалення того, що вже видалено». За звичайних обставин Firefly III нічого не видаляє остаточно. Це просто приховує це. Кнопка нижче видаляє всі ці раніше "видалені" записи НАЗАВЖДИ.', + 'delete_stuff_header' => 'Видалити та очистити дані', + 'purge_all_data' => 'Знищити всі видалені записи', + 'purge_data' => 'Очистити дані', + 'purged_all_records' => 'Всі видалені записи були очищені.', + 'delete_data_title' => 'Видалити дані з Firefly III', + 'permanent_delete_stuff' => 'Ви можете видалити вміст з Firefly III. Використання кнопок нижче означає, що ваші елементи будуть видалені з поля зору та приховані. Для цього немає кнопки скасування, але елементи можуть залишатися в базі даних, де ви можете їх зберегти, якщо це необхідно.', + 'other_sessions_logged_out' => 'Усі інші ваші сеанси вийшли з системи.', + 'delete_unused_accounts' => 'Видалення невикористаних облікових записів очистить ваші списки автозаповнення.', + 'delete_all_unused_accounts' => 'Видалити невикористані облікові записи', + 'deleted_all_unused_accounts' => 'Усі невикористовувані облікові записи видаляються', + 'delete_all_budgets' => 'Видалити УСІ свої бюджети', + 'delete_all_categories' => 'Видалити ВСІ ваші категорії', + 'delete_all_tags' => 'Видалити УСІ свої теги', + 'delete_all_bills' => 'Видалити УСІ свої рахунки до сплати', + 'delete_all_piggy_banks' => 'Видалити УСІ свої скарбнички', + 'delete_all_rules' => 'Видалити УСІ свої правила', + 'delete_all_recurring' => 'Видалити УСІ повторювані операції', + 'delete_all_object_groups' => 'Видалити УСІ ваші групи', + 'delete_all_accounts' => 'Видалити ВСІ свої рахунки', + 'delete_all_asset_accounts' => 'Видалити УСІ свої рахунки активів', + 'delete_all_expense_accounts' => 'Видалити УСІ свої рахунки витрат', + 'delete_all_revenue_accounts' => 'Видалити УСІ свої рахунки доходів', + 'delete_all_liabilities' => 'Видалити УСІ свої зобов\'язання', + 'delete_all_transactions' => 'Видалити ВСІ операції', + 'delete_all_withdrawals' => 'Видалити УСІ свої зняття', + 'delete_all_deposits' => 'Видалити УСІ свої депозити', + 'delete_all_transfers' => 'Видалити ВСІ перекази', + 'also_delete_transactions' => 'Видалення рахунків також призведе до видалення ВСІХ пов’язаних зняття коштів, депозитів і переказів!', + 'deleted_all_budgets' => 'Усі бюджети видалено', + 'deleted_all_categories' => 'Всі категорії видалено', + 'deleted_all_tags' => 'Усі теги видалено', + 'deleted_all_bills' => 'Усі рахунки видалено', + 'deleted_all_piggy_banks' => 'Всі скарбнички видалені', + 'deleted_all_rules' => 'Усі правила та групи правил видалено', + 'deleted_all_object_groups' => 'Усі групи видалено', + 'deleted_all_accounts' => 'Усі рахунки видалено', + 'deleted_all_asset_accounts' => 'Усі рахунки активів видалено', + 'deleted_all_expense_accounts' => 'Усі рахунки витрат видалено', + 'deleted_all_revenue_accounts' => 'Усі прибуткові рахунки видалено', + 'deleted_all_liabilities' => 'Усі зобов’язання видалено', + 'deleted_all_transactions' => 'Усі операції видалено', + 'deleted_all_withdrawals' => 'Усі зняття було видалено', + 'deleted_all_deposits' => 'Усі депозити видалено', + 'deleted_all_transfers' => 'Усі перекази видалено', + 'deleted_all_recurring' => 'Усі повторювані транзакції видалено', + 'change_your_password' => 'Змінити пароль', + 'delete_account' => 'Видалити обліковий запис', + 'current_password' => 'Поточний пароль', + 'new_password' => 'Новий пароль', + 'new_password_again' => 'Новий пароль (іще раз)', + 'delete_your_account' => 'Видалити ваш обліковий запис', + 'delete_your_account_help' => 'Видалення вашого облікового запису також призведе до видалення всіх облікових записів, транзакцій, всього, що ви зберігали у Firefly III. Все буде втрачено.', + 'delete_your_account_password' => 'Введіть свій пароль, щоб продовжити.', + 'password' => 'Пароль', + 'are_you_sure' => 'Ви впевнені? Скасовувати видалення не можливо.', + 'delete_account_button' => 'Видалити ваш обліковий запис', + 'invalid_current_password' => 'Невірний поточний пароль!', + 'password_changed' => 'Пароль змінено!', + 'should_change' => 'Ідея в тому, щоб змінити пароль.', + 'invalid_password' => 'Невірний пароль!', + 'what_is_pw_security' => 'Що таке "перевірити надійність паролю"?', + 'secure_pw_title' => 'Як вибрати безпечний пароль', + 'forgot_password_response' => 'Дякуємо. Якщо обліковий запис існує з цією електронною адресою, ви знайдете інструкції у вашій поштовій скриньці.', + 'secure_pw_history' => 'Не проходить і тижня, щоб ви не прочитали в новинах про те, що сервіси втрачають паролі своїх користувачів. Хакери та злодії використовують ці паролі, щоб спробувати викрасти вашу особисту інформацію. Ця інформація є цінною.', + 'secure_pw_ff' => 'Ви використовуєте один і той самий пароль в Інтернеті? Якщо один сайт втратить ваш пароль, хакери отримають доступ до всіх ваших даних. Firefly III покладається на те, що ви виберете надійний і унікальний пароль для захисту своїх фінансових записів.', + 'secure_pw_check_box' => 'Щоб допомогти вам у цьому, Firefly III може перевірити, чи пароль, який ви хочете використати, був викрадений у минулому. Якщо це так, Firefly III радить вам НЕ використовувати цей пароль.', + 'secure_pw_working_title' => 'Як це працює?', + 'secure_pw_working' => 'Якщо поставити прапорець, Firefly III надішле перші п’ять символів хешу SHA1 вашого пароля на веб-сайт Troy Hunt, щоб перевірити, чи є він у списку. Це дозволить вам не використовувати небезпечні паролі, як рекомендовано в останній спеціальній публікації NIST на цю тему.', + 'secure_pw_should' => 'Чи варто поставити прапорець?', + 'secure_pw_long_password' => 'Так. Завжди перевіряйте надійність свого пароля.', + 'command_line_token' => 'Токен командного рядка', + 'explain_command_line_token' => 'Цей токен потрібен для виконання параметрів командного рядка, наприклад експорту даних. Без нього ця чутлива команда не працюватиме. Не повідомляйте свій токен командного рядка. Ніхто не буде просити у вас цей токен, навіть я. Якщо ви боїтеся втратити його, або коли Ви параноїдні, відновіть цей токен за допомогою кнопки.', + 'regenerate_command_line_token' => 'Відновити токен командного рядка', + 'token_regenerated' => 'Було створено новий токен командного рядка', + 'change_your_email' => 'Змінити електронну адресу', + 'email_verification' => 'Електронне повідомлення буде надіслано на вашу стару ТА нову адресу електронної пошти. З міркувань безпеки ви не зможете увійти, доки не підтвердите свою нову адресу електронної пошти. Якщо ви не впевнені, що ваша сервіс Firefly III здатен надсилати електронну пошту, не використовуйте цю функцію. Якщо ви адміністратор, ви можете перевірити це в розділі Адміністрування.', + 'email_changed_logout' => 'Доки ви не підтвердите свою електронну адресу, ви не зможете увійти.', + 'login_with_new_email' => 'Тепер ви можете увійти за допомогою нової електронної адреси.', + 'login_with_old_email' => 'Тепер ви можете знову увійти зі своєю старою електронною адресою.', + 'login_provider_local_only' => 'Ця дія недоступна під час автентифікації через ":login_provider".', + 'external_user_mgt_disabled' => 'Ця дія недоступна, якщо Firefly III не відповідає за керування користувачами чи обробку автентифікації.', + 'external_auth_disabled' => 'Ця дія недоступна, якщо Firefly III не відповідає за обробку автентифікації.', + 'delete_local_info_only' => 'Оскільки Firefly III не відповідає за керування користувачами чи обробку автентифікації, ця функція видалятиме лише локальну інформацію Firefly III.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'Клієнти OAuth', + 'profile_oauth_no_clients' => 'Ви не створили жодних клієнтів OAuth.', + 'profile_oauth_clients_external_auth' => 'Якщо ви використовуєте стороннього постачальника автентифікації, наприклад Authelia, клієнти OAuth не працюватимуть. Ви можете використовувати лише особисті токени доступу.', + 'profile_oauth_clients_header' => 'Клієнти', + 'profile_oauth_client_id' => 'ID клієнта', + 'profile_oauth_client_name' => 'Ім\'я', + 'profile_oauth_client_secret' => 'Секретний ключ', + 'profile_oauth_create_new_client' => 'Створити нового клієнта', + 'profile_oauth_create_client' => 'Створити клієнта', + 'profile_oauth_edit_client' => 'Редагувати клієнта', + 'profile_oauth_name_help' => 'Щось, що ваші користувачі впізнають і довірятимуть.', + 'profile_oauth_redirect_url' => 'URL-адреса перенаправлення', + 'profile_oauth_redirect_url_help' => 'Зовнішній URL для авторизації додатка.', + 'profile_authorized_apps' => 'Авторизовані додатки', + 'profile_authorized_clients' => 'Авторизовані клієнти', + 'profile_scopes' => 'Області застосування', + 'profile_revoke' => 'Відкликати', + 'profile_oauth_client_secret_title' => 'Секретний ключ клієнта', + 'profile_oauth_client_secret_expl' => 'Ось новий секретний ключ клієнта. Це єдиний раз, коли він буде показаний, тому не втрачайте його! Тепер ви можете використовувати цей секретний ключ для надсилання запитів API.', + 'profile_personal_access_tokens' => 'Токени особистого доступу', + 'profile_personal_access_token' => 'Токен персонального доступу', + 'profile_oauth_confidential' => 'Конфіденційно', + 'profile_oauth_confidential_help' => 'Вимагайте від клієнта автентифікації за допомогою секретного ключа. Конфіденційні клієнти можуть безпечно зберігати облікові дані, без надання їх неавторизованим особам. Публічні додатки, такі як native desktop програми або програми JavaScript SPA, не можуть надійно зберігати секрети.', + 'profile_personal_access_token_explanation' => 'Ось ваш новий особистий токен. Це єдиний раз, коли він буде показаний, тому не втрачайте його! Тепер ви можете використовувати цей токен для надсилання запитів API.', + 'profile_no_personal_access_token' => 'Ви не створили особистих токенів доступу.', + 'profile_create_new_token' => 'Створити новий токен', + 'profile_create_token' => 'Створити токен', + 'profile_create' => 'Створити', + 'profile_save_changes' => 'Зберегти зміни', + 'profile_whoops' => 'Лишенько!', + 'profile_something_wrong' => 'Щось пішло не так!', + 'profile_try_again' => 'Щось пішло не так. Будь ласка, спробуйте ще раз.', + 'amounts' => 'Суми', + 'multi_account_warning_unknown' => 'Залежно від типу транзакції, яку ви створюєте, вихідним і/або цільовим рахунком наступних поділів може бути рахунок, визначений у першому поділі транзакції.', + 'multi_account_warning_withdrawal' => 'Зауважте, що вихідним рахунком для наступних розподілів буде встановлено рахунок, визначений у першому розподілі виплат.', + 'multi_account_warning_deposit' => 'Зауважте, що цільовим рахунком для наступних розподілів буде встановлено рахунок, визначений у першому розподілі депозиту.', + 'multi_account_warning_transfer' => 'Зауважте, що облікові записи джерела та призначення наступних поділів буде встановлено на рахунок, визначений у першому поділі переказу.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Експорт даних з Firefly III', - 'export_data_menu' => 'Експорт даних', - 'export_data_bc' => 'Експорт даних з Firefly III', - 'export_data_main_title' => 'Експорт даних з Firefly III', - 'export_data_expl' => 'Це посилання дозволяє експортувати всі транзакції та метадані з Firefly III. Додаткову інформацію про процес можна знайти в довідці (значок (?) у верхньому правому куті).', - 'export_data_all_transactions' => 'Експорт всіх транзакцій', - 'export_data_advanced_expl' => 'Якщо вам потрібен розширений або спеціальний тип експорту, прочитайте довідку про використання консольної команди php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Експорт даних з Firefly III', + 'export_data_menu' => 'Експорт даних', + 'export_data_bc' => 'Експорт даних з Firefly III', + 'export_data_main_title' => 'Експорт даних з Firefly III', + 'export_data_expl' => 'Це посилання дозволяє експортувати всі транзакції та метадані з Firefly III. Додаткову інформацію про процес можна знайти в довідці (значок (?) у верхньому правому куті).', + 'export_data_all_transactions' => 'Експорт всіх транзакцій', + 'export_data_advanced_expl' => 'Якщо вам потрібен розширений або спеціальний тип експорту, прочитайте довідку про використання консольної команди php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Один вкладений файл |:count вкладених файлів', - 'attachments' => 'Вкладення', - 'edit_attachment' => 'Редагувати вкладення ":name"', - 'update_attachment' => 'Оновлення вкладення', - 'delete_attachment' => 'Видалити вкладення":name"', - 'attachment_deleted' => 'Видалено вкладення":name"', - 'liabilities_deleted' => 'Видалено зобов\'язання ":name"', - 'attachment_updated' => 'Оновлено вкладення":name"', - 'upload_max_file_size' => 'Максимальний розмір файлу: :size', - 'list_all_attachments' => 'Список всіх вкладень', + 'nr_of_attachments' => 'Один вкладений файл |:count вкладених файлів', + 'attachments' => 'Вкладення', + 'edit_attachment' => 'Редагувати вкладення ":name"', + 'update_attachment' => 'Оновлення вкладення', + 'delete_attachment' => 'Видалити вкладення":name"', + 'attachment_deleted' => 'Видалено вкладення":name"', + 'liabilities_deleted' => 'Видалено зобов\'язання ":name"', + 'attachment_updated' => 'Оновлено вкладення":name"', + 'upload_max_file_size' => 'Максимальний розмір файлу: :size', + 'list_all_attachments' => 'Список всіх вкладень', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Витрати', - 'title_withdrawal' => 'Витрати', - 'title_revenue' => 'Дохід / прихід', - 'title_deposit' => 'Дохід / прихід', - 'title_transfer' => 'Переказ', - 'title_transfers' => 'Перекази', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Застосувати правила', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Витрати', + 'title_withdrawal' => 'Витрати', + 'title_revenue' => 'Дохід / прихід', + 'title_deposit' => 'Дохід / прихід', + 'title_transfer' => 'Переказ', + 'title_transfers' => 'Перекази', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Застосувати правила', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Ця транзакція вже є витратою', - 'convert_is_already_type_Deposit' => 'Ця транзакція вже є надходженням', - 'convert_is_already_type_Transfer' => 'Ця транзакція вже є переказом', - 'convert_to_Withdrawal' => 'Перетворити ":description" на витрату', - 'convert_to_Deposit' => 'Перетворити ":description" у надходження', - 'convert_to_Transfer' => 'Перетворити ":description" у переказ', - 'convert_options_WithdrawalDeposit' => 'Перетворити витрату у надходження', - 'convert_options_WithdrawalTransfer' => 'Перетворити витрату у переказ', - 'convert_options_DepositTransfer' => 'Перетворити надходження у переказ', - 'convert_options_DepositWithdrawal' => 'Перетворити надходження у витрату', - 'convert_options_TransferWithdrawal' => 'Перетворити переказ у витрату', - 'convert_options_TransferDeposit' => 'Перетворити цй переказ у надходження', - 'convert_Withdrawal_to_deposit' => 'Перетворити цю витрату у надходження', - 'convert_Withdrawal_to_transfer' => 'Перетворити цю витрату у переказ', - 'convert_Deposit_to_withdrawal' => 'Перетворити цей депозит на витрату', - 'convert_Deposit_to_transfer' => 'Перетворити цей дохід у переказ', - 'convert_Transfer_to_deposit' => 'Перетворити цй переказ у надходження', - 'convert_Transfer_to_withdrawal' => 'Перетворити цй переказ у витрату', - 'convert_please_set_revenue_source' => 'Будь ласка, виберітьджерело, з якого надійдуть гроші.', - 'convert_please_set_asset_destination' => 'Будь ласка, оберіть рахунок, куди прямують гроші.', - 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', - 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', - 'converted_to_Deposit' => 'The transaction has been converted to a deposit', - 'converted_to_Transfer' => 'Транзакцію перетворено на переказ', - 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', - 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', - 'convert_to_withdrawal' => 'Перетворити на витрату', - 'convert_to_deposit' => 'Перетворити у надходження', - 'convert_to_transfer' => 'Перетворити на переказ', + 'convert_is_already_type_Withdrawal' => 'Ця транзакція вже є витратою', + 'convert_is_already_type_Deposit' => 'Ця транзакція вже є надходженням', + 'convert_is_already_type_Transfer' => 'Ця транзакція вже є переказом', + 'convert_to_Withdrawal' => 'Перетворити ":description" на витрату', + 'convert_to_Deposit' => 'Перетворити ":description" у надходження', + 'convert_to_Transfer' => 'Перетворити ":description" у переказ', + 'convert_options_WithdrawalDeposit' => 'Перетворити витрату у надходження', + 'convert_options_WithdrawalTransfer' => 'Перетворити витрату у переказ', + 'convert_options_DepositTransfer' => 'Перетворити надходження у переказ', + 'convert_options_DepositWithdrawal' => 'Перетворити надходження у витрату', + 'convert_options_TransferWithdrawal' => 'Перетворити переказ у витрату', + 'convert_options_TransferDeposit' => 'Перетворити цй переказ у надходження', + 'convert_Withdrawal_to_deposit' => 'Перетворити цю витрату у надходження', + 'convert_Withdrawal_to_transfer' => 'Перетворити цю витрату у переказ', + 'convert_Deposit_to_withdrawal' => 'Перетворити цей депозит на витрату', + 'convert_Deposit_to_transfer' => 'Перетворити цей дохід у переказ', + 'convert_Transfer_to_deposit' => 'Перетворити цй переказ у надходження', + 'convert_Transfer_to_withdrawal' => 'Перетворити цй переказ у витрату', + 'convert_please_set_revenue_source' => 'Будь ласка, виберітьджерело, з якого надійдуть гроші.', + 'convert_please_set_asset_destination' => 'Будь ласка, оберіть рахунок, куди прямують гроші.', + 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', + 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'Транзакцію перетворено на переказ', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + 'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.', + 'convert_to_withdrawal' => 'Перетворити на витрату', + 'convert_to_deposit' => 'Перетворити у надходження', + 'convert_to_transfer' => 'Перетворити на переказ', // create new stuff: - 'create_new_withdrawal' => 'Створити нову витрату', - 'create_new_deposit' => 'Створити новий дохід', - 'create_new_transfer' => 'Створити новий переказ', - 'create_new_asset' => 'Зберегти новий рахунок активів', - 'create_new_liabilities' => 'Створити нове зобов\'язання', - 'create_new_expense' => 'Створити новий рахунок витрат', - 'create_new_revenue' => 'Створити нове джерело доходу', - 'create_new_piggy_bank' => 'Створити нову скарбничку', - 'create_new_bill' => 'Створити новий рахунок', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Створити нову витрату', + 'create_new_deposit' => 'Створити новий дохід', + 'create_new_transfer' => 'Створити новий переказ', + 'create_new_asset' => 'Зберегти новий рахунок активів', + 'create_new_liabilities' => 'Створити нове зобов\'язання', + 'create_new_expense' => 'Створити новий рахунок витрат', + 'create_new_revenue' => 'Створити нове джерело доходу', + 'create_new_piggy_bank' => 'Створити нову скарбничку', + 'create_new_bill' => 'Створити новий рахунок', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Створити нову валюту', - 'store_currency' => 'Зберегти нову валюту', - 'update_currency' => 'Оновити валюту', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Неможливо видалити валюту :name, оскільки вона використовується.', - 'cannot_delete_fallback_currency' => ':name є системною резервною валютою і не може бути видалена.', - 'cannot_disable_currency_journals' => 'Не вдалося вимкнути :name , тому що операції все ще використовують його.', - 'cannot_disable_currency_last_left' => 'Не можна вимкнути :name , оскільки вона є останньою ввімкненою валютою.', - 'cannot_disable_currency_account_meta' => 'Не вдається відключити :name , тому що він використовується в рахунках активів.', - 'cannot_disable_currency_bills' => 'Не вдається відключити :name тому що він використовується в рахунках до сплати.', - 'cannot_disable_currency_recurring' => 'Не вдається вимкнути :name , оскільки він використовується в повторюваних операціях.', - 'cannot_disable_currency_available_budgets' => 'Не вдалося відключити :name , тому що він використовується в доступних бюджетах.', - 'cannot_disable_currency_budget_limits' => 'Не вдалося вимкнути :name , тому що він використовується в бюджетних обмеженнях.', - 'cannot_disable_currency_current_default' => 'Не вдалося вимкнути :name , оскільки це поточна валюта за замовчуванням.', - 'cannot_disable_currency_system_fallback' => 'Не можна вимкнути :name , оскільки це валюта за замовчуванням.', - 'disable_EUR_side_effects' => 'Євро є резервною валютою системи для надзвичайних ситуацій. Його вимкнення може призвести до небажаних побічних ефектів і призвести до втрати гарантії.', - 'deleted_currency' => 'Валюта :name видалена', - 'created_currency' => 'Валюта :name створена', - 'could_not_store_currency' => 'Не вдалося зберегти нову валюту.', - 'updated_currency' => 'Валюта :name оновлена', - 'ask_site_owner' => 'Будь ласка, попросіть :owner додати, видалити або відредагувати валюти.', - 'currencies_intro' => 'Firefly III підтримує різні валюти, які ви можете встановити та ввімкнути тут.', - 'make_default_currency' => 'Зробити основним', - 'default_currency' => 'за замовчуванням', - 'currency_is_disabled' => 'Вимкнено', - 'enable_currency' => 'Увімкнути', - 'disable_currency' => 'Вимкнути', - 'currencies_default_disabled' => 'Більшість із цих валют вимкнено за замовчуванням. Щоб використовувати їх, ви повинні спочатку їх увімкнути.', - 'currency_is_now_enabled' => 'Валюту ":name" увімкнено', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Валюту ":name" вимкнено', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Створити нову валюту', + 'store_currency' => 'Зберегти нову валюту', + 'update_currency' => 'Оновити валюту', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Неможливо видалити валюту :name, оскільки вона використовується.', + 'cannot_delete_fallback_currency' => ':name є системною резервною валютою і не може бути видалена.', + 'cannot_disable_currency_journals' => 'Не вдалося вимкнути :name , тому що операції все ще використовують його.', + 'cannot_disable_currency_last_left' => 'Не можна вимкнути :name , оскільки вона є останньою ввімкненою валютою.', + 'cannot_disable_currency_account_meta' => 'Не вдається відключити :name , тому що він використовується в рахунках активів.', + 'cannot_disable_currency_bills' => 'Не вдається відключити :name тому що він використовується в рахунках до сплати.', + 'cannot_disable_currency_recurring' => 'Не вдається вимкнути :name , оскільки він використовується в повторюваних операціях.', + 'cannot_disable_currency_available_budgets' => 'Не вдалося відключити :name , тому що він використовується в доступних бюджетах.', + 'cannot_disable_currency_budget_limits' => 'Не вдалося вимкнути :name , тому що він використовується в бюджетних обмеженнях.', + 'cannot_disable_currency_current_default' => 'Не вдалося вимкнути :name , оскільки це поточна валюта за замовчуванням.', + 'cannot_disable_currency_system_fallback' => 'Не можна вимкнути :name , оскільки це валюта за замовчуванням.', + 'disable_EUR_side_effects' => 'Євро є резервною валютою системи для надзвичайних ситуацій. Його вимкнення може призвести до небажаних побічних ефектів і призвести до втрати гарантії.', + 'deleted_currency' => 'Валюта :name видалена', + 'created_currency' => 'Валюта :name створена', + 'could_not_store_currency' => 'Не вдалося зберегти нову валюту.', + 'updated_currency' => 'Валюта :name оновлена', + 'ask_site_owner' => 'Будь ласка, попросіть :owner додати, видалити або відредагувати валюти.', + 'currencies_intro' => 'Firefly III підтримує різні валюти, які ви можете встановити та ввімкнути тут.', + 'make_default_currency' => 'Зробити основним', + 'default_currency' => 'за замовчуванням', + 'currency_is_disabled' => 'Вимкнено', + 'enable_currency' => 'Увімкнути', + 'disable_currency' => 'Вимкнути', + 'currencies_default_disabled' => 'Більшість із цих валют вимкнено за замовчуванням. Щоб використовувати їх, ви повинні спочатку їх увімкнути.', + 'currency_is_now_enabled' => 'Валюту ":name" увімкнено', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Валюту ":name" вимкнено', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Обов\'язкові поля', - 'optionalFields' => 'Необов\'язкові поля', - 'options' => 'Опції', + 'mandatoryFields' => 'Обов\'язкові поля', + 'optionalFields' => 'Необов\'язкові поля', + 'options' => 'Опції', // budgets: - 'daily_budgets' => 'Щоденні бюджети', - 'weekly_budgets' => 'Тижневі бюджети', - 'monthly_budgets' => 'Місячні бюджети', - 'quarterly_budgets' => 'Квартальні бюджети', - 'half_year_budgets' => 'Піврічні бюджети', - 'yearly_budgets' => 'Річні бюджети', - 'other_budgets' => 'Спеціальні тимчасові бюджети', - 'budget_limit_not_in_range' => 'Ця сума застосовується від :start до :end:', - 'total_available_budget' => 'Загальний бюджет (між :start і :end)', - 'total_available_budget_in_currency' => 'Загальний обсяг бюджету в :currency', - 'see_below' => 'дивіться нижче', - 'create_new_budget' => 'Створити новий бюджет', - 'store_new_budget' => 'Зберегти новий бюджет', - 'stored_new_budget' => 'Збережено новий бюджет ":name"', - 'available_between' => 'Доступно між :start і :end', - 'transactionsWithoutBudget' => 'Витрати без бюджету', - 'transactions_no_budget' => 'Витрати без бюджету між :start і :end', - 'spent_between' => 'Уже витрачено між :start і :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Встановити доступну суму', - 'update_available_amount' => 'Оновити доступну суму', - 'ab_basic_modal_explain' => 'Скористайтеся цією формою, щоб вказати, скільки ви очікуєте від бюджету (загалом, у :currency) у вказаний період.', - 'createBudget' => 'Новий бюджет', - 'invalid_currency' => 'Ця валюта недійсна', - 'invalid_amount' => 'Будь ласка, введіть суму', - 'set_ab' => 'Доступна сума бюджету була встановлена', - 'updated_ab' => 'Доступну суму бюджету оновлено', - 'deleted_ab' => 'Доступну суму бюджету видалено', - 'deleted_bl' => 'Зазначену в бюджеті суму видалено', - 'alt_currency_ab_create' => 'Встановіть доступний бюджет в іншій валюті', - 'bl_create_btn' => 'Вказати бюджет в іншій валюті', - 'inactiveBudgets' => 'Неактивні бюджети', - 'without_budget_between' => 'Transactions without a budget between :start and :end', - 'delete_budget' => 'Видалити бюджет ":name"', - 'deleted_budget' => 'Видалений бюджет ":name"', - 'edit_budget' => 'Редагувати бюджет ":name"', - 'updated_budget' => 'Оновлений бюджет ":name"', - 'update_amount' => 'Оновити суму', - 'update_budget' => 'Оновити бюджет', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Встановити суму в бюджеті', - 'budget_period_navigator' => 'Огляд періоду', - 'info_on_available_amount' => 'Що я маю в наявності?', - 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', - 'suggested' => 'Suggested', - 'average_between' => 'В середньому між :start і :end', - 'transferred_in' => 'Переведено (у)', - 'transferred_away' => 'Transferred (away)', - 'auto_budget_none' => 'Без авто-бюджету', - 'auto_budget_reset' => 'Встановити фіксовану суму кожного періоду', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Щоденно', - 'auto_budget_period_weekly' => 'Щотижня', - 'auto_budget_period_monthly' => 'Щомісячно', - 'auto_budget_period_quarterly' => 'Щоквартально', - 'auto_budget_period_half_year' => 'Щопівроку', - 'auto_budget_period_yearly' => 'Щорічно', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Щоденні бюджети', + 'weekly_budgets' => 'Тижневі бюджети', + 'monthly_budgets' => 'Місячні бюджети', + 'quarterly_budgets' => 'Квартальні бюджети', + 'half_year_budgets' => 'Піврічні бюджети', + 'yearly_budgets' => 'Річні бюджети', + 'other_budgets' => 'Спеціальні тимчасові бюджети', + 'budget_limit_not_in_range' => 'Ця сума застосовується від :start до :end:', + 'total_available_budget' => 'Загальний бюджет (між :start і :end)', + 'total_available_budget_in_currency' => 'Загальний обсяг бюджету в :currency', + 'see_below' => 'дивіться нижче', + 'create_new_budget' => 'Створити новий бюджет', + 'store_new_budget' => 'Зберегти новий бюджет', + 'stored_new_budget' => 'Збережено новий бюджет ":name"', + 'available_between' => 'Доступно між :start і :end', + 'transactionsWithoutBudget' => 'Витрати без бюджету', + 'transactions_no_budget' => 'Витрати без бюджету між :start і :end', + 'spent_between' => 'Уже витрачено між :start і :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Встановити доступну суму', + 'update_available_amount' => 'Оновити доступну суму', + 'ab_basic_modal_explain' => 'Скористайтеся цією формою, щоб вказати, скільки ви очікуєте від бюджету (загалом, у :currency) у вказаний період.', + 'createBudget' => 'Новий бюджет', + 'invalid_currency' => 'Ця валюта недійсна', + 'invalid_amount' => 'Будь ласка, введіть суму', + 'set_ab' => 'Доступна сума бюджету була встановлена', + 'updated_ab' => 'Доступну суму бюджету оновлено', + 'deleted_ab' => 'Доступну суму бюджету видалено', + 'deleted_bl' => 'Зазначену в бюджеті суму видалено', + 'alt_currency_ab_create' => 'Встановіть доступний бюджет в іншій валюті', + 'bl_create_btn' => 'Вказати бюджет в іншій валюті', + 'inactiveBudgets' => 'Неактивні бюджети', + 'without_budget_between' => 'Transactions without a budget between :start and :end', + 'delete_budget' => 'Видалити бюджет ":name"', + 'deleted_budget' => 'Видалений бюджет ":name"', + 'edit_budget' => 'Редагувати бюджет ":name"', + 'updated_budget' => 'Оновлений бюджет ":name"', + 'update_amount' => 'Оновити суму', + 'update_budget' => 'Оновити бюджет', + 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Встановити суму в бюджеті', + 'budget_period_navigator' => 'Огляд періоду', + 'info_on_available_amount' => 'Що я маю в наявності?', + 'available_amount_indication' => 'Use these amounts to get an indication of what your total budget could be.', + 'suggested' => 'Suggested', + 'average_between' => 'В середньому між :start і :end', + 'transferred_in' => 'Переведено (у)', + 'transferred_away' => 'Transferred (away)', + 'auto_budget_none' => 'Без авто-бюджету', + 'auto_budget_reset' => 'Встановити фіксовану суму кожного періоду', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Щоденно', + 'auto_budget_period_weekly' => 'Щотижня', + 'auto_budget_period_monthly' => 'Щомісячно', + 'auto_budget_period_quarterly' => 'Щоквартально', + 'auto_budget_period_half_year' => 'Щопівроку', + 'auto_budget_period_yearly' => 'Щорічно', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Рахунок-фактура збігається з транзакціями між :low і :high.', - 'running_again_loss' => 'Раніше пов\'язані транзакції з цим рахунком-фактурою можуть втратити зв\'язок, якщо вони (не) співпадають з правилами.', - 'bill_related_rules' => 'Rules related to this bill', - 'repeats' => 'Repeats', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'Цей рахунок закінчується :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Підключені транзакції', - 'auto_match_on' => 'Automatically matched by Firefly III', - 'auto_match_off' => 'Not automatically matched by Firefly III', - 'next_expected_match' => 'Next expected match', - 'delete_bill' => 'Видалити рахунок::name"', - 'deleted_bill' => 'Видалено рахунок ":name"', - 'edit_bill' => 'Редагувати рахунок:name"', - 'more' => 'Докладніше', - 'rescan_old' => 'Повторно запустіть правила для всіх транзакцій', - 'update_bill' => 'Оновити рахунок-фактуру', - 'updated_bill' => 'Оновлено рахунок-фактуру ":name"', - 'store_new_bill' => 'Зберегти новий рахунок-фактуру', - 'stored_new_bill' => 'Збережено новий рахунок до сплати ":name"', - 'cannot_scan_inactive_bill' => 'Неактивні рахунки до сплати неможливо сканувати.', - 'rescanned_bill' => 'Перескановано все та пов’язано :count операцію з рахунком до сплати.|Повторно відскановано все та пов’язано :count операції з рахунком до сплати.', - 'average_bill_amount_year' => 'Середня сума рахунку до сплати (:year)', - 'average_bill_amount_overall' => 'Середня сума рахунку до сплати (загалом)', - 'bill_is_active' => 'Рахунок до сплати активний', - 'bill_expected_between' => 'Очікується між :start і :end', - 'bill_will_automatch' => 'Рахунок до сплати буде автоматично пов’язано з відповідними операціями', - 'skips_over' => 'пропускає', - 'bill_store_error' => 'Під час зберігання вашого нового рахунку сталася неочікувана помилка. Будь ласка, перевірте файли журналів', - 'list_inactive_rule' => 'неактивне правило', - 'bill_edit_rules' => 'Firefly III також спробує відредагувати правило, пов’язане з цим рахунком до сплати. Проте, якщо ви редагували це правило самостійно, Firefly III нічого не змінить.|Firefly III також спробує відредагувати правила :count, пов’язані з цим рахунком до сплати. Проте, якщо ви редагували ці правила самостійно, Firefly III нічого не змінить.', - 'bill_expected_date' => 'Очікується :date', - 'bill_expected_date_js' => 'Очікується {date}', - 'expected_amount' => '(Очікувана) сума', - 'bill_paid_on' => 'Сплачено {date}', - 'bill_repeats_weekly' => 'Повторюється щотижня', - 'bill_repeats_monthly' => 'Повторюється щомісяця', - 'bill_repeats_quarterly' => 'Повторюється щокварталу', - 'bill_repeats_half-year' => 'Повторюється кожні півроку', - 'bill_repeats_yearly' => 'Повторюється щороку', - 'bill_repeats_weekly_other' => 'Повторюється через тиждень', - 'bill_repeats_monthly_other' => 'Повторюється через місяць', - 'bill_repeats_quarterly_other' => 'Повторюється через квартал', - 'bill_repeats_half-year_other' => 'Повторюється щороку', - 'bill_repeats_yearly_other' => 'Повторюється через рік', - 'bill_repeats_weekly_skip' => 'Повторюється кожні {skip} тижнів', - 'bill_repeats_monthly_skip' => 'Повторює кожні {skip} місяців', - 'bill_repeats_quarterly_skip' => 'Повторюється кожні {skip} кварталів', - 'bill_repeats_half-year_skip' => 'Повторюється кожні {skip} півроку', - 'bill_repeats_yearly_skip' => 'Повторюється кожні {skip} років', - 'subscriptions' => 'Підписки', - 'go_to_subscriptions' => 'Перейти до своїх підписок', - 'forever' => 'Назавжди', - 'extension_date_is' => 'Дата подовження {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Рахунок-фактура збігається з транзакціями між :low і :high.', + 'running_again_loss' => 'Раніше пов\'язані транзакції з цим рахунком-фактурою можуть втратити зв\'язок, якщо вони (не) співпадають з правилами.', + 'bill_related_rules' => 'Rules related to this bill', + 'repeats' => 'Repeats', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'Цей рахунок закінчується :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Підключені транзакції', + 'auto_match_on' => 'Automatically matched by Firefly III', + 'auto_match_off' => 'Not automatically matched by Firefly III', + 'next_expected_match' => 'Next expected match', + 'delete_bill' => 'Видалити рахунок::name"', + 'deleted_bill' => 'Видалено рахунок ":name"', + 'edit_bill' => 'Редагувати рахунок:name"', + 'more' => 'Докладніше', + 'rescan_old' => 'Повторно запустіть правила для всіх транзакцій', + 'update_bill' => 'Оновити рахунок-фактуру', + 'updated_bill' => 'Оновлено рахунок-фактуру ":name"', + 'store_new_bill' => 'Зберегти новий рахунок-фактуру', + 'stored_new_bill' => 'Збережено новий рахунок до сплати ":name"', + 'cannot_scan_inactive_bill' => 'Неактивні рахунки до сплати неможливо сканувати.', + 'rescanned_bill' => 'Перескановано все та пов’язано :count операцію з рахунком до сплати.|Повторно відскановано все та пов’язано :count операції з рахунком до сплати.', + 'average_bill_amount_year' => 'Середня сума рахунку до сплати (:year)', + 'average_bill_amount_overall' => 'Середня сума рахунку до сплати (загалом)', + 'bill_is_active' => 'Рахунок до сплати активний', + 'bill_expected_between' => 'Очікується між :start і :end', + 'bill_will_automatch' => 'Рахунок до сплати буде автоматично пов’язано з відповідними операціями', + 'skips_over' => 'пропускає', + 'bill_store_error' => 'Під час зберігання вашого нового рахунку сталася неочікувана помилка. Будь ласка, перевірте файли журналів', + 'list_inactive_rule' => 'неактивне правило', + 'bill_edit_rules' => 'Firefly III також спробує відредагувати правило, пов’язане з цим рахунком до сплати. Проте, якщо ви редагували це правило самостійно, Firefly III нічого не змінить.|Firefly III також спробує відредагувати правила :count, пов’язані з цим рахунком до сплати. Проте, якщо ви редагували ці правила самостійно, Firefly III нічого не змінить.', + 'bill_expected_date' => 'Очікується :date', + 'bill_expected_date_js' => 'Очікується {date}', + 'expected_amount' => '(Очікувана) сума', + 'bill_paid_on' => 'Сплачено {date}', + 'bill_repeats_weekly' => 'Повторюється щотижня', + 'bill_repeats_monthly' => 'Повторюється щомісяця', + 'bill_repeats_quarterly' => 'Повторюється щокварталу', + 'bill_repeats_half-year' => 'Повторюється кожні півроку', + 'bill_repeats_yearly' => 'Повторюється щороку', + 'bill_repeats_weekly_other' => 'Повторюється через тиждень', + 'bill_repeats_monthly_other' => 'Повторюється через місяць', + 'bill_repeats_quarterly_other' => 'Повторюється через квартал', + 'bill_repeats_half-year_other' => 'Повторюється щороку', + 'bill_repeats_yearly_other' => 'Повторюється через рік', + 'bill_repeats_weekly_skip' => 'Повторюється кожні {skip} тижнів', + 'bill_repeats_monthly_skip' => 'Повторює кожні {skip} місяців', + 'bill_repeats_quarterly_skip' => 'Повторюється кожні {skip} кварталів', + 'bill_repeats_half-year_skip' => 'Повторюється кожні {skip} півроку', + 'bill_repeats_yearly_skip' => 'Повторюється кожні {skip} років', + 'subscriptions' => 'Підписки', + 'go_to_subscriptions' => 'Перейти до своїх підписок', + 'forever' => 'Назавжди', + 'extension_date_is' => 'Дата подовження {date}', // accounts: - 'i_am_owed_amount' => 'Мені заборгували суму', - 'i_owe_amount' => 'Я винен суму', - 'inactive_account_link' => 'Ви маєте :count неактивний (архівований) рахунок, який ви можете переглянути на цій окремій сторінці. У вас є :count неактивних (архівних) облікових записів, які ви можете переглядати на цій окремій сторінці.', - 'all_accounts_inactive' => 'Це ваші неактивні рахунки.', - 'active_account_link' => 'Це посилання повертається до ваших активних рахунків.', - 'account_missing_transaction' => 'Рахунок #:id (":name") не може бути переглянутий безпосередньо, але в Firefly відсутня інформація для перенаправлення.', - 'cc_monthly_payment_date_help' => 'Вибрані будь-який рік та будь-який місяць будуть проігноровані. Важливий лише день місяця.', - 'details_for_asset' => 'Деталі активів рахунку ":name"', - 'details_for_expense' => 'Деталі по рахунку витрат ":name"', - 'details_for_revenue' => 'Подробиці джерела доходу ":name"', - 'details_for_cash' => 'Деталі готівкового рахунку ":name"', - 'store_new_asset_account' => 'Зберегти новий рахунок активів', - 'store_new_expense_account' => 'Зберегти новий рахунок витрат', - 'store_new_revenue_account' => 'Зберегти нове джерело доходу', - 'edit_asset_account' => 'Редагувати рахунок активів ":name"', - 'edit_expense_account' => 'Редагувати рахунок витрат ":name"', - 'edit_revenue_account' => 'Редагувати джерело доходу ":name"', - 'delete_asset_account' => 'Видалити рахунок активів ":name"', - 'delete_expense_account' => 'Видалити рахунок витрат ":name"', - 'delete_revenue_account' => 'Видалити джерело доходу ":name"', - 'delete_liabilities_account' => 'Видалити відповідальність ":name"', - 'asset_deleted' => 'Рахунок активів ":name" успішно видалено', - 'account_deleted' => 'Успішно видалено рахунок ":name"', - 'expense_deleted' => 'Successfully deleted expense account ":name"', - 'revenue_deleted' => 'Успішно видалено джерело доходів ":name"', - 'update_asset_account' => 'Update asset account', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Оновити зобов\'язання', - 'update_expense_account' => 'Update expense account', - 'update_revenue_account' => 'Оновити джерело доходу', - 'make_new_asset_account' => 'Create a new asset account', - 'make_new_expense_account' => 'Create a new expense account', - 'make_new_revenue_account' => 'Створити нове джерело доходу', - 'make_new_liabilities_account' => 'Створити нове зобов\'язання', - 'asset_accounts' => 'Основні рахунки', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Основні рахунки (неактивні)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Рахунки витрат', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Джерела доходів', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Cash accounts', - 'Cash account' => 'Готівка', - 'liabilities_accounts' => 'Пасиви', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Звірка рахунку ":account"', - 'overview_of_reconcile_modal' => 'Overview of reconciliation', - 'delete_reconciliation' => 'Delete reconciliation', - 'update_reconciliation' => 'Update reconciliation', - 'amount_cannot_be_zero' => 'The amount cannot be zero', - 'end_of_reconcile_period' => 'End of reconcile period: :period', - 'start_of_reconcile_period' => 'Start of reconcile period: :period', - 'start_balance' => 'Початковий баланс', - 'end_balance' => 'Кінцевий баланс', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Update selection', - 'store_reconcile' => 'Store reconciliation', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Reconciliation', - 'reconciliation' => 'Reconciliation', - 'reconcile_options' => 'Reconciliation options', - 'reconcile_range' => 'Reconciliation range', - 'start_reconcile' => 'Start reconciling', - 'cash_account_type' => 'Готівка', - 'cash' => 'готівка', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => 'Account type', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'New account ":name" stored!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Updated account ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Налаштування кредитної картки', - 'no_transactions_account' => 'Немає транзакцій (у цьому періоді) для рахунку активу «:name».', - 'no_transactions_period' => 'There are no transactions (in this period).', - 'no_data_for_chart' => 'Недостатньо інформації (поки що) для створення цього графіку.', - 'select_at_least_one_account' => 'Please select at least one asset account', - 'select_at_least_one_category' => 'Будь ласка, оберіть хоча б одну категорію', - 'select_at_least_one_budget' => 'Будь ласка, оберіть хоча б один бюджет', - 'select_at_least_one_tag' => 'Будь ласка, виберіть принаймні один тег', - 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', - 'account_default_currency' => 'This will be the default currency associated with this account.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'You can always edit or delete a correction later.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Reconciliation stored', - 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', - 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', - 'sum_of_reconciliation' => 'Sum of reconciliation', - 'reconcile_this_account' => 'Reconcile this account', - 'reconcile' => 'Reconcile', - 'show' => 'Показати', - 'confirm_reconciliation' => 'Confirm reconciliation', - 'submitted_start_balance' => 'Submitted start balance', - 'selected_transactions' => 'Вибрані транзакції (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Submitted end balance', - 'initial_balance_description' => 'Initial balance for ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'unknown', - 'interest_calc_daily' => 'За день', - 'interest_calc_monthly' => 'За місяць', - 'interest_calc_yearly' => 'Per year', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Initial balance account of :account', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'Мені заборгували суму', + 'i_owe_amount' => 'Я винен суму', + 'inactive_account_link' => 'Ви маєте :count неактивний (архівований) рахунок, який ви можете переглянути на цій окремій сторінці. У вас є :count неактивних (архівних) облікових записів, які ви можете переглядати на цій окремій сторінці.', + 'all_accounts_inactive' => 'Це ваші неактивні рахунки.', + 'active_account_link' => 'Це посилання повертається до ваших активних рахунків.', + 'account_missing_transaction' => 'Рахунок #:id (":name") не може бути переглянутий безпосередньо, але в Firefly відсутня інформація для перенаправлення.', + 'cc_monthly_payment_date_help' => 'Вибрані будь-який рік та будь-який місяць будуть проігноровані. Важливий лише день місяця.', + 'details_for_asset' => 'Деталі активів рахунку ":name"', + 'details_for_expense' => 'Деталі по рахунку витрат ":name"', + 'details_for_revenue' => 'Подробиці джерела доходу ":name"', + 'details_for_cash' => 'Деталі готівкового рахунку ":name"', + 'store_new_asset_account' => 'Зберегти новий рахунок активів', + 'store_new_expense_account' => 'Зберегти новий рахунок витрат', + 'store_new_revenue_account' => 'Зберегти нове джерело доходу', + 'edit_asset_account' => 'Редагувати рахунок активів ":name"', + 'edit_expense_account' => 'Редагувати рахунок витрат ":name"', + 'edit_revenue_account' => 'Редагувати джерело доходу ":name"', + 'delete_asset_account' => 'Видалити рахунок активів ":name"', + 'delete_expense_account' => 'Видалити рахунок витрат ":name"', + 'delete_revenue_account' => 'Видалити джерело доходу ":name"', + 'delete_liabilities_account' => 'Видалити відповідальність ":name"', + 'asset_deleted' => 'Рахунок активів ":name" успішно видалено', + 'account_deleted' => 'Успішно видалено рахунок ":name"', + 'expense_deleted' => 'Successfully deleted expense account ":name"', + 'revenue_deleted' => 'Успішно видалено джерело доходів ":name"', + 'update_asset_account' => 'Update asset account', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Оновити зобов\'язання', + 'update_expense_account' => 'Update expense account', + 'update_revenue_account' => 'Оновити джерело доходу', + 'make_new_asset_account' => 'Create a new asset account', + 'make_new_expense_account' => 'Create a new expense account', + 'make_new_revenue_account' => 'Створити нове джерело доходу', + 'make_new_liabilities_account' => 'Створити нове зобов\'язання', + 'asset_accounts' => 'Основні рахунки', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Основні рахунки (неактивні)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Рахунки витрат', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Джерела доходів', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Cash accounts', + 'Cash account' => 'Готівка', + 'liabilities_accounts' => 'Пасиви', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Звірка рахунку ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', + 'delete_reconciliation' => 'Delete reconciliation', + 'update_reconciliation' => 'Update reconciliation', + 'amount_cannot_be_zero' => 'The amount cannot be zero', + 'end_of_reconcile_period' => 'End of reconcile period: :period', + 'start_of_reconcile_period' => 'Start of reconcile period: :period', + 'start_balance' => 'Початковий баланс', + 'end_balance' => 'Кінцевий баланс', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Update selection', + 'store_reconcile' => 'Store reconciliation', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Reconciliation', + 'reconciliation' => 'Reconciliation', + 'reconcile_options' => 'Reconciliation options', + 'reconcile_range' => 'Reconciliation range', + 'start_reconcile' => 'Start reconciling', + 'cash_account_type' => 'Готівка', + 'cash' => 'готівка', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'New account ":name" stored!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Updated account ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Налаштування кредитної картки', + 'no_transactions_account' => 'Немає транзакцій (у цьому періоді) для рахунку активу «:name».', + 'no_transactions_period' => 'There are no transactions (in this period).', + 'no_data_for_chart' => 'Недостатньо інформації (поки що) для створення цього графіку.', + 'select_at_least_one_account' => 'Please select at least one asset account', + 'select_at_least_one_category' => 'Будь ласка, оберіть хоча б одну категорію', + 'select_at_least_one_budget' => 'Будь ласка, оберіть хоча б один бюджет', + 'select_at_least_one_tag' => 'Будь ласка, виберіть принаймні один тег', + 'select_at_least_one_expense' => 'Please select at least one combination of expense/revenue accounts. If you have none (the list is empty) this report is not available.', + 'account_default_currency' => 'This will be the default currency associated with this account.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'You can always edit or delete a correction later.', + 'must_be_asset_account' => 'You can only reconcile asset accounts', + 'reconciliation_stored' => 'Reconciliation stored', + 'reconciliation_error' => 'Due to an error the transactions were marked as reconciled but the correction has not been stored: :error.', + 'reconciliation_transaction_title' => 'Reconciliation (:from to :to)', + 'sum_of_reconciliation' => 'Sum of reconciliation', + 'reconcile_this_account' => 'Reconcile this account', + 'reconcile' => 'Reconcile', + 'show' => 'Показати', + 'confirm_reconciliation' => 'Confirm reconciliation', + 'submitted_start_balance' => 'Submitted start balance', + 'selected_transactions' => 'Вибрані транзакції (:count)', + 'already_cleared_transactions' => 'Already cleared transactions (:count)', + 'submitted_end_balance' => 'Submitted end balance', + 'initial_balance_description' => 'Initial balance for ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'unknown', + 'interest_calc_daily' => 'За день', + 'interest_calc_monthly' => 'За місяць', + 'interest_calc_yearly' => 'Per year', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Initial balance account of :account', + 'list_options' => 'List options', // categories: - 'new_category' => 'New category', - 'create_new_category' => 'Create a new category', - 'without_category' => 'Without a category', - 'update_category' => 'Update category', - 'updated_category' => 'Updated category ":name"', - 'categories' => 'Категорії', - 'edit_category' => 'Edit category ":name"', - 'no_category' => '(no category)', - 'unknown_category_plain' => 'No category', - 'category' => 'Category', - 'delete_category' => 'Delete category ":name"', - 'deleted_category' => 'Deleted category ":name"', - 'store_category' => 'Store new category', - 'stored_category' => 'Stored new category ":name"', - 'without_category_between' => 'Without category between :start and :end', + 'new_category' => 'New category', + 'create_new_category' => 'Create a new category', + 'without_category' => 'Without a category', + 'update_category' => 'Update category', + 'updated_category' => 'Updated category ":name"', + 'categories' => 'Категорії', + 'edit_category' => 'Edit category ":name"', + 'no_category' => '(no category)', + 'unknown_category_plain' => 'No category', + 'category' => 'Category', + 'delete_category' => 'Delete category ":name"', + 'deleted_category' => 'Deleted category ":name"', + 'store_category' => 'Store new category', + 'stored_category' => 'Stored new category ":name"', + 'without_category_between' => 'Without category between :start and :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Update withdrawal', - 'update_deposit' => 'Update deposit', - 'update_transaction' => 'Update transaction', - 'update_transfer' => 'Update transfer', - 'updated_withdrawal' => 'Updated withdrawal ":description"', - 'updated_deposit' => 'Updated deposit ":description"', - 'updated_transfer' => 'Updated transfer ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Delete withdrawal ":description"', - 'delete_deposit' => 'Delete deposit ":description"', - 'delete_transfer' => 'Delete transfer ":description"', - 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', - 'deleted_deposit' => 'Successfully deleted deposit ":description"', - 'deleted_transfer' => 'Successfully deleted transfer ":description"', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => 'Successfully created new transaction ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Successfully created your new transaction', - 'updated_journal_no_descr' => 'Successfully updated your transaction', - 'select_transactions' => 'Вибрати транзакції', - 'rule_group_select_transactions' => 'Застосувати ":title" до транзакцій', - 'rule_select_transactions' => 'Застосувати ":title" до транзакцій', - 'stop_selection' => 'Stop selecting transactions', - 'reconcile_selected' => 'Reconcile', - 'mass_delete_journals' => 'Delete a number of transactions', - 'mass_edit_journals' => 'Edit a number of transactions', - 'mass_bulk_journals' => 'Bulk edit a number of transactions', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', - 'no_bulk_category' => 'Don\'t update category', - 'no_bulk_budget' => 'Don\'t update budget', - 'no_bulk_tags' => 'Don\'t update tag(s)', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Видалити вибране', - 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(поза бюджетом)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Створити', - 'empty' => '(порожньо)', - 'all_other_budgets' => '(всі інші бюджети)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Тег', - 'no_budget_squared' => '(no budget)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Видалено :count транзакцій.|Видалено транзакції :count.', - 'mass_edited_transactions_success' => 'Оновлено :count транзакцій.|Оновлено :count транзакцій.', - 'opt_group_' => '(no account type)', - 'opt_group_no_account_type' => '(no account type)', - 'opt_group_defaultAsset' => 'Основний рахунок за замовчуванням', - 'opt_group_savingAsset' => 'Накопичувальні рахунки', - 'opt_group_sharedAsset' => 'Спільні рахунки', - 'opt_group_ccAsset' => 'Credit cards', - 'opt_group_cashWalletAsset' => 'Готівкові гаманці', - 'opt_group_expense_account' => 'Рахунки витрат', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => 'Зобов\'язання: Позика', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => 'Зобов\'язання: Борг', - 'opt_group_l_Mortgage' => 'Liability: Mortgage', - 'opt_group_l_Credit card' => 'Liability: Credit card', - 'notes' => 'Notes', - 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', - 'attachment_not_found' => 'This attachment could not be found.', - 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Update withdrawal', + 'update_deposit' => 'Update deposit', + 'update_transaction' => 'Update transaction', + 'update_transfer' => 'Update transfer', + 'updated_withdrawal' => 'Updated withdrawal ":description"', + 'updated_deposit' => 'Updated deposit ":description"', + 'updated_transfer' => 'Updated transfer ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Delete withdrawal ":description"', + 'delete_deposit' => 'Delete deposit ":description"', + 'delete_transfer' => 'Delete transfer ":description"', + 'deleted_withdrawal' => 'Successfully deleted withdrawal ":description"', + 'deleted_deposit' => 'Successfully deleted deposit ":description"', + 'deleted_transfer' => 'Successfully deleted transfer ":description"', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => 'Successfully created new transaction ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Successfully created your new transaction', + 'updated_journal_no_descr' => 'Successfully updated your transaction', + 'select_transactions' => 'Вибрати транзакції', + 'rule_group_select_transactions' => 'Застосувати ":title" до транзакцій', + 'rule_select_transactions' => 'Застосувати ":title" до транзакцій', + 'stop_selection' => 'Stop selecting transactions', + 'reconcile_selected' => 'Reconcile', + 'mass_delete_journals' => 'Delete a number of transactions', + 'mass_edit_journals' => 'Edit a number of transactions', + 'mass_bulk_journals' => 'Bulk edit a number of transactions', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => 'Use the inputs below to set new values. If you leave them empty, they will be made empty for all. Also, note that only withdrawals will be given a budget.', + 'no_bulk_category' => 'Don\'t update category', + 'no_bulk_budget' => 'Don\'t update budget', + 'no_bulk_tags' => 'Don\'t update tag(s)', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Видалити вибране', + 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(поза бюджетом)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Створити', + 'empty' => '(порожньо)', + 'all_other_budgets' => '(всі інші бюджети)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Тег', + 'no_budget_squared' => '(no budget)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Видалено :count транзакцій.|Видалено транзакції :count.', + 'mass_edited_transactions_success' => 'Оновлено :count транзакцій.|Оновлено :count транзакцій.', + 'opt_group_' => '(no account type)', + 'opt_group_no_account_type' => '(no account type)', + 'opt_group_defaultAsset' => 'Основний рахунок за замовчуванням', + 'opt_group_savingAsset' => 'Накопичувальні рахунки', + 'opt_group_sharedAsset' => 'Спільні рахунки', + 'opt_group_ccAsset' => 'Credit cards', + 'opt_group_cashWalletAsset' => 'Готівкові гаманці', + 'opt_group_expense_account' => 'Рахунки витрат', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => 'Зобов\'язання: Позика', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => 'Зобов\'язання: Борг', + 'opt_group_l_Mortgage' => 'Liability: Mortgage', + 'opt_group_l_Credit card' => 'Liability: Credit card', + 'notes' => 'Notes', + 'unknown_journal_error' => 'Could not store the transaction. Please check the log files.', + 'attachment_not_found' => 'This attachment could not be found.', + 'journal_link_bill' => 'This transaction is linked to bill :name. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Welcome to Firefly III!', - 'submit' => 'Підтвердити', - 'submission' => 'Submission', - 'submit_yes_really' => 'Submit (I know what I\'m doing)', - 'getting_started' => 'Getting started', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', - 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', - 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', - 'language' => 'Мова', - 'new_savings_account' => ':bank_name savings account', - 'cash_wallet' => 'Гаманець', - 'currency_not_present' => 'Якщо валюта, якою ви зазвичай користуєтесь відсутня, не хвилюйтеся. Ви можете створити власну валюту у розділі Опції > Валюти.', + 'welcome' => 'Welcome to Firefly III!', + 'submit' => 'Підтвердити', + 'submission' => 'Submission', + 'submit_yes_really' => 'Submit (I know what I\'m doing)', + 'getting_started' => 'Getting started', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + 'set_preferred_language' => 'If you prefer to use Firefly III in another language, please indicate so here.', + 'language' => 'Мова', + 'new_savings_account' => ':bank_name savings account', + 'cash_wallet' => 'Гаманець', + 'currency_not_present' => 'Якщо валюта, якою ви зазвичай користуєтесь відсутня, не хвилюйтеся. Ви можете створити власну валюту у розділі Опції > Валюти.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Your accounts', - 'your_accounts' => 'Your account overview', - 'category_overview' => 'Category overview', - 'expense_overview' => 'Expense account overview', - 'revenue_overview' => 'Revenue account overview', - 'budgetsAndSpending' => 'Бюджети та витрати', - 'budgets_and_spending' => 'Budgets and spending', - 'go_to_budget' => 'Go to budget "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Перейти до витрат', - 'savings' => 'Заощадження', - 'newWithdrawal' => 'Нові витрати', - 'newDeposit' => 'Нові надходження', - 'newTransfer' => 'Новий переказ', - 'bills_to_pay' => 'Рахунки до сплати', - 'per_day' => 'За день', - 'left_to_spend_per_day' => 'Залишилося на день', - 'bills_paid' => 'Оплачені рахунки', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Your accounts', + 'your_accounts' => 'Your account overview', + 'category_overview' => 'Category overview', + 'expense_overview' => 'Expense account overview', + 'revenue_overview' => 'Revenue account overview', + 'budgetsAndSpending' => 'Бюджети та витрати', + 'budgets_and_spending' => 'Budgets and spending', + 'go_to_budget' => 'Go to budget "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Перейти до витрат', + 'savings' => 'Заощадження', + 'newWithdrawal' => 'Нові витрати', + 'newDeposit' => 'Нові надходження', + 'newTransfer' => 'Новий переказ', + 'bills_to_pay' => 'Рахунки до сплати', + 'per_day' => 'За день', + 'left_to_spend_per_day' => 'Залишилося на день', + 'bills_paid' => 'Оплачені рахунки', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Валюта', - 'preferences' => 'Налаштування', - 'logout' => 'Вихід із системи', - 'logout_other_sessions' => 'Вийти з усіх інших сеансів', - 'toggleNavigation' => 'Переключити навігацію', - 'searchPlaceholder' => 'Пошук...', - 'version' => 'Версія', - 'dashboard' => 'Головна панель', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'Усі ваші гроші', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Доступний бюджет ({currency})', - 'currencies' => 'Валюти', - 'activity' => 'Активність', - 'usage' => 'Використання', - 'accounts' => 'Рахунки', - 'Asset account' => 'Активний рахунок', - 'Default account' => 'Основний рахунок', - 'Expense account' => 'Рахунок витрат', - 'Revenue account' => 'Джерело доходів', - 'Initial balance account' => 'Початковий баланс на рахунок', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Дебіт', - 'account_type_Loan' => 'Позика', - 'account_type_Mortgage' => 'Іпотека', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Кредитна картка', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Бюджети', - 'tags' => 'Теги', - 'reports' => 'Звіти', - 'transactions' => 'Транзакції', - 'expenses' => 'Витрати', - 'income' => 'Дохід / прихід', - 'transfers' => 'Перекази', - 'moneyManagement' => 'Money management', - 'money_management' => 'Money management', - 'tools' => 'Tools', - 'piggyBanks' => 'Скарбнички', - 'piggy_banks' => 'Скарбнички', - 'amount_x_of_y' => '{current} of {total}', - 'bills' => 'Рахунки', - 'withdrawal' => 'Витрата', - 'opening_balance' => 'Opening balance', - 'deposit' => 'Deposit', - 'account' => 'Account', - 'transfer' => 'Transfer', - 'Withdrawal' => 'Витрата', - 'Deposit' => 'Deposit', - 'Transfer' => 'Переказ', - 'bill' => 'Рахунок', - 'yes' => 'Так', - 'no' => 'Ні', - 'amount' => 'Сума', - 'overview' => 'Огляд', - 'saveOnAccount' => 'Save on account', - 'unknown' => 'Unknown', - 'monthly' => 'Monthly', - 'profile' => 'Профіль', - 'errors' => 'Помилки', - 'debt_start_date' => 'Start date of debt', - 'debt_start_amount' => 'Start amount of debt', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => 'Зберегти нове зобов\'язання', - 'edit_liabilities_account' => 'Редагувати зобов\'язання ":name"', - 'financial_control' => 'Фінансовий контроль', - 'accounting' => 'Accounting', - 'automation' => 'Автоматизація', - 'others' => 'Others', - 'classification' => 'Класифікація', - 'store_transaction' => 'Store transaction', + 'currency' => 'Валюта', + 'preferences' => 'Налаштування', + 'logout' => 'Вихід із системи', + 'logout_other_sessions' => 'Вийти з усіх інших сеансів', + 'toggleNavigation' => 'Переключити навігацію', + 'searchPlaceholder' => 'Пошук...', + 'version' => 'Версія', + 'dashboard' => 'Головна панель', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'Усі ваші гроші', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Доступний бюджет ({currency})', + 'currencies' => 'Валюти', + 'activity' => 'Активність', + 'usage' => 'Використання', + 'accounts' => 'Рахунки', + 'Asset account' => 'Активний рахунок', + 'Default account' => 'Основний рахунок', + 'Expense account' => 'Рахунок витрат', + 'Revenue account' => 'Джерело доходів', + 'Initial balance account' => 'Початковий баланс на рахунок', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Дебіт', + 'account_type_Loan' => 'Позика', + 'account_type_Mortgage' => 'Іпотека', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Кредитна картка', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Бюджети', + 'tags' => 'Теги', + 'reports' => 'Звіти', + 'transactions' => 'Транзакції', + 'expenses' => 'Витрати', + 'income' => 'Дохід / прихід', + 'transfers' => 'Перекази', + 'moneyManagement' => 'Money management', + 'money_management' => 'Money management', + 'tools' => 'Tools', + 'piggyBanks' => 'Скарбнички', + 'piggy_banks' => 'Скарбнички', + 'amount_x_of_y' => '{current} of {total}', + 'bills' => 'Рахунки', + 'withdrawal' => 'Витрата', + 'opening_balance' => 'Opening balance', + 'deposit' => 'Deposit', + 'account' => 'Account', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Витрата', + 'Deposit' => 'Deposit', + 'Transfer' => 'Переказ', + 'bill' => 'Рахунок', + 'yes' => 'Так', + 'no' => 'Ні', + 'amount' => 'Сума', + 'overview' => 'Огляд', + 'saveOnAccount' => 'Save on account', + 'unknown' => 'Unknown', + 'monthly' => 'Monthly', + 'profile' => 'Профіль', + 'errors' => 'Помилки', + 'debt_start_date' => 'Start date of debt', + 'debt_start_amount' => 'Start amount of debt', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => 'Зберегти нове зобов\'язання', + 'edit_liabilities_account' => 'Редагувати зобов\'язання ":name"', + 'financial_control' => 'Фінансовий контроль', + 'accounting' => 'Accounting', + 'automation' => 'Автоматизація', + 'others' => 'Others', + 'classification' => 'Класифікація', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Default financial report between :start and :end', - 'report_audit' => 'Transaction history overview between :start and :end', - 'report_category' => 'Category report between :start and :end', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Budget report between :start and :end', - 'report_tag' => 'Tag report between :start and :end', - 'quick_link_reports' => 'Швидкі посилання', - 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', - 'quick_link_default_report' => 'Default financial report', - 'quick_link_audit_report' => 'Transaction history overview', - 'report_this_month_quick' => 'Current month, all accounts', - 'report_last_month_quick' => 'Last month, all accounts', - 'report_this_year_quick' => 'Current year, all accounts', - 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', - 'report_all_time_quick' => 'All-time, all accounts', - 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', - 'incomeVsExpenses' => 'Порівняння доходів та витрат', - 'accountBalances' => 'Account balances', - 'balanceStart' => 'Balance at start of period', - 'balanceEnd' => 'Balance at end of period', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftInBudget' => 'Left in budget', - 'left_in_debt' => 'Сума боргу', - 'sumOfSums' => 'Sum of sums', - 'noCategory' => '(no category)', - 'notCharged' => 'Not charged (yet)', - 'inactive' => 'Inactive', - 'active' => 'Active', - 'difference' => 'Difference', - 'money_flowing_in' => 'In', - 'money_flowing_out' => 'Out', - 'topX' => 'top :number', - 'show_full_list' => 'Show entire list', - 'show_only_top' => 'Show only top :number', - 'report_type' => 'Report type', - 'report_type_default' => 'Default financial report', - 'report_type_audit' => 'Transaction history overview (audit)', - 'report_type_category' => 'Category report', - 'report_type_budget' => 'Budget report', - 'report_type_tag' => 'Tag report', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', - 'report_included_accounts' => 'Included accounts', - 'report_date_range' => 'Date range', - 'report_preset_ranges' => 'Pre-set ranges', - 'shared' => 'Shared', - 'fiscal_year' => 'Fiscal year', - 'income_entry' => 'Income from account ":name" between :start and :end', - 'expense_entry' => 'Expenses to account ":name" between :start and :end', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => 'Витрати в бюджеті ":budget" між :start і :end', - 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', - 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', - 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', - 'reports_extra_options' => 'Extra options', - 'report_has_no_extra_options' => 'This report has no extra options', - 'reports_submit' => 'Переглянути звіт', - 'end_after_start_date' => 'End date of report must be after start date.', - 'select_category' => 'Select category(ies)', - 'select_budget' => 'Select budget(s).', - 'select_tag' => 'Select tag(s).', - 'income_per_category' => 'Income per category', - 'expense_per_category' => 'Expense per category', - 'expense_per_budget' => 'Expense per budget', - 'income_per_account' => 'Income per account', - 'expense_per_account' => 'Expense per account', - 'expense_per_tag' => 'Expense per tag', - 'income_per_tag' => 'Income per tag', - 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', - 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', - 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', - 'include_income_not_in_category' => 'Included income not in the selected category(ies)', - 'include_income_not_in_account' => 'Included income not in the selected account(s)', - 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', - 'include_expense_not_in_tags' => 'Включені витрати не у вибраних тегах', - 'everything_else' => 'Everything else', - 'income_and_expenses' => 'Доходи і витрати', - 'spent_average' => 'Spent (average)', - 'income_average' => 'Income (average)', - 'transaction_count' => 'Transaction count', - 'average_spending_per_account' => 'Average spending per account', - 'average_income_per_account' => 'Average income per account', - 'total' => 'Всього', - 'description' => 'Опис', - 'sum_of_period' => 'Sum of period', - 'average_in_period' => 'Average in period', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'Default asset account', - 'account_role_sharedAsset' => 'Спільний рахунок', - 'account_role_savingAsset' => 'Рахунок для накопичення', - 'account_role_ccAsset' => 'Кредитна картка', - 'account_role_cashWalletAsset' => 'Гаманець', - 'budget_chart_click' => 'Будь ласка, натисніть на назву бюджету в звітності, щоб побачити діаграму.', - 'category_chart_click' => 'Будь ласка, натисніть на назву категорії в наведеній таблиці, щоб побачити діаграму.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_accounts_per_asset' => 'Зароблено і витрачено (на рахунок)', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', - 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', - 'sum_in_default_currency' => 'The sum will always be in your default currency.', - 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', + 'report_default' => 'Default financial report between :start and :end', + 'report_audit' => 'Transaction history overview between :start and :end', + 'report_category' => 'Category report between :start and :end', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => 'Budget report between :start and :end', + 'report_tag' => 'Tag report between :start and :end', + 'quick_link_reports' => 'Швидкі посилання', + 'quick_link_examples' => 'These are just some example links to get you started. Check out the help pages under the (?)-button for information on all reports and the magic words you can use.', + 'quick_link_default_report' => 'Default financial report', + 'quick_link_audit_report' => 'Transaction history overview', + 'report_this_month_quick' => 'Current month, all accounts', + 'report_last_month_quick' => 'Last month, all accounts', + 'report_this_year_quick' => 'Current year, all accounts', + 'report_this_fiscal_year_quick' => 'Current fiscal year, all accounts', + 'report_all_time_quick' => 'All-time, all accounts', + 'reports_can_bookmark' => 'Remember that reports can be bookmarked.', + 'incomeVsExpenses' => 'Порівняння доходів та витрат', + 'accountBalances' => 'Account balances', + 'balanceStart' => 'Balance at start of period', + 'balanceEnd' => 'Balance at end of period', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftInBudget' => 'Left in budget', + 'left_in_debt' => 'Сума боргу', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', + 'topX' => 'top :number', + 'show_full_list' => 'Show entire list', + 'show_only_top' => 'Show only top :number', + 'report_type' => 'Report type', + 'report_type_default' => 'Default financial report', + 'report_type_audit' => 'Transaction history overview (audit)', + 'report_type_category' => 'Category report', + 'report_type_budget' => 'Budget report', + 'report_type_tag' => 'Tag report', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Included accounts', + 'report_date_range' => 'Date range', + 'report_preset_ranges' => 'Pre-set ranges', + 'shared' => 'Shared', + 'fiscal_year' => 'Fiscal year', + 'income_entry' => 'Income from account ":name" between :start and :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => 'Витрати в бюджеті ":budget" між :start і :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Extra options', + 'report_has_no_extra_options' => 'This report has no extra options', + 'reports_submit' => 'Переглянути звіт', + 'end_after_start_date' => 'End date of report must be after start date.', + 'select_category' => 'Select category(ies)', + 'select_budget' => 'Select budget(s).', + 'select_tag' => 'Select tag(s).', + 'income_per_category' => 'Income per category', + 'expense_per_category' => 'Expense per category', + 'expense_per_budget' => 'Expense per budget', + 'income_per_account' => 'Income per account', + 'expense_per_account' => 'Expense per account', + 'expense_per_tag' => 'Expense per tag', + 'income_per_tag' => 'Income per tag', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Включені витрати не у вибраних тегах', + 'everything_else' => 'Everything else', + 'income_and_expenses' => 'Доходи і витрати', + 'spent_average' => 'Spent (average)', + 'income_average' => 'Income (average)', + 'transaction_count' => 'Transaction count', + 'average_spending_per_account' => 'Average spending per account', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Всього', + 'description' => 'Опис', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Спільний рахунок', + 'account_role_savingAsset' => 'Рахунок для накопичення', + 'account_role_ccAsset' => 'Кредитна картка', + 'account_role_cashWalletAsset' => 'Гаманець', + 'budget_chart_click' => 'Будь ласка, натисніть на назву бюджету в звітності, щоб побачити діаграму.', + 'category_chart_click' => 'Будь ласка, натисніть на назву категорії в наведеній таблиці, щоб побачити діаграму.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_accounts_per_asset' => 'Зароблено і витрачено (на рахунок)', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + 'multi_currency_report_sum' => 'Because this list contains accounts with multiple currencies, the sum(s) you see may not make sense. The report will always fall back to your default currency.', + 'sum_in_default_currency' => 'The sum will always be in your default currency.', + 'net_filtered_prefs' => 'This chart will never include accounts that have the "Include in net worth"-option unchecked.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Chart', - 'month' => 'Month', - 'budget' => 'Budget', - 'spent' => 'Spent', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Spent in budget', - 'left_to_spend' => 'Left to spend', - 'earned' => 'Earned', - 'overspent' => 'Overspent', - 'left' => 'Left', - 'max-amount' => 'Maximum amount', - 'min-amount' => 'Minimum amount', - 'journal-amount' => 'Запис поточного рахунку', - 'name' => 'Name', - 'date' => 'Дата', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Paid', - 'unpaid' => 'Unpaid', - 'day' => 'День', - 'budgeted' => 'Budgeted', - 'period' => 'Period', - 'balance' => 'Balance', - 'in_out_period' => 'In + out this period', - 'sum' => 'Sum', - 'summary' => 'Summary', - 'average' => 'Average', - 'balanceFor' => 'Balance for :name', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minimum amount', + 'journal-amount' => 'Запис поточного рахунку', + 'name' => 'Name', + 'date' => 'Дата', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Paid', + 'unpaid' => 'Unpaid', + 'day' => 'День', + 'budgeted' => 'Budgeted', + 'period' => 'Period', + 'balance' => 'Balance', + 'in_out_period' => 'In + out this period', + 'sum' => 'Sum', + 'summary' => 'Summary', + 'average' => 'Average', + 'balanceFor' => 'Balance for :name', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Додайте гроші в скарбничку ":name"', - 'piggy_bank' => 'Скарбничка', - 'new_piggy_bank' => 'Нова скарбничка', - 'store_piggy_bank' => 'Зберегти нову скарбничку', - 'stored_piggy_bank' => 'Зберегти нову скарбничку ":name"', - 'account_status' => 'Account status', - 'left_for_piggy_banks' => 'Left for piggy banks', - 'sum_of_piggy_banks' => 'Сума скарбничок', - 'saved_so_far' => 'Saved so far', - 'left_to_save' => 'Left to save', - 'suggested_amount' => 'Suggested monthly amount to save', - 'add_money_to_piggy_title' => 'Додайте гроші в скарбничку ":name"', - 'remove_money_from_piggy_title' => 'Зніміть гроші зі скарбнички ":name"', - 'add' => 'Add', - 'no_money_for_piggy' => 'У вас немає грошей, щоб покласти в цю скарбничку.', - 'suggested_savings_per_month' => 'Suggested per month', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Додайте гроші в скарбничку ":name"', + 'piggy_bank' => 'Скарбничка', + 'new_piggy_bank' => 'Нова скарбничка', + 'store_piggy_bank' => 'Зберегти нову скарбничку', + 'stored_piggy_bank' => 'Зберегти нову скарбничку ":name"', + 'account_status' => 'Account status', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Сума скарбничок', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Додайте гроші в скарбничку ":name"', + 'remove_money_from_piggy_title' => 'Зніміть гроші зі скарбнички ":name"', + 'add' => 'Add', + 'no_money_for_piggy' => 'У вас немає грошей, щоб покласти в цю скарбничку.', + 'suggested_savings_per_month' => 'Suggested per month', - 'remove' => 'Remove', - 'max_amount_add' => 'The maximum amount you can add is', - 'max_amount_remove' => 'The maximum amount you can remove is', - 'update_piggy_button' => 'Оновити скарбничку', - 'update_piggy_title' => 'Оновити скарбничку "":name"', - 'updated_piggy_bank' => 'Оновлено скарбничку ":name"', - 'details' => 'Details', - 'events' => 'Events', - 'target_amount' => 'Target amount', - 'start_date' => 'Start date', - 'no_start_date' => 'No start date', - 'target_date' => 'Target date', - 'no_target_date' => 'No target date', - 'table' => 'Table', - 'delete_piggy_bank' => 'Видалити скарбничку ":name"', - 'cannot_add_amount_piggy' => 'Не вдалося додати :amount до ":name.', - 'cannot_remove_from_piggy' => 'Не вдалося зняти :amount з :name".', - 'deleted_piggy_bank' => 'Видалено скарбничку ":name"', - 'added_amount_to_piggy' => 'Додано :amount до ":name"', - 'removed_amount_from_piggy' => 'Знято :amount з ":name"', - 'piggy_events' => 'Пов\'язані скарбнички', + 'remove' => 'Remove', + 'max_amount_add' => 'The maximum amount you can add is', + 'max_amount_remove' => 'The maximum amount you can remove is', + 'update_piggy_button' => 'Оновити скарбничку', + 'update_piggy_title' => 'Оновити скарбничку "":name"', + 'updated_piggy_bank' => 'Оновлено скарбничку ":name"', + 'details' => 'Details', + 'events' => 'Events', + 'target_amount' => 'Target amount', + 'start_date' => 'Start date', + 'no_start_date' => 'No start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Table', + 'delete_piggy_bank' => 'Видалити скарбничку ":name"', + 'cannot_add_amount_piggy' => 'Не вдалося додати :amount до ":name.', + 'cannot_remove_from_piggy' => 'Не вдалося зняти :amount з :name".', + 'deleted_piggy_bank' => 'Видалено скарбничку ":name"', + 'added_amount_to_piggy' => 'Додано :amount до ":name"', + 'removed_amount_from_piggy' => 'Знято :amount з ":name"', + 'piggy_events' => 'Пов\'язані скарбнички', // tags - 'delete_tag' => 'Delete tag ":tag"', - 'deleted_tag' => 'Deleted tag ":tag"', - 'new_tag' => 'Make new tag', - 'edit_tag' => 'Edit tag ":tag"', - 'updated_tag' => 'Updated tag ":tag"', - 'created_tag' => 'Tag ":tag" has been created!', + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', - 'transaction_journal_information' => 'Transaction information', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Meta information', - 'transaction_journal_more' => 'More information', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Stored under ":journal"', - 'total_amount' => 'Total amount', - 'number_of_decimals' => 'Number of decimals', + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Meta information', + 'transaction_journal_more' => 'More information', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Stored under ":journal"', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Administration', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'User administration', - 'list_all_users' => 'All users', - 'all_users' => 'All users', - 'instance_configuration' => 'Configuration', - 'firefly_instance_configuration' => 'Configuration options for Firefly III', - 'setting_single_user_mode' => 'Single user mode', - 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', - 'store_configuration' => 'Store configuration', - 'single_user_administration' => 'User administration for :email', - 'edit_user' => 'Edit user :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'User data', - 'user_information' => 'User information', - 'total_size' => 'total size', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => 'The configuration has been updated', - 'setting_is_demo_site' => 'Demo site', - 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', - 'block_code_bounced' => 'Email message(s) bounced', - 'block_code_expired' => 'Demo account expired', - 'no_block_code' => 'No reason for block or user not blocked', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'User has not yet confirmed new email address', - 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', - 'update_user' => 'Update user', - 'updated_user' => 'User data has been changed.', - 'delete_user' => 'Delete user :email', - 'user_deleted' => 'The user has been deleted', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Administration', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as well, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Description of the split transaction', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => 'Description of the split transaction', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => 'Transaction links configuration', - 'create_new_link_type' => 'Create new link type', - 'store_new_link_type' => 'Store new link type', - 'update_link_type' => 'Update link type', - 'edit_link_type' => 'Edit link type ":name"', - 'updated_link_type' => 'Updated link type ":name"', - 'delete_link_type' => 'Delete link type ":name"', - 'deleted_link_type' => 'Deleted link type ":name"', - 'stored_new_link_type' => 'Store new link type ":name"', - 'cannot_edit_link_type' => 'Cannot edit link type ":name"', - 'link_type_help_name' => 'Ie. "Duplicates"', - 'link_type_help_inward' => 'Ie. "duplicates"', - 'link_type_help_outward' => 'Ie. "is duplicated by"', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(do not save connection)', - 'link_transaction' => 'Link transaction', - 'link_to_other_transaction' => 'Link this transaction to another transaction', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => 'This transaction', - 'transaction' => 'Transaction', - 'comments' => 'Comments', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => 'Cannot link these transactions', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => 'Transactions are linked.', - 'journals_error_linked' => 'These transactions are already linked.', - 'journals_link_to_self' => 'You cannot link a transaction to itself', - 'journal_links' => 'Transaction links', - 'this_withdrawal' => 'This withdrawal', - 'this_deposit' => 'This deposit', - 'this_transfer' => 'This transfer', - 'overview_for_link' => 'Overview for link type ":name"', - 'source_transaction' => 'Source transaction', - 'link_description' => 'Link description', - 'destination_transaction' => 'Destination transaction', - 'delete_journal_link' => 'Delete the link between :source and :destination', - 'deleted_link' => 'Deleted link', + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journals_link_to_self' => 'You cannot link a transaction to itself', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', // link translations: - 'Paid_name' => 'Paid', - 'Refund_name' => 'Refund', - 'Reimbursement_name' => 'Reimbursement', - 'Related_name' => 'Related', - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'inward_transaction' => 'Inward transaction', - 'outward_transaction' => 'Outward transaction', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => 'Paid', + 'Refund_name' => 'Refund', + 'Reimbursement_name' => 'Reimbursement', + 'Related_name' => 'Related', + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'inward_transaction' => 'Inward transaction', + 'outward_transaction' => 'Outward transaction', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => 'Splits', - 'add_another_split' => 'Add another split', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', - 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Let\'s create an asset account!', - 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', - 'no_accounts_imperative_asset' => 'Щоб розпочати використання Firefly III, ви повинні створити принаймні один рахунок активів. Давайте зробимо це зараз:', - 'no_accounts_create_asset' => 'Create an asset account', - 'no_accounts_title_expense' => 'Let\'s create an expense account!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', - 'no_accounts_create_expense' => 'Create an expense account', - 'no_accounts_title_revenue' => 'Створімо нове джерело доходу!', - 'no_accounts_intro_revenue' => 'У вас немає створених джерел доходів. Джерел доходів - це місця, де ви отримуєте гроші, напр. Ваш роботодавець, банківський депозит, рента тощо.', - 'no_accounts_imperative_revenue' => 'Джерела доходів створюються автоматично під час створення транзакцій, але їх можна створити вручну теж. Створімо одне зараз? :', - 'no_accounts_create_revenue' => 'Створити нове джерело доходу', - 'no_accounts_title_liabilities' => 'Let\'s create a liability!', - 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', - 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', - 'no_accounts_create_liabilities' => 'Create a liability', - 'no_budgets_title_default' => 'Let\'s create a budget', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'У вас поки що немає бюджетів. Бюджети використовуються для організації ваших витрат у логічні групи, яким ви можете надати м’яке обмеження, щоб обмежити свої витрати.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', - 'no_budgets_create_default' => 'Create a budget', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Let\'s create a category!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', - 'no_tags_title_default' => 'Let\'s create a tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_tags_create_default' => 'Create a tag', - 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', - 'no_transactions_intro_withdrawal' => 'У вас поки що немає витрат. Ви повинні створити витрати, щоб почати керувати своїми фінансами.', - 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', - 'no_transactions_create_withdrawal' => 'Створити витрату', - 'no_transactions_title_deposit' => 'Let\'s create some income!', - 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', - 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', - 'no_transactions_create_deposit' => 'Create a deposit', - 'no_transactions_title_transfers' => 'Let\'s create a transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', - 'no_transactions_create_transfers' => 'Create a transfer', - 'no_piggies_title_default' => 'Давайте створимо скарбничку!', - 'no_piggies_intro_default' => 'У вас поки що немає жодних скарбниць. Ви можете створити скарбниці, щоб розділити заощадження і відслідковувати ваші заощадження.', - 'no_piggies_imperative_default' => 'У вас є речі, на які ви відкладаєте гроші? Створіть скарбничку і стежте за цим:', - 'no_piggies_create_default' => 'Створити нову скарбничку', - 'no_bills_title_default' => 'Давайте створимо рахунок!', - 'no_bills_intro_default' => 'Ви поки що не маєте рахунків. Ви можете створювати рахунки для відстеження регулярних витрат, таких як оренда або страхування.', - 'no_bills_imperative_default' => 'У вас регулярні рахунки? Створіть рахунок і відстежуйте свої платежі:', - 'no_bills_create_default' => 'Створити рахунок', + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'Щоб розпочати використання Firefly III, ви повинні створити принаймні один рахунок активів. Давайте зробимо це зараз:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Створімо нове джерело доходу!', + 'no_accounts_intro_revenue' => 'У вас немає створених джерел доходів. Джерел доходів - це місця, де ви отримуєте гроші, напр. Ваш роботодавець, банківський депозит, рента тощо.', + 'no_accounts_imperative_revenue' => 'Джерела доходів створюються автоматично під час створення транзакцій, але їх можна створити вручну теж. Створімо одне зараз? :', + 'no_accounts_create_revenue' => 'Створити нове джерело доходу', + 'no_accounts_title_liabilities' => 'Let\'s create a liability!', + 'no_accounts_intro_liabilities' => 'You have no liabilities yet. Liabilities are the accounts that register your (student) loans and other debts.', + 'no_accounts_imperative_liabilities' => 'You don\'t have to use this feature, but it can be useful if you want to keep track of these things.', + 'no_accounts_create_liabilities' => 'Create a liability', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'У вас поки що немає бюджетів. Бюджети використовуються для організації ваших витрат у логічні групи, яким ви можете надати м’яке обмеження, щоб обмежити свої витрати.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'У вас поки що немає витрат. Ви повинні створити витрати, щоб почати керувати своїми фінансами.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Створити витрату', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Давайте створимо скарбничку!', + 'no_piggies_intro_default' => 'У вас поки що немає жодних скарбниць. Ви можете створити скарбниці, щоб розділити заощадження і відслідковувати ваші заощадження.', + 'no_piggies_imperative_default' => 'У вас є речі, на які ви відкладаєте гроші? Створіть скарбничку і стежте за цим:', + 'no_piggies_create_default' => 'Створити нову скарбничку', + 'no_bills_title_default' => 'Давайте створимо рахунок!', + 'no_bills_intro_default' => 'Ви поки що не маєте рахунків. Ви можете створювати рахунки для відстеження регулярних витрат, таких як оренда або страхування.', + 'no_bills_imperative_default' => 'У вас регулярні рахунки? Створіть рахунок і відстежуйте свої платежі:', + 'no_bills_create_default' => 'Створити рахунок', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Recurring transactions', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => 'Calendar', - 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', - 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', - 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', - 'no_recurring_create_default' => 'Create a recurring transaction', - 'make_new_recurring' => 'Create a recurring transaction', - 'recurring_daily' => 'Щодня', - 'recurring_weekly' => 'Щотижня в :weekday', - 'recurring_weekly_skip' => 'Кожного :skip(st/nd/rd/th) тижня у :weekday', - 'recurring_monthly' => 'Щомісяця в день :dayOfMonth(st/nd/rd/th)', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', - 'recurring_yearly' => 'Every year on :date', - 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', - 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', - 'created_transactions' => 'Related transactions', - 'expected_withdrawals' => 'Очікувані витрати', - 'expected_deposits' => 'Expected deposits', - 'expected_transfers' => 'Expected transfers', - 'created_withdrawals' => 'Created withdrawals', - 'created_deposits' => 'Created deposits', - 'created_transfers' => 'Created transfers', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', - 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Recurring transactions', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => 'Calendar', + 'no_recurring_title_default' => 'Let\'s create a recurring transaction!', + 'no_recurring_intro_default' => 'You have no recurring transactions yet. You can use these to make Firefly III automatically create transactions for you.', + 'no_recurring_imperative_default' => 'This is a pretty advanced feature but it can be extremely useful. Make sure you read the documentation (?)-icon in the top right corner) before you continue.', + 'no_recurring_create_default' => 'Create a recurring transaction', + 'make_new_recurring' => 'Create a recurring transaction', + 'recurring_daily' => 'Щодня', + 'recurring_weekly' => 'Щотижня в :weekday', + 'recurring_weekly_skip' => 'Кожного :skip(st/nd/rd/th) тижня у :weekday', + 'recurring_monthly' => 'Щомісяця в день :dayOfMonth(st/nd/rd/th)', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => 'Every month on the :dayOfMonth(st/nd/rd/th) :weekday', + 'recurring_yearly' => 'Every year on :date', + 'overview_for_recurrence' => 'Overview for recurring transaction ":title"', + 'warning_duplicates_repetitions' => 'In rare instances, dates appear twice in this list. This can happen when multiple repetitions collide. Firefly III will always generate one transaction per day.', + 'created_transactions' => 'Related transactions', + 'expected_withdrawals' => 'Очікувані витрати', + 'expected_deposits' => 'Expected deposits', + 'expected_transfers' => 'Expected transfers', + 'created_withdrawals' => 'Created withdrawals', + 'created_deposits' => 'Created deposits', + 'created_transfers' => 'Created transfers', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Created from recurring transaction ":title" (#:id)', + 'recurring_never_cron' => 'It seems the cron job that is necessary to support recurring transactions has never run. This is of course normal when you have just installed Firefly III, but this should be something to set up as soon as possible. Please check out the help-pages using the (?)-icon in the top right corner of the page.', + 'recurring_cron_long_ago' => 'It looks like it has been more than 36 hours since the cron job to support recurring transactions has fired for the last time. Are you sure it has been set up correctly? Please check out the help-pages using the (?)-icon in the top right corner of the page.', - 'create_new_recurrence' => 'Create new recurring transaction', - 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', - 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', - 'no_currency' => '(no currency)', - 'mandatory_for_recurring' => 'Mandatory recurrence information', - 'mandatory_for_transaction' => 'Mandatory transaction information', - 'optional_for_recurring' => 'Optional recurrence information', - 'optional_for_transaction' => 'Optional transaction information', - 'change_date_other_options' => 'Change the "first date" to see more options.', - 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', - 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', - 'repeat_forever' => 'Repeat forever', - 'repeat_until_date' => 'Repeat until date', - 'repeat_times' => 'Repeat a number of times', - 'recurring_skips_one' => 'Every other', - 'recurring_skips_more' => 'Skips :count occurrences', - 'store_new_recurrence' => 'Store recurring transaction', - 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', - 'edit_recurrence' => 'Edit recurring transaction ":title"', - 'recurring_repeats_until' => 'Repeats until :date', - 'recurring_repeats_forever' => 'Repeats forever', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => 'Update recurring transaction', - 'updated_recurrence' => 'Updated recurring transaction ":title"', - 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', - 'delete_recurring' => 'Delete recurring transaction ":title"', - 'new_recurring_transaction' => 'New recurring transaction', - 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', - 'do_nothing' => 'Just create the transaction', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => 'Create the transaction on the previous Friday instead', - 'jump_to_monday' => 'Create the transaction on the next Monday instead', - 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', - 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', - 'except_weekends' => 'Except weekends', - 'recurrence_deleted' => 'Recurring transaction ":title" deleted', + 'create_new_recurrence' => 'Create new recurring transaction', + 'help_first_date' => 'Indicate the first expected recurrence. This must be in the future.', + 'help_first_date_no_past' => 'Indicate the first expected recurrence. Firefly III will not create transactions in the past.', + 'no_currency' => '(no currency)', + 'mandatory_for_recurring' => 'Mandatory recurrence information', + 'mandatory_for_transaction' => 'Mandatory transaction information', + 'optional_for_recurring' => 'Optional recurrence information', + 'optional_for_transaction' => 'Optional transaction information', + 'change_date_other_options' => 'Change the "first date" to see more options.', + 'mandatory_fields_for_tranaction' => 'The values here will end up in the transaction(s) being created', + 'click_for_calendar' => 'Click here for a calendar that shows you when the transaction would repeat.', + 'repeat_forever' => 'Repeat forever', + 'repeat_until_date' => 'Repeat until date', + 'repeat_times' => 'Repeat a number of times', + 'recurring_skips_one' => 'Every other', + 'recurring_skips_more' => 'Skips :count occurrences', + 'store_new_recurrence' => 'Store recurring transaction', + 'stored_new_recurrence' => 'Recurring transaction ":title" stored successfully.', + 'edit_recurrence' => 'Edit recurring transaction ":title"', + 'recurring_repeats_until' => 'Repeats until :date', + 'recurring_repeats_forever' => 'Repeats forever', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => 'Update recurring transaction', + 'updated_recurrence' => 'Updated recurring transaction ":title"', + 'recurrence_is_inactive' => 'This recurring transaction is not active and will not generate new transactions.', + 'delete_recurring' => 'Delete recurring transaction ":title"', + 'new_recurring_transaction' => 'New recurring transaction', + 'help_weekend' => 'What should Firefly III do when the recurring transaction falls on a Saturday or Sunday?', + 'do_nothing' => 'Just create the transaction', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => 'Create the transaction on the previous Friday instead', + 'jump_to_monday' => 'Create the transaction on the next Monday instead', + 'will_jump_friday' => 'Will be created on Friday instead of the weekends.', + 'will_jump_monday' => 'Will be created on Monday instead of the weekends.', + 'except_weekends' => 'Except weekends', + 'recurrence_deleted' => 'Recurring transaction ":title" deleted', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Balance (:currency)', - 'box_spent_in_currency' => 'Spent (:currency)', - 'box_earned_in_currency' => 'Earned (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => 'Оплачені рахунки (:currency)', - 'box_bill_unpaid_in_currency' => 'Несплачені рахунки (:currency)', - 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', - 'box_net_worth_in_currency' => 'Net worth (:currency)', - 'box_spend_per_day' => 'Left to spend per day: :amount', + 'box_balance_in_currency' => 'Balance (:currency)', + 'box_spent_in_currency' => 'Spent (:currency)', + 'box_earned_in_currency' => 'Earned (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => 'Оплачені рахунки (:currency)', + 'box_bill_unpaid_in_currency' => 'Несплачені рахунки (:currency)', + 'box_left_to_spend_in_currency' => 'Left to spend (:currency)', + 'box_net_worth_in_currency' => 'Net worth (:currency)', + 'box_spend_per_day' => 'Left to spend per day: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Додано :amount до скарбнички ":name"', - 'ale_action_log_remove' => 'Знято :amount зі скарбнички ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Скарбничка', - 'ale_action_remove_from_piggy' => 'Скарбничка', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Додано :amount до скарбнички ":name"', + 'ale_action_log_remove' => 'Знято :amount зі скарбнички ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Скарбничка', + 'ale_action_remove_from_piggy' => 'Скарбничка', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/uk_UA/validation.php b/resources/lang/uk_UA/validation.php index b64ef2fa72..8442b0fa79 100644 --- a/resources/lang/uk_UA/validation.php +++ b/resources/lang/uk_UA/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'У Вас немає необхідних прав доступу для цих налаштувань.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/vi_VN/firefly.php b/resources/lang/vi_VN/firefly.php index 35ba60d281..a3e204a052 100644 --- a/resources/lang/vi_VN/firefly.php +++ b/resources/lang/vi_VN/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => 'Đóng', - 'actions' => 'Hành động', - 'edit' => 'Sửa', - 'delete' => 'Xóa', - 'split' => 'Chia ra', - 'single_split' => 'Chia ra', - 'clone' => 'Nhân ra', - 'clone_and_edit' => 'Nhân bản và sửa', - 'confirm_action' => 'Xác nhận thao tác', - 'last_seven_days' => 'Bảy ngày gần đây', - 'last_thirty_days' => 'Ba mươi ngày gần đây', - 'last_180_days' => '180 ngày qua', - 'month_to_date' => 'Tháng đến ngày', - 'year_to_date' => 'Năm đến ngày', - 'YTD' => 'NĐN', - 'welcome_back' => 'Chào mừng trở lại?', - 'everything' => 'Tất cả mọi thứ', - 'today' => 'hôm nay', - 'customRange' => 'Chọn trong khoảng', - 'date_range' => 'Khoảng thời gian', - 'apply' => 'Áp dụng', - 'select_date' => 'Chọn ngày..', - 'cancel' => 'Hủy', - 'from' => 'Từ', - 'to' => 'Đến', - 'structure' => 'Kết cấu', - 'help_translating' => 'Văn bản trợ giúp này hiện chưa hỗ trợ ngôn ngữ của bạn. Bạn sẽ dịch giúp chứ?', - 'showEverything' => 'Hiện mọi thứ', - 'never' => 'Không bao giờ', - 'no_results_for_empty_search' => 'Không tìm gặp thứ bạn cần tìm.', - 'removed_amount' => 'Đã xóa :amount', - 'added_amount' => 'Đã thêm :amount', - 'asset_account_role_help' => 'Bất kỳ tùy chọn bổ sung nào do bạn chọn có thể được đặt sau.', - 'Opening balance' => 'Số dư đầu kỳ', - 'create_new_stuff' => 'Tạo công cụ mới', - 'new_withdrawal' => 'Rút tiền mới', - 'create_new_transaction' => 'Tạo giao dịch mới', - 'sidebar_frontpage_create' => 'Tạo', - 'new_transaction' => 'Giao dịch mới', - 'no_rules_for_bill' => 'Hóa đơn này không có quy tắc nào liên quan đến nó.', - 'go_to_asset_accounts' => 'Xem tài khoản của bạn', - 'go_to_budgets' => 'Chuyển đến ngân sách của bạn', - 'go_to_withdrawals' => 'Chuyển đến mục rút tiền của bạn', - 'clones_journal_x' => 'Giao dịch này là một bản sao của ":description" (#:id)', - 'go_to_categories' => 'Đi đến danh mục của bạn', - 'go_to_bills' => 'Đi đến hóa đơn của bạn', - 'go_to_expense_accounts' => 'Xem tài khoản chi phí của bạn', - 'go_to_revenue_accounts' => 'Xem tài khoản doanh thu của bạn', - 'go_to_piggies' => 'Tới heo đất của bạn', - 'new_deposit' => 'Tiền gửi mới', - 'new_transfer' => 'Chuyển khoản mới', - 'new_transfers' => 'Chuyển khoản mới', - 'new_asset_account' => 'tài khoản mới', - 'new_expense_account' => 'Tài khoản chi phí mới', - 'new_revenue_account' => 'Tài khoản doanh thu mới', - 'new_liabilities_account' => 'Nợ mới', - 'new_budget' => 'Ngân sách mới', - 'new_bill' => 'Hóa đơn mới', - 'block_account_logout' => 'Bạn đã đăng xuất. Tài khoản bị chặn không thể sử dụng. Bạn đã đăng ký với một địa chỉ email hợp lệ?', - 'flash_success' => 'Thành công!', - 'flash_info' => 'Tin nhắn', - 'flash_warning' => 'Cảnh báo!', - 'flash_error' => 'Lỗi!', - 'flash_danger' => 'Nguy hiểm!', - 'flash_info_multiple' => 'Có tin nhắn :tin nhắn', - 'flash_error_multiple' => 'Có lỗi :lỗi', - 'net_worth' => 'Tài sản thực', - 'help_for_this_page' => 'Trợ giúp cho trang này', - 'help_for_this_page_body' => 'Bạn có thể tìm thêm thông tin về trang này trong liên kết này.', - 'two_factor_welcome' => 'Xin chào!', - 'two_factor_enter_code' => 'Để tiếp tục, vui lòng nhập mã xác thực hai yếu tố của bạn. Ứng dụng của bạn có thể tạo ra nó cho bạn.', - 'two_factor_code_here' => 'Nhập mã vào đây', - 'two_factor_title' => 'Xác thực hai yếu tố', - 'authenticate' => 'Xác thực', - 'two_factor_forgot_title' => 'Mất xác thực hai yếu tố', - 'two_factor_forgot' => 'Tôi quên mất hai yếu tố.', - 'two_factor_lost_header' => 'Mất xác thực hai yếu tố của bạn?', - 'two_factor_lost_intro' => 'Nếu bạn bị mất mã dự phòng. Bạn có hai lựa chọn.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => 'Nếu không, gửi email cho chủ sở hữu trang web, :site_owner và yêu cầu họ đặt lại xác thực hai yếu tố của bạn.', - 'mfa_backup_code' => 'Bạn đã sử dụng mã dự phòng để đăng nhập vào Firefly III. Nó không thể được sử dụng lại, vì vậy hãy gạch chéo nó khỏi danh sách của bạn.', - 'pref_two_factor_new_backup_codes' => 'Nhận mã dự phòng mới', - 'pref_two_factor_backup_code_count' => 'Bạn có :count mã dự phòng hợp lệ. | Bạn có :count mã dự phòng hợp lệ.', - '2fa_i_have_them' => 'Tôi đã lưu trữ chúng!', - 'warning_much_data' => ': ngày ngày dữ liệu có thể mất một lúc để tải.', - 'registered' => 'Bạn đã đăng ký thành công!', - 'Default asset account' => 'Mặc định tài khoản', - 'no_budget_pointer' => 'Dường như bạn chưa có ngân sách. Bạn nên tạo vài cái tại trang ngân sách-. Ngân sách có thể giúp bạn theo dõi chi tiêu.', - 'no_bill_pointer' => 'Dường như bạn chưa có hóa đơn. Bạn nên tạo vài cái tại trang hóa đơn-. Hóa đơn có thể giúp bạn theo dõi chi tiêu.', - 'Savings account' => 'Tài khoản tiết kiệm', - 'Credit card' => 'Thẻ tín dụng', - 'source_accounts' => 'Tài khoản gửi', - 'destination_accounts' => 'Tài khoản nhận', - 'user_id_is' => 'ID người dùng của bạn là :user', - 'field_supports_markdown' => 'Trường này hỗ trợ Markdown.', - 'need_more_help' => 'Nếu bạn cần thêm trợ giúp khi sử dụng Firefly III, vui lòng open a ticket on Github.', - 'reenable_intro_text' => 'Bạn cũng có thể kích hoạt lại the introduction guidance.', - 'intro_boxes_after_refresh' => 'Các giới thiệu sẽ xuất hiện lại khi bạn tải lại trang.', - 'show_all_no_filter' => 'Hiển thị tất cả các giao dịch mà không nhóm chúng theo ngày.', - 'expenses_by_category' => 'Chi phí theo danh mục', - 'expenses_by_budget' => 'Chi phí theo ngân sách', - 'income_by_category' => 'Thu nhập theo danh mục', - 'expenses_by_asset_account' => 'Chi phí bằng tài khoản', - 'expenses_by_expense_account' => 'Chi phí bằng tài khoản chi phí', - 'cannot_redirect_to_account' => 'Firefly III không thể chuyển hướng bạn đến đúng trang. Lời xin lỗi.', - 'sum_of_expenses' => 'Tổng chi phí', - 'sum_of_income' => 'Tổng thu nhập', - 'liabilities' => 'Nợ phải trả', - 'spent_in_specific_budget' => 'Chi ngân sách ":budget"', - 'spent_in_specific_double' => 'Đã chi trong tài khoản ":account"', - 'earned_in_specific_double' => 'Kiếm được trong tài khoản ":account"', - 'source_account' => 'Nguồn tài khoản', - 'source_account_reconciliation' => 'Bạn không thể chỉnh sửa tài khoản nguồn của giao dịch đối chiếu.', - 'destination_account' => 'Tài khoản đích', - 'destination_account_reconciliation' => 'Bạn không thể chỉnh sửa tài khoản đích của giao dịch đối chiếu.', - 'sum_of_expenses_in_budget' => 'Tổng chi trong ngân sách ":budget"', - 'left_in_budget_limit' => 'Còn lại để chi tiêu theo ngân sách', - 'current_period' => 'Giai đoạn hiện tại', - 'show_the_current_period_and_overview' => 'Hiển thị giai đoạn hiện tại và tổng quan', - 'pref_languages_locale' => 'Để một ngôn ngữ khác tiếng Anh hoạt động chính xác, hệ điều hành của bạn phải được cài đặt ngôn ngữ và đơn vị chính xác. Nếu không có, dữ liệu tiền tệ, ngày và số tiền có thể được định dạng sai.', - 'budget_in_period' => 'Tất cả các giao dịch cho ngân sách ":name" giữa :start và :end bằng :currency', - 'chart_budget_in_period' => 'Biểu đồ cho tất cả các giao dịch theo ngân sách ":name" giữa :start và :end bằng :currency', - 'chart_budget_in_period_only_currency' => 'Số tiền bạn đã lập ngân sách bằng :currency, vì vậy biểu đồ này sẽ chỉ hiển thị các giao dịch bằng :currency.', - 'chart_account_in_period' => 'Biểu đồ cho tất cả các giao dịch theo tài khoản ":name" (:balance) giữa :start và :end', - 'chart_category_in_period' => 'Biểu đồ cho tất cả các giao dịch theo danh mục ":name" giữa :start và :end', - 'chart_category_all' => 'Biểu đồ cho tất cả các giao dịch cho danh mục ":name"', - 'clone_withdrawal' => 'Nhân bản khoản rút tiền này', - 'clone_deposit' => 'Nhân bản khoản tiền gửi này', - 'clone_transfer' => 'Nhân bản chuyển khoản này', - 'multi_select_no_selection' => 'Không được chọn', - 'multi_select_select_all' => 'Chọn tất cả', - 'multi_select_n_selected' => 'đã chọn', - 'multi_select_all_selected' => 'Tất cả được chọn', - 'multi_select_filter_placeholder' => 'Tìm thấy..', - 'intro_next_label' => 'Kế tiếp', - 'intro_prev_label' => 'Trước', - 'intro_skip_label' => 'Bỏ qua', - 'intro_done_label' => 'Xong', - 'between_dates_breadcrumb' => 'Giữa: bắt đầu và: kết thúc', - 'all_journals_without_budget' => 'Tất cả các giao dịch không có ngân sách', - 'journals_without_budget' => 'Giao dịch không có ngân sách', - 'all_journals_without_category' => 'Tất cả các giao dịch không có danh mục', - 'journals_without_category' => 'Giao dịch không có danh mục', - 'all_journals_for_account' => 'Tất cả các giao dịch của tài khoản :name', - 'chart_all_journals_for_account' => 'Biểu đồ của tất cả các giao dịch cho tài khoản :name', - 'journals_in_period_for_account' => 'Tất cả các giao dịch cho tài khoản :name giữa :start và :end', - 'journals_in_period_for_account_js' => 'Tất cả giao dịch của tài khoản {title} giữa {start} và {end}', - 'transferred' => 'Chuyển nhượng', - 'all_withdrawal' => 'Mọi chi phí', - 'all_transactions' => 'Tất cả các giao dịch', - 'title_withdrawal_between' => 'Tất cả các chi phí giữa :start và :end', - 'all_deposit' => 'Tất cả doanh thu', - 'title_deposit_between' => 'Tất cả doanh thu giữa :start và :end', - 'all_transfers' => 'Tất cả chuyển khoản', - 'title_transfers_between' => 'Tất cả chuyển giữa: bắt đầu và: kết thúc', - 'all_transfer' => 'Tất cả chuyển khoản', - 'all_journals_for_tag' => 'Tất cả các giao dịch cho nhãn":tag"', - 'title_transfer_between' => 'Tất cả chuyển giữa :start và :end', - 'all_journals_for_category' => 'Tất cả các giao dịch cho thể loại :name', - 'all_journals_for_budget' => 'Tất cả các giao dịch cho ngân sách :name', - 'chart_all_journals_for_budget' => 'Biểu đồ của tất cả các giao dịch cho ngân sách :name', - 'journals_in_period_for_category' => 'Tất cả các giao dịch cho danh mục :name giữa :start và :end', - 'journals_in_period_for_tag' => 'Tất cả các giao dịch cho nhãn :tag giữa :start và :end', - 'not_available_demo_user' => 'Tính năng bạn cố gắng truy cập không khả dụng cho người dùng demo.', - 'exchange_rate_instructions' => 'tài khoản "@name" chỉ chấp nhận giao dịch bằng tiền bản địa. Nếu bạn muốn sử dụng ngoại tệ, hãy đảm bảo rằng số tiền bằng tiền bản địa cũng được biết đến:', - 'transfer_exchange_rate_instructions' => 'Tài khoản nguồn tài sản "@source_name" chỉ chấp nhận giao dịch bằng tiền tệ nguồn. tài khoản đícht "@dest_name" chỉ chấp nhận giao dịch bằng tiền tệ. Bạn phải cung cấp số tiền được chuyển chính xác bằng cả hai loại tiền tệ.', - 'transaction_data' => 'Dữ liệu giao dịch', - 'invalid_server_configuration' => 'Cấu hình máy chủ không hợp lệ', - 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', - 'quickswitch' => 'Chuyển đổi nhanh', - 'sign_in_to_start' => 'Đăng nhập để bắt đầu', - 'sign_in' => 'Đăng nhập', - 'register_new_account' => 'Đăng ký tài khoản mới', - 'forgot_my_password' => 'Tôi quên mật khẩu của tôi', - 'problems_with_input' => 'Có một số vấn đề với đầu vào của bạn.', - 'reset_password' => 'Đặt lại mật khẩu của bạn', - 'button_reset_password' => 'Đặt lại mật khẩu', - 'reset_button' => 'Đặt lại', - 'want_to_login' => 'Tôi muốn đăng nhập', - 'login_page_title' => 'Đăng nhập vào Firefly III', - 'register_page_title' => 'Đăng ký tại Firefly III', - 'forgot_pw_page_title' => 'Quên mật khẩu của bạn cho Firefly III', - 'reset_pw_page_title' => 'Đặt lại mật khẩu của bạn cho Firefly III', - 'cannot_reset_demo_user' => 'Bạn không thể đặt lại mật khẩu của người dùng demo.', - 'no_att_demo_user' => 'Người dùng thử không được phép tải file lên.', - 'button_register' => 'Đăng ký', - 'authorization' => 'Ủy quyền', - 'active_bills_only' => 'Chỉ hóa đơn hoạt động', - 'active_bills_only_total' => 'tất cả hóa đơn đang hoạt động', - 'active_exp_bills_only' => 'hóa đơn hoạt động và dự kiến', - 'active_exp_bills_only_total' => 'chỉ tất cả các hóa đơn dự kiến đang hoạt động', - 'per_period_sum_1D' => 'Chi phí hàng ngày dự kiến', - 'per_period_sum_1W' => 'Chi phí hàng tuần dự kiến', - 'per_period_sum_1M' => 'Chi phí hàng tháng dự kiến', - 'per_period_sum_3M' => 'Chi phí hàng quý dự kiến', - 'per_period_sum_6M' => 'Chi phí nửa năm dự kiến', - 'per_period_sum_1Y' => 'Chi phí hàng năm dự kiến', - 'average_per_bill' => 'trung bình mỗi hóa đơn', - 'expected_total' => 'tổng dự kiến', - 'reconciliation_account_name' => ':name reconciliation (:currency)', - 'saved' => 'Đã lưu', - 'advanced_options' => 'Tùy chọn nâng cao', - 'advanced_options_explain' => 'Một số trang trong Firefly III có các tùy chọn nâng cao ẩn sau nút này. Trang này không có gì lạ mắt ở đây, nhưng hãy kiểm tra các trang khác!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => 'Đóng', + 'actions' => 'Hành động', + 'edit' => 'Sửa', + 'delete' => 'Xóa', + 'split' => 'Chia ra', + 'single_split' => 'Chia ra', + 'clone' => 'Nhân ra', + 'clone_and_edit' => 'Nhân bản và sửa', + 'confirm_action' => 'Xác nhận thao tác', + 'last_seven_days' => 'Bảy ngày gần đây', + 'last_thirty_days' => 'Ba mươi ngày gần đây', + 'last_180_days' => '180 ngày qua', + 'month_to_date' => 'Tháng đến ngày', + 'year_to_date' => 'Năm đến ngày', + 'YTD' => 'NĐN', + 'welcome_back' => 'Chào mừng trở lại?', + 'everything' => 'Tất cả mọi thứ', + 'today' => 'hôm nay', + 'customRange' => 'Chọn trong khoảng', + 'date_range' => 'Khoảng thời gian', + 'apply' => 'Áp dụng', + 'select_date' => 'Chọn ngày..', + 'cancel' => 'Hủy', + 'from' => 'Từ', + 'to' => 'Đến', + 'structure' => 'Kết cấu', + 'help_translating' => 'Văn bản trợ giúp này hiện chưa hỗ trợ ngôn ngữ của bạn. Bạn sẽ dịch giúp chứ?', + 'showEverything' => 'Hiện mọi thứ', + 'never' => 'Không bao giờ', + 'no_results_for_empty_search' => 'Không tìm gặp thứ bạn cần tìm.', + 'removed_amount' => 'Đã xóa :amount', + 'added_amount' => 'Đã thêm :amount', + 'asset_account_role_help' => 'Bất kỳ tùy chọn bổ sung nào do bạn chọn có thể được đặt sau.', + 'Opening balance' => 'Số dư đầu kỳ', + 'create_new_stuff' => 'Tạo công cụ mới', + 'new_withdrawal' => 'Rút tiền mới', + 'create_new_transaction' => 'Tạo giao dịch mới', + 'sidebar_frontpage_create' => 'Tạo', + 'new_transaction' => 'Giao dịch mới', + 'no_rules_for_bill' => 'Hóa đơn này không có quy tắc nào liên quan đến nó.', + 'go_to_asset_accounts' => 'Xem tài khoản của bạn', + 'go_to_budgets' => 'Chuyển đến ngân sách của bạn', + 'go_to_withdrawals' => 'Chuyển đến mục rút tiền của bạn', + 'clones_journal_x' => 'Giao dịch này là một bản sao của ":description" (#:id)', + 'go_to_categories' => 'Đi đến danh mục của bạn', + 'go_to_bills' => 'Đi đến hóa đơn của bạn', + 'go_to_expense_accounts' => 'Xem tài khoản chi phí của bạn', + 'go_to_revenue_accounts' => 'Xem tài khoản doanh thu của bạn', + 'go_to_piggies' => 'Tới heo đất của bạn', + 'new_deposit' => 'Tiền gửi mới', + 'new_transfer' => 'Chuyển khoản mới', + 'new_transfers' => 'Chuyển khoản mới', + 'new_asset_account' => 'tài khoản mới', + 'new_expense_account' => 'Tài khoản chi phí mới', + 'new_revenue_account' => 'Tài khoản doanh thu mới', + 'new_liabilities_account' => 'Nợ mới', + 'new_budget' => 'Ngân sách mới', + 'new_bill' => 'Hóa đơn mới', + 'block_account_logout' => 'Bạn đã đăng xuất. Tài khoản bị chặn không thể sử dụng. Bạn đã đăng ký với một địa chỉ email hợp lệ?', + 'flash_success' => 'Thành công!', + 'flash_info' => 'Tin nhắn', + 'flash_warning' => 'Cảnh báo!', + 'flash_error' => 'Lỗi!', + 'flash_danger' => 'Nguy hiểm!', + 'flash_info_multiple' => 'Có tin nhắn :tin nhắn', + 'flash_error_multiple' => 'Có lỗi :lỗi', + 'net_worth' => 'Tài sản thực', + 'help_for_this_page' => 'Trợ giúp cho trang này', + 'help_for_this_page_body' => 'Bạn có thể tìm thêm thông tin về trang này trong liên kết này.', + 'two_factor_welcome' => 'Xin chào!', + 'two_factor_enter_code' => 'Để tiếp tục, vui lòng nhập mã xác thực hai yếu tố của bạn. Ứng dụng của bạn có thể tạo ra nó cho bạn.', + 'two_factor_code_here' => 'Nhập mã vào đây', + 'two_factor_title' => 'Xác thực hai yếu tố', + 'authenticate' => 'Xác thực', + 'two_factor_forgot_title' => 'Mất xác thực hai yếu tố', + 'two_factor_forgot' => 'Tôi quên mất hai yếu tố.', + 'two_factor_lost_header' => 'Mất xác thực hai yếu tố của bạn?', + 'two_factor_lost_intro' => 'Nếu bạn bị mất mã dự phòng. Bạn có hai lựa chọn.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => 'Nếu không, gửi email cho chủ sở hữu trang web, :site_owner và yêu cầu họ đặt lại xác thực hai yếu tố của bạn.', + 'mfa_backup_code' => 'Bạn đã sử dụng mã dự phòng để đăng nhập vào Firefly III. Nó không thể được sử dụng lại, vì vậy hãy gạch chéo nó khỏi danh sách của bạn.', + 'pref_two_factor_new_backup_codes' => 'Nhận mã dự phòng mới', + 'pref_two_factor_backup_code_count' => 'Bạn có :count mã dự phòng hợp lệ. | Bạn có :count mã dự phòng hợp lệ.', + '2fa_i_have_them' => 'Tôi đã lưu trữ chúng!', + 'warning_much_data' => ': ngày ngày dữ liệu có thể mất một lúc để tải.', + 'registered' => 'Bạn đã đăng ký thành công!', + 'Default asset account' => 'Mặc định tài khoản', + 'no_budget_pointer' => 'Dường như bạn chưa có ngân sách. Bạn nên tạo vài cái tại trang ngân sách-. Ngân sách có thể giúp bạn theo dõi chi tiêu.', + 'no_bill_pointer' => 'Dường như bạn chưa có hóa đơn. Bạn nên tạo vài cái tại trang hóa đơn-. Hóa đơn có thể giúp bạn theo dõi chi tiêu.', + 'Savings account' => 'Tài khoản tiết kiệm', + 'Credit card' => 'Thẻ tín dụng', + 'source_accounts' => 'Tài khoản gửi', + 'destination_accounts' => 'Tài khoản nhận', + 'user_id_is' => 'ID người dùng của bạn là :user', + 'field_supports_markdown' => 'Trường này hỗ trợ Markdown.', + 'need_more_help' => 'Nếu bạn cần thêm trợ giúp khi sử dụng Firefly III, vui lòng open a ticket on Github.', + 'reenable_intro_text' => 'Bạn cũng có thể kích hoạt lại the introduction guidance.', + 'intro_boxes_after_refresh' => 'Các giới thiệu sẽ xuất hiện lại khi bạn tải lại trang.', + 'show_all_no_filter' => 'Hiển thị tất cả các giao dịch mà không nhóm chúng theo ngày.', + 'expenses_by_category' => 'Chi phí theo danh mục', + 'expenses_by_budget' => 'Chi phí theo ngân sách', + 'income_by_category' => 'Thu nhập theo danh mục', + 'expenses_by_asset_account' => 'Chi phí bằng tài khoản', + 'expenses_by_expense_account' => 'Chi phí bằng tài khoản chi phí', + 'cannot_redirect_to_account' => 'Firefly III không thể chuyển hướng bạn đến đúng trang. Lời xin lỗi.', + 'sum_of_expenses' => 'Tổng chi phí', + 'sum_of_income' => 'Tổng thu nhập', + 'liabilities' => 'Nợ phải trả', + 'spent_in_specific_budget' => 'Chi ngân sách ":budget"', + 'spent_in_specific_double' => 'Đã chi trong tài khoản ":account"', + 'earned_in_specific_double' => 'Kiếm được trong tài khoản ":account"', + 'source_account' => 'Nguồn tài khoản', + 'source_account_reconciliation' => 'Bạn không thể chỉnh sửa tài khoản nguồn của giao dịch đối chiếu.', + 'destination_account' => 'Tài khoản đích', + 'destination_account_reconciliation' => 'Bạn không thể chỉnh sửa tài khoản đích của giao dịch đối chiếu.', + 'sum_of_expenses_in_budget' => 'Tổng chi trong ngân sách ":budget"', + 'left_in_budget_limit' => 'Còn lại để chi tiêu theo ngân sách', + 'current_period' => 'Giai đoạn hiện tại', + 'show_the_current_period_and_overview' => 'Hiển thị giai đoạn hiện tại và tổng quan', + 'pref_languages_locale' => 'Để một ngôn ngữ khác tiếng Anh hoạt động chính xác, hệ điều hành của bạn phải được cài đặt ngôn ngữ và đơn vị chính xác. Nếu không có, dữ liệu tiền tệ, ngày và số tiền có thể được định dạng sai.', + 'budget_in_period' => 'Tất cả các giao dịch cho ngân sách ":name" giữa :start và :end bằng :currency', + 'chart_budget_in_period' => 'Biểu đồ cho tất cả các giao dịch theo ngân sách ":name" giữa :start và :end bằng :currency', + 'chart_budget_in_period_only_currency' => 'Số tiền bạn đã lập ngân sách bằng :currency, vì vậy biểu đồ này sẽ chỉ hiển thị các giao dịch bằng :currency.', + 'chart_account_in_period' => 'Biểu đồ cho tất cả các giao dịch theo tài khoản ":name" (:balance) giữa :start và :end', + 'chart_category_in_period' => 'Biểu đồ cho tất cả các giao dịch theo danh mục ":name" giữa :start và :end', + 'chart_category_all' => 'Biểu đồ cho tất cả các giao dịch cho danh mục ":name"', + 'clone_withdrawal' => 'Nhân bản khoản rút tiền này', + 'clone_deposit' => 'Nhân bản khoản tiền gửi này', + 'clone_transfer' => 'Nhân bản chuyển khoản này', + 'multi_select_no_selection' => 'Không được chọn', + 'multi_select_select_all' => 'Chọn tất cả', + 'multi_select_n_selected' => 'đã chọn', + 'multi_select_all_selected' => 'Tất cả được chọn', + 'multi_select_filter_placeholder' => 'Tìm thấy..', + 'intro_next_label' => 'Kế tiếp', + 'intro_prev_label' => 'Trước', + 'intro_skip_label' => 'Bỏ qua', + 'intro_done_label' => 'Xong', + 'between_dates_breadcrumb' => 'Giữa: bắt đầu và: kết thúc', + 'all_journals_without_budget' => 'Tất cả các giao dịch không có ngân sách', + 'journals_without_budget' => 'Giao dịch không có ngân sách', + 'all_journals_without_category' => 'Tất cả các giao dịch không có danh mục', + 'journals_without_category' => 'Giao dịch không có danh mục', + 'all_journals_for_account' => 'Tất cả các giao dịch của tài khoản :name', + 'chart_all_journals_for_account' => 'Biểu đồ của tất cả các giao dịch cho tài khoản :name', + 'journals_in_period_for_account' => 'Tất cả các giao dịch cho tài khoản :name giữa :start và :end', + 'journals_in_period_for_account_js' => 'Tất cả giao dịch của tài khoản {title} giữa {start} và {end}', + 'transferred' => 'Chuyển nhượng', + 'all_withdrawal' => 'Mọi chi phí', + 'all_transactions' => 'Tất cả các giao dịch', + 'title_withdrawal_between' => 'Tất cả các chi phí giữa :start và :end', + 'all_deposit' => 'Tất cả doanh thu', + 'title_deposit_between' => 'Tất cả doanh thu giữa :start và :end', + 'all_transfers' => 'Tất cả chuyển khoản', + 'title_transfers_between' => 'Tất cả chuyển giữa: bắt đầu và: kết thúc', + 'all_transfer' => 'Tất cả chuyển khoản', + 'all_journals_for_tag' => 'Tất cả các giao dịch cho nhãn":tag"', + 'title_transfer_between' => 'Tất cả chuyển giữa :start và :end', + 'all_journals_for_category' => 'Tất cả các giao dịch cho thể loại :name', + 'all_journals_for_budget' => 'Tất cả các giao dịch cho ngân sách :name', + 'chart_all_journals_for_budget' => 'Biểu đồ của tất cả các giao dịch cho ngân sách :name', + 'journals_in_period_for_category' => 'Tất cả các giao dịch cho danh mục :name giữa :start và :end', + 'journals_in_period_for_tag' => 'Tất cả các giao dịch cho nhãn :tag giữa :start và :end', + 'not_available_demo_user' => 'Tính năng bạn cố gắng truy cập không khả dụng cho người dùng demo.', + 'exchange_rate_instructions' => 'tài khoản "@name" chỉ chấp nhận giao dịch bằng tiền bản địa. Nếu bạn muốn sử dụng ngoại tệ, hãy đảm bảo rằng số tiền bằng tiền bản địa cũng được biết đến:', + 'transfer_exchange_rate_instructions' => 'Tài khoản nguồn tài sản "@source_name" chỉ chấp nhận giao dịch bằng tiền tệ nguồn. tài khoản đícht "@dest_name" chỉ chấp nhận giao dịch bằng tiền tệ. Bạn phải cung cấp số tiền được chuyển chính xác bằng cả hai loại tiền tệ.', + 'transaction_data' => 'Dữ liệu giao dịch', + 'invalid_server_configuration' => 'Cấu hình máy chủ không hợp lệ', + 'invalid_locale_settings' => 'Firefly III is unable to format monetary amounts because your server is missing the required packages. There are instructions how to do this.', + 'quickswitch' => 'Chuyển đổi nhanh', + 'sign_in_to_start' => 'Đăng nhập để bắt đầu', + 'sign_in' => 'Đăng nhập', + 'register_new_account' => 'Đăng ký tài khoản mới', + 'forgot_my_password' => 'Tôi quên mật khẩu của tôi', + 'problems_with_input' => 'Có một số vấn đề với đầu vào của bạn.', + 'reset_password' => 'Đặt lại mật khẩu của bạn', + 'button_reset_password' => 'Đặt lại mật khẩu', + 'reset_button' => 'Đặt lại', + 'want_to_login' => 'Tôi muốn đăng nhập', + 'login_page_title' => 'Đăng nhập vào Firefly III', + 'register_page_title' => 'Đăng ký tại Firefly III', + 'forgot_pw_page_title' => 'Quên mật khẩu của bạn cho Firefly III', + 'reset_pw_page_title' => 'Đặt lại mật khẩu của bạn cho Firefly III', + 'cannot_reset_demo_user' => 'Bạn không thể đặt lại mật khẩu của người dùng demo.', + 'no_att_demo_user' => 'Người dùng thử không được phép tải file lên.', + 'button_register' => 'Đăng ký', + 'authorization' => 'Ủy quyền', + 'active_bills_only' => 'Chỉ hóa đơn hoạt động', + 'active_bills_only_total' => 'tất cả hóa đơn đang hoạt động', + 'active_exp_bills_only' => 'hóa đơn hoạt động và dự kiến', + 'active_exp_bills_only_total' => 'chỉ tất cả các hóa đơn dự kiến đang hoạt động', + 'per_period_sum_1D' => 'Chi phí hàng ngày dự kiến', + 'per_period_sum_1W' => 'Chi phí hàng tuần dự kiến', + 'per_period_sum_1M' => 'Chi phí hàng tháng dự kiến', + 'per_period_sum_3M' => 'Chi phí hàng quý dự kiến', + 'per_period_sum_6M' => 'Chi phí nửa năm dự kiến', + 'per_period_sum_1Y' => 'Chi phí hàng năm dự kiến', + 'average_per_bill' => 'trung bình mỗi hóa đơn', + 'expected_total' => 'tổng dự kiến', + 'reconciliation_account_name' => ':name reconciliation (:currency)', + 'saved' => 'Đã lưu', + 'advanced_options' => 'Tùy chọn nâng cao', + 'advanced_options_explain' => 'Một số trang trong Firefly III có các tùy chọn nâng cao ẩn sau nút này. Trang này không có gì lạ mắt ở đây, nhưng hãy kiểm tra các trang khác!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => 'Không có tin nhắn webhook', - 'webhook_trigger_STORE_TRANSACTION' => 'Sau khi tạo giao dịch', - 'webhook_trigger_UPDATE_TRANSACTION' => 'Sau khi cập nhật giao dịch', - 'webhook_trigger_DESTROY_TRANSACTION' => 'Sau khi xóa giao dịch', - 'webhook_response_TRANSACTIONS' => 'Chi tiết giao dịch', - 'webhook_response_ACCOUNTS' => 'Chi tiết tài khoản', - 'webhook_response_none_NONE' => 'Không có chi tiết', - 'webhook_delivery_JSON' => 'JSON', - 'inspect' => 'Kiểm tra', - 'create_new_webhook' => 'Tạo webhook mới', - 'webhooks_create_breadcrumb' => 'Tạo webhook mới', - 'webhook_trigger_form_help' => 'Chọn loại sự kiện nào webhook sẽ kích hoạt', - 'webhook_response_form_help' => 'Chọn URL nào webhook sẽ gửi thông tin.', - 'webhook_delivery_form_help' => 'Loại định dạng webhook gửi dữ liệu vào.', - 'webhook_active_form_help' => 'Webhook phải được kích hoạt hoặc nó sẽ được gọi.', - 'stored_new_webhook' => 'Lưu trữ webhook mới ":title"', - 'delete_webhook' => 'Xóa webhook', - 'deleted_webhook' => 'Webhook đã bị xóa ":title"', - 'edit_webhook' => 'Sửa webhook ":title"', - 'updated_webhook' => 'Cập nhật webhook ":title"', - 'edit_webhook_js' => 'Sửa webhook "{title}"', - 'show_webhook' => 'Webhook ":title"', - 'webhook_was_triggered' => 'Webhook sẽ kích hoạt trên những giao dịch này. Xin đợi một lúc để kết quả hiện ra.', - 'webhook_messages' => 'Tin nhắn webhook', - 'view_message' => 'Xem tin nhắn', - 'view_attempts' => 'Xem những lần thử lỗi', - 'message_content_title' => 'Nội dung tin nhắn webhook', - 'message_content_help' => 'Đây là nội dung của tin nhắn đã được gửi (hay đã thử) bằng những webhook này.', - 'attempt_content_title' => 'Các lần thử webhook', - 'attempt_content_help' => 'Đây là tất cả những lần thử gửi các tin nhắn webhook đến URL chỉ định nhưng không thành công. Sau một khoảng thời gian Firefly III sẽ dừng thử.', - 'no_attempts' => 'Không có lần thử không thành công nào. Thật là tốt!', - 'webhook_attempt_at' => 'Thử lúc {moment}', - 'logs' => 'Nhật ký', - 'response' => 'Đáp lại', - 'visit_webhook_url' => 'Đi đến webhook URL', - 'reset_webhook_secret' => 'Cài lại khóa webhook', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") đã được lưu trữ.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") đã được cập nhật.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => 'Không có tin nhắn webhook', + 'webhook_trigger_STORE_TRANSACTION' => 'Sau khi tạo giao dịch', + 'webhook_trigger_UPDATE_TRANSACTION' => 'Sau khi cập nhật giao dịch', + 'webhook_trigger_DESTROY_TRANSACTION' => 'Sau khi xóa giao dịch', + 'webhook_response_TRANSACTIONS' => 'Chi tiết giao dịch', + 'webhook_response_ACCOUNTS' => 'Chi tiết tài khoản', + 'webhook_response_none_NONE' => 'Không có chi tiết', + 'webhook_delivery_JSON' => 'JSON', + 'inspect' => 'Kiểm tra', + 'create_new_webhook' => 'Tạo webhook mới', + 'webhooks_create_breadcrumb' => 'Tạo webhook mới', + 'webhook_trigger_form_help' => 'Chọn loại sự kiện nào webhook sẽ kích hoạt', + 'webhook_response_form_help' => 'Chọn URL nào webhook sẽ gửi thông tin.', + 'webhook_delivery_form_help' => 'Loại định dạng webhook gửi dữ liệu vào.', + 'webhook_active_form_help' => 'Webhook phải được kích hoạt hoặc nó sẽ được gọi.', + 'stored_new_webhook' => 'Lưu trữ webhook mới ":title"', + 'delete_webhook' => 'Xóa webhook', + 'deleted_webhook' => 'Webhook đã bị xóa ":title"', + 'edit_webhook' => 'Sửa webhook ":title"', + 'updated_webhook' => 'Cập nhật webhook ":title"', + 'edit_webhook_js' => 'Sửa webhook "{title}"', + 'show_webhook' => 'Webhook ":title"', + 'webhook_was_triggered' => 'Webhook sẽ kích hoạt trên những giao dịch này. Xin đợi một lúc để kết quả hiện ra.', + 'webhook_messages' => 'Tin nhắn webhook', + 'view_message' => 'Xem tin nhắn', + 'view_attempts' => 'Xem những lần thử lỗi', + 'message_content_title' => 'Nội dung tin nhắn webhook', + 'message_content_help' => 'Đây là nội dung của tin nhắn đã được gửi (hay đã thử) bằng những webhook này.', + 'attempt_content_title' => 'Các lần thử webhook', + 'attempt_content_help' => 'Đây là tất cả những lần thử gửi các tin nhắn webhook đến URL chỉ định nhưng không thành công. Sau một khoảng thời gian Firefly III sẽ dừng thử.', + 'no_attempts' => 'Không có lần thử không thành công nào. Thật là tốt!', + 'webhook_attempt_at' => 'Thử lúc {moment}', + 'logs' => 'Nhật ký', + 'response' => 'Đáp lại', + 'visit_webhook_url' => 'Đi đến webhook URL', + 'reset_webhook_secret' => 'Cài lại khóa webhook', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") đã được lưu trữ.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") đã được cập nhật.', // API access - 'authorization_request' => 'Firefly III v: phiên bản Yêu cầu ủy quyền', - 'authorization_request_intro' => 'Ứng dụng :client đang yêu cầu sự cho phép truy cập quản trị tài chính của bạn. Bạn có muốn ủy quyền :client để truy cập những hồ sơ này?', - 'authorization_request_site' => 'Bạn sẽ được điều hướng đến :url nơi mà có thể truy cập thông tin Firefly III của bạn.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => 'Ứng dụng này sẽ có thể:', - 'button_authorize' => 'Ủy quyền', - 'none_in_select_list' => '(Trống)', - 'no_piggy_bank' => '(chưa có heo đất)', - 'name_in_currency' => ':name trong :currency', - 'paid_in_currency' => 'Được trả bằng :currency', - 'unpaid_in_currency' => 'Chưa thanh toán bằng :currency', - 'is_alpha_warning' => 'Bạn đang sử dụng phiên bản ALPHA.', - 'is_beta_warning' => 'Bạn đang sử dụng phiên bản BETA.', - 'all_destination_accounts' => 'Tài khoản nhận', - 'all_source_accounts' => 'Tài khoản gửi', - 'back_to_index' => 'Quay lại chỉ mục', - 'cant_logout_guard' => 'Firefly III không thể đăng xuất.', - 'internal_reference' => 'Tài liệu tham khảo nội bộ', + 'authorization_request' => 'Firefly III v: phiên bản Yêu cầu ủy quyền', + 'authorization_request_intro' => 'Ứng dụng :client đang yêu cầu sự cho phép truy cập quản trị tài chính của bạn. Bạn có muốn ủy quyền :client để truy cập những hồ sơ này?', + 'authorization_request_site' => 'Bạn sẽ được điều hướng đến :url nơi mà có thể truy cập thông tin Firefly III của bạn.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => 'Ứng dụng này sẽ có thể:', + 'button_authorize' => 'Ủy quyền', + 'none_in_select_list' => '(Trống)', + 'no_piggy_bank' => '(chưa có heo đất)', + 'name_in_currency' => ':name trong :currency', + 'paid_in_currency' => 'Được trả bằng :currency', + 'unpaid_in_currency' => 'Chưa thanh toán bằng :currency', + 'is_alpha_warning' => 'Bạn đang sử dụng phiên bản ALPHA.', + 'is_beta_warning' => 'Bạn đang sử dụng phiên bản BETA.', + 'all_destination_accounts' => 'Tài khoản nhận', + 'all_source_accounts' => 'Tài khoản gửi', + 'back_to_index' => 'Quay lại chỉ mục', + 'cant_logout_guard' => 'Firefly III không thể đăng xuất.', + 'internal_reference' => 'Tài liệu tham khảo nội bộ', // check for updates: - 'update_check_title' => 'Kiểm tra cập nhật', - 'admin_update_check_title' => 'Tự động kiểm tra cập nhật', - 'admin_update_check_explain' => 'Firefly III có thể kiểm tra cập nhật tự động. Khi bạn bật cài đặt này, nó sẽ liên hệ với Github để xem có phiên bản mới của Firefly III không. Khi đó, bạn sẽ nhận được một thông báo. Bạn có thể kiểm tra thông báo này bằng nút bên phải. Vui lòng cho biết bên dưới nếu bạn muốn Firefly III kiểm tra cập nhật.', - 'check_for_updates_permission' => 'Firefly III có thể kiểm tra các bản cập nhật, nhưng nó cần sự cho phép của bạn để làm như vậy. Vui lòng truy cập administration nếu bạn muốn bật tính năng này.', - 'updates_ask_me_later' => 'Hãy hỏi tôi sau', - 'updates_do_not_check' => 'Không kiểm tra cập nhật', - 'updates_enable_check' => 'Cho phép kiểm tra cập nhật', - 'admin_update_check_now_title' => 'Kiểm tra cập nhật ngay bây giờ', - 'admin_update_check_now_explain' => 'Nếu bạn nhấn nút, Firefly III sẽ xem phiên bản hiện tại của bạn có phải là phiên bản mới nhất không.', - 'check_for_updates_button' => 'Kiểm tra ngay!', - 'update_new_version_alert' => 'Một phiên bản mới của Firefly III có sẵn. Bạn đang chạy :your_version, phiên bản mới nhất là :new_version được phát hành vào :date.', - 'update_version_beta' => 'Phiên bản này là phiên bản BETA. Bạn có thể gặp vấn đề.', - 'update_version_alpha' => 'Phiên bản này là phiên bản ALPHA. Bạn có thể gặp vấn đề.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'Bạn đang chạy :version , đây là phiên bản mới nhất có sẵn.', - 'update_newer_version_alert' => 'Bạn đang chạy :your_version, mới hơn bản phát hành mới nhất , :new_version.', - 'update_check_error' => 'Đã xảy ra lỗi trong khi kiểm tra cập nhật: :error', - 'unknown_error' => 'Không xác định được lỗi. Xin lỗi vì điều này.', - 'disabled_but_check' => 'Bạn đã tắt kiểm tra cập nhật. Vì vậy, đừng quên kiểm tra cập nhật cho mình mọi lúc mọi nơi. Cảm ơn bạn!', - 'admin_update_channel_title' => 'Cập nhật kênh', - 'admin_update_channel_explain' => 'Firefly III có ba "kênh" cập nhật xác định mức độ vượt trội của bạn về các tính năng, cải tiến và lỗi. Sử dụng kênh "beta" nếu bạn thích phiêu lưu và "alpha" khi bạn muốn sống một cách nguy hiểm.', - 'update_channel_stable' => 'Ổn định. Mọi thứ hoạt động như mong đợi.', - 'update_channel_beta' => 'Beta. Các tính năng mới nhưng mọi thứ có thể bị lỗi.', - 'update_channel_alpha' => 'Alpha. Chúng tôi ném đồ vào, và sử dụng bất cứ thứ gì.', + 'update_check_title' => 'Kiểm tra cập nhật', + 'admin_update_check_title' => 'Tự động kiểm tra cập nhật', + 'admin_update_check_explain' => 'Firefly III có thể kiểm tra cập nhật tự động. Khi bạn bật cài đặt này, nó sẽ liên hệ với Github để xem có phiên bản mới của Firefly III không. Khi đó, bạn sẽ nhận được một thông báo. Bạn có thể kiểm tra thông báo này bằng nút bên phải. Vui lòng cho biết bên dưới nếu bạn muốn Firefly III kiểm tra cập nhật.', + 'check_for_updates_permission' => 'Firefly III có thể kiểm tra các bản cập nhật, nhưng nó cần sự cho phép của bạn để làm như vậy. Vui lòng truy cập administration nếu bạn muốn bật tính năng này.', + 'updates_ask_me_later' => 'Hãy hỏi tôi sau', + 'updates_do_not_check' => 'Không kiểm tra cập nhật', + 'updates_enable_check' => 'Cho phép kiểm tra cập nhật', + 'admin_update_check_now_title' => 'Kiểm tra cập nhật ngay bây giờ', + 'admin_update_check_now_explain' => 'Nếu bạn nhấn nút, Firefly III sẽ xem phiên bản hiện tại của bạn có phải là phiên bản mới nhất không.', + 'check_for_updates_button' => 'Kiểm tra ngay!', + 'update_new_version_alert' => 'Một phiên bản mới của Firefly III có sẵn. Bạn đang chạy :your_version, phiên bản mới nhất là :new_version được phát hành vào :date.', + 'update_version_beta' => 'Phiên bản này là phiên bản BETA. Bạn có thể gặp vấn đề.', + 'update_version_alpha' => 'Phiên bản này là phiên bản ALPHA. Bạn có thể gặp vấn đề.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'Bạn đang chạy :version , đây là phiên bản mới nhất có sẵn.', + 'update_newer_version_alert' => 'Bạn đang chạy :your_version, mới hơn bản phát hành mới nhất , :new_version.', + 'update_check_error' => 'Đã xảy ra lỗi trong khi kiểm tra cập nhật: :error', + 'unknown_error' => 'Không xác định được lỗi. Xin lỗi vì điều này.', + 'disabled_but_check' => 'Bạn đã tắt kiểm tra cập nhật. Vì vậy, đừng quên kiểm tra cập nhật cho mình mọi lúc mọi nơi. Cảm ơn bạn!', + 'admin_update_channel_title' => 'Cập nhật kênh', + 'admin_update_channel_explain' => 'Firefly III có ba "kênh" cập nhật xác định mức độ vượt trội của bạn về các tính năng, cải tiến và lỗi. Sử dụng kênh "beta" nếu bạn thích phiêu lưu và "alpha" khi bạn muốn sống một cách nguy hiểm.', + 'update_channel_stable' => 'Ổn định. Mọi thứ hoạt động như mong đợi.', + 'update_channel_beta' => 'Beta. Các tính năng mới nhưng mọi thứ có thể bị lỗi.', + 'update_channel_alpha' => 'Alpha. Chúng tôi ném đồ vào, và sử dụng bất cứ thứ gì.', // search - 'search' => 'Tìm kiếm', - 'search_query' => 'Truy vấn', - 'search_found_transactions' => 'Tìm thấy Firefly III :count giao dịch trong :time giây. | Firefly III được tìm thấy :count giao dịch trong :time giây.', - 'search_found_more_transactions' => 'Firefly III đã tìm thấy hơn :count giao dịch trong :time giây.', - 'search_for_query' => 'Firefly III đang tìm kiếm các giao dịch với tất cả những từ này trong đó: :query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => 'Tìm kiếm', + 'search_query' => 'Truy vấn', + 'search_found_transactions' => 'Tìm thấy Firefly III :count giao dịch trong :time giây. | Firefly III được tìm thấy :count giao dịch trong :time giây.', + 'search_found_more_transactions' => 'Firefly III đã tìm thấy hơn :count giao dịch trong :time giây.', + 'search_for_query' => 'Firefly III đang tìm kiếm các giao dịch với tất cả những từ này trong đó: :query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => 'Ngày giao dịch là ":value"', - 'search_modifier_not_date_on' => 'Ngày giao dịch không phải ":value"', - 'search_modifier_reconciled' => 'Giao dịch đã đối chiếu', - 'search_modifier_not_reconciled' => 'Giao dịch chưa đối chiếu', - 'search_modifier_id' => 'ID giao dịch là ":value"', - 'search_modifier_not_id' => 'ID giao dịch không phải ":value"', - 'search_modifier_date_before' => 'Ngày giao dịch phải trước hoặc ngay ":value"', - 'search_modifier_date_after' => 'Ngày giao dịch phải sau hoặc ngay ":value"', - 'search_modifier_external_id_is' => 'ID ngoài là ":value"', - 'search_modifier_not_external_id_is' => 'ID ngoài không phải ":value"', - 'search_modifier_no_external_url' => 'Giao dịch không có URL bên ngoài', - 'search_modifier_no_external_id' => 'Giao dịch không có ID bên ngoài', - 'search_modifier_not_any_external_url' => 'Giao dịch không có URL bên ngoài', - 'search_modifier_not_any_external_id' => 'Giao dịch không có ID bên ngoài', - 'search_modifier_any_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài', - 'search_modifier_any_external_id' => 'Giao dịch phải có 1 (hoặc nhiều) ID ngoài', - 'search_modifier_not_no_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài', - 'search_modifier_not_no_external_id' => 'Giao dịch phải có 1 (bất kì) ID ngoài', - 'search_modifier_internal_reference_is' => 'Tham chiếu nội bộ là ":value"', - 'search_modifier_not_internal_reference_is' => 'Tham chiếu nội bộ không phải ":value"', - 'search_modifier_description_starts' => 'Mô tả bắt đầu bằng ":value"', - 'search_modifier_not_description_starts' => 'Mô tả không bắt đầu bằng ":value"', - 'search_modifier_description_ends' => 'Mô tả kết thúc bằng ":value"', - 'search_modifier_not_description_ends' => 'Mô tả không kết thúc bằng ":value"', - 'search_modifier_description_contains' => 'Mô tả có chứa ":value"', - 'search_modifier_not_description_contains' => 'Mô tả không có chứa ":value"', - 'search_modifier_description_is' => 'Mô tả chính xác ":value"', - 'search_modifier_not_description_is' => 'Mô tả chắc chắn không phải ":value"', - 'search_modifier_currency_is' => 'Đơn vị tiền tệ của giao dịch (nước ngoài) là ":value"', - 'search_modifier_not_currency_is' => 'Tiền (ngoại tệ) giao dịch không phải là ":value"', - 'search_modifier_foreign_currency_is' => 'Ngoại tệ giao dịch là ":value"', - 'search_modifier_not_foreign_currency_is' => 'Ngoại tệ của giao dịch không phải là ":value"', - 'search_modifier_has_attachments' => 'Giao dịch phải có tệp đính kèm', - 'search_modifier_has_no_category' => 'Giao dịch phải không có danh mục', - 'search_modifier_not_has_no_category' => 'Giao dịch phải có 1 (bất kì) danh mục', - 'search_modifier_not_has_any_category' => 'Giao dịch phải không có danh mục', - 'search_modifier_has_any_category' => 'Giao dịch phải có danh mục', - 'search_modifier_has_no_budget' => 'Giao dịch phải không có ngân sách', - 'search_modifier_not_has_any_budget' => 'Giao dịch phải không có ngân sách', - 'search_modifier_has_any_budget' => 'Giao dịch có ngân sách (bất kỳ)', - 'search_modifier_not_has_no_budget' => 'Giao dịch có 1 (bất kỳ) ngân sách', - 'search_modifier_has_no_bill' => 'Giao dịch phải không có hóa đơn', - 'search_modifier_not_has_no_bill' => 'Giao dịch phải có 1 (bất kì) hóa đơn', - 'search_modifier_has_any_bill' => 'Giao dịch phải có 1 (hoặc nhiều) hóa đơn', - 'search_modifier_not_has_any_bill' => 'Giao dịch phải không có hóa đơn', - 'search_modifier_has_no_tag' => 'Giao dịch phải không có thẻ', - 'search_modifier_not_has_any_tag' => 'Giao dịch phải không có thẻ', - 'search_modifier_not_has_no_tag' => 'Giao dịch phải có 1 (bất kì) thẻ', - 'search_modifier_has_any_tag' => 'Giao dịch phải có thẻ', - 'search_modifier_notes_contains' => 'Các ghi chú giao dịch chứa ":value"', - 'search_modifier_not_notes_contains' => 'Các ghi chú giao dịch không chứa ":value"', - 'search_modifier_notes_starts' => 'Các ghi chú giao dịch bắt đầu bằng ":value"', - 'search_modifier_not_notes_starts' => 'Các ghi chú giao dịch không bắt đầu bằng ":value"', - 'search_modifier_notes_ends' => 'Các ghi chú giao dịch kết thúc bằng ":value"', - 'search_modifier_not_notes_ends' => 'Các ghi chú giao dịch không kết thúc bằng ":value"', - 'search_modifier_notes_is' => 'Các ghi chú giao dịch chính xác là ":value"', - 'search_modifier_not_notes_is' => 'Các ghi chú giao dịch không chính xác là ":value"', - 'search_modifier_no_notes' => 'Giao dịch không có ghi chú', - 'search_modifier_not_no_notes' => 'Giao dịch phải có ghi chú', - 'search_modifier_any_notes' => 'Giao dịch phải có ghi chú', - 'search_modifier_not_any_notes' => 'Giao dịch không có ghi chú', - 'search_modifier_amount_is' => 'Số lượng chính xác là :value', - 'search_modifier_not_amount_is' => 'Số tiền không phải :value', - 'search_modifier_amount_less' => 'Số tiền phải nhỏ hơn hoặc bằng :value', - 'search_modifier_not_amount_more' => 'Số tiền phải nhỏ hơn hoặc bằng :value', - 'search_modifier_amount_more' => 'Số tiền phải lớn hơn hoặc bằng :value', - 'search_modifier_not_amount_less' => 'Số tiền phải lớn hơn hoặc bằng :value', - 'search_modifier_source_account_is' => 'Tên tài khoản chính xác là ":value"', - 'search_modifier_not_source_account_is' => 'Tên tài khoản gửi không phải ":value"', - 'search_modifier_source_account_contains' => 'Tên tài khoản bao gồm ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Bill is ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaction type is ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Nhãn là ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + 'search_modifier_date_on' => 'Ngày giao dịch là ":value"', + 'search_modifier_not_date_on' => 'Ngày giao dịch không phải ":value"', + 'search_modifier_reconciled' => 'Giao dịch đã đối chiếu', + 'search_modifier_not_reconciled' => 'Giao dịch chưa đối chiếu', + 'search_modifier_id' => 'ID giao dịch là ":value"', + 'search_modifier_not_id' => 'ID giao dịch không phải ":value"', + 'search_modifier_date_before' => 'Ngày giao dịch phải trước hoặc ngay ":value"', + 'search_modifier_date_after' => 'Ngày giao dịch phải sau hoặc ngay ":value"', + 'search_modifier_external_id_is' => 'ID ngoài là ":value"', + 'search_modifier_not_external_id_is' => 'ID ngoài không phải ":value"', + 'search_modifier_no_external_url' => 'Giao dịch không có URL bên ngoài', + 'search_modifier_no_external_id' => 'Giao dịch không có ID bên ngoài', + 'search_modifier_not_any_external_url' => 'Giao dịch không có URL bên ngoài', + 'search_modifier_not_any_external_id' => 'Giao dịch không có ID bên ngoài', + 'search_modifier_any_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài', + 'search_modifier_any_external_id' => 'Giao dịch phải có 1 (hoặc nhiều) ID ngoài', + 'search_modifier_not_no_external_url' => 'Giao dịch phải có 1 (hoặc nhiều) URL bên ngoài', + 'search_modifier_not_no_external_id' => 'Giao dịch phải có 1 (bất kì) ID ngoài', + 'search_modifier_internal_reference_is' => 'Tham chiếu nội bộ là ":value"', + 'search_modifier_not_internal_reference_is' => 'Tham chiếu nội bộ không phải ":value"', + 'search_modifier_description_starts' => 'Mô tả bắt đầu bằng ":value"', + 'search_modifier_not_description_starts' => 'Mô tả không bắt đầu bằng ":value"', + 'search_modifier_description_ends' => 'Mô tả kết thúc bằng ":value"', + 'search_modifier_not_description_ends' => 'Mô tả không kết thúc bằng ":value"', + 'search_modifier_description_contains' => 'Mô tả có chứa ":value"', + 'search_modifier_not_description_contains' => 'Mô tả không có chứa ":value"', + 'search_modifier_description_is' => 'Mô tả chính xác ":value"', + 'search_modifier_not_description_is' => 'Mô tả chắc chắn không phải ":value"', + 'search_modifier_currency_is' => 'Đơn vị tiền tệ của giao dịch (nước ngoài) là ":value"', + 'search_modifier_not_currency_is' => 'Tiền (ngoại tệ) giao dịch không phải là ":value"', + 'search_modifier_foreign_currency_is' => 'Ngoại tệ giao dịch là ":value"', + 'search_modifier_not_foreign_currency_is' => 'Ngoại tệ của giao dịch không phải là ":value"', + 'search_modifier_has_attachments' => 'Giao dịch phải có tệp đính kèm', + 'search_modifier_has_no_category' => 'Giao dịch phải không có danh mục', + 'search_modifier_not_has_no_category' => 'Giao dịch phải có 1 (bất kì) danh mục', + 'search_modifier_not_has_any_category' => 'Giao dịch phải không có danh mục', + 'search_modifier_has_any_category' => 'Giao dịch phải có danh mục', + 'search_modifier_has_no_budget' => 'Giao dịch phải không có ngân sách', + 'search_modifier_not_has_any_budget' => 'Giao dịch phải không có ngân sách', + 'search_modifier_has_any_budget' => 'Giao dịch có ngân sách (bất kỳ)', + 'search_modifier_not_has_no_budget' => 'Giao dịch có 1 (bất kỳ) ngân sách', + 'search_modifier_has_no_bill' => 'Giao dịch phải không có hóa đơn', + 'search_modifier_not_has_no_bill' => 'Giao dịch phải có 1 (bất kì) hóa đơn', + 'search_modifier_has_any_bill' => 'Giao dịch phải có 1 (hoặc nhiều) hóa đơn', + 'search_modifier_not_has_any_bill' => 'Giao dịch phải không có hóa đơn', + 'search_modifier_has_no_tag' => 'Giao dịch phải không có thẻ', + 'search_modifier_not_has_any_tag' => 'Giao dịch phải không có thẻ', + 'search_modifier_not_has_no_tag' => 'Giao dịch phải có 1 (bất kì) thẻ', + 'search_modifier_has_any_tag' => 'Giao dịch phải có thẻ', + 'search_modifier_notes_contains' => 'Các ghi chú giao dịch chứa ":value"', + 'search_modifier_not_notes_contains' => 'Các ghi chú giao dịch không chứa ":value"', + 'search_modifier_notes_starts' => 'Các ghi chú giao dịch bắt đầu bằng ":value"', + 'search_modifier_not_notes_starts' => 'Các ghi chú giao dịch không bắt đầu bằng ":value"', + 'search_modifier_notes_ends' => 'Các ghi chú giao dịch kết thúc bằng ":value"', + 'search_modifier_not_notes_ends' => 'Các ghi chú giao dịch không kết thúc bằng ":value"', + 'search_modifier_notes_is' => 'Các ghi chú giao dịch chính xác là ":value"', + 'search_modifier_not_notes_is' => 'Các ghi chú giao dịch không chính xác là ":value"', + 'search_modifier_no_notes' => 'Giao dịch không có ghi chú', + 'search_modifier_not_no_notes' => 'Giao dịch phải có ghi chú', + 'search_modifier_any_notes' => 'Giao dịch phải có ghi chú', + 'search_modifier_not_any_notes' => 'Giao dịch không có ghi chú', + 'search_modifier_amount_is' => 'Số lượng chính xác là :value', + 'search_modifier_not_amount_is' => 'Số tiền không phải :value', + 'search_modifier_amount_less' => 'Số tiền phải nhỏ hơn hoặc bằng :value', + 'search_modifier_not_amount_more' => 'Số tiền phải nhỏ hơn hoặc bằng :value', + 'search_modifier_amount_more' => 'Số tiền phải lớn hơn hoặc bằng :value', + 'search_modifier_not_amount_less' => 'Số tiền phải lớn hơn hoặc bằng :value', + 'search_modifier_source_account_is' => 'Tên tài khoản chính xác là ":value"', + 'search_modifier_not_source_account_is' => 'Tên tài khoản gửi không phải ":value"', + 'search_modifier_source_account_contains' => 'Tên tài khoản bao gồm ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Bill is ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaction type is ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Nhãn là ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Tạo quy tắc mới từ truy vấn tìm kiếm', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Tạo quy tắc mới từ truy vấn tìm kiếm', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => 'Các sửa đổi sau đây cũng được áp dụng cho tìm kiếm:', - 'general_search_error' => 'Đã xảy ra lỗi trong khi tìm kiếm. Vui lòng kiểm tra các tệp nhật ký để biết thêm thông tin.', - 'search_box' => 'Tìm kiếm', - 'search_box_intro' => 'Chào mừng bạn đến với chức năng tìm kiếm của Firefly III. Nhập truy vấn tìm kiếm của bạn vào hộp. Hãy chắc chắn rằng bạn kiểm tra tệp trợ giúp vì tìm kiếm khá nâng cao.', - 'search_error' => 'Lỗi trong khi tìm kiếm', - 'search_searching' => 'Đang tìm kiếm ...', - 'search_results' => 'Kết quả tìm kiếm', + 'modifiers_applies_are' => 'Các sửa đổi sau đây cũng được áp dụng cho tìm kiếm:', + 'general_search_error' => 'Đã xảy ra lỗi trong khi tìm kiếm. Vui lòng kiểm tra các tệp nhật ký để biết thêm thông tin.', + 'search_box' => 'Tìm kiếm', + 'search_box_intro' => 'Chào mừng bạn đến với chức năng tìm kiếm của Firefly III. Nhập truy vấn tìm kiếm của bạn vào hộp. Hãy chắc chắn rằng bạn kiểm tra tệp trợ giúp vì tìm kiếm khá nâng cao.', + 'search_error' => 'Lỗi trong khi tìm kiếm', + 'search_searching' => 'Đang tìm kiếm ...', + 'search_results' => 'Kết quả tìm kiếm', // repeat frequencies: - 'repeat_freq_yearly' => 'hàng năm', - 'repeat_freq_half-year' => 'mỗi nửa năm', - 'repeat_freq_quarterly' => 'hàng quý', - 'repeat_freq_monthly' => 'hàng tháng', - 'repeat_freq_weekly' => 'hàng tuần', - 'repeat_freq_daily' => 'hằng ngày', - 'daily' => 'hằng ngày', - 'weekly' => 'hàng tuần', - 'quarterly' => 'hàng quý', - 'half-year' => 'mỗi nửa năm', - 'yearly' => 'hàng năm', + 'repeat_freq_yearly' => 'hàng năm', + 'repeat_freq_half-year' => 'mỗi nửa năm', + 'repeat_freq_quarterly' => 'hàng quý', + 'repeat_freq_monthly' => 'hàng tháng', + 'repeat_freq_weekly' => 'hàng tuần', + 'repeat_freq_daily' => 'hằng ngày', + 'daily' => 'hằng ngày', + 'weekly' => 'hàng tuần', + 'quarterly' => 'hàng quý', + 'half-year' => 'mỗi nửa năm', + 'yearly' => 'hàng năm', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'Bạn không thể thực thi các quy tắc không hoạt động.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => 'Quy tắc', - 'rule_name' => 'Tên của quy tắc', - 'rule_triggers' => 'Quy tắc kích hoạt khi', - 'rule_actions' => 'Quy tắc sẽ', - 'new_rule' => 'Quy tắc mới', - 'new_rule_group' => 'Nhóm quy tắc mới', - 'rule_priority_up' => 'Ưu tiên quy tắc hơn', - 'rule_priority_down' => 'Đưa ra quy tắc ít ưu tiên', - 'make_new_rule_group' => 'Tạo nhóm quy tắc mới', - 'store_new_rule_group' => 'Lưu trữ nhóm quy tắc mới', - 'created_new_rule_group' => 'Nhóm quy tắc mới ":title" được lưu trữ!', - 'updated_rule_group' => 'Nhóm quy tắc được cập nhật thành công ":title".', - 'edit_rule_group' => 'Chỉnh sửa nhóm quy tắc ":title"', - 'duplicate_rule' => 'Trùng quy tắc ":title"', - 'rule_copy_of' => 'Sao chép ":title"', - 'duplicated_rule' => 'Trùng quy tắc ":title" với ":newTitle"', - 'delete_rule_group' => 'Xóa nhóm quy tắc ":title"', - 'deleted_rule_group' => 'Đã xóa nhóm quy tắc ":title"', - 'update_rule_group' => 'Cập nhật nhóm quy tắc', - 'no_rules_in_group' => 'Không có quy tắc nào trong nhóm này', - 'move_rule_group_up' => 'Di chuyển nhóm quy tắc lên', - 'move_rule_group_down' => 'Di chuyển nhóm quy tắc xuống', - 'save_rules_by_moving' => 'Lưu quy tắc này bằng cách di chuyển nó sang nhóm quy tắc khác: | Lưu các quy tắc này bằng cách di chuyển chúng sang nhóm quy tắc khác:', - 'make_new_rule' => 'Tạo quy tắc mới trong nhóm quy tắc ":title"', - 'make_new_rule_no_group' => 'Tạo một quy tắc mới', - 'instructions_rule_from_bill' => 'Để khớp giao dịch với hóa đơn mới của bạn ":name", Firefly III có thể sẽ tự động tạo quy tắc được kiểm tra đối với mọi giao dịch bạn lưu trữ. Vui lòng xác minh các chi tiết bên dưới và lưu trữ quy tắc để Firefly III tự động khớp các giao dịch với hóa đơn mới của bạn.', - 'instructions_rule_from_journal' => 'Tạo quy tắc dựa trên một trong các giao dịch của bạn. Bổ sung hoặc gửi mẫu dưới đây.', - 'rule_is_strict' => 'quy tắc nghiêm ngặt', - 'rule_is_not_strict' => 'quy tắc không nghiêm ngặt', - 'rule_help_stop_processing' => 'Khi bạn chọn hộp này, các quy tắc sau trong nhóm này sẽ không được thực thi.', - 'rule_help_strict' => 'Trong các quy tắc nghiêm ngặt TẤT CẢ các kích hoạt phải kích hoạt để (các) hành động được thực thi. Trong các quy tắc không nghiêm ngặt, BẤT KỲ kích hoạt nào cũng đủ để (các) hành động được thực thi.', - 'rule_help_active' => 'Quy tắc không hoạt động sẽ không bao giờ bắn.', - 'stored_new_rule' => 'Lưu trữ quy tắc mới với tiêu đề ":title"', - 'deleted_rule' => 'Xóa quy tắc với tiêu đề ":title"', - 'store_new_rule' => 'Lưu trữ quy tắc mới', - 'updated_rule' => 'Quy tắc cập nhật với tiêu đề ":title"', - 'default_rule_group_name' => 'Quy tắc mặc định', - 'default_rule_group_description' => 'Tất cả các quy tắc của bạn không nằm trong một nhóm cụ thể.', - 'trigger' => 'Kích hoạt', - 'trigger_value' => 'Kích hoạt giá trị', - 'stop_processing_other_triggers' => 'Ngừng xử lý các kích hoạt khác', - 'add_rule_trigger' => 'Thêm kích hoạt mới', - 'action' => 'Hành động', - 'action_value' => 'Giá trị hành động', - 'stop_executing_other_actions' => 'Ngừng thực hiện các hành động khác', - 'add_rule_action' => 'Thêm hành động mới', - 'edit_rule' => 'Chỉnh sửa quy tắc ":title"', - 'delete_rule' => 'Xóa quy tắc ":title"', - 'update_rule' => 'Cập nhật quy tắc', - 'test_rule_triggers' => 'Xem các giao dịch khớp', - 'warning_no_matching_transactions' => 'Không tìm thấy giao dịch phù hợp.', - 'warning_no_valid_triggers' => 'Không có kích hoạt hợp lệ được cung cấp.', - 'apply_rule_selection' => 'Áp dụng quy tắc ":title" cho giao dịch bạn lựa chọn', - 'apply_rule_selection_intro' => 'Quy tắc như ":title" thường chỉ được áp dụng cho các giao dịch mới hoặc được cập nhật, nhưng bạn có thể yêu cầu Firefly III chạy nó trên một lựa chọn các giao dịch hiện tại của bạn. Điều này có thể hữu ích khi bạn đã cập nhật quy tắc và bạn cần thay đổi để áp dụng cho tất cả các giao dịch khác của mình.', - 'include_transactions_from_accounts' => 'Bao gồm các giao dịch từ các tài khoản này', - 'include' => 'Bao gồm?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => 'Hoàn thành', - 'apply_rule_group_selection' => 'Áp dụng nhóm quy tắc ":title" để lựa chọn các giao dịch của bạn', - 'apply_rule_group_selection_intro' => 'Các nhóm quy tắc như ":title" thường chỉ được áp dụng cho các giao dịch mới hoặc được cập nhật, nhưng bạn có thể yêu cầu Firefly III chạy tất cả các quy tắc trong nhóm này trên một lựa chọn các giao dịch hiện tại của bạn. Điều này có thể hữu ích khi bạn đã cập nhật một nhóm quy tắc và bạn cần thay đổi để áp dụng cho tất cả các giao dịch khác của mình.', - 'applied_rule_group_selection' => 'Nhóm quy tắc ":title" đã được áp dụng cho lựa chọn của bạn.', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'Bạn không thể thực thi các quy tắc không hoạt động.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => 'Quy tắc', + 'rule_name' => 'Tên của quy tắc', + 'rule_triggers' => 'Quy tắc kích hoạt khi', + 'rule_actions' => 'Quy tắc sẽ', + 'new_rule' => 'Quy tắc mới', + 'new_rule_group' => 'Nhóm quy tắc mới', + 'rule_priority_up' => 'Ưu tiên quy tắc hơn', + 'rule_priority_down' => 'Đưa ra quy tắc ít ưu tiên', + 'make_new_rule_group' => 'Tạo nhóm quy tắc mới', + 'store_new_rule_group' => 'Lưu trữ nhóm quy tắc mới', + 'created_new_rule_group' => 'Nhóm quy tắc mới ":title" được lưu trữ!', + 'updated_rule_group' => 'Nhóm quy tắc được cập nhật thành công ":title".', + 'edit_rule_group' => 'Chỉnh sửa nhóm quy tắc ":title"', + 'duplicate_rule' => 'Trùng quy tắc ":title"', + 'rule_copy_of' => 'Sao chép ":title"', + 'duplicated_rule' => 'Trùng quy tắc ":title" với ":newTitle"', + 'delete_rule_group' => 'Xóa nhóm quy tắc ":title"', + 'deleted_rule_group' => 'Đã xóa nhóm quy tắc ":title"', + 'update_rule_group' => 'Cập nhật nhóm quy tắc', + 'no_rules_in_group' => 'Không có quy tắc nào trong nhóm này', + 'move_rule_group_up' => 'Di chuyển nhóm quy tắc lên', + 'move_rule_group_down' => 'Di chuyển nhóm quy tắc xuống', + 'save_rules_by_moving' => 'Lưu quy tắc này bằng cách di chuyển nó sang nhóm quy tắc khác: | Lưu các quy tắc này bằng cách di chuyển chúng sang nhóm quy tắc khác:', + 'make_new_rule' => 'Tạo quy tắc mới trong nhóm quy tắc ":title"', + 'make_new_rule_no_group' => 'Tạo một quy tắc mới', + 'instructions_rule_from_bill' => 'Để khớp giao dịch với hóa đơn mới của bạn ":name", Firefly III có thể sẽ tự động tạo quy tắc được kiểm tra đối với mọi giao dịch bạn lưu trữ. Vui lòng xác minh các chi tiết bên dưới và lưu trữ quy tắc để Firefly III tự động khớp các giao dịch với hóa đơn mới của bạn.', + 'instructions_rule_from_journal' => 'Tạo quy tắc dựa trên một trong các giao dịch của bạn. Bổ sung hoặc gửi mẫu dưới đây.', + 'rule_is_strict' => 'quy tắc nghiêm ngặt', + 'rule_is_not_strict' => 'quy tắc không nghiêm ngặt', + 'rule_help_stop_processing' => 'Khi bạn chọn hộp này, các quy tắc sau trong nhóm này sẽ không được thực thi.', + 'rule_help_strict' => 'Trong các quy tắc nghiêm ngặt TẤT CẢ các kích hoạt phải kích hoạt để (các) hành động được thực thi. Trong các quy tắc không nghiêm ngặt, BẤT KỲ kích hoạt nào cũng đủ để (các) hành động được thực thi.', + 'rule_help_active' => 'Quy tắc không hoạt động sẽ không bao giờ bắn.', + 'stored_new_rule' => 'Lưu trữ quy tắc mới với tiêu đề ":title"', + 'deleted_rule' => 'Xóa quy tắc với tiêu đề ":title"', + 'store_new_rule' => 'Lưu trữ quy tắc mới', + 'updated_rule' => 'Quy tắc cập nhật với tiêu đề ":title"', + 'default_rule_group_name' => 'Quy tắc mặc định', + 'default_rule_group_description' => 'Tất cả các quy tắc của bạn không nằm trong một nhóm cụ thể.', + 'trigger' => 'Kích hoạt', + 'trigger_value' => 'Kích hoạt giá trị', + 'stop_processing_other_triggers' => 'Ngừng xử lý các kích hoạt khác', + 'add_rule_trigger' => 'Thêm kích hoạt mới', + 'action' => 'Hành động', + 'action_value' => 'Giá trị hành động', + 'stop_executing_other_actions' => 'Ngừng thực hiện các hành động khác', + 'add_rule_action' => 'Thêm hành động mới', + 'edit_rule' => 'Chỉnh sửa quy tắc ":title"', + 'delete_rule' => 'Xóa quy tắc ":title"', + 'update_rule' => 'Cập nhật quy tắc', + 'test_rule_triggers' => 'Xem các giao dịch khớp', + 'warning_no_matching_transactions' => 'Không tìm thấy giao dịch phù hợp.', + 'warning_no_valid_triggers' => 'Không có kích hoạt hợp lệ được cung cấp.', + 'apply_rule_selection' => 'Áp dụng quy tắc ":title" cho giao dịch bạn lựa chọn', + 'apply_rule_selection_intro' => 'Quy tắc như ":title" thường chỉ được áp dụng cho các giao dịch mới hoặc được cập nhật, nhưng bạn có thể yêu cầu Firefly III chạy nó trên một lựa chọn các giao dịch hiện tại của bạn. Điều này có thể hữu ích khi bạn đã cập nhật quy tắc và bạn cần thay đổi để áp dụng cho tất cả các giao dịch khác của mình.', + 'include_transactions_from_accounts' => 'Bao gồm các giao dịch từ các tài khoản này', + 'include' => 'Bao gồm?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => 'Hoàn thành', + 'apply_rule_group_selection' => 'Áp dụng nhóm quy tắc ":title" để lựa chọn các giao dịch của bạn', + 'apply_rule_group_selection_intro' => 'Các nhóm quy tắc như ":title" thường chỉ được áp dụng cho các giao dịch mới hoặc được cập nhật, nhưng bạn có thể yêu cầu Firefly III chạy tất cả các quy tắc trong nhóm này trên một lựa chọn các giao dịch hiện tại của bạn. Điều này có thể hữu ích khi bạn đã cập nhật một nhóm quy tắc và bạn cần thay đổi để áp dụng cho tất cả các giao dịch khác của mình.', + 'applied_rule_group_selection' => 'Nhóm quy tắc ":title" đã được áp dụng cho lựa chọn của bạn.', // actions and triggers - 'rule_trigger_store_journal' => 'Khi một giao dịch được tạo', - 'rule_trigger_update_journal' => 'Khi một giao dịch được cập nhật', - 'rule_trigger_user_action' => 'Hành động của người dùng là ":trigger_value"', + 'rule_trigger_store_journal' => 'Khi một giao dịch được tạo', + 'rule_trigger_update_journal' => 'Khi một giao dịch được cập nhật', + 'rule_trigger_user_action' => 'Hành động của người dùng là ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Tên tài khoản chứa..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Số tài khoản nguồn / IBAN là..', - 'rule_trigger_source_account_nr_is' => 'Số tài khoản nguồn / IBAN là ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Số tài khoản nguồn / IBAN chứa..', - 'rule_trigger_source_account_nr_contains' => 'Số tài khoản nguồn / IBAN chứa ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Tên tài khoản đích bắt đầu bằng..', - 'rule_trigger_destination_account_starts' => 'Tên tài khoản đích bắt đầu bằng ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Tên tài khoản đích kết thúc bằng..', - 'rule_trigger_destination_account_ends' => 'Tên tài khoản đích kết thúc bằng ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Tên tài khoản đích là..', - 'rule_trigger_destination_account_is' => 'Tên tài khoản đích là ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => 'Giao dịch thuộc loại..', - 'rule_trigger_transaction_type' => 'Giao dịch thuộc loại ":trigger_value"', - 'rule_trigger_category_is_choice' => 'Danh mục là..', - 'rule_trigger_category_is' => 'Danh mục là ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => 'Mô tả bắt đầu bằng..', - 'rule_trigger_description_starts' => 'Mô tả bắt đầu bằng ":trigger_value"', - 'rule_trigger_description_ends_choice' => 'Mô tả kết thúc bằng..', - 'rule_trigger_description_ends' => 'Mô tả kết thúc bằng ":trigger_value"', - 'rule_trigger_description_contains_choice' => 'Mô tả có chứa..', - 'rule_trigger_description_contains' => 'Mô tả có chứa ":trigger_value"', - 'rule_trigger_description_is_choice' => 'Mô tả là..', - 'rule_trigger_description_is' => 'Mô tả là ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Ngày giao dịch trước..', - 'rule_trigger_date_before' => 'Ngày giao dịch là trước: ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Ngày giao dịch sau..', - 'rule_trigger_date_after' => 'Ngày giao dịch sau: ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => 'Ngân sách là..', - 'rule_trigger_budget_is' => 'Ngân sách là ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => 'Tiền tệ giao dịch là..', - 'rule_trigger_currency_is' => 'Tiền tệ giao dịch là ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Giao dịch ngoại tệ là..', - 'rule_trigger_foreign_currency_is' => 'Giao dịch ngoại tệ là ":trigger_value"', - 'rule_trigger_has_attachments_choice' => 'Có ít nhất nhiều tệp đính kèm này', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => 'Không có danh mục', - 'rule_trigger_has_no_category' => 'Giao dịch không có danh mục', - 'rule_trigger_has_any_category_choice' => 'Có một danh mục (bất kỳ)', - 'rule_trigger_has_any_category' => 'Giao dịch có một danh mục (bất kỳ)', - 'rule_trigger_has_no_budget_choice' => 'Không có ngân sách', - 'rule_trigger_has_no_budget' => 'Giao dịch không có ngân sách', - 'rule_trigger_has_any_budget_choice' => 'Có ngân sách (bất kỳ)', - 'rule_trigger_has_any_budget' => 'Giao dịch có ngân sách (bất kỳ)', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => 'Không có nhãn', - 'rule_trigger_has_no_tag' => 'Giao dịch không có nhãn', - 'rule_trigger_has_any_tag_choice' => 'Có một hoặc nhiều nhãn(bất kỳ)', - 'rule_trigger_has_any_tag' => 'Giao dịch có một hoặc nhiều nhãn(bất kỳ)', - 'rule_trigger_any_notes_choice' => 'Có (bất kỳ) ghi chú', - 'rule_trigger_any_notes' => 'Giao dịch có (bất kỳ) ghi chú', - 'rule_trigger_no_notes_choice' => 'Không có ghi chú', - 'rule_trigger_no_notes' => 'Giao dịch không có ghi chú', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Hóa đơn là..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Tên tài khoản chứa..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Số tài khoản nguồn / IBAN là..', + 'rule_trigger_source_account_nr_is' => 'Số tài khoản nguồn / IBAN là ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Số tài khoản nguồn / IBAN chứa..', + 'rule_trigger_source_account_nr_contains' => 'Số tài khoản nguồn / IBAN chứa ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Tên tài khoản đích bắt đầu bằng..', + 'rule_trigger_destination_account_starts' => 'Tên tài khoản đích bắt đầu bằng ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Tên tài khoản đích kết thúc bằng..', + 'rule_trigger_destination_account_ends' => 'Tên tài khoản đích kết thúc bằng ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Tên tài khoản đích là..', + 'rule_trigger_destination_account_is' => 'Tên tài khoản đích là ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Giao dịch thuộc loại..', + 'rule_trigger_transaction_type' => 'Giao dịch thuộc loại ":trigger_value"', + 'rule_trigger_category_is_choice' => 'Danh mục là..', + 'rule_trigger_category_is' => 'Danh mục là ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => 'Mô tả bắt đầu bằng..', + 'rule_trigger_description_starts' => 'Mô tả bắt đầu bằng ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Mô tả kết thúc bằng..', + 'rule_trigger_description_ends' => 'Mô tả kết thúc bằng ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Mô tả có chứa..', + 'rule_trigger_description_contains' => 'Mô tả có chứa ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Mô tả là..', + 'rule_trigger_description_is' => 'Mô tả là ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Ngày giao dịch trước..', + 'rule_trigger_date_before' => 'Ngày giao dịch là trước: ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Ngày giao dịch sau..', + 'rule_trigger_date_after' => 'Ngày giao dịch sau: ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => 'Ngân sách là..', + 'rule_trigger_budget_is' => 'Ngân sách là ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => 'Tiền tệ giao dịch là..', + 'rule_trigger_currency_is' => 'Tiền tệ giao dịch là ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Giao dịch ngoại tệ là..', + 'rule_trigger_foreign_currency_is' => 'Giao dịch ngoại tệ là ":trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Có ít nhất nhiều tệp đính kèm này', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => 'Không có danh mục', + 'rule_trigger_has_no_category' => 'Giao dịch không có danh mục', + 'rule_trigger_has_any_category_choice' => 'Có một danh mục (bất kỳ)', + 'rule_trigger_has_any_category' => 'Giao dịch có một danh mục (bất kỳ)', + 'rule_trigger_has_no_budget_choice' => 'Không có ngân sách', + 'rule_trigger_has_no_budget' => 'Giao dịch không có ngân sách', + 'rule_trigger_has_any_budget_choice' => 'Có ngân sách (bất kỳ)', + 'rule_trigger_has_any_budget' => 'Giao dịch có ngân sách (bất kỳ)', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => 'Không có nhãn', + 'rule_trigger_has_no_tag' => 'Giao dịch không có nhãn', + 'rule_trigger_has_any_tag_choice' => 'Có một hoặc nhiều nhãn(bất kỳ)', + 'rule_trigger_has_any_tag' => 'Giao dịch có một hoặc nhiều nhãn(bất kỳ)', + 'rule_trigger_any_notes_choice' => 'Có (bất kỳ) ghi chú', + 'rule_trigger_any_notes' => 'Giao dịch có (bất kỳ) ghi chú', + 'rule_trigger_no_notes_choice' => 'Không có ghi chú', + 'rule_trigger_no_notes' => 'Giao dịch không có ghi chú', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Hóa đơn là..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => 'Đặt danh mục thành ":action_value"', - 'rule_action_clear_category' => 'Xóa danh mục', - 'rule_action_set_budget' => 'Đặt ngân sách thành ":action_value"', - 'rule_action_clear_budget' => 'Xóa ngân sách', - 'rule_action_add_tag' => 'Thêm nhãn ":action_value"', - 'rule_action_remove_tag' => 'Xóa nhãn ":action_value"', - 'rule_action_remove_all_tags' => 'Xóa tất cả các nhãn', - 'rule_action_set_description' => 'Đặt mô tả thành ":action_value"', - 'rule_action_append_description' => 'Nối mô tả với ":action_value"', - 'rule_action_prepend_description' => 'Chuẩn bị mô tả với":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => 'Xóa mọi danh mục', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => 'Xóa mọi ngân sách', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => 'Xóa tất cả các nhãn', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => 'Đặt tài khoản nguồn thành :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => 'Đặt tài khoản đích thành :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => 'Nối ghi chú với ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => 'Chuẩn bị ghi chú với ":action_value"', - 'rule_action_clear_notes_choice' => 'Xóa mọi ghi chú', - 'rule_action_clear_notes' => 'Xóa mọi ghi chú', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => 'Liên kết đến một hóa đơn ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => 'Đặt ghi chú cho ":action_value"', - 'rule_action_convert_deposit_choice' => 'Chuyển đổi giao dịch thành tiền gửi', - 'rule_action_convert_deposit' => 'Chuyển đổi giao dịch thành tiền gửi từ ":action_value"', - 'rule_action_convert_withdrawal_choice' => 'Chuyển đổi giao dịch sang rút tiền', - 'rule_action_convert_withdrawal' => 'Chuyển đổi giao dịch thành rút tiền sang ":action_value"', - 'rule_action_convert_transfer_choice' => 'Chuyển đổi giao dịch sang chuyển khoản', - 'rule_action_convert_transfer' => 'Chuyển đổi giao dịch sang chuyển khoản với ":action_value"', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => 'Nhóm quy tắc cho hóa đơn', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => 'Tạo quy tắc mới cho hóa đơn ":name"', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => 'Quy tắc cho hóa đơn ":name"', - 'new_rule_for_bill_description' => 'Quy tắc này đánh dấu các giao dịch cho hóa đơn ":name".', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => 'Đặt danh mục thành ":action_value"', + 'rule_action_clear_category' => 'Xóa danh mục', + 'rule_action_set_budget' => 'Đặt ngân sách thành ":action_value"', + 'rule_action_clear_budget' => 'Xóa ngân sách', + 'rule_action_add_tag' => 'Thêm nhãn ":action_value"', + 'rule_action_remove_tag' => 'Xóa nhãn ":action_value"', + 'rule_action_remove_all_tags' => 'Xóa tất cả các nhãn', + 'rule_action_set_description' => 'Đặt mô tả thành ":action_value"', + 'rule_action_append_description' => 'Nối mô tả với ":action_value"', + 'rule_action_prepend_description' => 'Chuẩn bị mô tả với":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => 'Xóa mọi danh mục', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => 'Xóa mọi ngân sách', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => 'Xóa tất cả các nhãn', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => 'Đặt tài khoản nguồn thành :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => 'Đặt tài khoản đích thành :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => 'Nối ghi chú với ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => 'Chuẩn bị ghi chú với ":action_value"', + 'rule_action_clear_notes_choice' => 'Xóa mọi ghi chú', + 'rule_action_clear_notes' => 'Xóa mọi ghi chú', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => 'Liên kết đến một hóa đơn ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => 'Đặt ghi chú cho ":action_value"', + 'rule_action_convert_deposit_choice' => 'Chuyển đổi giao dịch thành tiền gửi', + 'rule_action_convert_deposit' => 'Chuyển đổi giao dịch thành tiền gửi từ ":action_value"', + 'rule_action_convert_withdrawal_choice' => 'Chuyển đổi giao dịch sang rút tiền', + 'rule_action_convert_withdrawal' => 'Chuyển đổi giao dịch thành rút tiền sang ":action_value"', + 'rule_action_convert_transfer_choice' => 'Chuyển đổi giao dịch sang chuyển khoản', + 'rule_action_convert_transfer' => 'Chuyển đổi giao dịch sang chuyển khoản với ":action_value"', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => 'Nhóm quy tắc cho hóa đơn', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => 'Tạo quy tắc mới cho hóa đơn ":name"', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => 'Quy tắc cho hóa đơn ":name"', + 'new_rule_for_bill_description' => 'Quy tắc này đánh dấu các giao dịch cho hóa đơn ":name".', - 'new_rule_for_journal_title' => 'Quy tắc dựa trên giao dich ":description"', - 'new_rule_for_journal_description' => 'Quy tắc này dựa trên giao dịch ":description".', + 'new_rule_for_journal_title' => 'Quy tắc dựa trên giao dich ":description"', + 'new_rule_for_journal_description' => 'Quy tắc này dựa trên giao dịch ":description".', // tags - 'store_new_tag' => 'Lưu trữ nhãn mới', - 'update_tag' => 'Cập nhật nhãn', - 'no_location_set' => 'Không có vị trí được đặt.', - 'meta_data' => 'Meta data', - 'location' => 'Vị trí', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => 'Không có ngày', - 'result' => 'Kết quả', - 'sums_apply_to_range' => 'Tất cả các khoản tiền áp dụng cho phạm vi đã chọn', - 'mapbox_api_key' => 'Để sử dụng bản đồ, hãy lấy khóa API từ Mapbox. Open your .env tập tin và nhập mã này sau MAPBOX_API_KEY=.', - 'press_object_location' => 'Nhấp chuột phải hoặc nhấn lâu để đặt vị trí của đối tượng.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => 'Xóa vị trí', - 'delete_all_selected_tags' => 'Xóa tất cả các nhãn đã chọn', - 'select_tags_to_delete' => 'Đừng quên chọn một số nhãn.', - 'deleted_x_tags' => 'Xóa nhãn :count.', - 'create_rule_from_transaction' => 'Tạo quy tắc dựa trên giao dịch', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => 'Lưu trữ nhãn mới', + 'update_tag' => 'Cập nhật nhãn', + 'no_location_set' => 'Không có vị trí được đặt.', + 'meta_data' => 'Meta data', + 'location' => 'Vị trí', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => 'Không có ngày', + 'result' => 'Kết quả', + 'sums_apply_to_range' => 'Tất cả các khoản tiền áp dụng cho phạm vi đã chọn', + 'mapbox_api_key' => 'Để sử dụng bản đồ, hãy lấy khóa API từ Mapbox. Open your .env tập tin và nhập mã này sau MAPBOX_API_KEY=.', + 'press_object_location' => 'Nhấp chuột phải hoặc nhấn lâu để đặt vị trí của đối tượng.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => 'Xóa vị trí', + 'delete_all_selected_tags' => 'Xóa tất cả các nhãn đã chọn', + 'select_tags_to_delete' => 'Đừng quên chọn một số nhãn.', + 'deleted_x_tags' => 'Xóa nhãn :count.', + 'create_rule_from_transaction' => 'Tạo quy tắc dựa trên giao dịch', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(bằng ngôn ngữ)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => 'Tài khoản màn hình chính', - 'pref_home_screen_accounts_help' => 'Những tài khoản nào sẽ được hiển thị trên trang chủ?', - 'pref_view_range' => 'Xem nhiều', - 'pref_view_range_help' => 'Một số biểu đồ được tự động nhóm trong các giai đoạn. Ngân sách của bạn cũng sẽ được nhóm theo thời gian. Bạn thích thời gian nào?', - 'pref_1D' => 'Một ngày', - 'pref_1W' => 'Một tuần', - 'pref_1M' => 'Một tháng', - 'pref_3M' => 'Ba tháng (quý)', - 'pref_6M' => 'Sáu tháng', - 'pref_1Y' => 'Một năm', - 'pref_last365' => 'Năm trước', - 'pref_last90' => '90 ngày cuối', - 'pref_last30' => '30 ngày cuối', - 'pref_last7' => '7 ngày trước', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => 'Ngôn ngữ', - 'pref_locale' => 'Thiết lập địa phương', - 'pref_languages_help' => 'Firefly III hỗ trợ một số ngôn ngữ. Bạn thích cái nào hơn?', - 'pref_locale_help' => 'Firefly III cho phép bạn đặt các cài đặt cục bộ khác, như cách định dạng tiền tệ, số và ngày. Các mục trong danh sách này có thể không được hệ thống của bạn hỗ trợ. Firefly III không có cài đặt ngày chính xác cho mọi miền; liên hệ với tôi để cải thiện.', - 'pref_locale_no_demo' => 'Tính năng này sẽ không hoạt động cho người dùng demo.', - 'pref_custom_fiscal_year' => 'Cài đặt năm tài chính', - 'pref_custom_fiscal_year_label' => 'Đã bật', - 'pref_custom_fiscal_year_help' => 'Ở các quốc gia sử dụng năm tài chính khác từ ngày 1 tháng 1 đến ngày 31 tháng 12, bạn có thể bật tính năng này và chỉ định ngày bắt đầu / ngày kết thúc của năm tài chính', - 'pref_fiscal_year_start_label' => 'Ngày bắt đầu năm tài chính', - 'pref_two_factor_auth' => 'Xác minh 2 bước', - 'pref_two_factor_auth_help' => 'Khi bạn bật xác minh 2 bước (còn được gọi là xác thực hai yếu tố), bạn sẽ thêm một lớp bảo mật bổ sung cho tài khoản của mình. Bạn đăng nhập bằng thứ gì đó bạn biết (mật khẩu của bạn) và thứ bạn có (mã xác minh). Mã xác minh được tạo bởi một ứng dụng trên điện thoại của bạn, chẳng hạn như Authy hoặc Google Authenticator.', - 'pref_enable_two_factor_auth' => 'Cho phép xác minh 2 bước', - 'pref_two_factor_auth_disabled' => 'Mã xác minh 2 bước đã bị xóa và vô hiệu hóa', - 'pref_two_factor_auth_remove_it' => 'Đừng quên xóa tài khoản khỏi ứng dụng xác thực của bạn!', - 'pref_two_factor_auth_code' => 'Mã xác minh', - 'pref_two_factor_auth_code_help' => 'Quét mã QR bằng một ứng dụng trên điện thoại của bạn như Authy hoặc Google Authenticator và nhập mã được tạo.', - 'pref_two_factor_auth_reset_code' => 'Đặt lại mã xác minh', - 'pref_two_factor_auth_disable_2fa' => 'Vô hiệu hóa 2FA', - '2fa_use_secret_instead' => 'Nếu bạn không thể quét mã QR, thay vào đó hãy sử dụng bí mật: :secret.', - '2fa_backup_codes' => 'Lưu trữ các mã dự phòng này để truy cập trong trường hợp bạn mất thiết bị.', - '2fa_already_enabled' => 'Xác minh 2 bước đã được bật.', - 'wrong_mfa_code' => 'Mã MFA này không hợp lệ.', - 'pref_save_settings' => 'Lưu các thiết lập', - 'saved_preferences' => 'Đã lưu tùy chọn!', - 'preferences_general' => 'Chung', - 'preferences_frontpage' => 'Màn hình chính', - 'preferences_security' => 'Bảo mật', - 'preferences_layout' => 'Bố trí', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => 'Hiển thị tiền gửi trên màn hình chính', - 'pref_home_show_deposits_info' => 'Màn hình chính đã hiển thị các tài khoản chi phí của bạn. Nó cũng sẽ hiển thị tài khoản doanh thu của bạn?', - 'pref_home_do_show_deposits' => 'Vâng, hiện chúng', - 'successful_count' => 'trong :count thành công', - 'list_page_size_title' => 'Kích thước trang', - 'list_page_size_help' => 'Bất kỳ danh sách các thứ (tài khoản, giao dịch, v.v.) đều hiển thị nhiều nhất trên mỗi trang.', - 'list_page_size_label' => 'Kích thước trang', - 'between_dates' => '(:start và :end)', - 'pref_optional_fields_transaction' => 'Các trường tùy chọn cho giao dịch', - 'pref_optional_fields_transaction_help' => 'Theo mặc định, không phải tất cả các trường đều được bật khi tạo giao dịch mới (vì sự lộn xộn). Dưới đây, bạn có thể kích hoạt các trường này nếu bạn nghĩ rằng chúng có thể hữu ích cho bạn. Tất nhiên, bất kỳ trường nào bị vô hiệu hóa, nhưng đã được điền vào, sẽ hiển thị bất kể cài đặt.', - 'optional_tj_date_fields' => 'Trường ngày', - 'optional_tj_other_fields' => 'Các dữ liệu khác', - 'optional_tj_attachment_fields' => 'Trường đính kèm', - 'pref_optional_tj_interest_date' => 'Ngày lãi', - 'pref_optional_tj_book_date' => 'Ngày đặt sách', - 'pref_optional_tj_process_date' => 'Ngày xử lý', - 'pref_optional_tj_due_date' => 'Ngày đáo hạn', - 'pref_optional_tj_payment_date' => 'Ngày thanh toán', - 'pref_optional_tj_invoice_date' => 'Ngày hóa đơn', - 'pref_optional_tj_internal_reference' => 'Tài liệu tham khảo nội bộ', - 'pref_optional_tj_notes' => 'Ghi chú', - 'pref_optional_tj_attachments' => 'Tài liệu đính kèm', - 'pref_optional_tj_external_url' => 'URL bên ngoài', - 'pref_optional_tj_location' => 'Vị trí', - 'pref_optional_tj_links' => 'Liên kết giao dịch', - 'optional_field_meta_dates' => 'Ngày', - 'optional_field_meta_business' => 'Kinh doanh', - 'optional_field_attachments' => 'Tài liệu đính kèm', - 'optional_field_meta_data' => 'Dữ liệu meta tùy chọn', - 'external_url' => 'URL bên ngoài', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(bằng ngôn ngữ)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => 'Tài khoản màn hình chính', + 'pref_home_screen_accounts_help' => 'Những tài khoản nào sẽ được hiển thị trên trang chủ?', + 'pref_view_range' => 'Xem nhiều', + 'pref_view_range_help' => 'Một số biểu đồ được tự động nhóm trong các giai đoạn. Ngân sách của bạn cũng sẽ được nhóm theo thời gian. Bạn thích thời gian nào?', + 'pref_1D' => 'Một ngày', + 'pref_1W' => 'Một tuần', + 'pref_1M' => 'Một tháng', + 'pref_3M' => 'Ba tháng (quý)', + 'pref_6M' => 'Sáu tháng', + 'pref_1Y' => 'Một năm', + 'pref_last365' => 'Năm trước', + 'pref_last90' => '90 ngày cuối', + 'pref_last30' => '30 ngày cuối', + 'pref_last7' => '7 ngày trước', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => 'Ngôn ngữ', + 'pref_locale' => 'Thiết lập địa phương', + 'pref_languages_help' => 'Firefly III hỗ trợ một số ngôn ngữ. Bạn thích cái nào hơn?', + 'pref_locale_help' => 'Firefly III cho phép bạn đặt các cài đặt cục bộ khác, như cách định dạng tiền tệ, số và ngày. Các mục trong danh sách này có thể không được hệ thống của bạn hỗ trợ. Firefly III không có cài đặt ngày chính xác cho mọi miền; liên hệ với tôi để cải thiện.', + 'pref_locale_no_demo' => 'Tính năng này sẽ không hoạt động cho người dùng demo.', + 'pref_custom_fiscal_year' => 'Cài đặt năm tài chính', + 'pref_custom_fiscal_year_label' => 'Đã bật', + 'pref_custom_fiscal_year_help' => 'Ở các quốc gia sử dụng năm tài chính khác từ ngày 1 tháng 1 đến ngày 31 tháng 12, bạn có thể bật tính năng này và chỉ định ngày bắt đầu / ngày kết thúc của năm tài chính', + 'pref_fiscal_year_start_label' => 'Ngày bắt đầu năm tài chính', + 'pref_two_factor_auth' => 'Xác minh 2 bước', + 'pref_two_factor_auth_help' => 'Khi bạn bật xác minh 2 bước (còn được gọi là xác thực hai yếu tố), bạn sẽ thêm một lớp bảo mật bổ sung cho tài khoản của mình. Bạn đăng nhập bằng thứ gì đó bạn biết (mật khẩu của bạn) và thứ bạn có (mã xác minh). Mã xác minh được tạo bởi một ứng dụng trên điện thoại của bạn, chẳng hạn như Authy hoặc Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Cho phép xác minh 2 bước', + 'pref_two_factor_auth_disabled' => 'Mã xác minh 2 bước đã bị xóa và vô hiệu hóa', + 'pref_two_factor_auth_remove_it' => 'Đừng quên xóa tài khoản khỏi ứng dụng xác thực của bạn!', + 'pref_two_factor_auth_code' => 'Mã xác minh', + 'pref_two_factor_auth_code_help' => 'Quét mã QR bằng một ứng dụng trên điện thoại của bạn như Authy hoặc Google Authenticator và nhập mã được tạo.', + 'pref_two_factor_auth_reset_code' => 'Đặt lại mã xác minh', + 'pref_two_factor_auth_disable_2fa' => 'Vô hiệu hóa 2FA', + '2fa_use_secret_instead' => 'Nếu bạn không thể quét mã QR, thay vào đó hãy sử dụng bí mật: :secret.', + '2fa_backup_codes' => 'Lưu trữ các mã dự phòng này để truy cập trong trường hợp bạn mất thiết bị.', + '2fa_already_enabled' => 'Xác minh 2 bước đã được bật.', + 'wrong_mfa_code' => 'Mã MFA này không hợp lệ.', + 'pref_save_settings' => 'Lưu các thiết lập', + 'saved_preferences' => 'Đã lưu tùy chọn!', + 'preferences_general' => 'Chung', + 'preferences_frontpage' => 'Màn hình chính', + 'preferences_security' => 'Bảo mật', + 'preferences_layout' => 'Bố trí', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => 'Hiển thị tiền gửi trên màn hình chính', + 'pref_home_show_deposits_info' => 'Màn hình chính đã hiển thị các tài khoản chi phí của bạn. Nó cũng sẽ hiển thị tài khoản doanh thu của bạn?', + 'pref_home_do_show_deposits' => 'Vâng, hiện chúng', + 'successful_count' => 'trong :count thành công', + 'list_page_size_title' => 'Kích thước trang', + 'list_page_size_help' => 'Bất kỳ danh sách các thứ (tài khoản, giao dịch, v.v.) đều hiển thị nhiều nhất trên mỗi trang.', + 'list_page_size_label' => 'Kích thước trang', + 'between_dates' => '(:start và :end)', + 'pref_optional_fields_transaction' => 'Các trường tùy chọn cho giao dịch', + 'pref_optional_fields_transaction_help' => 'Theo mặc định, không phải tất cả các trường đều được bật khi tạo giao dịch mới (vì sự lộn xộn). Dưới đây, bạn có thể kích hoạt các trường này nếu bạn nghĩ rằng chúng có thể hữu ích cho bạn. Tất nhiên, bất kỳ trường nào bị vô hiệu hóa, nhưng đã được điền vào, sẽ hiển thị bất kể cài đặt.', + 'optional_tj_date_fields' => 'Trường ngày', + 'optional_tj_other_fields' => 'Các dữ liệu khác', + 'optional_tj_attachment_fields' => 'Trường đính kèm', + 'pref_optional_tj_interest_date' => 'Ngày lãi', + 'pref_optional_tj_book_date' => 'Ngày đặt sách', + 'pref_optional_tj_process_date' => 'Ngày xử lý', + 'pref_optional_tj_due_date' => 'Ngày đáo hạn', + 'pref_optional_tj_payment_date' => 'Ngày thanh toán', + 'pref_optional_tj_invoice_date' => 'Ngày hóa đơn', + 'pref_optional_tj_internal_reference' => 'Tài liệu tham khảo nội bộ', + 'pref_optional_tj_notes' => 'Ghi chú', + 'pref_optional_tj_attachments' => 'Tài liệu đính kèm', + 'pref_optional_tj_external_url' => 'URL bên ngoài', + 'pref_optional_tj_location' => 'Vị trí', + 'pref_optional_tj_links' => 'Liên kết giao dịch', + 'optional_field_meta_dates' => 'Ngày', + 'optional_field_meta_business' => 'Kinh doanh', + 'optional_field_attachments' => 'Tài liệu đính kèm', + 'optional_field_meta_data' => 'Dữ liệu meta tùy chọn', + 'external_url' => 'URL bên ngoài', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Xóa TẤT CẢ ngân sách của bạn', - 'delete_all_categories' => 'Xóa TẤT CẢ danh mục của bạn', - 'delete_all_tags' => 'Xóa TẤT CẢ các nhãn của bạn', - 'delete_all_bills' => 'Xóa TẤT CẢ các hóa đơn của bạn', - 'delete_all_piggy_banks' => 'Xóa TẤT CẢ các ống heo của bạn', - 'delete_all_rules' => 'Xóa TẤT CẢ các luật của bạn', - 'delete_all_recurring' => 'Xóa TẤT CẢ các giao dịch định kỳ của bạn', - 'delete_all_object_groups' => 'Xóa TẤT CẢ các nhóm đối tượng của bạn', - 'delete_all_accounts' => 'Xóa TẤT CẢ các tài khoản của bạn', - 'delete_all_asset_accounts' => 'Xóa TẤT CẢ các tài khoản của bạn', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Xóa TẤT CẢ giao dịch của bạn', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'Tất cả ngân sách đã bị xóa', - 'deleted_all_categories' => 'Tất cả các danh mục đã bị xóa', - 'deleted_all_tags' => 'Tất cả các nhãn bị xóa', - 'deleted_all_bills' => 'Tất cả các hóa đơn đã được xóa', - 'deleted_all_piggy_banks' => 'Tất cả heo đất đã bị xóa', - 'deleted_all_rules' => 'Tất cả các quy tắc và nhóm quy tắc đã bị xóa', - 'deleted_all_object_groups' => 'Tất cả các nhóm đã bị xóa', - 'deleted_all_accounts' => 'Tất cả các tài khoản đã bị xóa', - 'deleted_all_asset_accounts' => 'Tất cả các tài khoản đã bị xóa', - 'deleted_all_expense_accounts' => 'Tất cả các tài khoản chi phí đã bị xóa', - 'deleted_all_revenue_accounts' => 'Tất cả các tài khoản doanh thu đã bị xóa', - 'deleted_all_liabilities' => 'Tất cả các khoản nợ đã được xóa', - 'deleted_all_transactions' => 'Tất cả các giao dịch đã bị xóa', - 'deleted_all_withdrawals' => 'Tất cả các lần rút tiền đã bị xóa', - 'deleted_all_deposits' => 'Tất cả các khoản tiền gửi đã bị xóa', - 'deleted_all_transfers' => 'Tất cả các chuyển khoản đã bị xóa', - 'deleted_all_recurring' => 'Tất cả các giao dịch định kỳ đã bị xóa', - 'change_your_password' => 'Thay đổi mật khẩu của bạn', - 'delete_account' => 'Xóa tài khoản', - 'current_password' => 'Mật khẩu hiện tại', - 'new_password' => 'Mật khẩu mới', - 'new_password_again' => 'Mật khẩu mới (một lần nữa)', - 'delete_your_account' => 'Xóa tài khoản của bạn', - 'delete_your_account_help' => 'Xóa tài khoản của bạn cũng sẽ xóa mọi tài khoản, giao dịch, anything bạn đã lưu vào Firefly III.', - 'delete_your_account_password' => 'Nhập mật khẩu của bạn để tiếp tục.', - 'password' => 'Mật khẩu', - 'are_you_sure' => 'Bạn có chắc không? Bạn không thể hoàn tác điều này.', - 'delete_account_button' => 'Xóa tài khoản của bạn', - 'invalid_current_password' => 'Mật khẩu hiện tại không hợp lệ!', - 'password_changed' => 'Mật khẩu đã được thay đổi!', - 'should_change' => 'Ý tưởng là thay đổi mật khẩu của bạn.', - 'invalid_password' => 'Mật khẩu không hợp lệ!', - 'what_is_pw_security' => '"Xác minh bảo mật mật khẩu" là gì?', - 'secure_pw_title' => 'Cách chọn mật khẩu an toàn', - 'forgot_password_response' => 'Cảm ơn bạn. Nếu tài khoản tồn tại với địa chỉ email này, bạn sẽ tìm thấy hướng dẫn trong hộp thư đến của mình.', - 'secure_pw_history' => 'Không có một tuần trôi qua mà bạn đọc trong tin tức về một trang web bị mất mật khẩu của người dùng. Tin tặc và kẻ trộm sử dụng các mật khẩu này để cố lấy cắp thông tin cá nhân của bạn. Thông tin này có giá trị.', - 'secure_pw_ff' => 'Bạn có sử dụng cùng một mật khẩu trên internet không? Nếu một trang web mất mật khẩu, tin tặc có quyền truy cập vào tất cả dữ liệu của bạn. Firefly III dựa vào bạn để chọn một mật khẩu mạnh và duy nhất để bảo vệ hồ sơ tài chính của bạn.', - 'secure_pw_check_box' => 'Để giúp bạn làm điều đó, Firefly III có thể kiểm tra xem mật khẩu bạn muốn sử dụng có bị đánh cắp trong quá khứ không. Nếu đây là trường hợp, Firefly III khuyên bạn KHÔNG nên sử dụng mật khẩu đó.', - 'secure_pw_working_title' => 'Làm thế nào nó hoạt động?', - 'secure_pw_working' => 'Bằng cách chọn hộp, Firefly III sẽ gửi năm ký tự đầu tiên của hàm băm SHA1 của mật khẩu của bạn tới trang web của Troy Hunt để xem nó có trong danh sách không. Điều này sẽ ngăn bạn sử dụng mật khẩu không an toàn như được khuyến nghị trong phần mới nhất Ấn phẩm đặc biệt của NIST về chủ đề này.', - 'secure_pw_should' => 'Tôi có nên check vào hộp không?', - 'secure_pw_long_password' => 'Đúng. Luôn xác minh mật khẩu của bạn an toàn.', - 'command_line_token' => 'Mã thông báo dòng lệnh', - 'explain_command_line_token' => 'Bạn cần token này để thực hiện các tùy chọn dòng lệnh, chẳng hạn như xuất dữ liệu. Không có nó, lệnh nhạy cảm đó sẽ không hoạt động. Không chia sẻ mã thông báo dòng lệnh của bạn. Không ai sẽ yêu cầu bạn cho mã thông báo này, ngay cả tôi. Nếu bạn sợ bạn mất thứ này, hãy tạo lại mã thông báo này bằng nút.', - 'regenerate_command_line_token' => 'Tạo lại mã thông báo dòng lệnh', - 'token_regenerated' => 'Một mã thông báo dòng lệnh mới đã được tạo', - 'change_your_email' => 'Thay đổi địa chỉ email của bạn', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => 'Cho đến khi bạn xác minh địa chỉ email của mình, bạn không thể đăng nhập.', - 'login_with_new_email' => 'Bây giờ bạn có thể đăng nhập bằng địa chỉ email mới của bạn.', - 'login_with_old_email' => 'Bây giờ bạn có thể đăng nhập lại với địa chỉ email cũ của bạn.', - 'login_provider_local_only' => 'Hành động này không khả dụng khi xác thực thông qua ": login_provider".', - 'external_user_mgt_disabled' => 'Hành động này không khả dụng khi Firefly III không chịu trách nhiệm quản lý người dùng hoặc xử lý xác thực.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => 'Vì Firefly III không chịu trách nhiệm quản lý người dùng hoặc xử lý xác thực, nên chức năng này sẽ chỉ xóa thông tin Firefly III cục bộ.', - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'Bạn đã không tạo ra bất kỳ OAuth clients nào.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Tên', - 'profile_oauth_client_secret' => 'Mã bí mật', - 'profile_oauth_create_new_client' => 'Tạo mới Client', - 'profile_oauth_create_client' => 'Tạo Client', - 'profile_oauth_edit_client' => 'Sửa Client', - 'profile_oauth_name_help' => 'Một cái gì đó người dùng của bạn sẽ nhận ra và tin tưởng.', - 'profile_oauth_redirect_url' => 'URL chuyển tiếp', - 'profile_oauth_redirect_url_help' => 'URL gọi lại ủy quyền của ứng dụng của bạn.', - 'profile_authorized_apps' => 'Uỷ quyền ứng dụng', - 'profile_authorized_clients' => 'Client ủy quyền', - 'profile_scopes' => 'Phạm vi', - 'profile_revoke' => 'Thu hồi', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Mã truy cập cá nhân', - 'profile_personal_access_token' => 'Mã truy cập cá nhân', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Đây là mã thông báo truy cập cá nhân mới của bạn. Đây là lần duy nhất nó sẽ được hiển thị vì vậy đừng đánh mất nó! Bây giờ bạn có thể sử dụng mã thông báo này để thực hiện API.', - 'profile_no_personal_access_token' => 'Bạn chưa tạo bất kỳ mã thông báo truy cập cá nhân nào.', - 'profile_create_new_token' => 'Tạo mã mới', - 'profile_create_token' => 'Tạo mã', - 'profile_create' => 'Tạo', - 'profile_save_changes' => 'Lưu thay đổi', - 'profile_whoops' => 'Rất tiếc!', - 'profile_something_wrong' => 'Có lỗi xảy ra!', - 'profile_try_again' => 'Xảy ra lỗi. Vui lòng thử lại.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Xóa TẤT CẢ ngân sách của bạn', + 'delete_all_categories' => 'Xóa TẤT CẢ danh mục của bạn', + 'delete_all_tags' => 'Xóa TẤT CẢ các nhãn của bạn', + 'delete_all_bills' => 'Xóa TẤT CẢ các hóa đơn của bạn', + 'delete_all_piggy_banks' => 'Xóa TẤT CẢ các ống heo của bạn', + 'delete_all_rules' => 'Xóa TẤT CẢ các luật của bạn', + 'delete_all_recurring' => 'Xóa TẤT CẢ các giao dịch định kỳ của bạn', + 'delete_all_object_groups' => 'Xóa TẤT CẢ các nhóm đối tượng của bạn', + 'delete_all_accounts' => 'Xóa TẤT CẢ các tài khoản của bạn', + 'delete_all_asset_accounts' => 'Xóa TẤT CẢ các tài khoản của bạn', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Xóa TẤT CẢ giao dịch của bạn', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'Tất cả ngân sách đã bị xóa', + 'deleted_all_categories' => 'Tất cả các danh mục đã bị xóa', + 'deleted_all_tags' => 'Tất cả các nhãn bị xóa', + 'deleted_all_bills' => 'Tất cả các hóa đơn đã được xóa', + 'deleted_all_piggy_banks' => 'Tất cả heo đất đã bị xóa', + 'deleted_all_rules' => 'Tất cả các quy tắc và nhóm quy tắc đã bị xóa', + 'deleted_all_object_groups' => 'Tất cả các nhóm đã bị xóa', + 'deleted_all_accounts' => 'Tất cả các tài khoản đã bị xóa', + 'deleted_all_asset_accounts' => 'Tất cả các tài khoản đã bị xóa', + 'deleted_all_expense_accounts' => 'Tất cả các tài khoản chi phí đã bị xóa', + 'deleted_all_revenue_accounts' => 'Tất cả các tài khoản doanh thu đã bị xóa', + 'deleted_all_liabilities' => 'Tất cả các khoản nợ đã được xóa', + 'deleted_all_transactions' => 'Tất cả các giao dịch đã bị xóa', + 'deleted_all_withdrawals' => 'Tất cả các lần rút tiền đã bị xóa', + 'deleted_all_deposits' => 'Tất cả các khoản tiền gửi đã bị xóa', + 'deleted_all_transfers' => 'Tất cả các chuyển khoản đã bị xóa', + 'deleted_all_recurring' => 'Tất cả các giao dịch định kỳ đã bị xóa', + 'change_your_password' => 'Thay đổi mật khẩu của bạn', + 'delete_account' => 'Xóa tài khoản', + 'current_password' => 'Mật khẩu hiện tại', + 'new_password' => 'Mật khẩu mới', + 'new_password_again' => 'Mật khẩu mới (một lần nữa)', + 'delete_your_account' => 'Xóa tài khoản của bạn', + 'delete_your_account_help' => 'Xóa tài khoản của bạn cũng sẽ xóa mọi tài khoản, giao dịch, anything bạn đã lưu vào Firefly III.', + 'delete_your_account_password' => 'Nhập mật khẩu của bạn để tiếp tục.', + 'password' => 'Mật khẩu', + 'are_you_sure' => 'Bạn có chắc không? Bạn không thể hoàn tác điều này.', + 'delete_account_button' => 'Xóa tài khoản của bạn', + 'invalid_current_password' => 'Mật khẩu hiện tại không hợp lệ!', + 'password_changed' => 'Mật khẩu đã được thay đổi!', + 'should_change' => 'Ý tưởng là thay đổi mật khẩu của bạn.', + 'invalid_password' => 'Mật khẩu không hợp lệ!', + 'what_is_pw_security' => '"Xác minh bảo mật mật khẩu" là gì?', + 'secure_pw_title' => 'Cách chọn mật khẩu an toàn', + 'forgot_password_response' => 'Cảm ơn bạn. Nếu tài khoản tồn tại với địa chỉ email này, bạn sẽ tìm thấy hướng dẫn trong hộp thư đến của mình.', + 'secure_pw_history' => 'Không có một tuần trôi qua mà bạn đọc trong tin tức về một trang web bị mất mật khẩu của người dùng. Tin tặc và kẻ trộm sử dụng các mật khẩu này để cố lấy cắp thông tin cá nhân của bạn. Thông tin này có giá trị.', + 'secure_pw_ff' => 'Bạn có sử dụng cùng một mật khẩu trên internet không? Nếu một trang web mất mật khẩu, tin tặc có quyền truy cập vào tất cả dữ liệu của bạn. Firefly III dựa vào bạn để chọn một mật khẩu mạnh và duy nhất để bảo vệ hồ sơ tài chính của bạn.', + 'secure_pw_check_box' => 'Để giúp bạn làm điều đó, Firefly III có thể kiểm tra xem mật khẩu bạn muốn sử dụng có bị đánh cắp trong quá khứ không. Nếu đây là trường hợp, Firefly III khuyên bạn KHÔNG nên sử dụng mật khẩu đó.', + 'secure_pw_working_title' => 'Làm thế nào nó hoạt động?', + 'secure_pw_working' => 'Bằng cách chọn hộp, Firefly III sẽ gửi năm ký tự đầu tiên của hàm băm SHA1 của mật khẩu của bạn tới trang web của Troy Hunt để xem nó có trong danh sách không. Điều này sẽ ngăn bạn sử dụng mật khẩu không an toàn như được khuyến nghị trong phần mới nhất Ấn phẩm đặc biệt của NIST về chủ đề này.', + 'secure_pw_should' => 'Tôi có nên check vào hộp không?', + 'secure_pw_long_password' => 'Đúng. Luôn xác minh mật khẩu của bạn an toàn.', + 'command_line_token' => 'Mã thông báo dòng lệnh', + 'explain_command_line_token' => 'Bạn cần token này để thực hiện các tùy chọn dòng lệnh, chẳng hạn như xuất dữ liệu. Không có nó, lệnh nhạy cảm đó sẽ không hoạt động. Không chia sẻ mã thông báo dòng lệnh của bạn. Không ai sẽ yêu cầu bạn cho mã thông báo này, ngay cả tôi. Nếu bạn sợ bạn mất thứ này, hãy tạo lại mã thông báo này bằng nút.', + 'regenerate_command_line_token' => 'Tạo lại mã thông báo dòng lệnh', + 'token_regenerated' => 'Một mã thông báo dòng lệnh mới đã được tạo', + 'change_your_email' => 'Thay đổi địa chỉ email của bạn', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => 'Cho đến khi bạn xác minh địa chỉ email của mình, bạn không thể đăng nhập.', + 'login_with_new_email' => 'Bây giờ bạn có thể đăng nhập bằng địa chỉ email mới của bạn.', + 'login_with_old_email' => 'Bây giờ bạn có thể đăng nhập lại với địa chỉ email cũ của bạn.', + 'login_provider_local_only' => 'Hành động này không khả dụng khi xác thực thông qua ": login_provider".', + 'external_user_mgt_disabled' => 'Hành động này không khả dụng khi Firefly III không chịu trách nhiệm quản lý người dùng hoặc xử lý xác thực.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => 'Vì Firefly III không chịu trách nhiệm quản lý người dùng hoặc xử lý xác thực, nên chức năng này sẽ chỉ xóa thông tin Firefly III cục bộ.', + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'Bạn đã không tạo ra bất kỳ OAuth clients nào.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Tên', + 'profile_oauth_client_secret' => 'Mã bí mật', + 'profile_oauth_create_new_client' => 'Tạo mới Client', + 'profile_oauth_create_client' => 'Tạo Client', + 'profile_oauth_edit_client' => 'Sửa Client', + 'profile_oauth_name_help' => 'Một cái gì đó người dùng của bạn sẽ nhận ra và tin tưởng.', + 'profile_oauth_redirect_url' => 'URL chuyển tiếp', + 'profile_oauth_redirect_url_help' => 'URL gọi lại ủy quyền của ứng dụng của bạn.', + 'profile_authorized_apps' => 'Uỷ quyền ứng dụng', + 'profile_authorized_clients' => 'Client ủy quyền', + 'profile_scopes' => 'Phạm vi', + 'profile_revoke' => 'Thu hồi', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Mã truy cập cá nhân', + 'profile_personal_access_token' => 'Mã truy cập cá nhân', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Đây là mã thông báo truy cập cá nhân mới của bạn. Đây là lần duy nhất nó sẽ được hiển thị vì vậy đừng đánh mất nó! Bây giờ bạn có thể sử dụng mã thông báo này để thực hiện API.', + 'profile_no_personal_access_token' => 'Bạn chưa tạo bất kỳ mã thông báo truy cập cá nhân nào.', + 'profile_create_new_token' => 'Tạo mã mới', + 'profile_create_token' => 'Tạo mã', + 'profile_create' => 'Tạo', + 'profile_save_changes' => 'Lưu thay đổi', + 'profile_whoops' => 'Rất tiếc!', + 'profile_something_wrong' => 'Có lỗi xảy ra!', + 'profile_try_again' => 'Xảy ra lỗi. Vui lòng thử lại.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Xuất dữ liệu từ Firefly III', - 'export_data_menu' => 'Xuất dữ liệu', - 'export_data_bc' => 'Xuất dữ liệu từ Firefly III', - 'export_data_main_title' => 'Xuất dữ liệu từ Firefly III', - 'export_data_expl' => 'Liên kết này cho phép bạn xuất tất cả các giao dịch + dữ liệu meta từ Firefly III. Vui lòng tham khảo trợ giúp (trên cùng bên phải (?) - biểu tượng) để biết thêm thông tin về quy trình.', - 'export_data_all_transactions' => 'Xuất tất cả các giao dịch', - 'export_data_advanced_expl' => 'Nếu bạn cần một kiểu xuất nâng cao hoặc cụ thể hơn, hãy đọc trợ giúp về cách sử dụng lệnh console php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Xuất dữ liệu từ Firefly III', + 'export_data_menu' => 'Xuất dữ liệu', + 'export_data_bc' => 'Xuất dữ liệu từ Firefly III', + 'export_data_main_title' => 'Xuất dữ liệu từ Firefly III', + 'export_data_expl' => 'Liên kết này cho phép bạn xuất tất cả các giao dịch + dữ liệu meta từ Firefly III. Vui lòng tham khảo trợ giúp (trên cùng bên phải (?) - biểu tượng) để biết thêm thông tin về quy trình.', + 'export_data_all_transactions' => 'Xuất tất cả các giao dịch', + 'export_data_advanced_expl' => 'Nếu bạn cần một kiểu xuất nâng cao hoặc cụ thể hơn, hãy đọc trợ giúp về cách sử dụng lệnh console php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => 'Một tệp đính kèm |: đếm tệp đính kèm', - 'attachments' => 'Tệp đính kèm', - 'edit_attachment' => 'Chỉnh sửa tập tin đính kèm ":name"', - 'update_attachment' => 'Cập nhật tệp đính kèm', - 'delete_attachment' => 'Xóa tệp đính kèm ":name"', - 'attachment_deleted' => 'Đã xóa tệp đính kèm ":name"', - 'liabilities_deleted' => 'Xóa nợ ":name"', - 'attachment_updated' => 'Cập nhật tệp đính kèm ":name"', - 'upload_max_file_size' => 'Kích thước tệp tối đa: :size', - 'list_all_attachments' => 'Danh sách tất cả các tệp đính kèm', + 'nr_of_attachments' => 'Một tệp đính kèm |: đếm tệp đính kèm', + 'attachments' => 'Tệp đính kèm', + 'edit_attachment' => 'Chỉnh sửa tập tin đính kèm ":name"', + 'update_attachment' => 'Cập nhật tệp đính kèm', + 'delete_attachment' => 'Xóa tệp đính kèm ":name"', + 'attachment_deleted' => 'Đã xóa tệp đính kèm ":name"', + 'liabilities_deleted' => 'Xóa nợ ":name"', + 'attachment_updated' => 'Cập nhật tệp đính kèm ":name"', + 'upload_max_file_size' => 'Kích thước tệp tối đa: :size', + 'list_all_attachments' => 'Danh sách tất cả các tệp đính kèm', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => 'Chi phí', - 'title_withdrawal' => 'Chi phí', - 'title_revenue' => 'Thu nhập doanh thu', - 'title_deposit' => 'Thu nhập doanh thu', - 'title_transfer' => 'Chuyển', - 'title_transfers' => 'Chuyển', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => 'Chi phí', + 'title_withdrawal' => 'Chi phí', + 'title_revenue' => 'Thu nhập doanh thu', + 'title_deposit' => 'Thu nhập doanh thu', + 'title_transfer' => 'Chuyển', + 'title_transfers' => 'Chuyển', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => 'Giao dịch này đã được rút tiền', - 'convert_is_already_type_Deposit' => 'Giao dịch này đã là một khoản tiền gửi', - 'convert_is_already_type_Transfer' => 'Giao dịch này đã được chuyển', - 'convert_to_Withdrawal' => 'Chuyển đôi ":description" thành rút tiền', - 'convert_to_Deposit' => 'Chuyển đôi ":description" thành gửi tiền', - 'convert_to_Transfer' => 'Chuyển đôi ":description" thành chuyển khoản', - 'convert_options_WithdrawalDeposit' => 'Chuyển đổi rút tiền thành tiền gửi', - 'convert_options_WithdrawalTransfer' => 'chuyển đổi rút tiền thành chuyển khoản', - 'convert_options_DepositTransfer' => 'Chuyển đôi tiền gửi thành chuyển khoản', - 'convert_options_DepositWithdrawal' => 'Chuyển đổi một khoản tiền gửi thành một khoản rút tiền', - 'convert_options_TransferWithdrawal' => 'Chuyển đổi chuyển khoản thành rút tiền', - 'convert_options_TransferDeposit' => 'Chuyển đổi chuyển khoản thành tiền gửi', - 'convert_Withdrawal_to_deposit' => 'Chuyển đổi khoản rút tiền thành tiền gửi', - 'convert_Withdrawal_to_transfer' => 'Chuyển đổi khoản rút tiền thành chuyển khoản', - 'convert_Deposit_to_withdrawal' => 'Chuyển đổi khoản tiền gửi thành một khoản rút tiền', - 'convert_Deposit_to_transfer' => 'Chuyển đổi khoản ký gửi thành chuyển khoản', - 'convert_Transfer_to_deposit' => 'Chuyển đổi chuyển khoản thành một khoản tiền gửi', - 'convert_Transfer_to_withdrawal' => 'Chuyển đổi chuyển khoản thành rút tiền', - 'convert_please_set_revenue_source' => 'Vui lòng chọn tài khoản doanh thu nơi tiền sẽ đến.', - 'convert_please_set_asset_destination' => 'Vui lòng chọn tài khoản nơi tiền sẽ đến.', - 'convert_please_set_expense_destination' => 'Vui lòng chọn tài khoản chi phí nơi tiền sẽ được chuyển đến.', - 'convert_please_set_asset_source' => 'Vui lòng chọn tài khoản nơi tiền sẽ đến.', - 'convert_expl_w_d' => 'Khi chuyển đổi từ rút tiền sang tiền gửi, tiền sẽ được gửi vào tài khoản đích được hiển thị, thay vì được rút từ đó. | Khi chuyển đổi từ rút tiền sang tiền gửi, tiền sẽ được gửi vào tài khoản đích được hiển thị, thay vì được rút từ họ.', - 'convert_expl_w_t' => 'Khi chuyển đổi rút tiền thành chuyển khoản, tiền sẽ được chuyển từ tài khoản nguồn sang tài khoản nợ hoặc tài khoản nợ khác thay vì được sử dụng cho tài khoản chi phí ban đầu. Khi chuyển đổi rút tiền thành chuyển khoản, tiền sẽ được chuyển đi từ các tài khoản nguồn vào các tài khoản tài sản hoặc nợ khác thay vì được sử dụng cho các tài khoản chi phí ban đầu.', - 'convert_expl_d_w' => 'Khi chuyển đổi một khoản tiền gửi thành một khoản rút tiền, tiền sẽ được rút từ tài khoản nguồn được hiển thị, thay vì được gửi vào đó. Khi chuyển đổi một khoản tiền gửi thành một khoản rút tiền, tiền sẽ được rút từ các tài khoản nguồn được hiển thị, thay vì được gửi vào chúng.', - 'convert_expl_d_t' => 'Khi bạn chuyển đổi tiền gửi thành chuyển khoản, tiền sẽ được gửi vào tài khoản đích được liệt kê từ bất kỳ tài khoản hoặc tài khoản nợ nào của bạn. Khi bạn chuyển đổi tiền gửi thành chuyển khoản, tiền sẽ được gửi vào tài khoản đích được liệt kê từ bất kỳ tài sản hoặc tài khoản nợ của bạn.', - 'convert_expl_t_w' => 'Khi bạn chuyển đổi chuyển khoản thành rút tiền, tiền sẽ được sử dụng cho tài khoản đích bạn đặt ở đây, thay vì được chuyển đi. Khi bạn chuyển đổi chuyển khoản thành rút tiền, tiền sẽ được sử dụng cho các tài khoản đích bạn đặt tại đây, thay vì bị chuyển đi.', - 'convert_expl_t_d' => 'Khi bạn chuyển đổi chuyển khoản thành tiền gửi, tiền sẽ được gửi vào tài khoản đích bạn thấy ở đây, thay vì được chuyển vào đó. Khi bạn chuyển đổi chuyển khoản thành tiền gửi, tiền sẽ được gửi vào tài khoản đích bạn thấy ở đây, thay vì được chuyển vào chúng.', - 'convert_select_sources' => 'Để hoàn thành chuyển đổi, vui lòng đặt tài khoản nguồn mới bên dưới. Để hoàn thành chuyển đổi, vui lòng đặt các tài khoản nguồn mới bên dưới.', - 'convert_select_destinations' => 'Để hoàn thành chuyển đổi, vui lòng chọn tài khoản đích mới bên dưới. Để hoàn thành chuyển đổi, vui lòng chọn các tài khoản đích mới bên dưới.', - 'converted_to_Withdrawal' => 'Giao dịch đã được chuyển đổi thành rút tiền', - 'converted_to_Deposit' => 'Giao dịch đã được chuyển đổi thành tiền gửi', - 'converted_to_Transfer' => 'Giao dịch đã được chuyển đổi thành chuyển khoản', - 'invalid_convert_selection' => 'Tài khoản bạn đã chọn đã được sử dụng trong giao dịch này hoặc không tồn tại.', - 'source_or_dest_invalid' => 'Không thể tìm thấy các chi tiết giao dịch chính xác. Chuyển đổi là không thể.', - 'convert_to_withdrawal' => 'Chuyển đổi thành rút tiền', - 'convert_to_deposit' => 'Chuyển đổi thành tiền gửi', - 'convert_to_transfer' => 'Chuyển đổi sang chuyển khoản', + 'convert_is_already_type_Withdrawal' => 'Giao dịch này đã được rút tiền', + 'convert_is_already_type_Deposit' => 'Giao dịch này đã là một khoản tiền gửi', + 'convert_is_already_type_Transfer' => 'Giao dịch này đã được chuyển', + 'convert_to_Withdrawal' => 'Chuyển đôi ":description" thành rút tiền', + 'convert_to_Deposit' => 'Chuyển đôi ":description" thành gửi tiền', + 'convert_to_Transfer' => 'Chuyển đôi ":description" thành chuyển khoản', + 'convert_options_WithdrawalDeposit' => 'Chuyển đổi rút tiền thành tiền gửi', + 'convert_options_WithdrawalTransfer' => 'chuyển đổi rút tiền thành chuyển khoản', + 'convert_options_DepositTransfer' => 'Chuyển đôi tiền gửi thành chuyển khoản', + 'convert_options_DepositWithdrawal' => 'Chuyển đổi một khoản tiền gửi thành một khoản rút tiền', + 'convert_options_TransferWithdrawal' => 'Chuyển đổi chuyển khoản thành rút tiền', + 'convert_options_TransferDeposit' => 'Chuyển đổi chuyển khoản thành tiền gửi', + 'convert_Withdrawal_to_deposit' => 'Chuyển đổi khoản rút tiền thành tiền gửi', + 'convert_Withdrawal_to_transfer' => 'Chuyển đổi khoản rút tiền thành chuyển khoản', + 'convert_Deposit_to_withdrawal' => 'Chuyển đổi khoản tiền gửi thành một khoản rút tiền', + 'convert_Deposit_to_transfer' => 'Chuyển đổi khoản ký gửi thành chuyển khoản', + 'convert_Transfer_to_deposit' => 'Chuyển đổi chuyển khoản thành một khoản tiền gửi', + 'convert_Transfer_to_withdrawal' => 'Chuyển đổi chuyển khoản thành rút tiền', + 'convert_please_set_revenue_source' => 'Vui lòng chọn tài khoản doanh thu nơi tiền sẽ đến.', + 'convert_please_set_asset_destination' => 'Vui lòng chọn tài khoản nơi tiền sẽ đến.', + 'convert_please_set_expense_destination' => 'Vui lòng chọn tài khoản chi phí nơi tiền sẽ được chuyển đến.', + 'convert_please_set_asset_source' => 'Vui lòng chọn tài khoản nơi tiền sẽ đến.', + 'convert_expl_w_d' => 'Khi chuyển đổi từ rút tiền sang tiền gửi, tiền sẽ được gửi vào tài khoản đích được hiển thị, thay vì được rút từ đó. | Khi chuyển đổi từ rút tiền sang tiền gửi, tiền sẽ được gửi vào tài khoản đích được hiển thị, thay vì được rút từ họ.', + 'convert_expl_w_t' => 'Khi chuyển đổi rút tiền thành chuyển khoản, tiền sẽ được chuyển từ tài khoản nguồn sang tài khoản nợ hoặc tài khoản nợ khác thay vì được sử dụng cho tài khoản chi phí ban đầu. Khi chuyển đổi rút tiền thành chuyển khoản, tiền sẽ được chuyển đi từ các tài khoản nguồn vào các tài khoản tài sản hoặc nợ khác thay vì được sử dụng cho các tài khoản chi phí ban đầu.', + 'convert_expl_d_w' => 'Khi chuyển đổi một khoản tiền gửi thành một khoản rút tiền, tiền sẽ được rút từ tài khoản nguồn được hiển thị, thay vì được gửi vào đó. Khi chuyển đổi một khoản tiền gửi thành một khoản rút tiền, tiền sẽ được rút từ các tài khoản nguồn được hiển thị, thay vì được gửi vào chúng.', + 'convert_expl_d_t' => 'Khi bạn chuyển đổi tiền gửi thành chuyển khoản, tiền sẽ được gửi vào tài khoản đích được liệt kê từ bất kỳ tài khoản hoặc tài khoản nợ nào của bạn. Khi bạn chuyển đổi tiền gửi thành chuyển khoản, tiền sẽ được gửi vào tài khoản đích được liệt kê từ bất kỳ tài sản hoặc tài khoản nợ của bạn.', + 'convert_expl_t_w' => 'Khi bạn chuyển đổi chuyển khoản thành rút tiền, tiền sẽ được sử dụng cho tài khoản đích bạn đặt ở đây, thay vì được chuyển đi. Khi bạn chuyển đổi chuyển khoản thành rút tiền, tiền sẽ được sử dụng cho các tài khoản đích bạn đặt tại đây, thay vì bị chuyển đi.', + 'convert_expl_t_d' => 'Khi bạn chuyển đổi chuyển khoản thành tiền gửi, tiền sẽ được gửi vào tài khoản đích bạn thấy ở đây, thay vì được chuyển vào đó. Khi bạn chuyển đổi chuyển khoản thành tiền gửi, tiền sẽ được gửi vào tài khoản đích bạn thấy ở đây, thay vì được chuyển vào chúng.', + 'convert_select_sources' => 'Để hoàn thành chuyển đổi, vui lòng đặt tài khoản nguồn mới bên dưới. Để hoàn thành chuyển đổi, vui lòng đặt các tài khoản nguồn mới bên dưới.', + 'convert_select_destinations' => 'Để hoàn thành chuyển đổi, vui lòng chọn tài khoản đích mới bên dưới. Để hoàn thành chuyển đổi, vui lòng chọn các tài khoản đích mới bên dưới.', + 'converted_to_Withdrawal' => 'Giao dịch đã được chuyển đổi thành rút tiền', + 'converted_to_Deposit' => 'Giao dịch đã được chuyển đổi thành tiền gửi', + 'converted_to_Transfer' => 'Giao dịch đã được chuyển đổi thành chuyển khoản', + 'invalid_convert_selection' => 'Tài khoản bạn đã chọn đã được sử dụng trong giao dịch này hoặc không tồn tại.', + 'source_or_dest_invalid' => 'Không thể tìm thấy các chi tiết giao dịch chính xác. Chuyển đổi là không thể.', + 'convert_to_withdrawal' => 'Chuyển đổi thành rút tiền', + 'convert_to_deposit' => 'Chuyển đổi thành tiền gửi', + 'convert_to_transfer' => 'Chuyển đổi sang chuyển khoản', // create new stuff: - 'create_new_withdrawal' => 'Tạo rút tiền mới', - 'create_new_deposit' => 'Tạo tiền gửi mới', - 'create_new_transfer' => 'Tạo chuyển khoản mới', - 'create_new_asset' => 'Tạo tài khoản mới', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => 'Tạo tài khoản chi phí mới', - 'create_new_revenue' => 'Tạo tài khoản doanh thu mới', - 'create_new_piggy_bank' => 'Tạo heo đất mới', - 'create_new_bill' => 'Tạo hóa đơn mới', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => 'Tạo rút tiền mới', + 'create_new_deposit' => 'Tạo tiền gửi mới', + 'create_new_transfer' => 'Tạo chuyển khoản mới', + 'create_new_asset' => 'Tạo tài khoản mới', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => 'Tạo tài khoản chi phí mới', + 'create_new_revenue' => 'Tạo tài khoản doanh thu mới', + 'create_new_piggy_bank' => 'Tạo heo đất mới', + 'create_new_bill' => 'Tạo hóa đơn mới', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => 'Tạo một loại tiền tệ mới', - 'store_currency' => 'Lưu trữ tiền tệ mới', - 'update_currency' => 'Cập nhật tiền tệ', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => 'Không thể xóa: vì nó vẫn đang được sử dụng.', - 'cannot_delete_fallback_currency' => ':name là loại tiền dự phòng hệ thống và không thể xóa.', - 'cannot_disable_currency_journals' => 'Không thể tắt: vì các giao dịch vẫn đang sử dụng nó.', - 'cannot_disable_currency_last_left' => 'Không thể tắt: vì đây là loại tiền được kích hoạt lần cuối.', - 'cannot_disable_currency_account_meta' => 'Không thể tắt: vì nó được sử dụng trong tài khoản.', - 'cannot_disable_currency_bills' => 'Không thể vô hiệu hóa: tên vì nó được sử dụng trong các hóa đơn.', - 'cannot_disable_currency_recurring' => 'Không thể tắt: vì nó được sử dụng trong các giao dịch định kỳ.', - 'cannot_disable_currency_available_budgets' => 'Không thể tắt: vì nó được sử dụng trong ngân sách có sẵn.', - 'cannot_disable_currency_budget_limits' => 'Không thể tắt: vì nó được sử dụng trong giới hạn ngân sách.', - 'cannot_disable_currency_current_default' => 'Không thể tắt: vì đây là loại tiền mặc định hiện tại.', - 'cannot_disable_currency_system_fallback' => 'Không thể tắt: vì đây là loại tiền mặc định của hệ thống.', - 'disable_EUR_side_effects' => 'Euro là tiền tệ dự phòng khẩn cấp của hệ thống. Vô hiệu hóa nó có thể có tác dụng phụ ngoài ý muốn và có thể làm mất hiệu lực bảo hành của bạn.', - 'deleted_currency' => 'Tiền tệ :name đã xóa', - 'created_currency' => 'Tiền tệ :name được tạo', - 'could_not_store_currency' => 'Không thể lưu trữ tiền tệ mới.', - 'updated_currency' => 'Tiền tệ :name được cập nhật', - 'ask_site_owner' => 'Vui lòng hỏi :owner để thêm, xóa hoặc chỉnh sửa tiền tệ.', - 'currencies_intro' => 'Firefly III hỗ trợ nhiều loại tiền tệ khác nhau mà bạn có thể đặt và kích hoạt tại đây.', - 'make_default_currency' => 'Đặt làm mặc định', - 'default_currency' => 'mặc định', - 'currency_is_disabled' => 'Tắt', - 'enable_currency' => 'Kích hoạt', - 'disable_currency' => 'Tắt', - 'currencies_default_disabled' => 'Hầu hết các loại tiền tệ này bị tắt theo mặc định. Để sử dụng chúng, bạn phải kích hoạt chúng trước.', - 'currency_is_now_enabled' => 'Tiền tệ ":name" đã được kích hoạt', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => 'Tiền tệ ":name" đã được tắt', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => 'Tạo một loại tiền tệ mới', + 'store_currency' => 'Lưu trữ tiền tệ mới', + 'update_currency' => 'Cập nhật tiền tệ', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => 'Không thể xóa: vì nó vẫn đang được sử dụng.', + 'cannot_delete_fallback_currency' => ':name là loại tiền dự phòng hệ thống và không thể xóa.', + 'cannot_disable_currency_journals' => 'Không thể tắt: vì các giao dịch vẫn đang sử dụng nó.', + 'cannot_disable_currency_last_left' => 'Không thể tắt: vì đây là loại tiền được kích hoạt lần cuối.', + 'cannot_disable_currency_account_meta' => 'Không thể tắt: vì nó được sử dụng trong tài khoản.', + 'cannot_disable_currency_bills' => 'Không thể vô hiệu hóa: tên vì nó được sử dụng trong các hóa đơn.', + 'cannot_disable_currency_recurring' => 'Không thể tắt: vì nó được sử dụng trong các giao dịch định kỳ.', + 'cannot_disable_currency_available_budgets' => 'Không thể tắt: vì nó được sử dụng trong ngân sách có sẵn.', + 'cannot_disable_currency_budget_limits' => 'Không thể tắt: vì nó được sử dụng trong giới hạn ngân sách.', + 'cannot_disable_currency_current_default' => 'Không thể tắt: vì đây là loại tiền mặc định hiện tại.', + 'cannot_disable_currency_system_fallback' => 'Không thể tắt: vì đây là loại tiền mặc định của hệ thống.', + 'disable_EUR_side_effects' => 'Euro là tiền tệ dự phòng khẩn cấp của hệ thống. Vô hiệu hóa nó có thể có tác dụng phụ ngoài ý muốn và có thể làm mất hiệu lực bảo hành của bạn.', + 'deleted_currency' => 'Tiền tệ :name đã xóa', + 'created_currency' => 'Tiền tệ :name được tạo', + 'could_not_store_currency' => 'Không thể lưu trữ tiền tệ mới.', + 'updated_currency' => 'Tiền tệ :name được cập nhật', + 'ask_site_owner' => 'Vui lòng hỏi :owner để thêm, xóa hoặc chỉnh sửa tiền tệ.', + 'currencies_intro' => 'Firefly III hỗ trợ nhiều loại tiền tệ khác nhau mà bạn có thể đặt và kích hoạt tại đây.', + 'make_default_currency' => 'Đặt làm mặc định', + 'default_currency' => 'mặc định', + 'currency_is_disabled' => 'Tắt', + 'enable_currency' => 'Kích hoạt', + 'disable_currency' => 'Tắt', + 'currencies_default_disabled' => 'Hầu hết các loại tiền tệ này bị tắt theo mặc định. Để sử dụng chúng, bạn phải kích hoạt chúng trước.', + 'currency_is_now_enabled' => 'Tiền tệ ":name" đã được kích hoạt', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => 'Tiền tệ ":name" đã được tắt', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => 'Các trường bắt buộc', - 'optionalFields' => 'Các trường tùy chọn', - 'options' => 'Tùy chọn', + 'mandatoryFields' => 'Các trường bắt buộc', + 'optionalFields' => 'Các trường tùy chọn', + 'options' => 'Tùy chọn', // budgets: - 'daily_budgets' => 'Ngân sách hàng ngày', - 'weekly_budgets' => 'Ngân sách hàng tuần', - 'monthly_budgets' => 'Ngân sách hàng tháng', - 'quarterly_budgets' => 'Ngân sách hàng quý', - 'half_year_budgets' => 'Ngân sách nửa năm', - 'yearly_budgets' => 'Ngân sách hàng năm', - 'other_budgets' => 'Ngân sách theo thời gian tùy chỉnh', - 'budget_limit_not_in_range' => 'Số tiền này áp dụng từ :start đến :end:', - 'total_available_budget' => 'Tổng ngân sách có sẵn (giữa :start và :end)', - 'total_available_budget_in_currency' => 'Tổng ngân sách có sẵn bằng: tiền tệ', - 'see_below' => 'xem bên dưới', - 'create_new_budget' => 'Tạo ngân sách mới', - 'store_new_budget' => 'Lưu trữ ngân sách mới', - 'stored_new_budget' => 'Lưu trữ ngân sách mới... ":name"', - 'available_between' => 'Có sẵn giữa: bắt đầu và: kết thúc', - 'transactionsWithoutBudget' => 'Chi phí không có ngân sách', - 'transactions_no_budget' => 'Chi phí không có ngân sách giữa :start và :end', - 'spent_between' => 'Đã dành giữa :start và :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Đặt số lượng có sẵn', - 'update_available_amount' => 'Cập nhật số tiền hiện có', - 'ab_basic_modal_explain' => 'Sử dụng biểu mẫu này để cho biết số tiền bạn mong đợi có thể dự trù ngân sách (tổng cộng, bằng :currency) trong khoảng thời gian được chỉ định.', - 'createBudget' => 'Ngân sách mới', - 'invalid_currency' => 'Đây là một loại tiền tệ không hợp lệ', - 'invalid_amount' => 'Xin hãy nhập một số tiền', - 'set_ab' => 'Số tiền ngân sách có sẵn đã được đặt', - 'updated_ab' => 'Số tiền ngân sách có sẵn đã được cập nhật', - 'deleted_ab' => 'Số tiền ngân sách có sẵn đã bị xóa', - 'deleted_bl' => 'Số tiền ngân sách đã bị xóa', - 'alt_currency_ab_create' => 'Đặt ngân sách có sẵn bằng loại tiền khác', - 'bl_create_btn' => 'Đặt ngân sách bằng loại tiền khác', - 'inactiveBudgets' => 'Ngân sách không hoạt động', - 'without_budget_between' => 'Giao dịch không có ngân sách giữa: bắt đầu và: kết thúc', - 'delete_budget' => 'Xóa ngân sách ":name"', - 'deleted_budget' => 'Đã xóa ngân sách ":name"', - 'edit_budget' => 'Chỉnh sửa ngân sách ":name"', - 'updated_budget' => 'Đã cập nhật ngân sách ":name"', - 'update_amount' => 'Cập nhật số tiền', - 'update_budget' => 'Cập nhật ngân sách', - 'update_budget_amount_range' => 'Cập nhật (dự kiến) số tiền khả dụng giữa: bắt đầu và: kết thúc', - 'set_budget_limit_title' => 'Đặt số tiền được dự toán cho ngân sách: ngân sách giữa: bắt đầu và: kết thúc', - 'set_budget_limit' => 'Đặt số tiền ngân sách', - 'budget_period_navigator' => 'Điều hướng thời gian', - 'info_on_available_amount' => 'Tôi có sẵn cái gì?', - 'available_amount_indication' => 'Sử dụng những số tiền này để có được một dấu hiệu về tổng ngân sách của bạn có thể là bao nhiêu.', - 'suggested' => 'Đề xuất', - 'average_between' => 'Trung bình giữa :start và :end', - 'transferred_in' => 'Đã chuyển (vào)', - 'transferred_away' => 'Đã chuyển (ra)', - 'auto_budget_none' => ' Không có ngân sách tự động', - 'auto_budget_reset' => 'Đặt số tiền cố định mỗi kỳ', - 'auto_budget_rollover' => 'Thêm một số tiền mỗi kỳ', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Hàng ngày', - 'auto_budget_period_weekly' => 'Hàng tuần', - 'auto_budget_period_monthly' => 'Hàng tháng', - 'auto_budget_period_quarterly' => 'Hàng quý', - 'auto_budget_period_half_year' => 'Mỗi nửa năm', - 'auto_budget_period_yearly' => 'Hàng năm', - 'auto_budget_help' => 'Bạn có thể đọc thêm về tính năng này trong trợ giúp. Nhấp vào biểu tượng trên cùng bên phải (?).', - 'auto_budget_reset_icon' => 'Ngân sách này sẽ được đặt định kỳ', - 'auto_budget_rollover_icon' => 'Số tiền ngân sách sẽ tăng theo định kỳ', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Xóa số tiền ngân sách trong :currency', + 'daily_budgets' => 'Ngân sách hàng ngày', + 'weekly_budgets' => 'Ngân sách hàng tuần', + 'monthly_budgets' => 'Ngân sách hàng tháng', + 'quarterly_budgets' => 'Ngân sách hàng quý', + 'half_year_budgets' => 'Ngân sách nửa năm', + 'yearly_budgets' => 'Ngân sách hàng năm', + 'other_budgets' => 'Ngân sách theo thời gian tùy chỉnh', + 'budget_limit_not_in_range' => 'Số tiền này áp dụng từ :start đến :end:', + 'total_available_budget' => 'Tổng ngân sách có sẵn (giữa :start và :end)', + 'total_available_budget_in_currency' => 'Tổng ngân sách có sẵn bằng: tiền tệ', + 'see_below' => 'xem bên dưới', + 'create_new_budget' => 'Tạo ngân sách mới', + 'store_new_budget' => 'Lưu trữ ngân sách mới', + 'stored_new_budget' => 'Lưu trữ ngân sách mới... ":name"', + 'available_between' => 'Có sẵn giữa: bắt đầu và: kết thúc', + 'transactionsWithoutBudget' => 'Chi phí không có ngân sách', + 'transactions_no_budget' => 'Chi phí không có ngân sách giữa :start và :end', + 'spent_between' => 'Đã dành giữa :start và :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Đặt số lượng có sẵn', + 'update_available_amount' => 'Cập nhật số tiền hiện có', + 'ab_basic_modal_explain' => 'Sử dụng biểu mẫu này để cho biết số tiền bạn mong đợi có thể dự trù ngân sách (tổng cộng, bằng :currency) trong khoảng thời gian được chỉ định.', + 'createBudget' => 'Ngân sách mới', + 'invalid_currency' => 'Đây là một loại tiền tệ không hợp lệ', + 'invalid_amount' => 'Xin hãy nhập một số tiền', + 'set_ab' => 'Số tiền ngân sách có sẵn đã được đặt', + 'updated_ab' => 'Số tiền ngân sách có sẵn đã được cập nhật', + 'deleted_ab' => 'Số tiền ngân sách có sẵn đã bị xóa', + 'deleted_bl' => 'Số tiền ngân sách đã bị xóa', + 'alt_currency_ab_create' => 'Đặt ngân sách có sẵn bằng loại tiền khác', + 'bl_create_btn' => 'Đặt ngân sách bằng loại tiền khác', + 'inactiveBudgets' => 'Ngân sách không hoạt động', + 'without_budget_between' => 'Giao dịch không có ngân sách giữa: bắt đầu và: kết thúc', + 'delete_budget' => 'Xóa ngân sách ":name"', + 'deleted_budget' => 'Đã xóa ngân sách ":name"', + 'edit_budget' => 'Chỉnh sửa ngân sách ":name"', + 'updated_budget' => 'Đã cập nhật ngân sách ":name"', + 'update_amount' => 'Cập nhật số tiền', + 'update_budget' => 'Cập nhật ngân sách', + 'update_budget_amount_range' => 'Cập nhật (dự kiến) số tiền khả dụng giữa: bắt đầu và: kết thúc', + 'set_budget_limit_title' => 'Đặt số tiền được dự toán cho ngân sách: ngân sách giữa: bắt đầu và: kết thúc', + 'set_budget_limit' => 'Đặt số tiền ngân sách', + 'budget_period_navigator' => 'Điều hướng thời gian', + 'info_on_available_amount' => 'Tôi có sẵn cái gì?', + 'available_amount_indication' => 'Sử dụng những số tiền này để có được một dấu hiệu về tổng ngân sách của bạn có thể là bao nhiêu.', + 'suggested' => 'Đề xuất', + 'average_between' => 'Trung bình giữa :start và :end', + 'transferred_in' => 'Đã chuyển (vào)', + 'transferred_away' => 'Đã chuyển (ra)', + 'auto_budget_none' => ' Không có ngân sách tự động', + 'auto_budget_reset' => 'Đặt số tiền cố định mỗi kỳ', + 'auto_budget_rollover' => 'Thêm một số tiền mỗi kỳ', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Hàng ngày', + 'auto_budget_period_weekly' => 'Hàng tuần', + 'auto_budget_period_monthly' => 'Hàng tháng', + 'auto_budget_period_quarterly' => 'Hàng quý', + 'auto_budget_period_half_year' => 'Mỗi nửa năm', + 'auto_budget_period_yearly' => 'Hàng năm', + 'auto_budget_help' => 'Bạn có thể đọc thêm về tính năng này trong trợ giúp. Nhấp vào biểu tượng trên cùng bên phải (?).', + 'auto_budget_reset_icon' => 'Ngân sách này sẽ được đặt định kỳ', + 'auto_budget_rollover_icon' => 'Số tiền ngân sách sẽ tăng theo định kỳ', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Xóa số tiền ngân sách trong :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Không mong đợi ở giai đoạn này', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Không (chưa)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => 'Hóa đơn khớp với các giao dịch giữa: thấp và: cao.', - 'running_again_loss' => 'Các giao dịch được liên kết trước đây với hóa đơn này có thể mất kết nối, nếu chúng (không còn) khớp với (các) quy tắc.', - 'bill_related_rules' => 'Các quy tắc liên quan đến dự luật này', - 'repeats' => 'Lặp lại', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => 'Giao dịch được kết nối', - 'auto_match_on' => 'Tự động khớp với Firefly III', - 'auto_match_off' => 'Không tự động khớp với Firefly III', - 'next_expected_match' => 'Trận đấu dự kiến tiếp theo', - 'delete_bill' => 'Xóa hóa đơn ":name"', - 'deleted_bill' => 'Đã xóa hóa đơn ":name"', - 'edit_bill' => 'Chỉnh sửa hóa đơn ":name"', - 'more' => 'Nhiều hơn', - 'rescan_old' => 'Chạy lại quy tắc, trên tất cả các giao dịch', - 'update_bill' => 'Cập nhật hóa đơn', - 'updated_bill' => 'Đã cập nhật hóa đơn ":name"', - 'store_new_bill' => 'Lưu trữ hóa đơn mới', - 'stored_new_bill' => 'Hóa đơn mới được lưu trữ ":name"', - 'cannot_scan_inactive_bill' => 'Hóa đơn không hoạt động không thể quét.', - 'rescanned_bill' => 'Đã giải quyết mọi thứ và được liên kết :count giao dịch vào hóa đơn. Đã giải quyết mọi thứ và được liên kết :count giao dịch vào hóa đơn.', - 'average_bill_amount_year' => 'Số tiền hóa đơn trung bình (:year)', - 'average_bill_amount_overall' => 'Số tiền hóa đơn trung bình (tổng thể)', - 'bill_is_active' => 'Bill đang hoạt động', - 'bill_expected_between' => 'Dự kiến giữa :start và :end', - 'bill_will_automatch' => 'Bill sẽ tự động liên kết với các giao dịch', - 'skips_over' => 'bỏ qua', - 'bill_store_error' => 'Một lỗi không mong muốn đã xảy ra trong khi lưu trữ hóa đơn mới của bạn. Vui lòng kiểm tra các tệp nhật ký', - 'list_inactive_rule' => 'quy tắc không hoạt động', - 'bill_edit_rules' => 'Firefly III cũng sẽ cố gắng chỉnh sửa quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì. | Firefly III cũng sẽ cố gắng chỉnh sửa :count các quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa các quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì.', - 'bill_expected_date' => 'Ngày đáo hạn :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Lặp lại hàng tuần', - 'bill_repeats_monthly' => 'Lặp lại hàng tháng', - 'bill_repeats_quarterly' => 'Lặp lại hàng quý', - 'bill_repeats_half-year' => 'Lặp lại mỗi nửa năm', - 'bill_repeats_yearly' => 'Lặp lại hàng năm', - 'bill_repeats_weekly_other' => 'Lặp lại các tuần một lần', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Không mong đợi ở giai đoạn này', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Không (chưa)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => 'Hóa đơn khớp với các giao dịch giữa: thấp và: cao.', + 'running_again_loss' => 'Các giao dịch được liên kết trước đây với hóa đơn này có thể mất kết nối, nếu chúng (không còn) khớp với (các) quy tắc.', + 'bill_related_rules' => 'Các quy tắc liên quan đến dự luật này', + 'repeats' => 'Lặp lại', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => 'Giao dịch được kết nối', + 'auto_match_on' => 'Tự động khớp với Firefly III', + 'auto_match_off' => 'Không tự động khớp với Firefly III', + 'next_expected_match' => 'Trận đấu dự kiến tiếp theo', + 'delete_bill' => 'Xóa hóa đơn ":name"', + 'deleted_bill' => 'Đã xóa hóa đơn ":name"', + 'edit_bill' => 'Chỉnh sửa hóa đơn ":name"', + 'more' => 'Nhiều hơn', + 'rescan_old' => 'Chạy lại quy tắc, trên tất cả các giao dịch', + 'update_bill' => 'Cập nhật hóa đơn', + 'updated_bill' => 'Đã cập nhật hóa đơn ":name"', + 'store_new_bill' => 'Lưu trữ hóa đơn mới', + 'stored_new_bill' => 'Hóa đơn mới được lưu trữ ":name"', + 'cannot_scan_inactive_bill' => 'Hóa đơn không hoạt động không thể quét.', + 'rescanned_bill' => 'Đã giải quyết mọi thứ và được liên kết :count giao dịch vào hóa đơn. Đã giải quyết mọi thứ và được liên kết :count giao dịch vào hóa đơn.', + 'average_bill_amount_year' => 'Số tiền hóa đơn trung bình (:year)', + 'average_bill_amount_overall' => 'Số tiền hóa đơn trung bình (tổng thể)', + 'bill_is_active' => 'Bill đang hoạt động', + 'bill_expected_between' => 'Dự kiến giữa :start và :end', + 'bill_will_automatch' => 'Bill sẽ tự động liên kết với các giao dịch', + 'skips_over' => 'bỏ qua', + 'bill_store_error' => 'Một lỗi không mong muốn đã xảy ra trong khi lưu trữ hóa đơn mới của bạn. Vui lòng kiểm tra các tệp nhật ký', + 'list_inactive_rule' => 'quy tắc không hoạt động', + 'bill_edit_rules' => 'Firefly III cũng sẽ cố gắng chỉnh sửa quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì. | Firefly III cũng sẽ cố gắng chỉnh sửa :count các quy tắc liên quan đến dự luật này. Tuy nhiên, nếu bạn đã tự chỉnh sửa các quy tắc này, Firefly III sẽ không thay đổi bất cứ điều gì.', + 'bill_expected_date' => 'Ngày đáo hạn :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Lặp lại hàng tuần', + 'bill_repeats_monthly' => 'Lặp lại hàng tháng', + 'bill_repeats_quarterly' => 'Lặp lại hàng quý', + 'bill_repeats_half-year' => 'Lặp lại mỗi nửa năm', + 'bill_repeats_yearly' => 'Lặp lại hàng năm', + 'bill_repeats_weekly_other' => 'Lặp lại các tuần một lần', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'Tôi đang nợ số tiền', - 'i_owe_amount' => 'Tôi nợ số tiền', - 'inactive_account_link' => 'Bạn có :count tài khoản không hoạt động (được lưu trữ) mà bạn có thể xem trên trang này. Bạn có :count tài khoản không hoạt động (đã lưu trữ) mà bạn có thể xem trên trang này.', - 'all_accounts_inactive' => 'Đây là những tài khoản không hoạt động của bạn.', - 'active_account_link' => 'Liên kết này quay lại tài khoản đang hoạt động của bạn.', - 'account_missing_transaction' => 'Tài khoản #: id (": name") không thể được xem trực tiếp, nhưng Firefly thiếu thông tin chuyển hướng.', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => 'Chi tiết cho tài khoản ":name"', - 'details_for_expense' => 'Chi tiết tài khoản chi phí ":name"', - 'details_for_revenue' => 'Chi tiết cho tài khoản doanh thu ":name"', - 'details_for_cash' => 'Chi tiết cho tài khoản tiền mặt ":name"', - 'store_new_asset_account' => 'Lưu trữ tài khoản mới', - 'store_new_expense_account' => 'Lưu trữ tài khoản chi phí mới', - 'store_new_revenue_account' => 'Lưu trữ tài khoản doanh thu mới', - 'edit_asset_account' => 'Chỉnh sửa tài khoản ":name"', - 'edit_expense_account' => 'Chỉnh sửa tài khoản chi phí ":name"', - 'edit_revenue_account' => 'Chỉnh sửa tài khoản doanh thu ":name"', - 'delete_asset_account' => 'Xóa tài khoản ":name"', - 'delete_expense_account' => 'Xóa tài khoản chi phí ":name"', - 'delete_revenue_account' => 'Xóa tài khoản doanh thu ":name"', - 'delete_liabilities_account' => 'Xóa tài khoản nợ ":name"', - 'asset_deleted' => 'Thành công tài khoản bị xóa ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => 'Thành công xóa tài khoản chi phí ":name"', - 'revenue_deleted' => 'Thành công xóa tài khoản doanh thu ":name"', - 'update_asset_account' => 'Cập nhật tài khoản', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => 'Cập nhật nợ', - 'update_expense_account' => 'Cập nhật tài khoản chi phí', - 'update_revenue_account' => 'Cập nhật tài khoản doanh thu', - 'make_new_asset_account' => 'Tạo một tài khoản mới', - 'make_new_expense_account' => 'Tạo một tài khoản chi phí mới', - 'make_new_revenue_account' => 'Tạo một tài khoản doanh thu mới', - 'make_new_liabilities_account' => 'Tạo một nợ mới', - 'asset_accounts' => 'tài khoản', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'tài khoản (không hoạt động)', - 'expense_account' => 'Expense account', - 'expense_accounts' => 'Tài khoản chi phí', - 'expense_accounts_inactive' => 'Tài khoản chi tiêu (không hoạt động)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => 'Tài khoản doanh thu', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => 'Tài khoản tiền mặt', - 'Cash account' => 'Tài khoản tiền mặt', - 'liabilities_accounts' => 'Nợ', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => 'Tài khoản đối chiếu ":account"', - 'overview_of_reconcile_modal' => 'Tổng quan về tài khoản đối chiếu', - 'delete_reconciliation' => 'Xóa tài khoản đối chiếu', - 'update_reconciliation' => 'Cập nhật tài khoản đối chiếu', - 'amount_cannot_be_zero' => 'Số lượng không thể bằng không', - 'end_of_reconcile_period' => 'Kết thúc chu kỳ đối chiếu: :period', - 'start_of_reconcile_period' => 'Bắt đầu chu kỳ đối chiếu::period', - 'start_balance' => 'Số dư bắt đầu', - 'end_balance' => 'Số dư cuối kỳ', - 'update_balance_dates_instruction' => 'Khớp số tiền và ngày ở trên với bảng sao kê ngân hàng của bạn và nhấn "Start reconciling"', - 'select_transactions_instruction' => 'Chọn các giao dịch xuất hiện trên bảng sao kê ngân hàng của bạn.', - 'select_range_and_balance' => 'Đầu tiên xác minh phạm vi ngày và số dư. Sau đó nhấn "Start reconciling"', - 'date_change_instruction' => 'Nếu bạn thay đổi phạm vi ngày bây giờ, mọi tiến trình sẽ bị mất.', - 'update_selection' => 'Cập nhật lựa chọn', - 'store_reconcile' => 'Lưu trữ đối chiếu', - 'reconciliation_transaction' => 'Giao dịch đối chiếu', - 'Reconciliation' => 'Đối chiếu', - 'reconciliation' => 'Đối chiếu', - 'reconcile_options' => 'Tùy chọn đối chiếu', - 'reconcile_range' => 'Vùng đối chiếu', - 'start_reconcile' => 'Bắt đầu đối chiếu', - 'cash_account_type' => 'Tiền mặt', - 'cash' => 'Tiền mặt', - 'cant_find_redirect_account' => 'Firefly III đã cố gắng chuyển hướng bạn nhưng không thể. Xin lỗi vì điều đó. Quay lại chỉ mục.', - 'account_type' => 'Loại tài khoản', - 'save_transactions_by_moving' => 'Lưu giao dịch này bằng cách di chuyển nó sang tài khoản khác: | Lưu các giao dịch này bằng cách chuyển chúng sang tài khoản khác:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => 'Tài khoản mới ":name" đã được lưu trữ!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => 'Đã cập nhật tài khoản ":name"', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => 'Tùy chọn thẻ tín dụng', - 'no_transactions_account' => 'Không có giao dịch (trong giai đoạn này) cho tài khoản ":name".', - 'no_transactions_period' => 'Không có giao dịch (trong giai đoạn này).', - 'no_data_for_chart' => 'Không có đủ thông tin (chưa) để tạo biểu đồ này.', - 'select_at_least_one_account' => 'Vui lòng chọn ít nhất một tài khoản', - 'select_at_least_one_category' => 'Vui lòng chọn ít nhất một danh mục', - 'select_at_least_one_budget' => 'Vui lòng chọn ít nhất một ngân sách', - 'select_at_least_one_tag' => 'Vui lòng chọn ít nhất một nhãn', - 'select_at_least_one_expense' => 'Vui lòng chọn ít nhất một sự kết hợp của các tài khoản chi phí / doanh thu. Nếu bạn không có (danh sách trống) thì báo cáo này không có sẵn.', - 'account_default_currency' => 'Đây sẽ là loại tiền mặc định được liên kết với tài khoản này.', - 'reconcile_has_more' => 'Sổ cái Firefly III của bạn có nhiều tiền hơn số tiền mà ngân hàng của bạn yêu cầu. Có một số lựa chọn. Hãy chọn những gì để làm. Sau đó, nhấn "Xác nhận đối chiếu".', - 'reconcile_has_less' => 'Sổ cái Firefly III của bạn có ít tiền hơn so với yêu cầu ngân hàng của bạn. Có một số lựa chọn. Hãy chọn những gì để làm. Sau đó, nhấn "Xác nhận đối chiếu".', - 'reconcile_is_equal' => 'Sổ cái Firefly III của bạn và báo cáo ngân hàng của bạn phù hợp. Không có gì phải làm. Vui lòng nhấn "Xác nhận đối chiếu" để xác nhận đầu vào của bạn.', - 'create_pos_reconcile_transaction' => 'Xóa các giao dịch đã chọn và tạo một hiệu chỉnh thêm: số tiền vào tài khoản này.', - 'create_neg_reconcile_transaction' => 'Xóa các giao dịch đã chọn và tạo một chỉnh sửa xóa: số tiền từ tài khoản này.', - 'reconcile_do_nothing' => 'Xóa các giao dịch đã chọn, nhưng không sửa.', - 'reconcile_go_back' => 'Bạn luôn có thể chỉnh sửa hoặc xóa một chỉnh sửa sau.', - 'must_be_asset_account' => 'Bạn chỉ có thể đối chiếu tài khoản', - 'reconciliation_stored' => 'Đối chiếu được lưu trữ', - 'reconciliation_error' => 'Do lỗi, các giao dịch được đánh dấu là đã được đối chiếu nhưng việc sửa lỗi chưa được lưu trữ :: lỗi.', - 'reconciliation_transaction_title' => 'Đối chiếu (:from đến :to)', - 'sum_of_reconciliation' => 'Tổng đối chiếu', - 'reconcile_this_account' => 'Điều chỉnh tài khoản này', - 'reconcile' => 'Đối chiếu', - 'show' => 'Hiển thị', - 'confirm_reconciliation' => 'Xác nhận đối chiếu', - 'submitted_start_balance' => 'Gửi số dư bắt đầu', - 'selected_transactions' => 'Giao dịch được chọn (:count)', - 'already_cleared_transactions' => 'Đã xóa giao dịch (:count)', - 'submitted_end_balance' => 'Gửi số dư cuối kỳ', - 'initial_balance_description' => 'Số dư ban đầu cho ":account"', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => 'không xác định', - 'interest_calc_daily' => 'Mỗi ngày', - 'interest_calc_monthly' => 'Mỗi tháng', - 'interest_calc_yearly' => 'Mỗi năm', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => 'Tài khoản số dư ban đầu của: tài khoản', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'Tôi đang nợ số tiền', + 'i_owe_amount' => 'Tôi nợ số tiền', + 'inactive_account_link' => 'Bạn có :count tài khoản không hoạt động (được lưu trữ) mà bạn có thể xem trên trang này. Bạn có :count tài khoản không hoạt động (đã lưu trữ) mà bạn có thể xem trên trang này.', + 'all_accounts_inactive' => 'Đây là những tài khoản không hoạt động của bạn.', + 'active_account_link' => 'Liên kết này quay lại tài khoản đang hoạt động của bạn.', + 'account_missing_transaction' => 'Tài khoản #: id (": name") không thể được xem trực tiếp, nhưng Firefly thiếu thông tin chuyển hướng.', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => 'Chi tiết cho tài khoản ":name"', + 'details_for_expense' => 'Chi tiết tài khoản chi phí ":name"', + 'details_for_revenue' => 'Chi tiết cho tài khoản doanh thu ":name"', + 'details_for_cash' => 'Chi tiết cho tài khoản tiền mặt ":name"', + 'store_new_asset_account' => 'Lưu trữ tài khoản mới', + 'store_new_expense_account' => 'Lưu trữ tài khoản chi phí mới', + 'store_new_revenue_account' => 'Lưu trữ tài khoản doanh thu mới', + 'edit_asset_account' => 'Chỉnh sửa tài khoản ":name"', + 'edit_expense_account' => 'Chỉnh sửa tài khoản chi phí ":name"', + 'edit_revenue_account' => 'Chỉnh sửa tài khoản doanh thu ":name"', + 'delete_asset_account' => 'Xóa tài khoản ":name"', + 'delete_expense_account' => 'Xóa tài khoản chi phí ":name"', + 'delete_revenue_account' => 'Xóa tài khoản doanh thu ":name"', + 'delete_liabilities_account' => 'Xóa tài khoản nợ ":name"', + 'asset_deleted' => 'Thành công tài khoản bị xóa ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => 'Thành công xóa tài khoản chi phí ":name"', + 'revenue_deleted' => 'Thành công xóa tài khoản doanh thu ":name"', + 'update_asset_account' => 'Cập nhật tài khoản', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => 'Cập nhật nợ', + 'update_expense_account' => 'Cập nhật tài khoản chi phí', + 'update_revenue_account' => 'Cập nhật tài khoản doanh thu', + 'make_new_asset_account' => 'Tạo một tài khoản mới', + 'make_new_expense_account' => 'Tạo một tài khoản chi phí mới', + 'make_new_revenue_account' => 'Tạo một tài khoản doanh thu mới', + 'make_new_liabilities_account' => 'Tạo một nợ mới', + 'asset_accounts' => 'tài khoản', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'tài khoản (không hoạt động)', + 'expense_account' => 'Expense account', + 'expense_accounts' => 'Tài khoản chi phí', + 'expense_accounts_inactive' => 'Tài khoản chi tiêu (không hoạt động)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => 'Tài khoản doanh thu', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => 'Tài khoản tiền mặt', + 'Cash account' => 'Tài khoản tiền mặt', + 'liabilities_accounts' => 'Nợ', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => 'Tài khoản đối chiếu ":account"', + 'overview_of_reconcile_modal' => 'Tổng quan về tài khoản đối chiếu', + 'delete_reconciliation' => 'Xóa tài khoản đối chiếu', + 'update_reconciliation' => 'Cập nhật tài khoản đối chiếu', + 'amount_cannot_be_zero' => 'Số lượng không thể bằng không', + 'end_of_reconcile_period' => 'Kết thúc chu kỳ đối chiếu: :period', + 'start_of_reconcile_period' => 'Bắt đầu chu kỳ đối chiếu::period', + 'start_balance' => 'Số dư bắt đầu', + 'end_balance' => 'Số dư cuối kỳ', + 'update_balance_dates_instruction' => 'Khớp số tiền và ngày ở trên với bảng sao kê ngân hàng của bạn và nhấn "Start reconciling"', + 'select_transactions_instruction' => 'Chọn các giao dịch xuất hiện trên bảng sao kê ngân hàng của bạn.', + 'select_range_and_balance' => 'Đầu tiên xác minh phạm vi ngày và số dư. Sau đó nhấn "Start reconciling"', + 'date_change_instruction' => 'Nếu bạn thay đổi phạm vi ngày bây giờ, mọi tiến trình sẽ bị mất.', + 'update_selection' => 'Cập nhật lựa chọn', + 'store_reconcile' => 'Lưu trữ đối chiếu', + 'reconciliation_transaction' => 'Giao dịch đối chiếu', + 'Reconciliation' => 'Đối chiếu', + 'reconciliation' => 'Đối chiếu', + 'reconcile_options' => 'Tùy chọn đối chiếu', + 'reconcile_range' => 'Vùng đối chiếu', + 'start_reconcile' => 'Bắt đầu đối chiếu', + 'cash_account_type' => 'Tiền mặt', + 'cash' => 'Tiền mặt', + 'cant_find_redirect_account' => 'Firefly III đã cố gắng chuyển hướng bạn nhưng không thể. Xin lỗi vì điều đó. Quay lại chỉ mục.', + 'account_type' => 'Loại tài khoản', + 'save_transactions_by_moving' => 'Lưu giao dịch này bằng cách di chuyển nó sang tài khoản khác: | Lưu các giao dịch này bằng cách chuyển chúng sang tài khoản khác:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => 'Tài khoản mới ":name" đã được lưu trữ!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => 'Đã cập nhật tài khoản ":name"', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => 'Tùy chọn thẻ tín dụng', + 'no_transactions_account' => 'Không có giao dịch (trong giai đoạn này) cho tài khoản ":name".', + 'no_transactions_period' => 'Không có giao dịch (trong giai đoạn này).', + 'no_data_for_chart' => 'Không có đủ thông tin (chưa) để tạo biểu đồ này.', + 'select_at_least_one_account' => 'Vui lòng chọn ít nhất một tài khoản', + 'select_at_least_one_category' => 'Vui lòng chọn ít nhất một danh mục', + 'select_at_least_one_budget' => 'Vui lòng chọn ít nhất một ngân sách', + 'select_at_least_one_tag' => 'Vui lòng chọn ít nhất một nhãn', + 'select_at_least_one_expense' => 'Vui lòng chọn ít nhất một sự kết hợp của các tài khoản chi phí / doanh thu. Nếu bạn không có (danh sách trống) thì báo cáo này không có sẵn.', + 'account_default_currency' => 'Đây sẽ là loại tiền mặc định được liên kết với tài khoản này.', + 'reconcile_has_more' => 'Sổ cái Firefly III của bạn có nhiều tiền hơn số tiền mà ngân hàng của bạn yêu cầu. Có một số lựa chọn. Hãy chọn những gì để làm. Sau đó, nhấn "Xác nhận đối chiếu".', + 'reconcile_has_less' => 'Sổ cái Firefly III của bạn có ít tiền hơn so với yêu cầu ngân hàng của bạn. Có một số lựa chọn. Hãy chọn những gì để làm. Sau đó, nhấn "Xác nhận đối chiếu".', + 'reconcile_is_equal' => 'Sổ cái Firefly III của bạn và báo cáo ngân hàng của bạn phù hợp. Không có gì phải làm. Vui lòng nhấn "Xác nhận đối chiếu" để xác nhận đầu vào của bạn.', + 'create_pos_reconcile_transaction' => 'Xóa các giao dịch đã chọn và tạo một hiệu chỉnh thêm: số tiền vào tài khoản này.', + 'create_neg_reconcile_transaction' => 'Xóa các giao dịch đã chọn và tạo một chỉnh sửa xóa: số tiền từ tài khoản này.', + 'reconcile_do_nothing' => 'Xóa các giao dịch đã chọn, nhưng không sửa.', + 'reconcile_go_back' => 'Bạn luôn có thể chỉnh sửa hoặc xóa một chỉnh sửa sau.', + 'must_be_asset_account' => 'Bạn chỉ có thể đối chiếu tài khoản', + 'reconciliation_stored' => 'Đối chiếu được lưu trữ', + 'reconciliation_error' => 'Do lỗi, các giao dịch được đánh dấu là đã được đối chiếu nhưng việc sửa lỗi chưa được lưu trữ :: lỗi.', + 'reconciliation_transaction_title' => 'Đối chiếu (:from đến :to)', + 'sum_of_reconciliation' => 'Tổng đối chiếu', + 'reconcile_this_account' => 'Điều chỉnh tài khoản này', + 'reconcile' => 'Đối chiếu', + 'show' => 'Hiển thị', + 'confirm_reconciliation' => 'Xác nhận đối chiếu', + 'submitted_start_balance' => 'Gửi số dư bắt đầu', + 'selected_transactions' => 'Giao dịch được chọn (:count)', + 'already_cleared_transactions' => 'Đã xóa giao dịch (:count)', + 'submitted_end_balance' => 'Gửi số dư cuối kỳ', + 'initial_balance_description' => 'Số dư ban đầu cho ":account"', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => 'không xác định', + 'interest_calc_daily' => 'Mỗi ngày', + 'interest_calc_monthly' => 'Mỗi tháng', + 'interest_calc_yearly' => 'Mỗi năm', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => 'Tài khoản số dư ban đầu của: tài khoản', + 'list_options' => 'List options', // categories: - 'new_category' => 'Danh muc mới', - 'create_new_category' => 'Tạo một danh mục mới', - 'without_category' => 'Không có danh mục', - 'update_category' => 'Cập nhật danh mục', - 'updated_category' => 'Đã cập nhật danh mục ":name"', - 'categories' => 'Danh mục', - 'edit_category' => 'Sửa danh mục ":name"', - 'no_category' => '(không danh mục)', - 'unknown_category_plain' => 'No category', - 'category' => 'Danh mục', - 'delete_category' => 'Xóa danh mục ":name"', - 'deleted_category' => 'Đã xóa danh mục ":name"', - 'store_category' => 'Lưu trữ danh mục mới', - 'stored_category' => 'Đã lưu trữ danh mục mới ":name"', - 'without_category_between' => 'Không có danh mục giữa :start và :end', + 'new_category' => 'Danh muc mới', + 'create_new_category' => 'Tạo một danh mục mới', + 'without_category' => 'Không có danh mục', + 'update_category' => 'Cập nhật danh mục', + 'updated_category' => 'Đã cập nhật danh mục ":name"', + 'categories' => 'Danh mục', + 'edit_category' => 'Sửa danh mục ":name"', + 'no_category' => '(không danh mục)', + 'unknown_category_plain' => 'No category', + 'category' => 'Danh mục', + 'delete_category' => 'Xóa danh mục ":name"', + 'deleted_category' => 'Đã xóa danh mục ":name"', + 'store_category' => 'Lưu trữ danh mục mới', + 'stored_category' => 'Đã lưu trữ danh mục mới ":name"', + 'without_category_between' => 'Không có danh mục giữa :start và :end', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => 'Cập nhật rút tiền', - 'update_deposit' => 'Cập nhật tiền gửi', - 'update_transaction' => 'Cập nhật giao dịch', - 'update_transfer' => 'Cập nhật chuyển', - 'updated_withdrawal' => 'Cập nhật rút tiền ":description"', - 'updated_deposit' => 'Tiền gửi cập nhật ":description"', - 'updated_transfer' => 'Chuyển khoản cập nhật ":description"', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => 'Xóa rút tiền ":description"', - 'delete_deposit' => 'Xóa tiền gửi ":description"', - 'delete_transfer' => 'Xóa chuyển ":description"', - 'deleted_withdrawal' => 'Đã xóa thành công rút tiền ":description"', - 'deleted_deposit' => 'Đã gửi thành công tiền gửi ":description"', - 'deleted_transfer' => 'Xóa thành công chuyển khoản ":description"', - 'deleted_reconciliation' => 'Tạo thành công giao dịch mới ":description"', - 'stored_journal' => 'Tạo thành công giao dịch mới ":description"', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => 'Tạo thành công giao dịch mới của bạn', - 'updated_journal_no_descr' => 'Cập nhật thành công giao dịch của bạn', - 'select_transactions' => 'Chọn giao dịch', - 'rule_group_select_transactions' => 'Áp dụng ":title" vào giao dịch', - 'rule_select_transactions' => 'Áp dụng ":title" vào giao dịch', - 'stop_selection' => 'Dừng chọn giao dịch', - 'reconcile_selected' => 'Đối chiếu', - 'mass_delete_journals' => 'Xóa một số giao dịch', - 'mass_edit_journals' => 'Chỉnh sửa một số giao dịch', - 'mass_bulk_journals' => 'Chỉnh sửa hàng loạt một số giao dịch', - 'mass_bulk_journals_explain' => 'Biểu mẫu này cho phép bạn thay đổi thuộc tính của các giao dịch được liệt kê bên dưới trong một bản cập nhật quét. Tất cả các giao dịch trong bảng sẽ được cập nhật khi bạn thay đổi các tham số bạn thấy ở đây.', - 'part_of_split' => 'Giao dịch này là một phần của giao dịch phân chia. Nếu bạn chưa chọn tất cả các phần tách, bạn có thể chỉ thay đổi một nửa giao dịch.', - 'bulk_set_new_values' => 'Sử dụng các đầu vào bên dưới để đặt giá trị mới. Nếu bạn để trống, chúng sẽ được làm trống cho tất cả. Ngoài ra, lưu ý rằng chỉ rút tiền sẽ được cấp ngân sách.', - 'no_bulk_category' => 'Đừng cập nhật danh mục', - 'no_bulk_budget' => 'Đừng cập nhật ngân sách', - 'no_bulk_tags' => 'Đừng cập nhật nhãn', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Chỉnh sửa được chọn riêng', - 'bulk_edit' => 'Chỉnh sửa được chọn hàng loạt', - 'mass_delete' => 'Xóa đã chọn', - 'cannot_edit_other_fields' => 'Bạn không thể chỉnh sửa hàng loạt các trường khác ngoài các trường ở đây, vì không có chỗ để hiển thị chúng. Vui lòng theo liên kết và chỉnh sửa từng cái một, nếu bạn cần chỉnh sửa các trường này.', - 'cannot_change_amount_reconciled' => 'Bạn không thể thay đổi số lượng giao dịch được điều chỉnh.', - 'no_budget' => '(không có ngân sách)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Tài khoản trên mỗi ngân sách', - 'account_per_category' => 'Tài khoản mỗi danh mục', - 'create_new_object' => 'Tạo', - 'empty' => '(trống)', - 'all_other_budgets' => '(tất cả các ngân sách khác)', - 'all_other_accounts' => '(tất cả các tài khoản khác)', - 'expense_per_source_account' => 'Chi phí cho mỗi tài khoản nguồn', - 'expense_per_destination_account' => 'Chi phí cho mỗi tài khoản đích', - 'income_per_destination_account' => 'Thu nhập trên tài khoản đích', - 'spent_in_specific_category' => 'Chi tiêu trong danh mục ":category"', - 'earned_in_specific_category' => 'Kiếm được trong danh mục ":category"', - 'spent_in_specific_tag' => 'Chi tiêu trong nhãn ":tag"', - 'earned_in_specific_tag' => 'Kiếm được trong nhãn ":tag"', - 'income_per_source_account' => 'Thu nhập trên mỗi tài khoản nguồn', - 'average_spending_per_destination' => 'Chi phí trung bình cho mỗi tài khoản nguồn tài khoản đích', - 'average_spending_per_source' => 'Chi phí trung bình trên mỗi tài khoản nguồn', - 'average_earning_per_source' => 'Thu nhập trung bình trên mỗi tài khoản nguồn', - 'average_earning_per_destination' => 'Thu nhập trung bình trên mỗi tài khoản đích', - 'account_per_tag' => 'Tài khoản trên mỗi nhãn', - 'tag_report_expenses_listed_once' => 'Chi phí và thu nhập không bao giờ được liệt kê hai lần. Nếu một giao dịch có nhiều nhãn, nó chỉ có thể hiển thị dưới một trong các nhãn của nó. Danh sách này có thể bị thiếu dữ liệu, nhưng số tiền sẽ chính xác.', - 'double_report_expenses_charted_once' => 'Chi phí và thu nhập không bao giờ được hiển thị hai lần. Nếu một giao dịch có nhiều nhãn, nó chỉ có thể hiển thị dưới một trong các nhãn của nó. Biểu đồ này có thể thiếu dữ liệu, nhưng số tiền sẽ chính xác.', - 'tag_report_chart_single_tag' => 'Biểu đồ này áp dụng cho một nhãn duy nhất. Nếu một giao dịch có nhiều nhãn, những gì bạn thấy ở đây cũng có thể được phản ánh trong biểu đồ của các nhãn khác.', - 'tag' => 'Nhãn', - 'no_budget_squared' => '(không có ngân sách)', - 'perm-delete-many' => 'Xóa nhiều mục trong một lần có thể rất khó chịu. Hãy thận trọng. Bạn có thể xóa một phần của giao dịch tách khỏi trang này, vì vậy hãy cẩn thận.', - 'mass_deleted_transactions_success' => 'Đã xóa :count giao dịch. | Đã xóa :count giao dịch.', - 'mass_edited_transactions_success' => 'Cập nhật :count giao dịch. | Cập nhật :count giao dịch.', - 'opt_group_' => '(không có loại tài khoản)', - 'opt_group_no_account_type' => '(không có loại tài khoản)', - 'opt_group_defaultAsset' => 'tài khoản mặc định', - 'opt_group_savingAsset' => 'Tài khoản tiết kiệm', - 'opt_group_sharedAsset' => 'tài khoản dùng chung', - 'opt_group_ccAsset' => 'Thẻ tín dụng', - 'opt_group_cashWalletAsset' => 'Ví tiền mặt', - 'opt_group_expense_account' => 'Tài khoản chi phí', - 'opt_group_revenue_account' => 'Tài khoản doanh thu', - 'opt_group_l_Loan' => 'Nợ: Cho vay', - 'opt_group_cash_account' => 'Tài khoản tiền mặt', - 'opt_group_l_Debt' => 'Nợ: Nợ', - 'opt_group_l_Mortgage' => 'Nợ: Thế chấp', - 'opt_group_l_Credit card' => 'Nợ: Thẻ tín dụng', - 'notes' => 'Ghi chú', - 'unknown_journal_error' => 'Không thể lưu trữ giao dịch. Vui lòng kiểm tra các tệp nhật ký.', - 'attachment_not_found' => 'Không thể tìm thấy tệp đính kèm này.', - 'journal_link_bill' => 'Giao dịch này được liên kết với hóa đơn :name. Để xóa kết nối, bỏ chọn hộp kiểm. Sử dụng quy tắc để kết nối nó với hóa đơn khác.', - 'transaction_stored_link' => 'Giao dịch #{ID} ("{title}") đã được lưu trữ.', - 'transaction_new_stored_link' => ' Giao dịch #{ID} đã được lưu trữ.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => 'Cập nhật rút tiền', + 'update_deposit' => 'Cập nhật tiền gửi', + 'update_transaction' => 'Cập nhật giao dịch', + 'update_transfer' => 'Cập nhật chuyển', + 'updated_withdrawal' => 'Cập nhật rút tiền ":description"', + 'updated_deposit' => 'Tiền gửi cập nhật ":description"', + 'updated_transfer' => 'Chuyển khoản cập nhật ":description"', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => 'Xóa rút tiền ":description"', + 'delete_deposit' => 'Xóa tiền gửi ":description"', + 'delete_transfer' => 'Xóa chuyển ":description"', + 'deleted_withdrawal' => 'Đã xóa thành công rút tiền ":description"', + 'deleted_deposit' => 'Đã gửi thành công tiền gửi ":description"', + 'deleted_transfer' => 'Xóa thành công chuyển khoản ":description"', + 'deleted_reconciliation' => 'Tạo thành công giao dịch mới ":description"', + 'stored_journal' => 'Tạo thành công giao dịch mới ":description"', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => 'Tạo thành công giao dịch mới của bạn', + 'updated_journal_no_descr' => 'Cập nhật thành công giao dịch của bạn', + 'select_transactions' => 'Chọn giao dịch', + 'rule_group_select_transactions' => 'Áp dụng ":title" vào giao dịch', + 'rule_select_transactions' => 'Áp dụng ":title" vào giao dịch', + 'stop_selection' => 'Dừng chọn giao dịch', + 'reconcile_selected' => 'Đối chiếu', + 'mass_delete_journals' => 'Xóa một số giao dịch', + 'mass_edit_journals' => 'Chỉnh sửa một số giao dịch', + 'mass_bulk_journals' => 'Chỉnh sửa hàng loạt một số giao dịch', + 'mass_bulk_journals_explain' => 'Biểu mẫu này cho phép bạn thay đổi thuộc tính của các giao dịch được liệt kê bên dưới trong một bản cập nhật quét. Tất cả các giao dịch trong bảng sẽ được cập nhật khi bạn thay đổi các tham số bạn thấy ở đây.', + 'part_of_split' => 'Giao dịch này là một phần của giao dịch phân chia. Nếu bạn chưa chọn tất cả các phần tách, bạn có thể chỉ thay đổi một nửa giao dịch.', + 'bulk_set_new_values' => 'Sử dụng các đầu vào bên dưới để đặt giá trị mới. Nếu bạn để trống, chúng sẽ được làm trống cho tất cả. Ngoài ra, lưu ý rằng chỉ rút tiền sẽ được cấp ngân sách.', + 'no_bulk_category' => 'Đừng cập nhật danh mục', + 'no_bulk_budget' => 'Đừng cập nhật ngân sách', + 'no_bulk_tags' => 'Đừng cập nhật nhãn', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Chỉnh sửa được chọn riêng', + 'bulk_edit' => 'Chỉnh sửa được chọn hàng loạt', + 'mass_delete' => 'Xóa đã chọn', + 'cannot_edit_other_fields' => 'Bạn không thể chỉnh sửa hàng loạt các trường khác ngoài các trường ở đây, vì không có chỗ để hiển thị chúng. Vui lòng theo liên kết và chỉnh sửa từng cái một, nếu bạn cần chỉnh sửa các trường này.', + 'cannot_change_amount_reconciled' => 'Bạn không thể thay đổi số lượng giao dịch được điều chỉnh.', + 'no_budget' => '(không có ngân sách)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Tài khoản trên mỗi ngân sách', + 'account_per_category' => 'Tài khoản mỗi danh mục', + 'create_new_object' => 'Tạo', + 'empty' => '(trống)', + 'all_other_budgets' => '(tất cả các ngân sách khác)', + 'all_other_accounts' => '(tất cả các tài khoản khác)', + 'expense_per_source_account' => 'Chi phí cho mỗi tài khoản nguồn', + 'expense_per_destination_account' => 'Chi phí cho mỗi tài khoản đích', + 'income_per_destination_account' => 'Thu nhập trên tài khoản đích', + 'spent_in_specific_category' => 'Chi tiêu trong danh mục ":category"', + 'earned_in_specific_category' => 'Kiếm được trong danh mục ":category"', + 'spent_in_specific_tag' => 'Chi tiêu trong nhãn ":tag"', + 'earned_in_specific_tag' => 'Kiếm được trong nhãn ":tag"', + 'income_per_source_account' => 'Thu nhập trên mỗi tài khoản nguồn', + 'average_spending_per_destination' => 'Chi phí trung bình cho mỗi tài khoản nguồn tài khoản đích', + 'average_spending_per_source' => 'Chi phí trung bình trên mỗi tài khoản nguồn', + 'average_earning_per_source' => 'Thu nhập trung bình trên mỗi tài khoản nguồn', + 'average_earning_per_destination' => 'Thu nhập trung bình trên mỗi tài khoản đích', + 'account_per_tag' => 'Tài khoản trên mỗi nhãn', + 'tag_report_expenses_listed_once' => 'Chi phí và thu nhập không bao giờ được liệt kê hai lần. Nếu một giao dịch có nhiều nhãn, nó chỉ có thể hiển thị dưới một trong các nhãn của nó. Danh sách này có thể bị thiếu dữ liệu, nhưng số tiền sẽ chính xác.', + 'double_report_expenses_charted_once' => 'Chi phí và thu nhập không bao giờ được hiển thị hai lần. Nếu một giao dịch có nhiều nhãn, nó chỉ có thể hiển thị dưới một trong các nhãn của nó. Biểu đồ này có thể thiếu dữ liệu, nhưng số tiền sẽ chính xác.', + 'tag_report_chart_single_tag' => 'Biểu đồ này áp dụng cho một nhãn duy nhất. Nếu một giao dịch có nhiều nhãn, những gì bạn thấy ở đây cũng có thể được phản ánh trong biểu đồ của các nhãn khác.', + 'tag' => 'Nhãn', + 'no_budget_squared' => '(không có ngân sách)', + 'perm-delete-many' => 'Xóa nhiều mục trong một lần có thể rất khó chịu. Hãy thận trọng. Bạn có thể xóa một phần của giao dịch tách khỏi trang này, vì vậy hãy cẩn thận.', + 'mass_deleted_transactions_success' => 'Đã xóa :count giao dịch. | Đã xóa :count giao dịch.', + 'mass_edited_transactions_success' => 'Cập nhật :count giao dịch. | Cập nhật :count giao dịch.', + 'opt_group_' => '(không có loại tài khoản)', + 'opt_group_no_account_type' => '(không có loại tài khoản)', + 'opt_group_defaultAsset' => 'tài khoản mặc định', + 'opt_group_savingAsset' => 'Tài khoản tiết kiệm', + 'opt_group_sharedAsset' => 'tài khoản dùng chung', + 'opt_group_ccAsset' => 'Thẻ tín dụng', + 'opt_group_cashWalletAsset' => 'Ví tiền mặt', + 'opt_group_expense_account' => 'Tài khoản chi phí', + 'opt_group_revenue_account' => 'Tài khoản doanh thu', + 'opt_group_l_Loan' => 'Nợ: Cho vay', + 'opt_group_cash_account' => 'Tài khoản tiền mặt', + 'opt_group_l_Debt' => 'Nợ: Nợ', + 'opt_group_l_Mortgage' => 'Nợ: Thế chấp', + 'opt_group_l_Credit card' => 'Nợ: Thẻ tín dụng', + 'notes' => 'Ghi chú', + 'unknown_journal_error' => 'Không thể lưu trữ giao dịch. Vui lòng kiểm tra các tệp nhật ký.', + 'attachment_not_found' => 'Không thể tìm thấy tệp đính kèm này.', + 'journal_link_bill' => 'Giao dịch này được liên kết với hóa đơn :name. Để xóa kết nối, bỏ chọn hộp kiểm. Sử dụng quy tắc để kết nối nó với hóa đơn khác.', + 'transaction_stored_link' => 'Giao dịch #{ID} ("{title}") đã được lưu trữ.', + 'transaction_new_stored_link' => ' Giao dịch #{ID} đã được lưu trữ.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => 'Chào mừng đến với Firefly III!', - 'submit' => 'Gửi', - 'submission' => 'Gửi', - 'submit_yes_really' => 'Gửi (Tôi biết những gì tôi đang làm)', - 'getting_started' => 'Bắt đầu', - 'to_get_started' => 'Thật tốt khi thấy bạn đã cài đặt thành công Firefly III. Để bắt đầu với công cụ này, vui lòng nhập tên ngân hàng của bạn và số dư tài khoản của bạn. Đừng lo lắng nếu bạn có nhiều tài khoản. Bạn có thể thêm chúng sau. Chỉ là Firefly III cần một cái gì đó để bắt đầu.', - 'savings_balance_text' => 'Firefly III sẽ tự động tạo một tài khoản tiết kiệm cho bạn. Theo mặc định, sẽ không có tiền trong tài khoản tiết kiệm của bạn, nhưng nếu bạn nói với Firefly III, số dư sẽ được lưu trữ như vậy.', - 'finish_up_new_user' => 'Đó là nó! Bạn có thể tiếp tục bằng cách nhấn Submit. Ybạn sẽ được đưa đến chỉ số của Firefly III.', - 'stored_new_accounts_new_user' => 'Yeah! Tài khoản mới của bạn đã được lưu trữ.', - 'set_preferred_language' => 'Nếu bạn thích sử dụng Firefly III trong một ngôn ngữ khác, vui lòng cho biết tại đây.', - 'language' => 'Ngôn ngữ', - 'new_savings_account' => ':bank_name tài khoản tiết kiệm', - 'cash_wallet' => 'Ví tiền mặt', - 'currency_not_present' => 'Nếu loại tiền bạn thường sử dụng không được liệt kê, đừng lo lắng. Bạn có thể tạo tiền tệ của riêng bạn trong Tùy chọn > Tiền tệ.', + 'welcome' => 'Chào mừng đến với Firefly III!', + 'submit' => 'Gửi', + 'submission' => 'Gửi', + 'submit_yes_really' => 'Gửi (Tôi biết những gì tôi đang làm)', + 'getting_started' => 'Bắt đầu', + 'to_get_started' => 'Thật tốt khi thấy bạn đã cài đặt thành công Firefly III. Để bắt đầu với công cụ này, vui lòng nhập tên ngân hàng của bạn và số dư tài khoản của bạn. Đừng lo lắng nếu bạn có nhiều tài khoản. Bạn có thể thêm chúng sau. Chỉ là Firefly III cần một cái gì đó để bắt đầu.', + 'savings_balance_text' => 'Firefly III sẽ tự động tạo một tài khoản tiết kiệm cho bạn. Theo mặc định, sẽ không có tiền trong tài khoản tiết kiệm của bạn, nhưng nếu bạn nói với Firefly III, số dư sẽ được lưu trữ như vậy.', + 'finish_up_new_user' => 'Đó là nó! Bạn có thể tiếp tục bằng cách nhấn Submit. Ybạn sẽ được đưa đến chỉ số của Firefly III.', + 'stored_new_accounts_new_user' => 'Yeah! Tài khoản mới của bạn đã được lưu trữ.', + 'set_preferred_language' => 'Nếu bạn thích sử dụng Firefly III trong một ngôn ngữ khác, vui lòng cho biết tại đây.', + 'language' => 'Ngôn ngữ', + 'new_savings_account' => ':bank_name tài khoản tiết kiệm', + 'cash_wallet' => 'Ví tiền mặt', + 'currency_not_present' => 'Nếu loại tiền bạn thường sử dụng không được liệt kê, đừng lo lắng. Bạn có thể tạo tiền tệ của riêng bạn trong Tùy chọn > Tiền tệ.', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => 'Tài khoản của bạn', - 'your_accounts' => 'Tổng quan về tài khoản của bạn', - 'category_overview' => 'Tổng quan về danh mục', - 'expense_overview' => 'Tổng quan về tài khoản', - 'revenue_overview' => 'Tổng quan về tài khoản doanh thu', - 'budgetsAndSpending' => 'Ngân sách và chi tiêu', - 'budgets_and_spending' => 'Ngân sách và chi tiêu', - 'go_to_budget' => 'Đến ngân sách "{budget}"', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => 'Tiết kiệm', - 'newWithdrawal' => 'Chi phí mới', - 'newDeposit' => 'Tiền gửi mới', - 'newTransfer' => 'Chuyển khoản mới', - 'bills_to_pay' => 'Hóa đơn phải trả', - 'per_day' => 'Mỗi ngày', - 'left_to_spend_per_day' => 'Còn lại để chi tiêu mỗi ngày', - 'bills_paid' => 'Hóa đơn thanh toán', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => 'Tài khoản của bạn', + 'your_accounts' => 'Tổng quan về tài khoản của bạn', + 'category_overview' => 'Tổng quan về danh mục', + 'expense_overview' => 'Tổng quan về tài khoản', + 'revenue_overview' => 'Tổng quan về tài khoản doanh thu', + 'budgetsAndSpending' => 'Ngân sách và chi tiêu', + 'budgets_and_spending' => 'Ngân sách và chi tiêu', + 'go_to_budget' => 'Đến ngân sách "{budget}"', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => 'Tiết kiệm', + 'newWithdrawal' => 'Chi phí mới', + 'newDeposit' => 'Tiền gửi mới', + 'newTransfer' => 'Chuyển khoản mới', + 'bills_to_pay' => 'Hóa đơn phải trả', + 'per_day' => 'Mỗi ngày', + 'left_to_spend_per_day' => 'Còn lại để chi tiêu mỗi ngày', + 'bills_paid' => 'Hóa đơn thanh toán', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => 'Tiền tệ', - 'preferences' => 'Cá nhân', - 'logout' => 'Đăng xuất', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => 'Chuyển đổi đổigle navigation', - 'searchPlaceholder' => 'Tìm kiếm...', - 'version' => 'Phiên bản', - 'dashboard' => 'Bảng điều khiển', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => 'Ngân sách có sẵn ({currency})', - 'currencies' => 'Tiền tệ', - 'activity' => 'Hoạt động', - 'usage' => 'Sử dụng', - 'accounts' => 'Tài khoản', - 'Asset account' => 'tài khoản', - 'Default account' => 'tài khoản', - 'Expense account' => 'Tài khoản chi phí', - 'Revenue account' => 'Tài khoản thu nhập', - 'Initial balance account' => 'Tài khoản số dư ban đầu', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => 'Món nợ', - 'account_type_Loan' => 'Tiền vay', - 'account_type_Mortgage' => 'Thế chấp', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => 'Thẻ tín dụng', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => 'Ngân sách', - 'tags' => 'Nhãn', - 'reports' => 'Báo cáo', - 'transactions' => 'Giao dịch', - 'expenses' => 'Chi phí', - 'income' => 'Thu nhập doanh thu', - 'transfers' => 'Chuyển', - 'moneyManagement' => 'Quản lý tiền bạc', - 'money_management' => 'Quản lý tiền bạc', - 'tools' => 'Công cụ', - 'piggyBanks' => 'Heo đất', - 'piggy_banks' => 'Heo đất', - 'amount_x_of_y' => '{current} của {total}', - 'bills' => 'Hóa đơn', - 'withdrawal' => 'Rút tiền', - 'opening_balance' => 'Số dư đầu kỳ', - 'deposit' => 'Tiền gửi', - 'account' => 'Tài khoản', - 'transfer' => 'Chuyển khoản', - 'Withdrawal' => 'Rút tiền', - 'Deposit' => 'Tiền gửi', - 'Transfer' => 'Chuyển khoản', - 'bill' => 'Hóa đơn', - 'yes' => 'Đúng', - 'no' => 'Không', - 'amount' => 'Số tiền', - 'overview' => 'Tổng quát', - 'saveOnAccount' => 'Lưu vào tài khoản', - 'unknown' => 'không xác định', - 'monthly' => 'Hàng tháng', - 'profile' => 'Hồ sơ', - 'errors' => 'Lỗi', - 'debt_start_date' => 'Ngày bắt đầu nợ', - 'debt_start_amount' => 'Số tiền bắt đầu nợ', - 'debt_start_amount_help' => 'Nếu bạn nợ một khoản tiền tốt nhất để nhập số tiền âm, vì nó ảnh hưởng đến giá trị ròng của bạn. Nếu bạn nợ một khoản tiền tương tự. Kiểm tra các trang trợ giúp để biết thêm thông tin.', - 'interest_period_help' => 'Trường này sẽ không được tính cho bạn.', - 'store_new_liabilities_account' => 'Lưu trữ nợ mới', - 'edit_liabilities_account' => 'Sửa nợ ":name"', - 'financial_control' => 'Kiểm soát tài chính', - 'accounting' => 'Tài khoản', - 'automation' => 'Tự động', - 'others' => 'Khác', - 'classification' => 'Phân loại', - 'store_transaction' => 'Store transaction', + 'currency' => 'Tiền tệ', + 'preferences' => 'Cá nhân', + 'logout' => 'Đăng xuất', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => 'Chuyển đổi đổigle navigation', + 'searchPlaceholder' => 'Tìm kiếm...', + 'version' => 'Phiên bản', + 'dashboard' => 'Bảng điều khiển', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => 'Ngân sách có sẵn ({currency})', + 'currencies' => 'Tiền tệ', + 'activity' => 'Hoạt động', + 'usage' => 'Sử dụng', + 'accounts' => 'Tài khoản', + 'Asset account' => 'tài khoản', + 'Default account' => 'tài khoản', + 'Expense account' => 'Tài khoản chi phí', + 'Revenue account' => 'Tài khoản thu nhập', + 'Initial balance account' => 'Tài khoản số dư ban đầu', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => 'Món nợ', + 'account_type_Loan' => 'Tiền vay', + 'account_type_Mortgage' => 'Thế chấp', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => 'Thẻ tín dụng', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => 'Ngân sách', + 'tags' => 'Nhãn', + 'reports' => 'Báo cáo', + 'transactions' => 'Giao dịch', + 'expenses' => 'Chi phí', + 'income' => 'Thu nhập doanh thu', + 'transfers' => 'Chuyển', + 'moneyManagement' => 'Quản lý tiền bạc', + 'money_management' => 'Quản lý tiền bạc', + 'tools' => 'Công cụ', + 'piggyBanks' => 'Heo đất', + 'piggy_banks' => 'Heo đất', + 'amount_x_of_y' => '{current} của {total}', + 'bills' => 'Hóa đơn', + 'withdrawal' => 'Rút tiền', + 'opening_balance' => 'Số dư đầu kỳ', + 'deposit' => 'Tiền gửi', + 'account' => 'Tài khoản', + 'transfer' => 'Chuyển khoản', + 'Withdrawal' => 'Rút tiền', + 'Deposit' => 'Tiền gửi', + 'Transfer' => 'Chuyển khoản', + 'bill' => 'Hóa đơn', + 'yes' => 'Đúng', + 'no' => 'Không', + 'amount' => 'Số tiền', + 'overview' => 'Tổng quát', + 'saveOnAccount' => 'Lưu vào tài khoản', + 'unknown' => 'không xác định', + 'monthly' => 'Hàng tháng', + 'profile' => 'Hồ sơ', + 'errors' => 'Lỗi', + 'debt_start_date' => 'Ngày bắt đầu nợ', + 'debt_start_amount' => 'Số tiền bắt đầu nợ', + 'debt_start_amount_help' => 'Nếu bạn nợ một khoản tiền tốt nhất để nhập số tiền âm, vì nó ảnh hưởng đến giá trị ròng của bạn. Nếu bạn nợ một khoản tiền tương tự. Kiểm tra các trang trợ giúp để biết thêm thông tin.', + 'interest_period_help' => 'Trường này sẽ không được tính cho bạn.', + 'store_new_liabilities_account' => 'Lưu trữ nợ mới', + 'edit_liabilities_account' => 'Sửa nợ ":name"', + 'financial_control' => 'Kiểm soát tài chính', + 'accounting' => 'Tài khoản', + 'automation' => 'Tự động', + 'others' => 'Khác', + 'classification' => 'Phân loại', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => 'Báo cáo tài chính mặc định giữa: start và: end', - 'report_audit' => 'Tổng quan về lịch sử giao dịch giữa: start và: end', - 'report_category' => 'Báo cáo danh mục giữa: bắt đầu và: kết thúc', - 'report_double' => 'Báo cáo tài khoản chi phí / doanh thu giữa: bắt đầu và: kết thúc', - 'report_budget' => 'Báo cáo ngân sách giữa: bắt đầu và: kết thúc', - 'report_tag' => 'Nhãn báo cáo giữa: :start và :end', - 'quick_link_reports' => 'Đường dẫn nhanh', - 'quick_link_examples' => 'Đây chỉ là một số liên kết ví dụ để giúp bạn bắt đầu. Kiểm tra các trang trợ giúp dưới nút (?) - để biết thông tin về tất cả các báo cáo và các từ ma thuật bạn có thể sử dụng.', - 'quick_link_default_report' => 'Báo cáo tài chính mặc định', - 'quick_link_audit_report' => 'Tổng quan về lịch sử giao dịch', - 'report_this_month_quick' => 'Tháng hiện tại, tất cả các tài khoản', - 'report_last_month_quick' => 'Tháng trước, tất cả tài khoản, tất cả tài khoản', - 'report_this_year_quick' => 'Năm hiện tại, tất cả các tài khoản', - 'report_this_fiscal_year_quick' => 'Năm tài chính hiện tại, tất cả các tài khoản', - 'report_all_time_quick' => 'Mọi lúc, mọi tài khoản', - 'reports_can_bookmark' => 'Hãy nhớ rằng các báo cáo có thể được đánh dấu.', - 'incomeVsExpenses' => 'Thu nhập so với chi phí', - 'accountBalances' => 'Số dư tài khoản', - 'balanceStart' => 'Số dư đầu kỳ', - 'balanceEnd' => 'Số dư cuối kỳ', - 'splitByAccount' => 'Chia theo tài khoản', - 'coveredWithTags' => 'Được bao phủ bởi các nhãn', - 'leftInBudget' => 'Còn lại trong ngân sách', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => 'Tổng số tiền', - 'noCategory' => '(không danh mục)', - 'notCharged' => 'Không tính phí (chưa)', - 'inactive' => 'Không hoạt động', - 'active' => 'Hoạt động', - 'difference' => 'Sự khác biệt', - 'money_flowing_in' => 'Vào', - 'money_flowing_out' => 'Ra', - 'topX' => 'đầu: số', - 'show_full_list' => 'Hiển thị toàn bộ danh sách', - 'show_only_top' => 'Chỉ hiển thị đầu: số', - 'report_type' => 'Loại báo cáo', - 'report_type_default' => 'Báo cáo tài chính mặc định', - 'report_type_audit' => 'Tổng quan về lịch sử giao dịch (kiểm toán)', - 'report_type_category' => 'Báo cáo danh mục', - 'report_type_budget' => 'Báo cáo ngân sách', - 'report_type_tag' => 'Báo cáo nhãn', - 'report_type_double' => 'Báo cáo tài khoản chi phí / doanh thu', - 'more_info_help' => 'Thông tin thêm về các loại báo cáo này có thể được tìm thấy trong các trang trợ giúp. Nhấn biểu tượng (?) Ở góc trên bên phải.', - 'report_included_accounts' => 'Bao gồm các tài khoản', - 'report_date_range' => 'Phạm vi ngày', - 'report_preset_ranges' => 'Phạm vi đặt trước', - 'shared' => 'Đã chia sẻ', - 'fiscal_year' => 'Năm tài chính', - 'income_entry' => 'Thu nhập từ tài khoản ": name" giữa: start và: end', - 'expense_entry' => 'Chi phí cho tài khoản ": name" giữa: start và: end', - 'category_entry' => 'Chi phí và thu nhập trong danh mục ":name" giữa :start và :end', - 'budget_spent_amount' => 'Chi phí trong ngân sách ": ngân sách" giữa: bắt đầu và: kết thúc', - 'balance_amount' => 'Chi phí trong ngân sách ": ngân sách" được thanh toán từ tài khoản ": tài khoản" giữa: bắt đầu và: kết thúc', - 'no_audit_activity' => 'Không có hoạt động nào được ghi lại trên tài khoản :account_name giữa: bắt đầu và: kết thúc.', - 'audit_end_balance' => 'Số dư tài khoản của :account_name ở cuối: kết thúc là :: sự cân bằng', - 'reports_extra_options' => 'Tùy chọn bổ sung', - 'report_has_no_extra_options' => 'Báo cáo này không có tùy chọn bổ sung', - 'reports_submit' => 'Xem báo cáo', - 'end_after_start_date' => 'Ngày kết thúc báo cáo phải sau ngày bắt đầu.', - 'select_category' => 'Chọn danh mục', - 'select_budget' => 'Chọn ngân sách.', - 'select_tag' => 'Chọn nhãn.', - 'income_per_category' => 'Thu nhập trên mỗi danh mục', - 'expense_per_category' => 'Chi phí cho mỗi loại', - 'expense_per_budget' => 'Chi phí cho mỗi ngân sách', - 'income_per_account' => 'Thu nhập trên mỗi tài khoản', - 'expense_per_account' => 'Chi phí cho mỗi tài khoản', - 'expense_per_tag' => 'Chi phí cho mỗi nhãn', - 'income_per_tag' => 'Thu nhập trên mỗi nhãn', - 'include_expense_not_in_budget' => 'Bao gồm các chi phí không có trong ngân sách đã chọn', - 'include_expense_not_in_account' => 'Bao gồm các chi phí không có trong tài khoản đã chọn', - 'include_expense_not_in_category' => 'Bao gồm các chi phí không thuộc danh mục đã chọn', - 'include_income_not_in_category' => 'Thu nhập đã bao gồm không thuộc danh mục đã chọn', - 'include_income_not_in_account' => 'Thu nhập đã bao gồm không có trong tài khoản đã chọn', - 'include_income_not_in_tags' => 'Thu nhập đã bao gồm không có trong nhãn đã chọn', - 'include_expense_not_in_tags' => 'Bao gồm các chi phí không có trong (các) nhãn đã chọn', - 'everything_else' => 'Mọi thứ khác', - 'income_and_expenses' => 'Thu nhập và chi tiêu', - 'spent_average' => 'Chi tiêu (trung bình)', - 'income_average' => 'Thu nhập (trung bình)', - 'transaction_count' => 'Số lượng giao dịch', - 'average_spending_per_account' => 'Chi tiêu trung bình cho mỗi tài khoản', - 'average_income_per_account' => 'Thu nhập trung bình trên mỗi tài khoản', - 'total' => 'Toàn bộ', - 'description' => 'Sự miêu tả', - 'sum_of_period' => 'Tổng chu kỳ', - 'average_in_period' => 'Trung bình trong kỳ', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => 'tài khoản mặc định', - 'account_role_sharedAsset' => 'tài khoản dùng chung', - 'account_role_savingAsset' => 'Tài khoản tiết kiệm', - 'account_role_ccAsset' => 'Thẻ tín dụng', - 'account_role_cashWalletAsset' => 'Ví tiền mặt', - 'budget_chart_click' => 'Vui lòng nhấp vào tên ngân sách trong bảng trên để xem biểu đồ.', - 'category_chart_click' => 'Vui lòng nhấp vào tên danh mục trong bảng trên để xem biểu đồ.', - 'in_out_accounts' => 'Kiếm được và chi tiêu cho mỗi kết hợp', - 'in_out_accounts_per_asset' => 'Kiếm được và chi tiêu (trên mỗi tài khoản)', - 'in_out_per_category' => 'Kiếm được và chi tiêu cho mỗi danh mục', - 'out_per_budget' => 'Chi tiêu cho mỗi ngân sách', - 'select_expense_revenue' => 'Chọn tài khoản chi phí / doanh thu', - 'multi_currency_report_sum' => 'Vì danh sách này chứa các tài khoản có nhiều loại tiền tệ, nên số tiền bạn nhìn thấy có thể không có ý nghĩa. Báo cáo sẽ luôn trở về loại tiền mặc định của bạn.', - 'sum_in_default_currency' => 'Tổng tiền sẽ luôn bằng tiền tệ mặc định của bạn.', - 'net_filtered_prefs' => 'Biểu đồ này sẽ không bao giờ bao gồm các tài khoản có phần "Bao gồm giá trị ròng" không được chọn.', + 'report_default' => 'Báo cáo tài chính mặc định giữa: start và: end', + 'report_audit' => 'Tổng quan về lịch sử giao dịch giữa: start và: end', + 'report_category' => 'Báo cáo danh mục giữa: bắt đầu và: kết thúc', + 'report_double' => 'Báo cáo tài khoản chi phí / doanh thu giữa: bắt đầu và: kết thúc', + 'report_budget' => 'Báo cáo ngân sách giữa: bắt đầu và: kết thúc', + 'report_tag' => 'Nhãn báo cáo giữa: :start và :end', + 'quick_link_reports' => 'Đường dẫn nhanh', + 'quick_link_examples' => 'Đây chỉ là một số liên kết ví dụ để giúp bạn bắt đầu. Kiểm tra các trang trợ giúp dưới nút (?) - để biết thông tin về tất cả các báo cáo và các từ ma thuật bạn có thể sử dụng.', + 'quick_link_default_report' => 'Báo cáo tài chính mặc định', + 'quick_link_audit_report' => 'Tổng quan về lịch sử giao dịch', + 'report_this_month_quick' => 'Tháng hiện tại, tất cả các tài khoản', + 'report_last_month_quick' => 'Tháng trước, tất cả tài khoản, tất cả tài khoản', + 'report_this_year_quick' => 'Năm hiện tại, tất cả các tài khoản', + 'report_this_fiscal_year_quick' => 'Năm tài chính hiện tại, tất cả các tài khoản', + 'report_all_time_quick' => 'Mọi lúc, mọi tài khoản', + 'reports_can_bookmark' => 'Hãy nhớ rằng các báo cáo có thể được đánh dấu.', + 'incomeVsExpenses' => 'Thu nhập so với chi phí', + 'accountBalances' => 'Số dư tài khoản', + 'balanceStart' => 'Số dư đầu kỳ', + 'balanceEnd' => 'Số dư cuối kỳ', + 'splitByAccount' => 'Chia theo tài khoản', + 'coveredWithTags' => 'Được bao phủ bởi các nhãn', + 'leftInBudget' => 'Còn lại trong ngân sách', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => 'Tổng số tiền', + 'noCategory' => '(không danh mục)', + 'notCharged' => 'Không tính phí (chưa)', + 'inactive' => 'Không hoạt động', + 'active' => 'Hoạt động', + 'difference' => 'Sự khác biệt', + 'money_flowing_in' => 'Vào', + 'money_flowing_out' => 'Ra', + 'topX' => 'đầu: số', + 'show_full_list' => 'Hiển thị toàn bộ danh sách', + 'show_only_top' => 'Chỉ hiển thị đầu: số', + 'report_type' => 'Loại báo cáo', + 'report_type_default' => 'Báo cáo tài chính mặc định', + 'report_type_audit' => 'Tổng quan về lịch sử giao dịch (kiểm toán)', + 'report_type_category' => 'Báo cáo danh mục', + 'report_type_budget' => 'Báo cáo ngân sách', + 'report_type_tag' => 'Báo cáo nhãn', + 'report_type_double' => 'Báo cáo tài khoản chi phí / doanh thu', + 'more_info_help' => 'Thông tin thêm về các loại báo cáo này có thể được tìm thấy trong các trang trợ giúp. Nhấn biểu tượng (?) Ở góc trên bên phải.', + 'report_included_accounts' => 'Bao gồm các tài khoản', + 'report_date_range' => 'Phạm vi ngày', + 'report_preset_ranges' => 'Phạm vi đặt trước', + 'shared' => 'Đã chia sẻ', + 'fiscal_year' => 'Năm tài chính', + 'income_entry' => 'Thu nhập từ tài khoản ": name" giữa: start và: end', + 'expense_entry' => 'Chi phí cho tài khoản ": name" giữa: start và: end', + 'category_entry' => 'Chi phí và thu nhập trong danh mục ":name" giữa :start và :end', + 'budget_spent_amount' => 'Chi phí trong ngân sách ": ngân sách" giữa: bắt đầu và: kết thúc', + 'balance_amount' => 'Chi phí trong ngân sách ": ngân sách" được thanh toán từ tài khoản ": tài khoản" giữa: bắt đầu và: kết thúc', + 'no_audit_activity' => 'Không có hoạt động nào được ghi lại trên tài khoản :account_name giữa: bắt đầu và: kết thúc.', + 'audit_end_balance' => 'Số dư tài khoản của :account_name ở cuối: kết thúc là :: sự cân bằng', + 'reports_extra_options' => 'Tùy chọn bổ sung', + 'report_has_no_extra_options' => 'Báo cáo này không có tùy chọn bổ sung', + 'reports_submit' => 'Xem báo cáo', + 'end_after_start_date' => 'Ngày kết thúc báo cáo phải sau ngày bắt đầu.', + 'select_category' => 'Chọn danh mục', + 'select_budget' => 'Chọn ngân sách.', + 'select_tag' => 'Chọn nhãn.', + 'income_per_category' => 'Thu nhập trên mỗi danh mục', + 'expense_per_category' => 'Chi phí cho mỗi loại', + 'expense_per_budget' => 'Chi phí cho mỗi ngân sách', + 'income_per_account' => 'Thu nhập trên mỗi tài khoản', + 'expense_per_account' => 'Chi phí cho mỗi tài khoản', + 'expense_per_tag' => 'Chi phí cho mỗi nhãn', + 'income_per_tag' => 'Thu nhập trên mỗi nhãn', + 'include_expense_not_in_budget' => 'Bao gồm các chi phí không có trong ngân sách đã chọn', + 'include_expense_not_in_account' => 'Bao gồm các chi phí không có trong tài khoản đã chọn', + 'include_expense_not_in_category' => 'Bao gồm các chi phí không thuộc danh mục đã chọn', + 'include_income_not_in_category' => 'Thu nhập đã bao gồm không thuộc danh mục đã chọn', + 'include_income_not_in_account' => 'Thu nhập đã bao gồm không có trong tài khoản đã chọn', + 'include_income_not_in_tags' => 'Thu nhập đã bao gồm không có trong nhãn đã chọn', + 'include_expense_not_in_tags' => 'Bao gồm các chi phí không có trong (các) nhãn đã chọn', + 'everything_else' => 'Mọi thứ khác', + 'income_and_expenses' => 'Thu nhập và chi tiêu', + 'spent_average' => 'Chi tiêu (trung bình)', + 'income_average' => 'Thu nhập (trung bình)', + 'transaction_count' => 'Số lượng giao dịch', + 'average_spending_per_account' => 'Chi tiêu trung bình cho mỗi tài khoản', + 'average_income_per_account' => 'Thu nhập trung bình trên mỗi tài khoản', + 'total' => 'Toàn bộ', + 'description' => 'Sự miêu tả', + 'sum_of_period' => 'Tổng chu kỳ', + 'average_in_period' => 'Trung bình trong kỳ', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => 'tài khoản mặc định', + 'account_role_sharedAsset' => 'tài khoản dùng chung', + 'account_role_savingAsset' => 'Tài khoản tiết kiệm', + 'account_role_ccAsset' => 'Thẻ tín dụng', + 'account_role_cashWalletAsset' => 'Ví tiền mặt', + 'budget_chart_click' => 'Vui lòng nhấp vào tên ngân sách trong bảng trên để xem biểu đồ.', + 'category_chart_click' => 'Vui lòng nhấp vào tên danh mục trong bảng trên để xem biểu đồ.', + 'in_out_accounts' => 'Kiếm được và chi tiêu cho mỗi kết hợp', + 'in_out_accounts_per_asset' => 'Kiếm được và chi tiêu (trên mỗi tài khoản)', + 'in_out_per_category' => 'Kiếm được và chi tiêu cho mỗi danh mục', + 'out_per_budget' => 'Chi tiêu cho mỗi ngân sách', + 'select_expense_revenue' => 'Chọn tài khoản chi phí / doanh thu', + 'multi_currency_report_sum' => 'Vì danh sách này chứa các tài khoản có nhiều loại tiền tệ, nên số tiền bạn nhìn thấy có thể không có ý nghĩa. Báo cáo sẽ luôn trở về loại tiền mặc định của bạn.', + 'sum_in_default_currency' => 'Tổng tiền sẽ luôn bằng tiền tệ mặc định của bạn.', + 'net_filtered_prefs' => 'Biểu đồ này sẽ không bao giờ bao gồm các tài khoản có phần "Bao gồm giá trị ròng" không được chọn.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => 'Đồ thị', - 'month' => 'Tháng', - 'budget' => 'Ngân sách', - 'spent' => 'Đã chi', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => 'Đã chi trong ngân sách', - 'left_to_spend' => 'Còn lại để chi tiêu', - 'earned' => 'Kiếm được', - 'overspent' => 'Quá hạn', - 'left' => 'Còn lại', - 'max-amount' => 'Số lượng tối đa', - 'min-amount' => 'Số lượng tối thiểu', - 'journal-amount' => 'Nhập hóa đơn hiện tại', - 'name' => 'Tên', - 'date' => 'Ngày', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => 'Đã thanh toán', - 'unpaid' => 'Chưa thanh toán', - 'day' => 'Ngày', - 'budgeted' => 'Ngân sách', - 'period' => 'Chu kỳ', - 'balance' => 'Tiền còn lại', - 'in_out_period' => 'In + out this period', - 'sum' => 'Tổng', - 'summary' => 'Tóm lược', - 'average' => 'Trung bình', - 'balanceFor' => 'Số dư cho: tên', - 'no_tags' => '(không có nhãn)', - 'nothing_found' => '(nothing found)', + 'chart' => 'Đồ thị', + 'month' => 'Tháng', + 'budget' => 'Ngân sách', + 'spent' => 'Đã chi', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => 'Đã chi trong ngân sách', + 'left_to_spend' => 'Còn lại để chi tiêu', + 'earned' => 'Kiếm được', + 'overspent' => 'Quá hạn', + 'left' => 'Còn lại', + 'max-amount' => 'Số lượng tối đa', + 'min-amount' => 'Số lượng tối thiểu', + 'journal-amount' => 'Nhập hóa đơn hiện tại', + 'name' => 'Tên', + 'date' => 'Ngày', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => 'Đã thanh toán', + 'unpaid' => 'Chưa thanh toán', + 'day' => 'Ngày', + 'budgeted' => 'Ngân sách', + 'period' => 'Chu kỳ', + 'balance' => 'Tiền còn lại', + 'in_out_period' => 'In + out this period', + 'sum' => 'Tổng', + 'summary' => 'Tóm lược', + 'average' => 'Trung bình', + 'balanceFor' => 'Số dư cho: tên', + 'no_tags' => '(không có nhãn)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => 'Thêm tiền vào heo đất ":name"', - 'piggy_bank' => 'Heo đất', - 'new_piggy_bank' => 'Tạo heo đất mới', - 'store_piggy_bank' => 'Lưu trữ heo đất mới', - 'stored_piggy_bank' => 'Lưu trữ heo đất mới ":name"', - 'account_status' => 'Tình trạng tài khoản', - 'left_for_piggy_banks' => 'Còn lại cho heo đất', - 'sum_of_piggy_banks' => 'Tổng số heo đất', - 'saved_so_far' => 'Tiết kiệm cho đến nay', - 'left_to_save' => 'Còn lại để tiết kiệm', - 'suggested_amount' => 'Số tiền đề xuất hàng tháng để tiết kiệm', - 'add_money_to_piggy_title' => 'Thêm tiền vào heo đất ":name"', - 'remove_money_from_piggy_title' => 'Xóa tiền từ heo đất ":name"', - 'add' => 'Thêm vào', - 'no_money_for_piggy' => 'Bạn không có tiền để đặt vào heo đất.', - 'suggested_savings_per_month' => 'Đề xuất mỗi tháng', + 'event_history' => 'Event history', + 'add_money_to_piggy' => 'Thêm tiền vào heo đất ":name"', + 'piggy_bank' => 'Heo đất', + 'new_piggy_bank' => 'Tạo heo đất mới', + 'store_piggy_bank' => 'Lưu trữ heo đất mới', + 'stored_piggy_bank' => 'Lưu trữ heo đất mới ":name"', + 'account_status' => 'Tình trạng tài khoản', + 'left_for_piggy_banks' => 'Còn lại cho heo đất', + 'sum_of_piggy_banks' => 'Tổng số heo đất', + 'saved_so_far' => 'Tiết kiệm cho đến nay', + 'left_to_save' => 'Còn lại để tiết kiệm', + 'suggested_amount' => 'Số tiền đề xuất hàng tháng để tiết kiệm', + 'add_money_to_piggy_title' => 'Thêm tiền vào heo đất ":name"', + 'remove_money_from_piggy_title' => 'Xóa tiền từ heo đất ":name"', + 'add' => 'Thêm vào', + 'no_money_for_piggy' => 'Bạn không có tiền để đặt vào heo đất.', + 'suggested_savings_per_month' => 'Đề xuất mỗi tháng', - 'remove' => 'Xóa', - 'max_amount_add' => 'Số tiền tối đa bạn có thể thêm là', - 'max_amount_remove' => 'Số tiền tối đa bạn có thể loại bỏ là', - 'update_piggy_button' => 'Cập nhật heo đất', - 'update_piggy_title' => 'Cập nhật heo đất ":name"', - 'updated_piggy_bank' => 'Đã cập nhật heo đất ":name"', - 'details' => 'Chi tiết', - 'events' => 'Sự kiện', - 'target_amount' => 'Số lượng mục tiêu', - 'start_date' => 'Ngày bắt đầu', - 'no_start_date' => 'Không có ngày bắt đầu', - 'target_date' => 'Ngày mục tiêu', - 'no_target_date' => 'Không có ngày mục tiêu', - 'table' => 'Bàn', - 'delete_piggy_bank' => 'Xóa heo đất ":name"', - 'cannot_add_amount_piggy' => 'Không thể thêm: số tiền vào ":name".', - 'cannot_remove_from_piggy' => 'Không thể xóa :amount từ ":name".', - 'deleted_piggy_bank' => 'Xóa heo đất ":name"', - 'added_amount_to_piggy' => 'Đã thêm :amount vào ":name"', - 'removed_amount_from_piggy' => 'Đã xóa :amount từ ":name"', - 'piggy_events' => 'Liên quan heo đất ', + 'remove' => 'Xóa', + 'max_amount_add' => 'Số tiền tối đa bạn có thể thêm là', + 'max_amount_remove' => 'Số tiền tối đa bạn có thể loại bỏ là', + 'update_piggy_button' => 'Cập nhật heo đất', + 'update_piggy_title' => 'Cập nhật heo đất ":name"', + 'updated_piggy_bank' => 'Đã cập nhật heo đất ":name"', + 'details' => 'Chi tiết', + 'events' => 'Sự kiện', + 'target_amount' => 'Số lượng mục tiêu', + 'start_date' => 'Ngày bắt đầu', + 'no_start_date' => 'Không có ngày bắt đầu', + 'target_date' => 'Ngày mục tiêu', + 'no_target_date' => 'Không có ngày mục tiêu', + 'table' => 'Bàn', + 'delete_piggy_bank' => 'Xóa heo đất ":name"', + 'cannot_add_amount_piggy' => 'Không thể thêm: số tiền vào ":name".', + 'cannot_remove_from_piggy' => 'Không thể xóa :amount từ ":name".', + 'deleted_piggy_bank' => 'Xóa heo đất ":name"', + 'added_amount_to_piggy' => 'Đã thêm :amount vào ":name"', + 'removed_amount_from_piggy' => 'Đã xóa :amount từ ":name"', + 'piggy_events' => 'Liên quan heo đất ', // tags - 'delete_tag' => 'Xóa nhãn ":tag"', - 'deleted_tag' => 'Đã xóa nhãn ":tag"', - 'new_tag' => 'Tạo nhãn mới', - 'edit_tag' => 'Chỉnh sửa nhãn ":tag"', - 'updated_tag' => 'Đã cập nhật nhãn ":tag"', - 'created_tag' => 'Nhãn ":tag" đã được tạo!', + 'delete_tag' => 'Xóa nhãn ":tag"', + 'deleted_tag' => 'Đã xóa nhãn ":tag"', + 'new_tag' => 'Tạo nhãn mới', + 'edit_tag' => 'Chỉnh sửa nhãn ":tag"', + 'updated_tag' => 'Đã cập nhật nhãn ":tag"', + 'created_tag' => 'Nhãn ":tag" đã được tạo!', - 'transaction_journal_information' => 'Thông tin giao dịch', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => 'Thông tin tổng hợp', - 'transaction_journal_more' => 'Thêm thông tin', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => 'Được lưu trữ dưới ":journal"', - 'total_amount' => 'Tổng cộng', - 'number_of_decimals' => 'Số thập phân', + 'transaction_journal_information' => 'Thông tin giao dịch', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => 'Thông tin tổng hợp', + 'transaction_journal_more' => 'Thêm thông tin', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => 'Được lưu trữ dưới ":journal"', + 'total_amount' => 'Tổng cộng', + 'number_of_decimals' => 'Số thập phân', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => 'Quản trị', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => 'Quản lý người dùng', - 'list_all_users' => 'Tất cả người dùng', - 'all_users' => 'Tất cả người dùng', - 'instance_configuration' => 'Cấu hình', - 'firefly_instance_configuration' => 'Cấu hình tùy chọn cho Firefly III', - 'setting_single_user_mode' => 'Chế độ người dùng đơn', - 'setting_single_user_mode_explain' => 'Theo mặc định, Firefly III chỉ cho phép một (1) người đăng ký là bạn. Đây là một biện pháp bảo mật, ngăn người khác sử dụng trừ khi bạn cho phép họ sử dụng. Đăng ký bị chặn. Khi bạn bỏ chọn hộp này, những người khác cũng có thể sử dụng.', - 'store_configuration' => 'Lưu trữ cấu hình', - 'single_user_administration' => 'Người dùng quản lý :email', - 'edit_user' => 'Chỉnh sửa người dùng :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => 'Dữ liệu người dùng', - 'user_information' => 'Thông tin người dùng', - 'total_size' => 'tổng kích thước', - 'budget_or_budgets' => ':count ngân sách', - 'budgets_with_limits' => ':count ngân sách với số tiền được định cấu hình', - 'nr_of_rules_in_total_groups' => ':count_rules quy tắc trong :count_groups nhóm quy tắc', - 'tag_or_tags' => ':count nhãn', - 'configuration_updated' => 'Cấu hình đã được cập nhật', - 'setting_is_demo_site' => 'Trang web demo', - 'setting_is_demo_site_explain' => 'Nếu bạn chọn hộp này, cài đặt này sẽ hoạt động như trang demo, có thể có tác dụng phụ kỳ lạ.', - 'block_code_bounced' => 'Email (s) bị trả về', - 'block_code_expired' => 'Tài khoản demo đã hết hạn', - 'no_block_code' => 'Không có lý do chặn hoặc người dùng không bị chặn', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => 'Người dùng chưa xác nhận địa chỉ email mới', - 'admin_update_email' => 'Trái với trang hồ sơ, người dùng sẽ KHÔNG được thông báo địa chỉ email của họ đã thay đổi!', - 'update_user' => 'Cập nhật người dùng', - 'updated_user' => 'Dữ liệu người dùng đã được thay đổi.', - 'delete_user' => 'Xóa người dùng :email', - 'user_deleted' => 'Người dùng đã bị xóa', - 'send_test_email' => 'Gửi tin nhắn email kiểm tra', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Gửi tin nhắn', - 'send_test_triggered' => 'Kiểm tra đã được kích hoạt. Kiểm tra hộp thư đến của bạn và các tệp nhật ký.', - 'give_admin_careful' => 'Người dùng được trao quyền quản trị có thể lấy đi của bạn. Hãy cẩn thận.', - 'admin_maintanance_title' => 'Bảo trì', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Xóa bộ nhớ đệm', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => 'Quản trị', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => 'Quản lý người dùng', + 'list_all_users' => 'Tất cả người dùng', + 'all_users' => 'Tất cả người dùng', + 'instance_configuration' => 'Cấu hình', + 'firefly_instance_configuration' => 'Cấu hình tùy chọn cho Firefly III', + 'setting_single_user_mode' => 'Chế độ người dùng đơn', + 'setting_single_user_mode_explain' => 'Theo mặc định, Firefly III chỉ cho phép một (1) người đăng ký là bạn. Đây là một biện pháp bảo mật, ngăn người khác sử dụng trừ khi bạn cho phép họ sử dụng. Đăng ký bị chặn. Khi bạn bỏ chọn hộp này, những người khác cũng có thể sử dụng.', + 'store_configuration' => 'Lưu trữ cấu hình', + 'single_user_administration' => 'Người dùng quản lý :email', + 'edit_user' => 'Chỉnh sửa người dùng :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => 'Dữ liệu người dùng', + 'user_information' => 'Thông tin người dùng', + 'total_size' => 'tổng kích thước', + 'budget_or_budgets' => ':count ngân sách', + 'budgets_with_limits' => ':count ngân sách với số tiền được định cấu hình', + 'nr_of_rules_in_total_groups' => ':count_rules quy tắc trong :count_groups nhóm quy tắc', + 'tag_or_tags' => ':count nhãn', + 'configuration_updated' => 'Cấu hình đã được cập nhật', + 'setting_is_demo_site' => 'Trang web demo', + 'setting_is_demo_site_explain' => 'Nếu bạn chọn hộp này, cài đặt này sẽ hoạt động như trang demo, có thể có tác dụng phụ kỳ lạ.', + 'block_code_bounced' => 'Email (s) bị trả về', + 'block_code_expired' => 'Tài khoản demo đã hết hạn', + 'no_block_code' => 'Không có lý do chặn hoặc người dùng không bị chặn', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => 'Người dùng chưa xác nhận địa chỉ email mới', + 'admin_update_email' => 'Trái với trang hồ sơ, người dùng sẽ KHÔNG được thông báo địa chỉ email của họ đã thay đổi!', + 'update_user' => 'Cập nhật người dùng', + 'updated_user' => 'Dữ liệu người dùng đã được thay đổi.', + 'delete_user' => 'Xóa người dùng :email', + 'user_deleted' => 'Người dùng đã bị xóa', + 'send_test_email' => 'Gửi tin nhắn email kiểm tra', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Gửi tin nhắn', + 'send_test_triggered' => 'Kiểm tra đã được kích hoạt. Kiểm tra hộp thư đến của bạn và các tệp nhật ký.', + 'give_admin_careful' => 'Người dùng được trao quyền quản trị có thể lấy đi của bạn. Hãy cẩn thận.', + 'admin_maintanance_title' => 'Bảo trì', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Xóa bộ nhớ đệm', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => 'Mô tả giao dịch tách', - 'split_transaction_title_help' => 'Nếu bạn tạo một giao dịch phân tách, phải có một mô tả toàn cầu cho tất cả các phân chia của giao dịch.', - 'split_title_help' => 'Nếu bạn tạo một giao dịch phân tách, phải có một mô tả toàn cầu cho tất cả các phân chia của giao dịch.', - 'you_create_transfer' => 'Bạn đang tạo một chuyển khoản.', - 'you_create_withdrawal' => 'Bạn đang tạo một rút tiền.', - 'you_create_deposit' => 'Bạn đang tạo một tiền gửi.', + 'split_transaction_title' => 'Mô tả giao dịch tách', + 'split_transaction_title_help' => 'Nếu bạn tạo một giao dịch phân tách, phải có một mô tả toàn cầu cho tất cả các phân chia của giao dịch.', + 'split_title_help' => 'Nếu bạn tạo một giao dịch phân tách, phải có một mô tả toàn cầu cho tất cả các phân chia của giao dịch.', + 'you_create_transfer' => 'Bạn đang tạo một chuyển khoản.', + 'you_create_withdrawal' => 'Bạn đang tạo một rút tiền.', + 'you_create_deposit' => 'Bạn đang tạo một tiền gửi.', // links - 'journal_link_configuration' => 'Cấu hình liên kết giao dịch', - 'create_new_link_type' => 'Tạo loại liên kết mới', - 'store_new_link_type' => 'Lưu trữ loại liên kết mới', - 'update_link_type' => 'Cập nhật loại liên kết', - 'edit_link_type' => 'Chỉnh sửa loại liên kết ":name"', - 'updated_link_type' => 'Cập nhật loại liên kết ":name"', - 'delete_link_type' => 'Xóa loại liên kết ":name"', - 'deleted_link_type' => 'Đã xóa loại liên kết ":name"', - 'stored_new_link_type' => 'Lưu trữ loại liên kết mới ":name"', - 'cannot_edit_link_type' => 'Không thể chỉnh sửa loại liên kết ":name"', - 'link_type_help_name' => 'Ie. "Bản sao"', - 'link_type_help_inward' => 'Ie. "bản sao"', - 'link_type_help_outward' => 'Ie. "được nhân đôi bởi"', - 'save_connections_by_moving' => 'Lưu liên kết giữa các giao dịch này bằng cách di chuyển chúng sang loại liên kết khác:', - 'do_not_save_connection' => '(không lưu kết nối)', - 'link_transaction' => 'Liên kết giao dịch', - 'link_to_other_transaction' => 'Liên kết giao dịch này với giao dịch khác', - 'select_transaction_to_link' => 'Chọn một giao dịch để liên kết giao dịch này với. Các liên kết hiện không được sử dụng trong Firefly III (ngoài việc được hiển thị), nhưng tôi dự định sẽ thay đổi điều này trong tương lai. Sử dụng hộp tìm kiếm để chọn giao dịch theo tiêu đề hoặc theo ID. Nếu bạn muốn thêm các loại liên kết tùy chỉnh, hãy xem phần quản trị.', - 'this_transaction' => 'Giao dịch này', - 'transaction' => 'Giao dịch', - 'comments' => 'Bình luận', - 'link_notes' => 'Bất kỳ ghi chú bạn muốn lưu trữ với các liên kết.', - 'invalid_link_selection' => 'Không thể liên kết các giao dịch này', - 'selected_transaction' => 'Giao dịch được chọn', - 'journals_linked' => 'Giao dịch được liên kết.', - 'journals_error_linked' => 'Các giao dịch này đã được liên kết.', - 'journals_link_to_self' => 'Bạn không thể liên kết một giao dịch với chính nó', - 'journal_links' => 'Liên kết giao dịch', - 'this_withdrawal' => 'Rút tiền này', - 'this_deposit' => 'Khoản tiền gửi này', - 'this_transfer' => 'Chuyển khoản này', - 'overview_for_link' => 'Tổng quan về loại liên kết ":name"', - 'source_transaction' => 'Giao dịch nguồn', - 'link_description' => 'Mô tả liên kết', - 'destination_transaction' => 'Giao dịch đích', - 'delete_journal_link' => 'Xóa liên kết giữa :source:destination', - 'deleted_link' => 'Xóa liên kết', + 'journal_link_configuration' => 'Cấu hình liên kết giao dịch', + 'create_new_link_type' => 'Tạo loại liên kết mới', + 'store_new_link_type' => 'Lưu trữ loại liên kết mới', + 'update_link_type' => 'Cập nhật loại liên kết', + 'edit_link_type' => 'Chỉnh sửa loại liên kết ":name"', + 'updated_link_type' => 'Cập nhật loại liên kết ":name"', + 'delete_link_type' => 'Xóa loại liên kết ":name"', + 'deleted_link_type' => 'Đã xóa loại liên kết ":name"', + 'stored_new_link_type' => 'Lưu trữ loại liên kết mới ":name"', + 'cannot_edit_link_type' => 'Không thể chỉnh sửa loại liên kết ":name"', + 'link_type_help_name' => 'Ie. "Bản sao"', + 'link_type_help_inward' => 'Ie. "bản sao"', + 'link_type_help_outward' => 'Ie. "được nhân đôi bởi"', + 'save_connections_by_moving' => 'Lưu liên kết giữa các giao dịch này bằng cách di chuyển chúng sang loại liên kết khác:', + 'do_not_save_connection' => '(không lưu kết nối)', + 'link_transaction' => 'Liên kết giao dịch', + 'link_to_other_transaction' => 'Liên kết giao dịch này với giao dịch khác', + 'select_transaction_to_link' => 'Chọn một giao dịch để liên kết giao dịch này với. Các liên kết hiện không được sử dụng trong Firefly III (ngoài việc được hiển thị), nhưng tôi dự định sẽ thay đổi điều này trong tương lai. Sử dụng hộp tìm kiếm để chọn giao dịch theo tiêu đề hoặc theo ID. Nếu bạn muốn thêm các loại liên kết tùy chỉnh, hãy xem phần quản trị.', + 'this_transaction' => 'Giao dịch này', + 'transaction' => 'Giao dịch', + 'comments' => 'Bình luận', + 'link_notes' => 'Bất kỳ ghi chú bạn muốn lưu trữ với các liên kết.', + 'invalid_link_selection' => 'Không thể liên kết các giao dịch này', + 'selected_transaction' => 'Giao dịch được chọn', + 'journals_linked' => 'Giao dịch được liên kết.', + 'journals_error_linked' => 'Các giao dịch này đã được liên kết.', + 'journals_link_to_self' => 'Bạn không thể liên kết một giao dịch với chính nó', + 'journal_links' => 'Liên kết giao dịch', + 'this_withdrawal' => 'Rút tiền này', + 'this_deposit' => 'Khoản tiền gửi này', + 'this_transfer' => 'Chuyển khoản này', + 'overview_for_link' => 'Tổng quan về loại liên kết ":name"', + 'source_transaction' => 'Giao dịch nguồn', + 'link_description' => 'Mô tả liên kết', + 'destination_transaction' => 'Giao dịch đích', + 'delete_journal_link' => 'Xóa liên kết giữa :source:destination', + 'deleted_link' => 'Xóa liên kết', // link translations: - 'Paid_name' => 'Đã thanh toán', - 'Refund_name' => 'Hoàn tiền', - 'Reimbursement_name' => 'Hoàn trả', - 'Related_name' => 'Liên quan', - 'relates to_inward' => 'liên quan tới', - 'is (partially) refunded by_inward' => 'được (một phần) hoàn lại tiền bởi', - 'is (partially) paid for by_inward' => 'được (một phần) thanh toán cho', - 'is (partially) reimbursed by_inward' => 'được (một phần) hoàn trả bởi', - 'inward_transaction' => 'Giao dịch trong', - 'outward_transaction' => 'Giao dịch bên ngoài', - 'relates to_outward' => 'liên quan tới', - '(partially) refunds_outward' => '(một phần) hoàn tiền', - '(partially) pays for_outward' => '(một phần) trả tiền cho', - '(partially) reimburses_outward' => '(một phần) hoàn trả', - 'is (partially) refunded by' => 'được hoàn tiền bởi', - 'is (partially) paid for by' => 'được thanh toán cho', - 'is (partially) reimbursed by' => 'được hoàn trả bởi', - 'relates to' => 'liên quan tới', - '(partially) refunds' => 'hoàn tiền *một phần(', - '(partially) pays for' => 'thanh toán cho *một phần(', - '(partially) reimburses' => 'hoàn trả *một phần)', + 'Paid_name' => 'Đã thanh toán', + 'Refund_name' => 'Hoàn tiền', + 'Reimbursement_name' => 'Hoàn trả', + 'Related_name' => 'Liên quan', + 'relates to_inward' => 'liên quan tới', + 'is (partially) refunded by_inward' => 'được (một phần) hoàn lại tiền bởi', + 'is (partially) paid for by_inward' => 'được (một phần) thanh toán cho', + 'is (partially) reimbursed by_inward' => 'được (một phần) hoàn trả bởi', + 'inward_transaction' => 'Giao dịch trong', + 'outward_transaction' => 'Giao dịch bên ngoài', + 'relates to_outward' => 'liên quan tới', + '(partially) refunds_outward' => '(một phần) hoàn tiền', + '(partially) pays for_outward' => '(một phần) trả tiền cho', + '(partially) reimburses_outward' => '(một phần) hoàn trả', + 'is (partially) refunded by' => 'được hoàn tiền bởi', + 'is (partially) paid for by' => 'được thanh toán cho', + 'is (partially) reimbursed by' => 'được hoàn trả bởi', + 'relates to' => 'liên quan tới', + '(partially) refunds' => 'hoàn tiền *một phần(', + '(partially) pays for' => 'thanh toán cho *một phần(', + '(partially) reimburses' => 'hoàn trả *một phần)', // split a transaction: - 'splits' => 'Tách', - 'add_another_split' => 'Thêm một phân chia khác', - 'cannot_edit_opening_balance' => 'Bạn không thể chỉnh sửa số dư mở của tài khoản.', - 'no_edit_multiple_left' => 'Bạn đã chọn không có giao dịch hợp lệ để chỉnh sửa.', - 'breadcrumb_convert_group' => 'Chuyển đổi giao dịch', - 'convert_invalid_source' => 'Thông tin nguồn không hợp lệ cho giao dịch #%d.', - 'convert_invalid_destination' => 'Thông tin đích không hợp lệ cho giao dịch #%d.', - 'create_another' => 'Sau khi lưu trữ, quay trở lại đây để tạo một cái khác.', - 'after_update_create_another' => 'Sau khi cập nhật, quay lại đây để tiếp tục chỉnh sửa.', - 'store_as_new' => 'Lưu trữ như một giao dịch mới thay vì cập nhật.', - 'reset_after' => 'Đặt lại mẫu sau khi gửi', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => 'Tách', + 'add_another_split' => 'Thêm một phân chia khác', + 'cannot_edit_opening_balance' => 'Bạn không thể chỉnh sửa số dư mở của tài khoản.', + 'no_edit_multiple_left' => 'Bạn đã chọn không có giao dịch hợp lệ để chỉnh sửa.', + 'breadcrumb_convert_group' => 'Chuyển đổi giao dịch', + 'convert_invalid_source' => 'Thông tin nguồn không hợp lệ cho giao dịch #%d.', + 'convert_invalid_destination' => 'Thông tin đích không hợp lệ cho giao dịch #%d.', + 'create_another' => 'Sau khi lưu trữ, quay trở lại đây để tạo một cái khác.', + 'after_update_create_another' => 'Sau khi cập nhật, quay lại đây để tiếp tục chỉnh sửa.', + 'store_as_new' => 'Lưu trữ như một giao dịch mới thay vì cập nhật.', + 'reset_after' => 'Đặt lại mẫu sau khi gửi', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(chưa nhóm)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(chưa nhóm)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => 'Hãy tạo một tài khoản!', - 'no_accounts_intro_asset' => 'Bạn chưa có tài khoản tài khoản là tài khoản chính của bạn: tài khoản kiểm tra, tài khoản tiết kiệm, tài khoản dùng chung hoặc thậm chí thẻ tín dụng của bạn.', - 'no_accounts_imperative_asset' => 'Để bắt đầu sử dụng Firefly III, bạn phải tạo ít nhất một tài khoản. Hãy làm như vậy ngay bây giờ:', - 'no_accounts_create_asset' => 'Tạo một tài khoản', - 'no_accounts_title_expense' => 'Hãy tạo một tài khoản chi phí!', - 'no_accounts_intro_expense' => 'Bạn chưa có tài khoản chi phí. Tài khoản chi tiêu là nơi bạn tiêu tiền, chẳng hạn như cửa hàng và siêu thị.', - 'no_accounts_imperative_expense' => 'Tài khoản chi phí được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một tài khoản theo cách thủ công, nếu bạn muốn. Hãy tạo ngay bây giờ:', - 'no_accounts_create_expense' => 'Tạo một tài khoản chi phí', - 'no_accounts_title_revenue' => 'Hãy tạo một tài khoản doanh thu!', - 'no_accounts_intro_revenue' => 'Bạn chưa có tài khoản doanh thu. Tài khoản doanh thu là nơi bạn nhận được tiền, chẳng hạn như chủ nhân của bạn.', - 'no_accounts_imperative_revenue' => 'Tài khoản doanh thu được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một giao dịch theo cách thủ công, nếu bạn muốn. Hãy tạo ngay bây giờ:', - 'no_accounts_create_revenue' => 'Tạo một tài khoản doanh thu', - 'no_accounts_title_liabilities' => 'Hãy tạo một tài khoản nợ!', - 'no_accounts_intro_liabilities' => 'Bạn chưa có tài khoản nợ. Nợ phải trả là các tài khoản đăng ký khoản vay (sinh viên) của bạn và các khoản nợ khác.', - 'no_accounts_imperative_liabilities' => 'Bạn không phải sử dụng tính năng này, nhưng nó có thể hữu ích nếu bạn muốn theo dõi những điều này.', - 'no_accounts_create_liabilities' => 'Tạo một tài khoản nợ', - 'no_budgets_title_default' => 'Hãy tạo một ngân sách', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'Bạn chưa có ngân sách. Ngân sách được sử dụng để sắp xếp chi tiêu của bạn thành các nhóm hợp lý, bạn có thể cung cấp giới hạn mềm để giới hạn chi phí của mình.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => 'Ngân sách là công cụ cơ bản của quản lý tài chính. Hãy tạo ngay bây giờ:', - 'no_budgets_create_default' => 'Tạo ngân sách', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => 'Hãy tạo một danh mục!', - 'no_categories_intro_default' => 'Bạn chưa có danh mục nào. Danh mục được sử dụng để tinh chỉnh các giao dịch của bạn và gắn nhãn chúng với danh mục được chỉ định của chúng.', - 'no_categories_imperative_default' => 'Danh mục được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một giao dịch theo cách thủ công. Hãy tạo ngay bây giờ:', - 'no_categories_create_default' => 'Tạo một danh mục', - 'no_tags_title_default' => 'Hãy tạo một nhãn!', - 'no_tags_intro_default' => 'Bạn chưa có nhãn nào. Các nhãn được sử dụng để tinh chỉnh các giao dịch của bạn và gắn nhãn chúng với các từ khóa cụ thể.', - 'no_tags_imperative_default' => 'Nhãn được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một nhãn theo cách thủ công. Hãy tạo ngay bây giờ:', - 'no_tags_create_default' => 'Tạo một nhãn', - 'no_transactions_title_withdrawal' => 'Hãy tạo ra một chi phí!', - 'no_transactions_intro_withdrawal' => 'Bạn chưa có chi phí nào. Bạn nên tạo chi phí để bắt đầu quản lý tài chính của mình.', - 'no_transactions_imperative_withdrawal' => 'Bạn đã tiêu một số tiền? Sau đó, bạn nên thêm nó vào:', - 'no_transactions_create_withdrawal' => 'Tạo một chi phí', - 'no_transactions_title_deposit' => 'Hãy tạo thu nhập!', - 'no_transactions_intro_deposit' => 'Bạn chưa có thu nhập được ghi nhận. Bạn nên tạo các mục thu nhập để bắt đầu quản lý tài chính của mình để tạo một số thu nhập.', - 'no_transactions_imperative_deposit' => 'Bạn đã nhận được một số tiền? Sau đó, bạn nên thêm nó vào:', - 'no_transactions_create_deposit' => 'Tạo một khoản tiền gửi', - 'no_transactions_title_transfers' => 'Hãy tạo một chuyển khoản!', - 'no_transactions_intro_transfers' => 'Bạn chưa có chuyển khoản nào. Khi bạn chuyển tiền giữa các tài khoản, nó được ghi lại dưới dạng chuyển khoản.', - 'no_transactions_imperative_transfers' => 'Bạn đã chuyển một số tiền xung quanh? Sau đó, bạn nên thêm nó vào:', - 'no_transactions_create_transfers' => 'Tạo chuyển khoản', - 'no_piggies_title_default' => 'Hãy tạo ra một con heo đất!', - 'no_piggies_intro_default' => 'Bạn chưa có con heo đất nào. Bạn có thể tạo con heo đất để chia tiền tiết kiệm của mình và theo dõi những gì bạn đang tiết kiệm.', - 'no_piggies_imperative_default' => 'Bạn có những thứ bạn đang tiết kiệm tiền không? Tạo một con heo đất và theo dõi:', - 'no_piggies_create_default' => 'Tạo một con heo đất mới', - 'no_bills_title_default' => 'Hãy tạo một hóa đơn!', - 'no_bills_intro_default' => 'Bạn chưa có hóa đơn. Bạn có thể tạo các hóa đơn để theo dõi các chi phí thường xuyên, như tiền thuê nhà hoặc bảo hiểm của bạn.', - 'no_bills_imperative_default' => 'Bạn thường có hóa đơn như vậy? Tạo hóa đơn và theo dõi các khoản thanh toán của bạn:', - 'no_bills_create_default' => 'Tạo hóa đơn', + 'no_accounts_title_asset' => 'Hãy tạo một tài khoản!', + 'no_accounts_intro_asset' => 'Bạn chưa có tài khoản tài khoản là tài khoản chính của bạn: tài khoản kiểm tra, tài khoản tiết kiệm, tài khoản dùng chung hoặc thậm chí thẻ tín dụng của bạn.', + 'no_accounts_imperative_asset' => 'Để bắt đầu sử dụng Firefly III, bạn phải tạo ít nhất một tài khoản. Hãy làm như vậy ngay bây giờ:', + 'no_accounts_create_asset' => 'Tạo một tài khoản', + 'no_accounts_title_expense' => 'Hãy tạo một tài khoản chi phí!', + 'no_accounts_intro_expense' => 'Bạn chưa có tài khoản chi phí. Tài khoản chi tiêu là nơi bạn tiêu tiền, chẳng hạn như cửa hàng và siêu thị.', + 'no_accounts_imperative_expense' => 'Tài khoản chi phí được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một tài khoản theo cách thủ công, nếu bạn muốn. Hãy tạo ngay bây giờ:', + 'no_accounts_create_expense' => 'Tạo một tài khoản chi phí', + 'no_accounts_title_revenue' => 'Hãy tạo một tài khoản doanh thu!', + 'no_accounts_intro_revenue' => 'Bạn chưa có tài khoản doanh thu. Tài khoản doanh thu là nơi bạn nhận được tiền, chẳng hạn như chủ nhân của bạn.', + 'no_accounts_imperative_revenue' => 'Tài khoản doanh thu được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một giao dịch theo cách thủ công, nếu bạn muốn. Hãy tạo ngay bây giờ:', + 'no_accounts_create_revenue' => 'Tạo một tài khoản doanh thu', + 'no_accounts_title_liabilities' => 'Hãy tạo một tài khoản nợ!', + 'no_accounts_intro_liabilities' => 'Bạn chưa có tài khoản nợ. Nợ phải trả là các tài khoản đăng ký khoản vay (sinh viên) của bạn và các khoản nợ khác.', + 'no_accounts_imperative_liabilities' => 'Bạn không phải sử dụng tính năng này, nhưng nó có thể hữu ích nếu bạn muốn theo dõi những điều này.', + 'no_accounts_create_liabilities' => 'Tạo một tài khoản nợ', + 'no_budgets_title_default' => 'Hãy tạo một ngân sách', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'Bạn chưa có ngân sách. Ngân sách được sử dụng để sắp xếp chi tiêu của bạn thành các nhóm hợp lý, bạn có thể cung cấp giới hạn mềm để giới hạn chi phí của mình.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => 'Ngân sách là công cụ cơ bản của quản lý tài chính. Hãy tạo ngay bây giờ:', + 'no_budgets_create_default' => 'Tạo ngân sách', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => 'Hãy tạo một danh mục!', + 'no_categories_intro_default' => 'Bạn chưa có danh mục nào. Danh mục được sử dụng để tinh chỉnh các giao dịch của bạn và gắn nhãn chúng với danh mục được chỉ định của chúng.', + 'no_categories_imperative_default' => 'Danh mục được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một giao dịch theo cách thủ công. Hãy tạo ngay bây giờ:', + 'no_categories_create_default' => 'Tạo một danh mục', + 'no_tags_title_default' => 'Hãy tạo một nhãn!', + 'no_tags_intro_default' => 'Bạn chưa có nhãn nào. Các nhãn được sử dụng để tinh chỉnh các giao dịch của bạn và gắn nhãn chúng với các từ khóa cụ thể.', + 'no_tags_imperative_default' => 'Nhãn được tạo tự động khi bạn tạo giao dịch, nhưng bạn cũng có thể tạo một nhãn theo cách thủ công. Hãy tạo ngay bây giờ:', + 'no_tags_create_default' => 'Tạo một nhãn', + 'no_transactions_title_withdrawal' => 'Hãy tạo ra một chi phí!', + 'no_transactions_intro_withdrawal' => 'Bạn chưa có chi phí nào. Bạn nên tạo chi phí để bắt đầu quản lý tài chính của mình.', + 'no_transactions_imperative_withdrawal' => 'Bạn đã tiêu một số tiền? Sau đó, bạn nên thêm nó vào:', + 'no_transactions_create_withdrawal' => 'Tạo một chi phí', + 'no_transactions_title_deposit' => 'Hãy tạo thu nhập!', + 'no_transactions_intro_deposit' => 'Bạn chưa có thu nhập được ghi nhận. Bạn nên tạo các mục thu nhập để bắt đầu quản lý tài chính của mình để tạo một số thu nhập.', + 'no_transactions_imperative_deposit' => 'Bạn đã nhận được một số tiền? Sau đó, bạn nên thêm nó vào:', + 'no_transactions_create_deposit' => 'Tạo một khoản tiền gửi', + 'no_transactions_title_transfers' => 'Hãy tạo một chuyển khoản!', + 'no_transactions_intro_transfers' => 'Bạn chưa có chuyển khoản nào. Khi bạn chuyển tiền giữa các tài khoản, nó được ghi lại dưới dạng chuyển khoản.', + 'no_transactions_imperative_transfers' => 'Bạn đã chuyển một số tiền xung quanh? Sau đó, bạn nên thêm nó vào:', + 'no_transactions_create_transfers' => 'Tạo chuyển khoản', + 'no_piggies_title_default' => 'Hãy tạo ra một con heo đất!', + 'no_piggies_intro_default' => 'Bạn chưa có con heo đất nào. Bạn có thể tạo con heo đất để chia tiền tiết kiệm của mình và theo dõi những gì bạn đang tiết kiệm.', + 'no_piggies_imperative_default' => 'Bạn có những thứ bạn đang tiết kiệm tiền không? Tạo một con heo đất và theo dõi:', + 'no_piggies_create_default' => 'Tạo một con heo đất mới', + 'no_bills_title_default' => 'Hãy tạo một hóa đơn!', + 'no_bills_intro_default' => 'Bạn chưa có hóa đơn. Bạn có thể tạo các hóa đơn để theo dõi các chi phí thường xuyên, như tiền thuê nhà hoặc bảo hiểm của bạn.', + 'no_bills_imperative_default' => 'Bạn thường có hóa đơn như vậy? Tạo hóa đơn và theo dõi các khoản thanh toán của bạn:', + 'no_bills_create_default' => 'Tạo hóa đơn', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => 'Giao dịch định kỳ', - 'repeat_until_in_past' => 'Giao dịch định kỳ này đã dừng lặp lại vào :date.', - 'recurring_calendar_view' => 'Lịch', - 'no_recurring_title_default' => 'Hãy tạo một giao dịch định kỳ!', - 'no_recurring_intro_default' => 'Bạn chưa có giao dịch định kỳ. Bạn có thể sử dụng những thứ này để Firefly III tự động tạo giao dịch cho bạn.', - 'no_recurring_imperative_default' => 'Đây là một tính năng khá tiên tiến nhưng nó có thể cực kỳ hữu ích. Hãy chắc chắn rằng bạn đã đọc tài liệu (?) - biểu tượng ở góc trên bên phải) trước khi bạn tiếp tục.', - 'no_recurring_create_default' => 'Tạo giao dịch định kỳ', - 'make_new_recurring' => 'Tạo giao dịch định kỳ', - 'recurring_daily' => 'Hằng ngày', - 'recurring_weekly' => 'Mỗi tuần vào: ngày trong tuần', - 'recurring_weekly_skip' => 'Mỗi ngày: bỏ qua (st / nd / nd / th) tuần vào: ngày trong tuần', - 'recurring_monthly' => 'Hàng tháng vào ngày: dayOfMonth (st / nd / rd / th) ngày', - 'recurring_monthly_skip' => 'Mỗi: bỏ qua (st / nd / nd / th) tháng vào: dayOfMonth (st / nd / rd / th) ngày', - 'recurring_ndom' => 'Hàng tháng vào: dayOfMonth (st / nd / rd / th): ngày trong tuần', - 'recurring_yearly' => 'Hàng năm vào: ngày', - 'overview_for_recurrence' => 'Tổng quan về giao dịch định kỳ ":title"', - 'warning_duplicates_repetitions' => 'Trong các trường hợp hiếm hoi, ngày xuất hiện hai lần trong danh sách này. Điều này có thể xảy ra khi nhiều lần lặp lại va chạm. Firefly III sẽ luôn tạo một giao dịch mỗi ngày.', - 'created_transactions' => 'Giao dịch liên quan', - 'expected_withdrawals' => 'Rút tiền dự kiến', - 'expected_deposits' => 'Tiền gửi dự kiến', - 'expected_transfers' => 'Chuyển khoản dự kiến', - 'created_withdrawals' => 'Tạo rút tiền', - 'created_deposits' => 'Tạo tiền gửi', - 'created_transfers' => 'Tạo chuyển khoản', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => 'Được tạo từ giao dịch định kỳ ":title" (#:id)', - 'recurring_never_cron' => 'Có vẻ như công việc định kỳ cần thiết để hỗ trợ các giao dịch định kỳ chưa bao giờ chạy. Điều này là tất nhiên bình thường khi bạn vừa cài đặt Firefly III, nhưng đây sẽ là thứ cần thiết lập càng sớm càng tốt. Vui lòng kiểm tra các trang trợ giúp bằng biểu tượng (?) - ở góc trên cùng bên phải của trang.', - 'recurring_cron_long_ago' => 'Có vẻ như đã hơn 36 giờ kể từ khi công việc định kỳ hỗ trợ các giao dịch định kỳ được thực hiện lần cuối. Bạn có chắc chắn rằng nó đã được thiết lập chính xác? Vui lòng kiểm tra các trang trợ giúp bằng biểu tượng (?) - ở góc trên cùng bên phải của trang.', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => 'Giao dịch định kỳ', + 'repeat_until_in_past' => 'Giao dịch định kỳ này đã dừng lặp lại vào :date.', + 'recurring_calendar_view' => 'Lịch', + 'no_recurring_title_default' => 'Hãy tạo một giao dịch định kỳ!', + 'no_recurring_intro_default' => 'Bạn chưa có giao dịch định kỳ. Bạn có thể sử dụng những thứ này để Firefly III tự động tạo giao dịch cho bạn.', + 'no_recurring_imperative_default' => 'Đây là một tính năng khá tiên tiến nhưng nó có thể cực kỳ hữu ích. Hãy chắc chắn rằng bạn đã đọc tài liệu (?) - biểu tượng ở góc trên bên phải) trước khi bạn tiếp tục.', + 'no_recurring_create_default' => 'Tạo giao dịch định kỳ', + 'make_new_recurring' => 'Tạo giao dịch định kỳ', + 'recurring_daily' => 'Hằng ngày', + 'recurring_weekly' => 'Mỗi tuần vào: ngày trong tuần', + 'recurring_weekly_skip' => 'Mỗi ngày: bỏ qua (st / nd / nd / th) tuần vào: ngày trong tuần', + 'recurring_monthly' => 'Hàng tháng vào ngày: dayOfMonth (st / nd / rd / th) ngày', + 'recurring_monthly_skip' => 'Mỗi: bỏ qua (st / nd / nd / th) tháng vào: dayOfMonth (st / nd / rd / th) ngày', + 'recurring_ndom' => 'Hàng tháng vào: dayOfMonth (st / nd / rd / th): ngày trong tuần', + 'recurring_yearly' => 'Hàng năm vào: ngày', + 'overview_for_recurrence' => 'Tổng quan về giao dịch định kỳ ":title"', + 'warning_duplicates_repetitions' => 'Trong các trường hợp hiếm hoi, ngày xuất hiện hai lần trong danh sách này. Điều này có thể xảy ra khi nhiều lần lặp lại va chạm. Firefly III sẽ luôn tạo một giao dịch mỗi ngày.', + 'created_transactions' => 'Giao dịch liên quan', + 'expected_withdrawals' => 'Rút tiền dự kiến', + 'expected_deposits' => 'Tiền gửi dự kiến', + 'expected_transfers' => 'Chuyển khoản dự kiến', + 'created_withdrawals' => 'Tạo rút tiền', + 'created_deposits' => 'Tạo tiền gửi', + 'created_transfers' => 'Tạo chuyển khoản', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => 'Được tạo từ giao dịch định kỳ ":title" (#:id)', + 'recurring_never_cron' => 'Có vẻ như công việc định kỳ cần thiết để hỗ trợ các giao dịch định kỳ chưa bao giờ chạy. Điều này là tất nhiên bình thường khi bạn vừa cài đặt Firefly III, nhưng đây sẽ là thứ cần thiết lập càng sớm càng tốt. Vui lòng kiểm tra các trang trợ giúp bằng biểu tượng (?) - ở góc trên cùng bên phải của trang.', + 'recurring_cron_long_ago' => 'Có vẻ như đã hơn 36 giờ kể từ khi công việc định kỳ hỗ trợ các giao dịch định kỳ được thực hiện lần cuối. Bạn có chắc chắn rằng nó đã được thiết lập chính xác? Vui lòng kiểm tra các trang trợ giúp bằng biểu tượng (?) - ở góc trên cùng bên phải của trang.', - 'create_new_recurrence' => 'Tạo giao dịch định kỳ mới', - 'help_first_date' => 'Cho biết sự tái phát dự kiến đầu tiên. Điều này phải trong tương lai.', - 'help_first_date_no_past' => 'Cho biết sự tái phát dự kiến đầu tiên. Firefly III sẽ không tạo giao dịch trong quá khứ.', - 'no_currency' => '(không có tiền tệ)', - 'mandatory_for_recurring' => 'Thông tin tái phát bắt buộc', - 'mandatory_for_transaction' => 'Thông tin giao dịch bắt buộc', - 'optional_for_recurring' => 'Thông tin tái phát tùy chọn', - 'optional_for_transaction' => 'Thông tin giao dịch tùy chọn', - 'change_date_other_options' => 'Thay đổi "ngày đầu tiên" để xem thêm tùy chọn.', - 'mandatory_fields_for_tranaction' => 'Các giá trị ở đây sẽ kết thúc trong (các) giao dịch được tạo', - 'click_for_calendar' => 'Bấm vào đây để xem lịch cho bạn biết khi nào giao dịch sẽ lặp lại.', - 'repeat_forever' => 'Lặp lại mãi mãi', - 'repeat_until_date' => 'Lặp lại cho đến ngày', - 'repeat_times' => 'Lặp lại một số lần', - 'recurring_skips_one' => 'Mỗi cái khác', - 'recurring_skips_more' => 'Bỏ qua: số lần xuất hiện', - 'store_new_recurrence' => 'Lưu trữ giao dịch định kỳ', - 'stored_new_recurrence' => 'Giao dịch định kỳ ": title" được lưu trữ thành công.', - 'edit_recurrence' => 'Chỉnh sửa giao dịch định kỳ ":title"', - 'recurring_repeats_until' => 'Lặp lại cho đến: ngày', - 'recurring_repeats_forever' => 'Lặp lại mãi mãi', - 'recurring_repeats_x_times' => 'Lặp lại: :count lần', - 'update_recurrence' => 'Cập nhật giao dịch định kỳ', - 'updated_recurrence' => 'Cập nhật giao dịch định kỳ ":title"', - 'recurrence_is_inactive' => 'Giao dịch định kỳ này không hoạt động và sẽ không tạo giao dịch mới.', - 'delete_recurring' => 'Xóa giao dịch định kỳ ":title"', - 'new_recurring_transaction' => 'Giao dịch định kỳ mới', - 'help_weekend' => 'Firefly III nên làm gì khi giao dịch định kỳ rơi vào Thứ Bảy hoặc Chủ Nhật?', - 'do_nothing' => 'Chỉ cần tạo giao dịch', - 'skip_transaction' => 'Bỏ qua sự xuất hiện', - 'jump_to_friday' => 'Tạo giao dịch vào thứ Sáu trước đó thay thế', - 'jump_to_monday' => 'Tạo giao dịch vào thứ Hai tuần sau', - 'will_jump_friday' => 'Sẽ được tạo vào thứ Sáu thay vì cuối tuần.', - 'will_jump_monday' => 'Sẽ được tạo vào thứ Hai thay vì cuối tuần.', - 'except_weekends' => 'Trừ những ngày cuối tuần', - 'recurrence_deleted' => 'Đã xóa giao dịch định kỳ ":title"', + 'create_new_recurrence' => 'Tạo giao dịch định kỳ mới', + 'help_first_date' => 'Cho biết sự tái phát dự kiến đầu tiên. Điều này phải trong tương lai.', + 'help_first_date_no_past' => 'Cho biết sự tái phát dự kiến đầu tiên. Firefly III sẽ không tạo giao dịch trong quá khứ.', + 'no_currency' => '(không có tiền tệ)', + 'mandatory_for_recurring' => 'Thông tin tái phát bắt buộc', + 'mandatory_for_transaction' => 'Thông tin giao dịch bắt buộc', + 'optional_for_recurring' => 'Thông tin tái phát tùy chọn', + 'optional_for_transaction' => 'Thông tin giao dịch tùy chọn', + 'change_date_other_options' => 'Thay đổi "ngày đầu tiên" để xem thêm tùy chọn.', + 'mandatory_fields_for_tranaction' => 'Các giá trị ở đây sẽ kết thúc trong (các) giao dịch được tạo', + 'click_for_calendar' => 'Bấm vào đây để xem lịch cho bạn biết khi nào giao dịch sẽ lặp lại.', + 'repeat_forever' => 'Lặp lại mãi mãi', + 'repeat_until_date' => 'Lặp lại cho đến ngày', + 'repeat_times' => 'Lặp lại một số lần', + 'recurring_skips_one' => 'Mỗi cái khác', + 'recurring_skips_more' => 'Bỏ qua: số lần xuất hiện', + 'store_new_recurrence' => 'Lưu trữ giao dịch định kỳ', + 'stored_new_recurrence' => 'Giao dịch định kỳ ": title" được lưu trữ thành công.', + 'edit_recurrence' => 'Chỉnh sửa giao dịch định kỳ ":title"', + 'recurring_repeats_until' => 'Lặp lại cho đến: ngày', + 'recurring_repeats_forever' => 'Lặp lại mãi mãi', + 'recurring_repeats_x_times' => 'Lặp lại: :count lần', + 'update_recurrence' => 'Cập nhật giao dịch định kỳ', + 'updated_recurrence' => 'Cập nhật giao dịch định kỳ ":title"', + 'recurrence_is_inactive' => 'Giao dịch định kỳ này không hoạt động và sẽ không tạo giao dịch mới.', + 'delete_recurring' => 'Xóa giao dịch định kỳ ":title"', + 'new_recurring_transaction' => 'Giao dịch định kỳ mới', + 'help_weekend' => 'Firefly III nên làm gì khi giao dịch định kỳ rơi vào Thứ Bảy hoặc Chủ Nhật?', + 'do_nothing' => 'Chỉ cần tạo giao dịch', + 'skip_transaction' => 'Bỏ qua sự xuất hiện', + 'jump_to_friday' => 'Tạo giao dịch vào thứ Sáu trước đó thay thế', + 'jump_to_monday' => 'Tạo giao dịch vào thứ Hai tuần sau', + 'will_jump_friday' => 'Sẽ được tạo vào thứ Sáu thay vì cuối tuần.', + 'will_jump_monday' => 'Sẽ được tạo vào thứ Hai thay vì cuối tuần.', + 'except_weekends' => 'Trừ những ngày cuối tuần', + 'recurrence_deleted' => 'Đã xóa giao dịch định kỳ ":title"', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => 'Số dư (: tiền tệ)', - 'box_spent_in_currency' => 'Đã chi (: tiền tệ)', - 'box_earned_in_currency' => 'Kiếm được (: tiền tệ)', - 'box_budgeted_in_currency' => 'Ngân sách (: tiền tệ)', - 'box_bill_paid_in_currency' => 'Hóa đơn thanh toán (: tiền tệ)', - 'box_bill_unpaid_in_currency' => 'Hóa đơn chưa thanh toán (: tiền tệ)', - 'box_left_to_spend_in_currency' => 'Còn lại để chi tiêu (: tiền tệ)', - 'box_net_worth_in_currency' => 'Giá trị ròng (: tiền tệ)', - 'box_spend_per_day' => 'Còn lại để chi tiêu mỗi ngày: :amount', + 'box_balance_in_currency' => 'Số dư (: tiền tệ)', + 'box_spent_in_currency' => 'Đã chi (: tiền tệ)', + 'box_earned_in_currency' => 'Kiếm được (: tiền tệ)', + 'box_budgeted_in_currency' => 'Ngân sách (: tiền tệ)', + 'box_bill_paid_in_currency' => 'Hóa đơn thanh toán (: tiền tệ)', + 'box_bill_unpaid_in_currency' => 'Hóa đơn chưa thanh toán (: tiền tệ)', + 'box_left_to_spend_in_currency' => 'Còn lại để chi tiêu (: tiền tệ)', + 'box_net_worth_in_currency' => 'Giá trị ròng (: tiền tệ)', + 'box_spend_per_day' => 'Còn lại để chi tiêu mỗi ngày: :amount', // debug page - 'debug_page' => 'Trang debug', - 'debug_submit_instructions' => 'Nếu bạn đang gặp vấn đề, bạn có thể sử dụng thông tin trong hộp này làm thông tin gỡ lỗi. Vui lòng sao chép và dán vào một vấn đề GitHub mới hoặc hiện có . Nó sẽ tạo ra một bảng có thể được sử dụng để chẩn đoán nhanh vấn đề của bạn.', - 'debug_pretty_table' => 'Nếu bạn sao chép / dán hộp bên dưới vào GitHub, nó sẽ tạo ra một bảng. Xin vui lòng không bao quanh văn bản này với backticks hoặc dấu ngoặc kép.', - 'debug_additional_data' => 'Bạn cũng có thể chia sẻ nội dung của hộp bên dưới. Bạn cũng có thể sao chép và dán phần này vào một vấn đề GitHub mới hoặc hiện có . Tuy nhiên, nội dung của hộp này có thể chứa thông tin cá nhân như tên tài khoản, chi tiết giao dịch hoặc địa chỉ email.', + 'debug_page' => 'Trang debug', + 'debug_submit_instructions' => 'Nếu bạn đang gặp vấn đề, bạn có thể sử dụng thông tin trong hộp này làm thông tin gỡ lỗi. Vui lòng sao chép và dán vào một vấn đề GitHub mới hoặc hiện có . Nó sẽ tạo ra một bảng có thể được sử dụng để chẩn đoán nhanh vấn đề của bạn.', + 'debug_pretty_table' => 'Nếu bạn sao chép / dán hộp bên dưới vào GitHub, nó sẽ tạo ra một bảng. Xin vui lòng không bao quanh văn bản này với backticks hoặc dấu ngoặc kép.', + 'debug_additional_data' => 'Bạn cũng có thể chia sẻ nội dung của hộp bên dưới. Bạn cũng có thể sao chép và dán phần này vào một vấn đề GitHub mới hoặc hiện có . Tuy nhiên, nội dung của hộp này có thể chứa thông tin cá nhân như tên tài khoản, chi tiết giao dịch hoặc địa chỉ email.', // object groups - 'object_groups_menu_bar' => 'Các Nhóm', - 'object_groups_page_title' => 'Các Nhóm', - 'object_groups_breadcrumb' => 'Các Nhóm', - 'object_groups_index' => 'Tổng quan', - 'object_groups' => 'Các Nhóm', - 'object_groups_empty_explain' => 'Một số điều trong Firefly III có thể được chia thành các nhóm. Ví dụ, các ống heo, có trường "Nhóm" trong chỉnh sửa và tạo. Khi bạn đặt trường này, bạn có thể chỉnh sửa tên và thứ tự của các nhóm trên trang này. Để biết thêm thông tin, hãy xem các trang trợ giúp ở góc trên bên phải, dưới biểu tượng (?) -.', - 'object_group_title' => 'Tiêu đề', - 'edit_object_group' => 'Chỉnh sửa nhóm ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Cập nhật nhóm', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Nhóm', + 'object_groups_menu_bar' => 'Các Nhóm', + 'object_groups_page_title' => 'Các Nhóm', + 'object_groups_breadcrumb' => 'Các Nhóm', + 'object_groups_index' => 'Tổng quan', + 'object_groups' => 'Các Nhóm', + 'object_groups_empty_explain' => 'Một số điều trong Firefly III có thể được chia thành các nhóm. Ví dụ, các ống heo, có trường "Nhóm" trong chỉnh sửa và tạo. Khi bạn đặt trường này, bạn có thể chỉnh sửa tên và thứ tự của các nhóm trên trang này. Để biết thêm thông tin, hãy xem các trang trợ giúp ở góc trên bên phải, dưới biểu tượng (?) -.', + 'object_group_title' => 'Tiêu đề', + 'edit_object_group' => 'Chỉnh sửa nhóm ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Cập nhật nhóm', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Nhóm', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/vi_VN/validation.php b/resources/lang/vi_VN/validation.php index adcf9a1e6f..958a5907be 100644 --- a/resources/lang/vi_VN/validation.php +++ b/resources/lang/vi_VN/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/zh_CN/firefly.php b/resources/lang/zh_CN/firefly.php index cabfb720f9..ce57beac7d 100644 --- a/resources/lang/zh_CN/firefly.php +++ b/resources/lang/zh_CN/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => '关闭', - 'actions' => '操作', - 'edit' => '编辑', - 'delete' => '删除', - 'split' => '拆分', - 'single_split' => '拆分', - 'clone' => '复制', - 'clone_and_edit' => '复制并编辑', - 'confirm_action' => '确认操作', - 'last_seven_days' => '最近 7 天', - 'last_thirty_days' => '最近 30 天', - 'last_180_days' => '最近 180 天', - 'month_to_date' => '本月至今', - 'year_to_date' => '本年至今', - 'YTD' => '本年至今', - 'welcome_back' => '今天理财了吗?', - 'everything' => '所有', - 'today' => '今天', - 'customRange' => '自定义范围', - 'date_range' => '日期范围', - 'apply' => '应用', - 'select_date' => '选择日期..', - 'cancel' => '取消', - 'from' => '自', - 'to' => '至', - 'structure' => '结构', - 'help_translating' => '帮助文本尚未提供您的语言的版本,您愿意协助翻译吗?', - 'showEverything' => '全部显示', - 'never' => '永不', - 'no_results_for_empty_search' => '您的搜索结果为空,找不到任何内容。', - 'removed_amount' => '已移除 :amount', - 'added_amount' => '已新增 :amount', - 'asset_account_role_help' => '基于您的选择而产生的额外选项,均可于事后调整。', - 'Opening balance' => '初始余额', - 'create_new_stuff' => '创建新内容', - 'new_withdrawal' => '新支出', - 'create_new_transaction' => '创建新交易', - 'sidebar_frontpage_create' => '创建', - 'new_transaction' => '新交易', - 'no_rules_for_bill' => '此账单没有与之相关的规则。', - 'go_to_asset_accounts' => '查看您的资产账户', - 'go_to_budgets' => '前往您的预算', - 'go_to_withdrawals' => '前往支出', - 'clones_journal_x' => '此交易是“:description” (#:id) 的复制版本', - 'go_to_categories' => '前往您的分类', - 'go_to_bills' => '前往账单', - 'go_to_expense_accounts' => '查看您的支出账户', - 'go_to_revenue_accounts' => '查看您的收入账户', - 'go_to_piggies' => '前往您的存钱罐', - 'new_deposit' => '新收入', - 'new_transfer' => '新转账', - 'new_transfers' => '新转账', - 'new_asset_account' => '新资产账户', - 'new_expense_account' => '新支出账户', - 'new_revenue_account' => '新收入账户', - 'new_liabilities_account' => '新债务账户', - 'new_budget' => '新预算', - 'new_bill' => '新账单', - 'block_account_logout' => '您已被强制退出登录,被封禁的帐户无法使用此站点。请确认您使用了有效的电子邮件地址进行注册。', - 'flash_success' => '成功!', - 'flash_info' => '提示', - 'flash_warning' => '警告!', - 'flash_error' => '错误!', - 'flash_danger' => '危险!', - 'flash_info_multiple' => '有1条消息|有:count条消息', - 'flash_error_multiple' => '有1个错误|有 :count 个错误', - 'net_worth' => '净资产', - 'help_for_this_page' => '本页说明', - 'help_for_this_page_body' => '你可以在文档中找到关于这个页面的更多信息。', - 'two_factor_welcome' => '您好!', - 'two_factor_enter_code' => '若要继续,请输入您的手机 App 为您生成的两步验证代码。', - 'two_factor_code_here' => '在此输入代码', - 'two_factor_title' => '两步验证', - 'authenticate' => '验证', - 'two_factor_forgot_title' => '遗失两步验证', - 'two_factor_forgot' => '我忘记了两步验证码', - 'two_factor_lost_header' => '遗失了您的两步验证吗?', - 'two_factor_lost_intro' => '如果您同时遗失了备份代码,很抱歉,您无法通过网页进行恢复。您可以通过下述方式进行操作。', - 'two_factor_lost_fix_self' => '若您自行运行 Firefly III 服务,查看 常见问题解答 来参考', - 'two_factor_lost_fix_owner' => '如果这不是您自己的 Firefly III 站点,请邮件联系站点管理员(:site_owner)协助您重置两步验证。', - 'mfa_backup_code' => '您已使用备用代码登录到 Firefly III 。 您不能再使用它,因此请将其划掉。', - 'pref_two_factor_new_backup_codes' => '获取新的备份代码', - 'pref_two_factor_backup_code_count' => '您还有 :count 个可用的备份代码|您还有 :count 个可用的备份代码', - '2fa_i_have_them' => '我存下来了!', - 'warning_much_data' => ':days 天的数据需要一段时间加载。', - 'registered' => '您已成功注册!', - 'Default asset account' => '默认资产账户', - 'no_budget_pointer' => '您还没有预算,您应该在预算页面进行创建。预算可以帮助您追踪支出。', - 'no_bill_pointer' => '您还没有账单,您应该在账单页面进行创建。账单可以帮助您追踪支出。', - 'Savings account' => '储蓄账户', - 'Credit card' => '信用卡', - 'source_accounts' => '来源账户|来源账户', - 'destination_accounts' => '目标账户|目标账户', - 'user_id_is' => '您的帐户 ID 为 :user', - 'field_supports_markdown' => '此字段支持 Markdown 语法。', - 'need_more_help' => '如果您在使用 Firefly III 时需要获取更多帮助,请提交 GitHub 工单。', - 'reenable_intro_text' => '您也可以重置 页面引导流程。', - 'intro_boxes_after_refresh' => '当您重新整理页面后,介绍框将会重新出现。', - 'show_all_no_filter' => '显示所有交易,不以日期分组', - 'expenses_by_category' => '按分类的支出', - 'expenses_by_budget' => '按预算的支出', - 'income_by_category' => '按分类的收入', - 'expenses_by_asset_account' => '按资产账户的支出', - 'expenses_by_expense_account' => '按支出账户的支出', - 'cannot_redirect_to_account' => 'Firefly III 无法重新指向您至正确页面,抱歉。', - 'sum_of_expenses' => '支出总和', - 'sum_of_income' => '收入总和', - 'liabilities' => '债务', - 'spent_in_specific_budget' => '预算“:budget”的支出', - 'spent_in_specific_double' => '账户“:account”的支出', - 'earned_in_specific_double' => '“:account” 中的收入', - 'source_account' => '来源账户', - 'source_account_reconciliation' => '您不能编辑对账交易的来源账户。', - 'destination_account' => '目标账户', - 'destination_account_reconciliation' => '您不能编辑对账交易的目标账户', - 'sum_of_expenses_in_budget' => '预算“:budget”的总支出', - 'left_in_budget_limit' => '依照预算的支出尚余', - 'current_period' => '目前区间', - 'show_the_current_period_and_overview' => '显示目前区间与概览', - 'pref_languages_locale' => '若要正常使用英语外的语言,您的操作系统必须配置了正确的区域信息(locale-information)。若上述信息不存在,则货币数据、日期与金额可能出现格式错误。', - 'budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易', - 'chart_budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易图表', - 'chart_budget_in_period_only_currency' => '您的预算金额以 :currency 显示 ,因此此图表将以 :currency 显示交易。', - 'chart_account_in_period' => ':start – :end 账户“:name” (:balance) 的所有交易图表', - 'chart_category_in_period' => ':start – :end 分类“:name”的所有交易图表', - 'chart_category_all' => '分类「:name」的所有交易图表', - 'clone_withdrawal' => '复制此支出', - 'clone_deposit' => '复制此收入', - 'clone_transfer' => '复制此转账', - 'multi_select_no_selection' => '未选取', - 'multi_select_select_all' => '选取全部', - 'multi_select_n_selected' => '选取', - 'multi_select_all_selected' => '全部选取', - 'multi_select_filter_placeholder' => '查找…', - 'intro_next_label' => '下一个', - 'intro_prev_label' => '上一个', - 'intro_skip_label' => '跳过', - 'intro_done_label' => '完成', - 'between_dates_breadcrumb' => ':start – :end', - 'all_journals_without_budget' => '没有预算的所有交易', - 'journals_without_budget' => '没有预算的交易', - 'all_journals_without_category' => '没有类别的所有交易', - 'journals_without_category' => '没有类别的交易', - 'all_journals_for_account' => '账户“:name”的所有交易', - 'chart_all_journals_for_account' => '账户“:name”的所有交易图表', - 'journals_in_period_for_account' => ':start – :end 账户“:name”的所有交易', - 'journals_in_period_for_account_js' => '在 {start} 和 {end} 之间 {title} 账户的所有交易', - 'transferred' => '已转账', - 'all_withdrawal' => '所有支出', - 'all_transactions' => '所有交易', - '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' => 'Fifly III 无法格式化货币金额,因为您的服务器缺少所需的软件包。 操作指示', - 'quickswitch' => '快速切换', - 'sign_in_to_start' => '登录即可开始您的理财规划', - 'sign_in' => '登录', - 'register_new_account' => '注册新帐号', - 'forgot_my_password' => '忘记密码', - 'problems_with_input' => '你的输入有一些问题。', - 'reset_password' => '重设密码', - 'button_reset_password' => '重设密码', - 'reset_button' => '重置', - 'want_to_login' => '我想登录', - 'login_page_title' => '登录到Firefly III', - 'register_page_title' => '在 Firefly III 注册', - 'forgot_pw_page_title' => '忘记您 Firefly III 的密码', - 'reset_pw_page_title' => '重设您 Firefly III 的密码', - 'cannot_reset_demo_user' => '您不能重置演示用户的密码。', - 'no_att_demo_user' => '演示用户不能上传附件。', - 'button_register' => '注册帐号', - 'authorization' => '认证', - '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' => '预期每月支出', - 'per_period_sum_3M' => '预期每季度支出', - 'per_period_sum_6M' => '预期每半年支出', - 'per_period_sum_1Y' => '预期每年支出', - 'average_per_bill' => '每张账单平均值', - 'expected_total' => '期望总数', - 'reconciliation_account_name' => ':name 对账 (:currency)', - 'saved' => '已保存', - 'advanced_options' => '高级选项', - 'advanced_options_explain' => 'Firefly III 的部分页面将高级选项隐藏于此按钮中。当前页面没有需要额外查看的内容,但请一定要留意其他页面!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => '关闭', + 'actions' => '操作', + 'edit' => '编辑', + 'delete' => '删除', + 'split' => '拆分', + 'single_split' => '拆分', + 'clone' => '复制', + 'clone_and_edit' => '复制并编辑', + 'confirm_action' => '确认操作', + 'last_seven_days' => '最近 7 天', + 'last_thirty_days' => '最近 30 天', + 'last_180_days' => '最近 180 天', + 'month_to_date' => '本月至今', + 'year_to_date' => '本年至今', + 'YTD' => '本年至今', + 'welcome_back' => '今天理财了吗?', + 'everything' => '所有', + 'today' => '今天', + 'customRange' => '自定义范围', + 'date_range' => '日期范围', + 'apply' => '应用', + 'select_date' => '选择日期..', + 'cancel' => '取消', + 'from' => '自', + 'to' => '至', + 'structure' => '结构', + 'help_translating' => '帮助文本尚未提供您的语言的版本,您愿意协助翻译吗?', + 'showEverything' => '全部显示', + 'never' => '永不', + 'no_results_for_empty_search' => '您的搜索结果为空,找不到任何内容。', + 'removed_amount' => '已移除 :amount', + 'added_amount' => '已新增 :amount', + 'asset_account_role_help' => '基于您的选择而产生的额外选项,均可于事后调整。', + 'Opening balance' => '初始余额', + 'create_new_stuff' => '创建新内容', + 'new_withdrawal' => '新支出', + 'create_new_transaction' => '创建新交易', + 'sidebar_frontpage_create' => '创建', + 'new_transaction' => '新交易', + 'no_rules_for_bill' => '此账单没有与之相关的规则。', + 'go_to_asset_accounts' => '查看您的资产账户', + 'go_to_budgets' => '前往您的预算', + 'go_to_withdrawals' => '前往支出', + 'clones_journal_x' => '此交易是“:description” (#:id) 的复制版本', + 'go_to_categories' => '前往您的分类', + 'go_to_bills' => '前往账单', + 'go_to_expense_accounts' => '查看您的支出账户', + 'go_to_revenue_accounts' => '查看您的收入账户', + 'go_to_piggies' => '前往您的存钱罐', + 'new_deposit' => '新收入', + 'new_transfer' => '新转账', + 'new_transfers' => '新转账', + 'new_asset_account' => '新资产账户', + 'new_expense_account' => '新支出账户', + 'new_revenue_account' => '新收入账户', + 'new_liabilities_account' => '新债务账户', + 'new_budget' => '新预算', + 'new_bill' => '新账单', + 'block_account_logout' => '您已被强制退出登录,被封禁的帐户无法使用此站点。请确认您使用了有效的电子邮件地址进行注册。', + 'flash_success' => '成功!', + 'flash_info' => '提示', + 'flash_warning' => '警告!', + 'flash_error' => '错误!', + 'flash_danger' => '危险!', + 'flash_info_multiple' => '有1条消息|有:count条消息', + 'flash_error_multiple' => '有1个错误|有 :count 个错误', + 'net_worth' => '净资产', + 'help_for_this_page' => '本页说明', + 'help_for_this_page_body' => '你可以在文档中找到关于这个页面的更多信息。', + 'two_factor_welcome' => '您好!', + 'two_factor_enter_code' => '若要继续,请输入您的手机 App 为您生成的两步验证代码。', + 'two_factor_code_here' => '在此输入代码', + 'two_factor_title' => '两步验证', + 'authenticate' => '验证', + 'two_factor_forgot_title' => '遗失两步验证', + 'two_factor_forgot' => '我忘记了两步验证码', + 'two_factor_lost_header' => '遗失了您的两步验证吗?', + 'two_factor_lost_intro' => '如果您同时遗失了备份代码,很抱歉,您无法通过网页进行恢复。您可以通过下述方式进行操作。', + 'two_factor_lost_fix_self' => '若您自行运行 Firefly III 服务,查看 常见问题解答 来参考', + 'two_factor_lost_fix_owner' => '如果这不是您自己的 Firefly III 站点,请邮件联系站点管理员(:site_owner)协助您重置两步验证。', + 'mfa_backup_code' => '您已使用备用代码登录到 Firefly III 。 您不能再使用它,因此请将其划掉。', + 'pref_two_factor_new_backup_codes' => '获取新的备份代码', + 'pref_two_factor_backup_code_count' => '您还有 :count 个可用的备份代码|您还有 :count 个可用的备份代码', + '2fa_i_have_them' => '我存下来了!', + 'warning_much_data' => ':days 天的数据需要一段时间加载。', + 'registered' => '您已成功注册!', + 'Default asset account' => '默认资产账户', + 'no_budget_pointer' => '您还没有预算,您应该在预算页面进行创建。预算可以帮助您追踪支出。', + 'no_bill_pointer' => '您还没有账单,您应该在账单页面进行创建。账单可以帮助您追踪支出。', + 'Savings account' => '储蓄账户', + 'Credit card' => '信用卡', + 'source_accounts' => '来源账户|来源账户', + 'destination_accounts' => '目标账户|目标账户', + 'user_id_is' => '您的帐户 ID 为 :user', + 'field_supports_markdown' => '此字段支持 Markdown 语法。', + 'need_more_help' => '如果您在使用 Firefly III 时需要获取更多帮助,请提交 GitHub 工单。', + 'reenable_intro_text' => '您也可以重置 页面引导流程。', + 'intro_boxes_after_refresh' => '当您重新整理页面后,介绍框将会重新出现。', + 'show_all_no_filter' => '显示所有交易,不以日期分组', + 'expenses_by_category' => '按分类的支出', + 'expenses_by_budget' => '按预算的支出', + 'income_by_category' => '按分类的收入', + 'expenses_by_asset_account' => '按资产账户的支出', + 'expenses_by_expense_account' => '按支出账户的支出', + 'cannot_redirect_to_account' => 'Firefly III 无法重新指向您至正确页面,抱歉。', + 'sum_of_expenses' => '支出总和', + 'sum_of_income' => '收入总和', + 'liabilities' => '债务', + 'spent_in_specific_budget' => '预算“:budget”的支出', + 'spent_in_specific_double' => '账户“:account”的支出', + 'earned_in_specific_double' => '“:account” 中的收入', + 'source_account' => '来源账户', + 'source_account_reconciliation' => '您不能编辑对账交易的来源账户。', + 'destination_account' => '目标账户', + 'destination_account_reconciliation' => '您不能编辑对账交易的目标账户', + 'sum_of_expenses_in_budget' => '预算“:budget”的总支出', + 'left_in_budget_limit' => '依照预算的支出尚余', + 'current_period' => '目前区间', + 'show_the_current_period_and_overview' => '显示目前区间与概览', + 'pref_languages_locale' => '若要正常使用英语外的语言,您的操作系统必须配置了正确的区域信息(locale-information)。若上述信息不存在,则货币数据、日期与金额可能出现格式错误。', + 'budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易', + 'chart_budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易图表', + 'chart_budget_in_period_only_currency' => '您的预算金额以 :currency 显示 ,因此此图表将以 :currency 显示交易。', + 'chart_account_in_period' => ':start – :end 账户“:name” (:balance) 的所有交易图表', + 'chart_category_in_period' => ':start – :end 分类“:name”的所有交易图表', + 'chart_category_all' => '分类「:name」的所有交易图表', + 'clone_withdrawal' => '复制此支出', + 'clone_deposit' => '复制此收入', + 'clone_transfer' => '复制此转账', + 'multi_select_no_selection' => '未选取', + 'multi_select_select_all' => '选取全部', + 'multi_select_n_selected' => '选取', + 'multi_select_all_selected' => '全部选取', + 'multi_select_filter_placeholder' => '查找…', + 'intro_next_label' => '下一个', + 'intro_prev_label' => '上一个', + 'intro_skip_label' => '跳过', + 'intro_done_label' => '完成', + 'between_dates_breadcrumb' => ':start – :end', + 'all_journals_without_budget' => '没有预算的所有交易', + 'journals_without_budget' => '没有预算的交易', + 'all_journals_without_category' => '没有类别的所有交易', + 'journals_without_category' => '没有类别的交易', + 'all_journals_for_account' => '账户“:name”的所有交易', + 'chart_all_journals_for_account' => '账户“:name”的所有交易图表', + 'journals_in_period_for_account' => ':start – :end 账户“:name”的所有交易', + 'journals_in_period_for_account_js' => '在 {start} 和 {end} 之间 {title} 账户的所有交易', + 'transferred' => '已转账', + 'all_withdrawal' => '所有支出', + 'all_transactions' => '所有交易', + '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' => 'Fifly III 无法格式化货币金额,因为您的服务器缺少所需的软件包。 操作指示', + 'quickswitch' => '快速切换', + 'sign_in_to_start' => '登录即可开始您的理财规划', + 'sign_in' => '登录', + 'register_new_account' => '注册新帐号', + 'forgot_my_password' => '忘记密码', + 'problems_with_input' => '你的输入有一些问题。', + 'reset_password' => '重设密码', + 'button_reset_password' => '重设密码', + 'reset_button' => '重置', + 'want_to_login' => '我想登录', + 'login_page_title' => '登录到Firefly III', + 'register_page_title' => '在 Firefly III 注册', + 'forgot_pw_page_title' => '忘记您 Firefly III 的密码', + 'reset_pw_page_title' => '重设您 Firefly III 的密码', + 'cannot_reset_demo_user' => '您不能重置演示用户的密码。', + 'no_att_demo_user' => '演示用户不能上传附件。', + 'button_register' => '注册帐号', + 'authorization' => '认证', + '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' => '预期每月支出', + 'per_period_sum_3M' => '预期每季度支出', + 'per_period_sum_6M' => '预期每半年支出', + 'per_period_sum_1Y' => '预期每年支出', + 'average_per_bill' => '每张账单平均值', + 'expected_total' => '期望总数', + 'reconciliation_account_name' => ':name 对账 (:currency)', + 'saved' => '已保存', + 'advanced_options' => '高级选项', + 'advanced_options_explain' => 'Firefly III 的部分页面将高级选项隐藏于此按钮中。当前页面没有需要额外查看的内容,但请一定要留意其他页面!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => '已禁用', - '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' => '检查', - 'create_new_webhook' => '创建新 Webhook', - 'webhooks_create_breadcrumb' => '创建新 Webhook', - 'webhook_trigger_form_help' => '推送事件发生时的触发条件', - 'webhook_response_form_help' => '推送必须提交给URL的内容', - 'webhook_delivery_form_help' => '推送采用哪种格式发送数据', - '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' => '在指定的交易中触发了推送,请等待显示结果', - 'webhook_messages' => 'Webhook 消息', - 'view_message' => '查看消息', - 'view_attempts' => '查看失败的尝试', - 'message_content_title' => 'Webhook 消息内容', - 'message_content_help' => '这是使用推送发送(或尝试)的消息内容', - 'attempt_content_title' => 'Webhook 尝试', - 'attempt_content_help' => '这是提交至配置网址的webhook消息的所有失败请求,一段时间后,Firefly III 将停止尝试。', - 'no_attempts' => '所有尝试均已成功完成。好极了!', - 'webhook_attempt_at' => '尝试于 {moment}', - 'logs' => '日志', - 'response' => '响应', - 'visit_webhook_url' => '访问 webhook URL', - 'reset_webhook_secret' => '重置 webhook 密钥', - 'webhook_stored_link' => '推送 #{ID} ("{title}") 已保存.', - 'webhook_updated_link' => '推送 #{ID} ("{title}") 已更新.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => '已禁用', + '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' => '检查', + 'create_new_webhook' => '创建新 Webhook', + 'webhooks_create_breadcrumb' => '创建新 Webhook', + 'webhook_trigger_form_help' => '推送事件发生时的触发条件', + 'webhook_response_form_help' => '推送必须提交给URL的内容', + 'webhook_delivery_form_help' => '推送采用哪种格式发送数据', + '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' => '在指定的交易中触发了推送,请等待显示结果', + 'webhook_messages' => 'Webhook 消息', + 'view_message' => '查看消息', + 'view_attempts' => '查看失败的尝试', + 'message_content_title' => 'Webhook 消息内容', + 'message_content_help' => '这是使用推送发送(或尝试)的消息内容', + 'attempt_content_title' => 'Webhook 尝试', + 'attempt_content_help' => '这是提交至配置网址的webhook消息的所有失败请求,一段时间后,Firefly III 将停止尝试。', + 'no_attempts' => '所有尝试均已成功完成。好极了!', + 'webhook_attempt_at' => '尝试于 {moment}', + 'logs' => '日志', + 'response' => '响应', + 'visit_webhook_url' => '访问 webhook URL', + 'reset_webhook_secret' => '重置 webhook 密钥', + 'webhook_stored_link' => '推送 #{ID} ("{title}") 已保存.', + 'webhook_updated_link' => '推送 #{ID} ("{title}") 已更新.', // API access - 'authorization_request' => 'Firefly III :version 版授权请求', - 'authorization_request_intro' => '应用 ":client" 正在请求权限以访问您的财务管理功能。是否授权 :client 访问这些记录?', - 'authorization_request_site' => '您将被重定向到 :url ,然后就能够访问您的 Firefly III 数据。', - 'authorization_request_invalid' => '此访问请求无效。请不要再次使用此链接。', - 'scopes_will_be_able' => '此应用可以:', - 'button_authorize' => '授权', - 'none_in_select_list' => '(空)', - 'no_piggy_bank' => '(无存钱罐)', - 'name_in_currency' => ':name 于 :currency', - 'paid_in_currency' => '以 :currency 支付', - 'unpaid_in_currency' => '未以 :currency 支付', - 'is_alpha_warning' => '您正在运行 ALPHA 版本。请注意错误和问题。', - 'is_beta_warning' => '您正在运行 BETA 版本。请注意错误和问题。', - 'all_destination_accounts' => '目标账户', - 'all_source_accounts' => '来源账户', - 'back_to_index' => '返回列表 ', - 'cant_logout_guard' => 'Firefly III 无法退出登录。', - 'internal_reference' => '内部引用', + 'authorization_request' => 'Firefly III :version 版授权请求', + 'authorization_request_intro' => '应用 ":client" 正在请求权限以访问您的财务管理功能。是否授权 :client 访问这些记录?', + 'authorization_request_site' => '您将被重定向到 :url ,然后就能够访问您的 Firefly III 数据。', + 'authorization_request_invalid' => '此访问请求无效。请不要再次使用此链接。', + 'scopes_will_be_able' => '此应用可以:', + 'button_authorize' => '授权', + 'none_in_select_list' => '(空)', + 'no_piggy_bank' => '(无存钱罐)', + 'name_in_currency' => ':name 于 :currency', + 'paid_in_currency' => '以 :currency 支付', + 'unpaid_in_currency' => '未以 :currency 支付', + 'is_alpha_warning' => '您正在运行 ALPHA 版本。请注意错误和问题。', + 'is_beta_warning' => '您正在运行 BETA 版本。请注意错误和问题。', + 'all_destination_accounts' => '目标账户', + 'all_source_accounts' => '来源账户', + 'back_to_index' => '返回列表 ', + 'cant_logout_guard' => 'Firefly III 无法退出登录。', + 'internal_reference' => '内部引用', // check for updates: - 'update_check_title' => '检查更新', - 'admin_update_check_title' => '自动检查更新', - 'admin_update_check_explain' => 'Firefly III 可以自动检查更新。当您启用此设置时,它将与 Firefly III 更新服务器通讯,查看是否有新版本的 Firefly III。当有新版时,您将收到通知。您可以使用右边的按钮测试此通知。请在下面选择您是否希望 Firefly III 检查更新。', - 'check_for_updates_permission' => 'Firefly III 可自动检查更新,但此功能需要您的许可。请前往管理页面确认您是否需要启用此功能。', - 'updates_ask_me_later' => '稍后再次询问', - 'updates_do_not_check' => '不检查更新', - 'updates_enable_check' => '启用检查更新', - 'admin_update_check_now_title' => '立即检查更新', - 'admin_update_check_now_explain' => '如果您点击此按钮,Firefly III 将会检查您现在的版本是否为最新版。', - 'check_for_updates_button' => '立即检查!', - 'update_new_version_alert' => '发现可用的 Firefly III 新版本,您正在运行的版本是 :your_version,最新版本是 :new_version(发布于 :date)。', - 'update_version_beta' => '此版本是 BETA 版本。您可能会遇到问题。', - 'update_version_alpha' => '此版本是 ALPHA 版本。您可能会遇到问题。', - 'update_current_dev_older' => '您正在运行开发版本 ":version", 该版本比最新版本的 :new_version旧。请更新!', - 'update_current_dev_newer' => '您正在运行开发版本 ":version", 它比最新版本 :new_version 更新。', - 'update_current_version_alert' => '您正在运行 :version,这是最新的可用版本。', - 'update_newer_version_alert' => '您正在运行 :your_version,它比最新发布的 :new_version 更新。', - 'update_check_error' => '检查更新时发生错误::error', - 'unknown_error' => '未知错误。抱歉。', - 'disabled_but_check' => '您已禁用更新检查。所以请不要忘记手动检查更新。谢谢!', - 'admin_update_channel_title' => '更新通道', - 'admin_update_channel_explain' => 'Firefly III 具有三个更新“通道”,其决定了您在功能、改进和错误修正方面的不同体验。如果您喜欢冒险,请使用“beta”通道;如果您不惧危险,请使用“alpha”通道。', - 'update_channel_stable' => '稳定版,所有功能可以正常运行', - 'update_channel_beta' => 'Beta版,拥有新功能但可能崩溃', - 'update_channel_alpha' => 'Alpha版,随时添加新功能,可能出现未知问题', + 'update_check_title' => '检查更新', + 'admin_update_check_title' => '自动检查更新', + 'admin_update_check_explain' => 'Firefly III 可以自动检查更新。当您启用此设置时,它将与 Firefly III 更新服务器通讯,查看是否有新版本的 Firefly III。当有新版时,您将收到通知。您可以使用右边的按钮测试此通知。请在下面选择您是否希望 Firefly III 检查更新。', + 'check_for_updates_permission' => 'Firefly III 可自动检查更新,但此功能需要您的许可。请前往管理页面确认您是否需要启用此功能。', + 'updates_ask_me_later' => '稍后再次询问', + 'updates_do_not_check' => '不检查更新', + 'updates_enable_check' => '启用检查更新', + 'admin_update_check_now_title' => '立即检查更新', + 'admin_update_check_now_explain' => '如果您点击此按钮,Firefly III 将会检查您现在的版本是否为最新版。', + 'check_for_updates_button' => '立即检查!', + 'update_new_version_alert' => '发现可用的 Firefly III 新版本,您正在运行的版本是 :your_version,最新版本是 :new_version(发布于 :date)。', + 'update_version_beta' => '此版本是 BETA 版本。您可能会遇到问题。', + 'update_version_alpha' => '此版本是 ALPHA 版本。您可能会遇到问题。', + 'update_current_dev_older' => '您正在运行开发版本 ":version", 该版本比最新版本的 :new_version旧。请更新!', + 'update_current_dev_newer' => '您正在运行开发版本 ":version", 它比最新版本 :new_version 更新。', + 'update_current_version_alert' => '您正在运行 :version,这是最新的可用版本。', + 'update_newer_version_alert' => '您正在运行 :your_version,它比最新发布的 :new_version 更新。', + 'update_check_error' => '检查更新时发生错误::error', + 'unknown_error' => '未知错误。抱歉。', + 'disabled_but_check' => '您已禁用更新检查。所以请不要忘记手动检查更新。谢谢!', + 'admin_update_channel_title' => '更新通道', + 'admin_update_channel_explain' => 'Firefly III 具有三个更新“通道”,其决定了您在功能、改进和错误修正方面的不同体验。如果您喜欢冒险,请使用“beta”通道;如果您不惧危险,请使用“alpha”通道。', + 'update_channel_stable' => '稳定版,所有功能可以正常运行', + 'update_channel_beta' => 'Beta版,拥有新功能但可能崩溃', + 'update_channel_alpha' => 'Alpha版,随时添加新功能,可能出现未知问题', // search - 'search' => '搜索', - 'search_query' => '搜索语句', - 'search_found_transactions' => 'Firefly III 找到 :count 条交易,用时 :time 秒。|Firefly III 找到 :count 条交易,用时 :time 秒。', - 'search_found_more_transactions' => 'Firefly III 找到超过 :count 条交易,用时 :time 秒。', - 'search_for_query' => 'Firefly III 正在搜索包含 :query 的交易', - 'invalid_operators_list' => '搜索参数无效,已忽略。', + 'search' => '搜索', + 'search_query' => '搜索语句', + 'search_found_transactions' => 'Firefly III 找到 :count 条交易,用时 :time 秒。|Firefly III 找到 :count 条交易,用时 :time 秒。', + 'search_found_more_transactions' => 'Firefly III 找到超过 :count 条交易,用时 :time 秒。', + 'search_for_query' => 'Firefly III 正在搜索包含 :query 的交易', + 'invalid_operators_list' => '搜索参数无效,已忽略。', // old @@ -351,368 +351,368 @@ return [ * */ - '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' => '交易 ID 不为“:value”', - 'search_modifier_date_before' => '交易日期为“:value”或之前', - 'search_modifier_date_after' => '交易日期为“:value”或之后', - 'search_modifier_external_id_is' => '外部 ID 为“:value”', - 'search_modifier_not_external_id_is' => '外部 ID 不为“:value”', - 'search_modifier_no_external_url' => '交易没有外部链接', - 'search_modifier_no_external_id' => '交易没有外部ID', - 'search_modifier_not_any_external_url' => '交易没有外部链接', - 'search_modifier_not_any_external_id' => '交易没有外部ID', - 'search_modifier_any_external_url' => '交易必须有一个(或任意多个)外部链接', - 'search_modifier_any_external_id' => '交易必须有一个(或任意多个)外部ID', - 'search_modifier_not_no_external_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' => '描述不包含“:value”', - 'search_modifier_description_is' => '描述为“:value”', - 'search_modifier_not_description_is' => '描述不为 ":value"', - 'search_modifier_currency_is' => '交易 (外币) 货币为“:value”', - 'search_modifier_not_currency_is' => '交易 (外币) 货币不为“:value”', - 'search_modifier_foreign_currency_is' => '交易外币为“:value”', - 'search_modifier_not_foreign_currency_is' => '交易外币不为“:value”', - 'search_modifier_has_attachments' => '交易必须有附件', - 'search_modifier_has_no_category' => '交易不能有分类', - 'search_modifier_not_has_no_category' => '交易必须有一个(或任意多个)分类', - 'search_modifier_not_has_any_category' => '交易必须没有分类', - 'search_modifier_has_any_category' => '交易必须有分类', - 'search_modifier_has_no_budget' => '交易不能有预算', - 'search_modifier_not_has_any_budget' => '交易必须不存在预算', - 'search_modifier_has_any_budget' => '交易必须有预算', - 'search_modifier_not_has_no_budget' => '交易必须有一个(或任意多个)预算', - 'search_modifier_has_no_bill' => '交易必须不存在账单', - 'search_modifier_not_has_no_bill' => '交易必须有一个(或任意多个)账单', - 'search_modifier_has_any_bill' => '交易必须有一个(或任意多个)账单', - 'search_modifier_not_has_any_bill' => '交易必须不存在账单', - 'search_modifier_has_no_tag' => '交易不能有标签', - 'search_modifier_not_has_any_tag' => '交易必须没有标签', - 'search_modifier_not_has_no_tag' => '交易必须有一个(或任意多个)标签', - 'search_modifier_has_any_tag' => '交易必须有标签', - 'search_modifier_notes_contains' => '交易备注包含“:value”', - 'search_modifier_not_notes_contains' => '交易备注不包含“:value”', - 'search_modifier_notes_starts' => '交易备注开头为“:value”', - 'search_modifier_not_notes_starts' => '交易备注开头不含":value"', - 'search_modifier_notes_ends' => '交易备注结尾包含":value"', - 'search_modifier_not_notes_ends' => '交易备注结尾不含":value"', - 'search_modifier_notes_is' => '交易备注是":value"', - 'search_modifier_not_notes_is' => '交易备注不是":value"', - 'search_modifier_no_notes' => '交易备注为空', - 'search_modifier_not_no_notes' => '交易必须填写备注', - 'search_modifier_any_notes' => '交易备注不为空', - 'search_modifier_not_any_notes' => '交易没有备注', - 'search_modifier_amount_is' => '金额为 :value', - 'search_modifier_not_amount_is' => '金额不是 :value', - 'search_modifier_amount_less' => '金额小于或等于:value', - 'search_modifier_not_amount_more' => '金额小于或等于:value', - 'search_modifier_amount_more' => '金额大于或等于:value', - 'search_modifier_not_amount_less' => '金额大于或等于:value', - 'search_modifier_source_account_is' => '来源账户名称为“:value”', - 'search_modifier_not_source_account_is' => '来源账户名称不为“:value”', - 'search_modifier_source_account_contains' => '来源账户名称包含“:value”', - 'search_modifier_not_source_account_contains' => '来源账户名称不包含“:value”', - 'search_modifier_source_account_starts' => '来源账户名称开头为“:value”', - 'search_modifier_not_source_account_starts' => '来源帐户名称不以 ":value 开头的', - 'search_modifier_source_account_ends' => '来源账户名称结尾为“:value”', - 'search_modifier_not_source_account_ends' => '来源帐户名称不以":value" 结尾的', - 'search_modifier_source_account_id' => '来源账户 ID 为 :value', - 'search_modifier_not_source_account_id' => '来源账户 ID 不为 :value', - 'search_modifier_source_account_nr_is' => '来源账户编号 (IBAN) 为“:value”', - 'search_modifier_not_source_account_nr_is' => '来源账户编号 (IBAN) 不为“:value”', - 'search_modifier_source_account_nr_contains' => '来源账户编号 (IBAN) 包含“:value”', - 'search_modifier_not_source_account_nr_contains' => '来源账户编号 (IBAN) 不包含“:value”', - 'search_modifier_source_account_nr_starts' => '来源账户编号 (IBAN) 开头为“:value”', - 'search_modifier_not_source_account_nr_starts' => '来源账户编号 (IBAN) 不以“:value”开头的', - 'search_modifier_source_account_nr_ends' => '来源账户编号 (IBAN) 以“:value”结尾的', - 'search_modifier_not_source_account_nr_ends' => '来源账户编号 (IBAN) 不以“:value”结尾的', - 'search_modifier_destination_account_is' => '目标账户名称为“:value”', - 'search_modifier_not_destination_account_is' => '目标帐户名称不是 ":value"', - 'search_modifier_destination_account_contains' => '目标账户名称包含“:value”', - 'search_modifier_not_destination_account_contains' => '目标帐户名称不包含 ":value"', - 'search_modifier_destination_account_starts' => '目标账户名称开头为“:value”', - 'search_modifier_not_destination_account_starts' => '目标帐户名称不是以 ":value 开头的', - 'search_modifier_destination_account_ends' => '目标帐户名称以 ":value" 结束', - 'search_modifier_not_destination_account_ends' => '目标帐户名称不是以 ":value 结束的', - 'search_modifier_destination_account_id' => '目标账户 ID 为 :value', - 'search_modifier_not_destination_account_id' => '目标帐户 ID 不是 :value', - 'search_modifier_destination_is_cash' => '目标账户为 (现金) 账户', - 'search_modifier_not_destination_is_cash' => '目标帐户不是"(现金)"帐户', - 'search_modifier_source_is_cash' => '来源账户为 (现金) 账户', - 'search_modifier_not_source_is_cash' => '来源账户不是 (现金) 账户', - 'search_modifier_destination_account_nr_is' => '目标账户编号 (IBAN) 为“:value”', - 'search_modifier_not_destination_account_nr_is' => '目标账户编号 (IBAN) 为“:value”', - 'search_modifier_destination_account_nr_contains' => '目标账户编号 (IBAN) 包含“:value”', - 'search_modifier_not_destination_account_nr_contains' => '目标帐户号 (IBAN) 不包含明确的 ":value"', - 'search_modifier_destination_account_nr_starts' => '目标账户编号 (IBAN) 开头为“:value”', - 'search_modifier_not_destination_account_nr_starts' => '目标账户编号 (IBAN) 不以“:value”开头的', - 'search_modifier_destination_account_nr_ends' => '目标账户编号 (IBAN) 结尾为“:value”', - 'search_modifier_not_destination_account_nr_ends' => '目标账户编号 (IBAN) 不以“:value”结尾的', - 'search_modifier_account_id' => '来源或/和目标账户 ID 为::value', - 'search_modifier_not_account_id' => '来源账户或目标账户 ID 不是: :value', - 'search_modifier_category_is' => '分类是“:value”', - 'search_modifier_not_category_is' => '分类不为“:value”', - 'search_modifier_budget_is' => '预算是“:value”', - 'search_modifier_not_budget_is' => '预算不为 “:value"', - 'search_modifier_bill_is' => '账单是“:value”', - 'search_modifier_not_bill_is' => '账单不是 “:value”', - 'search_modifier_transaction_type' => '交易类型是“:value”', - 'search_modifier_not_transaction_type' => '交易类型不为“:value”', - 'search_modifier_tag_is' => '标签是“:value”', - 'search_modifier_tag_contains' => '标签包含":value"', - 'search_modifier_not_tag_contains' => '标签不包含 ":value"', - 'search_modifier_tag_ends' => '标注以 ":value " 结束', - 'search_modifier_tag_starts' => '标签以“:value”开始', - 'search_modifier_not_tag_is' => '标签不为":value"', - 'search_modifier_date_on_year' => '交易年份是 ":value"', - 'search_modifier_not_date_on_year' => '交易年份不是 ":value"', - 'search_modifier_date_on_month' => '交易月份是 ":value"', - 'search_modifier_not_date_on_month' => '交易月份不是 ":value"', - 'search_modifier_date_on_day' => '交易在月份中的日期 ":value"', - 'search_modifier_not_date_on_day' => '交易不在月中的日期 ":value"', - 'search_modifier_date_before_year' => '交易是在之前或当前的年份 “:value”', - 'search_modifier_date_before_month' => '交易是在之前或当前的月份 “:value”', - 'search_modifier_date_before_day' => '交易为月中第“:value”天或之前', - 'search_modifier_date_after_year' => '交易在年内或年后“:value”', - 'search_modifier_date_after_month' => '交易在月内或月后“:value”', - 'search_modifier_date_after_day' => '交易为月中第“:value”天或之后', + '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' => '交易 ID 不为“:value”', + 'search_modifier_date_before' => '交易日期为“:value”或之前', + 'search_modifier_date_after' => '交易日期为“:value”或之后', + 'search_modifier_external_id_is' => '外部 ID 为“:value”', + 'search_modifier_not_external_id_is' => '外部 ID 不为“:value”', + 'search_modifier_no_external_url' => '交易没有外部链接', + 'search_modifier_no_external_id' => '交易没有外部ID', + 'search_modifier_not_any_external_url' => '交易没有外部链接', + 'search_modifier_not_any_external_id' => '交易没有外部ID', + 'search_modifier_any_external_url' => '交易必须有一个(或任意多个)外部链接', + 'search_modifier_any_external_id' => '交易必须有一个(或任意多个)外部ID', + 'search_modifier_not_no_external_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' => '描述不包含“:value”', + 'search_modifier_description_is' => '描述为“:value”', + 'search_modifier_not_description_is' => '描述不为 ":value"', + 'search_modifier_currency_is' => '交易 (外币) 货币为“:value”', + 'search_modifier_not_currency_is' => '交易 (外币) 货币不为“:value”', + 'search_modifier_foreign_currency_is' => '交易外币为“:value”', + 'search_modifier_not_foreign_currency_is' => '交易外币不为“:value”', + 'search_modifier_has_attachments' => '交易必须有附件', + 'search_modifier_has_no_category' => '交易不能有分类', + 'search_modifier_not_has_no_category' => '交易必须有一个(或任意多个)分类', + 'search_modifier_not_has_any_category' => '交易必须没有分类', + 'search_modifier_has_any_category' => '交易必须有分类', + 'search_modifier_has_no_budget' => '交易不能有预算', + 'search_modifier_not_has_any_budget' => '交易必须不存在预算', + 'search_modifier_has_any_budget' => '交易必须有预算', + 'search_modifier_not_has_no_budget' => '交易必须有一个(或任意多个)预算', + 'search_modifier_has_no_bill' => '交易必须不存在账单', + 'search_modifier_not_has_no_bill' => '交易必须有一个(或任意多个)账单', + 'search_modifier_has_any_bill' => '交易必须有一个(或任意多个)账单', + 'search_modifier_not_has_any_bill' => '交易必须不存在账单', + 'search_modifier_has_no_tag' => '交易不能有标签', + 'search_modifier_not_has_any_tag' => '交易必须没有标签', + 'search_modifier_not_has_no_tag' => '交易必须有一个(或任意多个)标签', + 'search_modifier_has_any_tag' => '交易必须有标签', + 'search_modifier_notes_contains' => '交易备注包含“:value”', + 'search_modifier_not_notes_contains' => '交易备注不包含“:value”', + 'search_modifier_notes_starts' => '交易备注开头为“:value”', + 'search_modifier_not_notes_starts' => '交易备注开头不含":value"', + 'search_modifier_notes_ends' => '交易备注结尾包含":value"', + 'search_modifier_not_notes_ends' => '交易备注结尾不含":value"', + 'search_modifier_notes_is' => '交易备注是":value"', + 'search_modifier_not_notes_is' => '交易备注不是":value"', + 'search_modifier_no_notes' => '交易备注为空', + 'search_modifier_not_no_notes' => '交易必须填写备注', + 'search_modifier_any_notes' => '交易备注不为空', + 'search_modifier_not_any_notes' => '交易没有备注', + 'search_modifier_amount_is' => '金额为 :value', + 'search_modifier_not_amount_is' => '金额不是 :value', + 'search_modifier_amount_less' => '金额小于或等于:value', + 'search_modifier_not_amount_more' => '金额小于或等于:value', + 'search_modifier_amount_more' => '金额大于或等于:value', + 'search_modifier_not_amount_less' => '金额大于或等于:value', + 'search_modifier_source_account_is' => '来源账户名称为“:value”', + 'search_modifier_not_source_account_is' => '来源账户名称不为“:value”', + 'search_modifier_source_account_contains' => '来源账户名称包含“:value”', + 'search_modifier_not_source_account_contains' => '来源账户名称不包含“:value”', + 'search_modifier_source_account_starts' => '来源账户名称开头为“:value”', + 'search_modifier_not_source_account_starts' => '来源帐户名称不以 ":value 开头的', + 'search_modifier_source_account_ends' => '来源账户名称结尾为“:value”', + 'search_modifier_not_source_account_ends' => '来源帐户名称不以":value" 结尾的', + 'search_modifier_source_account_id' => '来源账户 ID 为 :value', + 'search_modifier_not_source_account_id' => '来源账户 ID 不为 :value', + 'search_modifier_source_account_nr_is' => '来源账户编号 (IBAN) 为“:value”', + 'search_modifier_not_source_account_nr_is' => '来源账户编号 (IBAN) 不为“:value”', + 'search_modifier_source_account_nr_contains' => '来源账户编号 (IBAN) 包含“:value”', + 'search_modifier_not_source_account_nr_contains' => '来源账户编号 (IBAN) 不包含“:value”', + 'search_modifier_source_account_nr_starts' => '来源账户编号 (IBAN) 开头为“:value”', + 'search_modifier_not_source_account_nr_starts' => '来源账户编号 (IBAN) 不以“:value”开头的', + 'search_modifier_source_account_nr_ends' => '来源账户编号 (IBAN) 以“:value”结尾的', + 'search_modifier_not_source_account_nr_ends' => '来源账户编号 (IBAN) 不以“:value”结尾的', + 'search_modifier_destination_account_is' => '目标账户名称为“:value”', + 'search_modifier_not_destination_account_is' => '目标帐户名称不是 ":value"', + 'search_modifier_destination_account_contains' => '目标账户名称包含“:value”', + 'search_modifier_not_destination_account_contains' => '目标帐户名称不包含 ":value"', + 'search_modifier_destination_account_starts' => '目标账户名称开头为“:value”', + 'search_modifier_not_destination_account_starts' => '目标帐户名称不是以 ":value 开头的', + 'search_modifier_destination_account_ends' => '目标帐户名称以 ":value" 结束', + 'search_modifier_not_destination_account_ends' => '目标帐户名称不是以 ":value 结束的', + 'search_modifier_destination_account_id' => '目标账户 ID 为 :value', + 'search_modifier_not_destination_account_id' => '目标帐户 ID 不是 :value', + 'search_modifier_destination_is_cash' => '目标账户为 (现金) 账户', + 'search_modifier_not_destination_is_cash' => '目标帐户不是"(现金)"帐户', + 'search_modifier_source_is_cash' => '来源账户为 (现金) 账户', + 'search_modifier_not_source_is_cash' => '来源账户不是 (现金) 账户', + 'search_modifier_destination_account_nr_is' => '目标账户编号 (IBAN) 为“:value”', + 'search_modifier_not_destination_account_nr_is' => '目标账户编号 (IBAN) 为“:value”', + 'search_modifier_destination_account_nr_contains' => '目标账户编号 (IBAN) 包含“:value”', + 'search_modifier_not_destination_account_nr_contains' => '目标帐户号 (IBAN) 不包含明确的 ":value"', + 'search_modifier_destination_account_nr_starts' => '目标账户编号 (IBAN) 开头为“:value”', + 'search_modifier_not_destination_account_nr_starts' => '目标账户编号 (IBAN) 不以“:value”开头的', + 'search_modifier_destination_account_nr_ends' => '目标账户编号 (IBAN) 结尾为“:value”', + 'search_modifier_not_destination_account_nr_ends' => '目标账户编号 (IBAN) 不以“:value”结尾的', + 'search_modifier_account_id' => '来源或/和目标账户 ID 为::value', + 'search_modifier_not_account_id' => '来源账户或目标账户 ID 不是: :value', + 'search_modifier_category_is' => '分类是“:value”', + 'search_modifier_not_category_is' => '分类不为“:value”', + 'search_modifier_budget_is' => '预算是“:value”', + 'search_modifier_not_budget_is' => '预算不为 “:value"', + 'search_modifier_bill_is' => '账单是“:value”', + 'search_modifier_not_bill_is' => '账单不是 “:value”', + 'search_modifier_transaction_type' => '交易类型是“:value”', + 'search_modifier_not_transaction_type' => '交易类型不为“:value”', + 'search_modifier_tag_is' => '标签是“:value”', + 'search_modifier_tag_contains' => '标签包含":value"', + 'search_modifier_not_tag_contains' => '标签不包含 ":value"', + 'search_modifier_tag_ends' => '标注以 ":value " 结束', + 'search_modifier_tag_starts' => '标签以“:value”开始', + 'search_modifier_not_tag_is' => '标签不为":value"', + 'search_modifier_date_on_year' => '交易年份是 ":value"', + 'search_modifier_not_date_on_year' => '交易年份不是 ":value"', + 'search_modifier_date_on_month' => '交易月份是 ":value"', + 'search_modifier_not_date_on_month' => '交易月份不是 ":value"', + 'search_modifier_date_on_day' => '交易在月份中的日期 ":value"', + 'search_modifier_not_date_on_day' => '交易不在月中的日期 ":value"', + 'search_modifier_date_before_year' => '交易是在之前或当前的年份 “:value”', + 'search_modifier_date_before_month' => '交易是在之前或当前的月份 “:value”', + 'search_modifier_date_before_day' => '交易为月中第“:value”天或之前', + 'search_modifier_date_after_year' => '交易在年内或年后“:value”', + 'search_modifier_date_after_month' => '交易在月内或月后“:value”', + 'search_modifier_date_after_day' => '交易为月中第“:value”天或之后', // new - 'search_modifier_tag_is_not' => '没有标签是 ":value"', - 'search_modifier_not_tag_is_not' => '标签是“:value”', - 'search_modifier_account_is' => '其中一个账户为":value"', - 'search_modifier_not_account_is' => '两个帐户都不是 ":value"', - 'search_modifier_account_contains' => '其中一个账户包含":value"', - 'search_modifier_not_account_contains' => '两个帐户都不包含 ":value"', - 'search_modifier_account_ends' => '其中一个账户结尾为 ":value"', - 'search_modifier_not_account_ends' => '两个账户的结尾都不是":value"', - 'search_modifier_account_starts' => '其中一个账户开头为":value"', - 'search_modifier_not_account_starts' => '两个账户的开头都不是":value"', - 'search_modifier_account_nr_is' => '其中一个账户编号/IBAN为":value"', - 'search_modifier_not_account_nr_is' => '两个账户的编号/IBAN都不是":value"', - 'search_modifier_account_nr_contains' => '其中一个账户编号/IBAN包含":value"', - 'search_modifier_not_account_nr_contains' => '两个账户的编号/IBAN都不包含":value"', - 'search_modifier_account_nr_ends' => '其中一个账户编号/IBAN结尾为":value"', - 'search_modifier_not_account_nr_ends' => '两个账户的编号/IBAN结尾都不是":value"', - 'search_modifier_account_nr_starts' => '其中一个账户编号/IBAN开头为":value"', - 'search_modifier_not_account_nr_starts' => '两个账户的编号/IBAN开头都不是":value"', - 'search_modifier_category_contains' => '分类包含":value"', - 'search_modifier_not_category_contains' => '分类不包含":value"', - 'search_modifier_category_ends' => '分类结尾为“:value”', - 'search_modifier_not_category_ends' => '分类结尾不为":value"', - 'search_modifier_category_starts' => '分类开头为":value"', - 'search_modifier_not_category_starts' => '分类开头不为":value"', - 'search_modifier_budget_contains' => '预算包含":value"', - 'search_modifier_not_budget_contains' => '预算不包含":value"', - 'search_modifier_budget_ends' => '预算结尾为":value"', - 'search_modifier_not_budget_ends' => '预算结尾不为":value"', - 'search_modifier_budget_starts' => '预算开头为":value"', - 'search_modifier_not_budget_starts' => '预算开头不为":value"', - 'search_modifier_bill_contains' => '账单包含":value"', - 'search_modifier_not_bill_contains' => '账单不包含":value"', - 'search_modifier_bill_ends' => '账单结尾为":value"', - 'search_modifier_not_bill_ends' => '账单结尾不为":value"', - 'search_modifier_bill_starts' => '账单开头为":value"', - 'search_modifier_not_bill_starts' => '账单开头不为":value"', - 'search_modifier_external_id_contains' => '外部ID包含 ":value"', - 'search_modifier_not_external_id_contains' => '外部ID不包含 ":value"', - 'search_modifier_external_id_ends' => '外部ID结尾是 ":value"', - 'search_modifier_not_external_id_ends' => '外部ID结尾不是 ":value"', - 'search_modifier_external_id_starts' => '外部ID开头是 ":value"', - 'search_modifier_not_external_id_starts' => '外部ID开头不是 ":value"', - 'search_modifier_internal_reference_contains' => '内部引用包含":value"', - 'search_modifier_not_internal_reference_contains' => '内部引用不含":value"', - 'search_modifier_internal_reference_ends' => '内部引用结尾为":value"', - 'search_modifier_internal_reference_starts' => '内部引用开头为":value"', - 'search_modifier_not_internal_reference_ends' => '内部引用结尾不为":value"', - 'search_modifier_not_internal_reference_starts' => '内部引用开头不为":value"', - 'search_modifier_external_url_is' => '外部URL是“:value”', - 'search_modifier_not_external_url_is' => '外部URL不是 ":value"', - 'search_modifier_external_url_contains' => '外部URL包含 ":value"', - 'search_modifier_not_external_url_contains' => '外部URL不包含 ":value"', - 'search_modifier_external_url_ends' => '外部URL以“:value”结尾。', - 'search_modifier_not_external_url_ends' => '外部 URL 不以 ":value 结尾。', - 'search_modifier_external_url_starts' => '外部 URL 始于“:value”', - 'search_modifier_not_external_url_starts' => '外部 URL 不是以 ":value 开头的', - 'search_modifier_has_no_attachments' => '交易没有附件', - 'search_modifier_not_has_no_attachments' => '交易包含附件', - 'search_modifier_not_has_attachments' => '交易没有附件', - 'search_modifier_account_is_cash' => '其中一个账户为现金账户', - 'search_modifier_not_account_is_cash' => '两个账户都不是现金账户', - 'search_modifier_journal_id' => '日志ID是":value"', - 'search_modifier_not_journal_id' => '日志ID不是":value"', - 'search_modifier_recurrence_id' => '定期交易ID为":value"', - 'search_modifier_not_recurrence_id' => '定期交易ID不为":value"', - 'search_modifier_foreign_amount_is' => '外币金额为“:value”', - 'search_modifier_not_foreign_amount_is' => '外币不是“:value”', - 'search_modifier_foreign_amount_less' => '外币金额小于“:value”', - 'search_modifier_not_foreign_amount_more' => '外币金额小于“:value”', - 'search_modifier_not_foreign_amount_less' => '外币金额大于“:value”', - 'search_modifier_foreign_amount_more' => '外币金额大于“:value”', - 'search_modifier_exists' => '交易已存在 (任何交易)', - 'search_modifier_not_exists' => '交易不存在(没有交易)', + 'search_modifier_tag_is_not' => '没有标签是 ":value"', + 'search_modifier_not_tag_is_not' => '标签是“:value”', + 'search_modifier_account_is' => '其中一个账户为":value"', + 'search_modifier_not_account_is' => '两个帐户都不是 ":value"', + 'search_modifier_account_contains' => '其中一个账户包含":value"', + 'search_modifier_not_account_contains' => '两个帐户都不包含 ":value"', + 'search_modifier_account_ends' => '其中一个账户结尾为 ":value"', + 'search_modifier_not_account_ends' => '两个账户的结尾都不是":value"', + 'search_modifier_account_starts' => '其中一个账户开头为":value"', + 'search_modifier_not_account_starts' => '两个账户的开头都不是":value"', + 'search_modifier_account_nr_is' => '其中一个账户编号/IBAN为":value"', + 'search_modifier_not_account_nr_is' => '两个账户的编号/IBAN都不是":value"', + 'search_modifier_account_nr_contains' => '其中一个账户编号/IBAN包含":value"', + 'search_modifier_not_account_nr_contains' => '两个账户的编号/IBAN都不包含":value"', + 'search_modifier_account_nr_ends' => '其中一个账户编号/IBAN结尾为":value"', + 'search_modifier_not_account_nr_ends' => '两个账户的编号/IBAN结尾都不是":value"', + 'search_modifier_account_nr_starts' => '其中一个账户编号/IBAN开头为":value"', + 'search_modifier_not_account_nr_starts' => '两个账户的编号/IBAN开头都不是":value"', + 'search_modifier_category_contains' => '分类包含":value"', + 'search_modifier_not_category_contains' => '分类不包含":value"', + 'search_modifier_category_ends' => '分类结尾为“:value”', + 'search_modifier_not_category_ends' => '分类结尾不为":value"', + 'search_modifier_category_starts' => '分类开头为":value"', + 'search_modifier_not_category_starts' => '分类开头不为":value"', + 'search_modifier_budget_contains' => '预算包含":value"', + 'search_modifier_not_budget_contains' => '预算不包含":value"', + 'search_modifier_budget_ends' => '预算结尾为":value"', + 'search_modifier_not_budget_ends' => '预算结尾不为":value"', + 'search_modifier_budget_starts' => '预算开头为":value"', + 'search_modifier_not_budget_starts' => '预算开头不为":value"', + 'search_modifier_bill_contains' => '账单包含":value"', + 'search_modifier_not_bill_contains' => '账单不包含":value"', + 'search_modifier_bill_ends' => '账单结尾为":value"', + 'search_modifier_not_bill_ends' => '账单结尾不为":value"', + 'search_modifier_bill_starts' => '账单开头为":value"', + 'search_modifier_not_bill_starts' => '账单开头不为":value"', + 'search_modifier_external_id_contains' => '外部ID包含 ":value"', + 'search_modifier_not_external_id_contains' => '外部ID不包含 ":value"', + 'search_modifier_external_id_ends' => '外部ID结尾是 ":value"', + 'search_modifier_not_external_id_ends' => '外部ID结尾不是 ":value"', + 'search_modifier_external_id_starts' => '外部ID开头是 ":value"', + 'search_modifier_not_external_id_starts' => '外部ID开头不是 ":value"', + 'search_modifier_internal_reference_contains' => '内部引用包含":value"', + 'search_modifier_not_internal_reference_contains' => '内部引用不含":value"', + 'search_modifier_internal_reference_ends' => '内部引用结尾为":value"', + 'search_modifier_internal_reference_starts' => '内部引用开头为":value"', + 'search_modifier_not_internal_reference_ends' => '内部引用结尾不为":value"', + 'search_modifier_not_internal_reference_starts' => '内部引用开头不为":value"', + 'search_modifier_external_url_is' => '外部URL是“:value”', + 'search_modifier_not_external_url_is' => '外部URL不是 ":value"', + 'search_modifier_external_url_contains' => '外部URL包含 ":value"', + 'search_modifier_not_external_url_contains' => '外部URL不包含 ":value"', + 'search_modifier_external_url_ends' => '外部URL以“:value”结尾。', + 'search_modifier_not_external_url_ends' => '外部 URL 不以 ":value 结尾。', + 'search_modifier_external_url_starts' => '外部 URL 始于“:value”', + 'search_modifier_not_external_url_starts' => '外部 URL 不是以 ":value 开头的', + 'search_modifier_has_no_attachments' => '交易没有附件', + 'search_modifier_not_has_no_attachments' => '交易包含附件', + 'search_modifier_not_has_attachments' => '交易没有附件', + 'search_modifier_account_is_cash' => '其中一个账户为现金账户', + 'search_modifier_not_account_is_cash' => '两个账户都不是现金账户', + 'search_modifier_journal_id' => '日志ID是":value"', + 'search_modifier_not_journal_id' => '日志ID不是":value"', + 'search_modifier_recurrence_id' => '定期交易ID为":value"', + 'search_modifier_not_recurrence_id' => '定期交易ID不为":value"', + 'search_modifier_foreign_amount_is' => '外币金额为“:value”', + 'search_modifier_not_foreign_amount_is' => '外币不是“:value”', + 'search_modifier_foreign_amount_less' => '外币金额小于“:value”', + 'search_modifier_not_foreign_amount_more' => '外币金额小于“:value”', + 'search_modifier_not_foreign_amount_less' => '外币金额大于“:value”', + 'search_modifier_foreign_amount_more' => '外币金额大于“:value”', + 'search_modifier_exists' => '交易已存在 (任何交易)', + 'search_modifier_not_exists' => '交易不存在(没有交易)', // date fields - 'search_modifier_interest_date_on' => '交易的利息日期为 ":value"', - 'search_modifier_not_interest_date_on' => '交易利息日期不为“:value”', - 'search_modifier_interest_date_on_year' => '交易利息日期的年份为“:value”', - 'search_modifier_not_interest_date_on_year' => '交易利息日期的年份不为“:value”', - 'search_modifier_interest_date_on_month' => '交易利息日期的月份为“:value”', - 'search_modifier_not_interest_date_on_month' => '交易利息日期的月份不为“:value”', - 'search_modifier_interest_date_on_day' => '交易利息日期为月中第“:value”天', - 'search_modifier_not_interest_date_on_day' => '交易利息日期不为月中第“:value”天', - 'search_modifier_interest_date_before_year' => '交易利息日期的年份为当前或之前:“:value”', - 'search_modifier_interest_date_before_month' => '交易利息日期的月份为“:value”或之前', - 'search_modifier_interest_date_before_day' => '交易利息的日期为月中第“:value”天或之前', - 'search_modifier_interest_date_after_year' => '交易利息日期的年份为“:value”或之后', - 'search_modifier_interest_date_after_month' => '交易利息日期的月份为“:value”或之后', - 'search_modifier_interest_date_after_day' => '交易利息的日期为月中第“:value”天或之后', - 'search_modifier_book_date_on_year' => '交易登记日期的年份为“:value”', - 'search_modifier_book_date_on_month' => '交易登记日期的月份为“:value”', - 'search_modifier_book_date_on_day' => '交易登记日期为月中第“:value”天', - 'search_modifier_not_book_date_on_year' => '交易登记日期的年份不为“:value”', - 'search_modifier_not_book_date_on_month' => '交易登记日期的月份不为“:value”', - 'search_modifier_not_book_date_on_day' => '交易登记日期不为月中第“:value”天', - 'search_modifier_book_date_before_year' => '交易登记日期的年份为“:value”或之前', - 'search_modifier_book_date_before_month' => '交易登记日期的月份为“:value”或之前', - 'search_modifier_book_date_before_day' => '交易登记日期为月中第“:value”天或之前', - 'search_modifier_book_date_after_year' => '交易登记日期的年份为“:value”或之后', - 'search_modifier_book_date_after_month' => '交易登记日期的月份为“:value”或之后', - 'search_modifier_book_date_after_day' => '交易登记日期为月中第“:value”天或之后', - 'search_modifier_process_date_on_year' => '交易处理日期的年份为“:value”', - 'search_modifier_process_date_on_month' => '交易处理日期的月份为“:value”', - 'search_modifier_process_date_on_day' => '交易处理日期为月中第“:value”天', - 'search_modifier_not_process_date_on_year' => '交易处理日期的年份不为“:value”', - 'search_modifier_not_process_date_on_month' => '交易处理日期的月份不为“:value”', - 'search_modifier_not_process_date_on_day' => '交易处理日期不为月中第“:value”天', - 'search_modifier_process_date_before_year' => '交易处理日期的年份为“:value”或之前', - 'search_modifier_process_date_before_month' => '交易处理日期的月份为“:value”或之前', - 'search_modifier_process_date_before_day' => '交易处理日期为月中第“:value”天或之前', - 'search_modifier_process_date_after_year' => '交易处理日期的年份为“:value”或之后', - 'search_modifier_process_date_after_month' => '交易处理日期的月份为“:value”或之后', - 'search_modifier_process_date_after_day' => '交易处理日期为月中第“:value”天或之后', - 'search_modifier_due_date_on_year' => '交易截止日期的年份为“:value”', - 'search_modifier_due_date_on_month' => '交易截止日期的月份为“:value”', - 'search_modifier_due_date_on_day' => '交易截止日期为月中第“:value”天', - 'search_modifier_not_due_date_on_year' => '交易截止日期的年份不为“:value”', - 'search_modifier_not_due_date_on_month' => '交易截止日期的月份不为“:value”', - 'search_modifier_not_due_date_on_day' => '交易截止日期不为月中第“:value”天', - 'search_modifier_due_date_before_year' => '交易截止日期的年份为“:value”或之前', - 'search_modifier_due_date_before_month' => '交易截止日期的月份为“:value”或之前', - 'search_modifier_due_date_before_day' => '交易截止日期为月中第“:value”天或之前', - 'search_modifier_due_date_after_year' => '交易截止日期的年份为“:value”或之后', - 'search_modifier_due_date_after_month' => '交易截止日期的月份为“:value”或之后', - 'search_modifier_due_date_after_day' => '交易截止日期为月中第“:value”天或之后', - 'search_modifier_payment_date_on_year' => '交易付款日期的年份为“:value”', - 'search_modifier_payment_date_on_month' => '交易付款日期的月份为“:value”', - 'search_modifier_payment_date_on_day' => '交易付款日期为月中第“:value”天', - 'search_modifier_not_payment_date_on_year' => '交易付款日期的年份不为“:value”', - 'search_modifier_not_payment_date_on_month' => '交易付款日期的月份不为“:value”', - 'search_modifier_not_payment_date_on_day' => '交易付款日期不为月中第“:value”天', - 'search_modifier_payment_date_before_year' => '交易付款日期的年份为“:value”或之前', - 'search_modifier_payment_date_before_month' => '交易付款日期的月份为“:value”或之前', - 'search_modifier_payment_date_before_day' => '交易付款日期为月中第“:value”天或之前', - 'search_modifier_payment_date_after_year' => '交易付款日期的年份为“:value”或之后', - 'search_modifier_payment_date_after_month' => '交易付款日期的月份为“:value”或之后', - 'search_modifier_payment_date_after_day' => '交易付款日期为月中第“:value”天或之后', - 'search_modifier_invoice_date_on_year' => '交易发票日期的年份为":value"', - 'search_modifier_invoice_date_on_month' => '交易发票日期的月份为":value"', - 'search_modifier_invoice_date_on_day' => '交易发票日期为月中第“:value”天', - 'search_modifier_not_invoice_date_on_year' => '交易发票日期的年份不为“:value”', - 'search_modifier_not_invoice_date_on_month' => '交易发票日期的月份不为“:value”', - 'search_modifier_not_invoice_date_on_day' => '交易发票日期不为月中第“:value”天', - 'search_modifier_invoice_date_before_year' => '交易发票日期的年份为“:value”或之前', - 'search_modifier_invoice_date_before_month' => '交易发票日期的月份为“:value”或之前', - 'search_modifier_invoice_date_before_day' => '交易发票日期为月中第“:value”天或之前', - 'search_modifier_invoice_date_after_year' => '交易发票日期的年份为“:value”或之后', - 'search_modifier_invoice_date_after_month' => '交易发票日期的月份为“:value”或之后', - 'search_modifier_invoice_date_after_day' => '交易发票日期为月中第“:value”天或之后', + 'search_modifier_interest_date_on' => '交易的利息日期为 ":value"', + 'search_modifier_not_interest_date_on' => '交易利息日期不为“:value”', + 'search_modifier_interest_date_on_year' => '交易利息日期的年份为“:value”', + 'search_modifier_not_interest_date_on_year' => '交易利息日期的年份不为“:value”', + 'search_modifier_interest_date_on_month' => '交易利息日期的月份为“:value”', + 'search_modifier_not_interest_date_on_month' => '交易利息日期的月份不为“:value”', + 'search_modifier_interest_date_on_day' => '交易利息日期为月中第“:value”天', + 'search_modifier_not_interest_date_on_day' => '交易利息日期不为月中第“:value”天', + 'search_modifier_interest_date_before_year' => '交易利息日期的年份为当前或之前:“:value”', + 'search_modifier_interest_date_before_month' => '交易利息日期的月份为“:value”或之前', + 'search_modifier_interest_date_before_day' => '交易利息的日期为月中第“:value”天或之前', + 'search_modifier_interest_date_after_year' => '交易利息日期的年份为“:value”或之后', + 'search_modifier_interest_date_after_month' => '交易利息日期的月份为“:value”或之后', + 'search_modifier_interest_date_after_day' => '交易利息的日期为月中第“:value”天或之后', + 'search_modifier_book_date_on_year' => '交易登记日期的年份为“:value”', + 'search_modifier_book_date_on_month' => '交易登记日期的月份为“:value”', + 'search_modifier_book_date_on_day' => '交易登记日期为月中第“:value”天', + 'search_modifier_not_book_date_on_year' => '交易登记日期的年份不为“:value”', + 'search_modifier_not_book_date_on_month' => '交易登记日期的月份不为“:value”', + 'search_modifier_not_book_date_on_day' => '交易登记日期不为月中第“:value”天', + 'search_modifier_book_date_before_year' => '交易登记日期的年份为“:value”或之前', + 'search_modifier_book_date_before_month' => '交易登记日期的月份为“:value”或之前', + 'search_modifier_book_date_before_day' => '交易登记日期为月中第“:value”天或之前', + 'search_modifier_book_date_after_year' => '交易登记日期的年份为“:value”或之后', + 'search_modifier_book_date_after_month' => '交易登记日期的月份为“:value”或之后', + 'search_modifier_book_date_after_day' => '交易登记日期为月中第“:value”天或之后', + 'search_modifier_process_date_on_year' => '交易处理日期的年份为“:value”', + 'search_modifier_process_date_on_month' => '交易处理日期的月份为“:value”', + 'search_modifier_process_date_on_day' => '交易处理日期为月中第“:value”天', + 'search_modifier_not_process_date_on_year' => '交易处理日期的年份不为“:value”', + 'search_modifier_not_process_date_on_month' => '交易处理日期的月份不为“:value”', + 'search_modifier_not_process_date_on_day' => '交易处理日期不为月中第“:value”天', + 'search_modifier_process_date_before_year' => '交易处理日期的年份为“:value”或之前', + 'search_modifier_process_date_before_month' => '交易处理日期的月份为“:value”或之前', + 'search_modifier_process_date_before_day' => '交易处理日期为月中第“:value”天或之前', + 'search_modifier_process_date_after_year' => '交易处理日期的年份为“:value”或之后', + 'search_modifier_process_date_after_month' => '交易处理日期的月份为“:value”或之后', + 'search_modifier_process_date_after_day' => '交易处理日期为月中第“:value”天或之后', + 'search_modifier_due_date_on_year' => '交易截止日期的年份为“:value”', + 'search_modifier_due_date_on_month' => '交易截止日期的月份为“:value”', + 'search_modifier_due_date_on_day' => '交易截止日期为月中第“:value”天', + 'search_modifier_not_due_date_on_year' => '交易截止日期的年份不为“:value”', + 'search_modifier_not_due_date_on_month' => '交易截止日期的月份不为“:value”', + 'search_modifier_not_due_date_on_day' => '交易截止日期不为月中第“:value”天', + 'search_modifier_due_date_before_year' => '交易截止日期的年份为“:value”或之前', + 'search_modifier_due_date_before_month' => '交易截止日期的月份为“:value”或之前', + 'search_modifier_due_date_before_day' => '交易截止日期为月中第“:value”天或之前', + 'search_modifier_due_date_after_year' => '交易截止日期的年份为“:value”或之后', + 'search_modifier_due_date_after_month' => '交易截止日期的月份为“:value”或之后', + 'search_modifier_due_date_after_day' => '交易截止日期为月中第“:value”天或之后', + 'search_modifier_payment_date_on_year' => '交易付款日期的年份为“:value”', + 'search_modifier_payment_date_on_month' => '交易付款日期的月份为“:value”', + 'search_modifier_payment_date_on_day' => '交易付款日期为月中第“:value”天', + 'search_modifier_not_payment_date_on_year' => '交易付款日期的年份不为“:value”', + 'search_modifier_not_payment_date_on_month' => '交易付款日期的月份不为“:value”', + 'search_modifier_not_payment_date_on_day' => '交易付款日期不为月中第“:value”天', + 'search_modifier_payment_date_before_year' => '交易付款日期的年份为“:value”或之前', + 'search_modifier_payment_date_before_month' => '交易付款日期的月份为“:value”或之前', + 'search_modifier_payment_date_before_day' => '交易付款日期为月中第“:value”天或之前', + 'search_modifier_payment_date_after_year' => '交易付款日期的年份为“:value”或之后', + 'search_modifier_payment_date_after_month' => '交易付款日期的月份为“:value”或之后', + 'search_modifier_payment_date_after_day' => '交易付款日期为月中第“:value”天或之后', + 'search_modifier_invoice_date_on_year' => '交易发票日期的年份为":value"', + 'search_modifier_invoice_date_on_month' => '交易发票日期的月份为":value"', + 'search_modifier_invoice_date_on_day' => '交易发票日期为月中第“:value”天', + 'search_modifier_not_invoice_date_on_year' => '交易发票日期的年份不为“:value”', + 'search_modifier_not_invoice_date_on_month' => '交易发票日期的月份不为“:value”', + 'search_modifier_not_invoice_date_on_day' => '交易发票日期不为月中第“:value”天', + 'search_modifier_invoice_date_before_year' => '交易发票日期的年份为“:value”或之前', + 'search_modifier_invoice_date_before_month' => '交易发票日期的月份为“:value”或之前', + 'search_modifier_invoice_date_before_day' => '交易发票日期为月中第“:value”天或之前', + 'search_modifier_invoice_date_after_year' => '交易发票日期的年份为“:value”或之后', + 'search_modifier_invoice_date_after_month' => '交易发票日期的月份为“:value”或之后', + 'search_modifier_invoice_date_after_day' => '交易发票日期为月中第“:value”天或之后', // other dates - 'search_modifier_updated_at_on_year' => '交易上次更新的年份为“:value”', - 'search_modifier_updated_at_on_month' => '交易上次更新的月份为“:value”', - 'search_modifier_updated_at_on_day' => '交易上次更新为月中第“:value”天', - 'search_modifier_not_updated_at_on_year' => '交易上次更新的年份不为“:value”', - 'search_modifier_not_updated_at_on_month' => '交易上次更新的月份不为“:value”', - 'search_modifier_not_updated_at_on_day' => '交易上次更新不为月中第“:value”天', - 'search_modifier_updated_at_before_year' => '交易上次更新的年份为“:value”或之前', - 'search_modifier_updated_at_before_month' => '交易上次更新的月份为“:value”或之前', - 'search_modifier_updated_at_before_day' => '交易上次更新为月中第“:value”天或之前', - 'search_modifier_updated_at_after_year' => '交易上次更新的年份为“:value”或之后', - 'search_modifier_updated_at_after_month' => '交易上次更新的月份为“:value”或之后', - 'search_modifier_updated_at_after_day' => '交易上次更新为月中第“:value”天或之后', - 'search_modifier_created_at_on_year' => '交易创建的年份为“:value”', - 'search_modifier_created_at_on_month' => '交易创建的月份为“:value”', - 'search_modifier_created_at_on_day' => '交易创建为月中第“:value”天', - 'search_modifier_not_created_at_on_year' => '交易创建的年份不为“:value”', - 'search_modifier_not_created_at_on_month' => '交易创建的月份不为“:value”', - 'search_modifier_not_created_at_on_day' => '交易创建不为月中第“:value”天', - 'search_modifier_created_at_before_year' => '交易创建的年份为“:value”或之前', - 'search_modifier_created_at_before_month' => '交易创建的月份为“:value”或之前', - 'search_modifier_created_at_before_day' => '交易创建为月中第“:value”天或之前', - 'search_modifier_created_at_after_year' => '交易创建的年份为“:value”或之后', - 'search_modifier_created_at_after_month' => '交易创建的月份为“:value”或之后', - 'search_modifier_created_at_after_day' => '交易创建为月中第“:value”天或之后', - 'search_modifier_interest_date_before' => '交易利息日期为“:value”或之前', - 'search_modifier_interest_date_after' => '交易利息日期为“:value”或之后', - 'search_modifier_book_date_on' => '交易登记日期为“:value”', - 'search_modifier_not_book_date_on' => '交易登记日期不为“:value”', - 'search_modifier_book_date_before' => '交易登记日期为“:value”或之前', - 'search_modifier_book_date_after' => '交易登记日期为“:value”或之后', - 'search_modifier_process_date_on' => '交易处理日期为“:value”', - 'search_modifier_not_process_date_on' => '交易处理日期不为“:value”', - 'search_modifier_process_date_before' => '交易处理日期为“:value”或之前', - 'search_modifier_process_date_after' => '交易处理日期为“:value”或之后', - 'search_modifier_due_date_on' => '交易截止日期为“:value”', - 'search_modifier_not_due_date_on' => '交易截止日期不为“:value”', - 'search_modifier_due_date_before' => '交易截止日期为“:value”或之前', - 'search_modifier_due_date_after' => '交易截止日期为“:value”或之后', - 'search_modifier_payment_date_on' => '交易付款日期为“:value”', - 'search_modifier_not_payment_date_on' => '交易付款日期不为“:value”', - 'search_modifier_payment_date_before' => '交易付款日期为“:value”或之前', - 'search_modifier_payment_date_after' => '交易付款日期为“:value”或之后', - 'search_modifier_invoice_date_on' => '交易发票日期为:“:value”', - 'search_modifier_not_invoice_date_on' => '交易发票日期不为:“:value”', - 'search_modifier_invoice_date_before' => '交易发票日期为“:value”或之前', - 'search_modifier_invoice_date_after' => '交易发票日期为“:value”或之后', - 'search_modifier_created_at_on' => '交易创建于":value"', - 'search_modifier_not_created_at_on' => '交易不是创建于“:value”', - 'search_modifier_created_at_before' => '交易创建于“:value”或之前', - 'search_modifier_created_at_after' => '交易创建于“:value”或之后', - 'search_modifier_updated_at_on' => '交易更新于“:value”', - 'search_modifier_not_updated_at_on' => '交易不是更新于“:value”', - 'search_modifier_updated_at_before' => '交易不是更新于“:value”或之前', - 'search_modifier_updated_at_after' => '交易不是更新于“:value”或之后', + 'search_modifier_updated_at_on_year' => '交易上次更新的年份为“:value”', + 'search_modifier_updated_at_on_month' => '交易上次更新的月份为“:value”', + 'search_modifier_updated_at_on_day' => '交易上次更新为月中第“:value”天', + 'search_modifier_not_updated_at_on_year' => '交易上次更新的年份不为“:value”', + 'search_modifier_not_updated_at_on_month' => '交易上次更新的月份不为“:value”', + 'search_modifier_not_updated_at_on_day' => '交易上次更新不为月中第“:value”天', + 'search_modifier_updated_at_before_year' => '交易上次更新的年份为“:value”或之前', + 'search_modifier_updated_at_before_month' => '交易上次更新的月份为“:value”或之前', + 'search_modifier_updated_at_before_day' => '交易上次更新为月中第“:value”天或之前', + 'search_modifier_updated_at_after_year' => '交易上次更新的年份为“:value”或之后', + 'search_modifier_updated_at_after_month' => '交易上次更新的月份为“:value”或之后', + 'search_modifier_updated_at_after_day' => '交易上次更新为月中第“:value”天或之后', + 'search_modifier_created_at_on_year' => '交易创建的年份为“:value”', + 'search_modifier_created_at_on_month' => '交易创建的月份为“:value”', + 'search_modifier_created_at_on_day' => '交易创建为月中第“:value”天', + 'search_modifier_not_created_at_on_year' => '交易创建的年份不为“:value”', + 'search_modifier_not_created_at_on_month' => '交易创建的月份不为“:value”', + 'search_modifier_not_created_at_on_day' => '交易创建不为月中第“:value”天', + 'search_modifier_created_at_before_year' => '交易创建的年份为“:value”或之前', + 'search_modifier_created_at_before_month' => '交易创建的月份为“:value”或之前', + 'search_modifier_created_at_before_day' => '交易创建为月中第“:value”天或之前', + 'search_modifier_created_at_after_year' => '交易创建的年份为“:value”或之后', + 'search_modifier_created_at_after_month' => '交易创建的月份为“:value”或之后', + 'search_modifier_created_at_after_day' => '交易创建为月中第“:value”天或之后', + 'search_modifier_interest_date_before' => '交易利息日期为“:value”或之前', + 'search_modifier_interest_date_after' => '交易利息日期为“:value”或之后', + 'search_modifier_book_date_on' => '交易登记日期为“:value”', + 'search_modifier_not_book_date_on' => '交易登记日期不为“:value”', + 'search_modifier_book_date_before' => '交易登记日期为“:value”或之前', + 'search_modifier_book_date_after' => '交易登记日期为“:value”或之后', + 'search_modifier_process_date_on' => '交易处理日期为“:value”', + 'search_modifier_not_process_date_on' => '交易处理日期不为“:value”', + 'search_modifier_process_date_before' => '交易处理日期为“:value”或之前', + 'search_modifier_process_date_after' => '交易处理日期为“:value”或之后', + 'search_modifier_due_date_on' => '交易截止日期为“:value”', + 'search_modifier_not_due_date_on' => '交易截止日期不为“:value”', + 'search_modifier_due_date_before' => '交易截止日期为“:value”或之前', + 'search_modifier_due_date_after' => '交易截止日期为“:value”或之后', + 'search_modifier_payment_date_on' => '交易付款日期为“:value”', + 'search_modifier_not_payment_date_on' => '交易付款日期不为“:value”', + 'search_modifier_payment_date_before' => '交易付款日期为“:value”或之前', + 'search_modifier_payment_date_after' => '交易付款日期为“:value”或之后', + 'search_modifier_invoice_date_on' => '交易发票日期为:“:value”', + 'search_modifier_not_invoice_date_on' => '交易发票日期不为:“:value”', + 'search_modifier_invoice_date_before' => '交易发票日期为“:value”或之前', + 'search_modifier_invoice_date_after' => '交易发票日期为“:value”或之后', + 'search_modifier_created_at_on' => '交易创建于":value"', + 'search_modifier_not_created_at_on' => '交易不是创建于“:value”', + 'search_modifier_created_at_before' => '交易创建于“:value”或之前', + 'search_modifier_created_at_after' => '交易创建于“:value”或之后', + 'search_modifier_updated_at_on' => '交易更新于“:value”', + 'search_modifier_not_updated_at_on' => '交易不是更新于“:value”', + 'search_modifier_updated_at_before' => '交易不是更新于“:value”或之前', + 'search_modifier_updated_at_after' => '交易不是更新于“:value”或之后', - 'search_modifier_attachment_name_is' => '任意一个附件名称为":value"', - 'search_modifier_attachment_name_contains' => '任何附件的名称包含":value"', - 'search_modifier_attachment_name_starts' => '任何附件的名称开头为":value"', - 'search_modifier_attachment_name_ends' => '任何附件的名称结尾为":value"', - 'search_modifier_attachment_notes_are' => '任意一个附件的备注是“:value”', - 'search_modifier_attachment_notes_contains' => '任意一个附件的备注不是“:value”', - 'search_modifier_attachment_notes_starts' => '任一附件的备注开头为“:value”', - 'search_modifier_attachment_notes_ends' => '任一附件的结尾为“:value”', - 'search_modifier_not_attachment_name_is' => '任一附件的名称不为“:value”', - 'search_modifier_not_attachment_name_contains' => '任一附件的名称不包含“:value”', - 'search_modifier_not_attachment_name_starts' => '任一附件的名称开头不为“:value”', - 'search_modifier_not_attachment_name_ends' => '任一附件的名称结尾不为“:value”', - 'search_modifier_not_attachment_notes_are' => '任一附件的备注不为“:value”', - 'search_modifier_not_attachment_notes_contains' => '任一附件的备注不包含“:value”', - 'search_modifier_not_attachment_notes_starts' => '任一附件的备注开头为“:value”', - 'search_modifier_not_attachment_notes_ends' => '任一附件的结尾不为“:value”', - 'search_modifier_sepa_ct_is' => 'SEPA CT是“:value”', - 'update_rule_from_query' => '从搜索语句更新规则“:rule”', - 'create_rule_from_query' => '从搜索语句创建新规则', - 'rule_from_search_words' => '规则引擎无法处理“:string”。符合搜索语句的建议规则可能会给出不同的结果,请仔细确认规则触发条件。', + 'search_modifier_attachment_name_is' => '任意一个附件名称为":value"', + 'search_modifier_attachment_name_contains' => '任何附件的名称包含":value"', + 'search_modifier_attachment_name_starts' => '任何附件的名称开头为":value"', + 'search_modifier_attachment_name_ends' => '任何附件的名称结尾为":value"', + 'search_modifier_attachment_notes_are' => '任意一个附件的备注是“:value”', + 'search_modifier_attachment_notes_contains' => '任意一个附件的备注不是“:value”', + 'search_modifier_attachment_notes_starts' => '任一附件的备注开头为“:value”', + 'search_modifier_attachment_notes_ends' => '任一附件的结尾为“:value”', + 'search_modifier_not_attachment_name_is' => '任一附件的名称不为“:value”', + 'search_modifier_not_attachment_name_contains' => '任一附件的名称不包含“:value”', + 'search_modifier_not_attachment_name_starts' => '任一附件的名称开头不为“:value”', + 'search_modifier_not_attachment_name_ends' => '任一附件的名称结尾不为“:value”', + 'search_modifier_not_attachment_notes_are' => '任一附件的备注不为“:value”', + 'search_modifier_not_attachment_notes_contains' => '任一附件的备注不包含“:value”', + 'search_modifier_not_attachment_notes_starts' => '任一附件的备注开头为“:value”', + 'search_modifier_not_attachment_notes_ends' => '任一附件的结尾不为“:value”', + 'search_modifier_sepa_ct_is' => 'SEPA CT是“:value”', + 'update_rule_from_query' => '从搜索语句更新规则“:rule”', + 'create_rule_from_query' => '从搜索语句创建新规则', + 'rule_from_search_words' => '规则引擎无法处理“:string”。符合搜索语句的建议规则可能会给出不同的结果,请仔细确认规则触发条件。', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => '搜索结果同时包含以下内容:', - 'general_search_error' => '搜索时出错。请检查日志文件以获取更多信息。', - 'search_box' => '搜索', - 'search_box_intro' => '欢迎使用 Firefly III 的搜索功能,请输入搜索语句。由于搜索为高级功能,请确保您已阅读过帮助文件。', - 'search_error' => '搜索时出现错误', - 'search_searching' => '正在搜索...', - 'search_results' => '搜索结果', + 'modifiers_applies_are' => '搜索结果同时包含以下内容:', + 'general_search_error' => '搜索时出错。请检查日志文件以获取更多信息。', + 'search_box' => '搜索', + 'search_box_intro' => '欢迎使用 Firefly III 的搜索功能,请输入搜索语句。由于搜索为高级功能,请确保您已阅读过帮助文件。', + 'search_error' => '搜索时出现错误', + 'search_searching' => '正在搜索...', + 'search_results' => '搜索结果', // repeat frequencies: - 'repeat_freq_yearly' => '每年', - 'repeat_freq_half-year' => '每半年', - 'repeat_freq_quarterly' => '每季', - 'repeat_freq_monthly' => '每月', - 'repeat_freq_weekly' => '每周', - 'repeat_freq_daily' => '每天', - 'daily' => '每天', - 'weekly' => '每周', - 'quarterly' => '每季', - 'half-year' => '每半年', - 'yearly' => '每年', + 'repeat_freq_yearly' => '每年', + 'repeat_freq_half-year' => '每半年', + 'repeat_freq_quarterly' => '每季', + 'repeat_freq_monthly' => '每月', + 'repeat_freq_weekly' => '每周', + 'repeat_freq_daily' => '每天', + 'daily' => '每天', + 'weekly' => '每周', + 'quarterly' => '每季', + 'half-year' => '每半年', + 'yearly' => '每年', // rules - 'is_not_rule_trigger' => '相反', - 'cannot_fire_inactive_rules' => '您不能执行已停用的规则。', - 'show_triggers' => '显示触发器', - 'show_actions' => '显示动作', - 'rules' => '规则', - 'rule_name' => '规则名称', - 'rule_triggers' => '规则触发于', - 'rule_actions' => '规则将执行', - 'new_rule' => '新规则', - 'new_rule_group' => '新规则组', - 'rule_priority_up' => '赋予规则更高优先次序', - 'rule_priority_down' => '赋予规则更低优先次序', - 'make_new_rule_group' => '创建新规则组', - 'store_new_rule_group' => '保存新规则组', - 'created_new_rule_group' => '新规则组“:title”已保存!', - 'updated_rule_group' => '成功更新“:title”规则组', - 'edit_rule_group' => '编辑“:title”规则组', - 'duplicate_rule' => '复制规则“:title”', - 'rule_copy_of' => ':title 副本', - 'duplicated_rule' => '已复制规则“:title”为“:newTitle”', - 'delete_rule_group' => '删除“:title”规则组', - 'deleted_rule_group' => '已删除规则组“:title”', - 'update_rule_group' => '更新规则组', - 'no_rules_in_group' => '此群组内没有规则', - 'move_rule_group_up' => '向上移动规则组', - 'move_rule_group_down' => '向下移动规则组', - 'save_rules_by_moving' => '将此规则移动到另一个规则组并保存:|将这些规则移动到另一个规则组并保存:', - 'make_new_rule' => '在规则组“:title”中创建新规则', - 'make_new_rule_no_group' => '建立新规则', - 'instructions_rule_from_bill' => '为了匹配交易至您的新账单“:name”,Firefly III 可以建立一条新规则,对您保存的每一笔交易自动进行检查。您确认下方信息准确无误后,即可保存规则,让 Firefly III 自动将交易匹配至您的新账单。', - 'instructions_rule_from_journal' => '基于您的交易之一创建一条规则。补充或提交下面的表格。', - 'rule_is_strict' => '精确规则', - 'rule_is_not_strict' => '模糊规则', - 'rule_help_stop_processing' => '勾选此复选框时,将不会执行此组中的后续规则。', - 'rule_help_strict' => '在精确规则中,所有触发条件必须全部满足才能执行动作。在模糊规则中,满足任意触发条件即可执行动作。', - 'rule_help_active' => '已停用的规则永远不会被触发。', - 'stored_new_rule' => '新规则“:title”已保存', - 'deleted_rule' => '已删除标题为 ":title" 的规则', - 'store_new_rule' => '保存新规则', - 'updated_rule' => '已以 ":title" 为标题更新规则', - 'default_rule_group_name' => '默认规则', - 'default_rule_group_description' => '未添加至特定组的规则。', - 'trigger' => '触发条件', - 'trigger_value' => '触发值', - 'stop_processing_other_triggers' => '停止处理其他触发条件', - 'add_rule_trigger' => '新增触发条件', - 'action' => '动作', - 'action_value' => '动作值', - 'stop_executing_other_actions' => '停止处理其他动作', - 'add_rule_action' => '新增动作', - 'edit_rule' => '编辑规则 ":title"', - 'delete_rule' => '删除规则 ":title"', - 'update_rule' => '更新规则', - 'test_rule_triggers' => '查看匹配的交易', - 'warning_no_matching_transactions' => '未找到符合条件的交易', - 'warning_no_valid_triggers' => '未提供有效触发条件。', - 'apply_rule_selection' => '选取交易并应用规则“:title”', - 'apply_rule_selection_intro' => '规则如“:title”一般仅应用于新增的或更新后的交易,但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则。在您更新一条规则后,且必须应用此规则至其他交易时,即可使用此功能。', - 'include_transactions_from_accounts' => '包含来自这些账户的交易', - 'include' => '包含?', - 'applied_rule_selection' => '{0} 规则“:title”没有改变任何您选择的交易。|[1] 规则“:title”改变了一条您选择的交易。|[2,*] 规则“:title”改变了:count条您选择的交易。', - 'execute' => '执行', - 'apply_rule_group_selection' => '选取交易并应用规则组“:title”', - 'apply_rule_group_selection_intro' => '规则组如“:title”一般仅应用于新增的或更新后的交易,但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则组内的规则。在您更新一个规则组后,且必须应用此组至其他交易时,即可使用此功能。', - 'applied_rule_group_selection' => '规则组“:title”已应用至所选交易', + 'is_not_rule_trigger' => '相反', + 'cannot_fire_inactive_rules' => '您不能执行已停用的规则。', + 'show_triggers' => '显示触发器', + 'show_actions' => '显示动作', + 'rules' => '规则', + 'rule_name' => '规则名称', + 'rule_triggers' => '规则触发于', + 'rule_actions' => '规则将执行', + 'new_rule' => '新规则', + 'new_rule_group' => '新规则组', + 'rule_priority_up' => '赋予规则更高优先次序', + 'rule_priority_down' => '赋予规则更低优先次序', + 'make_new_rule_group' => '创建新规则组', + 'store_new_rule_group' => '保存新规则组', + 'created_new_rule_group' => '新规则组“:title”已保存!', + 'updated_rule_group' => '成功更新“:title”规则组', + 'edit_rule_group' => '编辑“:title”规则组', + 'duplicate_rule' => '复制规则“:title”', + 'rule_copy_of' => ':title 副本', + 'duplicated_rule' => '已复制规则“:title”为“:newTitle”', + 'delete_rule_group' => '删除“:title”规则组', + 'deleted_rule_group' => '已删除规则组“:title”', + 'update_rule_group' => '更新规则组', + 'no_rules_in_group' => '此群组内没有规则', + 'move_rule_group_up' => '向上移动规则组', + 'move_rule_group_down' => '向下移动规则组', + 'save_rules_by_moving' => '将此规则移动到另一个规则组并保存:|将这些规则移动到另一个规则组并保存:', + 'make_new_rule' => '在规则组“:title”中创建新规则', + 'make_new_rule_no_group' => '建立新规则', + 'instructions_rule_from_bill' => '为了匹配交易至您的新账单“:name”,Firefly III 可以建立一条新规则,对您保存的每一笔交易自动进行检查。您确认下方信息准确无误后,即可保存规则,让 Firefly III 自动将交易匹配至您的新账单。', + 'instructions_rule_from_journal' => '基于您的交易之一创建一条规则。补充或提交下面的表格。', + 'rule_is_strict' => '精确规则', + 'rule_is_not_strict' => '模糊规则', + 'rule_help_stop_processing' => '勾选此复选框时,将不会执行此组中的后续规则。', + 'rule_help_strict' => '在精确规则中,所有触发条件必须全部满足才能执行动作。在模糊规则中,满足任意触发条件即可执行动作。', + 'rule_help_active' => '已停用的规则永远不会被触发。', + 'stored_new_rule' => '新规则“:title”已保存', + 'deleted_rule' => '已删除标题为 ":title" 的规则', + 'store_new_rule' => '保存新规则', + 'updated_rule' => '已以 ":title" 为标题更新规则', + 'default_rule_group_name' => '默认规则', + 'default_rule_group_description' => '未添加至特定组的规则。', + 'trigger' => '触发条件', + 'trigger_value' => '触发值', + 'stop_processing_other_triggers' => '停止处理其他触发条件', + 'add_rule_trigger' => '新增触发条件', + 'action' => '动作', + 'action_value' => '动作值', + 'stop_executing_other_actions' => '停止处理其他动作', + 'add_rule_action' => '新增动作', + 'edit_rule' => '编辑规则 ":title"', + 'delete_rule' => '删除规则 ":title"', + 'update_rule' => '更新规则', + 'test_rule_triggers' => '查看匹配的交易', + 'warning_no_matching_transactions' => '未找到符合条件的交易', + 'warning_no_valid_triggers' => '未提供有效触发条件。', + 'apply_rule_selection' => '选取交易并应用规则“:title”', + 'apply_rule_selection_intro' => '规则如“:title”一般仅应用于新增的或更新后的交易,但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则。在您更新一条规则后,且必须应用此规则至其他交易时,即可使用此功能。', + 'include_transactions_from_accounts' => '包含来自这些账户的交易', + 'include' => '包含?', + 'applied_rule_selection' => '{0} 规则“:title”没有改变任何您选择的交易。|[1] 规则“:title”改变了一条您选择的交易。|[2,*] 规则“:title”改变了:count条您选择的交易。', + 'execute' => '执行', + 'apply_rule_group_selection' => '选取交易并应用规则组“:title”', + 'apply_rule_group_selection_intro' => '规则组如“:title”一般仅应用于新增的或更新后的交易,但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则组内的规则。在您更新一个规则组后,且必须应用此组至其他交易时,即可使用此功能。', + 'applied_rule_group_selection' => '规则组“:title”已应用至所选交易', // actions and triggers - 'rule_trigger_store_journal' => '当创建交易时', - 'rule_trigger_update_journal' => '当交易更新时', - 'rule_trigger_user_action' => '用户动作为“:trigger_value”', + 'rule_trigger_store_journal' => '当创建交易时', + 'rule_trigger_update_journal' => '当交易更新时', + 'rule_trigger_user_action' => '用户动作为“:trigger_value”', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => '来源账户名称开头为...', - 'rule_trigger_source_account_starts' => '来源账户名称开头为“:trigger_value”', - 'rule_trigger_source_account_ends_choice' => '来源账户结尾为…', - 'rule_trigger_source_account_ends' => '来源账户名称结尾为“:trigger_value”', - 'rule_trigger_source_account_is_choice' => '来源账户名称为...', - 'rule_trigger_source_account_is' => '来源账户名称为“:trigger_value”', - 'rule_trigger_source_account_contains_choice' => '来源账户名称包含...', - 'rule_trigger_source_account_contains' => '来源账户名称包含“:trigger_value”', - 'rule_trigger_account_id_choice' => '其中一个账户ID为...', - 'rule_trigger_account_id' => '其中一个账户ID是:trigger_value', - 'rule_trigger_source_account_id_choice' => '来源账户 ID 为...', - 'rule_trigger_source_account_id' => '来源账户 ID 为 :trigger_value', - 'rule_trigger_destination_account_id_choice' => '目标账户 ID 为...', - 'rule_trigger_destination_account_id' => '目标账户 ID 为 :trigger_value', - 'rule_trigger_account_is_cash_choice' => '其中一个账户是现金账户', - 'rule_trigger_account_is_cash' => '其中一个账户是现金账户', - 'rule_trigger_source_is_cash_choice' => '来源账户为 (现金) 账户', - 'rule_trigger_source_is_cash' => '来源账户为 (现金) 账户', - 'rule_trigger_destination_is_cash_choice' => '目标账户为 (现金) 账户', - 'rule_trigger_destination_is_cash' => '目标账户为 (现金) 账户', - 'rule_trigger_source_account_nr_starts_choice' => '来源账户编号 / IBAN 开头为...', - 'rule_trigger_source_account_nr_starts' => '来源账户编号 / IBAN 开头为“:trigger_value”', - 'rule_trigger_source_account_nr_ends_choice' => '来源账户编号 / IBAN 结尾为...', - 'rule_trigger_source_account_nr_ends' => '来源账户编号 / IBAN 结尾为“:trigger_value”', - 'rule_trigger_source_account_nr_is_choice' => '来源账户编号 / IBAN 为...', - 'rule_trigger_source_account_nr_is' => '来源账户编号 / IBAN 为“:trigger_value”', - 'rule_trigger_source_account_nr_contains_choice' => '来源账户编号 / IBAN 包含...', - 'rule_trigger_source_account_nr_contains' => '来源账户编号 / IBAN 包含“:trigger_value”', - 'rule_trigger_destination_account_starts_choice' => '目标账户名称开头为...', - 'rule_trigger_destination_account_starts' => '目标账户名称开头为“:trigger_value”', - 'rule_trigger_destination_account_ends_choice' => '目标账户名称结尾为...', - 'rule_trigger_destination_account_ends' => '目标账户名称结尾为“:trigger_value”', - 'rule_trigger_destination_account_is_choice' => '目标账户名称为...', - 'rule_trigger_destination_account_is' => '目标账户名称为“:trigger_value”', - 'rule_trigger_destination_account_contains_choice' => '目标账户名称包含...', - 'rule_trigger_destination_account_contains' => '目标账户名称包含“:trigger_value”', - 'rule_trigger_destination_account_nr_starts_choice' => '目标账户编号 / IBAN 开头为...', - 'rule_trigger_destination_account_nr_starts' => '目标账户编号 / IBAN 开头为“:trigger_value”', - 'rule_trigger_destination_account_nr_ends_choice' => '目标账户编号 / IBAN 结尾为...', - 'rule_trigger_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾为“:trigger_value”', - 'rule_trigger_destination_account_nr_is_choice' => '目标账户编号 / IBAN 为...', - 'rule_trigger_destination_account_nr_is' => '目标账户编号 / IBAN 为“:trigger_value”', - 'rule_trigger_destination_account_nr_contains_choice' => '目标账户编号 / IBAN 包含...', - 'rule_trigger_destination_account_nr_contains' => '目标账户编号 / IBAN 包含“:trigger_value”', - 'rule_trigger_transaction_type_choice' => '交易类型为…', - 'rule_trigger_transaction_type' => '转账类型为“:trigger_value”', - 'rule_trigger_category_is_choice' => '分类为...', - 'rule_trigger_category_is' => '分类为 ":trigger_value"', - 'rule_trigger_amount_less_choice' => '金额小于或等于...', - 'rule_trigger_amount_less' => '金额小于或等于:trigger_value', - 'rule_trigger_amount_is_choice' => '金额是...', - 'rule_trigger_amount_is' => '金额为:trigger_value', - 'rule_trigger_amount_more_choice' => '金额大于或等于...', - 'rule_trigger_amount_more' => '金额大于或等于:trigger_value', - 'rule_trigger_description_starts_choice' => '描述开头为...', - 'rule_trigger_description_starts' => '描述开头为 ":trigger_value"', - 'rule_trigger_description_ends_choice' => '描述结尾为...', - 'rule_trigger_description_ends' => '描述结尾为“:trigger_value”', - 'rule_trigger_description_contains_choice' => '描述包含…', - 'rule_trigger_description_contains' => '描述包含 ":trigger_value"', - 'rule_trigger_description_is_choice' => '描述为…', - 'rule_trigger_description_is' => '描述为“:trigger_value”', - 'rule_trigger_date_on_choice' => '交易日期为...', - 'rule_trigger_date_on' => '交易日期为“:trigger_value”', - 'rule_trigger_date_before_choice' => '交易日期早于...', - 'rule_trigger_date_before' => '交易日期早于“:trigger_value”', - 'rule_trigger_date_after_choice' => '交易日期晚于...', - 'rule_trigger_date_after' => '交易日期晚于“:trigger_value”', - 'rule_trigger_created_at_on_choice' => '交易生成于...', - 'rule_trigger_created_at_on' => '交易生成于“:trigger_value”', - 'rule_trigger_updated_at_on_choice' => '交易最后编辑于...', - 'rule_trigger_updated_at_on' => '交易最后编辑于“:trigger_value”', - 'rule_trigger_budget_is_choice' => '预算为…', - 'rule_trigger_budget_is' => '预算为 ":trigger_value"', - 'rule_trigger_tag_is_choice' => '其中一个标签为...', - 'rule_trigger_tag_is' => '其中一个标签为":trigger_value"', - 'rule_trigger_tag_contains_choice' => '任何标签包含...', - 'rule_trigger_tag_contains' => '任何标签包含 ":trigger_value"', - 'rule_trigger_tag_ends_choice' => '任何标签结尾...', - 'rule_trigger_tag_ends' => '任何标签以 ":trigger_value " 结尾', - 'rule_trigger_tag_starts_choice' => '任何标签开头...', - 'rule_trigger_tag_starts' => '任何标签以 ":trigger_value " 开头', - 'rule_trigger_currency_is_choice' => '交易货币为…', - 'rule_trigger_currency_is' => '交易货币为“:trigger_value”', - 'rule_trigger_foreign_currency_is_choice' => '交易外币为...', - 'rule_trigger_foreign_currency_is' => '交易外币为“:trigger_value”', - 'rule_trigger_has_attachments_choice' => '至少有这么多附件', - 'rule_trigger_has_attachments' => '拥有至少 :trigger_value 个附件', - 'rule_trigger_has_no_category_choice' => '无分类', - 'rule_trigger_has_no_category' => '交易没有分类', - 'rule_trigger_has_any_category_choice' => '有一个 (任何) 分类', - 'rule_trigger_has_any_category' => '交易有一个 (任何) 分类', - 'rule_trigger_has_no_budget_choice' => '没有预算', - 'rule_trigger_has_no_budget' => '交易没有预算', - 'rule_trigger_has_any_budget_choice' => '有一个 (任何) 预算', - 'rule_trigger_has_any_budget' => '交易有一个 (任何) 预算', - 'rule_trigger_has_no_bill_choice' => '未有账单', - 'rule_trigger_has_no_bill' => '无账单交易', - 'rule_trigger_has_any_bill_choice' => '有一个(任何)账单', - 'rule_trigger_has_any_bill' => '交易有一个(任意个)账单', - 'rule_trigger_has_no_tag_choice' => '没有标签', - 'rule_trigger_has_no_tag' => '交易没有标签', - 'rule_trigger_has_any_tag_choice' => '有一个或多个 (任何) 标签', - 'rule_trigger_has_any_tag' => '交易有一个或多个 (任何) 标签', - 'rule_trigger_any_notes_choice' => '有 (任意) 备注', - 'rule_trigger_any_notes' => '交易有 (任意) 备注', - 'rule_trigger_no_notes_choice' => '无备注', - 'rule_trigger_no_notes' => '交易没有备注', - 'rule_trigger_notes_is_choice' => '备注为...', - 'rule_trigger_notes_is' => '备注为":trigger_value"', - 'rule_trigger_notes_contains_choice' => '备注包含...', - 'rule_trigger_notes_contains' => '备注包含":trigger_value"', - 'rule_trigger_notes_starts_choice' => '备注开头为...', - 'rule_trigger_notes_starts' => '备注开头为":trigger_value"', - 'rule_trigger_notes_ends_choice' => '备注结尾为...', - 'rule_trigger_notes_ends' => '备注结尾为":trigger_value"', - 'rule_trigger_bill_is_choice' => '账单是...', - 'rule_trigger_bill_is' => '账单是“:trigger_value”', - 'rule_trigger_external_id_is_choice' => '外部ID为...', - 'rule_trigger_external_id_is' => '外部ID为 ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => '内部引用为...', - 'rule_trigger_internal_reference_is' => '内部引用为":trigger_value"', - 'rule_trigger_journal_id_choice' => '交易日志 ID 为...', - 'rule_trigger_journal_id' => '交易日志 ID 为“:trigger_value”', - 'rule_trigger_any_external_url' => '交易有一个(任意)外部链接', - 'rule_trigger_any_external_url_choice' => '交易有一个(任意)外部链接', - 'rule_trigger_any_external_id' => '交易有一个(任意)外部ID', - 'rule_trigger_any_external_id_choice' => '交易有一个(任意)外部ID', - 'rule_trigger_no_external_url_choice' => '交易没有外部链接', - 'rule_trigger_no_external_url' => '交易没有外部URL', - 'rule_trigger_no_external_id_choice' => '交易没有外部ID', - 'rule_trigger_no_external_id' => '交易没有外部ID', - 'rule_trigger_id_choice' => '交易ID为...', - 'rule_trigger_id' => '交易ID为":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT是...', - 'rule_trigger_sepa_ct_is' => 'SEPA CT是“:trigger_value”', + 'rule_trigger_source_account_starts_choice' => '来源账户名称开头为...', + 'rule_trigger_source_account_starts' => '来源账户名称开头为“:trigger_value”', + 'rule_trigger_source_account_ends_choice' => '来源账户结尾为…', + 'rule_trigger_source_account_ends' => '来源账户名称结尾为“:trigger_value”', + 'rule_trigger_source_account_is_choice' => '来源账户名称为...', + 'rule_trigger_source_account_is' => '来源账户名称为“:trigger_value”', + 'rule_trigger_source_account_contains_choice' => '来源账户名称包含...', + 'rule_trigger_source_account_contains' => '来源账户名称包含“:trigger_value”', + 'rule_trigger_account_id_choice' => '其中一个账户ID为...', + 'rule_trigger_account_id' => '其中一个账户ID是:trigger_value', + 'rule_trigger_source_account_id_choice' => '来源账户 ID 为...', + 'rule_trigger_source_account_id' => '来源账户 ID 为 :trigger_value', + 'rule_trigger_destination_account_id_choice' => '目标账户 ID 为...', + 'rule_trigger_destination_account_id' => '目标账户 ID 为 :trigger_value', + 'rule_trigger_account_is_cash_choice' => '其中一个账户是现金账户', + 'rule_trigger_account_is_cash' => '其中一个账户是现金账户', + 'rule_trigger_source_is_cash_choice' => '来源账户为 (现金) 账户', + 'rule_trigger_source_is_cash' => '来源账户为 (现金) 账户', + 'rule_trigger_destination_is_cash_choice' => '目标账户为 (现金) 账户', + 'rule_trigger_destination_is_cash' => '目标账户为 (现金) 账户', + 'rule_trigger_source_account_nr_starts_choice' => '来源账户编号 / IBAN 开头为...', + 'rule_trigger_source_account_nr_starts' => '来源账户编号 / IBAN 开头为“:trigger_value”', + 'rule_trigger_source_account_nr_ends_choice' => '来源账户编号 / IBAN 结尾为...', + 'rule_trigger_source_account_nr_ends' => '来源账户编号 / IBAN 结尾为“:trigger_value”', + 'rule_trigger_source_account_nr_is_choice' => '来源账户编号 / IBAN 为...', + 'rule_trigger_source_account_nr_is' => '来源账户编号 / IBAN 为“:trigger_value”', + 'rule_trigger_source_account_nr_contains_choice' => '来源账户编号 / IBAN 包含...', + 'rule_trigger_source_account_nr_contains' => '来源账户编号 / IBAN 包含“:trigger_value”', + 'rule_trigger_destination_account_starts_choice' => '目标账户名称开头为...', + 'rule_trigger_destination_account_starts' => '目标账户名称开头为“:trigger_value”', + 'rule_trigger_destination_account_ends_choice' => '目标账户名称结尾为...', + 'rule_trigger_destination_account_ends' => '目标账户名称结尾为“:trigger_value”', + 'rule_trigger_destination_account_is_choice' => '目标账户名称为...', + 'rule_trigger_destination_account_is' => '目标账户名称为“:trigger_value”', + 'rule_trigger_destination_account_contains_choice' => '目标账户名称包含...', + 'rule_trigger_destination_account_contains' => '目标账户名称包含“:trigger_value”', + 'rule_trigger_destination_account_nr_starts_choice' => '目标账户编号 / IBAN 开头为...', + 'rule_trigger_destination_account_nr_starts' => '目标账户编号 / IBAN 开头为“:trigger_value”', + 'rule_trigger_destination_account_nr_ends_choice' => '目标账户编号 / IBAN 结尾为...', + 'rule_trigger_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾为“:trigger_value”', + 'rule_trigger_destination_account_nr_is_choice' => '目标账户编号 / IBAN 为...', + 'rule_trigger_destination_account_nr_is' => '目标账户编号 / IBAN 为“:trigger_value”', + 'rule_trigger_destination_account_nr_contains_choice' => '目标账户编号 / IBAN 包含...', + 'rule_trigger_destination_account_nr_contains' => '目标账户编号 / IBAN 包含“:trigger_value”', + 'rule_trigger_transaction_type_choice' => '交易类型为…', + 'rule_trigger_transaction_type' => '转账类型为“:trigger_value”', + 'rule_trigger_category_is_choice' => '分类为...', + 'rule_trigger_category_is' => '分类为 ":trigger_value"', + 'rule_trigger_amount_less_choice' => '金额小于或等于...', + 'rule_trigger_amount_less' => '金额小于或等于:trigger_value', + 'rule_trigger_amount_is_choice' => '金额是...', + 'rule_trigger_amount_is' => '金额为:trigger_value', + 'rule_trigger_amount_more_choice' => '金额大于或等于...', + 'rule_trigger_amount_more' => '金额大于或等于:trigger_value', + 'rule_trigger_description_starts_choice' => '描述开头为...', + 'rule_trigger_description_starts' => '描述开头为 ":trigger_value"', + 'rule_trigger_description_ends_choice' => '描述结尾为...', + 'rule_trigger_description_ends' => '描述结尾为“:trigger_value”', + 'rule_trigger_description_contains_choice' => '描述包含…', + 'rule_trigger_description_contains' => '描述包含 ":trigger_value"', + 'rule_trigger_description_is_choice' => '描述为…', + 'rule_trigger_description_is' => '描述为“:trigger_value”', + 'rule_trigger_date_on_choice' => '交易日期为...', + 'rule_trigger_date_on' => '交易日期为“:trigger_value”', + 'rule_trigger_date_before_choice' => '交易日期早于...', + 'rule_trigger_date_before' => '交易日期早于“:trigger_value”', + 'rule_trigger_date_after_choice' => '交易日期晚于...', + 'rule_trigger_date_after' => '交易日期晚于“:trigger_value”', + 'rule_trigger_created_at_on_choice' => '交易生成于...', + 'rule_trigger_created_at_on' => '交易生成于“:trigger_value”', + 'rule_trigger_updated_at_on_choice' => '交易最后编辑于...', + 'rule_trigger_updated_at_on' => '交易最后编辑于“:trigger_value”', + 'rule_trigger_budget_is_choice' => '预算为…', + 'rule_trigger_budget_is' => '预算为 ":trigger_value"', + 'rule_trigger_tag_is_choice' => '其中一个标签为...', + 'rule_trigger_tag_is' => '其中一个标签为":trigger_value"', + 'rule_trigger_tag_contains_choice' => '任何标签包含...', + 'rule_trigger_tag_contains' => '任何标签包含 ":trigger_value"', + 'rule_trigger_tag_ends_choice' => '任何标签结尾...', + 'rule_trigger_tag_ends' => '任何标签以 ":trigger_value " 结尾', + 'rule_trigger_tag_starts_choice' => '任何标签开头...', + 'rule_trigger_tag_starts' => '任何标签以 ":trigger_value " 开头', + 'rule_trigger_currency_is_choice' => '交易货币为…', + 'rule_trigger_currency_is' => '交易货币为“:trigger_value”', + 'rule_trigger_foreign_currency_is_choice' => '交易外币为...', + 'rule_trigger_foreign_currency_is' => '交易外币为“:trigger_value”', + 'rule_trigger_has_attachments_choice' => '至少有这么多附件', + 'rule_trigger_has_attachments' => '拥有至少 :trigger_value 个附件', + 'rule_trigger_has_no_category_choice' => '无分类', + 'rule_trigger_has_no_category' => '交易没有分类', + 'rule_trigger_has_any_category_choice' => '有一个 (任何) 分类', + 'rule_trigger_has_any_category' => '交易有一个 (任何) 分类', + 'rule_trigger_has_no_budget_choice' => '没有预算', + 'rule_trigger_has_no_budget' => '交易没有预算', + 'rule_trigger_has_any_budget_choice' => '有一个 (任何) 预算', + 'rule_trigger_has_any_budget' => '交易有一个 (任何) 预算', + 'rule_trigger_has_no_bill_choice' => '未有账单', + 'rule_trigger_has_no_bill' => '无账单交易', + 'rule_trigger_has_any_bill_choice' => '有一个(任何)账单', + 'rule_trigger_has_any_bill' => '交易有一个(任意个)账单', + 'rule_trigger_has_no_tag_choice' => '没有标签', + 'rule_trigger_has_no_tag' => '交易没有标签', + 'rule_trigger_has_any_tag_choice' => '有一个或多个 (任何) 标签', + 'rule_trigger_has_any_tag' => '交易有一个或多个 (任何) 标签', + 'rule_trigger_any_notes_choice' => '有 (任意) 备注', + 'rule_trigger_any_notes' => '交易有 (任意) 备注', + 'rule_trigger_no_notes_choice' => '无备注', + 'rule_trigger_no_notes' => '交易没有备注', + 'rule_trigger_notes_is_choice' => '备注为...', + 'rule_trigger_notes_is' => '备注为":trigger_value"', + 'rule_trigger_notes_contains_choice' => '备注包含...', + 'rule_trigger_notes_contains' => '备注包含":trigger_value"', + 'rule_trigger_notes_starts_choice' => '备注开头为...', + 'rule_trigger_notes_starts' => '备注开头为":trigger_value"', + 'rule_trigger_notes_ends_choice' => '备注结尾为...', + 'rule_trigger_notes_ends' => '备注结尾为":trigger_value"', + 'rule_trigger_bill_is_choice' => '账单是...', + 'rule_trigger_bill_is' => '账单是“:trigger_value”', + 'rule_trigger_external_id_is_choice' => '外部ID为...', + 'rule_trigger_external_id_is' => '外部ID为 ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => '内部引用为...', + 'rule_trigger_internal_reference_is' => '内部引用为":trigger_value"', + 'rule_trigger_journal_id_choice' => '交易日志 ID 为...', + 'rule_trigger_journal_id' => '交易日志 ID 为“:trigger_value”', + 'rule_trigger_any_external_url' => '交易有一个(任意)外部链接', + 'rule_trigger_any_external_url_choice' => '交易有一个(任意)外部链接', + 'rule_trigger_any_external_id' => '交易有一个(任意)外部ID', + 'rule_trigger_any_external_id_choice' => '交易有一个(任意)外部ID', + 'rule_trigger_no_external_url_choice' => '交易没有外部链接', + 'rule_trigger_no_external_url' => '交易没有外部URL', + 'rule_trigger_no_external_id_choice' => '交易没有外部ID', + 'rule_trigger_no_external_id' => '交易没有外部ID', + 'rule_trigger_id_choice' => '交易ID为...', + 'rule_trigger_id' => '交易ID为":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT是...', + 'rule_trigger_sepa_ct_is' => 'SEPA CT是“:trigger_value”', // new values: - 'rule_trigger_user_action_choice' => '用户操作为“:trigger_value”', - 'rule_trigger_tag_is_not_choice' => '没有标签为...', - 'rule_trigger_tag_is_not' => '没有标签为“:trigger_value”', - 'rule_trigger_account_is_choice' => '其中一个账户为...', - 'rule_trigger_account_is' => '其中一个账户为":trigger_value"', - 'rule_trigger_account_contains_choice' => '其中一个账户包含...', - 'rule_trigger_account_contains' => '其中一个账户包含":trigger_value"', - 'rule_trigger_account_ends_choice' => '其中一个账户结尾为...', - 'rule_trigger_account_ends' => '其中一个账户结尾为":trigger_value"', - 'rule_trigger_account_starts_choice' => '其中一个账户开头为...', - 'rule_trigger_account_starts' => '其中一个账户开头为":trigger_value"', - 'rule_trigger_account_nr_is_choice' => '其中一个账户编号/IBAN为...', - 'rule_trigger_account_nr_is' => '其中一个账户编号/IBAN为":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => '其中一个账户编号/IBAN包含...', - 'rule_trigger_account_nr_contains' => '其中一个账户编号/IBAN包含":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => '其中一个账户编号/IBAN结尾为...', - 'rule_trigger_account_nr_ends' => '其中一个账户编号/IBAN结尾为":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => '其中一个账户编号/IBAN开头为...', - 'rule_trigger_account_nr_starts' => '其中一个账户编号/IBAN为":trigger_value"', - 'rule_trigger_category_contains_choice' => '分类包含...', - 'rule_trigger_category_contains' => '分类包含":trigger_value"', - 'rule_trigger_category_ends_choice' => '分类结尾为...', - 'rule_trigger_category_ends' => '分类结尾为":trigger_value"', - 'rule_trigger_category_starts_choice' => '分类开头为...', - 'rule_trigger_category_starts' => '分类开头为":trigger_value"', - 'rule_trigger_budget_contains_choice' => '预算包含...', - 'rule_trigger_budget_contains' => '预算包含":trigger_value"', - 'rule_trigger_budget_ends_choice' => '预算结尾为', - 'rule_trigger_budget_ends' => '预算结尾为":trigger_value"', - 'rule_trigger_budget_starts_choice' => '预算开头为...', - 'rule_trigger_budget_starts' => '预算开头为":trigger_value"', - 'rule_trigger_bill_contains_choice' => '账单包含...', - 'rule_trigger_bill_contains' => '账单包含":trigger_value"', - 'rule_trigger_bill_ends_choice' => '账单结尾为...', - 'rule_trigger_bill_ends' => '账单结尾为":trigger_value"', - 'rule_trigger_bill_starts_choice' => '账单开头为...', - 'rule_trigger_bill_starts' => '账单开头为":trigger_value"', - 'rule_trigger_external_id_contains_choice' => '外部ID包含...', - 'rule_trigger_external_id_contains' => '外部ID包含":trigger_value"', - 'rule_trigger_external_id_ends_choice' => '外部ID结尾为...', - 'rule_trigger_external_id_ends' => '外部ID结尾为":trigger_value"', - 'rule_trigger_external_id_starts_choice' => '外部ID开头为...', - 'rule_trigger_external_id_starts' => '外部ID开头为":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => '内部引用包含...', - 'rule_trigger_internal_reference_contains' => '内部引用包含“:trigger_value”', - 'rule_trigger_internal_reference_ends_choice' => '内部引用结尾为...', - 'rule_trigger_internal_reference_ends' => '内部引用结尾为“:trigger_value”', - 'rule_trigger_internal_reference_starts_choice' => '内部引用开头为...', - 'rule_trigger_internal_reference_starts' => '内部引用开头为“:trigger_value”', - 'rule_trigger_external_url_is_choice' => '外部URL为...', - 'rule_trigger_external_url_is' => '外部URL为":trigger_value"', - 'rule_trigger_external_url_contains_choice' => '外部URL包含...', - 'rule_trigger_external_url_contains' => '外部URL包含":trigger_value"', - 'rule_trigger_external_url_ends_choice' => '外部URL结尾为', - 'rule_trigger_external_url_ends' => '外部URL结尾为":trigger_value"', - 'rule_trigger_external_url_starts_choice' => '外部URL开头为...', - 'rule_trigger_external_url_starts' => '外部URL开头为":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => '没有附件', - 'rule_trigger_has_no_attachments' => '交易没有附件', - 'rule_trigger_recurrence_id_choice' => '定期交易ID为...', - 'rule_trigger_recurrence_id' => '定期交易ID为":trigger_value"', - 'rule_trigger_interest_date_on_choice' => '利息日期是...', - 'rule_trigger_interest_date_on' => '利息日期是":trigger_value"', - 'rule_trigger_interest_date_before_choice' => '利息日期早于...', - 'rule_trigger_interest_date_before' => '利息日期早于":trigger_value"', - 'rule_trigger_interest_date_after_choice' => '利息日期晚于...', - 'rule_trigger_interest_date_after' => '利息日期晚于":trigger_value"', - 'rule_trigger_book_date_on_choice' => '登记日期是...', - 'rule_trigger_book_date_on' => '登记日期是":trigger_value"', - 'rule_trigger_book_date_before_choice' => '登记日期早于...', - 'rule_trigger_book_date_before' => '登记日期早于":trigger_value"', - 'rule_trigger_book_date_after_choice' => '登记日期晚于...', - 'rule_trigger_book_date_after' => '登记日期晚于":trigger_value"', - 'rule_trigger_process_date_on_choice' => '处理日期是...', - 'rule_trigger_process_date_on' => '处理日期是":trigger_value"', - 'rule_trigger_process_date_before_choice' => '处理日期早于...', - 'rule_trigger_process_date_before' => '处理日期早于":trigger_value"', - 'rule_trigger_process_date_after_choice' => '处理日期晚于...', - 'rule_trigger_process_date_after' => '处理日期晚于":trigger_value"', - 'rule_trigger_due_date_on_choice' => '截止日期是...', - 'rule_trigger_due_date_on' => '截止日期是":trigger_value"', - 'rule_trigger_due_date_before_choice' => '截止日期早于...', - 'rule_trigger_due_date_before' => '截止日期早于":trigger_value"', - 'rule_trigger_due_date_after_choice' => '截止日期晚于...', - 'rule_trigger_due_date_after' => '截止日期晚于":trigger_value"', - 'rule_trigger_payment_date_on_choice' => '付款日期是...', - 'rule_trigger_payment_date_on' => '付款日期是":trigger_value"', - 'rule_trigger_payment_date_before_choice' => '付款日期早于...', - 'rule_trigger_payment_date_before' => '付款日期早于":trigger_value"', - 'rule_trigger_payment_date_after_choice' => '付款日期晚于...', - 'rule_trigger_payment_date_after' => '付款日期晚于":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => '发票日期是...', - 'rule_trigger_invoice_date_on' => '发票日期是":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => '发票日期早于...', - 'rule_trigger_invoice_date_before' => '发票日期早于":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => '发票日期晚于...', - 'rule_trigger_invoice_date_after' => '发票日期晚于":trigger_value"', - 'rule_trigger_created_at_before_choice' => '交易创建日期早于...', - 'rule_trigger_created_at_before' => '交易创建日期早于":trigger_value"', - 'rule_trigger_created_at_after_choice' => '交易创建日期晚于...', - 'rule_trigger_created_at_after' => '交易创建日期晚于":trigger_value"', - 'rule_trigger_updated_at_before_choice' => '交易最后更新日期早于...', - 'rule_trigger_updated_at_before' => '交易最后更新日期早于":trigger_value"', - 'rule_trigger_updated_at_after_choice' => '交易最后更新日期晚于...', - 'rule_trigger_updated_at_after' => '交易最后更新日期晚于":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => '外币金额等于...', - 'rule_trigger_foreign_amount_is' => '外币金额等于“:trigger_value”', - 'rule_trigger_foreign_amount_less_choice' => '外币金额少于...', - 'rule_trigger_foreign_amount_less' => '外币金额小于“:trigger_value”', - 'rule_trigger_foreign_amount_more_choice' => '外币金额大于...', - 'rule_trigger_foreign_amount_more' => '外币金额大于“:trigger_value”', - 'rule_trigger_attachment_name_is_choice' => '任意一个附件的名字为...', - 'rule_trigger_attachment_name_is' => '任意一个附件的名称为":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => '任意一个附件的名称包含...', - 'rule_trigger_attachment_name_contains' => '任意一个附件的名称包含":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => '任意一个附件的名称开头为...', - 'rule_trigger_attachment_name_starts' => '任意一个附件的名称开头为":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => '任意一个附件的名称结尾为...', - 'rule_trigger_attachment_name_ends' => '任意一个附件的名称结尾为":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => '任意一个附件的备注是...', - 'rule_trigger_attachment_notes_are' => '任意一个附件的备注是":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => '任意一个附件的备注包含...', - 'rule_trigger_attachment_notes_contains' => '任意一个附件的备注包含":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => '任意一个附件的备注开头为...', - 'rule_trigger_attachment_notes_starts' => '任意一个附件的备注开头为":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => '任意一个附件的结尾为...', - 'rule_trigger_attachment_notes_ends' => '任意一个附件的备注结尾为":trigger_value"', - 'rule_trigger_reconciled_choice' => '交易已对账', - 'rule_trigger_reconciled' => '交易已对账', - 'rule_trigger_exists_choice' => '任意交易匹配(!)', - 'rule_trigger_exists' => '任意交易匹配', + 'rule_trigger_user_action_choice' => '用户操作为“:trigger_value”', + 'rule_trigger_tag_is_not_choice' => '没有标签为...', + 'rule_trigger_tag_is_not' => '没有标签为“:trigger_value”', + 'rule_trigger_account_is_choice' => '其中一个账户为...', + 'rule_trigger_account_is' => '其中一个账户为":trigger_value"', + 'rule_trigger_account_contains_choice' => '其中一个账户包含...', + 'rule_trigger_account_contains' => '其中一个账户包含":trigger_value"', + 'rule_trigger_account_ends_choice' => '其中一个账户结尾为...', + 'rule_trigger_account_ends' => '其中一个账户结尾为":trigger_value"', + 'rule_trigger_account_starts_choice' => '其中一个账户开头为...', + 'rule_trigger_account_starts' => '其中一个账户开头为":trigger_value"', + 'rule_trigger_account_nr_is_choice' => '其中一个账户编号/IBAN为...', + 'rule_trigger_account_nr_is' => '其中一个账户编号/IBAN为":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => '其中一个账户编号/IBAN包含...', + 'rule_trigger_account_nr_contains' => '其中一个账户编号/IBAN包含":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => '其中一个账户编号/IBAN结尾为...', + 'rule_trigger_account_nr_ends' => '其中一个账户编号/IBAN结尾为":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => '其中一个账户编号/IBAN开头为...', + 'rule_trigger_account_nr_starts' => '其中一个账户编号/IBAN为":trigger_value"', + 'rule_trigger_category_contains_choice' => '分类包含...', + 'rule_trigger_category_contains' => '分类包含":trigger_value"', + 'rule_trigger_category_ends_choice' => '分类结尾为...', + 'rule_trigger_category_ends' => '分类结尾为":trigger_value"', + 'rule_trigger_category_starts_choice' => '分类开头为...', + 'rule_trigger_category_starts' => '分类开头为":trigger_value"', + 'rule_trigger_budget_contains_choice' => '预算包含...', + 'rule_trigger_budget_contains' => '预算包含":trigger_value"', + 'rule_trigger_budget_ends_choice' => '预算结尾为', + 'rule_trigger_budget_ends' => '预算结尾为":trigger_value"', + 'rule_trigger_budget_starts_choice' => '预算开头为...', + 'rule_trigger_budget_starts' => '预算开头为":trigger_value"', + 'rule_trigger_bill_contains_choice' => '账单包含...', + 'rule_trigger_bill_contains' => '账单包含":trigger_value"', + 'rule_trigger_bill_ends_choice' => '账单结尾为...', + 'rule_trigger_bill_ends' => '账单结尾为":trigger_value"', + 'rule_trigger_bill_starts_choice' => '账单开头为...', + 'rule_trigger_bill_starts' => '账单开头为":trigger_value"', + 'rule_trigger_external_id_contains_choice' => '外部ID包含...', + 'rule_trigger_external_id_contains' => '外部ID包含":trigger_value"', + 'rule_trigger_external_id_ends_choice' => '外部ID结尾为...', + 'rule_trigger_external_id_ends' => '外部ID结尾为":trigger_value"', + 'rule_trigger_external_id_starts_choice' => '外部ID开头为...', + 'rule_trigger_external_id_starts' => '外部ID开头为":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => '内部引用包含...', + 'rule_trigger_internal_reference_contains' => '内部引用包含“:trigger_value”', + 'rule_trigger_internal_reference_ends_choice' => '内部引用结尾为...', + 'rule_trigger_internal_reference_ends' => '内部引用结尾为“:trigger_value”', + 'rule_trigger_internal_reference_starts_choice' => '内部引用开头为...', + 'rule_trigger_internal_reference_starts' => '内部引用开头为“:trigger_value”', + 'rule_trigger_external_url_is_choice' => '外部URL为...', + 'rule_trigger_external_url_is' => '外部URL为":trigger_value"', + 'rule_trigger_external_url_contains_choice' => '外部URL包含...', + 'rule_trigger_external_url_contains' => '外部URL包含":trigger_value"', + 'rule_trigger_external_url_ends_choice' => '外部URL结尾为', + 'rule_trigger_external_url_ends' => '外部URL结尾为":trigger_value"', + 'rule_trigger_external_url_starts_choice' => '外部URL开头为...', + 'rule_trigger_external_url_starts' => '外部URL开头为":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => '没有附件', + 'rule_trigger_has_no_attachments' => '交易没有附件', + 'rule_trigger_recurrence_id_choice' => '定期交易ID为...', + 'rule_trigger_recurrence_id' => '定期交易ID为":trigger_value"', + 'rule_trigger_interest_date_on_choice' => '利息日期是...', + 'rule_trigger_interest_date_on' => '利息日期是":trigger_value"', + 'rule_trigger_interest_date_before_choice' => '利息日期早于...', + 'rule_trigger_interest_date_before' => '利息日期早于":trigger_value"', + 'rule_trigger_interest_date_after_choice' => '利息日期晚于...', + 'rule_trigger_interest_date_after' => '利息日期晚于":trigger_value"', + 'rule_trigger_book_date_on_choice' => '登记日期是...', + 'rule_trigger_book_date_on' => '登记日期是":trigger_value"', + 'rule_trigger_book_date_before_choice' => '登记日期早于...', + 'rule_trigger_book_date_before' => '登记日期早于":trigger_value"', + 'rule_trigger_book_date_after_choice' => '登记日期晚于...', + 'rule_trigger_book_date_after' => '登记日期晚于":trigger_value"', + 'rule_trigger_process_date_on_choice' => '处理日期是...', + 'rule_trigger_process_date_on' => '处理日期是":trigger_value"', + 'rule_trigger_process_date_before_choice' => '处理日期早于...', + 'rule_trigger_process_date_before' => '处理日期早于":trigger_value"', + 'rule_trigger_process_date_after_choice' => '处理日期晚于...', + 'rule_trigger_process_date_after' => '处理日期晚于":trigger_value"', + 'rule_trigger_due_date_on_choice' => '截止日期是...', + 'rule_trigger_due_date_on' => '截止日期是":trigger_value"', + 'rule_trigger_due_date_before_choice' => '截止日期早于...', + 'rule_trigger_due_date_before' => '截止日期早于":trigger_value"', + 'rule_trigger_due_date_after_choice' => '截止日期晚于...', + 'rule_trigger_due_date_after' => '截止日期晚于":trigger_value"', + 'rule_trigger_payment_date_on_choice' => '付款日期是...', + 'rule_trigger_payment_date_on' => '付款日期是":trigger_value"', + 'rule_trigger_payment_date_before_choice' => '付款日期早于...', + 'rule_trigger_payment_date_before' => '付款日期早于":trigger_value"', + 'rule_trigger_payment_date_after_choice' => '付款日期晚于...', + 'rule_trigger_payment_date_after' => '付款日期晚于":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => '发票日期是...', + 'rule_trigger_invoice_date_on' => '发票日期是":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => '发票日期早于...', + 'rule_trigger_invoice_date_before' => '发票日期早于":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => '发票日期晚于...', + 'rule_trigger_invoice_date_after' => '发票日期晚于":trigger_value"', + 'rule_trigger_created_at_before_choice' => '交易创建日期早于...', + 'rule_trigger_created_at_before' => '交易创建日期早于":trigger_value"', + 'rule_trigger_created_at_after_choice' => '交易创建日期晚于...', + 'rule_trigger_created_at_after' => '交易创建日期晚于":trigger_value"', + 'rule_trigger_updated_at_before_choice' => '交易最后更新日期早于...', + 'rule_trigger_updated_at_before' => '交易最后更新日期早于":trigger_value"', + 'rule_trigger_updated_at_after_choice' => '交易最后更新日期晚于...', + 'rule_trigger_updated_at_after' => '交易最后更新日期晚于":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => '外币金额等于...', + 'rule_trigger_foreign_amount_is' => '外币金额等于“:trigger_value”', + 'rule_trigger_foreign_amount_less_choice' => '外币金额少于...', + 'rule_trigger_foreign_amount_less' => '外币金额小于“:trigger_value”', + 'rule_trigger_foreign_amount_more_choice' => '外币金额大于...', + 'rule_trigger_foreign_amount_more' => '外币金额大于“:trigger_value”', + 'rule_trigger_attachment_name_is_choice' => '任意一个附件的名字为...', + 'rule_trigger_attachment_name_is' => '任意一个附件的名称为":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => '任意一个附件的名称包含...', + 'rule_trigger_attachment_name_contains' => '任意一个附件的名称包含":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => '任意一个附件的名称开头为...', + 'rule_trigger_attachment_name_starts' => '任意一个附件的名称开头为":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => '任意一个附件的名称结尾为...', + 'rule_trigger_attachment_name_ends' => '任意一个附件的名称结尾为":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => '任意一个附件的备注是...', + 'rule_trigger_attachment_notes_are' => '任意一个附件的备注是":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => '任意一个附件的备注包含...', + 'rule_trigger_attachment_notes_contains' => '任意一个附件的备注包含":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => '任意一个附件的备注开头为...', + 'rule_trigger_attachment_notes_starts' => '任意一个附件的备注开头为":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => '任意一个附件的结尾为...', + 'rule_trigger_attachment_notes_ends' => '任意一个附件的备注结尾为":trigger_value"', + 'rule_trigger_reconciled_choice' => '交易已对账', + 'rule_trigger_reconciled' => '交易已对账', + 'rule_trigger_exists_choice' => '任意交易匹配(!)', + 'rule_trigger_exists' => '任意交易匹配', // more values for new types: - 'rule_trigger_not_account_id' => '账户ID不为":trigger_value"', - 'rule_trigger_not_source_account_id' => '来源账户ID不为":trigger_value"', - 'rule_trigger_not_destination_account_id' => '目标账户ID不为":trigger_value"', - 'rule_trigger_not_transaction_type' => '交易类型不为":trigger_value"', - 'rule_trigger_not_tag_is' => '标签不为":trigger_value"', - 'rule_trigger_not_tag_is_not' => '标签为":trigger_value"', - 'rule_trigger_not_description_is' => '描述不为":trigger_value"', - 'rule_trigger_not_description_contains' => '描述不包含', - 'rule_trigger_not_description_ends' => '描述结尾不为":trigger_value"', - 'rule_trigger_not_description_starts' => '描述开头不为":trigger_value"', - 'rule_trigger_not_notes_is' => '备注不为":trigger_value"', - 'rule_trigger_not_notes_contains' => '备注不含":trigger_value"', - 'rule_trigger_not_notes_ends' => '备注结尾不为":trigger_value"', - 'rule_trigger_not_notes_starts' => '备注开头不为":trigger_value"', - 'rule_trigger_not_source_account_is' => '来源账户不为":trigger_value"', - 'rule_trigger_not_source_account_contains' => '来源账户不含":trigger_value"', - 'rule_trigger_not_source_account_ends' => '来源账户结尾不为":trigger_value"', - 'rule_trigger_not_source_account_starts' => '来源账户开头不为":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => '来源账户编号 / IBAN 不为":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => '来源账户编号 / IBAN 不含":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => '来源账户编号 / IBAN 结尾不为":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => '来源账户编号 / IBAN 开头不为":trigger_value"', - 'rule_trigger_not_destination_account_is' => '目标账户不为":trigger_value"', - 'rule_trigger_not_destination_account_contains' => '目标账户不含":trigger_value"', - 'rule_trigger_not_destination_account_ends' => '目标账户结尾不为":trigger_value"', - 'rule_trigger_not_destination_account_starts' => '目标账户开头不为":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => '目标账户编号 / IBAN 不为":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => '目标账户编号 / IBAN 不含":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾不为":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => '目标账户编号 / IBAN 开头不为":trigger_value"', - 'rule_trigger_not_account_is' => '两个账户都不是":trigger_value"', - 'rule_trigger_not_account_contains' => '两个账户都不包含":trigger_value"', - 'rule_trigger_not_account_ends' => '两个账户的结尾都不是":trigger_value"', - 'rule_trigger_not_account_starts' => '两个账户的开头都不是":trigger_value"', - 'rule_trigger_not_account_nr_is' => '两个账户的编号/IBAN都不是":trigger_value"', - 'rule_trigger_not_account_nr_contains' => '两个账户的编号/IBAN都不包含":trigger_value"', - 'rule_trigger_not_account_nr_ends' => '两个账户的编号/IBAN结尾都不是":trigger_value"', - 'rule_trigger_not_account_nr_starts' => '两个账户的编号/IBAN开头都不是":trigger_value"', - 'rule_trigger_not_category_is' => '分类不为":trigger_value"', - 'rule_trigger_not_category_contains' => '分类不含":trigger_value"', - 'rule_trigger_not_category_ends' => '分类结尾不为":trigger_value"', - 'rule_trigger_not_category_starts' => '分类开头不为":trigger_value"', - 'rule_trigger_not_budget_is' => '预算不为":trigger_value"', - 'rule_trigger_not_budget_contains' => '预算不含":trigger_value"', - 'rule_trigger_not_budget_ends' => '预算结尾不为":trigger_value"', - 'rule_trigger_not_budget_starts' => '预算开头不为":trigger_value"', - 'rule_trigger_not_bill_is' => '账单不为":trigger_value"', - 'rule_trigger_not_bill_contains' => '账单不包含":trigger_value"', - 'rule_trigger_not_bill_ends' => '账单结尾不为":trigger_value"', - 'rule_trigger_not_bill_starts' => '账单结尾不含":trigger_value"', - 'rule_trigger_not_external_id_is' => '外部ID不为":trigger_value"', - 'rule_trigger_not_external_id_contains' => '外部ID不包含":trigger_value"', - 'rule_trigger_not_external_id_ends' => '外部ID结尾不为":trigger_value"', - 'rule_trigger_not_external_id_starts' => '外部ID开头不为":trigger_value"', - 'rule_trigger_not_internal_reference_is' => '内部引用不为":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => '内部引用不含":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => '内部引用结尾不为":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => '内部引用开头不为":trigger_value"', - 'rule_trigger_not_external_url_is' => '外部URL不为":trigger_value"', - 'rule_trigger_not_external_url_contains' => '外部URL不含":trigger_value"', - 'rule_trigger_not_external_url_ends' => '外部URL结尾不为":trigger_value"', - 'rule_trigger_not_external_url_starts' => '外部URL开头不为":trigger_value"', - 'rule_trigger_not_currency_is' => '货币不为":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => '外币不为":trigger_value"', - 'rule_trigger_not_id' => '交易ID不为":trigger_value"', - 'rule_trigger_not_journal_id' => '交易日志ID不为":trigger_value"', - 'rule_trigger_not_recurrence_id' => '重复ID不是“:trigger_value”', - 'rule_trigger_not_date_on' => '日期不为":trigger_value"', - 'rule_trigger_not_date_before' => '日期不早于":trigger_value"', - 'rule_trigger_not_date_after' => '日期不晚于":trigger_value"', - 'rule_trigger_not_interest_date_on' => '利息日期不为“:trigger_value”', - 'rule_trigger_not_interest_date_before' => '利息日期不早于“:trigger_value”', - 'rule_trigger_not_interest_date_after' => '利息日期不晚于“:trigger_value”', - 'rule_trigger_not_book_date_on' => '登记日期不为“:trigger_value”', - 'rule_trigger_not_book_date_before' => '登记日期不早于“:trigger_value”', - 'rule_trigger_not_book_date_after' => '登记日期不晚于“:trigger_value”', - 'rule_trigger_not_process_date_on' => '处理日期不为“:trigger_value”', - 'rule_trigger_not_process_date_before' => '处理日期不早于“:trigger_value”', - 'rule_trigger_not_process_date_after' => '处理日期不晚于“:trigger_value”', - 'rule_trigger_not_due_date_on' => '截止日期不为“:trigger_value”', - 'rule_trigger_not_due_date_before' => '截止日期不早于“:trigger_value”', - 'rule_trigger_not_due_date_after' => '截止日期不晚于“:trigger_value”', - 'rule_trigger_not_payment_date_on' => '付款日期不为“:trigger_value”', - 'rule_trigger_not_payment_date_before' => '付款日期不早于“:trigger_value”', - 'rule_trigger_not_payment_date_after' => '付款日期不晚于“:trigger_value”', - 'rule_trigger_not_invoice_date_on' => '发票日期不为“:trigger_value”', - 'rule_trigger_not_invoice_date_before' => '发票日期不早于“:trigger_value”', - 'rule_trigger_not_invoice_date_after' => '发票日期不晚于“:trigger_value”', - 'rule_trigger_not_created_at_on' => '交易创建日期不为“:trigger_value”', - 'rule_trigger_not_created_at_before' => '交易创建日期不早于":trigger_value"', - 'rule_trigger_not_created_at_after' => '交易创建日期不晚于":trigger_value"', - 'rule_trigger_not_updated_at_on' => '交易不是更新于“:trigger_value”', - 'rule_trigger_not_updated_at_before' => '交易更新日期不早于":trigger_value"', - 'rule_trigger_not_updated_at_after' => '交易更新日期不晚于“:trigger_value”', - 'rule_trigger_not_amount_is' => '交易金额不是“:trigger_value”', - 'rule_trigger_not_amount_less' => '交易金额大于“:trigger_value”', - 'rule_trigger_not_amount_more' => '交易金额小于“:trigger_value”', - 'rule_trigger_not_foreign_amount_is' => '外币交易金额不是“:trigger_value”', - 'rule_trigger_not_foreign_amount_less' => '外币交易金额大于:trigger_value', - 'rule_trigger_not_foreign_amount_more' => '外币交易金额小于:trigger_value', - 'rule_trigger_not_attachment_name_is' => '没有名称为“:trigger_value”的附件', - 'rule_trigger_not_attachment_name_contains' => '没有名称包含“:trigger_value”的附件', - 'rule_trigger_not_attachment_name_starts' => '没有名称开头为“:trigger_value”的附件', - 'rule_trigger_not_attachment_name_ends' => '没有名称结尾为“:trigger_value”的附件', - 'rule_trigger_not_attachment_notes_are' => '没有备注为“:trigger_value”的附件', - 'rule_trigger_not_attachment_notes_contains' => '没有备注包含“:trigger_value”的附件', - 'rule_trigger_not_attachment_notes_starts' => '没有备注开头为“:trigger_value”的附件', - 'rule_trigger_not_attachment_notes_ends' => '没有备注结尾为“:trigger_value”的附件', - 'rule_trigger_not_reconciled' => '交易未对账', - 'rule_trigger_not_exists' => '交易不存在', - 'rule_trigger_not_has_attachments' => '交易不含附件', - 'rule_trigger_not_has_any_category' => '交易不含分类', - 'rule_trigger_not_has_any_budget' => '交易没有预算', - 'rule_trigger_not_has_any_bill' => '交易不含账单', - 'rule_trigger_not_has_any_tag' => '交易不含标签', - 'rule_trigger_not_any_notes' => '交易不含备注', - 'rule_trigger_not_any_external_url' => '交易没有外部链接', - 'rule_trigger_not_has_no_attachments' => '交易有 (任何) 一个附件', - 'rule_trigger_not_has_no_category' => '交易有 (任何) 一个分类', - 'rule_trigger_not_has_no_budget' => '交易有 (任何) 一个预算', - 'rule_trigger_not_has_no_bill' => '交易有 (任何) 一个账单', - 'rule_trigger_not_has_no_tag' => '交易有 (任意) 一个标签', - 'rule_trigger_not_no_notes' => '交易有任意备注', - 'rule_trigger_not_no_external_url' => '交易有一个外部链接', - 'rule_trigger_not_source_is_cash' => '来源账户不为现金账户', - 'rule_trigger_not_destination_is_cash' => '目标账户不为现金账户', - 'rule_trigger_not_account_is_cash' => '两个账户都不是现金账户', + 'rule_trigger_not_account_id' => '账户ID不为":trigger_value"', + 'rule_trigger_not_source_account_id' => '来源账户ID不为":trigger_value"', + 'rule_trigger_not_destination_account_id' => '目标账户ID不为":trigger_value"', + 'rule_trigger_not_transaction_type' => '交易类型不为":trigger_value"', + 'rule_trigger_not_tag_is' => '标签不为":trigger_value"', + 'rule_trigger_not_tag_is_not' => '标签为":trigger_value"', + 'rule_trigger_not_description_is' => '描述不为":trigger_value"', + 'rule_trigger_not_description_contains' => '描述不包含', + 'rule_trigger_not_description_ends' => '描述结尾不为":trigger_value"', + 'rule_trigger_not_description_starts' => '描述开头不为":trigger_value"', + 'rule_trigger_not_notes_is' => '备注不为":trigger_value"', + 'rule_trigger_not_notes_contains' => '备注不含":trigger_value"', + 'rule_trigger_not_notes_ends' => '备注结尾不为":trigger_value"', + 'rule_trigger_not_notes_starts' => '备注开头不为":trigger_value"', + 'rule_trigger_not_source_account_is' => '来源账户不为":trigger_value"', + 'rule_trigger_not_source_account_contains' => '来源账户不含":trigger_value"', + 'rule_trigger_not_source_account_ends' => '来源账户结尾不为":trigger_value"', + 'rule_trigger_not_source_account_starts' => '来源账户开头不为":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => '来源账户编号 / IBAN 不为":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => '来源账户编号 / IBAN 不含":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => '来源账户编号 / IBAN 结尾不为":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => '来源账户编号 / IBAN 开头不为":trigger_value"', + 'rule_trigger_not_destination_account_is' => '目标账户不为":trigger_value"', + 'rule_trigger_not_destination_account_contains' => '目标账户不含":trigger_value"', + 'rule_trigger_not_destination_account_ends' => '目标账户结尾不为":trigger_value"', + 'rule_trigger_not_destination_account_starts' => '目标账户开头不为":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => '目标账户编号 / IBAN 不为":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => '目标账户编号 / IBAN 不含":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾不为":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => '目标账户编号 / IBAN 开头不为":trigger_value"', + 'rule_trigger_not_account_is' => '两个账户都不是":trigger_value"', + 'rule_trigger_not_account_contains' => '两个账户都不包含":trigger_value"', + 'rule_trigger_not_account_ends' => '两个账户的结尾都不是":trigger_value"', + 'rule_trigger_not_account_starts' => '两个账户的开头都不是":trigger_value"', + 'rule_trigger_not_account_nr_is' => '两个账户的编号/IBAN都不是":trigger_value"', + 'rule_trigger_not_account_nr_contains' => '两个账户的编号/IBAN都不包含":trigger_value"', + 'rule_trigger_not_account_nr_ends' => '两个账户的编号/IBAN结尾都不是":trigger_value"', + 'rule_trigger_not_account_nr_starts' => '两个账户的编号/IBAN开头都不是":trigger_value"', + 'rule_trigger_not_category_is' => '分类不为":trigger_value"', + 'rule_trigger_not_category_contains' => '分类不含":trigger_value"', + 'rule_trigger_not_category_ends' => '分类结尾不为":trigger_value"', + 'rule_trigger_not_category_starts' => '分类开头不为":trigger_value"', + 'rule_trigger_not_budget_is' => '预算不为":trigger_value"', + 'rule_trigger_not_budget_contains' => '预算不含":trigger_value"', + 'rule_trigger_not_budget_ends' => '预算结尾不为":trigger_value"', + 'rule_trigger_not_budget_starts' => '预算开头不为":trigger_value"', + 'rule_trigger_not_bill_is' => '账单不为":trigger_value"', + 'rule_trigger_not_bill_contains' => '账单不包含":trigger_value"', + 'rule_trigger_not_bill_ends' => '账单结尾不为":trigger_value"', + 'rule_trigger_not_bill_starts' => '账单结尾不含":trigger_value"', + 'rule_trigger_not_external_id_is' => '外部ID不为":trigger_value"', + 'rule_trigger_not_external_id_contains' => '外部ID不包含":trigger_value"', + 'rule_trigger_not_external_id_ends' => '外部ID结尾不为":trigger_value"', + 'rule_trigger_not_external_id_starts' => '外部ID开头不为":trigger_value"', + 'rule_trigger_not_internal_reference_is' => '内部引用不为":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => '内部引用不含":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => '内部引用结尾不为":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => '内部引用开头不为":trigger_value"', + 'rule_trigger_not_external_url_is' => '外部URL不为":trigger_value"', + 'rule_trigger_not_external_url_contains' => '外部URL不含":trigger_value"', + 'rule_trigger_not_external_url_ends' => '外部URL结尾不为":trigger_value"', + 'rule_trigger_not_external_url_starts' => '外部URL开头不为":trigger_value"', + 'rule_trigger_not_currency_is' => '货币不为":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => '外币不为":trigger_value"', + 'rule_trigger_not_id' => '交易ID不为":trigger_value"', + 'rule_trigger_not_journal_id' => '交易日志ID不为":trigger_value"', + 'rule_trigger_not_recurrence_id' => '重复ID不是“:trigger_value”', + 'rule_trigger_not_date_on' => '日期不为":trigger_value"', + 'rule_trigger_not_date_before' => '日期不早于":trigger_value"', + 'rule_trigger_not_date_after' => '日期不晚于":trigger_value"', + 'rule_trigger_not_interest_date_on' => '利息日期不为“:trigger_value”', + 'rule_trigger_not_interest_date_before' => '利息日期不早于“:trigger_value”', + 'rule_trigger_not_interest_date_after' => '利息日期不晚于“:trigger_value”', + 'rule_trigger_not_book_date_on' => '登记日期不为“:trigger_value”', + 'rule_trigger_not_book_date_before' => '登记日期不早于“:trigger_value”', + 'rule_trigger_not_book_date_after' => '登记日期不晚于“:trigger_value”', + 'rule_trigger_not_process_date_on' => '处理日期不为“:trigger_value”', + 'rule_trigger_not_process_date_before' => '处理日期不早于“:trigger_value”', + 'rule_trigger_not_process_date_after' => '处理日期不晚于“:trigger_value”', + 'rule_trigger_not_due_date_on' => '截止日期不为“:trigger_value”', + 'rule_trigger_not_due_date_before' => '截止日期不早于“:trigger_value”', + 'rule_trigger_not_due_date_after' => '截止日期不晚于“:trigger_value”', + 'rule_trigger_not_payment_date_on' => '付款日期不为“:trigger_value”', + 'rule_trigger_not_payment_date_before' => '付款日期不早于“:trigger_value”', + 'rule_trigger_not_payment_date_after' => '付款日期不晚于“:trigger_value”', + 'rule_trigger_not_invoice_date_on' => '发票日期不为“:trigger_value”', + 'rule_trigger_not_invoice_date_before' => '发票日期不早于“:trigger_value”', + 'rule_trigger_not_invoice_date_after' => '发票日期不晚于“:trigger_value”', + 'rule_trigger_not_created_at_on' => '交易创建日期不为“:trigger_value”', + 'rule_trigger_not_created_at_before' => '交易创建日期不早于":trigger_value"', + 'rule_trigger_not_created_at_after' => '交易创建日期不晚于":trigger_value"', + 'rule_trigger_not_updated_at_on' => '交易不是更新于“:trigger_value”', + 'rule_trigger_not_updated_at_before' => '交易更新日期不早于":trigger_value"', + 'rule_trigger_not_updated_at_after' => '交易更新日期不晚于“:trigger_value”', + 'rule_trigger_not_amount_is' => '交易金额不是“:trigger_value”', + 'rule_trigger_not_amount_less' => '交易金额大于“:trigger_value”', + 'rule_trigger_not_amount_more' => '交易金额小于“:trigger_value”', + 'rule_trigger_not_foreign_amount_is' => '外币交易金额不是“:trigger_value”', + 'rule_trigger_not_foreign_amount_less' => '外币交易金额大于:trigger_value', + 'rule_trigger_not_foreign_amount_more' => '外币交易金额小于:trigger_value', + 'rule_trigger_not_attachment_name_is' => '没有名称为“:trigger_value”的附件', + 'rule_trigger_not_attachment_name_contains' => '没有名称包含“:trigger_value”的附件', + 'rule_trigger_not_attachment_name_starts' => '没有名称开头为“:trigger_value”的附件', + 'rule_trigger_not_attachment_name_ends' => '没有名称结尾为“:trigger_value”的附件', + 'rule_trigger_not_attachment_notes_are' => '没有备注为“:trigger_value”的附件', + 'rule_trigger_not_attachment_notes_contains' => '没有备注包含“:trigger_value”的附件', + 'rule_trigger_not_attachment_notes_starts' => '没有备注开头为“:trigger_value”的附件', + 'rule_trigger_not_attachment_notes_ends' => '没有备注结尾为“:trigger_value”的附件', + 'rule_trigger_not_reconciled' => '交易未对账', + 'rule_trigger_not_exists' => '交易不存在', + 'rule_trigger_not_has_attachments' => '交易不含附件', + 'rule_trigger_not_has_any_category' => '交易不含分类', + 'rule_trigger_not_has_any_budget' => '交易没有预算', + 'rule_trigger_not_has_any_bill' => '交易不含账单', + 'rule_trigger_not_has_any_tag' => '交易不含标签', + 'rule_trigger_not_any_notes' => '交易不含备注', + 'rule_trigger_not_any_external_url' => '交易没有外部链接', + 'rule_trigger_not_has_no_attachments' => '交易有 (任何) 一个附件', + 'rule_trigger_not_has_no_category' => '交易有 (任何) 一个分类', + 'rule_trigger_not_has_no_budget' => '交易有 (任何) 一个预算', + 'rule_trigger_not_has_no_bill' => '交易有 (任何) 一个账单', + 'rule_trigger_not_has_no_tag' => '交易有 (任意) 一个标签', + 'rule_trigger_not_no_notes' => '交易有任意备注', + 'rule_trigger_not_no_external_url' => '交易有一个外部链接', + 'rule_trigger_not_source_is_cash' => '来源账户不为现金账户', + 'rule_trigger_not_destination_is_cash' => '目标账户不为现金账户', + 'rule_trigger_not_account_is_cash' => '两个账户都不是现金账户', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,341 +1232,347 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => '删除交易!', - 'rule_action_delete_transaction' => '删除交易!', - 'rule_action_set_category' => '设定分类为 ":action_value"', - 'rule_action_clear_category' => '清空分类', - 'rule_action_set_budget' => '添加到预算“:action_value”', - 'rule_action_clear_budget' => '清空预算', - 'rule_action_add_tag' => '新增标签 ":action_value"', - 'rule_action_remove_tag' => '移除标签 ":action_value"', - 'rule_action_remove_all_tags' => '移除所有标签', - 'rule_action_set_description' => '设定描述为“:action_value”', - 'rule_action_append_description' => '描述后添加“:action_value”', - 'rule_action_prepend_description' => '描述前添加“:action_value”', - 'rule_action_set_category_choice' => '设置分类为...', - 'rule_action_clear_category_choice' => '清空所有分类', - 'rule_action_set_budget_choice' => '设置预算为...', - 'rule_action_clear_budget_choice' => '清空所有预算', - 'rule_action_add_tag_choice' => '添加标签..', - 'rule_action_remove_tag_choice' => '移除标签..', - 'rule_action_remove_all_tags_choice' => '移除所有标签', - 'rule_action_set_description_choice' => '设置描述为', - 'rule_action_update_piggy_choice' => '添加/删除存钱罐中的交易金额', - 'rule_action_update_piggy' => '添加/删除存钱罐“:action_value”中的交易金额', - 'rule_action_append_description_choice' => '描述后添加…', - 'rule_action_prepend_description_choice' => '描述前添加…', - 'rule_action_set_source_account_choice' => '设置来源账户为...', - 'rule_action_set_source_account' => '将来源账户设为 :action_value', - 'rule_action_set_destination_account_choice' => '设置目标账户为...', - 'rule_action_set_destination_account' => '将目标账户设为 :action_value', - 'rule_action_append_notes_choice' => '备注后添加...', - 'rule_action_append_notes' => '备注后添加“:action_value”', - 'rule_action_prepend_notes_choice' => '备注前添加...', - 'rule_action_prepend_notes' => '备注前添加“:action_value”', - 'rule_action_clear_notes_choice' => '移除所有备注', - 'rule_action_clear_notes' => '移除所有备注', - 'rule_action_set_notes_choice' => '设置备注为..', - 'rule_action_link_to_bill_choice' => '关联至账单…', - 'rule_action_link_to_bill' => '关联至账单“:action_value”', - 'rule_action_switch_accounts_choice' => '交换来源账户和目标账户(仅转账!)', - 'rule_action_switch_accounts' => '交换来源账户和目标账户', - 'rule_action_set_notes' => '设定备注至“:action_value”', - 'rule_action_convert_deposit_choice' => '转换交易为收入', - 'rule_action_convert_deposit' => '转换交易为来自“:action_value”的收入', - 'rule_action_convert_withdrawal_choice' => '转换交易为支出', - 'rule_action_convert_withdrawal' => '转换交易为从“:action_value”的支出', - 'rule_action_convert_transfer_choice' => '转换交易为转账', - 'rule_action_convert_transfer' => '转换交易为与“:action_value”间的转账', - 'rule_action_append_descr_to_notes_choice' => '描述添加至交易备注后', - 'rule_action_append_notes_to_descr_choice' => '交易备注添加至描述后', - 'rule_action_move_descr_to_notes_choice' => '用描述替换当前交易备注', - 'rule_action_move_notes_to_descr_choice' => '用交易的备注替换当前描述', - 'rule_action_append_descr_to_notes' => '在备注后追加描述', - 'rule_action_append_notes_to_descr' => '在描述后追加备注', - 'rule_action_move_descr_to_notes' => '用描述替换备注', - 'rule_action_move_notes_to_descr' => '用备注替换描述', - 'rule_action_set_amount_choice' => '设置金额为 ...', - 'rule_action_set_amount' => '设置金额为 ":action_value"', - 'rule_action_set_destination_to_cash_choice' => '将目标帐户设置为 (现金)', - 'rule_action_set_source_to_cash_choice' => '将源账户设置为 (现金)', - 'rulegroup_for_bills_title' => '账单规则组', - 'rulegroup_for_bills_description' => '一个特殊的规则组,用于所有包含账单的规则。', - 'rule_for_bill_title' => '自动生成账单规则“:name”', - 'rule_for_bill_description' => '此规则是自动生成的,尝试匹配账单“:name”。', - 'create_rule_for_bill' => '为账单“:name”创建新规则', - 'create_rule_for_bill_txt' => '您刚刚创建了一个名为“:name”的新账单,恭喜!Firefly III 可以自动匹配新支出到此账单中。例如,每当您支付租金时,“租金”账单将与此支出挂钩。 这样的话,Firefly III 可以准确地向你们展示哪些账单将要到期以及哪些账单尚未到期。要实现该功能必须创建一项新的规则。Firefly III 已经为您填写了一些合理的默认值。请确保它们是正确的。如果这些值是正确的,Frefly III 将自动将正确的支出与正确的帐单关联起来。 请查看触发器以确认他们是否正确,如果触发器不正确,请添加一些正确的触发器。', - 'new_rule_for_bill_title' => '账单“:name”的规则', - 'new_rule_for_bill_description' => '此规则标记用于账单“:name”的交易。', + 'rule_action_delete_transaction_choice' => '删除交易!', + 'rule_action_delete_transaction' => '删除交易!', + 'rule_action_set_category' => '设定分类为 ":action_value"', + 'rule_action_clear_category' => '清空分类', + 'rule_action_set_budget' => '添加到预算“:action_value”', + 'rule_action_clear_budget' => '清空预算', + 'rule_action_add_tag' => '新增标签 ":action_value"', + 'rule_action_remove_tag' => '移除标签 ":action_value"', + 'rule_action_remove_all_tags' => '移除所有标签', + 'rule_action_set_description' => '设定描述为“:action_value”', + 'rule_action_append_description' => '描述后添加“:action_value”', + 'rule_action_prepend_description' => '描述前添加“:action_value”', + 'rule_action_set_category_choice' => '设置分类为...', + 'rule_action_clear_category_choice' => '清空所有分类', + 'rule_action_set_budget_choice' => '设置预算为...', + 'rule_action_clear_budget_choice' => '清空所有预算', + 'rule_action_add_tag_choice' => '添加标签..', + 'rule_action_remove_tag_choice' => '移除标签..', + 'rule_action_remove_all_tags_choice' => '移除所有标签', + 'rule_action_set_description_choice' => '设置描述为', + 'rule_action_update_piggy_choice' => '添加/删除存钱罐中的交易金额', + 'rule_action_update_piggy' => '添加/删除存钱罐“:action_value”中的交易金额', + 'rule_action_append_description_choice' => '描述后添加…', + 'rule_action_prepend_description_choice' => '描述前添加…', + 'rule_action_set_source_account_choice' => '设置来源账户为...', + 'rule_action_set_source_account' => '将来源账户设为 :action_value', + 'rule_action_set_destination_account_choice' => '设置目标账户为...', + 'rule_action_set_destination_account' => '将目标账户设为 :action_value', + 'rule_action_append_notes_choice' => '备注后添加...', + 'rule_action_append_notes' => '备注后添加“:action_value”', + 'rule_action_prepend_notes_choice' => '备注前添加...', + 'rule_action_prepend_notes' => '备注前添加“:action_value”', + 'rule_action_clear_notes_choice' => '移除所有备注', + 'rule_action_clear_notes' => '移除所有备注', + 'rule_action_set_notes_choice' => '设置备注为..', + 'rule_action_link_to_bill_choice' => '关联至账单…', + 'rule_action_link_to_bill' => '关联至账单“:action_value”', + 'rule_action_switch_accounts_choice' => '交换来源账户和目标账户(仅转账!)', + 'rule_action_switch_accounts' => '交换来源账户和目标账户', + 'rule_action_set_notes' => '设定备注至“:action_value”', + 'rule_action_convert_deposit_choice' => '转换交易为收入', + 'rule_action_convert_deposit' => '转换交易为来自“:action_value”的收入', + 'rule_action_convert_withdrawal_choice' => '转换交易为支出', + 'rule_action_convert_withdrawal' => '转换交易为从“:action_value”的支出', + 'rule_action_convert_transfer_choice' => '转换交易为转账', + 'rule_action_convert_transfer' => '转换交易为与“:action_value”间的转账', + 'rule_action_append_descr_to_notes_choice' => '描述添加至交易备注后', + 'rule_action_append_notes_to_descr_choice' => '交易备注添加至描述后', + 'rule_action_move_descr_to_notes_choice' => '用描述替换当前交易备注', + 'rule_action_move_notes_to_descr_choice' => '用交易的备注替换当前描述', + 'rule_action_append_descr_to_notes' => '在备注后追加描述', + 'rule_action_append_notes_to_descr' => '在描述后追加备注', + 'rule_action_move_descr_to_notes' => '用描述替换备注', + 'rule_action_move_notes_to_descr' => '用备注替换描述', + 'rule_action_set_amount_choice' => '设置金额为 ...', + 'rule_action_set_amount' => '设置金额为 ":action_value"', + 'rule_action_set_destination_to_cash_choice' => '将目标帐户设置为 (现金)', + 'rule_action_set_source_to_cash_choice' => '将源账户设置为 (现金)', + 'rulegroup_for_bills_title' => '账单规则组', + 'rulegroup_for_bills_description' => '一个特殊的规则组,用于所有包含账单的规则。', + 'rule_for_bill_title' => '自动生成账单规则“:name”', + 'rule_for_bill_description' => '此规则是自动生成的,尝试匹配账单“:name”。', + 'create_rule_for_bill' => '为账单“:name”创建新规则', + 'create_rule_for_bill_txt' => '您刚刚创建了一个名为“:name”的新账单,恭喜!Firefly III 可以自动匹配新支出到此账单中。例如,每当您支付租金时,“租金”账单将与此支出挂钩。 这样的话,Firefly III 可以准确地向你们展示哪些账单将要到期以及哪些账单尚未到期。要实现该功能必须创建一项新的规则。Firefly III 已经为您填写了一些合理的默认值。请确保它们是正确的。如果这些值是正确的,Frefly III 将自动将正确的支出与正确的帐单关联起来。 请查看触发器以确认他们是否正确,如果触发器不正确,请添加一些正确的触发器。', + 'new_rule_for_bill_title' => '账单“:name”的规则', + 'new_rule_for_bill_description' => '此规则标记用于账单“:name”的交易。', - 'new_rule_for_journal_title' => '基于交易":description"的规则', - 'new_rule_for_journal_description' => '此规则基于交易“:description”,它将匹配完全相同的交易。', + 'new_rule_for_journal_title' => '基于交易":description"的规则', + 'new_rule_for_journal_description' => '此规则基于交易“:description”,它将匹配完全相同的交易。', // tags - 'store_new_tag' => '保存新标签', - 'update_tag' => '更新标签', - 'no_location_set' => '没有设定位置。', - 'meta_data' => '后设资料', - 'location' => '位置', - 'location_first_split' => '交易的位置可以设置在此交易的第一个拆分。', - 'without_date' => '不含日期', - 'result' => '结果', - 'sums_apply_to_range' => '所有总和均应用至所选范围', - 'mapbox_api_key' => '若要使用地图,请从 Mapbox 获取 API 密钥。打开 .env 文件并在 MAPBOX_API_KEY= 后输入密钥。', - 'press_object_location' => '右键单击或长按设置对象的位置。', - 'click_tap_location' => '点击或点击地图添加位置', - 'clear_location' => '清除位置', - 'delete_all_selected_tags' => '删除所有选中的标签', - 'select_tags_to_delete' => '别忘了选择一些标签。', - 'deleted_x_tags' => '已删除 :count 个标签。|已删除 :count 个标签。', - 'create_rule_from_transaction' => '基于交易创建规则', - 'create_recurring_from_transaction' => '从交易创建定期交易', + 'store_new_tag' => '保存新标签', + 'update_tag' => '更新标签', + 'no_location_set' => '没有设定位置。', + 'meta_data' => '后设资料', + 'location' => '位置', + 'location_first_split' => '交易的位置可以设置在此交易的第一个拆分。', + 'without_date' => '不含日期', + 'result' => '结果', + 'sums_apply_to_range' => '所有总和均应用至所选范围', + 'mapbox_api_key' => '若要使用地图,请从 Mapbox 获取 API 密钥。打开 .env 文件并在 MAPBOX_API_KEY= 后输入密钥。', + 'press_object_location' => '右键单击或长按设置对象的位置。', + 'click_tap_location' => '点击或点击地图添加位置', + 'clear_location' => '清除位置', + 'delete_all_selected_tags' => '删除所有选中的标签', + 'select_tags_to_delete' => '别忘了选择一些标签。', + 'deleted_x_tags' => '已删除 :count 个标签。|已删除 :count 个标签。', + 'create_rule_from_transaction' => '基于交易创建规则', + 'create_recurring_from_transaction' => '从交易创建定期交易', // preferences - 'dark_mode_option_browser' => '让您的浏览器决定', - 'dark_mode_option_light' => '始终使用亮色', - 'dark_mode_option_dark' => '始终使用暗色', - 'equal_to_language' => '(与语言相同)', - 'dark_mode_preference' => '暗色模式', - 'dark_mode_preference_help' => '告诉 Firefly III 何时使用暗色模式。', - 'pref_home_screen_accounts' => '主屏幕账户', - 'pref_home_screen_accounts_help' => '哪些账户应该显示在主屏幕上?', - 'pref_view_range' => '查看范围', - 'pref_view_range_help' => '部分图表自动按照周期分组,您的预算也将按照周期分组。请问您倾向于哪个周期?', - 'pref_1D' => '1天', - 'pref_1W' => '1周', - 'pref_1M' => '1个月', - 'pref_3M' => '3个月 (1季度)', - 'pref_6M' => '6个月', - 'pref_1Y' => '1年', - 'pref_last365' => '最近一年', - 'pref_last90' => '最近90天', - 'pref_last30' => '最近 30 天', - 'pref_last7' => '最近7天', - 'pref_YTD' => '今年至今', - 'pref_QTD' => '本季度至今', - 'pref_MTD' => '本月至今', - 'pref_languages' => '语言', - 'pref_locale' => '区域设置', - 'pref_languages_help' => 'Firefly III 支持多语言,请问您倾向于哪个语言?', - 'pref_locale_help' => 'Firefly III 允许您配置其他本地设置,例如货币、数字、日期的格式。您的系统可能不支持此列表中的某些条目。Firefly III 没有为每个区域设置正确的日期格式;请联系开发者进行改进。', - 'pref_locale_no_demo' => '此功能对演示用户无效。', - 'pref_custom_fiscal_year' => '财年设置', - 'pref_custom_fiscal_year_label' => '已启用', - 'pref_custom_fiscal_year_help' => '在不使用1月1日至12月31日作为财年的国家,您可开启此功能并指定财年的起止日期。', - 'pref_fiscal_year_start_label' => '财政年度开始日期', - 'pref_two_factor_auth' => '两步验证', - 'pref_two_factor_auth_help' => '启用两步验证 (或双重验证) 可为您的帐户增加一层额外的安全防护,您将以已知的信息 (您的密码) 和已有的信息 (验证码) 进行登录。验证码由您的手机 App 生成,例如 Authy 或 Google Authenticator。', - 'pref_enable_two_factor_auth' => '启用两步验证', - 'pref_two_factor_auth_disabled' => '两步验证码已删除且停用', - 'pref_two_factor_auth_remove_it' => '请不要忘记从您的身份验证 APP 上删除账户!', - 'pref_two_factor_auth_code' => '验证码', - 'pref_two_factor_auth_code_help' => '请使用手机 App(例如 Authy 或 Google Authenticator)扫描二维码,并输入生成的代码。', - 'pref_two_factor_auth_reset_code' => '重置验证码', - 'pref_two_factor_auth_disable_2fa' => '停用两步验证', - '2fa_use_secret_instead' => '如果您无法扫描 QR 码,请使用密钥: :secret。', - '2fa_backup_codes' => '保存这些备份代码,以便在您丢失设备时访问。', - '2fa_already_enabled' => '2步验证已启用。', - 'wrong_mfa_code' => '此MFA代码无效。', - 'pref_save_settings' => '保存设置', - 'saved_preferences' => '偏好设定已保存!', - 'preferences_general' => '通用', - 'preferences_frontpage' => '主屏幕', - 'preferences_security' => '安全性', - 'preferences_layout' => '布局', - 'preferences_notifications' => '通知', - 'pref_home_show_deposits' => '在主屏幕显示收入', - 'pref_home_show_deposits_info' => '主屏幕已显示您的支出账户,是否同时显示您的收入账户?', - 'pref_home_do_show_deposits' => '是,要显示', - 'successful_count' => ':count 项成功', - 'list_page_size_title' => '页面大小', - 'list_page_size_help' => '任何项目 (账户、交易等) 的列表每页最多显示此数量。', - 'list_page_size_label' => '页面大小', - 'between_dates' => '(:start – :end)', - 'pref_optional_fields_transaction' => '交易选填字段', - 'pref_optional_fields_transaction_help' => '默认情况下,建立一笔新交易时 (由于太多字段比较杂乱) ,所有字段并非全部启用。如果您认为下面的这些字段对您有用,您可以启用它们。当然,任何已禁用但已填写的字段仍然可见,与设置无关。 + 'dark_mode_option_browser' => '让您的浏览器决定', + 'dark_mode_option_light' => '始终使用亮色', + 'dark_mode_option_dark' => '始终使用暗色', + 'equal_to_language' => '(与语言相同)', + 'dark_mode_preference' => '暗色模式', + 'dark_mode_preference_help' => '告诉 Firefly III 何时使用暗色模式。', + 'pref_home_screen_accounts' => '主屏幕账户', + 'pref_home_screen_accounts_help' => '哪些账户应该显示在主屏幕上?', + 'pref_view_range' => '查看范围', + 'pref_view_range_help' => '部分图表自动按照周期分组,您的预算也将按照周期分组。请问您倾向于哪个周期?', + 'pref_1D' => '1天', + 'pref_1W' => '1周', + 'pref_1M' => '1个月', + 'pref_3M' => '3个月 (1季度)', + 'pref_6M' => '6个月', + 'pref_1Y' => '1年', + 'pref_last365' => '最近一年', + 'pref_last90' => '最近90天', + 'pref_last30' => '最近 30 天', + 'pref_last7' => '最近7天', + 'pref_YTD' => '今年至今', + 'pref_QTD' => '本季度至今', + 'pref_MTD' => '本月至今', + 'pref_languages' => '语言', + 'pref_locale' => '区域设置', + 'pref_languages_help' => 'Firefly III 支持多语言,请问您倾向于哪个语言?', + 'pref_locale_help' => 'Firefly III 允许您配置其他本地设置,例如货币、数字、日期的格式。您的系统可能不支持此列表中的某些条目。Firefly III 没有为每个区域设置正确的日期格式;请联系开发者进行改进。', + 'pref_locale_no_demo' => '此功能对演示用户无效。', + 'pref_custom_fiscal_year' => '财年设置', + 'pref_custom_fiscal_year_label' => '已启用', + 'pref_custom_fiscal_year_help' => '在不使用1月1日至12月31日作为财年的国家,您可开启此功能并指定财年的起止日期。', + 'pref_fiscal_year_start_label' => '财政年度开始日期', + 'pref_two_factor_auth' => '两步验证', + 'pref_two_factor_auth_help' => '启用两步验证 (或双重验证) 可为您的帐户增加一层额外的安全防护,您将以已知的信息 (您的密码) 和已有的信息 (验证码) 进行登录。验证码由您的手机 App 生成,例如 Authy 或 Google Authenticator。', + 'pref_enable_two_factor_auth' => '启用两步验证', + 'pref_two_factor_auth_disabled' => '两步验证码已删除且停用', + 'pref_two_factor_auth_remove_it' => '请不要忘记从您的身份验证 APP 上删除账户!', + 'pref_two_factor_auth_code' => '验证码', + 'pref_two_factor_auth_code_help' => '请使用手机 App(例如 Authy 或 Google Authenticator)扫描二维码,并输入生成的代码。', + 'pref_two_factor_auth_reset_code' => '重置验证码', + 'pref_two_factor_auth_disable_2fa' => '停用两步验证', + '2fa_use_secret_instead' => '如果您无法扫描 QR 码,请使用密钥: :secret。', + '2fa_backup_codes' => '保存这些备份代码,以便在您丢失设备时访问。', + '2fa_already_enabled' => '2步验证已启用。', + 'wrong_mfa_code' => '此MFA代码无效。', + 'pref_save_settings' => '保存设置', + 'saved_preferences' => '偏好设定已保存!', + 'preferences_general' => '通用', + 'preferences_frontpage' => '主屏幕', + 'preferences_security' => '安全性', + 'preferences_layout' => '布局', + 'preferences_notifications' => '通知', + 'pref_home_show_deposits' => '在主屏幕显示收入', + 'pref_home_show_deposits_info' => '主屏幕已显示您的支出账户,是否同时显示您的收入账户?', + 'pref_home_do_show_deposits' => '是,要显示', + 'successful_count' => ':count 项成功', + 'list_page_size_title' => '页面大小', + 'list_page_size_help' => '任何项目 (账户、交易等) 的列表每页最多显示此数量。', + 'list_page_size_label' => '页面大小', + 'between_dates' => '(:start – :end)', + 'pref_optional_fields_transaction' => '交易选填字段', + 'pref_optional_fields_transaction_help' => '默认情况下,建立一笔新交易时 (由于太多字段比较杂乱) ,所有字段并非全部启用。如果您认为下面的这些字段对您有用,您可以启用它们。当然,任何已禁用但已填写的字段仍然可见,与设置无关。 ', - 'optional_tj_date_fields' => '日期字段', - 'optional_tj_other_fields' => '其他字段', - 'optional_tj_attachment_fields' => '附件字段', - 'pref_optional_tj_interest_date' => '利息日期', - 'pref_optional_tj_book_date' => '登记日期', - 'pref_optional_tj_process_date' => '处理日期', - 'pref_optional_tj_due_date' => '截止日期', - 'pref_optional_tj_payment_date' => '付款日期', - 'pref_optional_tj_invoice_date' => '发票日期', - 'pref_optional_tj_internal_reference' => '内部引用', - 'pref_optional_tj_notes' => '备注', - 'pref_optional_tj_attachments' => '附件', - 'pref_optional_tj_external_url' => '外部链接', - 'pref_optional_tj_location' => '位置', - 'pref_optional_tj_links' => '交易关联', - 'optional_field_meta_dates' => '日期', - 'optional_field_meta_business' => '商务', - 'optional_field_attachments' => '附件', - 'optional_field_meta_data' => '可选后设资料', - 'external_url' => '外部链接', - 'pref_notification_bill_reminder' => '关于到期账单的提醒', - 'pref_notification_new_access_token' => '创建新 API 访问令牌时提醒', - 'pref_notification_transaction_creation' => '自动创建交易时提醒', - 'pref_notification_user_login' => '当您从一个新位置登录时提醒', - 'pref_notification_rule_action_failures' => '当规则操作失败时发出警告 (仅适用于Slack或者Discord)', - 'pref_notifications' => '通知', - 'pref_notifications_help' => '设置您想要接收的通知。一些通知可能包含敏感的财务信息。', - 'slack_webhook_url' => 'Slack Webhook 地址', - 'slack_webhook_url_help' => '如果您想要 Firefly III 使用 Slack 通知您,请在此处输入 webhook 地址。否则请留空该字段。 如果您是管理员,您还需要在管理设置中设置此地址。', - 'slack_url_label' => 'Slack“回传webhook”网址', + 'optional_tj_date_fields' => '日期字段', + 'optional_tj_other_fields' => '其他字段', + 'optional_tj_attachment_fields' => '附件字段', + 'pref_optional_tj_interest_date' => '利息日期', + 'pref_optional_tj_book_date' => '登记日期', + 'pref_optional_tj_process_date' => '处理日期', + 'pref_optional_tj_due_date' => '截止日期', + 'pref_optional_tj_payment_date' => '付款日期', + 'pref_optional_tj_invoice_date' => '发票日期', + 'pref_optional_tj_internal_reference' => '内部引用', + 'pref_optional_tj_notes' => '备注', + 'pref_optional_tj_attachments' => '附件', + 'pref_optional_tj_external_url' => '外部链接', + 'pref_optional_tj_location' => '位置', + 'pref_optional_tj_links' => '交易关联', + 'optional_field_meta_dates' => '日期', + 'optional_field_meta_business' => '商务', + 'optional_field_attachments' => '附件', + 'optional_field_meta_data' => '可选后设资料', + 'external_url' => '外部链接', + 'pref_notification_bill_reminder' => '关于到期账单的提醒', + 'pref_notification_new_access_token' => '创建新 API 访问令牌时提醒', + 'pref_notification_transaction_creation' => '自动创建交易时提醒', + 'pref_notification_user_login' => '当您从一个新位置登录时提醒', + 'pref_notification_rule_action_failures' => '当规则操作失败时发出警告 (仅适用于Slack或者Discord)', + 'pref_notifications' => '通知', + 'pref_notifications_help' => '设置您想要接收的通知。一些通知可能包含敏感的财务信息。', + 'slack_webhook_url' => 'Slack Webhook 地址', + 'slack_webhook_url_help' => '如果您想要 Firefly III 使用 Slack 通知您,请在此处输入 webhook 地址。否则请留空该字段。 如果您是管理员,您还需要在管理设置中设置此地址。', + 'slack_url_label' => 'Slack“回传webhook”网址', // Financial administrations - 'administration_index' => '财务管理', - 'administrations_index_menu' => '财务管理', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => '财务管理', + 'administrations_index_menu' => '财务管理', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => '从 Frefly III 清除数据', - 'purge_data_expl' => '“清除”是指“删除已经删除的内容”。在正常情况下,Firefly III 不会永久删除记录,只是将其隐藏。下面的按钮会将先前“已删除”的记录永久删除。', - 'delete_stuff_header' => '删除数据', - 'purge_all_data' => '彻底删除所有已删除的记录', - 'purge_data' => '彻底清除数据', - 'purged_all_records' => '所有已删除的记录已被彻底清除。', - 'delete_data_title' => '从 Firefly III 删除数据', - 'permanent_delete_stuff' => '你可以从 Firefly III 删除数据。使用下列按钮意味着你的数据会从视图中移除并隐藏。这些操作没有撤销按钮,但如果必要的话,你可以从数据库中找回数据,它们可能仍然存在于数据库中。', - 'other_sessions_logged_out' => '所有其他设备已退出登录。', - 'delete_unused_accounts' => '删除未使用的账户会清空您的自动补全列表。', - 'delete_all_unused_accounts' => '删除未使用的账户', - 'deleted_all_unused_accounts' => '所有未使用的账户都已删除', - 'delete_all_budgets' => '删除所有预算', - 'delete_all_categories' => '删除所有分类', - 'delete_all_tags' => '删除所有标签', - 'delete_all_bills' => '删除所有账单', - 'delete_all_piggy_banks' => '删除所有存钱罐', - 'delete_all_rules' => '删除所有规则', - 'delete_all_recurring' => '删除所有定期交易', - 'delete_all_object_groups' => '删除所有组', - 'delete_all_accounts' => '删除所有账户', - 'delete_all_asset_accounts' => '删除所有资产账户', - 'delete_all_expense_accounts' => '删除所有支出账户', - 'delete_all_revenue_accounts' => '删除所有收入账户', - 'delete_all_liabilities' => '删除所有债务', - 'delete_all_transactions' => '删除所有交易', - 'delete_all_withdrawals' => '删除所有支出', - 'delete_all_deposits' => '删除所有收入', - 'delete_all_transfers' => '删除所有转账', - 'also_delete_transactions' => '删除账户将同时删除所有关联的收入、支出和转账!', - 'deleted_all_budgets' => '所有预算已被删除', - 'deleted_all_categories' => '所有分类已被删除', - 'deleted_all_tags' => '所有标签已被删除', - 'deleted_all_bills' => '所有账单已被删除', - 'deleted_all_piggy_banks' => '所有存钱罐已被删除', - 'deleted_all_rules' => '所有规则和规则组已被删除', - 'deleted_all_object_groups' => '所有组已被删除', - 'deleted_all_accounts' => '所有账户已被删除', - 'deleted_all_asset_accounts' => '所有资产账户已被删除', - 'deleted_all_expense_accounts' => '所有支出账户已被删除', - 'deleted_all_revenue_accounts' => '所有收入账户已被删除', - 'deleted_all_liabilities' => '所有债务已被删除', - 'deleted_all_transactions' => '所有交易已被删除', - 'deleted_all_withdrawals' => '所有支出已被删除', - 'deleted_all_deposits' => '所有收入已被删除', - 'deleted_all_transfers' => '所有转账已被删除', - 'deleted_all_recurring' => '所有定期交易已被删除', - 'change_your_password' => '更改您的密码', - 'delete_account' => '删除账户', - 'current_password' => '当前密码', - 'new_password' => '新密码', - 'new_password_again' => '新密码 (再输入一次)', - 'delete_your_account' => '删除您的账户', - 'delete_your_account_help' => '删除您的账户亦将删除所有创建的账户、交易,包括所有您存在 Firefly III 的内容都将被清除!', - 'delete_your_account_password' => '输入您的密码以继续。', - 'password' => '密码', - 'are_you_sure' => '是否确定?您无法还原此操作。', - 'delete_account_button' => '删除您的账户', - 'invalid_current_password' => '无效的当前密码!', - 'password_changed' => '已变更密码!', - 'should_change' => '我们的想法是更改您的密码。', - 'invalid_password' => '无效密码!', - 'what_is_pw_security' => '什么是“验证密码安全”?', - 'secure_pw_title' => '如何选择安全密码', - 'forgot_password_response' => '谢谢,如果此电子邮件地址的账户存在,您将在收件箱中找到说明。', - 'secure_pw_history' => '每周都能看到有关网站泄漏用户密码的新闻,黑客与小偷会使用这些窃取您的个人信息,这些信息价值不菲。', - 'secure_pw_ff' => '您在网上使用的密码都一样吗?如果一个网站泄漏了您的密码,黑客将可获取您的所有资料。Firefly III 需要您选择强大且独特的密码以保护您的财务记录。', - 'secure_pw_check_box' => '为了协助您使用安全密码,Firefly III 可自动检查您的密码过去是否已被盗用。若如此,Firefly III 建议您不要使用此密码。', - 'secure_pw_working_title' => '它是如何运作的?', - 'secure_pw_working' => '勾选此复选框后,Firefly III 会发送您密码的 SHA1 哈希值的前5个字符至 Troy Hunt 网站 以检查是否被泄漏。根据 NIST 特殊刊物 的建议,我们将阻止您使用不安全的密码。', - 'secure_pw_should' => '我应该勾选此复选框吗?', - 'secure_pw_long_password' => '是的,请总是验证您的密码是安全的。', - 'command_line_token' => '命令行令牌', - 'explain_command_line_token' => '您需要此令牌进行命令行操作,例如导出数据等。若没有令牌,敏感操作将无法完成。请勿泄漏您的命令行令牌,包括开发者在内的任何人都无权向您索要。如果您不小心泄漏或遗失了令牌,请使用此按钮重新生成。', - 'regenerate_command_line_token' => '重新生成命令行令牌', - 'token_regenerated' => '已生成新的命令行令牌', - 'change_your_email' => '更改您的电子邮件地址', - 'email_verification' => '您的旧邮件地址和新邮件地址都将收到一封邮件。出于安全考虑,您在验证新的电子邮件地址前将无法登录。如果您不确定此 Firefly III 站点是否能发送邮件,请不要使用此功能。如果您是站点管理员,您可以在管理页面进行测试。', - 'email_changed_logout' => '在验证您的电子邮件地址之前,您无法登入。', - 'login_with_new_email' => '现在,您可以使用新的电子邮件地址登入。', - 'login_with_old_email' => '现在,您可以再次使用旧的电子邮件地址登入。', - 'login_provider_local_only' => '当藉由 ":login_provider" 验证时,此动作不可用。', - 'external_user_mgt_disabled' => '当 Firefly III 不负责用户管理或身份验证时,此操作不可用。', - 'external_auth_disabled' => '当 Firefly III 不负责身份验证时,此操作不可用。', - 'delete_local_info_only' => '由于 Firefly III 不负责用户管理和身份验证时,此操作将仅删除 Firefly III 本地的信息。', - 'oauth' => 'OAuth 授权', - 'profile_oauth_clients' => 'OAuth 客户端', - 'profile_oauth_no_clients' => '您尚未创建任何 OAuth 客户端。', - 'profile_oauth_clients_external_auth' => '如果您正在使用如 Authelia 的外部身份验证提供商,OAuth 客户端将无法工作。您只能使用个人访问令牌。', - 'profile_oauth_clients_header' => '客户端', - 'profile_oauth_client_id' => '客户端 ID', - 'profile_oauth_client_name' => '名称', - 'profile_oauth_client_secret' => '密钥', - 'profile_oauth_create_new_client' => '创建新客户端', - 'profile_oauth_create_client' => '创建客户端', - 'profile_oauth_edit_client' => '编辑客户端', - 'profile_oauth_name_help' => '您的用户可以识别并信任的信息', - 'profile_oauth_redirect_url' => '跳转网址', - 'profile_oauth_redirect_url_help' => '您的应用程序的授权回调网址', - 'profile_authorized_apps' => '已授权应用', - 'profile_authorized_clients' => '已授权客户端', - 'profile_scopes' => '范围', - 'profile_revoke' => '撤消', - 'profile_oauth_client_secret_title' => '客户端密钥', - 'profile_oauth_client_secret_expl' => '请妥善保存您的新客户端的密钥,此密钥仅会在这里展示一次。您现在已可以使用此密钥进行 API 请求。', - 'profile_personal_access_tokens' => '个人访问令牌', - 'profile_personal_access_token' => '个人访问令牌', - 'profile_oauth_confidential' => '使用加密', - 'profile_oauth_confidential_help' => '要求客户端使用密钥进行认证。加密客户端可以安全储存凭据且不将其泄露给未授权方,而公共应用程序(例如本地计算机或 JavaScript SPA 应用程序)无法保证凭据的安全性。', - 'profile_personal_access_token_explanation' => '请妥善保存您的新个人访问令牌,此令牌仅会在这里展示一次。您现在已可以使用此令牌进行 API 请求。', - 'profile_no_personal_access_token' => '您还没有创建个人访问令牌。', - 'profile_create_new_token' => '创建新令牌', - 'profile_create_token' => '创建令牌', - 'profile_create' => '创建', - 'profile_save_changes' => '保存更改', - 'profile_whoops' => '很抱歉!', - 'profile_something_wrong' => '发生错误!', - 'profile_try_again' => '发生错误,请稍后再试。', - 'amounts' => '金额', - 'multi_account_warning_unknown' => '根据您创建的交易类型,后续拆分的来源和/或目标账户可能被交易的首笔拆分的配置所覆盖。', - 'multi_account_warning_withdrawal' => '请注意,后续拆分的来源账户将会被支出的首笔拆分的配置所覆盖。', - 'multi_account_warning_deposit' => '请注意,后续拆分的目标账户将会被收入的首笔拆分的配置所覆盖。', - 'multi_account_warning_transfer' => '请注意,后续拆分的来源和目标账户将会被转账的首笔拆分的配置所覆盖。', + 'purge_data_title' => '从 Frefly III 清除数据', + 'purge_data_expl' => '“清除”是指“删除已经删除的内容”。在正常情况下,Firefly III 不会永久删除记录,只是将其隐藏。下面的按钮会将先前“已删除”的记录永久删除。', + 'delete_stuff_header' => '删除数据', + 'purge_all_data' => '彻底删除所有已删除的记录', + 'purge_data' => '彻底清除数据', + 'purged_all_records' => '所有已删除的记录已被彻底清除。', + 'delete_data_title' => '从 Firefly III 删除数据', + 'permanent_delete_stuff' => '你可以从 Firefly III 删除数据。使用下列按钮意味着你的数据会从视图中移除并隐藏。这些操作没有撤销按钮,但如果必要的话,你可以从数据库中找回数据,它们可能仍然存在于数据库中。', + 'other_sessions_logged_out' => '所有其他设备已退出登录。', + 'delete_unused_accounts' => '删除未使用的账户会清空您的自动补全列表。', + 'delete_all_unused_accounts' => '删除未使用的账户', + 'deleted_all_unused_accounts' => '所有未使用的账户都已删除', + 'delete_all_budgets' => '删除所有预算', + 'delete_all_categories' => '删除所有分类', + 'delete_all_tags' => '删除所有标签', + 'delete_all_bills' => '删除所有账单', + 'delete_all_piggy_banks' => '删除所有存钱罐', + 'delete_all_rules' => '删除所有规则', + 'delete_all_recurring' => '删除所有定期交易', + 'delete_all_object_groups' => '删除所有组', + 'delete_all_accounts' => '删除所有账户', + 'delete_all_asset_accounts' => '删除所有资产账户', + 'delete_all_expense_accounts' => '删除所有支出账户', + 'delete_all_revenue_accounts' => '删除所有收入账户', + 'delete_all_liabilities' => '删除所有债务', + 'delete_all_transactions' => '删除所有交易', + 'delete_all_withdrawals' => '删除所有支出', + 'delete_all_deposits' => '删除所有收入', + 'delete_all_transfers' => '删除所有转账', + 'also_delete_transactions' => '删除账户将同时删除所有关联的收入、支出和转账!', + 'deleted_all_budgets' => '所有预算已被删除', + 'deleted_all_categories' => '所有分类已被删除', + 'deleted_all_tags' => '所有标签已被删除', + 'deleted_all_bills' => '所有账单已被删除', + 'deleted_all_piggy_banks' => '所有存钱罐已被删除', + 'deleted_all_rules' => '所有规则和规则组已被删除', + 'deleted_all_object_groups' => '所有组已被删除', + 'deleted_all_accounts' => '所有账户已被删除', + 'deleted_all_asset_accounts' => '所有资产账户已被删除', + 'deleted_all_expense_accounts' => '所有支出账户已被删除', + 'deleted_all_revenue_accounts' => '所有收入账户已被删除', + 'deleted_all_liabilities' => '所有债务已被删除', + 'deleted_all_transactions' => '所有交易已被删除', + 'deleted_all_withdrawals' => '所有支出已被删除', + 'deleted_all_deposits' => '所有收入已被删除', + 'deleted_all_transfers' => '所有转账已被删除', + 'deleted_all_recurring' => '所有定期交易已被删除', + 'change_your_password' => '更改您的密码', + 'delete_account' => '删除账户', + 'current_password' => '当前密码', + 'new_password' => '新密码', + 'new_password_again' => '新密码 (再输入一次)', + 'delete_your_account' => '删除您的账户', + 'delete_your_account_help' => '删除您的账户亦将删除所有创建的账户、交易,包括所有您存在 Firefly III 的内容都将被清除!', + 'delete_your_account_password' => '输入您的密码以继续。', + 'password' => '密码', + 'are_you_sure' => '是否确定?您无法还原此操作。', + 'delete_account_button' => '删除您的账户', + 'invalid_current_password' => '无效的当前密码!', + 'password_changed' => '已变更密码!', + 'should_change' => '我们的想法是更改您的密码。', + 'invalid_password' => '无效密码!', + 'what_is_pw_security' => '什么是“验证密码安全”?', + 'secure_pw_title' => '如何选择安全密码', + 'forgot_password_response' => '谢谢,如果此电子邮件地址的账户存在,您将在收件箱中找到说明。', + 'secure_pw_history' => '每周都能看到有关网站泄漏用户密码的新闻,黑客与小偷会使用这些窃取您的个人信息,这些信息价值不菲。', + 'secure_pw_ff' => '您在网上使用的密码都一样吗?如果一个网站泄漏了您的密码,黑客将可获取您的所有资料。Firefly III 需要您选择强大且独特的密码以保护您的财务记录。', + 'secure_pw_check_box' => '为了协助您使用安全密码,Firefly III 可自动检查您的密码过去是否已被盗用。若如此,Firefly III 建议您不要使用此密码。', + 'secure_pw_working_title' => '它是如何运作的?', + 'secure_pw_working' => '勾选此复选框后,Firefly III 会发送您密码的 SHA1 哈希值的前5个字符至 Troy Hunt 网站 以检查是否被泄漏。根据 NIST 特殊刊物 的建议,我们将阻止您使用不安全的密码。', + 'secure_pw_should' => '我应该勾选此复选框吗?', + 'secure_pw_long_password' => '是的,请总是验证您的密码是安全的。', + 'command_line_token' => '命令行令牌', + 'explain_command_line_token' => '您需要此令牌进行命令行操作,例如导出数据等。若没有令牌,敏感操作将无法完成。请勿泄漏您的命令行令牌,包括开发者在内的任何人都无权向您索要。如果您不小心泄漏或遗失了令牌,请使用此按钮重新生成。', + 'regenerate_command_line_token' => '重新生成命令行令牌', + 'token_regenerated' => '已生成新的命令行令牌', + 'change_your_email' => '更改您的电子邮件地址', + 'email_verification' => '您的旧邮件地址和新邮件地址都将收到一封邮件。出于安全考虑,您在验证新的电子邮件地址前将无法登录。如果您不确定此 Firefly III 站点是否能发送邮件,请不要使用此功能。如果您是站点管理员,您可以在管理页面进行测试。', + 'email_changed_logout' => '在验证您的电子邮件地址之前,您无法登入。', + 'login_with_new_email' => '现在,您可以使用新的电子邮件地址登入。', + 'login_with_old_email' => '现在,您可以再次使用旧的电子邮件地址登入。', + 'login_provider_local_only' => '当藉由 ":login_provider" 验证时,此动作不可用。', + 'external_user_mgt_disabled' => '当 Firefly III 不负责用户管理或身份验证时,此操作不可用。', + 'external_auth_disabled' => '当 Firefly III 不负责身份验证时,此操作不可用。', + 'delete_local_info_only' => '由于 Firefly III 不负责用户管理和身份验证时,此操作将仅删除 Firefly III 本地的信息。', + 'oauth' => 'OAuth 授权', + 'profile_oauth_clients' => 'OAuth 客户端', + 'profile_oauth_no_clients' => '您尚未创建任何 OAuth 客户端。', + 'profile_oauth_clients_external_auth' => '如果您正在使用如 Authelia 的外部身份验证提供商,OAuth 客户端将无法工作。您只能使用个人访问令牌。', + 'profile_oauth_clients_header' => '客户端', + 'profile_oauth_client_id' => '客户端 ID', + 'profile_oauth_client_name' => '名称', + 'profile_oauth_client_secret' => '密钥', + 'profile_oauth_create_new_client' => '创建新客户端', + 'profile_oauth_create_client' => '创建客户端', + 'profile_oauth_edit_client' => '编辑客户端', + 'profile_oauth_name_help' => '您的用户可以识别并信任的信息', + 'profile_oauth_redirect_url' => '跳转网址', + 'profile_oauth_redirect_url_help' => '您的应用程序的授权回调网址', + 'profile_authorized_apps' => '已授权应用', + 'profile_authorized_clients' => '已授权客户端', + 'profile_scopes' => '范围', + 'profile_revoke' => '撤消', + 'profile_oauth_client_secret_title' => '客户端密钥', + 'profile_oauth_client_secret_expl' => '请妥善保存您的新客户端的密钥,此密钥仅会在这里展示一次。您现在已可以使用此密钥进行 API 请求。', + 'profile_personal_access_tokens' => '个人访问令牌', + 'profile_personal_access_token' => '个人访问令牌', + 'profile_oauth_confidential' => '使用加密', + 'profile_oauth_confidential_help' => '要求客户端使用密钥进行认证。加密客户端可以安全储存凭据且不将其泄露给未授权方,而公共应用程序(例如本地计算机或 JavaScript SPA 应用程序)无法保证凭据的安全性。', + 'profile_personal_access_token_explanation' => '请妥善保存您的新个人访问令牌,此令牌仅会在这里展示一次。您现在已可以使用此令牌进行 API 请求。', + 'profile_no_personal_access_token' => '您还没有创建个人访问令牌。', + 'profile_create_new_token' => '创建新令牌', + 'profile_create_token' => '创建令牌', + 'profile_create' => '创建', + 'profile_save_changes' => '保存更改', + 'profile_whoops' => '很抱歉!', + 'profile_something_wrong' => '发生错误!', + 'profile_try_again' => '发生错误,请稍后再试。', + 'amounts' => '金额', + 'multi_account_warning_unknown' => '根据您创建的交易类型,后续拆分的来源和/或目标账户可能被交易的首笔拆分的配置所覆盖。', + 'multi_account_warning_withdrawal' => '请注意,后续拆分的来源账户将会被支出的首笔拆分的配置所覆盖。', + 'multi_account_warning_deposit' => '请注意,后续拆分的目标账户将会被收入的首笔拆分的配置所覆盖。', + 'multi_account_warning_transfer' => '请注意,后续拆分的来源和目标账户将会被转账的首笔拆分的配置所覆盖。', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1580,399 +1586,399 @@ return [ */ // export data: - 'export_data_title' => '从 Firefly III 导出数据', - 'export_data_menu' => '导出数据', - 'export_data_bc' => '从 Firefly III 导出数据', - 'export_data_main_title' => '从 Firefly III 导出数据', - 'export_data_expl' => '此链接允许您从 Firefly III 导出所有交易和元数据。请查看帮助 (右上角的问号 (?) 图标) 获取更多有关信息。', - 'export_data_all_transactions' => '导出所有交易', - 'export_data_advanced_expl' => '如果您需要更高级或特殊类型的导出功能,请阅读如何使用命令行 php artisan help firefly-iii:export-data 的帮助内容。', + 'export_data_title' => '从 Firefly III 导出数据', + 'export_data_menu' => '导出数据', + 'export_data_bc' => '从 Firefly III 导出数据', + 'export_data_main_title' => '从 Firefly III 导出数据', + 'export_data_expl' => '此链接允许您从 Firefly III 导出所有交易和元数据。请查看帮助 (右上角的问号 (?) 图标) 获取更多有关信息。', + 'export_data_all_transactions' => '导出所有交易', + 'export_data_advanced_expl' => '如果您需要更高级或特殊类型的导出功能,请阅读如何使用命令行 php artisan help firefly-iii:export-data 的帮助内容。', // attachments - 'nr_of_attachments' => '1个附件|:count个附件', - 'attachments' => '附件', - 'edit_attachment' => '编辑附件“:name”', - 'update_attachment' => '更新附件', - 'delete_attachment' => '删除附件“:name”', - 'attachment_deleted' => '已删除附件“:name”', - 'liabilities_deleted' => '已删除债务 ":name"', - 'attachment_updated' => '已更新附件“:name”', - 'upload_max_file_size' => '最大文件尺寸::size', - 'list_all_attachments' => '附件列表', + 'nr_of_attachments' => '1个附件|:count个附件', + 'attachments' => '附件', + 'edit_attachment' => '编辑附件“:name”', + 'update_attachment' => '更新附件', + 'delete_attachment' => '删除附件“:name”', + 'attachment_deleted' => '已删除附件“:name”', + 'liabilities_deleted' => '已删除债务 ":name"', + 'attachment_updated' => '已更新附件“:name”', + 'upload_max_file_size' => '最大文件尺寸::size', + 'list_all_attachments' => '附件列表', // transaction index - 'is_reconciled_fields_dropped' => '这笔交易已经对账,您无法更新账户,也无法更新金额。', - 'title_expenses' => '支出', - 'title_withdrawal' => '支出', - 'title_revenue' => '收入', - 'title_deposit' => '收入', - 'title_transfer' => '转账', - 'title_transfers' => '转账', - 'submission_options' => '提交选项', - 'apply_rules_checkbox' => '应用规则', - 'fire_webhooks_checkbox' => '触发 webhook', - 'select_source_account' => '请选择或输入一个有效的源帐户名称', - 'select_dest_account' => '请选择或输入一个有效的目标帐户名称', + 'is_reconciled_fields_dropped' => '这笔交易已经对账,您无法更新账户,也无法更新金额。', + 'title_expenses' => '支出', + 'title_withdrawal' => '支出', + 'title_revenue' => '收入', + 'title_deposit' => '收入', + 'title_transfer' => '转账', + 'title_transfers' => '转账', + 'submission_options' => '提交选项', + 'apply_rules_checkbox' => '应用规则', + 'fire_webhooks_checkbox' => '触发 webhook', + 'select_source_account' => '请选择或输入一个有效的源帐户名称', + 'select_dest_account' => '请选择或输入一个有效的目标帐户名称', // convert stuff: - 'convert_is_already_type_Withdrawal' => '此交易已经为支出', - 'convert_is_already_type_Deposit' => '此交易已经为收入', - 'convert_is_already_type_Transfer' => '此交易已经为转账', - 'convert_to_Withdrawal' => '转换“:description”为支出', - 'convert_to_Deposit' => '转换“:description”为收入', - 'convert_to_Transfer' => '转换“:description”为转账', - 'convert_options_WithdrawalDeposit' => '将支出转换为收入', - 'convert_options_WithdrawalTransfer' => '将支出转换为转账', - 'convert_options_DepositTransfer' => '将收入转换为转账', - 'convert_options_DepositWithdrawal' => '将收入转换为支出', - 'convert_options_TransferWithdrawal' => '将转账转换为支出', - 'convert_options_TransferDeposit' => '将转账转换为收入', - 'convert_Withdrawal_to_deposit' => '将此支出转换为收入', - 'convert_Withdrawal_to_transfer' => '将此支出转换为转账', - 'convert_Deposit_to_withdrawal' => '将此收入转换为支出', - 'convert_Deposit_to_transfer' => '将此收入转换为转账', - 'convert_Transfer_to_deposit' => '将此转账转换为收入', - 'convert_Transfer_to_withdrawal' => '将此转账转换为支出', - 'convert_please_set_revenue_source' => '请选择资金来源的收入账户', - 'convert_please_set_asset_destination' => '请选择资金流向的资产账户', - 'convert_please_set_expense_destination' => '请选择资金流向的支出账户', - 'convert_please_set_asset_source' => '请选择资金来源的资产账户', - 'convert_expl_w_d' => '将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。|将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。', - 'convert_expl_w_t' => '将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。|将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。', - 'convert_expl_d_w' => '将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。|将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。', - 'convert_expl_d_t' => '将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。|将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。', - 'convert_expl_t_w' => '将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。|将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。', - 'convert_expl_t_d' => '将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。|将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。', - 'convert_select_sources' => '要完成转换,请在下方设置新的来源账户。|要完成转换,请在下方设置新的来源账户。', - 'convert_select_destinations' => '要完成转换,请在下方设置新的目标账户。|要完成转换,请在下方设置新的目标账户。', - 'converted_to_Withdrawal' => '此交易已被转换为支出', - 'converted_to_Deposit' => '此交易已被转换为收入', - 'converted_to_Transfer' => '此交易已被转换为转账', - 'invalid_convert_selection' => '您选择的账户已用于此交易或不存在。', - 'source_or_dest_invalid' => '找不到正确的交易细节,无法转换。', - 'convert_to_withdrawal' => '转换为支出', - 'convert_to_deposit' => '转换为收入', - 'convert_to_transfer' => '转换为转账', + 'convert_is_already_type_Withdrawal' => '此交易已经为支出', + 'convert_is_already_type_Deposit' => '此交易已经为收入', + 'convert_is_already_type_Transfer' => '此交易已经为转账', + 'convert_to_Withdrawal' => '转换“:description”为支出', + 'convert_to_Deposit' => '转换“:description”为收入', + 'convert_to_Transfer' => '转换“:description”为转账', + 'convert_options_WithdrawalDeposit' => '将支出转换为收入', + 'convert_options_WithdrawalTransfer' => '将支出转换为转账', + 'convert_options_DepositTransfer' => '将收入转换为转账', + 'convert_options_DepositWithdrawal' => '将收入转换为支出', + 'convert_options_TransferWithdrawal' => '将转账转换为支出', + 'convert_options_TransferDeposit' => '将转账转换为收入', + 'convert_Withdrawal_to_deposit' => '将此支出转换为收入', + 'convert_Withdrawal_to_transfer' => '将此支出转换为转账', + 'convert_Deposit_to_withdrawal' => '将此收入转换为支出', + 'convert_Deposit_to_transfer' => '将此收入转换为转账', + 'convert_Transfer_to_deposit' => '将此转账转换为收入', + 'convert_Transfer_to_withdrawal' => '将此转账转换为支出', + 'convert_please_set_revenue_source' => '请选择资金来源的收入账户', + 'convert_please_set_asset_destination' => '请选择资金流向的资产账户', + 'convert_please_set_expense_destination' => '请选择资金流向的支出账户', + 'convert_please_set_asset_source' => '请选择资金来源的资产账户', + 'convert_expl_w_d' => '将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。|将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。', + 'convert_expl_w_t' => '将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。|将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。', + 'convert_expl_d_w' => '将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。|将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。', + 'convert_expl_d_t' => '将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。|将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。', + 'convert_expl_t_w' => '将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。|将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。', + 'convert_expl_t_d' => '将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。|将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。', + 'convert_select_sources' => '要完成转换,请在下方设置新的来源账户。|要完成转换,请在下方设置新的来源账户。', + 'convert_select_destinations' => '要完成转换,请在下方设置新的目标账户。|要完成转换,请在下方设置新的目标账户。', + 'converted_to_Withdrawal' => '此交易已被转换为支出', + 'converted_to_Deposit' => '此交易已被转换为收入', + 'converted_to_Transfer' => '此交易已被转换为转账', + 'invalid_convert_selection' => '您选择的账户已用于此交易或不存在。', + 'source_or_dest_invalid' => '找不到正确的交易细节,无法转换。', + 'convert_to_withdrawal' => '转换为支出', + 'convert_to_deposit' => '转换为收入', + 'convert_to_transfer' => '转换为转账', // create new stuff: - 'create_new_withdrawal' => '创建新支出', - 'create_new_deposit' => '创建新收入', - 'create_new_transfer' => '创建新转账', - 'create_new_asset' => '创建新资产账户', - 'create_new_liabilities' => '创建新债务', - 'create_new_expense' => '创建新支出账户', - 'create_new_revenue' => '创建新收入账户', - 'create_new_piggy_bank' => '创建新存钱罐', - 'create_new_bill' => '创建新账单', - 'create_new_subscription' => '创建新订阅', - 'create_new_rule' => '创建新规则', + 'create_new_withdrawal' => '创建新支出', + 'create_new_deposit' => '创建新收入', + 'create_new_transfer' => '创建新转账', + 'create_new_asset' => '创建新资产账户', + 'create_new_liabilities' => '创建新债务', + 'create_new_expense' => '创建新支出账户', + 'create_new_revenue' => '创建新收入账户', + 'create_new_piggy_bank' => '创建新存钱罐', + 'create_new_bill' => '创建新账单', + 'create_new_subscription' => '创建新订阅', + 'create_new_rule' => '创建新规则', // currencies: - 'create_currency' => '创建新货币', - 'store_currency' => '保存新货币', - 'update_currency' => '更新货币', - 'new_default_currency' => '当前默认货币为“:name”', - 'default_currency_failed' => '无法将“:name”设置为默认货币,请检查日志。', - 'cannot_delete_currency' => '因为仍在使用中,无法删除 :name 。', - 'cannot_delete_fallback_currency' => ':name 是系统默认货币,无法删除', - 'cannot_disable_currency_journals' => '无法禁用 :name,因为仍有交易在使用。', - 'cannot_disable_currency_last_left' => '无法禁用 :name,因为它是目前唯一启用的货币。', - 'cannot_disable_currency_account_meta' => '无法禁用 :name,因为它已被用于资产账户。', - 'cannot_disable_currency_bills' => '无法禁用 :name,因为它仍在账单中使用。', - 'cannot_disable_currency_recurring' => '无法禁用 :name,定期交易正在使用此货币', - 'cannot_disable_currency_available_budgets' => '无法禁用 :name,因为它仍在预算中被使用。', - 'cannot_disable_currency_budget_limits' => '无法禁用 :name,因为它仍在预算中被使用。', - 'cannot_disable_currency_current_default' => '无法禁用 :name ,因为它是当前的默认货币。', - 'cannot_disable_currency_system_fallback' => '无法禁用 :name ,因为它是系统默认货币。', - 'disable_EUR_side_effects' => '欧元是此系统的紧急备用货币。禁用它可能会产生意外的副作用,并可能使您的修改无效。', - 'deleted_currency' => ':name 货币已删除', - 'created_currency' => '货币 :name 已创建', - 'could_not_store_currency' => '无法保存新货币。', - 'updated_currency' => ':name 货币已更新', - 'ask_site_owner' => '请联系管理员 :owner 新增、删除或编辑货币。', - 'currencies_intro' => 'Firefly III 支持多种货币,您可在此设置并启用。', - 'make_default_currency' => '设为默认', - 'default_currency' => '默认', - 'currency_is_disabled' => '已停用', - 'enable_currency' => '启用', - 'disable_currency' => '停用', - 'currencies_default_disabled' => '大多数的货币均默认为停用,若需使用,请先启用。', - 'currency_is_now_enabled' => '货币 ":name" 已被启用', - 'could_not_enable_currency' => '无法启用货币“:name”,请检查日志。', - 'currency_is_now_disabled' => '货币 ":name" 已被停用', - 'could_not_disable_currency' => '无法禁用货币“:name”,可能仍在使用?', + 'create_currency' => '创建新货币', + 'store_currency' => '保存新货币', + 'update_currency' => '更新货币', + 'new_default_currency' => '当前默认货币为“:name”', + 'default_currency_failed' => '无法将“:name”设置为默认货币,请检查日志。', + 'cannot_delete_currency' => '因为仍在使用中,无法删除 :name 。', + 'cannot_delete_fallback_currency' => ':name 是系统默认货币,无法删除', + 'cannot_disable_currency_journals' => '无法禁用 :name,因为仍有交易在使用。', + 'cannot_disable_currency_last_left' => '无法禁用 :name,因为它是目前唯一启用的货币。', + 'cannot_disable_currency_account_meta' => '无法禁用 :name,因为它已被用于资产账户。', + 'cannot_disable_currency_bills' => '无法禁用 :name,因为它仍在账单中使用。', + 'cannot_disable_currency_recurring' => '无法禁用 :name,定期交易正在使用此货币', + 'cannot_disable_currency_available_budgets' => '无法禁用 :name,因为它仍在预算中被使用。', + 'cannot_disable_currency_budget_limits' => '无法禁用 :name,因为它仍在预算中被使用。', + 'cannot_disable_currency_current_default' => '无法禁用 :name ,因为它是当前的默认货币。', + 'cannot_disable_currency_system_fallback' => '无法禁用 :name ,因为它是系统默认货币。', + 'disable_EUR_side_effects' => '欧元是此系统的紧急备用货币。禁用它可能会产生意外的副作用,并可能使您的修改无效。', + 'deleted_currency' => ':name 货币已删除', + 'created_currency' => '货币 :name 已创建', + 'could_not_store_currency' => '无法保存新货币。', + 'updated_currency' => ':name 货币已更新', + 'ask_site_owner' => '请联系管理员 :owner 新增、删除或编辑货币。', + 'currencies_intro' => 'Firefly III 支持多种货币,您可在此设置并启用。', + 'make_default_currency' => '设为默认', + 'default_currency' => '默认', + 'currency_is_disabled' => '已停用', + 'enable_currency' => '启用', + 'disable_currency' => '停用', + 'currencies_default_disabled' => '大多数的货币均默认为停用,若需使用,请先启用。', + 'currency_is_now_enabled' => '货币 ":name" 已被启用', + 'could_not_enable_currency' => '无法启用货币“:name”,请检查日志。', + 'currency_is_now_disabled' => '货币 ":name" 已被停用', + 'could_not_disable_currency' => '无法禁用货币“:name”,可能仍在使用?', // forms: - 'mandatoryFields' => '必填字段', - 'optionalFields' => '选填字段', - 'options' => '选项', + 'mandatoryFields' => '必填字段', + 'optionalFields' => '选填字段', + 'options' => '选项', // budgets: - 'daily_budgets' => '每日预算', - 'weekly_budgets' => '每周预算', - 'monthly_budgets' => '每月预算', - 'quarterly_budgets' => '每季度预算', - 'half_year_budgets' => '每半年预算', - 'yearly_budgets' => '每年预算', - 'other_budgets' => '自定义区间预算', - 'budget_limit_not_in_range' => '此金额应用于 :start 至 :end:', - 'total_available_budget' => '可用预算总额 (:start – :end)', - 'total_available_budget_in_currency' => '可用预算总额 (:currency)', - 'see_below' => '见下方', - 'create_new_budget' => '创建新预算', - 'store_new_budget' => '保存新预算', - 'stored_new_budget' => '已保存新预算“:name”', - 'available_between' => ':start – :end 可用', - 'transactionsWithoutBudget' => '无预算支出', - 'transactions_no_budget' => ':start – :end 的无预算支出', - 'spent_between' => ':start – :end 的支出', - 'spent_between_left' => '在 :start 和 :end之间消耗 :spent ,剩下 :left。', - 'set_available_amount' => '设置可用金额', - 'update_available_amount' => '更新可用金额', - 'ab_basic_modal_explain' => '使用此表单来指定您预期在指定周期内的预算总额 (:currency)。', - 'createBudget' => '新预算', - 'invalid_currency' => '这是一个无效的货币', - 'invalid_amount' => '请输入金额', - 'set_ab' => '可用预算金额已设置', - 'updated_ab' => '可用预算金额已更新', - 'deleted_ab' => '可用预算金额已删除', - 'deleted_bl' => '预算金额已移除', - 'alt_currency_ab_create' => '以其他货币为单位设置可用预算', - 'bl_create_btn' => '以其他货币为单位设置预算', - 'inactiveBudgets' => '已停用预算', - 'without_budget_between' => ':start – :end 的无预算交易', - 'delete_budget' => '删除预算 ":name"', - 'deleted_budget' => '已删除预算 ":name"', - 'edit_budget' => '编辑预算 ":name"', - 'updated_budget' => '预算 ":name" 已更新', - 'update_amount' => '更新金额', - 'update_budget' => '更新预算', - 'update_budget_amount_range' => '更新 (预期) :start – :end 的可用金额', - 'set_budget_limit_title' => '为预算“:budget"设置 :start – :end 的预算金额', - 'set_budget_limit' => '设置预算金额', - 'budget_period_navigator' => '周期导航', - 'info_on_available_amount' => '我有甚麽可用?', - 'available_amount_indication' => '使用这些金额以获得您总预算可能为何的指标', - 'suggested' => '建议', - 'average_between' => ':start – :end 的平均值', - 'transferred_in' => '转账 (转入)', - 'transferred_away' => '转账 (转出)', - 'auto_budget_none' => '无自动预算', - 'auto_budget_reset' => '设置每个周期的固定金额', - 'auto_budget_rollover' => '每个周期添加金额', - 'auto_budget_adjusted' => '每周期增加一个金额并纠正超支', - 'auto_budget_period_daily' => '每日', - 'auto_budget_period_weekly' => '每周', - 'auto_budget_period_monthly' => '每月', - 'auto_budget_period_quarterly' => '每季度', - 'auto_budget_period_half_year' => '每半年', - 'auto_budget_period_yearly' => '每年', - 'auto_budget_help' => '您可以在帮助页面了解此功能的更多信息,点击右上角的问号 (?) 图标即可。', - 'auto_budget_reset_icon' => '此预算将周期性设置', - 'auto_budget_rollover_icon' => '此预算的金额将周期性增加', - 'auto_budget_adjusted_icon' => '预算金额将定期增加,并将纠正超支', - 'remove_budgeted_amount' => '移除预算上限 (:currency)', + 'daily_budgets' => '每日预算', + 'weekly_budgets' => '每周预算', + 'monthly_budgets' => '每月预算', + 'quarterly_budgets' => '每季度预算', + 'half_year_budgets' => '每半年预算', + 'yearly_budgets' => '每年预算', + 'other_budgets' => '自定义区间预算', + 'budget_limit_not_in_range' => '此金额应用于 :start 至 :end:', + 'total_available_budget' => '可用预算总额 (:start – :end)', + 'total_available_budget_in_currency' => '可用预算总额 (:currency)', + 'see_below' => '见下方', + 'create_new_budget' => '创建新预算', + 'store_new_budget' => '保存新预算', + 'stored_new_budget' => '已保存新预算“:name”', + 'available_between' => ':start – :end 可用', + 'transactionsWithoutBudget' => '无预算支出', + 'transactions_no_budget' => ':start – :end 的无预算支出', + 'spent_between' => ':start – :end 的支出', + 'spent_between_left' => '在 :start 和 :end之间消耗 :spent ,剩下 :left。', + 'set_available_amount' => '设置可用金额', + 'update_available_amount' => '更新可用金额', + 'ab_basic_modal_explain' => '使用此表单来指定您预期在指定周期内的预算总额 (:currency)。', + 'createBudget' => '新预算', + 'invalid_currency' => '这是一个无效的货币', + 'invalid_amount' => '请输入金额', + 'set_ab' => '可用预算金额已设置', + 'updated_ab' => '可用预算金额已更新', + 'deleted_ab' => '可用预算金额已删除', + 'deleted_bl' => '预算金额已移除', + 'alt_currency_ab_create' => '以其他货币为单位设置可用预算', + 'bl_create_btn' => '以其他货币为单位设置预算', + 'inactiveBudgets' => '已停用预算', + 'without_budget_between' => ':start – :end 的无预算交易', + 'delete_budget' => '删除预算 ":name"', + 'deleted_budget' => '已删除预算 ":name"', + 'edit_budget' => '编辑预算 ":name"', + 'updated_budget' => '预算 ":name" 已更新', + 'update_amount' => '更新金额', + 'update_budget' => '更新预算', + 'update_budget_amount_range' => '更新 (预期) :start – :end 的可用金额', + 'set_budget_limit_title' => '为预算“:budget"设置 :start – :end 的预算金额', + 'set_budget_limit' => '设置预算金额', + 'budget_period_navigator' => '周期导航', + 'info_on_available_amount' => '我有甚麽可用?', + 'available_amount_indication' => '使用这些金额以获得您总预算可能为何的指标', + 'suggested' => '建议', + 'average_between' => ':start – :end 的平均值', + 'transferred_in' => '转账 (转入)', + 'transferred_away' => '转账 (转出)', + 'auto_budget_none' => '无自动预算', + 'auto_budget_reset' => '设置每个周期的固定金额', + 'auto_budget_rollover' => '每个周期添加金额', + 'auto_budget_adjusted' => '每周期增加一个金额并纠正超支', + 'auto_budget_period_daily' => '每日', + 'auto_budget_period_weekly' => '每周', + 'auto_budget_period_monthly' => '每月', + 'auto_budget_period_quarterly' => '每季度', + 'auto_budget_period_half_year' => '每半年', + 'auto_budget_period_yearly' => '每年', + 'auto_budget_help' => '您可以在帮助页面了解此功能的更多信息,点击右上角的问号 (?) 图标即可。', + 'auto_budget_reset_icon' => '此预算将周期性设置', + 'auto_budget_rollover_icon' => '此预算的金额将周期性增加', + 'auto_budget_adjusted_icon' => '预算金额将定期增加,并将纠正超支', + 'remove_budgeted_amount' => '移除预算上限 (:currency)', // bills: - 'subscription' => '订阅', - 'not_expected_period' => '此周期没有预期支付', - 'subscriptions_in_group' => '分组“%{title}”订阅', - 'subscr_expected_x_times' => '此周期预计支付%{amount}%{times}次', - 'not_or_not_yet' => '尚未', - 'visit_bill' => '在Firefly III中访问名为“:name”的账单', - 'match_between_amounts' => '匹配:low至:high交易的账单。', - 'running_again_loss' => '如果与此账单已关联的交易 (不再) 与规则相符,其间的关联可能会丢失。', - 'bill_related_rules' => '与此账单相关的规则', - 'repeats' => '重复', - 'bill_end_date_help' => '可选字段,此账单延续至此日期结束。', - 'bill_extension_date_help' => '可选字段,此账单必须在此日期或之前延续 (或取消)。', - 'bill_end_index_line' => '此账单于 :date 结束', - 'bill_extension_index_line' => '此账单必须在 :date 延续或取消', - 'connected_journals' => '已关联交易', - 'auto_match_on' => '由 Firefly III 自动匹配', - 'auto_match_off' => '未由 Firefly III 自动匹配', - 'next_expected_match' => '预期下次支付', - 'delete_bill' => '删除账单“:name”', - 'deleted_bill' => '已删除账单“:name”', - 'edit_bill' => '编辑账单“:name”', - 'more' => '更多', - 'rescan_old' => '再次于所有交易执行规则', - 'update_bill' => '更新账单', - 'updated_bill' => '已更新账单“:name”', - 'store_new_bill' => '保存新账单', - 'stored_new_bill' => '已保存新账单“:name”', - 'cannot_scan_inactive_bill' => '已停用的账单无法被扫描。', - 'rescanned_bill' => '重新扫描了所有内容,并关联了:count笔交易到账单。|重新扫描了所有内容,并关联了:count笔交易到账单。', - 'average_bill_amount_year' => '平均账单金额 (:year)', - 'average_bill_amount_overall' => '平均账单金额 (全部)', - 'bill_is_active' => '账单为启用状态', - 'bill_expected_between' => ':start – :end 的预期值', - 'bill_will_automatch' => '账单将自动关联至符合的交易', - 'skips_over' => '跳过', - 'bill_store_error' => '保存您的新账单时发生错误,请检查日志文件', - 'list_inactive_rule' => '已停用的规则', - 'bill_edit_rules' => 'Firefly III 将同时尝试编辑关联于该账单的规则。如果您已自行编辑过该规则,Firefly III 将不会修改任何内容。|Firefly III 将同时尝试编辑关联于该账单的:count条规则。如果您已自行编辑过该规则,Firefly III 将不会修改任何内容。', - 'bill_expected_date' => '预期为:date', - 'bill_expected_date_js' => '已延续至{date}', - 'expected_amount' => '(预期) 金额', - 'bill_paid_on' => '支付于 {date}', - 'bill_repeats_weekly' => '每周', - 'bill_repeats_monthly' => '每月', - 'bill_repeats_quarterly' => '每季度', - 'bill_repeats_half-year' => '每半年', - 'bill_repeats_yearly' => '每年', - 'bill_repeats_weekly_other' => '每隔一周', - 'bill_repeats_monthly_other' => '每隔一个月重复', - 'bill_repeats_quarterly_other' => '每隔一季度重复', - 'bill_repeats_half-year_other' => '每年重复', - 'bill_repeats_yearly_other' => '每隔一年重复', - 'bill_repeats_weekly_skip' => '每 {skip} 周重复', - 'bill_repeats_monthly_skip' => '每 {skip} 个月重复', - 'bill_repeats_quarterly_skip' => '每 {skip} 个季度重复', - 'bill_repeats_half-year_skip' => '每 {skip} 半年重复', - 'bill_repeats_yearly_skip' => '每 {skip} 年重复', - 'subscriptions' => '订阅', - 'go_to_subscriptions' => '前往我的订阅', - 'forever' => '永久', - 'extension_date_is' => '延续日期是{date}', + 'subscription' => '订阅', + 'not_expected_period' => '此周期没有预期支付', + 'subscriptions_in_group' => '分组“%{title}”订阅', + 'subscr_expected_x_times' => '此周期预计支付%{amount}%{times}次', + 'not_or_not_yet' => '尚未', + 'visit_bill' => '在Firefly III中访问名为“:name”的账单', + 'match_between_amounts' => '匹配:low至:high交易的账单。', + 'running_again_loss' => '如果与此账单已关联的交易 (不再) 与规则相符,其间的关联可能会丢失。', + 'bill_related_rules' => '与此账单相关的规则', + 'repeats' => '重复', + 'bill_end_date_help' => '可选字段,此账单延续至此日期结束。', + 'bill_extension_date_help' => '可选字段,此账单必须在此日期或之前延续 (或取消)。', + 'bill_end_index_line' => '此账单于 :date 结束', + 'bill_extension_index_line' => '此账单必须在 :date 延续或取消', + 'connected_journals' => '已关联交易', + 'auto_match_on' => '由 Firefly III 自动匹配', + 'auto_match_off' => '未由 Firefly III 自动匹配', + 'next_expected_match' => '预期下次支付', + 'delete_bill' => '删除账单“:name”', + 'deleted_bill' => '已删除账单“:name”', + 'edit_bill' => '编辑账单“:name”', + 'more' => '更多', + 'rescan_old' => '再次于所有交易执行规则', + 'update_bill' => '更新账单', + 'updated_bill' => '已更新账单“:name”', + 'store_new_bill' => '保存新账单', + 'stored_new_bill' => '已保存新账单“:name”', + 'cannot_scan_inactive_bill' => '已停用的账单无法被扫描。', + 'rescanned_bill' => '重新扫描了所有内容,并关联了:count笔交易到账单。|重新扫描了所有内容,并关联了:count笔交易到账单。', + 'average_bill_amount_year' => '平均账单金额 (:year)', + 'average_bill_amount_overall' => '平均账单金额 (全部)', + 'bill_is_active' => '账单为启用状态', + 'bill_expected_between' => ':start – :end 的预期值', + 'bill_will_automatch' => '账单将自动关联至符合的交易', + 'skips_over' => '跳过', + 'bill_store_error' => '保存您的新账单时发生错误,请检查日志文件', + 'list_inactive_rule' => '已停用的规则', + 'bill_edit_rules' => 'Firefly III 将同时尝试编辑关联于该账单的规则。如果您已自行编辑过该规则,Firefly III 将不会修改任何内容。|Firefly III 将同时尝试编辑关联于该账单的:count条规则。如果您已自行编辑过该规则,Firefly III 将不会修改任何内容。', + 'bill_expected_date' => '预期为:date', + 'bill_expected_date_js' => '已延续至{date}', + 'expected_amount' => '(预期) 金额', + 'bill_paid_on' => '支付于 {date}', + 'bill_repeats_weekly' => '每周', + 'bill_repeats_monthly' => '每月', + 'bill_repeats_quarterly' => '每季度', + 'bill_repeats_half-year' => '每半年', + 'bill_repeats_yearly' => '每年', + 'bill_repeats_weekly_other' => '每隔一周', + 'bill_repeats_monthly_other' => '每隔一个月重复', + 'bill_repeats_quarterly_other' => '每隔一季度重复', + 'bill_repeats_half-year_other' => '每年重复', + 'bill_repeats_yearly_other' => '每隔一年重复', + 'bill_repeats_weekly_skip' => '每 {skip} 周重复', + 'bill_repeats_monthly_skip' => '每 {skip} 个月重复', + 'bill_repeats_quarterly_skip' => '每 {skip} 个季度重复', + 'bill_repeats_half-year_skip' => '每 {skip} 半年重复', + 'bill_repeats_yearly_skip' => '每 {skip} 年重复', + 'subscriptions' => '订阅', + 'go_to_subscriptions' => '前往我的订阅', + 'forever' => '永久', + 'extension_date_is' => '延续日期是{date}', // accounts: - 'i_am_owed_amount' => '借款金额', - 'i_owe_amount' => '欠款金额', - 'inactive_account_link' => '您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。|您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。', - 'all_accounts_inactive' => '这些是您的已停用账户。', - 'active_account_link' => '此链接返回到您的已启用账户。', - 'account_missing_transaction' => '账户 #:id (:name) 无法直接显示,因为 Firefly 找不到重定向信息。', - 'cc_monthly_payment_date_help' => '随便选择“年”和“月”,其数据都将被忽略,仅“日”会被使用。', - 'details_for_asset' => '资产账户“:name”的详细信息', - 'details_for_expense' => '支出账户“:name”的详细信息', - 'details_for_revenue' => '收入账户“:name”的详细信息', - 'details_for_cash' => '现金账户“:name”的详细信息', - 'store_new_asset_account' => '保存新资产账户', - 'store_new_expense_account' => '保存新支出账户', - 'store_new_revenue_account' => '保存新收入账户', - 'edit_asset_account' => '编辑资产账户“:name”', - 'edit_expense_account' => '编辑支出账户“:name”', - 'edit_revenue_account' => '编辑收入账户“:name”', - 'delete_asset_account' => '删除资产账户“:name”', - 'delete_expense_account' => '删除支出账户“:name”', - 'delete_revenue_account' => '删除收入账户“:name”', - 'delete_liabilities_account' => '删除债务账户“:name”', - 'asset_deleted' => '已成功删除资产账户“:name”', - 'account_deleted' => '已成功删除账户“:name”', - 'expense_deleted' => '已成功删除支出账户“:name”', - 'revenue_deleted' => '已成功删除收入账户“:name”', - 'update_asset_account' => '更新资产账户', - 'update_undefined_account' => '更新账户', - 'update_liabilities_account' => '更新债务账户', - 'update_expense_account' => '更新支出账户', - 'update_revenue_account' => '更新收入账户', - 'make_new_asset_account' => '创建新资产账户', - 'make_new_expense_account' => '创建新支出账户', - 'make_new_revenue_account' => '创建新收入账户', - 'make_new_liabilities_account' => '创建新债务账户', - 'asset_accounts' => '资产账户', - 'undefined_accounts' => '账户', - 'asset_accounts_inactive' => '资产账户 (已停用)', - 'expense_account' => '支出账户', - 'expense_accounts' => '支出账户', - 'expense_accounts_inactive' => '支出账户 (已停用)', - 'revenue_account' => '收入账户', - 'revenue_accounts' => '收入账户', - 'revenue_accounts_inactive' => '收入账户 (已停用)', - 'cash_accounts' => '现金账户', - 'Cash account' => '现金账户', - 'liabilities_accounts' => '债务账户', - 'liabilities_accounts_inactive' => '债务账户 (已停用)', - 'reconcile_account' => '对账账户“:account”', - 'overview_of_reconcile_modal' => '对帐概览', - 'delete_reconciliation' => '删除对帐', - 'update_reconciliation' => '更新对账', - 'amount_cannot_be_zero' => '金额不能为零', - 'end_of_reconcile_period' => '对帐区间结束: :period', - 'start_of_reconcile_period' => '对帐区间开始: :period', - 'start_balance' => '初始余额', - 'end_balance' => '结束余额', - 'update_balance_dates_instruction' => '将您的银行账单与金额和日期进行匹配,并点击“开始对账”', - 'select_transactions_instruction' => '选择您银行账单上显示的交易。', - 'select_range_and_balance' => '首先验证日期范围与余额,然后点击“开始对账”', - 'date_change_instruction' => '如果您现在变更日期范围,任何进度均将遗失。', - 'update_selection' => '更新所选项', - 'store_reconcile' => '保存对账', - 'reconciliation_transaction' => '对帐交易', - 'Reconciliation' => '对帐', - 'reconciliation' => '对帐', - 'reconcile_options' => '对帐选项', - 'reconcile_range' => '对账范围', - 'start_reconcile' => '开始对帐', - 'cash_account_type' => '现金账户', - 'cash' => '现金', - 'cant_find_redirect_account' => '很抱歉,Firefly III 无法跳转。正在返回主页...', - 'account_type' => '账户类型', - 'save_transactions_by_moving' => '将此交易移动到另一个账户并保存:|将这些交易移动到另一个账户并保存:', - 'save_transactions_by_moving_js' => '没有交易|将该交易转移到另一个账户,以保存该交易。|通过将它们转移到另一个账户保存这些交易。', - 'stored_new_account' => '新账户“:name”已保存!', - 'stored_new_account_js' => '新账户"{name}"已保存', - 'updated_account' => '账户“:name”已更新', - 'updated_account_js' => '已更新账户“”。', - 'credit_card_options' => '信用卡选项', - 'no_transactions_account' => '资产账户“:name”没有交易 (此周期内)。', - 'no_transactions_period' => '无交易 (此周期内)', - 'no_data_for_chart' => '目前还没有足够的信息以生成图表。', - 'select_at_least_one_account' => '选择至少一个资产账户', - 'select_at_least_one_category' => '选择至少一个分类', - 'select_at_least_one_budget' => '选择至少一个预算', - 'select_at_least_one_tag' => '选择至少一个标签', - 'select_at_least_one_expense' => '请选择至少一个支出/收入账户的组合,若无 (即列表为空) 则此报表不可用。', - 'account_default_currency' => '这将是与此账户关连的默认货币。', - 'reconcile_has_more' => '您的 Firefly III 帐目比您的银行有更多的金钱,有多个选项可应处,请选择并按下 "确认对帐"。', - 'reconcile_has_less' => '您的 Firefly III 帐目比您的银行有更少的金钱,有多个选项可应处,请选择并按下 "确认对帐"。', - 'reconcile_is_equal' => '您的 Firefly III 账目和您的银行账单相符,无须处理,点击“确认对账”来确认输入。', - 'create_pos_reconcile_transaction' => '清除已选交易,并从此资产账户增加 :amount 作为修正。', - 'create_neg_reconcile_transaction' => '清除已选交易,并从此资产账户移除 :amount 作为修正。', - 'reconcile_do_nothing' => '删除选择交易,但不校正。', - 'reconcile_go_back' => '您可之后再编辑或删除较正。', - 'must_be_asset_account' => '您只可以对账资产账户。', - 'reconciliation_stored' => '已保存对账', - 'reconciliation_error' => '由于一项错误,该笔交易虽被标记为已对账,但相应的修正却没有保存::error。', - 'reconciliation_transaction_title' => '对账 (:from 至 :to)', - 'sum_of_reconciliation' => '对账总和', - 'reconcile_this_account' => '对账此账户', - 'reconcile' => '对账', - 'show' => '显示', - 'confirm_reconciliation' => '确认对帐', - 'submitted_start_balance' => '初始余额已提交', - 'selected_transactions' => '已选择 (:count) 项交易', - 'already_cleared_transactions' => '以清空交易 (:count)', - 'submitted_end_balance' => '已提交结束余额', - 'initial_balance_description' => '“:account”的初始余额', - 'liability_credit_description' => '“:account”债务信用', - 'interest_calc_' => '未知', - 'interest_calc_daily' => '每日', - 'interest_calc_monthly' => '每月', - 'interest_calc_yearly' => '每年', - 'interest_calc_weekly' => '每周', - 'interest_calc_half-year' => '每半年', - 'interest_calc_quarterly' => '每季度', - 'initial_balance_account' => '初始余额账户“:account”', - 'list_options' => '列表选项', + 'i_am_owed_amount' => '借款金额', + 'i_owe_amount' => '欠款金额', + 'inactive_account_link' => '您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。|您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。', + 'all_accounts_inactive' => '这些是您的已停用账户。', + 'active_account_link' => '此链接返回到您的已启用账户。', + 'account_missing_transaction' => '账户 #:id (:name) 无法直接显示,因为 Firefly 找不到重定向信息。', + 'cc_monthly_payment_date_help' => '随便选择“年”和“月”,其数据都将被忽略,仅“日”会被使用。', + 'details_for_asset' => '资产账户“:name”的详细信息', + 'details_for_expense' => '支出账户“:name”的详细信息', + 'details_for_revenue' => '收入账户“:name”的详细信息', + 'details_for_cash' => '现金账户“:name”的详细信息', + 'store_new_asset_account' => '保存新资产账户', + 'store_new_expense_account' => '保存新支出账户', + 'store_new_revenue_account' => '保存新收入账户', + 'edit_asset_account' => '编辑资产账户“:name”', + 'edit_expense_account' => '编辑支出账户“:name”', + 'edit_revenue_account' => '编辑收入账户“:name”', + 'delete_asset_account' => '删除资产账户“:name”', + 'delete_expense_account' => '删除支出账户“:name”', + 'delete_revenue_account' => '删除收入账户“:name”', + 'delete_liabilities_account' => '删除债务账户“:name”', + 'asset_deleted' => '已成功删除资产账户“:name”', + 'account_deleted' => '已成功删除账户“:name”', + 'expense_deleted' => '已成功删除支出账户“:name”', + 'revenue_deleted' => '已成功删除收入账户“:name”', + 'update_asset_account' => '更新资产账户', + 'update_undefined_account' => '更新账户', + 'update_liabilities_account' => '更新债务账户', + 'update_expense_account' => '更新支出账户', + 'update_revenue_account' => '更新收入账户', + 'make_new_asset_account' => '创建新资产账户', + 'make_new_expense_account' => '创建新支出账户', + 'make_new_revenue_account' => '创建新收入账户', + 'make_new_liabilities_account' => '创建新债务账户', + 'asset_accounts' => '资产账户', + 'undefined_accounts' => '账户', + 'asset_accounts_inactive' => '资产账户 (已停用)', + 'expense_account' => '支出账户', + 'expense_accounts' => '支出账户', + 'expense_accounts_inactive' => '支出账户 (已停用)', + 'revenue_account' => '收入账户', + 'revenue_accounts' => '收入账户', + 'revenue_accounts_inactive' => '收入账户 (已停用)', + 'cash_accounts' => '现金账户', + 'Cash account' => '现金账户', + 'liabilities_accounts' => '债务账户', + 'liabilities_accounts_inactive' => '债务账户 (已停用)', + 'reconcile_account' => '对账账户“:account”', + 'overview_of_reconcile_modal' => '对帐概览', + 'delete_reconciliation' => '删除对帐', + 'update_reconciliation' => '更新对账', + 'amount_cannot_be_zero' => '金额不能为零', + 'end_of_reconcile_period' => '对帐区间结束: :period', + 'start_of_reconcile_period' => '对帐区间开始: :period', + 'start_balance' => '初始余额', + 'end_balance' => '结束余额', + 'update_balance_dates_instruction' => '将您的银行账单与金额和日期进行匹配,并点击“开始对账”', + 'select_transactions_instruction' => '选择您银行账单上显示的交易。', + 'select_range_and_balance' => '首先验证日期范围与余额,然后点击“开始对账”', + 'date_change_instruction' => '如果您现在变更日期范围,任何进度均将遗失。', + 'update_selection' => '更新所选项', + 'store_reconcile' => '保存对账', + 'reconciliation_transaction' => '对帐交易', + 'Reconciliation' => '对帐', + 'reconciliation' => '对帐', + 'reconcile_options' => '对帐选项', + 'reconcile_range' => '对账范围', + 'start_reconcile' => '开始对帐', + 'cash_account_type' => '现金账户', + 'cash' => '现金', + 'cant_find_redirect_account' => '很抱歉,Firefly III 无法跳转。正在返回主页...', + 'account_type' => '账户类型', + 'save_transactions_by_moving' => '将此交易移动到另一个账户并保存:|将这些交易移动到另一个账户并保存:', + 'save_transactions_by_moving_js' => '没有交易|将该交易转移到另一个账户,以保存该交易。|通过将它们转移到另一个账户保存这些交易。', + 'stored_new_account' => '新账户“:name”已保存!', + 'stored_new_account_js' => '新账户"{name}"已保存', + 'updated_account' => '账户“:name”已更新', + 'updated_account_js' => '已更新账户“”。', + 'credit_card_options' => '信用卡选项', + 'no_transactions_account' => '资产账户“:name”没有交易 (此周期内)。', + 'no_transactions_period' => '无交易 (此周期内)', + 'no_data_for_chart' => '目前还没有足够的信息以生成图表。', + 'select_at_least_one_account' => '选择至少一个资产账户', + 'select_at_least_one_category' => '选择至少一个分类', + 'select_at_least_one_budget' => '选择至少一个预算', + 'select_at_least_one_tag' => '选择至少一个标签', + 'select_at_least_one_expense' => '请选择至少一个支出/收入账户的组合,若无 (即列表为空) 则此报表不可用。', + 'account_default_currency' => '这将是与此账户关连的默认货币。', + 'reconcile_has_more' => '您的 Firefly III 帐目比您的银行有更多的金钱,有多个选项可应处,请选择并按下 "确认对帐"。', + 'reconcile_has_less' => '您的 Firefly III 帐目比您的银行有更少的金钱,有多个选项可应处,请选择并按下 "确认对帐"。', + 'reconcile_is_equal' => '您的 Firefly III 账目和您的银行账单相符,无须处理,点击“确认对账”来确认输入。', + 'create_pos_reconcile_transaction' => '清除已选交易,并从此资产账户增加 :amount 作为修正。', + 'create_neg_reconcile_transaction' => '清除已选交易,并从此资产账户移除 :amount 作为修正。', + 'reconcile_do_nothing' => '删除选择交易,但不校正。', + 'reconcile_go_back' => '您可之后再编辑或删除较正。', + 'must_be_asset_account' => '您只可以对账资产账户。', + 'reconciliation_stored' => '已保存对账', + 'reconciliation_error' => '由于一项错误,该笔交易虽被标记为已对账,但相应的修正却没有保存::error。', + 'reconciliation_transaction_title' => '对账 (:from 至 :to)', + 'sum_of_reconciliation' => '对账总和', + 'reconcile_this_account' => '对账此账户', + 'reconcile' => '对账', + 'show' => '显示', + 'confirm_reconciliation' => '确认对帐', + 'submitted_start_balance' => '初始余额已提交', + 'selected_transactions' => '已选择 (:count) 项交易', + 'already_cleared_transactions' => '以清空交易 (:count)', + 'submitted_end_balance' => '已提交结束余额', + 'initial_balance_description' => '“:account”的初始余额', + 'liability_credit_description' => '“:account”债务信用', + 'interest_calc_' => '未知', + 'interest_calc_daily' => '每日', + 'interest_calc_monthly' => '每月', + 'interest_calc_yearly' => '每年', + 'interest_calc_weekly' => '每周', + 'interest_calc_half-year' => '每半年', + 'interest_calc_quarterly' => '每季度', + 'initial_balance_account' => '初始余额账户“:account”', + 'list_options' => '列表选项', // categories: - 'new_category' => '新分类', - 'create_new_category' => '创建新分类', - 'without_category' => '没有分类', - 'update_category' => '更新分类', - 'updated_category' => '已更新分类“:name”', - 'categories' => '分类', - 'edit_category' => '编辑分类 “:name”', - 'no_category' => '(没有分类)', - 'unknown_category_plain' => '没有分类', - 'category' => '分类', - 'delete_category' => '删除分类 “:name”', - 'deleted_category' => '已删除分类 “:name”', - 'store_category' => '保存新分类', - 'stored_category' => '已保存新分类“:name”', - 'without_category_between' => ':start – :end 没有分类', + 'new_category' => '新分类', + 'create_new_category' => '创建新分类', + 'without_category' => '没有分类', + 'update_category' => '更新分类', + 'updated_category' => '已更新分类“:name”', + 'categories' => '分类', + 'edit_category' => '编辑分类 “:name”', + 'no_category' => '(没有分类)', + 'unknown_category_plain' => '没有分类', + 'category' => '分类', + 'delete_category' => '删除分类 “:name”', + 'deleted_category' => '已删除分类 “:name”', + 'store_category' => '保存新分类', + 'stored_category' => '已保存新分类“:name”', + 'without_category_between' => ':start – :end 没有分类', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1986,240 +1992,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => '请等待表单加载', - 'wait_loading_data' => '请等待您的信息加载...', - 'wait_attachments' => '请等待附件上传。', - 'errors_upload' => '上传失败。请检查您的浏览器控制台是否有错误。', - 'amount_foreign_if' => '外币金额(如果有的话)', - 'amount_destination_account' => '目标账户货币金额', - 'edit_transaction_title' => '编辑交易":description"', - 'unreconcile' => '撤销对账', - 'update_withdrawal' => '更新支出', - 'update_deposit' => '更新收入', - 'update_transaction' => '更新交易', - 'update_transfer' => '更新转账', - 'updated_withdrawal' => '已更新支出“:description“', - 'updated_deposit' => '已更新收入“:description”', - 'updated_transfer' => '已更新转账“:description”', - 'no_changes_withdrawal' => '支出“:description”未更改。', - 'no_changes_deposit' => '收入“:description”未更改。', - 'no_changes_transfer' => '转账“:description”未更改。', - 'delete_withdrawal' => '删除支出“:description”', - 'delete_deposit' => '删除收入“:description”', - 'delete_transfer' => '删除转账“:description”', - 'deleted_withdrawal' => '已成功删除支出“:description”', - 'deleted_deposit' => '已成功删除收入“:description”', - 'deleted_transfer' => '已成功删除转账“:description”', - 'deleted_reconciliation' => '成功删除对账交易“:description”', - 'stored_journal' => '成功创建新交易“:description”', - 'stored_journal_js' => '成功创建新交易 "{{description}}"', - 'stored_journal_no_descr' => '成功创建您的新交易', - 'updated_journal_no_descr' => '成功更新您的交易', - 'select_transactions' => '选择交易', - 'rule_group_select_transactions' => '应用“:title”至交易', - 'rule_select_transactions' => '应用“:title”至交易', - 'stop_selection' => '停止选取交易', - 'reconcile_selected' => '对帐', - 'mass_delete_journals' => '删除数个交易', - 'mass_edit_journals' => '编辑数个交易', - 'mass_bulk_journals' => '批次编辑数个交易', - 'mass_bulk_journals_explain' => '此表单允许您在单次更新中修改下列交易的属性。当您修改这里所看到的参数时,表格中的所有交易都将被更新。', - 'part_of_split' => '此交易是某笔拆分交易的一部分。 如果您没有选择所有的拆分,您最终可能只更改了半笔交易。', - 'bulk_set_new_values' => '用下方的输入框设定新值。若空留,则全部会为空值。此外,请注意仅支出会被赋予预算。', - 'no_bulk_category' => '不更新分类', - 'no_bulk_budget' => '不更新预算', - 'no_bulk_tags' => '不更新标签', - 'replace_with_these_tags' => '用这些标签替换', - 'append_these_tags' => '添加这些标签', - 'mass_edit' => '分开编辑所选项', - 'bulk_edit' => '批量编辑所选项', - 'mass_delete' => '删除所选项', - 'cannot_edit_other_fields' => '由于页面空间限制,除了此处所示的字段以外,您无法批量编辑其他字段。若您需要编辑其他字段,请点击链接并依次编辑。', - 'cannot_change_amount_reconciled' => '您不能修改已对账交易的金额。', - 'no_budget' => '(无预算)', - 'no_bill' => '(无账单)', - 'account_per_budget' => '每笔预算的账户', - 'account_per_category' => '每个分类的账户', - 'create_new_object' => '创建', - 'empty' => '(空)', - 'all_other_budgets' => '(所有其他预算)', - 'all_other_accounts' => '(所有其他账户)', - 'expense_per_source_account' => '每个来源账户的支出', - 'expense_per_destination_account' => '每个目标账户的支出', - 'income_per_destination_account' => '每个目标账户的收入', - 'spent_in_specific_category' => '分类“:category”的支出', - 'earned_in_specific_category' => '在 “:category” 中的收入', - 'spent_in_specific_tag' => '标签“:tag”的支出', - 'earned_in_specific_tag' => '标签“:tag”中的收入', - 'income_per_source_account' => '每个来源账户的收入', - 'average_spending_per_destination' => '每个目标账户的平均支出', - 'average_spending_per_source' => '每个来源账户的平均支出', - 'average_earning_per_source' => '每个来源账户的平均收入', - 'average_earning_per_destination' => '每个目标账户的平均收入', - 'account_per_tag' => '每个标签的账户', - 'tag_report_expenses_listed_once' => '支出和收入从未列出两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此列表可能似乎丢失数据,但数额是正确的。', - 'double_report_expenses_charted_once' => '支出和收入从未显示两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此图表可能似乎丢失数据,但数额是正确的。', - 'tag_report_chart_single_tag' => '此图表适用于单一标签。如果交易有多个标签,您可以在其他标签的图表中反映您看到的情况。', - 'tag' => '标签', - 'no_budget_squared' => '(无预算)', - 'perm-delete-many' => '一次删除多个项目可能非常混乱,请谨慎操作。请注意,您可能从这里删掉含有多笔拆分的交易的其中一部分。', - 'mass_deleted_transactions_success' => '已删除 :count 条交易。|已删除 :count 条交易。', - 'mass_edited_transactions_success' => '已更新 :count 条交易。|已更新 :count 条交易。', - 'opt_group_' => '(无账户类型)', - 'opt_group_no_account_type' => '(无账户类型)', - 'opt_group_defaultAsset' => '默认资产账户', - 'opt_group_savingAsset' => '储蓄账户', - 'opt_group_sharedAsset' => '共用资产账户', - 'opt_group_ccAsset' => '信用卡', - 'opt_group_cashWalletAsset' => '现金钱包', - 'opt_group_expense_account' => '支出账户', - 'opt_group_revenue_account' => '收入账户', - 'opt_group_l_Loan' => '债务: 贷款', - 'opt_group_cash_account' => '现金账户', - 'opt_group_l_Debt' => '债务: 欠款', - 'opt_group_l_Mortgage' => '债务: 抵押', - 'opt_group_l_Credit card' => '债务: 信用卡', - 'notes' => '备注', - 'unknown_journal_error' => '无法保存交易,请检查日志文件。', - 'attachment_not_found' => '找不到此附件。', - 'journal_link_bill' => '此交易已与帐单 :name 关联。若要移除关联,取消勾选复选框,使用规则将其与其他账单关联。', - 'transaction_stored_link' => '交易 #{ID} (“{title}”) 已保存。', - 'transaction_new_stored_link' => '交易 #{ID} 已保存。', - 'transaction_updated_link' => '交易 #{ID} (“{title}”) 已更新。', - 'transaction_updated_no_changes' => '交易#{ID}(“{title}”)未收到任何更改。', - 'first_split_decides' => '首笔拆分决定此字段的值', - 'first_split_overrules_source' => '首笔拆分可能覆盖来源账户', - 'first_split_overrules_destination' => '首笔拆分可能覆盖目标账户', - 'spent_x_of_y' => '花费{total}的{amount}', + 'wait_loading_transaction' => '请等待表单加载', + 'wait_loading_data' => '请等待您的信息加载...', + 'wait_attachments' => '请等待附件上传。', + 'errors_upload' => '上传失败。请检查您的浏览器控制台是否有错误。', + 'amount_foreign_if' => '外币金额(如果有的话)', + 'amount_destination_account' => '目标账户货币金额', + 'edit_transaction_title' => '编辑交易":description"', + 'unreconcile' => '撤销对账', + 'update_withdrawal' => '更新支出', + 'update_deposit' => '更新收入', + 'update_transaction' => '更新交易', + 'update_transfer' => '更新转账', + 'updated_withdrawal' => '已更新支出“:description“', + 'updated_deposit' => '已更新收入“:description”', + 'updated_transfer' => '已更新转账“:description”', + 'no_changes_withdrawal' => '支出“:description”未更改。', + 'no_changes_deposit' => '收入“:description”未更改。', + 'no_changes_transfer' => '转账“:description”未更改。', + 'delete_withdrawal' => '删除支出“:description”', + 'delete_deposit' => '删除收入“:description”', + 'delete_transfer' => '删除转账“:description”', + 'deleted_withdrawal' => '已成功删除支出“:description”', + 'deleted_deposit' => '已成功删除收入“:description”', + 'deleted_transfer' => '已成功删除转账“:description”', + 'deleted_reconciliation' => '成功删除对账交易“:description”', + 'stored_journal' => '成功创建新交易“:description”', + 'stored_journal_js' => '成功创建新交易 "{{description}}"', + 'stored_journal_no_descr' => '成功创建您的新交易', + 'updated_journal_no_descr' => '成功更新您的交易', + 'select_transactions' => '选择交易', + 'rule_group_select_transactions' => '应用“:title”至交易', + 'rule_select_transactions' => '应用“:title”至交易', + 'stop_selection' => '停止选取交易', + 'reconcile_selected' => '对帐', + 'mass_delete_journals' => '删除数个交易', + 'mass_edit_journals' => '编辑数个交易', + 'mass_bulk_journals' => '批次编辑数个交易', + 'mass_bulk_journals_explain' => '此表单允许您在单次更新中修改下列交易的属性。当您修改这里所看到的参数时,表格中的所有交易都将被更新。', + 'part_of_split' => '此交易是某笔拆分交易的一部分。 如果您没有选择所有的拆分,您最终可能只更改了半笔交易。', + 'bulk_set_new_values' => '用下方的输入框设定新值。若空留,则全部会为空值。此外,请注意仅支出会被赋予预算。', + 'no_bulk_category' => '不更新分类', + 'no_bulk_budget' => '不更新预算', + 'no_bulk_tags' => '不更新标签', + 'replace_with_these_tags' => '用这些标签替换', + 'append_these_tags' => '添加这些标签', + 'mass_edit' => '分开编辑所选项', + 'bulk_edit' => '批量编辑所选项', + 'mass_delete' => '删除所选项', + 'cannot_edit_other_fields' => '由于页面空间限制,除了此处所示的字段以外,您无法批量编辑其他字段。若您需要编辑其他字段,请点击链接并依次编辑。', + 'cannot_change_amount_reconciled' => '您不能修改已对账交易的金额。', + 'no_budget' => '(无预算)', + 'no_bill' => '(无账单)', + 'account_per_budget' => '每笔预算的账户', + 'account_per_category' => '每个分类的账户', + 'create_new_object' => '创建', + 'empty' => '(空)', + 'all_other_budgets' => '(所有其他预算)', + 'all_other_accounts' => '(所有其他账户)', + 'expense_per_source_account' => '每个来源账户的支出', + 'expense_per_destination_account' => '每个目标账户的支出', + 'income_per_destination_account' => '每个目标账户的收入', + 'spent_in_specific_category' => '分类“:category”的支出', + 'earned_in_specific_category' => '在 “:category” 中的收入', + 'spent_in_specific_tag' => '标签“:tag”的支出', + 'earned_in_specific_tag' => '标签“:tag”中的收入', + 'income_per_source_account' => '每个来源账户的收入', + 'average_spending_per_destination' => '每个目标账户的平均支出', + 'average_spending_per_source' => '每个来源账户的平均支出', + 'average_earning_per_source' => '每个来源账户的平均收入', + 'average_earning_per_destination' => '每个目标账户的平均收入', + 'account_per_tag' => '每个标签的账户', + 'tag_report_expenses_listed_once' => '支出和收入从未列出两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此列表可能似乎丢失数据,但数额是正确的。', + 'double_report_expenses_charted_once' => '支出和收入从未显示两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此图表可能似乎丢失数据,但数额是正确的。', + 'tag_report_chart_single_tag' => '此图表适用于单一标签。如果交易有多个标签,您可以在其他标签的图表中反映您看到的情况。', + 'tag' => '标签', + 'no_budget_squared' => '(无预算)', + 'perm-delete-many' => '一次删除多个项目可能非常混乱,请谨慎操作。请注意,您可能从这里删掉含有多笔拆分的交易的其中一部分。', + 'mass_deleted_transactions_success' => '已删除 :count 条交易。|已删除 :count 条交易。', + 'mass_edited_transactions_success' => '已更新 :count 条交易。|已更新 :count 条交易。', + 'opt_group_' => '(无账户类型)', + 'opt_group_no_account_type' => '(无账户类型)', + 'opt_group_defaultAsset' => '默认资产账户', + 'opt_group_savingAsset' => '储蓄账户', + 'opt_group_sharedAsset' => '共用资产账户', + 'opt_group_ccAsset' => '信用卡', + 'opt_group_cashWalletAsset' => '现金钱包', + 'opt_group_expense_account' => '支出账户', + 'opt_group_revenue_account' => '收入账户', + 'opt_group_l_Loan' => '债务: 贷款', + 'opt_group_cash_account' => '现金账户', + 'opt_group_l_Debt' => '债务: 欠款', + 'opt_group_l_Mortgage' => '债务: 抵押', + 'opt_group_l_Credit card' => '债务: 信用卡', + 'notes' => '备注', + 'unknown_journal_error' => '无法保存交易,请检查日志文件。', + 'attachment_not_found' => '找不到此附件。', + 'journal_link_bill' => '此交易已与帐单 :name 关联。若要移除关联,取消勾选复选框,使用规则将其与其他账单关联。', + 'transaction_stored_link' => '交易 #{ID} (“{title}”) 已保存。', + 'transaction_new_stored_link' => '交易 #{ID} 已保存。', + 'transaction_updated_link' => '交易 #{ID} (“{title}”) 已更新。', + 'transaction_updated_no_changes' => '交易#{ID}(“{title}”)未收到任何更改。', + 'first_split_decides' => '首笔拆分决定此字段的值', + 'first_split_overrules_source' => '首笔拆分可能覆盖来源账户', + 'first_split_overrules_destination' => '首笔拆分可能覆盖目标账户', + 'spent_x_of_y' => '花费{total}的{amount}', // new user: - 'welcome' => '欢迎使用 Firefly III!', - 'submit' => '提交', - 'submission' => '提交', - 'submit_yes_really' => '提交 (我知道我在干什么)', - 'getting_started' => '开始使用', - 'to_get_started' => '很高兴看到您成功安装 Firefly III。要开始使用此工具,请输入您主要使用的的银行名称与支票账户余额。别担心,若您有多个账户,可以稍后添加,此处仅为让 Firefly III 进行初始化设置。', - 'savings_balance_text' => 'Firefly III 会自动为您创建储蓄账户。默认情况下,储蓄账户里没有任何资金。但如果您告诉 Firefly III 相关金额,程序则会按照您的要求进行保存。', - 'finish_up_new_user' => '就到这里了!您可按下 送出 继续,您将被带至 Firefly III 的首页。', - 'stored_new_accounts_new_user' => '太好了!您的新账户已保存。', - 'set_preferred_language' => '若您倾向在 Firefly III 使用其他语言,请于此表示。', - 'language' => '语系', - 'new_savings_account' => ':bank_name 储蓄账户', - 'cash_wallet' => '现金钱包', - 'currency_not_present' => '若您日常使用的货币未列出,请不要担心,您可以在 选项 > 货币 创建您自己的货币。', + 'welcome' => '欢迎使用 Firefly III!', + 'submit' => '提交', + 'submission' => '提交', + 'submit_yes_really' => '提交 (我知道我在干什么)', + 'getting_started' => '开始使用', + 'to_get_started' => '很高兴看到您成功安装 Firefly III。要开始使用此工具,请输入您主要使用的的银行名称与支票账户余额。别担心,若您有多个账户,可以稍后添加,此处仅为让 Firefly III 进行初始化设置。', + 'savings_balance_text' => 'Firefly III 会自动为您创建储蓄账户。默认情况下,储蓄账户里没有任何资金。但如果您告诉 Firefly III 相关金额,程序则会按照您的要求进行保存。', + 'finish_up_new_user' => '就到这里了!您可按下 送出 继续,您将被带至 Firefly III 的首页。', + 'stored_new_accounts_new_user' => '太好了!您的新账户已保存。', + 'set_preferred_language' => '若您倾向在 Firefly III 使用其他语言,请于此表示。', + 'language' => '语系', + 'new_savings_account' => ':bank_name 储蓄账户', + 'cash_wallet' => '现金钱包', + 'currency_not_present' => '若您日常使用的货币未列出,请不要担心,您可以在 选项 > 货币 创建您自己的货币。', // home page: - 'transaction_table_description' => '包含您交易的表格', - 'opposing_account' => '对方账户', - 'yourAccounts' => '您的账户', - 'your_accounts' => '账户概览', - 'category_overview' => '类别概述', - 'expense_overview' => '支出账户概览', - 'revenue_overview' => '收入账户概览', - 'budgetsAndSpending' => '预算与支出', - 'budgets_and_spending' => '预算与支出', - 'go_to_budget' => '转到预算 "{budget}"', - 'go_to_deposits' => '前往收入', - 'go_to_expenses' => '前往支出', - 'savings' => '储蓄', - 'newWithdrawal' => '新支出', - 'newDeposit' => '新收入', - 'newTransfer' => '新转账', - 'bills_to_pay' => '待付账单', - 'per_day' => '每日', - 'left_to_spend_per_day' => '每日剩余支出', - 'bills_paid' => '已付账单', - 'custom_period' => '自定义周期', - 'reset_to_current' => '重置为当前周期', - 'select_period' => '选择周期', + 'transaction_table_description' => '包含您交易的表格', + 'opposing_account' => '对方账户', + 'yourAccounts' => '您的账户', + 'your_accounts' => '账户概览', + 'category_overview' => '类别概述', + 'expense_overview' => '支出账户概览', + 'revenue_overview' => '收入账户概览', + 'budgetsAndSpending' => '预算与支出', + 'budgets_and_spending' => '预算与支出', + 'go_to_budget' => '转到预算 "{budget}"', + 'go_to_deposits' => '前往收入', + 'go_to_expenses' => '前往支出', + 'savings' => '储蓄', + 'newWithdrawal' => '新支出', + 'newDeposit' => '新收入', + 'newTransfer' => '新转账', + 'bills_to_pay' => '待付账单', + 'per_day' => '每日', + 'left_to_spend_per_day' => '每日剩余支出', + 'bills_paid' => '已付账单', + 'custom_period' => '自定义周期', + 'reset_to_current' => '重置为当前周期', + 'select_period' => '选择周期', // menu and titles, should be recycled as often as possible: - 'currency' => '货币', - 'preferences' => '偏好设定', - 'logout' => '退出登录', - 'logout_other_sessions' => '退出所有其他已登录设备', - 'toggleNavigation' => '切换导览', - 'searchPlaceholder' => '搜索…', - 'version' => '版本', - 'dashboard' => '仪表盘', - 'income_and_expense' => '收入与支出', - 'all_money' => '全部资金', - 'unknown_source_plain' => '未知来源账户', - 'unknown_dest_plain' => '未知目标账户', - 'unknown_any_plain' => '未知账户', - 'unknown_budget_plain' => '无预算', - 'available_budget' => '可用预算 ({currency})', - 'currencies' => '货币', - 'activity' => '活动', - 'usage' => '使用情况', - 'accounts' => '账户', - 'Asset account' => '资产账户', - 'Default account' => '资产账户', - 'Expense account' => '支出账户', - 'Revenue account' => '收入账户', - 'Initial balance account' => '初始余额账户', - 'account_type_Asset account' => '资产账户', - 'account_type_Expense account' => '支出账户', - 'account_type_Revenue account' => '收入账户', - 'account_type_Debt' => '欠款', - 'account_type_Loan' => '贷款', - 'account_type_Mortgage' => '抵押', - 'account_type_debt' => '负债', - 'account_type_loan' => '贷款', - 'account_type_mortgage' => '抵押', - 'account_type_Credit card' => '信用卡', - 'credit_card_type_monthlyFull' => '每月全额付款', - 'liability_direction_credit' => '别人欠我这笔钱', - 'liability_direction_debit' => '我欠别人这笔钱', - 'liability_direction_credit_short' => '借款', - 'liability_direction_debit_short' => '欠款', - 'liability_direction__short' => '未知', - 'liability_direction_null_short' => '未知', - 'Liability credit' => '债务信用', - 'budgets' => '预算', - 'tags' => '标签', - 'reports' => '报表', - 'transactions' => '交易', - 'expenses' => '支出', - 'income' => '收入', - 'transfers' => '转账', - 'moneyManagement' => '金钱管理', - 'money_management' => '金钱管理', - 'tools' => '工具', - 'piggyBanks' => '存钱罐', - 'piggy_banks' => '存钱罐', - 'amount_x_of_y' => '{total} 中的 {current}', - 'bills' => '账单', - 'withdrawal' => '支出', - 'opening_balance' => '开户余额', - 'deposit' => '收入', - 'account' => '账户', - 'transfer' => '转账', - 'Withdrawal' => '支出', - 'Deposit' => '收入', - 'Transfer' => '转账', - 'bill' => '账单', - 'yes' => '是', - 'no' => '否', - 'amount' => '金额', - 'overview' => '概览', - 'saveOnAccount' => '存至账户', - 'unknown' => '未知', - 'monthly' => '每月', - 'profile' => '个人档案', - 'errors' => '错误', - 'debt_start_date' => '欠款开始日期', - 'debt_start_amount' => '欠款开始金额', - 'debt_start_amount_help' => '最佳实践是永远将此值设为负,阅读帮助页面 (右上角问号 (?) 图标) 获取更多信息。', - 'interest_period_help' => '此字段纯粹是装饰性的,不会为您进行计算。事实证明,银行非常狡猾,Firefly III 永远无法计算正确。', - 'store_new_liabilities_account' => '保存新债务账户', - 'edit_liabilities_account' => '编辑债务账户“:name”', - 'financial_control' => '财务管控', - 'accounting' => '记账', - 'automation' => '自动化', - 'others' => '其他', - 'classification' => '归类整理', - 'store_transaction' => '保存交易', + 'currency' => '货币', + 'preferences' => '偏好设定', + 'logout' => '退出登录', + 'logout_other_sessions' => '退出所有其他已登录设备', + 'toggleNavigation' => '切换导览', + 'searchPlaceholder' => '搜索…', + 'version' => '版本', + 'dashboard' => '仪表盘', + 'income_and_expense' => '收入与支出', + 'all_money' => '全部资金', + 'unknown_source_plain' => '未知来源账户', + 'unknown_dest_plain' => '未知目标账户', + 'unknown_any_plain' => '未知账户', + 'unknown_budget_plain' => '无预算', + 'available_budget' => '可用预算 ({currency})', + 'currencies' => '货币', + 'activity' => '活动', + 'usage' => '使用情况', + 'accounts' => '账户', + 'Asset account' => '资产账户', + 'Default account' => '资产账户', + 'Expense account' => '支出账户', + 'Revenue account' => '收入账户', + 'Initial balance account' => '初始余额账户', + 'account_type_Asset account' => '资产账户', + 'account_type_Expense account' => '支出账户', + 'account_type_Revenue account' => '收入账户', + 'account_type_Debt' => '欠款', + 'account_type_Loan' => '贷款', + 'account_type_Mortgage' => '抵押', + 'account_type_debt' => '负债', + 'account_type_loan' => '贷款', + 'account_type_mortgage' => '抵押', + 'account_type_Credit card' => '信用卡', + 'credit_card_type_monthlyFull' => '每月全额付款', + 'liability_direction_credit' => '别人欠我这笔钱', + 'liability_direction_debit' => '我欠别人这笔钱', + 'liability_direction_credit_short' => '借款', + 'liability_direction_debit_short' => '欠款', + 'liability_direction__short' => '未知', + 'liability_direction_null_short' => '未知', + 'Liability credit' => '债务信用', + 'budgets' => '预算', + 'tags' => '标签', + 'reports' => '报表', + 'transactions' => '交易', + 'expenses' => '支出', + 'income' => '收入', + 'transfers' => '转账', + 'moneyManagement' => '金钱管理', + 'money_management' => '金钱管理', + 'tools' => '工具', + 'piggyBanks' => '存钱罐', + 'piggy_banks' => '存钱罐', + 'amount_x_of_y' => '{total} 中的 {current}', + 'bills' => '账单', + 'withdrawal' => '支出', + 'opening_balance' => '开户余额', + 'deposit' => '收入', + 'account' => '账户', + 'transfer' => '转账', + 'Withdrawal' => '支出', + 'Deposit' => '收入', + 'Transfer' => '转账', + 'bill' => '账单', + 'yes' => '是', + 'no' => '否', + 'amount' => '金额', + 'overview' => '概览', + 'saveOnAccount' => '存至账户', + 'unknown' => '未知', + 'monthly' => '每月', + 'profile' => '个人档案', + 'errors' => '错误', + 'debt_start_date' => '欠款开始日期', + 'debt_start_amount' => '欠款开始金额', + 'debt_start_amount_help' => '最佳实践是永远将此值设为负,阅读帮助页面 (右上角问号 (?) 图标) 获取更多信息。', + 'interest_period_help' => '此字段纯粹是装饰性的,不会为您进行计算。事实证明,银行非常狡猾,Firefly III 永远无法计算正确。', + 'store_new_liabilities_account' => '保存新债务账户', + 'edit_liabilities_account' => '编辑债务账户“:name”', + 'financial_control' => '财务管控', + 'accounting' => '记账', + 'automation' => '自动化', + 'others' => '其他', + 'classification' => '归类整理', + 'store_transaction' => '保存交易', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2233,109 +2239,109 @@ return [ */ // reports: - 'report_default' => ':start – :end 的默认财务报表', - 'report_audit' => ':start – :end 的交易历史概览', - 'report_category' => ':start – :end 的分类报表', - 'report_double' => ':start – :end 的支出/收入账户报表', - 'report_budget' => ':start – :end 的预算报表', - 'report_tag' => ':start – :end 的标签报表', - 'quick_link_reports' => '快捷链接', - 'quick_link_examples' => '这些是示例链接以帮助您开始使用。点击右上角问号 (?) 图标查看帮助页面,获取所有报表的信息和可以使用的“魔法词”。', - 'quick_link_default_report' => '默认财务报表', - 'quick_link_audit_report' => '交易历史概览', - 'report_this_month_quick' => '当前月份,全部账户', - 'report_last_month_quick' => '上一月份,全部账户', - 'report_this_year_quick' => '当前年份,全部账户', - 'report_this_fiscal_year_quick' => '当前财年,全部账户', - 'report_all_time_quick' => '所有时间,全部账户', - 'reports_can_bookmark' => '提示:可以将报表加入书签。', - 'incomeVsExpenses' => '收入 vs. 支出', - 'accountBalances' => '账户余额', - 'balanceStart' => '此周期起始余额', - 'balanceEnd' => '此周期结束余额', - 'splitByAccount' => '按账户拆分', - 'coveredWithTags' => '以标签涵盖', - 'leftInBudget' => '预算剩余', - 'left_in_debt' => '到期金额', - 'sumOfSums' => '总和', - 'noCategory' => '(没有分类)', - 'notCharged' => '(尚) 未开始', - 'inactive' => '已停用', - 'active' => '启用', - 'difference' => '差异', - 'money_flowing_in' => '流入', - 'money_flowing_out' => '流出', - 'topX' => '前 :number', - 'show_full_list' => '显示完整列表', - 'show_only_top' => '仅显示前 :number', - 'report_type' => '报表类型', - 'report_type_default' => '默认财务报表', - 'report_type_audit' => '交易历史概览 (审计)', - 'report_type_category' => '分类报表', - 'report_type_budget' => '预算报表', - 'report_type_tag' => '标签报表', - 'report_type_double' => '支出/收入账户报表', - 'more_info_help' => '可在帮助页面找到更多关于报表类型的信息,请点击右上角的问号 (?) 图标。', - 'report_included_accounts' => '已包含的账户', - 'report_date_range' => '日期范围', - 'report_preset_ranges' => '预设范围', - 'shared' => '共用', - 'fiscal_year' => '财政年度', - 'income_entry' => ':start – :end 账户“:name”的收入', - 'expense_entry' => ':start – :end 账户“:name”的支出', - 'category_entry' => ':start – :end 分类“:name”的收入', - 'budget_spent_amount' => ':start – :end 预算“:budget”的支出', - 'balance_amount' => ':start – :end 从账户“:account”支付的预算“:budget”的支出', - 'no_audit_activity' => ':start – :end 账户“:account_name”没有任何活动。', - 'audit_end_balance' => '账户“:account_name”在 :end 末的账户余额为::balance', - 'reports_extra_options' => '额外选项', - 'report_has_no_extra_options' => '此报表没有额外选项', - 'reports_submit' => '查看报表', - 'end_after_start_date' => '报表的结束日期必须在开始日期之后。', - 'select_category' => '选择类别', - 'select_budget' => '选择预算', - 'select_tag' => '选择标签', - 'income_per_category' => '每个类别的收入', - 'expense_per_category' => '每个类别的支出', - 'expense_per_budget' => '每个预算的费用', - 'income_per_account' => '每个账户的收入', - 'expense_per_account' => '每个账户的支出', - 'expense_per_tag' => '每个标签的支出', - 'income_per_tag' => '每个标签的收入', - 'include_expense_not_in_budget' => '包含的支出不在所选的预算内', - 'include_expense_not_in_account' => '包含的支出不在所选的账户内', - 'include_expense_not_in_category' => '包含的支出不在所选的份额里内', - 'include_income_not_in_category' => '未列入所选类别的收入', - 'include_income_not_in_account' => '未列入所选账户的收入', - 'include_income_not_in_tags' => '未包含在所选标记中的收入', - 'include_expense_not_in_tags' => '未包含在所选标记中的支出', - 'everything_else' => '其他', - 'income_and_expenses' => '收入与支出', - 'spent_average' => '支出 (平均)', - 'income_average' => '收入 (平均)', - 'transaction_count' => '交易数', - 'average_spending_per_account' => '每个账户的平均支出', - 'average_income_per_account' => '每个账户的平均收入', - 'total' => '总计', - 'description' => '描述', - 'sum_of_period' => '区间内的总和', - 'average_in_period' => '区间平均', - 'no_account_role' => '(无角色)', - 'account_role_defaultAsset' => '默认资产账户', - 'account_role_sharedAsset' => '共用资产账户', - 'account_role_savingAsset' => '储蓄账户', - 'account_role_ccAsset' => '信用卡', - 'account_role_cashWalletAsset' => '现金钱包', - 'budget_chart_click' => '请点击上表中的预算名称查看图表。', - 'category_chart_click' => '请点击上表中的类别名称以查看图表。', - 'in_out_accounts' => '每个组合的收入与支出', - 'in_out_accounts_per_asset' => '收入与支出 (每个资产账户)', - 'in_out_per_category' => '每个分类的收入与支出', - 'out_per_budget' => '每个预算的支出', - 'select_expense_revenue' => '选择支出/收入账户', - 'multi_currency_report_sum' => '由于此列表包括多种货币,您所看到的总和可能无意义。报表会总是以您的默认货币为主。', - 'sum_in_default_currency' => '总额会总是以您的默认货币显示', - 'net_filtered_prefs' => '此图表永远不会包括未勾选“包含于净资产”选项的账户', + 'report_default' => ':start – :end 的默认财务报表', + 'report_audit' => ':start – :end 的交易历史概览', + 'report_category' => ':start – :end 的分类报表', + 'report_double' => ':start – :end 的支出/收入账户报表', + 'report_budget' => ':start – :end 的预算报表', + 'report_tag' => ':start – :end 的标签报表', + 'quick_link_reports' => '快捷链接', + 'quick_link_examples' => '这些是示例链接以帮助您开始使用。点击右上角问号 (?) 图标查看帮助页面,获取所有报表的信息和可以使用的“魔法词”。', + 'quick_link_default_report' => '默认财务报表', + 'quick_link_audit_report' => '交易历史概览', + 'report_this_month_quick' => '当前月份,全部账户', + 'report_last_month_quick' => '上一月份,全部账户', + 'report_this_year_quick' => '当前年份,全部账户', + 'report_this_fiscal_year_quick' => '当前财年,全部账户', + 'report_all_time_quick' => '所有时间,全部账户', + 'reports_can_bookmark' => '提示:可以将报表加入书签。', + 'incomeVsExpenses' => '收入 vs. 支出', + 'accountBalances' => '账户余额', + 'balanceStart' => '此周期起始余额', + 'balanceEnd' => '此周期结束余额', + 'splitByAccount' => '按账户拆分', + 'coveredWithTags' => '以标签涵盖', + 'leftInBudget' => '预算剩余', + 'left_in_debt' => '到期金额', + 'sumOfSums' => '总和', + 'noCategory' => '(没有分类)', + 'notCharged' => '(尚) 未开始', + 'inactive' => '已停用', + 'active' => '启用', + 'difference' => '差异', + 'money_flowing_in' => '流入', + 'money_flowing_out' => '流出', + 'topX' => '前 :number', + 'show_full_list' => '显示完整列表', + 'show_only_top' => '仅显示前 :number', + 'report_type' => '报表类型', + 'report_type_default' => '默认财务报表', + 'report_type_audit' => '交易历史概览 (审计)', + 'report_type_category' => '分类报表', + 'report_type_budget' => '预算报表', + 'report_type_tag' => '标签报表', + 'report_type_double' => '支出/收入账户报表', + 'more_info_help' => '可在帮助页面找到更多关于报表类型的信息,请点击右上角的问号 (?) 图标。', + 'report_included_accounts' => '已包含的账户', + 'report_date_range' => '日期范围', + 'report_preset_ranges' => '预设范围', + 'shared' => '共用', + 'fiscal_year' => '财政年度', + 'income_entry' => ':start – :end 账户“:name”的收入', + 'expense_entry' => ':start – :end 账户“:name”的支出', + 'category_entry' => ':start – :end 分类“:name”的收入', + 'budget_spent_amount' => ':start – :end 预算“:budget”的支出', + 'balance_amount' => ':start – :end 从账户“:account”支付的预算“:budget”的支出', + 'no_audit_activity' => ':start – :end 账户“:account_name”没有任何活动。', + 'audit_end_balance' => '账户“:account_name”在 :end 末的账户余额为::balance', + 'reports_extra_options' => '额外选项', + 'report_has_no_extra_options' => '此报表没有额外选项', + 'reports_submit' => '查看报表', + 'end_after_start_date' => '报表的结束日期必须在开始日期之后。', + 'select_category' => '选择类别', + 'select_budget' => '选择预算', + 'select_tag' => '选择标签', + 'income_per_category' => '每个类别的收入', + 'expense_per_category' => '每个类别的支出', + 'expense_per_budget' => '每个预算的费用', + 'income_per_account' => '每个账户的收入', + 'expense_per_account' => '每个账户的支出', + 'expense_per_tag' => '每个标签的支出', + 'income_per_tag' => '每个标签的收入', + 'include_expense_not_in_budget' => '包含的支出不在所选的预算内', + 'include_expense_not_in_account' => '包含的支出不在所选的账户内', + 'include_expense_not_in_category' => '包含的支出不在所选的份额里内', + 'include_income_not_in_category' => '未列入所选类别的收入', + 'include_income_not_in_account' => '未列入所选账户的收入', + 'include_income_not_in_tags' => '未包含在所选标记中的收入', + 'include_expense_not_in_tags' => '未包含在所选标记中的支出', + 'everything_else' => '其他', + 'income_and_expenses' => '收入与支出', + 'spent_average' => '支出 (平均)', + 'income_average' => '收入 (平均)', + 'transaction_count' => '交易数', + 'average_spending_per_account' => '每个账户的平均支出', + 'average_income_per_account' => '每个账户的平均收入', + 'total' => '总计', + 'description' => '描述', + 'sum_of_period' => '区间内的总和', + 'average_in_period' => '区间平均', + 'no_account_role' => '(无角色)', + 'account_role_defaultAsset' => '默认资产账户', + 'account_role_sharedAsset' => '共用资产账户', + 'account_role_savingAsset' => '储蓄账户', + 'account_role_ccAsset' => '信用卡', + 'account_role_cashWalletAsset' => '现金钱包', + 'budget_chart_click' => '请点击上表中的预算名称查看图表。', + 'category_chart_click' => '请点击上表中的类别名称以查看图表。', + 'in_out_accounts' => '每个组合的收入与支出', + 'in_out_accounts_per_asset' => '收入与支出 (每个资产账户)', + 'in_out_per_category' => '每个分类的收入与支出', + 'out_per_budget' => '每个预算的支出', + 'select_expense_revenue' => '选择支出/收入账户', + 'multi_currency_report_sum' => '由于此列表包括多种货币,您所看到的总和可能无意义。报表会总是以您的默认货币为主。', + 'sum_in_default_currency' => '总额会总是以您的默认货币显示', + 'net_filtered_prefs' => '此图表永远不会包括未勾选“包含于净资产”选项的账户', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2349,95 +2355,95 @@ return [ */ // charts: - 'chart' => '图表', - 'month' => '月', - 'budget' => '预算', - 'spent' => '支出', - 'spent_capped' => '支出 (上限)', - 'spent_in_budget' => '预算内支出', - 'left_to_spend' => '剩余支出', - 'earned' => '收入', - 'overspent' => '超支', - 'left' => '剩余', - 'max-amount' => '最大', - 'min-amount' => '最小金额', - 'journal-amount' => '目前账单条目', - 'name' => '名称', - 'date' => '日期', - 'date_and_time' => '日期和时间', - 'time' => '时间', - 'paid' => '已付款', - 'unpaid' => '未付款', - 'day' => '日', - 'budgeted' => '预算上限', - 'period' => '区间', - 'balance' => '余额', - 'in_out_period' => '本周期流入流出', - 'sum' => '总计', - 'summary' => '概要', - 'average' => '平均', - 'balanceFor' => ':name 的余额', - 'no_tags' => '(无标签)', - 'nothing_found' => '(没有找到)', + 'chart' => '图表', + 'month' => '月', + 'budget' => '预算', + 'spent' => '支出', + 'spent_capped' => '支出 (上限)', + 'spent_in_budget' => '预算内支出', + 'left_to_spend' => '剩余支出', + 'earned' => '收入', + 'overspent' => '超支', + 'left' => '剩余', + 'max-amount' => '最大', + 'min-amount' => '最小金额', + 'journal-amount' => '目前账单条目', + 'name' => '名称', + 'date' => '日期', + 'date_and_time' => '日期和时间', + 'time' => '时间', + 'paid' => '已付款', + 'unpaid' => '未付款', + 'day' => '日', + 'budgeted' => '预算上限', + 'period' => '区间', + 'balance' => '余额', + 'in_out_period' => '本周期流入流出', + 'sum' => '总计', + 'summary' => '概要', + 'average' => '平均', + 'balanceFor' => ':name 的余额', + 'no_tags' => '(无标签)', + 'nothing_found' => '(没有找到)', // piggy banks: - 'event_history' => '事件历史', - 'add_money_to_piggy' => '存入存钱罐 “:name”', - 'piggy_bank' => '存钱罐', - 'new_piggy_bank' => '新存钱罐', - 'store_piggy_bank' => '保存新存钱罐', - 'stored_piggy_bank' => '保存新存钱罐“:name”', - 'account_status' => '账户状态', - 'left_for_piggy_banks' => '可用于存钱罐', - 'sum_of_piggy_banks' => '存钱罐总金额', - 'saved_so_far' => '已存金额', - 'left_to_save' => '剩余金额', - 'suggested_amount' => '建议每月储蓄金额', - 'add_money_to_piggy_title' => '存至存钱罐 “:name”', - 'remove_money_from_piggy_title' => '自存钱罐 “:name” 中取出', - 'add' => '新增', - 'no_money_for_piggy' => '您已没有钱可放至存钱罐', - 'suggested_savings_per_month' => '每月建议金额', + 'event_history' => '事件历史', + 'add_money_to_piggy' => '存入存钱罐 “:name”', + 'piggy_bank' => '存钱罐', + 'new_piggy_bank' => '新存钱罐', + 'store_piggy_bank' => '保存新存钱罐', + 'stored_piggy_bank' => '保存新存钱罐“:name”', + 'account_status' => '账户状态', + 'left_for_piggy_banks' => '可用于存钱罐', + 'sum_of_piggy_banks' => '存钱罐总金额', + 'saved_so_far' => '已存金额', + 'left_to_save' => '剩余金额', + 'suggested_amount' => '建议每月储蓄金额', + 'add_money_to_piggy_title' => '存至存钱罐 “:name”', + 'remove_money_from_piggy_title' => '自存钱罐 “:name” 中取出', + 'add' => '新增', + 'no_money_for_piggy' => '您已没有钱可放至存钱罐', + 'suggested_savings_per_month' => '每月建议金额', - 'remove' => '移除', - 'max_amount_add' => '可以增加的最大金额为', - 'max_amount_remove' => '所能移除之最大金额为', - 'update_piggy_button' => '更新存钱罐', - 'update_piggy_title' => '更新存钱罐“:name”', - 'updated_piggy_bank' => '已更新存钱罐“:name”', - 'details' => '详情', - 'events' => '事件', - 'target_amount' => '目标金额', - 'start_date' => '开始日期', - 'no_start_date' => '无开始日期', - 'target_date' => '目标日期', - 'no_target_date' => '无目标日期', - 'table' => '表格', - 'delete_piggy_bank' => '删除存钱罐 ":name"', - 'cannot_add_amount_piggy' => '无法增加 :amount 至 “:name”。', - 'cannot_remove_from_piggy' => '无法自 “:name” 移除 :amount。', - 'deleted_piggy_bank' => '删除存钱罐 ":name"', - 'added_amount_to_piggy' => '已新增 :amount 至 “:name”', - 'removed_amount_from_piggy' => '已自 “:name” 移除 :amount', - 'piggy_events' => '相关的存钱罐', + 'remove' => '移除', + 'max_amount_add' => '可以增加的最大金额为', + 'max_amount_remove' => '所能移除之最大金额为', + 'update_piggy_button' => '更新存钱罐', + 'update_piggy_title' => '更新存钱罐“:name”', + 'updated_piggy_bank' => '已更新存钱罐“:name”', + 'details' => '详情', + 'events' => '事件', + 'target_amount' => '目标金额', + 'start_date' => '开始日期', + 'no_start_date' => '无开始日期', + 'target_date' => '目标日期', + 'no_target_date' => '无目标日期', + 'table' => '表格', + 'delete_piggy_bank' => '删除存钱罐 ":name"', + 'cannot_add_amount_piggy' => '无法增加 :amount 至 “:name”。', + 'cannot_remove_from_piggy' => '无法自 “:name” 移除 :amount。', + 'deleted_piggy_bank' => '删除存钱罐 ":name"', + 'added_amount_to_piggy' => '已新增 :amount 至 “:name”', + 'removed_amount_from_piggy' => '已自 “:name” 移除 :amount', + 'piggy_events' => '相关的存钱罐', // tags - 'delete_tag' => '删除标签 ":tag"', - 'deleted_tag' => '已删除标签 ":tag"', - 'new_tag' => '建立新标签', - 'edit_tag' => '编辑标签 ":tag"', - 'updated_tag' => '已更新标签“:tag”', - 'created_tag' => '标签 “:tag” 已被建立!', + 'delete_tag' => '删除标签 ":tag"', + 'deleted_tag' => '已删除标签 ":tag"', + 'new_tag' => '建立新标签', + 'edit_tag' => '编辑标签 ":tag"', + 'updated_tag' => '已更新标签“:tag”', + 'created_tag' => '标签 “:tag” 已被建立!', - 'transaction_journal_information' => '交易信息', - 'transaction_journal_amount' => '金额信息', - 'transaction_journal_meta' => '元信息', - 'transaction_journal_more' => '更多信息', - 'basic_journal_information' => '基础交易信息', - 'transaction_journal_extra' => '额外信息', - 'att_part_of_journal' => '在“:journal”中存储', - 'total_amount' => '总金额', - 'number_of_decimals' => '小数位数', + 'transaction_journal_information' => '交易信息', + 'transaction_journal_amount' => '金额信息', + 'transaction_journal_meta' => '元信息', + 'transaction_journal_more' => '更多信息', + 'basic_journal_information' => '基础交易信息', + 'transaction_journal_extra' => '额外信息', + 'att_part_of_journal' => '在“:journal”中存储', + 'total_amount' => '总金额', + 'number_of_decimals' => '小数位数', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2451,279 +2457,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => '已撤回“:address”的邀请', - 'invite_is_deleted' => '已删除“:address”的邀请', - 'invite_new_user_title' => '邀请新用户', - 'invite_new_user_text' => '作为管理者,您可以邀请用户注册您的Firefly III,他们可以通过您分享的直链注册一个账户。被邀请的用户和邀请链接显示在下表中,您可以自由分享邀请链接。', - 'invited_user_mail' => '电子邮件地址', - 'invite_user' => '邀请用户', - 'user_is_invited' => '电子邮件地址“:address”已被邀请到 Fifrefly III', - 'administration' => '管理', - 'system_settings' => '系统设置', - 'code_already_used' => '邀请码已使用', - 'user_administration' => '用户管理', - 'list_all_users' => '所有用户', - 'all_users' => '所有用户', - 'instance_configuration' => '设置', - 'firefly_instance_configuration' => 'Firefly III 设置', - 'setting_single_user_mode' => '单用户模式', - 'setting_single_user_mode_explain' => '默认情况下,Firefly III 只接受一 (1) 次来自您自己的注册请求。这是一项安全防护措施,若没有您的批准,其他人将无法使用您的站点,所有的注册请求都将被拒绝。当您取消选中此复选框后,若站点可以访问 (站点接入外网),则其他人也可以使用您的站点。', - 'store_configuration' => '保存配置', - 'single_user_administration' => '管理用户 :email', - 'edit_user' => '编辑用户 :email', - 'hidden_fields_preferences' => '您可以在偏好设定中启用更多交易选项。', - 'user_data_information' => '用户数据', - 'user_information' => '用户信息', - 'total_size' => '总大小', - 'budget_or_budgets' => ':count 笔预算|:count 笔预算', - 'budgets_with_limits' => ':count 笔预算有上限|:count 笔预算有上限', - 'nr_of_rules_in_total_groups' => ':count_groups规则组中,包含:count_rules条规则', - 'tag_or_tags' => ':count 个标签|:count 个标签', - 'configuration_updated' => '已更新配置', - 'setting_is_demo_site' => '演示网站', - 'setting_is_demo_site_explain' => '若您勾选此选项,此安装将会以展示网站方式运作,会有奇怪的副作用。', - 'block_code_bounced' => '电子邮件被退回', - 'block_code_expired' => '演示账户已过期', - 'no_block_code' => '无封禁理由或用户未被封禁', - 'demo_user_export' => '演示用户不能导出数据', - 'block_code_email_changed' => '用户尚未确认新的电子邮件地址', - 'admin_update_email' => '与个人档案页面相反,用户不会被通知他们的电子邮件地址已变更!', - 'update_user' => '更新用户', - 'updated_user' => '用户资料已更改。', - 'delete_user' => '删除用户 :email', - 'user_deleted' => '用户已被删除', - 'send_test_email' => '发送测试邮件消息', - 'send_test_email_text' => '要查看您的安装是否能够发送电子邮件或发布Slack消息,请按下此按钮。 您在这里不会看到任何错误(如果有的话), 日志文件将显示错误信息。 您可以多次点击这个按钮。这里没有垃圾邮件控制。 消息将发送到 :email 并应该很快到达。', - 'send_message' => '发送消息', - 'send_test_triggered' => '测试已触发,请检查您的收件箱与日志文件。', - 'give_admin_careful' => '被授予管理员权限的用户可以收回您的权限。请千万注意这点。', - 'admin_maintanance_title' => '维护', - 'admin_maintanance_expl' => '用于 Firefly III 维护的漂亮按钮', - 'admin_maintenance_clear_cache' => '清除缓存', - 'admin_notifications' => '管理操作通知', - 'admin_notifications_expl' => '管理员可以启用或禁用以下通知。 如果您也想要通过 Slack 获取这些消息,请设置“incoming Webhook” URL。', - 'admin_notification_check_user_new_reg' => '用户访问到注册后的欢迎消息', - 'admin_notification_check_admin_new_reg' => '管理员获取新用户注册通知', - 'admin_notification_check_new_version' => '有新版本可用', - 'admin_notification_check_invite_created' => '用户被邀请注册 Firefly III', - 'admin_notification_check_invite_redeemed' => '用户邀请已被激活', - 'all_invited_users' => '所有受邀用户', - 'save_notification_settings' => '保存设置', - 'notification_settings_saved' => '通知设置已保存', + 'invite_is_already_redeemed' => '已撤回“:address”的邀请', + 'invite_is_deleted' => '已删除“:address”的邀请', + 'invite_new_user_title' => '邀请新用户', + 'invite_new_user_text' => '作为管理者,您可以邀请用户注册您的Firefly III,他们可以通过您分享的直链注册一个账户。被邀请的用户和邀请链接显示在下表中,您可以自由分享邀请链接。', + 'invited_user_mail' => '电子邮件地址', + 'invite_user' => '邀请用户', + 'user_is_invited' => '电子邮件地址“:address”已被邀请到 Fifrefly III', + 'administration' => '管理', + 'system_settings' => '系统设置', + 'code_already_used' => '邀请码已使用', + 'user_administration' => '用户管理', + 'list_all_users' => '所有用户', + 'all_users' => '所有用户', + 'instance_configuration' => '设置', + 'firefly_instance_configuration' => 'Firefly III 设置', + 'setting_single_user_mode' => '单用户模式', + 'setting_single_user_mode_explain' => '默认情况下,Firefly III 只接受一 (1) 次来自您自己的注册请求。这是一项安全防护措施,若没有您的批准,其他人将无法使用您的站点,所有的注册请求都将被拒绝。当您取消选中此复选框后,若站点可以访问 (站点接入外网),则其他人也可以使用您的站点。', + 'store_configuration' => '保存配置', + 'single_user_administration' => '管理用户 :email', + 'edit_user' => '编辑用户 :email', + 'hidden_fields_preferences' => '您可以在偏好设定中启用更多交易选项。', + 'user_data_information' => '用户数据', + 'user_information' => '用户信息', + 'total_size' => '总大小', + 'budget_or_budgets' => ':count 笔预算|:count 笔预算', + 'budgets_with_limits' => ':count 笔预算有上限|:count 笔预算有上限', + 'nr_of_rules_in_total_groups' => ':count_groups规则组中,包含:count_rules条规则', + 'tag_or_tags' => ':count 个标签|:count 个标签', + 'configuration_updated' => '已更新配置', + 'setting_is_demo_site' => '演示网站', + 'setting_is_demo_site_explain' => '若您勾选此选项,此安装将会以展示网站方式运作,会有奇怪的副作用。', + 'block_code_bounced' => '电子邮件被退回', + 'block_code_expired' => '演示账户已过期', + 'no_block_code' => '无封禁理由或用户未被封禁', + 'demo_user_export' => '演示用户不能导出数据', + 'block_code_email_changed' => '用户尚未确认新的电子邮件地址', + 'admin_update_email' => '与个人档案页面相反,用户不会被通知他们的电子邮件地址已变更!', + 'update_user' => '更新用户', + 'updated_user' => '用户资料已更改。', + 'delete_user' => '删除用户 :email', + 'user_deleted' => '用户已被删除', + 'send_test_email' => '发送测试邮件消息', + 'send_test_email_text' => '要查看您的安装是否能够发送电子邮件或发布Slack消息,请按下此按钮。 您在这里不会看到任何错误(如果有的话), 日志文件将显示错误信息。 您可以多次点击这个按钮。这里没有垃圾邮件控制。 消息将发送到 :email 并应该很快到达。', + 'send_message' => '发送消息', + 'send_test_triggered' => '测试已触发,请检查您的收件箱与日志文件。', + 'give_admin_careful' => '被授予管理员权限的用户可以收回您的权限。请千万注意这点。', + 'admin_maintanance_title' => '维护', + 'admin_maintanance_expl' => '用于 Firefly III 维护的漂亮按钮', + 'admin_maintenance_clear_cache' => '清除缓存', + 'admin_notifications' => '管理操作通知', + 'admin_notifications_expl' => '管理员可以启用或禁用以下通知。 如果您也想要通过 Slack 获取这些消息,请设置“incoming Webhook” URL。', + 'admin_notification_check_user_new_reg' => '用户访问到注册后的欢迎消息', + 'admin_notification_check_admin_new_reg' => '管理员获取新用户注册通知', + 'admin_notification_check_new_version' => '有新版本可用', + 'admin_notification_check_invite_created' => '用户被邀请注册 Firefly III', + 'admin_notification_check_invite_redeemed' => '用户邀请已被激活', + 'all_invited_users' => '所有受邀用户', + 'save_notification_settings' => '保存设置', + 'notification_settings_saved' => '通知设置已保存', - 'split_transaction_title' => '拆分交易的描述', - 'split_transaction_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。', - 'split_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。', - 'you_create_transfer' => '您正在创建一笔转账', - 'you_create_withdrawal' => '您正在创建一笔支出', - 'you_create_deposit' => '您正在创建一笔收入', + 'split_transaction_title' => '拆分交易的描述', + 'split_transaction_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。', + 'split_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。', + 'you_create_transfer' => '您正在创建一笔转账', + 'you_create_withdrawal' => '您正在创建一笔支出', + 'you_create_deposit' => '您正在创建一笔收入', // links - 'journal_link_configuration' => '交易关联配置', - 'create_new_link_type' => '创建新关联类型', - 'store_new_link_type' => '保存新关联类型', - 'update_link_type' => '更新关联类型', - 'edit_link_type' => '编辑关联类型“:name”', - 'updated_link_type' => '更新关联类型“:name”', - 'delete_link_type' => '删除关联类型“:name”', - 'deleted_link_type' => '删除关联类型“:name”', - 'stored_new_link_type' => '保存关联类型“:name”', - 'cannot_edit_link_type' => '无法编辑连结类型 ":name"', - 'link_type_help_name' => '例如“复制”', - 'link_type_help_inward' => '例如“进行复制”', - 'link_type_help_outward' => '例如“的复制来源为”', - 'save_connections_by_moving' => '将此交易关联移动到另一个关联类型并保存:', - 'do_not_save_connection' => '(不保存连接)', - 'link_transaction' => '关联交易', - 'link_to_other_transaction' => '链结此交易至另一笔', - 'select_transaction_to_link' => '选择一笔交易来关联此交易。关联目前尚未在 Firefly III 中使用 (未显示),但开发者已计划在将来进行改动。您可以使用搜索框来用标题或 ID 选择一笔交易。如果您想要添加自定义关联类型,请访问管理页面。', - 'this_transaction' => '这笔交易', - 'transaction' => '交易', - 'comments' => '评论', - 'link_notes' => '任何您希望与关联一起保存的备注。', - 'invalid_link_selection' => '无法关联这些交易', - 'selected_transaction' => '已选交易', - 'journals_linked' => '交易已关联', - 'journals_error_linked' => '这些交易已互相链结', - 'journals_link_to_self' => '您无法将一笔交易关联至此交易本身', - 'journal_links' => '交易关联', - 'this_withdrawal' => '此支出', - 'this_deposit' => '这笔收入', - 'this_transfer' => '此传输', - 'overview_for_link' => '关联类型“:name”概览', - 'source_transaction' => '源交易记录', - 'link_description' => '关联描述', - 'destination_transaction' => '指定的交易', - 'delete_journal_link' => '删除 :source:destination之间的联繫', - 'deleted_link' => '已删除关联', + 'journal_link_configuration' => '交易关联配置', + 'create_new_link_type' => '创建新关联类型', + 'store_new_link_type' => '保存新关联类型', + 'update_link_type' => '更新关联类型', + 'edit_link_type' => '编辑关联类型“:name”', + 'updated_link_type' => '更新关联类型“:name”', + 'delete_link_type' => '删除关联类型“:name”', + 'deleted_link_type' => '删除关联类型“:name”', + 'stored_new_link_type' => '保存关联类型“:name”', + 'cannot_edit_link_type' => '无法编辑连结类型 ":name"', + 'link_type_help_name' => '例如“复制”', + 'link_type_help_inward' => '例如“进行复制”', + 'link_type_help_outward' => '例如“的复制来源为”', + 'save_connections_by_moving' => '将此交易关联移动到另一个关联类型并保存:', + 'do_not_save_connection' => '(不保存连接)', + 'link_transaction' => '关联交易', + 'link_to_other_transaction' => '链结此交易至另一笔', + 'select_transaction_to_link' => '选择一笔交易来关联此交易。关联目前尚未在 Firefly III 中使用 (未显示),但开发者已计划在将来进行改动。您可以使用搜索框来用标题或 ID 选择一笔交易。如果您想要添加自定义关联类型,请访问管理页面。', + 'this_transaction' => '这笔交易', + 'transaction' => '交易', + 'comments' => '评论', + 'link_notes' => '任何您希望与关联一起保存的备注。', + 'invalid_link_selection' => '无法关联这些交易', + 'selected_transaction' => '已选交易', + 'journals_linked' => '交易已关联', + 'journals_error_linked' => '这些交易已互相链结', + 'journals_link_to_self' => '您无法将一笔交易关联至此交易本身', + 'journal_links' => '交易关联', + 'this_withdrawal' => '此支出', + 'this_deposit' => '这笔收入', + 'this_transfer' => '此传输', + 'overview_for_link' => '关联类型“:name”概览', + 'source_transaction' => '源交易记录', + 'link_description' => '关联描述', + 'destination_transaction' => '指定的交易', + 'delete_journal_link' => '删除 :source:destination之间的联繫', + 'deleted_link' => '已删除关联', // link translations: - 'Paid_name' => '已付款', - 'Refund_name' => '退款', - 'Reimbursement_name' => '报销', - 'Related_name' => '相关', - 'relates to_inward' => '关联于', - 'is (partially) refunded by_inward' => '的 (部分) 退款方为', - 'is (partially) paid for by_inward' => '的 (部分) 付款目标为', - 'is (partially) reimbursed by_inward' => '的 (部分) 还款方为', - 'inward_transaction' => '内向交易', - 'outward_transaction' => '外向交易', - 'relates to_outward' => '关联于', - '(partially) refunds_outward' => '(部分) 退款', - '(partially) pays for_outward' => '(部分) 支付', - '(partially) reimburses_outward' => '(部分) 还款', - 'is (partially) refunded by' => '的 (部分) 退款方为', - 'is (partially) paid for by' => '的 (部分) 付款目标为', - 'is (partially) reimbursed by' => '的 (部分) 还款方为', - 'relates to' => '关联于', - '(partially) refunds' => '(部分) 退款', - '(partially) pays for' => '(部分) 支付', - '(partially) reimburses' => '(部分) 还款', + 'Paid_name' => '已付款', + 'Refund_name' => '退款', + 'Reimbursement_name' => '报销', + 'Related_name' => '相关', + 'relates to_inward' => '关联于', + 'is (partially) refunded by_inward' => '的 (部分) 退款方为', + 'is (partially) paid for by_inward' => '的 (部分) 付款目标为', + 'is (partially) reimbursed by_inward' => '的 (部分) 还款方为', + 'inward_transaction' => '内向交易', + 'outward_transaction' => '外向交易', + 'relates to_outward' => '关联于', + '(partially) refunds_outward' => '(部分) 退款', + '(partially) pays for_outward' => '(部分) 支付', + '(partially) reimburses_outward' => '(部分) 还款', + 'is (partially) refunded by' => '的 (部分) 退款方为', + 'is (partially) paid for by' => '的 (部分) 付款目标为', + 'is (partially) reimbursed by' => '的 (部分) 还款方为', + 'relates to' => '关联于', + '(partially) refunds' => '(部分) 退款', + '(partially) pays for' => '(部分) 支付', + '(partially) reimburses' => '(部分) 还款', // split a transaction: - 'splits' => '拆分', - 'add_another_split' => '增加另一笔拆分', - 'cannot_edit_opening_balance' => '您无法编辑一个账户的开户余额。', - 'no_edit_multiple_left' => '您没有选择有效的交易进行编辑。', - 'breadcrumb_convert_group' => '转换交易', - 'convert_invalid_source' => '交易 #%d 的来源信息无效。', - 'convert_invalid_destination' => '交易 #%d 的目标信息无效。', - 'create_another' => '保存后,返回此页面以创建新记录', - 'after_update_create_another' => '更新后,返回此页面继续编辑。', - 'store_as_new' => '保存为新交易而不是更新此交易。', - 'reset_after' => '提交后重置表单', - 'errors_submission' => '您的提交有误,请查看下面输出的错误信息。', - 'errors_submission_v2' => '您提交的内容有误,请检查错误信息: {{errorMessage}}', - 'transaction_expand_split' => '展开拆分', - 'transaction_remove_split' => '移除拆分', - 'transaction_collapse_split' => '折叠拆分', + 'splits' => '拆分', + 'add_another_split' => '增加另一笔拆分', + 'cannot_edit_opening_balance' => '您无法编辑一个账户的开户余额。', + 'no_edit_multiple_left' => '您没有选择有效的交易进行编辑。', + 'breadcrumb_convert_group' => '转换交易', + 'convert_invalid_source' => '交易 #%d 的来源信息无效。', + 'convert_invalid_destination' => '交易 #%d 的目标信息无效。', + 'create_another' => '保存后,返回此页面以创建新记录', + 'after_update_create_another' => '更新后,返回此页面继续编辑。', + 'store_as_new' => '保存为新交易而不是更新此交易。', + 'reset_after' => '提交后重置表单', + 'errors_submission' => '您的提交有误,请查看下面输出的错误信息。', + 'errors_submission_v2' => '您提交的内容有误,请检查错误信息: {{errorMessage}}', + 'transaction_expand_split' => '展开拆分', + 'transaction_remove_split' => '移除拆分', + 'transaction_collapse_split' => '折叠拆分', // object groups - 'default_group_title_name' => '(未分组)', - 'default_group_title_name_plain' => '未分组', + 'default_group_title_name' => '(未分组)', + 'default_group_title_name_plain' => '未分组', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => '创建一个资产账户!', - 'no_accounts_intro_asset' => '您目前还没有资产账户。资产账户是您的主要账户,包括:您的支票账户、储蓄账户、共用账户,甚至信用卡等。', - 'no_accounts_imperative_asset' => '要开始使用 Firefly III,您需要至少一个资产账户。我们现在就来:', - 'no_accounts_create_asset' => '创建资产账户', - 'no_accounts_title_expense' => '创建一个支出账户!', - 'no_accounts_intro_expense' => '您目前还没有支出账户。支出账户用于记录您消费的地方,如商店或超市。', - 'no_accounts_imperative_expense' => '当您创建交易时会自动创建支出账户,但您也可以手动创建,我们现在就来:', - 'no_accounts_create_expense' => '创建支出账户', - 'no_accounts_title_revenue' => '创建一个收入账户!', - 'no_accounts_intro_revenue' => '您目前还没有收入账户。收入账户用于记录向您付款的各方,比如您的雇主。', - 'no_accounts_imperative_revenue' => '当您创建交易时会自动创建收入账户,但您也可以手动创建,我们现在就来:', - 'no_accounts_create_revenue' => '创建收入账户', - 'no_accounts_title_liabilities' => '创建一个债务账户!', - 'no_accounts_intro_liabilities' => '您目前还没有债务账户。债务账户用于注册您的 (学生) 贷款或其他负债。', - 'no_accounts_imperative_liabilities' => '您不用必须使用此功能,但若您要追踪这些东西的话,此功能十分有用。', - 'no_accounts_create_liabilities' => '创建债务账户', - 'no_budgets_title_default' => '创建一笔预算!', - 'no_rules_title_default' => '创建一个规则!', - 'no_budgets_intro_default' => '您目前还没有预算。预算用于将您的支出归为具有逻辑性的组,为您的支出添加一个软性上限。', - 'no_rules_intro_default' => '你还没有创建任何规则。规则是一种强大的自动化功能,可以帮助你处理交易。', - 'no_rules_imperative_default' => '规则可以帮助你更好地管理交易。现在就创建一个吧:', - 'no_budgets_imperative_default' => '预算是财务管理的基本工具,我们现在就来:', - 'no_budgets_create_default' => '创建预算', - 'no_rules_create_default' => '创建规则', - 'no_categories_title_default' => '创建一个分类!', - 'no_categories_intro_default' => '您目前还没有分类。分类用于微调您的交易,并依指定分类标示。', - 'no_categories_imperative_default' => '当您创建交易时会自动创建分类,但您也可以手动创建,我们现在就来:', - 'no_categories_create_default' => '创建分类', - 'no_tags_title_default' => '创建一个标签!', - 'no_tags_intro_default' => '您目前还没有标签。标签用于微调您的交易,并依指定关键字标示。', - 'no_tags_imperative_default' => '当您创建交易时会自动创建标签,但您也可以手动创建,我们现在就来:', - 'no_tags_create_default' => '创建标签', - 'no_transactions_title_withdrawal' => '创建一笔支出!', - 'no_transactions_intro_withdrawal' => '您目前还没有支出,您应该创建支出以开始管理您的财务。', - 'no_transactions_imperative_withdrawal' => '您消费了一些钱吗?那么您应该记下来:', - 'no_transactions_create_withdrawal' => '创建支出', - 'no_transactions_title_deposit' => '创建一些收入!', - 'no_transactions_intro_deposit' => '您目前还没有收入记录,您应该创建收入记录以开始管理您的财务。', - 'no_transactions_imperative_deposit' => '您收到了一些钱吗?那么您应该记下来:', - 'no_transactions_create_deposit' => '创建收入', - 'no_transactions_title_transfers' => '创建一笔转账!', - 'no_transactions_intro_transfers' => '您目前还没有转账。当您在资产账户之间移动资金时,将自动记录为转账。', - 'no_transactions_imperative_transfers' => '您有移动这些钱吗?那么您应该记下来:', - 'no_transactions_create_transfers' => '创建转账', - 'no_piggies_title_default' => '创建一个存钱罐!', - 'no_piggies_intro_default' => '您目前还没有存钱罐,您可以创建存钱罐来划分您的储蓄,并追踪您存钱的目标。', - 'no_piggies_imperative_default' => '您有想要为之攒钱的东西吗?创建一个存钱罐然后开始追踪:', - 'no_piggies_create_default' => '创建新存钱罐', - 'no_bills_title_default' => '创建一笔账单!', - 'no_bills_intro_default' => '您目前还没有账单,您可以创建账单以追踪您的日常支出,比如房租或保险。', - 'no_bills_imperative_default' => '您有这样的常规账单吗?创建账单并追踪您的付款:', - 'no_bills_create_default' => '创建账单', + 'no_accounts_title_asset' => '创建一个资产账户!', + 'no_accounts_intro_asset' => '您目前还没有资产账户。资产账户是您的主要账户,包括:您的支票账户、储蓄账户、共用账户,甚至信用卡等。', + 'no_accounts_imperative_asset' => '要开始使用 Firefly III,您需要至少一个资产账户。我们现在就来:', + 'no_accounts_create_asset' => '创建资产账户', + 'no_accounts_title_expense' => '创建一个支出账户!', + 'no_accounts_intro_expense' => '您目前还没有支出账户。支出账户用于记录您消费的地方,如商店或超市。', + 'no_accounts_imperative_expense' => '当您创建交易时会自动创建支出账户,但您也可以手动创建,我们现在就来:', + 'no_accounts_create_expense' => '创建支出账户', + 'no_accounts_title_revenue' => '创建一个收入账户!', + 'no_accounts_intro_revenue' => '您目前还没有收入账户。收入账户用于记录向您付款的各方,比如您的雇主。', + 'no_accounts_imperative_revenue' => '当您创建交易时会自动创建收入账户,但您也可以手动创建,我们现在就来:', + 'no_accounts_create_revenue' => '创建收入账户', + 'no_accounts_title_liabilities' => '创建一个债务账户!', + 'no_accounts_intro_liabilities' => '您目前还没有债务账户。债务账户用于注册您的 (学生) 贷款或其他负债。', + 'no_accounts_imperative_liabilities' => '您不用必须使用此功能,但若您要追踪这些东西的话,此功能十分有用。', + 'no_accounts_create_liabilities' => '创建债务账户', + 'no_budgets_title_default' => '创建一笔预算!', + 'no_rules_title_default' => '创建一个规则!', + 'no_budgets_intro_default' => '您目前还没有预算。预算用于将您的支出归为具有逻辑性的组,为您的支出添加一个软性上限。', + 'no_rules_intro_default' => '你还没有创建任何规则。规则是一种强大的自动化功能,可以帮助你处理交易。', + 'no_rules_imperative_default' => '规则可以帮助你更好地管理交易。现在就创建一个吧:', + 'no_budgets_imperative_default' => '预算是财务管理的基本工具,我们现在就来:', + 'no_budgets_create_default' => '创建预算', + 'no_rules_create_default' => '创建规则', + 'no_categories_title_default' => '创建一个分类!', + 'no_categories_intro_default' => '您目前还没有分类。分类用于微调您的交易,并依指定分类标示。', + 'no_categories_imperative_default' => '当您创建交易时会自动创建分类,但您也可以手动创建,我们现在就来:', + 'no_categories_create_default' => '创建分类', + 'no_tags_title_default' => '创建一个标签!', + 'no_tags_intro_default' => '您目前还没有标签。标签用于微调您的交易,并依指定关键字标示。', + 'no_tags_imperative_default' => '当您创建交易时会自动创建标签,但您也可以手动创建,我们现在就来:', + 'no_tags_create_default' => '创建标签', + 'no_transactions_title_withdrawal' => '创建一笔支出!', + 'no_transactions_intro_withdrawal' => '您目前还没有支出,您应该创建支出以开始管理您的财务。', + 'no_transactions_imperative_withdrawal' => '您消费了一些钱吗?那么您应该记下来:', + 'no_transactions_create_withdrawal' => '创建支出', + 'no_transactions_title_deposit' => '创建一些收入!', + 'no_transactions_intro_deposit' => '您目前还没有收入记录,您应该创建收入记录以开始管理您的财务。', + 'no_transactions_imperative_deposit' => '您收到了一些钱吗?那么您应该记下来:', + 'no_transactions_create_deposit' => '创建收入', + 'no_transactions_title_transfers' => '创建一笔转账!', + 'no_transactions_intro_transfers' => '您目前还没有转账。当您在资产账户之间移动资金时,将自动记录为转账。', + 'no_transactions_imperative_transfers' => '您有移动这些钱吗?那么您应该记下来:', + 'no_transactions_create_transfers' => '创建转账', + 'no_piggies_title_default' => '创建一个存钱罐!', + 'no_piggies_intro_default' => '您目前还没有存钱罐,您可以创建存钱罐来划分您的储蓄,并追踪您存钱的目标。', + 'no_piggies_imperative_default' => '您有想要为之攒钱的东西吗?创建一个存钱罐然后开始追踪:', + 'no_piggies_create_default' => '创建新存钱罐', + 'no_bills_title_default' => '创建一笔账单!', + 'no_bills_intro_default' => '您目前还没有账单,您可以创建账单以追踪您的日常支出,比如房租或保险。', + 'no_bills_imperative_default' => '您有这样的常规账单吗?创建账单并追踪您的付款:', + 'no_bills_create_default' => '创建账单', // recurring transactions - 'create_right_now' => '立即创建', - 'no_new_transaction_in_recurrence' => '未创建新交易,可能已经在此日期取消?', - 'recurrences' => '定期交易', - 'repeat_until_in_past' => '此定期交易已于 :date 停止重复。', - 'recurring_calendar_view' => '日历', - 'no_recurring_title_default' => '创建一笔定期交易!', - 'no_recurring_intro_default' => '您还目前没有定期交易,使用此功能可以让 Firefly III 自动为您创建交易。', - 'no_recurring_imperative_default' => '此功能适合高级用户,同时也极为有用。请在继续操作前,确认您已阅读右上角问号 (?) 图标) 里的帮助文档。', - 'no_recurring_create_default' => '创建定期交易', - 'make_new_recurring' => '创建定期交易', - 'recurring_daily' => '每天', - 'recurring_weekly' => '每周的:weekday', - 'recurring_weekly_skip' => '每:skip个周的:weekday', - 'recurring_monthly' => '每月的第:dayOfMonth天', - 'recurring_monthly_skip' => '每:skip个月的第:dayOfMonth天', - 'recurring_ndom' => '每月的第:dayOfMonth个:weekday', - 'recurring_yearly' => '每年的:date', - 'overview_for_recurrence' => '定期交易“:title”概览', - 'warning_duplicates_repetitions' => '在极少数情况下,日期在此列表上会显示两次,这是由多个重复项目的冲突造成的。Firefly III 每天只会产生一条交易。', - 'created_transactions' => '相关交易', - 'expected_withdrawals' => '预期支出', - 'expected_deposits' => '预期收入', - 'expected_transfers' => '预期转账', - 'created_withdrawals' => '已创建支出', - 'created_deposits' => '已创建收入', - 'created_transfers' => '已创建转账', - 'recurring_info' => '定期交易 :count / :total', - 'created_from_recurrence' => '从定期交易“:title” (#:id) 创建', - 'recurring_never_cron' => '用于支持定期交易的计划任务尚未运行。全新安装 Firefly III 后出现此提示为正常情况,请尽快按照说明进行操作。点击页面右上角的问号 (?) 图标查看帮助页面。', - 'recurring_cron_long_ago' => '距离上次运行用于支持定期交易的计划任务已超过36小时,请确认您的配置正确无误。点击页面右上角的问号 (?) 图标查看帮助页面。', + 'create_right_now' => '立即创建', + 'no_new_transaction_in_recurrence' => '未创建新交易,可能已经在此日期取消?', + 'recurrences' => '定期交易', + 'repeat_until_in_past' => '此定期交易已于 :date 停止重复。', + 'recurring_calendar_view' => '日历', + 'no_recurring_title_default' => '创建一笔定期交易!', + 'no_recurring_intro_default' => '您还目前没有定期交易,使用此功能可以让 Firefly III 自动为您创建交易。', + 'no_recurring_imperative_default' => '此功能适合高级用户,同时也极为有用。请在继续操作前,确认您已阅读右上角问号 (?) 图标) 里的帮助文档。', + 'no_recurring_create_default' => '创建定期交易', + 'make_new_recurring' => '创建定期交易', + 'recurring_daily' => '每天', + 'recurring_weekly' => '每周的:weekday', + 'recurring_weekly_skip' => '每:skip个周的:weekday', + 'recurring_monthly' => '每月的第:dayOfMonth天', + 'recurring_monthly_skip' => '每:skip个月的第:dayOfMonth天', + 'recurring_ndom' => '每月的第:dayOfMonth个:weekday', + 'recurring_yearly' => '每年的:date', + 'overview_for_recurrence' => '定期交易“:title”概览', + 'warning_duplicates_repetitions' => '在极少数情况下,日期在此列表上会显示两次,这是由多个重复项目的冲突造成的。Firefly III 每天只会产生一条交易。', + 'created_transactions' => '相关交易', + 'expected_withdrawals' => '预期支出', + 'expected_deposits' => '预期收入', + 'expected_transfers' => '预期转账', + 'created_withdrawals' => '已创建支出', + 'created_deposits' => '已创建收入', + 'created_transfers' => '已创建转账', + 'recurring_info' => '定期交易 :count / :total', + 'created_from_recurrence' => '从定期交易“:title” (#:id) 创建', + 'recurring_never_cron' => '用于支持定期交易的计划任务尚未运行。全新安装 Firefly III 后出现此提示为正常情况,请尽快按照说明进行操作。点击页面右上角的问号 (?) 图标查看帮助页面。', + 'recurring_cron_long_ago' => '距离上次运行用于支持定期交易的计划任务已超过36小时,请确认您的配置正确无误。点击页面右上角的问号 (?) 图标查看帮助页面。', - 'create_new_recurrence' => '创建新定期交易', - 'help_first_date' => '第一笔预期的定期交易的日期,必须位于将来。', - 'help_first_date_no_past' => '表示第一次预计的定期,Firefly III 不会创建已经过去的交易。', - 'no_currency' => '(没有货币)', - 'mandatory_for_recurring' => '必填定期信息', - 'mandatory_for_transaction' => '必填交易信息', - 'optional_for_recurring' => '选填定期信息', - 'optional_for_transaction' => '选填交易信息', - 'change_date_other_options' => '更改“初次日期”以查看更多选项。', - 'mandatory_fields_for_tranaction' => '这里的数值最终会出现在创建的交易中', - 'click_for_calendar' => '点这裡开启显示定期重复交易的行事曆', - 'repeat_forever' => '永远重复', - 'repeat_until_date' => '重复至特定日期', - 'repeat_times' => '一定次数后重复', - 'recurring_skips_one' => '每隔一个', - 'recurring_skips_more' => '跳过:count次', - 'store_new_recurrence' => '保存定期交易', - 'stored_new_recurrence' => '定期交易“:title”保存成功', - 'edit_recurrence' => '编辑定期交易“:title”', - 'recurring_repeats_until' => '重复至 :date', - 'recurring_repeats_forever' => '永远重复', - 'recurring_repeats_x_times' => '重复:count次|重复:count次', - 'update_recurrence' => '更新定期交易', - 'updated_recurrence' => '定期交易“:title”已更新', - 'recurrence_is_inactive' => '此定期交易已停用,不会自动生成新交易', - 'delete_recurring' => '删除定期交易“:title”', - 'new_recurring_transaction' => '新定期交易', - 'help_weekend' => '当定期交易发生于周六或周日时,Firefly III 要如何处理?', - 'do_nothing' => '仅创建交易', - 'skip_transaction' => '跳过此次', - 'jump_to_friday' => '在上个星期五创建交易', - 'jump_to_monday' => '在下个星期一创建交易', - 'will_jump_friday' => '将提前到星期五创建而不是周末', - 'will_jump_monday' => '将推迟到星期一创建而不是周末', - 'except_weekends' => '例外的周末', - 'recurrence_deleted' => '定期交易“:title”已删除', + 'create_new_recurrence' => '创建新定期交易', + 'help_first_date' => '第一笔预期的定期交易的日期,必须位于将来。', + 'help_first_date_no_past' => '表示第一次预计的定期,Firefly III 不会创建已经过去的交易。', + 'no_currency' => '(没有货币)', + 'mandatory_for_recurring' => '必填定期信息', + 'mandatory_for_transaction' => '必填交易信息', + 'optional_for_recurring' => '选填定期信息', + 'optional_for_transaction' => '选填交易信息', + 'change_date_other_options' => '更改“初次日期”以查看更多选项。', + 'mandatory_fields_for_tranaction' => '这里的数值最终会出现在创建的交易中', + 'click_for_calendar' => '点这裡开启显示定期重复交易的行事曆', + 'repeat_forever' => '永远重复', + 'repeat_until_date' => '重复至特定日期', + 'repeat_times' => '一定次数后重复', + 'recurring_skips_one' => '每隔一个', + 'recurring_skips_more' => '跳过:count次', + 'store_new_recurrence' => '保存定期交易', + 'stored_new_recurrence' => '定期交易“:title”保存成功', + 'edit_recurrence' => '编辑定期交易“:title”', + 'recurring_repeats_until' => '重复至 :date', + 'recurring_repeats_forever' => '永远重复', + 'recurring_repeats_x_times' => '重复:count次|重复:count次', + 'update_recurrence' => '更新定期交易', + 'updated_recurrence' => '定期交易“:title”已更新', + 'recurrence_is_inactive' => '此定期交易已停用,不会自动生成新交易', + 'delete_recurring' => '删除定期交易“:title”', + 'new_recurring_transaction' => '新定期交易', + 'help_weekend' => '当定期交易发生于周六或周日时,Firefly III 要如何处理?', + 'do_nothing' => '仅创建交易', + 'skip_transaction' => '跳过此次', + 'jump_to_friday' => '在上个星期五创建交易', + 'jump_to_monday' => '在下个星期一创建交易', + 'will_jump_friday' => '将提前到星期五创建而不是周末', + 'will_jump_monday' => '将推迟到星期一创建而不是周末', + 'except_weekends' => '例外的周末', + 'recurrence_deleted' => '定期交易“:title”已删除', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2737,69 +2743,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => '余额(:currency)', - 'box_spent_in_currency' => '支出 (:currency)', - 'box_earned_in_currency' => '收入 (:currency)', - 'box_budgeted_in_currency' => '预算 (:currency)', - 'box_bill_paid_in_currency' => '已付账单 (:currency)', - 'box_bill_unpaid_in_currency' => '未付账单 (:currency)', - 'box_left_to_spend_in_currency' => '剩余支出 (:currency)', - 'box_net_worth_in_currency' => '净资产 (:currency)', - 'box_spend_per_day' => '每日剩余支出::amount', + 'box_balance_in_currency' => '余额(:currency)', + 'box_spent_in_currency' => '支出 (:currency)', + 'box_earned_in_currency' => '收入 (:currency)', + 'box_budgeted_in_currency' => '预算 (:currency)', + 'box_bill_paid_in_currency' => '已付账单 (:currency)', + 'box_bill_unpaid_in_currency' => '未付账单 (:currency)', + 'box_left_to_spend_in_currency' => '剩余支出 (:currency)', + 'box_net_worth_in_currency' => '净资产 (:currency)', + 'box_spend_per_day' => '每日剩余支出::amount', // debug page - 'debug_page' => '调试页面', - 'debug_submit_instructions' => '如果您遇到问题,您可以使用此框内的信息协助调试,请将其复制并粘贴到新的或已存在的 GitHub 工单 中。系统将自动生成美观的表格,以方便快速诊断问题。', - 'debug_pretty_table' => '如果您复制/粘贴框中的内容到 GitHub 工单中,系统会自动生成表格。请不要在此文本前后加上引号或反引号。', - 'debug_additional_data' => '您还可以分享下方框中的内容,将其复制并粘贴至新的或已有的 GitHub 工单 中。然而,框中的内容可能包含隐私信息,例如账户名称、转账详情或电子邮件地址。', + 'debug_page' => '调试页面', + 'debug_submit_instructions' => '如果您遇到问题,您可以使用此框内的信息协助调试,请将其复制并粘贴到新的或已存在的 GitHub 工单 中。系统将自动生成美观的表格,以方便快速诊断问题。', + 'debug_pretty_table' => '如果您复制/粘贴框中的内容到 GitHub 工单中,系统会自动生成表格。请不要在此文本前后加上引号或反引号。', + 'debug_additional_data' => '您还可以分享下方框中的内容,将其复制并粘贴至新的或已有的 GitHub 工单 中。然而,框中的内容可能包含隐私信息,例如账户名称、转账详情或电子邮件地址。', // object groups - 'object_groups_menu_bar' => '组', - 'object_groups_page_title' => '组', - 'object_groups_breadcrumb' => '组', - 'object_groups_index' => '概览', - 'object_groups' => '组', - 'object_groups_empty_explain' => 'Firefly III 的一些项目可以分为组。例如,存钱罐的编辑和创建页面有“组”字段。当您设定了此字段,您可以在此页面编辑组名称和排列顺序。点击右上角的问号 (?) 图标查看帮助页面,获取更多信息。', - 'object_group_title' => '标题', - 'edit_object_group' => '编辑组“:title”', - 'delete_object_group' => '删除组“:title”', - 'update_object_group' => '更新组', - 'updated_object_group' => '成功更新组“:title”', - 'deleted_object_group' => '成功删除组“:title”', - 'object_group' => '组', + 'object_groups_menu_bar' => '组', + 'object_groups_page_title' => '组', + 'object_groups_breadcrumb' => '组', + 'object_groups_index' => '概览', + 'object_groups' => '组', + 'object_groups_empty_explain' => 'Firefly III 的一些项目可以分为组。例如,存钱罐的编辑和创建页面有“组”字段。当您设定了此字段,您可以在此页面编辑组名称和排列顺序。点击右上角的问号 (?) 图标查看帮助页面,获取更多信息。', + 'object_group_title' => '标题', + 'edit_object_group' => '编辑组“:title”', + 'delete_object_group' => '删除组“:title”', + 'update_object_group' => '更新组', + 'updated_object_group' => '成功更新组“:title”', + 'deleted_object_group' => '成功删除组“:title”', + 'object_group' => '组', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => '审计日志记录', - 'ale_action_log_add' => '向存钱罐“:name”中存入:amount', - 'ale_action_log_remove' => '自存钱罐 “:name” 中取出:amount', - 'ale_action_clear_budget' => '已从预算中移除', - 'ale_action_update_group_title' => '已更新交易的分组标题', - 'ale_action_update_date' => '已更新交易日期', - 'ale_action_update_order' => '已更新交易订单', - 'ale_action_clear_category' => '已从分类中删除', - 'ale_action_clear_notes' => '移除备注', - 'ale_action_clear_tag' => '清除标签', - 'ale_action_clear_all_tags' => '清除所有标签', - 'ale_action_set_bill' => '关联账单', - 'ale_action_switch_accounts' => '已切换来源账户或和目标账户', - 'ale_action_set_budget' => '设置预算', - 'ale_action_set_category' => '设置分类', - 'ale_action_set_source' => '设置来源账户', - 'ale_action_set_destination' => '设置目标账户', - 'ale_action_update_transaction_type' => '更改交易类型', - 'ale_action_update_notes' => '更改备注', - 'ale_action_update_description' => '更改描述', - 'ale_action_add_to_piggy' => '存钱罐', - 'ale_action_remove_from_piggy' => '存钱罐', - 'ale_action_add_tag' => '添加标签', - 'ale_action_update_amount' => '更新金额', + 'audit_log_entries' => '审计日志记录', + 'ale_action_log_add' => '向存钱罐“:name”中存入:amount', + 'ale_action_log_remove' => '自存钱罐 “:name” 中取出:amount', + 'ale_action_clear_budget' => '已从预算中移除', + 'ale_action_update_group_title' => '已更新交易的分组标题', + 'ale_action_update_date' => '已更新交易日期', + 'ale_action_update_order' => '已更新交易订单', + 'ale_action_clear_category' => '已从分类中删除', + 'ale_action_clear_notes' => '移除备注', + 'ale_action_clear_tag' => '清除标签', + 'ale_action_clear_all_tags' => '清除所有标签', + 'ale_action_set_bill' => '关联账单', + 'ale_action_switch_accounts' => '已切换来源账户或和目标账户', + 'ale_action_set_budget' => '设置预算', + 'ale_action_set_category' => '设置分类', + 'ale_action_set_source' => '设置来源账户', + 'ale_action_set_destination' => '设置目标账户', + 'ale_action_update_transaction_type' => '更改交易类型', + 'ale_action_update_notes' => '更改备注', + 'ale_action_update_description' => '更改描述', + 'ale_action_add_to_piggy' => '存钱罐', + 'ale_action_remove_from_piggy' => '存钱罐', + 'ale_action_add_tag' => '添加标签', + 'ale_action_update_amount' => '更新金额', // dashboard - 'enable_auto_convert' => '启用货币转换', - 'disable_auto_convert' => '禁用货币转换', + 'enable_auto_convert' => '启用货币转换', + 'disable_auto_convert' => '禁用货币转换', ]; /* diff --git a/resources/lang/zh_CN/validation.php b/resources/lang/zh_CN/validation.php index db49e06d6d..b792c16c52 100644 --- a/resources/lang/zh_CN/validation.php +++ b/resources/lang/zh_CN/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => '您没有管理员访问权限', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/resources/lang/zh_TW/firefly.php b/resources/lang/zh_TW/firefly.php index 17e06f83c3..a614200fec 100644 --- a/resources/lang/zh_TW/firefly.php +++ b/resources/lang/zh_TW/firefly.php @@ -35,308 +35,308 @@ declare(strict_types=1); return [ // general stuff: - 'close' => '關閉', - 'actions' => '操作', - 'edit' => '編輯', - 'delete' => '刪除', - 'split' => '分割', - 'single_split' => '拆分', - 'clone' => '複製', - 'clone_and_edit' => '複制並編輯', - 'confirm_action' => '確認', - 'last_seven_days' => '最近7天', - 'last_thirty_days' => '最近30天', - 'last_180_days' => '最近 180 天', - 'month_to_date' => '本月至今', - 'year_to_date' => '今年迄今為止', - 'YTD' => '本年至今', - 'welcome_back' => 'What\'s playing?', - 'everything' => '所有', - 'today' => '今天', - 'customRange' => '自訂範圍', - 'date_range' => '日期範圍', - 'apply' => '套用', - 'select_date' => '選擇日期..', - 'cancel' => '取消', - 'from' => '自', - 'to' => '至', - 'structure' => '結構', - 'help_translating' => '此說明尚欠奉中文版,要協助翻譯嗎?', - 'showEverything' => '全部顯示', - 'never' => '未有資料', - 'no_results_for_empty_search' => '您的搜尋空白,結果也是空白。', - 'removed_amount' => '已移除 :amount', - 'added_amount' => '已新增 :amount', - 'asset_account_role_help' => '選擇後如有額外選項,可稍後設定。', - 'Opening balance' => '初始餘額', - 'create_new_stuff' => '建立新內容', - 'new_withdrawal' => '新提款', - 'create_new_transaction' => '建立新交易', - 'sidebar_frontpage_create' => '建立', - 'new_transaction' => '新交易', - 'no_rules_for_bill' => '此帳單未設定相關的規則。', - 'go_to_asset_accounts' => '檢視您的資產帳戶', - 'go_to_budgets' => '前往您的預算', - 'go_to_withdrawals' => 'Go to your withdrawals', - 'clones_journal_x' => '這項交易是從":description" (#:id) 複制出來', - 'go_to_categories' => '前往您的分類', - 'go_to_bills' => '前往您的帳單', - 'go_to_expense_accounts' => '查看您的支出帳戶', - 'go_to_revenue_accounts' => '查看您的收入帳戶', - 'go_to_piggies' => '前往您的小豬撲滿', - 'new_deposit' => '新存款', - 'new_transfer' => '新轉帳', - 'new_transfers' => '新轉帳', - 'new_asset_account' => '新資產帳戶', - 'new_expense_account' => '新支出帳戶', - 'new_revenue_account' => '新收入帳戶', - 'new_liabilities_account' => '新債務', - 'new_budget' => '新預算', - 'new_bill' => '新帳單', - 'block_account_logout' => '您已被登出。被封鎖的帳號無法使用本網站,您是以有效的電子郵件地址註冊嗎?', - 'flash_success' => '成功!', - 'flash_info' => '訊息', - 'flash_warning' => '警告!', - 'flash_error' => '錯誤!', - 'flash_danger' => '危險!', - 'flash_info_multiple' => '有 1 個訊息|有 :count 個訊息', - 'flash_error_multiple' => '有 1 個錯誤|有 :count 個錯誤', - 'net_worth' => '淨值', - 'help_for_this_page' => '本頁說明', - 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', - 'two_factor_welcome' => '您好!', - 'two_factor_enter_code' => '如要繼續,請輸入您的兩步驟驗證 (two factor authentication) 代碼,您的應用程式可為您產生。', - 'two_factor_code_here' => '在此輸入代碼', - 'two_factor_title' => '兩步驟驗證', - 'authenticate' => '驗證', - 'two_factor_forgot_title' => '遺失兩步驟驗證', - 'two_factor_forgot' => '啥兩步驟我忘了。', - 'two_factor_lost_header' => '遺失您的兩步驟驗證嗎?', - 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', - 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', - 'two_factor_lost_fix_owner' => '否則,請寄送電子郵件至網站擁有者 :site_owner 要求重設您的兩步驟驗證。', - 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', - 'pref_two_factor_new_backup_codes' => 'Get new backup codes', - 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', - '2fa_i_have_them' => 'I stored them!', - 'warning_much_data' => '載入 :days 天的資料或會相當耗時。', - 'registered' => '您已成功註冊!', - 'Default asset account' => '預設資產帳戶', - 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', - 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', - 'Savings account' => '儲蓄帳戶', - 'Credit card' => '信用卡', - 'source_accounts' => 'Source account|Source accounts', - 'destination_accounts' => 'Destination account|Destination accounts', - 'user_id_is' => '您的使用者 ID 是 :user', - 'field_supports_markdown' => '此欄位支援 Markdown 語法。', - 'need_more_help' => '如果您需要更多 Firefly III 的協助,請 於 GitHub 建立提問。', - 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', - 'intro_boxes_after_refresh' => '當您重新整理頁面後,介紹框將會重新出現。', - 'show_all_no_filter' => '不以日期分組,顯示所有交易紀錄', - 'expenses_by_category' => '按分類的支出', - 'expenses_by_budget' => '按預算的支出', - 'income_by_category' => '按分類的收入', - 'expenses_by_asset_account' => '按資產帳戶的支出', - 'expenses_by_expense_account' => '按支出帳戶的支出', - 'cannot_redirect_to_account' => 'Firefly III 無法重新導向正確頁面,抱歉。', - 'sum_of_expenses' => '支出總和', - 'sum_of_income' => '收入總和', - 'liabilities' => '債務', - 'spent_in_specific_budget' => '預算「:budget」中的花費', - 'spent_in_specific_double' => '於帳戶 ":account" 花費了', - 'earned_in_specific_double' => '於帳戶 ":account" 賺取了', - 'source_account' => '來源帳戶', - 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', - 'destination_account' => '目標帳戶', - 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', - 'sum_of_expenses_in_budget' => '預算「:budget」中的總花費', - 'left_in_budget_limit' => '依照預算的支出尚餘', - 'current_period' => '目前區間', - 'show_the_current_period_and_overview' => '顯示目前區間與概覽', - 'pref_languages_locale' => '英文以外的語言,須搭配作業系統內對應的地區資訊 (locale-information) 才能正常運作,否則貨幣資料、日期與金額或會格式有誤。', - 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', - 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', - 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', - 'chart_category_in_period' => '分類「:name」自 :start 至 :end 的所有交易圖表', - 'chart_category_all' => '分類「:name」的所有交易圖表', - 'clone_withdrawal' => '複製此提款', - 'clone_deposit' => '複製此存款', - 'clone_transfer' => '複製此轉帳', - 'multi_select_no_selection' => '未選取', - 'multi_select_select_all' => '選取全部', - 'multi_select_n_selected' => '選取', - 'multi_select_all_selected' => '全部選取', - 'multi_select_filter_placeholder' => '搜尋…', - 'intro_next_label' => '下一步', - 'intro_prev_label' => '上一步', - 'intro_skip_label' => '略過', - 'intro_done_label' => '完成', - 'between_dates_breadcrumb' => '自 :start 至 :end', - 'all_journals_without_budget' => '沒有預算的所有交易', - 'journals_without_budget' => '沒有預算的交易', - 'all_journals_without_category' => '沒有分類的所有交易', - 'journals_without_category' => '沒有分類的交易', - 'all_journals_for_account' => ':name 帳戶的所有交易', - 'chart_all_journals_for_account' => ':name 帳戶的所有交易圖表', - 'journals_in_period_for_account' => ':name 帳戶自 :start 至 :end 的所有交易', - 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', - 'transferred' => '已轉帳', - 'all_withdrawal' => '所有支出', - 'all_transactions' => '所有交易', - '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' => '分類 :name 自 :start 至 :end 的所有交易', - 'journals_in_period_for_tag' => '標籤 :tag 自 :start 至 :end 的所有交易', - '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 instructions how to do this.', - 'quickswitch' => '快速切換', - 'sign_in_to_start' => '登入以開始您的連線階段', - 'sign_in' => '登入', - 'register_new_account' => '註冊新帳號', - 'forgot_my_password' => '我忘記了密碼', - 'problems_with_input' => '輸入有誤。', - 'reset_password' => '重設密碼', - 'button_reset_password' => '重設密碼', - 'reset_button' => '重設', - 'want_to_login' => '我想登入', - 'login_page_title' => '登入 Firefly III', - 'register_page_title' => '在 Firefly III 註冊', - 'forgot_pw_page_title' => '忘記您 Firefly III 的密碼', - 'reset_pw_page_title' => '重設您 Firefly III 的密碼', - 'cannot_reset_demo_user' => '您不能重設 展示使用者 的密碼。', - 'no_att_demo_user' => 'The demo user can\'t upload attachments.', - 'button_register' => '註冊帳號', - 'authorization' => '身份認證', - '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', - 'per_period_sum_1D' => '預期每日開支', - 'per_period_sum_1W' => '預期每週開支', - 'per_period_sum_1M' => '預期每月開支', - 'per_period_sum_3M' => '預期每季度開支', - 'per_period_sum_6M' => '預期每半年開支', - 'per_period_sum_1Y' => '預期每年開支', - 'average_per_bill' => '每張帳單的平均數', - 'expected_total' => '預期總數', - 'reconciliation_account_name' => ':name reconciliation (: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!', - 'here_be_dragons' => 'Hic sunt dracones', + 'close' => '關閉', + 'actions' => '操作', + 'edit' => '編輯', + 'delete' => '刪除', + 'split' => '分割', + 'single_split' => '拆分', + 'clone' => '複製', + 'clone_and_edit' => '複制並編輯', + 'confirm_action' => '確認', + 'last_seven_days' => '最近7天', + 'last_thirty_days' => '最近30天', + 'last_180_days' => '最近 180 天', + 'month_to_date' => '本月至今', + 'year_to_date' => '今年迄今為止', + 'YTD' => '本年至今', + 'welcome_back' => 'What\'s playing?', + 'everything' => '所有', + 'today' => '今天', + 'customRange' => '自訂範圍', + 'date_range' => '日期範圍', + 'apply' => '套用', + 'select_date' => '選擇日期..', + 'cancel' => '取消', + 'from' => '自', + 'to' => '至', + 'structure' => '結構', + 'help_translating' => '此說明尚欠奉中文版,要協助翻譯嗎?', + 'showEverything' => '全部顯示', + 'never' => '未有資料', + 'no_results_for_empty_search' => '您的搜尋空白,結果也是空白。', + 'removed_amount' => '已移除 :amount', + 'added_amount' => '已新增 :amount', + 'asset_account_role_help' => '選擇後如有額外選項,可稍後設定。', + 'Opening balance' => '初始餘額', + 'create_new_stuff' => '建立新內容', + 'new_withdrawal' => '新提款', + 'create_new_transaction' => '建立新交易', + 'sidebar_frontpage_create' => '建立', + 'new_transaction' => '新交易', + 'no_rules_for_bill' => '此帳單未設定相關的規則。', + 'go_to_asset_accounts' => '檢視您的資產帳戶', + 'go_to_budgets' => '前往您的預算', + 'go_to_withdrawals' => 'Go to your withdrawals', + 'clones_journal_x' => '這項交易是從":description" (#:id) 複制出來', + 'go_to_categories' => '前往您的分類', + 'go_to_bills' => '前往您的帳單', + 'go_to_expense_accounts' => '查看您的支出帳戶', + 'go_to_revenue_accounts' => '查看您的收入帳戶', + 'go_to_piggies' => '前往您的小豬撲滿', + 'new_deposit' => '新存款', + 'new_transfer' => '新轉帳', + 'new_transfers' => '新轉帳', + 'new_asset_account' => '新資產帳戶', + 'new_expense_account' => '新支出帳戶', + 'new_revenue_account' => '新收入帳戶', + 'new_liabilities_account' => '新債務', + 'new_budget' => '新預算', + 'new_bill' => '新帳單', + 'block_account_logout' => '您已被登出。被封鎖的帳號無法使用本網站,您是以有效的電子郵件地址註冊嗎?', + 'flash_success' => '成功!', + 'flash_info' => '訊息', + 'flash_warning' => '警告!', + 'flash_error' => '錯誤!', + 'flash_danger' => '危險!', + 'flash_info_multiple' => '有 1 個訊息|有 :count 個訊息', + 'flash_error_multiple' => '有 1 個錯誤|有 :count 個錯誤', + 'net_worth' => '淨值', + 'help_for_this_page' => '本頁說明', + 'help_for_this_page_body' => 'You can find more information about this page in the documentation.', + 'two_factor_welcome' => '您好!', + 'two_factor_enter_code' => '如要繼續,請輸入您的兩步驟驗證 (two factor authentication) 代碼,您的應用程式可為您產生。', + 'two_factor_code_here' => '在此輸入代碼', + 'two_factor_title' => '兩步驟驗證', + 'authenticate' => '驗證', + 'two_factor_forgot_title' => '遺失兩步驟驗證', + 'two_factor_forgot' => '啥兩步驟我忘了。', + 'two_factor_lost_header' => '遺失您的兩步驟驗證嗎?', + 'two_factor_lost_intro' => 'If you lost your backup codes as well, you have bad luck. This is not something you can fix from the web interface. You have two choices.', + 'two_factor_lost_fix_self' => 'If you run your own instance of Firefly III, read this entry in the FAQ for instructions.', + 'two_factor_lost_fix_owner' => '否則,請寄送電子郵件至網站擁有者 :site_owner 要求重設您的兩步驟驗證。', + 'mfa_backup_code' => 'You have used a backup code to login to Firefly III. It can\'t be used again, so cross it from your list.', + 'pref_two_factor_new_backup_codes' => 'Get new backup codes', + 'pref_two_factor_backup_code_count' => 'You have :count valid backup code.|You have :count valid backup codes.', + '2fa_i_have_them' => 'I stored them!', + 'warning_much_data' => '載入 :days 天的資料或會相當耗時。', + 'registered' => '您已成功註冊!', + 'Default asset account' => '預設資產帳戶', + 'no_budget_pointer' => 'You seem to have no budgets yet. You should create some on the budgets-page. Budgets can help you keep track of expenses.', + 'no_bill_pointer' => 'You seem to have no bills yet. You should create some on the bills-page. Bills can help you keep track of expenses.', + 'Savings account' => '儲蓄帳戶', + 'Credit card' => '信用卡', + 'source_accounts' => 'Source account|Source accounts', + 'destination_accounts' => 'Destination account|Destination accounts', + 'user_id_is' => '您的使用者 ID 是 :user', + 'field_supports_markdown' => '此欄位支援 Markdown 語法。', + 'need_more_help' => '如果您需要更多 Firefly III 的協助,請 於 GitHub 建立提問。', + 'reenable_intro_text' => 'You can also re-enable the introduction guidance.', + 'intro_boxes_after_refresh' => '當您重新整理頁面後,介紹框將會重新出現。', + 'show_all_no_filter' => '不以日期分組,顯示所有交易紀錄', + 'expenses_by_category' => '按分類的支出', + 'expenses_by_budget' => '按預算的支出', + 'income_by_category' => '按分類的收入', + 'expenses_by_asset_account' => '按資產帳戶的支出', + 'expenses_by_expense_account' => '按支出帳戶的支出', + 'cannot_redirect_to_account' => 'Firefly III 無法重新導向正確頁面,抱歉。', + 'sum_of_expenses' => '支出總和', + 'sum_of_income' => '收入總和', + 'liabilities' => '債務', + 'spent_in_specific_budget' => '預算「:budget」中的花費', + 'spent_in_specific_double' => '於帳戶 ":account" 花費了', + 'earned_in_specific_double' => '於帳戶 ":account" 賺取了', + 'source_account' => '來源帳戶', + 'source_account_reconciliation' => 'You can\'t edit the source account of a reconciliation transaction.', + 'destination_account' => '目標帳戶', + 'destination_account_reconciliation' => 'You can\'t edit the destination account of a reconciliation transaction.', + 'sum_of_expenses_in_budget' => '預算「:budget」中的總花費', + 'left_in_budget_limit' => '依照預算的支出尚餘', + 'current_period' => '目前區間', + 'show_the_current_period_and_overview' => '顯示目前區間與概覽', + 'pref_languages_locale' => '英文以外的語言,須搭配作業系統內對應的地區資訊 (locale-information) 才能正常運作,否則貨幣資料、日期與金額或會格式有誤。', + 'budget_in_period' => 'All transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period' => 'Chart for all transactions for budget ":name" between :start and :end in :currency', + 'chart_budget_in_period_only_currency' => 'The amount you budgeted was in :currency, so this chart will only show transactions in :currency.', + 'chart_account_in_period' => 'Chart for all transactions for account ":name" (:balance) between :start and :end', + 'chart_category_in_period' => '分類「:name」自 :start 至 :end 的所有交易圖表', + 'chart_category_all' => '分類「:name」的所有交易圖表', + 'clone_withdrawal' => '複製此提款', + 'clone_deposit' => '複製此存款', + 'clone_transfer' => '複製此轉帳', + 'multi_select_no_selection' => '未選取', + 'multi_select_select_all' => '選取全部', + 'multi_select_n_selected' => '選取', + 'multi_select_all_selected' => '全部選取', + 'multi_select_filter_placeholder' => '搜尋…', + 'intro_next_label' => '下一步', + 'intro_prev_label' => '上一步', + 'intro_skip_label' => '略過', + 'intro_done_label' => '完成', + 'between_dates_breadcrumb' => '自 :start 至 :end', + 'all_journals_without_budget' => '沒有預算的所有交易', + 'journals_without_budget' => '沒有預算的交易', + 'all_journals_without_category' => '沒有分類的所有交易', + 'journals_without_category' => '沒有分類的交易', + 'all_journals_for_account' => ':name 帳戶的所有交易', + 'chart_all_journals_for_account' => ':name 帳戶的所有交易圖表', + 'journals_in_period_for_account' => ':name 帳戶自 :start 至 :end 的所有交易', + 'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}', + 'transferred' => '已轉帳', + 'all_withdrawal' => '所有支出', + 'all_transactions' => '所有交易', + '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' => '分類 :name 自 :start 至 :end 的所有交易', + 'journals_in_period_for_tag' => '標籤 :tag 自 :start 至 :end 的所有交易', + '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 instructions how to do this.', + 'quickswitch' => '快速切換', + 'sign_in_to_start' => '登入以開始您的連線階段', + 'sign_in' => '登入', + 'register_new_account' => '註冊新帳號', + 'forgot_my_password' => '我忘記了密碼', + 'problems_with_input' => '輸入有誤。', + 'reset_password' => '重設密碼', + 'button_reset_password' => '重設密碼', + 'reset_button' => '重設', + 'want_to_login' => '我想登入', + 'login_page_title' => '登入 Firefly III', + 'register_page_title' => '在 Firefly III 註冊', + 'forgot_pw_page_title' => '忘記您 Firefly III 的密碼', + 'reset_pw_page_title' => '重設您 Firefly III 的密碼', + 'cannot_reset_demo_user' => '您不能重設 展示使用者 的密碼。', + 'no_att_demo_user' => 'The demo user can\'t upload attachments.', + 'button_register' => '註冊帳號', + 'authorization' => '身份認證', + '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', + 'per_period_sum_1D' => '預期每日開支', + 'per_period_sum_1W' => '預期每週開支', + 'per_period_sum_1M' => '預期每月開支', + 'per_period_sum_3M' => '預期每季度開支', + 'per_period_sum_6M' => '預期每半年開支', + 'per_period_sum_1Y' => '預期每年開支', + 'average_per_bill' => '每張帳單的平均數', + 'expected_total' => '預期總數', + 'reconciliation_account_name' => ':name reconciliation (: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!', + 'here_be_dragons' => 'Hic sunt dracones', // Webhooks - 'webhooks' => 'Webhooks', - 'webhooks_breadcrumb' => 'Webhooks', - 'webhooks_menu_disabled' => 'disabled', - 'no_webhook_messages' => 'There are no webhook messages', - 'webhook_trigger_STORE_TRANSACTION' => '在交易建立後', - 'webhook_trigger_UPDATE_TRANSACTION' => '在交易更新後', - 'webhook_trigger_DESTROY_TRANSACTION' => '在交易刪除後', - 'webhook_response_TRANSACTIONS' => '交易詳情', - 'webhook_response_ACCOUNTS' => '帳號詳情', - 'webhook_response_none_NONE' => 'No details', - 'webhook_delivery_JSON' => 'JSON', - '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.', - 'webhook_messages' => 'Webhook 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' => '紀錄日誌', - 'response' => '回覆', - 'visit_webhook_url' => 'Visit webhook URL', - 'reset_webhook_secret' => 'Reset webhook secret', - 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', - 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', + 'webhooks' => 'Webhooks', + 'webhooks_breadcrumb' => 'Webhooks', + 'webhooks_menu_disabled' => 'disabled', + 'no_webhook_messages' => 'There are no webhook messages', + 'webhook_trigger_STORE_TRANSACTION' => '在交易建立後', + 'webhook_trigger_UPDATE_TRANSACTION' => '在交易更新後', + 'webhook_trigger_DESTROY_TRANSACTION' => '在交易刪除後', + 'webhook_response_TRANSACTIONS' => '交易詳情', + 'webhook_response_ACCOUNTS' => '帳號詳情', + 'webhook_response_none_NONE' => 'No details', + 'webhook_delivery_JSON' => 'JSON', + '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.', + 'webhook_messages' => 'Webhook 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' => '紀錄日誌', + 'response' => '回覆', + 'visit_webhook_url' => 'Visit webhook URL', + 'reset_webhook_secret' => 'Reset webhook secret', + 'webhook_stored_link' => 'Webhook #{ID} ("{title}") has been stored.', + 'webhook_updated_link' => 'Webhook #{ID} ("{title}") has been updated.', // API access - 'authorization_request' => 'Firefly III :version 版授權請求', - 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', - 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', - 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', - 'scopes_will_be_able' => '此應用程式可以:', - 'button_authorize' => '授權', - 'none_in_select_list' => '(空)', - 'no_piggy_bank' => '(無小豬撲滿)', - 'name_in_currency' => ':name 於 :currency', - 'paid_in_currency' => '以 :currency 支付', - 'unpaid_in_currency' => '未以 :currency 支付', - 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', - 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', - 'all_destination_accounts' => '目標帳戶', - 'all_source_accounts' => '來源帳戶', - 'back_to_index' => 'Back to the index', - 'cant_logout_guard' => 'Firefly III can\'t log you out.', - 'internal_reference' => 'Internal reference', + 'authorization_request' => 'Firefly III :version 版授權請求', + 'authorization_request_intro' => 'Application ":client" is requesting permission to access your financial administration. Would you like to authorize :client to access these records?', + 'authorization_request_site' => 'You will be redirected to :url which will then be able to access your Firefly III data.', + 'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.', + 'scopes_will_be_able' => '此應用程式可以:', + 'button_authorize' => '授權', + 'none_in_select_list' => '(空)', + 'no_piggy_bank' => '(無小豬撲滿)', + 'name_in_currency' => ':name 於 :currency', + 'paid_in_currency' => '以 :currency 支付', + 'unpaid_in_currency' => '未以 :currency 支付', + 'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.', + 'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.', + 'all_destination_accounts' => '目標帳戶', + 'all_source_accounts' => '來源帳戶', + 'back_to_index' => 'Back to the index', + 'cant_logout_guard' => 'Firefly III can\'t log you out.', + 'internal_reference' => 'Internal reference', // check for updates: - 'update_check_title' => '檢查更新', - 'admin_update_check_title' => '自動檢查更新', - 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', - 'check_for_updates_permission' => 'Firefly III 可以自動檢查更新,但需要您先許可。請前往 系統管理 表示您是否想啟用此功能。', - 'updates_ask_me_later' => '稍後再詢問', - 'updates_do_not_check' => '不檢查更新', - 'updates_enable_check' => '啟用更新檢查', - 'admin_update_check_now_title' => '立刻檢查更新', - 'admin_update_check_now_explain' => '如果您按下此按鈕,Firefly III 將會檢查您現在的版本是否為最新版。', - 'check_for_updates_button' => '馬上檢查!', - 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', - 'update_version_beta' => 'This version is a BETA version. You may run into issues.', - 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', - 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', - 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', - 'update_current_version_alert' => 'You are running :version, which is the latest available release.', - 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', - 'update_check_error' => 'An error occurred while checking for updates: :error', - 'unknown_error' => 'Unknown error. Sorry about that.', - 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', - 'admin_update_channel_title' => '更新頻道', - 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', - 'update_channel_stable' => 'Stable. Everything should work as expected.', - 'update_channel_beta' => 'Beta. New features but things may be broken.', - 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', + 'update_check_title' => '檢查更新', + 'admin_update_check_title' => '自動檢查更新', + 'admin_update_check_explain' => 'Firefly III can check for updates automatically. When you enable this setting, it will contact the Firefly III update server to see if a new version of Firefly III is available. When it is, you will get a notification. You can test this notification using the button on the right. Please indicate below if you want Firefly III to check for updates.', + 'check_for_updates_permission' => 'Firefly III 可以自動檢查更新,但需要您先許可。請前往 系統管理 表示您是否想啟用此功能。', + 'updates_ask_me_later' => '稍後再詢問', + 'updates_do_not_check' => '不檢查更新', + 'updates_enable_check' => '啟用更新檢查', + 'admin_update_check_now_title' => '立刻檢查更新', + 'admin_update_check_now_explain' => '如果您按下此按鈕,Firefly III 將會檢查您現在的版本是否為最新版。', + 'check_for_updates_button' => '馬上檢查!', + 'update_new_version_alert' => 'A new version of Firefly III is available. You are running :your_version, the latest version is :new_version which was released on :date.', + 'update_version_beta' => 'This version is a BETA version. You may run into issues.', + 'update_version_alpha' => 'This version is a ALPHA version. You may run into issues.', + 'update_current_dev_older' => 'You are running development release ":version", which is older than the latest release :new_version. Please update!', + 'update_current_dev_newer' => 'You are running development release ":version", which is newer than the latest release :new_version.', + 'update_current_version_alert' => 'You are running :version, which is the latest available release.', + 'update_newer_version_alert' => 'You are running :your_version, which is newer than the latest release, :new_version.', + 'update_check_error' => 'An error occurred while checking for updates: :error', + 'unknown_error' => 'Unknown error. Sorry about that.', + 'disabled_but_check' => 'You disabled update checking. So don\'t forget to check for updates yourself every now and then. Thank you!', + 'admin_update_channel_title' => '更新頻道', + 'admin_update_channel_explain' => 'Firefly III has three update "channels" which determine how ahead of the curve you are in terms of features, enhancements and bugs. Use the "beta" channel if you\'re adventurous and the "alpha" when you like to live life dangerously.', + 'update_channel_stable' => 'Stable. Everything should work as expected.', + 'update_channel_beta' => 'Beta. New features but things may be broken.', + 'update_channel_alpha' => 'Alpha. We throw stuff in, and use whatever sticks.', // search - 'search' => '搜尋', - 'search_query' => '查詢', - 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', - 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', - 'search_for_query' => 'Firefly III 正搜尋包含所有這些字詞的交易::query', - 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', + 'search' => '搜尋', + 'search_query' => '查詢', + 'search_found_transactions' => 'Firefly III found :count transaction in :time seconds.|Firefly III found :count transactions in :time seconds.', + 'search_found_more_transactions' => 'Firefly III found more than :count transactions in :time seconds.', + 'search_for_query' => 'Firefly III 正搜尋包含所有這些字詞的交易::query', + 'invalid_operators_list' => 'These search parameters are not valid and have been ignored.', // old @@ -351,368 +351,368 @@ return [ * */ - 'search_modifier_date_on' => '交易日期為 ":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_id' => '交易ID為 ":value"', - 'search_modifier_not_id' => 'Transaction ID is not ":value"', - 'search_modifier_date_before' => 'Transaction date is before or on ":value"', - 'search_modifier_date_after' => 'Transaction date is after or on ":value"', - 'search_modifier_external_id_is' => 'External ID is ":value"', - 'search_modifier_not_external_id_is' => 'External ID is not ":value"', - 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', - 'search_modifier_not_description_contains' => 'Description does not contain ":value"', - 'search_modifier_description_is' => 'Description is exactly ":value"', - 'search_modifier_not_description_is' => 'Description is exactly not ":value"', - 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', - 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', - 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', - 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', - 'search_modifier_has_attachments' => 'The transaction must have an attachment', - 'search_modifier_has_no_category' => 'The transaction must have no category', - 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', - 'search_modifier_not_has_any_category' => 'The transaction must have no category', - 'search_modifier_has_any_category' => 'The transaction must have a (any) category', - 'search_modifier_has_no_budget' => 'The transaction must have no budget', - 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', - 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', - 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', - 'search_modifier_has_no_bill' => 'The transaction must have no bill', - 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', - 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', - 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', - 'search_modifier_has_no_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', - 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', - 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', - 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', - 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', - 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', - 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', - 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', - 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', - 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', - 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', - 'search_modifier_no_notes' => 'The transaction has no notes', - 'search_modifier_not_no_notes' => 'The transaction must have notes', - 'search_modifier_any_notes' => 'The transaction must have notes', - 'search_modifier_not_any_notes' => 'The transaction has no notes', - 'search_modifier_amount_is' => 'Amount is exactly :value', - 'search_modifier_not_amount_is' => 'Amount is not :value', - 'search_modifier_amount_less' => 'Amount is less than or equal to :value', - 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', - 'search_modifier_amount_more' => 'Amount is more than or equal to :value', - 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', - 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', - 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', - 'search_modifier_source_account_contains' => 'Source account name contains ":value"', - 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', - 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', - 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', - 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', - 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', - 'search_modifier_source_account_id' => 'Source account ID is :value', - 'search_modifier_not_source_account_id' => 'Source account ID is not :value', - 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', - 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', - 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', - 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', - 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', - 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', - 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', - 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', - 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', - 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', - 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', - 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', - 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', - 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', - 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', - 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', - 'search_modifier_destination_account_id' => 'Destination account ID is :value', - 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', - 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', - 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', - 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', - 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', - 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', - 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', - 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', - 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', - 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', - 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', - 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', - 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', - 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', - 'search_modifier_category_is' => 'Category is ":value"', - 'search_modifier_not_category_is' => 'Category is not ":value"', - 'search_modifier_budget_is' => 'Budget is ":value"', - 'search_modifier_not_budget_is' => 'Budget is not ":value"', - 'search_modifier_bill_is' => 'Bill is ":value"', - 'search_modifier_not_bill_is' => 'Bill is not ":value"', - 'search_modifier_transaction_type' => 'Transaction type is ":value"', - 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', - 'search_modifier_tag_is' => 'Tag is ":value"', - 'search_modifier_tag_contains' => 'Tag contains ":value"', - 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', - 'search_modifier_tag_ends' => 'Tag ends with ":value"', - 'search_modifier_tag_starts' => 'Tag starts with ":value"', - 'search_modifier_not_tag_is' => 'No tag is ":value"', - 'search_modifier_date_on_year' => 'Transaction is in year ":value"', - 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', - 'search_modifier_date_on_month' => 'Transaction is in month ":value"', - 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', - 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', - 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', - 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', - 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', - 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', - 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', - 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', - 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', + 'search_modifier_date_on' => '交易日期為 ":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_id' => '交易ID為 ":value"', + 'search_modifier_not_id' => 'Transaction ID is not ":value"', + 'search_modifier_date_before' => 'Transaction date is before or on ":value"', + 'search_modifier_date_after' => 'Transaction date is after or on ":value"', + 'search_modifier_external_id_is' => 'External ID is ":value"', + 'search_modifier_not_external_id_is' => 'External ID is not ":value"', + 'search_modifier_no_external_url' => 'The transaction has no external 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_any_external_url' => 'The transaction must have a (any) external 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_description_contains' => 'Description contains ":value"', + 'search_modifier_not_description_contains' => 'Description does not contain ":value"', + 'search_modifier_description_is' => 'Description is exactly ":value"', + 'search_modifier_not_description_is' => 'Description is exactly not ":value"', + 'search_modifier_currency_is' => 'Transaction (foreign) currency is ":value"', + 'search_modifier_not_currency_is' => 'Transaction (foreign) currency is not ":value"', + 'search_modifier_foreign_currency_is' => 'Transaction foreign currency is ":value"', + 'search_modifier_not_foreign_currency_is' => 'Transaction foreign currency is not ":value"', + 'search_modifier_has_attachments' => 'The transaction must have an attachment', + 'search_modifier_has_no_category' => 'The transaction must have no category', + 'search_modifier_not_has_no_category' => 'The transaction must have a (any) category', + 'search_modifier_not_has_any_category' => 'The transaction must have no category', + 'search_modifier_has_any_category' => 'The transaction must have a (any) category', + 'search_modifier_has_no_budget' => 'The transaction must have no budget', + 'search_modifier_not_has_any_budget' => 'The transaction must have no budget', + 'search_modifier_has_any_budget' => 'The transaction must have a (any) budget', + 'search_modifier_not_has_no_budget' => 'The transaction must have a (any) budget', + 'search_modifier_has_no_bill' => 'The transaction must have no bill', + 'search_modifier_not_has_no_bill' => 'The transaction must have a (any) bill', + 'search_modifier_has_any_bill' => 'The transaction must have a (any) bill', + 'search_modifier_not_has_any_bill' => 'The transaction must have no bill', + 'search_modifier_has_no_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_any_tag' => 'The transaction must have no tags', + 'search_modifier_not_has_no_tag' => 'The transaction must have a (any) tag', + 'search_modifier_has_any_tag' => 'The transaction must have a (any) tag', + 'search_modifier_notes_contains' => 'The transaction notes contain ":value"', + 'search_modifier_not_notes_contains' => 'The transaction notes do not contain ":value"', + 'search_modifier_notes_starts' => 'The transaction notes start with ":value"', + 'search_modifier_not_notes_starts' => 'The transaction notes do not start with ":value"', + 'search_modifier_notes_ends' => 'The transaction notes end with ":value"', + 'search_modifier_not_notes_ends' => 'The transaction notes do not end with ":value"', + 'search_modifier_notes_is' => 'The transaction notes are exactly ":value"', + 'search_modifier_not_notes_is' => 'The transaction notes are exactly not ":value"', + 'search_modifier_no_notes' => 'The transaction has no notes', + 'search_modifier_not_no_notes' => 'The transaction must have notes', + 'search_modifier_any_notes' => 'The transaction must have notes', + 'search_modifier_not_any_notes' => 'The transaction has no notes', + 'search_modifier_amount_is' => 'Amount is exactly :value', + 'search_modifier_not_amount_is' => 'Amount is not :value', + 'search_modifier_amount_less' => 'Amount is less than or equal to :value', + 'search_modifier_not_amount_more' => 'Amount is less than or equal to :value', + 'search_modifier_amount_more' => 'Amount is more than or equal to :value', + 'search_modifier_not_amount_less' => 'Amount is more than or equal to :value', + 'search_modifier_source_account_is' => 'Source account name is exactly ":value"', + 'search_modifier_not_source_account_is' => 'Source account name is not ":value"', + 'search_modifier_source_account_contains' => 'Source account name contains ":value"', + 'search_modifier_not_source_account_contains' => 'Source account name does not contain ":value"', + 'search_modifier_source_account_starts' => 'Source account name starts with ":value"', + 'search_modifier_not_source_account_starts' => 'Source account name does not start with ":value"', + 'search_modifier_source_account_ends' => 'Source account name ends with ":value"', + 'search_modifier_not_source_account_ends' => 'Source account name does not end with ":value"', + 'search_modifier_source_account_id' => 'Source account ID is :value', + 'search_modifier_not_source_account_id' => 'Source account ID is not :value', + 'search_modifier_source_account_nr_is' => 'Source account number (IBAN) is ":value"', + 'search_modifier_not_source_account_nr_is' => 'Source account number (IBAN) is not ":value"', + 'search_modifier_source_account_nr_contains' => 'Source account number (IBAN) contains ":value"', + 'search_modifier_not_source_account_nr_contains' => 'Source account number (IBAN) does not contain ":value"', + 'search_modifier_source_account_nr_starts' => 'Source account number (IBAN) starts with ":value"', + 'search_modifier_not_source_account_nr_starts' => 'Source account number (IBAN) does not start with ":value"', + 'search_modifier_source_account_nr_ends' => 'Source account number (IBAN) ends on ":value"', + 'search_modifier_not_source_account_nr_ends' => 'Source account number (IBAN) does not end on ":value"', + 'search_modifier_destination_account_is' => 'Destination account name is exactly ":value"', + 'search_modifier_not_destination_account_is' => 'Destination account name is not ":value"', + 'search_modifier_destination_account_contains' => 'Destination account name contains ":value"', + 'search_modifier_not_destination_account_contains' => 'Destination account name does not contain ":value"', + 'search_modifier_destination_account_starts' => 'Destination account name starts with ":value"', + 'search_modifier_not_destination_account_starts' => 'Destination account name does not start with ":value"', + 'search_modifier_destination_account_ends' => 'Destination account name ends on ":value"', + 'search_modifier_not_destination_account_ends' => 'Destination account name does not end on ":value"', + 'search_modifier_destination_account_id' => 'Destination account ID is :value', + 'search_modifier_not_destination_account_id' => 'Destination account ID is not :value', + 'search_modifier_destination_is_cash' => 'Destination account is the "(cash)" account', + 'search_modifier_not_destination_is_cash' => 'Destination account is not the "(cash)" account', + 'search_modifier_source_is_cash' => 'Source account is the "(cash)" account', + 'search_modifier_not_source_is_cash' => 'Source account is not the "(cash)" account', + 'search_modifier_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_not_destination_account_nr_is' => 'Destination account number (IBAN) is ":value"', + 'search_modifier_destination_account_nr_contains' => 'Destination account number (IBAN) contains ":value"', + 'search_modifier_not_destination_account_nr_contains' => 'Destination account number (IBAN) does not contain ":value"', + 'search_modifier_destination_account_nr_starts' => 'Destination account number (IBAN) starts with ":value"', + 'search_modifier_not_destination_account_nr_starts' => 'Destination account number (IBAN) does not start with ":value"', + 'search_modifier_destination_account_nr_ends' => 'Destination account number (IBAN) ends with ":value"', + 'search_modifier_not_destination_account_nr_ends' => 'Destination account number (IBAN) does not end with ":value"', + 'search_modifier_account_id' => 'Source or destination account ID\'s is/are: :value', + 'search_modifier_not_account_id' => 'Source or destination account ID\'s is/are not: :value', + 'search_modifier_category_is' => 'Category is ":value"', + 'search_modifier_not_category_is' => 'Category is not ":value"', + 'search_modifier_budget_is' => 'Budget is ":value"', + 'search_modifier_not_budget_is' => 'Budget is not ":value"', + 'search_modifier_bill_is' => 'Bill is ":value"', + 'search_modifier_not_bill_is' => 'Bill is not ":value"', + 'search_modifier_transaction_type' => 'Transaction type is ":value"', + 'search_modifier_not_transaction_type' => 'Transaction type is not ":value"', + 'search_modifier_tag_is' => 'Tag is ":value"', + 'search_modifier_tag_contains' => 'Tag contains ":value"', + 'search_modifier_not_tag_contains' => 'Tag does not contain ":value"', + 'search_modifier_tag_ends' => 'Tag ends with ":value"', + 'search_modifier_tag_starts' => 'Tag starts with ":value"', + 'search_modifier_not_tag_is' => 'No tag is ":value"', + 'search_modifier_date_on_year' => 'Transaction is in year ":value"', + 'search_modifier_not_date_on_year' => 'Transaction is not in year ":value"', + 'search_modifier_date_on_month' => 'Transaction is in month ":value"', + 'search_modifier_not_date_on_month' => 'Transaction is not in month ":value"', + 'search_modifier_date_on_day' => 'Transaction is on day of month ":value"', + 'search_modifier_not_date_on_day' => 'Transaction is not on day of month ":value"', + 'search_modifier_date_before_year' => 'Transaction is before or in year ":value"', + 'search_modifier_date_before_month' => 'Transaction is before or in month ":value"', + 'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"', + 'search_modifier_date_after_year' => 'Transaction is in or after year ":value"', + 'search_modifier_date_after_month' => 'Transaction is in or after month ":value"', + 'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"', // new - 'search_modifier_tag_is_not' => 'No tag is ":value"', - 'search_modifier_not_tag_is_not' => 'Tag is ":value"', - 'search_modifier_account_is' => 'Either account is ":value"', - 'search_modifier_not_account_is' => 'Neither account is ":value"', - 'search_modifier_account_contains' => 'Either account contains ":value"', - 'search_modifier_not_account_contains' => 'Neither account contains ":value"', - 'search_modifier_account_ends' => 'Either account ends with ":value"', - 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', - 'search_modifier_account_starts' => 'Either account starts with ":value"', - 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', - 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', - 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', - 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', - 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', - 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', - 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', - 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', - 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', - 'search_modifier_category_contains' => 'Category contains ":value"', - 'search_modifier_not_category_contains' => 'Category does not contain ":value"', - 'search_modifier_category_ends' => 'Category ends on ":value"', - 'search_modifier_not_category_ends' => 'Category does not end on ":value"', - 'search_modifier_category_starts' => 'Category starts with ":value"', - 'search_modifier_not_category_starts' => 'Category does not start with ":value"', - 'search_modifier_budget_contains' => 'Budget contains ":value"', - 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', - 'search_modifier_budget_ends' => 'Budget ends with ":value"', - 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', - 'search_modifier_budget_starts' => 'Budget starts with ":value"', - 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', - 'search_modifier_bill_contains' => 'Bill contains ":value"', - 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', - 'search_modifier_bill_ends' => 'Bill ends with ":value"', - 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', - 'search_modifier_bill_starts' => 'Bill starts with ":value"', - 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', - 'search_modifier_external_id_contains' => 'External ID contains ":value"', - 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', - 'search_modifier_external_id_ends' => 'External ID ends with ":value"', - 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', - 'search_modifier_external_id_starts' => 'External ID starts with ":value"', - 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', - 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', - 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', - 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', - 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', - 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', - 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', - 'search_modifier_external_url_is' => 'External URL is ":value"', - 'search_modifier_not_external_url_is' => 'External URL is not ":value"', - 'search_modifier_external_url_contains' => 'External URL contains ":value"', - 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', - 'search_modifier_external_url_ends' => 'External URL ends with ":value"', - 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', - 'search_modifier_external_url_starts' => 'External URL starts with ":value"', - 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', - 'search_modifier_has_no_attachments' => 'Transaction has no attachments', - 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', - 'search_modifier_not_has_attachments' => 'Transaction has no attachments', - 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', - 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', - 'search_modifier_journal_id' => 'The journal ID is ":value"', - 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', - 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', - 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', - 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', - 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', - 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', - 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', - 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', - 'search_modifier_exists' => 'Transaction exists (any transaction)', - 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', + 'search_modifier_tag_is_not' => 'No tag is ":value"', + 'search_modifier_not_tag_is_not' => 'Tag is ":value"', + 'search_modifier_account_is' => 'Either account is ":value"', + 'search_modifier_not_account_is' => 'Neither account is ":value"', + 'search_modifier_account_contains' => 'Either account contains ":value"', + 'search_modifier_not_account_contains' => 'Neither account contains ":value"', + 'search_modifier_account_ends' => 'Either account ends with ":value"', + 'search_modifier_not_account_ends' => 'Neither account ends with ":value"', + 'search_modifier_account_starts' => 'Either account starts with ":value"', + 'search_modifier_not_account_starts' => 'Neither account starts with ":value"', + 'search_modifier_account_nr_is' => 'Either account number / IBAN is ":value"', + 'search_modifier_not_account_nr_is' => 'Neither account number / IBAN is ":value"', + 'search_modifier_account_nr_contains' => 'Either account number / IBAN contains ":value"', + 'search_modifier_not_account_nr_contains' => 'Neither account number / IBAN contains ":value"', + 'search_modifier_account_nr_ends' => 'Either account number / IBAN ends with ":value"', + 'search_modifier_not_account_nr_ends' => 'Neither account number / IBAN ends with ":value"', + 'search_modifier_account_nr_starts' => 'Either account number / IBAN starts with ":value"', + 'search_modifier_not_account_nr_starts' => 'Neither account number / IBAN starts with ":value"', + 'search_modifier_category_contains' => 'Category contains ":value"', + 'search_modifier_not_category_contains' => 'Category does not contain ":value"', + 'search_modifier_category_ends' => 'Category ends on ":value"', + 'search_modifier_not_category_ends' => 'Category does not end on ":value"', + 'search_modifier_category_starts' => 'Category starts with ":value"', + 'search_modifier_not_category_starts' => 'Category does not start with ":value"', + 'search_modifier_budget_contains' => 'Budget contains ":value"', + 'search_modifier_not_budget_contains' => 'Budget does not contain ":value"', + 'search_modifier_budget_ends' => 'Budget ends with ":value"', + 'search_modifier_not_budget_ends' => 'Budget does not end on ":value"', + 'search_modifier_budget_starts' => 'Budget starts with ":value"', + 'search_modifier_not_budget_starts' => 'Budget does not start with ":value"', + 'search_modifier_bill_contains' => 'Bill contains ":value"', + 'search_modifier_not_bill_contains' => 'Bill does not contain ":value"', + 'search_modifier_bill_ends' => 'Bill ends with ":value"', + 'search_modifier_not_bill_ends' => 'Bill does not end on ":value"', + 'search_modifier_bill_starts' => 'Bill starts with ":value"', + 'search_modifier_not_bill_starts' => 'Bill does not start with ":value"', + 'search_modifier_external_id_contains' => 'External ID contains ":value"', + 'search_modifier_not_external_id_contains' => 'External ID does not contain ":value"', + 'search_modifier_external_id_ends' => 'External ID ends with ":value"', + 'search_modifier_not_external_id_ends' => 'External ID does not end with ":value"', + 'search_modifier_external_id_starts' => 'External ID starts with ":value"', + 'search_modifier_not_external_id_starts' => 'External ID does not start with ":value"', + 'search_modifier_internal_reference_contains' => 'Internal reference contains ":value"', + 'search_modifier_not_internal_reference_contains' => 'Internal reference does not contain ":value"', + 'search_modifier_internal_reference_ends' => 'Internal reference ends with ":value"', + 'search_modifier_internal_reference_starts' => 'Internal reference starts with ":value"', + 'search_modifier_not_internal_reference_ends' => 'Internal reference does not end with ":value"', + 'search_modifier_not_internal_reference_starts' => 'Internal reference does not start with ":value"', + 'search_modifier_external_url_is' => 'External URL is ":value"', + 'search_modifier_not_external_url_is' => 'External URL is not ":value"', + 'search_modifier_external_url_contains' => 'External URL contains ":value"', + 'search_modifier_not_external_url_contains' => 'External URL does not contain ":value"', + 'search_modifier_external_url_ends' => 'External URL ends with ":value"', + 'search_modifier_not_external_url_ends' => 'External URL does not end with ":value"', + 'search_modifier_external_url_starts' => 'External URL starts with ":value"', + 'search_modifier_not_external_url_starts' => 'External URL does not start with ":value"', + 'search_modifier_has_no_attachments' => 'Transaction has no attachments', + 'search_modifier_not_has_no_attachments' => 'Transaction has attachments', + 'search_modifier_not_has_attachments' => 'Transaction has no attachments', + 'search_modifier_account_is_cash' => 'Either account is the "(cash)" account.', + 'search_modifier_not_account_is_cash' => 'Neither account is the "(cash)" account.', + 'search_modifier_journal_id' => 'The journal ID is ":value"', + 'search_modifier_not_journal_id' => 'The journal ID is not ":value"', + 'search_modifier_recurrence_id' => 'The recurring transaction ID is ":value"', + 'search_modifier_not_recurrence_id' => 'The recurring transaction ID is not ":value"', + 'search_modifier_foreign_amount_is' => 'The foreign amount is ":value"', + 'search_modifier_not_foreign_amount_is' => 'The foreign amount is not ":value"', + 'search_modifier_foreign_amount_less' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_more' => 'The foreign amount is less than ":value"', + 'search_modifier_not_foreign_amount_less' => 'The foreign amount is more than ":value"', + 'search_modifier_foreign_amount_more' => 'The foreign amount is more than ":value"', + 'search_modifier_exists' => 'Transaction exists (any transaction)', + 'search_modifier_not_exists' => 'Transaction does not exist (no transaction)', // date fields - 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', - 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', - 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', - 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', - 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', - 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', - 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', - 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', - 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', - 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', - 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', - 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', - 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', - 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', - 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', - 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', - 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', - 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', - 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', - 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', - 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', - 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', - 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', - 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', - 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', - 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', - 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', - 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', - 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', - 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', - 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', - 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', - 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', - 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', - 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', - 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', - 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', - 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', - 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', - 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', - 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', - 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', - 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', - 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', - 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', - 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', - 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', - 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', - 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', - 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', - 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', - 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', - 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', - 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', - 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', - 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', - 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', - 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', - 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', - 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', - 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', - 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', - 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', - 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', - 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', - 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', - 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', - 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', - 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', - 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', - 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', - 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', - 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', - 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', + 'search_modifier_interest_date_on' => 'Transaction interest date is ":value"', + 'search_modifier_not_interest_date_on' => 'Transaction interest date is not ":value"', + 'search_modifier_interest_date_on_year' => 'Transaction interest date is in year ":value"', + 'search_modifier_not_interest_date_on_year' => 'Transaction interest date is not in year ":value"', + 'search_modifier_interest_date_on_month' => 'Transaction interest date is in month ":value"', + 'search_modifier_not_interest_date_on_month' => 'Transaction interest date is not in month ":value"', + 'search_modifier_interest_date_on_day' => 'Transaction interest date is on day of month ":value"', + 'search_modifier_not_interest_date_on_day' => 'Transaction interest date is not on day of month ":value"', + 'search_modifier_interest_date_before_year' => 'Transaction interest date is before or in year ":value"', + 'search_modifier_interest_date_before_month' => 'Transaction interest date is before or in month ":value"', + 'search_modifier_interest_date_before_day' => 'Transaction interest date is before or on day of month ":value"', + 'search_modifier_interest_date_after_year' => 'Transaction interest date is after or in year ":value"', + 'search_modifier_interest_date_after_month' => 'Transaction interest date is after or in month ":value"', + 'search_modifier_interest_date_after_day' => 'Transaction interest date is after or on day of month ":value"', + 'search_modifier_book_date_on_year' => 'Transaction book date is in year ":value"', + 'search_modifier_book_date_on_month' => 'Transaction book date is in month ":value"', + 'search_modifier_book_date_on_day' => 'Transaction book date is on day of month ":value"', + 'search_modifier_not_book_date_on_year' => 'Transaction book date is not in year ":value"', + 'search_modifier_not_book_date_on_month' => 'Transaction book date is not in month ":value"', + 'search_modifier_not_book_date_on_day' => 'Transaction book date is not on day of month ":value"', + 'search_modifier_book_date_before_year' => 'Transaction book date is before or in year ":value"', + 'search_modifier_book_date_before_month' => 'Transaction book date is before or in month ":value"', + 'search_modifier_book_date_before_day' => 'Transaction book date is before or on day of month ":value"', + 'search_modifier_book_date_after_year' => 'Transaction book date is after or in year ":value"', + 'search_modifier_book_date_after_month' => 'Transaction book date is after or in month ":value"', + 'search_modifier_book_date_after_day' => 'Transaction book date is after or on day of month ":value"', + 'search_modifier_process_date_on_year' => 'Transaction process date is in year ":value"', + 'search_modifier_process_date_on_month' => 'Transaction process date is in month ":value"', + 'search_modifier_process_date_on_day' => 'Transaction process date is on day of month ":value"', + 'search_modifier_not_process_date_on_year' => 'Transaction process date is not in year ":value"', + 'search_modifier_not_process_date_on_month' => 'Transaction process date is not in month ":value"', + 'search_modifier_not_process_date_on_day' => 'Transaction process date is not on day of month ":value"', + 'search_modifier_process_date_before_year' => 'Transaction process date is before or in year ":value"', + 'search_modifier_process_date_before_month' => 'Transaction process date is before or in month ":value"', + 'search_modifier_process_date_before_day' => 'Transaction process date is before or on day of month ":value"', + 'search_modifier_process_date_after_year' => 'Transaction process date is after or in year ":value"', + 'search_modifier_process_date_after_month' => 'Transaction process date is after or in month ":value"', + 'search_modifier_process_date_after_day' => 'Transaction process date is after or on day of month ":value"', + 'search_modifier_due_date_on_year' => 'Transaction due date is in year ":value"', + 'search_modifier_due_date_on_month' => 'Transaction due date is in month ":value"', + 'search_modifier_due_date_on_day' => 'Transaction due date is on day of month ":value"', + 'search_modifier_not_due_date_on_year' => 'Transaction due date is not in year ":value"', + 'search_modifier_not_due_date_on_month' => 'Transaction due date is not in month ":value"', + 'search_modifier_not_due_date_on_day' => 'Transaction due date is not on day of month ":value"', + 'search_modifier_due_date_before_year' => 'Transaction due date is before or in year ":value"', + 'search_modifier_due_date_before_month' => 'Transaction due date is before or in month ":value"', + 'search_modifier_due_date_before_day' => 'Transaction due date is before or on day of month ":value"', + 'search_modifier_due_date_after_year' => 'Transaction due date is after or in year ":value"', + 'search_modifier_due_date_after_month' => 'Transaction due date is after or in month ":value"', + 'search_modifier_due_date_after_day' => 'Transaction due date is after or on day of month ":value"', + 'search_modifier_payment_date_on_year' => 'Transaction payment date is in year ":value"', + 'search_modifier_payment_date_on_month' => 'Transaction payment date is in month ":value"', + 'search_modifier_payment_date_on_day' => 'Transaction payment date is on day of month ":value"', + 'search_modifier_not_payment_date_on_year' => 'Transaction payment date is not in year ":value"', + 'search_modifier_not_payment_date_on_month' => 'Transaction payment date is not in month ":value"', + 'search_modifier_not_payment_date_on_day' => 'Transaction payment date is not on day of month ":value"', + 'search_modifier_payment_date_before_year' => 'Transaction payment date is before or in year ":value"', + 'search_modifier_payment_date_before_month' => 'Transaction payment date is before or in month ":value"', + 'search_modifier_payment_date_before_day' => 'Transaction payment date is before or on day of month ":value"', + 'search_modifier_payment_date_after_year' => 'Transaction payment date is after or in year ":value"', + 'search_modifier_payment_date_after_month' => 'Transaction payment date is after or in month ":value"', + 'search_modifier_payment_date_after_day' => 'Transaction payment date is after or on day of month ":value"', + 'search_modifier_invoice_date_on_year' => 'Transaction invoice date is in year ":value"', + 'search_modifier_invoice_date_on_month' => 'Transaction invoice date is in month ":value"', + 'search_modifier_invoice_date_on_day' => 'Transaction invoice date is on day of month ":value"', + 'search_modifier_not_invoice_date_on_year' => 'Transaction invoice date is not in year ":value"', + 'search_modifier_not_invoice_date_on_month' => 'Transaction invoice date is not in month ":value"', + 'search_modifier_not_invoice_date_on_day' => 'Transaction invoice date is not on day of month ":value"', + 'search_modifier_invoice_date_before_year' => 'Transaction invoice date is before or in year ":value"', + 'search_modifier_invoice_date_before_month' => 'Transaction invoice date is before or in month ":value"', + 'search_modifier_invoice_date_before_day' => 'Transaction invoice date is before or on day of month ":value"', + 'search_modifier_invoice_date_after_year' => 'Transaction invoice date is after or in year ":value"', + 'search_modifier_invoice_date_after_month' => 'Transaction invoice date is after or in month ":value"', + 'search_modifier_invoice_date_after_day' => 'Transaction invoice date is after or on day of month ":value"', // other dates - 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', - 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', - 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', - 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', - 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', - 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', - 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', - 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', - 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', - 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', - 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', - 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', - 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', - 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', - 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', - 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', - 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', - 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', - 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', - 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', - 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', - 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', - 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', - 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', - 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', - 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', - 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', - 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', - 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', - 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', - 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', - 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', - 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', - 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', - 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', - 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', - 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', - 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', - 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', - 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', - 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', - 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', - 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', - 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', - 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', - 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', - 'search_modifier_created_at_on' => 'Transaction was created on ":value"', - 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', - 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', - 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', - 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', - 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', - 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', - 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', + 'search_modifier_updated_at_on_year' => 'Transaction was last updated in year ":value"', + 'search_modifier_updated_at_on_month' => 'Transaction was last updated in month ":value"', + 'search_modifier_updated_at_on_day' => 'Transaction was last updated on day of month ":value"', + 'search_modifier_not_updated_at_on_year' => 'Transaction was not last updated in year ":value"', + 'search_modifier_not_updated_at_on_month' => 'Transaction was not last updated in month ":value"', + 'search_modifier_not_updated_at_on_day' => 'Transaction was not last updated on day of month ":value"', + 'search_modifier_updated_at_before_year' => 'Transaction was last updated in or before year ":value"', + 'search_modifier_updated_at_before_month' => 'Transaction was last updated in or before month ":value"', + 'search_modifier_updated_at_before_day' => 'Transaction was last updated on or before day of month ":value"', + 'search_modifier_updated_at_after_year' => 'Transaction was last updated in or after year ":value"', + 'search_modifier_updated_at_after_month' => 'Transaction was last updated in or after month ":value"', + 'search_modifier_updated_at_after_day' => 'Transaction was last updated on or after day of month ":value"', + 'search_modifier_created_at_on_year' => 'Transaction was created in year ":value"', + 'search_modifier_created_at_on_month' => 'Transaction was created in month ":value"', + 'search_modifier_created_at_on_day' => 'Transaction was created on day of month ":value"', + 'search_modifier_not_created_at_on_year' => 'Transaction was not created in year ":value"', + 'search_modifier_not_created_at_on_month' => 'Transaction was not created in month ":value"', + 'search_modifier_not_created_at_on_day' => 'Transaction was not created on day of month ":value"', + 'search_modifier_created_at_before_year' => 'Transaction was created in or before year ":value"', + 'search_modifier_created_at_before_month' => 'Transaction was created in or before month ":value"', + 'search_modifier_created_at_before_day' => 'Transaction was created on or before day of month ":value"', + 'search_modifier_created_at_after_year' => 'Transaction was created in or after year ":value"', + 'search_modifier_created_at_after_month' => 'Transaction was created in or after month ":value"', + 'search_modifier_created_at_after_day' => 'Transaction was created on or after day of month ":value"', + 'search_modifier_interest_date_before' => 'Transaction interest date is on or before ":value"', + 'search_modifier_interest_date_after' => 'Transaction interest date is on or after ":value"', + 'search_modifier_book_date_on' => 'Transaction book date is on ":value"', + 'search_modifier_not_book_date_on' => 'Transaction book date is not on ":value"', + 'search_modifier_book_date_before' => 'Transaction book date is on or before ":value"', + 'search_modifier_book_date_after' => 'Transaction book date is on or after ":value"', + 'search_modifier_process_date_on' => 'Transaction process date is on ":value"', + 'search_modifier_not_process_date_on' => 'Transaction process date is not on ":value"', + 'search_modifier_process_date_before' => 'Transaction process date is on or before ":value"', + 'search_modifier_process_date_after' => 'Transaction process date is on or after ":value"', + 'search_modifier_due_date_on' => 'Transaction due date is on ":value"', + 'search_modifier_not_due_date_on' => 'Transaction due date is not on ":value"', + 'search_modifier_due_date_before' => 'Transaction due date is on or before ":value"', + 'search_modifier_due_date_after' => 'Transaction due date is on or after ":value"', + 'search_modifier_payment_date_on' => 'Transaction payment date is on ":value"', + 'search_modifier_not_payment_date_on' => 'Transaction payment date is not on ":value"', + 'search_modifier_payment_date_before' => 'Transaction payment date is on or before ":value"', + 'search_modifier_payment_date_after' => 'Transaction payment date is on or after ":value"', + 'search_modifier_invoice_date_on' => 'Transaction invoice date is on ":value"', + 'search_modifier_not_invoice_date_on' => 'Transaction invoice date is not on ":value"', + 'search_modifier_invoice_date_before' => 'Transaction invoice date is on or before ":value"', + 'search_modifier_invoice_date_after' => 'Transaction invoice date is on or after ":value"', + 'search_modifier_created_at_on' => 'Transaction was created on ":value"', + 'search_modifier_not_created_at_on' => 'Transaction was not created on ":value"', + 'search_modifier_created_at_before' => 'Transaction was created on or before ":value"', + 'search_modifier_created_at_after' => 'Transaction was created on or after ":value"', + 'search_modifier_updated_at_on' => 'Transaction was updated on ":value"', + 'search_modifier_not_updated_at_on' => 'Transaction was not updated on ":value"', + 'search_modifier_updated_at_before' => 'Transaction was updated on or before ":value"', + 'search_modifier_updated_at_after' => 'Transaction was updated on or after ":value"', - 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', - 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', - 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', - 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', - 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', - 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', - 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', - 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', - 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', - 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', - 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', - 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', - 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', - 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', - 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', - 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', - 'update_rule_from_query' => 'Update rule ":rule" from search query', - 'create_rule_from_query' => 'Create new rule from search query', - 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', + 'search_modifier_attachment_name_is' => 'Any attachment\'s name is ":value"', + 'search_modifier_attachment_name_contains' => 'Any attachment\'s name contains ":value"', + 'search_modifier_attachment_name_starts' => 'Any attachment\'s name starts with ":value"', + 'search_modifier_attachment_name_ends' => 'Any attachment\'s name ends with ":value"', + 'search_modifier_attachment_notes_are' => 'Any attachment\'s notes are ":value"', + 'search_modifier_attachment_notes_contains' => 'Any attachment\'s notes contain ":value"', + 'search_modifier_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_attachment_notes_ends' => 'Any attachment\'s notes end with ":value"', + 'search_modifier_not_attachment_name_is' => 'Any attachment\'s name is not ":value"', + 'search_modifier_not_attachment_name_contains' => 'Any attachment\'s name does not contain ":value"', + 'search_modifier_not_attachment_name_starts' => 'Any attachment\'s name does not start with ":value"', + 'search_modifier_not_attachment_name_ends' => 'Any attachment\'s name does not end with ":value"', + 'search_modifier_not_attachment_notes_are' => 'Any attachment\'s notes are not ":value"', + 'search_modifier_not_attachment_notes_contains' => 'Any attachment\'s notes do not contain ":value"', + 'search_modifier_not_attachment_notes_starts' => 'Any attachment\'s notes start with ":value"', + 'search_modifier_not_attachment_notes_ends' => 'Any attachment\'s notes do not end with ":value"', + 'search_modifier_sepa_ct_is' => 'SEPA CT is ":value"', + 'update_rule_from_query' => 'Update rule ":rule" from search query', + 'create_rule_from_query' => 'Create new rule from search query', + 'rule_from_search_words' => 'The rule engine has a hard time handling ":string". The suggested rule that fits your search query may give different results. Please verify the rule triggers carefully.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -726,498 +726,498 @@ return [ */ // END - 'modifiers_applies_are' => '搜尋也套用以下條件:', - 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', - 'search_box' => '搜尋', - 'search_box_intro' => '歡迎使用 Firefly III 搜尋功能,請於方框內鍵入搜尋條件。搜尋功能相當厲害,記得查看說明檔。', - 'search_error' => '搜尋時發生錯誤', - 'search_searching' => '正在搜尋...', - 'search_results' => '搜尋結果', + 'modifiers_applies_are' => '搜尋也套用以下條件:', + 'general_search_error' => 'An error occurred while searching. Please check the log files for more information.', + 'search_box' => '搜尋', + 'search_box_intro' => '歡迎使用 Firefly III 搜尋功能,請於方框內鍵入搜尋條件。搜尋功能相當厲害,記得查看說明檔。', + 'search_error' => '搜尋時發生錯誤', + 'search_searching' => '正在搜尋...', + 'search_results' => '搜尋結果', // repeat frequencies: - 'repeat_freq_yearly' => '每年', - 'repeat_freq_half-year' => '每半年', - 'repeat_freq_quarterly' => '每季', - 'repeat_freq_monthly' => '每月', - 'repeat_freq_weekly' => '每週', - 'repeat_freq_daily' => 'daily', - 'daily' => 'daily', - 'weekly' => '每週', - 'quarterly' => '每季', - 'half-year' => '每半年', - 'yearly' => '每年', + 'repeat_freq_yearly' => '每年', + 'repeat_freq_half-year' => '每半年', + 'repeat_freq_quarterly' => '每季', + 'repeat_freq_monthly' => '每月', + 'repeat_freq_weekly' => '每週', + 'repeat_freq_daily' => 'daily', + 'daily' => 'daily', + 'weekly' => '每週', + 'quarterly' => '每季', + 'half-year' => '每半年', + 'yearly' => '每年', // rules - 'is_not_rule_trigger' => 'Not', - 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', - 'show_triggers' => 'Show triggers', - 'show_actions' => 'Show actions', - 'rules' => '規則', - 'rule_name' => '規則名稱', - 'rule_triggers' => '規則觸發於', - 'rule_actions' => '規則將', - 'new_rule' => '新規則', - 'new_rule_group' => '新規則群組', - 'rule_priority_up' => '提高規則優先順序', - 'rule_priority_down' => '降低規則優先順序', - 'make_new_rule_group' => '建立新規則群組', - 'store_new_rule_group' => '儲存新規則群組', - 'created_new_rule_group' => '新規則群組 ":title" 已儲存!', - 'updated_rule_group' => '已成功更新 ":title" 規則群組。', - 'edit_rule_group' => '編輯 ":title" 規則群組', - 'duplicate_rule' => 'Duplicate rule ":title"', - 'rule_copy_of' => 'Copy of ":title"', - 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', - 'delete_rule_group' => '刪除 ":title" 規則群組', - 'deleted_rule_group' => '規則群組 ":title" 已刪除', - 'update_rule_group' => '更新規則群組', - 'no_rules_in_group' => '此群組內沒有規則', - 'move_rule_group_up' => '上移規則群組', - 'move_rule_group_down' => '下移規則群組', - 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', - 'make_new_rule' => '在規則群組 ":title" 中建立新規則', - 'make_new_rule_no_group' => '建立新規則', - 'instructions_rule_from_bill' => '為了媒合交易至您的新帳單 ":name",Firefly III 可以建立一個針對您儲存的每一筆交易且自動啟動的規則。請驗證下方的資訊並儲存規則,讓 Firefly III 自動媒合交易至您的新帳單。', - 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', - 'rule_is_strict' => '嚴謹規則', - 'rule_is_not_strict' => '非嚴謹規則', - 'rule_help_stop_processing' => '勾選此核選方塊時,將不會執行此群組中的後續規則。', - 'rule_help_strict' => '在嚴謹規則中,所有觸發器均須觸發以執行動作。在非嚴謹規則中,任何觸發器即足以執行動作。', - 'rule_help_active' => '未啟用的規則永遠不會觸發。', - 'stored_new_rule' => '已以 ":title" 為標題儲存新規則', - 'deleted_rule' => '已刪除標題為 ":title" 的規則', - 'store_new_rule' => '儲存新規則', - 'updated_rule' => '已更新標題為 ":title" 的規則', - 'default_rule_group_name' => '預設規則', - 'default_rule_group_description' => '所有不屬於特定群組的規則。', - 'trigger' => '觸發器', - 'trigger_value' => '觸發值', - 'stop_processing_other_triggers' => '停止處理其他觸發器', - 'add_rule_trigger' => '新增觸發器', - 'action' => '動作', - 'action_value' => '動作值', - 'stop_executing_other_actions' => '停止處理其他動作', - 'add_rule_action' => '新增動作', - 'edit_rule' => '編輯規則 ":title"', - 'delete_rule' => '刪除規則 ":title"', - 'update_rule' => '更新規則', - 'test_rule_triggers' => '檢視相符交易', - 'warning_no_matching_transactions' => 'No matching transactions found.', - 'warning_no_valid_triggers' => '未提供有效觸發器。', - 'apply_rule_selection' => '將規則 ":title" 套用至您所選的交易', - 'apply_rule_selection_intro' => '規則如 ":title" 一般僅套用至新的或更新後的交易,但您可要求 Firefly III 針對既有的單筆或多筆交易執行規則。在您更新一則規則後,且必須套用該規則至其他交易時,即可使用此功能。', - 'include_transactions_from_accounts' => '包含來自這些帳戶的交易', - 'include' => 'Include?', - 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', - 'execute' => '執行', - 'apply_rule_group_selection' => '將規則群組 ":title" 套用至您所選的交易', - 'apply_rule_group_selection_intro' => '規則群組如 ":title" 一般僅套用至新的或更新後的交易,但您可要求 Firefly III 針對既有的單筆或多筆交易執行規則群組內的規則。在您更新一則規則群組後,且必須套用該群組至其他交易時,即可使用此功能。', - 'applied_rule_group_selection' => '規則群組 ":title" 已套用至您選擇的交易。', + 'is_not_rule_trigger' => 'Not', + 'cannot_fire_inactive_rules' => 'You cannot execute inactive rules.', + 'show_triggers' => 'Show triggers', + 'show_actions' => 'Show actions', + 'rules' => '規則', + 'rule_name' => '規則名稱', + 'rule_triggers' => '規則觸發於', + 'rule_actions' => '規則將', + 'new_rule' => '新規則', + 'new_rule_group' => '新規則群組', + 'rule_priority_up' => '提高規則優先順序', + 'rule_priority_down' => '降低規則優先順序', + 'make_new_rule_group' => '建立新規則群組', + 'store_new_rule_group' => '儲存新規則群組', + 'created_new_rule_group' => '新規則群組 ":title" 已儲存!', + 'updated_rule_group' => '已成功更新 ":title" 規則群組。', + 'edit_rule_group' => '編輯 ":title" 規則群組', + 'duplicate_rule' => 'Duplicate rule ":title"', + 'rule_copy_of' => 'Copy of ":title"', + 'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"', + 'delete_rule_group' => '刪除 ":title" 規則群組', + 'deleted_rule_group' => '規則群組 ":title" 已刪除', + 'update_rule_group' => '更新規則群組', + 'no_rules_in_group' => '此群組內沒有規則', + 'move_rule_group_up' => '上移規則群組', + 'move_rule_group_down' => '下移規則群組', + 'save_rules_by_moving' => 'Save this rule by moving it to another rule group:|Save these rules by moving them to another rule group:', + 'make_new_rule' => '在規則群組 ":title" 中建立新規則', + 'make_new_rule_no_group' => '建立新規則', + 'instructions_rule_from_bill' => '為了媒合交易至您的新帳單 ":name",Firefly III 可以建立一個針對您儲存的每一筆交易且自動啟動的規則。請驗證下方的資訊並儲存規則,讓 Firefly III 自動媒合交易至您的新帳單。', + 'instructions_rule_from_journal' => 'Create a rule based on one of your transactions. Complement or submit the form below.', + 'rule_is_strict' => '嚴謹規則', + 'rule_is_not_strict' => '非嚴謹規則', + 'rule_help_stop_processing' => '勾選此核選方塊時,將不會執行此群組中的後續規則。', + 'rule_help_strict' => '在嚴謹規則中,所有觸發器均須觸發以執行動作。在非嚴謹規則中,任何觸發器即足以執行動作。', + 'rule_help_active' => '未啟用的規則永遠不會觸發。', + 'stored_new_rule' => '已以 ":title" 為標題儲存新規則', + 'deleted_rule' => '已刪除標題為 ":title" 的規則', + 'store_new_rule' => '儲存新規則', + 'updated_rule' => '已更新標題為 ":title" 的規則', + 'default_rule_group_name' => '預設規則', + 'default_rule_group_description' => '所有不屬於特定群組的規則。', + 'trigger' => '觸發器', + 'trigger_value' => '觸發值', + 'stop_processing_other_triggers' => '停止處理其他觸發器', + 'add_rule_trigger' => '新增觸發器', + 'action' => '動作', + 'action_value' => '動作值', + 'stop_executing_other_actions' => '停止處理其他動作', + 'add_rule_action' => '新增動作', + 'edit_rule' => '編輯規則 ":title"', + 'delete_rule' => '刪除規則 ":title"', + 'update_rule' => '更新規則', + 'test_rule_triggers' => '檢視相符交易', + 'warning_no_matching_transactions' => 'No matching transactions found.', + 'warning_no_valid_triggers' => '未提供有效觸發器。', + 'apply_rule_selection' => '將規則 ":title" 套用至您所選的交易', + 'apply_rule_selection_intro' => '規則如 ":title" 一般僅套用至新的或更新後的交易,但您可要求 Firefly III 針對既有的單筆或多筆交易執行規則。在您更新一則規則後,且必須套用該規則至其他交易時,即可使用此功能。', + 'include_transactions_from_accounts' => '包含來自這些帳戶的交易', + 'include' => 'Include?', + 'applied_rule_selection' => '{0} No transactions in your selection were changed by rule ":title".|[1] One transaction in your selection was changed by rule ":title".|[2,*] :count transactions in your selection were changed by rule ":title".', + 'execute' => '執行', + 'apply_rule_group_selection' => '將規則群組 ":title" 套用至您所選的交易', + 'apply_rule_group_selection_intro' => '規則群組如 ":title" 一般僅套用至新的或更新後的交易,但您可要求 Firefly III 針對既有的單筆或多筆交易執行規則群組內的規則。在您更新一則規則群組後,且必須套用該群組至其他交易時,即可使用此功能。', + 'applied_rule_group_selection' => '規則群組 ":title" 已套用至您選擇的交易。', // actions and triggers - 'rule_trigger_store_journal' => '當建立一筆交易', - 'rule_trigger_update_journal' => '當更新一筆交易', - 'rule_trigger_user_action' => '使用者動作為 ":trigger_value"', + 'rule_trigger_store_journal' => '當建立一筆交易', + 'rule_trigger_update_journal' => '當更新一筆交易', + 'rule_trigger_user_action' => '使用者動作為 ":trigger_value"', // OLD values (remove non-doubles later): - 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', - 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', - 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', - 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', - 'rule_trigger_source_account_is_choice' => 'Source account name is..', - 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', - 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', - 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', - 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', - 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', - 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', - 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', - 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', - 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', - 'rule_trigger_account_is_cash_choice' => 'Either account is cash', - 'rule_trigger_account_is_cash' => 'Either account is cash', - 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', - 'rule_trigger_source_is_cash' => 'Source account is (cash) account', - 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', - 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', - 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', - 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', - 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', - 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', - 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', - 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', - 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', - 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', - 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', - 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', - 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', - 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', - 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', - 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', - 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', - 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', - 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', - 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', - 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', - 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', - 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', - 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', - 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', - 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', - 'rule_trigger_transaction_type_choice' => '轉帳類型為…', - 'rule_trigger_transaction_type' => '轉帳類型為 ":trigger_value"', - 'rule_trigger_category_is_choice' => '類別...', - 'rule_trigger_category_is' => '分類為 ":trigger_value"', - 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', - 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', - 'rule_trigger_amount_is_choice' => 'Amount is..', - 'rule_trigger_amount_is' => 'Amount is :trigger_value', - 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', - 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', - 'rule_trigger_description_starts_choice' => '描述以…開頭', - 'rule_trigger_description_starts' => '描述開頭為 ":trigger_value"', - 'rule_trigger_description_ends_choice' => '描述以…作結', - 'rule_trigger_description_ends' => '描述結尾為 ":trigger_value"', - 'rule_trigger_description_contains_choice' => '描述包含…', - 'rule_trigger_description_contains' => '描述包含 ":trigger_value"', - 'rule_trigger_description_is_choice' => '描述是…', - 'rule_trigger_description_is' => '描述為 ":trigger_value"', - 'rule_trigger_date_on_choice' => 'Transaction date is..', - 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', - 'rule_trigger_date_before_choice' => 'Transaction date is before..', - 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', - 'rule_trigger_date_after_choice' => 'Transaction date is after..', - 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', - 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', - 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', - 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', - 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', - 'rule_trigger_budget_is_choice' => '預算為…', - 'rule_trigger_budget_is' => '預算為 ":trigger_value"', - 'rule_trigger_tag_is_choice' => 'Any tag is..', - 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', - 'rule_trigger_tag_contains_choice' => 'Any tag contains..', - 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', - 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', - 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', - 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', - 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', - 'rule_trigger_currency_is_choice' => '轉帳貨幣為…', - 'rule_trigger_currency_is' => '轉帳貨幣為 ":trigger_value"', - 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', - 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', - 'rule_trigger_has_attachments_choice' => '至少有這麼多附加檔案', - 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', - 'rule_trigger_has_no_category_choice' => '無分類', - 'rule_trigger_has_no_category' => '交易沒有分類', - 'rule_trigger_has_any_category_choice' => '有一個 (任何) 分類', - 'rule_trigger_has_any_category' => '交易有一個 (任何) 分類', - 'rule_trigger_has_no_budget_choice' => '沒有預算', - 'rule_trigger_has_no_budget' => '交易沒有預算', - 'rule_trigger_has_any_budget_choice' => '有一個 (任何) 預算', - 'rule_trigger_has_any_budget' => '交易有一個 (任何) 預算', - 'rule_trigger_has_no_bill_choice' => 'Has no bill', - 'rule_trigger_has_no_bill' => 'Transaction has no bill', - 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', - 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', - 'rule_trigger_has_no_tag_choice' => '沒有標籤', - 'rule_trigger_has_no_tag' => '交易沒有標籤', - 'rule_trigger_has_any_tag_choice' => '有一個或多個 (任何) 標籤', - 'rule_trigger_has_any_tag' => '交易有一個或多個 (任何) 標籤', - 'rule_trigger_any_notes_choice' => '有 (任何) 註釋', - 'rule_trigger_any_notes' => '交易有 (任何) 註釋', - 'rule_trigger_no_notes_choice' => '沒有註釋', - 'rule_trigger_no_notes' => '交易沒有註釋', - 'rule_trigger_notes_is_choice' => 'Notes are..', - 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', - 'rule_trigger_notes_contains_choice' => 'Notes contain..', - 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', - 'rule_trigger_notes_starts_choice' => 'Notes start with..', - 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', - 'rule_trigger_notes_ends_choice' => 'Notes end with..', - 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', - 'rule_trigger_bill_is_choice' => 'Bill is..', - 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', - 'rule_trigger_external_id_is_choice' => 'External ID is..', - 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', - 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', - 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', - 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', - 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', - 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', - 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', - 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', - 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', - 'rule_trigger_no_external_url' => 'Transaction has no external URL', - 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', - 'rule_trigger_no_external_id' => 'Transaction has no external ID', - 'rule_trigger_id_choice' => 'Transaction ID is..', - 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', - 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', - 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', + 'rule_trigger_source_account_starts_choice' => 'Source account name starts with..', + 'rule_trigger_source_account_starts' => 'Source account name starts with ":trigger_value"', + 'rule_trigger_source_account_ends_choice' => 'Source account name ends with..', + 'rule_trigger_source_account_ends' => 'Source account name ends with ":trigger_value"', + 'rule_trigger_source_account_is_choice' => 'Source account name is..', + 'rule_trigger_source_account_is' => 'Source account name is ":trigger_value"', + 'rule_trigger_source_account_contains_choice' => 'Source account name contains..', + 'rule_trigger_source_account_contains' => 'Source account name contains ":trigger_value"', + 'rule_trigger_account_id_choice' => 'Either account ID is exactly..', + 'rule_trigger_account_id' => 'Either account ID is exactly :trigger_value', + 'rule_trigger_source_account_id_choice' => 'Source account ID is exactly..', + 'rule_trigger_source_account_id' => 'Source account ID is exactly :trigger_value', + 'rule_trigger_destination_account_id_choice' => 'Destination account ID is exactly..', + 'rule_trigger_destination_account_id' => 'Destination account ID is exactly :trigger_value', + 'rule_trigger_account_is_cash_choice' => 'Either account is cash', + 'rule_trigger_account_is_cash' => 'Either account is cash', + 'rule_trigger_source_is_cash_choice' => 'Source account is (cash) account', + 'rule_trigger_source_is_cash' => 'Source account is (cash) account', + 'rule_trigger_destination_is_cash_choice' => 'Destination account is (cash) account', + 'rule_trigger_destination_is_cash' => 'Destination account is (cash) account', + 'rule_trigger_source_account_nr_starts_choice' => 'Source account number / IBAN starts with..', + 'rule_trigger_source_account_nr_starts' => 'Source account number / IBAN starts with ":trigger_value"', + 'rule_trigger_source_account_nr_ends_choice' => 'Source account number / IBAN ends with..', + 'rule_trigger_source_account_nr_ends' => 'Source account number / IBAN ends with ":trigger_value"', + 'rule_trigger_source_account_nr_is_choice' => 'Source account number / IBAN is..', + 'rule_trigger_source_account_nr_is' => 'Source account number / IBAN is ":trigger_value"', + 'rule_trigger_source_account_nr_contains_choice' => 'Source account number / IBAN contains..', + 'rule_trigger_source_account_nr_contains' => 'Source account number / IBAN contains ":trigger_value"', + 'rule_trigger_destination_account_starts_choice' => 'Destination account name starts with..', + 'rule_trigger_destination_account_starts' => 'Destination account name starts with ":trigger_value"', + 'rule_trigger_destination_account_ends_choice' => 'Destination account name ends with..', + 'rule_trigger_destination_account_ends' => 'Destination account name ends with ":trigger_value"', + 'rule_trigger_destination_account_is_choice' => 'Destination account name is..', + 'rule_trigger_destination_account_is' => 'Destination account name is ":trigger_value"', + 'rule_trigger_destination_account_contains_choice' => 'Destination account name contains..', + 'rule_trigger_destination_account_contains' => 'Destination account name contains ":trigger_value"', + 'rule_trigger_destination_account_nr_starts_choice' => 'Destination account number / IBAN starts with..', + 'rule_trigger_destination_account_nr_starts' => 'Destination account number / IBAN starts with ":trigger_value"', + 'rule_trigger_destination_account_nr_ends_choice' => 'Destination account number / IBAN ends with..', + 'rule_trigger_destination_account_nr_ends' => 'Destination account number / IBAN ends with ":trigger_value"', + 'rule_trigger_destination_account_nr_is_choice' => 'Destination account number / IBAN is..', + 'rule_trigger_destination_account_nr_is' => 'Destination account number / IBAN is ":trigger_value"', + 'rule_trigger_destination_account_nr_contains_choice' => 'Destination account number / IBAN contains..', + 'rule_trigger_destination_account_nr_contains' => 'Destination account number / IBAN contains ":trigger_value"', + 'rule_trigger_transaction_type_choice' => '轉帳類型為…', + 'rule_trigger_transaction_type' => '轉帳類型為 ":trigger_value"', + 'rule_trigger_category_is_choice' => '類別...', + 'rule_trigger_category_is' => '分類為 ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than or equal to ..', + 'rule_trigger_amount_less' => 'Amount is less than or equal to :trigger_value', + 'rule_trigger_amount_is_choice' => 'Amount is..', + 'rule_trigger_amount_is' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than or equal to..', + 'rule_trigger_amount_more' => 'Amount is more than or equal to :trigger_value', + 'rule_trigger_description_starts_choice' => '描述以…開頭', + 'rule_trigger_description_starts' => '描述開頭為 ":trigger_value"', + 'rule_trigger_description_ends_choice' => '描述以…作結', + 'rule_trigger_description_ends' => '描述結尾為 ":trigger_value"', + 'rule_trigger_description_contains_choice' => '描述包含…', + 'rule_trigger_description_contains' => '描述包含 ":trigger_value"', + 'rule_trigger_description_is_choice' => '描述是…', + 'rule_trigger_description_is' => '描述為 ":trigger_value"', + 'rule_trigger_date_on_choice' => 'Transaction date is..', + 'rule_trigger_date_on' => 'Transaction date is ":trigger_value"', + 'rule_trigger_date_before_choice' => 'Transaction date is before..', + 'rule_trigger_date_before' => 'Transaction date is before ":trigger_value"', + 'rule_trigger_date_after_choice' => 'Transaction date is after..', + 'rule_trigger_date_after' => 'Transaction date is after ":trigger_value"', + 'rule_trigger_created_at_on_choice' => 'Transaction was made on..', + 'rule_trigger_created_at_on' => 'Transaction was made on ":trigger_value"', + 'rule_trigger_updated_at_on_choice' => 'Transaction was last edited on..', + 'rule_trigger_updated_at_on' => 'Transaction was last edited on ":trigger_value"', + 'rule_trigger_budget_is_choice' => '預算為…', + 'rule_trigger_budget_is' => '預算為 ":trigger_value"', + 'rule_trigger_tag_is_choice' => 'Any tag is..', + 'rule_trigger_tag_is' => 'Any tag is ":trigger_value"', + 'rule_trigger_tag_contains_choice' => 'Any tag contains..', + 'rule_trigger_tag_contains' => 'Any tag contains ":trigger_value"', + 'rule_trigger_tag_ends_choice' => 'Any tag ends with..', + 'rule_trigger_tag_ends' => 'Any tag ends with ":trigger_value"', + 'rule_trigger_tag_starts_choice' => 'Any tag starts with..', + 'rule_trigger_tag_starts' => 'Any tag starts with ":trigger_value"', + 'rule_trigger_currency_is_choice' => '轉帳貨幣為…', + 'rule_trigger_currency_is' => '轉帳貨幣為 ":trigger_value"', + 'rule_trigger_foreign_currency_is_choice' => 'Transaction foreign currency is..', + 'rule_trigger_foreign_currency_is' => 'Transaction foreign currency is ":trigger_value"', + 'rule_trigger_has_attachments_choice' => '至少有這麼多附加檔案', + 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', + 'rule_trigger_has_no_category_choice' => '無分類', + 'rule_trigger_has_no_category' => '交易沒有分類', + 'rule_trigger_has_any_category_choice' => '有一個 (任何) 分類', + 'rule_trigger_has_any_category' => '交易有一個 (任何) 分類', + 'rule_trigger_has_no_budget_choice' => '沒有預算', + 'rule_trigger_has_no_budget' => '交易沒有預算', + 'rule_trigger_has_any_budget_choice' => '有一個 (任何) 預算', + 'rule_trigger_has_any_budget' => '交易有一個 (任何) 預算', + 'rule_trigger_has_no_bill_choice' => 'Has no bill', + 'rule_trigger_has_no_bill' => 'Transaction has no bill', + 'rule_trigger_has_any_bill_choice' => 'Has a (any) bill', + 'rule_trigger_has_any_bill' => 'Transaction has a (any) bill', + 'rule_trigger_has_no_tag_choice' => '沒有標籤', + 'rule_trigger_has_no_tag' => '交易沒有標籤', + 'rule_trigger_has_any_tag_choice' => '有一個或多個 (任何) 標籤', + 'rule_trigger_has_any_tag' => '交易有一個或多個 (任何) 標籤', + 'rule_trigger_any_notes_choice' => '有 (任何) 註釋', + 'rule_trigger_any_notes' => '交易有 (任何) 註釋', + 'rule_trigger_no_notes_choice' => '沒有註釋', + 'rule_trigger_no_notes' => '交易沒有註釋', + 'rule_trigger_notes_is_choice' => 'Notes are..', + 'rule_trigger_notes_is' => 'Notes are ":trigger_value"', + 'rule_trigger_notes_contains_choice' => 'Notes contain..', + 'rule_trigger_notes_contains' => 'Notes contain ":trigger_value"', + 'rule_trigger_notes_starts_choice' => 'Notes start with..', + 'rule_trigger_notes_starts' => 'Notes start with ":trigger_value"', + 'rule_trigger_notes_ends_choice' => 'Notes end with..', + 'rule_trigger_notes_ends' => 'Notes end with ":trigger_value"', + 'rule_trigger_bill_is_choice' => 'Bill is..', + 'rule_trigger_bill_is' => 'Bill is ":trigger_value"', + 'rule_trigger_external_id_is_choice' => 'External ID is..', + 'rule_trigger_external_id_is' => 'External ID is ":trigger_value"', + 'rule_trigger_internal_reference_is_choice' => 'Internal reference is..', + 'rule_trigger_internal_reference_is' => 'Internal reference is ":trigger_value"', + 'rule_trigger_journal_id_choice' => 'Transaction journal ID is..', + 'rule_trigger_journal_id' => 'Transaction journal ID is ":trigger_value"', + 'rule_trigger_any_external_url' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_url_choice' => 'Transaction has an (any) external URL', + 'rule_trigger_any_external_id' => 'Transaction has an (any) external ID', + 'rule_trigger_any_external_id_choice' => 'Transaction has an (any) external ID', + 'rule_trigger_no_external_url_choice' => 'Transaction has no external URL', + 'rule_trigger_no_external_url' => 'Transaction has no external URL', + 'rule_trigger_no_external_id_choice' => 'Transaction has no external ID', + 'rule_trigger_no_external_id' => 'Transaction has no external ID', + 'rule_trigger_id_choice' => 'Transaction ID is..', + 'rule_trigger_id' => 'Transaction ID is ":trigger_value"', + 'rule_trigger_sepa_ct_is_choice' => 'SEPA CT is..', + 'rule_trigger_sepa_ct_is' => 'SEPA CT is ":trigger_value"', // new values: - 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', - 'rule_trigger_tag_is_not_choice' => 'No tag is..', - 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', - 'rule_trigger_account_is_choice' => 'Either account is exactly..', - 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', - 'rule_trigger_account_contains_choice' => 'Either account contains..', - 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', - 'rule_trigger_account_ends_choice' => 'Either account ends with..', - 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', - 'rule_trigger_account_starts_choice' => 'Either account starts with..', - 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', - 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', - 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', - 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', - 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', - 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', - 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', - 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', - 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', - 'rule_trigger_category_contains_choice' => 'Category contains..', - 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', - 'rule_trigger_category_ends_choice' => 'Category ends with..', - 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', - 'rule_trigger_category_starts_choice' => 'Category starts with..', - 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', - 'rule_trigger_budget_contains_choice' => 'Budget contains..', - 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', - 'rule_trigger_budget_ends_choice' => 'Budget ends with..', - 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', - 'rule_trigger_budget_starts_choice' => 'Budget starts with..', - 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', - 'rule_trigger_bill_contains_choice' => 'Bill contains..', - 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', - 'rule_trigger_bill_ends_choice' => 'Bill ends with..', - 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', - 'rule_trigger_bill_starts_choice' => 'Bill starts with..', - 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', - 'rule_trigger_external_id_contains_choice' => 'External ID contains..', - 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', - 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', - 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', - 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', - 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', - 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', - 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', - 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', - 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', - 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', - 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', - 'rule_trigger_external_url_is_choice' => 'External URL is..', - 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', - 'rule_trigger_external_url_contains_choice' => 'External URL contains..', - 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', - 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', - 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', - 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', - 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', - 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', - 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', - 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', - 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', - 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', - 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', - 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', - 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', - 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', - 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', - 'rule_trigger_book_date_on_choice' => 'Book date is on..', - 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', - 'rule_trigger_book_date_before_choice' => 'Book date is before..', - 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', - 'rule_trigger_book_date_after_choice' => 'Book date is after..', - 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', - 'rule_trigger_process_date_on_choice' => 'Process date is on..', - 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', - 'rule_trigger_process_date_before_choice' => 'Process date is before..', - 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', - 'rule_trigger_process_date_after_choice' => 'Process date is after..', - 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', - 'rule_trigger_due_date_on_choice' => 'Due date is on..', - 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', - 'rule_trigger_due_date_before_choice' => 'Due date is before..', - 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', - 'rule_trigger_due_date_after_choice' => 'Due date is after..', - 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', - 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', - 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', - 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', - 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', - 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', - 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', - 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', - 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', - 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', - 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', - 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', - 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', - 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', - 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', - 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', - 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', - 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', - 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', - 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', - 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', - 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', - 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', - 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', - 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', - 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', - 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', - 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', - 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', - 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', - 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', - 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', - 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', - 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', - 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', - 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', - 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', - 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', - 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', - 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', - 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', - 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', - 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', - 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', - 'rule_trigger_reconciled' => 'Transaction is reconciled', - 'rule_trigger_exists_choice' => 'Any transaction matches(!)', - 'rule_trigger_exists' => 'Any transaction matches', + 'rule_trigger_user_action_choice' => 'User action is ":trigger_value"', + 'rule_trigger_tag_is_not_choice' => 'No tag is..', + 'rule_trigger_tag_is_not' => 'No tag is ":trigger_value"', + 'rule_trigger_account_is_choice' => 'Either account is exactly..', + 'rule_trigger_account_is' => 'Either account is exactly ":trigger_value"', + 'rule_trigger_account_contains_choice' => 'Either account contains..', + 'rule_trigger_account_contains' => 'Either account contains ":trigger_value"', + 'rule_trigger_account_ends_choice' => 'Either account ends with..', + 'rule_trigger_account_ends' => 'Either account ends with ":trigger_value"', + 'rule_trigger_account_starts_choice' => 'Either account starts with..', + 'rule_trigger_account_starts' => 'Either account starts with ":trigger_value"', + 'rule_trigger_account_nr_is_choice' => 'Either account number / IBAN is..', + 'rule_trigger_account_nr_is' => 'Either account number / IBAN is ":trigger_value"', + 'rule_trigger_account_nr_contains_choice' => 'Either account number / IBAN contains..', + 'rule_trigger_account_nr_contains' => 'Either account number / IBAN contains ":trigger_value"', + 'rule_trigger_account_nr_ends_choice' => 'Either account number / IBAN ends with..', + 'rule_trigger_account_nr_ends' => 'Either account number / IBAN ends with ":trigger_value"', + 'rule_trigger_account_nr_starts_choice' => 'Either account number / IBAN starts with..', + 'rule_trigger_account_nr_starts' => 'Either account number / IBAN starts with ":trigger_value"', + 'rule_trigger_category_contains_choice' => 'Category contains..', + 'rule_trigger_category_contains' => 'Category contains ":trigger_value"', + 'rule_trigger_category_ends_choice' => 'Category ends with..', + 'rule_trigger_category_ends' => 'Category ends with ":trigger_value"', + 'rule_trigger_category_starts_choice' => 'Category starts with..', + 'rule_trigger_category_starts' => 'Category starts with ":trigger_value"', + 'rule_trigger_budget_contains_choice' => 'Budget contains..', + 'rule_trigger_budget_contains' => 'Budget contains ":trigger_value"', + 'rule_trigger_budget_ends_choice' => 'Budget ends with..', + 'rule_trigger_budget_ends' => 'Budget ends with ":trigger_value"', + 'rule_trigger_budget_starts_choice' => 'Budget starts with..', + 'rule_trigger_budget_starts' => 'Budget starts with ":trigger_value"', + 'rule_trigger_bill_contains_choice' => 'Bill contains..', + 'rule_trigger_bill_contains' => 'Bill contains ":trigger_value"', + 'rule_trigger_bill_ends_choice' => 'Bill ends with..', + 'rule_trigger_bill_ends' => 'Bill ends with ":trigger_value"', + 'rule_trigger_bill_starts_choice' => 'Bill starts with..', + 'rule_trigger_bill_starts' => 'Bill starts with ":trigger_value"', + 'rule_trigger_external_id_contains_choice' => 'External ID contains..', + 'rule_trigger_external_id_contains' => 'External ID contains ":trigger_value"', + 'rule_trigger_external_id_ends_choice' => 'External ID ends with..', + 'rule_trigger_external_id_ends' => 'External ID ends with ":trigger_value"', + 'rule_trigger_external_id_starts_choice' => 'External ID starts with..', + 'rule_trigger_external_id_starts' => 'External ID starts with ":trigger_value"', + 'rule_trigger_internal_reference_contains_choice' => 'Internal reference contains..', + 'rule_trigger_internal_reference_contains' => 'Internal reference contains ":trigger_value"', + 'rule_trigger_internal_reference_ends_choice' => 'Internal reference ends with..', + 'rule_trigger_internal_reference_ends' => 'Internal reference ends with ":trigger_value"', + 'rule_trigger_internal_reference_starts_choice' => 'Internal reference starts with..', + 'rule_trigger_internal_reference_starts' => 'Internal reference starts with ":trigger_value"', + 'rule_trigger_external_url_is_choice' => 'External URL is..', + 'rule_trigger_external_url_is' => 'External URL is ":trigger_value"', + 'rule_trigger_external_url_contains_choice' => 'External URL contains..', + 'rule_trigger_external_url_contains' => 'External URL contains ":trigger_value"', + 'rule_trigger_external_url_ends_choice' => 'External URL ends with..', + 'rule_trigger_external_url_ends' => 'External URL ends with ":trigger_value"', + 'rule_trigger_external_url_starts_choice' => 'External URL starts with..', + 'rule_trigger_external_url_starts' => 'External URL starts with ":trigger_value"', + 'rule_trigger_has_no_attachments_choice' => 'Has no attachments', + 'rule_trigger_has_no_attachments' => 'Transaction has no attachments', + 'rule_trigger_recurrence_id_choice' => 'Recurring transaction ID is..', + 'rule_trigger_recurrence_id' => 'Recurring transaction ID is ":trigger_value"', + 'rule_trigger_interest_date_on_choice' => 'Interest date is on..', + 'rule_trigger_interest_date_on' => 'Interest date is on ":trigger_value"', + 'rule_trigger_interest_date_before_choice' => 'Interest date is before..', + 'rule_trigger_interest_date_before' => 'Interest date is before ":trigger_value"', + 'rule_trigger_interest_date_after_choice' => 'Interest date is after..', + 'rule_trigger_interest_date_after' => 'Interest date is after ":trigger_value"', + 'rule_trigger_book_date_on_choice' => 'Book date is on..', + 'rule_trigger_book_date_on' => 'Book date is on ":trigger_value"', + 'rule_trigger_book_date_before_choice' => 'Book date is before..', + 'rule_trigger_book_date_before' => 'Book date is before ":trigger_value"', + 'rule_trigger_book_date_after_choice' => 'Book date is after..', + 'rule_trigger_book_date_after' => 'Book date is after ":trigger_value"', + 'rule_trigger_process_date_on_choice' => 'Process date is on..', + 'rule_trigger_process_date_on' => 'Process date is ":trigger_value"', + 'rule_trigger_process_date_before_choice' => 'Process date is before..', + 'rule_trigger_process_date_before' => 'Process date is before ":trigger_value"', + 'rule_trigger_process_date_after_choice' => 'Process date is after..', + 'rule_trigger_process_date_after' => 'Process date is after ":trigger_value"', + 'rule_trigger_due_date_on_choice' => 'Due date is on..', + 'rule_trigger_due_date_on' => 'Due date is on ":trigger_value"', + 'rule_trigger_due_date_before_choice' => 'Due date is before..', + 'rule_trigger_due_date_before' => 'Due date is before ":trigger_value"', + 'rule_trigger_due_date_after_choice' => 'Due date is after..', + 'rule_trigger_due_date_after' => 'Due date is after ":trigger_value"', + 'rule_trigger_payment_date_on_choice' => 'Payment date is on..', + 'rule_trigger_payment_date_on' => 'Payment date is on ":trigger_value"', + 'rule_trigger_payment_date_before_choice' => 'Payment date is before..', + 'rule_trigger_payment_date_before' => 'Payment date is before ":trigger_value"', + 'rule_trigger_payment_date_after_choice' => 'Payment date is after..', + 'rule_trigger_payment_date_after' => 'Payment date is after ":trigger_value"', + 'rule_trigger_invoice_date_on_choice' => 'Invoice date is on..', + 'rule_trigger_invoice_date_on' => 'Invoice date is on ":trigger_value"', + 'rule_trigger_invoice_date_before_choice' => 'Invoice date is before..', + 'rule_trigger_invoice_date_before' => 'Invoice date is before ":trigger_value"', + 'rule_trigger_invoice_date_after_choice' => 'Invoice date is after..', + 'rule_trigger_invoice_date_after' => 'Invoice date is after ":trigger_value"', + 'rule_trigger_created_at_before_choice' => 'Transaction was created before..', + 'rule_trigger_created_at_before' => 'Transaction was created before ":trigger_value"', + 'rule_trigger_created_at_after_choice' => 'Transaction was created after..', + 'rule_trigger_created_at_after' => 'Transaction was created after ":trigger_value"', + 'rule_trigger_updated_at_before_choice' => 'Transaction was last updated before..', + 'rule_trigger_updated_at_before' => 'Transaction was last updated before ":trigger_value"', + 'rule_trigger_updated_at_after_choice' => 'Transaction was last updated after..', + 'rule_trigger_updated_at_after' => 'Transaction was last updated after ":trigger_value"', + 'rule_trigger_foreign_amount_is_choice' => 'Foreign amount is exactly..', + 'rule_trigger_foreign_amount_is' => 'Foreign amount is exactly ":trigger_value"', + 'rule_trigger_foreign_amount_less_choice' => 'Foreign amount is less than..', + 'rule_trigger_foreign_amount_less' => 'Foreign amount is less than ":trigger_value"', + 'rule_trigger_foreign_amount_more_choice' => 'Foreign amount is more than..', + 'rule_trigger_foreign_amount_more' => 'Foreign amount is more than ":trigger_value"', + 'rule_trigger_attachment_name_is_choice' => 'Any attachment\'s name is..', + 'rule_trigger_attachment_name_is' => 'Any attachment\'s name is ":trigger_value"', + 'rule_trigger_attachment_name_contains_choice' => 'Any attachment\'s name contains..', + 'rule_trigger_attachment_name_contains' => 'Any attachment\'s name contains ":trigger_value"', + 'rule_trigger_attachment_name_starts_choice' => 'Any attachment\'s name starts with..', + 'rule_trigger_attachment_name_starts' => 'Any attachment\'s name starts with ":trigger_value"', + 'rule_trigger_attachment_name_ends_choice' => 'Any attachment\'s name ends with..', + 'rule_trigger_attachment_name_ends' => 'Any attachment\'s name ends with ":trigger_value"', + 'rule_trigger_attachment_notes_are_choice' => 'Any attachment\'s notes are..', + 'rule_trigger_attachment_notes_are' => 'Any attachment\'s notes are ":trigger_value"', + 'rule_trigger_attachment_notes_contains_choice' => 'Any attachment\'s notes contain..', + 'rule_trigger_attachment_notes_contains' => 'Any attachment\'s notes contain ":trigger_value"', + 'rule_trigger_attachment_notes_starts_choice' => 'Any attachment\'s notes start with..', + 'rule_trigger_attachment_notes_starts' => 'Any attachment\'s notes start with ":trigger_value"', + 'rule_trigger_attachment_notes_ends_choice' => 'Any attachment\'s notes end with..', + 'rule_trigger_attachment_notes_ends' => 'Any attachment\'s notes end with ":trigger_value"', + 'rule_trigger_reconciled_choice' => 'Transaction is reconciled', + 'rule_trigger_reconciled' => 'Transaction is reconciled', + 'rule_trigger_exists_choice' => 'Any transaction matches(!)', + 'rule_trigger_exists' => 'Any transaction matches', // more values for new types: - 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', - 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', - 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', - 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', - 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', - 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', - 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', - 'rule_trigger_not_description_contains' => 'Description does not contain', - 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', - 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', - 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', - 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', - 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', - 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', - 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', - 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', - 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', - 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', - 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', - 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', - 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', - 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', - 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', - 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', - 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', - 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', - 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', - 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', - 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', - 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', - 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', - 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', - 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', - 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', - 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', - 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', - 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', - 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', - 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', - 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', - 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', - 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', - 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', - 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', - 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', - 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', - 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', - 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', - 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', - 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', - 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', - 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', - 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', - 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', - 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', - 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', - 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', - 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', - 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', - 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', - 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', - 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', - 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', - 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', - 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', - 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', - 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', - 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', - 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', - 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', - 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', - 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', - 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', - 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', - 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', - 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', - 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', - 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', - 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', - 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', - 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', - 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', - 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', - 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', - 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', - 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', - 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', - 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', - 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', - 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', - 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', - 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', - 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', - 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', - 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', - 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', - 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', - 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', - 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', - 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', - 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', - 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', - 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', - 'rule_trigger_not_exists' => 'Transaction does not exist', - 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', - 'rule_trigger_not_has_any_category' => 'Transaction has no category', - 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', - 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', - 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', - 'rule_trigger_not_any_notes' => 'Transaction has no notes', - 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', - 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', - 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', - 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', - 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', + 'rule_trigger_not_account_id' => 'Account ID is not ":trigger_value"', + 'rule_trigger_not_source_account_id' => 'Source account ID is not ":trigger_value"', + 'rule_trigger_not_destination_account_id' => 'Destination account ID is not ":trigger_value"', + 'rule_trigger_not_transaction_type' => 'Transaction type is not ":trigger_value"', + 'rule_trigger_not_tag_is' => 'Tag is not ":trigger_value"', + 'rule_trigger_not_tag_is_not' => 'Tag is ":trigger_value"', + 'rule_trigger_not_description_is' => 'Description is not ":trigger_value"', + 'rule_trigger_not_description_contains' => 'Description does not contain', + 'rule_trigger_not_description_ends' => 'Description does not end with ":trigger_value"', + 'rule_trigger_not_description_starts' => 'Description does not start with ":trigger_value"', + 'rule_trigger_not_notes_is' => 'Notes are not ":trigger_value"', + 'rule_trigger_not_notes_contains' => 'Notes do not contain ":trigger_value"', + 'rule_trigger_not_notes_ends' => 'Notes do not end on ":trigger_value"', + 'rule_trigger_not_notes_starts' => 'Notes do not start with ":trigger_value"', + 'rule_trigger_not_source_account_is' => 'Source account is not ":trigger_value"', + 'rule_trigger_not_source_account_contains' => 'Source account does not contain ":trigger_value"', + 'rule_trigger_not_source_account_ends' => 'Source account does not end on ":trigger_value"', + 'rule_trigger_not_source_account_starts' => 'Source account does not start with ":trigger_value"', + 'rule_trigger_not_source_account_nr_is' => 'Source account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_source_account_nr_contains' => 'Source account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_source_account_nr_ends' => 'Source account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_source_account_nr_starts' => 'Source account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_is' => 'Destination account is not ":trigger_value"', + 'rule_trigger_not_destination_account_contains' => 'Destination account does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_ends' => 'Destination account does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_starts' => 'Destination account does not start with ":trigger_value"', + 'rule_trigger_not_destination_account_nr_is' => 'Destination account number / IBAN is not ":trigger_value"', + 'rule_trigger_not_destination_account_nr_contains' => 'Destination account number / IBAN does not contain ":trigger_value"', + 'rule_trigger_not_destination_account_nr_ends' => 'Destination account number / IBAN does not end on ":trigger_value"', + 'rule_trigger_not_destination_account_nr_starts' => 'Destination account number / IBAN does not start with ":trigger_value"', + 'rule_trigger_not_account_is' => 'Neither account is ":trigger_value"', + 'rule_trigger_not_account_contains' => 'Neither account contains ":trigger_value"', + 'rule_trigger_not_account_ends' => 'Neither account ends on ":trigger_value"', + 'rule_trigger_not_account_starts' => 'Neither account starts with ":trigger_value"', + 'rule_trigger_not_account_nr_is' => 'Neither account number / IBAN is ":trigger_value"', + 'rule_trigger_not_account_nr_contains' => 'Neither account number / IBAN contains ":trigger_value"', + 'rule_trigger_not_account_nr_ends' => 'Neither account number / IBAN ends on ":trigger_value"', + 'rule_trigger_not_account_nr_starts' => 'Neither account number / IBAN starts with ":trigger_value"', + 'rule_trigger_not_category_is' => 'Category is not ":trigger_value"', + 'rule_trigger_not_category_contains' => 'Category does not contain ":trigger_value"', + 'rule_trigger_not_category_ends' => 'Category does not end on ":trigger_value"', + 'rule_trigger_not_category_starts' => 'Category does not start with ":trigger_value"', + 'rule_trigger_not_budget_is' => 'Budget is not ":trigger_value"', + 'rule_trigger_not_budget_contains' => 'Budget does not contain ":trigger_value"', + 'rule_trigger_not_budget_ends' => 'Budget does not end on ":trigger_value"', + 'rule_trigger_not_budget_starts' => 'Budget does not start with ":trigger_value"', + 'rule_trigger_not_bill_is' => 'Bill is not is ":trigger_value"', + 'rule_trigger_not_bill_contains' => 'Bill does not contain ":trigger_value"', + 'rule_trigger_not_bill_ends' => 'Bill does not end on ":trigger_value"', + 'rule_trigger_not_bill_starts' => 'Bill does not end with ":trigger_value"', + 'rule_trigger_not_external_id_is' => 'External ID is not ":trigger_value"', + 'rule_trigger_not_external_id_contains' => 'External ID does not contain ":trigger_value"', + 'rule_trigger_not_external_id_ends' => 'External ID does not end on ":trigger_value"', + 'rule_trigger_not_external_id_starts' => 'External ID does not start with ":trigger_value"', + 'rule_trigger_not_internal_reference_is' => 'Internal reference is not ":trigger_value"', + 'rule_trigger_not_internal_reference_contains' => 'Internal reference does not contain ":trigger_value"', + 'rule_trigger_not_internal_reference_ends' => 'Internal reference does not end on ":trigger_value"', + 'rule_trigger_not_internal_reference_starts' => 'Internal reference does not start with ":trigger_value"', + 'rule_trigger_not_external_url_is' => 'External URL is not ":trigger_value"', + 'rule_trigger_not_external_url_contains' => 'External URL does not contain ":trigger_value"', + 'rule_trigger_not_external_url_ends' => 'External URL does not end on ":trigger_value"', + 'rule_trigger_not_external_url_starts' => 'External URL does not start with ":trigger_value"', + 'rule_trigger_not_currency_is' => 'Currency is not ":trigger_value"', + 'rule_trigger_not_foreign_currency_is' => 'Foreign currency is not ":trigger_value"', + 'rule_trigger_not_id' => 'Transaction ID is not ":trigger_value"', + 'rule_trigger_not_journal_id' => 'Transaction journal ID is not ":trigger_value"', + 'rule_trigger_not_recurrence_id' => 'Recurrence ID is not ":trigger_value"', + 'rule_trigger_not_date_on' => 'Date is not on ":trigger_value"', + 'rule_trigger_not_date_before' => 'Date is not before ":trigger_value"', + 'rule_trigger_not_date_after' => 'Date is not after ":trigger_value"', + 'rule_trigger_not_interest_date_on' => 'Interest date is not on ":trigger_value"', + 'rule_trigger_not_interest_date_before' => 'Interest date is not before ":trigger_value"', + 'rule_trigger_not_interest_date_after' => 'Interest date is not after ":trigger_value"', + 'rule_trigger_not_book_date_on' => 'Book date is not on ":trigger_value"', + 'rule_trigger_not_book_date_before' => 'Book date is not before ":trigger_value"', + 'rule_trigger_not_book_date_after' => 'Book date is not after ":trigger_value"', + 'rule_trigger_not_process_date_on' => 'Process date is not on ":trigger_value"', + 'rule_trigger_not_process_date_before' => 'Process date is not before ":trigger_value"', + 'rule_trigger_not_process_date_after' => 'Process date is not after ":trigger_value"', + 'rule_trigger_not_due_date_on' => 'Due date is not on ":trigger_value"', + 'rule_trigger_not_due_date_before' => 'Due date is not before ":trigger_value"', + 'rule_trigger_not_due_date_after' => 'Due date is not after ":trigger_value"', + 'rule_trigger_not_payment_date_on' => 'Payment date is not on ":trigger_value"', + 'rule_trigger_not_payment_date_before' => 'Payment date is not before ":trigger_value"', + 'rule_trigger_not_payment_date_after' => 'Payment date is not after ":trigger_value"', + 'rule_trigger_not_invoice_date_on' => 'Invoice date is not on ":trigger_value"', + 'rule_trigger_not_invoice_date_before' => 'Invoice date is not before ":trigger_value"', + 'rule_trigger_not_invoice_date_after' => 'Invoice date is not after ":trigger_value"', + 'rule_trigger_not_created_at_on' => 'Transaction is not created on ":trigger_value"', + 'rule_trigger_not_created_at_before' => 'Transaction is not created before ":trigger_value"', + 'rule_trigger_not_created_at_after' => 'Transaction is not created after ":trigger_value"', + 'rule_trigger_not_updated_at_on' => 'Transaction is not updated on ":trigger_value"', + 'rule_trigger_not_updated_at_before' => 'Transaction is not updated before ":trigger_value"', + 'rule_trigger_not_updated_at_after' => 'Transaction is not updated after ":trigger_value"', + 'rule_trigger_not_amount_is' => 'Transaction amount is not ":trigger_value"', + 'rule_trigger_not_amount_less' => 'Transaction amount is more than ":trigger_value"', + 'rule_trigger_not_amount_more' => 'Transaction amount is less than ":trigger_value"', + 'rule_trigger_not_foreign_amount_is' => 'Foreign transaction amount is not ":trigger_value"', + 'rule_trigger_not_foreign_amount_less' => 'Foreign transaction amount is more than ":trigger_value"', + 'rule_trigger_not_foreign_amount_more' => 'Foreign transaction amount is less than ":trigger_value"', + 'rule_trigger_not_attachment_name_is' => 'No attachment is named ":trigger_value"', + 'rule_trigger_not_attachment_name_contains' => 'No attachment name contains ":trigger_value"', + 'rule_trigger_not_attachment_name_starts' => 'No attachment name starts with ":trigger_value"', + 'rule_trigger_not_attachment_name_ends' => 'No attachment name ends on ":trigger_value"', + 'rule_trigger_not_attachment_notes_are' => 'No attachment notes are ":trigger_value"', + 'rule_trigger_not_attachment_notes_contains' => 'No attachment notes contain ":trigger_value"', + 'rule_trigger_not_attachment_notes_starts' => 'No attachment notes start with ":trigger_value"', + 'rule_trigger_not_attachment_notes_ends' => 'No attachment notes end on ":trigger_value"', + 'rule_trigger_not_reconciled' => 'Transaction is not reconciled', + 'rule_trigger_not_exists' => 'Transaction does not exist', + 'rule_trigger_not_has_attachments' => 'Transaction has no attachments', + 'rule_trigger_not_has_any_category' => 'Transaction has no category', + 'rule_trigger_not_has_any_budget' => 'Transaction has no budget', + 'rule_trigger_not_has_any_bill' => 'Transaction has no bill', + 'rule_trigger_not_has_any_tag' => 'Transaction has no tags', + 'rule_trigger_not_any_notes' => 'Transaction has no notes', + 'rule_trigger_not_any_external_url' => 'Transaction has no external 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_no_notes' => 'Transaction has any notes', + 'rule_trigger_not_no_external_url' => 'Transaction has an external URL', + 'rule_trigger_not_source_is_cash' => 'Source account is not a cash account', + 'rule_trigger_not_destination_is_cash' => 'Destination account is not a cash account', + 'rule_trigger_not_account_is_cash' => 'Neither account is a cash account', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1232,340 +1232,346 @@ return [ // actions // set, clear, add, remove, append/prepend - 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', - 'rule_action_delete_transaction' => 'DELETE transaction(!)', - 'rule_action_set_category' => '設定分類為 ":action_value"', - 'rule_action_clear_category' => '清空分類', - 'rule_action_set_budget' => '設定預算為 ":action_value"', - 'rule_action_clear_budget' => '清空預算', - 'rule_action_add_tag' => '新增標籤 ":action_value"', - 'rule_action_remove_tag' => '移除標籤 ":action_value"', - 'rule_action_remove_all_tags' => '移除所有標籤', - 'rule_action_set_description' => '設定描述為 ":action_value"', - 'rule_action_append_description' => '描述後加上 ":action_value"', - 'rule_action_prepend_description' => '描述前加上 ":action_value"', - 'rule_action_set_category_choice' => 'Set category to ..', - 'rule_action_clear_category_choice' => '清空任何分類', - 'rule_action_set_budget_choice' => 'Set budget to ..', - 'rule_action_clear_budget_choice' => '清空任何預算', - 'rule_action_add_tag_choice' => 'Add tag ..', - 'rule_action_remove_tag_choice' => 'Remove tag ..', - 'rule_action_remove_all_tags_choice' => '移除所有標籤', - 'rule_action_set_description_choice' => 'Set description to ..', - 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', - 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', - '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_source_account' => '將來源帳戶設為 :action_value', - 'rule_action_set_destination_account_choice' => 'Set destination account to ..', - 'rule_action_set_destination_account' => '將目標帳戶設為 :action_value', - 'rule_action_append_notes_choice' => 'Append notes with ..', - 'rule_action_append_notes' => '註釋後加上 ":action_value"', - 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', - 'rule_action_prepend_notes' => '註釋前加上 ":action_value"', - 'rule_action_clear_notes_choice' => '移除任何註釋', - 'rule_action_clear_notes' => '移除任何註釋', - 'rule_action_set_notes_choice' => 'Set notes to ..', - 'rule_action_link_to_bill_choice' => 'Link to a bill ..', - 'rule_action_link_to_bill' => '連結至帳單 ":action_value"', - 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', - 'rule_action_switch_accounts' => 'Switch source and destination', - 'rule_action_set_notes' => '設定註釋至 ":action_value"', - 'rule_action_convert_deposit_choice' => '轉換交易為存款', - 'rule_action_convert_deposit' => '轉換交易至來自 ":action_value" 的存款', - 'rule_action_convert_withdrawal_choice' => '轉換交易至提款', - 'rule_action_convert_withdrawal' => '轉換交易至 ":action_value" 的存款', - 'rule_action_convert_transfer_choice' => '轉換交易至轉帳', - 'rule_action_convert_transfer' => '轉換交易至與 ":action_value" 的轉帳', - 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', - 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', - 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', - 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', - 'rule_action_append_descr_to_notes' => 'Append description to notes', - 'rule_action_append_notes_to_descr' => 'Append notes to description', - 'rule_action_move_descr_to_notes' => 'Replace notes with description', - 'rule_action_move_notes_to_descr' => 'Replace description with notes', - 'rule_action_set_amount_choice' => 'Set amount to ..', - 'rule_action_set_amount' => 'Set amount to ":action_value"', - 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', - 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', - 'rulegroup_for_bills_title' => '供帳單的規則群組', - 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', - 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', - 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', - 'create_rule_for_bill' => '為帳單 ":name" 建立新規則', - 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', - 'new_rule_for_bill_title' => '供帳單 ":name" 的規則', - 'new_rule_for_bill_description' => '此規則標記給帳單 ":name" 的交易。', + 'rule_action_delete_transaction_choice' => 'DELETE transaction(!)', + 'rule_action_delete_transaction' => 'DELETE transaction(!)', + 'rule_action_set_category' => '設定分類為 ":action_value"', + 'rule_action_clear_category' => '清空分類', + 'rule_action_set_budget' => '設定預算為 ":action_value"', + 'rule_action_clear_budget' => '清空預算', + 'rule_action_add_tag' => '新增標籤 ":action_value"', + 'rule_action_remove_tag' => '移除標籤 ":action_value"', + 'rule_action_remove_all_tags' => '移除所有標籤', + 'rule_action_set_description' => '設定描述為 ":action_value"', + 'rule_action_append_description' => '描述後加上 ":action_value"', + 'rule_action_prepend_description' => '描述前加上 ":action_value"', + 'rule_action_set_category_choice' => 'Set category to ..', + 'rule_action_clear_category_choice' => '清空任何分類', + 'rule_action_set_budget_choice' => 'Set budget to ..', + 'rule_action_clear_budget_choice' => '清空任何預算', + 'rule_action_add_tag_choice' => 'Add tag ..', + 'rule_action_remove_tag_choice' => 'Remove tag ..', + 'rule_action_remove_all_tags_choice' => '移除所有標籤', + 'rule_action_set_description_choice' => 'Set description to ..', + 'rule_action_update_piggy_choice' => 'Add / remove transaction amount in piggy bank ..', + 'rule_action_update_piggy' => 'Add / remove transaction amount in piggy bank ":action_value"', + '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_source_account' => '將來源帳戶設為 :action_value', + 'rule_action_set_destination_account_choice' => 'Set destination account to ..', + 'rule_action_set_destination_account' => '將目標帳戶設為 :action_value', + 'rule_action_append_notes_choice' => 'Append notes with ..', + 'rule_action_append_notes' => '註釋後加上 ":action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend notes with ..', + 'rule_action_prepend_notes' => '註釋前加上 ":action_value"', + 'rule_action_clear_notes_choice' => '移除任何註釋', + 'rule_action_clear_notes' => '移除任何註釋', + 'rule_action_set_notes_choice' => 'Set notes to ..', + 'rule_action_link_to_bill_choice' => 'Link to a bill ..', + 'rule_action_link_to_bill' => '連結至帳單 ":action_value"', + 'rule_action_switch_accounts_choice' => 'Switch source and destination accounts (transfers only!)', + 'rule_action_switch_accounts' => 'Switch source and destination', + 'rule_action_set_notes' => '設定註釋至 ":action_value"', + 'rule_action_convert_deposit_choice' => '轉換交易為存款', + 'rule_action_convert_deposit' => '轉換交易至來自 ":action_value" 的存款', + 'rule_action_convert_withdrawal_choice' => '轉換交易至提款', + 'rule_action_convert_withdrawal' => '轉換交易至 ":action_value" 的存款', + 'rule_action_convert_transfer_choice' => '轉換交易至轉帳', + 'rule_action_convert_transfer' => '轉換交易至與 ":action_value" 的轉帳', + 'rule_action_append_descr_to_notes_choice' => 'Append the description to the transaction notes', + 'rule_action_append_notes_to_descr_choice' => 'Append the transaction notes to the description', + 'rule_action_move_descr_to_notes_choice' => 'Replace the current transaction notes with the description', + 'rule_action_move_notes_to_descr_choice' => 'Replace the current description with the transaction notes', + 'rule_action_append_descr_to_notes' => 'Append description to notes', + 'rule_action_append_notes_to_descr' => 'Append notes to description', + 'rule_action_move_descr_to_notes' => 'Replace notes with description', + 'rule_action_move_notes_to_descr' => 'Replace description with notes', + 'rule_action_set_amount_choice' => 'Set amount to ..', + 'rule_action_set_amount' => 'Set amount to ":action_value"', + 'rule_action_set_destination_to_cash_choice' => 'Set destination account to (cash)', + 'rule_action_set_source_to_cash_choice' => 'Set source account to (cash)', + 'rulegroup_for_bills_title' => '供帳單的規則群組', + 'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.', + 'rule_for_bill_title' => 'Auto-generated rule for bill ":name"', + 'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".', + 'create_rule_for_bill' => '為帳單 ":name" 建立新規則', + 'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.', + 'new_rule_for_bill_title' => '供帳單 ":name" 的規則', + 'new_rule_for_bill_description' => '此規則標記給帳單 ":name" 的交易。', - 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', - 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', + 'new_rule_for_journal_title' => 'Rule based on transaction ":description"', + 'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.', // tags - 'store_new_tag' => '儲存新標籤', - 'update_tag' => '更新標籤', - 'no_location_set' => '沒有設定位置。', - 'meta_data' => '中繼資料', - 'location' => '位置', - 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', - 'without_date' => '不含日期', - 'result' => '結果', - 'sums_apply_to_range' => '所有總和均套用至所選範圍', - 'mapbox_api_key' => '若要使用地圖,請自 Mapbox 獲得一組 API 金鑰。開啟您的 .env 檔案並於 MAPBOX_API_KEY= 句後輸入金鑰代碼。', - 'press_object_location' => 'Right click or long press to set the object\'s location.', - 'click_tap_location' => 'Click or tap the map to add a location', - 'clear_location' => '清除位置', - 'delete_all_selected_tags' => 'Delete all selected tags', - 'select_tags_to_delete' => 'Don\'t forget to select some tags.', - 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', - 'create_rule_from_transaction' => 'Create rule based on transaction', - 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', + 'store_new_tag' => '儲存新標籤', + 'update_tag' => '更新標籤', + 'no_location_set' => '沒有設定位置。', + 'meta_data' => '中繼資料', + 'location' => '位置', + 'location_first_split' => 'The location for this transaction can be set on the first split of this transaction.', + 'without_date' => '不含日期', + 'result' => '結果', + 'sums_apply_to_range' => '所有總和均套用至所選範圍', + 'mapbox_api_key' => '若要使用地圖,請自 Mapbox 獲得一組 API 金鑰。開啟您的 .env 檔案並於 MAPBOX_API_KEY= 句後輸入金鑰代碼。', + 'press_object_location' => 'Right click or long press to set the object\'s location.', + 'click_tap_location' => 'Click or tap the map to add a location', + 'clear_location' => '清除位置', + 'delete_all_selected_tags' => 'Delete all selected tags', + 'select_tags_to_delete' => 'Don\'t forget to select some tags.', + 'deleted_x_tags' => 'Deleted :count tag.|Deleted :count tags.', + 'create_rule_from_transaction' => 'Create rule based on transaction', + 'create_recurring_from_transaction' => 'Create recurring transaction based on transaction', // preferences - 'dark_mode_option_browser' => 'Let your browser decide', - 'dark_mode_option_light' => 'Always light', - 'dark_mode_option_dark' => 'Always dark', - 'equal_to_language' => '(equal to language)', - 'dark_mode_preference' => 'Dark mode', - 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', - 'pref_home_screen_accounts' => '主畫面帳戶', - 'pref_home_screen_accounts_help' => '哪些帳戶應該顯示在主頁面上?', - 'pref_view_range' => '檢視範圍', - 'pref_view_range_help' => '部分圖表在此區間為自動群組化,您的預算亦將在此區間群組化,您傾向的區間為何?', - 'pref_1D' => '1 天', - 'pref_1W' => '1 週', - 'pref_1M' => '1 個月', - 'pref_3M' => '3個月 (季)', - 'pref_6M' => '6個月', - 'pref_1Y' => '1年', - 'pref_last365' => 'Last year', - 'pref_last90' => 'Last 90 days', - 'pref_last30' => 'Last 30 days', - 'pref_last7' => 'Last 7 days', - 'pref_YTD' => 'Year to date', - 'pref_QTD' => 'Quarter to date', - 'pref_MTD' => 'Month to date', - 'pref_languages' => '語言', - 'pref_locale' => 'Locale settings', - 'pref_languages_help' => 'Firefly III 支援多種語言,您想顯示哪一種?', - 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', - 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', - 'pref_custom_fiscal_year' => '財政年度設定', - 'pref_custom_fiscal_year_label' => '已啟用', - 'pref_custom_fiscal_year_help' => '有些國家/地區採用的會計年度有別於每年 1 月 1 日至 12 月 31 日,您可開啟此功能並指定財政年度的起迄日。', - 'pref_fiscal_year_start_label' => '財政年度開始日期', - 'pref_two_factor_auth' => '兩步驟驗證', - 'pref_two_factor_auth_help' => '啟用兩步驟驗證 (亦稱為雙重驗證) 可為您的帳號增添一重安全保障,登入時需憑您腦海的記憶 (密碼) 加上一個手持的憑證 (認證碼),認證碼由手機應用程式產生,例如 Authy 或 Google Authenticator。', - 'pref_enable_two_factor_auth' => '啟用兩步驟驗證', - 'pref_two_factor_auth_disabled' => '兩步驟驗證碼已移除並停用', - 'pref_two_factor_auth_remove_it' => '別忘記在您的驗證應用程式上刪除此帳號!', - 'pref_two_factor_auth_code' => '驗證碼', - 'pref_two_factor_auth_code_help' => '使用您手機上的應用程式 (如 Authy 或 Google Authenticator) 掃描 QR 碼並輸入自動產生之代碼。', - 'pref_two_factor_auth_reset_code' => '重設認證碼', - 'pref_two_factor_auth_disable_2fa' => '停用兩步驟驗證', - '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', - '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', - '2fa_already_enabled' => '2-step verification is already enabled.', - 'wrong_mfa_code' => 'This MFA code is not valid.', - 'pref_save_settings' => '儲存設定', - 'saved_preferences' => '偏好設定已儲存!', - 'preferences_general' => '一般', - 'preferences_frontpage' => '主畫面', - 'preferences_security' => '安全性', - 'preferences_layout' => '版面配置', - 'preferences_notifications' => 'Notifications', - 'pref_home_show_deposits' => '在主畫面顯示存款', - 'pref_home_show_deposits_info' => '主畫面已顯示您的支出帳戶,是否亦顯示您的收入帳戶?', - 'pref_home_do_show_deposits' => '是,要顯示', - 'successful_count' => ':count 項成功', - 'list_page_size_title' => '頁面大小', - 'list_page_size_help' => '任何物品 (帳戶、交易…等) 清單在每頁至多顯示此數量', - 'list_page_size_label' => '頁面大小', - 'between_dates' => '(:start 與 :end)', - 'pref_optional_fields_transaction' => '交易的選填欄位', - 'pref_optional_fields_transaction_help' => '建立新交易時,預設不會啟用全部欄位 (以免版面空間不敷應用)。您可在下方啟用您覺得有用的欄位。當然,若欄位本身停用卻已填入資料,則不論設定如何均會顯示。', - 'optional_tj_date_fields' => '日期欄位', - 'optional_tj_other_fields' => 'Other fields', - 'optional_tj_attachment_fields' => '附加檔案欄位', - 'pref_optional_tj_interest_date' => '利率日期', - 'pref_optional_tj_book_date' => '登記日期', - 'pref_optional_tj_process_date' => '處理日期', - 'pref_optional_tj_due_date' => '截止日期', - 'pref_optional_tj_payment_date' => '付款日期', - 'pref_optional_tj_invoice_date' => '發票日期', - 'pref_optional_tj_internal_reference' => '內部參照', - 'pref_optional_tj_notes' => '備註', - 'pref_optional_tj_attachments' => '附加檔案', - 'pref_optional_tj_external_url' => 'External URL', - 'pref_optional_tj_location' => 'Location', - 'pref_optional_tj_links' => 'Transaction links', - 'optional_field_meta_dates' => '日期', - 'optional_field_meta_business' => '商務', - 'optional_field_attachments' => '附加檔案', - 'optional_field_meta_data' => '可選中繼資料', - 'external_url' => 'External URL', - 'pref_notification_bill_reminder' => 'Reminder about expiring bills', - 'pref_notification_new_access_token' => 'Alert when a new API access token is created', - 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', - 'pref_notification_user_login' => 'Alert when you login from a new location', - 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', - 'pref_notifications' => 'Notifications', - 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', - 'slack_webhook_url' => 'Slack Webhook URL', - 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', - 'slack_url_label' => 'Slack "incoming webhook" URL', + 'dark_mode_option_browser' => 'Let your browser decide', + 'dark_mode_option_light' => 'Always light', + 'dark_mode_option_dark' => 'Always dark', + 'equal_to_language' => '(equal to language)', + 'dark_mode_preference' => 'Dark mode', + 'dark_mode_preference_help' => 'Tell Firefly III when to use dark mode.', + 'pref_home_screen_accounts' => '主畫面帳戶', + 'pref_home_screen_accounts_help' => '哪些帳戶應該顯示在主頁面上?', + 'pref_view_range' => '檢視範圍', + 'pref_view_range_help' => '部分圖表在此區間為自動群組化,您的預算亦將在此區間群組化,您傾向的區間為何?', + 'pref_1D' => '1 天', + 'pref_1W' => '1 週', + 'pref_1M' => '1 個月', + 'pref_3M' => '3個月 (季)', + 'pref_6M' => '6個月', + 'pref_1Y' => '1年', + 'pref_last365' => 'Last year', + 'pref_last90' => 'Last 90 days', + 'pref_last30' => 'Last 30 days', + 'pref_last7' => 'Last 7 days', + 'pref_YTD' => 'Year to date', + 'pref_QTD' => 'Quarter to date', + 'pref_MTD' => 'Month to date', + 'pref_languages' => '語言', + 'pref_locale' => 'Locale settings', + 'pref_languages_help' => 'Firefly III 支援多種語言,您想顯示哪一種?', + 'pref_locale_help' => 'Firefly III allows you to set other local settings, like how currencies, numbers and dates are formatted. Entries in this list may not be supported by your system. Firefly III doesn\'t have the correct date settings for every locale; contact me for improvements.', + 'pref_locale_no_demo' => 'This feature won\'t work for the demo user.', + 'pref_custom_fiscal_year' => '財政年度設定', + 'pref_custom_fiscal_year_label' => '已啟用', + 'pref_custom_fiscal_year_help' => '有些國家/地區採用的會計年度有別於每年 1 月 1 日至 12 月 31 日,您可開啟此功能並指定財政年度的起迄日。', + 'pref_fiscal_year_start_label' => '財政年度開始日期', + 'pref_two_factor_auth' => '兩步驟驗證', + 'pref_two_factor_auth_help' => '啟用兩步驟驗證 (亦稱為雙重驗證) 可為您的帳號增添一重安全保障,登入時需憑您腦海的記憶 (密碼) 加上一個手持的憑證 (認證碼),認證碼由手機應用程式產生,例如 Authy 或 Google Authenticator。', + 'pref_enable_two_factor_auth' => '啟用兩步驟驗證', + 'pref_two_factor_auth_disabled' => '兩步驟驗證碼已移除並停用', + 'pref_two_factor_auth_remove_it' => '別忘記在您的驗證應用程式上刪除此帳號!', + 'pref_two_factor_auth_code' => '驗證碼', + 'pref_two_factor_auth_code_help' => '使用您手機上的應用程式 (如 Authy 或 Google Authenticator) 掃描 QR 碼並輸入自動產生之代碼。', + 'pref_two_factor_auth_reset_code' => '重設認證碼', + 'pref_two_factor_auth_disable_2fa' => '停用兩步驟驗證', + '2fa_use_secret_instead' => 'If you cannot scan the QR code, feel free to use the secret instead: :secret.', + '2fa_backup_codes' => 'Store these backup codes for access in case you lose your device.', + '2fa_already_enabled' => '2-step verification is already enabled.', + 'wrong_mfa_code' => 'This MFA code is not valid.', + 'pref_save_settings' => '儲存設定', + 'saved_preferences' => '偏好設定已儲存!', + 'preferences_general' => '一般', + 'preferences_frontpage' => '主畫面', + 'preferences_security' => '安全性', + 'preferences_layout' => '版面配置', + 'preferences_notifications' => 'Notifications', + 'pref_home_show_deposits' => '在主畫面顯示存款', + 'pref_home_show_deposits_info' => '主畫面已顯示您的支出帳戶,是否亦顯示您的收入帳戶?', + 'pref_home_do_show_deposits' => '是,要顯示', + 'successful_count' => ':count 項成功', + 'list_page_size_title' => '頁面大小', + 'list_page_size_help' => '任何物品 (帳戶、交易…等) 清單在每頁至多顯示此數量', + 'list_page_size_label' => '頁面大小', + 'between_dates' => '(:start 與 :end)', + 'pref_optional_fields_transaction' => '交易的選填欄位', + 'pref_optional_fields_transaction_help' => '建立新交易時,預設不會啟用全部欄位 (以免版面空間不敷應用)。您可在下方啟用您覺得有用的欄位。當然,若欄位本身停用卻已填入資料,則不論設定如何均會顯示。', + 'optional_tj_date_fields' => '日期欄位', + 'optional_tj_other_fields' => 'Other fields', + 'optional_tj_attachment_fields' => '附加檔案欄位', + 'pref_optional_tj_interest_date' => '利率日期', + 'pref_optional_tj_book_date' => '登記日期', + 'pref_optional_tj_process_date' => '處理日期', + 'pref_optional_tj_due_date' => '截止日期', + 'pref_optional_tj_payment_date' => '付款日期', + 'pref_optional_tj_invoice_date' => '發票日期', + 'pref_optional_tj_internal_reference' => '內部參照', + 'pref_optional_tj_notes' => '備註', + 'pref_optional_tj_attachments' => '附加檔案', + 'pref_optional_tj_external_url' => 'External URL', + 'pref_optional_tj_location' => 'Location', + 'pref_optional_tj_links' => 'Transaction links', + 'optional_field_meta_dates' => '日期', + 'optional_field_meta_business' => '商務', + 'optional_field_attachments' => '附加檔案', + 'optional_field_meta_data' => '可選中繼資料', + 'external_url' => 'External URL', + 'pref_notification_bill_reminder' => 'Reminder about expiring bills', + 'pref_notification_new_access_token' => 'Alert when a new API access token is created', + 'pref_notification_transaction_creation' => 'Alert when a transaction is created automatically', + 'pref_notification_user_login' => 'Alert when you login from a new location', + 'pref_notification_rule_action_failures' => 'Alert when rule actions fail to execute (Slack or Discord only)', + 'pref_notifications' => 'Notifications', + 'pref_notifications_help' => 'Indicate if these are notifications you would like to get. Some notifications may contain sensitive financial information.', + 'slack_webhook_url' => 'Slack Webhook URL', + 'slack_webhook_url_help' => 'If you want Firefly III to notify you using Slack, enter the webhook URL here. Otherwise leave the field blank. If you are an admin, you need to set this URL in the administration as well.', + 'slack_url_label' => 'Slack "incoming webhook" URL', // Financial administrations - 'administration_index' => 'Financial administration', - 'administrations_index_menu' => 'Financial administration(s)', - 'administrations_breadcrumb' => 'Financial administrations', - 'administrations_page_title' => 'Financial administrations', - 'administrations_page_sub_title' => 'Overview', - 'create_administration' => 'Create new administration', - 'administration_owner' => 'Administration owner: {{email}}', - 'administration_you' => 'Your role: {{role}}', - 'other_users_in_admin' => 'Other users in this administration', + 'administration_index' => 'Financial administration', + 'administrations_index_menu' => 'Financial administration(s)', + 'administrations_breadcrumb' => 'Financial administrations', + 'administrations_page_title' => 'Financial administrations', + 'administrations_page_sub_title' => 'Overview', + 'create_administration' => 'Create new administration', + 'administration_owner' => 'Administration owner: {{email}}', + 'administration_you' => 'Your role: {{role}}', + 'other_users_in_admin' => 'Other users in this administration', + 'administrations_create_breadcrumb' => 'Create new financial administration', + 'administrations_page_create_sub_title' => 'Create new financial administration', + 'basic_administration_information' => 'Basic administration information', + 'new_administration_created' => 'New financial administration "{{title}}" has been created', + 'edit_administration_breadcrumb' => 'Edit financial administration ":title"', + 'administrations_page_edit_sub_title' => 'Edit financial administration ":title"', // roles - 'administration_role_owner' => 'Owner', - 'administration_role_ro' => 'Read-only', - 'administration_role_mng_trx' => 'Manage transactions', - 'administration_role_mng_meta' => 'Manage classification and meta-data', - 'administration_role_mng_budgets' => 'Manage budgets', - 'administration_role_mng_piggies' => 'Manage piggy banks', - 'administration_role_mng_subscriptions' => 'Manage subscriptions', - 'administration_role_mng_rules' => 'Manage rules', - 'administration_role_mng_recurring' => 'Manage recurring transactions ', - 'administration_role_mng_webhooks' => 'Manage webhooks', - 'administration_role_mng_currencies' => 'Manage currencies', - 'administration_role_view_reports' => 'View reports', - 'administration_role_full' => 'Full access', + 'administration_role_owner' => 'Owner', + 'administration_role_ro' => 'Read-only', + 'administration_role_mng_trx' => 'Manage transactions', + 'administration_role_mng_meta' => 'Manage classification and meta-data', + 'administration_role_mng_budgets' => 'Manage budgets', + 'administration_role_mng_piggies' => 'Manage piggy banks', + 'administration_role_mng_subscriptions' => 'Manage subscriptions', + 'administration_role_mng_rules' => 'Manage rules', + 'administration_role_mng_recurring' => 'Manage recurring transactions ', + 'administration_role_mng_webhooks' => 'Manage webhooks', + 'administration_role_mng_currencies' => 'Manage currencies', + 'administration_role_view_reports' => 'View reports', + 'administration_role_full' => 'Full access', // profile: - 'purge_data_title' => 'Purge data from Firefly III', - 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', - 'delete_stuff_header' => 'Delete and purge data', - 'purge_all_data' => 'Purge all deleted records', - 'purge_data' => 'Purge data', - 'purged_all_records' => 'All deleted records have been purged.', - 'delete_data_title' => 'Delete data from Firefly III', - 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', - 'other_sessions_logged_out' => 'All your other sessions have been logged out.', - 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', - 'delete_all_unused_accounts' => 'Delete unused accounts', - 'deleted_all_unused_accounts' => 'All unused accounts are deleted', - 'delete_all_budgets' => 'Delete ALL your budgets', - 'delete_all_categories' => 'Delete ALL your categories', - 'delete_all_tags' => 'Delete ALL your tags', - 'delete_all_bills' => 'Delete ALL your bills', - 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', - 'delete_all_rules' => 'Delete ALL your rules', - 'delete_all_recurring' => 'Delete ALL your recurring transactions', - 'delete_all_object_groups' => 'Delete ALL your object groups', - 'delete_all_accounts' => 'Delete ALL your accounts', - 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', - 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', - 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', - 'delete_all_liabilities' => 'Delete ALL your liabilities', - 'delete_all_transactions' => 'Delete ALL your transactions', - 'delete_all_withdrawals' => 'Delete ALL your withdrawals', - 'delete_all_deposits' => 'Delete ALL your deposits', - 'delete_all_transfers' => 'Delete ALL your transfers', - 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', - 'deleted_all_budgets' => 'All budgets have been deleted', - 'deleted_all_categories' => 'All categories have been deleted', - 'deleted_all_tags' => 'All tags have been deleted', - 'deleted_all_bills' => 'All bills have been deleted', - 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', - 'deleted_all_rules' => 'All rules and rule groups have been deleted', - 'deleted_all_object_groups' => 'All groups have been deleted', - 'deleted_all_accounts' => 'All accounts have been deleted', - 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', - 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', - 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', - 'deleted_all_liabilities' => 'All liabilities have been deleted', - 'deleted_all_transactions' => 'All transactions have been deleted', - 'deleted_all_withdrawals' => 'All withdrawals have been deleted', - 'deleted_all_deposits' => 'All deposits have been deleted', - 'deleted_all_transfers' => 'All transfers have been deleted', - 'deleted_all_recurring' => 'All recurring transactions have been deleted', - 'change_your_password' => '更改您的密碼', - 'delete_account' => '移除帳號', - 'current_password' => '目前密碼', - 'new_password' => '新密碼', - 'new_password_again' => '新密碼 (再輸入一次)', - 'delete_your_account' => '刪除您的帳號', - 'delete_your_account_help' => '刪除您的帳號,將一併刪除任何帳戶、交易,一切 您可能儲存在 Firefly III 上的資料,都將一去不復返。', - 'delete_your_account_password' => '輸入您的密碼以繼續。', - 'password' => '密碼', - 'are_you_sure' => '您確定嗎?您無法還原此操作。', - 'delete_account_button' => '*刪除* 您的帳號', - 'invalid_current_password' => '無效的目前密碼!', - 'password_changed' => '已變更密碼!', - 'should_change' => '建議您變更密碼。', - 'invalid_password' => '無效密碼!', - 'what_is_pw_security' => '何謂 "驗證密碼安全"?', - 'secure_pw_title' => '如何選擇安全的密碼', - 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', - 'secure_pw_history' => '翻閱新聞,屢屢可見有網站遺失使用者密碼,駭客與竊賊利用這些密碼企圖竊取個人資料,這些資訊是有價的。', - 'secure_pw_ff' => '您在網路上都用同一個密碼走天涯嗎?如果一個網站遺失您的密碼,駭客就可存取您所有的資料。Firefly III 倚賴您選擇一個強而獨特的密碼以保護您的財務紀錄。', - 'secure_pw_check_box' => '為此,Firefly III 可協助您檢查選用的密碼過去是否曾被竊取。若然如此,Firefly III 建議您避免使用此密碼。', - 'secure_pw_working_title' => '這是如何運作?', - 'secure_pw_working' => '若您勾選此方塊,Firefly III 將以您的密碼產生一個 SHA1 湊合,並將首 5 個字元傳送到 Troy Hunt 的網站 比對一個清單,避免您使用一些已知不安全的密碼,遵從最近 NIST Special Publication 有關此課題的建議。', - 'secure_pw_should' => '我該勾選此方塊嗎?', - 'secure_pw_long_password' => '是,好以驗證您的密碼是安全的。', - 'command_line_token' => '指令列權杖', - 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', - 'regenerate_command_line_token' => '重新產生指令列權杖', - 'token_regenerated' => '產生了新的指令列權杖', - 'change_your_email' => '更改您的電子郵件地址', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', - 'email_changed_logout' => '在驗證您的電子郵件地址之前,您將無法登入。', - 'login_with_new_email' => '現在,您可以使用新的電子郵件地址登入。', - 'login_with_old_email' => '現在,您可以再次使用舊的電子郵件地址登入。', - 'login_provider_local_only' => '當藉由 ":login_provider" 驗證時,此動作不可用。', - 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', - 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', - 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", - 'oauth' => 'OAuth', - 'profile_oauth_clients' => 'OAuth Clients', - 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', - '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_header' => 'Clients', - 'profile_oauth_client_id' => 'Client ID', - 'profile_oauth_client_name' => 'Name', - 'profile_oauth_client_secret' => 'Secret', - 'profile_oauth_create_new_client' => 'Create New Client', - 'profile_oauth_create_client' => 'Create Client', - 'profile_oauth_edit_client' => 'Edit Client', - 'profile_oauth_name_help' => 'Something your users will recognize and trust.', - 'profile_oauth_redirect_url' => 'Redirect URL', - 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', - 'profile_authorized_apps' => 'Authorized applications', - 'profile_authorized_clients' => 'Authorized clients', - 'profile_scopes' => 'Scopes', - 'profile_revoke' => 'Revoke', - 'profile_oauth_client_secret_title' => 'Client Secret', - 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', - 'profile_personal_access_tokens' => 'Personal Access Tokens', - 'profile_personal_access_token' => 'Personal Access Token', - 'profile_oauth_confidential' => 'Confidential', - 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', - 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', - 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', - 'profile_create_new_token' => 'Create new token', - 'profile_create_token' => 'Create token', - 'profile_create' => 'Create', - 'profile_save_changes' => 'Save changes', - 'profile_whoops' => 'Whoops!', - 'profile_something_wrong' => 'Something went wrong!', - 'profile_try_again' => 'Something went wrong. Please try again.', - 'amounts' => 'Amounts', - 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', - 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', - 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', - 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', + 'purge_data_title' => 'Purge data from Firefly III', + 'purge_data_expl' => '"Purging" means "deleting that which is already deleted". In normal circumstances, Firefly III deletes nothing permanently. It just hides it. The button below deletes all of these previously "deleted" records FOREVER.', + 'delete_stuff_header' => 'Delete and purge data', + 'purge_all_data' => 'Purge all deleted records', + 'purge_data' => 'Purge data', + 'purged_all_records' => 'All deleted records have been purged.', + 'delete_data_title' => 'Delete data from Firefly III', + 'permanent_delete_stuff' => 'You can delete stuff from Firefly III. Using the buttons below means that your items will be removed from view and hidden. There is no undo-button for this, but the items may remain in the database where you can salvage them if necessary.', + 'other_sessions_logged_out' => 'All your other sessions have been logged out.', + 'delete_unused_accounts' => 'Deleting unused accounts will clean your auto-complete lists.', + 'delete_all_unused_accounts' => 'Delete unused accounts', + 'deleted_all_unused_accounts' => 'All unused accounts are deleted', + 'delete_all_budgets' => 'Delete ALL your budgets', + 'delete_all_categories' => 'Delete ALL your categories', + 'delete_all_tags' => 'Delete ALL your tags', + 'delete_all_bills' => 'Delete ALL your bills', + 'delete_all_piggy_banks' => 'Delete ALL your piggy banks', + 'delete_all_rules' => 'Delete ALL your rules', + 'delete_all_recurring' => 'Delete ALL your recurring transactions', + 'delete_all_object_groups' => 'Delete ALL your object groups', + 'delete_all_accounts' => 'Delete ALL your accounts', + 'delete_all_asset_accounts' => 'Delete ALL your asset accounts', + 'delete_all_expense_accounts' => 'Delete ALL your expense accounts', + 'delete_all_revenue_accounts' => 'Delete ALL your revenue accounts', + 'delete_all_liabilities' => 'Delete ALL your liabilities', + 'delete_all_transactions' => 'Delete ALL your transactions', + 'delete_all_withdrawals' => 'Delete ALL your withdrawals', + 'delete_all_deposits' => 'Delete ALL your deposits', + 'delete_all_transfers' => 'Delete ALL your transfers', + 'also_delete_transactions' => 'Deleting accounts will also delete ALL associated withdrawals, deposits and transfers!', + 'deleted_all_budgets' => 'All budgets have been deleted', + 'deleted_all_categories' => 'All categories have been deleted', + 'deleted_all_tags' => 'All tags have been deleted', + 'deleted_all_bills' => 'All bills have been deleted', + 'deleted_all_piggy_banks' => 'All piggy banks have been deleted', + 'deleted_all_rules' => 'All rules and rule groups have been deleted', + 'deleted_all_object_groups' => 'All groups have been deleted', + 'deleted_all_accounts' => 'All accounts have been deleted', + 'deleted_all_asset_accounts' => 'All asset accounts have been deleted', + 'deleted_all_expense_accounts' => 'All expense accounts have been deleted', + 'deleted_all_revenue_accounts' => 'All revenue accounts have been deleted', + 'deleted_all_liabilities' => 'All liabilities have been deleted', + 'deleted_all_transactions' => 'All transactions have been deleted', + 'deleted_all_withdrawals' => 'All withdrawals have been deleted', + 'deleted_all_deposits' => 'All deposits have been deleted', + 'deleted_all_transfers' => 'All transfers have been deleted', + 'deleted_all_recurring' => 'All recurring transactions have been deleted', + 'change_your_password' => '更改您的密碼', + 'delete_account' => '移除帳號', + 'current_password' => '目前密碼', + 'new_password' => '新密碼', + 'new_password_again' => '新密碼 (再輸入一次)', + 'delete_your_account' => '刪除您的帳號', + 'delete_your_account_help' => '刪除您的帳號,將一併刪除任何帳戶、交易,一切 您可能儲存在 Firefly III 上的資料,都將一去不復返。', + 'delete_your_account_password' => '輸入您的密碼以繼續。', + 'password' => '密碼', + 'are_you_sure' => '您確定嗎?您無法還原此操作。', + 'delete_account_button' => '*刪除* 您的帳號', + 'invalid_current_password' => '無效的目前密碼!', + 'password_changed' => '已變更密碼!', + 'should_change' => '建議您變更密碼。', + 'invalid_password' => '無效密碼!', + 'what_is_pw_security' => '何謂 "驗證密碼安全"?', + 'secure_pw_title' => '如何選擇安全的密碼', + 'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.', + 'secure_pw_history' => '翻閱新聞,屢屢可見有網站遺失使用者密碼,駭客與竊賊利用這些密碼企圖竊取個人資料,這些資訊是有價的。', + 'secure_pw_ff' => '您在網路上都用同一個密碼走天涯嗎?如果一個網站遺失您的密碼,駭客就可存取您所有的資料。Firefly III 倚賴您選擇一個強而獨特的密碼以保護您的財務紀錄。', + 'secure_pw_check_box' => '為此,Firefly III 可協助您檢查選用的密碼過去是否曾被竊取。若然如此,Firefly III 建議您避免使用此密碼。', + 'secure_pw_working_title' => '這是如何運作?', + 'secure_pw_working' => '若您勾選此方塊,Firefly III 將以您的密碼產生一個 SHA1 湊合,並將首 5 個字元傳送到 Troy Hunt 的網站 比對一個清單,避免您使用一些已知不安全的密碼,遵從最近 NIST Special Publication 有關此課題的建議。', + 'secure_pw_should' => '我該勾選此方塊嗎?', + 'secure_pw_long_password' => '是,好以驗證您的密碼是安全的。', + 'command_line_token' => '指令列權杖', + 'explain_command_line_token' => 'You need this token to perform command line options, such as exporting data. Without it, that sensitive command will not work. Do not share your command line token. Nobody will ask you for this token, not even me. If you fear you lost this, or when you\'re paranoid, regenerate this token using the button.', + 'regenerate_command_line_token' => '重新產生指令列權杖', + 'token_regenerated' => '產生了新的指令列權杖', + 'change_your_email' => '更改您的電子郵件地址', + 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_changed_logout' => '在驗證您的電子郵件地址之前,您將無法登入。', + 'login_with_new_email' => '現在,您可以使用新的電子郵件地址登入。', + 'login_with_old_email' => '現在,您可以再次使用舊的電子郵件地址登入。', + 'login_provider_local_only' => '當藉由 ":login_provider" 驗證時,此動作不可用。', + 'external_user_mgt_disabled' => 'This action is not available when Firefly III isn\'t responsible for user management or authentication handling.', + 'external_auth_disabled' => 'This action is not available when Firefly III isn\'t responsible for authentication handling.', + 'delete_local_info_only' => "Because Firefly III isn't responsible for user management or authentication handling, this function will only delete local Firefly III information.", + 'oauth' => 'OAuth', + 'profile_oauth_clients' => 'OAuth Clients', + 'profile_oauth_no_clients' => 'You have not created any OAuth clients.', + '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_header' => 'Clients', + 'profile_oauth_client_id' => 'Client ID', + 'profile_oauth_client_name' => 'Name', + 'profile_oauth_client_secret' => 'Secret', + 'profile_oauth_create_new_client' => 'Create New Client', + 'profile_oauth_create_client' => 'Create Client', + 'profile_oauth_edit_client' => 'Edit Client', + 'profile_oauth_name_help' => 'Something your users will recognize and trust.', + 'profile_oauth_redirect_url' => 'Redirect URL', + 'profile_oauth_redirect_url_help' => 'Your application\'s authorization callback URL.', + 'profile_authorized_apps' => 'Authorized applications', + 'profile_authorized_clients' => 'Authorized clients', + 'profile_scopes' => 'Scopes', + 'profile_revoke' => 'Revoke', + 'profile_oauth_client_secret_title' => 'Client Secret', + 'profile_oauth_client_secret_expl' => 'Here is your new client secret. This is the only time it will be shown so don\'t lose it! You may now use this secret to make API requests.', + 'profile_personal_access_tokens' => 'Personal Access Tokens', + 'profile_personal_access_token' => 'Personal Access Token', + 'profile_oauth_confidential' => 'Confidential', + 'profile_oauth_confidential_help' => 'Require the client to authenticate with a secret. Confidential clients can hold credentials in a secure way without exposing them to unauthorized parties. Public applications, such as native desktop or JavaScript SPA applications, are unable to hold secrets securely.', + 'profile_personal_access_token_explanation' => 'Here is your new personal access token. This is the only time it will be shown so don\'t lose it! You may now use this token to make API requests.', + 'profile_no_personal_access_token' => 'You have not created any personal access tokens.', + 'profile_create_new_token' => 'Create new token', + 'profile_create_token' => 'Create token', + 'profile_create' => 'Create', + 'profile_save_changes' => 'Save changes', + 'profile_whoops' => 'Whoops!', + 'profile_something_wrong' => 'Something went wrong!', + 'profile_try_again' => 'Something went wrong. Please try again.', + 'amounts' => 'Amounts', + 'multi_account_warning_unknown' => 'Depending on the type of transaction you create, the source and/or destination account of subsequent splits may be overruled by whatever is defined in the first split of the transaction.', + 'multi_account_warning_withdrawal' => 'Keep in mind that the source account of subsequent splits will be overruled by whatever is defined in the first split of the withdrawal.', + 'multi_account_warning_deposit' => 'Keep in mind that the destination account of subsequent splits will be overruled by whatever is defined in the first split of the deposit.', + 'multi_account_warning_transfer' => 'Keep in mind that the source + destination account of subsequent splits will be overruled by whatever is defined in the first split of the transfer.', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1579,399 +1585,399 @@ return [ */ // export data: - 'export_data_title' => 'Export data from Firefly III', - 'export_data_menu' => 'Export data', - 'export_data_bc' => 'Export data from Firefly III', - 'export_data_main_title' => 'Export data from Firefly III', - 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', - 'export_data_all_transactions' => 'Export all transactions', - 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', + 'export_data_title' => 'Export data from Firefly III', + 'export_data_menu' => 'Export data', + 'export_data_bc' => 'Export data from Firefly III', + 'export_data_main_title' => 'Export data from Firefly III', + 'export_data_expl' => 'This link allows you to export all transactions + meta data from Firefly III. Please refer to the help (top right (?)-icon) for more information about the process.', + 'export_data_all_transactions' => 'Export all transactions', + 'export_data_advanced_expl' => 'If you need a more advanced or specific type of export, read the help on how to use the console command php artisan help firefly-iii:export-data.', // attachments - 'nr_of_attachments' => '̇1 個附加檔案|:count 個附加檔案', - 'attachments' => '附加檔案', - 'edit_attachment' => '編輯附加檔案 ":name"', - 'update_attachment' => '更新附加檔案', - 'delete_attachment' => '刪除附加檔案 ":name"', - 'attachment_deleted' => '已刪除附加檔案 ":name"', - 'liabilities_deleted' => 'Deleted liability ":name"', - 'attachment_updated' => '已更新附加檔案 ":name', - 'upload_max_file_size' => '最大檔案大小: :size', - 'list_all_attachments' => '全部附加檔案清單', + 'nr_of_attachments' => '̇1 個附加檔案|:count 個附加檔案', + 'attachments' => '附加檔案', + 'edit_attachment' => '編輯附加檔案 ":name"', + 'update_attachment' => '更新附加檔案', + 'delete_attachment' => '刪除附加檔案 ":name"', + 'attachment_deleted' => '已刪除附加檔案 ":name"', + 'liabilities_deleted' => 'Deleted liability ":name"', + 'attachment_updated' => '已更新附加檔案 ":name', + 'upload_max_file_size' => '最大檔案大小: :size', + 'list_all_attachments' => '全部附加檔案清單', // transaction index - 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', - 'title_expenses' => '支出', - 'title_withdrawal' => '支出', - 'title_revenue' => '收入', - 'title_deposit' => '收入', - 'title_transfer' => '轉帳', - 'title_transfers' => '轉帳', - 'submission_options' => 'Submission options', - 'apply_rules_checkbox' => 'Apply rules', - 'fire_webhooks_checkbox' => 'Fire webhooks', - 'select_source_account' => 'Please select or type a valid source account name', - 'select_dest_account' => 'Please select or type a valid destination account name', + 'is_reconciled_fields_dropped' => 'Because this transaction is reconciled, you will not be able to update the accounts, nor the amount(s).', + 'title_expenses' => '支出', + 'title_withdrawal' => '支出', + 'title_revenue' => '收入', + 'title_deposit' => '收入', + 'title_transfer' => '轉帳', + 'title_transfers' => '轉帳', + 'submission_options' => 'Submission options', + 'apply_rules_checkbox' => 'Apply rules', + 'fire_webhooks_checkbox' => 'Fire webhooks', + 'select_source_account' => 'Please select or type a valid source account name', + 'select_dest_account' => 'Please select or type a valid destination account name', // convert stuff: - 'convert_is_already_type_Withdrawal' => '此交易已是一筆提款', - 'convert_is_already_type_Deposit' => '此交易已是一筆存款', - 'convert_is_already_type_Transfer' => '此交易已是一筆轉帳', - 'convert_to_Withdrawal' => '轉換 ":description" 成一筆提款', - 'convert_to_Deposit' => '轉換 ":description" 成一筆存款', - 'convert_to_Transfer' => '轉換 ":description" 成一筆轉帳', - 'convert_options_WithdrawalDeposit' => '將一筆提款轉為存款', - 'convert_options_WithdrawalTransfer' => '將一筆提款轉為轉帳', - 'convert_options_DepositTransfer' => '將一筆存款轉為轉帳', - 'convert_options_DepositWithdrawal' => '將一筆存款轉為提款', - 'convert_options_TransferWithdrawal' => '將一筆轉帳轉為提款', - 'convert_options_TransferDeposit' => '將一筆轉帳轉為存款', - 'convert_Withdrawal_to_deposit' => '將此提款轉為存款', - 'convert_Withdrawal_to_transfer' => '將此提款轉為轉帳', - 'convert_Deposit_to_withdrawal' => '將此存款轉為提款', - 'convert_Deposit_to_transfer' => '將此存款轉為轉帳', - 'convert_Transfer_to_deposit' => '將此轉帳轉為存款', - 'convert_Transfer_to_withdrawal' => '將此轉帳轉為提款', - 'convert_please_set_revenue_source' => '請選擇金錢來源的收入帳戶', - 'convert_please_set_asset_destination' => '請選擇金錢要去資產帳戶', - 'convert_please_set_expense_destination' => '請選擇金錢要去的支出帳戶', - 'convert_please_set_asset_source' => '請選擇金錢來源的資產帳戶', - 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', - 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', - 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', - 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', - 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', - 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', - 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', - 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', - 'converted_to_Withdrawal' => '此交易已被轉換為一筆提款', - 'converted_to_Deposit' => '此交易已被轉換為一筆存款', - 'converted_to_Transfer' => '此交易已被轉換為一筆轉帳', - 'invalid_convert_selection' => '您選擇的帳戶已用於此交易或不存在', - 'source_or_dest_invalid' => '找不到正確的交易細節,無法轉換。', - 'convert_to_withdrawal' => '轉換成提款', - 'convert_to_deposit' => '轉換成存款', - 'convert_to_transfer' => '轉換成轉帳', + 'convert_is_already_type_Withdrawal' => '此交易已是一筆提款', + 'convert_is_already_type_Deposit' => '此交易已是一筆存款', + 'convert_is_already_type_Transfer' => '此交易已是一筆轉帳', + 'convert_to_Withdrawal' => '轉換 ":description" 成一筆提款', + 'convert_to_Deposit' => '轉換 ":description" 成一筆存款', + 'convert_to_Transfer' => '轉換 ":description" 成一筆轉帳', + 'convert_options_WithdrawalDeposit' => '將一筆提款轉為存款', + 'convert_options_WithdrawalTransfer' => '將一筆提款轉為轉帳', + 'convert_options_DepositTransfer' => '將一筆存款轉為轉帳', + 'convert_options_DepositWithdrawal' => '將一筆存款轉為提款', + 'convert_options_TransferWithdrawal' => '將一筆轉帳轉為提款', + 'convert_options_TransferDeposit' => '將一筆轉帳轉為存款', + 'convert_Withdrawal_to_deposit' => '將此提款轉為存款', + 'convert_Withdrawal_to_transfer' => '將此提款轉為轉帳', + 'convert_Deposit_to_withdrawal' => '將此存款轉為提款', + 'convert_Deposit_to_transfer' => '將此存款轉為轉帳', + 'convert_Transfer_to_deposit' => '將此轉帳轉為存款', + 'convert_Transfer_to_withdrawal' => '將此轉帳轉為提款', + 'convert_please_set_revenue_source' => '請選擇金錢來源的收入帳戶', + 'convert_please_set_asset_destination' => '請選擇金錢要去資產帳戶', + 'convert_please_set_expense_destination' => '請選擇金錢要去的支出帳戶', + 'convert_please_set_asset_source' => '請選擇金錢來源的資產帳戶', + 'convert_expl_w_d' => 'When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination account, instead of being withdrawn from it.|When converting from a withdrawal to a deposit, the money will be deposited into the displayed destination accounts, instead of being withdrawn from them.', + 'convert_expl_w_t' => 'When converting a withdrawal into a transfer, the money will be transferred away from the source account into other asset or liability account instead of being spent on the original expense account.|When converting a withdrawal into a transfer, the money will be transferred away from the source accounts into other asset or liability accounts instead of being spent on the original expense accounts.', + 'convert_expl_d_w' => 'When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source account, instead of being deposited into it.|When converting a deposit into a withdrawal, the money will be withdrawn from the displayed source accounts, instead of being deposited into them.', + 'convert_expl_d_t' => 'When you convert a deposit into a transfer, the money will be deposited into the listed destination account from any of your asset or liability account.|When you convert a deposit into a transfer, the money will be deposited into the listed destination accounts from any of your asset or liability accounts.', + 'convert_expl_t_w' => 'When you convert a transfer into a withdrawal, the money will be spent on the destination account you set here, instead of being transferred away.|When you convert a transfer into a withdrawal, the money will be spent on the destination accounts you set here, instead of being transferred away.', + 'convert_expl_t_d' => 'When you convert a transfer into a deposit, the money will be deposited into the destination account you see here, instead of being transferred into it.|When you convert a transfer into a deposit, the money will be deposited into the destination accounts you see here, instead of being transferred into them.', + 'convert_select_sources' => 'To complete the conversion, please set the new source account below.|To complete the conversion, please set the new source accounts below.', + 'convert_select_destinations' => 'To complete the conversion, please select the new destination account below.|To complete the conversion, please select the new destination accounts below.', + 'converted_to_Withdrawal' => '此交易已被轉換為一筆提款', + 'converted_to_Deposit' => '此交易已被轉換為一筆存款', + 'converted_to_Transfer' => '此交易已被轉換為一筆轉帳', + 'invalid_convert_selection' => '您選擇的帳戶已用於此交易或不存在', + 'source_or_dest_invalid' => '找不到正確的交易細節,無法轉換。', + 'convert_to_withdrawal' => '轉換成提款', + 'convert_to_deposit' => '轉換成存款', + 'convert_to_transfer' => '轉換成轉帳', // create new stuff: - 'create_new_withdrawal' => '建立新提款', - 'create_new_deposit' => '建立新存款', - 'create_new_transfer' => '建立新轉帳', - 'create_new_asset' => '建立新資產帳戶', - 'create_new_liabilities' => 'Create new liability', - 'create_new_expense' => '建立新支出帳戶', - 'create_new_revenue' => '建立新收入帳戶', - 'create_new_piggy_bank' => '建立新小豬撲滿', - 'create_new_bill' => '建立新帳單', - 'create_new_subscription' => 'Create new subscription', - 'create_new_rule' => 'Create new rule', + 'create_new_withdrawal' => '建立新提款', + 'create_new_deposit' => '建立新存款', + 'create_new_transfer' => '建立新轉帳', + 'create_new_asset' => '建立新資產帳戶', + 'create_new_liabilities' => 'Create new liability', + 'create_new_expense' => '建立新支出帳戶', + 'create_new_revenue' => '建立新收入帳戶', + 'create_new_piggy_bank' => '建立新小豬撲滿', + 'create_new_bill' => '建立新帳單', + 'create_new_subscription' => 'Create new subscription', + 'create_new_rule' => 'Create new rule', // currencies: - 'create_currency' => '建立新貨幣', - 'store_currency' => '儲存新貨幣', - 'update_currency' => '更新貨幣', - 'new_default_currency' => '":name" is now the default currency.', - 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', - 'cannot_delete_currency' => '因為仍在使用中,無法刪除 :name 。', - 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', - 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', - 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', - 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', - 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', - 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', - 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', - 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', - 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', - 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', - 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', - 'deleted_currency' => ':name 貨幣已刪除', - 'created_currency' => ':name 貨幣已建立', - 'could_not_store_currency' => '無法儲存新貨幣', - 'updated_currency' => ':name 貨幣已更新', - 'ask_site_owner' => '請要求 :owner 新增、刪除或編輯貨幣。', - 'currencies_intro' => 'Firefly III 支援多種貨幣,您可在此設定並啟用。', - 'make_default_currency' => '設為預設', - 'default_currency' => '預設', - 'currency_is_disabled' => '已停用', - 'enable_currency' => '啟用', - 'disable_currency' => '停用', - 'currencies_default_disabled' => '大多數的貨幣均預設為停用,如欲使用,請先啟用。', - 'currency_is_now_enabled' => '貨幣 ":name" 已被啟用', - 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', - 'currency_is_now_disabled' => '貨幣 ":name" 已被停用', - 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', + 'create_currency' => '建立新貨幣', + 'store_currency' => '儲存新貨幣', + 'update_currency' => '更新貨幣', + 'new_default_currency' => '":name" is now the default currency.', + 'default_currency_failed' => 'Could not make ":name" the default currency. Please check the logs.', + 'cannot_delete_currency' => '因為仍在使用中,無法刪除 :name 。', + 'cannot_delete_fallback_currency' => ':name is the system fallback currency and can\'t be deleted.', + 'cannot_disable_currency_journals' => 'Cannot disable :name because transactions are still using it.', + 'cannot_disable_currency_last_left' => 'Cannot disable :name because it is the last enabled currency.', + 'cannot_disable_currency_account_meta' => 'Cannot disable :name because it is used in asset accounts.', + 'cannot_disable_currency_bills' => 'Cannot disable :name because it is used in bills.', + 'cannot_disable_currency_recurring' => 'Cannot disable :name because it is used in recurring transactions.', + 'cannot_disable_currency_available_budgets' => 'Cannot disable :name because it is used in available budgets.', + 'cannot_disable_currency_budget_limits' => 'Cannot disable :name because it is used in budget limits.', + 'cannot_disable_currency_current_default' => 'Cannot disable :name because it is the current default currency.', + 'cannot_disable_currency_system_fallback' => 'Cannot disable :name because it is the system default currency.', + 'disable_EUR_side_effects' => 'The Euro is the system\'s emergency fallback currency. Disabling it may have unintended side-effects and may void your warranty.', + 'deleted_currency' => ':name 貨幣已刪除', + 'created_currency' => ':name 貨幣已建立', + 'could_not_store_currency' => '無法儲存新貨幣', + 'updated_currency' => ':name 貨幣已更新', + 'ask_site_owner' => '請要求 :owner 新增、刪除或編輯貨幣。', + 'currencies_intro' => 'Firefly III 支援多種貨幣,您可在此設定並啟用。', + 'make_default_currency' => '設為預設', + 'default_currency' => '預設', + 'currency_is_disabled' => '已停用', + 'enable_currency' => '啟用', + 'disable_currency' => '停用', + 'currencies_default_disabled' => '大多數的貨幣均預設為停用,如欲使用,請先啟用。', + 'currency_is_now_enabled' => '貨幣 ":name" 已被啟用', + 'could_not_enable_currency' => 'Could not enable currency ":name". Please review the logs.', + 'currency_is_now_disabled' => '貨幣 ":name" 已被停用', + 'could_not_disable_currency' => 'Could not disable currency ":name". Perhaps it is still in use?', // forms: - 'mandatoryFields' => '必要欄位', - 'optionalFields' => '選填欄位', - 'options' => '選項', + 'mandatoryFields' => '必要欄位', + 'optionalFields' => '選填欄位', + 'options' => '選項', // budgets: - 'daily_budgets' => 'Daily budgets', - 'weekly_budgets' => 'Weekly budgets', - 'monthly_budgets' => 'Monthly budgets', - 'quarterly_budgets' => 'Quarterly budgets', - 'half_year_budgets' => 'Half-yearly budgets', - 'yearly_budgets' => 'Yearly budgets', - 'other_budgets' => 'Custom timed budgets', - 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', - 'total_available_budget' => 'Total available budget (between :start and :end)', - 'total_available_budget_in_currency' => 'Total available budget in :currency', - 'see_below' => 'see below', - 'create_new_budget' => '建立新預算', - 'store_new_budget' => '儲存新預算', - 'stored_new_budget' => '已儲存新預算 ":name"', - 'available_between' => '自 :start 至 :end 間可用', - 'transactionsWithoutBudget' => '無預算支出', - 'transactions_no_budget' => '自 :start 至 :end 的無預算支出', - 'spent_between' => 'Already spent between :start and :end', - 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', - 'set_available_amount' => 'Set available amount', - 'update_available_amount' => 'Update available amount', - 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', - 'createBudget' => '新預算', - 'invalid_currency' => 'This is an invalid currency', - 'invalid_amount' => 'Please enter an amount', - 'set_ab' => 'The available budget amount has been set', - 'updated_ab' => 'The available budget amount has been updated', - 'deleted_ab' => 'The available budget amount has been deleted', - 'deleted_bl' => 'The budgeted amount has been removed', - 'alt_currency_ab_create' => 'Set the available budget in another currency', - 'bl_create_btn' => 'Set budget in another currency', - 'inactiveBudgets' => '未使用預算', - 'without_budget_between' => '自 :start 至 :end 無預算的交易', - 'delete_budget' => '刪除預算 ":name"', - 'deleted_budget' => '已刪除預算 ":name"', - 'edit_budget' => '編輯預算 ":name"', - 'updated_budget' => '預算 ":name" 已更新', - 'update_amount' => '更新金額', - 'update_budget' => '更新預算', - 'update_budget_amount_range' => '更新 (預期) 自 :start 至 :end 的可用金額', - 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', - 'set_budget_limit' => 'Set budgeted amount', - 'budget_period_navigator' => '期間導覽', - 'info_on_available_amount' => '我有甚麼可用?', - 'available_amount_indication' => '使用這些金額以獲得您總預算可能為何的指標', - 'suggested' => '建議', - 'average_between' => '自 :start 至 :end 的平均', - 'transferred_in' => '轉帳 (轉入)', - 'transferred_away' => '轉帳 (轉出)', - 'auto_budget_none' => 'No auto-budget', - 'auto_budget_reset' => 'Set a fixed amount every period', - 'auto_budget_rollover' => 'Add an amount every period', - 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', - 'auto_budget_period_daily' => 'Daily', - 'auto_budget_period_weekly' => 'Weekly', - 'auto_budget_period_monthly' => 'Monthly', - 'auto_budget_period_quarterly' => 'Quarterly', - 'auto_budget_period_half_year' => 'Every half year', - 'auto_budget_period_yearly' => 'Yearly', - 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', - 'auto_budget_reset_icon' => 'This budget will be set periodically', - 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', - 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', - 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', + 'daily_budgets' => 'Daily budgets', + 'weekly_budgets' => 'Weekly budgets', + 'monthly_budgets' => 'Monthly budgets', + 'quarterly_budgets' => 'Quarterly budgets', + 'half_year_budgets' => 'Half-yearly budgets', + 'yearly_budgets' => 'Yearly budgets', + 'other_budgets' => 'Custom timed budgets', + 'budget_limit_not_in_range' => 'This amount applies from :start to :end:', + 'total_available_budget' => 'Total available budget (between :start and :end)', + 'total_available_budget_in_currency' => 'Total available budget in :currency', + 'see_below' => 'see below', + 'create_new_budget' => '建立新預算', + 'store_new_budget' => '儲存新預算', + 'stored_new_budget' => '已儲存新預算 ":name"', + 'available_between' => '自 :start 至 :end 間可用', + 'transactionsWithoutBudget' => '無預算支出', + 'transactions_no_budget' => '自 :start 至 :end 的無預算支出', + 'spent_between' => 'Already spent between :start and :end', + 'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.', + 'set_available_amount' => 'Set available amount', + 'update_available_amount' => 'Update available amount', + 'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.', + 'createBudget' => '新預算', + 'invalid_currency' => 'This is an invalid currency', + 'invalid_amount' => 'Please enter an amount', + 'set_ab' => 'The available budget amount has been set', + 'updated_ab' => 'The available budget amount has been updated', + 'deleted_ab' => 'The available budget amount has been deleted', + 'deleted_bl' => 'The budgeted amount has been removed', + 'alt_currency_ab_create' => 'Set the available budget in another currency', + 'bl_create_btn' => 'Set budget in another currency', + 'inactiveBudgets' => '未使用預算', + 'without_budget_between' => '自 :start 至 :end 無預算的交易', + 'delete_budget' => '刪除預算 ":name"', + 'deleted_budget' => '已刪除預算 ":name"', + 'edit_budget' => '編輯預算 ":name"', + 'updated_budget' => '預算 ":name" 已更新', + 'update_amount' => '更新金額', + 'update_budget' => '更新預算', + 'update_budget_amount_range' => '更新 (預期) 自 :start 至 :end 的可用金額', + 'set_budget_limit_title' => 'Set budgeted amount for budget :budget between :start and :end', + 'set_budget_limit' => 'Set budgeted amount', + 'budget_period_navigator' => '期間導覽', + 'info_on_available_amount' => '我有甚麼可用?', + 'available_amount_indication' => '使用這些金額以獲得您總預算可能為何的指標', + 'suggested' => '建議', + 'average_between' => '自 :start 至 :end 的平均', + 'transferred_in' => '轉帳 (轉入)', + 'transferred_away' => '轉帳 (轉出)', + 'auto_budget_none' => 'No auto-budget', + 'auto_budget_reset' => 'Set a fixed amount every period', + 'auto_budget_rollover' => 'Add an amount every period', + 'auto_budget_adjusted' => 'Add an amount every period and correct for overspending', + 'auto_budget_period_daily' => 'Daily', + 'auto_budget_period_weekly' => 'Weekly', + 'auto_budget_period_monthly' => 'Monthly', + 'auto_budget_period_quarterly' => 'Quarterly', + 'auto_budget_period_half_year' => 'Every half year', + 'auto_budget_period_yearly' => 'Yearly', + 'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.', + 'auto_budget_reset_icon' => 'This budget will be set periodically', + 'auto_budget_rollover_icon' => 'The budget amount will increase periodically', + 'auto_budget_adjusted_icon' => 'The budget amount will increase periodically and will correct for overspending', + 'remove_budgeted_amount' => 'Remove budgeted amount in :currency', // bills: - 'subscription' => 'Subscription', - 'not_expected_period' => 'Not expected this period', - 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', - 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', - 'not_or_not_yet' => 'Not (yet)', - 'visit_bill' => 'Visit bill ":name" at Firefly III', - 'match_between_amounts' => '帳單配合自 :low 至 :high 的交易。', - 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', - 'bill_related_rules' => '與此帳單相關的規則', - 'repeats' => '重複', - 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', - 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', - 'bill_end_index_line' => 'This bill ends on :date', - 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', - 'connected_journals' => '已連接交易', - 'auto_match_on' => '由 Firefly III 自動配對', - 'auto_match_off' => '不由 Firefly III 自動配對', - 'next_expected_match' => '下一個預期配對', - 'delete_bill' => '刪除帳單 ":name"', - 'deleted_bill' => '已刪除帳單 ":name"', - 'edit_bill' => '編輯帳單 ":name"', - 'more' => '更多', - 'rescan_old' => '再次於所有交易執行規則', - 'update_bill' => '更新帳單', - 'updated_bill' => '已更新帳單 ":name"', - 'store_new_bill' => '儲存新帳單', - 'stored_new_bill' => '已儲存新帳單 ":name"', - 'cannot_scan_inactive_bill' => '未啟用的帳單無法被掃描。', - 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', - 'average_bill_amount_year' => '平均帳單數 (:year)', - 'average_bill_amount_overall' => '平均帳單數 (總體)', - 'bill_is_active' => '帳單為啟用狀態', - 'bill_expected_between' => '期待自 :start 至 :end', - 'bill_will_automatch' => '帳單將自動鏈結至相符的交易', - 'skips_over' => '略過', - 'bill_store_error' => '儲存您的新帳單時發生錯誤,請檢查日誌檔', - 'list_inactive_rule' => '未啟用的規則', - 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', - 'bill_expected_date' => 'Expected :date', - 'bill_expected_date_js' => 'Expected {date}', - 'expected_amount' => '(Expected) amount', - 'bill_paid_on' => 'Paid on {date}', - 'bill_repeats_weekly' => 'Repeats weekly', - 'bill_repeats_monthly' => 'Repeats monthly', - 'bill_repeats_quarterly' => 'Repeats quarterly', - 'bill_repeats_half-year' => 'Repeats every half year', - 'bill_repeats_yearly' => 'Repeats yearly', - 'bill_repeats_weekly_other' => 'Repeats every other week', - 'bill_repeats_monthly_other' => 'Repeats every other month', - 'bill_repeats_quarterly_other' => 'Repeats every other quarter', - 'bill_repeats_half-year_other' => 'Repeats yearly', - 'bill_repeats_yearly_other' => 'Repeats every other year', - 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', - 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', - 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', - 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', - 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', - 'subscriptions' => 'Subscriptions', - 'go_to_subscriptions' => 'Go to your subscriptions', - 'forever' => 'Forever', - 'extension_date_is' => 'Extension date is {date}', + 'subscription' => 'Subscription', + 'not_expected_period' => 'Not expected this period', + 'subscriptions_in_group' => 'Subscriptions in group "%{title}"', + 'subscr_expected_x_times' => 'Expect to pay %{amount} %{times} times this period', + 'not_or_not_yet' => 'Not (yet)', + 'visit_bill' => 'Visit bill ":name" at Firefly III', + 'match_between_amounts' => '帳單配合自 :low 至 :high 的交易。', + 'running_again_loss' => 'Previously linked transactions to this bill may lose their connection, if they (no longer) match the rule(s).', + 'bill_related_rules' => '與此帳單相關的規則', + 'repeats' => '重複', + 'bill_end_date_help' => 'Optional field. The bill is expected to end on this date.', + 'bill_extension_date_help' => 'Optional field. The bill must be extended (or cancelled) on or before this date.', + 'bill_end_index_line' => 'This bill ends on :date', + 'bill_extension_index_line' => 'This bill must be extended or cancelled on :date', + 'connected_journals' => '已連接交易', + 'auto_match_on' => '由 Firefly III 自動配對', + 'auto_match_off' => '不由 Firefly III 自動配對', + 'next_expected_match' => '下一個預期配對', + 'delete_bill' => '刪除帳單 ":name"', + 'deleted_bill' => '已刪除帳單 ":name"', + 'edit_bill' => '編輯帳單 ":name"', + 'more' => '更多', + 'rescan_old' => '再次於所有交易執行規則', + 'update_bill' => '更新帳單', + 'updated_bill' => '已更新帳單 ":name"', + 'store_new_bill' => '儲存新帳單', + 'stored_new_bill' => '已儲存新帳單 ":name"', + 'cannot_scan_inactive_bill' => '未啟用的帳單無法被掃描。', + 'rescanned_bill' => 'Rescanned everything, and linked :count transaction to the bill.|Rescanned everything, and linked :count transactions to the bill.', + 'average_bill_amount_year' => '平均帳單數 (:year)', + 'average_bill_amount_overall' => '平均帳單數 (總體)', + 'bill_is_active' => '帳單為啟用狀態', + 'bill_expected_between' => '期待自 :start 至 :end', + 'bill_will_automatch' => '帳單將自動鏈結至相符的交易', + 'skips_over' => '略過', + 'bill_store_error' => '儲存您的新帳單時發生錯誤,請檢查日誌檔', + 'list_inactive_rule' => '未啟用的規則', + 'bill_edit_rules' => 'Firefly III will attempt to edit the rule related to this bill as well. If you\'ve edited this rule yourself however, Firefly III won\'t change anything.|Firefly III will attempt to edit the :count rules related to this bill as well. If you\'ve edited these rules yourself however, Firefly III won\'t change anything.', + 'bill_expected_date' => 'Expected :date', + 'bill_expected_date_js' => 'Expected {date}', + 'expected_amount' => '(Expected) amount', + 'bill_paid_on' => 'Paid on {date}', + 'bill_repeats_weekly' => 'Repeats weekly', + 'bill_repeats_monthly' => 'Repeats monthly', + 'bill_repeats_quarterly' => 'Repeats quarterly', + 'bill_repeats_half-year' => 'Repeats every half year', + 'bill_repeats_yearly' => 'Repeats yearly', + 'bill_repeats_weekly_other' => 'Repeats every other week', + 'bill_repeats_monthly_other' => 'Repeats every other month', + 'bill_repeats_quarterly_other' => 'Repeats every other quarter', + 'bill_repeats_half-year_other' => 'Repeats yearly', + 'bill_repeats_yearly_other' => 'Repeats every other year', + 'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks', + 'bill_repeats_monthly_skip' => 'Repeats every {skip} months', + 'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters', + 'bill_repeats_half-year_skip' => 'Repeats every {skip} half years', + 'bill_repeats_yearly_skip' => 'Repeats every {skip} years', + 'subscriptions' => 'Subscriptions', + 'go_to_subscriptions' => 'Go to your subscriptions', + 'forever' => 'Forever', + 'extension_date_is' => 'Extension date is {date}', // accounts: - 'i_am_owed_amount' => 'I am owed amount', - 'i_owe_amount' => 'I owe amount', - 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', - 'all_accounts_inactive' => 'These are your inactive accounts.', - 'active_account_link' => 'This link goes back to your active accounts.', - 'account_missing_transaction' => '帳戶 #:id (":name") 無法直接檢視,惟 Firefly 找不到重新導向資訊。', - 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', - 'details_for_asset' => '資產帳戶 ":name" 的詳細資訊', - 'details_for_expense' => '支出帳戶 ":name" 的詳細資訊', - 'details_for_revenue' => '收入帳戶 ":name" 的詳細資訊', - 'details_for_cash' => '現金帳戶 ":name" 的詳細資訊', - 'store_new_asset_account' => '儲存新資產帳戶', - 'store_new_expense_account' => '儲存新支出帳戶', - 'store_new_revenue_account' => '儲存新收入帳戶', - 'edit_asset_account' => '編輯資產帳戶 ":name"', - 'edit_expense_account' => '編輯支出帳戶 ":name"', - 'edit_revenue_account' => '編輯收入帳戶 ":name"', - 'delete_asset_account' => '刪除資產帳戶 ":name"', - 'delete_expense_account' => '刪除支出帳戶 ":name"', - 'delete_revenue_account' => '刪除收入帳戶 ":name"', - 'delete_liabilities_account' => '刪除債務 ":name"', - 'asset_deleted' => '已成功刪除資產帳戶 ":name"', - 'account_deleted' => 'Successfully deleted account ":name"', - 'expense_deleted' => '已成功刪除支出帳戶 ":name"', - 'revenue_deleted' => '已成功刪除收入帳戶 ":name"', - 'update_asset_account' => '更新資產帳戶', - 'update_undefined_account' => 'Update account', - 'update_liabilities_account' => '更新債務', - 'update_expense_account' => '更新支出帳戶', - 'update_revenue_account' => '更新收入帳戶', - 'make_new_asset_account' => '建立新資產帳戶', - 'make_new_expense_account' => '建立新支出帳戶', - 'make_new_revenue_account' => '建立新收入帳戶', - 'make_new_liabilities_account' => '建立新債務', - 'asset_accounts' => '資產帳戶', - 'undefined_accounts' => 'Accounts', - 'asset_accounts_inactive' => 'Asset accounts (inactive)', - 'expense_account' => 'Expense account', - 'expense_accounts' => '支出帳戶', - 'expense_accounts_inactive' => 'Expense accounts (inactive)', - 'revenue_account' => 'Revenue account', - 'revenue_accounts' => '收入帳戶', - 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', - 'cash_accounts' => '現金帳戶', - 'Cash account' => '現金帳戶', - 'liabilities_accounts' => '債務', - 'liabilities_accounts_inactive' => 'Liabilities (inactive)', - 'reconcile_account' => '核對帳戶 ":account"', - 'overview_of_reconcile_modal' => '對帳概覽', - 'delete_reconciliation' => '刪除對帳', - 'update_reconciliation' => '更新對帳', - 'amount_cannot_be_zero' => '金額不能為零', - 'end_of_reconcile_period' => '對帳區間結束: :period', - 'start_of_reconcile_period' => '對帳區間開始: :period', - 'start_balance' => '初始餘額', - 'end_balance' => '結束餘額', - 'update_balance_dates_instruction' => '與您的銀行帳單配對上述金額及日期,並按一下 "開始對帳"', - 'select_transactions_instruction' => '選擇您銀行帳單上顯示的交易', - 'select_range_and_balance' => '請驗證日期範圍與餘額,然後按下 "開始對帳"', - 'date_change_instruction' => '如果您現在變更日期範圍,任何進度均將遺失。', - 'update_selection' => '更新選擇', - 'store_reconcile' => '儲存對帳', - 'reconciliation_transaction' => '對帳交易', - 'Reconciliation' => '對帳', - 'reconciliation' => '對帳', - 'reconcile_options' => '對帳選項', - 'reconcile_range' => '對帳範圍', - 'start_reconcile' => '開始對帳', - 'cash_account_type' => 'Cash', - 'cash' => '現金', - 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', - 'account_type' => '帳戶類型', - 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', - 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', - 'stored_new_account' => '新帳戶 ":name" 已儲存!', - 'stored_new_account_js' => 'New account "{name}" stored!', - 'updated_account' => '帳戶 ":name" 已更新', - 'updated_account_js' => 'Updated account "{title}".', - 'credit_card_options' => '信用卡選項', - 'no_transactions_account' => '資產帳戶 ":name" 沒有交易 (在此區間)。', - 'no_transactions_period' => '沒有交易記錄 (在此期間)。', - 'no_data_for_chart' => '目前 (尚) 沒有足夠資訊以產生此圖表。', - 'select_at_least_one_account' => '選擇至少一個資產帳戶', - 'select_at_least_one_category' => '選擇至少一個分類', - 'select_at_least_one_budget' => '選擇至少一個預算', - 'select_at_least_one_tag' => '選擇至少一個標籤', - 'select_at_least_one_expense' => '選擇至少一個支出/收入帳戶組合,若無 (清單為空) 則此報表不可用。', - 'account_default_currency' => '此將為與此帳戶關連的預設貨幣。', - 'reconcile_has_more' => '您的 Firefly III 帳目比您的銀行有更多的金錢,有多個選項可應處,請選擇並按下 "確認對帳"。', - 'reconcile_has_less' => '您的 Firefly III 帳目比您的銀行有更少的金錢,有多個選項可應處,請選擇並按下 "確認對帳"。', - 'reconcile_is_equal' => '您的 Firefly III 帳目和您的銀行相符,無須處理,請按下 "確認對帳" 確認匯入。', - 'create_pos_reconcile_transaction' => '清除選擇交易,並建立校正,新增 :amount 至此資產帳戶。', - 'create_neg_reconcile_transaction' => '清除選擇交易,並建立校正,自此資產帳戶移除 :amount。', - 'reconcile_do_nothing' => '刪除選擇交易,但不校正。', - 'reconcile_go_back' => '您可稍後再編輯或刪除校正。', - 'must_be_asset_account' => '您只可以對帳資產帳戶。', - 'reconciliation_stored' => '已儲存對帳', - 'reconciliation_error' => '發生錯誤,交易已標記為已對帳,惟修正未能儲存: :error。', - 'reconciliation_transaction_title' => '對帳 (:from 至 :to)', - 'sum_of_reconciliation' => '對帳加總', - 'reconcile_this_account' => '對帳此帳戶', - 'reconcile' => 'Reconcile', - 'show' => 'Show', - 'confirm_reconciliation' => '確認對帳', - 'submitted_start_balance' => '初始餘額已送出', - 'selected_transactions' => '已選擇交易 (:count)', - 'already_cleared_transactions' => '以清空交易 (:count)', - 'submitted_end_balance' => '已送出結束餘額', - 'initial_balance_description' => '“:account” 的初始餘額', - 'liability_credit_description' => 'Liability credit for ":account"', - 'interest_calc_' => '未知', - 'interest_calc_daily' => '每日', - 'interest_calc_monthly' => '每月', - 'interest_calc_yearly' => '每年', - 'interest_calc_weekly' => 'Per week', - 'interest_calc_half-year' => 'Per half year', - 'interest_calc_quarterly' => 'Per quarter', - 'initial_balance_account' => ':account 初始餘額帳戶', - 'list_options' => 'List options', + 'i_am_owed_amount' => 'I am owed amount', + 'i_owe_amount' => 'I owe amount', + 'inactive_account_link' => 'You have :count inactive (archived) account, which you can view on this separate page.|You have :count inactive (archived) accounts, which you can view on this separate page.', + 'all_accounts_inactive' => 'These are your inactive accounts.', + 'active_account_link' => 'This link goes back to your active accounts.', + 'account_missing_transaction' => '帳戶 #:id (":name") 無法直接檢視,惟 Firefly 找不到重新導向資訊。', + 'cc_monthly_payment_date_help' => 'Select any year and any month, it will be ignored anyway. Only the day of the month is relevant.', + 'details_for_asset' => '資產帳戶 ":name" 的詳細資訊', + 'details_for_expense' => '支出帳戶 ":name" 的詳細資訊', + 'details_for_revenue' => '收入帳戶 ":name" 的詳細資訊', + 'details_for_cash' => '現金帳戶 ":name" 的詳細資訊', + 'store_new_asset_account' => '儲存新資產帳戶', + 'store_new_expense_account' => '儲存新支出帳戶', + 'store_new_revenue_account' => '儲存新收入帳戶', + 'edit_asset_account' => '編輯資產帳戶 ":name"', + 'edit_expense_account' => '編輯支出帳戶 ":name"', + 'edit_revenue_account' => '編輯收入帳戶 ":name"', + 'delete_asset_account' => '刪除資產帳戶 ":name"', + 'delete_expense_account' => '刪除支出帳戶 ":name"', + 'delete_revenue_account' => '刪除收入帳戶 ":name"', + 'delete_liabilities_account' => '刪除債務 ":name"', + 'asset_deleted' => '已成功刪除資產帳戶 ":name"', + 'account_deleted' => 'Successfully deleted account ":name"', + 'expense_deleted' => '已成功刪除支出帳戶 ":name"', + 'revenue_deleted' => '已成功刪除收入帳戶 ":name"', + 'update_asset_account' => '更新資產帳戶', + 'update_undefined_account' => 'Update account', + 'update_liabilities_account' => '更新債務', + 'update_expense_account' => '更新支出帳戶', + 'update_revenue_account' => '更新收入帳戶', + 'make_new_asset_account' => '建立新資產帳戶', + 'make_new_expense_account' => '建立新支出帳戶', + 'make_new_revenue_account' => '建立新收入帳戶', + 'make_new_liabilities_account' => '建立新債務', + 'asset_accounts' => '資產帳戶', + 'undefined_accounts' => 'Accounts', + 'asset_accounts_inactive' => 'Asset accounts (inactive)', + 'expense_account' => 'Expense account', + 'expense_accounts' => '支出帳戶', + 'expense_accounts_inactive' => 'Expense accounts (inactive)', + 'revenue_account' => 'Revenue account', + 'revenue_accounts' => '收入帳戶', + 'revenue_accounts_inactive' => 'Revenue accounts (inactive)', + 'cash_accounts' => '現金帳戶', + 'Cash account' => '現金帳戶', + 'liabilities_accounts' => '債務', + 'liabilities_accounts_inactive' => 'Liabilities (inactive)', + 'reconcile_account' => '核對帳戶 ":account"', + 'overview_of_reconcile_modal' => '對帳概覽', + 'delete_reconciliation' => '刪除對帳', + 'update_reconciliation' => '更新對帳', + 'amount_cannot_be_zero' => '金額不能為零', + 'end_of_reconcile_period' => '對帳區間結束: :period', + 'start_of_reconcile_period' => '對帳區間開始: :period', + 'start_balance' => '初始餘額', + 'end_balance' => '結束餘額', + 'update_balance_dates_instruction' => '與您的銀行帳單配對上述金額及日期,並按一下 "開始對帳"', + 'select_transactions_instruction' => '選擇您銀行帳單上顯示的交易', + 'select_range_and_balance' => '請驗證日期範圍與餘額,然後按下 "開始對帳"', + 'date_change_instruction' => '如果您現在變更日期範圍,任何進度均將遺失。', + 'update_selection' => '更新選擇', + 'store_reconcile' => '儲存對帳', + 'reconciliation_transaction' => '對帳交易', + 'Reconciliation' => '對帳', + 'reconciliation' => '對帳', + 'reconcile_options' => '對帳選項', + 'reconcile_range' => '對帳範圍', + 'start_reconcile' => '開始對帳', + 'cash_account_type' => 'Cash', + 'cash' => '現金', + 'cant_find_redirect_account' => 'Firefly III tried to redirect you but couldn\'t. Sorry about that. Back to the index.', + 'account_type' => '帳戶類型', + 'save_transactions_by_moving' => 'Save this transaction by moving it to another account:|Save these transactions by moving them to another account:', + 'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.', + 'stored_new_account' => '新帳戶 ":name" 已儲存!', + 'stored_new_account_js' => 'New account "{name}" stored!', + 'updated_account' => '帳戶 ":name" 已更新', + 'updated_account_js' => 'Updated account "{title}".', + 'credit_card_options' => '信用卡選項', + 'no_transactions_account' => '資產帳戶 ":name" 沒有交易 (在此區間)。', + 'no_transactions_period' => '沒有交易記錄 (在此期間)。', + 'no_data_for_chart' => '目前 (尚) 沒有足夠資訊以產生此圖表。', + 'select_at_least_one_account' => '選擇至少一個資產帳戶', + 'select_at_least_one_category' => '選擇至少一個分類', + 'select_at_least_one_budget' => '選擇至少一個預算', + 'select_at_least_one_tag' => '選擇至少一個標籤', + 'select_at_least_one_expense' => '選擇至少一個支出/收入帳戶組合,若無 (清單為空) 則此報表不可用。', + 'account_default_currency' => '此將為與此帳戶關連的預設貨幣。', + 'reconcile_has_more' => '您的 Firefly III 帳目比您的銀行有更多的金錢,有多個選項可應處,請選擇並按下 "確認對帳"。', + 'reconcile_has_less' => '您的 Firefly III 帳目比您的銀行有更少的金錢,有多個選項可應處,請選擇並按下 "確認對帳"。', + 'reconcile_is_equal' => '您的 Firefly III 帳目和您的銀行相符,無須處理,請按下 "確認對帳" 確認匯入。', + 'create_pos_reconcile_transaction' => '清除選擇交易,並建立校正,新增 :amount 至此資產帳戶。', + 'create_neg_reconcile_transaction' => '清除選擇交易,並建立校正,自此資產帳戶移除 :amount。', + 'reconcile_do_nothing' => '刪除選擇交易,但不校正。', + 'reconcile_go_back' => '您可稍後再編輯或刪除校正。', + 'must_be_asset_account' => '您只可以對帳資產帳戶。', + 'reconciliation_stored' => '已儲存對帳', + 'reconciliation_error' => '發生錯誤,交易已標記為已對帳,惟修正未能儲存: :error。', + 'reconciliation_transaction_title' => '對帳 (:from 至 :to)', + 'sum_of_reconciliation' => '對帳加總', + 'reconcile_this_account' => '對帳此帳戶', + 'reconcile' => 'Reconcile', + 'show' => 'Show', + 'confirm_reconciliation' => '確認對帳', + 'submitted_start_balance' => '初始餘額已送出', + 'selected_transactions' => '已選擇交易 (:count)', + 'already_cleared_transactions' => '以清空交易 (:count)', + 'submitted_end_balance' => '已送出結束餘額', + 'initial_balance_description' => '“:account” 的初始餘額', + 'liability_credit_description' => 'Liability credit for ":account"', + 'interest_calc_' => '未知', + 'interest_calc_daily' => '每日', + 'interest_calc_monthly' => '每月', + 'interest_calc_yearly' => '每年', + 'interest_calc_weekly' => 'Per week', + 'interest_calc_half-year' => 'Per half year', + 'interest_calc_quarterly' => 'Per quarter', + 'initial_balance_account' => ':account 初始餘額帳戶', + 'list_options' => 'List options', // categories: - 'new_category' => '新分類', - 'create_new_category' => '建立新分類', - 'without_category' => '沒有分類', - 'update_category' => '更新分類', - 'updated_category' => '已更新分類 “:name”', - 'categories' => '分類', - 'edit_category' => '編輯分類 “:name”', - 'no_category' => '(沒有分類)', - 'unknown_category_plain' => 'No category', - 'category' => '分類', - 'delete_category' => '刪除分類 “:name”', - 'deleted_category' => '已刪除分類 “:name”', - 'store_category' => '儲存新分類', - 'stored_category' => '已儲存新分類 “:name”', - 'without_category_between' => '自 :start 至 :end 之間沒有分類', + 'new_category' => '新分類', + 'create_new_category' => '建立新分類', + 'without_category' => '沒有分類', + 'update_category' => '更新分類', + 'updated_category' => '已更新分類 “:name”', + 'categories' => '分類', + 'edit_category' => '編輯分類 “:name”', + 'no_category' => '(沒有分類)', + 'unknown_category_plain' => 'No category', + 'category' => '分類', + 'delete_category' => '刪除分類 “:name”', + 'deleted_category' => '已刪除分類 “:name”', + 'store_category' => '儲存新分類', + 'stored_category' => '已儲存新分類 “:name”', + 'without_category_between' => '自 :start 至 :end 之間沒有分類', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -1985,240 +1991,240 @@ return [ */ // transactions: - 'wait_loading_transaction' => 'Please wait for the form to load', - 'wait_loading_data' => 'Please wait for your information to load...', - 'wait_attachments' => 'Please wait for the attachments to upload.', - 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', - 'amount_foreign_if' => 'Amount in foreign currency, if any', - 'amount_destination_account' => 'Amount in the currency of the destination account', - 'edit_transaction_title' => 'Edit transaction ":description"', - 'unreconcile' => 'Undo reconciliation', - 'update_withdrawal' => '更新提款', - 'update_deposit' => '更新存款', - 'update_transaction' => 'Update transaction', - 'update_transfer' => '更新轉帳', - 'updated_withdrawal' => '已更新提款 “:description“', - 'updated_deposit' => '已更新存款 ”:description“', - 'updated_transfer' => '已更新轉帳 “:description”', - 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', - 'no_changes_deposit' => 'Deposit ":description" was not changed.', - 'no_changes_transfer' => 'Transfer ":description" was not changed.', - 'delete_withdrawal' => '刪除提款 “:description”', - 'delete_deposit' => '刪除存款 “:description”', - 'delete_transfer' => '刪除轉帳 “:description”', - 'deleted_withdrawal' => '已成功刪除提款 “:description”', - 'deleted_deposit' => '已成功刪除存款 “:description”', - 'deleted_transfer' => '已成功刪除轉帳 “:description”', - 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', - 'stored_journal' => '已成功建立新交易 “:description”', - 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', - 'stored_journal_no_descr' => '已成功建立新交易', - 'updated_journal_no_descr' => '已成功更新您的交易', - 'select_transactions' => '選擇交易', - 'rule_group_select_transactions' => '套用 ”:title“ 至交易', - 'rule_select_transactions' => '套用 ”:title“ 至交易', - 'stop_selection' => '停止選取交易', - 'reconcile_selected' => '對帳', - 'mass_delete_journals' => '刪除數個交易', - 'mass_edit_journals' => '編輯數個交易', - 'mass_bulk_journals' => '批次編輯數個交易', - 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', - 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', - 'bulk_set_new_values' => '在下方的輸入欄位設定新值。若您留空,則全部皆會為空白值。此外,請注意僅有提款會被賦予預算。', - 'no_bulk_category' => '不更新分類', - 'no_bulk_budget' => '不更新預算', - 'no_bulk_tags' => '不更新標籤', - 'replace_with_these_tags' => 'Replace with these tags', - 'append_these_tags' => 'Add these tags', - 'mass_edit' => 'Edit selected individually', - 'bulk_edit' => 'Edit selected in bulk', - 'mass_delete' => 'Delete selected', - 'cannot_edit_other_fields' => '受版面空間所限,您僅能大量編輯此處顯示的欄位。若您需要編輯其他欄位,請按一下連結並逐一編輯。', - 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', - 'no_budget' => '(無預算)', - 'no_bill' => '(no bill)', - 'account_per_budget' => 'Account per budget', - 'account_per_category' => 'Account per category', - 'create_new_object' => 'Create', - 'empty' => '(empty)', - 'all_other_budgets' => '(all other budgets)', - 'all_other_accounts' => '(all other accounts)', - 'expense_per_source_account' => 'Expenses per source account', - 'expense_per_destination_account' => 'Expenses per destination account', - 'income_per_destination_account' => 'Income per destination account', - 'spent_in_specific_category' => 'Spent in category ":category"', - 'earned_in_specific_category' => 'Earned in category ":category"', - 'spent_in_specific_tag' => 'Spent in tag ":tag"', - 'earned_in_specific_tag' => 'Earned in tag ":tag"', - 'income_per_source_account' => 'Income per source account', - 'average_spending_per_destination' => 'Average expense per destination account', - 'average_spending_per_source' => 'Average expense per source account', - 'average_earning_per_source' => 'Average earning per source account', - 'average_earning_per_destination' => 'Average earning per destination account', - 'account_per_tag' => 'Account per tag', - 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', - 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', - 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', - 'tag' => 'Tag', - 'no_budget_squared' => '(無預算)', - 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', - 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', - 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', - 'opt_group_' => '(沒有帳戶類型)', - 'opt_group_no_account_type' => '(沒有帳戶類型)', - 'opt_group_defaultAsset' => '預設資產帳戶', - 'opt_group_savingAsset' => '儲蓄帳戶', - 'opt_group_sharedAsset' => '共用資產帳戶', - 'opt_group_ccAsset' => '信用卡', - 'opt_group_cashWalletAsset' => '現金皮夾', - 'opt_group_expense_account' => 'Expense accounts', - 'opt_group_revenue_account' => 'Revenue accounts', - 'opt_group_l_Loan' => '債務: 貸款', - 'opt_group_cash_account' => 'Cash account', - 'opt_group_l_Debt' => '債務: 欠款', - 'opt_group_l_Mortgage' => '債務: 抵押', - 'opt_group_l_Credit card' => '債務: 信用卡', - 'notes' => '備註', - 'unknown_journal_error' => '無法儲存交易,請檢視日誌檔。', - 'attachment_not_found' => '此附加檔案無法被找到。', - 'journal_link_bill' => '此交易已與帳單 :name 鏈結。如要移除鏈結,取消核選方塊,使用規則將它與其他帳單鏈結。', - 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', - 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', - 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', - 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', - 'first_split_decides' => 'The first split determines the value of this field', - 'first_split_overrules_source' => 'The first split may overrule the source account', - 'first_split_overrules_destination' => 'The first split may overrule the destination account', - 'spent_x_of_y' => 'Spent {amount} of {total}', + 'wait_loading_transaction' => 'Please wait for the form to load', + 'wait_loading_data' => 'Please wait for your information to load...', + 'wait_attachments' => 'Please wait for the attachments to upload.', + 'errors_upload' => 'The upload has failed. Please check your browser console for the error.', + 'amount_foreign_if' => 'Amount in foreign currency, if any', + 'amount_destination_account' => 'Amount in the currency of the destination account', + 'edit_transaction_title' => 'Edit transaction ":description"', + 'unreconcile' => 'Undo reconciliation', + 'update_withdrawal' => '更新提款', + 'update_deposit' => '更新存款', + 'update_transaction' => 'Update transaction', + 'update_transfer' => '更新轉帳', + 'updated_withdrawal' => '已更新提款 “:description“', + 'updated_deposit' => '已更新存款 ”:description“', + 'updated_transfer' => '已更新轉帳 “:description”', + 'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.', + 'no_changes_deposit' => 'Deposit ":description" was not changed.', + 'no_changes_transfer' => 'Transfer ":description" was not changed.', + 'delete_withdrawal' => '刪除提款 “:description”', + 'delete_deposit' => '刪除存款 “:description”', + 'delete_transfer' => '刪除轉帳 “:description”', + 'deleted_withdrawal' => '已成功刪除提款 “:description”', + 'deleted_deposit' => '已成功刪除存款 “:description”', + 'deleted_transfer' => '已成功刪除轉帳 “:description”', + 'deleted_reconciliation' => 'Successfully deleted reconciliation transaction ":description"', + 'stored_journal' => '已成功建立新交易 “:description”', + 'stored_journal_js' => 'Successfully created new transaction "{{description}}"', + 'stored_journal_no_descr' => '已成功建立新交易', + 'updated_journal_no_descr' => '已成功更新您的交易', + 'select_transactions' => '選擇交易', + 'rule_group_select_transactions' => '套用 ”:title“ 至交易', + 'rule_select_transactions' => '套用 ”:title“ 至交易', + 'stop_selection' => '停止選取交易', + 'reconcile_selected' => '對帳', + 'mass_delete_journals' => '刪除數個交易', + 'mass_edit_journals' => '編輯數個交易', + 'mass_bulk_journals' => '批次編輯數個交易', + 'mass_bulk_journals_explain' => 'This form allows you to change properties of the transactions listed below in one sweeping update. All the transactions in the table will be updated when you change the parameters you see here.', + 'part_of_split' => 'This transaction is part of a split transaction. If you have not selected all the splits, you may end up with changing only half the transaction.', + 'bulk_set_new_values' => '在下方的輸入欄位設定新值。若您留空,則全部皆會為空白值。此外,請注意僅有提款會被賦予預算。', + 'no_bulk_category' => '不更新分類', + 'no_bulk_budget' => '不更新預算', + 'no_bulk_tags' => '不更新標籤', + 'replace_with_these_tags' => 'Replace with these tags', + 'append_these_tags' => 'Add these tags', + 'mass_edit' => 'Edit selected individually', + 'bulk_edit' => 'Edit selected in bulk', + 'mass_delete' => 'Delete selected', + 'cannot_edit_other_fields' => '受版面空間所限,您僅能大量編輯此處顯示的欄位。若您需要編輯其他欄位,請按一下連結並逐一編輯。', + 'cannot_change_amount_reconciled' => 'You can\'t change the amount of reconciled transactions.', + 'no_budget' => '(無預算)', + 'no_bill' => '(no bill)', + 'account_per_budget' => 'Account per budget', + 'account_per_category' => 'Account per category', + 'create_new_object' => 'Create', + 'empty' => '(empty)', + 'all_other_budgets' => '(all other budgets)', + 'all_other_accounts' => '(all other accounts)', + 'expense_per_source_account' => 'Expenses per source account', + 'expense_per_destination_account' => 'Expenses per destination account', + 'income_per_destination_account' => 'Income per destination account', + 'spent_in_specific_category' => 'Spent in category ":category"', + 'earned_in_specific_category' => 'Earned in category ":category"', + 'spent_in_specific_tag' => 'Spent in tag ":tag"', + 'earned_in_specific_tag' => 'Earned in tag ":tag"', + 'income_per_source_account' => 'Income per source account', + 'average_spending_per_destination' => 'Average expense per destination account', + 'average_spending_per_source' => 'Average expense per source account', + 'average_earning_per_source' => 'Average earning per source account', + 'average_earning_per_destination' => 'Average earning per destination account', + 'account_per_tag' => 'Account per tag', + 'tag_report_expenses_listed_once' => 'Expenses and income are never listed twice. If a transaction has multiple tags, it may only show up under one of its tags. This list may appear to be missing data, but the amounts will be correct.', + 'double_report_expenses_charted_once' => 'Expenses and income are never displayed twice. If a transaction has multiple tags, it may only show up under one of its tags. This chart may appear to be missing data, but the amounts will be correct.', + 'tag_report_chart_single_tag' => 'This chart applies to a single tag. If a transaction has multiple tags, what you see here may be reflected in the charts of other tags as well.', + 'tag' => 'Tag', + 'no_budget_squared' => '(無預算)', + 'perm-delete-many' => 'Deleting many items in one go can be very disruptive. Please be cautious. You can delete part of a split transaction from this page, so take care.', + 'mass_deleted_transactions_success' => 'Deleted :count transaction.|Deleted :count transactions.', + 'mass_edited_transactions_success' => 'Updated :count transaction.|Updated :count transactions.', + 'opt_group_' => '(沒有帳戶類型)', + 'opt_group_no_account_type' => '(沒有帳戶類型)', + 'opt_group_defaultAsset' => '預設資產帳戶', + 'opt_group_savingAsset' => '儲蓄帳戶', + 'opt_group_sharedAsset' => '共用資產帳戶', + 'opt_group_ccAsset' => '信用卡', + 'opt_group_cashWalletAsset' => '現金皮夾', + 'opt_group_expense_account' => 'Expense accounts', + 'opt_group_revenue_account' => 'Revenue accounts', + 'opt_group_l_Loan' => '債務: 貸款', + 'opt_group_cash_account' => 'Cash account', + 'opt_group_l_Debt' => '債務: 欠款', + 'opt_group_l_Mortgage' => '債務: 抵押', + 'opt_group_l_Credit card' => '債務: 信用卡', + 'notes' => '備註', + 'unknown_journal_error' => '無法儲存交易,請檢視日誌檔。', + 'attachment_not_found' => '此附加檔案無法被找到。', + 'journal_link_bill' => '此交易已與帳單 :name 鏈結。如要移除鏈結,取消核選方塊,使用規則將它與其他帳單鏈結。', + 'transaction_stored_link' => 'Transaction #{ID} ("{title}") has been stored.', + 'transaction_new_stored_link' => 'Transaction #{ID} has been stored.', + 'transaction_updated_link' => 'Transaction #{ID} ("{title}") has been updated.', + 'transaction_updated_no_changes' => 'Transaction #{ID} ("{title}") did not receive any changes.', + 'first_split_decides' => 'The first split determines the value of this field', + 'first_split_overrules_source' => 'The first split may overrule the source account', + 'first_split_overrules_destination' => 'The first split may overrule the destination account', + 'spent_x_of_y' => 'Spent {amount} of {total}', // new user: - 'welcome' => '歡迎使用 Firefly III!', - 'submit' => '送出', - 'submission' => 'Submission', - 'submit_yes_really' => '送出 (我知道我在幹嘛)', - 'getting_started' => '開始使用', - 'to_get_started' => '很高興看到您成功安裝 Firefly III。要開始使用此工具,請輸入您主要使用的的銀行名稱與餘額。別擔心,如您有多個帳戶,可以稍後新增,這儘是為了 Firefly III 需要初始使用而設。', - 'savings_balance_text' => 'Firefly III 會自動為您建立儲蓄帳戶。預設下,儲蓄帳戶會沒有金錢,但若您告訴 Firefly III 餘額為何,亦可以此儲存。', - 'finish_up_new_user' => '這就對了!您可按下 送出 繼續,您將被帶至 Firefly III 的首頁。', - 'stored_new_accounts_new_user' => '太好了!您的帳戶已被儲存。', - 'set_preferred_language' => '若您傾向在 Firefly III 使用其他語言,請於此表示。', - 'language' => '語系', - 'new_savings_account' => ':bank_name 儲蓄帳戶', - 'cash_wallet' => '現金皮夾', - 'currency_not_present' => '若您日常使用的貨幣未在表上,請別擔心,您可在 選項 > 貨幣 建立自己的貨幣', + 'welcome' => '歡迎使用 Firefly III!', + 'submit' => '送出', + 'submission' => 'Submission', + 'submit_yes_really' => '送出 (我知道我在幹嘛)', + 'getting_started' => '開始使用', + 'to_get_started' => '很高興看到您成功安裝 Firefly III。要開始使用此工具,請輸入您主要使用的的銀行名稱與餘額。別擔心,如您有多個帳戶,可以稍後新增,這儘是為了 Firefly III 需要初始使用而設。', + 'savings_balance_text' => 'Firefly III 會自動為您建立儲蓄帳戶。預設下,儲蓄帳戶會沒有金錢,但若您告訴 Firefly III 餘額為何,亦可以此儲存。', + 'finish_up_new_user' => '這就對了!您可按下 送出 繼續,您將被帶至 Firefly III 的首頁。', + 'stored_new_accounts_new_user' => '太好了!您的帳戶已被儲存。', + 'set_preferred_language' => '若您傾向在 Firefly III 使用其他語言,請於此表示。', + 'language' => '語系', + 'new_savings_account' => ':bank_name 儲蓄帳戶', + 'cash_wallet' => '現金皮夾', + 'currency_not_present' => '若您日常使用的貨幣未在表上,請別擔心,您可在 選項 > 貨幣 建立自己的貨幣', // home page: - 'transaction_table_description' => 'A table containing your transactions', - 'opposing_account' => 'Opposing account', - 'yourAccounts' => '您的帳戶', - 'your_accounts' => '您的帳戶概覽', - 'category_overview' => '分類概覽', - 'expense_overview' => '支出帳戶概覽', - 'revenue_overview' => '收入帳戶概覽', - 'budgetsAndSpending' => '預算與花費', - 'budgets_and_spending' => '預算與花費', - 'go_to_budget' => '前往預算 “{budget}”', - 'go_to_deposits' => 'Go to deposits', - 'go_to_expenses' => 'Go to expenses', - 'savings' => '儲蓄', - 'newWithdrawal' => '新支出', - 'newDeposit' => '新存款', - 'newTransfer' => '新轉帳', - 'bills_to_pay' => '待付帳單', - 'per_day' => '每日', - 'left_to_spend_per_day' => '每日剩餘花費', - 'bills_paid' => '已繳帳單', - 'custom_period' => 'Custom period', - 'reset_to_current' => 'Reset to current period', - 'select_period' => 'Select a period', + 'transaction_table_description' => 'A table containing your transactions', + 'opposing_account' => 'Opposing account', + 'yourAccounts' => '您的帳戶', + 'your_accounts' => '您的帳戶概覽', + 'category_overview' => '分類概覽', + 'expense_overview' => '支出帳戶概覽', + 'revenue_overview' => '收入帳戶概覽', + 'budgetsAndSpending' => '預算與花費', + 'budgets_and_spending' => '預算與花費', + 'go_to_budget' => '前往預算 “{budget}”', + 'go_to_deposits' => 'Go to deposits', + 'go_to_expenses' => 'Go to expenses', + 'savings' => '儲蓄', + 'newWithdrawal' => '新支出', + 'newDeposit' => '新存款', + 'newTransfer' => '新轉帳', + 'bills_to_pay' => '待付帳單', + 'per_day' => '每日', + 'left_to_spend_per_day' => '每日剩餘花費', + 'bills_paid' => '已繳帳單', + 'custom_period' => 'Custom period', + 'reset_to_current' => 'Reset to current period', + 'select_period' => 'Select a period', // menu and titles, should be recycled as often as possible: - 'currency' => '貨幣', - 'preferences' => '偏好設定', - 'logout' => '登出', - 'logout_other_sessions' => 'Logout all other sessions', - 'toggleNavigation' => '切換導覽', - 'searchPlaceholder' => '搜尋…', - 'version' => '版本', - 'dashboard' => '監控面板', - 'income_and_expense' => 'Income and expense', - 'all_money' => 'All your money', - 'unknown_source_plain' => 'Unknown source account', - 'unknown_dest_plain' => 'Unknown destination account', - 'unknown_any_plain' => 'Unknown account', - 'unknown_budget_plain' => 'No budget', - 'available_budget' => '可用預算 ({currency})', - 'currencies' => '貨幣', - 'activity' => '活動', - 'usage' => '使用', - 'accounts' => '帳戶', - 'Asset account' => '資產帳戶', - 'Default account' => '資產帳戶', - 'Expense account' => '支出帳戶', - 'Revenue account' => '收入帳戶', - 'Initial balance account' => '初始餘額帳戶', - 'account_type_Asset account' => 'Asset account', - 'account_type_Expense account' => 'Expense account', - 'account_type_Revenue account' => 'Revenue account', - 'account_type_Debt' => '負債', - 'account_type_Loan' => '貸款', - 'account_type_Mortgage' => '抵押', - 'account_type_debt' => 'Debt', - 'account_type_loan' => 'Loan', - 'account_type_mortgage' => 'Mortgage', - 'account_type_Credit card' => '信用卡', - 'credit_card_type_monthlyFull' => 'Full payment every month', - 'liability_direction_credit' => 'I am owed this debt', - 'liability_direction_debit' => 'I owe this debt to somebody else', - 'liability_direction_credit_short' => 'Owed this debt', - 'liability_direction_debit_short' => 'Owe this debt', - 'liability_direction__short' => 'Unknown', - 'liability_direction_null_short' => 'Unknown', - 'Liability credit' => 'Liability credit', - 'budgets' => '預算', - 'tags' => '標籤', - 'reports' => '報表', - 'transactions' => '交易', - 'expenses' => '支出', - 'income' => '收入 / 所得', - 'transfers' => '轉帳', - 'moneyManagement' => '金錢管理', - 'money_management' => '金錢管理', - 'tools' => '工具', - 'piggyBanks' => '小豬撲滿', - 'piggy_banks' => '小豬撲滿', - 'amount_x_of_y' => '{current} 分之 {total}', - 'bills' => '帳單', - 'withdrawal' => '提款', - 'opening_balance' => '開戶餘額', - 'deposit' => '存款', - 'account' => '帳戶', - 'transfer' => '轉帳', - 'Withdrawal' => '提款', - 'Deposit' => '存款', - 'Transfer' => '轉帳', - 'bill' => '帳單', - 'yes' => '是', - 'no' => '否', - 'amount' => '金額', - 'overview' => '概覽', - 'saveOnAccount' => '存於帳戶', - 'unknown' => '未知', - 'monthly' => '逐月', - 'profile' => '個人檔案', - 'errors' => '錯誤', - 'debt_start_date' => '負債開始日期', - 'debt_start_amount' => '負債開始金額', - 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', - 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', - 'store_new_liabilities_account' => '儲存新債務', - 'edit_liabilities_account' => '編輯債務 “:name”', - 'financial_control' => 'Financial control', - 'accounting' => 'Accounting', - 'automation' => 'Automation', - 'others' => 'Others', - 'classification' => 'Classification', - 'store_transaction' => 'Store transaction', + 'currency' => '貨幣', + 'preferences' => '偏好設定', + 'logout' => '登出', + 'logout_other_sessions' => 'Logout all other sessions', + 'toggleNavigation' => '切換導覽', + 'searchPlaceholder' => '搜尋…', + 'version' => '版本', + 'dashboard' => '監控面板', + 'income_and_expense' => 'Income and expense', + 'all_money' => 'All your money', + 'unknown_source_plain' => 'Unknown source account', + 'unknown_dest_plain' => 'Unknown destination account', + 'unknown_any_plain' => 'Unknown account', + 'unknown_budget_plain' => 'No budget', + 'available_budget' => '可用預算 ({currency})', + 'currencies' => '貨幣', + 'activity' => '活動', + 'usage' => '使用', + 'accounts' => '帳戶', + 'Asset account' => '資產帳戶', + 'Default account' => '資產帳戶', + 'Expense account' => '支出帳戶', + 'Revenue account' => '收入帳戶', + 'Initial balance account' => '初始餘額帳戶', + 'account_type_Asset account' => 'Asset account', + 'account_type_Expense account' => 'Expense account', + 'account_type_Revenue account' => 'Revenue account', + 'account_type_Debt' => '負債', + 'account_type_Loan' => '貸款', + 'account_type_Mortgage' => '抵押', + 'account_type_debt' => 'Debt', + 'account_type_loan' => 'Loan', + 'account_type_mortgage' => 'Mortgage', + 'account_type_Credit card' => '信用卡', + 'credit_card_type_monthlyFull' => 'Full payment every month', + 'liability_direction_credit' => 'I am owed this debt', + 'liability_direction_debit' => 'I owe this debt to somebody else', + 'liability_direction_credit_short' => 'Owed this debt', + 'liability_direction_debit_short' => 'Owe this debt', + 'liability_direction__short' => 'Unknown', + 'liability_direction_null_short' => 'Unknown', + 'Liability credit' => 'Liability credit', + 'budgets' => '預算', + 'tags' => '標籤', + 'reports' => '報表', + 'transactions' => '交易', + 'expenses' => '支出', + 'income' => '收入 / 所得', + 'transfers' => '轉帳', + 'moneyManagement' => '金錢管理', + 'money_management' => '金錢管理', + 'tools' => '工具', + 'piggyBanks' => '小豬撲滿', + 'piggy_banks' => '小豬撲滿', + 'amount_x_of_y' => '{current} 分之 {total}', + 'bills' => '帳單', + 'withdrawal' => '提款', + 'opening_balance' => '開戶餘額', + 'deposit' => '存款', + 'account' => '帳戶', + 'transfer' => '轉帳', + 'Withdrawal' => '提款', + 'Deposit' => '存款', + 'Transfer' => '轉帳', + 'bill' => '帳單', + 'yes' => '是', + 'no' => '否', + 'amount' => '金額', + 'overview' => '概覽', + 'saveOnAccount' => '存於帳戶', + 'unknown' => '未知', + 'monthly' => '逐月', + 'profile' => '個人檔案', + 'errors' => '錯誤', + 'debt_start_date' => '負債開始日期', + 'debt_start_amount' => '負債開始金額', + 'debt_start_amount_help' => 'It\'s always best to set this value to a negative amount. Read the help pages (top right (?)-icon) for more information.', + 'interest_period_help' => 'This field is purely cosmetic and won\'t be calculated for you. As it turns out banks are very sneaky so Firefly III never gets it right.', + 'store_new_liabilities_account' => '儲存新債務', + 'edit_liabilities_account' => '編輯債務 “:name”', + 'financial_control' => 'Financial control', + 'accounting' => 'Accounting', + 'automation' => 'Automation', + 'others' => 'Others', + 'classification' => 'Classification', + 'store_transaction' => 'Store transaction', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2232,109 +2238,109 @@ return [ */ // reports: - 'report_default' => '自 :start 至 :end 的預設財務報表', - 'report_audit' => '自 :start 至 :end 的交易歷史概覽', - 'report_category' => '自 :start 至 :end 的分類報表', - 'report_double' => 'Expense/revenue account report between :start and :end', - 'report_budget' => '自 :start 至 :end 的預算報表', - 'report_tag' => '自 :start 至 :end 的標籤報表', - 'quick_link_reports' => '快速連結', - 'quick_link_examples' => '以下為供您啟程的範例連結,查看 (?) 按鈕下的協助頁面以獲得所有報表以及可用魔術詞彙的資訊。', - 'quick_link_default_report' => '預設財務報表', - 'quick_link_audit_report' => '交易歷史概覽', - 'report_this_month_quick' => '目前月份之全部帳戶', - 'report_last_month_quick' => '上月,所有帳戶', - 'report_this_year_quick' => '目前年份之全部帳戶', - 'report_this_fiscal_year_quick' => '目前財政年度之全部帳戶', - 'report_all_time_quick' => '所有時間之全部帳戶', - 'reports_can_bookmark' => '請記得可以加入報表至我的最愛', - 'incomeVsExpenses' => '所得 vs. 支出', - 'accountBalances' => '帳戶餘額', - 'balanceStart' => '此區間起始餘額', - 'balanceEnd' => '此區間結束餘額', - 'splitByAccount' => '以帳戶分割', - 'coveredWithTags' => '以標籤涵蓋', - 'leftInBudget' => '預算剩餘', - 'left_in_debt' => 'Amount due', - 'sumOfSums' => '總和', - 'noCategory' => '(沒有分類)', - 'notCharged' => '(尚) 未開始', - 'inactive' => '未啟用', - 'active' => '啟用', - 'difference' => '差異', - 'money_flowing_in' => '流入', - 'money_flowing_out' => '流出', - 'topX' => '前 :number', - 'show_full_list' => '顯示所有清單', - 'show_only_top' => '僅顯示前 :number', - 'report_type' => '報表類型', - 'report_type_default' => '預設財務報表', - 'report_type_audit' => '交易歷史概覽 (稽核)', - 'report_type_category' => '分類報表', - 'report_type_budget' => '預算報表', - 'report_type_tag' => '標籤報表', - 'report_type_double' => 'Expense/revenue account report', - 'more_info_help' => '可在協助頁面找到更多關於報表類型的資訊,請點選右上角的 (?) 圖示。', - 'report_included_accounts' => '已包含的帳戶', - 'report_date_range' => '日期範圍', - 'report_preset_ranges' => '預設範圍', - 'shared' => '共用', - 'fiscal_year' => '財政年度', - 'income_entry' => '帳戶 “:name” 自 :start 至 :end 的所得', - 'expense_entry' => '帳戶 “:name” 自 :start 至 :end 的支出', - 'category_entry' => 'Expenses and income in category ":name" between :start and :end', - 'budget_spent_amount' => '預算 “:budget” 自 :start 至 :end 的支出', - 'balance_amount' => '自 :start 至 :end 間由帳戶 ":account" 於預算 “:budget” 的支出', - 'no_audit_activity' => '帳戶 :account_name 自 :start 至 :end 沒有任何交易紀錄。', - 'audit_end_balance' => ':account_name 帳戶於 :end 終點的帳戶餘額為: :balance', - 'reports_extra_options' => '額外選項', - 'report_has_no_extra_options' => '此報表沒有額外選項', - 'reports_submit' => '檢視報表', - 'end_after_start_date' => '報表的結束日期必須在開始日期之後。', - 'select_category' => '選擇類別', - 'select_budget' => '選擇預算。', - 'select_tag' => '選擇標籤', - 'income_per_category' => '每個類別的收入', - 'expense_per_category' => '每個類別的支出', - 'expense_per_budget' => '每個預算的費用', - 'income_per_account' => '每個帳戶的收入', - 'expense_per_account' => '每個帳戶的支出', - 'expense_per_tag' => '每個標籤的支出', - 'income_per_tag' => '每個標籤的收入', - 'include_expense_not_in_budget' => '包含的支出不在所选的预算内', - 'include_expense_not_in_account' => '包含的支出不在所选的账户内', - 'include_expense_not_in_category' => '包含的支出不在所选的份额里内', - 'include_income_not_in_category' => '未列入所選類別的收入', - 'include_income_not_in_account' => '未列入所選帳戶的收入', - 'include_income_not_in_tags' => '未包含在所選標記中的收入', - 'include_expense_not_in_tags' => '未包含在所選標記中的支出', - 'everything_else' => '其他', - 'income_and_expenses' => '收入與支出', - 'spent_average' => '支出(平均)', - 'income_average' => '所得(平均)', - 'transaction_count' => '交易數', - 'average_spending_per_account' => '每個帳戶的平均支出', - 'average_income_per_account' => '每個帳戶的平均收入', - 'total' => '總共', - 'description' => '描述', - 'sum_of_period' => '区间内的总和', - 'average_in_period' => '區間平均', - 'no_account_role' => '(no role)', - 'account_role_defaultAsset' => '預設資產帳戶', - 'account_role_sharedAsset' => '共用資產帳戶', - 'account_role_savingAsset' => '儲蓄帳戶', - 'account_role_ccAsset' => '信用卡', - 'account_role_cashWalletAsset' => '現金錢包', - 'budget_chart_click' => '請點擊上表中的預算名稱查看圖表。', - 'category_chart_click' => '請點擊上表中的類別名稱以查看圖表。', - 'in_out_accounts' => '每個組合的所賺取與花費', - 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', - 'in_out_per_category' => '每個分類的所賺取與花費', - 'out_per_budget' => '每個預算的費用', - 'select_expense_revenue' => '選擇 支出/收入 帳戶', - 'multi_currency_report_sum' => '由於此清單包括多種貨幣,您所看到的總額並非合理的。報表會總是以您的預設貨幣為主。', - 'sum_in_default_currency' => '總額會總是以您的預設貨幣顯示', - 'net_filtered_prefs' => '此圖表永遠不會囊括未勾選 “包含於淨值" 選項的帳戶', + 'report_default' => '自 :start 至 :end 的預設財務報表', + 'report_audit' => '自 :start 至 :end 的交易歷史概覽', + 'report_category' => '自 :start 至 :end 的分類報表', + 'report_double' => 'Expense/revenue account report between :start and :end', + 'report_budget' => '自 :start 至 :end 的預算報表', + 'report_tag' => '自 :start 至 :end 的標籤報表', + 'quick_link_reports' => '快速連結', + 'quick_link_examples' => '以下為供您啟程的範例連結,查看 (?) 按鈕下的協助頁面以獲得所有報表以及可用魔術詞彙的資訊。', + 'quick_link_default_report' => '預設財務報表', + 'quick_link_audit_report' => '交易歷史概覽', + 'report_this_month_quick' => '目前月份之全部帳戶', + 'report_last_month_quick' => '上月,所有帳戶', + 'report_this_year_quick' => '目前年份之全部帳戶', + 'report_this_fiscal_year_quick' => '目前財政年度之全部帳戶', + 'report_all_time_quick' => '所有時間之全部帳戶', + 'reports_can_bookmark' => '請記得可以加入報表至我的最愛', + 'incomeVsExpenses' => '所得 vs. 支出', + 'accountBalances' => '帳戶餘額', + 'balanceStart' => '此區間起始餘額', + 'balanceEnd' => '此區間結束餘額', + 'splitByAccount' => '以帳戶分割', + 'coveredWithTags' => '以標籤涵蓋', + 'leftInBudget' => '預算剩餘', + 'left_in_debt' => 'Amount due', + 'sumOfSums' => '總和', + 'noCategory' => '(沒有分類)', + 'notCharged' => '(尚) 未開始', + 'inactive' => '未啟用', + 'active' => '啟用', + 'difference' => '差異', + 'money_flowing_in' => '流入', + 'money_flowing_out' => '流出', + 'topX' => '前 :number', + 'show_full_list' => '顯示所有清單', + 'show_only_top' => '僅顯示前 :number', + 'report_type' => '報表類型', + 'report_type_default' => '預設財務報表', + 'report_type_audit' => '交易歷史概覽 (稽核)', + 'report_type_category' => '分類報表', + 'report_type_budget' => '預算報表', + 'report_type_tag' => '標籤報表', + 'report_type_double' => 'Expense/revenue account report', + 'more_info_help' => '可在協助頁面找到更多關於報表類型的資訊,請點選右上角的 (?) 圖示。', + 'report_included_accounts' => '已包含的帳戶', + 'report_date_range' => '日期範圍', + 'report_preset_ranges' => '預設範圍', + 'shared' => '共用', + 'fiscal_year' => '財政年度', + 'income_entry' => '帳戶 “:name” 自 :start 至 :end 的所得', + 'expense_entry' => '帳戶 “:name” 自 :start 至 :end 的支出', + 'category_entry' => 'Expenses and income in category ":name" between :start and :end', + 'budget_spent_amount' => '預算 “:budget” 自 :start 至 :end 的支出', + 'balance_amount' => '自 :start 至 :end 間由帳戶 ":account" 於預算 “:budget” 的支出', + 'no_audit_activity' => '帳戶 :account_name 自 :start 至 :end 沒有任何交易紀錄。', + 'audit_end_balance' => ':account_name 帳戶於 :end 終點的帳戶餘額為: :balance', + 'reports_extra_options' => '額外選項', + 'report_has_no_extra_options' => '此報表沒有額外選項', + 'reports_submit' => '檢視報表', + 'end_after_start_date' => '報表的結束日期必須在開始日期之後。', + 'select_category' => '選擇類別', + 'select_budget' => '選擇預算。', + 'select_tag' => '選擇標籤', + 'income_per_category' => '每個類別的收入', + 'expense_per_category' => '每個類別的支出', + 'expense_per_budget' => '每個預算的費用', + 'income_per_account' => '每個帳戶的收入', + 'expense_per_account' => '每個帳戶的支出', + 'expense_per_tag' => '每個標籤的支出', + 'income_per_tag' => '每個標籤的收入', + 'include_expense_not_in_budget' => '包含的支出不在所选的预算内', + 'include_expense_not_in_account' => '包含的支出不在所选的账户内', + 'include_expense_not_in_category' => '包含的支出不在所选的份额里内', + 'include_income_not_in_category' => '未列入所選類別的收入', + 'include_income_not_in_account' => '未列入所選帳戶的收入', + 'include_income_not_in_tags' => '未包含在所選標記中的收入', + 'include_expense_not_in_tags' => '未包含在所選標記中的支出', + 'everything_else' => '其他', + 'income_and_expenses' => '收入與支出', + 'spent_average' => '支出(平均)', + 'income_average' => '所得(平均)', + 'transaction_count' => '交易數', + 'average_spending_per_account' => '每個帳戶的平均支出', + 'average_income_per_account' => '每個帳戶的平均收入', + 'total' => '總共', + 'description' => '描述', + 'sum_of_period' => '区间内的总和', + 'average_in_period' => '區間平均', + 'no_account_role' => '(no role)', + 'account_role_defaultAsset' => '預設資產帳戶', + 'account_role_sharedAsset' => '共用資產帳戶', + 'account_role_savingAsset' => '儲蓄帳戶', + 'account_role_ccAsset' => '信用卡', + 'account_role_cashWalletAsset' => '現金錢包', + 'budget_chart_click' => '請點擊上表中的預算名稱查看圖表。', + 'category_chart_click' => '請點擊上表中的類別名稱以查看圖表。', + 'in_out_accounts' => '每個組合的所賺取與花費', + 'in_out_accounts_per_asset' => 'Earned and spent (per asset account)', + 'in_out_per_category' => '每個分類的所賺取與花費', + 'out_per_budget' => '每個預算的費用', + 'select_expense_revenue' => '選擇 支出/收入 帳戶', + 'multi_currency_report_sum' => '由於此清單包括多種貨幣,您所看到的總額並非合理的。報表會總是以您的預設貨幣為主。', + 'sum_in_default_currency' => '總額會總是以您的預設貨幣顯示', + 'net_filtered_prefs' => '此圖表永遠不會囊括未勾選 “包含於淨值" 選項的帳戶', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2348,95 +2354,95 @@ return [ */ // charts: - 'chart' => '圖表', - 'month' => '月', - 'budget' => '預算', - 'spent' => '支出', - 'spent_capped' => 'Spent (capped)', - 'spent_in_budget' => '預算內支出', - 'left_to_spend' => '剩餘可花費', - 'earned' => '已賺得', - 'overspent' => '超支', - 'left' => '剩餘', - 'max-amount' => '最小金額', - 'min-amount' => 'Minimum amount', - 'journal-amount' => '目前帳單條目', - 'name' => '名稱', - 'date' => '日期', - 'date_and_time' => 'Date and time', - 'time' => 'Time', - 'paid' => '已付款', - 'unpaid' => '未付款', - 'day' => '日', - 'budgeted' => '已列入預算', - 'period' => '區間', - 'balance' => '餘額', - 'in_out_period' => 'In + out this period', - 'sum' => '總計', - 'summary' => '概要', - 'average' => '平均', - 'balanceFor' => ':name 的餘額', - 'no_tags' => '(no tags)', - 'nothing_found' => '(nothing found)', + 'chart' => '圖表', + 'month' => '月', + 'budget' => '預算', + 'spent' => '支出', + 'spent_capped' => 'Spent (capped)', + 'spent_in_budget' => '預算內支出', + 'left_to_spend' => '剩餘可花費', + 'earned' => '已賺得', + 'overspent' => '超支', + 'left' => '剩餘', + 'max-amount' => '最小金額', + 'min-amount' => 'Minimum amount', + 'journal-amount' => '目前帳單條目', + 'name' => '名稱', + 'date' => '日期', + 'date_and_time' => 'Date and time', + 'time' => 'Time', + 'paid' => '已付款', + 'unpaid' => '未付款', + 'day' => '日', + 'budgeted' => '已列入預算', + 'period' => '區間', + 'balance' => '餘額', + 'in_out_period' => 'In + out this period', + 'sum' => '總計', + 'summary' => '概要', + 'average' => '平均', + 'balanceFor' => ':name 的餘額', + 'no_tags' => '(no tags)', + 'nothing_found' => '(nothing found)', // piggy banks: - 'event_history' => 'Event history', - 'add_money_to_piggy' => '新增金錢至小豬撲滿 “:name”', - 'piggy_bank' => '小豬撲滿', - 'new_piggy_bank' => '新小豬撲滿', - 'store_piggy_bank' => '儲存新小豬撲滿', - 'stored_piggy_bank' => '儲存新小豬撲滿 “:name”', - 'account_status' => '帳戶狀態', - 'left_for_piggy_banks' => '留給小豬撲滿', - 'sum_of_piggy_banks' => '小豬撲滿總和', - 'saved_so_far' => '保存到目前為止', - 'left_to_save' => '剩餘可供儲蓄', - 'suggested_amount' => '建議每月儲蓄金額', - 'add_money_to_piggy_title' => '新增金錢至小豬撲滿 “:name”', - 'remove_money_from_piggy_title' => '自小豬撲滿 “:name” 中移走金錢', - 'add' => '新增', - 'no_money_for_piggy' => '您已沒有錢可放至小豬撲滿', - 'suggested_savings_per_month' => '每月建議', + 'event_history' => 'Event history', + 'add_money_to_piggy' => '新增金錢至小豬撲滿 “:name”', + 'piggy_bank' => '小豬撲滿', + 'new_piggy_bank' => '新小豬撲滿', + 'store_piggy_bank' => '儲存新小豬撲滿', + 'stored_piggy_bank' => '儲存新小豬撲滿 “:name”', + 'account_status' => '帳戶狀態', + 'left_for_piggy_banks' => '留給小豬撲滿', + 'sum_of_piggy_banks' => '小豬撲滿總和', + 'saved_so_far' => '保存到目前為止', + 'left_to_save' => '剩餘可供儲蓄', + 'suggested_amount' => '建議每月儲蓄金額', + 'add_money_to_piggy_title' => '新增金錢至小豬撲滿 “:name”', + 'remove_money_from_piggy_title' => '自小豬撲滿 “:name” 中移走金錢', + 'add' => '新增', + 'no_money_for_piggy' => '您已沒有錢可放至小豬撲滿', + 'suggested_savings_per_month' => '每月建議', - 'remove' => '移除', - 'max_amount_add' => '所能增加之最大金額為', - 'max_amount_remove' => '所能移除之最大金額為', - 'update_piggy_button' => '更新小豬撲滿', - 'update_piggy_title' => '更新小豬撲滿 ":name"', - 'updated_piggy_bank' => '更新小豬撲滿 ":name"', - 'details' => '明細', - 'events' => '事件', - 'target_amount' => '目標金額', - 'start_date' => '開始日期', - 'no_start_date' => '無開始日期', - 'target_date' => '目標日期', - 'no_target_date' => '無目標日期', - 'table' => '表格', - 'delete_piggy_bank' => '删除小豬撲滿 ":name"', - 'cannot_add_amount_piggy' => '無法增加 :amount 至 “:name”。', - 'cannot_remove_from_piggy' => '無法自 “:name” 移除 :amount。', - 'deleted_piggy_bank' => '删除小豬撲滿 ":name"', - 'added_amount_to_piggy' => '已新增 :amount 至 “:name”', - 'removed_amount_from_piggy' => '已自 “:name” 移除 :amount', - 'piggy_events' => '相關的小豬撲滿', + 'remove' => '移除', + 'max_amount_add' => '所能增加之最大金額為', + 'max_amount_remove' => '所能移除之最大金額為', + 'update_piggy_button' => '更新小豬撲滿', + 'update_piggy_title' => '更新小豬撲滿 ":name"', + 'updated_piggy_bank' => '更新小豬撲滿 ":name"', + 'details' => '明細', + 'events' => '事件', + 'target_amount' => '目標金額', + 'start_date' => '開始日期', + 'no_start_date' => '無開始日期', + 'target_date' => '目標日期', + 'no_target_date' => '無目標日期', + 'table' => '表格', + 'delete_piggy_bank' => '删除小豬撲滿 ":name"', + 'cannot_add_amount_piggy' => '無法增加 :amount 至 “:name”。', + 'cannot_remove_from_piggy' => '無法自 “:name” 移除 :amount。', + 'deleted_piggy_bank' => '删除小豬撲滿 ":name"', + 'added_amount_to_piggy' => '已新增 :amount 至 “:name”', + 'removed_amount_from_piggy' => '已自 “:name” 移除 :amount', + 'piggy_events' => '相關的小豬撲滿', // tags - 'delete_tag' => '刪除標籤 ":tag"', - 'deleted_tag' => '已刪除標籤 ":tag"', - 'new_tag' => '建立新標籤', - 'edit_tag' => '編輯標籤 ":tag"', - 'updated_tag' => '已更新標籤 “:tag”', - 'created_tag' => '標籤 “:tag” 已被建立!', + 'delete_tag' => '刪除標籤 ":tag"', + 'deleted_tag' => '已刪除標籤 ":tag"', + 'new_tag' => '建立新標籤', + 'edit_tag' => '編輯標籤 ":tag"', + 'updated_tag' => '已更新標籤 “:tag”', + 'created_tag' => '標籤 “:tag” 已被建立!', - 'transaction_journal_information' => '交易資訊', - 'transaction_journal_amount' => 'Amount information', - 'transaction_journal_meta' => '後設資訊', - 'transaction_journal_more' => '更多資訊', - 'basic_journal_information' => 'Basic transaction information', - 'transaction_journal_extra' => 'Extra information', - 'att_part_of_journal' => '儲存在 ":journal"', - 'total_amount' => '總金額', - 'number_of_decimals' => '小數位數:', + 'transaction_journal_information' => '交易資訊', + 'transaction_journal_amount' => 'Amount information', + 'transaction_journal_meta' => '後設資訊', + 'transaction_journal_more' => '更多資訊', + 'basic_journal_information' => 'Basic transaction information', + 'transaction_journal_extra' => 'Extra information', + 'att_part_of_journal' => '儲存在 ":journal"', + 'total_amount' => '總金額', + 'number_of_decimals' => '小數位數:', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2450,279 +2456,279 @@ return [ */ // administration - 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', - 'invite_is_deleted' => 'The invite to ":address" has been deleted.', - 'invite_new_user_title' => 'Invite new user', - 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', - 'invited_user_mail' => 'Email address', - 'invite_user' => 'Invite user', - 'user_is_invited' => 'Email address ":address" was invited to Firefly III', - 'administration' => '管理', - 'system_settings' => 'System settings', - 'code_already_used' => 'Invite code has been used', - 'user_administration' => '使用者管理', - 'list_all_users' => '所有使用者', - 'all_users' => '所有使用者', - 'instance_configuration' => '組態設定', - 'firefly_instance_configuration' => 'Firefly III 的組態設定選項', - 'setting_single_user_mode' => '單使用者模式', - 'setting_single_user_mode_explain' => '預設下,Firefly III 只接受一個 (1) 註冊,即您本人。此為安全措施,在除經你同意外,防止其他人使用您的空間,目前註冊功能已關閉。當您取消此核選方塊後,若他們能連接到此空間 (在已聯網狀態),其他人也可以使用。', - 'store_configuration' => '儲存設定', - 'single_user_administration' => ':email 的使用者管理後臺', - 'edit_user' => '編輯使用者 :email', - 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', - 'user_data_information' => '使用者資料', - 'user_information' => '使用者資訊', - 'total_size' => '總大小', - 'budget_or_budgets' => ':count budget|:count budgets', - 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', - 'nr_of_rules_in_total_groups' => ':count_groups规则组中,包含:count_rules条规则', - 'tag_or_tags' => ':count tag|:count tags', - 'configuration_updated' => '已更新組態設定', - 'setting_is_demo_site' => '演示網站', - 'setting_is_demo_site_explain' => '若您勾選此選項,此安裝將會以展示網站方式運作,會有奇怪的副作用。', - 'block_code_bounced' => '電子郵件被退回', - 'block_code_expired' => '演示帳戶已過期', - 'no_block_code' => '無封鎖原因或使用者未被封鎖', - 'demo_user_export' => 'The demo user cannot export data', - 'block_code_email_changed' => '使用者尚未確認新的電子郵件地址', - 'admin_update_email' => '與個人資料頁面相反,使用者不會被通知他們的電子郵件地址已變更!', - 'update_user' => '更新使用者', - 'updated_user' => '使用者資料已更改。', - 'delete_user' => '刪除使用者 :email', - 'user_deleted' => '使用者已被刪除', - 'send_test_email' => '寄送測試郵件訊息', - 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => '發送消息', - 'send_test_triggered' => '測試已觸發,請檢視您的收件匣與日誌檔。', - 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', - 'admin_maintanance_title' => 'Maintenance', - 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', - 'admin_maintenance_clear_cache' => 'Clear cache', - 'admin_notifications' => 'Admin notifications', - 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', - 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', - 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', - 'admin_notification_check_new_version' => 'A new version is available', - 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', - 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', - 'all_invited_users' => 'All invited users', - 'save_notification_settings' => 'Save settings', - 'notification_settings_saved' => 'The notification settings have been saved', + 'invite_is_already_redeemed' => 'The invite to ":address" has already been redeemed.', + 'invite_is_deleted' => 'The invite to ":address" has been deleted.', + 'invite_new_user_title' => 'Invite new user', + 'invite_new_user_text' => 'As an administrator, you can invite users to register on your Firefly III administration. Using the direct link you can share with them, they will be able to register an account. The invited user and their invite link will appear in the table below. You are free to share the invitation link with them.', + 'invited_user_mail' => 'Email address', + 'invite_user' => 'Invite user', + 'user_is_invited' => 'Email address ":address" was invited to Firefly III', + 'administration' => '管理', + 'system_settings' => 'System settings', + 'code_already_used' => 'Invite code has been used', + 'user_administration' => '使用者管理', + 'list_all_users' => '所有使用者', + 'all_users' => '所有使用者', + 'instance_configuration' => '組態設定', + 'firefly_instance_configuration' => 'Firefly III 的組態設定選項', + 'setting_single_user_mode' => '單使用者模式', + 'setting_single_user_mode_explain' => '預設下,Firefly III 只接受一個 (1) 註冊,即您本人。此為安全措施,在除經你同意外,防止其他人使用您的空間,目前註冊功能已關閉。當您取消此核選方塊後,若他們能連接到此空間 (在已聯網狀態),其他人也可以使用。', + 'store_configuration' => '儲存設定', + 'single_user_administration' => ':email 的使用者管理後臺', + 'edit_user' => '編輯使用者 :email', + 'hidden_fields_preferences' => 'You can enable more transaction options in your preferences.', + 'user_data_information' => '使用者資料', + 'user_information' => '使用者資訊', + 'total_size' => '總大小', + 'budget_or_budgets' => ':count budget|:count budgets', + 'budgets_with_limits' => ':count budget with configured amount|:count budgets with configured amount', + 'nr_of_rules_in_total_groups' => ':count_groups规则组中,包含:count_rules条规则', + 'tag_or_tags' => ':count tag|:count tags', + 'configuration_updated' => '已更新組態設定', + 'setting_is_demo_site' => '演示網站', + 'setting_is_demo_site_explain' => '若您勾選此選項,此安裝將會以展示網站方式運作,會有奇怪的副作用。', + 'block_code_bounced' => '電子郵件被退回', + 'block_code_expired' => '演示帳戶已過期', + 'no_block_code' => '無封鎖原因或使用者未被封鎖', + 'demo_user_export' => 'The demo user cannot export data', + 'block_code_email_changed' => '使用者尚未確認新的電子郵件地址', + 'admin_update_email' => '與個人資料頁面相反,使用者不會被通知他們的電子郵件地址已變更!', + 'update_user' => '更新使用者', + 'updated_user' => '使用者資料已更改。', + 'delete_user' => '刪除使用者 :email', + 'user_deleted' => '使用者已被刪除', + 'send_test_email' => '寄送測試郵件訊息', + 'send_test_email_text' => 'To see if your installation is capable of sending email or posting Slack messages, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => '發送消息', + 'send_test_triggered' => '測試已觸發,請檢視您的收件匣與日誌檔。', + 'give_admin_careful' => 'Users who are given admin rights can take away yours. Be careful.', + 'admin_maintanance_title' => 'Maintenance', + 'admin_maintanance_expl' => 'Some nifty buttons for Firefly III maintenance', + 'admin_maintenance_clear_cache' => 'Clear cache', + 'admin_notifications' => 'Admin notifications', + 'admin_notifications_expl' => 'The following notifications can be enabled or disabled by the administrator. If you want to get these messages over Slack as well, set the "incoming webhook" URL.', + 'admin_notification_check_user_new_reg' => 'User gets post-registration welcome message', + 'admin_notification_check_admin_new_reg' => 'Administrator(s) get new user registration notification', + 'admin_notification_check_new_version' => 'A new version is available', + 'admin_notification_check_invite_created' => 'A user is invited to Firefly III', + 'admin_notification_check_invite_redeemed' => 'A user invitation is redeemed', + 'all_invited_users' => 'All invited users', + 'save_notification_settings' => 'Save settings', + 'notification_settings_saved' => 'The notification settings have been saved', - 'split_transaction_title' => '拆分交易的描述', - 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', - 'split_title_help' => '若您建立一筆拆分交易,須有一個有關交易所有拆分的整體描述。', - 'you_create_transfer' => 'You\'re creating a transfer.', - 'you_create_withdrawal' => 'You\'re creating a withdrawal.', - 'you_create_deposit' => 'You\'re creating a deposit.', + 'split_transaction_title' => '拆分交易的描述', + 'split_transaction_title_help' => 'If you create a split transaction, there must be a global description for all splits of the transaction.', + 'split_title_help' => '若您建立一筆拆分交易,須有一個有關交易所有拆分的整體描述。', + 'you_create_transfer' => 'You\'re creating a transfer.', + 'you_create_withdrawal' => 'You\'re creating a withdrawal.', + 'you_create_deposit' => 'You\'re creating a deposit.', // links - 'journal_link_configuration' => '交易鏈結設定', - 'create_new_link_type' => '建立新連結類型', - 'store_new_link_type' => '儲存新連結類型', - 'update_link_type' => '更新連結類型', - 'edit_link_type' => '編輯連結類型 ":name"', - 'updated_link_type' => '更新連結類型 ":name"', - 'delete_link_type' => '刪除連結類型 ":name"', - 'deleted_link_type' => '刪除連結類型 ":name"', - 'stored_new_link_type' => '新建連結類型 ":name"', - 'cannot_edit_link_type' => '無法編輯連結類型 ":name"', - 'link_type_help_name' => '即 "重複"', - 'link_type_help_inward' => '即 "重複"', - 'link_type_help_outward' => '即 "為重複,因“', - 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', - 'do_not_save_connection' => '(不保存連接)', - 'link_transaction' => '連結交易', - 'link_to_other_transaction' => '鏈結此交易至另一筆', - 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', - 'this_transaction' => '这笔交易', - 'transaction' => '交易', - 'comments' => '評論', - 'link_notes' => 'Any notes you wish to store with the link.', - 'invalid_link_selection' => '無法連結這些交易', - 'selected_transaction' => 'Selected transaction', - 'journals_linked' => '交易是連結的。', - 'journals_error_linked' => '這些交易已互相鏈結', - 'journals_link_to_self' => '您無法將一筆交易鏈結至該交易本身', - 'journal_links' => '交易連結', - 'this_withdrawal' => '此取款', - 'this_deposit' => '這筆存款', - 'this_transfer' => '此傳輸', - 'overview_for_link' => '連結類型 “:name” 概覽', - 'source_transaction' => '源交易記錄', - 'link_description' => '連結說明', - 'destination_transaction' => '指定的交易', - 'delete_journal_link' => '刪除 :source:destination之間的聯繫', - 'deleted_link' => '刪除連結', + 'journal_link_configuration' => '交易鏈結設定', + 'create_new_link_type' => '建立新連結類型', + 'store_new_link_type' => '儲存新連結類型', + 'update_link_type' => '更新連結類型', + 'edit_link_type' => '編輯連結類型 ":name"', + 'updated_link_type' => '更新連結類型 ":name"', + 'delete_link_type' => '刪除連結類型 ":name"', + 'deleted_link_type' => '刪除連結類型 ":name"', + 'stored_new_link_type' => '新建連結類型 ":name"', + 'cannot_edit_link_type' => '無法編輯連結類型 ":name"', + 'link_type_help_name' => '即 "重複"', + 'link_type_help_inward' => '即 "重複"', + 'link_type_help_outward' => '即 "為重複,因“', + 'save_connections_by_moving' => 'Save the link between these transactions by moving them to another link type:', + 'do_not_save_connection' => '(不保存連接)', + 'link_transaction' => '連結交易', + 'link_to_other_transaction' => '鏈結此交易至另一筆', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to. The links are currently unused in Firefly III (apart from being shown), but I plan to change this in the future. Use the search box to select a transaction either by title or by ID. If you want to add custom link types, check out the administration section.', + 'this_transaction' => '这笔交易', + 'transaction' => '交易', + 'comments' => '評論', + 'link_notes' => 'Any notes you wish to store with the link.', + 'invalid_link_selection' => '無法連結這些交易', + 'selected_transaction' => 'Selected transaction', + 'journals_linked' => '交易是連結的。', + 'journals_error_linked' => '這些交易已互相鏈結', + 'journals_link_to_self' => '您無法將一筆交易鏈結至該交易本身', + 'journal_links' => '交易連結', + 'this_withdrawal' => '此取款', + 'this_deposit' => '這筆存款', + 'this_transfer' => '此傳輸', + 'overview_for_link' => '連結類型 “:name” 概覽', + 'source_transaction' => '源交易記錄', + 'link_description' => '連結說明', + 'destination_transaction' => '指定的交易', + 'delete_journal_link' => '刪除 :source:destination之間的聯繫', + 'deleted_link' => '刪除連結', // link translations: - 'Paid_name' => '已付款', - 'Refund_name' => '退款', - 'Reimbursement_name' => '報銷', - 'Related_name' => '相關', - 'relates to_inward' => '關聯於', - 'is (partially) refunded by_inward' => '被 (部分) 退還, 由', - 'is (partially) paid for by_inward' => '被 (部分) 付款, 由', - 'is (partially) reimbursed by_inward' => '被 (部分) 核銷, 由', - 'inward_transaction' => '內向交易', - 'outward_transaction' => '外向交易', - 'relates to_outward' => '關聯於', - '(partially) refunds_outward' => '(部分) 退還', - '(partially) pays for_outward' => '(部分) 支付', - '(partially) reimburses_outward' => '(部分) 核銷', - 'is (partially) refunded by' => 'is (partially) refunded by', - 'is (partially) paid for by' => 'is (partially) paid for by', - 'is (partially) reimbursed by' => 'is (partially) reimbursed by', - 'relates to' => 'relates to', - '(partially) refunds' => '(partially) refunds', - '(partially) pays for' => '(partially) pays for', - '(partially) reimburses' => '(partially) reimburses', + 'Paid_name' => '已付款', + 'Refund_name' => '退款', + 'Reimbursement_name' => '報銷', + 'Related_name' => '相關', + 'relates to_inward' => '關聯於', + 'is (partially) refunded by_inward' => '被 (部分) 退還, 由', + 'is (partially) paid for by_inward' => '被 (部分) 付款, 由', + 'is (partially) reimbursed by_inward' => '被 (部分) 核銷, 由', + 'inward_transaction' => '內向交易', + 'outward_transaction' => '外向交易', + 'relates to_outward' => '關聯於', + '(partially) refunds_outward' => '(部分) 退還', + '(partially) pays for_outward' => '(部分) 支付', + '(partially) reimburses_outward' => '(部分) 核銷', + 'is (partially) refunded by' => 'is (partially) refunded by', + 'is (partially) paid for by' => 'is (partially) paid for by', + 'is (partially) reimbursed by' => 'is (partially) reimbursed by', + 'relates to' => 'relates to', + '(partially) refunds' => '(partially) refunds', + '(partially) pays for' => '(partially) pays for', + '(partially) reimburses' => '(partially) reimburses', // split a transaction: - 'splits' => '拆分', - 'add_another_split' => '增加拆分', - 'cannot_edit_opening_balance' => '您無法編輯一個帳戶的開戶餘額。', - 'no_edit_multiple_left' => '您沒有選擇有效的交易紀錄以供編輯。', - 'breadcrumb_convert_group' => 'Convert transaction', - 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', - 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', - 'create_another' => 'After storing, return here to create another one.', - 'after_update_create_another' => 'After updating, return here to continue editing.', - 'store_as_new' => 'Store as a new transaction instead of updating.', - 'reset_after' => 'Reset form after submission', - 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', - 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', - 'transaction_expand_split' => 'Expand split', - 'transaction_remove_split' => 'Remove split', - 'transaction_collapse_split' => 'Collapse split', + 'splits' => '拆分', + 'add_another_split' => '增加拆分', + 'cannot_edit_opening_balance' => '您無法編輯一個帳戶的開戶餘額。', + 'no_edit_multiple_left' => '您沒有選擇有效的交易紀錄以供編輯。', + 'breadcrumb_convert_group' => 'Convert transaction', + 'convert_invalid_source' => 'Source information is invalid for transaction #%d.', + 'convert_invalid_destination' => 'Destination information is invalid for transaction #%d.', + 'create_another' => 'After storing, return here to create another one.', + 'after_update_create_another' => 'After updating, return here to continue editing.', + 'store_as_new' => 'Store as a new transaction instead of updating.', + 'reset_after' => 'Reset form after submission', + 'errors_submission' => 'There was something wrong with your submission. Please check out the errors below.', + 'errors_submission_v2' => 'There was something wrong with your submission. Please check out the errors below: {{errorMessage}}', + 'transaction_expand_split' => 'Expand split', + 'transaction_remove_split' => 'Remove split', + 'transaction_collapse_split' => 'Collapse split', // object groups - 'default_group_title_name' => '(ungrouped)', - 'default_group_title_name_plain' => 'ungrouped', + 'default_group_title_name' => '(ungrouped)', + 'default_group_title_name_plain' => 'ungrouped', // empty lists? no objects? instructions: - 'no_accounts_title_asset' => '建立新資產帳戶', - 'no_accounts_intro_asset' => '您還沒有資產帳戶。資產帳戶可以包括: 你的支票帳戶、儲蓄帳戶、共用帳戶甚至信用卡。', - 'no_accounts_imperative_asset' => '要使用 Firefly III ,您至少需要一个資產帳戶。現在開始吧:', - 'no_accounts_create_asset' => '建立新資產帳戶', - 'no_accounts_title_expense' => '建立新支出帳戶', - 'no_accounts_intro_expense' => '您目前沒有支出帳戶。支出帳戶係供您花錢的地方,如商店或超市。', - 'no_accounts_imperative_expense' => '當您建立交易時支出帳戶會自動被建立,但您也可以手動建立,現在就新增一個:', - 'no_accounts_create_expense' => '建立新支出帳戶', - 'no_accounts_title_revenue' => '建立新收入帳戶', - 'no_accounts_intro_revenue' => '您還沒有收入帳戶,收入帳戶是您收款的地方,比如您的雇主。', - 'no_accounts_imperative_revenue' => '當您建立交易時收入帳戶會自動被建立,但您也可以手動建立,現在就新增一個:', - 'no_accounts_create_revenue' => '建立新收入帳戶', - 'no_accounts_title_liabilities' => '一起建立一筆債務!', - 'no_accounts_intro_liabilities' => '您目前沒有債務,債務係用來註冊您 (學生) 貸款或其他借貸的帳戶。', - 'no_accounts_imperative_liabilities' => '您不需使用此功能,但若您要追蹤這些東西,此功能可是很有用的。', - 'no_accounts_create_liabilities' => '建立新債務', - 'no_budgets_title_default' => '一起建立一筆預算', - 'no_rules_title_default' => 'Let\'s create a rule', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', - 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', - 'no_budgets_imperative_default' => '預算是財務管理的基本工具,現在就建立一筆:', - 'no_budgets_create_default' => '建立新預算', - 'no_rules_create_default' => 'Create a rule', - 'no_categories_title_default' => '一起建立一個分類!', - 'no_categories_intro_default' => '您還沒有分類。分類是用來微調您的交易紀錄,並依指定分類標示。', - 'no_categories_imperative_default' => '當您建立交易時分類會自動被建立,但您也可以手動建立,現在就新增一個:', - 'no_categories_create_default' => '建立分類', - 'no_tags_title_default' => '我們來建立一個標籤吧!', - 'no_tags_intro_default' => '您還沒有標籤。標籤是用來微調您的交易紀錄,並依指定關鍵字標示。', - 'no_tags_imperative_default' => '當您建立交易時標籤會自動被建立,但您也可以手動建立,現在就新增一個:', - 'no_tags_create_default' => '建立標籤', - 'no_transactions_title_withdrawal' => '建立新支出', - 'no_transactions_intro_withdrawal' => '您目前沒有支出,您應該建立支出以開始管理您的財務。', - 'no_transactions_imperative_withdrawal' => '你花了一些錢嗎?然後你應該把它寫下來:', - 'no_transactions_create_withdrawal' => '建立一筆支出', - 'no_transactions_title_deposit' => '建立新收入', - 'no_transactions_intro_deposit' => '目前沒有所得紀錄,您應該建立所得資料以開始管理您的財務。', - 'no_transactions_imperative_deposit' => '你收了一些錢嗎?然後你應該把它寫下來:', - 'no_transactions_create_deposit' => '新增存款', - 'no_transactions_title_transfers' => '我們來建立一筆轉帳!', - 'no_transactions_intro_transfers' => '您還沒有轉帳。當您自資產帳戶之前移動金錢,會自動記錄為一筆轉帳。', - 'no_transactions_imperative_transfers' => '你已動用了一些錢嗎?那麼把它寫下來:', - 'no_transactions_create_transfers' => '新增轉帳', - 'no_piggies_title_default' => '我們來建立一個小豬撲滿!', - 'no_piggies_intro_default' => '您目前沒有小豬撲滿。您可以建立小豬撲滿來分別您的儲蓄,並追蹤您儲蓄的目標。', - 'no_piggies_imperative_default' => '您有想要儲蓄的東西嗎?建立一個小豬撲滿然後開始追蹤:', - 'no_piggies_create_default' => '創建一個新小豬撲滿', - 'no_bills_title_default' => '我們來建立一筆帳單!', - 'no_bills_intro_default' => '您目前沒有帳單。您可以建立帳單以追蹤您的日常支出,如房租與保險。', - 'no_bills_imperative_default' => '你們有這樣的普通帳單嗎?創建帳單並跟蹤您的付款:', - 'no_bills_create_default' => '建立新帳單', + 'no_accounts_title_asset' => '建立新資產帳戶', + 'no_accounts_intro_asset' => '您還沒有資產帳戶。資產帳戶可以包括: 你的支票帳戶、儲蓄帳戶、共用帳戶甚至信用卡。', + 'no_accounts_imperative_asset' => '要使用 Firefly III ,您至少需要一个資產帳戶。現在開始吧:', + 'no_accounts_create_asset' => '建立新資產帳戶', + 'no_accounts_title_expense' => '建立新支出帳戶', + 'no_accounts_intro_expense' => '您目前沒有支出帳戶。支出帳戶係供您花錢的地方,如商店或超市。', + 'no_accounts_imperative_expense' => '當您建立交易時支出帳戶會自動被建立,但您也可以手動建立,現在就新增一個:', + 'no_accounts_create_expense' => '建立新支出帳戶', + 'no_accounts_title_revenue' => '建立新收入帳戶', + 'no_accounts_intro_revenue' => '您還沒有收入帳戶,收入帳戶是您收款的地方,比如您的雇主。', + 'no_accounts_imperative_revenue' => '當您建立交易時收入帳戶會自動被建立,但您也可以手動建立,現在就新增一個:', + 'no_accounts_create_revenue' => '建立新收入帳戶', + 'no_accounts_title_liabilities' => '一起建立一筆債務!', + 'no_accounts_intro_liabilities' => '您目前沒有債務,債務係用來註冊您 (學生) 貸款或其他借貸的帳戶。', + 'no_accounts_imperative_liabilities' => '您不需使用此功能,但若您要追蹤這些東西,此功能可是很有用的。', + 'no_accounts_create_liabilities' => '建立新債務', + 'no_budgets_title_default' => '一起建立一筆預算', + 'no_rules_title_default' => 'Let\'s create a rule', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organize your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_rules_intro_default' => 'You have no rules yet. Rules are powerful automations that can handle transactions for you.', + 'no_rules_imperative_default' => 'Rules can be very useful when you\'re managing transactions. Let\'s create one now:', + 'no_budgets_imperative_default' => '預算是財務管理的基本工具,現在就建立一筆:', + 'no_budgets_create_default' => '建立新預算', + 'no_rules_create_default' => 'Create a rule', + 'no_categories_title_default' => '一起建立一個分類!', + 'no_categories_intro_default' => '您還沒有分類。分類是用來微調您的交易紀錄,並依指定分類標示。', + 'no_categories_imperative_default' => '當您建立交易時分類會自動被建立,但您也可以手動建立,現在就新增一個:', + 'no_categories_create_default' => '建立分類', + 'no_tags_title_default' => '我們來建立一個標籤吧!', + 'no_tags_intro_default' => '您還沒有標籤。標籤是用來微調您的交易紀錄,並依指定關鍵字標示。', + 'no_tags_imperative_default' => '當您建立交易時標籤會自動被建立,但您也可以手動建立,現在就新增一個:', + 'no_tags_create_default' => '建立標籤', + 'no_transactions_title_withdrawal' => '建立新支出', + 'no_transactions_intro_withdrawal' => '您目前沒有支出,您應該建立支出以開始管理您的財務。', + 'no_transactions_imperative_withdrawal' => '你花了一些錢嗎?然後你應該把它寫下來:', + 'no_transactions_create_withdrawal' => '建立一筆支出', + 'no_transactions_title_deposit' => '建立新收入', + 'no_transactions_intro_deposit' => '目前沒有所得紀錄,您應該建立所得資料以開始管理您的財務。', + 'no_transactions_imperative_deposit' => '你收了一些錢嗎?然後你應該把它寫下來:', + 'no_transactions_create_deposit' => '新增存款', + 'no_transactions_title_transfers' => '我們來建立一筆轉帳!', + 'no_transactions_intro_transfers' => '您還沒有轉帳。當您自資產帳戶之前移動金錢,會自動記錄為一筆轉帳。', + 'no_transactions_imperative_transfers' => '你已動用了一些錢嗎?那麼把它寫下來:', + 'no_transactions_create_transfers' => '新增轉帳', + 'no_piggies_title_default' => '我們來建立一個小豬撲滿!', + 'no_piggies_intro_default' => '您目前沒有小豬撲滿。您可以建立小豬撲滿來分別您的儲蓄,並追蹤您儲蓄的目標。', + 'no_piggies_imperative_default' => '您有想要儲蓄的東西嗎?建立一個小豬撲滿然後開始追蹤:', + 'no_piggies_create_default' => '創建一個新小豬撲滿', + 'no_bills_title_default' => '我們來建立一筆帳單!', + 'no_bills_intro_default' => '您目前沒有帳單。您可以建立帳單以追蹤您的日常支出,如房租與保險。', + 'no_bills_imperative_default' => '你們有這樣的普通帳單嗎?創建帳單並跟蹤您的付款:', + 'no_bills_create_default' => '建立新帳單', // recurring transactions - 'create_right_now' => 'Create right now', - 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', - 'recurrences' => '週期性交易', - 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', - 'recurring_calendar_view' => '月曆', - 'no_recurring_title_default' => '一起建立一筆週期性交易!', - 'no_recurring_intro_default' => '您目前沒有週期性交易。您可使用此功能讓 Firefly III 自動為您建立交易。', - 'no_recurring_imperative_default' => '這是一個非常進階的功能,也極為有用。請確定在繼續之前,您已閱讀右上角 (?) 圖示的文件說明。', - 'no_recurring_create_default' => '建立一筆週期性交易', - 'make_new_recurring' => '建立一筆週期性交易', - 'recurring_daily' => '每天', - 'recurring_weekly' => '每星期:weekday', - 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', - 'recurring_monthly' => '每月第 :dayOfMonth 天', - 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', - 'recurring_ndom' => '每月第 :dayOfMonth 個 :weekday', - 'recurring_yearly' => '每年的:date', - 'overview_for_recurrence' => '週期性交易 ":title" 概覽', - 'warning_duplicates_repetitions' => '在少數情況下,日期在此清單上會顯示兩次,這在多個重複衝突之下會發生。Firefly III 每天只會產生一條紀錄。', - 'created_transactions' => '關聯交易', - 'expected_withdrawals' => '預期提款', - 'expected_deposits' => '預期存款', - 'expected_transfers' => '預期轉帳', - 'created_withdrawals' => '已建立提款', - 'created_deposits' => '已建立存款', - 'created_transfers' => '已建立轉帳', - 'recurring_info' => 'Recurring transaction :count / :total', - 'created_from_recurrence' => '由週期性交易 ":title" (#:id) 所建立', - 'recurring_never_cron' => '用來支援週期性交易的 cron job 似乎沒有運行過,這在您剛安裝 Firefly III 沒多久時是非常正常的,但能越快處理越好。請使用本頁右上角的 (?)-圖示查閱說明頁面。', - 'recurring_cron_long_ago' => '用來支援週期性交易的 cron job 自上次運行已超過了 36 小時,您確定您已正確設定了嗎?請使用本頁右上角的 (?)-圖示查閱說明頁面。', + 'create_right_now' => 'Create right now', + 'no_new_transaction_in_recurrence' => 'No new transaction was created. Perhaps it was already fired for this date?', + 'recurrences' => '週期性交易', + 'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.', + 'recurring_calendar_view' => '月曆', + 'no_recurring_title_default' => '一起建立一筆週期性交易!', + 'no_recurring_intro_default' => '您目前沒有週期性交易。您可使用此功能讓 Firefly III 自動為您建立交易。', + 'no_recurring_imperative_default' => '這是一個非常進階的功能,也極為有用。請確定在繼續之前,您已閱讀右上角 (?) 圖示的文件說明。', + 'no_recurring_create_default' => '建立一筆週期性交易', + 'make_new_recurring' => '建立一筆週期性交易', + 'recurring_daily' => '每天', + 'recurring_weekly' => '每星期:weekday', + 'recurring_weekly_skip' => 'Every :skip(st/nd/rd/th) week on :weekday', + 'recurring_monthly' => '每月第 :dayOfMonth 天', + 'recurring_monthly_skip' => 'Every :skip(st/nd/rd/th) month on the :dayOfMonth(st/nd/rd/th) day', + 'recurring_ndom' => '每月第 :dayOfMonth 個 :weekday', + 'recurring_yearly' => '每年的:date', + 'overview_for_recurrence' => '週期性交易 ":title" 概覽', + 'warning_duplicates_repetitions' => '在少數情況下,日期在此清單上會顯示兩次,這在多個重複衝突之下會發生。Firefly III 每天只會產生一條紀錄。', + 'created_transactions' => '關聯交易', + 'expected_withdrawals' => '預期提款', + 'expected_deposits' => '預期存款', + 'expected_transfers' => '預期轉帳', + 'created_withdrawals' => '已建立提款', + 'created_deposits' => '已建立存款', + 'created_transfers' => '已建立轉帳', + 'recurring_info' => 'Recurring transaction :count / :total', + 'created_from_recurrence' => '由週期性交易 ":title" (#:id) 所建立', + 'recurring_never_cron' => '用來支援週期性交易的 cron job 似乎沒有運行過,這在您剛安裝 Firefly III 沒多久時是非常正常的,但能越快處理越好。請使用本頁右上角的 (?)-圖示查閱說明頁面。', + 'recurring_cron_long_ago' => '用來支援週期性交易的 cron job 自上次運行已超過了 36 小時,您確定您已正確設定了嗎?請使用本頁右上角的 (?)-圖示查閱說明頁面。', - 'create_new_recurrence' => '建立新週期性交易', - 'help_first_date' => '表示第一筆預期的週期性交易,應於未來發生。', - 'help_first_date_no_past' => '表示第一筆預期的週期交易,Firefly III 不會建立過去的交易。', - 'no_currency' => '(沒有貨幣)', - 'mandatory_for_recurring' => '必填週期性資訊', - 'mandatory_for_transaction' => '必填交易資訊', - 'optional_for_recurring' => '選擇性週期性資訊', - 'optional_for_transaction' => '選擇性交易資訊', - 'change_date_other_options' => '更改 "第一個日期" 以查看更多選項。', - 'mandatory_fields_for_tranaction' => '當交易建立完後這裡的數值會結束', - 'click_for_calendar' => '點這裡開啟顯示週期性交易的行事曆', - 'repeat_forever' => '永遠重複', - 'repeat_until_date' => '重複至特定日期', - 'repeat_times' => '重複一定次數', - 'recurring_skips_one' => '每隔一個', - 'recurring_skips_more' => '略過 :count 個情況', - 'store_new_recurrence' => '儲存週期交易', - 'stored_new_recurrence' => '週期性交易 ":title" 已成功儲存', - 'edit_recurrence' => '編輯週期性交易 ":title"', - 'recurring_repeats_until' => '重複至 :date', - 'recurring_repeats_forever' => '永遠重複', - 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', - 'update_recurrence' => '更新定期交易記錄', - 'updated_recurrence' => '更新了定期交易記錄:title', - 'recurrence_is_inactive' => '此週期性交易並未啟用亦不會自動產生新交易。', - 'delete_recurring' => '刪除定期交易 ":title"', - 'new_recurring_transaction' => '新週期性交易', - 'help_weekend' => '當週期性交易落於週六及週日時, Firefly III 該如何應處?', - 'do_nothing' => '仍建立交易', - 'skip_transaction' => 'Skip the occurrence', - 'jump_to_friday' => '於前一個週五建立交易', - 'jump_to_monday' => '於次一個週一建立交易', - 'will_jump_friday' => '將於週五建立交易,而非週末。', - 'will_jump_monday' => '將於週一建立交易,而非週末。', - 'except_weekends' => '例外的周末', - 'recurrence_deleted' => '週期性交易 ":title" 已刪除', + 'create_new_recurrence' => '建立新週期性交易', + 'help_first_date' => '表示第一筆預期的週期性交易,應於未來發生。', + 'help_first_date_no_past' => '表示第一筆預期的週期交易,Firefly III 不會建立過去的交易。', + 'no_currency' => '(沒有貨幣)', + 'mandatory_for_recurring' => '必填週期性資訊', + 'mandatory_for_transaction' => '必填交易資訊', + 'optional_for_recurring' => '選擇性週期性資訊', + 'optional_for_transaction' => '選擇性交易資訊', + 'change_date_other_options' => '更改 "第一個日期" 以查看更多選項。', + 'mandatory_fields_for_tranaction' => '當交易建立完後這裡的數值會結束', + 'click_for_calendar' => '點這裡開啟顯示週期性交易的行事曆', + 'repeat_forever' => '永遠重複', + 'repeat_until_date' => '重複至特定日期', + 'repeat_times' => '重複一定次數', + 'recurring_skips_one' => '每隔一個', + 'recurring_skips_more' => '略過 :count 個情況', + 'store_new_recurrence' => '儲存週期交易', + 'stored_new_recurrence' => '週期性交易 ":title" 已成功儲存', + 'edit_recurrence' => '編輯週期性交易 ":title"', + 'recurring_repeats_until' => '重複至 :date', + 'recurring_repeats_forever' => '永遠重複', + 'recurring_repeats_x_times' => 'Repeats :count time|Repeats :count times', + 'update_recurrence' => '更新定期交易記錄', + 'updated_recurrence' => '更新了定期交易記錄:title', + 'recurrence_is_inactive' => '此週期性交易並未啟用亦不會自動產生新交易。', + 'delete_recurring' => '刪除定期交易 ":title"', + 'new_recurring_transaction' => '新週期性交易', + 'help_weekend' => '當週期性交易落於週六及週日時, Firefly III 該如何應處?', + 'do_nothing' => '仍建立交易', + 'skip_transaction' => 'Skip the occurrence', + 'jump_to_friday' => '於前一個週五建立交易', + 'jump_to_monday' => '於次一個週一建立交易', + 'will_jump_friday' => '將於週五建立交易,而非週末。', + 'will_jump_monday' => '將於週一建立交易,而非週末。', + 'except_weekends' => '例外的周末', + 'recurrence_deleted' => '週期性交易 ":title" 已刪除', /* * PLEASE DO NOT EDIT THIS FILE DIRECTLY. @@ -2736,69 +2742,69 @@ return [ */ // new lines for summary controller. - 'box_balance_in_currency' => '餘額 (:currency)', - 'box_spent_in_currency' => '已花費 (:currency)', - 'box_earned_in_currency' => '盈利 (:currency)', - 'box_budgeted_in_currency' => 'Budgeted (:currency)', - 'box_bill_paid_in_currency' => '已付帳單 (:currency)', - 'box_bill_unpaid_in_currency' => '未付帳單 (:currency)', - 'box_left_to_spend_in_currency' => '可供花費 (:currency)', - 'box_net_worth_in_currency' => '淨值 (:currency)', - 'box_spend_per_day' => '每日可供花費: :amount', + 'box_balance_in_currency' => '餘額 (:currency)', + 'box_spent_in_currency' => '已花費 (:currency)', + 'box_earned_in_currency' => '盈利 (:currency)', + 'box_budgeted_in_currency' => 'Budgeted (:currency)', + 'box_bill_paid_in_currency' => '已付帳單 (:currency)', + 'box_bill_unpaid_in_currency' => '未付帳單 (:currency)', + 'box_left_to_spend_in_currency' => '可供花費 (:currency)', + 'box_net_worth_in_currency' => '淨值 (:currency)', + 'box_spend_per_day' => '每日可供花費: :amount', // debug page - 'debug_page' => 'Debug page', - 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', - 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', - 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', + 'debug_page' => 'Debug page', + 'debug_submit_instructions' => 'If you are running into problems, you can use the information in this box as debug information. Please copy-and-paste into a new or existing GitHub issue. It will generate a beautiful table that can be used to quickly diagnose your problem.', + 'debug_pretty_table' => 'If you copy/paste the box below into a GitHub issue it will generate a table. Please do not surround this text with backticks or quotes.', + 'debug_additional_data' => 'You may also share the content of the box below. You can also copy-and-paste this into a new or existing GitHub issue. However, the content of this box may contain private information such as account names, transaction details or email addresses.', // object groups - 'object_groups_menu_bar' => 'Groups', - 'object_groups_page_title' => 'Groups', - 'object_groups_breadcrumb' => 'Groups', - 'object_groups_index' => 'Overview', - 'object_groups' => 'Groups', - 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', - 'object_group_title' => 'Title', - 'edit_object_group' => 'Edit group ":title"', - 'delete_object_group' => 'Delete group ":title"', - 'update_object_group' => 'Update group', - 'updated_object_group' => 'Successfully updated group ":title"', - 'deleted_object_group' => 'Successfully deleted group ":title"', - 'object_group' => 'Group', + 'object_groups_menu_bar' => 'Groups', + 'object_groups_page_title' => 'Groups', + 'object_groups_breadcrumb' => 'Groups', + 'object_groups_index' => 'Overview', + 'object_groups' => 'Groups', + 'object_groups_empty_explain' => 'Some things in Firefly III can be divided into groups. Piggy banks for example, feature a "Group" field in the edit and create screens. When you set this field, you can edit the names and the order of the groups on this page. For more information, check out the help-pages in the top right corner, under the (?)-icon.', + 'object_group_title' => 'Title', + 'edit_object_group' => 'Edit group ":title"', + 'delete_object_group' => 'Delete group ":title"', + 'update_object_group' => 'Update group', + 'updated_object_group' => 'Successfully updated group ":title"', + 'deleted_object_group' => 'Successfully deleted group ":title"', + 'object_group' => 'Group', // other stuff - 'placeholder' => '[Placeholder]', + 'placeholder' => '[Placeholder]', // audit log entries - 'audit_log_entries' => 'Audit log entries', - 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', - 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', - 'ale_action_clear_budget' => 'Removed from budget', - 'ale_action_update_group_title' => 'Updated transaction group title', - 'ale_action_update_date' => 'Updated transaction date', - 'ale_action_update_order' => 'Updated transaction order', - 'ale_action_clear_category' => 'Removed from category', - 'ale_action_clear_notes' => 'Removed notes', - 'ale_action_clear_tag' => 'Cleared tag', - 'ale_action_clear_all_tags' => 'Cleared all tags', - 'ale_action_set_bill' => 'Linked to bill', - 'ale_action_switch_accounts' => 'Switched source and destination account', - 'ale_action_set_budget' => 'Set budget', - 'ale_action_set_category' => 'Set category', - 'ale_action_set_source' => 'Set source account', - 'ale_action_set_destination' => 'Set destination account', - 'ale_action_update_transaction_type' => 'Changed transaction type', - 'ale_action_update_notes' => 'Changed notes', - 'ale_action_update_description' => 'Changed description', - 'ale_action_add_to_piggy' => 'Piggy bank', - 'ale_action_remove_from_piggy' => 'Piggy bank', - 'ale_action_add_tag' => 'Added tag', - 'ale_action_update_amount' => 'Updated amount', + 'audit_log_entries' => 'Audit log entries', + 'ale_action_log_add' => 'Added :amount to piggy bank ":name"', + 'ale_action_log_remove' => 'Removed :amount from piggy bank ":name"', + 'ale_action_clear_budget' => 'Removed from budget', + 'ale_action_update_group_title' => 'Updated transaction group title', + 'ale_action_update_date' => 'Updated transaction date', + 'ale_action_update_order' => 'Updated transaction order', + 'ale_action_clear_category' => 'Removed from category', + 'ale_action_clear_notes' => 'Removed notes', + 'ale_action_clear_tag' => 'Cleared tag', + 'ale_action_clear_all_tags' => 'Cleared all tags', + 'ale_action_set_bill' => 'Linked to bill', + 'ale_action_switch_accounts' => 'Switched source and destination account', + 'ale_action_set_budget' => 'Set budget', + 'ale_action_set_category' => 'Set category', + 'ale_action_set_source' => 'Set source account', + 'ale_action_set_destination' => 'Set destination account', + 'ale_action_update_transaction_type' => 'Changed transaction type', + 'ale_action_update_notes' => 'Changed notes', + 'ale_action_update_description' => 'Changed description', + 'ale_action_add_to_piggy' => 'Piggy bank', + 'ale_action_remove_from_piggy' => 'Piggy bank', + 'ale_action_add_tag' => 'Added tag', + 'ale_action_update_amount' => 'Updated amount', // dashboard - 'enable_auto_convert' => 'Enable currency conversion', - 'disable_auto_convert' => 'Disable currency conversion', + 'enable_auto_convert' => 'Enable currency conversion', + 'disable_auto_convert' => 'Disable currency conversion', ]; /* diff --git a/resources/lang/zh_TW/validation.php b/resources/lang/zh_TW/validation.php index 32f7214252..03e28231f1 100644 --- a/resources/lang/zh_TW/validation.php +++ b/resources/lang/zh_TW/validation.php @@ -300,6 +300,7 @@ return [ // no access to administration: 'no_access_user_group' => 'You do not have the correct access rights for this administration.', + 'administration_owner_rename' => 'You can\'t rename your standard administration.', ]; /* diff --git a/routes/breadcrumbs.php b/routes/breadcrumbs.php index 1d969e6438..f3d5d0faac 100644 --- a/routes/breadcrumbs.php +++ b/routes/breadcrumbs.php @@ -1308,7 +1308,7 @@ Breadcrumbs::for( Breadcrumbs::for( 'administrations.edit', static function (Generator $breadcrumbs, UserGroup $userGroup): void { - $breadcrumbs->parent('administrations.show',$userGroup); + $breadcrumbs->parent('administrations.show', $userGroup); $breadcrumbs->push(trans('firefly.edit_administration_breadcrumb', ['title' => limitStringLength($userGroup->title)]), route('administrations.edit', [$userGroup->id])); } ); diff --git a/routes/web.php b/routes/web.php index 5db40c88d6..ed5592faf7 100644 --- a/routes/web.php +++ b/routes/web.php @@ -47,7 +47,7 @@ Route::group( Route::group( ['middleware' => 'binders-only', 'namespace' => 'FireflyIII\Http\Controllers\System'], static function (): void { - Route::get('offline', static fn() => view('errors.offline')); + Route::get('offline', static fn () => view('errors.offline')); Route::get('health', ['uses' => 'HealthcheckController@check', 'as' => 'healthcheck']); } ); @@ -150,27 +150,32 @@ Route::group( // show Route::get('show/{account}/all', ['uses' => 'Account\ShowController@showAll', 'as' => 'show.all']); Route::get('show/{account}/{start_date?}/{end_date?}', ['uses' => 'Account\ShowController@show', 'as' => 'show']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; // reconcile routes: Route::get('reconcile/{account}/index/{start_date?}/{end_date?}', ['uses' => 'Account\ReconcileController@reconcile', 'as' => 'reconcile']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::post('reconcile/{account}/submit/{start_date?}/{end_date?}', ['uses' => 'Account\ReconcileController@submit', 'as' => 'reconcile.submit']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; // reconcile JSON routes Route::get('reconcile/{account}/overview/{start_date?}/{end_date?}', ['uses' => 'Json\ReconcileController@overview', 'as' => 'reconcile.overview']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'reconcile/{account}/transactions/{start_date?}/{end_date?}', ['uses' => 'Json\ReconcileController@transactions', 'as' => 'reconcile.transactions'] ) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -247,16 +252,18 @@ Route::group( Route::get('show/{budget}/{budgetLimit}', ['uses' => 'Budget\ShowController@showByBudgetLimit', 'as' => 'show.limit']); Route::get('list/no-budget/all', ['uses' => 'Budget\ShowController@noBudgetAll', 'as' => 'no-budget-all']); Route::get('list/no-budget/{start_date?}/{end_date?}', ['uses' => 'Budget\ShowController@noBudget', 'as' => 'no-budget']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; // reorder budgets Route::post('reorder', ['uses' => 'Budget\IndexController@reorder', 'as' => 'reorder']); // index Route::get('{start_date?}/{end_date?}', ['uses' => 'Budget\IndexController@index', 'as' => 'index']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -265,8 +272,9 @@ Route::group( ['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'budget-limits', 'as' => 'budget-limits.'], static function (): void { Route::get('create/{budget}/{start_date}/{end_date}', ['uses' => 'Budget\BudgetLimitController@create', 'as' => 'create']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::post('store', ['uses' => 'Budget\BudgetLimitController@store', 'as' => 'store']); Route::post('delete/{budgetLimit}', ['uses' => 'Budget\BudgetLimitController@delete', 'as' => 'delete']); @@ -297,14 +305,16 @@ Route::group( // show category: Route::get('show/{category}/all', ['uses' => 'Category\ShowController@showAll', 'as' => 'show.all']); Route::get('show/{category}/{start_date?}/{end_date?}', ['uses' => 'Category\ShowController@show', 'as' => 'show']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; // no category controller: Route::get('list/no-category/all', ['uses' => 'Category\NoCategoryController@showAll', 'as' => 'no-category.all']); Route::get('list/no-category/{start_date?}/{end_date?}', ['uses' => 'Category\NoCategoryController@show', 'as' => 'no-category']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -331,25 +341,30 @@ Route::group( Route::get('expense', ['uses' => 'AccountController@expenseAccounts', 'as' => 'expense']); Route::get('revenue', ['uses' => 'AccountController@revenueAccounts', 'as' => 'revenue']); Route::get('report/{accountList}/{start_date}/{end_date}', ['uses' => 'AccountController@report', 'as' => 'report']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('period/{account}/{start_date}/{end_date}', ['uses' => 'AccountController@period', 'as' => 'period']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('income-category/{account}/all/all', ['uses' => 'AccountController@incomeCategoryAll', 'as' => 'income-category-all']); Route::get('expense-category/{account}/all/all', ['uses' => 'AccountController@expenseCategoryAll', 'as' => 'expense-category-all']); Route::get('expense-budget/{account}/all/all', ['uses' => 'AccountController@expenseBudgetAll', 'as' => 'expense-budget-all']); Route::get('income-category/{account}/{start_date}/{end_date}', ['uses' => 'AccountController@incomeCategory', 'as' => 'income-category']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('expense-category/{account}/{start_date}/{end_date}', ['uses' => 'AccountController@expenseCategory', 'as' => 'expense-category']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('expense-budget/{account}/{start_date}/{end_date}', ['uses' => 'AccountController@expenseBudget', 'as' => 'expense-budget']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -368,11 +383,13 @@ Route::group( static function (): void { Route::get('frontpage', ['uses' => 'BudgetController@frontpage', 'as' => 'frontpage']); Route::get('period/0/{currency}/{accountList}/{start_date}/{end_date}', ['uses' => 'BudgetController@periodNoBudget', 'as' => 'period.no-budget']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('period/{budget}/{currency}/{accountList}/{start_date}/{end_date}', ['uses' => 'BudgetController@period', 'as' => 'period']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('budget/{budget}/{budgetLimit}', ['uses' => 'BudgetController@budgetLimit', 'as' => 'budget-limit']); Route::get('budget/{budget}', ['uses' => 'BudgetController@budget', 'as' => 'budget']); @@ -386,23 +403,27 @@ Route::group( 'category/expense/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetReportController@categoryExpense', 'as' => 'category-expense'] ) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'budget/expense/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetReportController@budgetExpense', 'as' => 'budget-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'source-account/expense/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetReportController@sourceAccountExpense', 'as' => 'source-account-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'destination-account/expense/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetReportController@destinationAccountExpense', 'as' => 'destination-account-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('operations/{accountList}/{budget}/{start_date}/{end_date}', ['uses' => 'BudgetReportController@mainChart', 'as' => 'main']); } ); @@ -419,51 +440,61 @@ Route::group( 'report-period/0/{accountList}/{start_date}/{end_date}', ['uses' => 'CategoryController@reportPeriodNoCategory', 'as' => 'period.no-category'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('report-period/{category}/{accountList}/{start_date}/{end_date}', ['uses' => 'CategoryController@reportPeriod', 'as' => 'period'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/expense/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@categoryExpense', 'as' => 'category-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/income/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@categoryIncome', 'as' => 'category-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'budget/expense/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@budgetExpense', 'as' => 'budget-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'source/expense/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@sourceExpense', 'as' => 'source-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'source/income/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@sourceIncome', 'as' => 'source-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'dest/expense/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@destinationExpense', 'as' => 'dest-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'dest/income/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@destinationIncome', 'as' => 'dest-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('operations/{accountList}/{category}/{start_date}/{end_date}', ['uses' => 'CategoryReportController@mainChart', 'as' => 'main'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -472,52 +503,62 @@ Route::group( ['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers\Chart', 'prefix' => 'chart/tag', 'as' => 'chart.tag.'], static function (): void { Route::get('tag/expense/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@tagExpense', 'as' => 'tag-expense']) - ->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['start_date' => DATEFORMAT]) + ->where(['end_date' => DATEFORMAT]) + ; Route::get('tag/income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@tagIncome', 'as' => 'tag-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/expense/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@categoryExpense', 'as' => 'category-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@categoryIncome', 'as' => 'category-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'budget/expense/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@budgetExpense', 'as' => 'budget-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'source/expense/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@sourceExpense', 'as' => 'source-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'source/income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@sourceIncome', 'as' => 'source-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'dest/expense/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@destinationExpense', 'as' => 'dest-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'dest/income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagReportController@destinationIncome', 'as' => 'dest-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('operations/{accountList}/{tag}/{start_date}/{end_date}', ['uses' => 'TagReportController@mainChart', 'as' => 'main'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -528,34 +569,40 @@ Route::group( Route::get('main/{accountList}/{account}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@mainChart', 'as' => 'main'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/expense/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@categoryExpense', 'as' => 'category-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'category/income/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@categoryIncome', 'as' => 'category-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'budget/expense/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@budgetExpense', 'as' => 'budget-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'tag/expense/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@tagExpense', 'as' => 'tag-expense'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'tag/income/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleReportController@tagIncome', 'as' => 'tag-income'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -574,11 +621,13 @@ Route::group( Route::get('operations/{accountList}/{start_date}/{end_date}', ['uses' => 'ReportController@operations', 'as' => 'operations'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('net-worth/{accountList}/{start_date}/{end_date}/', ['uses' => 'ReportController@netWorth', 'as' => 'net-worth'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -589,18 +638,22 @@ Route::group( Route::get('categories/{objectType}/{start_date}/{end_date}', ['uses' => 'TransactionController@categories', 'as' => 'categories'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('budgets/{start_date}/{end_date}', ['uses' => 'TransactionController@budgets', 'as' => 'budgets'])->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'destinationAccounts/{objectType}/{start_date}/{end_date}', ['uses' => 'TransactionController@destinationAccounts', 'as' => 'destinationAccounts'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('sourceAccounts/{objectType}/{start_date}/{end_date}', ['uses' => 'TransactionController@sourceAccounts', 'as' => 'sourceAccounts'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -658,7 +711,8 @@ Route::group( 'budget/total-budgeted/{currency}/{start_date}/{end_date}', ['uses' => 'Json\BudgetController@getBudgetInformation', 'as' => 'budget.total-budgeted'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; // boxes Route::get('box/balance', ['uses' => 'Json\BoxController@balance', 'as' => 'box.balance']); Route::get('box/available', ['uses' => 'Json\BoxController@available', 'as' => 'box.available']); @@ -798,7 +852,8 @@ Route::group( Route::get('general/{accountList}/{start_date}/{end_date}', ['uses' => 'AccountController@general', 'as' => 'general'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -809,7 +864,8 @@ Route::group( Route::get('overview/{accountList}/{start_date}/{end_date}', ['uses' => 'BillController@overview', 'as' => 'overview'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -821,32 +877,38 @@ Route::group( Route::get('operations/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@operations', 'as' => 'operations'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'ops-asset/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@operationsPerAsset', 'as' => 'ops-asset'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'top-expenses/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@topExpenses', 'as' => 'top-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'avg-expenses/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@avgExpenses', 'as' => 'avg-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('top-income/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@topIncome', 'as' => 'top-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('avg-income/{accountList}/{doubleList}/{start_date}/{end_date}', ['uses' => 'DoubleController@avgIncome', 'as' => 'avg-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -862,15 +924,18 @@ Route::group( Route::get('operations/{accountList}/{start_date}/{end_date}', ['uses' => 'OperationsController@operations', 'as' => 'operations'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('income/{accountList}/{start_date}/{end_date}', ['uses' => 'OperationsController@income', 'as' => 'income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('expenses/{accountList}/{start_date}/{end_date}', ['uses' => 'OperationsController@expenses', 'as' => 'expenses'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -887,49 +952,59 @@ Route::group( Route::get('operations/{accountList}/{start_date}/{end_date}', ['uses' => 'CategoryController@operations', 'as' => 'operations'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('income/{accountList}/{start_date}/{end_date}', ['uses' => 'CategoryController@income', 'as' => 'income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('expenses/{accountList}/{start_date}/{end_date}', ['uses' => 'CategoryController@expenses', 'as' => 'expenses'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('accounts/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@accounts', 'as' => 'accounts'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('categories/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@categories', 'as' => 'categories'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'account-per-category/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@accountPerCategory', 'as' => 'account-per-category'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'top-expenses/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@topExpenses', 'as' => 'top-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'avg-expenses/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@avgExpenses', 'as' => 'avg-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('top-income/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@topIncome', 'as' => 'top-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('avg-income/{accountList}/{categoryList}/{start_date}/{end_date}', ['uses' => 'CategoryController@avgIncome', 'as' => 'avg-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -945,34 +1020,41 @@ Route::group( Route::get('accounts/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@accounts', 'as' => 'accounts'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('tags/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@tags', 'as' => 'tags'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'account-per-tag/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@accountPerTag', 'as' => 'account-per-tag'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('top-expenses/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@topExpenses', 'as' => 'top-expenses'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('avg-expenses/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@avgExpenses', 'as' => 'avg-expenses'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('top-income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@topIncome', 'as' => 'top-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('avg-income/{accountList}/{tagList}/{start_date}/{end_date}', ['uses' => 'TagController@avgIncome', 'as' => 'avg-income'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -983,7 +1065,8 @@ Route::group( Route::get('general/{accountList}/{start_date}/{end_date}', ['uses' => 'BalanceController@general', 'as' => 'general'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -994,34 +1077,41 @@ Route::group( Route::get('general/{accountList}/{start_date}/{end_date}/', ['uses' => 'BudgetController@general', 'as' => 'general'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; // TODO is route still used? Route::get('period/{accountList}/{start_date}/{end_date}', ['uses' => 'BudgetController@period', 'as' => 'period'])->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('accounts/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetController@accounts', 'as' => 'accounts'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('budgets/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetController@budgets', 'as' => 'budgets'])->where( ['start_date' => DATEFORMAT] ) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'account-per-budget/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetController@accountPerBudget', 'as' => 'account-per-budget'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'top-expenses/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetController@topExpenses', 'as' => 'top-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get( 'avg-expenses/{accountList}/{budgetList}/{start_date}/{end_date}', ['uses' => 'BudgetController@avgExpenses', 'as' => 'avg-expenses'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; } ); @@ -1094,7 +1184,8 @@ Route::group( Route::get('show/{tagOrId}/all', ['uses' => 'TagController@showAll', 'as' => 'show.all']); Route::get('show/{tagOrId}/{start_date?}/{end_date?}', ['uses' => 'TagController@show', 'as' => 'show'])->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; Route::get('edit/{tag}', ['uses' => 'TagController@edit', 'as' => 'edit']); Route::get('delete/{tag}', ['uses' => 'TagController@delete', 'as' => 'delete']); @@ -1119,7 +1210,8 @@ Route::group( Route::get('{objectType}/{start_date?}/{end_date?}', ['uses' => 'Transaction\IndexController@index', 'as' => 'index'])->where( ['objectType' => 'withdrawal|deposit|transfers|transfer|all'] )->where(['start_date' => DATEFORMAT]) - ->where(['end_date' => DATEFORMAT]); + ->where(['end_date' => DATEFORMAT]) + ; // create group: Route::get('create/{objectType}', ['uses' => 'Transaction\CreateController@create', 'as' => 'create']);